
    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_c7618f007f236eaf161d0f74.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.102051;font-style: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:-32.433814px;}
.ws3_c00000{word-spacing:-22.595328px;}
.ws1_c00000{word-spacing:-22.523597px;}
.ws4_c00000{word-spacing:0.000000px;}
.ws2_c00000{word-spacing:134.998118px;}
._0_c00000{margin-left:-5.308109px;}
._3_c00000{margin-left:-4.232141px;}
._2_c00000{width:17.932800px;}
._1_c00000{width:156.015360px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs1_c00000{font-size:71.731200px;}
.fs0_c00000{font-size:103.292400px;}
.y0_c00000{bottom:0.000000px;}
.y6_c00000{bottom:585.691500px;}
.y5_c00000{bottom:637.996500px;}
.y4_c00000{bottom:658.917000px;}
.y3_c00000{bottom:694.344000px;}
.y2_c00000{bottom:769.063500px;}
.y1_c00000{bottom:801.940500px;}
.h3_c00000{height:62.799825px;}
.h2_c00000{height:90.431286px;}
.h0_c00000{height:1262.835000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:892.920000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x3_c00000{left:155.025000px;}
.x1_c00000{left:168.246000px;}
.x4_c00000{left:183.582000px;}
.x2_c00000{left:205.833000px;}
.x5_c00000{left:394.405500px;}
.x6_c00000{left:404.619000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:-28.830057pt;}
.ws3_c00000{word-spacing:-20.084736pt;}
.ws1_c00000{word-spacing:-20.020975pt;}
.ws4_c00000{word-spacing:0.000000pt;}
.ws2_c00000{word-spacing:119.998327pt;}
._0_c00000{margin-left:-4.718319pt;}
._3_c00000{margin-left:-3.761903pt;}
._2_c00000{width:15.940267pt;}
._1_c00000{width:138.680320pt;}
.fs1_c00000{font-size:63.761067pt;}
.fs0_c00000{font-size:91.815467pt;}
.y0_c00000{bottom:0.000000pt;}
.y6_c00000{bottom:520.614667pt;}
.y5_c00000{bottom:567.108000pt;}
.y4_c00000{bottom:585.704000pt;}
.y3_c00000{bottom:617.194667pt;}
.y2_c00000{bottom:683.612000pt;}
.y1_c00000{bottom:712.836000pt;}
.h3_c00000{height:55.822067pt;}
.h2_c00000{height:80.383365pt;}
.h0_c00000{height:1122.520000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.706667pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x3_c00000{left:137.800000pt;}
.x1_c00000{left:149.552000pt;}
.x4_c00000{left:163.184000pt;}
.x2_c00000{left:182.962667pt;}
.x5_c00000{left:350.582667pt;}
.x6_c00000{left:359.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_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_39d97ad67eeb808c2a09920f.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:59.775600px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:44.250000px;}
.h2_c00001{height:52.332837px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.920000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:442.720500px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:53.133867pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:39.333333pt;}
.h2_c00001{height:46.518078pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.706667pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8aaee4d46112729cb682349.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.893555;font-style:normal;font-weight:normal;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_5df972472a7d5d34991d70de.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.102051;font-style: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;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:31.023536px;}
.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;}
}
.wsd_c00002{word-spacing:-50.790074px;}
.wse_c00002{word-spacing:-47.988058px;}
.ws9_c00002{word-spacing:-43.743990px;}
.wsf_c00002{word-spacing:-40.704307px;}
.ws5_c00002{word-spacing:-40.164890px;}
.wsb_c00002{word-spacing:-39.825958px;}
.wsa_c00002{word-spacing:-35.273600px;}
.ws7_c00002{word-spacing:-32.996131px;}
.ws1_c00002{word-spacing:-24.812765px;}
.wsc_c00002{word-spacing:-24.805328px;}
.ws2_c00002{word-spacing:-24.785608px;}
.ws3_c00002{word-spacing:-15.003676px;}
.ws8_c00002{word-spacing:-14.943900px;}
.ws6_c00002{word-spacing:-2.689902px;}
.ws10_c00002{word-spacing:0.000000px;}
.ws4_c00002{word-spacing:29.887800px;}
.ws0_c00002{word-spacing:2270.120729px;}
._f_c00002{margin-left:-37.598852px;}
._17_c00002{margin-left:-35.148053px;}
._1c_c00002{margin-left:-33.235234px;}
._1_c00002{margin-left:-31.023536px;}
._2_c00002{margin-left:-16.079636px;}
._16_c00002{margin-left:-13.624524px;}
._18_c00002{margin-left:-11.361924px;}
._3_c00002{margin-left:-8.726336px;}
._10_c00002{margin-left:-7.675558px;}
._5_c00002{margin-left:-5.439580px;}
._11_c00002{margin-left:-4.328124px;}
._13_c00002{margin-left:-3.287658px;}
._0_c00002{margin-left:-1.075961px;}
._1b_c00002{width:1.853044px;}
._1d_c00002{width:4.064741px;}
._1a_c00002{width:6.074267px;}
._b_c00002{width:14.943900px;}
._19_c00002{width:20.728700px;}
._1f_c00002{width:22.069484px;}
._8_c00002{width:31.740844px;}
._1e_c00002{width:32.876580px;}
._20_c00002{width:35.989763px;}
._c_c00002{width:38.378812px;}
._9_c00002{width:39.708853px;}
._15_c00002{width:42.837338px;}
._14_c00002{width:44.238796px;}
._4_c00002{width:59.775600px;}
._a_c00002{width:62.764380px;}
._d_c00002{width:70.733826px;}
._6_c00002{width:1703.268714px;}
._e_c00002{width:2023.725706px;}
._12_c00002{width:2071.366859px;}
._7_c00002{width:2202.514525px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs1_c00002{font-size:59.775600px;}
.fs0_c00002{font-size:148.722600px;}
.y0_c00002{bottom:0.000000px;}
.y1e_c00002{bottom:44.250000px;}
.y1d_c00002{bottom:82.051500px;}
.y1c_c00002{bottom:110.955000px;}
.y1b_c00002{bottom:139.860000px;}
.y1a_c00002{bottom:168.765000px;}
.y19_c00002{bottom:197.670000px;}
.y18_c00002{bottom:226.573500px;}
.y17_c00002{bottom:255.478500px;}
.y16_c00002{bottom:284.383500px;}
.y15_c00002{bottom:313.287000px;}
.y14_c00002{bottom:342.192000px;}
.y13_c00002{bottom:371.097000px;}
.y12_c00002{bottom:400.002000px;}
.y11_c00002{bottom:428.905500px;}
.y10_c00002{bottom:457.810500px;}
.yf_c00002{bottom:486.715500px;}
.ye_c00002{bottom:515.620500px;}
.yd_c00002{bottom:544.524000px;}
.yc_c00002{bottom:573.429000px;}
.yb_c00002{bottom:618.007500px;}
.ya_c00002{bottom:646.911000px;}
.y9_c00002{bottom:675.816000px;}
.y8_c00002{bottom:720.394500px;}
.y7_c00002{bottom:749.298000px;}
.y6_c00002{bottom:778.203000px;}
.y5_c00002{bottom:822.781500px;}
.y4_c00002{bottom:867.358500px;}
.y3_c00002{bottom:896.263500px;}
.y2_c00002{bottom:925.168500px;}
.y1_c00002{bottom:1029.522000px;}
.h3_c00002{height:40.511979px;}
.h4_c00002{height:52.332837px;}
.h2_c00002{height:100.794418px;}
.h0_c00002{height:1262.835000px;}
.h1_c00002{height:1263.000000px;}
.w0_c00002{width:892.920000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:127.558500px;}
.x2_c00002{left:149.974500px;}
.x3_c00002{left:442.720500px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:27.576477pt;}
.wsd_c00002{word-spacing:-45.146733pt;}
.wse_c00002{word-spacing:-42.656051pt;}
.ws9_c00002{word-spacing:-38.883547pt;}
.wsf_c00002{word-spacing:-36.181606pt;}
.ws5_c00002{word-spacing:-35.702125pt;}
.wsb_c00002{word-spacing:-35.400851pt;}
.wsa_c00002{word-spacing:-31.354311pt;}
.ws7_c00002{word-spacing:-29.329894pt;}
.ws1_c00002{word-spacing:-22.055791pt;}
.wsc_c00002{word-spacing:-22.049181pt;}
.ws2_c00002{word-spacing:-22.031651pt;}
.ws3_c00002{word-spacing:-13.336601pt;}
.ws8_c00002{word-spacing:-13.283467pt;}
.ws6_c00002{word-spacing:-2.391024pt;}
.ws10_c00002{word-spacing:0.000000pt;}
.ws4_c00002{word-spacing:26.566933pt;}
.ws0_c00002{word-spacing:2017.885092pt;}
._f_c00002{margin-left:-33.421202pt;}
._17_c00002{margin-left:-31.242714pt;}
._1c_c00002{margin-left:-29.542430pt;}
._1_c00002{margin-left:-27.576477pt;}
._2_c00002{margin-left:-14.293010pt;}
._16_c00002{margin-left:-12.110688pt;}
._18_c00002{margin-left:-10.099488pt;}
._3_c00002{margin-left:-7.756743pt;}
._10_c00002{margin-left:-6.822718pt;}
._5_c00002{margin-left:-4.835182pt;}
._11_c00002{margin-left:-3.847221pt;}
._13_c00002{margin-left:-2.922363pt;}
._0_c00002{margin-left:-0.956410pt;}
._1b_c00002{width:1.647150pt;}
._1d_c00002{width:3.613103pt;}
._1a_c00002{width:5.399348pt;}
._b_c00002{width:13.283467pt;}
._19_c00002{width:18.425511pt;}
._1f_c00002{width:19.617319pt;}
._8_c00002{width:28.214083pt;}
._1e_c00002{width:29.223627pt;}
._20_c00002{width:31.990900pt;}
._c_c00002{width:34.114499pt;}
._9_c00002{width:35.296758pt;}
._15_c00002{width:38.077634pt;}
._14_c00002{width:39.323374pt;}
._4_c00002{width:53.133867pt;}
._a_c00002{width:55.790560pt;}
._d_c00002{width:62.874512pt;}
._6_c00002{width:1514.016635pt;}
._e_c00002{width:1798.867294pt;}
._12_c00002{width:1841.214986pt;}
._7_c00002{width:1957.790689pt;}
.fs1_c00002{font-size:53.133867pt;}
.fs0_c00002{font-size:132.197867pt;}
.y0_c00002{bottom:0.000000pt;}
.y1e_c00002{bottom:39.333333pt;}
.y1d_c00002{bottom:72.934667pt;}
.y1c_c00002{bottom:98.626667pt;}
.y1b_c00002{bottom:124.320000pt;}
.y1a_c00002{bottom:150.013333pt;}
.y19_c00002{bottom:175.706667pt;}
.y18_c00002{bottom:201.398667pt;}
.y17_c00002{bottom:227.092000pt;}
.y16_c00002{bottom:252.785333pt;}
.y15_c00002{bottom:278.477333pt;}
.y14_c00002{bottom:304.170667pt;}
.y13_c00002{bottom:329.864000pt;}
.y12_c00002{bottom:355.557333pt;}
.y11_c00002{bottom:381.249333pt;}
.y10_c00002{bottom:406.942667pt;}
.yf_c00002{bottom:432.636000pt;}
.ye_c00002{bottom:458.329333pt;}
.yd_c00002{bottom:484.021333pt;}
.yc_c00002{bottom:509.714667pt;}
.yb_c00002{bottom:549.340000pt;}
.ya_c00002{bottom:575.032000pt;}
.y9_c00002{bottom:600.725333pt;}
.y8_c00002{bottom:640.350667pt;}
.y7_c00002{bottom:666.042667pt;}
.y6_c00002{bottom:691.736000pt;}
.y5_c00002{bottom:731.361333pt;}
.y4_c00002{bottom:770.985333pt;}
.y3_c00002{bottom:796.678667pt;}
.y2_c00002{bottom:822.372000pt;}
.y1_c00002{bottom:915.130667pt;}
.h3_c00002{height:36.010648pt;}
.h4_c00002{height:46.518078pt;}
.h2_c00002{height:89.595039pt;}
.h0_c00002{height:1122.520000pt;}
.h1_c00002{height:1122.666667pt;}
.w0_c00002{width:793.706667pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:113.385333pt;}
.x2_c00002{left:133.310667pt;}
.x3_c00002{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_457db326f0b3ad702cde146b.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.893555;font-style:normal;font-weight:normal;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_21aee41801967dbbcce1034f.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.102051;font-style: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;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:31.023536px;}
.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;}
}
.ws4_c00003{word-spacing:-54.681019px;}
.ws2_c00003{word-spacing:-46.859758px;}
.ws1_c00003{word-spacing:-32.996131px;}
.ws0_c00003{word-spacing:-14.943900px;}
.ws3_c00003{word-spacing:-2.689902px;}
.ws5_c00003{word-spacing:0.000000px;}
._4_c00003{margin-left:-35.148053px;}
._3_c00003{margin-left:-31.023536px;}
._5_c00003{margin-left:-16.139412px;}
._f_c00003{margin-left:-4.423394px;}
._12_c00003{margin-left:-2.211697px;}
._1_c00003{margin-left:-1.075961px;}
._6_c00003{width:8.268218px;}
._d_c00003{width:13.035394px;}
._a_c00003{width:14.943900px;}
._13_c00003{width:21.369923px;}
._15_c00003{width:23.581620px;}
._b_c00003{width:29.703913px;}
._8_c00003{width:31.740844px;}
._17_c00003{width:32.876580px;}
._18_c00003{width:35.088277px;}
._19_c00003{width:37.022257px;}
._7_c00003{width:39.693980px;}
._16_c00003{width:40.874444px;}
._11_c00003{width:43.094444px;}
._14_c00003{width:45.314444px;}
._1b_c00003{width:46.885231px;}
._10_c00003{width:51.257723px;}
._1c_c00003{width:53.094457px;}
._1a_c00003{width:56.382115px;}
._0_c00003{width:59.775600px;}
._9_c00003{width:62.764380px;}
._c_c00003{width:70.741262px;}
._e_c00003{width:1699.379100px;}
._2_c00003{width:1946.196752px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:59.775600px;}
.y0_c00003{bottom:0.000000px;}
.y29_c00003{bottom:44.250000px;}
.y28_c00003{bottom:82.051500px;}
.y27_c00003{bottom:109.300500px;}
.y26_c00003{bottom:136.551000px;}
.y25_c00003{bottom:163.800000px;}
.y24_c00003{bottom:191.050500px;}
.y23_c00003{bottom:218.299500px;}
.y22_c00003{bottom:245.550000px;}
.y21_c00003{bottom:272.799000px;}
.y20_c00003{bottom:300.049500px;}
.y1f_c00003{bottom:327.298500px;}
.y1e_c00003{bottom:354.549000px;}
.y1d_c00003{bottom:381.798000px;}
.y1c_c00003{bottom:409.048500px;}
.y1b_c00003{bottom:436.297500px;}
.y1a_c00003{bottom:463.548000px;}
.y19_c00003{bottom:490.797000px;}
.y18_c00003{bottom:518.047500px;}
.y17_c00003{bottom:545.296500px;}
.y16_c00003{bottom:572.547000px;}
.y15_c00003{bottom:599.796000px;}
.y14_c00003{bottom:627.046500px;}
.y13_c00003{bottom:654.295500px;}
.y12_c00003{bottom:681.546000px;}
.y11_c00003{bottom:708.795000px;}
.y10_c00003{bottom:736.045500px;}
.yf_c00003{bottom:763.294500px;}
.ye_c00003{bottom:790.545000px;}
.yd_c00003{bottom:817.794000px;}
.yc_c00003{bottom:845.044500px;}
.yb_c00003{bottom:872.293500px;}
.ya_c00003{bottom:899.544000px;}
.y9_c00003{bottom:926.793000px;}
.y8_c00003{bottom:954.043500px;}
.y7_c00003{bottom:981.292500px;}
.y6_c00003{bottom:1008.543000px;}
.y5_c00003{bottom:1050.864000px;}
.y4_c00003{bottom:1078.113000px;}
.y3_c00003{bottom:1105.363500px;}
.y2_c00003{bottom:1132.612500px;}
.y1_c00003{bottom:1159.863000px;}
.h2_c00003{height:40.511979px;}
.h3_c00003{height:52.332837px;}
.h0_c00003{height:1262.835000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:892.920000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:127.558500px;}
.x2_c00003{left:149.974500px;}
.x3_c00003{left:442.720500px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:27.576477pt;}
.ws4_c00003{word-spacing:-48.605350pt;}
.ws2_c00003{word-spacing:-41.653118pt;}
.ws1_c00003{word-spacing:-29.329894pt;}
.ws0_c00003{word-spacing:-13.283467pt;}
.ws3_c00003{word-spacing:-2.391024pt;}
.ws5_c00003{word-spacing:0.000000pt;}
._4_c00003{margin-left:-31.242714pt;}
._3_c00003{margin-left:-27.576477pt;}
._5_c00003{margin-left:-14.346144pt;}
._f_c00003{margin-left:-3.931906pt;}
._12_c00003{margin-left:-1.965953pt;}
._1_c00003{margin-left:-0.956410pt;}
._6_c00003{width:7.349527pt;}
._d_c00003{width:11.587017pt;}
._a_c00003{width:13.283467pt;}
._13_c00003{width:18.995487pt;}
._15_c00003{width:20.961440pt;}
._b_c00003{width:26.403478pt;}
._8_c00003{width:28.214083pt;}
._17_c00003{width:29.223627pt;}
._18_c00003{width:31.189580pt;}
._19_c00003{width:32.908673pt;}
._7_c00003{width:35.283538pt;}
._16_c00003{width:36.332839pt;}
._11_c00003{width:38.306173pt;}
._14_c00003{width:40.279506pt;}
._1b_c00003{width:41.675761pt;}
._10_c00003{width:45.562420pt;}
._1c_c00003{width:47.195073pt;}
._1a_c00003{width:50.117436pt;}
._0_c00003{width:53.133867pt;}
._9_c00003{width:55.790560pt;}
._c_c00003{width:62.881122pt;}
._e_c00003{width:1510.559200pt;}
._2_c00003{width:1729.952669pt;}
.fs0_c00003{font-size:53.133867pt;}
.y0_c00003{bottom:0.000000pt;}
.y29_c00003{bottom:39.333333pt;}
.y28_c00003{bottom:72.934667pt;}
.y27_c00003{bottom:97.156000pt;}
.y26_c00003{bottom:121.378667pt;}
.y25_c00003{bottom:145.600000pt;}
.y24_c00003{bottom:169.822667pt;}
.y23_c00003{bottom:194.044000pt;}
.y22_c00003{bottom:218.266667pt;}
.y21_c00003{bottom:242.488000pt;}
.y20_c00003{bottom:266.710667pt;}
.y1f_c00003{bottom:290.932000pt;}
.y1e_c00003{bottom:315.154667pt;}
.y1d_c00003{bottom:339.376000pt;}
.y1c_c00003{bottom:363.598667pt;}
.y1b_c00003{bottom:387.820000pt;}
.y1a_c00003{bottom:412.042667pt;}
.y19_c00003{bottom:436.264000pt;}
.y18_c00003{bottom:460.486667pt;}
.y17_c00003{bottom:484.708000pt;}
.y16_c00003{bottom:508.930667pt;}
.y15_c00003{bottom:533.152000pt;}
.y14_c00003{bottom:557.374667pt;}
.y13_c00003{bottom:581.596000pt;}
.y12_c00003{bottom:605.818667pt;}
.y11_c00003{bottom:630.040000pt;}
.y10_c00003{bottom:654.262667pt;}
.yf_c00003{bottom:678.484000pt;}
.ye_c00003{bottom:702.706667pt;}
.yd_c00003{bottom:726.928000pt;}
.yc_c00003{bottom:751.150667pt;}
.yb_c00003{bottom:775.372000pt;}
.ya_c00003{bottom:799.594667pt;}
.y9_c00003{bottom:823.816000pt;}
.y8_c00003{bottom:848.038667pt;}
.y7_c00003{bottom:872.260000pt;}
.y6_c00003{bottom:896.482667pt;}
.y5_c00003{bottom:934.101333pt;}
.y4_c00003{bottom:958.322667pt;}
.y3_c00003{bottom:982.545333pt;}
.y2_c00003{bottom:1006.766667pt;}
.y1_c00003{bottom:1030.989333pt;}
.h2_c00003{height:36.010648pt;}
.h3_c00003{height:46.518078pt;}
.h0_c00003{height:1122.520000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.706667pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:113.385333pt;}
.x2_c00003{left:133.310667pt;}
.x3_c00003{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69d780ab2a8c40a6d721aa6b.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.102051;font-style: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;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:-2.689902px;}
.ws1_c00004{word-spacing:0.000000px;}
._1_c00004{margin-left:-4.423394px;}
._10_c00004{margin-left:-2.391024px;}
._11_c00004{width:18.423173px;}
._5_c00004{width:20.344865px;}
._c_c00004{width:21.915340px;}
._7_c00004{width:23.692298px;}
._6_c00004{width:28.550431px;}
._0_c00004{width:32.876580px;}
._a_c00004{width:35.185523px;}
._13_c00004{width:36.962482px;}
._b_c00004{width:37.987540px;}
._9_c00004{width:39.824274px;}
._3_c00004{width:40.883317px;}
._8_c00004{width:43.111932px;}
._e_c00004{width:44.409250px;}
._f_c00004{width:46.459366px;}
._d_c00004{width:47.696908px;}
._4_c00004{width:50.232665px;}
._2_c00004{width:53.520323px;}
._14_c00004{width:56.382115px;}
._12_c00004{width:61.240248px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:59.775600px;}
.y0_c00004{bottom:0.000000px;}
.y2a_c00004{bottom:44.250000px;}
.y29_c00004{bottom:82.051500px;}
.y28_c00004{bottom:108.996000px;}
.y27_c00004{bottom:135.942000px;}
.y26_c00004{bottom:162.886500px;}
.y25_c00004{bottom:189.832500px;}
.y24_c00004{bottom:216.777000px;}
.y23_c00004{bottom:243.723000px;}
.y22_c00004{bottom:270.667500px;}
.y21_c00004{bottom:297.613500px;}
.y20_c00004{bottom:324.558000px;}
.y1f_c00004{bottom:351.504000px;}
.y1e_c00004{bottom:378.448500px;}
.y1d_c00004{bottom:405.394500px;}
.y1c_c00004{bottom:432.340500px;}
.y1b_c00004{bottom:459.285000px;}
.y1a_c00004{bottom:486.231000px;}
.y19_c00004{bottom:513.175500px;}
.y18_c00004{bottom:540.121500px;}
.y17_c00004{bottom:567.066000px;}
.y16_c00004{bottom:594.012000px;}
.y15_c00004{bottom:620.956500px;}
.y14_c00004{bottom:647.902500px;}
.y13_c00004{bottom:674.847000px;}
.y12_c00004{bottom:701.793000px;}
.y11_c00004{bottom:728.737500px;}
.y10_c00004{bottom:755.683500px;}
.yf_c00004{bottom:782.628000px;}
.ye_c00004{bottom:809.574000px;}
.yd_c00004{bottom:836.520000px;}
.yc_c00004{bottom:863.464500px;}
.yb_c00004{bottom:890.410500px;}
.ya_c00004{bottom:917.355000px;}
.y9_c00004{bottom:944.301000px;}
.y8_c00004{bottom:971.245500px;}
.y7_c00004{bottom:998.191500px;}
.y6_c00004{bottom:1025.136000px;}
.y5_c00004{bottom:1052.082000px;}
.y4_c00004{bottom:1079.026500px;}
.y3_c00004{bottom:1105.972500px;}
.y2_c00004{bottom:1132.917000px;}
.y1_c00004{bottom:1159.863000px;}
.h2_c00004{height:52.332837px;}
.h0_c00004{height:1262.835000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.920000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:149.974500px;}
.x2_c00004{left:442.720500px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:-2.391024pt;}
.ws1_c00004{word-spacing:0.000000pt;}
._1_c00004{margin-left:-3.931906pt;}
._10_c00004{margin-left:-2.125355pt;}
._11_c00004{width:16.376154pt;}
._5_c00004{width:18.084324pt;}
._c_c00004{width:19.480302pt;}
._7_c00004{width:21.059821pt;}
._6_c00004{width:25.378161pt;}
._0_c00004{width:29.223627pt;}
._a_c00004{width:31.276020pt;}
._13_c00004{width:32.855539pt;}
._b_c00004{width:33.766702pt;}
._9_c00004{width:35.399355pt;}
._3_c00004{width:36.340726pt;}
._8_c00004{width:38.321717pt;}
._e_c00004{width:39.474889pt;}
._f_c00004{width:41.297214pt;}
._d_c00004{width:42.397251pt;}
._4_c00004{width:44.651258pt;}
._2_c00004{width:47.573620pt;}
._14_c00004{width:50.117436pt;}
._12_c00004{width:54.435776pt;}
.fs0_c00004{font-size:53.133867pt;}
.y0_c00004{bottom:0.000000pt;}
.y2a_c00004{bottom:39.333333pt;}
.y29_c00004{bottom:72.934667pt;}
.y28_c00004{bottom:96.885333pt;}
.y27_c00004{bottom:120.837333pt;}
.y26_c00004{bottom:144.788000pt;}
.y25_c00004{bottom:168.740000pt;}
.y24_c00004{bottom:192.690667pt;}
.y23_c00004{bottom:216.642667pt;}
.y22_c00004{bottom:240.593333pt;}
.y21_c00004{bottom:264.545333pt;}
.y20_c00004{bottom:288.496000pt;}
.y1f_c00004{bottom:312.448000pt;}
.y1e_c00004{bottom:336.398667pt;}
.y1d_c00004{bottom:360.350667pt;}
.y1c_c00004{bottom:384.302667pt;}
.y1b_c00004{bottom:408.253333pt;}
.y1a_c00004{bottom:432.205333pt;}
.y19_c00004{bottom:456.156000pt;}
.y18_c00004{bottom:480.108000pt;}
.y17_c00004{bottom:504.058667pt;}
.y16_c00004{bottom:528.010667pt;}
.y15_c00004{bottom:551.961333pt;}
.y14_c00004{bottom:575.913333pt;}
.y13_c00004{bottom:599.864000pt;}
.y12_c00004{bottom:623.816000pt;}
.y11_c00004{bottom:647.766667pt;}
.y10_c00004{bottom:671.718667pt;}
.yf_c00004{bottom:695.669333pt;}
.ye_c00004{bottom:719.621333pt;}
.yd_c00004{bottom:743.573333pt;}
.yc_c00004{bottom:767.524000pt;}
.yb_c00004{bottom:791.476000pt;}
.ya_c00004{bottom:815.426667pt;}
.y9_c00004{bottom:839.378667pt;}
.y8_c00004{bottom:863.329333pt;}
.y7_c00004{bottom:887.281333pt;}
.y6_c00004{bottom:911.232000pt;}
.y5_c00004{bottom:935.184000pt;}
.y4_c00004{bottom:959.134667pt;}
.y3_c00004{bottom:983.086667pt;}
.y2_c00004{bottom:1007.037333pt;}
.y1_c00004{bottom:1030.989333pt;}
.h2_c00004{height:46.518078pt;}
.h0_c00004{height:1122.520000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.706667pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:133.310667pt;}
.x2_c00004{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33687d3380f4a17a5bd20b9b.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.102051;font-style: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;}
.ls1_c00005{letter-spacing:0.000000px;}
.ls0_c00005{letter-spacing:31.023536px;}
.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:-54.688456px;}
.ws2_c00005{word-spacing:-54.681019px;}
.ws0_c00005{word-spacing:-2.689902px;}
.ws3_c00005{word-spacing:0.000000px;}
._f_c00005{margin-left:-35.805584px;}
._d_c00005{margin-left:-33.115682px;}
._a_c00005{margin-left:-31.023536px;}
._10_c00005{margin-left:-7.108984px;}
._12_c00005{margin-left:-4.782048px;}
._11_c00005{margin-left:-3.761550px;}
._3_c00005{margin-left:-2.211697px;}
._b_c00005{width:1.853044px;}
._14_c00005{width:2.988780px;}
._c_c00005{width:5.212226px;}
._e_c00005{width:6.818731px;}
._1a_c00005{width:16.182878px;}
._13_c00005{width:19.062420px;}
._9_c00005{width:21.880746px;}
._5_c00005{width:24.563212px;}
._6_c00005{width:26.774909px;}
._15_c00005{width:28.456062px;}
._0_c00005{width:32.876580px;}
._7_c00005{width:35.091154px;}
._19_c00005{width:39.435587px;}
._4_c00005{width:40.850699px;}
._2_c00005{width:43.070699px;}
._16_c00005{width:44.528262px;}
._17_c00005{width:50.135419px;}
._8_c00005{width:56.833163px;}
._18_c00005{width:59.033111px;}
._1_c00005{width:60.606462px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:59.775600px;}
.y0_c00005{bottom:0.000000px;}
.y2a_c00005{bottom:44.250000px;}
.y29_c00005{bottom:82.051500px;}
.y28_c00005{bottom:108.996000px;}
.y27_c00005{bottom:135.942000px;}
.y26_c00005{bottom:162.886500px;}
.y25_c00005{bottom:189.832500px;}
.y24_c00005{bottom:216.777000px;}
.y23_c00005{bottom:243.723000px;}
.y22_c00005{bottom:270.667500px;}
.y21_c00005{bottom:297.613500px;}
.y20_c00005{bottom:324.558000px;}
.y1f_c00005{bottom:351.504000px;}
.y1e_c00005{bottom:378.448500px;}
.y1d_c00005{bottom:405.394500px;}
.y1c_c00005{bottom:432.340500px;}
.y1b_c00005{bottom:459.285000px;}
.y1a_c00005{bottom:486.231000px;}
.y19_c00005{bottom:513.175500px;}
.y18_c00005{bottom:540.121500px;}
.y17_c00005{bottom:567.066000px;}
.y16_c00005{bottom:594.012000px;}
.y15_c00005{bottom:620.956500px;}
.y14_c00005{bottom:647.902500px;}
.y13_c00005{bottom:674.847000px;}
.y12_c00005{bottom:701.793000px;}
.y11_c00005{bottom:728.737500px;}
.y10_c00005{bottom:755.683500px;}
.yf_c00005{bottom:782.628000px;}
.ye_c00005{bottom:809.574000px;}
.yd_c00005{bottom:836.520000px;}
.yc_c00005{bottom:863.464500px;}
.yb_c00005{bottom:890.410500px;}
.ya_c00005{bottom:917.355000px;}
.y9_c00005{bottom:944.301000px;}
.y8_c00005{bottom:971.245500px;}
.y7_c00005{bottom:998.191500px;}
.y6_c00005{bottom:1025.136000px;}
.y5_c00005{bottom:1052.082000px;}
.y4_c00005{bottom:1079.026500px;}
.y3_c00005{bottom:1105.972500px;}
.y2_c00005{bottom:1132.917000px;}
.y1_c00005{bottom:1159.863000px;}
.h2_c00005{height:52.332837px;}
.h0_c00005{height:1262.835000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:892.920000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:149.974500px;}
.x2_c00005{left:442.720500px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls1_c00005{letter-spacing:0.000000pt;}
.ls0_c00005{letter-spacing:27.576477pt;}
.ws1_c00005{word-spacing:-48.611961pt;}
.ws2_c00005{word-spacing:-48.605350pt;}
.ws0_c00005{word-spacing:-2.391024pt;}
.ws3_c00005{word-spacing:0.000000pt;}
._f_c00005{margin-left:-31.827186pt;}
._d_c00005{margin-left:-29.436162pt;}
._a_c00005{margin-left:-27.576477pt;}
._10_c00005{margin-left:-6.319097pt;}
._12_c00005{margin-left:-4.250709pt;}
._11_c00005{margin-left:-3.343600pt;}
._3_c00005{margin-left:-1.965953pt;}
._b_c00005{width:1.647150pt;}
._14_c00005{width:2.656693pt;}
._c_c00005{width:4.633090pt;}
._e_c00005{width:6.061094pt;}
._1a_c00005{width:14.384781pt;}
._13_c00005{width:16.944373pt;}
._9_c00005{width:19.449552pt;}
._5_c00005{width:21.833966pt;}
._6_c00005{width:23.799919pt;}
._15_c00005{width:25.294277pt;}
._0_c00005{width:29.223627pt;}
._7_c00005{width:31.192137pt;}
._19_c00005{width:35.053855pt;}
._4_c00005{width:36.311732pt;}
._2_c00005{width:38.285066pt;}
._16_c00005{width:39.580677pt;}
._17_c00005{width:44.564817pt;}
._8_c00005{width:50.518367pt;}
._18_c00005{width:52.473876pt;}
._1_c00005{width:53.872411pt;}
.fs0_c00005{font-size:53.133867pt;}
.y0_c00005{bottom:0.000000pt;}
.y2a_c00005{bottom:39.333333pt;}
.y29_c00005{bottom:72.934667pt;}
.y28_c00005{bottom:96.885333pt;}
.y27_c00005{bottom:120.837333pt;}
.y26_c00005{bottom:144.788000pt;}
.y25_c00005{bottom:168.740000pt;}
.y24_c00005{bottom:192.690667pt;}
.y23_c00005{bottom:216.642667pt;}
.y22_c00005{bottom:240.593333pt;}
.y21_c00005{bottom:264.545333pt;}
.y20_c00005{bottom:288.496000pt;}
.y1f_c00005{bottom:312.448000pt;}
.y1e_c00005{bottom:336.398667pt;}
.y1d_c00005{bottom:360.350667pt;}
.y1c_c00005{bottom:384.302667pt;}
.y1b_c00005{bottom:408.253333pt;}
.y1a_c00005{bottom:432.205333pt;}
.y19_c00005{bottom:456.156000pt;}
.y18_c00005{bottom:480.108000pt;}
.y17_c00005{bottom:504.058667pt;}
.y16_c00005{bottom:528.010667pt;}
.y15_c00005{bottom:551.961333pt;}
.y14_c00005{bottom:575.913333pt;}
.y13_c00005{bottom:599.864000pt;}
.y12_c00005{bottom:623.816000pt;}
.y11_c00005{bottom:647.766667pt;}
.y10_c00005{bottom:671.718667pt;}
.yf_c00005{bottom:695.669333pt;}
.ye_c00005{bottom:719.621333pt;}
.yd_c00005{bottom:743.573333pt;}
.yc_c00005{bottom:767.524000pt;}
.yb_c00005{bottom:791.476000pt;}
.ya_c00005{bottom:815.426667pt;}
.y9_c00005{bottom:839.378667pt;}
.y8_c00005{bottom:863.329333pt;}
.y7_c00005{bottom:887.281333pt;}
.y6_c00005{bottom:911.232000pt;}
.y5_c00005{bottom:935.184000pt;}
.y4_c00005{bottom:959.134667pt;}
.y3_c00005{bottom:983.086667pt;}
.y2_c00005{bottom:1007.037333pt;}
.y1_c00005{bottom:1030.989333pt;}
.h2_c00005{height:46.518078pt;}
.h0_c00005{height:1122.520000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.706667pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:133.310667pt;}
.x2_c00005{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95c822263ea2447852b213df.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.102051;font-style: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;}
.ls1_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:31.023536px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00006{word-spacing:-54.688456px;}
.ws2_c00006{word-spacing:-54.681019px;}
.ws0_c00006{word-spacing:-2.689902px;}
.ws3_c00006{word-spacing:0.000000px;}
._15_c00006{margin-left:-33.115682px;}
._11_c00006{margin-left:-31.023536px;}
._12_c00006{margin-left:-28.034756px;}
._2_c00006{margin-left:-4.782048px;}
._0_c00006{margin-left:-2.211697px;}
._6_c00006{width:2.988780px;}
._1_c00006{width:5.200477px;}
._b_c00006{width:16.372518px;}
._f_c00006{width:23.538154px;}
._8_c00006{width:25.800754px;}
._13_c00006{width:27.859742px;}
._3_c00006{width:32.272828px;}
._d_c00006{width:37.353754px;}
._a_c00006{width:39.625226px;}
._4_c00006{width:40.850699px;}
._9_c00006{width:41.872954px;}
._14_c00006{width:45.073679px;}
._10_c00006{width:46.466802px;}
._5_c00006{width:48.345028px;}
._e_c00006{width:53.425954px;}
._7_c00006{width:55.688554px;}
._c_c00006{width:60.606462px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:59.775600px;}
.y0_c00006{bottom:0.000000px;}
.y2a_c00006{bottom:44.250000px;}
.y29_c00006{bottom:82.051500px;}
.y28_c00006{bottom:108.996000px;}
.y27_c00006{bottom:135.942000px;}
.y26_c00006{bottom:162.886500px;}
.y25_c00006{bottom:189.832500px;}
.y24_c00006{bottom:216.777000px;}
.y23_c00006{bottom:243.723000px;}
.y22_c00006{bottom:270.667500px;}
.y21_c00006{bottom:297.613500px;}
.y20_c00006{bottom:324.558000px;}
.y1f_c00006{bottom:351.504000px;}
.y1e_c00006{bottom:378.448500px;}
.y1d_c00006{bottom:405.394500px;}
.y1c_c00006{bottom:432.340500px;}
.y1b_c00006{bottom:459.285000px;}
.y1a_c00006{bottom:486.231000px;}
.y19_c00006{bottom:513.175500px;}
.y18_c00006{bottom:540.121500px;}
.y17_c00006{bottom:567.066000px;}
.y16_c00006{bottom:594.012000px;}
.y15_c00006{bottom:620.956500px;}
.y14_c00006{bottom:647.902500px;}
.y13_c00006{bottom:674.847000px;}
.y12_c00006{bottom:701.793000px;}
.y11_c00006{bottom:728.737500px;}
.y10_c00006{bottom:755.683500px;}
.yf_c00006{bottom:782.628000px;}
.ye_c00006{bottom:809.574000px;}
.yd_c00006{bottom:836.520000px;}
.yc_c00006{bottom:863.464500px;}
.yb_c00006{bottom:890.410500px;}
.ya_c00006{bottom:917.355000px;}
.y9_c00006{bottom:944.301000px;}
.y8_c00006{bottom:971.245500px;}
.y7_c00006{bottom:998.191500px;}
.y6_c00006{bottom:1025.136000px;}
.y5_c00006{bottom:1052.082000px;}
.y4_c00006{bottom:1079.026500px;}
.y3_c00006{bottom:1105.972500px;}
.y2_c00006{bottom:1132.917000px;}
.y1_c00006{bottom:1159.863000px;}
.h2_c00006{height:52.332837px;}
.h0_c00006{height:1262.835000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:892.920000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:149.974500px;}
.x2_c00006{left:442.720500px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls1_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:27.576477pt;}
.ws1_c00006{word-spacing:-48.611961pt;}
.ws2_c00006{word-spacing:-48.605350pt;}
.ws0_c00006{word-spacing:-2.391024pt;}
.ws3_c00006{word-spacing:0.000000pt;}
._15_c00006{margin-left:-29.436162pt;}
._11_c00006{margin-left:-27.576477pt;}
._12_c00006{margin-left:-24.919783pt;}
._2_c00006{margin-left:-4.250709pt;}
._0_c00006{margin-left:-1.965953pt;}
._6_c00006{width:2.656693pt;}
._1_c00006{width:4.622646pt;}
._b_c00006{width:14.553349pt;}
._f_c00006{width:20.922803pt;}
._8_c00006{width:22.934003pt;}
._13_c00006{width:24.764215pt;}
._3_c00006{width:28.686958pt;}
._d_c00006{width:33.203337pt;}
._a_c00006{width:35.222423pt;}
._4_c00006{width:36.311732pt;}
._9_c00006{width:37.220403pt;}
._14_c00006{width:40.065492pt;}
._10_c00006{width:41.303824pt;}
._5_c00006{width:42.973358pt;}
._e_c00006{width:47.489737pt;}
._7_c00006{width:49.500937pt;}
._c_c00006{width:53.872411pt;}
.fs0_c00006{font-size:53.133867pt;}
.y0_c00006{bottom:0.000000pt;}
.y2a_c00006{bottom:39.333333pt;}
.y29_c00006{bottom:72.934667pt;}
.y28_c00006{bottom:96.885333pt;}
.y27_c00006{bottom:120.837333pt;}
.y26_c00006{bottom:144.788000pt;}
.y25_c00006{bottom:168.740000pt;}
.y24_c00006{bottom:192.690667pt;}
.y23_c00006{bottom:216.642667pt;}
.y22_c00006{bottom:240.593333pt;}
.y21_c00006{bottom:264.545333pt;}
.y20_c00006{bottom:288.496000pt;}
.y1f_c00006{bottom:312.448000pt;}
.y1e_c00006{bottom:336.398667pt;}
.y1d_c00006{bottom:360.350667pt;}
.y1c_c00006{bottom:384.302667pt;}
.y1b_c00006{bottom:408.253333pt;}
.y1a_c00006{bottom:432.205333pt;}
.y19_c00006{bottom:456.156000pt;}
.y18_c00006{bottom:480.108000pt;}
.y17_c00006{bottom:504.058667pt;}
.y16_c00006{bottom:528.010667pt;}
.y15_c00006{bottom:551.961333pt;}
.y14_c00006{bottom:575.913333pt;}
.y13_c00006{bottom:599.864000pt;}
.y12_c00006{bottom:623.816000pt;}
.y11_c00006{bottom:647.766667pt;}
.y10_c00006{bottom:671.718667pt;}
.yf_c00006{bottom:695.669333pt;}
.ye_c00006{bottom:719.621333pt;}
.yd_c00006{bottom:743.573333pt;}
.yc_c00006{bottom:767.524000pt;}
.yb_c00006{bottom:791.476000pt;}
.ya_c00006{bottom:815.426667pt;}
.y9_c00006{bottom:839.378667pt;}
.y8_c00006{bottom:863.329333pt;}
.y7_c00006{bottom:887.281333pt;}
.y6_c00006{bottom:911.232000pt;}
.y5_c00006{bottom:935.184000pt;}
.y4_c00006{bottom:959.134667pt;}
.y3_c00006{bottom:983.086667pt;}
.y2_c00006{bottom:1007.037333pt;}
.y1_c00006{bottom:1030.989333pt;}
.h2_c00006{height:46.518078pt;}
.h0_c00006{height:1122.520000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.706667pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:133.310667pt;}
.x2_c00006{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23eceb7d7bbab2787ac3fa08.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.102051;font-style: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;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:31.023536px;}
.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;}
}
.ws1_c00007{word-spacing:-54.688456px;}
.ws0_c00007{word-spacing:-54.681019px;}
.ws2_c00007{word-spacing:-2.689902px;}
.ws3_c00007{word-spacing:0.000000px;}
._5_c00007{margin-left:-35.805584px;}
._2_c00007{margin-left:-33.115682px;}
._0_c00007{margin-left:-31.023536px;}
._1_c00007{margin-left:-28.034756px;}
._4_c00007{margin-left:-13.146319px;}
._7_c00007{margin-left:-9.911000px;}
._a_c00007{margin-left:-4.782048px;}
._d_c00007{margin-left:-1.195512px;}
._9_c00007{width:2.988780px;}
._8_c00007{width:6.161200px;}
._6_c00007{width:13.341708px;}
._3_c00007{width:16.741481px;}
._18_c00007{width:18.140604px;}
._10_c00007{width:19.167098px;}
._14_c00007{width:25.322549px;}
._e_c00007{width:26.347607px;}
._16_c00007{width:27.561403px;}
._11_c00007{width:35.245298px;}
._12_c00007{width:39.132149px;}
._c_c00007{width:40.841826px;}
._17_c00007{width:48.028404px;}
._f_c00007{width:49.054898px;}
._b_c00007{width:53.262936px;}
._13_c00007{width:55.210349px;}
._15_c00007{width:57.449203px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:59.775600px;}
.y0_c00007{bottom:0.000000px;}
.y2a_c00007{bottom:44.250000px;}
.y29_c00007{bottom:82.051500px;}
.y28_c00007{bottom:108.996000px;}
.y27_c00007{bottom:135.942000px;}
.y26_c00007{bottom:162.886500px;}
.y25_c00007{bottom:189.832500px;}
.y24_c00007{bottom:216.777000px;}
.y23_c00007{bottom:243.723000px;}
.y22_c00007{bottom:270.667500px;}
.y21_c00007{bottom:297.613500px;}
.y20_c00007{bottom:324.558000px;}
.y1f_c00007{bottom:351.504000px;}
.y1e_c00007{bottom:378.448500px;}
.y1d_c00007{bottom:405.394500px;}
.y1c_c00007{bottom:432.340500px;}
.y1b_c00007{bottom:459.285000px;}
.y1a_c00007{bottom:486.231000px;}
.y19_c00007{bottom:513.175500px;}
.y18_c00007{bottom:540.121500px;}
.y17_c00007{bottom:567.066000px;}
.y16_c00007{bottom:594.012000px;}
.y15_c00007{bottom:620.956500px;}
.y14_c00007{bottom:647.902500px;}
.y13_c00007{bottom:674.847000px;}
.y12_c00007{bottom:701.793000px;}
.y11_c00007{bottom:728.737500px;}
.y10_c00007{bottom:755.683500px;}
.yf_c00007{bottom:782.628000px;}
.ye_c00007{bottom:809.574000px;}
.yd_c00007{bottom:836.520000px;}
.yc_c00007{bottom:863.464500px;}
.yb_c00007{bottom:890.410500px;}
.ya_c00007{bottom:917.355000px;}
.y9_c00007{bottom:944.301000px;}
.y8_c00007{bottom:971.245500px;}
.y7_c00007{bottom:998.191500px;}
.y6_c00007{bottom:1025.136000px;}
.y5_c00007{bottom:1052.082000px;}
.y4_c00007{bottom:1079.026500px;}
.y3_c00007{bottom:1105.972500px;}
.y2_c00007{bottom:1132.917000px;}
.y1_c00007{bottom:1159.863000px;}
.h2_c00007{height:52.332837px;}
.h0_c00007{height:1262.835000px;}
.h1_c00007{height:1263.000000px;}
.w0_c00007{width:892.920000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:149.974500px;}
.x2_c00007{left:442.720500px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:27.576477pt;}
.ws1_c00007{word-spacing:-48.611961pt;}
.ws0_c00007{word-spacing:-48.605350pt;}
.ws2_c00007{word-spacing:-2.391024pt;}
.ws3_c00007{word-spacing:0.000000pt;}
._5_c00007{margin-left:-31.827186pt;}
._2_c00007{margin-left:-29.436162pt;}
._0_c00007{margin-left:-27.576477pt;}
._1_c00007{margin-left:-24.919783pt;}
._4_c00007{margin-left:-11.685617pt;}
._7_c00007{margin-left:-8.809778pt;}
._a_c00007{margin-left:-4.250709pt;}
._d_c00007{margin-left:-1.062677pt;}
._9_c00007{width:2.656693pt;}
._8_c00007{width:5.476622pt;}
._6_c00007{width:11.859296pt;}
._3_c00007{width:14.881316pt;}
._18_c00007{width:16.124981pt;}
._10_c00007{width:17.037421pt;}
._14_c00007{width:22.508932pt;}
._e_c00007{width:23.420095pt;}
._16_c00007{width:24.499025pt;}
._11_c00007{width:31.329154pt;}
._12_c00007{width:34.784132pt;}
._c_c00007{width:36.303845pt;}
._17_c00007{width:42.691915pt;}
._f_c00007{width:43.604354pt;}
._b_c00007{width:47.344832pt;}
._13_c00007{width:49.075866pt;}
._15_c00007{width:51.065958pt;}
.fs0_c00007{font-size:53.133867pt;}
.y0_c00007{bottom:0.000000pt;}
.y2a_c00007{bottom:39.333333pt;}
.y29_c00007{bottom:72.934667pt;}
.y28_c00007{bottom:96.885333pt;}
.y27_c00007{bottom:120.837333pt;}
.y26_c00007{bottom:144.788000pt;}
.y25_c00007{bottom:168.740000pt;}
.y24_c00007{bottom:192.690667pt;}
.y23_c00007{bottom:216.642667pt;}
.y22_c00007{bottom:240.593333pt;}
.y21_c00007{bottom:264.545333pt;}
.y20_c00007{bottom:288.496000pt;}
.y1f_c00007{bottom:312.448000pt;}
.y1e_c00007{bottom:336.398667pt;}
.y1d_c00007{bottom:360.350667pt;}
.y1c_c00007{bottom:384.302667pt;}
.y1b_c00007{bottom:408.253333pt;}
.y1a_c00007{bottom:432.205333pt;}
.y19_c00007{bottom:456.156000pt;}
.y18_c00007{bottom:480.108000pt;}
.y17_c00007{bottom:504.058667pt;}
.y16_c00007{bottom:528.010667pt;}
.y15_c00007{bottom:551.961333pt;}
.y14_c00007{bottom:575.913333pt;}
.y13_c00007{bottom:599.864000pt;}
.y12_c00007{bottom:623.816000pt;}
.y11_c00007{bottom:647.766667pt;}
.y10_c00007{bottom:671.718667pt;}
.yf_c00007{bottom:695.669333pt;}
.ye_c00007{bottom:719.621333pt;}
.yd_c00007{bottom:743.573333pt;}
.yc_c00007{bottom:767.524000pt;}
.yb_c00007{bottom:791.476000pt;}
.ya_c00007{bottom:815.426667pt;}
.y9_c00007{bottom:839.378667pt;}
.y8_c00007{bottom:863.329333pt;}
.y7_c00007{bottom:887.281333pt;}
.y6_c00007{bottom:911.232000pt;}
.y5_c00007{bottom:935.184000pt;}
.y4_c00007{bottom:959.134667pt;}
.y3_c00007{bottom:983.086667pt;}
.y2_c00007{bottom:1007.037333pt;}
.y1_c00007{bottom:1030.989333pt;}
.h2_c00007{height:46.518078pt;}
.h0_c00007{height:1122.520000pt;}
.h1_c00007{height:1122.666667pt;}
.w0_c00007{width:793.706667pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:133.310667pt;}
.x2_c00007{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_110ce5631d99ec8addc82795.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.102051;font-style: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;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:-2.689902px;}
.ws1_c00008{word-spacing:0.000000px;}
._15_c00008{margin-left:-4.124516px;}
._3_c00008{margin-left:-2.391024px;}
._0_c00008{width:2.988780px;}
._c_c00008{width:5.379804px;}
._a_c00008{width:16.570129px;}
._4_c00008{width:21.071045px;}
._12_c00008{width:24.016897px;}
._d_c00008{width:26.195437px;}
._14_c00008{width:27.843972px;}
._7_c00008{width:29.968736px;}
._1_c00008{width:34.153028px;}
._11_c00008{width:37.826497px;}
._13_c00008{width:39.337196px;}
._2_c00008{width:40.883317px;}
._e_c00008{width:42.273637px;}
._5_c00008{width:43.784336px;}
._9_c00008{width:46.457929px;}
._b_c00008{width:49.448146px;}
._16_c00008{width:51.933539px;}
._8_c00008{width:53.632438px;}
._f_c00008{width:58.345837px;}
._6_c00008{width:59.856536px;}
._10_c00008{width:61.079206px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:59.775600px;}
.y0_c00008{bottom:0.000000px;}
.y2a_c00008{bottom:44.250000px;}
.y29_c00008{bottom:82.051500px;}
.y28_c00008{bottom:108.996000px;}
.y27_c00008{bottom:135.942000px;}
.y26_c00008{bottom:162.886500px;}
.y25_c00008{bottom:189.832500px;}
.y24_c00008{bottom:216.777000px;}
.y23_c00008{bottom:243.723000px;}
.y22_c00008{bottom:270.667500px;}
.y21_c00008{bottom:297.613500px;}
.y20_c00008{bottom:324.558000px;}
.y1f_c00008{bottom:351.504000px;}
.y1e_c00008{bottom:378.448500px;}
.y1d_c00008{bottom:405.394500px;}
.y1c_c00008{bottom:432.340500px;}
.y1b_c00008{bottom:459.285000px;}
.y1a_c00008{bottom:486.231000px;}
.y19_c00008{bottom:513.175500px;}
.y18_c00008{bottom:540.121500px;}
.y17_c00008{bottom:567.066000px;}
.y16_c00008{bottom:594.012000px;}
.y15_c00008{bottom:620.956500px;}
.y14_c00008{bottom:647.902500px;}
.y13_c00008{bottom:674.847000px;}
.y12_c00008{bottom:701.793000px;}
.y11_c00008{bottom:728.737500px;}
.y10_c00008{bottom:755.683500px;}
.yf_c00008{bottom:782.628000px;}
.ye_c00008{bottom:809.574000px;}
.yd_c00008{bottom:836.520000px;}
.yc_c00008{bottom:863.464500px;}
.yb_c00008{bottom:890.410500px;}
.ya_c00008{bottom:917.355000px;}
.y9_c00008{bottom:944.301000px;}
.y8_c00008{bottom:971.245500px;}
.y7_c00008{bottom:998.191500px;}
.y6_c00008{bottom:1025.136000px;}
.y5_c00008{bottom:1052.082000px;}
.y4_c00008{bottom:1079.026500px;}
.y3_c00008{bottom:1105.972500px;}
.y2_c00008{bottom:1132.917000px;}
.y1_c00008{bottom:1159.863000px;}
.h2_c00008{height:52.332837px;}
.h0_c00008{height:1262.835000px;}
.h1_c00008{height:1263.000000px;}
.w0_c00008{width:892.920000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:149.974500px;}
.x2_c00008{left:442.720500px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:-2.391024pt;}
.ws1_c00008{word-spacing:0.000000pt;}
._15_c00008{margin-left:-3.666237pt;}
._3_c00008{margin-left:-2.125355pt;}
._0_c00008{width:2.656693pt;}
._c_c00008{width:4.782048pt;}
._a_c00008{width:14.729004pt;}
._4_c00008{width:18.729818pt;}
._12_c00008{width:21.348353pt;}
._d_c00008{width:23.284833pt;}
._14_c00008{width:24.750197pt;}
._7_c00008{width:26.638877pt;}
._1_c00008{width:30.358247pt;}
._11_c00008{width:33.623553pt;}
._13_c00008{width:34.966397pt;}
._2_c00008{width:36.340726pt;}
._e_c00008{width:37.576566pt;}
._5_c00008{width:38.919410pt;}
._9_c00008{width:41.295937pt;}
._b_c00008{width:43.953907pt;}
._16_c00008{width:46.163146pt;}
._8_c00008{width:47.673278pt;}
._f_c00008{width:51.862966pt;}
._6_c00008{width:53.205810pt;}
._10_c00008{width:54.292627pt;}
.fs0_c00008{font-size:53.133867pt;}
.y0_c00008{bottom:0.000000pt;}
.y2a_c00008{bottom:39.333333pt;}
.y29_c00008{bottom:72.934667pt;}
.y28_c00008{bottom:96.885333pt;}
.y27_c00008{bottom:120.837333pt;}
.y26_c00008{bottom:144.788000pt;}
.y25_c00008{bottom:168.740000pt;}
.y24_c00008{bottom:192.690667pt;}
.y23_c00008{bottom:216.642667pt;}
.y22_c00008{bottom:240.593333pt;}
.y21_c00008{bottom:264.545333pt;}
.y20_c00008{bottom:288.496000pt;}
.y1f_c00008{bottom:312.448000pt;}
.y1e_c00008{bottom:336.398667pt;}
.y1d_c00008{bottom:360.350667pt;}
.y1c_c00008{bottom:384.302667pt;}
.y1b_c00008{bottom:408.253333pt;}
.y1a_c00008{bottom:432.205333pt;}
.y19_c00008{bottom:456.156000pt;}
.y18_c00008{bottom:480.108000pt;}
.y17_c00008{bottom:504.058667pt;}
.y16_c00008{bottom:528.010667pt;}
.y15_c00008{bottom:551.961333pt;}
.y14_c00008{bottom:575.913333pt;}
.y13_c00008{bottom:599.864000pt;}
.y12_c00008{bottom:623.816000pt;}
.y11_c00008{bottom:647.766667pt;}
.y10_c00008{bottom:671.718667pt;}
.yf_c00008{bottom:695.669333pt;}
.ye_c00008{bottom:719.621333pt;}
.yd_c00008{bottom:743.573333pt;}
.yc_c00008{bottom:767.524000pt;}
.yb_c00008{bottom:791.476000pt;}
.ya_c00008{bottom:815.426667pt;}
.y9_c00008{bottom:839.378667pt;}
.y8_c00008{bottom:863.329333pt;}
.y7_c00008{bottom:887.281333pt;}
.y6_c00008{bottom:911.232000pt;}
.y5_c00008{bottom:935.184000pt;}
.y4_c00008{bottom:959.134667pt;}
.y3_c00008{bottom:983.086667pt;}
.y2_c00008{bottom:1007.037333pt;}
.y1_c00008{bottom:1030.989333pt;}
.h2_c00008{height:46.518078pt;}
.h0_c00008{height:1122.520000pt;}
.h1_c00008{height:1122.666667pt;}
.w0_c00008{width:793.706667pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:133.310667pt;}
.x2_c00008{left:393.529333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99cb7a516599e3dc895c16e6.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.102051;font-style: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;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:-2.689902px;}
.ws1_c00009{word-spacing:0.000000px;}
._6_c00009{margin-left:-4.124516px;}
._d_c00009{margin-left:-2.092146px;}
._0_c00009{width:2.988780px;}
._16_c00009{width:15.725296px;}
._14_c00009{width:17.109546px;}
._4_c00009{width:20.337428px;}
._8_c00009{width:24.674429px;}
._f_c00009{width:25.896559px;}
._1_c00009{width:27.517937px;}
._9_c00009{width:32.435845px;}
._15_c00009{width:33.520679px;}
._12_c00009{width:34.734475px;}
._5_c00009{width:36.415628px;}
._a_c00009{width:38.618453px;}
._2_c00009{width:40.883317px;}
._10_c00009{width:41.974759px;}
._11_c00009{width:43.112190px;}
._c_c00009{width:47.510144px;}
._3_c00009{width:50.225228px;}
._7_c00009{width:54.562229px;}
._e_c00009{width:55.784359px;}
._13_c00009{width:57.447767px;}
._b_c00009{width:61.325744px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:59.775600px;}
.y0_c00009{bottom:0.000000px;}
.y2a_c00009{bottom:44.250000px;}
.y29_c00009{bottom:82.051500px;}
.y28_c00009{bottom:108.996000px;}
.y27_c00009{bottom:135.942000px;}
.y26_c00009{bottom:162.886500px;}
.y25_c00009{bottom:189.832500px;}
.y24_c00009{bottom:216.777000px;}
.y23_c00009{bottom:243.723000px;}
.y22_c00009{bottom:270.667500px;}
.y21_c00009{bottom:297.613500px;}
.y20_c00009{bottom:324.558000px;}
.y1f_c00009{bottom:351.504000px;}
.y1e_c00009{bottom:378.448500px;}
.y1d_c00009{bottom:405.394500px;}
.y1c_c00009{bottom:432.340500px;}
.y1b_c00009{bottom:459.285000px;}
.y1a_c00009{bottom:486.231000px;}
.y19_c00009{bottom:513.175500px;}
.y18_c00009{bottom:540.121500px;}
.y17_c00009{bottom:567.066000px;}
.y16_c00009{bottom:594.012000px;}
.y15_c00009{bottom:620.956500px;}
.y14_c00009{bottom:647.902500px;}
.y13_c00009{bottom:674.847000px;}
.y12_c00009{bottom:701.793000px;}
.y11_c00009{bottom:728.737500px;}
.y10_c00009{bottom:755.683500px;}
.yf_c00009{bottom:782.628000px;}
.ye_c00009{bottom:809.574000px;}
.yd_c00009{bottom:836.520000px;}
.yc_c00009{bottom:863.464500px;}
.yb_c00009{bottom:890.410500px;}
.ya_c00009{bottom:917.355000px;}
.y9_c00009{bottom:944.301000px;}
.y8_c00009{bottom:971.245500px;}
.y7_c00009{bottom:998.191500px;}
.y6_c00009{bottom:1025.136000px;}
.y5_c00009{bottom:1052.082000px;}
.y4_c00009{bottom:1079.026500px;}
.y3_c00009{bottom:1105.972500px;}
.y2_c00009{bottom:1132.917000px;}
.y1_c00009{bottom:1159.863000px;}
.h2_c00009{height:52.332837px;}
.h0_c00009{height:1262.835000px;}
.h1_c00009{height:1263.000000px;}
.w0_c00009{width:892.920000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:149.974500px;}
.x2_c00009{left:438.984000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:-2.391024pt;}
.ws1_c00009{word-spacing:0.000000pt;}
._6_c00009{margin-left:-3.666237pt;}
._d_c00009{margin-left:-1.859685pt;}
._0_c00009{width:2.656693pt;}
._16_c00009{width:13.978041pt;}
._14_c00009{width:15.208485pt;}
._4_c00009{width:18.077714pt;}
._8_c00009{width:21.932826pt;}
._f_c00009{width:23.019164pt;}
._1_c00009{width:24.460388pt;}
._9_c00009{width:28.831862pt;}
._15_c00009{width:29.796159pt;}
._12_c00009{width:30.875089pt;}
._5_c00009{width:32.369447pt;}
._a_c00009{width:34.327514pt;}
._2_c00009{width:36.340726pt;}
._10_c00009{width:37.310897pt;}
._11_c00009{width:38.321947pt;}
._c_c00009{width:42.231239pt;}
._3_c00009{width:44.644647pt;}
._7_c00009{width:48.499759pt;}
._e_c00009{width:49.586097pt;}
._13_c00009{width:51.064682pt;}
._b_c00009{width:54.511773pt;}
.fs0_c00009{font-size:53.133867pt;}
.y0_c00009{bottom:0.000000pt;}
.y2a_c00009{bottom:39.333333pt;}
.y29_c00009{bottom:72.934667pt;}
.y28_c00009{bottom:96.885333pt;}
.y27_c00009{bottom:120.837333pt;}
.y26_c00009{bottom:144.788000pt;}
.y25_c00009{bottom:168.740000pt;}
.y24_c00009{bottom:192.690667pt;}
.y23_c00009{bottom:216.642667pt;}
.y22_c00009{bottom:240.593333pt;}
.y21_c00009{bottom:264.545333pt;}
.y20_c00009{bottom:288.496000pt;}
.y1f_c00009{bottom:312.448000pt;}
.y1e_c00009{bottom:336.398667pt;}
.y1d_c00009{bottom:360.350667pt;}
.y1c_c00009{bottom:384.302667pt;}
.y1b_c00009{bottom:408.253333pt;}
.y1a_c00009{bottom:432.205333pt;}
.y19_c00009{bottom:456.156000pt;}
.y18_c00009{bottom:480.108000pt;}
.y17_c00009{bottom:504.058667pt;}
.y16_c00009{bottom:528.010667pt;}
.y15_c00009{bottom:551.961333pt;}
.y14_c00009{bottom:575.913333pt;}
.y13_c00009{bottom:599.864000pt;}
.y12_c00009{bottom:623.816000pt;}
.y11_c00009{bottom:647.766667pt;}
.y10_c00009{bottom:671.718667pt;}
.yf_c00009{bottom:695.669333pt;}
.ye_c00009{bottom:719.621333pt;}
.yd_c00009{bottom:743.573333pt;}
.yc_c00009{bottom:767.524000pt;}
.yb_c00009{bottom:791.476000pt;}
.ya_c00009{bottom:815.426667pt;}
.y9_c00009{bottom:839.378667pt;}
.y8_c00009{bottom:863.329333pt;}
.y7_c00009{bottom:887.281333pt;}
.y6_c00009{bottom:911.232000pt;}
.y5_c00009{bottom:935.184000pt;}
.y4_c00009{bottom:959.134667pt;}
.y3_c00009{bottom:983.086667pt;}
.y2_c00009{bottom:1007.037333pt;}
.y1_c00009{bottom:1030.989333pt;}
.h2_c00009{height:46.518078pt;}
.h0_c00009{height:1122.520000pt;}
.h1_c00009{height:1122.666667pt;}
.w0_c00009{width:793.706667pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:133.310667pt;}
.x2_c00009{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffa5101cfa17a6818fa33246.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.102051;font-style: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;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00010{word-spacing:-33.713438px;}
.ws0_c00010{word-spacing:-2.689902px;}
._e_c00010{margin-left:-7.651277px;}
._5_c00010{margin-left:-5.977560px;}
._6_c00010{margin-left:-4.124516px;}
._15_c00010{margin-left:-2.450800px;}
._b_c00010{margin-left:-1.135736px;}
._0_c00010{width:2.988780px;}
._16_c00010{width:5.439580px;}
._12_c00010{width:15.809356px;}
._11_c00010{width:22.504223px;}
._4_c00010{width:24.622987px;}
._1a_c00010{width:25.911432px;}
._c_c00010{width:27.202750px;}
._9_c00010{width:29.414447px;}
._10_c00010{width:35.228989px;}
._7_c00010{width:36.594955px;}
._1_c00010{width:38.438587px;}
._2_c00010{width:40.841826px;}
._d_c00010{width:42.213862px;}
._14_c00010{width:44.436407px;}
._a_c00010{width:45.492647px;}
._13_c00010{width:48.013531px;}
._19_c00010{width:49.164140px;}
._18_c00010{width:51.316062px;}
._3_c00010{width:54.510787px;}
._17_c00010{width:56.920096px;}
._8_c00010{width:59.302247px;}
._f_c00010{width:61.283714px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:59.775600px;}
.y0_c00010{bottom:0.000000px;}
.y2a_c00010{bottom:44.250000px;}
.y29_c00010{bottom:82.051500px;}
.y28_c00010{bottom:108.996000px;}
.y27_c00010{bottom:135.942000px;}
.y26_c00010{bottom:162.886500px;}
.y25_c00010{bottom:189.832500px;}
.y24_c00010{bottom:216.777000px;}
.y23_c00010{bottom:243.723000px;}
.y22_c00010{bottom:270.667500px;}
.y21_c00010{bottom:297.613500px;}
.y20_c00010{bottom:324.558000px;}
.y1f_c00010{bottom:351.504000px;}
.y1e_c00010{bottom:378.448500px;}
.y1d_c00010{bottom:405.394500px;}
.y1c_c00010{bottom:432.340500px;}
.y1b_c00010{bottom:459.285000px;}
.y1a_c00010{bottom:486.231000px;}
.y19_c00010{bottom:513.175500px;}
.y18_c00010{bottom:540.121500px;}
.y17_c00010{bottom:567.066000px;}
.y16_c00010{bottom:594.012000px;}
.y15_c00010{bottom:620.956500px;}
.y14_c00010{bottom:647.902500px;}
.y13_c00010{bottom:674.847000px;}
.y12_c00010{bottom:701.793000px;}
.y11_c00010{bottom:728.737500px;}
.y10_c00010{bottom:755.683500px;}
.yf_c00010{bottom:782.628000px;}
.ye_c00010{bottom:809.574000px;}
.yd_c00010{bottom:836.520000px;}
.yc_c00010{bottom:863.464500px;}
.yb_c00010{bottom:890.410500px;}
.ya_c00010{bottom:917.355000px;}
.y9_c00010{bottom:944.301000px;}
.y8_c00010{bottom:971.245500px;}
.y7_c00010{bottom:998.191500px;}
.y6_c00010{bottom:1025.136000px;}
.y5_c00010{bottom:1052.082000px;}
.y4_c00010{bottom:1079.026500px;}
.y3_c00010{bottom:1105.972500px;}
.y2_c00010{bottom:1132.917000px;}
.y1_c00010{bottom:1159.863000px;}
.h2_c00010{height:52.332837px;}
.h0_c00010{height:1262.835000px;}
.h1_c00010{height:1263.000000px;}
.w0_c00010{width:892.920000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:149.974500px;}
.x2_c00010{left:439.261500px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws1_c00010{word-spacing:-29.967501pt;}
.ws0_c00010{word-spacing:-2.391024pt;}
._e_c00010{margin-left:-6.801135pt;}
._5_c00010{margin-left:-5.313387pt;}
._6_c00010{margin-left:-3.666237pt;}
._15_c00010{margin-left:-2.178489pt;}
._b_c00010{margin-left:-1.009543pt;}
._0_c00010{width:2.656693pt;}
._16_c00010{width:4.835182pt;}
._12_c00010{width:14.052761pt;}
._11_c00010{width:20.003754pt;}
._4_c00010{width:21.887100pt;}
._1a_c00010{width:23.032384pt;}
._c_c00010{width:24.180222pt;}
._9_c00010{width:26.146175pt;}
._10_c00010{width:31.314657pt;}
._7_c00010{width:32.528849pt;}
._1_c00010{width:34.167633pt;}
._2_c00010{width:36.303845pt;}
._d_c00010{width:37.523433pt;}
._14_c00010{width:39.499028pt;}
._a_c00010{width:40.437908pt;}
._13_c00010{width:42.678694pt;}
._19_c00010{width:43.701458pt;}
._18_c00010{width:45.614277pt;}
._3_c00010{width:48.454033pt;}
._17_c00010{width:50.595641pt;}
._8_c00010{width:52.713108pt;}
._f_c00010{width:54.474413pt;}
.fs0_c00010{font-size:53.133867pt;}
.y0_c00010{bottom:0.000000pt;}
.y2a_c00010{bottom:39.333333pt;}
.y29_c00010{bottom:72.934667pt;}
.y28_c00010{bottom:96.885333pt;}
.y27_c00010{bottom:120.837333pt;}
.y26_c00010{bottom:144.788000pt;}
.y25_c00010{bottom:168.740000pt;}
.y24_c00010{bottom:192.690667pt;}
.y23_c00010{bottom:216.642667pt;}
.y22_c00010{bottom:240.593333pt;}
.y21_c00010{bottom:264.545333pt;}
.y20_c00010{bottom:288.496000pt;}
.y1f_c00010{bottom:312.448000pt;}
.y1e_c00010{bottom:336.398667pt;}
.y1d_c00010{bottom:360.350667pt;}
.y1c_c00010{bottom:384.302667pt;}
.y1b_c00010{bottom:408.253333pt;}
.y1a_c00010{bottom:432.205333pt;}
.y19_c00010{bottom:456.156000pt;}
.y18_c00010{bottom:480.108000pt;}
.y17_c00010{bottom:504.058667pt;}
.y16_c00010{bottom:528.010667pt;}
.y15_c00010{bottom:551.961333pt;}
.y14_c00010{bottom:575.913333pt;}
.y13_c00010{bottom:599.864000pt;}
.y12_c00010{bottom:623.816000pt;}
.y11_c00010{bottom:647.766667pt;}
.y10_c00010{bottom:671.718667pt;}
.yf_c00010{bottom:695.669333pt;}
.ye_c00010{bottom:719.621333pt;}
.yd_c00010{bottom:743.573333pt;}
.yc_c00010{bottom:767.524000pt;}
.yb_c00010{bottom:791.476000pt;}
.ya_c00010{bottom:815.426667pt;}
.y9_c00010{bottom:839.378667pt;}
.y8_c00010{bottom:863.329333pt;}
.y7_c00010{bottom:887.281333pt;}
.y6_c00010{bottom:911.232000pt;}
.y5_c00010{bottom:935.184000pt;}
.y4_c00010{bottom:959.134667pt;}
.y3_c00010{bottom:983.086667pt;}
.y2_c00010{bottom:1007.037333pt;}
.y1_c00010{bottom:1030.989333pt;}
.h2_c00010{height:46.518078pt;}
.h0_c00010{height:1122.520000pt;}
.h1_c00010{height:1122.666667pt;}
.w0_c00010{width:793.706667pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:133.310667pt;}
.x2_c00010{left:390.454667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01aeac377b400d07e963def0.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.102051;font-style: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;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:-2.689902px;}
.ws1_c00011{word-spacing:0.000000px;}
._16_c00011{margin-left:-5.977560px;}
._12_c00011{margin-left:-2.092146px;}
._1_c00011{margin-left:-1.075961px;}
._0_c00011{width:2.988780px;}
._8_c00011{width:17.049770px;}
._10_c00011{width:18.125731px;}
._c_c00011{width:20.337428px;}
._13_c00011{width:21.583843px;}
._5_c00011{width:23.684862px;}
._e_c00011{width:25.306240px;}
._a_c00011{width:27.517937px;}
._9_c00011{width:33.127970px;}
._11_c00011{width:34.203931px;}
._d_c00011{width:36.415628px;}
._6_c00011{width:39.763062px;}
._3_c00011{width:40.890754px;}
._18_c00011{width:41.974759px;}
._14_c00011{width:44.297135px;}
._7_c00011{width:46.937570px;}
._f_c00011{width:48.013531px;}
._b_c00011{width:50.225228px;}
._4_c00011{width:53.572662px;}
._17_c00011{width:55.339312px;}
._2_c00011{width:57.996056px;}
._15_c00011{width:60.369335px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:59.775600px;}
.y0_c00011{bottom:0.000000px;}
.y2a_c00011{bottom:44.250000px;}
.y29_c00011{bottom:82.051500px;}
.y28_c00011{bottom:108.996000px;}
.y27_c00011{bottom:135.942000px;}
.y26_c00011{bottom:162.886500px;}
.y25_c00011{bottom:189.832500px;}
.y24_c00011{bottom:216.777000px;}
.y23_c00011{bottom:243.723000px;}
.y22_c00011{bottom:270.667500px;}
.y21_c00011{bottom:297.613500px;}
.y20_c00011{bottom:324.558000px;}
.y1f_c00011{bottom:351.504000px;}
.y1e_c00011{bottom:378.448500px;}
.y1d_c00011{bottom:405.394500px;}
.y1c_c00011{bottom:432.340500px;}
.y1b_c00011{bottom:459.285000px;}
.y1a_c00011{bottom:486.231000px;}
.y19_c00011{bottom:513.175500px;}
.y18_c00011{bottom:540.121500px;}
.y17_c00011{bottom:567.066000px;}
.y16_c00011{bottom:594.012000px;}
.y15_c00011{bottom:620.956500px;}
.y14_c00011{bottom:647.902500px;}
.y13_c00011{bottom:674.847000px;}
.y12_c00011{bottom:701.793000px;}
.y11_c00011{bottom:728.737500px;}
.y10_c00011{bottom:755.683500px;}
.yf_c00011{bottom:782.628000px;}
.ye_c00011{bottom:809.574000px;}
.yd_c00011{bottom:836.520000px;}
.yc_c00011{bottom:863.464500px;}
.yb_c00011{bottom:890.410500px;}
.ya_c00011{bottom:917.355000px;}
.y9_c00011{bottom:944.301000px;}
.y8_c00011{bottom:971.245500px;}
.y7_c00011{bottom:998.191500px;}
.y6_c00011{bottom:1025.136000px;}
.y5_c00011{bottom:1052.082000px;}
.y4_c00011{bottom:1079.026500px;}
.y3_c00011{bottom:1105.972500px;}
.y2_c00011{bottom:1132.917000px;}
.y1_c00011{bottom:1159.863000px;}
.h2_c00011{height:52.332837px;}
.h0_c00011{height:1262.835000px;}
.h1_c00011{height:1263.000000px;}
.w0_c00011{width:892.920000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:149.974500px;}
.x2_c00011{left:438.984000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:-2.391024pt;}
.ws1_c00011{word-spacing:0.000000pt;}
._16_c00011{margin-left:-5.313387pt;}
._12_c00011{margin-left:-1.859685pt;}
._1_c00011{margin-left:-0.956410pt;}
._0_c00011{width:2.656693pt;}
._8_c00011{width:15.155351pt;}
._10_c00011{width:16.111761pt;}
._c_c00011{width:18.077714pt;}
._13_c00011{width:19.185638pt;}
._5_c00011{width:21.053211pt;}
._e_c00011{width:22.494435pt;}
._a_c00011{width:24.460388pt;}
._9_c00011{width:29.447085pt;}
._11_c00011{width:30.403494pt;}
._d_c00011{width:32.369447pt;}
._6_c00011{width:35.344944pt;}
._3_c00011{width:36.347337pt;}
._18_c00011{width:37.310897pt;}
._14_c00011{width:39.375231pt;}
._7_c00011{width:41.722285pt;}
._f_c00011{width:42.678694pt;}
._b_c00011{width:44.644647pt;}
._4_c00011{width:47.620144pt;}
._17_c00011{width:49.190499pt;}
._2_c00011{width:51.552050pt;}
._15_c00011{width:53.661631pt;}
.fs0_c00011{font-size:53.133867pt;}
.y0_c00011{bottom:0.000000pt;}
.y2a_c00011{bottom:39.333333pt;}
.y29_c00011{bottom:72.934667pt;}
.y28_c00011{bottom:96.885333pt;}
.y27_c00011{bottom:120.837333pt;}
.y26_c00011{bottom:144.788000pt;}
.y25_c00011{bottom:168.740000pt;}
.y24_c00011{bottom:192.690667pt;}
.y23_c00011{bottom:216.642667pt;}
.y22_c00011{bottom:240.593333pt;}
.y21_c00011{bottom:264.545333pt;}
.y20_c00011{bottom:288.496000pt;}
.y1f_c00011{bottom:312.448000pt;}
.y1e_c00011{bottom:336.398667pt;}
.y1d_c00011{bottom:360.350667pt;}
.y1c_c00011{bottom:384.302667pt;}
.y1b_c00011{bottom:408.253333pt;}
.y1a_c00011{bottom:432.205333pt;}
.y19_c00011{bottom:456.156000pt;}
.y18_c00011{bottom:480.108000pt;}
.y17_c00011{bottom:504.058667pt;}
.y16_c00011{bottom:528.010667pt;}
.y15_c00011{bottom:551.961333pt;}
.y14_c00011{bottom:575.913333pt;}
.y13_c00011{bottom:599.864000pt;}
.y12_c00011{bottom:623.816000pt;}
.y11_c00011{bottom:647.766667pt;}
.y10_c00011{bottom:671.718667pt;}
.yf_c00011{bottom:695.669333pt;}
.ye_c00011{bottom:719.621333pt;}
.yd_c00011{bottom:743.573333pt;}
.yc_c00011{bottom:767.524000pt;}
.yb_c00011{bottom:791.476000pt;}
.ya_c00011{bottom:815.426667pt;}
.y9_c00011{bottom:839.378667pt;}
.y8_c00011{bottom:863.329333pt;}
.y7_c00011{bottom:887.281333pt;}
.y6_c00011{bottom:911.232000pt;}
.y5_c00011{bottom:935.184000pt;}
.y4_c00011{bottom:959.134667pt;}
.y3_c00011{bottom:983.086667pt;}
.y2_c00011{bottom:1007.037333pt;}
.y1_c00011{bottom:1030.989333pt;}
.h2_c00011{height:46.518078pt;}
.h0_c00011{height:1122.520000pt;}
.h1_c00011{height:1122.666667pt;}
.w0_c00011{width:793.706667pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:133.310667pt;}
.x2_c00011{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_594c12f07a6082f2559e21e1.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-2.689902px;}
.ws1_c00012{word-spacing:0.000000px;}
._7_c00012{margin-left:-5.977560px;}
._c_c00012{margin-left:-4.124516px;}
._1_c00012{margin-left:-2.092146px;}
._0_c00012{width:2.988780px;}
._11_c00012{width:19.806884px;}
._d_c00012{width:21.395644px;}
._a_c00012{width:22.437011px;}
._4_c00012{width:27.467034px;}
._8_c00012{width:29.617519px;}
._15_c00012{width:32.870584px;}
._12_c00012{width:35.879084px;}
._b_c00012{width:38.509211px;}
._3_c00012{width:40.874444px;}
._5_c00012{width:43.545234px;}
._e_c00012{width:46.253420px;}
._14_c00012{width:47.372309px;}
._10_c00012{width:49.694684px;}
._2_c00012{width:50.719742px;}
._9_c00012{width:52.324811px;}
._f_c00012{width:55.151112px;}
._6_c00012{width:59.617434px;}
._13_c00012{width:61.187909px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:59.775600px;}
.y0_c00012{bottom:0.000000px;}
.y2a_c00012{bottom:44.250000px;}
.y29_c00012{bottom:82.051500px;}
.y28_c00012{bottom:108.996000px;}
.y27_c00012{bottom:135.942000px;}
.y26_c00012{bottom:162.886500px;}
.y25_c00012{bottom:189.832500px;}
.y24_c00012{bottom:216.777000px;}
.y23_c00012{bottom:243.723000px;}
.y22_c00012{bottom:270.667500px;}
.y21_c00012{bottom:297.613500px;}
.y20_c00012{bottom:324.558000px;}
.y1f_c00012{bottom:351.504000px;}
.y1e_c00012{bottom:378.448500px;}
.y1d_c00012{bottom:405.394500px;}
.y1c_c00012{bottom:432.340500px;}
.y1b_c00012{bottom:459.285000px;}
.y1a_c00012{bottom:486.231000px;}
.y19_c00012{bottom:513.175500px;}
.y18_c00012{bottom:540.121500px;}
.y17_c00012{bottom:567.066000px;}
.y16_c00012{bottom:594.012000px;}
.y15_c00012{bottom:620.956500px;}
.y14_c00012{bottom:647.902500px;}
.y13_c00012{bottom:674.847000px;}
.y12_c00012{bottom:701.793000px;}
.y11_c00012{bottom:728.737500px;}
.y10_c00012{bottom:755.683500px;}
.yf_c00012{bottom:782.628000px;}
.ye_c00012{bottom:809.574000px;}
.yd_c00012{bottom:836.520000px;}
.yc_c00012{bottom:863.464500px;}
.yb_c00012{bottom:890.410500px;}
.ya_c00012{bottom:917.355000px;}
.y9_c00012{bottom:944.301000px;}
.y8_c00012{bottom:971.245500px;}
.y7_c00012{bottom:998.191500px;}
.y6_c00012{bottom:1025.136000px;}
.y5_c00012{bottom:1052.082000px;}
.y4_c00012{bottom:1079.026500px;}
.y3_c00012{bottom:1105.972500px;}
.y2_c00012{bottom:1132.917000px;}
.y1_c00012{bottom:1159.863000px;}
.h2_c00012{height:52.332837px;}
.h0_c00012{height:1262.835000px;}
.h1_c00012{height:1263.000000px;}
.w0_c00012{width:892.920000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:149.974500px;}
.x2_c00012{left:438.984000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:-2.391024pt;}
.ws1_c00012{word-spacing:0.000000pt;}
._7_c00012{margin-left:-5.313387pt;}
._c_c00012{margin-left:-3.666237pt;}
._1_c00012{margin-left:-1.859685pt;}
._0_c00012{width:2.656693pt;}
._11_c00012{width:17.606119pt;}
._d_c00012{width:19.018350pt;}
._a_c00012{width:19.944010pt;}
._4_c00012{width:24.415141pt;}
._8_c00012{width:26.326684pt;}
._15_c00012{width:29.218297pt;}
._12_c00012{width:31.892519pt;}
._b_c00012{width:34.230410pt;}
._3_c00012{width:36.332839pt;}
._5_c00012{width:38.706875pt;}
._e_c00012{width:41.114151pt;}
._14_c00012{width:42.108719pt;}
._10_c00012{width:44.173053pt;}
._2_c00012{width:45.084215pt;}
._9_c00012{width:46.510943pt;}
._f_c00012{width:49.023211pt;}
._6_c00012{width:52.993275pt;}
._13_c00012{width:54.389252pt;}
.fs0_c00012{font-size:53.133867pt;}
.y0_c00012{bottom:0.000000pt;}
.y2a_c00012{bottom:39.333333pt;}
.y29_c00012{bottom:72.934667pt;}
.y28_c00012{bottom:96.885333pt;}
.y27_c00012{bottom:120.837333pt;}
.y26_c00012{bottom:144.788000pt;}
.y25_c00012{bottom:168.740000pt;}
.y24_c00012{bottom:192.690667pt;}
.y23_c00012{bottom:216.642667pt;}
.y22_c00012{bottom:240.593333pt;}
.y21_c00012{bottom:264.545333pt;}
.y20_c00012{bottom:288.496000pt;}
.y1f_c00012{bottom:312.448000pt;}
.y1e_c00012{bottom:336.398667pt;}
.y1d_c00012{bottom:360.350667pt;}
.y1c_c00012{bottom:384.302667pt;}
.y1b_c00012{bottom:408.253333pt;}
.y1a_c00012{bottom:432.205333pt;}
.y19_c00012{bottom:456.156000pt;}
.y18_c00012{bottom:480.108000pt;}
.y17_c00012{bottom:504.058667pt;}
.y16_c00012{bottom:528.010667pt;}
.y15_c00012{bottom:551.961333pt;}
.y14_c00012{bottom:575.913333pt;}
.y13_c00012{bottom:599.864000pt;}
.y12_c00012{bottom:623.816000pt;}
.y11_c00012{bottom:647.766667pt;}
.y10_c00012{bottom:671.718667pt;}
.yf_c00012{bottom:695.669333pt;}
.ye_c00012{bottom:719.621333pt;}
.yd_c00012{bottom:743.573333pt;}
.yc_c00012{bottom:767.524000pt;}
.yb_c00012{bottom:791.476000pt;}
.ya_c00012{bottom:815.426667pt;}
.y9_c00012{bottom:839.378667pt;}
.y8_c00012{bottom:863.329333pt;}
.y7_c00012{bottom:887.281333pt;}
.y6_c00012{bottom:911.232000pt;}
.y5_c00012{bottom:935.184000pt;}
.y4_c00012{bottom:959.134667pt;}
.y3_c00012{bottom:983.086667pt;}
.y2_c00012{bottom:1007.037333pt;}
.y1_c00012{bottom:1030.989333pt;}
.h2_c00012{height:46.518078pt;}
.h0_c00012{height:1122.520000pt;}
.h1_c00012{height:1122.666667pt;}
.w0_c00012{width:793.706667pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:133.310667pt;}
.x2_c00012{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef9dd581b7b8b9933975ba40.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.102051;font-style: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;}
.ls1_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:31.023536px;}
.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:-54.681019px;}
.ws0_c00013{word-spacing:-2.689902px;}
.ws2_c00013{word-spacing:0.000000px;}
._15_c00013{margin-left:-31.023536px;}
._16_c00013{margin-left:-28.034756px;}
._7_c00013{margin-left:-2.211697px;}
._0_c00013{width:2.988780px;}
._8_c00013{width:5.200477px;}
._17_c00013{width:8.014243px;}
._3_c00013{width:15.452138px;}
._5_c00013{width:16.536972px;}
._b_c00013{width:17.987896px;}
._13_c00013{width:22.752198px;}
._10_c00013{width:26.016110px;}
._d_c00013{width:28.030196px;}
._14_c00013{width:29.998478px;}
._6_c00013{width:32.615172px;}
._4_c00013{width:39.789680px;}
._2_c00013{width:40.874444px;}
._11_c00013{width:42.094310px;}
._e_c00013{width:44.108396px;}
._1_c00013{width:45.339938px;}
._9_c00013{width:48.687372px;}
._c_c00013{width:51.282905px;}
._a_c00013{width:55.056204px;}
._18_c00013{width:56.619781px;}
._12_c00013{width:58.166510px;}
._f_c00013{width:60.180596px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:59.775600px;}
.y0_c00013{bottom:0.000000px;}
.y2a_c00013{bottom:44.250000px;}
.y29_c00013{bottom:82.051500px;}
.y28_c00013{bottom:108.996000px;}
.y27_c00013{bottom:135.942000px;}
.y26_c00013{bottom:162.886500px;}
.y25_c00013{bottom:189.832500px;}
.y24_c00013{bottom:216.777000px;}
.y23_c00013{bottom:243.723000px;}
.y22_c00013{bottom:270.667500px;}
.y21_c00013{bottom:297.613500px;}
.y20_c00013{bottom:324.558000px;}
.y1f_c00013{bottom:351.504000px;}
.y1e_c00013{bottom:378.448500px;}
.y1d_c00013{bottom:405.394500px;}
.y1c_c00013{bottom:432.340500px;}
.y1b_c00013{bottom:459.285000px;}
.y1a_c00013{bottom:486.231000px;}
.y19_c00013{bottom:513.175500px;}
.y18_c00013{bottom:540.121500px;}
.y17_c00013{bottom:567.066000px;}
.y16_c00013{bottom:594.012000px;}
.y15_c00013{bottom:620.956500px;}
.y14_c00013{bottom:647.902500px;}
.y13_c00013{bottom:674.847000px;}
.y12_c00013{bottom:701.793000px;}
.y11_c00013{bottom:728.737500px;}
.y10_c00013{bottom:755.683500px;}
.yf_c00013{bottom:782.628000px;}
.ye_c00013{bottom:809.574000px;}
.yd_c00013{bottom:836.520000px;}
.yc_c00013{bottom:863.464500px;}
.yb_c00013{bottom:890.410500px;}
.ya_c00013{bottom:917.355000px;}
.y9_c00013{bottom:944.301000px;}
.y8_c00013{bottom:971.245500px;}
.y7_c00013{bottom:998.191500px;}
.y6_c00013{bottom:1025.136000px;}
.y5_c00013{bottom:1052.082000px;}
.y4_c00013{bottom:1079.026500px;}
.y3_c00013{bottom:1105.972500px;}
.y2_c00013{bottom:1132.917000px;}
.y1_c00013{bottom:1159.863000px;}
.h2_c00013{height:52.332837px;}
.h0_c00013{height:1262.835000px;}
.h1_c00013{height:1263.000000px;}
.w0_c00013{width:892.920000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:149.974500px;}
.x2_c00013{left:438.984000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls1_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:27.576477pt;}
.ws1_c00013{word-spacing:-48.605350pt;}
.ws0_c00013{word-spacing:-2.391024pt;}
.ws2_c00013{word-spacing:0.000000pt;}
._15_c00013{margin-left:-27.576477pt;}
._16_c00013{margin-left:-24.919783pt;}
._7_c00013{margin-left:-1.965953pt;}
._0_c00013{width:2.656693pt;}
._8_c00013{width:4.622646pt;}
._17_c00013{width:7.123772pt;}
._3_c00013{width:13.735234pt;}
._5_c00013{width:14.699531pt;}
._b_c00013{width:15.989241pt;}
._13_c00013{width:20.224176pt;}
._10_c00013{width:23.125431pt;}
._d_c00013{width:24.915730pt;}
._14_c00013{width:26.665314pt;}
._6_c00013{width:28.991264pt;}
._4_c00013{width:35.368605pt;}
._2_c00013{width:36.332839pt;}
._11_c00013{width:37.417165pt;}
._e_c00013{width:39.207463pt;}
._1_c00013{width:40.302167pt;}
._9_c00013{width:43.277664pt;}
._c_c00013{width:45.584804pt;}
._a_c00013{width:48.938848pt;}
._18_c00013{width:50.328694pt;}
._12_c00013{width:51.703565pt;}
._f_c00013{width:53.493863pt;}
.fs0_c00013{font-size:53.133867pt;}
.y0_c00013{bottom:0.000000pt;}
.y2a_c00013{bottom:39.333333pt;}
.y29_c00013{bottom:72.934667pt;}
.y28_c00013{bottom:96.885333pt;}
.y27_c00013{bottom:120.837333pt;}
.y26_c00013{bottom:144.788000pt;}
.y25_c00013{bottom:168.740000pt;}
.y24_c00013{bottom:192.690667pt;}
.y23_c00013{bottom:216.642667pt;}
.y22_c00013{bottom:240.593333pt;}
.y21_c00013{bottom:264.545333pt;}
.y20_c00013{bottom:288.496000pt;}
.y1f_c00013{bottom:312.448000pt;}
.y1e_c00013{bottom:336.398667pt;}
.y1d_c00013{bottom:360.350667pt;}
.y1c_c00013{bottom:384.302667pt;}
.y1b_c00013{bottom:408.253333pt;}
.y1a_c00013{bottom:432.205333pt;}
.y19_c00013{bottom:456.156000pt;}
.y18_c00013{bottom:480.108000pt;}
.y17_c00013{bottom:504.058667pt;}
.y16_c00013{bottom:528.010667pt;}
.y15_c00013{bottom:551.961333pt;}
.y14_c00013{bottom:575.913333pt;}
.y13_c00013{bottom:599.864000pt;}
.y12_c00013{bottom:623.816000pt;}
.y11_c00013{bottom:647.766667pt;}
.y10_c00013{bottom:671.718667pt;}
.yf_c00013{bottom:695.669333pt;}
.ye_c00013{bottom:719.621333pt;}
.yd_c00013{bottom:743.573333pt;}
.yc_c00013{bottom:767.524000pt;}
.yb_c00013{bottom:791.476000pt;}
.ya_c00013{bottom:815.426667pt;}
.y9_c00013{bottom:839.378667pt;}
.y8_c00013{bottom:863.329333pt;}
.y7_c00013{bottom:887.281333pt;}
.y6_c00013{bottom:911.232000pt;}
.y5_c00013{bottom:935.184000pt;}
.y4_c00013{bottom:959.134667pt;}
.y3_c00013{bottom:983.086667pt;}
.y2_c00013{bottom:1007.037333pt;}
.y1_c00013{bottom:1030.989333pt;}
.h2_c00013{height:46.518078pt;}
.h0_c00013{height:1122.520000pt;}
.h1_c00013{height:1122.666667pt;}
.w0_c00013{width:793.706667pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:133.310667pt;}
.x2_c00013{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_548ab963e1c1cfd2b84f8708.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.102051;font-style: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:31.023536px;}
.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;}
}
.ws1_c00014{word-spacing:-54.681019px;}
.ws0_c00014{word-spacing:-2.689902px;}
.ws2_c00014{word-spacing:0.000000px;}
._e_c00014{margin-left:-35.805584px;}
._6_c00014{margin-left:-33.115682px;}
._4_c00014{margin-left:-31.023536px;}
._5_c00014{margin-left:-28.034756px;}
._10_c00014{margin-left:-7.049208px;}
._17_c00014{margin-left:-5.977560px;}
._11_c00014{margin-left:-4.782048px;}
._8_c00014{margin-left:-2.092146px;}
._0_c00014{width:2.988780px;}
._f_c00014{width:16.203500px;}
._13_c00014{width:17.219686px;}
._a_c00014{width:20.745010px;}
._16_c00014{width:21.891594px;}
._1_c00014{width:25.527596px;}
._7_c00014{width:26.783782px;}
._d_c00014{width:29.789410px;}
._14_c00014{width:35.707194px;}
._2_c00014{width:40.901063px;}
._b_c00014{width:43.605010px;}
._9_c00014{width:50.632810px;}
._15_c00014{width:51.779394px;}
._12_c00014{width:56.124728px;}
._3_c00014{width:57.671996px;}
._c_c00014{width:59.677210px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:59.775600px;}
.y0_c00014{bottom:0.000000px;}
.y2a_c00014{bottom:44.250000px;}
.y29_c00014{bottom:82.051500px;}
.y28_c00014{bottom:108.996000px;}
.y27_c00014{bottom:135.942000px;}
.y26_c00014{bottom:162.886500px;}
.y25_c00014{bottom:189.832500px;}
.y24_c00014{bottom:216.777000px;}
.y23_c00014{bottom:243.723000px;}
.y22_c00014{bottom:270.667500px;}
.y21_c00014{bottom:297.613500px;}
.y20_c00014{bottom:324.558000px;}
.y1f_c00014{bottom:351.504000px;}
.y1e_c00014{bottom:378.448500px;}
.y1d_c00014{bottom:405.394500px;}
.y1c_c00014{bottom:432.340500px;}
.y1b_c00014{bottom:459.285000px;}
.y1a_c00014{bottom:486.231000px;}
.y19_c00014{bottom:513.175500px;}
.y18_c00014{bottom:540.121500px;}
.y17_c00014{bottom:567.066000px;}
.y16_c00014{bottom:594.012000px;}
.y15_c00014{bottom:620.956500px;}
.y14_c00014{bottom:647.902500px;}
.y13_c00014{bottom:674.847000px;}
.y12_c00014{bottom:701.793000px;}
.y11_c00014{bottom:728.737500px;}
.y10_c00014{bottom:755.683500px;}
.yf_c00014{bottom:782.628000px;}
.ye_c00014{bottom:809.574000px;}
.yd_c00014{bottom:836.520000px;}
.yc_c00014{bottom:863.464500px;}
.yb_c00014{bottom:890.410500px;}
.ya_c00014{bottom:917.355000px;}
.y9_c00014{bottom:944.301000px;}
.y8_c00014{bottom:971.245500px;}
.y7_c00014{bottom:998.191500px;}
.y6_c00014{bottom:1025.136000px;}
.y5_c00014{bottom:1052.082000px;}
.y4_c00014{bottom:1079.026500px;}
.y3_c00014{bottom:1105.972500px;}
.y2_c00014{bottom:1132.917000px;}
.y1_c00014{bottom:1159.863000px;}
.h2_c00014{height:52.332837px;}
.h0_c00014{height:1262.835000px;}
.h1_c00014{height:1263.000000px;}
.w0_c00014{width:892.920000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:149.974500px;}
.x2_c00014{left:438.984000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:27.576477pt;}
.ws1_c00014{word-spacing:-48.605350pt;}
.ws0_c00014{word-spacing:-2.391024pt;}
.ws2_c00014{word-spacing:0.000000pt;}
._e_c00014{margin-left:-31.827186pt;}
._6_c00014{margin-left:-29.436162pt;}
._4_c00014{margin-left:-27.576477pt;}
._5_c00014{margin-left:-24.919783pt;}
._10_c00014{margin-left:-6.265963pt;}
._17_c00014{margin-left:-5.313387pt;}
._11_c00014{margin-left:-4.250709pt;}
._8_c00014{margin-left:-1.859685pt;}
._0_c00014{width:2.656693pt;}
._f_c00014{width:14.403111pt;}
._13_c00014{width:15.306387pt;}
._a_c00014{width:18.440009pt;}
._16_c00014{width:19.459195pt;}
._1_c00014{width:22.691197pt;}
._7_c00014{width:23.807806pt;}
._d_c00014{width:26.479475pt;}
._14_c00014{width:31.739728pt;}
._2_c00014{width:36.356500pt;}
._b_c00014{width:38.760009pt;}
._9_c00014{width:45.006942pt;}
._15_c00014{width:46.026128pt;}
._12_c00014{width:49.888647pt;}
._3_c00014{width:51.263997pt;}
._c_c00014{width:53.046409pt;}
.fs0_c00014{font-size:53.133867pt;}
.y0_c00014{bottom:0.000000pt;}
.y2a_c00014{bottom:39.333333pt;}
.y29_c00014{bottom:72.934667pt;}
.y28_c00014{bottom:96.885333pt;}
.y27_c00014{bottom:120.837333pt;}
.y26_c00014{bottom:144.788000pt;}
.y25_c00014{bottom:168.740000pt;}
.y24_c00014{bottom:192.690667pt;}
.y23_c00014{bottom:216.642667pt;}
.y22_c00014{bottom:240.593333pt;}
.y21_c00014{bottom:264.545333pt;}
.y20_c00014{bottom:288.496000pt;}
.y1f_c00014{bottom:312.448000pt;}
.y1e_c00014{bottom:336.398667pt;}
.y1d_c00014{bottom:360.350667pt;}
.y1c_c00014{bottom:384.302667pt;}
.y1b_c00014{bottom:408.253333pt;}
.y1a_c00014{bottom:432.205333pt;}
.y19_c00014{bottom:456.156000pt;}
.y18_c00014{bottom:480.108000pt;}
.y17_c00014{bottom:504.058667pt;}
.y16_c00014{bottom:528.010667pt;}
.y15_c00014{bottom:551.961333pt;}
.y14_c00014{bottom:575.913333pt;}
.y13_c00014{bottom:599.864000pt;}
.y12_c00014{bottom:623.816000pt;}
.y11_c00014{bottom:647.766667pt;}
.y10_c00014{bottom:671.718667pt;}
.yf_c00014{bottom:695.669333pt;}
.ye_c00014{bottom:719.621333pt;}
.yd_c00014{bottom:743.573333pt;}
.yc_c00014{bottom:767.524000pt;}
.yb_c00014{bottom:791.476000pt;}
.ya_c00014{bottom:815.426667pt;}
.y9_c00014{bottom:839.378667pt;}
.y8_c00014{bottom:863.329333pt;}
.y7_c00014{bottom:887.281333pt;}
.y6_c00014{bottom:911.232000pt;}
.y5_c00014{bottom:935.184000pt;}
.y4_c00014{bottom:959.134667pt;}
.y3_c00014{bottom:983.086667pt;}
.y2_c00014{bottom:1007.037333pt;}
.y1_c00014{bottom:1030.989333pt;}
.h2_c00014{height:46.518078pt;}
.h0_c00014{height:1122.520000pt;}
.h1_c00014{height:1122.666667pt;}
.w0_c00014{width:793.706667pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:133.310667pt;}
.x2_c00014{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92c342dabfad7d3093740909.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.102051;font-style: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;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-2.689902px;}
.ws1_c00015{word-spacing:0.000000px;}
._1_c00015{margin-left:-5.977560px;}
._e_c00015{margin-left:-4.124516px;}
._4_c00015{margin-left:-2.092146px;}
._12_c00015{margin-left:-1.075961px;}
._0_c00015{width:2.988780px;}
._11_c00015{width:5.080926px;}
._9_c00015{width:17.373830px;}
._15_c00015{width:18.764978px;}
._3_c00015{width:22.514532px;}
._10_c00015{width:25.400070px;}
._6_c00015{width:26.459722px;}
._7_c00015{width:27.704700px;}
._17_c00015{width:29.972758px;}
._f_c00015{width:32.580578px;}
._16_c00015{width:34.843178px;}
._14_c00015{width:38.780932px;}
._2_c00015{width:40.974883px;}
._b_c00015{width:43.563776px;}
._5_c00015{width:44.920073px;}
._13_c00015{width:45.961440px;}
._c_c00015{width:48.993686px;}
._d_c00015{width:54.058303px;}
._8_c00015{width:55.210349px;}
._a_c00015{width:59.155538px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:59.775600px;}
.y0_c00015{bottom:0.000000px;}
.y2a_c00015{bottom:44.250000px;}
.y29_c00015{bottom:82.051500px;}
.y28_c00015{bottom:108.996000px;}
.y27_c00015{bottom:135.942000px;}
.y26_c00015{bottom:162.886500px;}
.y25_c00015{bottom:189.832500px;}
.y24_c00015{bottom:216.777000px;}
.y23_c00015{bottom:243.723000px;}
.y22_c00015{bottom:270.667500px;}
.y21_c00015{bottom:297.613500px;}
.y20_c00015{bottom:324.558000px;}
.y1f_c00015{bottom:351.504000px;}
.y1e_c00015{bottom:378.448500px;}
.y1d_c00015{bottom:405.394500px;}
.y1c_c00015{bottom:432.340500px;}
.y1b_c00015{bottom:459.285000px;}
.y1a_c00015{bottom:486.231000px;}
.y19_c00015{bottom:513.175500px;}
.y18_c00015{bottom:540.121500px;}
.y17_c00015{bottom:567.066000px;}
.y16_c00015{bottom:594.012000px;}
.y15_c00015{bottom:620.956500px;}
.y14_c00015{bottom:647.902500px;}
.y13_c00015{bottom:674.847000px;}
.y12_c00015{bottom:701.793000px;}
.y11_c00015{bottom:728.737500px;}
.y10_c00015{bottom:755.683500px;}
.yf_c00015{bottom:782.628000px;}
.ye_c00015{bottom:809.574000px;}
.yd_c00015{bottom:836.520000px;}
.yc_c00015{bottom:863.464500px;}
.yb_c00015{bottom:890.410500px;}
.ya_c00015{bottom:917.355000px;}
.y9_c00015{bottom:944.301000px;}
.y8_c00015{bottom:971.245500px;}
.y7_c00015{bottom:998.191500px;}
.y6_c00015{bottom:1025.136000px;}
.y5_c00015{bottom:1052.082000px;}
.y4_c00015{bottom:1079.026500px;}
.y3_c00015{bottom:1105.972500px;}
.y2_c00015{bottom:1132.917000px;}
.y1_c00015{bottom:1159.863000px;}
.h2_c00015{height:52.332837px;}
.h0_c00015{height:1262.835000px;}
.h1_c00015{height:1263.000000px;}
.w0_c00015{width:892.920000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:149.974500px;}
.x2_c00015{left:438.984000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:-2.391024pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._1_c00015{margin-left:-5.313387pt;}
._e_c00015{margin-left:-3.666237pt;}
._4_c00015{margin-left:-1.859685pt;}
._12_c00015{margin-left:-0.956410pt;}
._0_c00015{width:2.656693pt;}
._11_c00015{width:4.516379pt;}
._9_c00015{width:15.443405pt;}
._15_c00015{width:16.679981pt;}
._3_c00015{width:20.012917pt;}
._10_c00015{width:22.577840pt;}
._6_c00015{width:23.519753pt;}
._7_c00015{width:24.626400pt;}
._17_c00015{width:26.642451pt;}
._f_c00015{width:28.960514pt;}
._16_c00015{width:30.971714pt;}
._14_c00015{width:34.471939pt;}
._2_c00015{width:36.422118pt;}
._b_c00015{width:38.723357pt;}
._5_c00015{width:39.928954pt;}
._13_c00015{width:40.854613pt;}
._c_c00015{width:43.549943pt;}
._d_c00015{width:48.051825pt;}
._8_c00015{width:49.075866pt;}
._a_c00015{width:52.582701pt;}
.fs0_c00015{font-size:53.133867pt;}
.y0_c00015{bottom:0.000000pt;}
.y2a_c00015{bottom:39.333333pt;}
.y29_c00015{bottom:72.934667pt;}
.y28_c00015{bottom:96.885333pt;}
.y27_c00015{bottom:120.837333pt;}
.y26_c00015{bottom:144.788000pt;}
.y25_c00015{bottom:168.740000pt;}
.y24_c00015{bottom:192.690667pt;}
.y23_c00015{bottom:216.642667pt;}
.y22_c00015{bottom:240.593333pt;}
.y21_c00015{bottom:264.545333pt;}
.y20_c00015{bottom:288.496000pt;}
.y1f_c00015{bottom:312.448000pt;}
.y1e_c00015{bottom:336.398667pt;}
.y1d_c00015{bottom:360.350667pt;}
.y1c_c00015{bottom:384.302667pt;}
.y1b_c00015{bottom:408.253333pt;}
.y1a_c00015{bottom:432.205333pt;}
.y19_c00015{bottom:456.156000pt;}
.y18_c00015{bottom:480.108000pt;}
.y17_c00015{bottom:504.058667pt;}
.y16_c00015{bottom:528.010667pt;}
.y15_c00015{bottom:551.961333pt;}
.y14_c00015{bottom:575.913333pt;}
.y13_c00015{bottom:599.864000pt;}
.y12_c00015{bottom:623.816000pt;}
.y11_c00015{bottom:647.766667pt;}
.y10_c00015{bottom:671.718667pt;}
.yf_c00015{bottom:695.669333pt;}
.ye_c00015{bottom:719.621333pt;}
.yd_c00015{bottom:743.573333pt;}
.yc_c00015{bottom:767.524000pt;}
.yb_c00015{bottom:791.476000pt;}
.ya_c00015{bottom:815.426667pt;}
.y9_c00015{bottom:839.378667pt;}
.y8_c00015{bottom:863.329333pt;}
.y7_c00015{bottom:887.281333pt;}
.y6_c00015{bottom:911.232000pt;}
.y5_c00015{bottom:935.184000pt;}
.y4_c00015{bottom:959.134667pt;}
.y3_c00015{bottom:983.086667pt;}
.y2_c00015{bottom:1007.037333pt;}
.y1_c00015{bottom:1030.989333pt;}
.h2_c00015{height:46.518078pt;}
.h0_c00015{height:1122.520000pt;}
.h1_c00015{height:1122.666667pt;}
.w0_c00015{width:793.706667pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:133.310667pt;}
.x2_c00015{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6eaa601f11049acd014b539.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.102051;font-style:normal;font-weight:normal;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_9e43f939b5f56583709d629c.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:0.893555;font-style: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;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-14.943900px;}
.ws0_c00016{word-spacing:-2.689902px;}
.ws3_c00016{word-spacing:0.000000px;}
.ws2_c00016{word-spacing:2153.912762px;}
._1_c00016{margin-left:-4.124516px;}
._f_c00016{margin-left:-1.075961px;}
._0_c00016{width:2.988780px;}
._6_c00016{width:16.142288px;}
._2_c00016{width:17.979023px;}
._c_c00016{width:25.159531px;}
._b_c00016{width:29.352696px;}
._7_c00016{width:32.214488px;}
._9_c00016{width:35.987788px;}
._5_c00016{width:39.394997px;}
._3_c00016{width:40.858135px;}
._4_c00016{width:45.484672px;}
._8_c00016{width:48.292688px;}
._a_c00016{width:55.407421px;}
._d_c00016{width:59.775600px;}
._e_c00016{width:2078.057526px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:59.775600px;}
.y0_c00016{bottom:0.000000px;}
.yf_c00016{bottom:44.250000px;}
.ye_c00016{bottom:780.286500px;}
.yd_c00016{bottom:822.129000px;}
.yc_c00016{bottom:863.973000px;}
.yb_c00016{bottom:890.871000px;}
.ya_c00016{bottom:917.770500px;}
.y9_c00016{bottom:944.670000px;}
.y8_c00016{bottom:971.569500px;}
.y7_c00016{bottom:998.467500px;}
.y6_c00016{bottom:1025.367000px;}
.y5_c00016{bottom:1052.266500px;}
.y4_c00016{bottom:1079.166000px;}
.y3_c00016{bottom:1106.064000px;}
.y2_c00016{bottom:1132.963500px;}
.y1_c00016{bottom:1159.863000px;}
.h3_c00016{height:40.511979px;}
.h2_c00016{height:52.332837px;}
.h0_c00016{height:1262.835000px;}
.h1_c00016{height:1263.000000px;}
.w0_c00016{width:892.920000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x2_c00016{left:127.558500px;}
.x1_c00016{left:149.974500px;}
.x3_c00016{left:438.984000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws1_c00016{word-spacing:-13.283467pt;}
.ws0_c00016{word-spacing:-2.391024pt;}
.ws3_c00016{word-spacing:0.000000pt;}
.ws2_c00016{word-spacing:1914.589122pt;}
._1_c00016{margin-left:-3.666237pt;}
._f_c00016{margin-left:-0.956410pt;}
._0_c00016{width:2.656693pt;}
._6_c00016{width:14.348701pt;}
._2_c00016{width:15.981354pt;}
._c_c00016{width:22.364028pt;}
._b_c00016{width:26.091285pt;}
._7_c00016{width:28.635101pt;}
._9_c00016{width:31.989145pt;}
._5_c00016{width:35.017775pt;}
._3_c00016{width:36.318342pt;}
._4_c00016{width:40.430819pt;}
._8_c00016{width:42.926834pt;}
._a_c00016{width:49.251041pt;}
._d_c00016{width:53.133867pt;}
._e_c00016{width:1847.162245pt;}
.fs0_c00016{font-size:53.133867pt;}
.y0_c00016{bottom:0.000000pt;}
.yf_c00016{bottom:39.333333pt;}
.ye_c00016{bottom:693.588000pt;}
.yd_c00016{bottom:730.781333pt;}
.yc_c00016{bottom:767.976000pt;}
.yb_c00016{bottom:791.885333pt;}
.ya_c00016{bottom:815.796000pt;}
.y9_c00016{bottom:839.706667pt;}
.y8_c00016{bottom:863.617333pt;}
.y7_c00016{bottom:887.526667pt;}
.y6_c00016{bottom:911.437333pt;}
.y5_c00016{bottom:935.348000pt;}
.y4_c00016{bottom:959.258667pt;}
.y3_c00016{bottom:983.168000pt;}
.y2_c00016{bottom:1007.078667pt;}
.y1_c00016{bottom:1030.989333pt;}
.h3_c00016{height:36.010648pt;}
.h2_c00016{height:46.518078pt;}
.h0_c00016{height:1122.520000pt;}
.h1_c00016{height:1122.666667pt;}
.w0_c00016{width:793.706667pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x2_c00016{left:113.385333pt;}
.x1_c00016{left:133.310667pt;}
.x3_c00016{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe47c53e708d4bbea0d00dee.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:59.775600px;}
.y0_c00017{bottom:0.000000px;}
.y1_c00017{bottom:44.250000px;}
.h2_c00017{height:52.332837px;}
.h0_c00017{height:1262.835000px;}
.h1_c00017{height:1263.000000px;}
.w0_c00017{width:892.920000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:438.984000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.fs0_c00017{font-size:53.133867pt;}
.y0_c00017{bottom:0.000000pt;}
.y1_c00017{bottom:39.333333pt;}
.h2_c00017{height:46.518078pt;}
.h0_c00017{height:1122.520000pt;}
.h1_c00017{height:1122.666667pt;}
.w0_c00017{width:793.706667pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12626f490c7435432348d5ef.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:0.893555;font-style:normal;font-weight:normal;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_72ebcc08e5162c7fc6db90b2.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.102051;font-style:normal;font-weight:normal;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_d3a99f476140723152b3d862.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.910156;font-style:normal;font-weight:normal;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_25ecdede227e9527805d3dc5.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:1.083496;font-style: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.087998px;}
.ls1_c00018{letter-spacing:29.892540px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-74.361300px;}
.ws10_c00018{word-spacing:-26.575517px;}
.ws21_c00018{word-spacing:-22.452605px;}
.ws22_c00018{word-spacing:-22.415850px;}
.ws11_c00018{word-spacing:-21.519300px;}
.ws1a_c00018{word-spacing:-20.263928px;}
.ws19_c00018{word-spacing:-20.144377px;}
.ws3_c00018{word-spacing:-20.084602px;}
.ws6_c00018{word-spacing:-19.546621px;}
.ws15_c00018{word-spacing:-19.427070px;}
.ws7_c00018{word-spacing:-18.948865px;}
.ws12_c00018{word-spacing:-18.842996px;}
.ws2_c00018{word-spacing:-18.769538px;}
.wsf_c00018{word-spacing:-17.155597px;}
.ws18_c00018{word-spacing:-16.856719px;}
.wsc_c00018{word-spacing:-16.737168px;}
.ws1c_c00018{word-spacing:-16.019861px;}
.ws20_c00018{word-spacing:-15.960085px;}
.ws1e_c00018{word-spacing:-15.900310px;}
.ws14_c00018{word-spacing:-15.601432px;}
.ws16_c00018{word-spacing:-15.481880px;}
.ws4_c00018{word-spacing:-15.302554px;}
.ws1d_c00018{word-spacing:-15.183002px;}
.ws5_c00018{word-spacing:-15.063451px;}
.ws13_c00018{word-spacing:-14.943900px;}
.wse_c00018{word-spacing:-14.166817px;}
.wsd_c00018{word-spacing:-13.987490px;}
.wsb_c00018{word-spacing:-13.389734px;}
.ws17_c00018{word-spacing:-13.031081px;}
.ws1b_c00018{word-spacing:-12.971305px;}
.ws1_c00018{word-spacing:-12.253998px;}
.ws8_c00018{word-spacing:-9.803198px;}
.wsa_c00018{word-spacing:-9.570976px;}
.ws1f_c00018{word-spacing:-8.743166px;}
.ws9_c00018{word-spacing:-5.977560px;}
.ws23_c00018{word-spacing:0.000000px;}
._5_c00018{margin-left:-8.547911px;}
._1_c00018{margin-left:-4.782048px;}
._0_c00018{margin-left:-2.677007px;}
._a_c00018{margin-left:-1.626836px;}
._c_c00018{width:12.353491px;}
._8_c00018{width:19.349659px;}
._3_c00018{width:20.801909px;}
._7_c00018{width:24.806874px;}
._9_c00018{width:26.202740px;}
._4_c00018{width:29.892540px;}
._b_c00018{width:31.041172px;}
._6_c00018{width:33.832990px;}
._2_c00018{width:39.392120px;}
.fc1_c00018{color:rgb(6,69,173);}
.fc0_c00018{color:rgb(0,0,0);}
.fs2_c00018{font-size:43.999200px;}
.fs1_c00018{font-size:59.775600px;}
.fs3_c00018{font-size:86.077200px;}
.fs0_c00018{font-size:148.722600px;}
.y0_c00018{bottom:0.000000px;}
.y25_c00018{bottom:44.250000px;}
.y24_c00018{bottom:82.051500px;}
.y23_c00018{bottom:99.984000px;}
.y22_c00018{bottom:117.916500px;}
.y21_c00018{bottom:135.849000px;}
.y20_c00018{bottom:153.781500px;}
.y1f_c00018{bottom:171.714000px;}
.y1e_c00018{bottom:203.254500px;}
.y1d_c00018{bottom:221.187000px;}
.y1c_c00018{bottom:239.119500px;}
.y1b_c00018{bottom:270.658500px;}
.y1a_c00018{bottom:288.591000px;}
.y19_c00018{bottom:306.523500px;}
.y18_c00018{bottom:350.431500px;}
.y17_c00018{bottom:393.898500px;}
.y16_c00018{bottom:455.829000px;}
.y15_c00018{bottom:487.368000px;}
.y14_c00018{bottom:531.276000px;}
.y13_c00018{bottom:549.208500px;}
.y12_c00018{bottom:567.141000px;}
.y11_c00018{bottom:585.073500px;}
.y10_c00018{bottom:628.981500px;}
.yf_c00018{bottom:646.914000px;}
.ye_c00018{bottom:664.846500px;}
.yd_c00018{bottom:696.385500px;}
.yc_c00018{bottom:714.318000px;}
.yb_c00018{bottom:732.250500px;}
.ya_c00018{bottom:750.184500px;}
.y9_c00018{bottom:781.723500px;}
.y8_c00018{bottom:799.656000px;}
.y7_c00018{bottom:817.588500px;}
.y6_c00018{bottom:861.495000px;}
.y5_c00018{bottom:879.429000px;}
.y4_c00018{bottom:897.361500px;}
.y3_c00018{bottom:925.086000px;}
.y2_c00018{bottom:943.018500px;}
.y1_c00018{bottom:1030.519500px;}
.h3_c00018{height:52.332837px;}
.h4_c00018{height:58.337477px;}
.h2_c00018{height:100.794418px;}
.h0_c00018{height:1262.835000px;}
.h1_c00018{height:1263.000000px;}
.w0_c00018{width:892.920000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:127.558500px;}
.x2_c00018{left:152.215500px;}
.x3_c00018{left:164.919000px;}
.x4_c00018{left:438.984000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.078221pt;}
.ls1_c00018{letter-spacing:26.571147pt;}
.ws0_c00018{word-spacing:-66.098933pt;}
.ws10_c00018{word-spacing:-23.622682pt;}
.ws21_c00018{word-spacing:-19.957871pt;}
.ws22_c00018{word-spacing:-19.925200pt;}
.ws11_c00018{word-spacing:-19.128267pt;}
.ws1a_c00018{word-spacing:-18.012381pt;}
.ws19_c00018{word-spacing:-17.906113pt;}
.ws3_c00018{word-spacing:-17.852979pt;}
.ws6_c00018{word-spacing:-17.374774pt;}
.ws15_c00018{word-spacing:-17.268507pt;}
.ws7_c00018{word-spacing:-16.843436pt;}
.ws12_c00018{word-spacing:-16.749330pt;}
.ws2_c00018{word-spacing:-16.684034pt;}
.wsf_c00018{word-spacing:-15.249420pt;}
.ws18_c00018{word-spacing:-14.983750pt;}
.wsc_c00018{word-spacing:-14.877483pt;}
.ws1c_c00018{word-spacing:-14.239876pt;}
.ws20_c00018{word-spacing:-14.186742pt;}
.ws1e_c00018{word-spacing:-14.133609pt;}
.ws14_c00018{word-spacing:-13.867939pt;}
.ws16_c00018{word-spacing:-13.761671pt;}
.ws4_c00018{word-spacing:-13.602270pt;}
.ws1d_c00018{word-spacing:-13.496002pt;}
.ws5_c00018{word-spacing:-13.389734pt;}
.ws13_c00018{word-spacing:-13.283467pt;}
.wse_c00018{word-spacing:-12.592726pt;}
.wsd_c00018{word-spacing:-12.433325pt;}
.wsb_c00018{word-spacing:-11.901986pt;}
.ws17_c00018{word-spacing:-11.583183pt;}
.ws1b_c00018{word-spacing:-11.530049pt;}
.ws1_c00018{word-spacing:-10.892443pt;}
.ws8_c00018{word-spacing:-8.713954pt;}
.wsa_c00018{word-spacing:-8.507534pt;}
.ws1f_c00018{word-spacing:-7.771703pt;}
.ws9_c00018{word-spacing:-5.313387pt;}
.ws23_c00018{word-spacing:0.000000pt;}
._5_c00018{margin-left:-7.598143pt;}
._1_c00018{margin-left:-4.250709pt;}
._0_c00018{margin-left:-2.379562pt;}
._a_c00018{margin-left:-1.446077pt;}
._c_c00018{width:10.980881pt;}
._8_c00018{width:17.199697pt;}
._3_c00018{width:18.490586pt;}
._7_c00018{width:22.050555pt;}
._9_c00018{width:23.291325pt;}
._4_c00018{width:26.571147pt;}
._b_c00018{width:27.592153pt;}
._6_c00018{width:30.073769pt;}
._2_c00018{width:35.015218pt;}
.fs2_c00018{font-size:39.110400pt;}
.fs1_c00018{font-size:53.133867pt;}
.fs3_c00018{font-size:76.513067pt;}
.fs0_c00018{font-size:132.197867pt;}
.y0_c00018{bottom:0.000000pt;}
.y25_c00018{bottom:39.333333pt;}
.y24_c00018{bottom:72.934667pt;}
.y23_c00018{bottom:88.874667pt;}
.y22_c00018{bottom:104.814667pt;}
.y21_c00018{bottom:120.754667pt;}
.y20_c00018{bottom:136.694667pt;}
.y1f_c00018{bottom:152.634667pt;}
.y1e_c00018{bottom:180.670667pt;}
.y1d_c00018{bottom:196.610667pt;}
.y1c_c00018{bottom:212.550667pt;}
.y1b_c00018{bottom:240.585333pt;}
.y1a_c00018{bottom:256.525333pt;}
.y19_c00018{bottom:272.465333pt;}
.y18_c00018{bottom:311.494667pt;}
.y17_c00018{bottom:350.132000pt;}
.y16_c00018{bottom:405.181333pt;}
.y15_c00018{bottom:433.216000pt;}
.y14_c00018{bottom:472.245333pt;}
.y13_c00018{bottom:488.185333pt;}
.y12_c00018{bottom:504.125333pt;}
.y11_c00018{bottom:520.065333pt;}
.y10_c00018{bottom:559.094667pt;}
.yf_c00018{bottom:575.034667pt;}
.ye_c00018{bottom:590.974667pt;}
.yd_c00018{bottom:619.009333pt;}
.yc_c00018{bottom:634.949333pt;}
.yb_c00018{bottom:650.889333pt;}
.ya_c00018{bottom:666.830667pt;}
.y9_c00018{bottom:694.865333pt;}
.y8_c00018{bottom:710.805333pt;}
.y7_c00018{bottom:726.745333pt;}
.y6_c00018{bottom:765.773333pt;}
.y5_c00018{bottom:781.714667pt;}
.y4_c00018{bottom:797.654667pt;}
.y3_c00018{bottom:822.298667pt;}
.y2_c00018{bottom:838.238667pt;}
.y1_c00018{bottom:916.017333pt;}
.h3_c00018{height:46.518078pt;}
.h4_c00018{height:51.855535pt;}
.h2_c00018{height:89.595039pt;}
.h0_c00018{height:1122.520000pt;}
.h1_c00018{height:1122.666667pt;}
.w0_c00018{width:793.706667pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:113.385333pt;}
.x2_c00018{left:135.302667pt;}
.x3_c00018{left:146.594667pt;}
.x4_c00018{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67a03f1233da4ea1a87db5a9.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.102051;font-style:normal;font-weight:normal;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_31f902650e8ba8faf8cce6ce.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:0.893555;font-style:normal;font-weight:normal;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_7635d538382174feeb9942f9.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.910156;font-style:normal;font-weight:normal;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_8ea61a0857cb4fef381bce72.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00019;src:url('chunks/assets/font_aef440a936704910150439c9.woff2')format("woff");}.ff5_c00019{font-family:ff5_c00019;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00019;src:url('chunks/assets/font_d577d6a886674f0a8649c4dc.woff2')format("woff");}.ff6_c00019{font-family:ff6_c00019;line-height:1.014648;font-style: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;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:0.087998px;}
.ls2_c00019{letter-spacing:0.098482px;}
.ls0_c00019{letter-spacing:29.892540px;}
.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;}
}
.wsb_c00019{word-spacing:-26.575517px;}
.ws10_c00019{word-spacing:-21.638767px;}
.wsd_c00019{word-spacing:-20.144377px;}
.ws3_c00019{word-spacing:-19.785724px;}
.wse_c00019{word-spacing:-18.889090px;}
.wsa_c00019{word-spacing:-18.829314px;}
.ws17_c00019{word-spacing:-18.790822px;}
.ws1a_c00019{word-spacing:-18.787496px;}
.ws4_c00019{word-spacing:-18.769538px;}
.ws8_c00019{word-spacing:-18.470660px;}
.ws13_c00019{word-spacing:-18.112007px;}
.ws14_c00019{word-spacing:-17.992456px;}
.ws1f_c00019{word-spacing:-17.932680px;}
.ws1d_c00019{word-spacing:-17.813129px;}
.ws9_c00019{word-spacing:-17.633802px;}
.ws16_c00019{word-spacing:-17.514251px;}
.ws12_c00019{word-spacing:-17.036046px;}
.ws18_c00019{word-spacing:-16.856719px;}
.wsf_c00019{word-spacing:-15.720983px;}
.ws15_c00019{word-spacing:-15.123227px;}
.ws5_c00019{word-spacing:-15.003676px;}
.ws1b_c00019{word-spacing:-14.942400px;}
.ws11_c00019{word-spacing:-14.645022px;}
.ws0_c00019{word-spacing:-14.362391px;}
.ws2_c00019{word-spacing:-14.346144px;}
.ws1c_c00019{word-spacing:-13.987490px;}
.ws1e_c00019{word-spacing:-13.927715px;}
.ws7_c00019{word-spacing:-13.509286px;}
.ws19_c00019{word-spacing:-12.134447px;}
.ws1_c00019{word-spacing:-10.520506px;}
.ws6_c00019{word-spacing:-9.743423px;}
.ws20_c00019{word-spacing:-3.827138px;}
.ws21_c00019{word-spacing:0.000000px;}
.wsc_c00019{word-spacing:0.175997px;}
._b_c00019{margin-left:-4.976237px;}
._0_c00019{margin-left:-3.611371px;}
._a_c00019{margin-left:-2.331248px;}
._5_c00019{margin-left:-1.075961px;}
._c_c00019{width:16.835573px;}
._1_c00019{width:20.443255px;}
._2_c00019{width:21.505422px;}
._4_c00019{width:23.252708px;}
._8_c00019{width:25.344854px;}
._6_c00019{width:28.273859px;}
._9_c00019{width:30.664883px;}
._7_c00019{width:31.920170px;}
._3_c00019{width:35.626258px;}
.fc4_c00019{color:rgb(6,69,173);}
.fc3_c00019{color:rgb(79,153,5);}
.fc2_c00019{color:rgb(33,74,135);}
.fc1_c00019{color:rgb(143,89,3);}
.fc0_c00019{color:rgb(0,0,0);}
.fs1_c00019{font-size:43.999200px;}
.fs0_c00019{font-size:59.775600px;}
.fs2_c00019{font-size:86.077200px;}
.y0_c00019{bottom:0.000000px;}
.y2f_c00019{bottom:44.250000px;}
.y2e_c00019{bottom:90.436500px;}
.y2d_c00019{bottom:117.619500px;}
.y2c_c00019{bottom:144.801000px;}
.y2b_c00019{bottom:171.984000px;}
.y2a_c00019{bottom:199.167000px;}
.y29_c00019{bottom:226.350000px;}
.y28_c00019{bottom:253.533000px;}
.y27_c00019{bottom:294.451500px;}
.y26_c00019{bottom:351.148500px;}
.y25_c00019{bottom:369.081000px;}
.y24_c00019{bottom:387.013500px;}
.y23_c00019{bottom:420.741000px;}
.y22_c00019{bottom:438.675000px;}
.y21_c00019{bottom:465.856500px;}
.y20_c00019{bottom:499.584000px;}
.y1f_c00019{bottom:517.518000px;}
.y1e_c00019{bottom:543.064500px;}
.y1d_c00019{bottom:560.997000px;}
.y1c_c00019{bottom:578.929500px;}
.y1b_c00019{bottom:596.862000px;}
.y1a_c00019{bottom:614.794500px;}
.y19_c00019{bottom:632.727000px;}
.y18_c00019{bottom:650.661000px;}
.y17_c00019{bottom:668.593500px;}
.y16_c00019{bottom:694.140000px;}
.y15_c00019{bottom:712.072500px;}
.y14_c00019{bottom:737.619000px;}
.y13_c00019{bottom:755.551500px;}
.y12_c00019{bottom:773.484000px;}
.y11_c00019{bottom:799.030500px;}
.y10_c00019{bottom:816.963000px;}
.yf_c00019{bottom:834.897000px;}
.ye_c00019{bottom:852.829500px;}
.yd_c00019{bottom:870.762000px;}
.yc_c00019{bottom:911.178000px;}
.yb_c00019{bottom:927.616500px;}
.ya_c00019{bottom:943.681500px;}
.y9_c00019{bottom:983.742000px;}
.y8_c00019{bottom:1001.674500px;}
.y7_c00019{bottom:1019.608500px;}
.y6_c00019{bottom:1037.541000px;}
.y5_c00019{bottom:1064.724000px;}
.y4_c00019{bottom:1098.451500px;}
.y3_c00019{bottom:1123.998000px;}
.y2_c00019{bottom:1141.930500px;}
.y1_c00019{bottom:1159.863000px;}
.h4_c00019{height:35.190766px;}
.h3_c00019{height:36.007158px;}
.h2_c00019{height:52.332837px;}
.h5_c00019{height:58.337477px;}
.h0_c00019{height:1262.835000px;}
.h1_c00019{height:1263.000000px;}
.w0_c00019{width:892.920000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:127.558500px;}
.x4_c00019{left:137.122500px;}
.x5_c00019{left:146.239500px;}
.x2_c00019{left:152.215500px;}
.x3_c00019{left:164.919000px;}
.x6_c00019{left:438.984000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:0.078221pt;}
.ls2_c00019{letter-spacing:0.087539pt;}
.ls0_c00019{letter-spacing:26.571147pt;}
.wsb_c00019{word-spacing:-23.622682pt;}
.ws10_c00019{word-spacing:-19.234460pt;}
.wsd_c00019{word-spacing:-17.906113pt;}
.ws3_c00019{word-spacing:-17.587310pt;}
.wse_c00019{word-spacing:-16.790302pt;}
.wsa_c00019{word-spacing:-16.737168pt;}
.ws17_c00019{word-spacing:-16.702953pt;}
.ws1a_c00019{word-spacing:-16.699997pt;}
.ws4_c00019{word-spacing:-16.684034pt;}
.ws8_c00019{word-spacing:-16.418365pt;}
.ws13_c00019{word-spacing:-16.099562pt;}
.ws14_c00019{word-spacing:-15.993294pt;}
.ws1f_c00019{word-spacing:-15.940160pt;}
.ws1d_c00019{word-spacing:-15.833892pt;}
.ws9_c00019{word-spacing:-15.674491pt;}
.ws16_c00019{word-spacing:-15.568223pt;}
.ws12_c00019{word-spacing:-15.143152pt;}
.ws18_c00019{word-spacing:-14.983750pt;}
.wsf_c00019{word-spacing:-13.974207pt;}
.ws15_c00019{word-spacing:-13.442868pt;}
.ws5_c00019{word-spacing:-13.336601pt;}
.ws1b_c00019{word-spacing:-13.282133pt;}
.ws11_c00019{word-spacing:-13.017797pt;}
.ws0_c00019{word-spacing:-12.766570pt;}
.ws2_c00019{word-spacing:-12.752128pt;}
.ws1c_c00019{word-spacing:-12.433325pt;}
.ws1e_c00019{word-spacing:-12.380191pt;}
.ws7_c00019{word-spacing:-12.008254pt;}
.ws19_c00019{word-spacing:-10.786175pt;}
.ws1_c00019{word-spacing:-9.351561pt;}
.ws6_c00019{word-spacing:-8.660820pt;}
.ws20_c00019{word-spacing:-3.401901pt;}
.ws21_c00019{word-spacing:0.000000pt;}
.wsc_c00019{word-spacing:0.156442pt;}
._b_c00019{margin-left:-4.423322pt;}
._0_c00019{margin-left:-3.210108pt;}
._a_c00019{margin-left:-2.072221pt;}
._5_c00019{margin-left:-0.956410pt;}
._c_c00019{width:14.964954pt;}
._1_c00019{width:18.171782pt;}
._2_c00019{width:19.115931pt;}
._4_c00019{width:20.669074pt;}
._8_c00019{width:22.528759pt;}
._6_c00019{width:25.132319pt;}
._9_c00019{width:27.257674pt;}
._7_c00019{width:28.373485pt;}
._3_c00019{width:31.667785pt;}
.fs1_c00019{font-size:39.110400pt;}
.fs0_c00019{font-size:53.133867pt;}
.fs2_c00019{font-size:76.513067pt;}
.y0_c00019{bottom:0.000000pt;}
.y2f_c00019{bottom:39.333333pt;}
.y2e_c00019{bottom:80.388000pt;}
.y2d_c00019{bottom:104.550667pt;}
.y2c_c00019{bottom:128.712000pt;}
.y2b_c00019{bottom:152.874667pt;}
.y2a_c00019{bottom:177.037333pt;}
.y29_c00019{bottom:201.200000pt;}
.y28_c00019{bottom:225.362667pt;}
.y27_c00019{bottom:261.734667pt;}
.y26_c00019{bottom:312.132000pt;}
.y25_c00019{bottom:328.072000pt;}
.y24_c00019{bottom:344.012000pt;}
.y23_c00019{bottom:373.992000pt;}
.y22_c00019{bottom:389.933333pt;}
.y21_c00019{bottom:414.094667pt;}
.y20_c00019{bottom:444.074667pt;}
.y1f_c00019{bottom:460.016000pt;}
.y1e_c00019{bottom:482.724000pt;}
.y1d_c00019{bottom:498.664000pt;}
.y1c_c00019{bottom:514.604000pt;}
.y1b_c00019{bottom:530.544000pt;}
.y1a_c00019{bottom:546.484000pt;}
.y19_c00019{bottom:562.424000pt;}
.y18_c00019{bottom:578.365333pt;}
.y17_c00019{bottom:594.305333pt;}
.y16_c00019{bottom:617.013333pt;}
.y15_c00019{bottom:632.953333pt;}
.y14_c00019{bottom:655.661333pt;}
.y13_c00019{bottom:671.601333pt;}
.y12_c00019{bottom:687.541333pt;}
.y11_c00019{bottom:710.249333pt;}
.y10_c00019{bottom:726.189333pt;}
.yf_c00019{bottom:742.130667pt;}
.ye_c00019{bottom:758.070667pt;}
.yd_c00019{bottom:774.010667pt;}
.yc_c00019{bottom:809.936000pt;}
.yb_c00019{bottom:824.548000pt;}
.ya_c00019{bottom:838.828000pt;}
.y9_c00019{bottom:874.437333pt;}
.y8_c00019{bottom:890.377333pt;}
.y7_c00019{bottom:906.318667pt;}
.y6_c00019{bottom:922.258667pt;}
.y5_c00019{bottom:946.421333pt;}
.y4_c00019{bottom:976.401333pt;}
.y3_c00019{bottom:999.109333pt;}
.y2_c00019{bottom:1015.049333pt;}
.y1_c00019{bottom:1030.989333pt;}
.h4_c00019{height:31.280681pt;}
.h3_c00019{height:32.006363pt;}
.h2_c00019{height:46.518078pt;}
.h5_c00019{height:51.855535pt;}
.h0_c00019{height:1122.520000pt;}
.h1_c00019{height:1122.666667pt;}
.w0_c00019{width:793.706667pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:113.385333pt;}
.x4_c00019{left:121.886667pt;}
.x5_c00019{left:129.990667pt;}
.x2_c00019{left:135.302667pt;}
.x3_c00019{left:146.594667pt;}
.x6_c00019{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_429aa10b6a022ce0568b3a1c.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:0.893555;font-style:normal;font-weight:normal;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_1b37a174552e9a5cb8c6168b.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_bfbb603436971fefab0fbd74.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:29.892540px;}
.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;}
}
.ws1_c00020{word-spacing:-37.329373px;}
.ws0_c00020{word-spacing:-30.993750px;}
.ws3_c00020{word-spacing:-29.887800px;}
.ws1c_c00020{word-spacing:-22.834279px;}
.ws23_c00020{word-spacing:-22.356074px;}
.wsc_c00020{word-spacing:-22.057196px;}
.ws21_c00020{word-spacing:-21.877870px;}
.ws7_c00020{word-spacing:-21.339889px;}
.ws22_c00020{word-spacing:-20.562806px;}
.ws17_c00020{word-spacing:-20.383480px;}
.ws29_c00020{word-spacing:-20.084602px;}
.ws27_c00020{word-spacing:-19.845499px;}
.ws2a_c00020{word-spacing:-19.666172px;}
.ws10_c00020{word-spacing:-19.187968px;}
.wse_c00020{word-spacing:-19.128192px;}
.ws1b_c00020{word-spacing:-19.008641px;}
.ws1f_c00020{word-spacing:-18.889090px;}
.ws9_c00020{word-spacing:-18.829314px;}
.ws2d_c00020{word-spacing:-18.779405px;}
.ws5_c00020{word-spacing:-18.769538px;}
.ws8_c00020{word-spacing:-18.291334px;}
.wsb_c00020{word-spacing:-18.241440px;}
.wsd_c00020{word-spacing:-18.231558px;}
.ws20_c00020{word-spacing:-18.095010px;}
.ws6_c00020{word-spacing:-17.514251px;}
.ws24_c00020{word-spacing:-16.796944px;}
.ws2_c00020{word-spacing:-16.557841px;}
.ws4_c00020{word-spacing:-16.498066px;}
.ws1a_c00020{word-spacing:-16.378514px;}
.ws25_c00020{word-spacing:-16.258963px;}
.ws28_c00020{word-spacing:-16.019861px;}
.ws19_c00020{word-spacing:-16.018513px;}
.ws1d_c00020{word-spacing:-15.720983px;}
.wsf_c00020{word-spacing:-15.362329px;}
.ws2b_c00020{word-spacing:-15.307733px;}
.ws16_c00020{word-spacing:-15.298703px;}
.wsa_c00020{word-spacing:-15.003676px;}
.ws2e_c00020{word-spacing:-14.956606px;}
.ws2c_c00020{word-spacing:-14.943900px;}
.ws26_c00020{word-spacing:-14.525471px;}
.ws14_c00020{word-spacing:-14.047266px;}
.ws12_c00020{word-spacing:-13.270183px;}
.ws18_c00020{word-spacing:-12.612652px;}
.ws1e_c00020{word-spacing:-11.895344px;}
.ws15_c00020{word-spacing:-10.281403px;}
.ws11_c00020{word-spacing:-9.458941px;}
.ws13_c00020{word-spacing:-6.946817px;}
.ws2f_c00020{word-spacing:0.000000px;}
._0_c00020{margin-left:-13.533757px;}
._b_c00020{margin-left:-3.646312px;}
._1_c00020{margin-left:-2.379562px;}
._4_c00020{margin-left:-1.006303px;}
._8_c00020{width:1.173551px;}
._c_c00020{width:15.696460px;}
._2_c00020{width:19.148869px;}
._3_c00020{width:21.578992px;}
._9_c00020{width:26.121937px;}
._a_c00020{width:28.034756px;}
._7_c00020{width:29.093934px;}
._5_c00020{width:31.333388px;}
._6_c00020{width:34.003300px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs2_c00020{font-size:59.775600px;}
.fs0_c00020{font-size:123.975000px;}
.fs1_c00020{font-size:148.722600px;}
.y0_c00020{bottom:0.000000px;}
.y27_c00020{bottom:44.250000px;}
.y26_c00020{bottom:82.051500px;}
.y25_c00020{bottom:112.593000px;}
.y24_c00020{bottom:143.134500px;}
.y23_c00020{bottom:185.794500px;}
.y22_c00020{bottom:213.021000px;}
.y21_c00020{bottom:240.247500px;}
.y20_c00020{bottom:258.180000px;}
.y1f_c00020{bottom:300.840000px;}
.y1e_c00020{bottom:318.774000px;}
.y1d_c00020{bottom:336.706500px;}
.y1c_c00020{bottom:354.639000px;}
.y1b_c00020{bottom:372.571500px;}
.y1a_c00020{bottom:390.504000px;}
.y19_c00020{bottom:408.436500px;}
.y18_c00020{bottom:426.370500px;}
.y17_c00020{bottom:444.303000px;}
.y16_c00020{bottom:462.235500px;}
.y15_c00020{bottom:480.168000px;}
.y14_c00020{bottom:498.100500px;}
.y13_c00020{bottom:528.642000px;}
.y12_c00020{bottom:546.576000px;}
.y11_c00020{bottom:564.508500px;}
.y10_c00020{bottom:582.441000px;}
.yf_c00020{bottom:600.373500px;}
.ye_c00020{bottom:630.915000px;}
.yd_c00020{bottom:648.849000px;}
.yc_c00020{bottom:666.781500px;}
.yb_c00020{bottom:684.714000px;}
.ya_c00020{bottom:702.646500px;}
.y9_c00020{bottom:720.579000px;}
.y8_c00020{bottom:738.511500px;}
.y7_c00020{bottom:769.054500px;}
.y6_c00020{bottom:786.987000px;}
.y5_c00020{bottom:804.919500px;}
.y4_c00020{bottom:847.579500px;}
.y3_c00020{bottom:865.512000px;}
.y2_c00020{bottom:954.477000px;}
.y1_c00020{bottom:1038.490500px;}
.h4_c00020{height:52.332837px;}
.h2_c00020{height:84.022119px;}
.h3_c00020{height:100.794418px;}
.h0_c00020{height:1262.835000px;}
.h1_c00020{height:1263.000000px;}
.w0_c00020{width:892.920000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:127.558500px;}
.x2_c00020{left:152.215500px;}
.x3_c00020{left:164.919000px;}
.x4_c00020{left:438.984000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:26.571147pt;}
.ws1_c00020{word-spacing:-33.181665pt;}
.ws0_c00020{word-spacing:-27.550000pt;}
.ws3_c00020{word-spacing:-26.566933pt;}
.ws1c_c00020{word-spacing:-20.297137pt;}
.ws23_c00020{word-spacing:-19.872066pt;}
.wsc_c00020{word-spacing:-19.606397pt;}
.ws21_c00020{word-spacing:-19.446995pt;}
.ws7_c00020{word-spacing:-18.968790pt;}
.ws22_c00020{word-spacing:-18.278050pt;}
.ws17_c00020{word-spacing:-18.118649pt;}
.ws29_c00020{word-spacing:-17.852979pt;}
.ws27_c00020{word-spacing:-17.640444pt;}
.ws2a_c00020{word-spacing:-17.481042pt;}
.ws10_c00020{word-spacing:-17.055971pt;}
.wse_c00020{word-spacing:-17.002837pt;}
.ws1b_c00020{word-spacing:-16.896570pt;}
.ws1f_c00020{word-spacing:-16.790302pt;}
.ws9_c00020{word-spacing:-16.737168pt;}
.ws2d_c00020{word-spacing:-16.692804pt;}
.ws5_c00020{word-spacing:-16.684034pt;}
.ws8_c00020{word-spacing:-16.258963pt;}
.wsb_c00020{word-spacing:-16.214613pt;}
.wsd_c00020{word-spacing:-16.205829pt;}
.ws20_c00020{word-spacing:-16.084453pt;}
.ws6_c00020{word-spacing:-15.568223pt;}
.ws24_c00020{word-spacing:-14.930617pt;}
.ws2_c00020{word-spacing:-14.718081pt;}
.ws4_c00020{word-spacing:-14.664947pt;}
.ws1a_c00020{word-spacing:-14.558679pt;}
.ws25_c00020{word-spacing:-14.452412pt;}
.ws28_c00020{word-spacing:-14.239876pt;}
.ws19_c00020{word-spacing:-14.238678pt;}
.ws1d_c00020{word-spacing:-13.974207pt;}
.wsf_c00020{word-spacing:-13.655404pt;}
.ws2b_c00020{word-spacing:-13.606874pt;}
.ws16_c00020{word-spacing:-13.598847pt;}
.wsa_c00020{word-spacing:-13.336601pt;}
.ws2e_c00020{word-spacing:-13.294761pt;}
.ws2c_c00020{word-spacing:-13.283467pt;}
.ws26_c00020{word-spacing:-12.911530pt;}
.ws14_c00020{word-spacing:-12.486459pt;}
.ws12_c00020{word-spacing:-11.795718pt;}
.ws18_c00020{word-spacing:-11.211246pt;}
.ws1e_c00020{word-spacing:-10.573639pt;}
.ws15_c00020{word-spacing:-9.139025pt;}
.ws11_c00020{word-spacing:-8.407948pt;}
.ws13_c00020{word-spacing:-6.174948pt;}
.ws2f_c00020{word-spacing:0.000000pt;}
._0_c00020{margin-left:-12.030006pt;}
._b_c00020{margin-left:-3.241166pt;}
._1_c00020{margin-left:-2.115166pt;}
._4_c00020{margin-left:-0.894492pt;}
._8_c00020{width:1.043156pt;}
._c_c00020{width:13.952409pt;}
._2_c00020{width:17.021217pt;}
._3_c00020{width:19.181326pt;}
._9_c00020{width:23.219500pt;}
._a_c00020{width:24.919783pt;}
._7_c00020{width:25.861275pt;}
._5_c00020{width:27.851901pt;}
._6_c00020{width:30.225155pt;}
.fs2_c00020{font-size:53.133867pt;}
.fs0_c00020{font-size:110.200000pt;}
.fs1_c00020{font-size:132.197867pt;}
.y0_c00020{bottom:0.000000pt;}
.y27_c00020{bottom:39.333333pt;}
.y26_c00020{bottom:72.934667pt;}
.y25_c00020{bottom:100.082667pt;}
.y24_c00020{bottom:127.230667pt;}
.y23_c00020{bottom:165.150667pt;}
.y22_c00020{bottom:189.352000pt;}
.y21_c00020{bottom:213.553333pt;}
.y20_c00020{bottom:229.493333pt;}
.y1f_c00020{bottom:267.413333pt;}
.y1e_c00020{bottom:283.354667pt;}
.y1d_c00020{bottom:299.294667pt;}
.y1c_c00020{bottom:315.234667pt;}
.y1b_c00020{bottom:331.174667pt;}
.y1a_c00020{bottom:347.114667pt;}
.y19_c00020{bottom:363.054667pt;}
.y18_c00020{bottom:378.996000pt;}
.y17_c00020{bottom:394.936000pt;}
.y16_c00020{bottom:410.876000pt;}
.y15_c00020{bottom:426.816000pt;}
.y14_c00020{bottom:442.756000pt;}
.y13_c00020{bottom:469.904000pt;}
.y12_c00020{bottom:485.845333pt;}
.y11_c00020{bottom:501.785333pt;}
.y10_c00020{bottom:517.725333pt;}
.yf_c00020{bottom:533.665333pt;}
.ye_c00020{bottom:560.813333pt;}
.yd_c00020{bottom:576.754667pt;}
.yc_c00020{bottom:592.694667pt;}
.yb_c00020{bottom:608.634667pt;}
.ya_c00020{bottom:624.574667pt;}
.y9_c00020{bottom:640.514667pt;}
.y8_c00020{bottom:656.454667pt;}
.y7_c00020{bottom:683.604000pt;}
.y6_c00020{bottom:699.544000pt;}
.y5_c00020{bottom:715.484000pt;}
.y4_c00020{bottom:753.404000pt;}
.y3_c00020{bottom:769.344000pt;}
.y2_c00020{bottom:848.424000pt;}
.y1_c00020{bottom:923.102667pt;}
.h4_c00020{height:46.518078pt;}
.h2_c00020{height:74.686328pt;}
.h3_c00020{height:89.595039pt;}
.h0_c00020{height:1122.520000pt;}
.h1_c00020{height:1122.666667pt;}
.w0_c00020{width:793.706667pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:113.385333pt;}
.x2_c00020{left:135.302667pt;}
.x3_c00020{left:146.594667pt;}
.x4_c00020{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cbe478153296f39e7cd1323.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.102051;font-style:normal;font-weight:normal;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_3d5dc03a5109cfef3a904476.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:0.893555;font-style:normal;font-weight:normal;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_5ce505d04d2d5b429e9048f2.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:0.910156;font-style: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;}
.ls0_c00021{letter-spacing:0.000000px;}
.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;}
}
.wsa_c00021{word-spacing:-20.633405px;}
.ws9_c00021{word-spacing:-20.622582px;}
.ws2_c00021{word-spacing:-18.948865px;}
.ws0_c00021{word-spacing:-18.829314px;}
.ws3_c00021{word-spacing:-18.769538px;}
.wse_c00021{word-spacing:-17.215373px;}
.wsb_c00021{word-spacing:-17.155597px;}
.wsc_c00021{word-spacing:-15.481880px;}
.ws1_c00021{word-spacing:-15.183002px;}
.wsd_c00021{word-spacing:-15.063451px;}
.ws8_c00021{word-spacing:-15.003676px;}
.ws6_c00021{word-spacing:-14.943900px;}
.ws7_c00021{word-spacing:-14.943224px;}
.ws5_c00021{word-spacing:-7.292623px;}
.ws4_c00021{word-spacing:-3.526760px;}
.wsf_c00021{word-spacing:0.000000px;}
._7_c00021{margin-left:-3.825638px;}
._2_c00021{margin-left:-2.151922px;}
._1_c00021{margin-left:-1.075961px;}
._4_c00021{width:19.187968px;}
._3_c00021{width:20.562806px;}
._5_c00021{width:24.866650px;}
._0_c00021{width:29.892540px;}
._6_c00021{width:31.561517px;}
.fc1_c00021{color:rgb(6,69,173);}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:59.775600px;}
.y0_c00021{bottom:0.000000px;}
.y25_c00021{bottom:44.250000px;}
.y24_c00021{bottom:82.051500px;}
.y23_c00021{bottom:99.984000px;}
.y22_c00021{bottom:117.916500px;}
.y21_c00021{bottom:135.849000px;}
.y20_c00021{bottom:153.781500px;}
.y1f_c00021{bottom:171.714000px;}
.y1e_c00021{bottom:203.083500px;}
.y1d_c00021{bottom:234.453000px;}
.y1c_c00021{bottom:252.385500px;}
.y1b_c00021{bottom:296.079000px;}
.y1a_c00021{bottom:339.774000px;}
.y19_c00021{bottom:371.143500px;}
.y18_c00021{bottom:402.511500px;}
.y17_c00021{bottom:433.881000px;}
.y16_c00021{bottom:465.249000px;}
.y15_c00021{bottom:496.618500px;}
.y14_c00021{bottom:527.988000px;}
.y13_c00021{bottom:559.356000px;}
.y12_c00021{bottom:590.725500px;}
.y11_c00021{bottom:622.095000px;}
.y10_c00021{bottom:653.463000px;}
.yf_c00021{bottom:684.832500px;}
.ye_c00021{bottom:716.200500px;}
.yd_c00021{bottom:747.570000px;}
.yc_c00021{bottom:778.939500px;}
.yb_c00021{bottom:822.633000px;}
.ya_c00021{bottom:840.565500px;}
.y9_c00021{bottom:884.260500px;}
.y8_c00021{bottom:915.630000px;}
.y7_c00021{bottom:946.998000px;}
.y6_c00021{bottom:978.367500px;}
.y5_c00021{bottom:1009.737000px;}
.y4_c00021{bottom:1041.105000px;}
.y3_c00021{bottom:1072.474500px;}
.y2_c00021{bottom:1116.168000px;}
.y1_c00021{bottom:1159.863000px;}
.h2_c00021{height:52.332837px;}
.h0_c00021{height:1262.835000px;}
.h1_c00021{height:1263.000000px;}
.w0_c00021{width:892.920000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:127.558500px;}
.x1_c00021{left:152.215500px;}
.x3_c00021{left:164.919000px;}
.x4_c00021{left:438.984000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.wsa_c00021{word-spacing:-18.340804pt;}
.ws9_c00021{word-spacing:-18.331184pt;}
.ws2_c00021{word-spacing:-16.843436pt;}
.ws0_c00021{word-spacing:-16.737168pt;}
.ws3_c00021{word-spacing:-16.684034pt;}
.wse_c00021{word-spacing:-15.302554pt;}
.wsb_c00021{word-spacing:-15.249420pt;}
.wsc_c00021{word-spacing:-13.761671pt;}
.ws1_c00021{word-spacing:-13.496002pt;}
.wsd_c00021{word-spacing:-13.389734pt;}
.ws8_c00021{word-spacing:-13.336601pt;}
.ws6_c00021{word-spacing:-13.283467pt;}
.ws7_c00021{word-spacing:-13.282866pt;}
.ws5_c00021{word-spacing:-6.482332pt;}
.ws4_c00021{word-spacing:-3.134898pt;}
.wsf_c00021{word-spacing:0.000000pt;}
._7_c00021{margin-left:-3.400567pt;}
._2_c00021{margin-left:-1.912819pt;}
._1_c00021{margin-left:-0.956410pt;}
._4_c00021{width:17.055971pt;}
._3_c00021{width:18.278050pt;}
._5_c00021{width:22.103689pt;}
._0_c00021{width:26.571147pt;}
._6_c00021{width:28.054682pt;}
.fs0_c00021{font-size:53.133867pt;}
.y0_c00021{bottom:0.000000pt;}
.y25_c00021{bottom:39.333333pt;}
.y24_c00021{bottom:72.934667pt;}
.y23_c00021{bottom:88.874667pt;}
.y22_c00021{bottom:104.814667pt;}
.y21_c00021{bottom:120.754667pt;}
.y20_c00021{bottom:136.694667pt;}
.y1f_c00021{bottom:152.634667pt;}
.y1e_c00021{bottom:180.518667pt;}
.y1d_c00021{bottom:208.402667pt;}
.y1c_c00021{bottom:224.342667pt;}
.y1b_c00021{bottom:263.181333pt;}
.y1a_c00021{bottom:302.021333pt;}
.y19_c00021{bottom:329.905333pt;}
.y18_c00021{bottom:357.788000pt;}
.y17_c00021{bottom:385.672000pt;}
.y16_c00021{bottom:413.554667pt;}
.y15_c00021{bottom:441.438667pt;}
.y14_c00021{bottom:469.322667pt;}
.y13_c00021{bottom:497.205333pt;}
.y12_c00021{bottom:525.089333pt;}
.y11_c00021{bottom:552.973333pt;}
.y10_c00021{bottom:580.856000pt;}
.yf_c00021{bottom:608.740000pt;}
.ye_c00021{bottom:636.622667pt;}
.yd_c00021{bottom:664.506667pt;}
.yc_c00021{bottom:692.390667pt;}
.yb_c00021{bottom:731.229333pt;}
.ya_c00021{bottom:747.169333pt;}
.y9_c00021{bottom:786.009333pt;}
.y8_c00021{bottom:813.893333pt;}
.y7_c00021{bottom:841.776000pt;}
.y6_c00021{bottom:869.660000pt;}
.y5_c00021{bottom:897.544000pt;}
.y4_c00021{bottom:925.426667pt;}
.y3_c00021{bottom:953.310667pt;}
.y2_c00021{bottom:992.149333pt;}
.y1_c00021{bottom:1030.989333pt;}
.h2_c00021{height:46.518078pt;}
.h0_c00021{height:1122.520000pt;}
.h1_c00021{height:1122.666667pt;}
.w0_c00021{width:793.706667pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:113.385333pt;}
.x1_c00021{left:135.302667pt;}
.x3_c00021{left:146.594667pt;}
.x4_c00021{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2378483cf501eccd85b2a1d7.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.102051;font-style:normal;font-weight:normal;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_5a8d423a13b5adcd7fa219b2.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:0.893555;font-style: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:14.948725px;}
.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;}
}
.ws3_c00022{word-spacing:-18.829314px;}
.ws1_c00022{word-spacing:-18.769538px;}
.wsf_c00022{word-spacing:-15.003676px;}
.wse_c00022{word-spacing:-14.990695px;}
.ws6_c00022{word-spacing:-14.953867px;}
.wsd_c00022{word-spacing:-14.952967px;}
.ws5_c00022{word-spacing:-14.941525px;}
.ws2_c00022{word-spacing:-14.933383px;}
.wsa_c00022{word-spacing:-14.932234px;}
.wsc_c00022{word-spacing:-14.930108px;}
.ws7_c00022{word-spacing:-14.929183px;}
.ws14_c00022{word-spacing:-14.927933px;}
.wsb_c00022{word-spacing:-14.924417px;}
.ws9_c00022{word-spacing:-14.924092px;}
.ws4_c00022{word-spacing:-14.920817px;}
.ws8_c00022{word-spacing:-14.919892px;}
.ws10_c00022{word-spacing:-14.918641px;}
.ws0_c00022{word-spacing:-14.913000px;}
.ws12_c00022{word-spacing:-14.912075px;}
.ws11_c00022{word-spacing:-14.902458px;}
.ws13_c00022{word-spacing:-14.405933px;}
.ws15_c00022{word-spacing:0.000000px;}
._0_c00022{margin-left:-4.722272px;}
._2_c00022{margin-left:-3.287658px;}
._1_c00022{margin-left:-1.075961px;}
.fc1_c00022{color:rgb(6,69,173);}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:59.775600px;}
.y0_c00022{bottom:0.000000px;}
.y15_c00022{bottom:44.250000px;}
.y14_c00022{bottom:648.780000px;}
.y13_c00022{bottom:675.678000px;}
.y12_c00022{bottom:702.577500px;}
.y11_c00022{bottom:729.477000px;}
.y10_c00022{bottom:756.376500px;}
.yf_c00022{bottom:783.274500px;}
.ye_c00022{bottom:810.174000px;}
.yd_c00022{bottom:837.073500px;}
.yc_c00022{bottom:863.973000px;}
.yb_c00022{bottom:890.871000px;}
.ya_c00022{bottom:917.770500px;}
.y9_c00022{bottom:944.670000px;}
.y8_c00022{bottom:971.569500px;}
.y7_c00022{bottom:998.467500px;}
.y6_c00022{bottom:1025.367000px;}
.y5_c00022{bottom:1052.266500px;}
.y4_c00022{bottom:1079.166000px;}
.y3_c00022{bottom:1106.064000px;}
.y2_c00022{bottom:1132.963500px;}
.y1_c00022{bottom:1159.863000px;}
.h2_c00022{height:52.332837px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w0_c00022{width:892.920000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:127.558500px;}
.x2_c00022{left:438.984000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:13.287756pt;}
.ws3_c00022{word-spacing:-16.737168pt;}
.ws1_c00022{word-spacing:-16.684034pt;}
.wsf_c00022{word-spacing:-13.336601pt;}
.wse_c00022{word-spacing:-13.325062pt;}
.ws6_c00022{word-spacing:-13.292326pt;}
.wsd_c00022{word-spacing:-13.291526pt;}
.ws5_c00022{word-spacing:-13.281356pt;}
.ws2_c00022{word-spacing:-13.274118pt;}
.wsa_c00022{word-spacing:-13.273097pt;}
.wsc_c00022{word-spacing:-13.271207pt;}
.ws7_c00022{word-spacing:-13.270385pt;}
.ws14_c00022{word-spacing:-13.269274pt;}
.wsb_c00022{word-spacing:-13.266148pt;}
.ws9_c00022{word-spacing:-13.265859pt;}
.ws4_c00022{word-spacing:-13.262948pt;}
.ws8_c00022{word-spacing:-13.262126pt;}
.ws10_c00022{word-spacing:-13.261014pt;}
.ws0_c00022{word-spacing:-13.256000pt;}
.ws12_c00022{word-spacing:-13.255178pt;}
.ws11_c00022{word-spacing:-13.246629pt;}
.ws13_c00022{word-spacing:-12.805274pt;}
.ws15_c00022{word-spacing:0.000000pt;}
._0_c00022{margin-left:-4.197575pt;}
._2_c00022{margin-left:-2.922363pt;}
._1_c00022{margin-left:-0.956410pt;}
.fs0_c00022{font-size:53.133867pt;}
.y0_c00022{bottom:0.000000pt;}
.y15_c00022{bottom:39.333333pt;}
.y14_c00022{bottom:576.693333pt;}
.y13_c00022{bottom:600.602667pt;}
.y12_c00022{bottom:624.513333pt;}
.y11_c00022{bottom:648.424000pt;}
.y10_c00022{bottom:672.334667pt;}
.yf_c00022{bottom:696.244000pt;}
.ye_c00022{bottom:720.154667pt;}
.yd_c00022{bottom:744.065333pt;}
.yc_c00022{bottom:767.976000pt;}
.yb_c00022{bottom:791.885333pt;}
.ya_c00022{bottom:815.796000pt;}
.y9_c00022{bottom:839.706667pt;}
.y8_c00022{bottom:863.617333pt;}
.y7_c00022{bottom:887.526667pt;}
.y6_c00022{bottom:911.437333pt;}
.y5_c00022{bottom:935.348000pt;}
.y4_c00022{bottom:959.258667pt;}
.y3_c00022{bottom:983.168000pt;}
.y2_c00022{bottom:1007.078667pt;}
.y1_c00022{bottom:1030.989333pt;}
.h2_c00022{height:46.518078pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w0_c00022{width:793.706667pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:113.385333pt;}
.x2_c00022{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08886daa5ef433dabfcd5d3d.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:59.775600px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:44.250000px;}
.h2_c00023{height:52.332837px;}
.h0_c00023{height:1262.835000px;}
.h1_c00023{height:1263.000000px;}
.w0_c00023{width:892.920000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:438.984000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs0_c00023{font-size:53.133867pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:39.333333pt;}
.h2_c00023{height:46.518078pt;}
.h0_c00023{height:1122.520000pt;}
.h1_c00023{height:1122.666667pt;}
.w0_c00023{width:793.706667pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fac72c2fd9d43abc37fee802.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.893555;font-style:normal;font-weight:normal;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_fb548b0c41258d0c08d3f9dd.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.102051;font-style:normal;font-weight:normal;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_d8d139aeb0af07042bafb556.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.014648;font-style:normal;font-weight:normal;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_edb4cc07bbba16ff850cc9db.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_d4c7cf14c4ab95cf992a17c7.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:1.048828;font-style: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;}
.ls3_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:0.087998px;}
.ls1_c00024{letter-spacing:0.098482px;}
.ls2_c00024{letter-spacing:29.892540px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:-30.993750px;}
.wsb_c00024{word-spacing:-26.575517px;}
.wsc_c00024{word-spacing:-26.487518px;}
.ws1b_c00024{word-spacing:-23.192933px;}
.ws1_c00024{word-spacing:-22.475626px;}
.ws18_c00024{word-spacing:-21.877870px;}
.wsf_c00024{word-spacing:-21.698543px;}
.ws3_c00024{word-spacing:-21.519300px;}
.ws5_c00024{word-spacing:-20.921460px;}
.ws1c_c00024{word-spacing:-20.323704px;}
.ws12_c00024{word-spacing:-19.606397px;}
.ws15_c00024{word-spacing:-18.829314px;}
.wsd_c00024{word-spacing:-18.814446px;}
.ws13_c00024{word-spacing:-18.787222px;}
.ws14_c00024{word-spacing:-18.778805px;}
.ws2_c00024{word-spacing:-18.769538px;}
.ws9_c00024{word-spacing:-18.766238px;}
.ws17_c00024{word-spacing:-18.351109px;}
.wse_c00024{word-spacing:-18.004531px;}
.ws8_c00024{word-spacing:-17.992456px;}
.ws1d_c00024{word-spacing:-17.394700px;}
.ws11_c00024{word-spacing:-17.334924px;}
.ws7_c00024{word-spacing:-16.677392px;}
.ws19_c00024{word-spacing:-16.387429px;}
.ws1a_c00024{word-spacing:-16.378514px;}
.ws1e_c00024{word-spacing:-13.867939px;}
.ws4_c00024{word-spacing:-12.732203px;}
.ws6_c00024{word-spacing:-11.716018px;}
.ws16_c00024{word-spacing:-11.130466px;}
.ws10_c00024{word-spacing:-10.080466px;}
.wsa_c00024{word-spacing:0.000000px;}
._5_c00024{margin-left:-7.651277px;}
._9_c00024{margin-left:-3.765863px;}
._d_c00024{margin-left:-2.331248px;}
._2_c00024{margin-left:-1.016185px;}
._b_c00024{width:15.960085px;}
._0_c00024{width:19.008641px;}
._c_c00024{width:20.144377px;}
._a_c00024{width:21.698543px;}
._6_c00024{width:22.714728px;}
._8_c00024{width:24.448220px;}
._4_c00024{width:26.899020px;}
._3_c00024{width:33.832990px;}
._7_c00024{width:71.731200px;}
._1_c00024{width:86.077200px;}
.fc5_c00024{color:rgb(79,153,5);}
.fc4_c00024{color:rgb(33,74,135);}
.fc2_c00024{color:rgb(143,89,3);}
.fc3_c00024{color:rgb(207,92,0);}
.fc1_c00024{color:rgb(6,69,173);}
.fc0_c00024{color:rgb(0,0,0);}
.fs4_c00024{font-size:43.999200px;}
.fs2_c00024{font-size:59.775600px;}
.fs5_c00024{font-size:71.731200px;}
.fs3_c00024{font-size:86.077200px;}
.fs0_c00024{font-size:123.975000px;}
.fs1_c00024{font-size:148.722600px;}
.y0_c00024{bottom:0.000000px;}
.y23_c00024{bottom:44.250000px;}
.y22_c00024{bottom:82.051500px;}
.y21_c00024{bottom:99.984000px;}
.y20_c00024{bottom:117.916500px;}
.y1f_c00024{bottom:135.849000px;}
.y1e_c00024{bottom:153.781500px;}
.y1d_c00024{bottom:171.714000px;}
.y1c_c00024{bottom:189.648000px;}
.y1b_c00024{bottom:218.506500px;}
.y1a_c00024{bottom:236.439000px;}
.y19_c00024{bottom:254.371500px;}
.y18_c00024{bottom:283.231500px;}
.y17_c00024{bottom:301.164000px;}
.y16_c00024{bottom:319.096500px;}
.y15_c00024{bottom:357.853500px;}
.y14_c00024{bottom:384.238500px;}
.y13_c00024{bottom:402.171000px;}
.y12_c00024{bottom:438.582000px;}
.y11_c00024{bottom:489.217500px;}
.y10_c00024{bottom:530.472000px;}
.yf_c00024{bottom:546.537000px;}
.ye_c00024{bottom:591.657000px;}
.yd_c00024{bottom:618.042000px;}
.yc_c00024{bottom:635.974500px;}
.yb_c00024{bottom:653.907000px;}
.ya_c00024{bottom:671.841000px;}
.y9_c00024{bottom:698.224500px;}
.y8_c00024{bottom:716.158500px;}
.y7_c00024{bottom:734.091000px;}
.y6_c00024{bottom:752.023500px;}
.y5_c00024{bottom:793.780500px;}
.y4_c00024{bottom:852.066000px;}
.y3_c00024{bottom:869.998500px;}
.y2_c00024{bottom:956.160000px;}
.y1_c00024{bottom:1039.330500px;}
.h6_c00024{height:35.190766px;}
.h7_c00024{height:36.007158px;}
.h8_c00024{height:48.614700px;}
.h4_c00024{height:52.332837px;}
.h5_c00024{height:58.337477px;}
.h2_c00024{height:84.022119px;}
.h3_c00024{height:100.794418px;}
.h0_c00024{height:1262.835000px;}
.h1_c00024{height:1263.000000px;}
.w0_c00024{width:892.920000px;}
.w1_c00024{width:893.250000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.558500px;}
.x2_c00024{left:137.122500px;}
.x3_c00024{left:152.215500px;}
.x4_c00024{left:164.919000px;}
.x5_c00024{left:438.984000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls3_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:0.078221pt;}
.ls1_c00024{letter-spacing:0.087539pt;}
.ls2_c00024{letter-spacing:26.571147pt;}
.ws0_c00024{word-spacing:-27.550000pt;}
.wsb_c00024{word-spacing:-23.622682pt;}
.wsc_c00024{word-spacing:-23.544461pt;}
.ws1b_c00024{word-spacing:-20.615940pt;}
.ws1_c00024{word-spacing:-19.978334pt;}
.ws18_c00024{word-spacing:-19.446995pt;}
.wsf_c00024{word-spacing:-19.287594pt;}
.ws3_c00024{word-spacing:-19.128267pt;}
.ws5_c00024{word-spacing:-18.596853pt;}
.ws1c_c00024{word-spacing:-18.065515pt;}
.ws12_c00024{word-spacing:-17.427908pt;}
.ws15_c00024{word-spacing:-16.737168pt;}
.wsd_c00024{word-spacing:-16.723952pt;}
.ws13_c00024{word-spacing:-16.699753pt;}
.ws14_c00024{word-spacing:-16.692271pt;}
.ws2_c00024{word-spacing:-16.684034pt;}
.ws9_c00024{word-spacing:-16.681101pt;}
.ws17_c00024{word-spacing:-16.312097pt;}
.wse_c00024{word-spacing:-16.004028pt;}
.ws8_c00024{word-spacing:-15.993294pt;}
.ws1d_c00024{word-spacing:-15.461955pt;}
.ws11_c00024{word-spacing:-15.408821pt;}
.ws7_c00024{word-spacing:-14.824349pt;}
.ws19_c00024{word-spacing:-14.566604pt;}
.ws1a_c00024{word-spacing:-14.558679pt;}
.ws1e_c00024{word-spacing:-12.327057pt;}
.ws4_c00024{word-spacing:-11.317514pt;}
.ws6_c00024{word-spacing:-10.414238pt;}
.ws16_c00024{word-spacing:-9.893747pt;}
.ws10_c00024{word-spacing:-8.960414pt;}
.wsa_c00024{word-spacing:0.000000pt;}
._5_c00024{margin-left:-6.801135pt;}
._9_c00024{margin-left:-3.347434pt;}
._d_c00024{margin-left:-2.072221pt;}
._2_c00024{margin-left:-0.903276pt;}
._b_c00024{width:14.186742pt;}
._0_c00024{width:16.896570pt;}
._c_c00024{width:17.906113pt;}
._a_c00024{width:19.287594pt;}
._6_c00024{width:20.190869pt;}
._8_c00024{width:21.731751pt;}
._4_c00024{width:23.910240pt;}
._3_c00024{width:30.073769pt;}
._7_c00024{width:63.761067pt;}
._1_c00024{width:76.513067pt;}
.fs4_c00024{font-size:39.110400pt;}
.fs2_c00024{font-size:53.133867pt;}
.fs5_c00024{font-size:63.761067pt;}
.fs3_c00024{font-size:76.513067pt;}
.fs0_c00024{font-size:110.200000pt;}
.fs1_c00024{font-size:132.197867pt;}
.y0_c00024{bottom:0.000000pt;}
.y23_c00024{bottom:39.333333pt;}
.y22_c00024{bottom:72.934667pt;}
.y21_c00024{bottom:88.874667pt;}
.y20_c00024{bottom:104.814667pt;}
.y1f_c00024{bottom:120.754667pt;}
.y1e_c00024{bottom:136.694667pt;}
.y1d_c00024{bottom:152.634667pt;}
.y1c_c00024{bottom:168.576000pt;}
.y1b_c00024{bottom:194.228000pt;}
.y1a_c00024{bottom:210.168000pt;}
.y19_c00024{bottom:226.108000pt;}
.y18_c00024{bottom:251.761333pt;}
.y17_c00024{bottom:267.701333pt;}
.y16_c00024{bottom:283.641333pt;}
.y15_c00024{bottom:318.092000pt;}
.y14_c00024{bottom:341.545333pt;}
.y13_c00024{bottom:357.485333pt;}
.y12_c00024{bottom:389.850667pt;}
.y11_c00024{bottom:434.860000pt;}
.y10_c00024{bottom:471.530667pt;}
.yf_c00024{bottom:485.810667pt;}
.ye_c00024{bottom:525.917333pt;}
.yd_c00024{bottom:549.370667pt;}
.yc_c00024{bottom:565.310667pt;}
.yb_c00024{bottom:581.250667pt;}
.ya_c00024{bottom:597.192000pt;}
.y9_c00024{bottom:620.644000pt;}
.y8_c00024{bottom:636.585333pt;}
.y7_c00024{bottom:652.525333pt;}
.y6_c00024{bottom:668.465333pt;}
.y5_c00024{bottom:705.582667pt;}
.y4_c00024{bottom:757.392000pt;}
.y3_c00024{bottom:773.332000pt;}
.y2_c00024{bottom:849.920000pt;}
.y1_c00024{bottom:923.849333pt;}
.h6_c00024{height:31.280681pt;}
.h7_c00024{height:32.006363pt;}
.h8_c00024{height:43.213067pt;}
.h4_c00024{height:46.518078pt;}
.h5_c00024{height:51.855535pt;}
.h2_c00024{height:74.686328pt;}
.h3_c00024{height:89.595039pt;}
.h0_c00024{height:1122.520000pt;}
.h1_c00024{height:1122.666667pt;}
.w0_c00024{width:793.706667pt;}
.w1_c00024{width:794.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.385333pt;}
.x2_c00024{left:121.886667pt;}
.x3_c00024{left:135.302667pt;}
.x4_c00024{left:146.594667pt;}
.x5_c00024{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37a2ac1640bbd8daa4fea8ba.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:0.893555;font-style:normal;font-weight:normal;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_276cfc9acacba4ca98242622.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_d2926be155a66d8e5c35d2e3.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.083496;font-style: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;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls1_c00025{letter-spacing:0.087998px;}
.ls0_c00025{letter-spacing:29.892540px;}
.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;}
}
.ws2c_c00025{word-spacing:-26.575517px;}
.ws14_c00025{word-spacing:-23.387461px;}
.ws15_c00025{word-spacing:-23.372260px;}
.ws7_c00025{word-spacing:-23.252708px;}
.ws29_c00025{word-spacing:-23.032396px;}
.ws2a_c00025{word-spacing:-23.013606px;}
.ws8_c00025{word-spacing:-22.176748px;}
.ws36_c00025{word-spacing:-21.519300px;}
.ws2f_c00025{word-spacing:-21.041011px;}
.ws19_c00025{word-spacing:-20.323704px;}
.wsc_c00025{word-spacing:-20.024826px;}
.ws32_c00025{word-spacing:-19.785724px;}
.ws5_c00025{word-spacing:-19.187968px;}
.ws39_c00025{word-spacing:-18.829314px;}
.ws2_c00025{word-spacing:-18.769538px;}
.ws25_c00025{word-spacing:-18.709763px;}
.ws1d_c00025{word-spacing:-18.590212px;}
.ws22_c00025{word-spacing:-18.536388px;}
.ws23_c00025{word-spacing:-18.530436px;}
.ws4_c00025{word-spacing:-18.231558px;}
.ws0_c00025{word-spacing:-17.932800px;}
.ws34_c00025{word-spacing:-17.872904px;}
.ws1f_c00025{word-spacing:-17.813129px;}
.ws9_c00025{word-spacing:-17.753353px;}
.ws2b_c00025{word-spacing:-17.693578px;}
.ws1e_c00025{word-spacing:-17.454475px;}
.ws21_c00025{word-spacing:-17.334924px;}
.ws17_c00025{word-spacing:-16.199188px;}
.wsb_c00025{word-spacing:-16.187708px;}
.ws16_c00025{word-spacing:-16.155233px;}
.ws6_c00025{word-spacing:-16.068266px;}
.ws30_c00025{word-spacing:-15.840534px;}
.ws1_c00025{word-spacing:-15.601432px;}
.ws20_c00025{word-spacing:-15.242778px;}
.ws13_c00025{word-spacing:-14.943900px;}
.ws3c_c00025{word-spacing:-14.773403px;}
.ws10_c00025{word-spacing:-14.764573px;}
.wsa_c00025{word-spacing:-14.435147px;}
.ws1b_c00025{word-spacing:-14.405920px;}
.ws1a_c00025{word-spacing:-14.404838px;}
.ws35_c00025{word-spacing:-13.987490px;}
.ws24_c00025{word-spacing:-13.867939px;}
.ws12_c00025{word-spacing:-13.813488px;}
.ws31_c00025{word-spacing:-13.210408px;}
.ws28_c00025{word-spacing:-13.090856px;}
.ws18_c00025{word-spacing:-12.732203px;}
.ws33_c00025{word-spacing:-12.608683px;}
.wsd_c00025{word-spacing:-12.433325px;}
.wse_c00025{word-spacing:-12.074671px;}
.ws26_c00025{word-spacing:-11.906562px;}
.ws27_c00025{word-spacing:-11.895344px;}
.ws38_c00025{word-spacing:-11.553982px;}
.ws2d_c00025{word-spacing:-11.317054px;}
.ws1c_c00025{word-spacing:-11.297588px;}
.ws2e_c00025{word-spacing:-11.237813px;}
.ws3_c00025{word-spacing:-11.022816px;}
.ws11_c00025{word-spacing:-10.920583px;}
.wsf_c00025{word-spacing:-8.246983px;}
.ws3b_c00025{word-spacing:-7.535717px;}
.ws3a_c00025{word-spacing:-7.526882px;}
.ws3d_c00025{word-spacing:0.000000px;}
.ws37_c00025{word-spacing:39.392120px;}
._d_c00025{margin-left:-4.722272px;}
._9_c00025{margin-left:-3.168107px;}
._1_c00025{margin-left:-1.195512px;}
._4_c00025{width:9.397216px;}
._6_c00025{width:12.672427px;}
._11_c00025{width:16.856719px;}
._5_c00025{width:18.351109px;}
._3_c00025{width:19.845499px;}
._2_c00025{width:21.695213px;}
._7_c00025{width:22.894055px;}
._e_c00025{width:23.910240px;}
._f_c00025{width:30.784434px;}
._8_c00025{width:32.517926px;}
._10_c00025{width:33.776544px;}
._b_c00025{width:38.199938px;}
._a_c00025{width:39.930101px;}
._c_c00025{width:42.440676px;}
._0_c00025{width:71.731200px;}
._12_c00025{width:86.077200px;}
._13_c00025{width:87.690805px;}
.fc1_c00025{color:rgb(6,69,173);}
.fc0_c00025{color:rgb(0,0,0);}
.fs2_c00025{font-size:43.999200px;}
.fs1_c00025{font-size:59.775600px;}
.fs0_c00025{font-size:71.731200px;}
.fs3_c00025{font-size:86.077200px;}
.y0_c00025{bottom:0.000000px;}
.y32_c00025{bottom:44.250000px;}
.y31_c00025{bottom:82.051500px;}
.y30_c00025{bottom:99.984000px;}
.y2f_c00025{bottom:141.913500px;}
.y2e_c00025{bottom:159.846000px;}
.y2d_c00025{bottom:202.168500px;}
.y2c_c00025{bottom:261.541500px;}
.y2b_c00025{bottom:279.474000px;}
.y2a_c00025{bottom:297.406500px;}
.y29_c00025{bottom:315.339000px;}
.y28_c00025{bottom:333.271500px;}
.y27_c00025{bottom:351.204000px;}
.y26_c00025{bottom:369.138000px;}
.y25_c00025{bottom:387.070500px;}
.y24_c00025{bottom:417.028500px;}
.y23_c00025{bottom:434.961000px;}
.y22_c00025{bottom:452.893500px;}
.y21_c00025{bottom:482.851500px;}
.y20_c00025{bottom:500.784000px;}
.y1f_c00025{bottom:518.716500px;}
.y1e_c00025{bottom:548.674500px;}
.y1d_c00025{bottom:566.607000px;}
.y1c_c00025{bottom:584.539500px;}
.y1b_c00025{bottom:602.472000px;}
.y1a_c00025{bottom:632.430000px;}
.y19_c00025{bottom:650.362500px;}
.y18_c00025{bottom:668.295000px;}
.y17_c00025{bottom:686.227500px;}
.y16_c00025{bottom:704.160000px;}
.y15_c00025{bottom:722.094000px;}
.y14_c00025{bottom:740.026500px;}
.y13_c00025{bottom:757.959000px;}
.y12_c00025{bottom:787.917000px;}
.y11_c00025{bottom:805.849500px;}
.y10_c00025{bottom:823.782000px;}
.yf_c00025{bottom:841.714500px;}
.ye_c00025{bottom:871.672500px;}
.yd_c00025{bottom:889.605000px;}
.yc_c00025{bottom:907.537500px;}
.yb_c00025{bottom:925.470000px;}
.ya_c00025{bottom:943.404000px;}
.y9_c00025{bottom:961.336500px;}
.y8_c00025{bottom:979.269000px;}
.y7_c00025{bottom:997.201500px;}
.y6_c00025{bottom:1027.159500px;}
.y5_c00025{bottom:1045.092000px;}
.y4_c00025{bottom:1063.024500px;}
.y3_c00025{bottom:1104.954000px;}
.y2_c00025{bottom:1122.888000px;}
.y1_c00025{bottom:1159.863000px;}
.h5_c00025{height:36.007158px;}
.h2_c00025{height:48.614700px;}
.h3_c00025{height:52.332837px;}
.h4_c00025{height:58.337477px;}
.h0_c00025{height:1262.835000px;}
.h1_c00025{height:1263.000000px;}
.w0_c00025{width:892.920000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:127.558500px;}
.x2_c00025{left:152.215500px;}
.x3_c00025{left:164.919000px;}
.x4_c00025{left:438.984000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls1_c00025{letter-spacing:0.078221pt;}
.ls0_c00025{letter-spacing:26.571147pt;}
.ws2c_c00025{word-spacing:-23.622682pt;}
.ws14_c00025{word-spacing:-20.788854pt;}
.ws15_c00025{word-spacing:-20.775342pt;}
.ws7_c00025{word-spacing:-20.669074pt;}
.ws29_c00025{word-spacing:-20.473241pt;}
.ws2a_c00025{word-spacing:-20.456539pt;}
.ws8_c00025{word-spacing:-19.712665pt;}
.ws36_c00025{word-spacing:-19.128267pt;}
.ws2f_c00025{word-spacing:-18.703121pt;}
.ws19_c00025{word-spacing:-18.065515pt;}
.wsc_c00025{word-spacing:-17.799845pt;}
.ws32_c00025{word-spacing:-17.587310pt;}
.ws5_c00025{word-spacing:-17.055971pt;}
.ws39_c00025{word-spacing:-16.737168pt;}
.ws2_c00025{word-spacing:-16.684034pt;}
.ws25_c00025{word-spacing:-16.630900pt;}
.ws1d_c00025{word-spacing:-16.524633pt;}
.ws22_c00025{word-spacing:-16.476789pt;}
.ws23_c00025{word-spacing:-16.471499pt;}
.ws4_c00025{word-spacing:-16.205829pt;}
.ws0_c00025{word-spacing:-15.940267pt;}
.ws34_c00025{word-spacing:-15.887026pt;}
.ws1f_c00025{word-spacing:-15.833892pt;}
.ws9_c00025{word-spacing:-15.780758pt;}
.ws2b_c00025{word-spacing:-15.727625pt;}
.ws1e_c00025{word-spacing:-15.515089pt;}
.ws21_c00025{word-spacing:-15.408821pt;}
.ws17_c00025{word-spacing:-14.399278pt;}
.wsb_c00025{word-spacing:-14.389074pt;}
.ws16_c00025{word-spacing:-14.360207pt;}
.ws6_c00025{word-spacing:-14.282903pt;}
.ws30_c00025{word-spacing:-14.080475pt;}
.ws1_c00025{word-spacing:-13.867939pt;}
.ws20_c00025{word-spacing:-13.549136pt;}
.ws13_c00025{word-spacing:-13.283467pt;}
.ws3c_c00025{word-spacing:-13.131914pt;}
.ws10_c00025{word-spacing:-13.124065pt;}
.wsa_c00025{word-spacing:-12.831242pt;}
.ws1b_c00025{word-spacing:-12.805262pt;}
.ws1a_c00025{word-spacing:-12.804301pt;}
.ws35_c00025{word-spacing:-12.433325pt;}
.ws24_c00025{word-spacing:-12.327057pt;}
.ws12_c00025{word-spacing:-12.278656pt;}
.ws31_c00025{word-spacing:-11.742585pt;}
.ws28_c00025{word-spacing:-11.636317pt;}
.ws18_c00025{word-spacing:-11.317514pt;}
.ws33_c00025{word-spacing:-11.207718pt;}
.wsd_c00025{word-spacing:-11.051844pt;}
.wse_c00025{word-spacing:-10.733041pt;}
.ws26_c00025{word-spacing:-10.583611pt;}
.ws27_c00025{word-spacing:-10.573639pt;}
.ws38_c00025{word-spacing:-10.270206pt;}
.ws2d_c00025{word-spacing:-10.059603pt;}
.ws1c_c00025{word-spacing:-10.042301pt;}
.ws2e_c00025{word-spacing:-9.989167pt;}
.ws3_c00025{word-spacing:-9.798059pt;}
.ws11_c00025{word-spacing:-9.707185pt;}
.wsf_c00025{word-spacing:-7.330652pt;}
.ws3b_c00025{word-spacing:-6.698415pt;}
.ws3a_c00025{word-spacing:-6.690562pt;}
.ws3d_c00025{word-spacing:0.000000pt;}
.ws37_c00025{word-spacing:35.015218pt;}
._d_c00025{margin-left:-4.197575pt;}
._9_c00025{margin-left:-2.816095pt;}
._1_c00025{margin-left:-1.062677pt;}
._4_c00025{width:8.353081pt;}
._6_c00025{width:11.264380pt;}
._11_c00025{width:14.983750pt;}
._5_c00025{width:16.312097pt;}
._3_c00025{width:17.640444pt;}
._2_c00025{width:19.284634pt;}
._7_c00025{width:20.350271pt;}
._e_c00025{width:21.253547pt;}
._f_c00025{width:27.363941pt;}
._8_c00025{width:28.904823pt;}
._10_c00025{width:30.023595pt;}
._b_c00025{width:33.955501pt;}
._a_c00025{width:35.493423pt;}
._c_c00025{width:37.725045pt;}
._0_c00025{width:63.761067pt;}
._12_c00025{width:76.513067pt;}
._13_c00025{width:77.947382pt;}
.fs2_c00025{font-size:39.110400pt;}
.fs1_c00025{font-size:53.133867pt;}
.fs0_c00025{font-size:63.761067pt;}
.fs3_c00025{font-size:76.513067pt;}
.y0_c00025{bottom:0.000000pt;}
.y32_c00025{bottom:39.333333pt;}
.y31_c00025{bottom:72.934667pt;}
.y30_c00025{bottom:88.874667pt;}
.y2f_c00025{bottom:126.145333pt;}
.y2e_c00025{bottom:142.085333pt;}
.y2d_c00025{bottom:179.705333pt;}
.y2c_c00025{bottom:232.481333pt;}
.y2b_c00025{bottom:248.421333pt;}
.y2a_c00025{bottom:264.361333pt;}
.y29_c00025{bottom:280.301333pt;}
.y28_c00025{bottom:296.241333pt;}
.y27_c00025{bottom:312.181333pt;}
.y26_c00025{bottom:328.122667pt;}
.y25_c00025{bottom:344.062667pt;}
.y24_c00025{bottom:370.692000pt;}
.y23_c00025{bottom:386.632000pt;}
.y22_c00025{bottom:402.572000pt;}
.y21_c00025{bottom:429.201333pt;}
.y20_c00025{bottom:445.141333pt;}
.y1f_c00025{bottom:461.081333pt;}
.y1e_c00025{bottom:487.710667pt;}
.y1d_c00025{bottom:503.650667pt;}
.y1c_c00025{bottom:519.590667pt;}
.y1b_c00025{bottom:535.530667pt;}
.y1a_c00025{bottom:562.160000pt;}
.y19_c00025{bottom:578.100000pt;}
.y18_c00025{bottom:594.040000pt;}
.y17_c00025{bottom:609.980000pt;}
.y16_c00025{bottom:625.920000pt;}
.y15_c00025{bottom:641.861333pt;}
.y14_c00025{bottom:657.801333pt;}
.y13_c00025{bottom:673.741333pt;}
.y12_c00025{bottom:700.370667pt;}
.y11_c00025{bottom:716.310667pt;}
.y10_c00025{bottom:732.250667pt;}
.yf_c00025{bottom:748.190667pt;}
.ye_c00025{bottom:774.820000pt;}
.yd_c00025{bottom:790.760000pt;}
.yc_c00025{bottom:806.700000pt;}
.yb_c00025{bottom:822.640000pt;}
.ya_c00025{bottom:838.581333pt;}
.y9_c00025{bottom:854.521333pt;}
.y8_c00025{bottom:870.461333pt;}
.y7_c00025{bottom:886.401333pt;}
.y6_c00025{bottom:913.030667pt;}
.y5_c00025{bottom:928.970667pt;}
.y4_c00025{bottom:944.910667pt;}
.y3_c00025{bottom:982.181333pt;}
.y2_c00025{bottom:998.122667pt;}
.y1_c00025{bottom:1030.989333pt;}
.h5_c00025{height:32.006363pt;}
.h2_c00025{height:43.213067pt;}
.h3_c00025{height:46.518078pt;}
.h4_c00025{height:51.855535pt;}
.h0_c00025{height:1122.520000pt;}
.h1_c00025{height:1122.666667pt;}
.w0_c00025{width:793.706667pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:113.385333pt;}
.x2_c00025{left:135.302667pt;}
.x3_c00025{left:146.594667pt;}
.x4_c00025{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_813bc23a85d4a6d5f302c157.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.048828;font-style:normal;font-weight:normal;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_84dfa301266c0c32f36f60ac.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.083496;font-style:normal;font-weight:normal;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_76c6d6f14200d10b4ea9c313.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls5_c00026{letter-spacing:0.000000px;}
.ls1_c00026{letter-spacing:0.087998px;}
.ls2_c00026{letter-spacing:0.098482px;}
.ls0_c00026{letter-spacing:0.104482px;}
.ls3_c00026{letter-spacing:26.690482px;}
.ls4_c00026{letter-spacing:26.696482px;}
.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:-26.575517px;}
.ws0_c00026{word-spacing:-26.487518px;}
.ws9_c00026{word-spacing:0.000000px;}
.ws4_c00026{word-spacing:0.043999px;}
.wsb_c00026{word-spacing:0.064416px;}
.ws6_c00026{word-spacing:0.066151px;}
.ws8_c00026{word-spacing:0.070416px;}
.ws2_c00026{word-spacing:0.175997px;}
.wsa_c00026{word-spacing:0.212897px;}
.ws3_c00026{word-spacing:0.213446px;}
.ws5_c00026{word-spacing:0.219446px;}
.ws7_c00026{word-spacing:0.219996px;}
._0_c00026{width:1.047451px;}
.fc4_c00026{color:rgb(143,89,3);}
.fc3_c00026{color:rgb(79,153,5);}
.fc2_c00026{color:rgb(207,92,0);}
.fc1_c00026{color:rgb(0,0,0);}
.fc0_c00026{color:rgb(33,74,135);}
.fs0_c00026{font-size:43.999200px;}
.fs1_c00026{font-size:59.775600px;}
.y0_c00026{bottom:0.000000px;}
.yd_c00026{bottom:44.250000px;}
.yc_c00026{bottom:926.064000px;}
.yb_c00026{bottom:942.502500px;}
.ya_c00026{bottom:958.941000px;}
.y9_c00026{bottom:975.379500px;}
.y8_c00026{bottom:991.818000px;}
.y7_c00026{bottom:1008.256500px;}
.y6_c00026{bottom:1024.695000px;}
.y5_c00026{bottom:1057.572000px;}
.y4_c00026{bottom:1074.010500px;}
.y3_c00026{bottom:1090.447500px;}
.y2_c00026{bottom:1123.324500px;}
.y1_c00026{bottom:1139.389500px;}
.h2_c00026{height:36.007158px;}
.h3_c00026{height:52.332837px;}
.h0_c00026{height:1262.835000px;}
.h1_c00026{height:1263.000000px;}
.w0_c00026{width:892.920000px;}
.w1_c00026{width:893.250000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:137.122500px;}
.x2_c00026{left:150.417000px;}
.x3_c00026{left:438.984000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls5_c00026{letter-spacing:0.000000pt;}
.ls1_c00026{letter-spacing:0.078221pt;}
.ls2_c00026{letter-spacing:0.087539pt;}
.ls0_c00026{letter-spacing:0.092873pt;}
.ls3_c00026{letter-spacing:23.724873pt;}
.ls4_c00026{letter-spacing:23.730206pt;}
.ws1_c00026{word-spacing:-23.622682pt;}
.ws0_c00026{word-spacing:-23.544461pt;}
.ws9_c00026{word-spacing:0.000000pt;}
.ws4_c00026{word-spacing:0.039110pt;}
.wsb_c00026{word-spacing:0.057259pt;}
.ws6_c00026{word-spacing:0.058801pt;}
.ws8_c00026{word-spacing:0.062592pt;}
.ws2_c00026{word-spacing:0.156442pt;}
.wsa_c00026{word-spacing:0.189242pt;}
.ws3_c00026{word-spacing:0.189730pt;}
.ws5_c00026{word-spacing:0.195063pt;}
.ws7_c00026{word-spacing:0.195552pt;}
._0_c00026{width:0.931068pt;}
.fs0_c00026{font-size:39.110400pt;}
.fs1_c00026{font-size:53.133867pt;}
.y0_c00026{bottom:0.000000pt;}
.yd_c00026{bottom:39.333333pt;}
.yc_c00026{bottom:823.168000pt;}
.yb_c00026{bottom:837.780000pt;}
.ya_c00026{bottom:852.392000pt;}
.y9_c00026{bottom:867.004000pt;}
.y8_c00026{bottom:881.616000pt;}
.y7_c00026{bottom:896.228000pt;}
.y6_c00026{bottom:910.840000pt;}
.y5_c00026{bottom:940.064000pt;}
.y4_c00026{bottom:954.676000pt;}
.y3_c00026{bottom:969.286667pt;}
.y2_c00026{bottom:998.510667pt;}
.y1_c00026{bottom:1012.790667pt;}
.h2_c00026{height:32.006363pt;}
.h3_c00026{height:46.518078pt;}
.h0_c00026{height:1122.520000pt;}
.h1_c00026{height:1122.666667pt;}
.w0_c00026{width:793.706667pt;}
.w1_c00026{width:794.000000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:121.886667pt;}
.x2_c00026{left:133.704000pt;}
.x3_c00026{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf0ff148e57f069e4a85ed68.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:0.000000px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:59.775600px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:44.250000px;}
.h2_c00027{height:52.332837px;}
.h0_c00027{height:1262.835000px;}
.h1_c00027{height:1263.000000px;}
.w0_c00027{width:892.920000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:438.984000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.fs0_c00027{font-size:53.133867pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:39.333333pt;}
.h2_c00027{height:46.518078pt;}
.h0_c00027{height:1122.520000pt;}
.h1_c00027{height:1122.666667pt;}
.w0_c00027{width:793.706667pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49f97f311d4241850fbb0e51.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:0.893555;font-style:normal;font-weight:normal;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_17ef7974090463e28d52b69c.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.102051;font-style:normal;font-weight:normal;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_81936dce602a7571c648c3b3.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.083496;font-style:normal;font-weight:normal;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_70a27082ba84147e1fe8668f.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.048828;font-style: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;}
.ls3_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.087998px;}
.ls2_c00028{letter-spacing:0.098482px;}
.ls1_c00028{letter-spacing:0.104482px;}
.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:-37.329373px;}
.ws6_c00028{word-spacing:-33.713438px;}
.ws0_c00028{word-spacing:-30.993750px;}
.wsd_c00028{word-spacing:-26.575517px;}
.wsc_c00028{word-spacing:-26.487518px;}
.ws8_c00028{word-spacing:-21.937645px;}
.ws7_c00028{word-spacing:-21.933896px;}
.ws4_c00028{word-spacing:-21.605377px;}
.wsb_c00028{word-spacing:-21.280114px;}
.ws9_c00028{word-spacing:-21.220338px;}
.ws3_c00028{word-spacing:-18.769538px;}
.ws14_c00028{word-spacing:-16.856719px;}
.ws2_c00028{word-spacing:-16.498066px;}
.wsa_c00028{word-spacing:-14.004466px;}
.ws13_c00028{word-spacing:-11.582134px;}
.ws5_c00028{word-spacing:-10.102076px;}
.ws16_c00028{word-spacing:-3.079944px;}
.ws11_c00028{word-spacing:0.000000px;}
.wse_c00028{word-spacing:0.043999px;}
.ws12_c00028{word-spacing:0.175997px;}
.ws10_c00028{word-spacing:0.218897px;}
.wsf_c00028{word-spacing:0.219446px;}
.ws15_c00028{word-spacing:3.475937px;}
.ws18_c00028{word-spacing:8.227850px;}
.ws17_c00028{word-spacing:9.415829px;}
._0_c00028{margin-left:-13.533757px;}
._4_c00028{margin-left:-7.833025px;}
._5_c00028{margin-left:-3.863196px;}
._2_c00028{margin-left:-1.255288px;}
._7_c00028{width:1.005737px;}
._6_c00028{width:18.815256px;}
._9_c00028{width:23.803885px;}
._1_c00028{width:26.600142px;}
._8_c00028{width:29.886300px;}
._a_c00028{width:72.774677px;}
._3_c00028{width:86.077200px;}
.fc6_c00028{color:rgb(0,0,207);}
.fc5_c00028{color:rgb(143,89,3);}
.fc4_c00028{color:rgb(79,153,5);}
.fc2_c00028{color:rgb(33,74,135);}
.fc3_c00028{color:rgb(207,92,0);}
.fc1_c00028{color:rgb(6,69,173);}
.fc0_c00028{color:rgb(0,0,0);}
.fs4_c00028{font-size:43.999200px;}
.fs2_c00028{font-size:59.775600px;}
.fs3_c00028{font-size:86.077200px;}
.fs0_c00028{font-size:123.975000px;}
.fs1_c00028{font-size:148.722600px;}
.y0_c00028{bottom:0.000000px;}
.y24_c00028{bottom:44.250000px;}
.y23_c00028{bottom:82.051500px;}
.y22_c00028{bottom:99.984000px;}
.y21_c00028{bottom:117.916500px;}
.y20_c00028{bottom:135.849000px;}
.y1f_c00028{bottom:153.781500px;}
.y1e_c00028{bottom:195.390000px;}
.y1d_c00028{bottom:211.828500px;}
.y1c_c00028{bottom:228.267000px;}
.y1b_c00028{bottom:244.705500px;}
.y1a_c00028{bottom:261.144000px;}
.y19_c00028{bottom:277.581000px;}
.y18_c00028{bottom:294.019500px;}
.y17_c00028{bottom:310.458000px;}
.y16_c00028{bottom:342.961500px;}
.y15_c00028{bottom:390.205500px;}
.y14_c00028{bottom:431.086500px;}
.y13_c00028{bottom:472.695000px;}
.y12_c00028{bottom:489.133500px;}
.y11_c00028{bottom:505.572000px;}
.y10_c00028{bottom:522.009000px;}
.yf_c00028{bottom:538.447500px;}
.ye_c00028{bottom:554.886000px;}
.yd_c00028{bottom:571.324500px;}
.yc_c00028{bottom:587.763000px;}
.yb_c00028{bottom:620.266500px;}
.ya_c00028{bottom:667.510500px;}
.y9_c00028{bottom:685.443000px;}
.y8_c00028{bottom:712.182000px;}
.y7_c00028{bottom:730.114500px;}
.y6_c00028{bottom:748.047000px;}
.y5_c00028{bottom:790.159500px;}
.y4_c00028{bottom:849.114000px;}
.y3_c00028{bottom:867.048000px;}
.y2_c00028{bottom:955.452000px;}
.y1_c00028{bottom:1038.976500px;}
.h6_c00028{height:36.007158px;}
.h4_c00028{height:52.332837px;}
.h5_c00028{height:58.337477px;}
.h2_c00028{height:84.022119px;}
.h3_c00028{height:100.794418px;}
.h0_c00028{height:1262.835000px;}
.h1_c00028{height:1263.000000px;}
.w0_c00028{width:892.920000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:127.558500px;}
.x2_c00028{left:137.122500px;}
.x4_c00028{left:146.239500px;}
.x3_c00028{left:150.417000px;}
.x5_c00028{left:438.984000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls3_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.078221pt;}
.ls2_c00028{letter-spacing:0.087539pt;}
.ls1_c00028{letter-spacing:0.092873pt;}
.ws1_c00028{word-spacing:-33.181665pt;}
.ws6_c00028{word-spacing:-29.967501pt;}
.ws0_c00028{word-spacing:-27.550000pt;}
.wsd_c00028{word-spacing:-23.622682pt;}
.wsc_c00028{word-spacing:-23.544461pt;}
.ws8_c00028{word-spacing:-19.500129pt;}
.ws7_c00028{word-spacing:-19.496797pt;}
.ws4_c00028{word-spacing:-19.204780pt;}
.wsb_c00028{word-spacing:-18.915657pt;}
.ws9_c00028{word-spacing:-18.862523pt;}
.ws3_c00028{word-spacing:-16.684034pt;}
.ws14_c00028{word-spacing:-14.983750pt;}
.ws2_c00028{word-spacing:-14.664947pt;}
.wsa_c00028{word-spacing:-12.448414pt;}
.ws13_c00028{word-spacing:-10.295230pt;}
.ws5_c00028{word-spacing:-8.979623pt;}
.ws16_c00028{word-spacing:-2.737728pt;}
.ws11_c00028{word-spacing:0.000000pt;}
.wse_c00028{word-spacing:0.039110pt;}
.ws12_c00028{word-spacing:0.156442pt;}
.ws10_c00028{word-spacing:0.194575pt;}
.wsf_c00028{word-spacing:0.195063pt;}
.ws15_c00028{word-spacing:3.089722pt;}
.ws18_c00028{word-spacing:7.313645pt;}
.ws17_c00028{word-spacing:8.369626pt;}
._0_c00028{margin-left:-12.030006pt;}
._4_c00028{margin-left:-6.962689pt;}
._5_c00028{margin-left:-3.433952pt;}
._2_c00028{margin-left:-1.115811pt;}
._7_c00028{width:0.893988pt;}
._6_c00028{width:16.724672pt;}
._9_c00028{width:21.159009pt;}
._1_c00028{width:23.644571pt;}
._8_c00028{width:26.565600pt;}
._a_c00028{width:64.688602pt;}
._3_c00028{width:76.513067pt;}
.fs4_c00028{font-size:39.110400pt;}
.fs2_c00028{font-size:53.133867pt;}
.fs3_c00028{font-size:76.513067pt;}
.fs0_c00028{font-size:110.200000pt;}
.fs1_c00028{font-size:132.197867pt;}
.y0_c00028{bottom:0.000000pt;}
.y24_c00028{bottom:39.333333pt;}
.y23_c00028{bottom:72.934667pt;}
.y22_c00028{bottom:88.874667pt;}
.y21_c00028{bottom:104.814667pt;}
.y20_c00028{bottom:120.754667pt;}
.y1f_c00028{bottom:136.694667pt;}
.y1e_c00028{bottom:173.680000pt;}
.y1d_c00028{bottom:188.292000pt;}
.y1c_c00028{bottom:202.904000pt;}
.y1b_c00028{bottom:217.516000pt;}
.y1a_c00028{bottom:232.128000pt;}
.y19_c00028{bottom:246.738667pt;}
.y18_c00028{bottom:261.350667pt;}
.y17_c00028{bottom:275.962667pt;}
.y16_c00028{bottom:304.854667pt;}
.y15_c00028{bottom:346.849333pt;}
.y14_c00028{bottom:383.188000pt;}
.y13_c00028{bottom:420.173333pt;}
.y12_c00028{bottom:434.785333pt;}
.y11_c00028{bottom:449.397333pt;}
.y10_c00028{bottom:464.008000pt;}
.yf_c00028{bottom:478.620000pt;}
.ye_c00028{bottom:493.232000pt;}
.yd_c00028{bottom:507.844000pt;}
.yc_c00028{bottom:522.456000pt;}
.yb_c00028{bottom:551.348000pt;}
.ya_c00028{bottom:593.342667pt;}
.y9_c00028{bottom:609.282667pt;}
.y8_c00028{bottom:633.050667pt;}
.y7_c00028{bottom:648.990667pt;}
.y6_c00028{bottom:664.930667pt;}
.y5_c00028{bottom:702.364000pt;}
.y4_c00028{bottom:754.768000pt;}
.y3_c00028{bottom:770.709333pt;}
.y2_c00028{bottom:849.290667pt;}
.y1_c00028{bottom:923.534667pt;}
.h6_c00028{height:32.006363pt;}
.h4_c00028{height:46.518078pt;}
.h5_c00028{height:51.855535pt;}
.h2_c00028{height:74.686328pt;}
.h3_c00028{height:89.595039pt;}
.h0_c00028{height:1122.520000pt;}
.h1_c00028{height:1122.666667pt;}
.w0_c00028{width:793.706667pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:113.385333pt;}
.x2_c00028{left:121.886667pt;}
.x4_c00028{left:129.990667pt;}
.x3_c00028{left:133.704000pt;}
.x5_c00028{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7487f609c7a33fc6a91c8e6.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.102051;font-style:normal;font-weight:normal;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_7faea117e87f01cf4c89e7d9.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.048828;font-style:normal;font-weight:normal;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_a4da73575fa6ddeaa14e654b.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:1.083496;font-style:normal;font-weight:normal;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_ae8bbfd812455f3a23cdb314.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:0.893555;font-style: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.000000px;}
.ls1_c00029{letter-spacing:0.087998px;}
.ls2_c00029{letter-spacing:0.098482px;}
.ls0_c00029{letter-spacing:0.104482px;}
.ls4_c00029{letter-spacing:15.044482px;}
.ls3_c00029{letter-spacing:26.690482px;}
.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;}
}
.ws14_c00029{word-spacing:-33.713438px;}
.ws5_c00029{word-spacing:-26.575517px;}
.ws4_c00029{word-spacing:-26.487518px;}
.ws1c_c00029{word-spacing:-22.953830px;}
.ws16_c00029{word-spacing:-21.937645px;}
.ws15_c00029{word-spacing:-21.933896px;}
.ws12_c00029{word-spacing:-21.519300px;}
.ws19_c00029{word-spacing:-21.280114px;}
.ws17_c00029{word-spacing:-21.220338px;}
.ws11_c00029{word-spacing:-20.144377px;}
.ws1_c00029{word-spacing:-18.769538px;}
.wsc_c00029{word-spacing:-16.856719px;}
.ws0_c00029{word-spacing:-15.183002px;}
.ws2_c00029{word-spacing:-14.226593px;}
.ws1b_c00029{word-spacing:-14.047266px;}
.ws18_c00029{word-spacing:-14.004466px;}
.ws3_c00029{word-spacing:-12.373549px;}
.ws13_c00029{word-spacing:-10.819384px;}
.wse_c00029{word-spacing:-3.079944px;}
.ws8_c00029{word-spacing:0.000000px;}
.ws6_c00029{word-spacing:0.043999px;}
.wsa_c00029{word-spacing:0.086568px;}
.ws9_c00029{word-spacing:0.120084px;}
.wsb_c00029{word-spacing:0.175997px;}
.ws1a_c00029{word-spacing:0.218897px;}
.ws7_c00029{word-spacing:0.219446px;}
.wsd_c00029{word-spacing:3.475937px;}
.ws10_c00029{word-spacing:8.227850px;}
.wsf_c00029{word-spacing:9.415829px;}
._2_c00029{margin-left:-3.287658px;}
._1_c00029{margin-left:-1.069721px;}
._3_c00029{width:1.005737px;}
._7_c00029{width:18.815256px;}
._8_c00029{width:20.861684px;}
._4_c00029{width:23.803885px;}
._0_c00029{width:29.886300px;}
._9_c00029{width:33.593887px;}
._5_c00029{width:72.774677px;}
._6_c00029{width:86.077200px;}
.fc5_c00029{color:rgb(0,0,207);}
.fc4_c00029{color:rgb(143,89,3);}
.fc3_c00029{color:rgb(79,153,5);}
.fc6_c00029{color:rgb(6,69,173);}
.fc2_c00029{color:rgb(207,92,0);}
.fc1_c00029{color:rgb(33,74,135);}
.fc0_c00029{color:rgb(0,0,0);}
.fs1_c00029{font-size:43.999200px;}
.fs0_c00029{font-size:59.775600px;}
.fs2_c00029{font-size:86.077200px;}
.y0_c00029{bottom:0.000000px;}
.y2f_c00029{bottom:44.250000px;}
.y2e_c00029{bottom:98.115000px;}
.y2d_c00029{bottom:145.626000px;}
.y2c_c00029{bottom:163.558500px;}
.y2b_c00029{bottom:181.492500px;}
.y2a_c00029{bottom:223.144500px;}
.y29_c00029{bottom:239.583000px;}
.y28_c00029{bottom:256.021500px;}
.y27_c00029{bottom:272.460000px;}
.y26_c00029{bottom:288.897000px;}
.y25_c00029{bottom:305.335500px;}
.y24_c00029{bottom:337.839000px;}
.y23_c00029{bottom:385.350000px;}
.y22_c00029{bottom:403.282500px;}
.y21_c00029{bottom:430.066500px;}
.y20_c00029{bottom:447.999000px;}
.y1f_c00029{bottom:465.931500px;}
.y1e_c00029{bottom:508.087500px;}
.y1d_c00029{bottom:567.127500px;}
.y1c_c00029{bottom:585.060000px;}
.y1b_c00029{bottom:611.842500px;}
.y1a_c00029{bottom:629.775000px;}
.y19_c00029{bottom:647.709000px;}
.y18_c00029{bottom:665.641500px;}
.y17_c00029{bottom:683.574000px;}
.y16_c00029{bottom:725.226000px;}
.y15_c00029{bottom:741.664500px;}
.y14_c00029{bottom:758.103000px;}
.y13_c00029{bottom:774.541500px;}
.y12_c00029{bottom:790.980000px;}
.y11_c00029{bottom:807.418500px;}
.y10_c00029{bottom:823.857000px;}
.yf_c00029{bottom:840.295500px;}
.ye_c00029{bottom:856.734000px;}
.yd_c00029{bottom:873.171000px;}
.yc_c00029{bottom:889.609500px;}
.yb_c00029{bottom:906.048000px;}
.ya_c00029{bottom:922.486500px;}
.y9_c00029{bottom:954.990000px;}
.y8_c00029{bottom:1002.501000px;}
.y7_c00029{bottom:1020.433500px;}
.y6_c00029{bottom:1044.111000px;}
.y5_c00029{bottom:1062.045000px;}
.y4_c00029{bottom:1085.722500px;}
.y3_c00029{bottom:1109.401500px;}
.y2_c00029{bottom:1141.930500px;}
.y1_c00029{bottom:1159.863000px;}
.h3_c00029{height:36.007158px;}
.h2_c00029{height:52.332837px;}
.h4_c00029{height:58.337477px;}
.h0_c00029{height:1262.835000px;}
.h1_c00029{height:1263.000000px;}
.w0_c00029{width:892.920000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
.x8_c00029{left:127.558500px;}
.x5_c00029{left:137.122500px;}
.x1_c00029{left:146.239500px;}
.x6_c00029{left:150.417000px;}
.x2_c00029{left:164.919000px;}
.x3_c00029{left:185.092500px;}
.x4_c00029{left:197.796000px;}
.x7_c00029{left:296.658000px;}
.x9_c00029{left:438.984000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls5_c00029{letter-spacing:0.000000pt;}
.ls1_c00029{letter-spacing:0.078221pt;}
.ls2_c00029{letter-spacing:0.087539pt;}
.ls0_c00029{letter-spacing:0.092873pt;}
.ls4_c00029{letter-spacing:13.372873pt;}
.ls3_c00029{letter-spacing:23.724873pt;}
.ws14_c00029{word-spacing:-29.967501pt;}
.ws5_c00029{word-spacing:-23.622682pt;}
.ws4_c00029{word-spacing:-23.544461pt;}
.ws1c_c00029{word-spacing:-20.403405pt;}
.ws16_c00029{word-spacing:-19.500129pt;}
.ws15_c00029{word-spacing:-19.496797pt;}
.ws12_c00029{word-spacing:-19.128267pt;}
.ws19_c00029{word-spacing:-18.915657pt;}
.ws17_c00029{word-spacing:-18.862523pt;}
.ws11_c00029{word-spacing:-17.906113pt;}
.ws1_c00029{word-spacing:-16.684034pt;}
.wsc_c00029{word-spacing:-14.983750pt;}
.ws0_c00029{word-spacing:-13.496002pt;}
.ws2_c00029{word-spacing:-12.645860pt;}
.ws1b_c00029{word-spacing:-12.486459pt;}
.ws18_c00029{word-spacing:-12.448414pt;}
.ws3_c00029{word-spacing:-10.998710pt;}
.ws13_c00029{word-spacing:-9.617230pt;}
.wse_c00029{word-spacing:-2.737728pt;}
.ws8_c00029{word-spacing:0.000000pt;}
.ws6_c00029{word-spacing:0.039110pt;}
.wsa_c00029{word-spacing:0.076949pt;}
.ws9_c00029{word-spacing:0.106741pt;}
.wsb_c00029{word-spacing:0.156442pt;}
.ws1a_c00029{word-spacing:0.194575pt;}
.ws7_c00029{word-spacing:0.195063pt;}
.wsd_c00029{word-spacing:3.089722pt;}
.ws10_c00029{word-spacing:7.313645pt;}
.wsf_c00029{word-spacing:8.369626pt;}
._2_c00029{margin-left:-2.922363pt;}
._1_c00029{margin-left:-0.950863pt;}
._3_c00029{width:0.893988pt;}
._7_c00029{width:16.724672pt;}
._8_c00029{width:18.543719pt;}
._4_c00029{width:21.159009pt;}
._0_c00029{width:26.565600pt;}
._9_c00029{width:29.861233pt;}
._5_c00029{width:64.688602pt;}
._6_c00029{width:76.513067pt;}
.fs1_c00029{font-size:39.110400pt;}
.fs0_c00029{font-size:53.133867pt;}
.fs2_c00029{font-size:76.513067pt;}
.y0_c00029{bottom:0.000000pt;}
.y2f_c00029{bottom:39.333333pt;}
.y2e_c00029{bottom:87.213333pt;}
.y2d_c00029{bottom:129.445333pt;}
.y2c_c00029{bottom:145.385333pt;}
.y2b_c00029{bottom:161.326667pt;}
.y2a_c00029{bottom:198.350667pt;}
.y29_c00029{bottom:212.962667pt;}
.y28_c00029{bottom:227.574667pt;}
.y27_c00029{bottom:242.186667pt;}
.y26_c00029{bottom:256.797333pt;}
.y25_c00029{bottom:271.409333pt;}
.y24_c00029{bottom:300.301333pt;}
.y23_c00029{bottom:342.533333pt;}
.y22_c00029{bottom:358.473333pt;}
.y21_c00029{bottom:382.281333pt;}
.y20_c00029{bottom:398.221333pt;}
.y1f_c00029{bottom:414.161333pt;}
.y1e_c00029{bottom:451.633333pt;}
.y1d_c00029{bottom:504.113333pt;}
.y1c_c00029{bottom:520.053333pt;}
.y1b_c00029{bottom:543.860000pt;}
.y1a_c00029{bottom:559.800000pt;}
.y19_c00029{bottom:575.741333pt;}
.y18_c00029{bottom:591.681333pt;}
.y17_c00029{bottom:607.621333pt;}
.y16_c00029{bottom:644.645333pt;}
.y15_c00029{bottom:659.257333pt;}
.y14_c00029{bottom:673.869333pt;}
.y13_c00029{bottom:688.481333pt;}
.y12_c00029{bottom:703.093333pt;}
.y11_c00029{bottom:717.705333pt;}
.y10_c00029{bottom:732.317333pt;}
.yf_c00029{bottom:746.929333pt;}
.ye_c00029{bottom:761.541333pt;}
.yd_c00029{bottom:776.152000pt;}
.yc_c00029{bottom:790.764000pt;}
.yb_c00029{bottom:805.376000pt;}
.ya_c00029{bottom:819.988000pt;}
.y9_c00029{bottom:848.880000pt;}
.y8_c00029{bottom:891.112000pt;}
.y7_c00029{bottom:907.052000pt;}
.y6_c00029{bottom:928.098667pt;}
.y5_c00029{bottom:944.040000pt;}
.y4_c00029{bottom:965.086667pt;}
.y3_c00029{bottom:986.134667pt;}
.y2_c00029{bottom:1015.049333pt;}
.y1_c00029{bottom:1030.989333pt;}
.h3_c00029{height:32.006363pt;}
.h2_c00029{height:46.518078pt;}
.h4_c00029{height:51.855535pt;}
.h0_c00029{height:1122.520000pt;}
.h1_c00029{height:1122.666667pt;}
.w0_c00029{width:793.706667pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{left:0.000000pt;}
.x8_c00029{left:113.385333pt;}
.x5_c00029{left:121.886667pt;}
.x1_c00029{left:129.990667pt;}
.x6_c00029{left:133.704000pt;}
.x2_c00029{left:146.594667pt;}
.x3_c00029{left:164.526667pt;}
.x4_c00029{left:175.818667pt;}
.x7_c00029{left:263.696000pt;}
.x9_c00029{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf101ed195b058935aa7d076.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.048828;font-style:normal;font-weight:normal;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_21648167814267ce58783a0c.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_de85e9d7c64f14bb6956af78.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls3_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:0.087998px;}
.ls1_c00030{letter-spacing:0.098482px;}
.ls2_c00030{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00030{word-spacing:0.000000px;}
.ws1_c00030{word-spacing:0.043999px;}
.fc4_c00030{color:rgb(143,89,3);}
.fc3_c00030{color:rgb(0,0,207);}
.fc2_c00030{color:rgb(79,153,5);}
.fc1_c00030{color:rgb(0,0,0);}
.fc0_c00030{color:rgb(33,74,135);}
.fs0_c00030{font-size:43.999200px;}
.fs1_c00030{font-size:59.775600px;}
.y0_c00030{bottom:0.000000px;}
.y6_c00030{bottom:44.250000px;}
.y5_c00030{bottom:1094.109000px;}
.y4_c00030{bottom:1110.547500px;}
.y3_c00030{bottom:1126.986000px;}
.y2_c00030{bottom:1143.424500px;}
.y1_c00030{bottom:1159.863000px;}
.h2_c00030{height:36.007158px;}
.h3_c00030{height:52.332837px;}
.h0_c00030{height:1262.835000px;}
.h1_c00030{height:1263.000000px;}
.w0_c00030{width:892.920000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:137.122500px;}
.x2_c00030{left:263.421000px;}
.x3_c00030{left:438.984000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls3_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:0.078221pt;}
.ls1_c00030{letter-spacing:0.087539pt;}
.ls2_c00030{letter-spacing:0.092873pt;}
.ws0_c00030{word-spacing:-23.622682pt;}
.ws2_c00030{word-spacing:0.000000pt;}
.ws1_c00030{word-spacing:0.039110pt;}
.fs0_c00030{font-size:39.110400pt;}
.fs1_c00030{font-size:53.133867pt;}
.y0_c00030{bottom:0.000000pt;}
.y6_c00030{bottom:39.333333pt;}
.y5_c00030{bottom:972.541333pt;}
.y4_c00030{bottom:987.153333pt;}
.y3_c00030{bottom:1001.765333pt;}
.y2_c00030{bottom:1016.377333pt;}
.y1_c00030{bottom:1030.989333pt;}
.h2_c00030{height:32.006363pt;}
.h3_c00030{height:46.518078pt;}
.h0_c00030{height:1122.520000pt;}
.h1_c00030{height:1122.666667pt;}
.w0_c00030{width:793.706667pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:121.886667pt;}
.x2_c00030{left:234.152000pt;}
.x3_c00030{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a87b7675d8b7e6cd7a8d706.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:59.775600px;}
.y0_c00031{bottom:0.000000px;}
.y1_c00031{bottom:44.250000px;}
.h2_c00031{height:52.332837px;}
.h0_c00031{height:1262.835000px;}
.h1_c00031{height:1263.000000px;}
.w0_c00031{width:892.920000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:438.984000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fs0_c00031{font-size:53.133867pt;}
.y0_c00031{bottom:0.000000pt;}
.y1_c00031{bottom:39.333333pt;}
.h2_c00031{height:46.518078pt;}
.h0_c00031{height:1122.520000pt;}
.h1_c00031{height:1122.666667pt;}
.w0_c00031{width:793.706667pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce50329a5d573e04f5e4ff8c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:0.893555;font-style:normal;font-weight:normal;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_56ad32a6c96f323c52ee2dc9.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_aea93d8a675d7f546e75337a.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_588fb69b8e05b567acabc1bb.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_b0a278989b3faefeb4c8e823.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.048828;font-style: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;}
.ls4_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.087998px;}
.ls2_c00032{letter-spacing:0.098482px;}
.ls1_c00032{letter-spacing:0.104482px;}
.ls3_c00032{letter-spacing:26.690482px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00032{word-spacing:-37.180650px;}
.ws0_c00032{word-spacing:-30.993750px;}
.wsa_c00032{word-spacing:-26.575517px;}
.wsc_c00032{word-spacing:-26.487518px;}
.ws3_c00032{word-spacing:-21.605377px;}
.ws16_c00032{word-spacing:-21.519300px;}
.ws2_c00032{word-spacing:-18.769538px;}
.ws8_c00032{word-spacing:-17.156438px;}
.ws7_c00032{word-spacing:-17.155597px;}
.ws9_c00032{word-spacing:-16.796944px;}
.ws18_c00032{word-spacing:-16.645822px;}
.ws17_c00032{word-spacing:-16.617617px;}
.ws6_c00032{word-spacing:-16.557841px;}
.ws5_c00032{word-spacing:-14.943900px;}
.ws4_c00032{word-spacing:-13.389734px;}
.wsf_c00032{word-spacing:0.000000px;}
.wse_c00032{word-spacing:0.043999px;}
.ws12_c00032{word-spacing:0.052834px;}
.ws13_c00032{word-spacing:0.063317px;}
.ws14_c00032{word-spacing:0.073800px;}
.ws15_c00032{word-spacing:0.079800px;}
.ws11_c00032{word-spacing:0.080350px;}
.wsb_c00032{word-spacing:0.175997px;}
.wsd_c00032{word-spacing:0.213446px;}
.ws10_c00032{word-spacing:0.219446px;}
._2_c00032{margin-left:-3.098779px;}
._1_c00032{margin-left:-1.463312px;}
._5_c00032{width:1.047451px;}
._3_c00032{width:21.330337px;}
._4_c00032{width:27.437000px;}
._0_c00032{width:86.077200px;}
.fc6_c00032{color:rgb(0,0,207);}
.fc5_c00032{color:rgb(79,153,5);}
.fc3_c00032{color:rgb(33,74,135);}
.fc2_c00032{color:rgb(143,89,3);}
.fc4_c00032{color:rgb(207,92,0);}
.fc1_c00032{color:rgb(6,69,173);}
.fc0_c00032{color:rgb(0,0,0);}
.fs4_c00032{font-size:43.999200px;}
.fs2_c00032{font-size:59.775600px;}
.fs3_c00032{font-size:86.077200px;}
.fs0_c00032{font-size:123.975000px;}
.fs1_c00032{font-size:148.722600px;}
.y0_c00032{bottom:0.000000px;}
.y22_c00032{bottom:44.250000px;}
.y21_c00032{bottom:82.051500px;}
.y20_c00032{bottom:99.984000px;}
.y1f_c00032{bottom:142.216500px;}
.y1e_c00032{bottom:216.270000px;}
.y1d_c00032{bottom:232.708500px;}
.y1c_c00032{bottom:265.584000px;}
.y1b_c00032{bottom:282.022500px;}
.y1a_c00032{bottom:314.899500px;}
.y19_c00032{bottom:331.338000px;}
.y18_c00032{bottom:347.776500px;}
.y17_c00032{bottom:364.215000px;}
.y16_c00032{bottom:380.653500px;}
.y15_c00032{bottom:413.530500px;}
.y14_c00032{bottom:429.967500px;}
.y13_c00032{bottom:446.406000px;}
.y12_c00032{bottom:479.283000px;}
.y11_c00032{bottom:495.721500px;}
.y10_c00032{bottom:528.598500px;}
.yf_c00032{bottom:545.037000px;}
.ye_c00032{bottom:561.475500px;}
.yd_c00032{bottom:577.914000px;}
.yc_c00032{bottom:593.977500px;}
.yb_c00032{bottom:639.745500px;}
.ya_c00032{bottom:666.606000px;}
.y9_c00032{bottom:693.465000px;}
.y8_c00032{bottom:711.397500px;}
.y7_c00032{bottom:729.330000px;}
.y6_c00032{bottom:747.262500px;}
.y5_c00032{bottom:765.196500px;}
.y4_c00032{bottom:807.429000px;}
.y3_c00032{bottom:866.613000px;}
.y2_c00032{bottom:955.210500px;}
.y1_c00032{bottom:1038.856500px;}
.h6_c00032{height:35.190766px;}
.h7_c00032{height:36.007158px;}
.h4_c00032{height:52.332837px;}
.h5_c00032{height:58.337477px;}
.h2_c00032{height:84.022119px;}
.h3_c00032{height:100.794418px;}
.h0_c00032{height:1262.835000px;}
.h1_c00032{height:1263.000000px;}
.w0_c00032{width:892.920000px;}
.w1_c00032{width:893.250000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:127.558500px;}
.x2_c00032{left:137.122500px;}
.x3_c00032{left:438.984000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls4_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.078221pt;}
.ls2_c00032{letter-spacing:0.087539pt;}
.ls1_c00032{letter-spacing:0.092873pt;}
.ls3_c00032{letter-spacing:23.724873pt;}
.ws1_c00032{word-spacing:-33.049467pt;}
.ws0_c00032{word-spacing:-27.550000pt;}
.wsa_c00032{word-spacing:-23.622682pt;}
.wsc_c00032{word-spacing:-23.544461pt;}
.ws3_c00032{word-spacing:-19.204780pt;}
.ws16_c00032{word-spacing:-19.128267pt;}
.ws2_c00032{word-spacing:-16.684034pt;}
.ws8_c00032{word-spacing:-15.250167pt;}
.ws7_c00032{word-spacing:-15.249420pt;}
.ws9_c00032{word-spacing:-14.930617pt;}
.ws18_c00032{word-spacing:-14.796286pt;}
.ws17_c00032{word-spacing:-14.771215pt;}
.ws6_c00032{word-spacing:-14.718081pt;}
.ws5_c00032{word-spacing:-13.283467pt;}
.ws4_c00032{word-spacing:-11.901986pt;}
.wsf_c00032{word-spacing:0.000000pt;}
.wse_c00032{word-spacing:0.039110pt;}
.ws12_c00032{word-spacing:0.046963pt;}
.ws13_c00032{word-spacing:0.056282pt;}
.ws14_c00032{word-spacing:0.065600pt;}
.ws15_c00032{word-spacing:0.070933pt;}
.ws11_c00032{word-spacing:0.071422pt;}
.wsb_c00032{word-spacing:0.156442pt;}
.wsd_c00032{word-spacing:0.189730pt;}
.ws10_c00032{word-spacing:0.195063pt;}
._2_c00032{margin-left:-2.754470pt;}
._1_c00032{margin-left:-1.300722pt;}
._5_c00032{width:0.931068pt;}
._3_c00032{width:18.960300pt;}
._4_c00032{width:24.388445pt;}
._0_c00032{width:76.513067pt;}
.fs4_c00032{font-size:39.110400pt;}
.fs2_c00032{font-size:53.133867pt;}
.fs3_c00032{font-size:76.513067pt;}
.fs0_c00032{font-size:110.200000pt;}
.fs1_c00032{font-size:132.197867pt;}
.y0_c00032{bottom:0.000000pt;}
.y22_c00032{bottom:39.333333pt;}
.y21_c00032{bottom:72.934667pt;}
.y20_c00032{bottom:88.874667pt;}
.y1f_c00032{bottom:126.414667pt;}
.y1e_c00032{bottom:192.240000pt;}
.y1d_c00032{bottom:206.852000pt;}
.y1c_c00032{bottom:236.074667pt;}
.y1b_c00032{bottom:250.686667pt;}
.y1a_c00032{bottom:279.910667pt;}
.y19_c00032{bottom:294.522667pt;}
.y18_c00032{bottom:309.134667pt;}
.y17_c00032{bottom:323.746667pt;}
.y16_c00032{bottom:338.358667pt;}
.y15_c00032{bottom:367.582667pt;}
.y14_c00032{bottom:382.193333pt;}
.y13_c00032{bottom:396.805333pt;}
.y12_c00032{bottom:426.029333pt;}
.y11_c00032{bottom:440.641333pt;}
.y10_c00032{bottom:469.865333pt;}
.yf_c00032{bottom:484.477333pt;}
.ye_c00032{bottom:499.089333pt;}
.yd_c00032{bottom:513.701333pt;}
.yc_c00032{bottom:527.980000pt;}
.yb_c00032{bottom:568.662667pt;}
.ya_c00032{bottom:592.538667pt;}
.y9_c00032{bottom:616.413333pt;}
.y8_c00032{bottom:632.353333pt;}
.y7_c00032{bottom:648.293333pt;}
.y6_c00032{bottom:664.233333pt;}
.y5_c00032{bottom:680.174667pt;}
.y4_c00032{bottom:717.714667pt;}
.y3_c00032{bottom:770.322667pt;}
.y2_c00032{bottom:849.076000pt;}
.y1_c00032{bottom:923.428000pt;}
.h6_c00032{height:31.280681pt;}
.h7_c00032{height:32.006363pt;}
.h4_c00032{height:46.518078pt;}
.h5_c00032{height:51.855535pt;}
.h2_c00032{height:74.686328pt;}
.h3_c00032{height:89.595039pt;}
.h0_c00032{height:1122.520000pt;}
.h1_c00032{height:1122.666667pt;}
.w0_c00032{width:793.706667pt;}
.w1_c00032{width:794.000000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:113.385333pt;}
.x2_c00032{left:121.886667pt;}
.x3_c00032{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb7fd38d998501e12a4194f8.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.102051;font-style:normal;font-weight:normal;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_4f5318c7edb0a934947bf336.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.083496;font-style:normal;font-weight:normal;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_9f2ea34dea463f499a49f673.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.014648;font-style:normal;font-weight:normal;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_443f0b7c71cdcc43868b88df.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.048828;font-style:normal;font-weight:normal;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_9ab3eca8908bfd8e2b7ce125.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:0.893555;font-style: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;}
.ls4_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.087998px;}
.ls2_c00033{letter-spacing:0.098482px;}
.ls1_c00033{letter-spacing:0.104482px;}
.ls3_c00033{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws6_c00033{word-spacing:-26.487518px;}
.ws2_c00033{word-spacing:-22.654952px;}
.wse_c00033{word-spacing:-21.519300px;}
.ws3_c00033{word-spacing:-20.263928px;}
.ws10_c00033{word-spacing:-18.829314px;}
.ws13_c00033{word-spacing:-18.776455px;}
.ws14_c00033{word-spacing:-18.773405px;}
.ws4_c00033{word-spacing:-18.769538px;}
.ws12_c00033{word-spacing:-15.498462px;}
.ws11_c00033{word-spacing:-15.481880px;}
.ws0_c00033{word-spacing:-10.102076px;}
.wsf_c00033{word-spacing:-5.618906px;}
.ws9_c00033{word-spacing:0.000000px;}
.wsd_c00033{word-spacing:0.037450px;}
.wsc_c00033{word-spacing:0.042900px;}
.ws8_c00033{word-spacing:0.043999px;}
.wsb_c00033{word-spacing:0.080350px;}
.ws15_c00033{word-spacing:0.080899px;}
.ws5_c00033{word-spacing:0.175997px;}
.ws7_c00033{word-spacing:0.213446px;}
.wsa_c00033{word-spacing:0.219446px;}
._5_c00033{margin-left:-3.287658px;}
._6_c00033{margin-left:-1.853044px;}
._3_c00033{width:1.047451px;}
._2_c00033{width:14.519598px;}
._1_c00033{width:19.427070px;}
._0_c00033{width:26.189183px;}
._7_c00033{width:30.067127px;}
._4_c00033{width:86.077200px;}
.fc5_c00033{color:rgb(0,0,207);}
.fc4_c00033{color:rgb(79,153,5);}
.fc6_c00033{color:rgb(6,69,173);}
.fc3_c00033{color:rgb(207,92,0);}
.fc2_c00033{color:rgb(33,74,135);}
.fc1_c00033{color:rgb(143,89,3);}
.fc0_c00033{color:rgb(0,0,0);}
.fs1_c00033{font-size:43.999200px;}
.fs0_c00033{font-size:59.775600px;}
.fs2_c00033{font-size:86.077200px;}
.y0_c00033{bottom:0.000000px;}
.y35_c00033{bottom:44.250000px;}
.y34_c00033{bottom:82.051500px;}
.y33_c00033{bottom:98.490000px;}
.y32_c00033{bottom:114.927000px;}
.y31_c00033{bottom:131.365500px;}
.y30_c00033{bottom:147.804000px;}
.y2f_c00033{bottom:164.242500px;}
.y2e_c00033{bottom:197.119500px;}
.y2d_c00033{bottom:213.558000px;}
.y2c_c00033{bottom:229.996500px;}
.y2b_c00033{bottom:246.435000px;}
.y2a_c00033{bottom:262.498500px;}
.y29_c00033{bottom:308.628000px;}
.y28_c00033{bottom:326.560500px;}
.y27_c00033{bottom:353.119500px;}
.y26_c00033{bottom:371.052000px;}
.y25_c00033{bottom:388.984500px;}
.y24_c00033{bottom:430.915500px;}
.y23_c00033{bottom:504.397500px;}
.y22_c00033{bottom:520.834500px;}
.y21_c00033{bottom:537.273000px;}
.y20_c00033{bottom:553.711500px;}
.y1f_c00033{bottom:570.150000px;}
.y1e_c00033{bottom:603.027000px;}
.y1d_c00033{bottom:619.465500px;}
.y1c_c00033{bottom:635.904000px;}
.y1b_c00033{bottom:668.781000px;}
.y1a_c00033{bottom:685.218000px;}
.y19_c00033{bottom:701.656500px;}
.y18_c00033{bottom:718.095000px;}
.y17_c00033{bottom:734.533500px;}
.y16_c00033{bottom:750.972000px;}
.y15_c00033{bottom:767.410500px;}
.y14_c00033{bottom:783.849000px;}
.y13_c00033{bottom:800.287500px;}
.y12_c00033{bottom:816.726000px;}
.y11_c00033{bottom:849.603000px;}
.y10_c00033{bottom:866.040000px;}
.yf_c00033{bottom:882.478500px;}
.ye_c00033{bottom:898.917000px;}
.yd_c00033{bottom:915.355500px;}
.yc_c00033{bottom:931.794000px;}
.yb_c00033{bottom:948.232500px;}
.ya_c00033{bottom:964.671000px;}
.y9_c00033{bottom:997.548000px;}
.y8_c00033{bottom:1013.986500px;}
.y7_c00033{bottom:1030.423500px;}
.y6_c00033{bottom:1046.862000px;}
.y5_c00033{bottom:1062.927000px;}
.y4_c00033{bottom:1106.064000px;}
.y3_c00033{bottom:1123.998000px;}
.y2_c00033{bottom:1141.930500px;}
.y1_c00033{bottom:1159.863000px;}
.h3_c00033{height:35.190766px;}
.h4_c00033{height:36.007158px;}
.h2_c00033{height:52.332837px;}
.h5_c00033{height:58.337477px;}
.h0_c00033{height:1262.835000px;}
.h1_c00033{height:1263.000000px;}
.w0_c00033{width:892.920000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:127.558500px;}
.x2_c00033{left:137.122500px;}
.x3_c00033{left:150.417000px;}
.x4_c00033{left:256.774500px;}
.x5_c00033{left:438.984000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls4_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.078221pt;}
.ls2_c00033{letter-spacing:0.087539pt;}
.ls1_c00033{letter-spacing:0.092873pt;}
.ls3_c00033{letter-spacing:23.724873pt;}
.ws1_c00033{word-spacing:-23.622682pt;}
.ws6_c00033{word-spacing:-23.544461pt;}
.ws2_c00033{word-spacing:-20.137735pt;}
.wse_c00033{word-spacing:-19.128267pt;}
.ws3_c00033{word-spacing:-18.012381pt;}
.ws10_c00033{word-spacing:-16.737168pt;}
.ws13_c00033{word-spacing:-16.690182pt;}
.ws14_c00033{word-spacing:-16.687471pt;}
.ws4_c00033{word-spacing:-16.684034pt;}
.ws12_c00033{word-spacing:-13.776411pt;}
.ws11_c00033{word-spacing:-13.761671pt;}
.ws0_c00033{word-spacing:-8.979623pt;}
.wsf_c00033{word-spacing:-4.994583pt;}
.ws9_c00033{word-spacing:0.000000pt;}
.wsd_c00033{word-spacing:0.033289pt;}
.wsc_c00033{word-spacing:0.038133pt;}
.ws8_c00033{word-spacing:0.039110pt;}
.wsb_c00033{word-spacing:0.071422pt;}
.ws15_c00033{word-spacing:0.071910pt;}
.ws5_c00033{word-spacing:0.156442pt;}
.ws7_c00033{word-spacing:0.189730pt;}
.wsa_c00033{word-spacing:0.195063pt;}
._5_c00033{margin-left:-2.922363pt;}
._6_c00033{margin-left:-1.647150pt;}
._3_c00033{width:0.931068pt;}
._2_c00033{width:12.906309pt;}
._1_c00033{width:17.268507pt;}
._0_c00033{width:23.279274pt;}
._7_c00033{width:26.726335pt;}
._4_c00033{width:76.513067pt;}
.fs1_c00033{font-size:39.110400pt;}
.fs0_c00033{font-size:53.133867pt;}
.fs2_c00033{font-size:76.513067pt;}
.y0_c00033{bottom:0.000000pt;}
.y35_c00033{bottom:39.333333pt;}
.y34_c00033{bottom:72.934667pt;}
.y33_c00033{bottom:87.546667pt;}
.y32_c00033{bottom:102.157333pt;}
.y31_c00033{bottom:116.769333pt;}
.y30_c00033{bottom:131.381333pt;}
.y2f_c00033{bottom:145.993333pt;}
.y2e_c00033{bottom:175.217333pt;}
.y2d_c00033{bottom:189.829333pt;}
.y2c_c00033{bottom:204.441333pt;}
.y2b_c00033{bottom:219.053333pt;}
.y2a_c00033{bottom:233.332000pt;}
.y29_c00033{bottom:274.336000pt;}
.y28_c00033{bottom:290.276000pt;}
.y27_c00033{bottom:313.884000pt;}
.y26_c00033{bottom:329.824000pt;}
.y25_c00033{bottom:345.764000pt;}
.y24_c00033{bottom:383.036000pt;}
.y23_c00033{bottom:448.353333pt;}
.y22_c00033{bottom:462.964000pt;}
.y21_c00033{bottom:477.576000pt;}
.y20_c00033{bottom:492.188000pt;}
.y1f_c00033{bottom:506.800000pt;}
.y1e_c00033{bottom:536.024000pt;}
.y1d_c00033{bottom:550.636000pt;}
.y1c_c00033{bottom:565.248000pt;}
.y1b_c00033{bottom:594.472000pt;}
.y1a_c00033{bottom:609.082667pt;}
.y19_c00033{bottom:623.694667pt;}
.y18_c00033{bottom:638.306667pt;}
.y17_c00033{bottom:652.918667pt;}
.y16_c00033{bottom:667.530667pt;}
.y15_c00033{bottom:682.142667pt;}
.y14_c00033{bottom:696.754667pt;}
.y13_c00033{bottom:711.366667pt;}
.y12_c00033{bottom:725.978667pt;}
.y11_c00033{bottom:755.202667pt;}
.y10_c00033{bottom:769.813333pt;}
.yf_c00033{bottom:784.425333pt;}
.ye_c00033{bottom:799.037333pt;}
.yd_c00033{bottom:813.649333pt;}
.yc_c00033{bottom:828.261333pt;}
.yb_c00033{bottom:842.873333pt;}
.ya_c00033{bottom:857.485333pt;}
.y9_c00033{bottom:886.709333pt;}
.y8_c00033{bottom:901.321333pt;}
.y7_c00033{bottom:915.932000pt;}
.y6_c00033{bottom:930.544000pt;}
.y5_c00033{bottom:944.824000pt;}
.y4_c00033{bottom:983.168000pt;}
.y3_c00033{bottom:999.109333pt;}
.y2_c00033{bottom:1015.049333pt;}
.y1_c00033{bottom:1030.989333pt;}
.h3_c00033{height:31.280681pt;}
.h4_c00033{height:32.006363pt;}
.h2_c00033{height:46.518078pt;}
.h5_c00033{height:51.855535pt;}
.h0_c00033{height:1122.520000pt;}
.h1_c00033{height:1122.666667pt;}
.w0_c00033{width:793.706667pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:113.385333pt;}
.x2_c00033{left:121.886667pt;}
.x3_c00033{left:133.704000pt;}
.x4_c00033{left:228.244000pt;}
.x5_c00033{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_365cd09ebbcca76dc2a5f8fd.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.083496;font-style:normal;font-weight:normal;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_4c32ccdf91dcc8c1f2c8170a.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.048828;font-style:normal;font-weight:normal;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_fa6db0389dbf541d2d80f599.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.014648;font-style:normal;font-weight:normal;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_cf7364bebfcd5f038cbb7870.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls4_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.087998px;}
.ls2_c00034{letter-spacing:0.098482px;}
.ls1_c00034{letter-spacing:0.104482px;}
.ls3_c00034{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00034{word-spacing:-26.575517px;}
.wsc_c00034{word-spacing:-26.487518px;}
.ws5_c00034{word-spacing:0.000000px;}
.ws8_c00034{word-spacing:0.043999px;}
.wsb_c00034{word-spacing:0.053933px;}
.wsa_c00034{word-spacing:0.056767px;}
.ws9_c00034{word-spacing:0.062767px;}
.ws3_c00034{word-spacing:0.063317px;}
.ws0_c00034{word-spacing:0.069866px;}
.ws7_c00034{word-spacing:0.080899px;}
.wsd_c00034{word-spacing:0.083184px;}
.wse_c00034{word-spacing:0.090283px;}
.ws6_c00034{word-spacing:0.175997px;}
.ws1_c00034{word-spacing:0.213446px;}
.ws4_c00034{word-spacing:0.219446px;}
._0_c00034{width:1.055981px;}
.fc5_c00034{color:rgb(0,0,207);}
.fc4_c00034{color:rgb(79,153,5);}
.fc3_c00034{color:rgb(207,92,0);}
.fc2_c00034{color:rgb(33,74,135);}
.fc1_c00034{color:rgb(143,89,3);}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:43.999200px;}
.fs1_c00034{font-size:59.775600px;}
.y0_c00034{bottom:0.000000px;}
.y31_c00034{bottom:44.250000px;}
.y30_c00034{bottom:91.369500px;}
.y2f_c00034{bottom:124.246500px;}
.y2e_c00034{bottom:140.685000px;}
.y2d_c00034{bottom:157.123500px;}
.y2c_c00034{bottom:173.562000px;}
.y2b_c00034{bottom:190.000500px;}
.y2a_c00034{bottom:206.437500px;}
.y29_c00034{bottom:255.753000px;}
.y28_c00034{bottom:321.507000px;}
.y27_c00034{bottom:337.945500px;}
.y26_c00034{bottom:354.384000px;}
.y25_c00034{bottom:370.822500px;}
.y24_c00034{bottom:387.259500px;}
.y23_c00034{bottom:420.136500px;}
.y22_c00034{bottom:453.013500px;}
.y21_c00034{bottom:485.890500px;}
.y20_c00034{bottom:502.329000px;}
.y1f_c00034{bottom:518.767500px;}
.y1e_c00034{bottom:551.643000px;}
.y1d_c00034{bottom:568.081500px;}
.y1c_c00034{bottom:584.520000px;}
.y1b_c00034{bottom:600.958500px;}
.y1a_c00034{bottom:617.397000px;}
.y19_c00034{bottom:633.835500px;}
.y18_c00034{bottom:666.712500px;}
.y17_c00034{bottom:699.589500px;}
.y16_c00034{bottom:716.028000px;}
.y15_c00034{bottom:732.465000px;}
.y14_c00034{bottom:748.903500px;}
.y13_c00034{bottom:765.342000px;}
.y12_c00034{bottom:798.219000px;}
.y11_c00034{bottom:831.096000px;}
.y10_c00034{bottom:863.973000px;}
.yf_c00034{bottom:880.411500px;}
.ye_c00034{bottom:896.848500px;}
.yd_c00034{bottom:913.287000px;}
.yc_c00034{bottom:929.725500px;}
.yb_c00034{bottom:946.164000px;}
.ya_c00034{bottom:962.602500px;}
.y9_c00034{bottom:979.041000px;}
.y8_c00034{bottom:995.479500px;}
.y7_c00034{bottom:1028.356500px;}
.y6_c00034{bottom:1077.670500px;}
.y5_c00034{bottom:1094.109000px;}
.y4_c00034{bottom:1110.547500px;}
.y3_c00034{bottom:1126.986000px;}
.y2_c00034{bottom:1143.424500px;}
.y1_c00034{bottom:1159.863000px;}
.h3_c00034{height:35.190766px;}
.h2_c00034{height:36.007158px;}
.h4_c00034{height:52.332837px;}
.h0_c00034{height:1262.835000px;}
.h1_c00034{height:1263.000000px;}
.w0_c00034{width:892.920000px;}
.w1_c00034{width:893.250000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:137.122500px;}
.x4_c00034{left:196.948500px;}
.x3_c00034{left:256.774500px;}
.x2_c00034{left:323.247000px;}
.x5_c00034{left:438.984000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls4_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.078221pt;}
.ls2_c00034{letter-spacing:0.087539pt;}
.ls1_c00034{letter-spacing:0.092873pt;}
.ls3_c00034{letter-spacing:23.724873pt;}
.ws2_c00034{word-spacing:-23.622682pt;}
.wsc_c00034{word-spacing:-23.544461pt;}
.ws5_c00034{word-spacing:0.000000pt;}
.ws8_c00034{word-spacing:0.039110pt;}
.wsb_c00034{word-spacing:0.047940pt;}
.wsa_c00034{word-spacing:0.050460pt;}
.ws9_c00034{word-spacing:0.055793pt;}
.ws3_c00034{word-spacing:0.056282pt;}
.ws0_c00034{word-spacing:0.062103pt;}
.ws7_c00034{word-spacing:0.071910pt;}
.wsd_c00034{word-spacing:0.073941pt;}
.wse_c00034{word-spacing:0.080252pt;}
.ws6_c00034{word-spacing:0.156442pt;}
.ws1_c00034{word-spacing:0.189730pt;}
.ws4_c00034{word-spacing:0.195063pt;}
._0_c00034{width:0.938650pt;}
.fs0_c00034{font-size:39.110400pt;}
.fs1_c00034{font-size:53.133867pt;}
.y0_c00034{bottom:0.000000pt;}
.y31_c00034{bottom:39.333333pt;}
.y30_c00034{bottom:81.217333pt;}
.y2f_c00034{bottom:110.441333pt;}
.y2e_c00034{bottom:125.053333pt;}
.y2d_c00034{bottom:139.665333pt;}
.y2c_c00034{bottom:154.277333pt;}
.y2b_c00034{bottom:168.889333pt;}
.y2a_c00034{bottom:183.500000pt;}
.y29_c00034{bottom:227.336000pt;}
.y28_c00034{bottom:285.784000pt;}
.y27_c00034{bottom:300.396000pt;}
.y26_c00034{bottom:315.008000pt;}
.y25_c00034{bottom:329.620000pt;}
.y24_c00034{bottom:344.230667pt;}
.y23_c00034{bottom:373.454667pt;}
.y22_c00034{bottom:402.678667pt;}
.y21_c00034{bottom:431.902667pt;}
.y20_c00034{bottom:446.514667pt;}
.y1f_c00034{bottom:461.126667pt;}
.y1e_c00034{bottom:490.349333pt;}
.y1d_c00034{bottom:504.961333pt;}
.y1c_c00034{bottom:519.573333pt;}
.y1b_c00034{bottom:534.185333pt;}
.y1a_c00034{bottom:548.797333pt;}
.y19_c00034{bottom:563.409333pt;}
.y18_c00034{bottom:592.633333pt;}
.y17_c00034{bottom:621.857333pt;}
.y16_c00034{bottom:636.469333pt;}
.y15_c00034{bottom:651.080000pt;}
.y14_c00034{bottom:665.692000pt;}
.y13_c00034{bottom:680.304000pt;}
.y12_c00034{bottom:709.528000pt;}
.y11_c00034{bottom:738.752000pt;}
.y10_c00034{bottom:767.976000pt;}
.yf_c00034{bottom:782.588000pt;}
.ye_c00034{bottom:797.198667pt;}
.yd_c00034{bottom:811.810667pt;}
.yc_c00034{bottom:826.422667pt;}
.yb_c00034{bottom:841.034667pt;}
.ya_c00034{bottom:855.646667pt;}
.y9_c00034{bottom:870.258667pt;}
.y8_c00034{bottom:884.870667pt;}
.y7_c00034{bottom:914.094667pt;}
.y6_c00034{bottom:957.929333pt;}
.y5_c00034{bottom:972.541333pt;}
.y4_c00034{bottom:987.153333pt;}
.y3_c00034{bottom:1001.765333pt;}
.y2_c00034{bottom:1016.377333pt;}
.y1_c00034{bottom:1030.989333pt;}
.h3_c00034{height:31.280681pt;}
.h2_c00034{height:32.006363pt;}
.h4_c00034{height:46.518078pt;}
.h0_c00034{height:1122.520000pt;}
.h1_c00034{height:1122.666667pt;}
.w0_c00034{width:793.706667pt;}
.w1_c00034{width:794.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:121.886667pt;}
.x4_c00034{left:175.065333pt;}
.x3_c00034{left:228.244000pt;}
.x2_c00034{left:287.330667pt;}
.x5_c00034{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfbb45d9216cbe1eec5fbd65.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.083496;font-style:normal;font-weight:normal;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_8cb1583314ebcbddd9db2380.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00035;src:url('chunks/assets/font_0ee235fe5f0a8e36bbb56625.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00035;src:url('chunks/assets/font_e1c786ce4d390d270c70adae.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls4_c00035{letter-spacing:0.000000px;}
.ls0_c00035{letter-spacing:0.087998px;}
.ls3_c00035{letter-spacing:0.098482px;}
.ls2_c00035{letter-spacing:0.104482px;}
.ls1_c00035{letter-spacing:26.690482px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00035{word-spacing:-26.575517px;}
.ws3_c00035{word-spacing:-26.487518px;}
.ws4_c00035{word-spacing:0.000000px;}
.ws12_c00035{word-spacing:0.036900px;}
.wsd_c00035{word-spacing:0.042900px;}
.wse_c00035{word-spacing:0.043999px;}
.ws7_c00035{word-spacing:0.052834px;}
.wsa_c00035{word-spacing:0.053383px;}
.ws1_c00035{word-spacing:0.053933px;}
.ws9_c00035{word-spacing:0.063317px;}
.ws11_c00035{word-spacing:0.063866px;}
.wsf_c00035{word-spacing:0.069866px;}
.wsc_c00035{word-spacing:0.073800px;}
.ws13_c00035{word-spacing:0.079800px;}
.ws5_c00035{word-spacing:0.080350px;}
.ws10_c00035{word-spacing:0.080899px;}
.ws0_c00035{word-spacing:0.090283px;}
.wsb_c00035{word-spacing:0.175997px;}
.ws14_c00035{word-spacing:0.212897px;}
.ws8_c00035{word-spacing:0.213446px;}
.ws6_c00035{word-spacing:0.219446px;}
._0_c00035{width:1.012286px;}
.fc5_c00035{color:rgb(79,153,5);}
.fc4_c00035{color:rgb(0,0,207);}
.fc3_c00035{color:rgb(33,74,135);}
.fc2_c00035{color:rgb(207,92,0);}
.fc1_c00035{color:rgb(143,89,3);}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:43.999200px;}
.fs1_c00035{font-size:59.775600px;}
.y0_c00035{bottom:0.000000px;}
.y33_c00035{bottom:44.250000px;}
.y32_c00035{bottom:91.369500px;}
.y31_c00035{bottom:124.246500px;}
.y30_c00035{bottom:157.123500px;}
.y2f_c00035{bottom:173.562000px;}
.y2e_c00035{bottom:190.000500px;}
.y2d_c00035{bottom:222.876000px;}
.y2c_c00035{bottom:239.314500px;}
.y2b_c00035{bottom:255.753000px;}
.y2a_c00035{bottom:272.191500px;}
.y29_c00035{bottom:288.630000px;}
.y28_c00035{bottom:305.068500px;}
.y27_c00035{bottom:321.507000px;}
.y26_c00035{bottom:337.945500px;}
.y25_c00035{bottom:370.822500px;}
.y24_c00035{bottom:387.259500px;}
.y23_c00035{bottom:403.698000px;}
.y22_c00035{bottom:420.136500px;}
.y21_c00035{bottom:453.013500px;}
.y20_c00035{bottom:469.452000px;}
.y1f_c00035{bottom:485.890500px;}
.y1e_c00035{bottom:518.767500px;}
.y1d_c00035{bottom:551.643000px;}
.y1c_c00035{bottom:568.081500px;}
.y1b_c00035{bottom:584.520000px;}
.y1a_c00035{bottom:600.958500px;}
.y19_c00035{bottom:617.397000px;}
.y18_c00035{bottom:633.835500px;}
.y17_c00035{bottom:650.274000px;}
.y16_c00035{bottom:666.712500px;}
.y15_c00035{bottom:683.151000px;}
.y14_c00035{bottom:716.028000px;}
.y13_c00035{bottom:732.465000px;}
.y12_c00035{bottom:765.342000px;}
.y11_c00035{bottom:781.780500px;}
.y10_c00035{bottom:798.219000px;}
.yf_c00035{bottom:814.657500px;}
.ye_c00035{bottom:831.096000px;}
.yd_c00035{bottom:847.534500px;}
.yc_c00035{bottom:863.973000px;}
.yb_c00035{bottom:896.848500px;}
.ya_c00035{bottom:929.725500px;}
.y9_c00035{bottom:979.041000px;}
.y8_c00035{bottom:995.479500px;}
.y7_c00035{bottom:1011.918000px;}
.y6_c00035{bottom:1028.356500px;}
.y5_c00035{bottom:1044.795000px;}
.y4_c00035{bottom:1077.670500px;}
.y3_c00035{bottom:1110.547500px;}
.y2_c00035{bottom:1143.424500px;}
.y1_c00035{bottom:1159.863000px;}
.h3_c00035{height:35.190766px;}
.h2_c00035{height:36.007158px;}
.h4_c00035{height:52.332837px;}
.h0_c00035{height:1262.835000px;}
.h1_c00035{height:1263.000000px;}
.w0_c00035{width:892.920000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:137.122500px;}
.x3_c00035{left:150.417000px;}
.x4_c00035{left:163.713000px;}
.x5_c00035{left:177.007500px;}
.x2_c00035{left:196.948500px;}
.x6_c00035{left:438.984000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls4_c00035{letter-spacing:0.000000pt;}
.ls0_c00035{letter-spacing:0.078221pt;}
.ls3_c00035{letter-spacing:0.087539pt;}
.ls2_c00035{letter-spacing:0.092873pt;}
.ls1_c00035{letter-spacing:23.724873pt;}
.ws2_c00035{word-spacing:-23.622682pt;}
.ws3_c00035{word-spacing:-23.544461pt;}
.ws4_c00035{word-spacing:0.000000pt;}
.ws12_c00035{word-spacing:0.032800pt;}
.wsd_c00035{word-spacing:0.038133pt;}
.wse_c00035{word-spacing:0.039110pt;}
.ws7_c00035{word-spacing:0.046963pt;}
.wsa_c00035{word-spacing:0.047452pt;}
.ws1_c00035{word-spacing:0.047940pt;}
.ws9_c00035{word-spacing:0.056282pt;}
.ws11_c00035{word-spacing:0.056770pt;}
.wsf_c00035{word-spacing:0.062103pt;}
.wsc_c00035{word-spacing:0.065600pt;}
.ws13_c00035{word-spacing:0.070933pt;}
.ws5_c00035{word-spacing:0.071422pt;}
.ws10_c00035{word-spacing:0.071910pt;}
.ws0_c00035{word-spacing:0.080252pt;}
.wsb_c00035{word-spacing:0.156442pt;}
.ws14_c00035{word-spacing:0.189242pt;}
.ws8_c00035{word-spacing:0.189730pt;}
.ws6_c00035{word-spacing:0.195063pt;}
._0_c00035{width:0.899810pt;}
.fs0_c00035{font-size:39.110400pt;}
.fs1_c00035{font-size:53.133867pt;}
.y0_c00035{bottom:0.000000pt;}
.y33_c00035{bottom:39.333333pt;}
.y32_c00035{bottom:81.217333pt;}
.y31_c00035{bottom:110.441333pt;}
.y30_c00035{bottom:139.665333pt;}
.y2f_c00035{bottom:154.277333pt;}
.y2e_c00035{bottom:168.889333pt;}
.y2d_c00035{bottom:198.112000pt;}
.y2c_c00035{bottom:212.724000pt;}
.y2b_c00035{bottom:227.336000pt;}
.y2a_c00035{bottom:241.948000pt;}
.y29_c00035{bottom:256.560000pt;}
.y28_c00035{bottom:271.172000pt;}
.y27_c00035{bottom:285.784000pt;}
.y26_c00035{bottom:300.396000pt;}
.y25_c00035{bottom:329.620000pt;}
.y24_c00035{bottom:344.230667pt;}
.y23_c00035{bottom:358.842667pt;}
.y22_c00035{bottom:373.454667pt;}
.y21_c00035{bottom:402.678667pt;}
.y20_c00035{bottom:417.290667pt;}
.y1f_c00035{bottom:431.902667pt;}
.y1e_c00035{bottom:461.126667pt;}
.y1d_c00035{bottom:490.349333pt;}
.y1c_c00035{bottom:504.961333pt;}
.y1b_c00035{bottom:519.573333pt;}
.y1a_c00035{bottom:534.185333pt;}
.y19_c00035{bottom:548.797333pt;}
.y18_c00035{bottom:563.409333pt;}
.y17_c00035{bottom:578.021333pt;}
.y16_c00035{bottom:592.633333pt;}
.y15_c00035{bottom:607.245333pt;}
.y14_c00035{bottom:636.469333pt;}
.y13_c00035{bottom:651.080000pt;}
.y12_c00035{bottom:680.304000pt;}
.y11_c00035{bottom:694.916000pt;}
.y10_c00035{bottom:709.528000pt;}
.yf_c00035{bottom:724.140000pt;}
.ye_c00035{bottom:738.752000pt;}
.yd_c00035{bottom:753.364000pt;}
.yc_c00035{bottom:767.976000pt;}
.yb_c00035{bottom:797.198667pt;}
.ya_c00035{bottom:826.422667pt;}
.y9_c00035{bottom:870.258667pt;}
.y8_c00035{bottom:884.870667pt;}
.y7_c00035{bottom:899.482667pt;}
.y6_c00035{bottom:914.094667pt;}
.y5_c00035{bottom:928.706667pt;}
.y4_c00035{bottom:957.929333pt;}
.y3_c00035{bottom:987.153333pt;}
.y2_c00035{bottom:1016.377333pt;}
.y1_c00035{bottom:1030.989333pt;}
.h3_c00035{height:31.280681pt;}
.h2_c00035{height:32.006363pt;}
.h4_c00035{height:46.518078pt;}
.h0_c00035{height:1122.520000pt;}
.h1_c00035{height:1122.666667pt;}
.w0_c00035{width:793.706667pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:121.886667pt;}
.x3_c00035{left:133.704000pt;}
.x4_c00035{left:145.522667pt;}
.x5_c00035{left:157.340000pt;}
.x2_c00035{left:175.065333pt;}
.x6_c00035{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b2ddbbc2170bcfaa4c0f2f4.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.083496;font-style:normal;font-weight:normal;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_8c0f94dd548453be8d0937f1.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.048828;font-style:normal;font-weight:normal;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_49cd355527dc5c69be0bf7e3.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.014648;font-style:normal;font-weight:normal;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_9b555904d4c74242a7c79cc7.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls4_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:0.087998px;}
.ls3_c00036{letter-spacing:0.098482px;}
.ls2_c00036{letter-spacing:0.104482px;}
.ls1_c00036{letter-spacing:26.690482px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-26.575517px;}
.ws2_c00036{word-spacing:-26.487518px;}
.ws5_c00036{word-spacing:0.000000px;}
.ws10_c00036{word-spacing:0.042900px;}
.ws4_c00036{word-spacing:0.043999px;}
.wse_c00036{word-spacing:0.052834px;}
.ws9_c00036{word-spacing:0.053383px;}
.wsc_c00036{word-spacing:0.063317px;}
.ws8_c00036{word-spacing:0.069866px;}
.wsf_c00036{word-spacing:0.073800px;}
.ws1_c00036{word-spacing:0.079800px;}
.wsb_c00036{word-spacing:0.080350px;}
.ws6_c00036{word-spacing:0.080899px;}
.wsd_c00036{word-spacing:0.083184px;}
.ws3_c00036{word-spacing:0.175997px;}
.ws7_c00036{word-spacing:0.213446px;}
.wsa_c00036{word-spacing:0.219446px;}
._0_c00036{width:1.121801px;}
.fc5_c00036{color:rgb(0,0,207);}
.fc4_c00036{color:rgb(207,92,0);}
.fc3_c00036{color:rgb(143,89,3);}
.fc2_c00036{color:rgb(0,0,0);}
.fc1_c00036{color:rgb(79,153,5);}
.fc0_c00036{color:rgb(33,74,135);}
.fs0_c00036{font-size:43.999200px;}
.fs1_c00036{font-size:59.775600px;}
.y0_c00036{bottom:0.000000px;}
.y33_c00036{bottom:44.250000px;}
.y32_c00036{bottom:107.808000px;}
.y31_c00036{bottom:124.246500px;}
.y30_c00036{bottom:140.685000px;}
.y2f_c00036{bottom:157.123500px;}
.y2e_c00036{bottom:173.562000px;}
.y2d_c00036{bottom:190.000500px;}
.y2c_c00036{bottom:206.437500px;}
.y2b_c00036{bottom:222.876000px;}
.y2a_c00036{bottom:239.314500px;}
.y29_c00036{bottom:272.191500px;}
.y28_c00036{bottom:288.630000px;}
.y27_c00036{bottom:321.507000px;}
.y26_c00036{bottom:337.945500px;}
.y25_c00036{bottom:354.384000px;}
.y24_c00036{bottom:370.822500px;}
.y23_c00036{bottom:387.259500px;}
.y22_c00036{bottom:403.698000px;}
.y21_c00036{bottom:420.136500px;}
.y20_c00036{bottom:436.575000px;}
.y1f_c00036{bottom:485.890500px;}
.y1e_c00036{bottom:502.329000px;}
.y1d_c00036{bottom:518.767500px;}
.y1c_c00036{bottom:535.206000px;}
.y1b_c00036{bottom:551.643000px;}
.y1a_c00036{bottom:568.081500px;}
.y19_c00036{bottom:584.520000px;}
.y18_c00036{bottom:600.958500px;}
.y17_c00036{bottom:617.397000px;}
.y16_c00036{bottom:633.835500px;}
.y15_c00036{bottom:650.274000px;}
.y14_c00036{bottom:683.151000px;}
.y13_c00036{bottom:699.589500px;}
.y12_c00036{bottom:732.465000px;}
.y11_c00036{bottom:748.903500px;}
.y10_c00036{bottom:765.342000px;}
.yf_c00036{bottom:781.780500px;}
.ye_c00036{bottom:798.219000px;}
.yd_c00036{bottom:814.657500px;}
.yc_c00036{bottom:831.096000px;}
.yb_c00036{bottom:847.534500px;}
.ya_c00036{bottom:880.411500px;}
.y9_c00036{bottom:929.725500px;}
.y8_c00036{bottom:1011.918000px;}
.y7_c00036{bottom:1028.356500px;}
.y6_c00036{bottom:1044.795000px;}
.y5_c00036{bottom:1061.232000px;}
.y4_c00036{bottom:1077.670500px;}
.y3_c00036{bottom:1126.986000px;}
.y2_c00036{bottom:1143.424500px;}
.y1_c00036{bottom:1159.863000px;}
.h3_c00036{height:35.190766px;}
.h2_c00036{height:36.007158px;}
.h4_c00036{height:52.332837px;}
.h0_c00036{height:1262.835000px;}
.h1_c00036{height:1263.000000px;}
.w0_c00036{width:892.920000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:137.122500px;}
.x5_c00036{left:150.417000px;}
.x6_c00036{left:163.713000px;}
.x3_c00036{left:196.948500px;}
.x4_c00036{left:256.774500px;}
.x1_c00036{left:263.421000px;}
.x7_c00036{left:438.984000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls4_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:0.078221pt;}
.ls3_c00036{letter-spacing:0.087539pt;}
.ls2_c00036{letter-spacing:0.092873pt;}
.ls1_c00036{letter-spacing:23.724873pt;}
.ws0_c00036{word-spacing:-23.622682pt;}
.ws2_c00036{word-spacing:-23.544461pt;}
.ws5_c00036{word-spacing:0.000000pt;}
.ws10_c00036{word-spacing:0.038133pt;}
.ws4_c00036{word-spacing:0.039110pt;}
.wse_c00036{word-spacing:0.046963pt;}
.ws9_c00036{word-spacing:0.047452pt;}
.wsc_c00036{word-spacing:0.056282pt;}
.ws8_c00036{word-spacing:0.062103pt;}
.wsf_c00036{word-spacing:0.065600pt;}
.ws1_c00036{word-spacing:0.070933pt;}
.wsb_c00036{word-spacing:0.071422pt;}
.ws6_c00036{word-spacing:0.071910pt;}
.wsd_c00036{word-spacing:0.073941pt;}
.ws3_c00036{word-spacing:0.156442pt;}
.ws7_c00036{word-spacing:0.189730pt;}
.wsa_c00036{word-spacing:0.195063pt;}
._0_c00036{width:0.997156pt;}
.fs0_c00036{font-size:39.110400pt;}
.fs1_c00036{font-size:53.133867pt;}
.y0_c00036{bottom:0.000000pt;}
.y33_c00036{bottom:39.333333pt;}
.y32_c00036{bottom:95.829333pt;}
.y31_c00036{bottom:110.441333pt;}
.y30_c00036{bottom:125.053333pt;}
.y2f_c00036{bottom:139.665333pt;}
.y2e_c00036{bottom:154.277333pt;}
.y2d_c00036{bottom:168.889333pt;}
.y2c_c00036{bottom:183.500000pt;}
.y2b_c00036{bottom:198.112000pt;}
.y2a_c00036{bottom:212.724000pt;}
.y29_c00036{bottom:241.948000pt;}
.y28_c00036{bottom:256.560000pt;}
.y27_c00036{bottom:285.784000pt;}
.y26_c00036{bottom:300.396000pt;}
.y25_c00036{bottom:315.008000pt;}
.y24_c00036{bottom:329.620000pt;}
.y23_c00036{bottom:344.230667pt;}
.y22_c00036{bottom:358.842667pt;}
.y21_c00036{bottom:373.454667pt;}
.y20_c00036{bottom:388.066667pt;}
.y1f_c00036{bottom:431.902667pt;}
.y1e_c00036{bottom:446.514667pt;}
.y1d_c00036{bottom:461.126667pt;}
.y1c_c00036{bottom:475.738667pt;}
.y1b_c00036{bottom:490.349333pt;}
.y1a_c00036{bottom:504.961333pt;}
.y19_c00036{bottom:519.573333pt;}
.y18_c00036{bottom:534.185333pt;}
.y17_c00036{bottom:548.797333pt;}
.y16_c00036{bottom:563.409333pt;}
.y15_c00036{bottom:578.021333pt;}
.y14_c00036{bottom:607.245333pt;}
.y13_c00036{bottom:621.857333pt;}
.y12_c00036{bottom:651.080000pt;}
.y11_c00036{bottom:665.692000pt;}
.y10_c00036{bottom:680.304000pt;}
.yf_c00036{bottom:694.916000pt;}
.ye_c00036{bottom:709.528000pt;}
.yd_c00036{bottom:724.140000pt;}
.yc_c00036{bottom:738.752000pt;}
.yb_c00036{bottom:753.364000pt;}
.ya_c00036{bottom:782.588000pt;}
.y9_c00036{bottom:826.422667pt;}
.y8_c00036{bottom:899.482667pt;}
.y7_c00036{bottom:914.094667pt;}
.y6_c00036{bottom:928.706667pt;}
.y5_c00036{bottom:943.317333pt;}
.y4_c00036{bottom:957.929333pt;}
.y3_c00036{bottom:1001.765333pt;}
.y2_c00036{bottom:1016.377333pt;}
.y1_c00036{bottom:1030.989333pt;}
.h3_c00036{height:31.280681pt;}
.h2_c00036{height:32.006363pt;}
.h4_c00036{height:46.518078pt;}
.h0_c00036{height:1122.520000pt;}
.h1_c00036{height:1122.666667pt;}
.w0_c00036{width:793.706667pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:121.886667pt;}
.x5_c00036{left:133.704000pt;}
.x6_c00036{left:145.522667pt;}
.x3_c00036{left:175.065333pt;}
.x4_c00036{left:228.244000pt;}
.x1_c00036{left:234.152000pt;}
.x7_c00036{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4b2b21cf78974765105dc33.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.083496;font-style:normal;font-weight:normal;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_e53f20b5f12279ac89f57eba.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_c496e37d65b7b86ef7805f99.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_a3f31b615926b2b79c3777d7.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls4_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:0.087998px;}
.ls3_c00037{letter-spacing:0.098482px;}
.ls1_c00037{letter-spacing:0.104482px;}
.ls2_c00037{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00037{word-spacing:-26.575517px;}
.ws5_c00037{word-spacing:-26.487518px;}
.ws8_c00037{word-spacing:0.000000px;}
.ws9_c00037{word-spacing:0.036900px;}
.wsc_c00037{word-spacing:0.043999px;}
.ws3_c00037{word-spacing:0.063317px;}
.ws7_c00037{word-spacing:0.063866px;}
.ws0_c00037{word-spacing:0.069866px;}
.wsa_c00037{word-spacing:0.079800px;}
.ws6_c00037{word-spacing:0.080899px;}
.wse_c00037{word-spacing:0.099667px;}
.ws4_c00037{word-spacing:0.175997px;}
.wsb_c00037{word-spacing:0.212897px;}
.ws1_c00037{word-spacing:0.213446px;}
.wsd_c00037{word-spacing:0.219446px;}
._0_c00037{width:1.113053px;}
.fc5_c00037{color:rgb(79,153,5);}
.fc4_c00037{color:rgb(0,0,207);}
.fc3_c00037{color:rgb(207,92,0);}
.fc2_c00037{color:rgb(33,74,135);}
.fc1_c00037{color:rgb(143,89,3);}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:43.999200px;}
.fs1_c00037{font-size:59.775600px;}
.y0_c00037{bottom:0.000000px;}
.y2e_c00037{bottom:44.250000px;}
.y2d_c00037{bottom:140.685000px;}
.y2c_c00037{bottom:157.123500px;}
.y2b_c00037{bottom:190.000500px;}
.y2a_c00037{bottom:206.437500px;}
.y29_c00037{bottom:222.876000px;}
.y28_c00037{bottom:239.314500px;}
.y27_c00037{bottom:255.753000px;}
.y26_c00037{bottom:272.191500px;}
.y25_c00037{bottom:305.068500px;}
.y24_c00037{bottom:337.945500px;}
.y23_c00037{bottom:370.822500px;}
.y22_c00037{bottom:387.259500px;}
.y21_c00037{bottom:403.698000px;}
.y20_c00037{bottom:436.575000px;}
.y1f_c00037{bottom:453.013500px;}
.y1e_c00037{bottom:485.890500px;}
.y1d_c00037{bottom:568.081500px;}
.y1c_c00037{bottom:584.520000px;}
.y1b_c00037{bottom:600.958500px;}
.y1a_c00037{bottom:617.397000px;}
.y19_c00037{bottom:633.835500px;}
.y18_c00037{bottom:683.151000px;}
.y17_c00037{bottom:699.589500px;}
.y16_c00037{bottom:716.028000px;}
.y15_c00037{bottom:732.465000px;}
.y14_c00037{bottom:765.342000px;}
.y13_c00037{bottom:798.219000px;}
.y12_c00037{bottom:814.657500px;}
.y11_c00037{bottom:831.096000px;}
.y10_c00037{bottom:863.973000px;}
.yf_c00037{bottom:880.411500px;}
.ye_c00037{bottom:896.848500px;}
.yd_c00037{bottom:913.287000px;}
.yc_c00037{bottom:929.725500px;}
.yb_c00037{bottom:946.164000px;}
.ya_c00037{bottom:962.602500px;}
.y9_c00037{bottom:979.041000px;}
.y8_c00037{bottom:1011.918000px;}
.y7_c00037{bottom:1028.356500px;}
.y6_c00037{bottom:1044.795000px;}
.y5_c00037{bottom:1061.232000px;}
.y4_c00037{bottom:1094.109000px;}
.y3_c00037{bottom:1110.547500px;}
.y2_c00037{bottom:1126.986000px;}
.y1_c00037{bottom:1159.863000px;}
.h3_c00037{height:35.190766px;}
.h2_c00037{height:36.007158px;}
.h4_c00037{height:52.332837px;}
.h0_c00037{height:1262.835000px;}
.h1_c00037{height:1263.000000px;}
.w0_c00037{width:892.920000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x4_c00037{left:137.122500px;}
.x1_c00037{left:150.417000px;}
.x2_c00037{left:163.713000px;}
.x3_c00037{left:177.007500px;}
.x6_c00037{left:196.948500px;}
.x7_c00037{left:256.774500px;}
.x5_c00037{left:316.599000px;}
.x8_c00037{left:438.984000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls4_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:0.078221pt;}
.ls3_c00037{letter-spacing:0.087539pt;}
.ls1_c00037{letter-spacing:0.092873pt;}
.ls2_c00037{letter-spacing:23.724873pt;}
.ws2_c00037{word-spacing:-23.622682pt;}
.ws5_c00037{word-spacing:-23.544461pt;}
.ws8_c00037{word-spacing:0.000000pt;}
.ws9_c00037{word-spacing:0.032800pt;}
.wsc_c00037{word-spacing:0.039110pt;}
.ws3_c00037{word-spacing:0.056282pt;}
.ws7_c00037{word-spacing:0.056770pt;}
.ws0_c00037{word-spacing:0.062103pt;}
.wsa_c00037{word-spacing:0.070933pt;}
.ws6_c00037{word-spacing:0.071910pt;}
.wse_c00037{word-spacing:0.088593pt;}
.ws4_c00037{word-spacing:0.156442pt;}
.wsb_c00037{word-spacing:0.189242pt;}
.ws1_c00037{word-spacing:0.189730pt;}
.wsd_c00037{word-spacing:0.195063pt;}
._0_c00037{width:0.989380pt;}
.fs0_c00037{font-size:39.110400pt;}
.fs1_c00037{font-size:53.133867pt;}
.y0_c00037{bottom:0.000000pt;}
.y2e_c00037{bottom:39.333333pt;}
.y2d_c00037{bottom:125.053333pt;}
.y2c_c00037{bottom:139.665333pt;}
.y2b_c00037{bottom:168.889333pt;}
.y2a_c00037{bottom:183.500000pt;}
.y29_c00037{bottom:198.112000pt;}
.y28_c00037{bottom:212.724000pt;}
.y27_c00037{bottom:227.336000pt;}
.y26_c00037{bottom:241.948000pt;}
.y25_c00037{bottom:271.172000pt;}
.y24_c00037{bottom:300.396000pt;}
.y23_c00037{bottom:329.620000pt;}
.y22_c00037{bottom:344.230667pt;}
.y21_c00037{bottom:358.842667pt;}
.y20_c00037{bottom:388.066667pt;}
.y1f_c00037{bottom:402.678667pt;}
.y1e_c00037{bottom:431.902667pt;}
.y1d_c00037{bottom:504.961333pt;}
.y1c_c00037{bottom:519.573333pt;}
.y1b_c00037{bottom:534.185333pt;}
.y1a_c00037{bottom:548.797333pt;}
.y19_c00037{bottom:563.409333pt;}
.y18_c00037{bottom:607.245333pt;}
.y17_c00037{bottom:621.857333pt;}
.y16_c00037{bottom:636.469333pt;}
.y15_c00037{bottom:651.080000pt;}
.y14_c00037{bottom:680.304000pt;}
.y13_c00037{bottom:709.528000pt;}
.y12_c00037{bottom:724.140000pt;}
.y11_c00037{bottom:738.752000pt;}
.y10_c00037{bottom:767.976000pt;}
.yf_c00037{bottom:782.588000pt;}
.ye_c00037{bottom:797.198667pt;}
.yd_c00037{bottom:811.810667pt;}
.yc_c00037{bottom:826.422667pt;}
.yb_c00037{bottom:841.034667pt;}
.ya_c00037{bottom:855.646667pt;}
.y9_c00037{bottom:870.258667pt;}
.y8_c00037{bottom:899.482667pt;}
.y7_c00037{bottom:914.094667pt;}
.y6_c00037{bottom:928.706667pt;}
.y5_c00037{bottom:943.317333pt;}
.y4_c00037{bottom:972.541333pt;}
.y3_c00037{bottom:987.153333pt;}
.y2_c00037{bottom:1001.765333pt;}
.y1_c00037{bottom:1030.989333pt;}
.h3_c00037{height:31.280681pt;}
.h2_c00037{height:32.006363pt;}
.h4_c00037{height:46.518078pt;}
.h0_c00037{height:1122.520000pt;}
.h1_c00037{height:1122.666667pt;}
.w0_c00037{width:793.706667pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x4_c00037{left:121.886667pt;}
.x1_c00037{left:133.704000pt;}
.x2_c00037{left:145.522667pt;}
.x3_c00037{left:157.340000pt;}
.x6_c00037{left:175.065333pt;}
.x7_c00037{left:228.244000pt;}
.x5_c00037{left:281.421333pt;}
.x8_c00037{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84b80f3fdf43879e06e0ad3.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.014648;font-style:normal;font-weight:normal;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_6f6ced2d099ad2a7206c37b5.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.083496;font-style:normal;font-weight:normal;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_0e739111e15ffe506dc719eb.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.048828;font-style:normal;font-weight:normal;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_14e1e0b23245ce8cdfb44d61.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.000000;font-style:normal;font-weight:normal;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_c44ed847fd156bde30bcf347.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls4_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.087998px;}
.ls3_c00038{letter-spacing:0.098482px;}
.ls2_c00038{letter-spacing:0.104482px;}
.ls1_c00038{letter-spacing:26.690482px;}
.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:-26.575517px;}
.wsd_c00038{word-spacing:-26.487518px;}
.ws0_c00038{word-spacing:0.000000px;}
.ws10_c00038{word-spacing:0.036900px;}
.wsa_c00038{word-spacing:0.042900px;}
.wsb_c00038{word-spacing:0.043999px;}
.ws4_c00038{word-spacing:0.052834px;}
.ws7_c00038{word-spacing:0.053383px;}
.ws6_c00038{word-spacing:0.063317px;}
.wsf_c00038{word-spacing:0.063866px;}
.wsc_c00038{word-spacing:0.069866px;}
.ws9_c00038{word-spacing:0.073800px;}
.ws11_c00038{word-spacing:0.079800px;}
.ws1_c00038{word-spacing:0.080350px;}
.wse_c00038{word-spacing:0.080899px;}
.ws13_c00038{word-spacing:0.109601px;}
.ws8_c00038{word-spacing:0.175997px;}
.ws12_c00038{word-spacing:0.212897px;}
.ws5_c00038{word-spacing:0.213446px;}
.ws2_c00038{word-spacing:0.219446px;}
._1_c00038{margin-left:-2103.796728px;}
._0_c00038{width:1.012286px;}
.fc5_c00038{color:rgb(207,92,0);}
.fc4_c00038{color:rgb(33,74,135);}
.fc3_c00038{color:rgb(0,0,207);}
.fc2_c00038{color:rgb(79,153,5);}
.fc1_c00038{color:rgb(0,0,0);}
.fc0_c00038{color:rgb(143,89,3);}
.fs1_c00038{font-size:31.015800px;}
.fs0_c00038{font-size:43.999200px;}
.fs2_c00038{font-size:59.775600px;}
.y0_c00038{bottom:0.000000px;}
.y33_c00038{bottom:44.250000px;}
.y32_c00038{bottom:108.181500px;}
.y31_c00038{bottom:190.374000px;}
.y30_c00038{bottom:206.812500px;}
.y2f_c00038{bottom:223.249500px;}
.y2e_c00038{bottom:239.688000px;}
.y2d_c00038{bottom:256.126500px;}
.y2c_c00038{bottom:305.442000px;}
.y2b_c00038{bottom:321.507000px;}
.y2a_c00038{bottom:337.945500px;}
.y29_c00038{bottom:354.384000px;}
.y28_c00038{bottom:370.822500px;}
.y27_c00038{bottom:403.698000px;}
.y26_c00038{bottom:436.575000px;}
.y25_c00038{bottom:453.013500px;}
.y24_c00038{bottom:469.452000px;}
.y23_c00038{bottom:502.329000px;}
.y22_c00038{bottom:518.767500px;}
.y21_c00038{bottom:535.206000px;}
.y20_c00038{bottom:551.643000px;}
.y1f_c00038{bottom:568.081500px;}
.y1e_c00038{bottom:584.520000px;}
.y1d_c00038{bottom:600.958500px;}
.y1c_c00038{bottom:617.397000px;}
.y1b_c00038{bottom:650.274000px;}
.y1a_c00038{bottom:666.712500px;}
.y19_c00038{bottom:683.151000px;}
.y18_c00038{bottom:699.589500px;}
.y17_c00038{bottom:732.465000px;}
.y16_c00038{bottom:748.903500px;}
.y15_c00038{bottom:765.342000px;}
.y14_c00038{bottom:798.219000px;}
.y13_c00038{bottom:831.096000px;}
.y12_c00038{bottom:847.534500px;}
.y11_c00038{bottom:863.973000px;}
.y10_c00038{bottom:880.411500px;}
.yf_c00038{bottom:896.848500px;}
.ye_c00038{bottom:913.287000px;}
.yd_c00038{bottom:929.725500px;}
.yc_c00038{bottom:946.164000px;}
.yb_c00038{bottom:962.602500px;}
.ya_c00038{bottom:995.479500px;}
.y9_c00038{bottom:1011.918000px;}
.y8_c00038{bottom:1044.795000px;}
.y7_c00038{bottom:1061.232000px;}
.y6_c00038{bottom:1077.670500px;}
.y5_c00038{bottom:1094.109000px;}
.y4_c00038{bottom:1110.547500px;}
.y3_c00038{bottom:1126.986000px;}
.y2_c00038{bottom:1143.424500px;}
.y1_c00038{bottom:1159.863000px;}
.h2_c00038{height:35.190766px;}
.h3_c00038{height:36.007158px;}
.h4_c00038{height:52.332837px;}
.h0_c00038{height:1262.835000px;}
.h1_c00038{height:1263.000000px;}
.w0_c00038{width:892.920000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:137.122500px;}
.x2_c00038{left:150.417000px;}
.x3_c00038{left:163.713000px;}
.x4_c00038{left:177.007500px;}
.x6_c00038{left:196.948500px;}
.x5_c00038{left:343.188000px;}
.x7_c00038{left:438.984000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls4_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.078221pt;}
.ls3_c00038{letter-spacing:0.087539pt;}
.ls2_c00038{letter-spacing:0.092873pt;}
.ls1_c00038{letter-spacing:23.724873pt;}
.ws3_c00038{word-spacing:-23.622682pt;}
.wsd_c00038{word-spacing:-23.544461pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.ws10_c00038{word-spacing:0.032800pt;}
.wsa_c00038{word-spacing:0.038133pt;}
.wsb_c00038{word-spacing:0.039110pt;}
.ws4_c00038{word-spacing:0.046963pt;}
.ws7_c00038{word-spacing:0.047452pt;}
.ws6_c00038{word-spacing:0.056282pt;}
.wsf_c00038{word-spacing:0.056770pt;}
.wsc_c00038{word-spacing:0.062103pt;}
.ws9_c00038{word-spacing:0.065600pt;}
.ws11_c00038{word-spacing:0.070933pt;}
.ws1_c00038{word-spacing:0.071422pt;}
.wse_c00038{word-spacing:0.071910pt;}
.ws13_c00038{word-spacing:0.097423pt;}
.ws8_c00038{word-spacing:0.156442pt;}
.ws12_c00038{word-spacing:0.189242pt;}
.ws5_c00038{word-spacing:0.189730pt;}
.ws2_c00038{word-spacing:0.195063pt;}
._1_c00038{margin-left:-1870.041536pt;}
._0_c00038{width:0.899810pt;}
.fs1_c00038{font-size:27.569600pt;}
.fs0_c00038{font-size:39.110400pt;}
.fs2_c00038{font-size:53.133867pt;}
.y0_c00038{bottom:0.000000pt;}
.y33_c00038{bottom:39.333333pt;}
.y32_c00038{bottom:96.161333pt;}
.y31_c00038{bottom:169.221333pt;}
.y30_c00038{bottom:183.833333pt;}
.y2f_c00038{bottom:198.444000pt;}
.y2e_c00038{bottom:213.056000pt;}
.y2d_c00038{bottom:227.668000pt;}
.y2c_c00038{bottom:271.504000pt;}
.y2b_c00038{bottom:285.784000pt;}
.y2a_c00038{bottom:300.396000pt;}
.y29_c00038{bottom:315.008000pt;}
.y28_c00038{bottom:329.620000pt;}
.y27_c00038{bottom:358.842667pt;}
.y26_c00038{bottom:388.066667pt;}
.y25_c00038{bottom:402.678667pt;}
.y24_c00038{bottom:417.290667pt;}
.y23_c00038{bottom:446.514667pt;}
.y22_c00038{bottom:461.126667pt;}
.y21_c00038{bottom:475.738667pt;}
.y20_c00038{bottom:490.349333pt;}
.y1f_c00038{bottom:504.961333pt;}
.y1e_c00038{bottom:519.573333pt;}
.y1d_c00038{bottom:534.185333pt;}
.y1c_c00038{bottom:548.797333pt;}
.y1b_c00038{bottom:578.021333pt;}
.y1a_c00038{bottom:592.633333pt;}
.y19_c00038{bottom:607.245333pt;}
.y18_c00038{bottom:621.857333pt;}
.y17_c00038{bottom:651.080000pt;}
.y16_c00038{bottom:665.692000pt;}
.y15_c00038{bottom:680.304000pt;}
.y14_c00038{bottom:709.528000pt;}
.y13_c00038{bottom:738.752000pt;}
.y12_c00038{bottom:753.364000pt;}
.y11_c00038{bottom:767.976000pt;}
.y10_c00038{bottom:782.588000pt;}
.yf_c00038{bottom:797.198667pt;}
.ye_c00038{bottom:811.810667pt;}
.yd_c00038{bottom:826.422667pt;}
.yc_c00038{bottom:841.034667pt;}
.yb_c00038{bottom:855.646667pt;}
.ya_c00038{bottom:884.870667pt;}
.y9_c00038{bottom:899.482667pt;}
.y8_c00038{bottom:928.706667pt;}
.y7_c00038{bottom:943.317333pt;}
.y6_c00038{bottom:957.929333pt;}
.y5_c00038{bottom:972.541333pt;}
.y4_c00038{bottom:987.153333pt;}
.y3_c00038{bottom:1001.765333pt;}
.y2_c00038{bottom:1016.377333pt;}
.y1_c00038{bottom:1030.989333pt;}
.h2_c00038{height:31.280681pt;}
.h3_c00038{height:32.006363pt;}
.h4_c00038{height:46.518078pt;}
.h0_c00038{height:1122.520000pt;}
.h1_c00038{height:1122.666667pt;}
.w0_c00038{width:793.706667pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:121.886667pt;}
.x2_c00038{left:133.704000pt;}
.x3_c00038{left:145.522667pt;}
.x4_c00038{left:157.340000pt;}
.x6_c00038{left:175.065333pt;}
.x5_c00038{left:305.056000pt;}
.x7_c00038{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54ffb9ba258fb5e5857d7113.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.083496;font-style:normal;font-weight:normal;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_f29d700905b42cfa348535b7.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.048828;font-style:normal;font-weight:normal;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_628cf5d251464784d6c09017.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.014648;font-style:normal;font-weight:normal;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_afbf7181314fc2b32815a359.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls4_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.087998px;}
.ls1_c00039{letter-spacing:0.098482px;}
.ls2_c00039{letter-spacing:0.104482px;}
.ls3_c00039{letter-spacing:26.690482px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-26.575517px;}
.wsf_c00039{word-spacing:-26.487518px;}
.ws7_c00039{word-spacing:0.000000px;}
.ws11_c00039{word-spacing:0.036900px;}
.wse_c00039{word-spacing:0.042900px;}
.ws3_c00039{word-spacing:0.043999px;}
.wsb_c00039{word-spacing:0.052834px;}
.wsc_c00039{word-spacing:0.053383px;}
.ws5_c00039{word-spacing:0.063317px;}
.ws10_c00039{word-spacing:0.063866px;}
.ws4_c00039{word-spacing:0.069866px;}
.wsd_c00039{word-spacing:0.073800px;}
.ws9_c00039{word-spacing:0.079800px;}
.wsa_c00039{word-spacing:0.080350px;}
.ws1_c00039{word-spacing:0.080899px;}
.ws8_c00039{word-spacing:0.175997px;}
.ws12_c00039{word-spacing:0.212897px;}
.ws2_c00039{word-spacing:0.213446px;}
.ws6_c00039{word-spacing:0.219446px;}
._0_c00039{width:1.012286px;}
.fc5_c00039{color:rgb(0,0,207);}
.fc4_c00039{color:rgb(207,92,0);}
.fc3_c00039{color:rgb(33,74,135);}
.fc2_c00039{color:rgb(79,153,5);}
.fc1_c00039{color:rgb(143,89,3);}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:43.999200px;}
.fs1_c00039{font-size:59.775600px;}
.y0_c00039{bottom:0.000000px;}
.y33_c00039{bottom:44.250000px;}
.y32_c00039{bottom:107.808000px;}
.y31_c00039{bottom:124.246500px;}
.y30_c00039{bottom:140.685000px;}
.y2f_c00039{bottom:157.123500px;}
.y2e_c00039{bottom:173.562000px;}
.y2d_c00039{bottom:190.000500px;}
.y2c_c00039{bottom:206.437500px;}
.y2b_c00039{bottom:222.876000px;}
.y2a_c00039{bottom:255.753000px;}
.y29_c00039{bottom:272.191500px;}
.y28_c00039{bottom:288.630000px;}
.y27_c00039{bottom:305.068500px;}
.y26_c00039{bottom:337.945500px;}
.y25_c00039{bottom:354.384000px;}
.y24_c00039{bottom:370.822500px;}
.y23_c00039{bottom:403.698000px;}
.y22_c00039{bottom:436.575000px;}
.y21_c00039{bottom:453.013500px;}
.y20_c00039{bottom:469.452000px;}
.y1f_c00039{bottom:485.890500px;}
.y1e_c00039{bottom:502.329000px;}
.y1d_c00039{bottom:518.767500px;}
.y1c_c00039{bottom:535.206000px;}
.y1b_c00039{bottom:551.643000px;}
.y1a_c00039{bottom:568.081500px;}
.y19_c00039{bottom:600.958500px;}
.y18_c00039{bottom:617.397000px;}
.y17_c00039{bottom:650.274000px;}
.y16_c00039{bottom:666.712500px;}
.y15_c00039{bottom:683.151000px;}
.y14_c00039{bottom:699.589500px;}
.y13_c00039{bottom:716.028000px;}
.y12_c00039{bottom:732.465000px;}
.y11_c00039{bottom:748.903500px;}
.y10_c00039{bottom:765.342000px;}
.yf_c00039{bottom:831.096000px;}
.ye_c00039{bottom:847.534500px;}
.yd_c00039{bottom:880.411500px;}
.yc_c00039{bottom:896.848500px;}
.yb_c00039{bottom:913.287000px;}
.ya_c00039{bottom:929.725500px;}
.y9_c00039{bottom:946.164000px;}
.y8_c00039{bottom:962.602500px;}
.y7_c00039{bottom:995.479500px;}
.y6_c00039{bottom:1028.356500px;}
.y5_c00039{bottom:1061.232000px;}
.y4_c00039{bottom:1077.670500px;}
.y3_c00039{bottom:1094.109000px;}
.y2_c00039{bottom:1126.986000px;}
.y1_c00039{bottom:1143.424500px;}
.h3_c00039{height:35.190766px;}
.h2_c00039{height:36.007158px;}
.h4_c00039{height:52.332837px;}
.h0_c00039{height:1262.835000px;}
.h1_c00039{height:1263.000000px;}
.w0_c00039{width:892.920000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:137.122500px;}
.x3_c00039{left:150.417000px;}
.x4_c00039{left:163.713000px;}
.x5_c00039{left:177.007500px;}
.x2_c00039{left:256.774500px;}
.x6_c00039{left:438.984000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls4_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.078221pt;}
.ls1_c00039{letter-spacing:0.087539pt;}
.ls2_c00039{letter-spacing:0.092873pt;}
.ls3_c00039{letter-spacing:23.724873pt;}
.ws0_c00039{word-spacing:-23.622682pt;}
.wsf_c00039{word-spacing:-23.544461pt;}
.ws7_c00039{word-spacing:0.000000pt;}
.ws11_c00039{word-spacing:0.032800pt;}
.wse_c00039{word-spacing:0.038133pt;}
.ws3_c00039{word-spacing:0.039110pt;}
.wsb_c00039{word-spacing:0.046963pt;}
.wsc_c00039{word-spacing:0.047452pt;}
.ws5_c00039{word-spacing:0.056282pt;}
.ws10_c00039{word-spacing:0.056770pt;}
.ws4_c00039{word-spacing:0.062103pt;}
.wsd_c00039{word-spacing:0.065600pt;}
.ws9_c00039{word-spacing:0.070933pt;}
.wsa_c00039{word-spacing:0.071422pt;}
.ws1_c00039{word-spacing:0.071910pt;}
.ws8_c00039{word-spacing:0.156442pt;}
.ws12_c00039{word-spacing:0.189242pt;}
.ws2_c00039{word-spacing:0.189730pt;}
.ws6_c00039{word-spacing:0.195063pt;}
._0_c00039{width:0.899810pt;}
.fs0_c00039{font-size:39.110400pt;}
.fs1_c00039{font-size:53.133867pt;}
.y0_c00039{bottom:0.000000pt;}
.y33_c00039{bottom:39.333333pt;}
.y32_c00039{bottom:95.829333pt;}
.y31_c00039{bottom:110.441333pt;}
.y30_c00039{bottom:125.053333pt;}
.y2f_c00039{bottom:139.665333pt;}
.y2e_c00039{bottom:154.277333pt;}
.y2d_c00039{bottom:168.889333pt;}
.y2c_c00039{bottom:183.500000pt;}
.y2b_c00039{bottom:198.112000pt;}
.y2a_c00039{bottom:227.336000pt;}
.y29_c00039{bottom:241.948000pt;}
.y28_c00039{bottom:256.560000pt;}
.y27_c00039{bottom:271.172000pt;}
.y26_c00039{bottom:300.396000pt;}
.y25_c00039{bottom:315.008000pt;}
.y24_c00039{bottom:329.620000pt;}
.y23_c00039{bottom:358.842667pt;}
.y22_c00039{bottom:388.066667pt;}
.y21_c00039{bottom:402.678667pt;}
.y20_c00039{bottom:417.290667pt;}
.y1f_c00039{bottom:431.902667pt;}
.y1e_c00039{bottom:446.514667pt;}
.y1d_c00039{bottom:461.126667pt;}
.y1c_c00039{bottom:475.738667pt;}
.y1b_c00039{bottom:490.349333pt;}
.y1a_c00039{bottom:504.961333pt;}
.y19_c00039{bottom:534.185333pt;}
.y18_c00039{bottom:548.797333pt;}
.y17_c00039{bottom:578.021333pt;}
.y16_c00039{bottom:592.633333pt;}
.y15_c00039{bottom:607.245333pt;}
.y14_c00039{bottom:621.857333pt;}
.y13_c00039{bottom:636.469333pt;}
.y12_c00039{bottom:651.080000pt;}
.y11_c00039{bottom:665.692000pt;}
.y10_c00039{bottom:680.304000pt;}
.yf_c00039{bottom:738.752000pt;}
.ye_c00039{bottom:753.364000pt;}
.yd_c00039{bottom:782.588000pt;}
.yc_c00039{bottom:797.198667pt;}
.yb_c00039{bottom:811.810667pt;}
.ya_c00039{bottom:826.422667pt;}
.y9_c00039{bottom:841.034667pt;}
.y8_c00039{bottom:855.646667pt;}
.y7_c00039{bottom:884.870667pt;}
.y6_c00039{bottom:914.094667pt;}
.y5_c00039{bottom:943.317333pt;}
.y4_c00039{bottom:957.929333pt;}
.y3_c00039{bottom:972.541333pt;}
.y2_c00039{bottom:1001.765333pt;}
.y1_c00039{bottom:1016.377333pt;}
.h3_c00039{height:31.280681pt;}
.h2_c00039{height:32.006363pt;}
.h4_c00039{height:46.518078pt;}
.h0_c00039{height:1122.520000pt;}
.h1_c00039{height:1122.666667pt;}
.w0_c00039{width:793.706667pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:121.886667pt;}
.x3_c00039{left:133.704000pt;}
.x4_c00039{left:145.522667pt;}
.x5_c00039{left:157.340000pt;}
.x2_c00039{left:228.244000pt;}
.x6_c00039{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5032c432dfd83d9eba6669bb.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.083496;font-style:normal;font-weight:normal;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_c83e209bc2cca8d06f8d25d9.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_7f10ce2b27137938e3d447c2.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_d68b5e66b937e890f0444d57.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls4_c00040{letter-spacing:0.000000px;}
.ls1_c00040{letter-spacing:0.087998px;}
.ls3_c00040{letter-spacing:0.098482px;}
.ls2_c00040{letter-spacing:0.104482px;}
.ls0_c00040{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00040{word-spacing:-26.575517px;}
.ws7_c00040{word-spacing:-26.487518px;}
.ws2_c00040{word-spacing:0.000000px;}
.wsf_c00040{word-spacing:0.042900px;}
.ws4_c00040{word-spacing:0.043999px;}
.wsc_c00040{word-spacing:0.052834px;}
.wsd_c00040{word-spacing:0.053383px;}
.wsa_c00040{word-spacing:0.063317px;}
.ws9_c00040{word-spacing:0.069866px;}
.wse_c00040{word-spacing:0.073800px;}
.ws6_c00040{word-spacing:0.079800px;}
.wsb_c00040{word-spacing:0.080350px;}
.ws8_c00040{word-spacing:0.080899px;}
.ws5_c00040{word-spacing:0.175997px;}
.ws0_c00040{word-spacing:0.213446px;}
.ws1_c00040{word-spacing:0.219446px;}
._0_c00040{width:1.113053px;}
.fc5_c00040{color:rgb(79,153,5);}
.fc4_c00040{color:rgb(33,74,135);}
.fc3_c00040{color:rgb(0,0,207);}
.fc2_c00040{color:rgb(207,92,0);}
.fc1_c00040{color:rgb(143,89,3);}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:43.999200px;}
.fs1_c00040{font-size:59.775600px;}
.y0_c00040{bottom:0.000000px;}
.y2f_c00040{bottom:44.250000px;}
.y2e_c00040{bottom:91.369500px;}
.y2d_c00040{bottom:107.808000px;}
.y2c_c00040{bottom:124.246500px;}
.y2b_c00040{bottom:140.685000px;}
.y2a_c00040{bottom:157.123500px;}
.y29_c00040{bottom:173.562000px;}
.y28_c00040{bottom:190.000500px;}
.y27_c00040{bottom:222.876000px;}
.y26_c00040{bottom:239.314500px;}
.y25_c00040{bottom:272.191500px;}
.y24_c00040{bottom:288.630000px;}
.y23_c00040{bottom:305.068500px;}
.y22_c00040{bottom:321.507000px;}
.y21_c00040{bottom:337.945500px;}
.y20_c00040{bottom:354.384000px;}
.y1f_c00040{bottom:370.822500px;}
.y1e_c00040{bottom:387.259500px;}
.y1d_c00040{bottom:453.013500px;}
.y1c_c00040{bottom:469.452000px;}
.y1b_c00040{bottom:502.329000px;}
.y1a_c00040{bottom:518.767500px;}
.y19_c00040{bottom:535.206000px;}
.y18_c00040{bottom:551.643000px;}
.y17_c00040{bottom:568.081500px;}
.y16_c00040{bottom:584.520000px;}
.y15_c00040{bottom:617.397000px;}
.y14_c00040{bottom:650.274000px;}
.y13_c00040{bottom:683.151000px;}
.y12_c00040{bottom:699.589500px;}
.y11_c00040{bottom:716.028000px;}
.y10_c00040{bottom:748.903500px;}
.yf_c00040{bottom:765.342000px;}
.ye_c00040{bottom:814.657500px;}
.yd_c00040{bottom:896.848500px;}
.yc_c00040{bottom:913.287000px;}
.yb_c00040{bottom:929.725500px;}
.ya_c00040{bottom:946.164000px;}
.y9_c00040{bottom:962.602500px;}
.y8_c00040{bottom:1011.918000px;}
.y7_c00040{bottom:1028.356500px;}
.y6_c00040{bottom:1044.795000px;}
.y5_c00040{bottom:1061.232000px;}
.y4_c00040{bottom:1094.109000px;}
.y3_c00040{bottom:1126.986000px;}
.y2_c00040{bottom:1143.424500px;}
.y1_c00040{bottom:1159.863000px;}
.h3_c00040{height:35.190766px;}
.h2_c00040{height:36.007158px;}
.h4_c00040{height:52.332837px;}
.h0_c00040{height:1262.835000px;}
.h1_c00040{height:1263.000000px;}
.w0_c00040{width:892.920000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:137.122500px;}
.x2_c00040{left:150.417000px;}
.x1_c00040{left:163.713000px;}
.x5_c00040{left:196.948500px;}
.x6_c00040{left:256.774500px;}
.x4_c00040{left:263.421000px;}
.x7_c00040{left:438.984000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls4_c00040{letter-spacing:0.000000pt;}
.ls1_c00040{letter-spacing:0.078221pt;}
.ls3_c00040{letter-spacing:0.087539pt;}
.ls2_c00040{letter-spacing:0.092873pt;}
.ls0_c00040{letter-spacing:23.724873pt;}
.ws3_c00040{word-spacing:-23.622682pt;}
.ws7_c00040{word-spacing:-23.544461pt;}
.ws2_c00040{word-spacing:0.000000pt;}
.wsf_c00040{word-spacing:0.038133pt;}
.ws4_c00040{word-spacing:0.039110pt;}
.wsc_c00040{word-spacing:0.046963pt;}
.wsd_c00040{word-spacing:0.047452pt;}
.wsa_c00040{word-spacing:0.056282pt;}
.ws9_c00040{word-spacing:0.062103pt;}
.wse_c00040{word-spacing:0.065600pt;}
.ws6_c00040{word-spacing:0.070933pt;}
.wsb_c00040{word-spacing:0.071422pt;}
.ws8_c00040{word-spacing:0.071910pt;}
.ws5_c00040{word-spacing:0.156442pt;}
.ws0_c00040{word-spacing:0.189730pt;}
.ws1_c00040{word-spacing:0.195063pt;}
._0_c00040{width:0.989380pt;}
.fs0_c00040{font-size:39.110400pt;}
.fs1_c00040{font-size:53.133867pt;}
.y0_c00040{bottom:0.000000pt;}
.y2f_c00040{bottom:39.333333pt;}
.y2e_c00040{bottom:81.217333pt;}
.y2d_c00040{bottom:95.829333pt;}
.y2c_c00040{bottom:110.441333pt;}
.y2b_c00040{bottom:125.053333pt;}
.y2a_c00040{bottom:139.665333pt;}
.y29_c00040{bottom:154.277333pt;}
.y28_c00040{bottom:168.889333pt;}
.y27_c00040{bottom:198.112000pt;}
.y26_c00040{bottom:212.724000pt;}
.y25_c00040{bottom:241.948000pt;}
.y24_c00040{bottom:256.560000pt;}
.y23_c00040{bottom:271.172000pt;}
.y22_c00040{bottom:285.784000pt;}
.y21_c00040{bottom:300.396000pt;}
.y20_c00040{bottom:315.008000pt;}
.y1f_c00040{bottom:329.620000pt;}
.y1e_c00040{bottom:344.230667pt;}
.y1d_c00040{bottom:402.678667pt;}
.y1c_c00040{bottom:417.290667pt;}
.y1b_c00040{bottom:446.514667pt;}
.y1a_c00040{bottom:461.126667pt;}
.y19_c00040{bottom:475.738667pt;}
.y18_c00040{bottom:490.349333pt;}
.y17_c00040{bottom:504.961333pt;}
.y16_c00040{bottom:519.573333pt;}
.y15_c00040{bottom:548.797333pt;}
.y14_c00040{bottom:578.021333pt;}
.y13_c00040{bottom:607.245333pt;}
.y12_c00040{bottom:621.857333pt;}
.y11_c00040{bottom:636.469333pt;}
.y10_c00040{bottom:665.692000pt;}
.yf_c00040{bottom:680.304000pt;}
.ye_c00040{bottom:724.140000pt;}
.yd_c00040{bottom:797.198667pt;}
.yc_c00040{bottom:811.810667pt;}
.yb_c00040{bottom:826.422667pt;}
.ya_c00040{bottom:841.034667pt;}
.y9_c00040{bottom:855.646667pt;}
.y8_c00040{bottom:899.482667pt;}
.y7_c00040{bottom:914.094667pt;}
.y6_c00040{bottom:928.706667pt;}
.y5_c00040{bottom:943.317333pt;}
.y4_c00040{bottom:972.541333pt;}
.y3_c00040{bottom:1001.765333pt;}
.y2_c00040{bottom:1016.377333pt;}
.y1_c00040{bottom:1030.989333pt;}
.h3_c00040{height:31.280681pt;}
.h2_c00040{height:32.006363pt;}
.h4_c00040{height:46.518078pt;}
.h0_c00040{height:1122.520000pt;}
.h1_c00040{height:1122.666667pt;}
.w0_c00040{width:793.706667pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:121.886667pt;}
.x2_c00040{left:133.704000pt;}
.x1_c00040{left:145.522667pt;}
.x5_c00040{left:175.065333pt;}
.x6_c00040{left:228.244000pt;}
.x4_c00040{left:234.152000pt;}
.x7_c00040{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a6c0bd914137d53d00bafe0.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.083496;font-style:normal;font-weight:normal;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_02785d145ec48ea37a990d2d.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.048828;font-style:normal;font-weight:normal;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_f09f89c2eba0b1b3592dbf7e.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.014648;font-style:normal;font-weight:normal;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_34d340d8ed73f38b82d33244.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00041;src:url('chunks/assets/font_08886daa5ef433dabfcd5d3d.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls4_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.087998px;}
.ls3_c00041{letter-spacing:0.098482px;}
.ls2_c00041{letter-spacing:0.104482px;}
.ls1_c00041{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws6_c00041{word-spacing:-26.487518px;}
.ws0_c00041{word-spacing:0.000000px;}
.ws9_c00041{word-spacing:0.036900px;}
.wsc_c00041{word-spacing:0.043999px;}
.ws4_c00041{word-spacing:0.063317px;}
.ws8_c00041{word-spacing:0.063866px;}
.ws2_c00041{word-spacing:0.069866px;}
.wsa_c00041{word-spacing:0.079800px;}
.ws7_c00041{word-spacing:0.080899px;}
.wse_c00041{word-spacing:0.103051px;}
.ws5_c00041{word-spacing:0.175997px;}
.wsb_c00041{word-spacing:0.212897px;}
.ws3_c00041{word-spacing:0.213446px;}
.wsd_c00041{word-spacing:0.219446px;}
._1_c00041{margin-left:-2263.828891px;}
._0_c00041{width:1.113053px;}
.fc5_c00041{color:rgb(79,153,5);}
.fc4_c00041{color:rgb(0,0,207);}
.fc3_c00041{color:rgb(143,89,3);}
.fc2_c00041{color:rgb(207,92,0);}
.fc1_c00041{color:rgb(0,0,0);}
.fc0_c00041{color:rgb(33,74,135);}
.fs1_c00041{font-size:31.015800px;}
.fs0_c00041{font-size:43.999200px;}
.fs2_c00041{font-size:59.775600px;}
.y0_c00041{bottom:0.000000px;}
.y31_c00041{bottom:44.250000px;}
.y30_c00041{bottom:91.743000px;}
.y2f_c00041{bottom:108.181500px;}
.y2e_c00041{bottom:141.058500px;}
.y2d_c00041{bottom:157.497000px;}
.y2c_c00041{bottom:173.935500px;}
.y2b_c00041{bottom:190.374000px;}
.y2a_c00041{bottom:206.812500px;}
.y29_c00041{bottom:223.249500px;}
.y28_c00041{bottom:256.126500px;}
.y27_c00041{bottom:289.003500px;}
.y26_c00041{bottom:321.880500px;}
.y25_c00041{bottom:338.319000px;}
.y24_c00041{bottom:354.757500px;}
.y23_c00041{bottom:387.633000px;}
.y22_c00041{bottom:404.071500px;}
.y21_c00041{bottom:453.387000px;}
.y20_c00041{bottom:502.702500px;}
.y1f_c00041{bottom:519.141000px;}
.y1e_c00041{bottom:535.579500px;}
.y1d_c00041{bottom:552.018000px;}
.y1c_c00041{bottom:568.455000px;}
.y1b_c00041{bottom:617.770500px;}
.y1a_c00041{bottom:633.835500px;}
.y19_c00041{bottom:650.274000px;}
.y18_c00041{bottom:666.712500px;}
.y17_c00041{bottom:683.151000px;}
.y16_c00041{bottom:716.028000px;}
.y15_c00041{bottom:748.903500px;}
.y14_c00041{bottom:765.342000px;}
.y13_c00041{bottom:781.780500px;}
.y12_c00041{bottom:814.657500px;}
.y11_c00041{bottom:831.096000px;}
.y10_c00041{bottom:847.534500px;}
.yf_c00041{bottom:863.973000px;}
.ye_c00041{bottom:880.411500px;}
.yd_c00041{bottom:896.848500px;}
.yc_c00041{bottom:913.287000px;}
.yb_c00041{bottom:929.725500px;}
.ya_c00041{bottom:962.602500px;}
.y9_c00041{bottom:979.041000px;}
.y8_c00041{bottom:995.479500px;}
.y7_c00041{bottom:1011.918000px;}
.y6_c00041{bottom:1044.795000px;}
.y5_c00041{bottom:1061.232000px;}
.y4_c00041{bottom:1077.670500px;}
.y3_c00041{bottom:1110.547500px;}
.y2_c00041{bottom:1143.424500px;}
.y1_c00041{bottom:1159.863000px;}
.h3_c00041{height:35.190766px;}
.h2_c00041{height:36.007158px;}
.h4_c00041{height:52.332837px;}
.h0_c00041{height:1262.835000px;}
.h1_c00041{height:1263.000000px;}
.w0_c00041{width:892.920000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x4_c00041{left:137.122500px;}
.x2_c00041{left:150.417000px;}
.x1_c00041{left:163.713000px;}
.x3_c00041{left:177.007500px;}
.x6_c00041{left:196.948500px;}
.x7_c00041{left:256.774500px;}
.x5_c00041{left:363.130500px;}
.x8_c00041{left:438.984000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls4_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.078221pt;}
.ls3_c00041{letter-spacing:0.087539pt;}
.ls2_c00041{letter-spacing:0.092873pt;}
.ls1_c00041{letter-spacing:23.724873pt;}
.ws1_c00041{word-spacing:-23.622682pt;}
.ws6_c00041{word-spacing:-23.544461pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.ws9_c00041{word-spacing:0.032800pt;}
.wsc_c00041{word-spacing:0.039110pt;}
.ws4_c00041{word-spacing:0.056282pt;}
.ws8_c00041{word-spacing:0.056770pt;}
.ws2_c00041{word-spacing:0.062103pt;}
.wsa_c00041{word-spacing:0.070933pt;}
.ws7_c00041{word-spacing:0.071910pt;}
.wse_c00041{word-spacing:0.091601pt;}
.ws5_c00041{word-spacing:0.156442pt;}
.wsb_c00041{word-spacing:0.189242pt;}
.ws3_c00041{word-spacing:0.189730pt;}
.wsd_c00041{word-spacing:0.195063pt;}
._1_c00041{margin-left:-2012.292348pt;}
._0_c00041{width:0.989380pt;}
.fs1_c00041{font-size:27.569600pt;}
.fs0_c00041{font-size:39.110400pt;}
.fs2_c00041{font-size:53.133867pt;}
.y0_c00041{bottom:0.000000pt;}
.y31_c00041{bottom:39.333333pt;}
.y30_c00041{bottom:81.549333pt;}
.y2f_c00041{bottom:96.161333pt;}
.y2e_c00041{bottom:125.385333pt;}
.y2d_c00041{bottom:139.997333pt;}
.y2c_c00041{bottom:154.609333pt;}
.y2b_c00041{bottom:169.221333pt;}
.y2a_c00041{bottom:183.833333pt;}
.y29_c00041{bottom:198.444000pt;}
.y28_c00041{bottom:227.668000pt;}
.y27_c00041{bottom:256.892000pt;}
.y26_c00041{bottom:286.116000pt;}
.y25_c00041{bottom:300.728000pt;}
.y24_c00041{bottom:315.340000pt;}
.y23_c00041{bottom:344.562667pt;}
.y22_c00041{bottom:359.174667pt;}
.y21_c00041{bottom:403.010667pt;}
.y20_c00041{bottom:446.846667pt;}
.y1f_c00041{bottom:461.458667pt;}
.y1e_c00041{bottom:476.070667pt;}
.y1d_c00041{bottom:490.682667pt;}
.y1c_c00041{bottom:505.293333pt;}
.y1b_c00041{bottom:549.129333pt;}
.y1a_c00041{bottom:563.409333pt;}
.y19_c00041{bottom:578.021333pt;}
.y18_c00041{bottom:592.633333pt;}
.y17_c00041{bottom:607.245333pt;}
.y16_c00041{bottom:636.469333pt;}
.y15_c00041{bottom:665.692000pt;}
.y14_c00041{bottom:680.304000pt;}
.y13_c00041{bottom:694.916000pt;}
.y12_c00041{bottom:724.140000pt;}
.y11_c00041{bottom:738.752000pt;}
.y10_c00041{bottom:753.364000pt;}
.yf_c00041{bottom:767.976000pt;}
.ye_c00041{bottom:782.588000pt;}
.yd_c00041{bottom:797.198667pt;}
.yc_c00041{bottom:811.810667pt;}
.yb_c00041{bottom:826.422667pt;}
.ya_c00041{bottom:855.646667pt;}
.y9_c00041{bottom:870.258667pt;}
.y8_c00041{bottom:884.870667pt;}
.y7_c00041{bottom:899.482667pt;}
.y6_c00041{bottom:928.706667pt;}
.y5_c00041{bottom:943.317333pt;}
.y4_c00041{bottom:957.929333pt;}
.y3_c00041{bottom:987.153333pt;}
.y2_c00041{bottom:1016.377333pt;}
.y1_c00041{bottom:1030.989333pt;}
.h3_c00041{height:31.280681pt;}
.h2_c00041{height:32.006363pt;}
.h4_c00041{height:46.518078pt;}
.h0_c00041{height:1122.520000pt;}
.h1_c00041{height:1122.666667pt;}
.w0_c00041{width:793.706667pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x4_c00041{left:121.886667pt;}
.x2_c00041{left:133.704000pt;}
.x1_c00041{left:145.522667pt;}
.x3_c00041{left:157.340000pt;}
.x6_c00041{left:175.065333pt;}
.x7_c00041{left:228.244000pt;}
.x5_c00041{left:322.782667pt;}
.x8_c00041{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67eecce6db772fe08f0068bd.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.014648;font-style:normal;font-weight:normal;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_086632e9b5bf74f5081d5891.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_0e739111e15ffe506dc719eb.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_e9f34a8864dfb8d15847f578.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_94d66c38b926609b0d2dd4a9.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls4_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:0.087998px;}
.ls3_c00042{letter-spacing:0.098482px;}
.ls2_c00042{letter-spacing:0.104482px;}
.ls1_c00042{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00042{word-spacing:-26.575517px;}
.wsd_c00042{word-spacing:-26.487518px;}
.ws0_c00042{word-spacing:0.000000px;}
.ws10_c00042{word-spacing:0.036900px;}
.wsa_c00042{word-spacing:0.042900px;}
.wsb_c00042{word-spacing:0.043999px;}
.ws4_c00042{word-spacing:0.052834px;}
.ws7_c00042{word-spacing:0.053383px;}
.ws6_c00042{word-spacing:0.063317px;}
.wsf_c00042{word-spacing:0.063866px;}
.wsc_c00042{word-spacing:0.069866px;}
.ws9_c00042{word-spacing:0.073800px;}
.ws11_c00042{word-spacing:0.079800px;}
.ws1_c00042{word-spacing:0.080350px;}
.wse_c00042{word-spacing:0.080899px;}
.ws13_c00042{word-spacing:0.119534px;}
.ws8_c00042{word-spacing:0.175997px;}
.ws12_c00042{word-spacing:0.212897px;}
.ws5_c00042{word-spacing:0.213446px;}
.ws2_c00042{word-spacing:0.219446px;}
._1_c00042{margin-left:-2316.885158px;}
._0_c00042{width:1.012286px;}
.fc5_c00042{color:rgb(207,92,0);}
.fc4_c00042{color:rgb(33,74,135);}
.fc3_c00042{color:rgb(0,0,207);}
.fc2_c00042{color:rgb(79,153,5);}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(143,89,3);}
.fs1_c00042{font-size:31.015800px;}
.fs0_c00042{font-size:43.999200px;}
.fs2_c00042{font-size:59.775600px;}
.y0_c00042{bottom:0.000000px;}
.y32_c00042{bottom:44.250000px;}
.y31_c00042{bottom:141.058500px;}
.y30_c00042{bottom:157.497000px;}
.y2f_c00042{bottom:173.935500px;}
.y2e_c00042{bottom:190.374000px;}
.y2d_c00042{bottom:206.812500px;}
.y2c_c00042{bottom:256.126500px;}
.y2b_c00042{bottom:272.191500px;}
.y2a_c00042{bottom:288.630000px;}
.y29_c00042{bottom:305.068500px;}
.y28_c00042{bottom:321.507000px;}
.y27_c00042{bottom:354.384000px;}
.y26_c00042{bottom:387.259500px;}
.y25_c00042{bottom:403.698000px;}
.y24_c00042{bottom:420.136500px;}
.y23_c00042{bottom:453.013500px;}
.y22_c00042{bottom:469.452000px;}
.y21_c00042{bottom:485.890500px;}
.y20_c00042{bottom:502.329000px;}
.y1f_c00042{bottom:518.767500px;}
.y1e_c00042{bottom:535.206000px;}
.y1d_c00042{bottom:551.643000px;}
.y1c_c00042{bottom:568.081500px;}
.y1b_c00042{bottom:600.958500px;}
.y1a_c00042{bottom:617.397000px;}
.y19_c00042{bottom:633.835500px;}
.y18_c00042{bottom:650.274000px;}
.y17_c00042{bottom:683.151000px;}
.y16_c00042{bottom:699.589500px;}
.y15_c00042{bottom:716.028000px;}
.y14_c00042{bottom:748.903500px;}
.y13_c00042{bottom:781.780500px;}
.y12_c00042{bottom:798.219000px;}
.y11_c00042{bottom:814.657500px;}
.y10_c00042{bottom:831.096000px;}
.yf_c00042{bottom:847.534500px;}
.ye_c00042{bottom:863.973000px;}
.yd_c00042{bottom:880.411500px;}
.yc_c00042{bottom:896.848500px;}
.yb_c00042{bottom:913.287000px;}
.ya_c00042{bottom:946.164000px;}
.y9_c00042{bottom:962.602500px;}
.y8_c00042{bottom:995.479500px;}
.y7_c00042{bottom:1011.918000px;}
.y6_c00042{bottom:1028.356500px;}
.y5_c00042{bottom:1044.795000px;}
.y4_c00042{bottom:1061.232000px;}
.y3_c00042{bottom:1077.670500px;}
.y2_c00042{bottom:1094.109000px;}
.y1_c00042{bottom:1110.547500px;}
.h2_c00042{height:35.190766px;}
.h3_c00042{height:36.007158px;}
.h4_c00042{height:52.332837px;}
.h0_c00042{height:1262.835000px;}
.h1_c00042{height:1263.000000px;}
.w0_c00042{width:892.920000px;}
.w1_c00042{width:893.250000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:137.122500px;}
.x2_c00042{left:150.417000px;}
.x3_c00042{left:163.713000px;}
.x4_c00042{left:177.007500px;}
.x6_c00042{left:196.948500px;}
.x5_c00042{left:369.778500px;}
.x7_c00042{left:438.984000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls4_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:0.078221pt;}
.ls3_c00042{letter-spacing:0.087539pt;}
.ls2_c00042{letter-spacing:0.092873pt;}
.ls1_c00042{letter-spacing:23.724873pt;}
.ws3_c00042{word-spacing:-23.622682pt;}
.wsd_c00042{word-spacing:-23.544461pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.ws10_c00042{word-spacing:0.032800pt;}
.wsa_c00042{word-spacing:0.038133pt;}
.wsb_c00042{word-spacing:0.039110pt;}
.ws4_c00042{word-spacing:0.046963pt;}
.ws7_c00042{word-spacing:0.047452pt;}
.ws6_c00042{word-spacing:0.056282pt;}
.wsf_c00042{word-spacing:0.056770pt;}
.wsc_c00042{word-spacing:0.062103pt;}
.ws9_c00042{word-spacing:0.065600pt;}
.ws11_c00042{word-spacing:0.070933pt;}
.ws1_c00042{word-spacing:0.071422pt;}
.wse_c00042{word-spacing:0.071910pt;}
.ws13_c00042{word-spacing:0.106253pt;}
.ws8_c00042{word-spacing:0.156442pt;}
.ws12_c00042{word-spacing:0.189242pt;}
.ws5_c00042{word-spacing:0.189730pt;}
.ws2_c00042{word-spacing:0.195063pt;}
._1_c00042{margin-left:-2059.453474pt;}
._0_c00042{width:0.899810pt;}
.fs1_c00042{font-size:27.569600pt;}
.fs0_c00042{font-size:39.110400pt;}
.fs2_c00042{font-size:53.133867pt;}
.y0_c00042{bottom:0.000000pt;}
.y32_c00042{bottom:39.333333pt;}
.y31_c00042{bottom:125.385333pt;}
.y30_c00042{bottom:139.997333pt;}
.y2f_c00042{bottom:154.609333pt;}
.y2e_c00042{bottom:169.221333pt;}
.y2d_c00042{bottom:183.833333pt;}
.y2c_c00042{bottom:227.668000pt;}
.y2b_c00042{bottom:241.948000pt;}
.y2a_c00042{bottom:256.560000pt;}
.y29_c00042{bottom:271.172000pt;}
.y28_c00042{bottom:285.784000pt;}
.y27_c00042{bottom:315.008000pt;}
.y26_c00042{bottom:344.230667pt;}
.y25_c00042{bottom:358.842667pt;}
.y24_c00042{bottom:373.454667pt;}
.y23_c00042{bottom:402.678667pt;}
.y22_c00042{bottom:417.290667pt;}
.y21_c00042{bottom:431.902667pt;}
.y20_c00042{bottom:446.514667pt;}
.y1f_c00042{bottom:461.126667pt;}
.y1e_c00042{bottom:475.738667pt;}
.y1d_c00042{bottom:490.349333pt;}
.y1c_c00042{bottom:504.961333pt;}
.y1b_c00042{bottom:534.185333pt;}
.y1a_c00042{bottom:548.797333pt;}
.y19_c00042{bottom:563.409333pt;}
.y18_c00042{bottom:578.021333pt;}
.y17_c00042{bottom:607.245333pt;}
.y16_c00042{bottom:621.857333pt;}
.y15_c00042{bottom:636.469333pt;}
.y14_c00042{bottom:665.692000pt;}
.y13_c00042{bottom:694.916000pt;}
.y12_c00042{bottom:709.528000pt;}
.y11_c00042{bottom:724.140000pt;}
.y10_c00042{bottom:738.752000pt;}
.yf_c00042{bottom:753.364000pt;}
.ye_c00042{bottom:767.976000pt;}
.yd_c00042{bottom:782.588000pt;}
.yc_c00042{bottom:797.198667pt;}
.yb_c00042{bottom:811.810667pt;}
.ya_c00042{bottom:841.034667pt;}
.y9_c00042{bottom:855.646667pt;}
.y8_c00042{bottom:884.870667pt;}
.y7_c00042{bottom:899.482667pt;}
.y6_c00042{bottom:914.094667pt;}
.y5_c00042{bottom:928.706667pt;}
.y4_c00042{bottom:943.317333pt;}
.y3_c00042{bottom:957.929333pt;}
.y2_c00042{bottom:972.541333pt;}
.y1_c00042{bottom:987.153333pt;}
.h2_c00042{height:31.280681pt;}
.h3_c00042{height:32.006363pt;}
.h4_c00042{height:46.518078pt;}
.h0_c00042{height:1122.520000pt;}
.h1_c00042{height:1122.666667pt;}
.w0_c00042{width:793.706667pt;}
.w1_c00042{width:794.000000pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:121.886667pt;}
.x2_c00042{left:133.704000pt;}
.x3_c00042{left:145.522667pt;}
.x4_c00042{left:157.340000pt;}
.x6_c00042{left:175.065333pt;}
.x5_c00042{left:328.692000pt;}
.x7_c00042{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e617d76a974965a41a87784.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.014648;font-style:normal;font-weight:normal;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_250c4ce32dd54e3142e3f988.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.083496;font-style:normal;font-weight:normal;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_cc1434f760d279dbd70c7e82.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.048828;font-style:normal;font-weight:normal;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_ccbdc3f07cb4dd0d0854fc2f.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls4_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:0.087998px;}
.ls1_c00043{letter-spacing:0.098482px;}
.ls2_c00043{letter-spacing:0.104482px;}
.ls3_c00043{letter-spacing:26.690482px;}
.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;}
}
.ws1_c00043{word-spacing:-26.575517px;}
.wsf_c00043{word-spacing:-26.487518px;}
.ws7_c00043{word-spacing:0.000000px;}
.ws11_c00043{word-spacing:0.036900px;}
.wse_c00043{word-spacing:0.042900px;}
.ws0_c00043{word-spacing:0.043999px;}
.wsb_c00043{word-spacing:0.052834px;}
.wsc_c00043{word-spacing:0.053383px;}
.ws5_c00043{word-spacing:0.063317px;}
.ws10_c00043{word-spacing:0.063866px;}
.ws4_c00043{word-spacing:0.069866px;}
.wsd_c00043{word-spacing:0.073800px;}
.ws9_c00043{word-spacing:0.079800px;}
.wsa_c00043{word-spacing:0.080350px;}
.ws2_c00043{word-spacing:0.080899px;}
.ws8_c00043{word-spacing:0.175997px;}
.ws12_c00043{word-spacing:0.212897px;}
.ws3_c00043{word-spacing:0.213446px;}
.ws6_c00043{word-spacing:0.219446px;}
._0_c00043{width:1.012286px;}
.fc5_c00043{color:rgb(0,0,207);}
.fc4_c00043{color:rgb(207,92,0);}
.fc3_c00043{color:rgb(33,74,135);}
.fc2_c00043{color:rgb(79,153,5);}
.fc1_c00043{color:rgb(0,0,0);}
.fc0_c00043{color:rgb(143,89,3);}
.fs0_c00043{font-size:43.999200px;}
.fs1_c00043{font-size:59.775600px;}
.y0_c00043{bottom:0.000000px;}
.y31_c00043{bottom:44.250000px;}
.y30_c00043{bottom:91.369500px;}
.y2f_c00043{bottom:107.808000px;}
.y2e_c00043{bottom:124.246500px;}
.y2d_c00043{bottom:140.685000px;}
.y2c_c00043{bottom:157.123500px;}
.y2b_c00043{bottom:190.000500px;}
.y2a_c00043{bottom:206.437500px;}
.y29_c00043{bottom:222.876000px;}
.y28_c00043{bottom:239.314500px;}
.y27_c00043{bottom:272.191500px;}
.y26_c00043{bottom:288.630000px;}
.y25_c00043{bottom:305.068500px;}
.y24_c00043{bottom:337.945500px;}
.y23_c00043{bottom:370.822500px;}
.y22_c00043{bottom:387.259500px;}
.y21_c00043{bottom:403.698000px;}
.y20_c00043{bottom:420.136500px;}
.y1f_c00043{bottom:436.575000px;}
.y1e_c00043{bottom:453.013500px;}
.y1d_c00043{bottom:469.452000px;}
.y1c_c00043{bottom:485.890500px;}
.y1b_c00043{bottom:502.329000px;}
.y1a_c00043{bottom:535.206000px;}
.y19_c00043{bottom:551.643000px;}
.y18_c00043{bottom:584.520000px;}
.y17_c00043{bottom:600.958500px;}
.y16_c00043{bottom:617.397000px;}
.y15_c00043{bottom:633.835500px;}
.y14_c00043{bottom:650.274000px;}
.y13_c00043{bottom:666.712500px;}
.y12_c00043{bottom:683.151000px;}
.y11_c00043{bottom:699.589500px;}
.y10_c00043{bottom:765.342000px;}
.yf_c00043{bottom:781.780500px;}
.ye_c00043{bottom:814.657500px;}
.yd_c00043{bottom:831.096000px;}
.yc_c00043{bottom:847.534500px;}
.yb_c00043{bottom:863.973000px;}
.ya_c00043{bottom:880.411500px;}
.y9_c00043{bottom:896.848500px;}
.y8_c00043{bottom:929.725500px;}
.y7_c00043{bottom:962.602500px;}
.y6_c00043{bottom:995.479500px;}
.y5_c00043{bottom:1011.918000px;}
.y4_c00043{bottom:1028.356500px;}
.y3_c00043{bottom:1061.232000px;}
.y2_c00043{bottom:1077.670500px;}
.y1_c00043{bottom:1143.424500px;}
.h2_c00043{height:35.190766px;}
.h3_c00043{height:36.007158px;}
.h4_c00043{height:52.332837px;}
.h0_c00043{height:1262.835000px;}
.h1_c00043{height:1263.000000px;}
.w0_c00043{width:892.920000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:137.122500px;}
.x3_c00043{left:150.417000px;}
.x4_c00043{left:163.713000px;}
.x5_c00043{left:177.007500px;}
.x2_c00043{left:256.774500px;}
.x6_c00043{left:438.984000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls4_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:0.078221pt;}
.ls1_c00043{letter-spacing:0.087539pt;}
.ls2_c00043{letter-spacing:0.092873pt;}
.ls3_c00043{letter-spacing:23.724873pt;}
.ws1_c00043{word-spacing:-23.622682pt;}
.wsf_c00043{word-spacing:-23.544461pt;}
.ws7_c00043{word-spacing:0.000000pt;}
.ws11_c00043{word-spacing:0.032800pt;}
.wse_c00043{word-spacing:0.038133pt;}
.ws0_c00043{word-spacing:0.039110pt;}
.wsb_c00043{word-spacing:0.046963pt;}
.wsc_c00043{word-spacing:0.047452pt;}
.ws5_c00043{word-spacing:0.056282pt;}
.ws10_c00043{word-spacing:0.056770pt;}
.ws4_c00043{word-spacing:0.062103pt;}
.wsd_c00043{word-spacing:0.065600pt;}
.ws9_c00043{word-spacing:0.070933pt;}
.wsa_c00043{word-spacing:0.071422pt;}
.ws2_c00043{word-spacing:0.071910pt;}
.ws8_c00043{word-spacing:0.156442pt;}
.ws12_c00043{word-spacing:0.189242pt;}
.ws3_c00043{word-spacing:0.189730pt;}
.ws6_c00043{word-spacing:0.195063pt;}
._0_c00043{width:0.899810pt;}
.fs0_c00043{font-size:39.110400pt;}
.fs1_c00043{font-size:53.133867pt;}
.y0_c00043{bottom:0.000000pt;}
.y31_c00043{bottom:39.333333pt;}
.y30_c00043{bottom:81.217333pt;}
.y2f_c00043{bottom:95.829333pt;}
.y2e_c00043{bottom:110.441333pt;}
.y2d_c00043{bottom:125.053333pt;}
.y2c_c00043{bottom:139.665333pt;}
.y2b_c00043{bottom:168.889333pt;}
.y2a_c00043{bottom:183.500000pt;}
.y29_c00043{bottom:198.112000pt;}
.y28_c00043{bottom:212.724000pt;}
.y27_c00043{bottom:241.948000pt;}
.y26_c00043{bottom:256.560000pt;}
.y25_c00043{bottom:271.172000pt;}
.y24_c00043{bottom:300.396000pt;}
.y23_c00043{bottom:329.620000pt;}
.y22_c00043{bottom:344.230667pt;}
.y21_c00043{bottom:358.842667pt;}
.y20_c00043{bottom:373.454667pt;}
.y1f_c00043{bottom:388.066667pt;}
.y1e_c00043{bottom:402.678667pt;}
.y1d_c00043{bottom:417.290667pt;}
.y1c_c00043{bottom:431.902667pt;}
.y1b_c00043{bottom:446.514667pt;}
.y1a_c00043{bottom:475.738667pt;}
.y19_c00043{bottom:490.349333pt;}
.y18_c00043{bottom:519.573333pt;}
.y17_c00043{bottom:534.185333pt;}
.y16_c00043{bottom:548.797333pt;}
.y15_c00043{bottom:563.409333pt;}
.y14_c00043{bottom:578.021333pt;}
.y13_c00043{bottom:592.633333pt;}
.y12_c00043{bottom:607.245333pt;}
.y11_c00043{bottom:621.857333pt;}
.y10_c00043{bottom:680.304000pt;}
.yf_c00043{bottom:694.916000pt;}
.ye_c00043{bottom:724.140000pt;}
.yd_c00043{bottom:738.752000pt;}
.yc_c00043{bottom:753.364000pt;}
.yb_c00043{bottom:767.976000pt;}
.ya_c00043{bottom:782.588000pt;}
.y9_c00043{bottom:797.198667pt;}
.y8_c00043{bottom:826.422667pt;}
.y7_c00043{bottom:855.646667pt;}
.y6_c00043{bottom:884.870667pt;}
.y5_c00043{bottom:899.482667pt;}
.y4_c00043{bottom:914.094667pt;}
.y3_c00043{bottom:943.317333pt;}
.y2_c00043{bottom:957.929333pt;}
.y1_c00043{bottom:1016.377333pt;}
.h2_c00043{height:31.280681pt;}
.h3_c00043{height:32.006363pt;}
.h4_c00043{height:46.518078pt;}
.h0_c00043{height:1122.520000pt;}
.h1_c00043{height:1122.666667pt;}
.w0_c00043{width:793.706667pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:121.886667pt;}
.x3_c00043{left:133.704000pt;}
.x4_c00043{left:145.522667pt;}
.x5_c00043{left:157.340000pt;}
.x2_c00043{left:228.244000pt;}
.x6_c00043{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32eda10d91493eb81c41a184.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.083496;font-style:normal;font-weight:normal;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_ff9fb279ecd6dc85b29f10e2.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.048828;font-style:normal;font-weight:normal;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_0f377a941e7ae0313f31739a.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.014648;font-style:normal;font-weight:normal;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_b98d1e42057a901635f5e63c.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls4_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.087998px;}
.ls2_c00044{letter-spacing:0.098482px;}
.ls3_c00044{letter-spacing:0.104482px;}
.ls1_c00044{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00044{word-spacing:-26.575517px;}
.ws7_c00044{word-spacing:-26.487518px;}
.ws0_c00044{word-spacing:0.000000px;}
.wsf_c00044{word-spacing:0.042900px;}
.ws2_c00044{word-spacing:0.043999px;}
.wsc_c00044{word-spacing:0.052834px;}
.wsd_c00044{word-spacing:0.053383px;}
.wsa_c00044{word-spacing:0.063317px;}
.ws9_c00044{word-spacing:0.069866px;}
.wse_c00044{word-spacing:0.073800px;}
.ws6_c00044{word-spacing:0.079800px;}
.wsb_c00044{word-spacing:0.080350px;}
.ws8_c00044{word-spacing:0.080899px;}
.ws5_c00044{word-spacing:0.175997px;}
.ws4_c00044{word-spacing:0.213446px;}
.ws1_c00044{word-spacing:0.219446px;}
._0_c00044{width:1.113053px;}
.fc5_c00044{color:rgb(79,153,5);}
.fc4_c00044{color:rgb(143,89,3);}
.fc3_c00044{color:rgb(0,0,207);}
.fc2_c00044{color:rgb(207,92,0);}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(33,74,135);}
.fs0_c00044{font-size:43.999200px;}
.fs1_c00044{font-size:59.775600px;}
.y0_c00044{bottom:0.000000px;}
.y30_c00044{bottom:44.250000px;}
.y2f_c00044{bottom:91.369500px;}
.y2e_c00044{bottom:107.808000px;}
.y2d_c00044{bottom:124.246500px;}
.y2c_c00044{bottom:140.685000px;}
.y2b_c00044{bottom:157.123500px;}
.y2a_c00044{bottom:190.000500px;}
.y29_c00044{bottom:206.437500px;}
.y28_c00044{bottom:239.314500px;}
.y27_c00044{bottom:255.753000px;}
.y26_c00044{bottom:272.191500px;}
.y25_c00044{bottom:288.630000px;}
.y24_c00044{bottom:305.068500px;}
.y23_c00044{bottom:321.507000px;}
.y22_c00044{bottom:337.945500px;}
.y21_c00044{bottom:354.384000px;}
.y20_c00044{bottom:420.136500px;}
.y1f_c00044{bottom:436.575000px;}
.y1e_c00044{bottom:469.452000px;}
.y1d_c00044{bottom:485.890500px;}
.y1c_c00044{bottom:502.329000px;}
.y1b_c00044{bottom:518.767500px;}
.y1a_c00044{bottom:535.206000px;}
.y19_c00044{bottom:551.643000px;}
.y18_c00044{bottom:584.520000px;}
.y17_c00044{bottom:617.397000px;}
.y16_c00044{bottom:650.274000px;}
.y15_c00044{bottom:666.712500px;}
.y14_c00044{bottom:683.151000px;}
.y13_c00044{bottom:716.028000px;}
.y12_c00044{bottom:732.465000px;}
.y11_c00044{bottom:781.780500px;}
.y10_c00044{bottom:831.096000px;}
.yf_c00044{bottom:847.534500px;}
.ye_c00044{bottom:863.973000px;}
.yd_c00044{bottom:880.411500px;}
.yc_c00044{bottom:896.848500px;}
.yb_c00044{bottom:946.164000px;}
.ya_c00044{bottom:962.602500px;}
.y9_c00044{bottom:979.041000px;}
.y8_c00044{bottom:995.479500px;}
.y7_c00044{bottom:1028.356500px;}
.y6_c00044{bottom:1061.232000px;}
.y5_c00044{bottom:1077.670500px;}
.y4_c00044{bottom:1094.109000px;}
.y3_c00044{bottom:1126.986000px;}
.y2_c00044{bottom:1143.424500px;}
.y1_c00044{bottom:1159.863000px;}
.h3_c00044{height:35.190766px;}
.h2_c00044{height:36.007158px;}
.h4_c00044{height:52.332837px;}
.h0_c00044{height:1262.835000px;}
.h1_c00044{height:1263.000000px;}
.w0_c00044{width:892.920000px;}
.w1_c00044{width:893.250000px;}
.x0_c00044{left:0.000000px;}
.x4_c00044{left:137.122500px;}
.x3_c00044{left:150.417000px;}
.x2_c00044{left:163.713000px;}
.x1_c00044{left:177.007500px;}
.x6_c00044{left:196.948500px;}
.x7_c00044{left:256.774500px;}
.x5_c00044{left:263.421000px;}
.x8_c00044{left:438.984000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls4_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.078221pt;}
.ls2_c00044{letter-spacing:0.087539pt;}
.ls3_c00044{letter-spacing:0.092873pt;}
.ls1_c00044{letter-spacing:23.724873pt;}
.ws3_c00044{word-spacing:-23.622682pt;}
.ws7_c00044{word-spacing:-23.544461pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.wsf_c00044{word-spacing:0.038133pt;}
.ws2_c00044{word-spacing:0.039110pt;}
.wsc_c00044{word-spacing:0.046963pt;}
.wsd_c00044{word-spacing:0.047452pt;}
.wsa_c00044{word-spacing:0.056282pt;}
.ws9_c00044{word-spacing:0.062103pt;}
.wse_c00044{word-spacing:0.065600pt;}
.ws6_c00044{word-spacing:0.070933pt;}
.wsb_c00044{word-spacing:0.071422pt;}
.ws8_c00044{word-spacing:0.071910pt;}
.ws5_c00044{word-spacing:0.156442pt;}
.ws4_c00044{word-spacing:0.189730pt;}
.ws1_c00044{word-spacing:0.195063pt;}
._0_c00044{width:0.989380pt;}
.fs0_c00044{font-size:39.110400pt;}
.fs1_c00044{font-size:53.133867pt;}
.y0_c00044{bottom:0.000000pt;}
.y30_c00044{bottom:39.333333pt;}
.y2f_c00044{bottom:81.217333pt;}
.y2e_c00044{bottom:95.829333pt;}
.y2d_c00044{bottom:110.441333pt;}
.y2c_c00044{bottom:125.053333pt;}
.y2b_c00044{bottom:139.665333pt;}
.y2a_c00044{bottom:168.889333pt;}
.y29_c00044{bottom:183.500000pt;}
.y28_c00044{bottom:212.724000pt;}
.y27_c00044{bottom:227.336000pt;}
.y26_c00044{bottom:241.948000pt;}
.y25_c00044{bottom:256.560000pt;}
.y24_c00044{bottom:271.172000pt;}
.y23_c00044{bottom:285.784000pt;}
.y22_c00044{bottom:300.396000pt;}
.y21_c00044{bottom:315.008000pt;}
.y20_c00044{bottom:373.454667pt;}
.y1f_c00044{bottom:388.066667pt;}
.y1e_c00044{bottom:417.290667pt;}
.y1d_c00044{bottom:431.902667pt;}
.y1c_c00044{bottom:446.514667pt;}
.y1b_c00044{bottom:461.126667pt;}
.y1a_c00044{bottom:475.738667pt;}
.y19_c00044{bottom:490.349333pt;}
.y18_c00044{bottom:519.573333pt;}
.y17_c00044{bottom:548.797333pt;}
.y16_c00044{bottom:578.021333pt;}
.y15_c00044{bottom:592.633333pt;}
.y14_c00044{bottom:607.245333pt;}
.y13_c00044{bottom:636.469333pt;}
.y12_c00044{bottom:651.080000pt;}
.y11_c00044{bottom:694.916000pt;}
.y10_c00044{bottom:738.752000pt;}
.yf_c00044{bottom:753.364000pt;}
.ye_c00044{bottom:767.976000pt;}
.yd_c00044{bottom:782.588000pt;}
.yc_c00044{bottom:797.198667pt;}
.yb_c00044{bottom:841.034667pt;}
.ya_c00044{bottom:855.646667pt;}
.y9_c00044{bottom:870.258667pt;}
.y8_c00044{bottom:884.870667pt;}
.y7_c00044{bottom:914.094667pt;}
.y6_c00044{bottom:943.317333pt;}
.y5_c00044{bottom:957.929333pt;}
.y4_c00044{bottom:972.541333pt;}
.y3_c00044{bottom:1001.765333pt;}
.y2_c00044{bottom:1016.377333pt;}
.y1_c00044{bottom:1030.989333pt;}
.h3_c00044{height:31.280681pt;}
.h2_c00044{height:32.006363pt;}
.h4_c00044{height:46.518078pt;}
.h0_c00044{height:1122.520000pt;}
.h1_c00044{height:1122.666667pt;}
.w0_c00044{width:793.706667pt;}
.w1_c00044{width:794.000000pt;}
.x0_c00044{left:0.000000pt;}
.x4_c00044{left:121.886667pt;}
.x3_c00044{left:133.704000pt;}
.x2_c00044{left:145.522667pt;}
.x1_c00044{left:157.340000pt;}
.x6_c00044{left:175.065333pt;}
.x7_c00044{left:228.244000pt;}
.x5_c00044{left:234.152000pt;}
.x8_c00044{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06faf8feb3b503aab5991e9b.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.083496;font-style:normal;font-weight:normal;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_8cb1583314ebcbddd9db2380.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_f09f89c2eba0b1b3592dbf7e.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00045;src:url('chunks/assets/font_ccb539184808d62e44eb5818.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00045;src:url('chunks/assets/font_3f9e041ddfbc996d470b0a7f.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls4_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.087998px;}
.ls1_c00045{letter-spacing:0.098482px;}
.ls3_c00045{letter-spacing:0.104482px;}
.ls2_c00045{letter-spacing:26.690482px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00045{word-spacing:-26.575517px;}
.ws7_c00045{word-spacing:-26.487518px;}
.ws2_c00045{word-spacing:0.000000px;}
.wsa_c00045{word-spacing:0.036900px;}
.ws0_c00045{word-spacing:0.043999px;}
.ws5_c00045{word-spacing:0.063317px;}
.ws9_c00045{word-spacing:0.063866px;}
.ws3_c00045{word-spacing:0.069866px;}
.wsb_c00045{word-spacing:0.079800px;}
.ws8_c00045{word-spacing:0.080899px;}
.wse_c00045{word-spacing:0.092568px;}
.ws6_c00045{word-spacing:0.175997px;}
.wsc_c00045{word-spacing:0.212897px;}
.ws4_c00045{word-spacing:0.213446px;}
.wsd_c00045{word-spacing:0.219446px;}
._1_c00045{margin-left:-2210.683858px;}
._0_c00045{width:1.113053px;}
.fc5_c00045{color:rgb(0,0,207);}
.fc4_c00045{color:rgb(143,89,3);}
.fc3_c00045{color:rgb(207,92,0);}
.fc2_c00045{color:rgb(79,153,5);}
.fc1_c00045{color:rgb(0,0,0);}
.fc0_c00045{color:rgb(33,74,135);}
.fs1_c00045{font-size:31.015800px;}
.fs0_c00045{font-size:43.999200px;}
.fs2_c00045{font-size:59.775600px;}
.y0_c00045{bottom:0.000000px;}
.y31_c00045{bottom:44.250000px;}
.y30_c00045{bottom:91.743000px;}
.y2f_c00045{bottom:108.181500px;}
.y2e_c00045{bottom:124.620000px;}
.y2d_c00045{bottom:141.058500px;}
.y2c_c00045{bottom:157.497000px;}
.y2b_c00045{bottom:173.935500px;}
.y2a_c00045{bottom:206.812500px;}
.y29_c00045{bottom:239.688000px;}
.y28_c00045{bottom:272.565000px;}
.y27_c00045{bottom:289.003500px;}
.y26_c00045{bottom:305.442000px;}
.y25_c00045{bottom:338.319000px;}
.y24_c00045{bottom:354.757500px;}
.y23_c00045{bottom:404.071500px;}
.y22_c00045{bottom:469.825500px;}
.y21_c00045{bottom:486.264000px;}
.y20_c00045{bottom:502.702500px;}
.y1f_c00045{bottom:519.141000px;}
.y1e_c00045{bottom:535.579500px;}
.y1d_c00045{bottom:584.893500px;}
.y1c_c00045{bottom:600.958500px;}
.y1b_c00045{bottom:617.397000px;}
.y1a_c00045{bottom:633.835500px;}
.y19_c00045{bottom:650.274000px;}
.y18_c00045{bottom:683.151000px;}
.y17_c00045{bottom:716.028000px;}
.y16_c00045{bottom:732.465000px;}
.y15_c00045{bottom:748.903500px;}
.y14_c00045{bottom:781.780500px;}
.y13_c00045{bottom:798.219000px;}
.y12_c00045{bottom:814.657500px;}
.y11_c00045{bottom:831.096000px;}
.y10_c00045{bottom:847.534500px;}
.yf_c00045{bottom:863.973000px;}
.ye_c00045{bottom:880.411500px;}
.yd_c00045{bottom:896.848500px;}
.yc_c00045{bottom:929.725500px;}
.yb_c00045{bottom:946.164000px;}
.ya_c00045{bottom:962.602500px;}
.y9_c00045{bottom:979.041000px;}
.y8_c00045{bottom:1011.918000px;}
.y7_c00045{bottom:1028.356500px;}
.y6_c00045{bottom:1044.795000px;}
.y5_c00045{bottom:1077.670500px;}
.y4_c00045{bottom:1110.547500px;}
.y3_c00045{bottom:1126.986000px;}
.y2_c00045{bottom:1143.424500px;}
.y1_c00045{bottom:1159.863000px;}
.h3_c00045{height:35.190766px;}
.h2_c00045{height:36.007158px;}
.h4_c00045{height:52.332837px;}
.h0_c00045{height:1262.835000px;}
.h1_c00045{height:1263.000000px;}
.w0_c00045{width:892.920000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x4_c00045{left:137.122500px;}
.x2_c00045{left:150.417000px;}
.x1_c00045{left:163.713000px;}
.x3_c00045{left:177.007500px;}
.x6_c00045{left:196.948500px;}
.x7_c00045{left:256.774500px;}
.x5_c00045{left:356.484000px;}
.x8_c00045{left:438.984000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls4_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.078221pt;}
.ls1_c00045{letter-spacing:0.087539pt;}
.ls3_c00045{letter-spacing:0.092873pt;}
.ls2_c00045{letter-spacing:23.724873pt;}
.ws1_c00045{word-spacing:-23.622682pt;}
.ws7_c00045{word-spacing:-23.544461pt;}
.ws2_c00045{word-spacing:0.000000pt;}
.wsa_c00045{word-spacing:0.032800pt;}
.ws0_c00045{word-spacing:0.039110pt;}
.ws5_c00045{word-spacing:0.056282pt;}
.ws9_c00045{word-spacing:0.056770pt;}
.ws3_c00045{word-spacing:0.062103pt;}
.wsb_c00045{word-spacing:0.070933pt;}
.ws8_c00045{word-spacing:0.071910pt;}
.wse_c00045{word-spacing:0.082283pt;}
.ws6_c00045{word-spacing:0.156442pt;}
.wsc_c00045{word-spacing:0.189242pt;}
.ws4_c00045{word-spacing:0.189730pt;}
.wsd_c00045{word-spacing:0.195063pt;}
._1_c00045{margin-left:-1965.052318pt;}
._0_c00045{width:0.989380pt;}
.fs1_c00045{font-size:27.569600pt;}
.fs0_c00045{font-size:39.110400pt;}
.fs2_c00045{font-size:53.133867pt;}
.y0_c00045{bottom:0.000000pt;}
.y31_c00045{bottom:39.333333pt;}
.y30_c00045{bottom:81.549333pt;}
.y2f_c00045{bottom:96.161333pt;}
.y2e_c00045{bottom:110.773333pt;}
.y2d_c00045{bottom:125.385333pt;}
.y2c_c00045{bottom:139.997333pt;}
.y2b_c00045{bottom:154.609333pt;}
.y2a_c00045{bottom:183.833333pt;}
.y29_c00045{bottom:213.056000pt;}
.y28_c00045{bottom:242.280000pt;}
.y27_c00045{bottom:256.892000pt;}
.y26_c00045{bottom:271.504000pt;}
.y25_c00045{bottom:300.728000pt;}
.y24_c00045{bottom:315.340000pt;}
.y23_c00045{bottom:359.174667pt;}
.y22_c00045{bottom:417.622667pt;}
.y21_c00045{bottom:432.234667pt;}
.y20_c00045{bottom:446.846667pt;}
.y1f_c00045{bottom:461.458667pt;}
.y1e_c00045{bottom:476.070667pt;}
.y1d_c00045{bottom:519.905333pt;}
.y1c_c00045{bottom:534.185333pt;}
.y1b_c00045{bottom:548.797333pt;}
.y1a_c00045{bottom:563.409333pt;}
.y19_c00045{bottom:578.021333pt;}
.y18_c00045{bottom:607.245333pt;}
.y17_c00045{bottom:636.469333pt;}
.y16_c00045{bottom:651.080000pt;}
.y15_c00045{bottom:665.692000pt;}
.y14_c00045{bottom:694.916000pt;}
.y13_c00045{bottom:709.528000pt;}
.y12_c00045{bottom:724.140000pt;}
.y11_c00045{bottom:738.752000pt;}
.y10_c00045{bottom:753.364000pt;}
.yf_c00045{bottom:767.976000pt;}
.ye_c00045{bottom:782.588000pt;}
.yd_c00045{bottom:797.198667pt;}
.yc_c00045{bottom:826.422667pt;}
.yb_c00045{bottom:841.034667pt;}
.ya_c00045{bottom:855.646667pt;}
.y9_c00045{bottom:870.258667pt;}
.y8_c00045{bottom:899.482667pt;}
.y7_c00045{bottom:914.094667pt;}
.y6_c00045{bottom:928.706667pt;}
.y5_c00045{bottom:957.929333pt;}
.y4_c00045{bottom:987.153333pt;}
.y3_c00045{bottom:1001.765333pt;}
.y2_c00045{bottom:1016.377333pt;}
.y1_c00045{bottom:1030.989333pt;}
.h3_c00045{height:31.280681pt;}
.h2_c00045{height:32.006363pt;}
.h4_c00045{height:46.518078pt;}
.h0_c00045{height:1122.520000pt;}
.h1_c00045{height:1122.666667pt;}
.w0_c00045{width:793.706667pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x4_c00045{left:121.886667pt;}
.x2_c00045{left:133.704000pt;}
.x1_c00045{left:145.522667pt;}
.x3_c00045{left:157.340000pt;}
.x6_c00045{left:175.065333pt;}
.x7_c00045{left:228.244000pt;}
.x5_c00045{left:316.874667pt;}
.x8_c00045{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f25213da4dcc7899d897c65b.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.083496;font-style:normal;font-weight:normal;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_0568649fc4039fefb3c25a12.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.048828;font-style:normal;font-weight:normal;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_67eecce6db772fe08f0068bd.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.014648;font-style:normal;font-weight:normal;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_852ed5ff81d249ea8171f41f.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls5_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.087998px;}
.ls2_c00046{letter-spacing:0.098482px;}
.ls1_c00046{letter-spacing:0.104482px;}
.ls3_c00046{letter-spacing:26.690482px;}
.ls4_c00046{letter-spacing:26.696482px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00046{word-spacing:-26.575517px;}
.ws3_c00046{word-spacing:-26.487518px;}
.ws9_c00046{word-spacing:0.000000px;}
.ws17_c00046{word-spacing:0.036900px;}
.ws13_c00046{word-spacing:0.042900px;}
.ws8_c00046{word-spacing:0.043999px;}
.wsf_c00046{word-spacing:0.052834px;}
.ws11_c00046{word-spacing:0.053383px;}
.ws10_c00046{word-spacing:0.063317px;}
.ws16_c00046{word-spacing:0.063866px;}
.wsc_c00046{word-spacing:0.064416px;}
.ws4_c00046{word-spacing:0.066151px;}
.ws14_c00046{word-spacing:0.069866px;}
.ws7_c00046{word-spacing:0.070416px;}
.ws12_c00046{word-spacing:0.073800px;}
.ws0_c00046{word-spacing:0.079800px;}
.wsd_c00046{word-spacing:0.080350px;}
.ws15_c00046{word-spacing:0.080899px;}
.wse_c00046{word-spacing:0.109601px;}
.wsa_c00046{word-spacing:0.175997px;}
.wsb_c00046{word-spacing:0.212897px;}
.ws1_c00046{word-spacing:0.213446px;}
.ws5_c00046{word-spacing:0.219446px;}
.ws6_c00046{word-spacing:0.219996px;}
._0_c00046{width:1.012286px;}
.fc5_c00046{color:rgb(207,92,0);}
.fc4_c00046{color:rgb(79,153,5);}
.fc3_c00046{color:rgb(0,0,207);}
.fc2_c00046{color:rgb(33,74,135);}
.fc1_c00046{color:rgb(143,89,3);}
.fc0_c00046{color:rgb(0,0,0);}
.fs0_c00046{font-size:43.999200px;}
.fs1_c00046{font-size:59.775600px;}
.y0_c00046{bottom:0.000000px;}
.y37_c00046{bottom:44.250000px;}
.y36_c00046{bottom:91.369500px;}
.y35_c00046{bottom:107.808000px;}
.y34_c00046{bottom:124.246500px;}
.y33_c00046{bottom:140.685000px;}
.y32_c00046{bottom:173.562000px;}
.y31_c00046{bottom:190.000500px;}
.y30_c00046{bottom:206.437500px;}
.y2f_c00046{bottom:222.876000px;}
.y2e_c00046{bottom:239.314500px;}
.y2d_c00046{bottom:255.753000px;}
.y2c_c00046{bottom:272.191500px;}
.y2b_c00046{bottom:288.630000px;}
.y2a_c00046{bottom:321.507000px;}
.y29_c00046{bottom:337.945500px;}
.y28_c00046{bottom:354.384000px;}
.y27_c00046{bottom:370.822500px;}
.y26_c00046{bottom:403.698000px;}
.y25_c00046{bottom:420.136500px;}
.y24_c00046{bottom:436.575000px;}
.y23_c00046{bottom:469.452000px;}
.y22_c00046{bottom:502.329000px;}
.y21_c00046{bottom:518.767500px;}
.y20_c00046{bottom:535.206000px;}
.y1f_c00046{bottom:551.643000px;}
.y1e_c00046{bottom:568.081500px;}
.y1d_c00046{bottom:584.520000px;}
.y1c_c00046{bottom:600.958500px;}
.y1b_c00046{bottom:617.397000px;}
.y1a_c00046{bottom:633.835500px;}
.y19_c00046{bottom:666.712500px;}
.y18_c00046{bottom:683.151000px;}
.y17_c00046{bottom:716.028000px;}
.y16_c00046{bottom:732.465000px;}
.y15_c00046{bottom:748.903500px;}
.y14_c00046{bottom:765.342000px;}
.y13_c00046{bottom:781.780500px;}
.y12_c00046{bottom:798.219000px;}
.y11_c00046{bottom:814.657500px;}
.y10_c00046{bottom:831.096000px;}
.yf_c00046{bottom:880.411500px;}
.ye_c00046{bottom:896.848500px;}
.yd_c00046{bottom:913.287000px;}
.yc_c00046{bottom:929.725500px;}
.yb_c00046{bottom:946.164000px;}
.ya_c00046{bottom:962.602500px;}
.y9_c00046{bottom:979.041000px;}
.y8_c00046{bottom:995.479500px;}
.y7_c00046{bottom:1011.918000px;}
.y6_c00046{bottom:1028.356500px;}
.y5_c00046{bottom:1044.795000px;}
.y4_c00046{bottom:1061.232000px;}
.y3_c00046{bottom:1094.109000px;}
.y2_c00046{bottom:1126.986000px;}
.y1_c00046{bottom:1143.424500px;}
.h3_c00046{height:35.190766px;}
.h2_c00046{height:36.007158px;}
.h4_c00046{height:52.332837px;}
.h0_c00046{height:1262.835000px;}
.h1_c00046{height:1263.000000px;}
.w0_c00046{width:892.920000px;}
.w1_c00046{width:893.250000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:137.122500px;}
.x2_c00046{left:150.417000px;}
.x3_c00046{left:163.713000px;}
.x4_c00046{left:177.007500px;}
.x5_c00046{left:438.984000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls5_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.078221pt;}
.ls2_c00046{letter-spacing:0.087539pt;}
.ls1_c00046{letter-spacing:0.092873pt;}
.ls3_c00046{letter-spacing:23.724873pt;}
.ls4_c00046{letter-spacing:23.730206pt;}
.ws2_c00046{word-spacing:-23.622682pt;}
.ws3_c00046{word-spacing:-23.544461pt;}
.ws9_c00046{word-spacing:0.000000pt;}
.ws17_c00046{word-spacing:0.032800pt;}
.ws13_c00046{word-spacing:0.038133pt;}
.ws8_c00046{word-spacing:0.039110pt;}
.wsf_c00046{word-spacing:0.046963pt;}
.ws11_c00046{word-spacing:0.047452pt;}
.ws10_c00046{word-spacing:0.056282pt;}
.ws16_c00046{word-spacing:0.056770pt;}
.wsc_c00046{word-spacing:0.057259pt;}
.ws4_c00046{word-spacing:0.058801pt;}
.ws14_c00046{word-spacing:0.062103pt;}
.ws7_c00046{word-spacing:0.062592pt;}
.ws12_c00046{word-spacing:0.065600pt;}
.ws0_c00046{word-spacing:0.070933pt;}
.wsd_c00046{word-spacing:0.071422pt;}
.ws15_c00046{word-spacing:0.071910pt;}
.wse_c00046{word-spacing:0.097423pt;}
.wsa_c00046{word-spacing:0.156442pt;}
.wsb_c00046{word-spacing:0.189242pt;}
.ws1_c00046{word-spacing:0.189730pt;}
.ws5_c00046{word-spacing:0.195063pt;}
.ws6_c00046{word-spacing:0.195552pt;}
._0_c00046{width:0.899810pt;}
.fs0_c00046{font-size:39.110400pt;}
.fs1_c00046{font-size:53.133867pt;}
.y0_c00046{bottom:0.000000pt;}
.y37_c00046{bottom:39.333333pt;}
.y36_c00046{bottom:81.217333pt;}
.y35_c00046{bottom:95.829333pt;}
.y34_c00046{bottom:110.441333pt;}
.y33_c00046{bottom:125.053333pt;}
.y32_c00046{bottom:154.277333pt;}
.y31_c00046{bottom:168.889333pt;}
.y30_c00046{bottom:183.500000pt;}
.y2f_c00046{bottom:198.112000pt;}
.y2e_c00046{bottom:212.724000pt;}
.y2d_c00046{bottom:227.336000pt;}
.y2c_c00046{bottom:241.948000pt;}
.y2b_c00046{bottom:256.560000pt;}
.y2a_c00046{bottom:285.784000pt;}
.y29_c00046{bottom:300.396000pt;}
.y28_c00046{bottom:315.008000pt;}
.y27_c00046{bottom:329.620000pt;}
.y26_c00046{bottom:358.842667pt;}
.y25_c00046{bottom:373.454667pt;}
.y24_c00046{bottom:388.066667pt;}
.y23_c00046{bottom:417.290667pt;}
.y22_c00046{bottom:446.514667pt;}
.y21_c00046{bottom:461.126667pt;}
.y20_c00046{bottom:475.738667pt;}
.y1f_c00046{bottom:490.349333pt;}
.y1e_c00046{bottom:504.961333pt;}
.y1d_c00046{bottom:519.573333pt;}
.y1c_c00046{bottom:534.185333pt;}
.y1b_c00046{bottom:548.797333pt;}
.y1a_c00046{bottom:563.409333pt;}
.y19_c00046{bottom:592.633333pt;}
.y18_c00046{bottom:607.245333pt;}
.y17_c00046{bottom:636.469333pt;}
.y16_c00046{bottom:651.080000pt;}
.y15_c00046{bottom:665.692000pt;}
.y14_c00046{bottom:680.304000pt;}
.y13_c00046{bottom:694.916000pt;}
.y12_c00046{bottom:709.528000pt;}
.y11_c00046{bottom:724.140000pt;}
.y10_c00046{bottom:738.752000pt;}
.yf_c00046{bottom:782.588000pt;}
.ye_c00046{bottom:797.198667pt;}
.yd_c00046{bottom:811.810667pt;}
.yc_c00046{bottom:826.422667pt;}
.yb_c00046{bottom:841.034667pt;}
.ya_c00046{bottom:855.646667pt;}
.y9_c00046{bottom:870.258667pt;}
.y8_c00046{bottom:884.870667pt;}
.y7_c00046{bottom:899.482667pt;}
.y6_c00046{bottom:914.094667pt;}
.y5_c00046{bottom:928.706667pt;}
.y4_c00046{bottom:943.317333pt;}
.y3_c00046{bottom:972.541333pt;}
.y2_c00046{bottom:1001.765333pt;}
.y1_c00046{bottom:1016.377333pt;}
.h3_c00046{height:31.280681pt;}
.h2_c00046{height:32.006363pt;}
.h4_c00046{height:46.518078pt;}
.h0_c00046{height:1122.520000pt;}
.h1_c00046{height:1122.666667pt;}
.w0_c00046{width:793.706667pt;}
.w1_c00046{width:794.000000pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:121.886667pt;}
.x2_c00046{left:133.704000pt;}
.x3_c00046{left:145.522667pt;}
.x4_c00046{left:157.340000pt;}
.x5_c00046{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c83e209bc2cca8d06f8d25d9.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.048828;font-style:normal;font-weight:normal;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_0f202a9502b2d962fc520c2b.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_12b846822e608b517ee3097d.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_d2070cde287b397f5f4fa0c9.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_16c9adec39b16fa9b738ee25.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls4_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.087998px;}
.ls2_c00047{letter-spacing:0.098482px;}
.ls1_c00047{letter-spacing:0.104482px;}
.ls3_c00047{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws5_c00047{word-spacing:-26.487518px;}
.ws2_c00047{word-spacing:0.000000px;}
.ws10_c00047{word-spacing:0.042900px;}
.ws1_c00047{word-spacing:0.043999px;}
.wsd_c00047{word-spacing:0.052834px;}
.wse_c00047{word-spacing:0.053383px;}
.ws9_c00047{word-spacing:0.063317px;}
.ws8_c00047{word-spacing:0.069866px;}
.wsf_c00047{word-spacing:0.073800px;}
.wsb_c00047{word-spacing:0.079800px;}
.wsc_c00047{word-spacing:0.080350px;}
.ws6_c00047{word-spacing:0.080899px;}
.ws4_c00047{word-spacing:0.109601px;}
.ws3_c00047{word-spacing:0.175997px;}
.ws7_c00047{word-spacing:0.213446px;}
.wsa_c00047{word-spacing:0.219446px;}
._1_c00047{margin-left:-2103.796728px;}
._0_c00047{width:1.113053px;}
.fc5_c00047{color:rgb(0,0,207);}
.fc4_c00047{color:rgb(207,92,0);}
.fc3_c00047{color:rgb(143,89,3);}
.fc2_c00047{color:rgb(79,153,5);}
.fc1_c00047{color:rgb(0,0,0);}
.fc0_c00047{color:rgb(33,74,135);}
.fs1_c00047{font-size:31.015800px;}
.fs0_c00047{font-size:43.999200px;}
.fs2_c00047{font-size:59.775600px;}
.y0_c00047{bottom:0.000000px;}
.y2f_c00047{bottom:44.250000px;}
.y2e_c00047{bottom:108.181500px;}
.y2d_c00047{bottom:124.620000px;}
.y2c_c00047{bottom:141.058500px;}
.y2b_c00047{bottom:157.497000px;}
.y2a_c00047{bottom:173.935500px;}
.y29_c00047{bottom:190.374000px;}
.y28_c00047{bottom:206.812500px;}
.y27_c00047{bottom:223.249500px;}
.y26_c00047{bottom:239.688000px;}
.y25_c00047{bottom:272.565000px;}
.y24_c00047{bottom:289.003500px;}
.y23_c00047{bottom:321.880500px;}
.y22_c00047{bottom:338.319000px;}
.y21_c00047{bottom:354.757500px;}
.y20_c00047{bottom:371.196000px;}
.y1f_c00047{bottom:387.633000px;}
.y1e_c00047{bottom:404.071500px;}
.y1d_c00047{bottom:420.510000px;}
.y1c_c00047{bottom:436.948500px;}
.y1b_c00047{bottom:502.702500px;}
.y1a_c00047{bottom:519.141000px;}
.y19_c00047{bottom:552.018000px;}
.y18_c00047{bottom:568.455000px;}
.y17_c00047{bottom:584.893500px;}
.y16_c00047{bottom:601.332000px;}
.y15_c00047{bottom:617.770500px;}
.y14_c00047{bottom:634.209000px;}
.y13_c00047{bottom:667.086000px;}
.y12_c00047{bottom:699.963000px;}
.y11_c00047{bottom:732.838500px;}
.y10_c00047{bottom:749.277000px;}
.yf_c00047{bottom:765.715500px;}
.ye_c00047{bottom:798.592500px;}
.yd_c00047{bottom:815.031000px;}
.yc_c00047{bottom:864.346500px;}
.yb_c00047{bottom:913.660500px;}
.ya_c00047{bottom:930.099000px;}
.y9_c00047{bottom:946.537500px;}
.y8_c00047{bottom:962.976000px;}
.y7_c00047{bottom:979.414500px;}
.y6_c00047{bottom:1028.730000px;}
.y5_c00047{bottom:1044.795000px;}
.y4_c00047{bottom:1061.232000px;}
.y3_c00047{bottom:1077.670500px;}
.y2_c00047{bottom:1094.109000px;}
.y1_c00047{bottom:1143.424500px;}
.h3_c00047{height:35.190766px;}
.h2_c00047{height:36.007158px;}
.h4_c00047{height:52.332837px;}
.h0_c00047{height:1262.835000px;}
.h1_c00047{height:1263.000000px;}
.w0_c00047{width:892.920000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:137.122500px;}
.x6_c00047{left:150.417000px;}
.x3_c00047{left:163.713000px;}
.x4_c00047{left:196.948500px;}
.x5_c00047{left:256.774500px;}
.x2_c00047{left:343.188000px;}
.x7_c00047{left:438.984000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls4_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.078221pt;}
.ls2_c00047{letter-spacing:0.087539pt;}
.ls1_c00047{letter-spacing:0.092873pt;}
.ls3_c00047{letter-spacing:23.724873pt;}
.ws0_c00047{word-spacing:-23.622682pt;}
.ws5_c00047{word-spacing:-23.544461pt;}
.ws2_c00047{word-spacing:0.000000pt;}
.ws10_c00047{word-spacing:0.038133pt;}
.ws1_c00047{word-spacing:0.039110pt;}
.wsd_c00047{word-spacing:0.046963pt;}
.wse_c00047{word-spacing:0.047452pt;}
.ws9_c00047{word-spacing:0.056282pt;}
.ws8_c00047{word-spacing:0.062103pt;}
.wsf_c00047{word-spacing:0.065600pt;}
.wsb_c00047{word-spacing:0.070933pt;}
.wsc_c00047{word-spacing:0.071422pt;}
.ws6_c00047{word-spacing:0.071910pt;}
.ws4_c00047{word-spacing:0.097423pt;}
.ws3_c00047{word-spacing:0.156442pt;}
.ws7_c00047{word-spacing:0.189730pt;}
.wsa_c00047{word-spacing:0.195063pt;}
._1_c00047{margin-left:-1870.041536pt;}
._0_c00047{width:0.989380pt;}
.fs1_c00047{font-size:27.569600pt;}
.fs0_c00047{font-size:39.110400pt;}
.fs2_c00047{font-size:53.133867pt;}
.y0_c00047{bottom:0.000000pt;}
.y2f_c00047{bottom:39.333333pt;}
.y2e_c00047{bottom:96.161333pt;}
.y2d_c00047{bottom:110.773333pt;}
.y2c_c00047{bottom:125.385333pt;}
.y2b_c00047{bottom:139.997333pt;}
.y2a_c00047{bottom:154.609333pt;}
.y29_c00047{bottom:169.221333pt;}
.y28_c00047{bottom:183.833333pt;}
.y27_c00047{bottom:198.444000pt;}
.y26_c00047{bottom:213.056000pt;}
.y25_c00047{bottom:242.280000pt;}
.y24_c00047{bottom:256.892000pt;}
.y23_c00047{bottom:286.116000pt;}
.y22_c00047{bottom:300.728000pt;}
.y21_c00047{bottom:315.340000pt;}
.y20_c00047{bottom:329.952000pt;}
.y1f_c00047{bottom:344.562667pt;}
.y1e_c00047{bottom:359.174667pt;}
.y1d_c00047{bottom:373.786667pt;}
.y1c_c00047{bottom:388.398667pt;}
.y1b_c00047{bottom:446.846667pt;}
.y1a_c00047{bottom:461.458667pt;}
.y19_c00047{bottom:490.682667pt;}
.y18_c00047{bottom:505.293333pt;}
.y17_c00047{bottom:519.905333pt;}
.y16_c00047{bottom:534.517333pt;}
.y15_c00047{bottom:549.129333pt;}
.y14_c00047{bottom:563.741333pt;}
.y13_c00047{bottom:592.965333pt;}
.y12_c00047{bottom:622.189333pt;}
.y11_c00047{bottom:651.412000pt;}
.y10_c00047{bottom:666.024000pt;}
.yf_c00047{bottom:680.636000pt;}
.ye_c00047{bottom:709.860000pt;}
.yd_c00047{bottom:724.472000pt;}
.yc_c00047{bottom:768.308000pt;}
.yb_c00047{bottom:812.142667pt;}
.ya_c00047{bottom:826.754667pt;}
.y9_c00047{bottom:841.366667pt;}
.y8_c00047{bottom:855.978667pt;}
.y7_c00047{bottom:870.590667pt;}
.y6_c00047{bottom:914.426667pt;}
.y5_c00047{bottom:928.706667pt;}
.y4_c00047{bottom:943.317333pt;}
.y3_c00047{bottom:957.929333pt;}
.y2_c00047{bottom:972.541333pt;}
.y1_c00047{bottom:1016.377333pt;}
.h3_c00047{height:31.280681pt;}
.h2_c00047{height:32.006363pt;}
.h4_c00047{height:46.518078pt;}
.h0_c00047{height:1122.520000pt;}
.h1_c00047{height:1122.666667pt;}
.w0_c00047{width:793.706667pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:121.886667pt;}
.x6_c00047{left:133.704000pt;}
.x3_c00047{left:145.522667pt;}
.x4_c00047{left:175.065333pt;}
.x5_c00047{left:228.244000pt;}
.x2_c00047{left:305.056000pt;}
.x7_c00047{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d91f83b57b915ec8fd1afb70.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.083496;font-style:normal;font-weight:normal;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_ea75be342dd101c420896d7f.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.048828;font-style:normal;font-weight:normal;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_1e0411549a071c187c0c935f.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.014648;font-style:normal;font-weight:normal;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_6ea1ad7ae91305e8dfe062ef.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls4_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.087998px;}
.ls3_c00048{letter-spacing:0.098482px;}
.ls1_c00048{letter-spacing:0.104482px;}
.ls2_c00048{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws5_c00048{word-spacing:-26.487518px;}
.ws8_c00048{word-spacing:0.000000px;}
.ws9_c00048{word-spacing:0.036900px;}
.wse_c00048{word-spacing:0.043999px;}
.ws3_c00048{word-spacing:0.063317px;}
.ws7_c00048{word-spacing:0.063866px;}
.wsd_c00048{word-spacing:0.064416px;}
.ws0_c00048{word-spacing:0.069866px;}
.ws10_c00048{word-spacing:0.070416px;}
.ws6_c00048{word-spacing:0.080899px;}
.ws11_c00048{word-spacing:0.099667px;}
.wsa_c00048{word-spacing:0.104150px;}
.ws4_c00048{word-spacing:0.175997px;}
.wsf_c00048{word-spacing:0.212897px;}
.ws1_c00048{word-spacing:0.213446px;}
.wsb_c00048{word-spacing:0.219446px;}
.wsc_c00048{word-spacing:0.219996px;}
._0_c00048{width:1.113053px;}
.fc5_c00048{color:rgb(79,153,5);}
.fc4_c00048{color:rgb(0,0,207);}
.fc3_c00048{color:rgb(207,92,0);}
.fc2_c00048{color:rgb(33,74,135);}
.fc1_c00048{color:rgb(143,89,3);}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:43.999200px;}
.fs1_c00048{font-size:59.775600px;}
.y0_c00048{bottom:0.000000px;}
.y31_c00048{bottom:44.250000px;}
.y30_c00048{bottom:107.808000px;}
.y2f_c00048{bottom:140.685000px;}
.y2e_c00048{bottom:157.123500px;}
.y2d_c00048{bottom:173.562000px;}
.y2c_c00048{bottom:206.437500px;}
.y2b_c00048{bottom:222.876000px;}
.y2a_c00048{bottom:272.191500px;}
.y29_c00048{bottom:321.507000px;}
.y28_c00048{bottom:337.945500px;}
.y27_c00048{bottom:354.384000px;}
.y26_c00048{bottom:370.822500px;}
.y25_c00048{bottom:387.259500px;}
.y24_c00048{bottom:420.136500px;}
.y23_c00048{bottom:436.575000px;}
.y22_c00048{bottom:453.013500px;}
.y21_c00048{bottom:485.890500px;}
.y20_c00048{bottom:502.329000px;}
.y1f_c00048{bottom:518.767500px;}
.y1e_c00048{bottom:535.206000px;}
.y1d_c00048{bottom:584.520000px;}
.y1c_c00048{bottom:617.397000px;}
.y1b_c00048{bottom:633.835500px;}
.y1a_c00048{bottom:650.274000px;}
.y19_c00048{bottom:666.712500px;}
.y18_c00048{bottom:699.589500px;}
.y17_c00048{bottom:716.028000px;}
.y16_c00048{bottom:732.465000px;}
.y15_c00048{bottom:748.903500px;}
.y14_c00048{bottom:765.342000px;}
.y13_c00048{bottom:781.780500px;}
.y12_c00048{bottom:798.219000px;}
.y11_c00048{bottom:814.657500px;}
.y10_c00048{bottom:863.973000px;}
.yf_c00048{bottom:880.411500px;}
.ye_c00048{bottom:896.848500px;}
.yd_c00048{bottom:913.287000px;}
.yc_c00048{bottom:929.725500px;}
.yb_c00048{bottom:946.164000px;}
.ya_c00048{bottom:962.602500px;}
.y9_c00048{bottom:979.041000px;}
.y8_c00048{bottom:995.479500px;}
.y7_c00048{bottom:1028.356500px;}
.y6_c00048{bottom:1044.795000px;}
.y5_c00048{bottom:1061.232000px;}
.y4_c00048{bottom:1094.109000px;}
.y3_c00048{bottom:1110.547500px;}
.y2_c00048{bottom:1126.986000px;}
.y1_c00048{bottom:1159.863000px;}
.h3_c00048{height:35.190766px;}
.h2_c00048{height:36.007158px;}
.h4_c00048{height:52.332837px;}
.h0_c00048{height:1262.835000px;}
.h1_c00048{height:1263.000000px;}
.w0_c00048{width:892.920000px;}
.w1_c00048{width:893.250000px;}
.x0_c00048{left:0.000000px;}
.x4_c00048{left:137.122500px;}
.x1_c00048{left:150.417000px;}
.x2_c00048{left:163.713000px;}
.x3_c00048{left:177.007500px;}
.x6_c00048{left:196.948500px;}
.x5_c00048{left:316.599000px;}
.x7_c00048{left:438.984000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls4_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.078221pt;}
.ls3_c00048{letter-spacing:0.087539pt;}
.ls1_c00048{letter-spacing:0.092873pt;}
.ls2_c00048{letter-spacing:23.724873pt;}
.ws2_c00048{word-spacing:-23.622682pt;}
.ws5_c00048{word-spacing:-23.544461pt;}
.ws8_c00048{word-spacing:0.000000pt;}
.ws9_c00048{word-spacing:0.032800pt;}
.wse_c00048{word-spacing:0.039110pt;}
.ws3_c00048{word-spacing:0.056282pt;}
.ws7_c00048{word-spacing:0.056770pt;}
.wsd_c00048{word-spacing:0.057259pt;}
.ws0_c00048{word-spacing:0.062103pt;}
.ws10_c00048{word-spacing:0.062592pt;}
.ws6_c00048{word-spacing:0.071910pt;}
.ws11_c00048{word-spacing:0.088593pt;}
.wsa_c00048{word-spacing:0.092578pt;}
.ws4_c00048{word-spacing:0.156442pt;}
.wsf_c00048{word-spacing:0.189242pt;}
.ws1_c00048{word-spacing:0.189730pt;}
.wsb_c00048{word-spacing:0.195063pt;}
.wsc_c00048{word-spacing:0.195552pt;}
._0_c00048{width:0.989380pt;}
.fs0_c00048{font-size:39.110400pt;}
.fs1_c00048{font-size:53.133867pt;}
.y0_c00048{bottom:0.000000pt;}
.y31_c00048{bottom:39.333333pt;}
.y30_c00048{bottom:95.829333pt;}
.y2f_c00048{bottom:125.053333pt;}
.y2e_c00048{bottom:139.665333pt;}
.y2d_c00048{bottom:154.277333pt;}
.y2c_c00048{bottom:183.500000pt;}
.y2b_c00048{bottom:198.112000pt;}
.y2a_c00048{bottom:241.948000pt;}
.y29_c00048{bottom:285.784000pt;}
.y28_c00048{bottom:300.396000pt;}
.y27_c00048{bottom:315.008000pt;}
.y26_c00048{bottom:329.620000pt;}
.y25_c00048{bottom:344.230667pt;}
.y24_c00048{bottom:373.454667pt;}
.y23_c00048{bottom:388.066667pt;}
.y22_c00048{bottom:402.678667pt;}
.y21_c00048{bottom:431.902667pt;}
.y20_c00048{bottom:446.514667pt;}
.y1f_c00048{bottom:461.126667pt;}
.y1e_c00048{bottom:475.738667pt;}
.y1d_c00048{bottom:519.573333pt;}
.y1c_c00048{bottom:548.797333pt;}
.y1b_c00048{bottom:563.409333pt;}
.y1a_c00048{bottom:578.021333pt;}
.y19_c00048{bottom:592.633333pt;}
.y18_c00048{bottom:621.857333pt;}
.y17_c00048{bottom:636.469333pt;}
.y16_c00048{bottom:651.080000pt;}
.y15_c00048{bottom:665.692000pt;}
.y14_c00048{bottom:680.304000pt;}
.y13_c00048{bottom:694.916000pt;}
.y12_c00048{bottom:709.528000pt;}
.y11_c00048{bottom:724.140000pt;}
.y10_c00048{bottom:767.976000pt;}
.yf_c00048{bottom:782.588000pt;}
.ye_c00048{bottom:797.198667pt;}
.yd_c00048{bottom:811.810667pt;}
.yc_c00048{bottom:826.422667pt;}
.yb_c00048{bottom:841.034667pt;}
.ya_c00048{bottom:855.646667pt;}
.y9_c00048{bottom:870.258667pt;}
.y8_c00048{bottom:884.870667pt;}
.y7_c00048{bottom:914.094667pt;}
.y6_c00048{bottom:928.706667pt;}
.y5_c00048{bottom:943.317333pt;}
.y4_c00048{bottom:972.541333pt;}
.y3_c00048{bottom:987.153333pt;}
.y2_c00048{bottom:1001.765333pt;}
.y1_c00048{bottom:1030.989333pt;}
.h3_c00048{height:31.280681pt;}
.h2_c00048{height:32.006363pt;}
.h4_c00048{height:46.518078pt;}
.h0_c00048{height:1122.520000pt;}
.h1_c00048{height:1122.666667pt;}
.w0_c00048{width:793.706667pt;}
.w1_c00048{width:794.000000pt;}
.x0_c00048{left:0.000000pt;}
.x4_c00048{left:121.886667pt;}
.x1_c00048{left:133.704000pt;}
.x2_c00048{left:145.522667pt;}
.x3_c00048{left:157.340000pt;}
.x6_c00048{left:175.065333pt;}
.x5_c00048{left:281.421333pt;}
.x7_c00048{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16716dd5c25f213100bc3ccc.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.014648;font-style:normal;font-weight:normal;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_ce6d21e124743ff167f79998.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.083496;font-style:normal;font-weight:normal;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_5206c59cc577572194f2a55b.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.048828;font-style:normal;font-weight:normal;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_a7918807d2214a1d43b8cca8.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls4_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:0.087998px;}
.ls3_c00049{letter-spacing:0.098482px;}
.ls1_c00049{letter-spacing:0.104482px;}
.ls2_c00049{letter-spacing:26.690482px;}
.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:-26.575517px;}
.wsf_c00049{word-spacing:-26.487518px;}
.ws7_c00049{word-spacing:0.000000px;}
.ws11_c00049{word-spacing:0.036900px;}
.wse_c00049{word-spacing:0.042900px;}
.ws4_c00049{word-spacing:0.043999px;}
.wsa_c00049{word-spacing:0.052834px;}
.wsc_c00049{word-spacing:0.053383px;}
.wsb_c00049{word-spacing:0.063317px;}
.ws10_c00049{word-spacing:0.063866px;}
.ws5_c00049{word-spacing:0.069866px;}
.wsd_c00049{word-spacing:0.073800px;}
.ws6_c00049{word-spacing:0.079800px;}
.ws8_c00049{word-spacing:0.080350px;}
.ws2_c00049{word-spacing:0.080899px;}
.ws0_c00049{word-spacing:0.175997px;}
.ws12_c00049{word-spacing:0.212897px;}
.ws3_c00049{word-spacing:0.213446px;}
.ws9_c00049{word-spacing:0.219446px;}
._0_c00049{width:1.012286px;}
.fc5_c00049{color:rgb(0,0,207);}
.fc4_c00049{color:rgb(79,153,5);}
.fc3_c00049{color:rgb(33,74,135);}
.fc2_c00049{color:rgb(207,92,0);}
.fc1_c00049{color:rgb(0,0,0);}
.fc0_c00049{color:rgb(143,89,3);}
.fs0_c00049{font-size:43.999200px;}
.fs1_c00049{font-size:59.775600px;}
.y0_c00049{bottom:0.000000px;}
.y33_c00049{bottom:44.250000px;}
.y32_c00049{bottom:91.369500px;}
.y31_c00049{bottom:140.685000px;}
.y30_c00049{bottom:173.562000px;}
.y2f_c00049{bottom:190.000500px;}
.y2e_c00049{bottom:206.437500px;}
.y2d_c00049{bottom:222.876000px;}
.y2c_c00049{bottom:255.753000px;}
.y2b_c00049{bottom:272.191500px;}
.y2a_c00049{bottom:288.630000px;}
.y29_c00049{bottom:305.068500px;}
.y28_c00049{bottom:321.507000px;}
.y27_c00049{bottom:337.945500px;}
.y26_c00049{bottom:354.384000px;}
.y25_c00049{bottom:370.822500px;}
.y24_c00049{bottom:403.698000px;}
.y23_c00049{bottom:436.575000px;}
.y22_c00049{bottom:453.013500px;}
.y21_c00049{bottom:469.452000px;}
.y20_c00049{bottom:502.329000px;}
.y1f_c00049{bottom:518.767500px;}
.y1e_c00049{bottom:535.206000px;}
.y1d_c00049{bottom:568.081500px;}
.y1c_c00049{bottom:600.958500px;}
.y1b_c00049{bottom:617.397000px;}
.y1a_c00049{bottom:633.835500px;}
.y19_c00049{bottom:650.274000px;}
.y18_c00049{bottom:666.712500px;}
.y17_c00049{bottom:683.151000px;}
.y16_c00049{bottom:699.589500px;}
.y15_c00049{bottom:716.028000px;}
.y14_c00049{bottom:732.465000px;}
.y13_c00049{bottom:765.342000px;}
.y12_c00049{bottom:781.780500px;}
.y11_c00049{bottom:814.657500px;}
.y10_c00049{bottom:831.096000px;}
.yf_c00049{bottom:847.534500px;}
.ye_c00049{bottom:863.973000px;}
.yd_c00049{bottom:880.411500px;}
.yc_c00049{bottom:896.848500px;}
.yb_c00049{bottom:913.287000px;}
.ya_c00049{bottom:929.725500px;}
.y9_c00049{bottom:995.479500px;}
.y8_c00049{bottom:1011.918000px;}
.y7_c00049{bottom:1044.795000px;}
.y6_c00049{bottom:1061.232000px;}
.y5_c00049{bottom:1077.670500px;}
.y4_c00049{bottom:1094.109000px;}
.y3_c00049{bottom:1110.547500px;}
.y2_c00049{bottom:1126.986000px;}
.y1_c00049{bottom:1159.863000px;}
.h2_c00049{height:35.190766px;}
.h3_c00049{height:36.007158px;}
.h4_c00049{height:52.332837px;}
.h0_c00049{height:1262.835000px;}
.h1_c00049{height:1263.000000px;}
.w0_c00049{width:892.920000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:137.122500px;}
.x3_c00049{left:150.417000px;}
.x4_c00049{left:163.713000px;}
.x5_c00049{left:177.007500px;}
.x2_c00049{left:256.774500px;}
.x6_c00049{left:438.984000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls4_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:0.078221pt;}
.ls3_c00049{letter-spacing:0.087539pt;}
.ls1_c00049{letter-spacing:0.092873pt;}
.ls2_c00049{letter-spacing:23.724873pt;}
.ws1_c00049{word-spacing:-23.622682pt;}
.wsf_c00049{word-spacing:-23.544461pt;}
.ws7_c00049{word-spacing:0.000000pt;}
.ws11_c00049{word-spacing:0.032800pt;}
.wse_c00049{word-spacing:0.038133pt;}
.ws4_c00049{word-spacing:0.039110pt;}
.wsa_c00049{word-spacing:0.046963pt;}
.wsc_c00049{word-spacing:0.047452pt;}
.wsb_c00049{word-spacing:0.056282pt;}
.ws10_c00049{word-spacing:0.056770pt;}
.ws5_c00049{word-spacing:0.062103pt;}
.wsd_c00049{word-spacing:0.065600pt;}
.ws6_c00049{word-spacing:0.070933pt;}
.ws8_c00049{word-spacing:0.071422pt;}
.ws2_c00049{word-spacing:0.071910pt;}
.ws0_c00049{word-spacing:0.156442pt;}
.ws12_c00049{word-spacing:0.189242pt;}
.ws3_c00049{word-spacing:0.189730pt;}
.ws9_c00049{word-spacing:0.195063pt;}
._0_c00049{width:0.899810pt;}
.fs0_c00049{font-size:39.110400pt;}
.fs1_c00049{font-size:53.133867pt;}
.y0_c00049{bottom:0.000000pt;}
.y33_c00049{bottom:39.333333pt;}
.y32_c00049{bottom:81.217333pt;}
.y31_c00049{bottom:125.053333pt;}
.y30_c00049{bottom:154.277333pt;}
.y2f_c00049{bottom:168.889333pt;}
.y2e_c00049{bottom:183.500000pt;}
.y2d_c00049{bottom:198.112000pt;}
.y2c_c00049{bottom:227.336000pt;}
.y2b_c00049{bottom:241.948000pt;}
.y2a_c00049{bottom:256.560000pt;}
.y29_c00049{bottom:271.172000pt;}
.y28_c00049{bottom:285.784000pt;}
.y27_c00049{bottom:300.396000pt;}
.y26_c00049{bottom:315.008000pt;}
.y25_c00049{bottom:329.620000pt;}
.y24_c00049{bottom:358.842667pt;}
.y23_c00049{bottom:388.066667pt;}
.y22_c00049{bottom:402.678667pt;}
.y21_c00049{bottom:417.290667pt;}
.y20_c00049{bottom:446.514667pt;}
.y1f_c00049{bottom:461.126667pt;}
.y1e_c00049{bottom:475.738667pt;}
.y1d_c00049{bottom:504.961333pt;}
.y1c_c00049{bottom:534.185333pt;}
.y1b_c00049{bottom:548.797333pt;}
.y1a_c00049{bottom:563.409333pt;}
.y19_c00049{bottom:578.021333pt;}
.y18_c00049{bottom:592.633333pt;}
.y17_c00049{bottom:607.245333pt;}
.y16_c00049{bottom:621.857333pt;}
.y15_c00049{bottom:636.469333pt;}
.y14_c00049{bottom:651.080000pt;}
.y13_c00049{bottom:680.304000pt;}
.y12_c00049{bottom:694.916000pt;}
.y11_c00049{bottom:724.140000pt;}
.y10_c00049{bottom:738.752000pt;}
.yf_c00049{bottom:753.364000pt;}
.ye_c00049{bottom:767.976000pt;}
.yd_c00049{bottom:782.588000pt;}
.yc_c00049{bottom:797.198667pt;}
.yb_c00049{bottom:811.810667pt;}
.ya_c00049{bottom:826.422667pt;}
.y9_c00049{bottom:884.870667pt;}
.y8_c00049{bottom:899.482667pt;}
.y7_c00049{bottom:928.706667pt;}
.y6_c00049{bottom:943.317333pt;}
.y5_c00049{bottom:957.929333pt;}
.y4_c00049{bottom:972.541333pt;}
.y3_c00049{bottom:987.153333pt;}
.y2_c00049{bottom:1001.765333pt;}
.y1_c00049{bottom:1030.989333pt;}
.h2_c00049{height:31.280681pt;}
.h3_c00049{height:32.006363pt;}
.h4_c00049{height:46.518078pt;}
.h0_c00049{height:1122.520000pt;}
.h1_c00049{height:1122.666667pt;}
.w0_c00049{width:793.706667pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:121.886667pt;}
.x3_c00049{left:133.704000pt;}
.x4_c00049{left:145.522667pt;}
.x5_c00049{left:157.340000pt;}
.x2_c00049{left:228.244000pt;}
.x6_c00049{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e29c4084936c5cd94b5a3a23.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.083496;font-style:normal;font-weight:normal;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_05a1aa885e49720f9bf81584.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_4e6eddb36069abe72e7951dc.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_454f5f45a2026055a4956d67.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls4_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.087998px;}
.ls2_c00050{letter-spacing:0.098482px;}
.ls3_c00050{letter-spacing:0.104482px;}
.ls1_c00050{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws2_c00050{word-spacing:-26.487518px;}
.wsa_c00050{word-spacing:0.000000px;}
.ws10_c00050{word-spacing:0.042900px;}
.ws4_c00050{word-spacing:0.043999px;}
.wsd_c00050{word-spacing:0.052834px;}
.wse_c00050{word-spacing:0.053383px;}
.ws8_c00050{word-spacing:0.063317px;}
.ws11_c00050{word-spacing:0.063866px;}
.ws7_c00050{word-spacing:0.069866px;}
.wsf_c00050{word-spacing:0.073800px;}
.wsb_c00050{word-spacing:0.079800px;}
.wsc_c00050{word-spacing:0.080350px;}
.ws5_c00050{word-spacing:0.080899px;}
.ws1_c00050{word-spacing:0.100217px;}
.ws3_c00050{word-spacing:0.175997px;}
.ws6_c00050{word-spacing:0.213446px;}
.ws9_c00050{word-spacing:0.219446px;}
._0_c00050{width:1.004638px;}
.fc5_c00050{color:rgb(0,0,207);}
.fc4_c00050{color:rgb(207,92,0);}
.fc3_c00050{color:rgb(143,89,3);}
.fc2_c00050{color:rgb(0,0,0);}
.fc1_c00050{color:rgb(79,153,5);}
.fc0_c00050{color:rgb(33,74,135);}
.fs0_c00050{font-size:43.999200px;}
.fs1_c00050{font-size:59.775600px;}
.y0_c00050{bottom:0.000000px;}
.y30_c00050{bottom:44.250000px;}
.y2f_c00050{bottom:107.808000px;}
.y2e_c00050{bottom:124.246500px;}
.y2d_c00050{bottom:140.685000px;}
.y2c_c00050{bottom:173.562000px;}
.y2b_c00050{bottom:206.437500px;}
.y2a_c00050{bottom:222.876000px;}
.y29_c00050{bottom:239.314500px;}
.y28_c00050{bottom:255.753000px;}
.y27_c00050{bottom:272.191500px;}
.y26_c00050{bottom:288.630000px;}
.y25_c00050{bottom:305.068500px;}
.y24_c00050{bottom:321.507000px;}
.y23_c00050{bottom:337.945500px;}
.y22_c00050{bottom:370.822500px;}
.y21_c00050{bottom:387.259500px;}
.y20_c00050{bottom:420.136500px;}
.y1f_c00050{bottom:436.575000px;}
.y1e_c00050{bottom:453.013500px;}
.y1d_c00050{bottom:469.452000px;}
.y1c_c00050{bottom:485.890500px;}
.y1b_c00050{bottom:502.329000px;}
.y1a_c00050{bottom:518.767500px;}
.y19_c00050{bottom:535.206000px;}
.y18_c00050{bottom:600.958500px;}
.y17_c00050{bottom:617.397000px;}
.y16_c00050{bottom:650.274000px;}
.y15_c00050{bottom:666.712500px;}
.y14_c00050{bottom:683.151000px;}
.y13_c00050{bottom:699.589500px;}
.y12_c00050{bottom:716.028000px;}
.y11_c00050{bottom:732.465000px;}
.y10_c00050{bottom:765.342000px;}
.yf_c00050{bottom:798.219000px;}
.ye_c00050{bottom:831.096000px;}
.yd_c00050{bottom:847.534500px;}
.yc_c00050{bottom:863.973000px;}
.yb_c00050{bottom:896.848500px;}
.ya_c00050{bottom:913.287000px;}
.y9_c00050{bottom:962.602500px;}
.y8_c00050{bottom:1011.918000px;}
.y7_c00050{bottom:1028.356500px;}
.y6_c00050{bottom:1044.795000px;}
.y5_c00050{bottom:1061.232000px;}
.y4_c00050{bottom:1077.670500px;}
.y3_c00050{bottom:1126.986000px;}
.y2_c00050{bottom:1143.424500px;}
.y1_c00050{bottom:1159.863000px;}
.h3_c00050{height:35.190766px;}
.h2_c00050{height:36.007158px;}
.h4_c00050{height:52.332837px;}
.h0_c00050{height:1262.835000px;}
.h1_c00050{height:1263.000000px;}
.w0_c00050{width:892.920000px;}
.w1_c00050{width:893.250000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:137.122500px;}
.x5_c00050{left:150.417000px;}
.x6_c00050{left:163.713000px;}
.x3_c00050{left:196.948500px;}
.x4_c00050{left:256.774500px;}
.x1_c00050{left:296.658000px;}
.x7_c00050{left:438.984000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls4_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.078221pt;}
.ls2_c00050{letter-spacing:0.087539pt;}
.ls3_c00050{letter-spacing:0.092873pt;}
.ls1_c00050{letter-spacing:23.724873pt;}
.ws0_c00050{word-spacing:-23.622682pt;}
.ws2_c00050{word-spacing:-23.544461pt;}
.wsa_c00050{word-spacing:0.000000pt;}
.ws10_c00050{word-spacing:0.038133pt;}
.ws4_c00050{word-spacing:0.039110pt;}
.wsd_c00050{word-spacing:0.046963pt;}
.wse_c00050{word-spacing:0.047452pt;}
.ws8_c00050{word-spacing:0.056282pt;}
.ws11_c00050{word-spacing:0.056770pt;}
.ws7_c00050{word-spacing:0.062103pt;}
.wsf_c00050{word-spacing:0.065600pt;}
.wsb_c00050{word-spacing:0.070933pt;}
.wsc_c00050{word-spacing:0.071422pt;}
.ws5_c00050{word-spacing:0.071910pt;}
.ws1_c00050{word-spacing:0.089082pt;}
.ws3_c00050{word-spacing:0.156442pt;}
.ws6_c00050{word-spacing:0.189730pt;}
.ws9_c00050{word-spacing:0.195063pt;}
._0_c00050{width:0.893011pt;}
.fs0_c00050{font-size:39.110400pt;}
.fs1_c00050{font-size:53.133867pt;}
.y0_c00050{bottom:0.000000pt;}
.y30_c00050{bottom:39.333333pt;}
.y2f_c00050{bottom:95.829333pt;}
.y2e_c00050{bottom:110.441333pt;}
.y2d_c00050{bottom:125.053333pt;}
.y2c_c00050{bottom:154.277333pt;}
.y2b_c00050{bottom:183.500000pt;}
.y2a_c00050{bottom:198.112000pt;}
.y29_c00050{bottom:212.724000pt;}
.y28_c00050{bottom:227.336000pt;}
.y27_c00050{bottom:241.948000pt;}
.y26_c00050{bottom:256.560000pt;}
.y25_c00050{bottom:271.172000pt;}
.y24_c00050{bottom:285.784000pt;}
.y23_c00050{bottom:300.396000pt;}
.y22_c00050{bottom:329.620000pt;}
.y21_c00050{bottom:344.230667pt;}
.y20_c00050{bottom:373.454667pt;}
.y1f_c00050{bottom:388.066667pt;}
.y1e_c00050{bottom:402.678667pt;}
.y1d_c00050{bottom:417.290667pt;}
.y1c_c00050{bottom:431.902667pt;}
.y1b_c00050{bottom:446.514667pt;}
.y1a_c00050{bottom:461.126667pt;}
.y19_c00050{bottom:475.738667pt;}
.y18_c00050{bottom:534.185333pt;}
.y17_c00050{bottom:548.797333pt;}
.y16_c00050{bottom:578.021333pt;}
.y15_c00050{bottom:592.633333pt;}
.y14_c00050{bottom:607.245333pt;}
.y13_c00050{bottom:621.857333pt;}
.y12_c00050{bottom:636.469333pt;}
.y11_c00050{bottom:651.080000pt;}
.y10_c00050{bottom:680.304000pt;}
.yf_c00050{bottom:709.528000pt;}
.ye_c00050{bottom:738.752000pt;}
.yd_c00050{bottom:753.364000pt;}
.yc_c00050{bottom:767.976000pt;}
.yb_c00050{bottom:797.198667pt;}
.ya_c00050{bottom:811.810667pt;}
.y9_c00050{bottom:855.646667pt;}
.y8_c00050{bottom:899.482667pt;}
.y7_c00050{bottom:914.094667pt;}
.y6_c00050{bottom:928.706667pt;}
.y5_c00050{bottom:943.317333pt;}
.y4_c00050{bottom:957.929333pt;}
.y3_c00050{bottom:1001.765333pt;}
.y2_c00050{bottom:1016.377333pt;}
.y1_c00050{bottom:1030.989333pt;}
.h3_c00050{height:31.280681pt;}
.h2_c00050{height:32.006363pt;}
.h4_c00050{height:46.518078pt;}
.h0_c00050{height:1122.520000pt;}
.h1_c00050{height:1122.666667pt;}
.w0_c00050{width:793.706667pt;}
.w1_c00050{width:794.000000pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:121.886667pt;}
.x5_c00050{left:133.704000pt;}
.x6_c00050{left:145.522667pt;}
.x3_c00050{left:175.065333pt;}
.x4_c00050{left:228.244000pt;}
.x1_c00050{left:263.696000pt;}
.x7_c00050{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dc2b7ee3d6c064eefdf353e.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.014648;font-style:normal;font-weight:normal;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_c369d983b5af5d0c960878cb.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.083496;font-style:normal;font-weight:normal;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_b7bcd4d85e6273a0d30bb430.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.048828;font-style:normal;font-weight:normal;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_8a05baae2d9bcef19c82b09c.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00051;src:url('chunks/assets/font_add7685e285982ab40d0332e.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls5_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.087998px;}
.ls1_c00051{letter-spacing:0.098482px;}
.ls2_c00051{letter-spacing:0.104482px;}
.ls3_c00051{letter-spacing:26.690482px;}
.ls4_c00051{letter-spacing:26.696482px;}
.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;}
}
.ws4_c00051{word-spacing:-26.575517px;}
.wsa_c00051{word-spacing:-26.487518px;}
.ws0_c00051{word-spacing:0.000000px;}
.ws3_c00051{word-spacing:0.036900px;}
.ws6_c00051{word-spacing:0.043999px;}
.wsc_c00051{word-spacing:0.063317px;}
.wsb_c00051{word-spacing:0.069866px;}
.wsd_c00051{word-spacing:0.079800px;}
.ws1_c00051{word-spacing:0.080899px;}
.ws9_c00051{word-spacing:0.112985px;}
.ws8_c00051{word-spacing:0.175997px;}
.ws5_c00051{word-spacing:0.212897px;}
.ws2_c00051{word-spacing:0.213446px;}
.ws7_c00051{word-spacing:0.219446px;}
._0_c00051{width:1.113053px;}
.fc5_c00051{color:rgb(0,0,207);}
.fc4_c00051{color:rgb(79,153,5);}
.fc3_c00051{color:rgb(33,74,135);}
.fc2_c00051{color:rgb(207,92,0);}
.fc1_c00051{color:rgb(0,0,0);}
.fc0_c00051{color:rgb(143,89,3);}
.fs1_c00051{font-size:31.015800px;}
.fs0_c00051{font-size:43.999200px;}
.fs2_c00051{font-size:59.775600px;}
.y0_c00051{bottom:0.000000px;}
.y2e_c00051{bottom:44.250000px;}
.y2d_c00051{bottom:124.620000px;}
.y2c_c00051{bottom:173.935500px;}
.y2b_c00051{bottom:190.374000px;}
.y2a_c00051{bottom:223.249500px;}
.y29_c00051{bottom:239.688000px;}
.y28_c00051{bottom:256.126500px;}
.y27_c00051{bottom:272.565000px;}
.y26_c00051{bottom:289.003500px;}
.y25_c00051{bottom:305.442000px;}
.y24_c00051{bottom:338.319000px;}
.y23_c00051{bottom:371.196000px;}
.y22_c00051{bottom:404.071500px;}
.y21_c00051{bottom:420.510000px;}
.y20_c00051{bottom:436.948500px;}
.y1f_c00051{bottom:469.825500px;}
.y1e_c00051{bottom:486.264000px;}
.y1d_c00051{bottom:535.579500px;}
.y1c_c00051{bottom:584.893500px;}
.y1b_c00051{bottom:601.332000px;}
.y1a_c00051{bottom:617.770500px;}
.y19_c00051{bottom:634.209000px;}
.y18_c00051{bottom:650.647500px;}
.y17_c00051{bottom:699.963000px;}
.y16_c00051{bottom:716.028000px;}
.y15_c00051{bottom:732.465000px;}
.y14_c00051{bottom:748.903500px;}
.y13_c00051{bottom:765.342000px;}
.y12_c00051{bottom:781.780500px;}
.y11_c00051{bottom:831.096000px;}
.y10_c00051{bottom:863.973000px;}
.yf_c00051{bottom:880.411500px;}
.ye_c00051{bottom:896.848500px;}
.yd_c00051{bottom:913.287000px;}
.yc_c00051{bottom:946.164000px;}
.yb_c00051{bottom:962.602500px;}
.ya_c00051{bottom:979.041000px;}
.y9_c00051{bottom:995.479500px;}
.y8_c00051{bottom:1011.918000px;}
.y7_c00051{bottom:1028.356500px;}
.y6_c00051{bottom:1044.795000px;}
.y5_c00051{bottom:1061.232000px;}
.y4_c00051{bottom:1094.109000px;}
.y3_c00051{bottom:1126.986000px;}
.y2_c00051{bottom:1143.424500px;}
.y1_c00051{bottom:1159.863000px;}
.h4_c00051{height:23.261850px;}
.h2_c00051{height:35.190766px;}
.h3_c00051{height:36.007158px;}
.h5_c00051{height:52.332837px;}
.h0_c00051{height:1262.835000px;}
.h1_c00051{height:1263.000000px;}
.w0_c00051{width:892.920000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x4_c00051{left:137.122500px;}
.x6_c00051{left:142.687500px;}
.x3_c00051{left:150.417000px;}
.x1_c00051{left:163.713000px;}
.x2_c00051{left:177.007500px;}
.x7_c00051{left:196.948500px;}
.x8_c00051{left:256.774500px;}
.x5_c00051{left:389.719500px;}
.x9_c00051{left:438.984000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls5_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.078221pt;}
.ls1_c00051{letter-spacing:0.087539pt;}
.ls2_c00051{letter-spacing:0.092873pt;}
.ls3_c00051{letter-spacing:23.724873pt;}
.ls4_c00051{letter-spacing:23.730206pt;}
.ws4_c00051{word-spacing:-23.622682pt;}
.wsa_c00051{word-spacing:-23.544461pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.ws3_c00051{word-spacing:0.032800pt;}
.ws6_c00051{word-spacing:0.039110pt;}
.wsc_c00051{word-spacing:0.056282pt;}
.wsb_c00051{word-spacing:0.062103pt;}
.wsd_c00051{word-spacing:0.070933pt;}
.ws1_c00051{word-spacing:0.071910pt;}
.ws9_c00051{word-spacing:0.100431pt;}
.ws8_c00051{word-spacing:0.156442pt;}
.ws5_c00051{word-spacing:0.189242pt;}
.ws2_c00051{word-spacing:0.189730pt;}
.ws7_c00051{word-spacing:0.195063pt;}
._0_c00051{width:0.989380pt;}
.fs1_c00051{font-size:27.569600pt;}
.fs0_c00051{font-size:39.110400pt;}
.fs2_c00051{font-size:53.133867pt;}
.y0_c00051{bottom:0.000000pt;}
.y2e_c00051{bottom:39.333333pt;}
.y2d_c00051{bottom:110.773333pt;}
.y2c_c00051{bottom:154.609333pt;}
.y2b_c00051{bottom:169.221333pt;}
.y2a_c00051{bottom:198.444000pt;}
.y29_c00051{bottom:213.056000pt;}
.y28_c00051{bottom:227.668000pt;}
.y27_c00051{bottom:242.280000pt;}
.y26_c00051{bottom:256.892000pt;}
.y25_c00051{bottom:271.504000pt;}
.y24_c00051{bottom:300.728000pt;}
.y23_c00051{bottom:329.952000pt;}
.y22_c00051{bottom:359.174667pt;}
.y21_c00051{bottom:373.786667pt;}
.y20_c00051{bottom:388.398667pt;}
.y1f_c00051{bottom:417.622667pt;}
.y1e_c00051{bottom:432.234667pt;}
.y1d_c00051{bottom:476.070667pt;}
.y1c_c00051{bottom:519.905333pt;}
.y1b_c00051{bottom:534.517333pt;}
.y1a_c00051{bottom:549.129333pt;}
.y19_c00051{bottom:563.741333pt;}
.y18_c00051{bottom:578.353333pt;}
.y17_c00051{bottom:622.189333pt;}
.y16_c00051{bottom:636.469333pt;}
.y15_c00051{bottom:651.080000pt;}
.y14_c00051{bottom:665.692000pt;}
.y13_c00051{bottom:680.304000pt;}
.y12_c00051{bottom:694.916000pt;}
.y11_c00051{bottom:738.752000pt;}
.y10_c00051{bottom:767.976000pt;}
.yf_c00051{bottom:782.588000pt;}
.ye_c00051{bottom:797.198667pt;}
.yd_c00051{bottom:811.810667pt;}
.yc_c00051{bottom:841.034667pt;}
.yb_c00051{bottom:855.646667pt;}
.ya_c00051{bottom:870.258667pt;}
.y9_c00051{bottom:884.870667pt;}
.y8_c00051{bottom:899.482667pt;}
.y7_c00051{bottom:914.094667pt;}
.y6_c00051{bottom:928.706667pt;}
.y5_c00051{bottom:943.317333pt;}
.y4_c00051{bottom:972.541333pt;}
.y3_c00051{bottom:1001.765333pt;}
.y2_c00051{bottom:1016.377333pt;}
.y1_c00051{bottom:1030.989333pt;}
.h4_c00051{height:20.677200pt;}
.h2_c00051{height:31.280681pt;}
.h3_c00051{height:32.006363pt;}
.h5_c00051{height:46.518078pt;}
.h0_c00051{height:1122.520000pt;}
.h1_c00051{height:1122.666667pt;}
.w0_c00051{width:793.706667pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x4_c00051{left:121.886667pt;}
.x6_c00051{left:126.833333pt;}
.x3_c00051{left:133.704000pt;}
.x1_c00051{left:145.522667pt;}
.x2_c00051{left:157.340000pt;}
.x7_c00051{left:175.065333pt;}
.x8_c00051{left:228.244000pt;}
.x5_c00051{left:346.417333pt;}
.x9_c00051{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67eecce6db772fe08f0068bd.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.014648;font-style:normal;font-weight:normal;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_960e4b6a8276df631213f36e.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_0568649fc4039fefb3c25a12.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_cf7364bebfcd5f038cbb7870.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls4_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.087998px;}
.ls3_c00052{letter-spacing:0.098482px;}
.ls2_c00052{letter-spacing:0.104482px;}
.ls1_c00052{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00052{word-spacing:-26.575517px;}
.wsd_c00052{word-spacing:-26.487518px;}
.ws0_c00052{word-spacing:0.000000px;}
.ws10_c00052{word-spacing:0.036900px;}
.wsa_c00052{word-spacing:0.042900px;}
.wsb_c00052{word-spacing:0.043999px;}
.ws4_c00052{word-spacing:0.052834px;}
.ws7_c00052{word-spacing:0.053383px;}
.ws6_c00052{word-spacing:0.063317px;}
.wsf_c00052{word-spacing:0.063866px;}
.ws13_c00052{word-spacing:0.064416px;}
.wsc_c00052{word-spacing:0.069866px;}
.ws15_c00052{word-spacing:0.070416px;}
.ws9_c00052{word-spacing:0.073800px;}
.ws1_c00052{word-spacing:0.080350px;}
.wse_c00052{word-spacing:0.080899px;}
.ws16_c00052{word-spacing:0.100217px;}
.ws11_c00052{word-spacing:0.104150px;}
.ws8_c00052{word-spacing:0.175997px;}
.ws14_c00052{word-spacing:0.212897px;}
.ws5_c00052{word-spacing:0.213446px;}
.ws2_c00052{word-spacing:0.219446px;}
.ws12_c00052{word-spacing:0.219996px;}
._0_c00052{width:1.012286px;}
.fc5_c00052{color:rgb(207,92,0);}
.fc4_c00052{color:rgb(33,74,135);}
.fc3_c00052{color:rgb(0,0,207);}
.fc2_c00052{color:rgb(79,153,5);}
.fc1_c00052{color:rgb(0,0,0);}
.fc0_c00052{color:rgb(143,89,3);}
.fs0_c00052{font-size:43.999200px;}
.fs1_c00052{font-size:59.775600px;}
.y0_c00052{bottom:0.000000px;}
.y35_c00052{bottom:44.250000px;}
.y34_c00052{bottom:124.246500px;}
.y33_c00052{bottom:140.685000px;}
.y32_c00052{bottom:157.123500px;}
.y31_c00052{bottom:173.562000px;}
.y30_c00052{bottom:222.876000px;}
.y2f_c00052{bottom:255.753000px;}
.y2e_c00052{bottom:272.191500px;}
.y2d_c00052{bottom:288.630000px;}
.y2c_c00052{bottom:305.068500px;}
.y2b_c00052{bottom:337.945500px;}
.y2a_c00052{bottom:354.384000px;}
.y29_c00052{bottom:370.822500px;}
.y28_c00052{bottom:387.259500px;}
.y27_c00052{bottom:403.698000px;}
.y26_c00052{bottom:420.136500px;}
.y25_c00052{bottom:436.575000px;}
.y24_c00052{bottom:453.013500px;}
.y23_c00052{bottom:502.329000px;}
.y22_c00052{bottom:518.767500px;}
.y21_c00052{bottom:535.206000px;}
.y20_c00052{bottom:551.643000px;}
.y1f_c00052{bottom:568.081500px;}
.y1e_c00052{bottom:584.520000px;}
.y1d_c00052{bottom:600.958500px;}
.y1c_c00052{bottom:617.397000px;}
.y1b_c00052{bottom:633.835500px;}
.y1a_c00052{bottom:666.712500px;}
.y19_c00052{bottom:683.151000px;}
.y18_c00052{bottom:699.589500px;}
.y17_c00052{bottom:732.465000px;}
.y16_c00052{bottom:748.903500px;}
.y15_c00052{bottom:765.342000px;}
.y14_c00052{bottom:798.219000px;}
.y13_c00052{bottom:831.096000px;}
.y12_c00052{bottom:847.534500px;}
.y11_c00052{bottom:863.973000px;}
.y10_c00052{bottom:880.411500px;}
.yf_c00052{bottom:896.848500px;}
.ye_c00052{bottom:913.287000px;}
.yd_c00052{bottom:929.725500px;}
.yc_c00052{bottom:946.164000px;}
.yb_c00052{bottom:962.602500px;}
.ya_c00052{bottom:995.479500px;}
.y9_c00052{bottom:1011.918000px;}
.y8_c00052{bottom:1044.795000px;}
.y7_c00052{bottom:1061.232000px;}
.y6_c00052{bottom:1077.670500px;}
.y5_c00052{bottom:1094.109000px;}
.y4_c00052{bottom:1110.547500px;}
.y3_c00052{bottom:1126.986000px;}
.y2_c00052{bottom:1143.424500px;}
.y1_c00052{bottom:1159.863000px;}
.h2_c00052{height:35.190766px;}
.h3_c00052{height:36.007158px;}
.h4_c00052{height:52.332837px;}
.h0_c00052{height:1262.835000px;}
.h1_c00052{height:1263.000000px;}
.w0_c00052{width:892.920000px;}
.w1_c00052{width:893.250000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:137.122500px;}
.x2_c00052{left:150.417000px;}
.x3_c00052{left:163.713000px;}
.x4_c00052{left:177.007500px;}
.x5_c00052{left:296.658000px;}
.x6_c00052{left:438.984000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls4_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.078221pt;}
.ls3_c00052{letter-spacing:0.087539pt;}
.ls2_c00052{letter-spacing:0.092873pt;}
.ls1_c00052{letter-spacing:23.724873pt;}
.ws3_c00052{word-spacing:-23.622682pt;}
.wsd_c00052{word-spacing:-23.544461pt;}
.ws0_c00052{word-spacing:0.000000pt;}
.ws10_c00052{word-spacing:0.032800pt;}
.wsa_c00052{word-spacing:0.038133pt;}
.wsb_c00052{word-spacing:0.039110pt;}
.ws4_c00052{word-spacing:0.046963pt;}
.ws7_c00052{word-spacing:0.047452pt;}
.ws6_c00052{word-spacing:0.056282pt;}
.wsf_c00052{word-spacing:0.056770pt;}
.ws13_c00052{word-spacing:0.057259pt;}
.wsc_c00052{word-spacing:0.062103pt;}
.ws15_c00052{word-spacing:0.062592pt;}
.ws9_c00052{word-spacing:0.065600pt;}
.ws1_c00052{word-spacing:0.071422pt;}
.wse_c00052{word-spacing:0.071910pt;}
.ws16_c00052{word-spacing:0.089082pt;}
.ws11_c00052{word-spacing:0.092578pt;}
.ws8_c00052{word-spacing:0.156442pt;}
.ws14_c00052{word-spacing:0.189242pt;}
.ws5_c00052{word-spacing:0.189730pt;}
.ws2_c00052{word-spacing:0.195063pt;}
.ws12_c00052{word-spacing:0.195552pt;}
._0_c00052{width:0.899810pt;}
.fs0_c00052{font-size:39.110400pt;}
.fs1_c00052{font-size:53.133867pt;}
.y0_c00052{bottom:0.000000pt;}
.y35_c00052{bottom:39.333333pt;}
.y34_c00052{bottom:110.441333pt;}
.y33_c00052{bottom:125.053333pt;}
.y32_c00052{bottom:139.665333pt;}
.y31_c00052{bottom:154.277333pt;}
.y30_c00052{bottom:198.112000pt;}
.y2f_c00052{bottom:227.336000pt;}
.y2e_c00052{bottom:241.948000pt;}
.y2d_c00052{bottom:256.560000pt;}
.y2c_c00052{bottom:271.172000pt;}
.y2b_c00052{bottom:300.396000pt;}
.y2a_c00052{bottom:315.008000pt;}
.y29_c00052{bottom:329.620000pt;}
.y28_c00052{bottom:344.230667pt;}
.y27_c00052{bottom:358.842667pt;}
.y26_c00052{bottom:373.454667pt;}
.y25_c00052{bottom:388.066667pt;}
.y24_c00052{bottom:402.678667pt;}
.y23_c00052{bottom:446.514667pt;}
.y22_c00052{bottom:461.126667pt;}
.y21_c00052{bottom:475.738667pt;}
.y20_c00052{bottom:490.349333pt;}
.y1f_c00052{bottom:504.961333pt;}
.y1e_c00052{bottom:519.573333pt;}
.y1d_c00052{bottom:534.185333pt;}
.y1c_c00052{bottom:548.797333pt;}
.y1b_c00052{bottom:563.409333pt;}
.y1a_c00052{bottom:592.633333pt;}
.y19_c00052{bottom:607.245333pt;}
.y18_c00052{bottom:621.857333pt;}
.y17_c00052{bottom:651.080000pt;}
.y16_c00052{bottom:665.692000pt;}
.y15_c00052{bottom:680.304000pt;}
.y14_c00052{bottom:709.528000pt;}
.y13_c00052{bottom:738.752000pt;}
.y12_c00052{bottom:753.364000pt;}
.y11_c00052{bottom:767.976000pt;}
.y10_c00052{bottom:782.588000pt;}
.yf_c00052{bottom:797.198667pt;}
.ye_c00052{bottom:811.810667pt;}
.yd_c00052{bottom:826.422667pt;}
.yc_c00052{bottom:841.034667pt;}
.yb_c00052{bottom:855.646667pt;}
.ya_c00052{bottom:884.870667pt;}
.y9_c00052{bottom:899.482667pt;}
.y8_c00052{bottom:928.706667pt;}
.y7_c00052{bottom:943.317333pt;}
.y6_c00052{bottom:957.929333pt;}
.y5_c00052{bottom:972.541333pt;}
.y4_c00052{bottom:987.153333pt;}
.y3_c00052{bottom:1001.765333pt;}
.y2_c00052{bottom:1016.377333pt;}
.y1_c00052{bottom:1030.989333pt;}
.h2_c00052{height:31.280681pt;}
.h3_c00052{height:32.006363pt;}
.h4_c00052{height:46.518078pt;}
.h0_c00052{height:1122.520000pt;}
.h1_c00052{height:1122.666667pt;}
.w0_c00052{width:793.706667pt;}
.w1_c00052{width:794.000000pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:121.886667pt;}
.x2_c00052{left:133.704000pt;}
.x3_c00052{left:145.522667pt;}
.x4_c00052{left:157.340000pt;}
.x5_c00052{left:263.696000pt;}
.x6_c00052{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc1434f760d279dbd70c7e82.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.048828;font-style:normal;font-weight:normal;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_4476933ee0b3329e540d198e.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.083496;font-style:normal;font-weight:normal;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_a657faa9b3a69f57d846b27e.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.014648;font-style:normal;font-weight:normal;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_b98d1e42057a901635f5e63c.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls4_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:0.087998px;}
.ls2_c00053{letter-spacing:0.098482px;}
.ls1_c00053{letter-spacing:0.104482px;}
.ls3_c00053{letter-spacing:26.690482px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:-26.575517px;}
.ws1_c00053{word-spacing:-26.487518px;}
.ws8_c00053{word-spacing:0.000000px;}
.ws11_c00053{word-spacing:0.036900px;}
.wsf_c00053{word-spacing:0.042900px;}
.ws2_c00053{word-spacing:0.043999px;}
.wsc_c00053{word-spacing:0.052834px;}
.wsd_c00053{word-spacing:0.053383px;}
.ws6_c00053{word-spacing:0.063317px;}
.ws10_c00053{word-spacing:0.063866px;}
.ws5_c00053{word-spacing:0.069866px;}
.wse_c00053{word-spacing:0.073800px;}
.wsa_c00053{word-spacing:0.079800px;}
.wsb_c00053{word-spacing:0.080350px;}
.ws3_c00053{word-spacing:0.080899px;}
.ws9_c00053{word-spacing:0.175997px;}
.ws4_c00053{word-spacing:0.213446px;}
.ws7_c00053{word-spacing:0.219446px;}
._0_c00053{width:1.012286px;}
.fc5_c00053{color:rgb(0,0,207);}
.fc4_c00053{color:rgb(207,92,0);}
.fc3_c00053{color:rgb(143,89,3);}
.fc2_c00053{color:rgb(79,153,5);}
.fc1_c00053{color:rgb(0,0,0);}
.fc0_c00053{color:rgb(33,74,135);}
.fs0_c00053{font-size:43.999200px;}
.fs1_c00053{font-size:59.775600px;}
.y0_c00053{bottom:0.000000px;}
.y30_c00053{bottom:44.250000px;}
.y2f_c00053{bottom:91.369500px;}
.y2e_c00053{bottom:107.808000px;}
.y2d_c00053{bottom:124.246500px;}
.y2c_c00053{bottom:157.123500px;}
.y2b_c00053{bottom:173.562000px;}
.y2a_c00053{bottom:190.000500px;}
.y29_c00053{bottom:222.876000px;}
.y28_c00053{bottom:255.753000px;}
.y27_c00053{bottom:272.191500px;}
.y26_c00053{bottom:288.630000px;}
.y25_c00053{bottom:305.068500px;}
.y24_c00053{bottom:321.507000px;}
.y23_c00053{bottom:337.945500px;}
.y22_c00053{bottom:354.384000px;}
.y21_c00053{bottom:370.822500px;}
.y20_c00053{bottom:387.259500px;}
.y1f_c00053{bottom:420.136500px;}
.y1e_c00053{bottom:436.575000px;}
.y1d_c00053{bottom:469.452000px;}
.y1c_c00053{bottom:485.890500px;}
.y1b_c00053{bottom:502.329000px;}
.y1a_c00053{bottom:518.767500px;}
.y19_c00053{bottom:535.206000px;}
.y18_c00053{bottom:551.643000px;}
.y17_c00053{bottom:568.081500px;}
.y16_c00053{bottom:584.520000px;}
.y15_c00053{bottom:650.274000px;}
.y14_c00053{bottom:666.712500px;}
.y13_c00053{bottom:699.589500px;}
.y12_c00053{bottom:716.028000px;}
.y11_c00053{bottom:732.465000px;}
.y10_c00053{bottom:748.903500px;}
.yf_c00053{bottom:765.342000px;}
.ye_c00053{bottom:781.780500px;}
.yd_c00053{bottom:814.657500px;}
.yc_c00053{bottom:847.534500px;}
.yb_c00053{bottom:880.411500px;}
.ya_c00053{bottom:896.848500px;}
.y9_c00053{bottom:913.287000px;}
.y8_c00053{bottom:946.164000px;}
.y7_c00053{bottom:962.602500px;}
.y6_c00053{bottom:1011.918000px;}
.y5_c00053{bottom:1094.109000px;}
.y4_c00053{bottom:1110.547500px;}
.y3_c00053{bottom:1126.986000px;}
.y2_c00053{bottom:1143.424500px;}
.y1_c00053{bottom:1159.863000px;}
.h3_c00053{height:35.190766px;}
.h2_c00053{height:36.007158px;}
.h4_c00053{height:52.332837px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w0_c00053{width:892.920000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:137.122500px;}
.x4_c00053{left:150.417000px;}
.x5_c00053{left:163.713000px;}
.x6_c00053{left:177.007500px;}
.x2_c00053{left:196.948500px;}
.x3_c00053{left:256.774500px;}
.x7_c00053{left:438.984000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls4_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:0.078221pt;}
.ls2_c00053{letter-spacing:0.087539pt;}
.ls1_c00053{letter-spacing:0.092873pt;}
.ls3_c00053{letter-spacing:23.724873pt;}
.ws0_c00053{word-spacing:-23.622682pt;}
.ws1_c00053{word-spacing:-23.544461pt;}
.ws8_c00053{word-spacing:0.000000pt;}
.ws11_c00053{word-spacing:0.032800pt;}
.wsf_c00053{word-spacing:0.038133pt;}
.ws2_c00053{word-spacing:0.039110pt;}
.wsc_c00053{word-spacing:0.046963pt;}
.wsd_c00053{word-spacing:0.047452pt;}
.ws6_c00053{word-spacing:0.056282pt;}
.ws10_c00053{word-spacing:0.056770pt;}
.ws5_c00053{word-spacing:0.062103pt;}
.wse_c00053{word-spacing:0.065600pt;}
.wsa_c00053{word-spacing:0.070933pt;}
.wsb_c00053{word-spacing:0.071422pt;}
.ws3_c00053{word-spacing:0.071910pt;}
.ws9_c00053{word-spacing:0.156442pt;}
.ws4_c00053{word-spacing:0.189730pt;}
.ws7_c00053{word-spacing:0.195063pt;}
._0_c00053{width:0.899810pt;}
.fs0_c00053{font-size:39.110400pt;}
.fs1_c00053{font-size:53.133867pt;}
.y0_c00053{bottom:0.000000pt;}
.y30_c00053{bottom:39.333333pt;}
.y2f_c00053{bottom:81.217333pt;}
.y2e_c00053{bottom:95.829333pt;}
.y2d_c00053{bottom:110.441333pt;}
.y2c_c00053{bottom:139.665333pt;}
.y2b_c00053{bottom:154.277333pt;}
.y2a_c00053{bottom:168.889333pt;}
.y29_c00053{bottom:198.112000pt;}
.y28_c00053{bottom:227.336000pt;}
.y27_c00053{bottom:241.948000pt;}
.y26_c00053{bottom:256.560000pt;}
.y25_c00053{bottom:271.172000pt;}
.y24_c00053{bottom:285.784000pt;}
.y23_c00053{bottom:300.396000pt;}
.y22_c00053{bottom:315.008000pt;}
.y21_c00053{bottom:329.620000pt;}
.y20_c00053{bottom:344.230667pt;}
.y1f_c00053{bottom:373.454667pt;}
.y1e_c00053{bottom:388.066667pt;}
.y1d_c00053{bottom:417.290667pt;}
.y1c_c00053{bottom:431.902667pt;}
.y1b_c00053{bottom:446.514667pt;}
.y1a_c00053{bottom:461.126667pt;}
.y19_c00053{bottom:475.738667pt;}
.y18_c00053{bottom:490.349333pt;}
.y17_c00053{bottom:504.961333pt;}
.y16_c00053{bottom:519.573333pt;}
.y15_c00053{bottom:578.021333pt;}
.y14_c00053{bottom:592.633333pt;}
.y13_c00053{bottom:621.857333pt;}
.y12_c00053{bottom:636.469333pt;}
.y11_c00053{bottom:651.080000pt;}
.y10_c00053{bottom:665.692000pt;}
.yf_c00053{bottom:680.304000pt;}
.ye_c00053{bottom:694.916000pt;}
.yd_c00053{bottom:724.140000pt;}
.yc_c00053{bottom:753.364000pt;}
.yb_c00053{bottom:782.588000pt;}
.ya_c00053{bottom:797.198667pt;}
.y9_c00053{bottom:811.810667pt;}
.y8_c00053{bottom:841.034667pt;}
.y7_c00053{bottom:855.646667pt;}
.y6_c00053{bottom:899.482667pt;}
.y5_c00053{bottom:972.541333pt;}
.y4_c00053{bottom:987.153333pt;}
.y3_c00053{bottom:1001.765333pt;}
.y2_c00053{bottom:1016.377333pt;}
.y1_c00053{bottom:1030.989333pt;}
.h3_c00053{height:31.280681pt;}
.h2_c00053{height:32.006363pt;}
.h4_c00053{height:46.518078pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w0_c00053{width:793.706667pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:121.886667pt;}
.x4_c00053{left:133.704000pt;}
.x5_c00053{left:145.522667pt;}
.x6_c00053{left:157.340000pt;}
.x2_c00053{left:175.065333pt;}
.x3_c00053{left:228.244000pt;}
.x7_c00053{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c369d983b5af5d0c960878cb.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.083496;font-style:normal;font-weight:normal;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_47493bcc01810302bae75588.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.048828;font-style:normal;font-weight:normal;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_902c0f4b4b1d1616e9363cd1.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.014648;font-style:normal;font-weight:normal;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_d627ea6b9fe2a20872b130d1.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_8c9534258cebd3939b2382a6.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls4_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.087998px;}
.ls3_c00054{letter-spacing:0.098482px;}
.ls1_c00054{letter-spacing:0.104482px;}
.ls2_c00054{letter-spacing:26.690482px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:-26.575517px;}
.ws8_c00054{word-spacing:-26.487518px;}
.ws1_c00054{word-spacing:0.000000px;}
.ws3_c00054{word-spacing:0.043999px;}
.wse_c00054{word-spacing:0.052834px;}
.wsb_c00054{word-spacing:0.063317px;}
.wsa_c00054{word-spacing:0.069866px;}
.wsc_c00054{word-spacing:0.079800px;}
.wsd_c00054{word-spacing:0.080350px;}
.ws9_c00054{word-spacing:0.080899px;}
.ws7_c00054{word-spacing:0.086018px;}
.ws6_c00054{word-spacing:0.175997px;}
.ws2_c00054{word-spacing:0.212897px;}
.ws5_c00054{word-spacing:0.213446px;}
.ws4_c00054{word-spacing:0.219446px;}
._1_c00054{margin-left:-2370.136958px;}
._0_c00054{width:1.113053px;}
.fc5_c00054{color:rgb(0,0,207);}
.fc4_c00054{color:rgb(207,92,0);}
.fc3_c00054{color:rgb(79,153,5);}
.fc2_c00054{color:rgb(33,74,135);}
.fc1_c00054{color:rgb(143,89,3);}
.fc0_c00054{color:rgb(0,0,0);}
.fs1_c00054{font-size:31.015800px;}
.fs0_c00054{font-size:43.999200px;}
.fs2_c00054{font-size:59.775600px;}
.y0_c00054{bottom:0.000000px;}
.y2c_c00054{bottom:44.250000px;}
.y2b_c00054{bottom:91.743000px;}
.y2a_c00054{bottom:108.181500px;}
.y29_c00054{bottom:124.620000px;}
.y28_c00054{bottom:190.374000px;}
.y27_c00054{bottom:206.812500px;}
.y26_c00054{bottom:239.688000px;}
.y25_c00054{bottom:256.126500px;}
.y24_c00054{bottom:272.565000px;}
.y23_c00054{bottom:289.003500px;}
.y22_c00054{bottom:305.442000px;}
.y21_c00054{bottom:321.880500px;}
.y20_c00054{bottom:354.757500px;}
.y1f_c00054{bottom:387.633000px;}
.y1e_c00054{bottom:420.510000px;}
.y1d_c00054{bottom:436.948500px;}
.y1c_c00054{bottom:453.387000px;}
.y1b_c00054{bottom:486.264000px;}
.y1a_c00054{bottom:502.702500px;}
.y19_c00054{bottom:568.455000px;}
.y18_c00054{bottom:650.647500px;}
.y17_c00054{bottom:667.086000px;}
.y16_c00054{bottom:683.524500px;}
.y15_c00054{bottom:699.963000px;}
.y14_c00054{bottom:716.401500px;}
.y13_c00054{bottom:765.715500px;}
.y12_c00054{bottom:781.780500px;}
.y11_c00054{bottom:798.219000px;}
.y10_c00054{bottom:814.657500px;}
.yf_c00054{bottom:831.096000px;}
.ye_c00054{bottom:880.411500px;}
.yd_c00054{bottom:913.287000px;}
.yc_c00054{bottom:929.725500px;}
.yb_c00054{bottom:946.164000px;}
.ya_c00054{bottom:962.602500px;}
.y9_c00054{bottom:995.479500px;}
.y8_c00054{bottom:1011.918000px;}
.y7_c00054{bottom:1028.356500px;}
.y6_c00054{bottom:1044.795000px;}
.y5_c00054{bottom:1061.232000px;}
.y4_c00054{bottom:1077.670500px;}
.y3_c00054{bottom:1094.109000px;}
.y2_c00054{bottom:1110.547500px;}
.y1_c00054{bottom:1143.424500px;}
.h3_c00054{height:35.190766px;}
.h2_c00054{height:36.007158px;}
.h4_c00054{height:52.332837px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w0_c00054{width:892.920000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.x4_c00054{left:137.122500px;}
.x3_c00054{left:150.417000px;}
.x1_c00054{left:163.713000px;}
.x2_c00054{left:177.007500px;}
.x6_c00054{left:196.948500px;}
.x7_c00054{left:256.774500px;}
.x5_c00054{left:376.425000px;}
.x8_c00054{left:438.984000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls4_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.078221pt;}
.ls3_c00054{letter-spacing:0.087539pt;}
.ls1_c00054{letter-spacing:0.092873pt;}
.ls2_c00054{letter-spacing:23.724873pt;}
.ws0_c00054{word-spacing:-23.622682pt;}
.ws8_c00054{word-spacing:-23.544461pt;}
.ws1_c00054{word-spacing:0.000000pt;}
.ws3_c00054{word-spacing:0.039110pt;}
.wse_c00054{word-spacing:0.046963pt;}
.wsb_c00054{word-spacing:0.056282pt;}
.wsa_c00054{word-spacing:0.062103pt;}
.wsc_c00054{word-spacing:0.070933pt;}
.wsd_c00054{word-spacing:0.071422pt;}
.ws9_c00054{word-spacing:0.071910pt;}
.ws7_c00054{word-spacing:0.076461pt;}
.ws6_c00054{word-spacing:0.156442pt;}
.ws2_c00054{word-spacing:0.189242pt;}
.ws5_c00054{word-spacing:0.189730pt;}
.ws4_c00054{word-spacing:0.195063pt;}
._1_c00054{margin-left:-2106.788407pt;}
._0_c00054{width:0.989380pt;}
.fs1_c00054{font-size:27.569600pt;}
.fs0_c00054{font-size:39.110400pt;}
.fs2_c00054{font-size:53.133867pt;}
.y0_c00054{bottom:0.000000pt;}
.y2c_c00054{bottom:39.333333pt;}
.y2b_c00054{bottom:81.549333pt;}
.y2a_c00054{bottom:96.161333pt;}
.y29_c00054{bottom:110.773333pt;}
.y28_c00054{bottom:169.221333pt;}
.y27_c00054{bottom:183.833333pt;}
.y26_c00054{bottom:213.056000pt;}
.y25_c00054{bottom:227.668000pt;}
.y24_c00054{bottom:242.280000pt;}
.y23_c00054{bottom:256.892000pt;}
.y22_c00054{bottom:271.504000pt;}
.y21_c00054{bottom:286.116000pt;}
.y20_c00054{bottom:315.340000pt;}
.y1f_c00054{bottom:344.562667pt;}
.y1e_c00054{bottom:373.786667pt;}
.y1d_c00054{bottom:388.398667pt;}
.y1c_c00054{bottom:403.010667pt;}
.y1b_c00054{bottom:432.234667pt;}
.y1a_c00054{bottom:446.846667pt;}
.y19_c00054{bottom:505.293333pt;}
.y18_c00054{bottom:578.353333pt;}
.y17_c00054{bottom:592.965333pt;}
.y16_c00054{bottom:607.577333pt;}
.y15_c00054{bottom:622.189333pt;}
.y14_c00054{bottom:636.801333pt;}
.y13_c00054{bottom:680.636000pt;}
.y12_c00054{bottom:694.916000pt;}
.y11_c00054{bottom:709.528000pt;}
.y10_c00054{bottom:724.140000pt;}
.yf_c00054{bottom:738.752000pt;}
.ye_c00054{bottom:782.588000pt;}
.yd_c00054{bottom:811.810667pt;}
.yc_c00054{bottom:826.422667pt;}
.yb_c00054{bottom:841.034667pt;}
.ya_c00054{bottom:855.646667pt;}
.y9_c00054{bottom:884.870667pt;}
.y8_c00054{bottom:899.482667pt;}
.y7_c00054{bottom:914.094667pt;}
.y6_c00054{bottom:928.706667pt;}
.y5_c00054{bottom:943.317333pt;}
.y4_c00054{bottom:957.929333pt;}
.y3_c00054{bottom:972.541333pt;}
.y2_c00054{bottom:987.153333pt;}
.y1_c00054{bottom:1016.377333pt;}
.h3_c00054{height:31.280681pt;}
.h2_c00054{height:32.006363pt;}
.h4_c00054{height:46.518078pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w0_c00054{width:793.706667pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.x4_c00054{left:121.886667pt;}
.x3_c00054{left:133.704000pt;}
.x1_c00054{left:145.522667pt;}
.x2_c00054{left:157.340000pt;}
.x6_c00054{left:175.065333pt;}
.x7_c00054{left:228.244000pt;}
.x5_c00054{left:334.600000pt;}
.x8_c00054{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cedb4f589b8053df750d672f.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.083496;font-style:normal;font-weight:normal;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_0e739111e15ffe506dc719eb.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_f10a18f19b3bced36b47f601.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_832c07a50538600e18769558.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00055;src:url('chunks/assets/font_b9fb12b9abf780b78f428124.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:1.102051;font-style: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);}
.v1_c00055{vertical-align:-12.258000px;}
.v0_c00055{vertical-align:0.000000px;}
.ls4_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:0.087998px;}
.ls3_c00055{letter-spacing:0.098482px;}
.ls2_c00055{letter-spacing:0.104482px;}
.ls1_c00055{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00055{word-spacing:-26.575517px;}
.wsd_c00055{word-spacing:-26.487518px;}
.ws14_c00055{word-spacing:-19.156200px;}
.ws7_c00055{word-spacing:0.000000px;}
.ws10_c00055{word-spacing:0.036900px;}
.wsa_c00055{word-spacing:0.042900px;}
.wsb_c00055{word-spacing:0.043999px;}
.ws4_c00055{word-spacing:0.052834px;}
.ws6_c00055{word-spacing:0.053383px;}
.ws3_c00055{word-spacing:0.063317px;}
.wsf_c00055{word-spacing:0.063866px;}
.wsc_c00055{word-spacing:0.069866px;}
.ws9_c00055{word-spacing:0.073800px;}
.ws11_c00055{word-spacing:0.079800px;}
.ws0_c00055{word-spacing:0.080350px;}
.wse_c00055{word-spacing:0.080899px;}
.ws13_c00055{word-spacing:0.112435px;}
.ws8_c00055{word-spacing:0.175997px;}
.ws12_c00055{word-spacing:0.212897px;}
.ws5_c00055{word-spacing:0.213446px;}
.ws1_c00055{word-spacing:0.219446px;}
._1_c00055{margin-left:-1439.876621px;}
._0_c00055{width:1.012286px;}
.fc5_c00055{color:rgb(207,92,0);}
.fc4_c00055{color:rgb(33,74,135);}
.fc3_c00055{color:rgb(79,153,5);}
.fc2_c00055{color:rgb(0,0,207);}
.fc1_c00055{color:rgb(143,89,3);}
.fc0_c00055{color:rgb(0,0,0);}
.fs2_c00055{font-size:31.015800px;}
.fs1_c00055{font-size:37.218600px;}
.fs0_c00055{font-size:43.999200px;}
.fs3_c00055{font-size:59.775600px;}
.y0_c00055{bottom:0.000000px;}
.y32_c00055{bottom:44.250000px;}
.y31_c00055{bottom:106.228500px;}
.y30_c00055{bottom:122.667000px;}
.y2f_c00055{bottom:171.981000px;}
.y2e_c00055{bottom:237.735000px;}
.y2d_c00055{bottom:254.173500px;}
.y2c_c00055{bottom:270.612000px;}
.y2b_c00055{bottom:287.050500px;}
.y2a_c00055{bottom:303.487500px;}
.y29_c00055{bottom:352.803000px;}
.y28_c00055{bottom:368.868000px;}
.y27_c00055{bottom:387.259500px;}
.y26_c00055{bottom:403.698000px;}
.y25_c00055{bottom:420.136500px;}
.y24_c00055{bottom:453.013500px;}
.y23_c00055{bottom:485.890500px;}
.y22_c00055{bottom:502.329000px;}
.y21_c00055{bottom:518.767500px;}
.y20_c00055{bottom:551.643000px;}
.y1f_c00055{bottom:568.081500px;}
.y1e_c00055{bottom:584.520000px;}
.y1d_c00055{bottom:600.958500px;}
.y1c_c00055{bottom:617.397000px;}
.y1b_c00055{bottom:633.835500px;}
.y1a_c00055{bottom:650.274000px;}
.y19_c00055{bottom:666.712500px;}
.y18_c00055{bottom:699.589500px;}
.y17_c00055{bottom:716.028000px;}
.y16_c00055{bottom:732.465000px;}
.y15_c00055{bottom:748.903500px;}
.y14_c00055{bottom:781.780500px;}
.y13_c00055{bottom:798.219000px;}
.y12_c00055{bottom:814.657500px;}
.y11_c00055{bottom:847.534500px;}
.y10_c00055{bottom:880.411500px;}
.yf_c00055{bottom:896.848500px;}
.ye_c00055{bottom:913.287000px;}
.yd_c00055{bottom:929.725500px;}
.yc_c00055{bottom:946.164000px;}
.yb_c00055{bottom:962.602500px;}
.ya_c00055{bottom:979.041000px;}
.y9_c00055{bottom:995.479500px;}
.y8_c00055{bottom:1011.918000px;}
.y7_c00055{bottom:1044.795000px;}
.y6_c00055{bottom:1061.232000px;}
.y5_c00055{bottom:1094.109000px;}
.y4_c00055{bottom:1110.547500px;}
.y3_c00055{bottom:1126.986000px;}
.y2_c00055{bottom:1143.424500px;}
.y1_c00055{bottom:1159.863000px;}
.h3_c00055{height:35.190766px;}
.h2_c00055{height:36.007158px;}
.h4_c00055{height:52.332837px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w0_c00055{width:892.920000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:137.122500px;}
.x2_c00055{left:150.417000px;}
.x3_c00055{left:163.713000px;}
.x4_c00055{left:177.007500px;}
.x6_c00055{left:196.948500px;}
.x5_c00055{left:409.662000px;}
.x7_c00055{left:438.984000px;}
@media print{
.v1_c00055{vertical-align:-10.896000pt;}
.v0_c00055{vertical-align:0.000000pt;}
.ls4_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:0.078221pt;}
.ls3_c00055{letter-spacing:0.087539pt;}
.ls2_c00055{letter-spacing:0.092873pt;}
.ls1_c00055{letter-spacing:23.724873pt;}
.ws2_c00055{word-spacing:-23.622682pt;}
.wsd_c00055{word-spacing:-23.544461pt;}
.ws14_c00055{word-spacing:-17.027733pt;}
.ws7_c00055{word-spacing:0.000000pt;}
.ws10_c00055{word-spacing:0.032800pt;}
.wsa_c00055{word-spacing:0.038133pt;}
.wsb_c00055{word-spacing:0.039110pt;}
.ws4_c00055{word-spacing:0.046963pt;}
.ws6_c00055{word-spacing:0.047452pt;}
.ws3_c00055{word-spacing:0.056282pt;}
.wsf_c00055{word-spacing:0.056770pt;}
.wsc_c00055{word-spacing:0.062103pt;}
.ws9_c00055{word-spacing:0.065600pt;}
.ws11_c00055{word-spacing:0.070933pt;}
.ws0_c00055{word-spacing:0.071422pt;}
.wse_c00055{word-spacing:0.071910pt;}
.ws13_c00055{word-spacing:0.099942pt;}
.ws8_c00055{word-spacing:0.156442pt;}
.ws12_c00055{word-spacing:0.189242pt;}
.ws5_c00055{word-spacing:0.189730pt;}
.ws1_c00055{word-spacing:0.195063pt;}
._1_c00055{margin-left:-1279.890330pt;}
._0_c00055{width:0.899810pt;}
.fs2_c00055{font-size:27.569600pt;}
.fs1_c00055{font-size:33.083200pt;}
.fs0_c00055{font-size:39.110400pt;}
.fs3_c00055{font-size:53.133867pt;}
.y0_c00055{bottom:0.000000pt;}
.y32_c00055{bottom:39.333333pt;}
.y31_c00055{bottom:94.425333pt;}
.y30_c00055{bottom:109.037333pt;}
.y2f_c00055{bottom:152.872000pt;}
.y2e_c00055{bottom:211.320000pt;}
.y2d_c00055{bottom:225.932000pt;}
.y2c_c00055{bottom:240.544000pt;}
.y2b_c00055{bottom:255.156000pt;}
.y2a_c00055{bottom:269.766667pt;}
.y29_c00055{bottom:313.602667pt;}
.y28_c00055{bottom:327.882667pt;}
.y27_c00055{bottom:344.230667pt;}
.y26_c00055{bottom:358.842667pt;}
.y25_c00055{bottom:373.454667pt;}
.y24_c00055{bottom:402.678667pt;}
.y23_c00055{bottom:431.902667pt;}
.y22_c00055{bottom:446.514667pt;}
.y21_c00055{bottom:461.126667pt;}
.y20_c00055{bottom:490.349333pt;}
.y1f_c00055{bottom:504.961333pt;}
.y1e_c00055{bottom:519.573333pt;}
.y1d_c00055{bottom:534.185333pt;}
.y1c_c00055{bottom:548.797333pt;}
.y1b_c00055{bottom:563.409333pt;}
.y1a_c00055{bottom:578.021333pt;}
.y19_c00055{bottom:592.633333pt;}
.y18_c00055{bottom:621.857333pt;}
.y17_c00055{bottom:636.469333pt;}
.y16_c00055{bottom:651.080000pt;}
.y15_c00055{bottom:665.692000pt;}
.y14_c00055{bottom:694.916000pt;}
.y13_c00055{bottom:709.528000pt;}
.y12_c00055{bottom:724.140000pt;}
.y11_c00055{bottom:753.364000pt;}
.y10_c00055{bottom:782.588000pt;}
.yf_c00055{bottom:797.198667pt;}
.ye_c00055{bottom:811.810667pt;}
.yd_c00055{bottom:826.422667pt;}
.yc_c00055{bottom:841.034667pt;}
.yb_c00055{bottom:855.646667pt;}
.ya_c00055{bottom:870.258667pt;}
.y9_c00055{bottom:884.870667pt;}
.y8_c00055{bottom:899.482667pt;}
.y7_c00055{bottom:928.706667pt;}
.y6_c00055{bottom:943.317333pt;}
.y5_c00055{bottom:972.541333pt;}
.y4_c00055{bottom:987.153333pt;}
.y3_c00055{bottom:1001.765333pt;}
.y2_c00055{bottom:1016.377333pt;}
.y1_c00055{bottom:1030.989333pt;}
.h3_c00055{height:31.280681pt;}
.h2_c00055{height:32.006363pt;}
.h4_c00055{height:46.518078pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w0_c00055{width:793.706667pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:121.886667pt;}
.x2_c00055{left:133.704000pt;}
.x3_c00055{left:145.522667pt;}
.x4_c00055{left:157.340000pt;}
.x6_c00055{left:175.065333pt;}
.x5_c00055{left:364.144000pt;}
.x7_c00055{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85b546b4a373e84df3c684e6.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.083496;font-style:normal;font-weight:normal;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_1a0a456afd2d1734bee63968.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.048828;font-style:normal;font-weight:normal;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_16716dd5c25f213100bc3ccc.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.014648;font-style:normal;font-weight:normal;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_d1763b9f7beadb7e82c6a059.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls4_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.087998px;}
.ls2_c00056{letter-spacing:0.098482px;}
.ls1_c00056{letter-spacing:0.104482px;}
.ls3_c00056{letter-spacing:26.690482px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-26.575517px;}
.wsf_c00056{word-spacing:-26.487518px;}
.ws7_c00056{word-spacing:0.000000px;}
.ws11_c00056{word-spacing:0.036900px;}
.wse_c00056{word-spacing:0.042900px;}
.ws3_c00056{word-spacing:0.043999px;}
.wsb_c00056{word-spacing:0.052834px;}
.wsc_c00056{word-spacing:0.053383px;}
.ws5_c00056{word-spacing:0.063317px;}
.ws10_c00056{word-spacing:0.063866px;}
.ws4_c00056{word-spacing:0.069866px;}
.wsd_c00056{word-spacing:0.073800px;}
.ws9_c00056{word-spacing:0.079800px;}
.wsa_c00056{word-spacing:0.080350px;}
.ws1_c00056{word-spacing:0.080899px;}
.ws8_c00056{word-spacing:0.175997px;}
.ws12_c00056{word-spacing:0.212897px;}
.ws2_c00056{word-spacing:0.213446px;}
.ws6_c00056{word-spacing:0.219446px;}
._0_c00056{width:1.012286px;}
.fc5_c00056{color:rgb(0,0,207);}
.fc4_c00056{color:rgb(79,153,5);}
.fc3_c00056{color:rgb(33,74,135);}
.fc2_c00056{color:rgb(143,89,3);}
.fc1_c00056{color:rgb(207,92,0);}
.fc0_c00056{color:rgb(0,0,0);}
.fs0_c00056{font-size:43.999200px;}
.fs1_c00056{font-size:59.775600px;}
.y0_c00056{bottom:0.000000px;}
.y34_c00056{bottom:44.250000px;}
.y33_c00056{bottom:91.369500px;}
.y32_c00056{bottom:107.808000px;}
.y31_c00056{bottom:124.246500px;}
.y30_c00056{bottom:157.123500px;}
.y2f_c00056{bottom:173.562000px;}
.y2e_c00056{bottom:190.000500px;}
.y2d_c00056{bottom:206.437500px;}
.y2c_c00056{bottom:222.876000px;}
.y2b_c00056{bottom:239.314500px;}
.y2a_c00056{bottom:255.753000px;}
.y29_c00056{bottom:272.191500px;}
.y28_c00056{bottom:305.068500px;}
.y27_c00056{bottom:337.945500px;}
.y26_c00056{bottom:354.384000px;}
.y25_c00056{bottom:370.822500px;}
.y24_c00056{bottom:403.698000px;}
.y23_c00056{bottom:420.136500px;}
.y22_c00056{bottom:436.575000px;}
.y21_c00056{bottom:469.452000px;}
.y20_c00056{bottom:502.329000px;}
.y1f_c00056{bottom:518.767500px;}
.y1e_c00056{bottom:535.206000px;}
.y1d_c00056{bottom:551.643000px;}
.y1c_c00056{bottom:568.081500px;}
.y1b_c00056{bottom:584.520000px;}
.y1a_c00056{bottom:600.958500px;}
.y19_c00056{bottom:617.397000px;}
.y18_c00056{bottom:633.835500px;}
.y17_c00056{bottom:666.712500px;}
.y16_c00056{bottom:683.151000px;}
.y15_c00056{bottom:716.028000px;}
.y14_c00056{bottom:732.465000px;}
.y13_c00056{bottom:748.903500px;}
.y12_c00056{bottom:765.342000px;}
.y11_c00056{bottom:781.780500px;}
.y10_c00056{bottom:798.219000px;}
.yf_c00056{bottom:814.657500px;}
.ye_c00056{bottom:831.096000px;}
.yd_c00056{bottom:896.848500px;}
.yc_c00056{bottom:913.287000px;}
.yb_c00056{bottom:946.164000px;}
.ya_c00056{bottom:962.602500px;}
.y9_c00056{bottom:979.041000px;}
.y8_c00056{bottom:995.479500px;}
.y7_c00056{bottom:1011.918000px;}
.y6_c00056{bottom:1028.356500px;}
.y5_c00056{bottom:1061.232000px;}
.y4_c00056{bottom:1094.109000px;}
.y3_c00056{bottom:1126.986000px;}
.y2_c00056{bottom:1143.424500px;}
.y1_c00056{bottom:1159.863000px;}
.h3_c00056{height:35.190766px;}
.h2_c00056{height:36.007158px;}
.h4_c00056{height:52.332837px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w0_c00056{width:892.920000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:137.122500px;}
.x3_c00056{left:150.417000px;}
.x4_c00056{left:163.713000px;}
.x5_c00056{left:177.007500px;}
.x2_c00056{left:256.774500px;}
.x6_c00056{left:438.984000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls4_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.078221pt;}
.ls2_c00056{letter-spacing:0.087539pt;}
.ls1_c00056{letter-spacing:0.092873pt;}
.ls3_c00056{letter-spacing:23.724873pt;}
.ws0_c00056{word-spacing:-23.622682pt;}
.wsf_c00056{word-spacing:-23.544461pt;}
.ws7_c00056{word-spacing:0.000000pt;}
.ws11_c00056{word-spacing:0.032800pt;}
.wse_c00056{word-spacing:0.038133pt;}
.ws3_c00056{word-spacing:0.039110pt;}
.wsb_c00056{word-spacing:0.046963pt;}
.wsc_c00056{word-spacing:0.047452pt;}
.ws5_c00056{word-spacing:0.056282pt;}
.ws10_c00056{word-spacing:0.056770pt;}
.ws4_c00056{word-spacing:0.062103pt;}
.wsd_c00056{word-spacing:0.065600pt;}
.ws9_c00056{word-spacing:0.070933pt;}
.wsa_c00056{word-spacing:0.071422pt;}
.ws1_c00056{word-spacing:0.071910pt;}
.ws8_c00056{word-spacing:0.156442pt;}
.ws12_c00056{word-spacing:0.189242pt;}
.ws2_c00056{word-spacing:0.189730pt;}
.ws6_c00056{word-spacing:0.195063pt;}
._0_c00056{width:0.899810pt;}
.fs0_c00056{font-size:39.110400pt;}
.fs1_c00056{font-size:53.133867pt;}
.y0_c00056{bottom:0.000000pt;}
.y34_c00056{bottom:39.333333pt;}
.y33_c00056{bottom:81.217333pt;}
.y32_c00056{bottom:95.829333pt;}
.y31_c00056{bottom:110.441333pt;}
.y30_c00056{bottom:139.665333pt;}
.y2f_c00056{bottom:154.277333pt;}
.y2e_c00056{bottom:168.889333pt;}
.y2d_c00056{bottom:183.500000pt;}
.y2c_c00056{bottom:198.112000pt;}
.y2b_c00056{bottom:212.724000pt;}
.y2a_c00056{bottom:227.336000pt;}
.y29_c00056{bottom:241.948000pt;}
.y28_c00056{bottom:271.172000pt;}
.y27_c00056{bottom:300.396000pt;}
.y26_c00056{bottom:315.008000pt;}
.y25_c00056{bottom:329.620000pt;}
.y24_c00056{bottom:358.842667pt;}
.y23_c00056{bottom:373.454667pt;}
.y22_c00056{bottom:388.066667pt;}
.y21_c00056{bottom:417.290667pt;}
.y20_c00056{bottom:446.514667pt;}
.y1f_c00056{bottom:461.126667pt;}
.y1e_c00056{bottom:475.738667pt;}
.y1d_c00056{bottom:490.349333pt;}
.y1c_c00056{bottom:504.961333pt;}
.y1b_c00056{bottom:519.573333pt;}
.y1a_c00056{bottom:534.185333pt;}
.y19_c00056{bottom:548.797333pt;}
.y18_c00056{bottom:563.409333pt;}
.y17_c00056{bottom:592.633333pt;}
.y16_c00056{bottom:607.245333pt;}
.y15_c00056{bottom:636.469333pt;}
.y14_c00056{bottom:651.080000pt;}
.y13_c00056{bottom:665.692000pt;}
.y12_c00056{bottom:680.304000pt;}
.y11_c00056{bottom:694.916000pt;}
.y10_c00056{bottom:709.528000pt;}
.yf_c00056{bottom:724.140000pt;}
.ye_c00056{bottom:738.752000pt;}
.yd_c00056{bottom:797.198667pt;}
.yc_c00056{bottom:811.810667pt;}
.yb_c00056{bottom:841.034667pt;}
.ya_c00056{bottom:855.646667pt;}
.y9_c00056{bottom:870.258667pt;}
.y8_c00056{bottom:884.870667pt;}
.y7_c00056{bottom:899.482667pt;}
.y6_c00056{bottom:914.094667pt;}
.y5_c00056{bottom:943.317333pt;}
.y4_c00056{bottom:972.541333pt;}
.y3_c00056{bottom:1001.765333pt;}
.y2_c00056{bottom:1016.377333pt;}
.y1_c00056{bottom:1030.989333pt;}
.h3_c00056{height:31.280681pt;}
.h2_c00056{height:32.006363pt;}
.h4_c00056{height:46.518078pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w0_c00056{width:793.706667pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:121.886667pt;}
.x3_c00056{left:133.704000pt;}
.x4_c00056{left:145.522667pt;}
.x5_c00056{left:157.340000pt;}
.x2_c00056{left:228.244000pt;}
.x6_c00056{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3003271da204fff9c951f025.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.083496;font-style:normal;font-weight:normal;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_c83e209bc2cca8d06f8d25d9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_00a68fe0a1d1baeba593761d.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_ddccbc0397fb4ef32c6affeb.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls4_c00057{letter-spacing:0.000000px;}
.ls0_c00057{letter-spacing:0.087998px;}
.ls3_c00057{letter-spacing:0.098482px;}
.ls1_c00057{letter-spacing:0.104482px;}
.ls2_c00057{letter-spacing:26.690482px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-26.575517px;}
.ws5_c00057{word-spacing:-26.487518px;}
.ws2_c00057{word-spacing:0.000000px;}
.ws10_c00057{word-spacing:0.042900px;}
.ws1_c00057{word-spacing:0.043999px;}
.wsd_c00057{word-spacing:0.052834px;}
.wse_c00057{word-spacing:0.053383px;}
.ws9_c00057{word-spacing:0.063317px;}
.ws8_c00057{word-spacing:0.069866px;}
.wsf_c00057{word-spacing:0.073800px;}
.wsb_c00057{word-spacing:0.079800px;}
.wsc_c00057{word-spacing:0.080350px;}
.ws6_c00057{word-spacing:0.080899px;}
.ws4_c00057{word-spacing:0.083184px;}
.ws3_c00057{word-spacing:0.175997px;}
.ws7_c00057{word-spacing:0.213446px;}
.wsa_c00057{word-spacing:0.219446px;}
._0_c00057{width:1.113053px;}
.fc5_c00057{color:rgb(0,0,207);}
.fc4_c00057{color:rgb(207,92,0);}
.fc3_c00057{color:rgb(143,89,3);}
.fc2_c00057{color:rgb(79,153,5);}
.fc1_c00057{color:rgb(33,74,135);}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:43.999200px;}
.fs1_c00057{font-size:59.775600px;}
.y0_c00057{bottom:0.000000px;}
.y2f_c00057{bottom:44.250000px;}
.y2e_c00057{bottom:107.808000px;}
.y2d_c00057{bottom:124.246500px;}
.y2c_c00057{bottom:140.685000px;}
.y2b_c00057{bottom:157.123500px;}
.y2a_c00057{bottom:173.562000px;}
.y29_c00057{bottom:190.000500px;}
.y28_c00057{bottom:206.437500px;}
.y27_c00057{bottom:222.876000px;}
.y26_c00057{bottom:239.314500px;}
.y25_c00057{bottom:272.191500px;}
.y24_c00057{bottom:288.630000px;}
.y23_c00057{bottom:321.507000px;}
.y22_c00057{bottom:337.945500px;}
.y21_c00057{bottom:354.384000px;}
.y20_c00057{bottom:370.822500px;}
.y1f_c00057{bottom:387.259500px;}
.y1e_c00057{bottom:403.698000px;}
.y1d_c00057{bottom:420.136500px;}
.y1c_c00057{bottom:436.575000px;}
.y1b_c00057{bottom:485.890500px;}
.y1a_c00057{bottom:502.329000px;}
.y19_c00057{bottom:535.206000px;}
.y18_c00057{bottom:551.643000px;}
.y17_c00057{bottom:568.081500px;}
.y16_c00057{bottom:584.520000px;}
.y15_c00057{bottom:600.958500px;}
.y14_c00057{bottom:617.397000px;}
.y13_c00057{bottom:650.274000px;}
.y12_c00057{bottom:683.151000px;}
.y11_c00057{bottom:716.028000px;}
.y10_c00057{bottom:732.465000px;}
.yf_c00057{bottom:748.903500px;}
.ye_c00057{bottom:781.780500px;}
.yd_c00057{bottom:798.219000px;}
.yc_c00057{bottom:847.534500px;}
.yb_c00057{bottom:913.287000px;}
.ya_c00057{bottom:929.725500px;}
.y9_c00057{bottom:946.164000px;}
.y8_c00057{bottom:962.602500px;}
.y7_c00057{bottom:979.041000px;}
.y6_c00057{bottom:1028.356500px;}
.y5_c00057{bottom:1044.795000px;}
.y4_c00057{bottom:1061.232000px;}
.y3_c00057{bottom:1077.670500px;}
.y2_c00057{bottom:1126.986000px;}
.y1_c00057{bottom:1159.863000px;}
.h3_c00057{height:35.190766px;}
.h2_c00057{height:36.007158px;}
.h4_c00057{height:52.332837px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w0_c00057{width:892.920000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:137.122500px;}
.x5_c00057{left:150.417000px;}
.x6_c00057{left:163.713000px;}
.x3_c00057{left:196.948500px;}
.x4_c00057{left:256.774500px;}
.x2_c00057{left:309.952500px;}
.x7_c00057{left:438.984000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls4_c00057{letter-spacing:0.000000pt;}
.ls0_c00057{letter-spacing:0.078221pt;}
.ls3_c00057{letter-spacing:0.087539pt;}
.ls1_c00057{letter-spacing:0.092873pt;}
.ls2_c00057{letter-spacing:23.724873pt;}
.ws0_c00057{word-spacing:-23.622682pt;}
.ws5_c00057{word-spacing:-23.544461pt;}
.ws2_c00057{word-spacing:0.000000pt;}
.ws10_c00057{word-spacing:0.038133pt;}
.ws1_c00057{word-spacing:0.039110pt;}
.wsd_c00057{word-spacing:0.046963pt;}
.wse_c00057{word-spacing:0.047452pt;}
.ws9_c00057{word-spacing:0.056282pt;}
.ws8_c00057{word-spacing:0.062103pt;}
.wsf_c00057{word-spacing:0.065600pt;}
.wsb_c00057{word-spacing:0.070933pt;}
.wsc_c00057{word-spacing:0.071422pt;}
.ws6_c00057{word-spacing:0.071910pt;}
.ws4_c00057{word-spacing:0.073941pt;}
.ws3_c00057{word-spacing:0.156442pt;}
.ws7_c00057{word-spacing:0.189730pt;}
.wsa_c00057{word-spacing:0.195063pt;}
._0_c00057{width:0.989380pt;}
.fs0_c00057{font-size:39.110400pt;}
.fs1_c00057{font-size:53.133867pt;}
.y0_c00057{bottom:0.000000pt;}
.y2f_c00057{bottom:39.333333pt;}
.y2e_c00057{bottom:95.829333pt;}
.y2d_c00057{bottom:110.441333pt;}
.y2c_c00057{bottom:125.053333pt;}
.y2b_c00057{bottom:139.665333pt;}
.y2a_c00057{bottom:154.277333pt;}
.y29_c00057{bottom:168.889333pt;}
.y28_c00057{bottom:183.500000pt;}
.y27_c00057{bottom:198.112000pt;}
.y26_c00057{bottom:212.724000pt;}
.y25_c00057{bottom:241.948000pt;}
.y24_c00057{bottom:256.560000pt;}
.y23_c00057{bottom:285.784000pt;}
.y22_c00057{bottom:300.396000pt;}
.y21_c00057{bottom:315.008000pt;}
.y20_c00057{bottom:329.620000pt;}
.y1f_c00057{bottom:344.230667pt;}
.y1e_c00057{bottom:358.842667pt;}
.y1d_c00057{bottom:373.454667pt;}
.y1c_c00057{bottom:388.066667pt;}
.y1b_c00057{bottom:431.902667pt;}
.y1a_c00057{bottom:446.514667pt;}
.y19_c00057{bottom:475.738667pt;}
.y18_c00057{bottom:490.349333pt;}
.y17_c00057{bottom:504.961333pt;}
.y16_c00057{bottom:519.573333pt;}
.y15_c00057{bottom:534.185333pt;}
.y14_c00057{bottom:548.797333pt;}
.y13_c00057{bottom:578.021333pt;}
.y12_c00057{bottom:607.245333pt;}
.y11_c00057{bottom:636.469333pt;}
.y10_c00057{bottom:651.080000pt;}
.yf_c00057{bottom:665.692000pt;}
.ye_c00057{bottom:694.916000pt;}
.yd_c00057{bottom:709.528000pt;}
.yc_c00057{bottom:753.364000pt;}
.yb_c00057{bottom:811.810667pt;}
.ya_c00057{bottom:826.422667pt;}
.y9_c00057{bottom:841.034667pt;}
.y8_c00057{bottom:855.646667pt;}
.y7_c00057{bottom:870.258667pt;}
.y6_c00057{bottom:914.094667pt;}
.y5_c00057{bottom:928.706667pt;}
.y4_c00057{bottom:943.317333pt;}
.y3_c00057{bottom:957.929333pt;}
.y2_c00057{bottom:1001.765333pt;}
.y1_c00057{bottom:1030.989333pt;}
.h3_c00057{height:31.280681pt;}
.h2_c00057{height:32.006363pt;}
.h4_c00057{height:46.518078pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w0_c00057{width:793.706667pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:121.886667pt;}
.x5_c00057{left:133.704000pt;}
.x6_c00057{left:145.522667pt;}
.x3_c00057{left:175.065333pt;}
.x4_c00057{left:228.244000pt;}
.x2_c00057{left:275.513333pt;}
.x7_c00057{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fda61492b576d12e0224813.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.083496;font-style:normal;font-weight:normal;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_549308fe190bfe2ce1c4e20e.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.048828;font-style:normal;font-weight:normal;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_6f7b116a73dd76e9df6e45a3.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.014648;font-style:normal;font-weight:normal;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_b5b7e702b3b808800cf948d3.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.000000;font-style:normal;font-weight:normal;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_7bd996f63d04fc3d5cd35525.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_08dd2e20b6ec4f823a8afee8.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:1.102051;font-style: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;}
.ls4_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.087998px;}
.ls3_c00058{letter-spacing:0.098482px;}
.ls1_c00058{letter-spacing:0.104482px;}
.ls2_c00058{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00058{word-spacing:-26.575517px;}
.ws5_c00058{word-spacing:-26.487518px;}
.ws12_c00058{word-spacing:-21.605377px;}
.ws16_c00058{word-spacing:-20.762438px;}
.ws15_c00058{word-spacing:-20.742133px;}
.ws13_c00058{word-spacing:-20.323704px;}
.ws17_c00058{word-spacing:-18.769538px;}
.ws18_c00058{word-spacing:-15.780758px;}
.ws19_c00058{word-spacing:-13.808164px;}
.ws14_c00058{word-spacing:-12.732203px;}
.ws8_c00058{word-spacing:0.000000px;}
.ws9_c00058{word-spacing:0.036900px;}
.wse_c00058{word-spacing:0.043999px;}
.ws3_c00058{word-spacing:0.063317px;}
.ws7_c00058{word-spacing:0.063866px;}
.wsd_c00058{word-spacing:0.064416px;}
.ws0_c00058{word-spacing:0.069866px;}
.ws10_c00058{word-spacing:0.070416px;}
.ws6_c00058{word-spacing:0.080899px;}
.ws11_c00058{word-spacing:0.086018px;}
.wsa_c00058{word-spacing:0.104150px;}
.ws4_c00058{word-spacing:0.175997px;}
.wsf_c00058{word-spacing:0.212897px;}
.ws1_c00058{word-spacing:0.213446px;}
.wsb_c00058{word-spacing:0.219446px;}
.wsc_c00058{word-spacing:0.219996px;}
._1_c00058{margin-left:-2370.136958px;}
._3_c00058{margin-left:-7.833025px;}
._4_c00058{margin-left:-4.124516px;}
._0_c00058{width:1.113053px;}
._5_c00058{width:19.247743px;}
._7_c00058{width:21.220338px;}
._6_c00058{width:28.692288px;}
._2_c00058{width:86.077200px;}
.fc5_c00058{color:rgb(79,153,5);}
.fc4_c00058{color:rgb(0,0,207);}
.fc6_c00058{color:rgb(6,69,173);}
.fc3_c00058{color:rgb(207,92,0);}
.fc2_c00058{color:rgb(33,74,135);}
.fc1_c00058{color:rgb(143,89,3);}
.fc0_c00058{color:rgb(0,0,0);}
.fs1_c00058{font-size:31.015800px;}
.fs0_c00058{font-size:43.999200px;}
.fs3_c00058{font-size:59.775600px;}
.fs2_c00058{font-size:86.077200px;}
.y0_c00058{bottom:0.000000px;}
.y32_c00058{bottom:44.250000px;}
.y31_c00058{bottom:82.051500px;}
.y30_c00058{bottom:99.984000px;}
.y2f_c00058{bottom:117.916500px;}
.y2e_c00058{bottom:146.023500px;}
.y2d_c00058{bottom:163.956000px;}
.y2c_c00058{bottom:181.888500px;}
.y2b_c00058{bottom:199.822500px;}
.y2a_c00058{bottom:243.843000px;}
.y29_c00058{bottom:321.880500px;}
.y28_c00058{bottom:338.319000px;}
.y27_c00058{bottom:354.757500px;}
.y26_c00058{bottom:371.196000px;}
.y25_c00058{bottom:387.633000px;}
.y24_c00058{bottom:420.510000px;}
.y23_c00058{bottom:436.948500px;}
.y22_c00058{bottom:469.825500px;}
.y21_c00058{bottom:485.890500px;}
.y20_c00058{bottom:502.329000px;}
.y1f_c00058{bottom:518.767500px;}
.y1e_c00058{bottom:535.206000px;}
.y1d_c00058{bottom:584.520000px;}
.y1c_c00058{bottom:617.397000px;}
.y1b_c00058{bottom:633.835500px;}
.y1a_c00058{bottom:650.274000px;}
.y19_c00058{bottom:666.712500px;}
.y18_c00058{bottom:699.589500px;}
.y17_c00058{bottom:716.028000px;}
.y16_c00058{bottom:732.465000px;}
.y15_c00058{bottom:748.903500px;}
.y14_c00058{bottom:765.342000px;}
.y13_c00058{bottom:781.780500px;}
.y12_c00058{bottom:798.219000px;}
.y11_c00058{bottom:814.657500px;}
.y10_c00058{bottom:863.973000px;}
.yf_c00058{bottom:880.411500px;}
.ye_c00058{bottom:896.848500px;}
.yd_c00058{bottom:913.287000px;}
.yc_c00058{bottom:929.725500px;}
.yb_c00058{bottom:946.164000px;}
.ya_c00058{bottom:962.602500px;}
.y9_c00058{bottom:979.041000px;}
.y8_c00058{bottom:995.479500px;}
.y7_c00058{bottom:1028.356500px;}
.y6_c00058{bottom:1044.795000px;}
.y5_c00058{bottom:1061.232000px;}
.y4_c00058{bottom:1094.109000px;}
.y3_c00058{bottom:1110.547500px;}
.y2_c00058{bottom:1126.986000px;}
.y1_c00058{bottom:1159.863000px;}
.h3_c00058{height:35.190766px;}
.h2_c00058{height:36.007158px;}
.h5_c00058{height:52.332837px;}
.h4_c00058{height:58.337477px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w0_c00058{width:892.920000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x7_c00058{left:127.558500px;}
.x4_c00058{left:137.122500px;}
.x1_c00058{left:150.417000px;}
.x2_c00058{left:163.713000px;}
.x3_c00058{left:177.007500px;}
.x6_c00058{left:196.948500px;}
.x5_c00058{left:376.425000px;}
.x8_c00058{left:438.984000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls4_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.078221pt;}
.ls3_c00058{letter-spacing:0.087539pt;}
.ls1_c00058{letter-spacing:0.092873pt;}
.ls2_c00058{letter-spacing:23.724873pt;}
.ws2_c00058{word-spacing:-23.622682pt;}
.ws5_c00058{word-spacing:-23.544461pt;}
.ws12_c00058{word-spacing:-19.204780pt;}
.ws16_c00058{word-spacing:-18.455501pt;}
.ws15_c00058{word-spacing:-18.437452pt;}
.ws13_c00058{word-spacing:-18.065515pt;}
.ws17_c00058{word-spacing:-16.684034pt;}
.ws18_c00058{word-spacing:-14.027341pt;}
.ws19_c00058{word-spacing:-12.273923pt;}
.ws14_c00058{word-spacing:-11.317514pt;}
.ws8_c00058{word-spacing:0.000000pt;}
.ws9_c00058{word-spacing:0.032800pt;}
.wse_c00058{word-spacing:0.039110pt;}
.ws3_c00058{word-spacing:0.056282pt;}
.ws7_c00058{word-spacing:0.056770pt;}
.wsd_c00058{word-spacing:0.057259pt;}
.ws0_c00058{word-spacing:0.062103pt;}
.ws10_c00058{word-spacing:0.062592pt;}
.ws6_c00058{word-spacing:0.071910pt;}
.ws11_c00058{word-spacing:0.076461pt;}
.wsa_c00058{word-spacing:0.092578pt;}
.ws4_c00058{word-spacing:0.156442pt;}
.wsf_c00058{word-spacing:0.189242pt;}
.ws1_c00058{word-spacing:0.189730pt;}
.wsb_c00058{word-spacing:0.195063pt;}
.wsc_c00058{word-spacing:0.195552pt;}
._1_c00058{margin-left:-2106.788407pt;}
._3_c00058{margin-left:-6.962689pt;}
._4_c00058{margin-left:-3.666237pt;}
._0_c00058{width:0.989380pt;}
._5_c00058{width:17.109105pt;}
._7_c00058{width:18.862523pt;}
._6_c00058{width:25.504256pt;}
._2_c00058{width:76.513067pt;}
.fs1_c00058{font-size:27.569600pt;}
.fs0_c00058{font-size:39.110400pt;}
.fs3_c00058{font-size:53.133867pt;}
.fs2_c00058{font-size:76.513067pt;}
.y0_c00058{bottom:0.000000pt;}
.y32_c00058{bottom:39.333333pt;}
.y31_c00058{bottom:72.934667pt;}
.y30_c00058{bottom:88.874667pt;}
.y2f_c00058{bottom:104.814667pt;}
.y2e_c00058{bottom:129.798667pt;}
.y2d_c00058{bottom:145.738667pt;}
.y2c_c00058{bottom:161.678667pt;}
.y2b_c00058{bottom:177.620000pt;}
.y2a_c00058{bottom:216.749333pt;}
.y29_c00058{bottom:286.116000pt;}
.y28_c00058{bottom:300.728000pt;}
.y27_c00058{bottom:315.340000pt;}
.y26_c00058{bottom:329.952000pt;}
.y25_c00058{bottom:344.562667pt;}
.y24_c00058{bottom:373.786667pt;}
.y23_c00058{bottom:388.398667pt;}
.y22_c00058{bottom:417.622667pt;}
.y21_c00058{bottom:431.902667pt;}
.y20_c00058{bottom:446.514667pt;}
.y1f_c00058{bottom:461.126667pt;}
.y1e_c00058{bottom:475.738667pt;}
.y1d_c00058{bottom:519.573333pt;}
.y1c_c00058{bottom:548.797333pt;}
.y1b_c00058{bottom:563.409333pt;}
.y1a_c00058{bottom:578.021333pt;}
.y19_c00058{bottom:592.633333pt;}
.y18_c00058{bottom:621.857333pt;}
.y17_c00058{bottom:636.469333pt;}
.y16_c00058{bottom:651.080000pt;}
.y15_c00058{bottom:665.692000pt;}
.y14_c00058{bottom:680.304000pt;}
.y13_c00058{bottom:694.916000pt;}
.y12_c00058{bottom:709.528000pt;}
.y11_c00058{bottom:724.140000pt;}
.y10_c00058{bottom:767.976000pt;}
.yf_c00058{bottom:782.588000pt;}
.ye_c00058{bottom:797.198667pt;}
.yd_c00058{bottom:811.810667pt;}
.yc_c00058{bottom:826.422667pt;}
.yb_c00058{bottom:841.034667pt;}
.ya_c00058{bottom:855.646667pt;}
.y9_c00058{bottom:870.258667pt;}
.y8_c00058{bottom:884.870667pt;}
.y7_c00058{bottom:914.094667pt;}
.y6_c00058{bottom:928.706667pt;}
.y5_c00058{bottom:943.317333pt;}
.y4_c00058{bottom:972.541333pt;}
.y3_c00058{bottom:987.153333pt;}
.y2_c00058{bottom:1001.765333pt;}
.y1_c00058{bottom:1030.989333pt;}
.h3_c00058{height:31.280681pt;}
.h2_c00058{height:32.006363pt;}
.h5_c00058{height:46.518078pt;}
.h4_c00058{height:51.855535pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w0_c00058{width:793.706667pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x7_c00058{left:113.385333pt;}
.x4_c00058{left:121.886667pt;}
.x1_c00058{left:133.704000pt;}
.x2_c00058{left:145.522667pt;}
.x3_c00058{left:157.340000pt;}
.x6_c00058{left:175.065333pt;}
.x5_c00058{left:334.600000pt;}
.x8_c00058{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4821868a6324b3e6ddff0e6.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.102051;font-style:normal;font-weight:normal;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_cbb2052a6b2ac77e983e4149.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.083496;font-style:normal;font-weight:normal;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_1844dd4b04b2da03ecf60fa1.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.014648;font-style:normal;font-weight:normal;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_4703df623dec3f5f0a023dfe.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls4_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:0.087998px;}
.ls3_c00059{letter-spacing:0.098482px;}
.ls2_c00059{letter-spacing:0.104482px;}
.ls1_c00059{letter-spacing:29.892540px;}
.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:-26.575517px;}
.ws5_c00059{word-spacing:-26.487518px;}
.ws0_c00059{word-spacing:-18.769538px;}
.ws2_c00059{word-spacing:-16.796944px;}
.ws3_c00059{word-spacing:-16.737168px;}
.wsa_c00059{word-spacing:-2.023963px;}
.ws9_c00059{word-spacing:-0.527990px;}
.ws8_c00059{word-spacing:0.000000px;}
.wsc_c00059{word-spacing:0.037450px;}
.ws7_c00059{word-spacing:0.043999px;}
.wsd_c00059{word-spacing:0.063866px;}
.ws4_c00059{word-spacing:0.175997px;}
.ws6_c00059{word-spacing:0.213446px;}
.wsb_c00059{word-spacing:0.219446px;}
._4_c00059{margin-left:-6.575316px;}
._0_c00059{margin-left:-3.885414px;}
._5_c00059{width:1.047451px;}
._2_c00059{width:13.889063px;}
._1_c00059{width:19.905275px;}
._3_c00059{width:26.039993px;}
.fc4_c00059{color:rgb(79,153,5);}
.fc3_c00059{color:rgb(207,92,0);}
.fc2_c00059{color:rgb(33,74,135);}
.fc1_c00059{color:rgb(143,89,3);}
.fc0_c00059{color:rgb(0,0,0);}
.fs1_c00059{font-size:43.999200px;}
.fs0_c00059{font-size:59.775600px;}
.y0_c00059{bottom:0.000000px;}
.y33_c00059{bottom:44.250000px;}
.y32_c00059{bottom:86.982000px;}
.y31_c00059{bottom:103.420500px;}
.y30_c00059{bottom:119.859000px;}
.y2f_c00059{bottom:136.297500px;}
.y2e_c00059{bottom:152.736000px;}
.y2d_c00059{bottom:169.174500px;}
.y2c_c00059{bottom:185.613000px;}
.y2b_c00059{bottom:202.051500px;}
.y2a_c00059{bottom:218.490000px;}
.y29_c00059{bottom:234.927000px;}
.y28_c00059{bottom:251.365500px;}
.y27_c00059{bottom:267.804000px;}
.y26_c00059{bottom:284.242500px;}
.y25_c00059{bottom:300.681000px;}
.y24_c00059{bottom:317.119500px;}
.y23_c00059{bottom:333.558000px;}
.y22_c00059{bottom:349.996500px;}
.y21_c00059{bottom:366.435000px;}
.y20_c00059{bottom:399.310500px;}
.y1f_c00059{bottom:415.749000px;}
.y1e_c00059{bottom:448.626000px;}
.y1d_c00059{bottom:465.064500px;}
.y1c_c00059{bottom:481.503000px;}
.y1b_c00059{bottom:497.941500px;}
.y1a_c00059{bottom:514.380000px;}
.y19_c00059{bottom:530.818500px;}
.y18_c00059{bottom:547.257000px;}
.y17_c00059{bottom:580.132500px;}
.y16_c00059{bottom:596.571000px;}
.y15_c00059{bottom:629.448000px;}
.y14_c00059{bottom:645.886500px;}
.y13_c00059{bottom:662.325000px;}
.y12_c00059{bottom:695.202000px;}
.y11_c00059{bottom:711.640500px;}
.y10_c00059{bottom:728.079000px;}
.yf_c00059{bottom:744.142500px;}
.ye_c00059{bottom:791.148000px;}
.yd_c00059{bottom:809.080500px;}
.yc_c00059{bottom:838.578000px;}
.yb_c00059{bottom:868.075500px;}
.ya_c00059{bottom:897.573000px;}
.y9_c00059{bottom:927.069000px;}
.y8_c00059{bottom:956.566500px;}
.y7_c00059{bottom:986.064000px;}
.y6_c00059{bottom:1015.561500px;}
.y5_c00059{bottom:1045.059000px;}
.y4_c00059{bottom:1074.555000px;}
.y3_c00059{bottom:1115.226000px;}
.y2_c00059{bottom:1133.158500px;}
.y1_c00059{bottom:1159.863000px;}
.h3_c00059{height:35.190766px;}
.h4_c00059{height:36.007158px;}
.h2_c00059{height:52.332837px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w0_c00059{width:892.920000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:127.558500px;}
.x4_c00059{left:137.122500px;}
.xc_c00059{left:150.417000px;}
.x2_c00059{left:152.215500px;}
.xd_c00059{left:163.713000px;}
.x3_c00059{left:164.919000px;}
.xf_c00059{left:210.243000px;}
.xe_c00059{left:250.126500px;}
.xb_c00059{left:263.421000px;}
.x5_c00059{left:369.778500px;}
.x7_c00059{left:410.544000px;}
.x6_c00059{left:416.308500px;}
.x9_c00059{left:437.745000px;}
.x10_c00059{left:438.984000px;}
.x8_c00059{left:462.840000px;}
.xa_c00059{left:509.370000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls4_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:0.078221pt;}
.ls3_c00059{letter-spacing:0.087539pt;}
.ls2_c00059{letter-spacing:0.092873pt;}
.ls1_c00059{letter-spacing:26.571147pt;}
.ws1_c00059{word-spacing:-23.622682pt;}
.ws5_c00059{word-spacing:-23.544461pt;}
.ws0_c00059{word-spacing:-16.684034pt;}
.ws2_c00059{word-spacing:-14.930617pt;}
.ws3_c00059{word-spacing:-14.877483pt;}
.wsa_c00059{word-spacing:-1.799078pt;}
.ws9_c00059{word-spacing:-0.469325pt;}
.ws8_c00059{word-spacing:0.000000pt;}
.wsc_c00059{word-spacing:0.033289pt;}
.ws7_c00059{word-spacing:0.039110pt;}
.wsd_c00059{word-spacing:0.056770pt;}
.ws4_c00059{word-spacing:0.156442pt;}
.ws6_c00059{word-spacing:0.189730pt;}
.wsb_c00059{word-spacing:0.195063pt;}
._4_c00059{margin-left:-5.844725pt;}
._0_c00059{margin-left:-3.453701pt;}
._5_c00059{width:0.931068pt;}
._2_c00059{width:12.345834pt;}
._1_c00059{width:17.693578pt;}
._3_c00059{width:23.146660pt;}
.fs1_c00059{font-size:39.110400pt;}
.fs0_c00059{font-size:53.133867pt;}
.y0_c00059{bottom:0.000000pt;}
.y33_c00059{bottom:39.333333pt;}
.y32_c00059{bottom:77.317333pt;}
.y31_c00059{bottom:91.929333pt;}
.y30_c00059{bottom:106.541333pt;}
.y2f_c00059{bottom:121.153333pt;}
.y2e_c00059{bottom:135.765333pt;}
.y2d_c00059{bottom:150.377333pt;}
.y2c_c00059{bottom:164.989333pt;}
.y2b_c00059{bottom:179.601333pt;}
.y2a_c00059{bottom:194.213333pt;}
.y29_c00059{bottom:208.824000pt;}
.y28_c00059{bottom:223.436000pt;}
.y27_c00059{bottom:238.048000pt;}
.y26_c00059{bottom:252.660000pt;}
.y25_c00059{bottom:267.272000pt;}
.y24_c00059{bottom:281.884000pt;}
.y23_c00059{bottom:296.496000pt;}
.y22_c00059{bottom:311.108000pt;}
.y21_c00059{bottom:325.720000pt;}
.y20_c00059{bottom:354.942667pt;}
.y1f_c00059{bottom:369.554667pt;}
.y1e_c00059{bottom:398.778667pt;}
.y1d_c00059{bottom:413.390667pt;}
.y1c_c00059{bottom:428.002667pt;}
.y1b_c00059{bottom:442.614667pt;}
.y1a_c00059{bottom:457.226667pt;}
.y19_c00059{bottom:471.838667pt;}
.y18_c00059{bottom:486.450667pt;}
.y17_c00059{bottom:515.673333pt;}
.y16_c00059{bottom:530.285333pt;}
.y15_c00059{bottom:559.509333pt;}
.y14_c00059{bottom:574.121333pt;}
.y13_c00059{bottom:588.733333pt;}
.y12_c00059{bottom:617.957333pt;}
.y11_c00059{bottom:632.569333pt;}
.y10_c00059{bottom:647.181333pt;}
.yf_c00059{bottom:661.460000pt;}
.ye_c00059{bottom:703.242667pt;}
.yd_c00059{bottom:719.182667pt;}
.yc_c00059{bottom:745.402667pt;}
.yb_c00059{bottom:771.622667pt;}
.ya_c00059{bottom:797.842667pt;}
.y9_c00059{bottom:824.061333pt;}
.y8_c00059{bottom:850.281333pt;}
.y7_c00059{bottom:876.501333pt;}
.y6_c00059{bottom:902.721333pt;}
.y5_c00059{bottom:928.941333pt;}
.y4_c00059{bottom:955.160000pt;}
.y3_c00059{bottom:991.312000pt;}
.y2_c00059{bottom:1007.252000pt;}
.y1_c00059{bottom:1030.989333pt;}
.h3_c00059{height:31.280681pt;}
.h4_c00059{height:32.006363pt;}
.h2_c00059{height:46.518078pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w0_c00059{width:793.706667pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:113.385333pt;}
.x4_c00059{left:121.886667pt;}
.xc_c00059{left:133.704000pt;}
.x2_c00059{left:135.302667pt;}
.xd_c00059{left:145.522667pt;}
.x3_c00059{left:146.594667pt;}
.xf_c00059{left:186.882667pt;}
.xe_c00059{left:222.334667pt;}
.xb_c00059{left:234.152000pt;}
.x5_c00059{left:328.692000pt;}
.x7_c00059{left:364.928000pt;}
.x6_c00059{left:370.052000pt;}
.x9_c00059{left:389.106667pt;}
.x10_c00059{left:390.208000pt;}
.x8_c00059{left:411.413333pt;}
.xa_c00059{left:452.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93889de543fa0f3330ded160.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.014648;font-style:normal;font-weight:normal;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_96b6cb383109406bb89d19b6.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_f9b28f3b692c6c67c310fc88.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_99250734d1fd9bdbfc271462.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_4632c4ee930d48507bb10a5d.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls3_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:0.087998px;}
.ls1_c00060{letter-spacing:0.098482px;}
.ls2_c00060{letter-spacing:0.104482px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00060{word-spacing:-26.575517px;}
.ws2_c00060{word-spacing:-26.487518px;}
.ws6_c00060{word-spacing:-2.023963px;}
.ws5_c00060{word-spacing:-0.527990px;}
.ws4_c00060{word-spacing:0.000000px;}
.ws8_c00060{word-spacing:0.037450px;}
.ws3_c00060{word-spacing:0.043999px;}
.ws9_c00060{word-spacing:0.063866px;}
.wsa_c00060{word-spacing:0.073800px;}
.wsb_c00060{word-spacing:0.080350px;}
.ws0_c00060{word-spacing:0.175997px;}
.ws7_c00060{word-spacing:0.219446px;}
._2_c00060{margin-left:-509.266270px;}
._1_c00060{margin-left:-429.539719px;}
._0_c00060{width:1.069690px;}
.fc4_c00060{color:rgb(207,92,0);}
.fc3_c00060{color:rgb(79,153,5);}
.fc2_c00060{color:rgb(33,74,135);}
.fc1_c00060{color:rgb(0,0,0);}
.fc0_c00060{color:rgb(143,89,3);}
.fs1_c00060{font-size:31.015800px;}
.fs0_c00060{font-size:43.999200px;}
.fs2_c00060{font-size:59.775600px;}
.y0_c00060{bottom:0.000000px;}
.y38_c00060{bottom:44.250000px;}
.y37_c00060{bottom:92.116500px;}
.y36_c00060{bottom:108.555000px;}
.y35_c00060{bottom:124.993500px;}
.y34_c00060{bottom:141.432000px;}
.y33_c00060{bottom:157.870500px;}
.y32_c00060{bottom:174.309000px;}
.y31_c00060{bottom:190.747500px;}
.y30_c00060{bottom:207.186000px;}
.y2f_c00060{bottom:223.624500px;}
.y2e_c00060{bottom:256.500000px;}
.y2d_c00060{bottom:272.938500px;}
.y2c_c00060{bottom:289.377000px;}
.y2b_c00060{bottom:305.815500px;}
.y2a_c00060{bottom:338.692500px;}
.y29_c00060{bottom:355.131000px;}
.y28_c00060{bottom:404.445000px;}
.y27_c00060{bottom:420.883500px;}
.y26_c00060{bottom:437.322000px;}
.y25_c00060{bottom:453.760500px;}
.y24_c00060{bottom:470.199000px;}
.y23_c00060{bottom:486.637500px;}
.y22_c00060{bottom:503.076000px;}
.y21_c00060{bottom:519.514500px;}
.y20_c00060{bottom:535.953000px;}
.y1f_c00060{bottom:552.391500px;}
.y1e_c00060{bottom:568.830000px;}
.y1d_c00060{bottom:585.267000px;}
.y1c_c00060{bottom:601.705500px;}
.y1b_c00060{bottom:618.144000px;}
.y1a_c00060{bottom:634.582500px;}
.y19_c00060{bottom:651.021000px;}
.y18_c00060{bottom:667.459500px;}
.y17_c00060{bottom:683.898000px;}
.y16_c00060{bottom:716.775000px;}
.y15_c00060{bottom:733.213500px;}
.y14_c00060{bottom:766.089000px;}
.y13_c00060{bottom:782.527500px;}
.y12_c00060{bottom:798.592500px;}
.y11_c00060{bottom:815.031000px;}
.y10_c00060{bottom:831.469500px;}
.yf_c00060{bottom:847.534500px;}
.ye_c00060{bottom:863.973000px;}
.yd_c00060{bottom:880.411500px;}
.yc_c00060{bottom:896.848500px;}
.yb_c00060{bottom:913.287000px;}
.ya_c00060{bottom:929.725500px;}
.y9_c00060{bottom:946.164000px;}
.y8_c00060{bottom:962.602500px;}
.y7_c00060{bottom:979.041000px;}
.y6_c00060{bottom:995.479500px;}
.y5_c00060{bottom:1028.356500px;}
.y4_c00060{bottom:1044.795000px;}
.y3_c00060{bottom:1077.670500px;}
.y2_c00060{bottom:1094.109000px;}
.y1_c00060{bottom:1110.547500px;}
.h2_c00060{height:35.190766px;}
.h3_c00060{height:36.007158px;}
.h4_c00060{height:52.332837px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w0_c00060{width:892.920000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:137.122500px;}
.x10_c00060{left:150.417000px;}
.x11_c00060{left:163.713000px;}
.x13_c00060{left:210.243000px;}
.x14_c00060{left:236.832000px;}
.x12_c00060{left:250.126500px;}
.xf_c00060{left:263.421000px;}
.x2_c00060{left:369.778500px;}
.x4_c00060{left:410.544000px;}
.x3_c00060{left:416.308500px;}
.x6_c00060{left:437.745000px;}
.x15_c00060{left:438.984000px;}
.x8_c00060{left:456.663000px;}
.x5_c00060{left:462.840000px;}
.x7_c00060{left:509.370000px;}
.x9_c00060{left:523.135500px;}
.xc_c00060{left:543.078000px;}
.xa_c00060{left:582.490500px;}
.xb_c00060{left:602.433000px;}
.xd_c00060{left:629.022000px;}
.xe_c00060{left:648.963000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls3_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:0.078221pt;}
.ls1_c00060{letter-spacing:0.087539pt;}
.ls2_c00060{letter-spacing:0.092873pt;}
.ws1_c00060{word-spacing:-23.622682pt;}
.ws2_c00060{word-spacing:-23.544461pt;}
.ws6_c00060{word-spacing:-1.799078pt;}
.ws5_c00060{word-spacing:-0.469325pt;}
.ws4_c00060{word-spacing:0.000000pt;}
.ws8_c00060{word-spacing:0.033289pt;}
.ws3_c00060{word-spacing:0.039110pt;}
.ws9_c00060{word-spacing:0.056770pt;}
.wsa_c00060{word-spacing:0.065600pt;}
.wsb_c00060{word-spacing:0.071422pt;}
.ws0_c00060{word-spacing:0.156442pt;}
.ws7_c00060{word-spacing:0.195063pt;}
._2_c00060{margin-left:-452.681129pt;}
._1_c00060{margin-left:-381.813084pt;}
._0_c00060{width:0.950835pt;}
.fs1_c00060{font-size:27.569600pt;}
.fs0_c00060{font-size:39.110400pt;}
.fs2_c00060{font-size:53.133867pt;}
.y0_c00060{bottom:0.000000pt;}
.y38_c00060{bottom:39.333333pt;}
.y37_c00060{bottom:81.881333pt;}
.y36_c00060{bottom:96.493333pt;}
.y35_c00060{bottom:111.105333pt;}
.y34_c00060{bottom:125.717333pt;}
.y33_c00060{bottom:140.329333pt;}
.y32_c00060{bottom:154.941333pt;}
.y31_c00060{bottom:169.553333pt;}
.y30_c00060{bottom:184.165333pt;}
.y2f_c00060{bottom:198.777333pt;}
.y2e_c00060{bottom:228.000000pt;}
.y2d_c00060{bottom:242.612000pt;}
.y2c_c00060{bottom:257.224000pt;}
.y2b_c00060{bottom:271.836000pt;}
.y2a_c00060{bottom:301.060000pt;}
.y29_c00060{bottom:315.672000pt;}
.y28_c00060{bottom:359.506667pt;}
.y27_c00060{bottom:374.118667pt;}
.y26_c00060{bottom:388.730667pt;}
.y25_c00060{bottom:403.342667pt;}
.y24_c00060{bottom:417.954667pt;}
.y23_c00060{bottom:432.566667pt;}
.y22_c00060{bottom:447.178667pt;}
.y21_c00060{bottom:461.790667pt;}
.y20_c00060{bottom:476.402667pt;}
.y1f_c00060{bottom:491.014667pt;}
.y1e_c00060{bottom:505.626667pt;}
.y1d_c00060{bottom:520.237333pt;}
.y1c_c00060{bottom:534.849333pt;}
.y1b_c00060{bottom:549.461333pt;}
.y1a_c00060{bottom:564.073333pt;}
.y19_c00060{bottom:578.685333pt;}
.y18_c00060{bottom:593.297333pt;}
.y17_c00060{bottom:607.909333pt;}
.y16_c00060{bottom:637.133333pt;}
.y15_c00060{bottom:651.745333pt;}
.y14_c00060{bottom:680.968000pt;}
.y13_c00060{bottom:695.580000pt;}
.y12_c00060{bottom:709.860000pt;}
.y11_c00060{bottom:724.472000pt;}
.y10_c00060{bottom:739.084000pt;}
.yf_c00060{bottom:753.364000pt;}
.ye_c00060{bottom:767.976000pt;}
.yd_c00060{bottom:782.588000pt;}
.yc_c00060{bottom:797.198667pt;}
.yb_c00060{bottom:811.810667pt;}
.ya_c00060{bottom:826.422667pt;}
.y9_c00060{bottom:841.034667pt;}
.y8_c00060{bottom:855.646667pt;}
.y7_c00060{bottom:870.258667pt;}
.y6_c00060{bottom:884.870667pt;}
.y5_c00060{bottom:914.094667pt;}
.y4_c00060{bottom:928.706667pt;}
.y3_c00060{bottom:957.929333pt;}
.y2_c00060{bottom:972.541333pt;}
.y1_c00060{bottom:987.153333pt;}
.h2_c00060{height:31.280681pt;}
.h3_c00060{height:32.006363pt;}
.h4_c00060{height:46.518078pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w0_c00060{width:793.706667pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:121.886667pt;}
.x10_c00060{left:133.704000pt;}
.x11_c00060{left:145.522667pt;}
.x13_c00060{left:186.882667pt;}
.x14_c00060{left:210.517333pt;}
.x12_c00060{left:222.334667pt;}
.xf_c00060{left:234.152000pt;}
.x2_c00060{left:328.692000pt;}
.x4_c00060{left:364.928000pt;}
.x3_c00060{left:370.052000pt;}
.x6_c00060{left:389.106667pt;}
.x15_c00060{left:390.208000pt;}
.x8_c00060{left:405.922667pt;}
.x5_c00060{left:411.413333pt;}
.x7_c00060{left:452.773333pt;}
.x9_c00060{left:465.009333pt;}
.xc_c00060{left:482.736000pt;}
.xa_c00060{left:517.769333pt;}
.xb_c00060{left:535.496000pt;}
.xd_c00060{left:559.130667pt;}
.xe_c00060{left:576.856000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13dd62bca833b46b853fe376.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.083496;font-style:normal;font-weight:normal;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_4f54ff937f1e2a34f5d4e164.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.048828;font-style:normal;font-weight:normal;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_75c14385f529b1d846573435.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.014648;font-style:normal;font-weight:normal;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_9aeac06f5f15ee41f5682d1c.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls3_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:0.087998px;}
.ls1_c00061{letter-spacing:0.098482px;}
.ls2_c00061{letter-spacing:0.104482px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:-26.575517px;}
.ws1_c00061{word-spacing:-26.487518px;}
.ws2_c00061{word-spacing:0.000000px;}
.ws3_c00061{word-spacing:0.046834px;}
.ws4_c00061{word-spacing:0.053383px;}
.ws5_c00061{word-spacing:0.175997px;}
._0_c00061{width:1.035869px;}
.fc4_c00061{color:rgb(79,153,5);}
.fc3_c00061{color:rgb(143,89,3);}
.fc2_c00061{color:rgb(33,74,135);}
.fc1_c00061{color:rgb(207,92,0);}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:43.999200px;}
.fs1_c00061{font-size:59.775600px;}
.y0_c00061{bottom:0.000000px;}
.y38_c00061{bottom:44.250000px;}
.y37_c00061{bottom:91.369500px;}
.y36_c00061{bottom:107.808000px;}
.y35_c00061{bottom:124.246500px;}
.y34_c00061{bottom:140.685000px;}
.y33_c00061{bottom:190.000500px;}
.y32_c00061{bottom:206.437500px;}
.y31_c00061{bottom:239.314500px;}
.y30_c00061{bottom:255.753000px;}
.y2f_c00061{bottom:272.191500px;}
.y2e_c00061{bottom:288.630000px;}
.y2d_c00061{bottom:305.068500px;}
.y2c_c00061{bottom:321.507000px;}
.y2b_c00061{bottom:337.945500px;}
.y2a_c00061{bottom:354.384000px;}
.y29_c00061{bottom:370.822500px;}
.y28_c00061{bottom:387.259500px;}
.y27_c00061{bottom:420.136500px;}
.y26_c00061{bottom:436.575000px;}
.y25_c00061{bottom:469.452000px;}
.y24_c00061{bottom:485.890500px;}
.y23_c00061{bottom:502.329000px;}
.y22_c00061{bottom:518.767500px;}
.y21_c00061{bottom:535.206000px;}
.y20_c00061{bottom:551.643000px;}
.y1f_c00061{bottom:568.081500px;}
.y1e_c00061{bottom:584.520000px;}
.y1d_c00061{bottom:600.958500px;}
.y1c_c00061{bottom:617.397000px;}
.y1b_c00061{bottom:650.274000px;}
.y1a_c00061{bottom:666.712500px;}
.y19_c00061{bottom:699.589500px;}
.y18_c00061{bottom:716.028000px;}
.y17_c00061{bottom:732.465000px;}
.y16_c00061{bottom:748.903500px;}
.y15_c00061{bottom:765.342000px;}
.y14_c00061{bottom:781.780500px;}
.y13_c00061{bottom:798.219000px;}
.y12_c00061{bottom:814.657500px;}
.y11_c00061{bottom:831.096000px;}
.y10_c00061{bottom:847.534500px;}
.yf_c00061{bottom:880.411500px;}
.ye_c00061{bottom:896.848500px;}
.yd_c00061{bottom:929.725500px;}
.yc_c00061{bottom:946.164000px;}
.yb_c00061{bottom:962.602500px;}
.ya_c00061{bottom:979.041000px;}
.y9_c00061{bottom:995.479500px;}
.y8_c00061{bottom:1011.918000px;}
.y7_c00061{bottom:1028.356500px;}
.y6_c00061{bottom:1044.795000px;}
.y5_c00061{bottom:1061.232000px;}
.y4_c00061{bottom:1077.670500px;}
.y3_c00061{bottom:1110.547500px;}
.y2_c00061{bottom:1126.986000px;}
.y1_c00061{bottom:1159.863000px;}
.h3_c00061{height:35.190766px;}
.h2_c00061{height:36.007158px;}
.h4_c00061{height:52.332837px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w0_c00061{width:892.920000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:137.122500px;}
.x1_c00061{left:150.417000px;}
.x3_c00061{left:236.832000px;}
.x4_c00061{left:438.984000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls3_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:0.078221pt;}
.ls1_c00061{letter-spacing:0.087539pt;}
.ls2_c00061{letter-spacing:0.092873pt;}
.ws0_c00061{word-spacing:-23.622682pt;}
.ws1_c00061{word-spacing:-23.544461pt;}
.ws2_c00061{word-spacing:0.000000pt;}
.ws3_c00061{word-spacing:0.041630pt;}
.ws4_c00061{word-spacing:0.047452pt;}
.ws5_c00061{word-spacing:0.156442pt;}
._0_c00061{width:0.920772pt;}
.fs0_c00061{font-size:39.110400pt;}
.fs1_c00061{font-size:53.133867pt;}
.y0_c00061{bottom:0.000000pt;}
.y38_c00061{bottom:39.333333pt;}
.y37_c00061{bottom:81.217333pt;}
.y36_c00061{bottom:95.829333pt;}
.y35_c00061{bottom:110.441333pt;}
.y34_c00061{bottom:125.053333pt;}
.y33_c00061{bottom:168.889333pt;}
.y32_c00061{bottom:183.500000pt;}
.y31_c00061{bottom:212.724000pt;}
.y30_c00061{bottom:227.336000pt;}
.y2f_c00061{bottom:241.948000pt;}
.y2e_c00061{bottom:256.560000pt;}
.y2d_c00061{bottom:271.172000pt;}
.y2c_c00061{bottom:285.784000pt;}
.y2b_c00061{bottom:300.396000pt;}
.y2a_c00061{bottom:315.008000pt;}
.y29_c00061{bottom:329.620000pt;}
.y28_c00061{bottom:344.230667pt;}
.y27_c00061{bottom:373.454667pt;}
.y26_c00061{bottom:388.066667pt;}
.y25_c00061{bottom:417.290667pt;}
.y24_c00061{bottom:431.902667pt;}
.y23_c00061{bottom:446.514667pt;}
.y22_c00061{bottom:461.126667pt;}
.y21_c00061{bottom:475.738667pt;}
.y20_c00061{bottom:490.349333pt;}
.y1f_c00061{bottom:504.961333pt;}
.y1e_c00061{bottom:519.573333pt;}
.y1d_c00061{bottom:534.185333pt;}
.y1c_c00061{bottom:548.797333pt;}
.y1b_c00061{bottom:578.021333pt;}
.y1a_c00061{bottom:592.633333pt;}
.y19_c00061{bottom:621.857333pt;}
.y18_c00061{bottom:636.469333pt;}
.y17_c00061{bottom:651.080000pt;}
.y16_c00061{bottom:665.692000pt;}
.y15_c00061{bottom:680.304000pt;}
.y14_c00061{bottom:694.916000pt;}
.y13_c00061{bottom:709.528000pt;}
.y12_c00061{bottom:724.140000pt;}
.y11_c00061{bottom:738.752000pt;}
.y10_c00061{bottom:753.364000pt;}
.yf_c00061{bottom:782.588000pt;}
.ye_c00061{bottom:797.198667pt;}
.yd_c00061{bottom:826.422667pt;}
.yc_c00061{bottom:841.034667pt;}
.yb_c00061{bottom:855.646667pt;}
.ya_c00061{bottom:870.258667pt;}
.y9_c00061{bottom:884.870667pt;}
.y8_c00061{bottom:899.482667pt;}
.y7_c00061{bottom:914.094667pt;}
.y6_c00061{bottom:928.706667pt;}
.y5_c00061{bottom:943.317333pt;}
.y4_c00061{bottom:957.929333pt;}
.y3_c00061{bottom:987.153333pt;}
.y2_c00061{bottom:1001.765333pt;}
.y1_c00061{bottom:1030.989333pt;}
.h3_c00061{height:31.280681pt;}
.h2_c00061{height:32.006363pt;}
.h4_c00061{height:46.518078pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w0_c00061{width:793.706667pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:121.886667pt;}
.x1_c00061{left:133.704000pt;}
.x3_c00061{left:210.517333pt;}
.x4_c00061{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d3ebe4962b34e7ca6ec9618.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.083496;font-style:normal;font-weight:normal;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_4f54ff937f1e2a34f5d4e164.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_4f819c00c229eb24f27d35ca.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_e1c786ce4d390d270c70adae.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls3_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.087998px;}
.ls2_c00062{letter-spacing:0.098482px;}
.ls1_c00062{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00062{word-spacing:-26.487518px;}
.ws4_c00062{word-spacing:0.000000px;}
.ws1_c00062{word-spacing:0.046834px;}
.ws3_c00062{word-spacing:0.053383px;}
.ws5_c00062{word-spacing:0.175997px;}
._0_c00062{width:1.008902px;}
.fc4_c00062{color:rgb(79,153,5);}
.fc3_c00062{color:rgb(33,74,135);}
.fc2_c00062{color:rgb(207,92,0);}
.fc1_c00062{color:rgb(143,89,3);}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:43.999200px;}
.fs1_c00062{font-size:59.775600px;}
.y0_c00062{bottom:0.000000px;}
.y33_c00062{bottom:44.250000px;}
.y32_c00062{bottom:107.808000px;}
.y31_c00062{bottom:124.246500px;}
.y30_c00062{bottom:140.685000px;}
.y2f_c00062{bottom:157.123500px;}
.y2e_c00062{bottom:173.562000px;}
.y2d_c00062{bottom:190.000500px;}
.y2c_c00062{bottom:239.314500px;}
.y2b_c00062{bottom:255.753000px;}
.y2a_c00062{bottom:288.630000px;}
.y29_c00062{bottom:305.068500px;}
.y28_c00062{bottom:321.507000px;}
.y27_c00062{bottom:337.945500px;}
.y26_c00062{bottom:354.384000px;}
.y25_c00062{bottom:370.822500px;}
.y24_c00062{bottom:387.259500px;}
.y23_c00062{bottom:403.698000px;}
.y22_c00062{bottom:420.136500px;}
.y21_c00062{bottom:436.575000px;}
.y20_c00062{bottom:502.329000px;}
.y1f_c00062{bottom:518.767500px;}
.y1e_c00062{bottom:551.643000px;}
.y1d_c00062{bottom:568.081500px;}
.y1c_c00062{bottom:584.520000px;}
.y1b_c00062{bottom:600.958500px;}
.y1a_c00062{bottom:617.397000px;}
.y19_c00062{bottom:633.835500px;}
.y18_c00062{bottom:650.274000px;}
.y17_c00062{bottom:666.712500px;}
.y16_c00062{bottom:683.151000px;}
.y15_c00062{bottom:699.589500px;}
.y14_c00062{bottom:765.342000px;}
.y13_c00062{bottom:781.780500px;}
.y12_c00062{bottom:814.657500px;}
.y11_c00062{bottom:831.096000px;}
.y10_c00062{bottom:847.534500px;}
.yf_c00062{bottom:863.973000px;}
.ye_c00062{bottom:880.411500px;}
.yd_c00062{bottom:896.848500px;}
.yc_c00062{bottom:913.287000px;}
.yb_c00062{bottom:929.725500px;}
.ya_c00062{bottom:946.164000px;}
.y9_c00062{bottom:962.602500px;}
.y8_c00062{bottom:1028.356500px;}
.y7_c00062{bottom:1044.795000px;}
.y6_c00062{bottom:1077.670500px;}
.y5_c00062{bottom:1094.109000px;}
.y4_c00062{bottom:1110.547500px;}
.y3_c00062{bottom:1126.986000px;}
.y2_c00062{bottom:1143.424500px;}
.y1_c00062{bottom:1159.863000px;}
.h3_c00062{height:35.190766px;}
.h2_c00062{height:36.007158px;}
.h4_c00062{height:52.332837px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w0_c00062{width:892.920000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:137.122500px;}
.x2_c00062{left:150.417000px;}
.x3_c00062{left:236.832000px;}
.x4_c00062{left:438.984000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls3_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.078221pt;}
.ls2_c00062{letter-spacing:0.087539pt;}
.ls1_c00062{letter-spacing:0.092873pt;}
.ws0_c00062{word-spacing:-23.622682pt;}
.ws2_c00062{word-spacing:-23.544461pt;}
.ws4_c00062{word-spacing:0.000000pt;}
.ws1_c00062{word-spacing:0.041630pt;}
.ws3_c00062{word-spacing:0.047452pt;}
.ws5_c00062{word-spacing:0.156442pt;}
._0_c00062{width:0.896802pt;}
.fs0_c00062{font-size:39.110400pt;}
.fs1_c00062{font-size:53.133867pt;}
.y0_c00062{bottom:0.000000pt;}
.y33_c00062{bottom:39.333333pt;}
.y32_c00062{bottom:95.829333pt;}
.y31_c00062{bottom:110.441333pt;}
.y30_c00062{bottom:125.053333pt;}
.y2f_c00062{bottom:139.665333pt;}
.y2e_c00062{bottom:154.277333pt;}
.y2d_c00062{bottom:168.889333pt;}
.y2c_c00062{bottom:212.724000pt;}
.y2b_c00062{bottom:227.336000pt;}
.y2a_c00062{bottom:256.560000pt;}
.y29_c00062{bottom:271.172000pt;}
.y28_c00062{bottom:285.784000pt;}
.y27_c00062{bottom:300.396000pt;}
.y26_c00062{bottom:315.008000pt;}
.y25_c00062{bottom:329.620000pt;}
.y24_c00062{bottom:344.230667pt;}
.y23_c00062{bottom:358.842667pt;}
.y22_c00062{bottom:373.454667pt;}
.y21_c00062{bottom:388.066667pt;}
.y20_c00062{bottom:446.514667pt;}
.y1f_c00062{bottom:461.126667pt;}
.y1e_c00062{bottom:490.349333pt;}
.y1d_c00062{bottom:504.961333pt;}
.y1c_c00062{bottom:519.573333pt;}
.y1b_c00062{bottom:534.185333pt;}
.y1a_c00062{bottom:548.797333pt;}
.y19_c00062{bottom:563.409333pt;}
.y18_c00062{bottom:578.021333pt;}
.y17_c00062{bottom:592.633333pt;}
.y16_c00062{bottom:607.245333pt;}
.y15_c00062{bottom:621.857333pt;}
.y14_c00062{bottom:680.304000pt;}
.y13_c00062{bottom:694.916000pt;}
.y12_c00062{bottom:724.140000pt;}
.y11_c00062{bottom:738.752000pt;}
.y10_c00062{bottom:753.364000pt;}
.yf_c00062{bottom:767.976000pt;}
.ye_c00062{bottom:782.588000pt;}
.yd_c00062{bottom:797.198667pt;}
.yc_c00062{bottom:811.810667pt;}
.yb_c00062{bottom:826.422667pt;}
.ya_c00062{bottom:841.034667pt;}
.y9_c00062{bottom:855.646667pt;}
.y8_c00062{bottom:914.094667pt;}
.y7_c00062{bottom:928.706667pt;}
.y6_c00062{bottom:957.929333pt;}
.y5_c00062{bottom:972.541333pt;}
.y4_c00062{bottom:987.153333pt;}
.y3_c00062{bottom:1001.765333pt;}
.y2_c00062{bottom:1016.377333pt;}
.y1_c00062{bottom:1030.989333pt;}
.h3_c00062{height:31.280681pt;}
.h2_c00062{height:32.006363pt;}
.h4_c00062{height:46.518078pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w0_c00062{width:793.706667pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:121.886667pt;}
.x2_c00062{left:133.704000pt;}
.x3_c00062{left:210.517333pt;}
.x4_c00062{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f2eff258c1c2f819f3ec289.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:0.893555;font-style:normal;font-weight:normal;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_1c8c63e95bfa430375b3eb7b.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.102051;font-style:normal;font-weight:normal;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_2ef9fb7b343ee81987fe761c.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.083496;font-style:normal;font-weight:normal;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_b21e2245e9a08f96a7a2093a.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.014648;font-style:normal;font-weight:normal;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_b0a278989b3faefeb4c8e823.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.048828;font-style: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;}
.ls5_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.087998px;}
.ls2_c00063{letter-spacing:0.098482px;}
.ls1_c00063{letter-spacing:0.104482px;}
.ls3_c00063{letter-spacing:26.690482px;}
.ls4_c00063{letter-spacing:29.890200px;}
.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;}
}
.ws3_c00063{word-spacing:-33.713438px;}
.wsc_c00063{word-spacing:-26.575517px;}
.wse_c00063{word-spacing:-26.487518px;}
.wsb_c00063{word-spacing:-21.877870px;}
.ws0_c00063{word-spacing:-21.519300px;}
.ws19_c00063{word-spacing:-21.399665px;}
.ws2_c00063{word-spacing:-21.220338px;}
.ws4_c00063{word-spacing:-21.160562px;}
.ws1_c00063{word-spacing:-20.921460px;}
.ws8_c00063{word-spacing:-19.367294px;}
.ws1a_c00063{word-spacing:-18.891216px;}
.ws18_c00063{word-spacing:-18.829314px;}
.ws9_c00063{word-spacing:-18.769538px;}
.wsa_c00063{word-spacing:-15.541656px;}
.ws6_c00063{word-spacing:-14.023272px;}
.ws7_c00063{word-spacing:-13.987490px;}
.ws5_c00063{word-spacing:-13.969788px;}
.ws15_c00063{word-spacing:-13.519496px;}
.ws16_c00063{word-spacing:-13.509286px;}
.ws17_c00063{word-spacing:-3.820898px;}
.ws11_c00063{word-spacing:0.000000px;}
.ws10_c00063{word-spacing:0.043999px;}
.ws12_c00063{word-spacing:0.053383px;}
.ws13_c00063{word-spacing:0.063317px;}
.ws14_c00063{word-spacing:0.080350px;}
.wsd_c00063{word-spacing:0.175997px;}
.wsf_c00063{word-spacing:0.213446px;}
._7_c00063{margin-left:-7.833025px;}
._5_c00063{margin-left:-3.825638px;}
._3_c00063{margin-left:-1.374839px;}
._6_c00063{width:1.047451px;}
._4_c00063{width:19.905275px;}
._1_c00063{width:20.958778px;}
._9_c00063{width:29.892540px;}
._2_c00063{width:34.259017px;}
._8_c00063{width:36.028117px;}
._0_c00063{width:86.077200px;}
.fc6_c00063{color:rgb(0,0,207);}
.fc5_c00063{color:rgb(79,153,5);}
.fc3_c00063{color:rgb(33,74,135);}
.fc2_c00063{color:rgb(143,89,3);}
.fc4_c00063{color:rgb(207,92,0);}
.fc1_c00063{color:rgb(6,69,173);}
.fc0_c00063{color:rgb(0,0,0);}
.fs2_c00063{font-size:43.999200px;}
.fs1_c00063{font-size:59.775600px;}
.fs0_c00063{font-size:86.077200px;}
.y0_c00063{bottom:0.000000px;}
.y2b_c00063{bottom:44.250000px;}
.y2a_c00063{bottom:82.051500px;}
.y29_c00063{bottom:108.837000px;}
.y28_c00063{bottom:126.769500px;}
.y27_c00063{bottom:167.932500px;}
.y26_c00063{bottom:191.617500px;}
.y25_c00063{bottom:215.301000px;}
.y24_c00063{bottom:247.837500px;}
.y23_c00063{bottom:280.374000px;}
.y22_c00063{bottom:304.059000px;}
.y21_c00063{bottom:327.742500px;}
.y20_c00063{bottom:351.426000px;}
.y1f_c00063{bottom:375.109500px;}
.y1e_c00063{bottom:407.647500px;}
.y1d_c00063{bottom:448.810500px;}
.y1c_c00063{bottom:466.743000px;}
.y1b_c00063{bottom:508.902000px;}
.y1a_c00063{bottom:582.816000px;}
.y19_c00063{bottom:599.254500px;}
.y18_c00063{bottom:632.131500px;}
.y17_c00063{bottom:648.570000px;}
.y16_c00063{bottom:681.447000px;}
.y15_c00063{bottom:697.884000px;}
.y14_c00063{bottom:714.322500px;}
.y13_c00063{bottom:730.761000px;}
.y12_c00063{bottom:763.638000px;}
.y11_c00063{bottom:780.076500px;}
.y10_c00063{bottom:812.953500px;}
.yf_c00063{bottom:829.392000px;}
.ye_c00063{bottom:862.267500px;}
.yd_c00063{bottom:878.706000px;}
.yc_c00063{bottom:895.144500px;}
.yb_c00063{bottom:911.209500px;}
.ya_c00063{bottom:956.535000px;}
.y9_c00063{bottom:983.322000px;}
.y8_c00063{bottom:1001.254500px;}
.y7_c00063{bottom:1019.187000px;}
.y6_c00063{bottom:1045.972500px;}
.y5_c00063{bottom:1063.905000px;}
.y4_c00063{bottom:1081.839000px;}
.y3_c00063{bottom:1099.771500px;}
.y2_c00063{bottom:1117.704000px;}
.y1_c00063{bottom:1159.863000px;}
.h4_c00063{height:35.190766px;}
.h5_c00063{height:36.007158px;}
.h3_c00063{height:52.332837px;}
.h2_c00063{height:58.337477px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w0_c00063{width:892.920000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:127.558500px;}
.x2_c00063{left:137.122500px;}
.x3_c00063{left:152.215500px;}
.x4_c00063{left:182.851500px;}
.x5_c00063{left:438.984000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls5_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.078221pt;}
.ls2_c00063{letter-spacing:0.087539pt;}
.ls1_c00063{letter-spacing:0.092873pt;}
.ls3_c00063{letter-spacing:23.724873pt;}
.ls4_c00063{letter-spacing:26.569067pt;}
.ws3_c00063{word-spacing:-29.967501pt;}
.wsc_c00063{word-spacing:-23.622682pt;}
.wse_c00063{word-spacing:-23.544461pt;}
.wsb_c00063{word-spacing:-19.446995pt;}
.ws0_c00063{word-spacing:-19.128267pt;}
.ws19_c00063{word-spacing:-19.021924pt;}
.ws2_c00063{word-spacing:-18.862523pt;}
.ws4_c00063{word-spacing:-18.809389pt;}
.ws1_c00063{word-spacing:-18.596853pt;}
.ws8_c00063{word-spacing:-17.215373pt;}
.ws1a_c00063{word-spacing:-16.792192pt;}
.ws18_c00063{word-spacing:-16.737168pt;}
.ws9_c00063{word-spacing:-16.684034pt;}
.wsa_c00063{word-spacing:-13.814805pt;}
.ws6_c00063{word-spacing:-12.465131pt;}
.ws7_c00063{word-spacing:-12.433325pt;}
.ws5_c00063{word-spacing:-12.417589pt;}
.ws15_c00063{word-spacing:-12.017330pt;}
.ws16_c00063{word-spacing:-12.008254pt;}
.ws17_c00063{word-spacing:-3.396354pt;}
.ws11_c00063{word-spacing:0.000000pt;}
.ws10_c00063{word-spacing:0.039110pt;}
.ws12_c00063{word-spacing:0.047452pt;}
.ws13_c00063{word-spacing:0.056282pt;}
.ws14_c00063{word-spacing:0.071422pt;}
.wsd_c00063{word-spacing:0.156442pt;}
.wsf_c00063{word-spacing:0.189730pt;}
._7_c00063{margin-left:-6.962689pt;}
._5_c00063{margin-left:-3.400567pt;}
._3_c00063{margin-left:-1.222079pt;}
._6_c00063{width:0.931068pt;}
._4_c00063{width:17.693578pt;}
._1_c00063{width:18.630025pt;}
._9_c00063{width:26.571147pt;}
._2_c00063{width:30.452460pt;}
._8_c00063{width:32.024993pt;}
._0_c00063{width:76.513067pt;}
.fs2_c00063{font-size:39.110400pt;}
.fs1_c00063{font-size:53.133867pt;}
.fs0_c00063{font-size:76.513067pt;}
.y0_c00063{bottom:0.000000pt;}
.y2b_c00063{bottom:39.333333pt;}
.y2a_c00063{bottom:72.934667pt;}
.y29_c00063{bottom:96.744000pt;}
.y28_c00063{bottom:112.684000pt;}
.y27_c00063{bottom:149.273333pt;}
.y26_c00063{bottom:170.326667pt;}
.y25_c00063{bottom:191.378667pt;}
.y24_c00063{bottom:220.300000pt;}
.y23_c00063{bottom:249.221333pt;}
.y22_c00063{bottom:270.274667pt;}
.y21_c00063{bottom:291.326667pt;}
.y20_c00063{bottom:312.378667pt;}
.y1f_c00063{bottom:333.430667pt;}
.y1e_c00063{bottom:362.353333pt;}
.y1d_c00063{bottom:398.942667pt;}
.y1c_c00063{bottom:414.882667pt;}
.y1b_c00063{bottom:452.357333pt;}
.y1a_c00063{bottom:518.058667pt;}
.y19_c00063{bottom:532.670667pt;}
.y18_c00063{bottom:561.894667pt;}
.y17_c00063{bottom:576.506667pt;}
.y16_c00063{bottom:605.730667pt;}
.y15_c00063{bottom:620.341333pt;}
.y14_c00063{bottom:634.953333pt;}
.y13_c00063{bottom:649.565333pt;}
.y12_c00063{bottom:678.789333pt;}
.y11_c00063{bottom:693.401333pt;}
.y10_c00063{bottom:722.625333pt;}
.yf_c00063{bottom:737.237333pt;}
.ye_c00063{bottom:766.460000pt;}
.yd_c00063{bottom:781.072000pt;}
.yc_c00063{bottom:795.684000pt;}
.yb_c00063{bottom:809.964000pt;}
.ya_c00063{bottom:850.253333pt;}
.y9_c00063{bottom:874.064000pt;}
.y8_c00063{bottom:890.004000pt;}
.y7_c00063{bottom:905.944000pt;}
.y6_c00063{bottom:929.753333pt;}
.y5_c00063{bottom:945.693333pt;}
.y4_c00063{bottom:961.634667pt;}
.y3_c00063{bottom:977.574667pt;}
.y2_c00063{bottom:993.514667pt;}
.y1_c00063{bottom:1030.989333pt;}
.h4_c00063{height:31.280681pt;}
.h5_c00063{height:32.006363pt;}
.h3_c00063{height:46.518078pt;}
.h2_c00063{height:51.855535pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w0_c00063{width:793.706667pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:113.385333pt;}
.x2_c00063{left:121.886667pt;}
.x3_c00063{left:135.302667pt;}
.x4_c00063{left:162.534667pt;}
.x5_c00063{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_faa86d0753e84e08b3090b1c.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:0.893555;font-style:normal;font-weight:normal;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_b3921afe7175f14fbe63adc6.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.102051;font-style:normal;font-weight:normal;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_a2464c2eab69b1266cd62600.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.083496;font-style:normal;font-weight:normal;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_472daaa10c548dc5bbab70cb.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_592d90adb7114bc09f4df258.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:1.048828;font-style: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.000000px;}
.ls0_c00064{letter-spacing:0.087998px;}
.ls3_c00064{letter-spacing:0.098482px;}
.ls2_c00064{letter-spacing:0.104482px;}
.ls1_c00064{letter-spacing:13.052482px;}
.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;}
}
.ws16_c00064{word-spacing:-26.575517px;}
.ws1c_c00064{word-spacing:-26.487518px;}
.ws4_c00064{word-spacing:-21.638767px;}
.ws0_c00064{word-spacing:-21.519300px;}
.ws17_c00064{word-spacing:-20.865048px;}
.ws18_c00064{word-spacing:-20.801909px;}
.ws1a_c00064{word-spacing:-20.742133px;}
.ws1_c00064{word-spacing:-20.631538px;}
.ws3_c00064{word-spacing:-20.622582px;}
.wsc_c00064{word-spacing:-18.829314px;}
.ws5_c00064{word-spacing:-18.769538px;}
.ws6_c00064{word-spacing:-17.932800px;}
.ws12_c00064{word-spacing:-17.243012px;}
.ws11_c00064{word-spacing:-17.215373px;}
.ws10_c00064{word-spacing:-16.617617px;}
.wsf_c00064{word-spacing:-16.593538px;}
.wsa_c00064{word-spacing:-16.560397px;}
.ws9_c00064{word-spacing:-16.557841px;}
.ws15_c00064{word-spacing:-15.661207px;}
.ws13_c00064{word-spacing:-15.601432px;}
.ws8_c00064{word-spacing:-14.187538px;}
.ws7_c00064{word-spacing:-14.166817px;}
.wsd_c00064{word-spacing:-13.808164px;}
.wsb_c00064{word-spacing:-13.449510px;}
.ws19_c00064{word-spacing:-13.430554px;}
.ws2_c00064{word-spacing:-13.394333px;}
.wse_c00064{word-spacing:-11.506598px;}
.ws14_c00064{word-spacing:-8.430067px;}
.ws1f_c00064{word-spacing:0.000000px;}
.ws1d_c00064{word-spacing:0.043999px;}
.ws1b_c00064{word-spacing:0.175997px;}
.ws1e_c00064{word-spacing:0.213446px;}
._3_c00064{margin-left:-3.319990px;}
._7_c00064{margin-left:-1.291162px;}
._a_c00064{width:1.047451px;}
._1_c00064{width:19.068416px;}
._5_c00064{width:21.698543px;}
._8_c00064{width:23.886490px;}
._9_c00064{width:24.938723px;}
._4_c00064{width:27.151981px;}
._6_c00064{width:29.892540px;}
._2_c00064{width:71.731200px;}
._0_c00064{width:86.077200px;}
.fc6_c00064{color:rgb(0,0,207);}
.fc5_c00064{color:rgb(79,153,5);}
.fc3_c00064{color:rgb(33,74,135);}
.fc2_c00064{color:rgb(143,89,3);}
.fc4_c00064{color:rgb(207,92,0);}
.fc1_c00064{color:rgb(6,69,173);}
.fc0_c00064{color:rgb(0,0,0);}
.fs2_c00064{font-size:43.999200px;}
.fs1_c00064{font-size:59.775600px;}
.fs3_c00064{font-size:71.731200px;}
.fs0_c00064{font-size:86.077200px;}
.y0_c00064{bottom:0.000000px;}
.y29_c00064{bottom:44.250000px;}
.y28_c00064{bottom:86.982000px;}
.y27_c00064{bottom:119.859000px;}
.y26_c00064{bottom:136.297500px;}
.y25_c00064{bottom:169.174500px;}
.y24_c00064{bottom:185.613000px;}
.y23_c00064{bottom:202.051500px;}
.y22_c00064{bottom:234.927000px;}
.y21_c00064{bottom:267.804000px;}
.y20_c00064{bottom:284.242500px;}
.y1f_c00064{bottom:317.119500px;}
.y1e_c00064{bottom:333.558000px;}
.y1d_c00064{bottom:349.996500px;}
.y1c_c00064{bottom:366.061500px;}
.y1b_c00064{bottom:413.871000px;}
.y1a_c00064{bottom:431.803500px;}
.y19_c00064{bottom:449.736000px;}
.y18_c00064{bottom:476.569500px;}
.y17_c00064{bottom:494.502000px;}
.y16_c00064{bottom:512.434500px;}
.y15_c00064{bottom:530.367000px;}
.y14_c00064{bottom:567.226500px;}
.y13_c00064{bottom:618.711000px;}
.y12_c00064{bottom:660.157500px;}
.y11_c00064{bottom:689.913000px;}
.y10_c00064{bottom:719.668500px;}
.yf_c00064{bottom:749.424000px;}
.ye_c00064{bottom:779.179500px;}
.yd_c00064{bottom:808.936500px;}
.yc_c00064{bottom:838.692000px;}
.yb_c00064{bottom:868.447500px;}
.ya_c00064{bottom:898.203000px;}
.y9_c00064{bottom:939.649500px;}
.y8_c00064{bottom:957.582000px;}
.y7_c00064{bottom:975.514500px;}
.y6_c00064{bottom:993.447000px;}
.y5_c00064{bottom:1030.306500px;}
.y4_c00064{bottom:1081.791000px;}
.y3_c00064{bottom:1099.723500px;}
.y2_c00064{bottom:1117.657500px;}
.y1_c00064{bottom:1159.863000px;}
.h5_c00064{height:35.190766px;}
.h6_c00064{height:36.007158px;}
.h4_c00064{height:48.614700px;}
.h3_c00064{height:52.332837px;}
.h2_c00064{height:58.337477px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w0_c00064{width:892.920000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:127.558500px;}
.x3_c00064{left:137.122500px;}
.x2_c00064{left:152.215500px;}
.x4_c00064{left:263.421000px;}
.x5_c00064{left:438.984000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls4_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:0.078221pt;}
.ls3_c00064{letter-spacing:0.087539pt;}
.ls2_c00064{letter-spacing:0.092873pt;}
.ls1_c00064{letter-spacing:11.602206pt;}
.ws16_c00064{word-spacing:-23.622682pt;}
.ws1c_c00064{word-spacing:-23.544461pt;}
.ws4_c00064{word-spacing:-19.234460pt;}
.ws0_c00064{word-spacing:-19.128267pt;}
.ws17_c00064{word-spacing:-18.546709pt;}
.ws18_c00064{word-spacing:-18.490586pt;}
.ws1a_c00064{word-spacing:-18.437452pt;}
.ws1_c00064{word-spacing:-18.339145pt;}
.ws3_c00064{word-spacing:-18.331184pt;}
.wsc_c00064{word-spacing:-16.737168pt;}
.ws5_c00064{word-spacing:-16.684034pt;}
.ws6_c00064{word-spacing:-15.940267pt;}
.ws12_c00064{word-spacing:-15.327122pt;}
.ws11_c00064{word-spacing:-15.302554pt;}
.ws10_c00064{word-spacing:-14.771215pt;}
.wsf_c00064{word-spacing:-14.749811pt;}
.wsa_c00064{word-spacing:-14.720353pt;}
.ws9_c00064{word-spacing:-14.718081pt;}
.ws15_c00064{word-spacing:-13.921073pt;}
.ws13_c00064{word-spacing:-13.867939pt;}
.ws8_c00064{word-spacing:-12.611145pt;}
.ws7_c00064{word-spacing:-12.592726pt;}
.wsd_c00064{word-spacing:-12.273923pt;}
.wsb_c00064{word-spacing:-11.955120pt;}
.ws19_c00064{word-spacing:-11.938270pt;}
.ws2_c00064{word-spacing:-11.906074pt;}
.wse_c00064{word-spacing:-10.228087pt;}
.ws14_c00064{word-spacing:-7.493393pt;}
.ws1f_c00064{word-spacing:0.000000pt;}
.ws1d_c00064{word-spacing:0.039110pt;}
.ws1b_c00064{word-spacing:0.156442pt;}
.ws1e_c00064{word-spacing:0.189730pt;}
._3_c00064{margin-left:-2.951102pt;}
._7_c00064{margin-left:-1.147699pt;}
._a_c00064{width:0.931068pt;}
._1_c00064{width:16.949703pt;}
._5_c00064{width:19.287594pt;}
._8_c00064{width:21.232435pt;}
._9_c00064{width:22.167754pt;}
._4_c00064{width:24.135094pt;}
._6_c00064{width:26.571147pt;}
._2_c00064{width:63.761067pt;}
._0_c00064{width:76.513067pt;}
.fs2_c00064{font-size:39.110400pt;}
.fs1_c00064{font-size:53.133867pt;}
.fs3_c00064{font-size:63.761067pt;}
.fs0_c00064{font-size:76.513067pt;}
.y0_c00064{bottom:0.000000pt;}
.y29_c00064{bottom:39.333333pt;}
.y28_c00064{bottom:77.317333pt;}
.y27_c00064{bottom:106.541333pt;}
.y26_c00064{bottom:121.153333pt;}
.y25_c00064{bottom:150.377333pt;}
.y24_c00064{bottom:164.989333pt;}
.y23_c00064{bottom:179.601333pt;}
.y22_c00064{bottom:208.824000pt;}
.y21_c00064{bottom:238.048000pt;}
.y20_c00064{bottom:252.660000pt;}
.y1f_c00064{bottom:281.884000pt;}
.y1e_c00064{bottom:296.496000pt;}
.y1d_c00064{bottom:311.108000pt;}
.y1c_c00064{bottom:325.388000pt;}
.y1b_c00064{bottom:367.885333pt;}
.y1a_c00064{bottom:383.825333pt;}
.y19_c00064{bottom:399.765333pt;}
.y18_c00064{bottom:423.617333pt;}
.y17_c00064{bottom:439.557333pt;}
.y16_c00064{bottom:455.497333pt;}
.y15_c00064{bottom:471.437333pt;}
.y14_c00064{bottom:504.201333pt;}
.y13_c00064{bottom:549.965333pt;}
.y12_c00064{bottom:586.806667pt;}
.y11_c00064{bottom:613.256000pt;}
.y10_c00064{bottom:639.705333pt;}
.yf_c00064{bottom:666.154667pt;}
.ye_c00064{bottom:692.604000pt;}
.yd_c00064{bottom:719.054667pt;}
.yc_c00064{bottom:745.504000pt;}
.yb_c00064{bottom:771.953333pt;}
.ya_c00064{bottom:798.402667pt;}
.y9_c00064{bottom:835.244000pt;}
.y8_c00064{bottom:851.184000pt;}
.y7_c00064{bottom:867.124000pt;}
.y6_c00064{bottom:883.064000pt;}
.y5_c00064{bottom:915.828000pt;}
.y4_c00064{bottom:961.592000pt;}
.y3_c00064{bottom:977.532000pt;}
.y2_c00064{bottom:993.473333pt;}
.y1_c00064{bottom:1030.989333pt;}
.h5_c00064{height:31.280681pt;}
.h6_c00064{height:32.006363pt;}
.h4_c00064{height:43.213067pt;}
.h3_c00064{height:46.518078pt;}
.h2_c00064{height:51.855535pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w0_c00064{width:793.706667pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:113.385333pt;}
.x3_c00064{left:121.886667pt;}
.x2_c00064{left:135.302667pt;}
.x4_c00064{left:234.152000pt;}
.x5_c00064{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a811c1d1c4c50b309ef66b7c.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.048828;font-style:normal;font-weight:normal;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_c6096bc6f6c7b930a3821302.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.083496;font-style:normal;font-weight:normal;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_caf4d688ebafff19728b045a.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.893555;font-style:normal;font-weight:normal;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_8411bd60e7ab7ab887ea193b.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_d5ba4d0aa594e2a195d33858.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls5_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.087998px;}
.ls3_c00065{letter-spacing:0.098482px;}
.ls1_c00065{letter-spacing:0.104482px;}
.ls4_c00065{letter-spacing:26.690482px;}
.ls2_c00065{letter-spacing:29.890200px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-26.575517px;}
.wsb_c00065{word-spacing:-26.487518px;}
.ws5_c00065{word-spacing:-18.769538px;}
.ws1_c00065{word-spacing:-17.932800px;}
.ws9_c00065{word-spacing:-17.633802px;}
.ws4_c00065{word-spacing:-14.764573px;}
.ws7_c00065{word-spacing:-13.808164px;}
.ws3_c00065{word-spacing:-13.509286px;}
.ws2_c00065{word-spacing:-13.389734px;}
.ws8_c00065{word-spacing:-11.582134px;}
.ws6_c00065{word-spacing:-11.581584px;}
.wse_c00065{word-spacing:0.000000px;}
.wsc_c00065{word-spacing:0.043999px;}
.ws12_c00065{word-spacing:0.053383px;}
.wsf_c00065{word-spacing:0.063866px;}
.ws11_c00065{word-spacing:0.064416px;}
.ws10_c00065{word-spacing:0.069866px;}
.wsa_c00065{word-spacing:0.175997px;}
.wsd_c00065{word-spacing:0.213446px;}
._8_c00065{margin-left:-6.455765px;}
._3_c00065{margin-left:-4.124516px;}
._5_c00065{margin-left:-2.391024px;}
._1_c00065{margin-left:-1.291162px;}
._b_c00065{width:1.047451px;}
._a_c00065{width:19.905275px;}
._4_c00065{width:21.578992px;}
._2_c00065{width:23.886490px;}
._9_c00065{width:29.892540px;}
._7_c00065{width:32.219048px;}
._6_c00065{width:35.387155px;}
._0_c00065{width:71.731200px;}
.fc5_c00065{color:rgb(0,0,207);}
.fc4_c00065{color:rgb(207,92,0);}
.fc3_c00065{color:rgb(79,153,5);}
.fc2_c00065{color:rgb(143,89,3);}
.fc1_c00065{color:rgb(0,0,0);}
.fc0_c00065{color:rgb(33,74,135);}
.fs0_c00065{font-size:43.999200px;}
.fs2_c00065{font-size:59.775600px;}
.fs1_c00065{font-size:71.731200px;}
.y0_c00065{bottom:0.000000px;}
.y2e_c00065{bottom:44.250000px;}
.y2d_c00065{bottom:82.051500px;}
.y2c_c00065{bottom:98.490000px;}
.y2b_c00065{bottom:114.927000px;}
.y2a_c00065{bottom:131.365500px;}
.y29_c00065{bottom:147.804000px;}
.y28_c00065{bottom:164.242500px;}
.y27_c00065{bottom:180.681000px;}
.y26_c00065{bottom:197.119500px;}
.y25_c00065{bottom:213.558000px;}
.y24_c00065{bottom:229.996500px;}
.y23_c00065{bottom:262.873500px;}
.y22_c00065{bottom:279.310500px;}
.y21_c00065{bottom:295.749000px;}
.y20_c00065{bottom:328.626000px;}
.y1f_c00065{bottom:345.064500px;}
.y1e_c00065{bottom:377.941500px;}
.y1d_c00065{bottom:410.818500px;}
.y1c_c00065{bottom:443.694000px;}
.y1b_c00065{bottom:460.132500px;}
.y1a_c00065{bottom:493.009500px;}
.y19_c00065{bottom:509.448000px;}
.y18_c00065{bottom:525.886500px;}
.y17_c00065{bottom:541.951500px;}
.y16_c00065{bottom:589.395000px;}
.y15_c00065{bottom:619.029000px;}
.y14_c00065{bottom:636.961500px;}
.y13_c00065{bottom:666.595500px;}
.y12_c00065{bottom:699.091500px;}
.y11_c00065{bottom:722.746500px;}
.y10_c00065{bottom:746.403000px;}
.yf_c00065{bottom:770.059500px;}
.ye_c00065{bottom:793.716000px;}
.yd_c00065{bottom:826.210500px;}
.yc_c00065{bottom:867.291000px;}
.yb_c00065{bottom:894.063000px;}
.ya_c00065{bottom:920.835000px;}
.y9_c00065{bottom:938.769000px;}
.y8_c00065{bottom:956.701500px;}
.y7_c00065{bottom:974.634000px;}
.y6_c00065{bottom:1011.432000px;}
.y5_c00065{bottom:1077.670500px;}
.y4_c00065{bottom:1094.109000px;}
.y3_c00065{bottom:1110.547500px;}
.y2_c00065{bottom:1126.986000px;}
.y1_c00065{bottom:1159.863000px;}
.h5_c00065{height:35.190766px;}
.h2_c00065{height:36.007158px;}
.h3_c00065{height:48.614700px;}
.h4_c00065{height:52.332837px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w0_c00065{width:892.920000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x3_c00065{left:127.558500px;}
.x1_c00065{left:137.122500px;}
.x7_c00065{left:150.417000px;}
.x4_c00065{left:152.215500px;}
.x6_c00065{left:164.919000px;}
.x5_c00065{left:182.851500px;}
.x2_c00065{left:223.537500px;}
.x8_c00065{left:309.952500px;}
.x9_c00065{left:438.984000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls5_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.078221pt;}
.ls3_c00065{letter-spacing:0.087539pt;}
.ls1_c00065{letter-spacing:0.092873pt;}
.ls4_c00065{letter-spacing:23.724873pt;}
.ls2_c00065{letter-spacing:26.569067pt;}
.ws0_c00065{word-spacing:-23.622682pt;}
.wsb_c00065{word-spacing:-23.544461pt;}
.ws5_c00065{word-spacing:-16.684034pt;}
.ws1_c00065{word-spacing:-15.940267pt;}
.ws9_c00065{word-spacing:-15.674491pt;}
.ws4_c00065{word-spacing:-13.124065pt;}
.ws7_c00065{word-spacing:-12.273923pt;}
.ws3_c00065{word-spacing:-12.008254pt;}
.ws2_c00065{word-spacing:-11.901986pt;}
.ws8_c00065{word-spacing:-10.295230pt;}
.ws6_c00065{word-spacing:-10.294741pt;}
.wse_c00065{word-spacing:0.000000pt;}
.wsc_c00065{word-spacing:0.039110pt;}
.ws12_c00065{word-spacing:0.047452pt;}
.wsf_c00065{word-spacing:0.056770pt;}
.ws11_c00065{word-spacing:0.057259pt;}
.ws10_c00065{word-spacing:0.062103pt;}
.wsa_c00065{word-spacing:0.156442pt;}
.wsd_c00065{word-spacing:0.189730pt;}
._8_c00065{margin-left:-5.738458pt;}
._3_c00065{margin-left:-3.666237pt;}
._5_c00065{margin-left:-2.125355pt;}
._1_c00065{margin-left:-1.147699pt;}
._b_c00065{width:0.931068pt;}
._a_c00065{width:17.693578pt;}
._4_c00065{width:19.181326pt;}
._2_c00065{width:21.232435pt;}
._9_c00065{width:26.571147pt;}
._7_c00065{width:28.639154pt;}
._6_c00065{width:31.455249pt;}
._0_c00065{width:63.761067pt;}
.fs0_c00065{font-size:39.110400pt;}
.fs2_c00065{font-size:53.133867pt;}
.fs1_c00065{font-size:63.761067pt;}
.y0_c00065{bottom:0.000000pt;}
.y2e_c00065{bottom:39.333333pt;}
.y2d_c00065{bottom:72.934667pt;}
.y2c_c00065{bottom:87.546667pt;}
.y2b_c00065{bottom:102.157333pt;}
.y2a_c00065{bottom:116.769333pt;}
.y29_c00065{bottom:131.381333pt;}
.y28_c00065{bottom:145.993333pt;}
.y27_c00065{bottom:160.605333pt;}
.y26_c00065{bottom:175.217333pt;}
.y25_c00065{bottom:189.829333pt;}
.y24_c00065{bottom:204.441333pt;}
.y23_c00065{bottom:233.665333pt;}
.y22_c00065{bottom:248.276000pt;}
.y21_c00065{bottom:262.888000pt;}
.y20_c00065{bottom:292.112000pt;}
.y1f_c00065{bottom:306.724000pt;}
.y1e_c00065{bottom:335.948000pt;}
.y1d_c00065{bottom:365.172000pt;}
.y1c_c00065{bottom:394.394667pt;}
.y1b_c00065{bottom:409.006667pt;}
.y1a_c00065{bottom:438.230667pt;}
.y19_c00065{bottom:452.842667pt;}
.y18_c00065{bottom:467.454667pt;}
.y17_c00065{bottom:481.734667pt;}
.y16_c00065{bottom:523.906667pt;}
.y15_c00065{bottom:550.248000pt;}
.y14_c00065{bottom:566.188000pt;}
.y13_c00065{bottom:592.529333pt;}
.y12_c00065{bottom:621.414667pt;}
.y11_c00065{bottom:642.441333pt;}
.y10_c00065{bottom:663.469333pt;}
.yf_c00065{bottom:684.497333pt;}
.ye_c00065{bottom:705.525333pt;}
.yd_c00065{bottom:734.409333pt;}
.yc_c00065{bottom:770.925333pt;}
.yb_c00065{bottom:794.722667pt;}
.ya_c00065{bottom:818.520000pt;}
.y9_c00065{bottom:834.461333pt;}
.y8_c00065{bottom:850.401333pt;}
.y7_c00065{bottom:866.341333pt;}
.y6_c00065{bottom:899.050667pt;}
.y5_c00065{bottom:957.929333pt;}
.y4_c00065{bottom:972.541333pt;}
.y3_c00065{bottom:987.153333pt;}
.y2_c00065{bottom:1001.765333pt;}
.y1_c00065{bottom:1030.989333pt;}
.h5_c00065{height:31.280681pt;}
.h2_c00065{height:32.006363pt;}
.h3_c00065{height:43.213067pt;}
.h4_c00065{height:46.518078pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w0_c00065{width:793.706667pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x3_c00065{left:113.385333pt;}
.x1_c00065{left:121.886667pt;}
.x7_c00065{left:133.704000pt;}
.x4_c00065{left:135.302667pt;}
.x6_c00065{left:146.594667pt;}
.x5_c00065{left:162.534667pt;}
.x2_c00065{left:198.700000pt;}
.x8_c00065{left:275.513333pt;}
.x9_c00065{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8118491e21c2879c4941df61.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.083496;font-style:normal;font-weight:normal;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_0bd26a72352ae4c763967422.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.048828;font-style:normal;font-weight:normal;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_a28809e982b1b9dd6ed1905a.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.014648;font-style:normal;font-weight:normal;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_d75cdd046f583c0e20797a8b.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.893555;font-style:normal;font-weight:normal;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_01a7cbf593b2e590de3fa96f.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_8a7ae7f29c97a1a073a92ef1.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:1.000000;font-style: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);}
.v1_c00066{vertical-align:-12.258000px;}
.v0_c00066{vertical-align:0.000000px;}
.ls5_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.087998px;}
.ls1_c00066{letter-spacing:0.098482px;}
.ls2_c00066{letter-spacing:0.104482px;}
.ls4_c00066{letter-spacing:7.460482px;}
.ls3_c00066{letter-spacing:29.890200px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-26.575517px;}
.ws1_c00066{word-spacing:-26.487518px;}
.wse_c00066{word-spacing:-21.758318px;}
.ws12_c00066{word-spacing:-18.829314px;}
.wsc_c00066{word-spacing:-18.769538px;}
.wsb_c00066{word-spacing:-17.932800px;}
.wsd_c00066{word-spacing:-15.313584px;}
.ws14_c00066{word-spacing:-11.582134px;}
.ws13_c00066{word-spacing:-11.581584px;}
.ws7_c00066{word-spacing:0.000000px;}
.ws15_c00066{word-spacing:0.043999px;}
.ws5_c00066{word-spacing:0.053383px;}
.wsa_c00066{word-spacing:0.056767px;}
.ws4_c00066{word-spacing:0.064416px;}
.ws3_c00066{word-spacing:0.069866px;}
.ws16_c00066{word-spacing:0.080350px;}
.ws9_c00066{word-spacing:0.084283px;}
.ws8_c00066{word-spacing:0.090283px;}
.ws6_c00066{word-spacing:0.175997px;}
.ws2_c00066{word-spacing:0.213446px;}
.ws10_c00066{word-spacing:66.538416px;}
.wsf_c00066{word-spacing:67.845306px;}
.ws11_c00066{word-spacing:78.844016px;}
._9_c00066{margin-left:-1917.724661px;}
._4_c00066{margin-left:-3.825638px;}
._2_c00066{margin-left:-1.291162px;}
._0_c00066{width:1.055981px;}
._6_c00066{width:18.052231px;}
._8_c00066{width:19.905275px;}
._3_c00066{width:23.886490px;}
._5_c00066{width:29.892540px;}
._1_c00066{width:71.731200px;}
._7_c00066{width:176.158693px;}
.fc5_c00066{color:rgb(0,0,207);}
.fc4_c00066{color:rgb(79,153,5);}
.fc3_c00066{color:rgb(207,92,0);}
.fc2_c00066{color:rgb(0,0,0);}
.fc1_c00066{color:rgb(143,89,3);}
.fc0_c00066{color:rgb(33,74,135);}
.fs4_c00066{font-size:31.015800px;}
.fs3_c00066{font-size:37.218600px;}
.fs0_c00066{font-size:43.999200px;}
.fs2_c00066{font-size:59.775600px;}
.fs1_c00066{font-size:71.731200px;}
.y0_c00066{bottom:0.000000px;}
.y2e_c00066{bottom:44.250000px;}
.y2d_c00066{bottom:86.982000px;}
.y2c_c00066{bottom:103.420500px;}
.y2b_c00066{bottom:135.924000px;}
.y2a_c00066{bottom:154.315500px;}
.y29_c00066{bottom:187.192500px;}
.y28_c00066{bottom:220.069500px;}
.y27_c00066{bottom:236.508000px;}
.y26_c00066{bottom:269.385000px;}
.y25_c00066{bottom:285.823500px;}
.y24_c00066{bottom:302.260500px;}
.y23_c00066{bottom:318.325500px;}
.y22_c00066{bottom:365.568000px;}
.y21_c00066{bottom:395.133000px;}
.y20_c00066{bottom:427.528500px;}
.y1f_c00066{bottom:451.116000px;}
.y1e_c00066{bottom:474.705000px;}
.y1d_c00066{bottom:492.637500px;}
.y1c_c00066{bottom:516.226500px;}
.y1b_c00066{bottom:534.159000px;}
.y1a_c00066{bottom:552.093000px;}
.y19_c00066{bottom:584.487000px;}
.y18_c00066{bottom:625.365000px;}
.y17_c00066{bottom:652.102500px;}
.y16_c00066{bottom:678.841500px;}
.y15_c00066{bottom:715.605000px;}
.y14_c00066{bottom:781.780500px;}
.y13_c00066{bottom:798.219000px;}
.y12_c00066{bottom:814.657500px;}
.y11_c00066{bottom:831.096000px;}
.y10_c00066{bottom:847.534500px;}
.yf_c00066{bottom:880.411500px;}
.ye_c00066{bottom:896.848500px;}
.yd_c00066{bottom:913.287000px;}
.yc_c00066{bottom:929.725500px;}
.yb_c00066{bottom:962.602500px;}
.ya_c00066{bottom:979.041000px;}
.y9_c00066{bottom:995.479500px;}
.y8_c00066{bottom:1028.356500px;}
.y7_c00066{bottom:1044.795000px;}
.y6_c00066{bottom:1077.670500px;}
.y5_c00066{bottom:1094.109000px;}
.y4_c00066{bottom:1110.547500px;}
.y3_c00066{bottom:1126.986000px;}
.y2_c00066{bottom:1143.424500px;}
.y1_c00066{bottom:1159.863000px;}
.h3_c00066{height:35.190766px;}
.h2_c00066{height:36.007158px;}
.h4_c00066{height:48.614700px;}
.h5_c00066{height:52.332837px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w0_c00066{width:892.920000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x6_c00066{left:127.558500px;}
.x4_c00066{left:137.122500px;}
.x2_c00066{left:150.417000px;}
.x7_c00066{left:152.215500px;}
.xa_c00066{left:163.713000px;}
.x8_c00066{left:182.851500px;}
.x9_c00066{left:197.796000px;}
.x5_c00066{left:290.010000px;}
.x1_c00066{left:309.952500px;}
.x3_c00066{left:336.541500px;}
.xb_c00066{left:438.984000px;}
@media print{
.v1_c00066{vertical-align:-10.896000pt;}
.v0_c00066{vertical-align:0.000000pt;}
.ls5_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.078221pt;}
.ls1_c00066{letter-spacing:0.087539pt;}
.ls2_c00066{letter-spacing:0.092873pt;}
.ls4_c00066{letter-spacing:6.631539pt;}
.ls3_c00066{letter-spacing:26.569067pt;}
.ws0_c00066{word-spacing:-23.622682pt;}
.ws1_c00066{word-spacing:-23.544461pt;}
.wse_c00066{word-spacing:-19.340727pt;}
.ws12_c00066{word-spacing:-16.737168pt;}
.wsc_c00066{word-spacing:-16.684034pt;}
.wsb_c00066{word-spacing:-15.940267pt;}
.wsd_c00066{word-spacing:-13.612075pt;}
.ws14_c00066{word-spacing:-10.295230pt;}
.ws13_c00066{word-spacing:-10.294741pt;}
.ws7_c00066{word-spacing:0.000000pt;}
.ws15_c00066{word-spacing:0.039110pt;}
.ws5_c00066{word-spacing:0.047452pt;}
.wsa_c00066{word-spacing:0.050460pt;}
.ws4_c00066{word-spacing:0.057259pt;}
.ws3_c00066{word-spacing:0.062103pt;}
.ws16_c00066{word-spacing:0.071422pt;}
.ws9_c00066{word-spacing:0.074918pt;}
.ws8_c00066{word-spacing:0.080252pt;}
.ws6_c00066{word-spacing:0.156442pt;}
.ws2_c00066{word-spacing:0.189730pt;}
.ws10_c00066{word-spacing:59.145259pt;}
.wsf_c00066{word-spacing:60.306939pt;}
.ws11_c00066{word-spacing:70.083570pt;}
._9_c00066{margin-left:-1704.644143pt;}
._4_c00066{margin-left:-3.400567pt;}
._2_c00066{margin-left:-1.147699pt;}
._0_c00066{width:0.938650pt;}
._6_c00066{width:16.046428pt;}
._8_c00066{width:17.693578pt;}
._3_c00066{width:21.232435pt;}
._5_c00066{width:26.571147pt;}
._1_c00066{width:63.761067pt;}
._7_c00066{width:156.585505pt;}
.fs4_c00066{font-size:27.569600pt;}
.fs3_c00066{font-size:33.083200pt;}
.fs0_c00066{font-size:39.110400pt;}
.fs2_c00066{font-size:53.133867pt;}
.fs1_c00066{font-size:63.761067pt;}
.y0_c00066{bottom:0.000000pt;}
.y2e_c00066{bottom:39.333333pt;}
.y2d_c00066{bottom:77.317333pt;}
.y2c_c00066{bottom:91.929333pt;}
.y2b_c00066{bottom:120.821333pt;}
.y2a_c00066{bottom:137.169333pt;}
.y29_c00066{bottom:166.393333pt;}
.y28_c00066{bottom:195.617333pt;}
.y27_c00066{bottom:210.229333pt;}
.y26_c00066{bottom:239.453333pt;}
.y25_c00066{bottom:254.065333pt;}
.y24_c00066{bottom:268.676000pt;}
.y23_c00066{bottom:282.956000pt;}
.y22_c00066{bottom:324.949333pt;}
.y21_c00066{bottom:351.229333pt;}
.y20_c00066{bottom:380.025333pt;}
.y1f_c00066{bottom:400.992000pt;}
.y1e_c00066{bottom:421.960000pt;}
.y1d_c00066{bottom:437.900000pt;}
.y1c_c00066{bottom:458.868000pt;}
.y1b_c00066{bottom:474.808000pt;}
.y1a_c00066{bottom:490.749333pt;}
.y19_c00066{bottom:519.544000pt;}
.y18_c00066{bottom:555.880000pt;}
.y17_c00066{bottom:579.646667pt;}
.y16_c00066{bottom:603.414667pt;}
.y15_c00066{bottom:636.093333pt;}
.y14_c00066{bottom:694.916000pt;}
.y13_c00066{bottom:709.528000pt;}
.y12_c00066{bottom:724.140000pt;}
.y11_c00066{bottom:738.752000pt;}
.y10_c00066{bottom:753.364000pt;}
.yf_c00066{bottom:782.588000pt;}
.ye_c00066{bottom:797.198667pt;}
.yd_c00066{bottom:811.810667pt;}
.yc_c00066{bottom:826.422667pt;}
.yb_c00066{bottom:855.646667pt;}
.ya_c00066{bottom:870.258667pt;}
.y9_c00066{bottom:884.870667pt;}
.y8_c00066{bottom:914.094667pt;}
.y7_c00066{bottom:928.706667pt;}
.y6_c00066{bottom:957.929333pt;}
.y5_c00066{bottom:972.541333pt;}
.y4_c00066{bottom:987.153333pt;}
.y3_c00066{bottom:1001.765333pt;}
.y2_c00066{bottom:1016.377333pt;}
.y1_c00066{bottom:1030.989333pt;}
.h3_c00066{height:31.280681pt;}
.h2_c00066{height:32.006363pt;}
.h4_c00066{height:43.213067pt;}
.h5_c00066{height:46.518078pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w0_c00066{width:793.706667pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x6_c00066{left:113.385333pt;}
.x4_c00066{left:121.886667pt;}
.x2_c00066{left:133.704000pt;}
.x7_c00066{left:135.302667pt;}
.xa_c00066{left:145.522667pt;}
.x8_c00066{left:162.534667pt;}
.x9_c00066{left:175.818667pt;}
.x5_c00066{left:257.786667pt;}
.x1_c00066{left:275.513333pt;}
.x3_c00066{left:299.148000pt;}
.xb_c00066{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bff52d2db6aa71340d47f24.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.048828;font-style:normal;font-weight:normal;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_87d901832e666d7a0b630b20.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.083496;font-style:normal;font-weight:normal;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_96621c8ad90c16f81ecc55eb.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.014648;font-style:normal;font-weight:normal;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_7c767d24094901e948c58c98.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_345e5a34c7c0026feb5a1b63.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls3_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.087998px;}
.ls1_c00067{letter-spacing:0.098482px;}
.ls2_c00067{letter-spacing:0.104482px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:-26.575517px;}
.ws2_c00067{word-spacing:-26.487518px;}
.wsc_c00067{word-spacing:-19.666172px;}
.wsd_c00067{word-spacing:-18.769538px;}
.wsa_c00067{word-spacing:-17.932800px;}
.wsb_c00067{word-spacing:-16.737168px;}
.wse_c00067{word-spacing:-15.720983px;}
.ws1_c00067{word-spacing:0.000000px;}
.ws3_c00067{word-spacing:0.043999px;}
.ws7_c00067{word-spacing:0.053383px;}
.ws9_c00067{word-spacing:0.056767px;}
.ws8_c00067{word-spacing:0.063317px;}
.ws5_c00067{word-spacing:0.069866px;}
.ws4_c00067{word-spacing:0.080350px;}
.wsf_c00067{word-spacing:0.175997px;}
.ws6_c00067{word-spacing:0.213446px;}
._3_c00067{margin-left:-9.181594px;}
._4_c00067{margin-left:-7.651277px;}
._0_c00067{width:1.015757px;}
._5_c00067{width:19.247743px;}
._2_c00067{width:23.886490px;}
._6_c00067{width:28.991166px;}
._1_c00067{width:71.731200px;}
.fc5_c00067{color:rgb(0,0,207);}
.fc4_c00067{color:rgb(143,89,3);}
.fc3_c00067{color:rgb(79,153,5);}
.fc2_c00067{color:rgb(207,92,0);}
.fc1_c00067{color:rgb(0,0,0);}
.fc0_c00067{color:rgb(33,74,135);}
.fs0_c00067{font-size:43.999200px;}
.fs2_c00067{font-size:59.775600px;}
.fs1_c00067{font-size:71.731200px;}
.y0_c00067{bottom:0.000000px;}
.y36_c00067{bottom:44.250000px;}
.y35_c00067{bottom:82.051500px;}
.y34_c00067{bottom:98.490000px;}
.y33_c00067{bottom:131.365500px;}
.y32_c00067{bottom:164.242500px;}
.y31_c00067{bottom:180.681000px;}
.y30_c00067{bottom:213.558000px;}
.y2f_c00067{bottom:229.996500px;}
.y2e_c00067{bottom:246.435000px;}
.y2d_c00067{bottom:262.498500px;}
.y2c_c00067{bottom:309.087000px;}
.y2b_c00067{bottom:335.715000px;}
.y2a_c00067{bottom:353.649000px;}
.y29_c00067{bottom:380.277000px;}
.y28_c00067{bottom:398.211000px;}
.y27_c00067{bottom:416.143500px;}
.y26_c00067{bottom:452.799000px;}
.y25_c00067{bottom:518.767500px;}
.y24_c00067{bottom:535.206000px;}
.y23_c00067{bottom:551.643000px;}
.y22_c00067{bottom:568.081500px;}
.y21_c00067{bottom:584.520000px;}
.y20_c00067{bottom:617.397000px;}
.y1f_c00067{bottom:633.835500px;}
.y1e_c00067{bottom:650.274000px;}
.y1d_c00067{bottom:683.151000px;}
.y1c_c00067{bottom:699.589500px;}
.y1b_c00067{bottom:732.465000px;}
.y1a_c00067{bottom:748.903500px;}
.y19_c00067{bottom:765.342000px;}
.y18_c00067{bottom:781.780500px;}
.y17_c00067{bottom:798.219000px;}
.y16_c00067{bottom:814.657500px;}
.y15_c00067{bottom:831.096000px;}
.y14_c00067{bottom:847.534500px;}
.y13_c00067{bottom:863.973000px;}
.y12_c00067{bottom:880.411500px;}
.y11_c00067{bottom:896.848500px;}
.y10_c00067{bottom:913.287000px;}
.yf_c00067{bottom:929.725500px;}
.ye_c00067{bottom:946.164000px;}
.yd_c00067{bottom:962.602500px;}
.yc_c00067{bottom:979.041000px;}
.yb_c00067{bottom:995.479500px;}
.ya_c00067{bottom:1011.918000px;}
.y9_c00067{bottom:1028.356500px;}
.y8_c00067{bottom:1044.795000px;}
.y7_c00067{bottom:1061.232000px;}
.y6_c00067{bottom:1077.670500px;}
.y5_c00067{bottom:1094.109000px;}
.y4_c00067{bottom:1110.547500px;}
.y3_c00067{bottom:1126.986000px;}
.y2_c00067{bottom:1143.424500px;}
.y1_c00067{bottom:1159.863000px;}
.h3_c00067{height:35.190766px;}
.h2_c00067{height:36.007158px;}
.h4_c00067{height:48.614700px;}
.h5_c00067{height:52.332837px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w0_c00067{width:892.920000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x6_c00067{left:127.558500px;}
.x3_c00067{left:137.122500px;}
.x1_c00067{left:150.417000px;}
.x5_c00067{left:290.010000px;}
.x2_c00067{left:323.247000px;}
.x4_c00067{left:336.541500px;}
.x7_c00067{left:438.984000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls3_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.078221pt;}
.ls1_c00067{letter-spacing:0.087539pt;}
.ls2_c00067{letter-spacing:0.092873pt;}
.ws0_c00067{word-spacing:-23.622682pt;}
.ws2_c00067{word-spacing:-23.544461pt;}
.wsc_c00067{word-spacing:-17.481042pt;}
.wsd_c00067{word-spacing:-16.684034pt;}
.wsa_c00067{word-spacing:-15.940267pt;}
.wsb_c00067{word-spacing:-14.877483pt;}
.wse_c00067{word-spacing:-13.974207pt;}
.ws1_c00067{word-spacing:0.000000pt;}
.ws3_c00067{word-spacing:0.039110pt;}
.ws7_c00067{word-spacing:0.047452pt;}
.ws9_c00067{word-spacing:0.050460pt;}
.ws8_c00067{word-spacing:0.056282pt;}
.ws5_c00067{word-spacing:0.062103pt;}
.ws4_c00067{word-spacing:0.071422pt;}
.wsf_c00067{word-spacing:0.156442pt;}
.ws6_c00067{word-spacing:0.189730pt;}
._3_c00067{margin-left:-8.161417pt;}
._4_c00067{margin-left:-6.801135pt;}
._0_c00067{width:0.902895pt;}
._5_c00067{width:17.109105pt;}
._2_c00067{width:21.232435pt;}
._6_c00067{width:25.769925pt;}
._1_c00067{width:63.761067pt;}
.fs0_c00067{font-size:39.110400pt;}
.fs2_c00067{font-size:53.133867pt;}
.fs1_c00067{font-size:63.761067pt;}
.y0_c00067{bottom:0.000000pt;}
.y36_c00067{bottom:39.333333pt;}
.y35_c00067{bottom:72.934667pt;}
.y34_c00067{bottom:87.546667pt;}
.y33_c00067{bottom:116.769333pt;}
.y32_c00067{bottom:145.993333pt;}
.y31_c00067{bottom:160.605333pt;}
.y30_c00067{bottom:189.829333pt;}
.y2f_c00067{bottom:204.441333pt;}
.y2e_c00067{bottom:219.053333pt;}
.y2d_c00067{bottom:233.332000pt;}
.y2c_c00067{bottom:274.744000pt;}
.y2b_c00067{bottom:298.413333pt;}
.y2a_c00067{bottom:314.354667pt;}
.y29_c00067{bottom:338.024000pt;}
.y28_c00067{bottom:353.965333pt;}
.y27_c00067{bottom:369.905333pt;}
.y26_c00067{bottom:402.488000pt;}
.y25_c00067{bottom:461.126667pt;}
.y24_c00067{bottom:475.738667pt;}
.y23_c00067{bottom:490.349333pt;}
.y22_c00067{bottom:504.961333pt;}
.y21_c00067{bottom:519.573333pt;}
.y20_c00067{bottom:548.797333pt;}
.y1f_c00067{bottom:563.409333pt;}
.y1e_c00067{bottom:578.021333pt;}
.y1d_c00067{bottom:607.245333pt;}
.y1c_c00067{bottom:621.857333pt;}
.y1b_c00067{bottom:651.080000pt;}
.y1a_c00067{bottom:665.692000pt;}
.y19_c00067{bottom:680.304000pt;}
.y18_c00067{bottom:694.916000pt;}
.y17_c00067{bottom:709.528000pt;}
.y16_c00067{bottom:724.140000pt;}
.y15_c00067{bottom:738.752000pt;}
.y14_c00067{bottom:753.364000pt;}
.y13_c00067{bottom:767.976000pt;}
.y12_c00067{bottom:782.588000pt;}
.y11_c00067{bottom:797.198667pt;}
.y10_c00067{bottom:811.810667pt;}
.yf_c00067{bottom:826.422667pt;}
.ye_c00067{bottom:841.034667pt;}
.yd_c00067{bottom:855.646667pt;}
.yc_c00067{bottom:870.258667pt;}
.yb_c00067{bottom:884.870667pt;}
.ya_c00067{bottom:899.482667pt;}
.y9_c00067{bottom:914.094667pt;}
.y8_c00067{bottom:928.706667pt;}
.y7_c00067{bottom:943.317333pt;}
.y6_c00067{bottom:957.929333pt;}
.y5_c00067{bottom:972.541333pt;}
.y4_c00067{bottom:987.153333pt;}
.y3_c00067{bottom:1001.765333pt;}
.y2_c00067{bottom:1016.377333pt;}
.y1_c00067{bottom:1030.989333pt;}
.h3_c00067{height:31.280681pt;}
.h2_c00067{height:32.006363pt;}
.h4_c00067{height:43.213067pt;}
.h5_c00067{height:46.518078pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w0_c00067{width:793.706667pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x6_c00067{left:113.385333pt;}
.x3_c00067{left:121.886667pt;}
.x1_c00067{left:133.704000pt;}
.x5_c00067{left:257.786667pt;}
.x2_c00067{left:287.330667pt;}
.x4_c00067{left:299.148000pt;}
.x7_c00067{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c50b67a2896c818fc7a5d07b.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.014648;font-style:normal;font-weight:normal;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_9cdde166d124c236bb814a18.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_1fa801f6f270285261aaf75a.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_4e9710e4fbc1e526ee373a15.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_a85cc4cfa961e6cf0381d695.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:1.102051;font-style: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;}
.ls4_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.087998px;}
.ls2_c00068{letter-spacing:0.098482px;}
.ls1_c00068{letter-spacing:0.104482px;}
.ls3_c00068{letter-spacing:0.146482px;}
.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;}
}
.ws2_c00068{word-spacing:-26.575517px;}
.ws3_c00068{word-spacing:-26.487518px;}
.wsd_c00068{word-spacing:-21.605377px;}
.ws13_c00068{word-spacing:-20.951680px;}
.ws12_c00068{word-spacing:-20.921460px;}
.ws14_c00068{word-spacing:-20.893205px;}
.ws11_c00068{word-spacing:-20.682358px;}
.ws6_c00068{word-spacing:-18.769538px;}
.ws15_c00068{word-spacing:-18.750280px;}
.ws16_c00068{word-spacing:-18.709763px;}
.ws4_c00068{word-spacing:-17.932800px;}
.ws5_c00068{word-spacing:-17.633802px;}
.wsa_c00068{word-spacing:-16.438290px;}
.ws10_c00068{word-spacing:-14.884124px;}
.wsf_c00068{word-spacing:-9.265218px;}
.wse_c00068{word-spacing:-8.607686px;}
.ws0_c00068{word-spacing:0.000000px;}
.wsb_c00068{word-spacing:0.043999px;}
.ws1_c00068{word-spacing:0.175997px;}
.wsc_c00068{word-spacing:0.213446px;}
.ws9_c00068{word-spacing:58.878966px;}
.ws7_c00068{word-spacing:58.938742px;}
.ws8_c00068{word-spacing:66.163601px;}
._7_c00068{margin-left:-4.648169px;}
._8_c00068{margin-left:-2.271473px;}
._a_c00068{margin-left:-1.051086px;}
._0_c00068{width:1.042723px;}
._9_c00068{width:13.795308px;}
._3_c00068{width:15.063451px;}
._4_c00068{width:19.905275px;}
._2_c00068{width:23.886490px;}
._5_c00068{width:26.958796px;}
._1_c00068{width:71.731200px;}
._6_c00068{width:86.077200px;}
.fc5_c00068{color:rgb(79,153,5);}
.fc4_c00068{color:rgb(0,0,207);}
.fc6_c00068{color:rgb(6,69,173);}
.fc3_c00068{color:rgb(207,92,0);}
.fc2_c00068{color:rgb(33,74,135);}
.fc1_c00068{color:rgb(0,0,0);}
.fc0_c00068{color:rgb(143,89,3);}
.fs0_c00068{font-size:43.999200px;}
.fs2_c00068{font-size:59.775600px;}
.fs1_c00068{font-size:71.731200px;}
.fs3_c00068{font-size:86.077200px;}
.y0_c00068{bottom:0.000000px;}
.y2e_c00068{bottom:44.250000px;}
.y2d_c00068{bottom:82.051500px;}
.y2c_c00068{bottom:99.984000px;}
.y2b_c00068{bottom:117.916500px;}
.y2a_c00068{bottom:144.426000px;}
.y29_c00068{bottom:162.358500px;}
.y28_c00068{bottom:180.291000px;}
.y27_c00068{bottom:198.223500px;}
.y26_c00068{bottom:240.106500px;}
.y25_c00068{bottom:313.495500px;}
.y24_c00068{bottom:329.934000px;}
.y23_c00068{bottom:346.372500px;}
.y22_c00068{bottom:379.249500px;}
.y21_c00068{bottom:395.688000px;}
.y20_c00068{bottom:412.126500px;}
.y1f_c00068{bottom:461.440500px;}
.y1e_c00068{bottom:494.317500px;}
.y1d_c00068{bottom:510.756000px;}
.y1c_c00068{bottom:543.633000px;}
.y1b_c00068{bottom:560.071500px;}
.y1a_c00068{bottom:576.510000px;}
.y19_c00068{bottom:592.575000px;}
.y18_c00068{bottom:638.440500px;}
.y17_c00068{bottom:656.374500px;}
.y16_c00068{bottom:682.882500px;}
.y15_c00068{bottom:700.816500px;}
.y14_c00068{bottom:727.324500px;}
.y13_c00068{bottom:745.258500px;}
.y12_c00068{bottom:781.792500px;}
.y11_c00068{bottom:847.534500px;}
.y10_c00068{bottom:863.973000px;}
.yf_c00068{bottom:880.411500px;}
.ye_c00068{bottom:896.848500px;}
.yd_c00068{bottom:913.287000px;}
.yc_c00068{bottom:929.725500px;}
.yb_c00068{bottom:946.164000px;}
.ya_c00068{bottom:979.041000px;}
.y9_c00068{bottom:995.479500px;}
.y8_c00068{bottom:1011.918000px;}
.y7_c00068{bottom:1028.356500px;}
.y6_c00068{bottom:1044.795000px;}
.y5_c00068{bottom:1061.232000px;}
.y4_c00068{bottom:1094.109000px;}
.y3_c00068{bottom:1110.547500px;}
.y2_c00068{bottom:1126.986000px;}
.y1_c00068{bottom:1159.863000px;}
.h2_c00068{height:35.190766px;}
.h3_c00068{height:36.007158px;}
.h4_c00068{height:48.614700px;}
.h5_c00068{height:52.332837px;}
.h6_c00068{height:58.337477px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w0_c00068{width:892.920000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x4_c00068{left:127.558500px;}
.x1_c00068{left:137.122500px;}
.x3_c00068{left:216.891000px;}
.x2_c00068{left:290.010000px;}
.x5_c00068{left:438.984000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls4_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.078221pt;}
.ls2_c00068{letter-spacing:0.087539pt;}
.ls1_c00068{letter-spacing:0.092873pt;}
.ls3_c00068{letter-spacing:0.130206pt;}
.ws2_c00068{word-spacing:-23.622682pt;}
.ws3_c00068{word-spacing:-23.544461pt;}
.wsd_c00068{word-spacing:-19.204780pt;}
.ws13_c00068{word-spacing:-18.623715pt;}
.ws12_c00068{word-spacing:-18.596853pt;}
.ws14_c00068{word-spacing:-18.571738pt;}
.ws11_c00068{word-spacing:-18.384318pt;}
.ws6_c00068{word-spacing:-16.684034pt;}
.ws15_c00068{word-spacing:-16.666915pt;}
.ws16_c00068{word-spacing:-16.630900pt;}
.ws4_c00068{word-spacing:-15.940267pt;}
.ws5_c00068{word-spacing:-15.674491pt;}
.wsa_c00068{word-spacing:-14.611813pt;}
.ws10_c00068{word-spacing:-13.230333pt;}
.wsf_c00068{word-spacing:-8.235749pt;}
.wse_c00068{word-spacing:-7.651277pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.wsb_c00068{word-spacing:0.039110pt;}
.ws1_c00068{word-spacing:0.156442pt;}
.wsc_c00068{word-spacing:0.189730pt;}
.ws9_c00068{word-spacing:52.336859pt;}
.ws7_c00068{word-spacing:52.389993pt;}
.ws8_c00068{word-spacing:58.812090pt;}
._7_c00068{margin-left:-4.131706pt;}
._8_c00068{margin-left:-2.019087pt;}
._a_c00068{margin-left:-0.934299pt;}
._0_c00068{width:0.926865pt;}
._9_c00068{width:12.262496pt;}
._3_c00068{width:13.389734pt;}
._4_c00068{width:17.693578pt;}
._2_c00068{width:21.232435pt;}
._5_c00068{width:23.963374pt;}
._1_c00068{width:63.761067pt;}
._6_c00068{width:76.513067pt;}
.fs0_c00068{font-size:39.110400pt;}
.fs2_c00068{font-size:53.133867pt;}
.fs1_c00068{font-size:63.761067pt;}
.fs3_c00068{font-size:76.513067pt;}
.y0_c00068{bottom:0.000000pt;}
.y2e_c00068{bottom:39.333333pt;}
.y2d_c00068{bottom:72.934667pt;}
.y2c_c00068{bottom:88.874667pt;}
.y2b_c00068{bottom:104.814667pt;}
.y2a_c00068{bottom:128.378667pt;}
.y29_c00068{bottom:144.318667pt;}
.y28_c00068{bottom:160.258667pt;}
.y27_c00068{bottom:176.198667pt;}
.y26_c00068{bottom:213.428000pt;}
.y25_c00068{bottom:278.662667pt;}
.y24_c00068{bottom:293.274667pt;}
.y23_c00068{bottom:307.886667pt;}
.y22_c00068{bottom:337.110667pt;}
.y21_c00068{bottom:351.722667pt;}
.y20_c00068{bottom:366.334667pt;}
.y1f_c00068{bottom:410.169333pt;}
.y1e_c00068{bottom:439.393333pt;}
.y1d_c00068{bottom:454.005333pt;}
.y1c_c00068{bottom:483.229333pt;}
.y1b_c00068{bottom:497.841333pt;}
.y1a_c00068{bottom:512.453333pt;}
.y19_c00068{bottom:526.733333pt;}
.y18_c00068{bottom:567.502667pt;}
.y17_c00068{bottom:583.444000pt;}
.y16_c00068{bottom:607.006667pt;}
.y15_c00068{bottom:622.948000pt;}
.y14_c00068{bottom:646.510667pt;}
.y13_c00068{bottom:662.452000pt;}
.y12_c00068{bottom:694.926667pt;}
.y11_c00068{bottom:753.364000pt;}
.y10_c00068{bottom:767.976000pt;}
.yf_c00068{bottom:782.588000pt;}
.ye_c00068{bottom:797.198667pt;}
.yd_c00068{bottom:811.810667pt;}
.yc_c00068{bottom:826.422667pt;}
.yb_c00068{bottom:841.034667pt;}
.ya_c00068{bottom:870.258667pt;}
.y9_c00068{bottom:884.870667pt;}
.y8_c00068{bottom:899.482667pt;}
.y7_c00068{bottom:914.094667pt;}
.y6_c00068{bottom:928.706667pt;}
.y5_c00068{bottom:943.317333pt;}
.y4_c00068{bottom:972.541333pt;}
.y3_c00068{bottom:987.153333pt;}
.y2_c00068{bottom:1001.765333pt;}
.y1_c00068{bottom:1030.989333pt;}
.h2_c00068{height:31.280681pt;}
.h3_c00068{height:32.006363pt;}
.h4_c00068{height:43.213067pt;}
.h5_c00068{height:46.518078pt;}
.h6_c00068{height:51.855535pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w0_c00068{width:793.706667pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x4_c00068{left:113.385333pt;}
.x1_c00068{left:121.886667pt;}
.x3_c00068{left:192.792000pt;}
.x2_c00068{left:257.786667pt;}
.x5_c00068{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45039ef140a67c71406912e6.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.102051;font-style:normal;font-weight:normal;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_c77da381cb4a1b6e319f0dfb.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.083496;font-style:normal;font-weight:normal;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_cd1b43ec5db9f1ca3c19f3b8.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.014648;font-style:normal;font-weight:normal;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_963a5e74975e3e1c0047b44f.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_e1b402793670e58f4e17c05c.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:0.893555;font-style: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;}
.ls4_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.087998px;}
.ls2_c00069{letter-spacing:0.098482px;}
.ls1_c00069{letter-spacing:0.104482px;}
.ls3_c00069{letter-spacing:26.690482px;}
.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;}
}
.ws17_c00069{word-spacing:-33.713438px;}
.ws4_c00069{word-spacing:-26.575517px;}
.wsa_c00069{word-spacing:-26.487518px;}
.ws12_c00069{word-spacing:-21.519300px;}
.ws0_c00069{word-spacing:-20.921460px;}
.ws5_c00069{word-spacing:-19.606397px;}
.ws2_c00069{word-spacing:-19.008641px;}
.ws7_c00069{word-spacing:-18.982513px;}
.ws3_c00069{word-spacing:-18.769538px;}
.ws16_c00069{word-spacing:-18.732280px;}
.ws15_c00069{word-spacing:-18.709763px;}
.ws1_c00069{word-spacing:-18.410885px;}
.ws6_c00069{word-spacing:-18.171782px;}
.ws14_c00069{word-spacing:-16.019861px;}
.ws13_c00069{word-spacing:-15.900310px;}
.ws18_c00069{word-spacing:-14.226593px;}
.ws8_c00069{word-spacing:-11.825100px;}
.wsd_c00069{word-spacing:0.000000px;}
.ws10_c00069{word-spacing:0.037450px;}
.wsb_c00069{word-spacing:0.043999px;}
.ws11_c00069{word-spacing:0.053933px;}
.wse_c00069{word-spacing:0.080899px;}
.ws9_c00069{word-spacing:0.175997px;}
.wsc_c00069{word-spacing:0.213446px;}
.wsf_c00069{word-spacing:0.219446px;}
._5_c00069{margin-left:-5.207675px;}
._2_c00069{margin-left:-3.825638px;}
._0_c00069{margin-left:-1.075961px;}
._3_c00069{width:1.041538px;}
._6_c00069{width:18.836512px;}
._1_c00069{width:19.965050px;}
._7_c00069{width:33.474336px;}
._4_c00069{width:86.077200px;}
.fc5_c00069{color:rgb(0,0,207);}
.fc4_c00069{color:rgb(79,153,5);}
.fc6_c00069{color:rgb(6,69,173);}
.fc3_c00069{color:rgb(207,92,0);}
.fc2_c00069{color:rgb(33,74,135);}
.fc1_c00069{color:rgb(143,89,3);}
.fc0_c00069{color:rgb(0,0,0);}
.fs1_c00069{font-size:43.999200px;}
.fs0_c00069{font-size:59.775600px;}
.fs2_c00069{font-size:86.077200px;}
.y0_c00069{bottom:0.000000px;}
.y30_c00069{bottom:44.250000px;}
.y2f_c00069{bottom:82.051500px;}
.y2e_c00069{bottom:99.984000px;}
.y2d_c00069{bottom:117.916500px;}
.y2c_c00069{bottom:135.849000px;}
.y2b_c00069{bottom:179.377500px;}
.y2a_c00069{bottom:256.317000px;}
.y29_c00069{bottom:272.755500px;}
.y28_c00069{bottom:305.632500px;}
.y27_c00069{bottom:322.069500px;}
.y26_c00069{bottom:338.508000px;}
.y25_c00069{bottom:354.946500px;}
.y24_c00069{bottom:387.823500px;}
.y23_c00069{bottom:404.262000px;}
.y22_c00069{bottom:437.139000px;}
.y21_c00069{bottom:453.577500px;}
.y20_c00069{bottom:486.453000px;}
.y1f_c00069{bottom:519.330000px;}
.y1e_c00069{bottom:535.768500px;}
.y1d_c00069{bottom:552.207000px;}
.y1c_c00069{bottom:568.645500px;}
.y1b_c00069{bottom:601.522500px;}
.y1a_c00069{bottom:617.961000px;}
.y19_c00069{bottom:634.399500px;}
.y18_c00069{bottom:650.838000px;}
.y17_c00069{bottom:683.713500px;}
.y16_c00069{bottom:700.152000px;}
.y15_c00069{bottom:716.590500px;}
.y14_c00069{bottom:733.029000px;}
.y13_c00069{bottom:749.467500px;}
.y12_c00069{bottom:765.906000px;}
.y11_c00069{bottom:798.783000px;}
.y10_c00069{bottom:815.221500px;}
.yf_c00069{bottom:831.658500px;}
.ye_c00069{bottom:864.535500px;}
.yd_c00069{bottom:880.974000px;}
.yc_c00069{bottom:913.851000px;}
.yb_c00069{bottom:930.289500px;}
.ya_c00069{bottom:946.354500px;}
.y9_c00069{bottom:996.732000px;}
.y8_c00069{bottom:1014.664500px;}
.y7_c00069{bottom:1032.597000px;}
.y6_c00069{bottom:1050.529500px;}
.y5_c00069{bottom:1078.297500px;}
.y4_c00069{bottom:1106.064000px;}
.y3_c00069{bottom:1123.998000px;}
.y2_c00069{bottom:1141.930500px;}
.y1_c00069{bottom:1159.863000px;}
.h3_c00069{height:35.190766px;}
.h4_c00069{height:36.007158px;}
.h2_c00069{height:52.332837px;}
.h5_c00069{height:58.337477px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w0_c00069{width:892.920000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:127.558500px;}
.x2_c00069{left:137.122500px;}
.x3_c00069{left:150.417000px;}
.x4_c00069{left:196.948500px;}
.x5_c00069{left:236.832000px;}
.x6_c00069{left:438.984000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls4_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.078221pt;}
.ls2_c00069{letter-spacing:0.087539pt;}
.ls1_c00069{letter-spacing:0.092873pt;}
.ls3_c00069{letter-spacing:23.724873pt;}
.ws17_c00069{word-spacing:-29.967501pt;}
.ws4_c00069{word-spacing:-23.622682pt;}
.wsa_c00069{word-spacing:-23.544461pt;}
.ws12_c00069{word-spacing:-19.128267pt;}
.ws0_c00069{word-spacing:-18.596853pt;}
.ws5_c00069{word-spacing:-17.427908pt;}
.ws2_c00069{word-spacing:-16.896570pt;}
.ws7_c00069{word-spacing:-16.873345pt;}
.ws3_c00069{word-spacing:-16.684034pt;}
.ws16_c00069{word-spacing:-16.650915pt;}
.ws15_c00069{word-spacing:-16.630900pt;}
.ws1_c00069{word-spacing:-16.365231pt;}
.ws6_c00069{word-spacing:-16.152695pt;}
.ws14_c00069{word-spacing:-14.239876pt;}
.ws13_c00069{word-spacing:-14.133609pt;}
.ws18_c00069{word-spacing:-12.645860pt;}
.ws8_c00069{word-spacing:-10.511200pt;}
.wsd_c00069{word-spacing:0.000000pt;}
.ws10_c00069{word-spacing:0.033289pt;}
.wsb_c00069{word-spacing:0.039110pt;}
.ws11_c00069{word-spacing:0.047940pt;}
.wse_c00069{word-spacing:0.071910pt;}
.ws9_c00069{word-spacing:0.156442pt;}
.wsc_c00069{word-spacing:0.189730pt;}
.wsf_c00069{word-spacing:0.195063pt;}
._5_c00069{margin-left:-4.629044pt;}
._2_c00069{margin-left:-3.400567pt;}
._0_c00069{margin-left:-0.956410pt;}
._3_c00069{width:0.925811pt;}
._6_c00069{width:16.743566pt;}
._1_c00069{width:17.746711pt;}
._7_c00069{width:29.754965pt;}
._4_c00069{width:76.513067pt;}
.fs1_c00069{font-size:39.110400pt;}
.fs0_c00069{font-size:53.133867pt;}
.fs2_c00069{font-size:76.513067pt;}
.y0_c00069{bottom:0.000000pt;}
.y30_c00069{bottom:39.333333pt;}
.y2f_c00069{bottom:72.934667pt;}
.y2e_c00069{bottom:88.874667pt;}
.y2d_c00069{bottom:104.814667pt;}
.y2c_c00069{bottom:120.754667pt;}
.y2b_c00069{bottom:159.446667pt;}
.y2a_c00069{bottom:227.837333pt;}
.y29_c00069{bottom:242.449333pt;}
.y28_c00069{bottom:271.673333pt;}
.y27_c00069{bottom:286.284000pt;}
.y26_c00069{bottom:300.896000pt;}
.y25_c00069{bottom:315.508000pt;}
.y24_c00069{bottom:344.732000pt;}
.y23_c00069{bottom:359.344000pt;}
.y22_c00069{bottom:388.568000pt;}
.y21_c00069{bottom:403.180000pt;}
.y20_c00069{bottom:432.402667pt;}
.y1f_c00069{bottom:461.626667pt;}
.y1e_c00069{bottom:476.238667pt;}
.y1d_c00069{bottom:490.850667pt;}
.y1c_c00069{bottom:505.462667pt;}
.y1b_c00069{bottom:534.686667pt;}
.y1a_c00069{bottom:549.298667pt;}
.y19_c00069{bottom:563.910667pt;}
.y18_c00069{bottom:578.522667pt;}
.y17_c00069{bottom:607.745333pt;}
.y16_c00069{bottom:622.357333pt;}
.y15_c00069{bottom:636.969333pt;}
.y14_c00069{bottom:651.581333pt;}
.y13_c00069{bottom:666.193333pt;}
.y12_c00069{bottom:680.805333pt;}
.y11_c00069{bottom:710.029333pt;}
.y10_c00069{bottom:724.641333pt;}
.yf_c00069{bottom:739.252000pt;}
.ye_c00069{bottom:768.476000pt;}
.yd_c00069{bottom:783.088000pt;}
.yc_c00069{bottom:812.312000pt;}
.yb_c00069{bottom:826.924000pt;}
.ya_c00069{bottom:841.204000pt;}
.y9_c00069{bottom:885.984000pt;}
.y8_c00069{bottom:901.924000pt;}
.y7_c00069{bottom:917.864000pt;}
.y6_c00069{bottom:933.804000pt;}
.y5_c00069{bottom:958.486667pt;}
.y4_c00069{bottom:983.168000pt;}
.y3_c00069{bottom:999.109333pt;}
.y2_c00069{bottom:1015.049333pt;}
.y1_c00069{bottom:1030.989333pt;}
.h3_c00069{height:31.280681pt;}
.h4_c00069{height:32.006363pt;}
.h2_c00069{height:46.518078pt;}
.h5_c00069{height:51.855535pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w0_c00069{width:793.706667pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:113.385333pt;}
.x2_c00069{left:121.886667pt;}
.x3_c00069{left:133.704000pt;}
.x4_c00069{left:175.065333pt;}
.x5_c00069{left:210.517333pt;}
.x6_c00069{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2070bbe27c4cd63f64ea061d.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.102051;font-style:normal;font-weight:normal;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_f80836f1968fafe809d507f2.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_4a96e4b6ae6b8595985427d2.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_7501f6d24e8fc99a26c4fffc.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_2c96358c278c1f2829f97bb3.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00070;src:url('chunks/assets/font_c2b57fe212ead72e771843c8.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;line-height:0.893555;font-style: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);}
.v1_c00070{vertical-align:-12.258000px;}
.v0_c00070{vertical-align:0.000000px;}
.ls4_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.087998px;}
.ls2_c00070{letter-spacing:0.098482px;}
.ls1_c00070{letter-spacing:0.104482px;}
.ls3_c00070{letter-spacing:7.460482px;}
.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;}
}
.ws13_c00070{word-spacing:-33.713438px;}
.ws8_c00070{word-spacing:-26.575517px;}
.wsa_c00070{word-spacing:-26.487518px;}
.wsf_c00070{word-spacing:-21.399665px;}
.ws7_c00070{word-spacing:-20.801909px;}
.ws12_c00070{word-spacing:-20.282848px;}
.ws14_c00070{word-spacing:-20.204153px;}
.ws10_c00070{word-spacing:-20.144377px;}
.ws1_c00070{word-spacing:-18.995680px;}
.ws2_c00070{word-spacing:-18.963554px;}
.ws0_c00070{word-spacing:-18.948865px;}
.ws5_c00070{word-spacing:-18.769538px;}
.ws17_c00070{word-spacing:-17.927680px;}
.ws18_c00070{word-spacing:-17.898280px;}
.ws16_c00070{word-spacing:-17.872904px;}
.ws1a_c00070{word-spacing:-17.633802px;}
.ws11_c00070{word-spacing:-17.454475px;}
.ws1e_c00070{word-spacing:-17.394700px;}
.ws1d_c00070{word-spacing:-17.334924px;}
.ws6_c00070{word-spacing:-17.155597px;}
.ws1c_c00070{word-spacing:-16.737168px;}
.ws15_c00070{word-spacing:-16.617617px;}
.ws3_c00070{word-spacing:-16.506280px;}
.ws4_c00070{word-spacing:-16.498066px;}
.ws1f_c00070{word-spacing:-16.019861px;}
.ws20_c00070{word-spacing:-15.960085px;}
.ws1b_c00070{word-spacing:-15.780758px;}
.ws19_c00070{word-spacing:-14.884124px;}
.wsd_c00070{word-spacing:0.000000px;}
.wsb_c00070{word-spacing:0.043999px;}
.ws9_c00070{word-spacing:0.175997px;}
.wsc_c00070{word-spacing:0.213446px;}
.wse_c00070{word-spacing:43.038600px;}
._5_c00070{margin-left:-482.646754px;}
._6_c00070{margin-left:-5.618906px;}
._1_c00070{margin-left:-4.124516px;}
._2_c00070{margin-left:-1.016185px;}
._4_c00070{width:1.107139px;}
._8_c00070{width:18.410885px;}
._0_c00070{width:19.860062px;}
._9_c00070{width:22.579967px;}
._7_c00070{width:24.780916px;}
._3_c00070{width:26.839244px;}
._b_c00070{width:28.154308px;}
._a_c00070{width:31.621292px;}
.fc6_c00070{color:rgb(0,0,207);}
.fc5_c00070{color:rgb(79,153,5);}
.fc3_c00070{color:rgb(33,74,135);}
.fc2_c00070{color:rgb(143,89,3);}
.fc4_c00070{color:rgb(207,92,0);}
.fc1_c00070{color:rgb(6,69,173);}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:31.015800px;}
.fs2_c00070{font-size:37.218600px;}
.fs1_c00070{font-size:43.999200px;}
.fs0_c00070{font-size:59.775600px;}
.fs4_c00070{font-size:86.077200px;}
.y0_c00070{bottom:0.000000px;}
.y2e_c00070{bottom:44.250000px;}
.y2d_c00070{bottom:86.982000px;}
.y2c_c00070{bottom:103.420500px;}
.y2b_c00070{bottom:119.859000px;}
.y2a_c00070{bottom:152.736000px;}
.y29_c00070{bottom:169.174500px;}
.y28_c00070{bottom:185.613000px;}
.y27_c00070{bottom:202.051500px;}
.y26_c00070{bottom:234.927000px;}
.y25_c00070{bottom:284.242500px;}
.y24_c00070{bottom:300.681000px;}
.y23_c00070{bottom:333.558000px;}
.y22_c00070{bottom:349.623000px;}
.y21_c00070{bottom:396.811500px;}
.y20_c00070{bottom:414.745500px;}
.y1f_c00070{bottom:432.678000px;}
.y1e_c00070{bottom:459.408000px;}
.y1d_c00070{bottom:477.340500px;}
.y1c_c00070{bottom:495.273000px;}
.y1b_c00070{bottom:513.205500px;}
.y1a_c00070{bottom:531.138000px;}
.y19_c00070{bottom:557.868000px;}
.y18_c00070{bottom:575.800500px;}
.y17_c00070{bottom:593.733000px;}
.y16_c00070{bottom:611.667000px;}
.y15_c00070{bottom:629.599500px;}
.y14_c00070{bottom:647.532000px;}
.y13_c00070{bottom:665.464500px;}
.y12_c00070{bottom:683.397000px;}
.y11_c00070{bottom:725.500500px;}
.y10_c00070{bottom:798.934500px;}
.yf_c00070{bottom:817.326000px;}
.ye_c00070{bottom:833.764500px;}
.yd_c00070{bottom:866.641500px;}
.yc_c00070{bottom:899.517000px;}
.yb_c00070{bottom:915.955500px;}
.ya_c00070{bottom:948.832500px;}
.y9_c00070{bottom:965.271000px;}
.y8_c00070{bottom:998.148000px;}
.y7_c00070{bottom:1014.213000px;}
.y6_c00070{bottom:1061.401500px;}
.y5_c00070{bottom:1079.335500px;}
.y4_c00070{bottom:1097.268000px;}
.y3_c00070{bottom:1123.998000px;}
.y2_c00070{bottom:1141.930500px;}
.y1_c00070{bottom:1159.863000px;}
.h3_c00070{height:35.190766px;}
.h4_c00070{height:36.007158px;}
.h2_c00070{height:52.332837px;}
.h5_c00070{height:58.337477px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w0_c00070{width:892.920000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:127.558500px;}
.x2_c00070{left:137.122500px;}
.x3_c00070{left:163.713000px;}
.x4_c00070{left:438.984000px;}
@media print{
.v1_c00070{vertical-align:-10.896000pt;}
.v0_c00070{vertical-align:0.000000pt;}
.ls4_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.078221pt;}
.ls2_c00070{letter-spacing:0.087539pt;}
.ls1_c00070{letter-spacing:0.092873pt;}
.ls3_c00070{letter-spacing:6.631539pt;}
.ws13_c00070{word-spacing:-29.967501pt;}
.ws8_c00070{word-spacing:-23.622682pt;}
.wsa_c00070{word-spacing:-23.544461pt;}
.wsf_c00070{word-spacing:-19.021924pt;}
.ws7_c00070{word-spacing:-18.490586pt;}
.ws12_c00070{word-spacing:-18.029198pt;}
.ws14_c00070{word-spacing:-17.959247pt;}
.ws10_c00070{word-spacing:-17.906113pt;}
.ws1_c00070{word-spacing:-16.885049pt;}
.ws2_c00070{word-spacing:-16.856493pt;}
.ws0_c00070{word-spacing:-16.843436pt;}
.ws5_c00070{word-spacing:-16.684034pt;}
.ws17_c00070{word-spacing:-15.935715pt;}
.ws18_c00070{word-spacing:-15.909582pt;}
.ws16_c00070{word-spacing:-15.887026pt;}
.ws1a_c00070{word-spacing:-15.674491pt;}
.ws11_c00070{word-spacing:-15.515089pt;}
.ws1e_c00070{word-spacing:-15.461955pt;}
.ws1d_c00070{word-spacing:-15.408821pt;}
.ws6_c00070{word-spacing:-15.249420pt;}
.ws1c_c00070{word-spacing:-14.877483pt;}
.ws15_c00070{word-spacing:-14.771215pt;}
.ws3_c00070{word-spacing:-14.672249pt;}
.ws4_c00070{word-spacing:-14.664947pt;}
.ws1f_c00070{word-spacing:-14.239876pt;}
.ws20_c00070{word-spacing:-14.186742pt;}
.ws1b_c00070{word-spacing:-14.027341pt;}
.ws19_c00070{word-spacing:-13.230333pt;}
.wsd_c00070{word-spacing:0.000000pt;}
.wsb_c00070{word-spacing:0.039110pt;}
.ws9_c00070{word-spacing:0.156442pt;}
.wsc_c00070{word-spacing:0.189730pt;}
.wse_c00070{word-spacing:38.256533pt;}
._5_c00070{margin-left:-429.019337pt;}
._6_c00070{margin-left:-4.994583pt;}
._1_c00070{margin-left:-3.666237pt;}
._2_c00070{margin-left:-0.903276pt;}
._4_c00070{width:0.984124pt;}
._8_c00070{width:16.365231pt;}
._0_c00070{width:17.653389pt;}
._9_c00070{width:20.071082pt;}
._7_c00070{width:22.027481pt;}
._3_c00070{width:23.857106pt;}
._b_c00070{width:25.026051pt;}
._a_c00070{width:28.107815pt;}
.fs3_c00070{font-size:27.569600pt;}
.fs2_c00070{font-size:33.083200pt;}
.fs1_c00070{font-size:39.110400pt;}
.fs0_c00070{font-size:53.133867pt;}
.fs4_c00070{font-size:76.513067pt;}
.y0_c00070{bottom:0.000000pt;}
.y2e_c00070{bottom:39.333333pt;}
.y2d_c00070{bottom:77.317333pt;}
.y2c_c00070{bottom:91.929333pt;}
.y2b_c00070{bottom:106.541333pt;}
.y2a_c00070{bottom:135.765333pt;}
.y29_c00070{bottom:150.377333pt;}
.y28_c00070{bottom:164.989333pt;}
.y27_c00070{bottom:179.601333pt;}
.y26_c00070{bottom:208.824000pt;}
.y25_c00070{bottom:252.660000pt;}
.y24_c00070{bottom:267.272000pt;}
.y23_c00070{bottom:296.496000pt;}
.y22_c00070{bottom:310.776000pt;}
.y21_c00070{bottom:352.721333pt;}
.y20_c00070{bottom:368.662667pt;}
.y1f_c00070{bottom:384.602667pt;}
.y1e_c00070{bottom:408.362667pt;}
.y1d_c00070{bottom:424.302667pt;}
.y1c_c00070{bottom:440.242667pt;}
.y1b_c00070{bottom:456.182667pt;}
.y1a_c00070{bottom:472.122667pt;}
.y19_c00070{bottom:495.882667pt;}
.y18_c00070{bottom:511.822667pt;}
.y17_c00070{bottom:527.762667pt;}
.y16_c00070{bottom:543.704000pt;}
.y15_c00070{bottom:559.644000pt;}
.y14_c00070{bottom:575.584000pt;}
.y13_c00070{bottom:591.524000pt;}
.y12_c00070{bottom:607.464000pt;}
.y11_c00070{bottom:644.889333pt;}
.y10_c00070{bottom:710.164000pt;}
.yf_c00070{bottom:726.512000pt;}
.ye_c00070{bottom:741.124000pt;}
.yd_c00070{bottom:770.348000pt;}
.yc_c00070{bottom:799.570667pt;}
.yb_c00070{bottom:814.182667pt;}
.ya_c00070{bottom:843.406667pt;}
.y9_c00070{bottom:858.018667pt;}
.y8_c00070{bottom:887.242667pt;}
.y7_c00070{bottom:901.522667pt;}
.y6_c00070{bottom:943.468000pt;}
.y5_c00070{bottom:959.409333pt;}
.y4_c00070{bottom:975.349333pt;}
.y3_c00070{bottom:999.109333pt;}
.y2_c00070{bottom:1015.049333pt;}
.y1_c00070{bottom:1030.989333pt;}
.h3_c00070{height:31.280681pt;}
.h4_c00070{height:32.006363pt;}
.h2_c00070{height:46.518078pt;}
.h5_c00070{height:51.855535pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w0_c00070{width:793.706667pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:113.385333pt;}
.x2_c00070{left:121.886667pt;}
.x3_c00070{left:145.522667pt;}
.x4_c00070{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfe601ebaf29a91490d249f5.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.083496;font-style:normal;font-weight:normal;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_9e0295849936d53757be1de8.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.048828;font-style:normal;font-weight:normal;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_8cfdf5e0fd97daeaf99d0c3c.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:0.893555;font-style:normal;font-weight:normal;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_0796d737ef9a320c5a952dc9.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.102051;font-style:normal;font-weight:normal;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_a4d2fc7a53058208dd54a878.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.014648;font-style: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;}
.ls5_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.087998px;}
.ls2_c00071{letter-spacing:0.098482px;}
.ls1_c00071{letter-spacing:0.104482px;}
.ls3_c00071{letter-spacing:0.140482px;}
.ls4_c00071{letter-spacing:26.690482px;}
.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;}
}
.ws10_c00071{word-spacing:-33.713438px;}
.ws0_c00071{word-spacing:-26.575517px;}
.ws1_c00071{word-spacing:-26.487518px;}
.ws3_c00071{word-spacing:-23.252708px;}
.ws5_c00071{word-spacing:-22.535401px;}
.ws2_c00071{word-spacing:-21.519300px;}
.wsf_c00071{word-spacing:-19.666172px;}
.wsc_c00071{word-spacing:-18.769538px;}
.ws4_c00071{word-spacing:-18.709763px;}
.ws8_c00071{word-spacing:-18.112007px;}
.ws6_c00071{word-spacing:-17.813129px;}
.wsa_c00071{word-spacing:-16.807154px;}
.wsb_c00071{word-spacing:-16.796944px;}
.ws9_c00071{word-spacing:-16.783222px;}
.ws7_c00071{word-spacing:-13.449510px;}
.wse_c00071{word-spacing:-12.768605px;}
.wsd_c00071{word-spacing:-12.732203px;}
.ws14_c00071{word-spacing:0.000000px;}
.ws19_c00071{word-spacing:0.037450px;}
.ws12_c00071{word-spacing:0.043999px;}
.ws16_c00071{word-spacing:0.053383px;}
.ws17_c00071{word-spacing:0.073800px;}
.ws15_c00071{word-spacing:0.080350px;}
.ws11_c00071{word-spacing:0.175997px;}
.ws13_c00071{word-spacing:0.213446px;}
.ws18_c00071{word-spacing:0.219446px;}
._0_c00071{margin-left:-4.734246px;}
._2_c00071{margin-left:-3.407209px;}
._8_c00071{margin-left:-2.271473px;}
._3_c00071{margin-left:-1.199370px;}
._b_c00071{width:1.047451px;}
._5_c00071{width:18.709763px;}
._4_c00071{width:20.059504px;}
._7_c00071{width:21.698543px;}
._6_c00071{width:23.073382px;}
._9_c00071{width:26.540366px;}
._a_c00071{width:37.872185px;}
._1_c00071{width:85.991123px;}
.fc5_c00071{color:rgb(79,153,5);}
.fc4_c00071{color:rgb(0,0,207);}
.fc3_c00071{color:rgb(33,74,135);}
.fc6_c00071{color:rgb(6,69,173);}
.fc2_c00071{color:rgb(207,92,0);}
.fc1_c00071{color:rgb(143,89,3);}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:43.999200px;}
.fs2_c00071{font-size:59.775600px;}
.fs1_c00071{font-size:86.077200px;}
.y0_c00071{bottom:0.000000px;}
.y33_c00071{bottom:44.250000px;}
.y32_c00071{bottom:82.051500px;}
.y31_c00071{bottom:98.490000px;}
.y30_c00071{bottom:114.927000px;}
.y2f_c00071{bottom:131.365500px;}
.y2e_c00071{bottom:147.804000px;}
.y2d_c00071{bottom:180.681000px;}
.y2c_c00071{bottom:197.119500px;}
.y2b_c00071{bottom:213.558000px;}
.y2a_c00071{bottom:229.996500px;}
.y29_c00071{bottom:246.435000px;}
.y28_c00071{bottom:262.873500px;}
.y27_c00071{bottom:295.749000px;}
.y26_c00071{bottom:312.187500px;}
.y25_c00071{bottom:328.626000px;}
.y24_c00071{bottom:361.503000px;}
.y23_c00071{bottom:394.380000px;}
.y22_c00071{bottom:410.818500px;}
.y21_c00071{bottom:427.257000px;}
.y20_c00071{bottom:443.694000px;}
.y1f_c00071{bottom:460.132500px;}
.y1e_c00071{bottom:476.571000px;}
.y1d_c00071{bottom:493.009500px;}
.y1c_c00071{bottom:525.886500px;}
.y1b_c00071{bottom:542.325000px;}
.y1a_c00071{bottom:558.763500px;}
.y19_c00071{bottom:575.202000px;}
.y18_c00071{bottom:591.640500px;}
.y17_c00071{bottom:607.704000px;}
.y16_c00071{bottom:656.521500px;}
.y15_c00071{bottom:674.454000px;}
.y14_c00071{bottom:692.386500px;}
.y13_c00071{bottom:719.530500px;}
.y12_c00071{bottom:737.463000px;}
.y11_c00071{bottom:755.395500px;}
.y10_c00071{bottom:773.328000px;}
.yf_c00071{bottom:791.260500px;}
.ye_c00071{bottom:809.193000px;}
.yd_c00071{bottom:827.127000px;}
.yc_c00071{bottom:845.059500px;}
.yb_c00071{bottom:887.685000px;}
.ya_c00071{bottom:962.602500px;}
.y9_c00071{bottom:979.041000px;}
.y8_c00071{bottom:995.479500px;}
.y7_c00071{bottom:1028.356500px;}
.y6_c00071{bottom:1044.795000px;}
.y5_c00071{bottom:1077.670500px;}
.y4_c00071{bottom:1094.109000px;}
.y3_c00071{bottom:1110.547500px;}
.y2_c00071{bottom:1126.986000px;}
.y1_c00071{bottom:1159.863000px;}
.h5_c00071{height:35.190766px;}
.h2_c00071{height:36.007158px;}
.h4_c00071{height:52.332837px;}
.h3_c00071{height:58.337477px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w0_c00071{width:892.920000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x3_c00071{left:127.558500px;}
.x1_c00071{left:137.122500px;}
.x4_c00071{left:150.417000px;}
.x2_c00071{left:216.891000px;}
.x5_c00071{left:250.126500px;}
.x6_c00071{left:438.984000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls5_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.078221pt;}
.ls2_c00071{letter-spacing:0.087539pt;}
.ls1_c00071{letter-spacing:0.092873pt;}
.ls3_c00071{letter-spacing:0.124873pt;}
.ls4_c00071{letter-spacing:23.724873pt;}
.ws10_c00071{word-spacing:-29.967501pt;}
.ws0_c00071{word-spacing:-23.622682pt;}
.ws1_c00071{word-spacing:-23.544461pt;}
.ws3_c00071{word-spacing:-20.669074pt;}
.ws5_c00071{word-spacing:-20.031468pt;}
.ws2_c00071{word-spacing:-19.128267pt;}
.wsf_c00071{word-spacing:-17.481042pt;}
.wsc_c00071{word-spacing:-16.684034pt;}
.ws4_c00071{word-spacing:-16.630900pt;}
.ws8_c00071{word-spacing:-16.099562pt;}
.ws6_c00071{word-spacing:-15.833892pt;}
.wsa_c00071{word-spacing:-14.939693pt;}
.wsb_c00071{word-spacing:-14.930617pt;}
.ws9_c00071{word-spacing:-14.918419pt;}
.ws7_c00071{word-spacing:-11.955120pt;}
.wse_c00071{word-spacing:-11.349871pt;}
.wsd_c00071{word-spacing:-11.317514pt;}
.ws14_c00071{word-spacing:0.000000pt;}
.ws19_c00071{word-spacing:0.033289pt;}
.ws12_c00071{word-spacing:0.039110pt;}
.ws16_c00071{word-spacing:0.047452pt;}
.ws17_c00071{word-spacing:0.065600pt;}
.ws15_c00071{word-spacing:0.071422pt;}
.ws11_c00071{word-spacing:0.156442pt;}
.ws13_c00071{word-spacing:0.189730pt;}
.ws18_c00071{word-spacing:0.195063pt;}
._0_c00071{margin-left:-4.208219pt;}
._2_c00071{margin-left:-3.028630pt;}
._8_c00071{margin-left:-2.019087pt;}
._3_c00071{margin-left:-1.066107pt;}
._b_c00071{width:0.931068pt;}
._5_c00071{width:16.630900pt;}
._4_c00071{width:17.830670pt;}
._7_c00071{width:19.287594pt;}
._6_c00071{width:20.509673pt;}
._9_c00071{width:23.591437pt;}
._a_c00071{width:33.664164pt;}
._1_c00071{width:76.436554pt;}
.fs0_c00071{font-size:39.110400pt;}
.fs2_c00071{font-size:53.133867pt;}
.fs1_c00071{font-size:76.513067pt;}
.y0_c00071{bottom:0.000000pt;}
.y33_c00071{bottom:39.333333pt;}
.y32_c00071{bottom:72.934667pt;}
.y31_c00071{bottom:87.546667pt;}
.y30_c00071{bottom:102.157333pt;}
.y2f_c00071{bottom:116.769333pt;}
.y2e_c00071{bottom:131.381333pt;}
.y2d_c00071{bottom:160.605333pt;}
.y2c_c00071{bottom:175.217333pt;}
.y2b_c00071{bottom:189.829333pt;}
.y2a_c00071{bottom:204.441333pt;}
.y29_c00071{bottom:219.053333pt;}
.y28_c00071{bottom:233.665333pt;}
.y27_c00071{bottom:262.888000pt;}
.y26_c00071{bottom:277.500000pt;}
.y25_c00071{bottom:292.112000pt;}
.y24_c00071{bottom:321.336000pt;}
.y23_c00071{bottom:350.560000pt;}
.y22_c00071{bottom:365.172000pt;}
.y21_c00071{bottom:379.784000pt;}
.y20_c00071{bottom:394.394667pt;}
.y1f_c00071{bottom:409.006667pt;}
.y1e_c00071{bottom:423.618667pt;}
.y1d_c00071{bottom:438.230667pt;}
.y1c_c00071{bottom:467.454667pt;}
.y1b_c00071{bottom:482.066667pt;}
.y1a_c00071{bottom:496.678667pt;}
.y19_c00071{bottom:511.290667pt;}
.y18_c00071{bottom:525.902667pt;}
.y17_c00071{bottom:540.181333pt;}
.y16_c00071{bottom:583.574667pt;}
.y15_c00071{bottom:599.514667pt;}
.y14_c00071{bottom:615.454667pt;}
.y13_c00071{bottom:639.582667pt;}
.y12_c00071{bottom:655.522667pt;}
.y11_c00071{bottom:671.462667pt;}
.y10_c00071{bottom:687.402667pt;}
.yf_c00071{bottom:703.342667pt;}
.ye_c00071{bottom:719.282667pt;}
.yd_c00071{bottom:735.224000pt;}
.yc_c00071{bottom:751.164000pt;}
.yb_c00071{bottom:789.053333pt;}
.ya_c00071{bottom:855.646667pt;}
.y9_c00071{bottom:870.258667pt;}
.y8_c00071{bottom:884.870667pt;}
.y7_c00071{bottom:914.094667pt;}
.y6_c00071{bottom:928.706667pt;}
.y5_c00071{bottom:957.929333pt;}
.y4_c00071{bottom:972.541333pt;}
.y3_c00071{bottom:987.153333pt;}
.y2_c00071{bottom:1001.765333pt;}
.y1_c00071{bottom:1030.989333pt;}
.h5_c00071{height:31.280681pt;}
.h2_c00071{height:32.006363pt;}
.h4_c00071{height:46.518078pt;}
.h3_c00071{height:51.855535pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w0_c00071{width:793.706667pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x3_c00071{left:113.385333pt;}
.x1_c00071{left:121.886667pt;}
.x4_c00071{left:133.704000pt;}
.x2_c00071{left:192.792000pt;}
.x5_c00071{left:222.334667pt;}
.x6_c00071{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b01e0546f1ef15990a1082b.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.083496;font-style:normal;font-weight:normal;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_07ee36658f5fdd3286049f9d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.048828;font-style:normal;font-weight:normal;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_d83dc5efc4565991a9f682f0.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:0.893555;font-style:normal;font-weight:normal;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_71dc7040d889415144bf8beb.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_61195a6e73ca273ba74d9c30.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:1.014648;font-style: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.000000px;}
.ls0_c00072{letter-spacing:0.087998px;}
.ls1_c00072{letter-spacing:0.098482px;}
.ls2_c00072{letter-spacing:0.104482px;}
.ls3_c00072{letter-spacing:26.690482px;}
.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;}
}
.ws9_c00072{word-spacing:-33.713438px;}
.ws0_c00072{word-spacing:-26.575517px;}
.ws1_c00072{word-spacing:-26.487518px;}
.ws16_c00072{word-spacing:-23.372260px;}
.ws3_c00072{word-spacing:-23.013606px;}
.ws2_c00072{word-spacing:-21.605377px;}
.ws17_c00072{word-spacing:-20.921460px;}
.wsc_c00072{word-spacing:-18.788747px;}
.ws18_c00072{word-spacing:-18.778855px;}
.wsb_c00072{word-spacing:-18.769538px;}
.ws15_c00072{word-spacing:-18.171782px;}
.ws8_c00072{word-spacing:-15.183002px;}
.ws7_c00072{word-spacing:-15.153896px;}
.wsa_c00072{word-spacing:-15.123227px;}
.ws4_c00072{word-spacing:-13.927715px;}
.ws5_c00072{word-spacing:-13.748388px;}
.ws6_c00072{word-spacing:-11.716018px;}
.ws10_c00072{word-spacing:0.000000px;}
.ws14_c00072{word-spacing:0.037450px;}
.wse_c00072{word-spacing:0.043999px;}
.ws12_c00072{word-spacing:0.053383px;}
.ws11_c00072{word-spacing:0.080350px;}
.wsd_c00072{word-spacing:0.175997px;}
.wsf_c00072{word-spacing:0.213446px;}
.ws13_c00072{word-spacing:0.219446px;}
._a_c00072{margin-left:-6.338076px;}
._6_c00072{margin-left:-4.722272px;}
._1_c00072{margin-left:-1.549390px;}
._7_c00072{width:1.047451px;}
._9_c00072{width:13.915015px;}
._8_c00072{width:18.171782px;}
._2_c00072{width:21.116885px;}
._4_c00072{width:23.793414px;}
._3_c00072{width:34.475405px;}
._5_c00072{width:41.093608px;}
._0_c00072{width:86.077200px;}
.fc6_c00072{color:rgb(0,0,207);}
.fc5_c00072{color:rgb(79,153,5);}
.fc4_c00072{color:rgb(6,69,173);}
.fc3_c00072{color:rgb(207,92,0);}
.fc2_c00072{color:rgb(0,0,0);}
.fc1_c00072{color:rgb(143,89,3);}
.fc0_c00072{color:rgb(33,74,135);}
.fs0_c00072{font-size:43.999200px;}
.fs2_c00072{font-size:59.775600px;}
.fs1_c00072{font-size:86.077200px;}
.y0_c00072{bottom:0.000000px;}
.y2f_c00072{bottom:44.250000px;}
.y2e_c00072{bottom:82.051500px;}
.y2d_c00072{bottom:99.984000px;}
.y2c_c00072{bottom:117.916500px;}
.y2b_c00072{bottom:135.849000px;}
.y2a_c00072{bottom:188.280000px;}
.y29_c00072{bottom:204.718500px;}
.y28_c00072{bottom:221.155500px;}
.y27_c00072{bottom:237.594000px;}
.y26_c00072{bottom:254.032500px;}
.y25_c00072{bottom:270.471000px;}
.y24_c00072{bottom:286.909500px;}
.y23_c00072{bottom:319.786500px;}
.y22_c00072{bottom:336.225000px;}
.y21_c00072{bottom:369.102000px;}
.y20_c00072{bottom:385.539000px;}
.y1f_c00072{bottom:401.977500px;}
.y1e_c00072{bottom:418.416000px;}
.y1d_c00072{bottom:434.854500px;}
.y1c_c00072{bottom:451.293000px;}
.y1b_c00072{bottom:467.731500px;}
.y1a_c00072{bottom:484.170000px;}
.y19_c00072{bottom:517.047000px;}
.y18_c00072{bottom:533.485500px;}
.y17_c00072{bottom:566.361000px;}
.y16_c00072{bottom:582.799500px;}
.y15_c00072{bottom:615.676500px;}
.y14_c00072{bottom:632.115000px;}
.y13_c00072{bottom:648.553500px;}
.y12_c00072{bottom:681.430500px;}
.y11_c00072{bottom:697.869000px;}
.y10_c00072{bottom:714.307500px;}
.yf_c00072{bottom:730.744500px;}
.ye_c00072{bottom:746.809500px;}
.yd_c00072{bottom:821.671500px;}
.yc_c00072{bottom:839.604000px;}
.yb_c00072{bottom:857.536500px;}
.ya_c00072{bottom:875.469000px;}
.y9_c00072{bottom:893.401500px;}
.y8_c00072{bottom:911.335500px;}
.y7_c00072{bottom:969.037500px;}
.y6_c00072{bottom:1077.670500px;}
.y5_c00072{bottom:1094.109000px;}
.y4_c00072{bottom:1110.547500px;}
.y3_c00072{bottom:1126.986000px;}
.y2_c00072{bottom:1143.424500px;}
.y1_c00072{bottom:1159.863000px;}
.h5_c00072{height:35.190766px;}
.h2_c00072{height:36.007158px;}
.h4_c00072{height:52.332837px;}
.h3_c00072{height:58.337477px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w0_c00072{width:892.920000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x4_c00072{left:127.558500px;}
.x3_c00072{left:137.122500px;}
.x2_c00072{left:150.417000px;}
.x5_c00072{left:230.185500px;}
.x1_c00072{left:250.126500px;}
.x6_c00072{left:438.984000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls4_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.078221pt;}
.ls1_c00072{letter-spacing:0.087539pt;}
.ls2_c00072{letter-spacing:0.092873pt;}
.ls3_c00072{letter-spacing:23.724873pt;}
.ws9_c00072{word-spacing:-29.967501pt;}
.ws0_c00072{word-spacing:-23.622682pt;}
.ws1_c00072{word-spacing:-23.544461pt;}
.ws16_c00072{word-spacing:-20.775342pt;}
.ws3_c00072{word-spacing:-20.456539pt;}
.ws2_c00072{word-spacing:-19.204780pt;}
.ws17_c00072{word-spacing:-18.596853pt;}
.wsc_c00072{word-spacing:-16.701108pt;}
.ws18_c00072{word-spacing:-16.692316pt;}
.wsb_c00072{word-spacing:-16.684034pt;}
.ws15_c00072{word-spacing:-16.152695pt;}
.ws8_c00072{word-spacing:-13.496002pt;}
.ws7_c00072{word-spacing:-13.470130pt;}
.wsa_c00072{word-spacing:-13.442868pt;}
.ws4_c00072{word-spacing:-12.380191pt;}
.ws5_c00072{word-spacing:-12.220789pt;}
.ws6_c00072{word-spacing:-10.414238pt;}
.ws10_c00072{word-spacing:0.000000pt;}
.ws14_c00072{word-spacing:0.033289pt;}
.wse_c00072{word-spacing:0.039110pt;}
.ws12_c00072{word-spacing:0.047452pt;}
.ws11_c00072{word-spacing:0.071422pt;}
.wsd_c00072{word-spacing:0.156442pt;}
.wsf_c00072{word-spacing:0.189730pt;}
.ws13_c00072{word-spacing:0.195063pt;}
._a_c00072{margin-left:-5.633845pt;}
._6_c00072{margin-left:-4.197575pt;}
._1_c00072{margin-left:-1.377235pt;}
._7_c00072{width:0.931068pt;}
._9_c00072{width:12.368902pt;}
._8_c00072{width:16.152695pt;}
._2_c00072{width:18.770564pt;}
._4_c00072{width:21.149701pt;}
._3_c00072{width:30.644804pt;}
._5_c00072{width:36.527651pt;}
._0_c00072{width:76.513067pt;}
.fs0_c00072{font-size:39.110400pt;}
.fs2_c00072{font-size:53.133867pt;}
.fs1_c00072{font-size:76.513067pt;}
.y0_c00072{bottom:0.000000pt;}
.y2f_c00072{bottom:39.333333pt;}
.y2e_c00072{bottom:72.934667pt;}
.y2d_c00072{bottom:88.874667pt;}
.y2c_c00072{bottom:104.814667pt;}
.y2b_c00072{bottom:120.754667pt;}
.y2a_c00072{bottom:167.360000pt;}
.y29_c00072{bottom:181.972000pt;}
.y28_c00072{bottom:196.582667pt;}
.y27_c00072{bottom:211.194667pt;}
.y26_c00072{bottom:225.806667pt;}
.y25_c00072{bottom:240.418667pt;}
.y24_c00072{bottom:255.030667pt;}
.y23_c00072{bottom:284.254667pt;}
.y22_c00072{bottom:298.866667pt;}
.y21_c00072{bottom:328.090667pt;}
.y20_c00072{bottom:342.701333pt;}
.y1f_c00072{bottom:357.313333pt;}
.y1e_c00072{bottom:371.925333pt;}
.y1d_c00072{bottom:386.537333pt;}
.y1c_c00072{bottom:401.149333pt;}
.y1b_c00072{bottom:415.761333pt;}
.y1a_c00072{bottom:430.373333pt;}
.y19_c00072{bottom:459.597333pt;}
.y18_c00072{bottom:474.209333pt;}
.y17_c00072{bottom:503.432000pt;}
.y16_c00072{bottom:518.044000pt;}
.y15_c00072{bottom:547.268000pt;}
.y14_c00072{bottom:561.880000pt;}
.y13_c00072{bottom:576.492000pt;}
.y12_c00072{bottom:605.716000pt;}
.y11_c00072{bottom:620.328000pt;}
.y10_c00072{bottom:634.940000pt;}
.yf_c00072{bottom:649.550667pt;}
.ye_c00072{bottom:663.830667pt;}
.yd_c00072{bottom:730.374667pt;}
.yc_c00072{bottom:746.314667pt;}
.yb_c00072{bottom:762.254667pt;}
.ya_c00072{bottom:778.194667pt;}
.y9_c00072{bottom:794.134667pt;}
.y8_c00072{bottom:810.076000pt;}
.y7_c00072{bottom:861.366667pt;}
.y6_c00072{bottom:957.929333pt;}
.y5_c00072{bottom:972.541333pt;}
.y4_c00072{bottom:987.153333pt;}
.y3_c00072{bottom:1001.765333pt;}
.y2_c00072{bottom:1016.377333pt;}
.y1_c00072{bottom:1030.989333pt;}
.h5_c00072{height:31.280681pt;}
.h2_c00072{height:32.006363pt;}
.h4_c00072{height:46.518078pt;}
.h3_c00072{height:51.855535pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w0_c00072{width:793.706667pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x4_c00072{left:113.385333pt;}
.x3_c00072{left:121.886667pt;}
.x2_c00072{left:133.704000pt;}
.x5_c00072{left:204.609333pt;}
.x1_c00072{left:222.334667pt;}
.x6_c00072{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a61c2a7475c35ebaaa3a9492.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:0.893555;font-style:normal;font-weight:normal;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_2aca15a8b05d82cedd7c93b0.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.102051;font-style:normal;font-weight:normal;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_a7b130304491a0e7a3c4f104.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.083496;font-style: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:0.000000px;}
.ls0_c00073{letter-spacing:0.002725px;}
.ls2_c00073{letter-spacing:0.087998px;}
.ls1_c00073{letter-spacing:29.892540px;}
.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;}
}
.ws7_c00073{word-spacing:-33.713438px;}
.ws2c_c00073{word-spacing:-26.575517px;}
.ws26_c00073{word-spacing:-23.611362px;}
.ws20_c00073{word-spacing:-23.372260px;}
.ws1a_c00073{word-spacing:-22.535401px;}
.ws28_c00073{word-spacing:-21.758318px;}
.ws0_c00073{word-spacing:-21.519300px;}
.ws22_c00073{word-spacing:-21.519216px;}
.ws24_c00073{word-spacing:-20.981236px;}
.ws1c_c00073{word-spacing:-20.742133px;}
.ws16_c00073{word-spacing:-20.024826px;}
.ws29_c00073{word-spacing:-19.486846px;}
.ws18_c00073{word-spacing:-18.889090px;}
.ws12_c00073{word-spacing:-18.769538px;}
.ws2b_c00073{word-spacing:-18.530436px;}
.ws2d_c00073{word-spacing:-17.753353px;}
.ws1e_c00073{word-spacing:-17.574026px;}
.wse_c00073{word-spacing:-17.501680px;}
.wsd_c00073{word-spacing:-17.454475px;}
.ws2e_c00073{word-spacing:-17.155597px;}
.wsb_c00073{word-spacing:-16.916495px;}
.ws14_c00073{word-spacing:-16.737168px;}
.ws3_c00073{word-spacing:-15.780758px;}
.wsa_c00073{word-spacing:-15.302554px;}
.ws9_c00073{word-spacing:-14.405920px;}
.ws4_c00073{word-spacing:-14.107042px;}
.wsf_c00073{word-spacing:-13.471445px;}
.ws10_c00073{word-spacing:-13.470280px;}
.ws11_c00073{word-spacing:-13.449510px;}
.ws2a_c00073{word-spacing:-12.373549px;}
.ws1_c00073{word-spacing:-11.417140px;}
.wsc_c00073{word-spacing:-10.998710px;}
.ws2_c00073{word-spacing:-10.281403px;}
.ws5_c00073{word-spacing:-9.803198px;}
.ws8_c00073{word-spacing:-9.743423px;}
.ws25_c00073{word-spacing:-8.623843px;}
.ws1f_c00073{word-spacing:-8.139852px;}
.ws19_c00073{word-spacing:-6.731878px;}
.ws27_c00073{word-spacing:-5.235905px;}
.ws21_c00073{word-spacing:-4.795913px;}
.ws23_c00073{word-spacing:-3.959928px;}
.ws1b_c00073{word-spacing:-3.475937px;}
.ws15_c00073{word-spacing:-2.155961px;}
.ws17_c00073{word-spacing:-0.175997px;}
.ws30_c00073{word-spacing:0.000000px;}
.ws1d_c00073{word-spacing:2.199960px;}
.ws2f_c00073{word-spacing:2.903947px;}
.ws13_c00073{word-spacing:3.651934px;}
.ws6_c00073{word-spacing:21.041011px;}
._9_c00073{margin-left:-4.722272px;}
._1_c00073{margin-left:-3.108331px;}
._7_c00073{margin-left:-1.121069px;}
._5_c00073{width:2.982808px;}
._11_c00073{width:10.575341px;}
._10_c00073{width:11.703444px;}
._f_c00073{width:14.157694px;}
._e_c00073{width:17.435460px;}
._6_c00073{width:20.323704px;}
._c_c00073{width:21.578992px;}
._b_c00073{width:24.029791px;}
._3_c00073{width:25.524181px;}
._a_c00073{width:30.605107px;}
._8_c00073{width:32.816804px;}
._4_c00073{width:33.892765px;}
._d_c00073{width:35.063270px;}
._12_c00073{width:38.973691px;}
._2_c00073{width:45.190354px;}
._0_c00073{width:86.077200px;}
.fc1_c00073{color:rgb(6,69,173);}
.fc0_c00073{color:rgb(0,0,0);}
.fs2_c00073{font-size:43.999200px;}
.fs1_c00073{font-size:59.775600px;}
.fs0_c00073{font-size:86.077200px;}
.y0_c00073{bottom:0.000000px;}
.y32_c00073{bottom:44.250000px;}
.y31_c00073{bottom:82.051500px;}
.y30_c00073{bottom:99.984000px;}
.y2f_c00073{bottom:117.916500px;}
.y2e_c00073{bottom:135.849000px;}
.y2d_c00073{bottom:153.781500px;}
.y2c_c00073{bottom:171.714000px;}
.y2b_c00073{bottom:210.265500px;}
.y2a_c00073{bottom:239.056500px;}
.y29_c00073{bottom:256.989000px;}
.y28_c00073{bottom:285.780000px;}
.y27_c00073{bottom:303.712500px;}
.y26_c00073{bottom:332.503500px;}
.y25_c00073{bottom:350.436000px;}
.y24_c00073{bottom:379.227000px;}
.y23_c00073{bottom:397.159500px;}
.y22_c00073{bottom:425.950500px;}
.y21_c00073{bottom:454.741500px;}
.y20_c00073{bottom:472.674000px;}
.y1f_c00073{bottom:501.465000px;}
.y1e_c00073{bottom:519.397500px;}
.y1d_c00073{bottom:548.188500px;}
.y1c_c00073{bottom:566.121000px;}
.y1b_c00073{bottom:594.912000px;}
.y1a_c00073{bottom:612.844500px;}
.y19_c00073{bottom:641.635500px;}
.y18_c00073{bottom:670.426500px;}
.y17_c00073{bottom:688.359000px;}
.y16_c00073{bottom:717.150000px;}
.y15_c00073{bottom:735.082500px;}
.y14_c00073{bottom:763.873500px;}
.y13_c00073{bottom:781.806000px;}
.y12_c00073{bottom:810.597000px;}
.y11_c00073{bottom:828.529500px;}
.y10_c00073{bottom:867.081000px;}
.yf_c00073{bottom:885.013500px;}
.ye_c00073{bottom:902.946000px;}
.yd_c00073{bottom:920.878500px;}
.yc_c00073{bottom:938.812500px;}
.yb_c00073{bottom:956.745000px;}
.ya_c00073{bottom:974.677500px;}
.y9_c00073{bottom:992.610000px;}
.y8_c00073{bottom:1010.542500px;}
.y7_c00073{bottom:1028.475000px;}
.y6_c00073{bottom:1046.409000px;}
.y5_c00073{bottom:1064.341500px;}
.y4_c00073{bottom:1082.274000px;}
.y3_c00073{bottom:1100.206500px;}
.y2_c00073{bottom:1118.139000px;}
.y1_c00073{bottom:1159.863000px;}
.h3_c00073{height:52.332837px;}
.h2_c00073{height:58.337477px;}
.h0_c00073{height:1262.835000px;}
.h1_c00073{height:1263.000000px;}
.w0_c00073{width:892.920000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:127.558500px;}
.x2_c00073{left:152.215500px;}
.x3_c00073{left:164.919000px;}
.x4_c00073{left:438.984000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls3_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:0.002422pt;}
.ls2_c00073{letter-spacing:0.078221pt;}
.ls1_c00073{letter-spacing:26.571147pt;}
.ws7_c00073{word-spacing:-29.967501pt;}
.ws2c_c00073{word-spacing:-23.622682pt;}
.ws26_c00073{word-spacing:-20.987877pt;}
.ws20_c00073{word-spacing:-20.775342pt;}
.ws1a_c00073{word-spacing:-20.031468pt;}
.ws28_c00073{word-spacing:-19.340727pt;}
.ws0_c00073{word-spacing:-19.128267pt;}
.ws22_c00073{word-spacing:-19.128192pt;}
.ws24_c00073{word-spacing:-18.649987pt;}
.ws1c_c00073{word-spacing:-18.437452pt;}
.ws16_c00073{word-spacing:-17.799845pt;}
.ws29_c00073{word-spacing:-17.321641pt;}
.ws18_c00073{word-spacing:-16.790302pt;}
.ws12_c00073{word-spacing:-16.684034pt;}
.ws2b_c00073{word-spacing:-16.471499pt;}
.ws2d_c00073{word-spacing:-15.780758pt;}
.ws1e_c00073{word-spacing:-15.621357pt;}
.wse_c00073{word-spacing:-15.557049pt;}
.wsd_c00073{word-spacing:-15.515089pt;}
.ws2e_c00073{word-spacing:-15.249420pt;}
.wsb_c00073{word-spacing:-15.036884pt;}
.ws14_c00073{word-spacing:-14.877483pt;}
.ws3_c00073{word-spacing:-14.027341pt;}
.wsa_c00073{word-spacing:-13.602270pt;}
.ws9_c00073{word-spacing:-12.805262pt;}
.ws4_c00073{word-spacing:-12.539593pt;}
.wsf_c00073{word-spacing:-11.974618pt;}
.ws10_c00073{word-spacing:-11.973582pt;}
.ws11_c00073{word-spacing:-11.955120pt;}
.ws2a_c00073{word-spacing:-10.998710pt;}
.ws1_c00073{word-spacing:-10.148569pt;}
.wsc_c00073{word-spacing:-9.776631pt;}
.ws2_c00073{word-spacing:-9.139025pt;}
.ws5_c00073{word-spacing:-8.713954pt;}
.ws8_c00073{word-spacing:-8.660820pt;}
.ws25_c00073{word-spacing:-7.665638pt;}
.ws1f_c00073{word-spacing:-7.235424pt;}
.ws19_c00073{word-spacing:-5.983891pt;}
.ws27_c00073{word-spacing:-4.654138pt;}
.ws21_c00073{word-spacing:-4.263034pt;}
.ws23_c00073{word-spacing:-3.519936pt;}
.ws1b_c00073{word-spacing:-3.089722pt;}
.ws15_c00073{word-spacing:-1.916410pt;}
.ws17_c00073{word-spacing:-0.156442pt;}
.ws30_c00073{word-spacing:0.000000pt;}
.ws1d_c00073{word-spacing:1.955520pt;}
.ws2f_c00073{word-spacing:2.581286pt;}
.ws13_c00073{word-spacing:3.246163pt;}
.ws6_c00073{word-spacing:18.703121pt;}
._9_c00073{margin-left:-4.197575pt;}
._1_c00073{margin-left:-2.762961pt;}
._7_c00073{margin-left:-0.996506pt;}
._5_c00073{width:2.651385pt;}
._11_c00073{width:9.400303pt;}
._10_c00073{width:10.403061pt;}
._f_c00073{width:12.584617pt;}
._e_c00073{width:15.498187pt;}
._6_c00073{width:18.065515pt;}
._c_c00073{width:19.181326pt;}
._b_c00073{width:21.359814pt;}
._3_c00073{width:22.688161pt;}
._a_c00073{width:27.204540pt;}
._8_c00073{width:29.170493pt;}
._4_c00073{width:30.126902pt;}
._d_c00073{width:31.167351pt;}
._12_c00073{width:34.643281pt;}
._2_c00073{width:40.169203pt;}
._0_c00073{width:76.513067pt;}
.fs2_c00073{font-size:39.110400pt;}
.fs1_c00073{font-size:53.133867pt;}
.fs0_c00073{font-size:76.513067pt;}
.y0_c00073{bottom:0.000000pt;}
.y32_c00073{bottom:39.333333pt;}
.y31_c00073{bottom:72.934667pt;}
.y30_c00073{bottom:88.874667pt;}
.y2f_c00073{bottom:104.814667pt;}
.y2e_c00073{bottom:120.754667pt;}
.y2d_c00073{bottom:136.694667pt;}
.y2c_c00073{bottom:152.634667pt;}
.y2b_c00073{bottom:186.902667pt;}
.y2a_c00073{bottom:212.494667pt;}
.y29_c00073{bottom:228.434667pt;}
.y28_c00073{bottom:254.026667pt;}
.y27_c00073{bottom:269.966667pt;}
.y26_c00073{bottom:295.558667pt;}
.y25_c00073{bottom:311.498667pt;}
.y24_c00073{bottom:337.090667pt;}
.y23_c00073{bottom:353.030667pt;}
.y22_c00073{bottom:378.622667pt;}
.y21_c00073{bottom:404.214667pt;}
.y20_c00073{bottom:420.154667pt;}
.y1f_c00073{bottom:445.746667pt;}
.y1e_c00073{bottom:461.686667pt;}
.y1d_c00073{bottom:487.278667pt;}
.y1c_c00073{bottom:503.218667pt;}
.y1b_c00073{bottom:528.810667pt;}
.y1a_c00073{bottom:544.750667pt;}
.y19_c00073{bottom:570.342667pt;}
.y18_c00073{bottom:595.934667pt;}
.y17_c00073{bottom:611.874667pt;}
.y16_c00073{bottom:637.466667pt;}
.y15_c00073{bottom:653.406667pt;}
.y14_c00073{bottom:678.998667pt;}
.y13_c00073{bottom:694.938667pt;}
.y12_c00073{bottom:720.530667pt;}
.y11_c00073{bottom:736.470667pt;}
.y10_c00073{bottom:770.738667pt;}
.yf_c00073{bottom:786.678667pt;}
.ye_c00073{bottom:802.618667pt;}
.yd_c00073{bottom:818.558667pt;}
.yc_c00073{bottom:834.500000pt;}
.yb_c00073{bottom:850.440000pt;}
.ya_c00073{bottom:866.380000pt;}
.y9_c00073{bottom:882.320000pt;}
.y8_c00073{bottom:898.260000pt;}
.y7_c00073{bottom:914.200000pt;}
.y6_c00073{bottom:930.141333pt;}
.y5_c00073{bottom:946.081333pt;}
.y4_c00073{bottom:962.021333pt;}
.y3_c00073{bottom:977.961333pt;}
.y2_c00073{bottom:993.901333pt;}
.y1_c00073{bottom:1030.989333pt;}
.h3_c00073{height:46.518078pt;}
.h2_c00073{height:51.855535pt;}
.h0_c00073{height:1122.520000pt;}
.h1_c00073{height:1122.666667pt;}
.w0_c00073{width:793.706667pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:113.385333pt;}
.x2_c00073{left:135.302667pt;}
.x3_c00073{left:146.594667pt;}
.x4_c00073{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1364dab7483deeb469bb4ed6.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.014648;font-style:normal;font-weight:normal;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_1e72aee12152d0126b68e33d.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.048828;font-style:normal;font-weight:normal;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_1db1d1c08bebc6d63be18a4a.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.083496;font-style:normal;font-weight:normal;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_6eb8c8839caa937b16790a0d.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:0.893555;font-style:normal;font-weight:normal;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_0498917f334f48014e311803.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.102051;font-style: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;}
.ls4_c00074{letter-spacing:0.000000px;}
.ls1_c00074{letter-spacing:0.087998px;}
.ls2_c00074{letter-spacing:0.098482px;}
.ls0_c00074{letter-spacing:0.104482px;}
.ls3_c00074{letter-spacing:26.690482px;}
.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;}
}
.ws13_c00074{word-spacing:-33.713438px;}
.ws2_c00074{word-spacing:-26.575517px;}
.ws1_c00074{word-spacing:-26.487518px;}
.wsa_c00074{word-spacing:-21.519300px;}
.wsd_c00074{word-spacing:-18.812371px;}
.wse_c00074{word-spacing:-18.769538px;}
.ws14_c00074{word-spacing:-14.166817px;}
.wsf_c00074{word-spacing:-13.946096px;}
.ws10_c00074{word-spacing:-13.927715px;}
.ws12_c00074{word-spacing:-10.708255px;}
.ws11_c00074{word-spacing:-10.640057px;}
.wsc_c00074{word-spacing:-8.888472px;}
.wsb_c00074{word-spacing:-8.846789px;}
.ws5_c00074{word-spacing:0.000000px;}
.ws8_c00074{word-spacing:0.037450px;}
.ws3_c00074{word-spacing:0.043999px;}
.ws9_c00074{word-spacing:0.053933px;}
.ws6_c00074{word-spacing:0.080899px;}
.ws0_c00074{word-spacing:0.175997px;}
.ws4_c00074{word-spacing:0.213446px;}
.ws7_c00074{word-spacing:0.219446px;}
._3_c00074{margin-left:-4.734246px;}
._4_c00074{margin-left:-3.287658px;}
._0_c00074{width:1.041538px;}
._7_c00074{width:20.562806px;}
._1_c00074{width:27.626438px;}
._6_c00074{width:33.539912px;}
._5_c00074{width:34.806054px;}
._2_c00074{width:86.077200px;}
.fc5_c00074{color:rgb(0,0,207);}
.fc4_c00074{color:rgb(79,153,5);}
.fc6_c00074{color:rgb(6,69,173);}
.fc3_c00074{color:rgb(207,92,0);}
.fc2_c00074{color:rgb(0,0,0);}
.fc1_c00074{color:rgb(33,74,135);}
.fc0_c00074{color:rgb(143,89,3);}
.fs0_c00074{font-size:43.999200px;}
.fs2_c00074{font-size:59.775600px;}
.fs1_c00074{font-size:86.077200px;}
.y0_c00074{bottom:0.000000px;}
.y2f_c00074{bottom:44.250000px;}
.y2e_c00074{bottom:82.051500px;}
.y2d_c00074{bottom:99.984000px;}
.y2c_c00074{bottom:117.916500px;}
.y2b_c00074{bottom:135.849000px;}
.y2a_c00074{bottom:153.781500px;}
.y29_c00074{bottom:171.714000px;}
.y28_c00074{bottom:218.094000px;}
.y27_c00074{bottom:301.407000px;}
.y26_c00074{bottom:317.845500px;}
.y25_c00074{bottom:334.284000px;}
.y24_c00074{bottom:350.722500px;}
.y23_c00074{bottom:367.161000px;}
.y22_c00074{bottom:383.599500px;}
.y21_c00074{bottom:416.475000px;}
.y20_c00074{bottom:432.913500px;}
.y1f_c00074{bottom:449.352000px;}
.y1e_c00074{bottom:465.790500px;}
.y1d_c00074{bottom:482.229000px;}
.y1c_c00074{bottom:498.667500px;}
.y1b_c00074{bottom:531.544500px;}
.y1a_c00074{bottom:547.983000px;}
.y19_c00074{bottom:580.858500px;}
.y18_c00074{bottom:597.297000px;}
.y17_c00074{bottom:613.735500px;}
.y16_c00074{bottom:646.612500px;}
.y15_c00074{bottom:679.489500px;}
.y14_c00074{bottom:695.928000px;}
.y13_c00074{bottom:712.366500px;}
.y12_c00074{bottom:728.805000px;}
.y11_c00074{bottom:745.243500px;}
.y10_c00074{bottom:778.119000px;}
.yf_c00074{bottom:794.557500px;}
.ye_c00074{bottom:810.996000px;}
.yd_c00074{bottom:860.311500px;}
.yc_c00074{bottom:876.750000px;}
.yb_c00074{bottom:893.188500px;}
.ya_c00074{bottom:909.627000px;}
.y9_c00074{bottom:926.064000px;}
.y8_c00074{bottom:975.379500px;}
.y7_c00074{bottom:991.818000px;}
.y6_c00074{bottom:1008.256500px;}
.y5_c00074{bottom:1041.133500px;}
.y4_c00074{bottom:1057.572000px;}
.y3_c00074{bottom:1106.886000px;}
.y2_c00074{bottom:1123.324500px;}
.y1_c00074{bottom:1139.389500px;}
.h2_c00074{height:35.190766px;}
.h3_c00074{height:36.007158px;}
.h5_c00074{height:52.332837px;}
.h4_c00074{height:58.337477px;}
.h0_c00074{height:1262.835000px;}
.h1_c00074{height:1263.000000px;}
.w0_c00074{width:892.920000px;}
.w1_c00074{width:893.250000px;}
.x0_c00074{left:0.000000px;}
.x5_c00074{left:127.558500px;}
.x1_c00074{left:137.122500px;}
.x2_c00074{left:150.417000px;}
.x3_c00074{left:196.948500px;}
.x4_c00074{left:236.832000px;}
.x6_c00074{left:438.984000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls4_c00074{letter-spacing:0.000000pt;}
.ls1_c00074{letter-spacing:0.078221pt;}
.ls2_c00074{letter-spacing:0.087539pt;}
.ls0_c00074{letter-spacing:0.092873pt;}
.ls3_c00074{letter-spacing:23.724873pt;}
.ws13_c00074{word-spacing:-29.967501pt;}
.ws2_c00074{word-spacing:-23.622682pt;}
.ws1_c00074{word-spacing:-23.544461pt;}
.wsa_c00074{word-spacing:-19.128267pt;}
.wsd_c00074{word-spacing:-16.722108pt;}
.wse_c00074{word-spacing:-16.684034pt;}
.ws14_c00074{word-spacing:-12.592726pt;}
.wsf_c00074{word-spacing:-12.396530pt;}
.ws10_c00074{word-spacing:-12.380191pt;}
.ws12_c00074{word-spacing:-9.518449pt;}
.ws11_c00074{word-spacing:-9.457828pt;}
.wsc_c00074{word-spacing:-7.900864pt;}
.wsb_c00074{word-spacing:-7.863812pt;}
.ws5_c00074{word-spacing:0.000000pt;}
.ws8_c00074{word-spacing:0.033289pt;}
.ws3_c00074{word-spacing:0.039110pt;}
.ws9_c00074{word-spacing:0.047940pt;}
.ws6_c00074{word-spacing:0.071910pt;}
.ws0_c00074{word-spacing:0.156442pt;}
.ws4_c00074{word-spacing:0.189730pt;}
.ws7_c00074{word-spacing:0.195063pt;}
._3_c00074{margin-left:-4.208219pt;}
._4_c00074{margin-left:-2.922363pt;}
._0_c00074{width:0.925811pt;}
._7_c00074{width:18.278050pt;}
._1_c00074{width:24.556834pt;}
._6_c00074{width:29.813255pt;}
._5_c00074{width:30.938715pt;}
._2_c00074{width:76.513067pt;}
.fs0_c00074{font-size:39.110400pt;}
.fs2_c00074{font-size:53.133867pt;}
.fs1_c00074{font-size:76.513067pt;}
.y0_c00074{bottom:0.000000pt;}
.y2f_c00074{bottom:39.333333pt;}
.y2e_c00074{bottom:72.934667pt;}
.y2d_c00074{bottom:88.874667pt;}
.y2c_c00074{bottom:104.814667pt;}
.y2b_c00074{bottom:120.754667pt;}
.y2a_c00074{bottom:136.694667pt;}
.y29_c00074{bottom:152.634667pt;}
.y28_c00074{bottom:193.861333pt;}
.y27_c00074{bottom:267.917333pt;}
.y26_c00074{bottom:282.529333pt;}
.y25_c00074{bottom:297.141333pt;}
.y24_c00074{bottom:311.753333pt;}
.y23_c00074{bottom:326.365333pt;}
.y22_c00074{bottom:340.977333pt;}
.y21_c00074{bottom:370.200000pt;}
.y20_c00074{bottom:384.812000pt;}
.y1f_c00074{bottom:399.424000pt;}
.y1e_c00074{bottom:414.036000pt;}
.y1d_c00074{bottom:428.648000pt;}
.y1c_c00074{bottom:443.260000pt;}
.y1b_c00074{bottom:472.484000pt;}
.y1a_c00074{bottom:487.096000pt;}
.y19_c00074{bottom:516.318667pt;}
.y18_c00074{bottom:530.930667pt;}
.y17_c00074{bottom:545.542667pt;}
.y16_c00074{bottom:574.766667pt;}
.y15_c00074{bottom:603.990667pt;}
.y14_c00074{bottom:618.602667pt;}
.y13_c00074{bottom:633.214667pt;}
.y12_c00074{bottom:647.826667pt;}
.y11_c00074{bottom:662.438667pt;}
.y10_c00074{bottom:691.661333pt;}
.yf_c00074{bottom:706.273333pt;}
.ye_c00074{bottom:720.885333pt;}
.yd_c00074{bottom:764.721333pt;}
.yc_c00074{bottom:779.333333pt;}
.yb_c00074{bottom:793.945333pt;}
.ya_c00074{bottom:808.557333pt;}
.y9_c00074{bottom:823.168000pt;}
.y8_c00074{bottom:867.004000pt;}
.y7_c00074{bottom:881.616000pt;}
.y6_c00074{bottom:896.228000pt;}
.y5_c00074{bottom:925.452000pt;}
.y4_c00074{bottom:940.064000pt;}
.y3_c00074{bottom:983.898667pt;}
.y2_c00074{bottom:998.510667pt;}
.y1_c00074{bottom:1012.790667pt;}
.h2_c00074{height:31.280681pt;}
.h3_c00074{height:32.006363pt;}
.h5_c00074{height:46.518078pt;}
.h4_c00074{height:51.855535pt;}
.h0_c00074{height:1122.520000pt;}
.h1_c00074{height:1122.666667pt;}
.w0_c00074{width:793.706667pt;}
.w1_c00074{width:794.000000pt;}
.x0_c00074{left:0.000000pt;}
.x5_c00074{left:113.385333pt;}
.x1_c00074{left:121.886667pt;}
.x2_c00074{left:133.704000pt;}
.x3_c00074{left:175.065333pt;}
.x4_c00074{left:210.517333pt;}
.x6_c00074{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c48800418ccb90182460de9.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.102051;font-style:normal;font-weight:normal;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_f17a03394922812d20838e83.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.893555;font-style:normal;font-weight:normal;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_dccf73299087836412b053e6.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.014648;font-style:normal;font-weight:normal;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_3e838ff88ab73f1373488d13.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00075;src:url('chunks/assets/font_9398d5027dfef5c735e52404.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.083496;font-style: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;}
.ls4_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:0.002725px;}
.ls2_c00075{letter-spacing:0.087998px;}
.ls3_c00075{letter-spacing:0.098482px;}
.ls1_c00075{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00075{word-spacing:-33.713438px;}
.ws19_c00075{word-spacing:-26.575517px;}
.ws18_c00075{word-spacing:-26.487518px;}
.ws5_c00075{word-spacing:-21.519300px;}
.ws15_c00075{word-spacing:-21.339889px;}
.ws13_c00075{word-spacing:-19.965050px;}
.ws12_c00075{word-spacing:-19.845499px;}
.ws11_c00075{word-spacing:-19.486846px;}
.ws16_c00075{word-spacing:-19.068416px;}
.ws2_c00075{word-spacing:-18.836405px;}
.ws4_c00075{word-spacing:-18.789571px;}
.ws3_c00075{word-spacing:-18.769538px;}
.ws10_c00075{word-spacing:-18.530436px;}
.wsa_c00075{word-spacing:-18.470660px;}
.ws14_c00075{word-spacing:-18.351109px;}
.wsc_c00075{word-spacing:-16.617617px;}
.wsf_c00075{word-spacing:-15.780758px;}
.ws9_c00075{word-spacing:-15.541656px;}
.wsb_c00075{word-spacing:-14.943900px;}
.wsd_c00075{word-spacing:-13.748388px;}
.wse_c00075{word-spacing:-13.628837px;}
.ws1_c00075{word-spacing:-13.209605px;}
.ws0_c00075{word-spacing:-13.150632px;}
.ws1c_c00075{word-spacing:0.000000px;}
.ws1a_c00075{word-spacing:0.043999px;}
.ws17_c00075{word-spacing:0.175997px;}
.ws1b_c00075{word-spacing:0.213446px;}
.ws1e_c00075{word-spacing:0.219446px;}
.ws1d_c00075{word-spacing:0.219996px;}
.ws8_c00075{word-spacing:9.205442px;}
.ws6_c00075{word-spacing:18.709763px;}
._9_c00075{margin-left:-6.276438px;}
._6_c00075{margin-left:-3.945190px;}
._2_c00075{margin-left:-2.391024px;}
._c_c00075{width:1.047451px;}
._3_c00075{width:2.988780px;}
._a_c00075{width:18.948865px;}
._b_c00075{width:20.742133px;}
._0_c00075{width:21.937645px;}
._5_c00075{width:29.230268px;}
._7_c00075{width:31.322414px;}
._8_c00075{width:35.267604px;}
._4_c00075{width:49.700844px;}
._1_c00075{width:86.077200px;}
.fc6_c00075{color:rgb(0,0,207);}
.fc5_c00075{color:rgb(79,153,5);}
.fc3_c00075{color:rgb(33,74,135);}
.fc2_c00075{color:rgb(143,89,3);}
.fc4_c00075{color:rgb(207,92,0);}
.fc1_c00075{color:rgb(6,69,173);}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:43.999200px;}
.fs0_c00075{font-size:59.775600px;}
.fs1_c00075{font-size:86.077200px;}
.y0_c00075{bottom:0.000000px;}
.y31_c00075{bottom:44.250000px;}
.y30_c00075{bottom:86.982000px;}
.y2f_c00075{bottom:103.420500px;}
.y2e_c00075{bottom:119.859000px;}
.y2d_c00075{bottom:136.297500px;}
.y2c_c00075{bottom:169.174500px;}
.y2b_c00075{bottom:185.613000px;}
.y2a_c00075{bottom:202.051500px;}
.y29_c00075{bottom:234.927000px;}
.y28_c00075{bottom:251.365500px;}
.y27_c00075{bottom:267.804000px;}
.y26_c00075{bottom:284.242500px;}
.y25_c00075{bottom:317.119500px;}
.y24_c00075{bottom:349.996500px;}
.y23_c00075{bottom:366.435000px;}
.y22_c00075{bottom:399.310500px;}
.y21_c00075{bottom:415.749000px;}
.y20_c00075{bottom:432.187500px;}
.y1f_c00075{bottom:448.626000px;}
.y1e_c00075{bottom:481.503000px;}
.y1d_c00075{bottom:514.380000px;}
.y1c_c00075{bottom:530.818500px;}
.y1b_c00075{bottom:563.695500px;}
.y1a_c00075{bottom:580.132500px;}
.y19_c00075{bottom:596.197500px;}
.y18_c00075{bottom:644.710500px;}
.y17_c00075{bottom:662.644500px;}
.y16_c00075{bottom:680.577000px;}
.y15_c00075{bottom:707.610000px;}
.y14_c00075{bottom:725.542500px;}
.y13_c00075{bottom:743.475000px;}
.y12_c00075{bottom:761.409000px;}
.y11_c00075{bottom:788.442000px;}
.y10_c00075{bottom:806.374500px;}
.yf_c00075{bottom:824.307000px;}
.ye_c00075{bottom:842.239500px;}
.yd_c00075{bottom:869.274000px;}
.yc_c00075{bottom:887.206500px;}
.yb_c00075{bottom:905.139000px;}
.ya_c00075{bottom:923.071500px;}
.y9_c00075{bottom:941.004000px;}
.y8_c00075{bottom:958.938000px;}
.y7_c00075{bottom:976.870500px;}
.y6_c00075{bottom:994.803000px;}
.y5_c00075{bottom:1012.735500px;}
.y4_c00075{bottom:1055.202000px;}
.y3_c00075{bottom:1114.896000px;}
.y2_c00075{bottom:1141.930500px;}
.y1_c00075{bottom:1159.863000px;}
.h4_c00075{height:35.190766px;}
.h5_c00075{height:36.007158px;}
.h2_c00075{height:52.332837px;}
.h3_c00075{height:58.337477px;}
.h0_c00075{height:1262.835000px;}
.h1_c00075{height:1263.000000px;}
.w0_c00075{width:892.920000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:127.558500px;}
.x2_c00075{left:137.122500px;}
.x3_c00075{left:150.417000px;}
.x4_c00075{left:163.713000px;}
.x5_c00075{left:438.984000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls4_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:0.002422pt;}
.ls2_c00075{letter-spacing:0.078221pt;}
.ls3_c00075{letter-spacing:0.087539pt;}
.ls1_c00075{letter-spacing:0.092873pt;}
.ws7_c00075{word-spacing:-29.967501pt;}
.ws19_c00075{word-spacing:-23.622682pt;}
.ws18_c00075{word-spacing:-23.544461pt;}
.ws5_c00075{word-spacing:-19.128267pt;}
.ws15_c00075{word-spacing:-18.968790pt;}
.ws13_c00075{word-spacing:-17.746711pt;}
.ws12_c00075{word-spacing:-17.640444pt;}
.ws11_c00075{word-spacing:-17.321641pt;}
.ws16_c00075{word-spacing:-16.949703pt;}
.ws2_c00075{word-spacing:-16.743471pt;}
.ws4_c00075{word-spacing:-16.701841pt;}
.ws3_c00075{word-spacing:-16.684034pt;}
.ws10_c00075{word-spacing:-16.471499pt;}
.wsa_c00075{word-spacing:-16.418365pt;}
.ws14_c00075{word-spacing:-16.312097pt;}
.wsc_c00075{word-spacing:-14.771215pt;}
.wsf_c00075{word-spacing:-14.027341pt;}
.ws9_c00075{word-spacing:-13.814805pt;}
.wsb_c00075{word-spacing:-13.283467pt;}
.wsd_c00075{word-spacing:-12.220789pt;}
.wse_c00075{word-spacing:-12.114522pt;}
.ws1_c00075{word-spacing:-11.741871pt;}
.ws0_c00075{word-spacing:-11.689451pt;}
.ws1c_c00075{word-spacing:0.000000pt;}
.ws1a_c00075{word-spacing:0.039110pt;}
.ws17_c00075{word-spacing:0.156442pt;}
.ws1b_c00075{word-spacing:0.189730pt;}
.ws1e_c00075{word-spacing:0.195063pt;}
.ws1d_c00075{word-spacing:0.195552pt;}
.ws8_c00075{word-spacing:8.182615pt;}
.ws6_c00075{word-spacing:16.630900pt;}
._9_c00075{margin-left:-5.579056pt;}
._6_c00075{margin-left:-3.506835pt;}
._2_c00075{margin-left:-2.125355pt;}
._c_c00075{width:0.931068pt;}
._3_c00075{width:2.656693pt;}
._a_c00075{width:16.843436pt;}
._b_c00075{width:18.437452pt;}
._0_c00075{width:19.500129pt;}
._5_c00075{width:25.982461pt;}
._7_c00075{width:27.842146pt;}
._8_c00075{width:31.348981pt;}
._4_c00075{width:44.178528pt;}
._1_c00075{width:76.513067pt;}
.fs2_c00075{font-size:39.110400pt;}
.fs0_c00075{font-size:53.133867pt;}
.fs1_c00075{font-size:76.513067pt;}
.y0_c00075{bottom:0.000000pt;}
.y31_c00075{bottom:39.333333pt;}
.y30_c00075{bottom:77.317333pt;}
.y2f_c00075{bottom:91.929333pt;}
.y2e_c00075{bottom:106.541333pt;}
.y2d_c00075{bottom:121.153333pt;}
.y2c_c00075{bottom:150.377333pt;}
.y2b_c00075{bottom:164.989333pt;}
.y2a_c00075{bottom:179.601333pt;}
.y29_c00075{bottom:208.824000pt;}
.y28_c00075{bottom:223.436000pt;}
.y27_c00075{bottom:238.048000pt;}
.y26_c00075{bottom:252.660000pt;}
.y25_c00075{bottom:281.884000pt;}
.y24_c00075{bottom:311.108000pt;}
.y23_c00075{bottom:325.720000pt;}
.y22_c00075{bottom:354.942667pt;}
.y21_c00075{bottom:369.554667pt;}
.y20_c00075{bottom:384.166667pt;}
.y1f_c00075{bottom:398.778667pt;}
.y1e_c00075{bottom:428.002667pt;}
.y1d_c00075{bottom:457.226667pt;}
.y1c_c00075{bottom:471.838667pt;}
.y1b_c00075{bottom:501.062667pt;}
.y1a_c00075{bottom:515.673333pt;}
.y19_c00075{bottom:529.953333pt;}
.y18_c00075{bottom:573.076000pt;}
.y17_c00075{bottom:589.017333pt;}
.y16_c00075{bottom:604.957333pt;}
.y15_c00075{bottom:628.986667pt;}
.y14_c00075{bottom:644.926667pt;}
.y13_c00075{bottom:660.866667pt;}
.y12_c00075{bottom:676.808000pt;}
.y11_c00075{bottom:700.837333pt;}
.y10_c00075{bottom:716.777333pt;}
.yf_c00075{bottom:732.717333pt;}
.ye_c00075{bottom:748.657333pt;}
.yd_c00075{bottom:772.688000pt;}
.yc_c00075{bottom:788.628000pt;}
.yb_c00075{bottom:804.568000pt;}
.ya_c00075{bottom:820.508000pt;}
.y9_c00075{bottom:836.448000pt;}
.y8_c00075{bottom:852.389333pt;}
.y7_c00075{bottom:868.329333pt;}
.y6_c00075{bottom:884.269333pt;}
.y5_c00075{bottom:900.209333pt;}
.y4_c00075{bottom:937.957333pt;}
.y3_c00075{bottom:991.018667pt;}
.y2_c00075{bottom:1015.049333pt;}
.y1_c00075{bottom:1030.989333pt;}
.h4_c00075{height:31.280681pt;}
.h5_c00075{height:32.006363pt;}
.h2_c00075{height:46.518078pt;}
.h3_c00075{height:51.855535pt;}
.h0_c00075{height:1122.520000pt;}
.h1_c00075{height:1122.666667pt;}
.w0_c00075{width:793.706667pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:113.385333pt;}
.x2_c00075{left:121.886667pt;}
.x3_c00075{left:133.704000pt;}
.x4_c00075{left:145.522667pt;}
.x5_c00075{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77e7f40a38faa8aaa8e94e47.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.083496;font-style:normal;font-weight:normal;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_029d5cf3912fd1787d73fb28.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_5143962430336153fc8fd747.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_ea2a759a6c59f34c69f1eb51.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_5d99e6255dc8f765c33eb2c8.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00076;src:url('chunks/assets/font_19597a1e8c3172478b3ea7a5.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:1.102051;font-style: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;}
.ls5_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:0.087998px;}
.ls1_c00076{letter-spacing:0.098482px;}
.ls2_c00076{letter-spacing:0.104482px;}
.ls3_c00076{letter-spacing:26.690482px;}
.ls4_c00076{letter-spacing:29.892540px;}
.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:-26.575517px;}
.ws4_c00076{word-spacing:-26.487518px;}
.ws8_c00076{word-spacing:-21.519300px;}
.wsa_c00076{word-spacing:-18.909588px;}
.ws9_c00076{word-spacing:-18.889090px;}
.ws11_c00076{word-spacing:-18.829314px;}
.wse_c00076{word-spacing:-18.769538px;}
.ws12_c00076{word-spacing:-18.709763px;}
.wsf_c00076{word-spacing:-16.258963px;}
.ws10_c00076{word-spacing:-15.661207px;}
.wsb_c00076{word-spacing:-14.764573px;}
.wsd_c00076{word-spacing:-14.166817px;}
.wsc_c00076{word-spacing:-10.580281px;}
.ws6_c00076{word-spacing:0.000000px;}
.ws3_c00076{word-spacing:0.043999px;}
.ws7_c00076{word-spacing:0.046834px;}
.ws1_c00076{word-spacing:0.074350px;}
.ws5_c00076{word-spacing:0.175997px;}
.ws13_c00076{word-spacing:0.213446px;}
.ws2_c00076{word-spacing:0.219446px;}
._2_c00076{margin-left:-3.227882px;}
._4_c00076{margin-left:-1.549390px;}
._0_c00076{width:1.020240px;}
._3_c00076{width:19.965050px;}
._6_c00076{width:25.115190px;}
._5_c00076{width:28.663708px;}
._1_c00076{width:86.077200px;}
.fc5_c00076{color:rgb(0,0,207);}
.fc6_c00076{color:rgb(6,69,173);}
.fc4_c00076{color:rgb(207,92,0);}
.fc3_c00076{color:rgb(79,153,5);}
.fc2_c00076{color:rgb(33,74,135);}
.fc1_c00076{color:rgb(143,89,3);}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:43.999200px;}
.fs2_c00076{font-size:59.775600px;}
.fs1_c00076{font-size:86.077200px;}
.y0_c00076{bottom:0.000000px;}
.y2f_c00076{bottom:44.250000px;}
.y2e_c00076{bottom:114.927000px;}
.y2d_c00076{bottom:131.365500px;}
.y2c_c00076{bottom:147.804000px;}
.y2b_c00076{bottom:163.869000px;}
.y2a_c00076{bottom:210.952500px;}
.y29_c00076{bottom:228.885000px;}
.y28_c00076{bottom:258.397500px;}
.y27_c00076{bottom:276.331500px;}
.y26_c00076{bottom:294.264000px;}
.y25_c00076{bottom:334.983000px;}
.y24_c00076{bottom:361.695000px;}
.y23_c00076{bottom:379.627500px;}
.y22_c00076{bottom:397.560000px;}
.y21_c00076{bottom:439.645500px;}
.y20_c00076{bottom:498.549000px;}
.y1f_c00076{bottom:516.483000px;}
.y1e_c00076{bottom:534.415500px;}
.y1d_c00076{bottom:576.499500px;}
.y1c_c00076{bottom:650.274000px;}
.y1b_c00076{bottom:666.712500px;}
.y1a_c00076{bottom:683.151000px;}
.y19_c00076{bottom:699.589500px;}
.y18_c00076{bottom:732.465000px;}
.y17_c00076{bottom:748.903500px;}
.y16_c00076{bottom:765.342000px;}
.y15_c00076{bottom:781.780500px;}
.y14_c00076{bottom:831.096000px;}
.y13_c00076{bottom:847.534500px;}
.y12_c00076{bottom:863.973000px;}
.y11_c00076{bottom:880.411500px;}
.y10_c00076{bottom:896.848500px;}
.yf_c00076{bottom:913.287000px;}
.ye_c00076{bottom:929.725500px;}
.yd_c00076{bottom:962.602500px;}
.yc_c00076{bottom:979.041000px;}
.yb_c00076{bottom:995.479500px;}
.ya_c00076{bottom:1011.918000px;}
.y9_c00076{bottom:1028.356500px;}
.y8_c00076{bottom:1044.795000px;}
.y7_c00076{bottom:1061.232000px;}
.y6_c00076{bottom:1077.670500px;}
.y5_c00076{bottom:1094.109000px;}
.y4_c00076{bottom:1110.547500px;}
.y3_c00076{bottom:1126.986000px;}
.y2_c00076{bottom:1143.424500px;}
.y1_c00076{bottom:1159.863000px;}
.h3_c00076{height:35.190766px;}
.h4_c00076{height:35.770834px;}
.h2_c00076{height:36.007158px;}
.h6_c00076{height:52.332837px;}
.h5_c00076{height:58.337477px;}
.h0_c00076{height:1262.835000px;}
.h1_c00076{height:1263.000000px;}
.w0_c00076{width:892.920000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x9_c00076{left:127.558500px;}
.x6_c00076{left:137.122500px;}
.x5_c00076{left:150.417000px;}
.xa_c00076{left:152.215500px;}
.x1_c00076{left:163.713000px;}
.xb_c00076{left:164.919000px;}
.x7_c00076{left:223.537500px;}
.x3_c00076{left:243.480000px;}
.x8_c00076{left:250.126500px;}
.x4_c00076{left:349.836000px;}
.x2_c00076{left:436.251000px;}
.xc_c00076{left:438.984000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls5_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:0.078221pt;}
.ls1_c00076{letter-spacing:0.087539pt;}
.ls2_c00076{letter-spacing:0.092873pt;}
.ls3_c00076{letter-spacing:23.724873pt;}
.ls4_c00076{letter-spacing:26.571147pt;}
.ws0_c00076{word-spacing:-23.622682pt;}
.ws4_c00076{word-spacing:-23.544461pt;}
.ws8_c00076{word-spacing:-19.128267pt;}
.wsa_c00076{word-spacing:-16.808523pt;}
.ws9_c00076{word-spacing:-16.790302pt;}
.ws11_c00076{word-spacing:-16.737168pt;}
.wse_c00076{word-spacing:-16.684034pt;}
.ws12_c00076{word-spacing:-16.630900pt;}
.wsf_c00076{word-spacing:-14.452412pt;}
.ws10_c00076{word-spacing:-13.921073pt;}
.wsb_c00076{word-spacing:-13.124065pt;}
.wsd_c00076{word-spacing:-12.592726pt;}
.wsc_c00076{word-spacing:-9.404694pt;}
.ws6_c00076{word-spacing:0.000000pt;}
.ws3_c00076{word-spacing:0.039110pt;}
.ws7_c00076{word-spacing:0.041630pt;}
.ws1_c00076{word-spacing:0.066089pt;}
.ws5_c00076{word-spacing:0.156442pt;}
.ws13_c00076{word-spacing:0.189730pt;}
.ws2_c00076{word-spacing:0.195063pt;}
._2_c00076{margin-left:-2.869229pt;}
._4_c00076{margin-left:-1.377235pt;}
._0_c00076{width:0.906880pt;}
._3_c00076{width:17.746711pt;}
._6_c00076{width:22.324613pt;}
._5_c00076{width:25.478851pt;}
._1_c00076{width:76.513067pt;}
.fs0_c00076{font-size:39.110400pt;}
.fs2_c00076{font-size:53.133867pt;}
.fs1_c00076{font-size:76.513067pt;}
.y0_c00076{bottom:0.000000pt;}
.y2f_c00076{bottom:39.333333pt;}
.y2e_c00076{bottom:102.157333pt;}
.y2d_c00076{bottom:116.769333pt;}
.y2c_c00076{bottom:131.381333pt;}
.y2b_c00076{bottom:145.661333pt;}
.y2a_c00076{bottom:187.513333pt;}
.y29_c00076{bottom:203.453333pt;}
.y28_c00076{bottom:229.686667pt;}
.y27_c00076{bottom:245.628000pt;}
.y26_c00076{bottom:261.568000pt;}
.y25_c00076{bottom:297.762667pt;}
.y24_c00076{bottom:321.506667pt;}
.y23_c00076{bottom:337.446667pt;}
.y22_c00076{bottom:353.386667pt;}
.y21_c00076{bottom:390.796000pt;}
.y20_c00076{bottom:443.154667pt;}
.y1f_c00076{bottom:459.096000pt;}
.y1e_c00076{bottom:475.036000pt;}
.y1d_c00076{bottom:512.444000pt;}
.y1c_c00076{bottom:578.021333pt;}
.y1b_c00076{bottom:592.633333pt;}
.y1a_c00076{bottom:607.245333pt;}
.y19_c00076{bottom:621.857333pt;}
.y18_c00076{bottom:651.080000pt;}
.y17_c00076{bottom:665.692000pt;}
.y16_c00076{bottom:680.304000pt;}
.y15_c00076{bottom:694.916000pt;}
.y14_c00076{bottom:738.752000pt;}
.y13_c00076{bottom:753.364000pt;}
.y12_c00076{bottom:767.976000pt;}
.y11_c00076{bottom:782.588000pt;}
.y10_c00076{bottom:797.198667pt;}
.yf_c00076{bottom:811.810667pt;}
.ye_c00076{bottom:826.422667pt;}
.yd_c00076{bottom:855.646667pt;}
.yc_c00076{bottom:870.258667pt;}
.yb_c00076{bottom:884.870667pt;}
.ya_c00076{bottom:899.482667pt;}
.y9_c00076{bottom:914.094667pt;}
.y8_c00076{bottom:928.706667pt;}
.y7_c00076{bottom:943.317333pt;}
.y6_c00076{bottom:957.929333pt;}
.y5_c00076{bottom:972.541333pt;}
.y4_c00076{bottom:987.153333pt;}
.y3_c00076{bottom:1001.765333pt;}
.y2_c00076{bottom:1016.377333pt;}
.y1_c00076{bottom:1030.989333pt;}
.h3_c00076{height:31.280681pt;}
.h4_c00076{height:31.796297pt;}
.h2_c00076{height:32.006363pt;}
.h6_c00076{height:46.518078pt;}
.h5_c00076{height:51.855535pt;}
.h0_c00076{height:1122.520000pt;}
.h1_c00076{height:1122.666667pt;}
.w0_c00076{width:793.706667pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x9_c00076{left:113.385333pt;}
.x6_c00076{left:121.886667pt;}
.x5_c00076{left:133.704000pt;}
.xa_c00076{left:135.302667pt;}
.x1_c00076{left:145.522667pt;}
.xb_c00076{left:146.594667pt;}
.x7_c00076{left:198.700000pt;}
.x3_c00076{left:216.426667pt;}
.x8_c00076{left:222.334667pt;}
.x4_c00076{left:310.965333pt;}
.x2_c00076{left:387.778667pt;}
.xc_c00076{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1abb6a47caaf2a90612618e1.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.014648;font-style:normal;font-weight:normal;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_c4e3dd074bde97bce0f29891.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.083496;font-style:normal;font-weight:normal;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_08eae8ec772b15e408d1c92c.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.048828;font-style:normal;font-weight:normal;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_19b42fa0d963e4ad9737217c.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls4_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:0.087998px;}
.ls1_c00077{letter-spacing:0.098482px;}
.ls2_c00077{letter-spacing:0.104482px;}
.ls3_c00077{letter-spacing:0.146482px;}
.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:-26.575517px;}
.ws3_c00077{word-spacing:-26.487518px;}
.ws0_c00077{word-spacing:0.000000px;}
.ws2_c00077{word-spacing:0.175997px;}
._0_c00077{width:1.046352px;}
.fc5_c00077{color:rgb(0,0,207);}
.fc4_c00077{color:rgb(207,92,0);}
.fc3_c00077{color:rgb(79,153,5);}
.fc2_c00077{color:rgb(33,74,135);}
.fc1_c00077{color:rgb(0,0,0);}
.fc0_c00077{color:rgb(143,89,3);}
.fs0_c00077{font-size:43.999200px;}
.fs1_c00077{font-size:59.775600px;}
.y0_c00077{bottom:0.000000px;}
.y37_c00077{bottom:44.250000px;}
.y36_c00077{bottom:107.808000px;}
.y35_c00077{bottom:124.246500px;}
.y34_c00077{bottom:140.685000px;}
.y33_c00077{bottom:157.123500px;}
.y32_c00077{bottom:173.562000px;}
.y31_c00077{bottom:190.000500px;}
.y30_c00077{bottom:206.437500px;}
.y2f_c00077{bottom:272.191500px;}
.y2e_c00077{bottom:288.630000px;}
.y2d_c00077{bottom:305.068500px;}
.y2c_c00077{bottom:321.507000px;}
.y2b_c00077{bottom:337.945500px;}
.y2a_c00077{bottom:354.384000px;}
.y29_c00077{bottom:387.259500px;}
.y28_c00077{bottom:420.136500px;}
.y27_c00077{bottom:436.575000px;}
.y26_c00077{bottom:453.013500px;}
.y25_c00077{bottom:469.452000px;}
.y24_c00077{bottom:502.329000px;}
.y23_c00077{bottom:518.767500px;}
.y22_c00077{bottom:535.206000px;}
.y21_c00077{bottom:551.643000px;}
.y20_c00077{bottom:568.081500px;}
.y1f_c00077{bottom:584.520000px;}
.y1e_c00077{bottom:600.958500px;}
.y1d_c00077{bottom:617.397000px;}
.y1c_c00077{bottom:633.835500px;}
.y1b_c00077{bottom:650.274000px;}
.y1a_c00077{bottom:683.151000px;}
.y19_c00077{bottom:699.589500px;}
.y18_c00077{bottom:716.028000px;}
.y17_c00077{bottom:732.465000px;}
.y16_c00077{bottom:748.903500px;}
.y15_c00077{bottom:765.342000px;}
.y14_c00077{bottom:781.780500px;}
.y13_c00077{bottom:798.219000px;}
.y12_c00077{bottom:814.657500px;}
.y11_c00077{bottom:831.096000px;}
.y10_c00077{bottom:863.973000px;}
.yf_c00077{bottom:880.411500px;}
.ye_c00077{bottom:896.848500px;}
.yd_c00077{bottom:913.287000px;}
.yc_c00077{bottom:929.725500px;}
.yb_c00077{bottom:946.164000px;}
.ya_c00077{bottom:962.602500px;}
.y9_c00077{bottom:979.041000px;}
.y8_c00077{bottom:995.479500px;}
.y7_c00077{bottom:1011.918000px;}
.y6_c00077{bottom:1028.356500px;}
.y5_c00077{bottom:1044.795000px;}
.y4_c00077{bottom:1094.109000px;}
.y3_c00077{bottom:1126.986000px;}
.y2_c00077{bottom:1143.424500px;}
.y1_c00077{bottom:1159.863000px;}
.h2_c00077{height:35.190766px;}
.h3_c00077{height:36.007158px;}
.h4_c00077{height:52.332837px;}
.h0_c00077{height:1262.835000px;}
.h1_c00077{height:1263.000000px;}
.w0_c00077{width:892.920000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:137.122500px;}
.x7_c00077{left:216.891000px;}
.x6_c00077{left:290.010000px;}
.x3_c00077{left:309.952500px;}
.x5_c00077{left:316.599000px;}
.x2_c00077{left:336.541500px;}
.x4_c00077{left:343.188000px;}
.x8_c00077{left:438.984000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls4_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:0.078221pt;}
.ls1_c00077{letter-spacing:0.087539pt;}
.ls2_c00077{letter-spacing:0.092873pt;}
.ls3_c00077{letter-spacing:0.130206pt;}
.ws1_c00077{word-spacing:-23.622682pt;}
.ws3_c00077{word-spacing:-23.544461pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.ws2_c00077{word-spacing:0.156442pt;}
._0_c00077{width:0.930091pt;}
.fs0_c00077{font-size:39.110400pt;}
.fs1_c00077{font-size:53.133867pt;}
.y0_c00077{bottom:0.000000pt;}
.y37_c00077{bottom:39.333333pt;}
.y36_c00077{bottom:95.829333pt;}
.y35_c00077{bottom:110.441333pt;}
.y34_c00077{bottom:125.053333pt;}
.y33_c00077{bottom:139.665333pt;}
.y32_c00077{bottom:154.277333pt;}
.y31_c00077{bottom:168.889333pt;}
.y30_c00077{bottom:183.500000pt;}
.y2f_c00077{bottom:241.948000pt;}
.y2e_c00077{bottom:256.560000pt;}
.y2d_c00077{bottom:271.172000pt;}
.y2c_c00077{bottom:285.784000pt;}
.y2b_c00077{bottom:300.396000pt;}
.y2a_c00077{bottom:315.008000pt;}
.y29_c00077{bottom:344.230667pt;}
.y28_c00077{bottom:373.454667pt;}
.y27_c00077{bottom:388.066667pt;}
.y26_c00077{bottom:402.678667pt;}
.y25_c00077{bottom:417.290667pt;}
.y24_c00077{bottom:446.514667pt;}
.y23_c00077{bottom:461.126667pt;}
.y22_c00077{bottom:475.738667pt;}
.y21_c00077{bottom:490.349333pt;}
.y20_c00077{bottom:504.961333pt;}
.y1f_c00077{bottom:519.573333pt;}
.y1e_c00077{bottom:534.185333pt;}
.y1d_c00077{bottom:548.797333pt;}
.y1c_c00077{bottom:563.409333pt;}
.y1b_c00077{bottom:578.021333pt;}
.y1a_c00077{bottom:607.245333pt;}
.y19_c00077{bottom:621.857333pt;}
.y18_c00077{bottom:636.469333pt;}
.y17_c00077{bottom:651.080000pt;}
.y16_c00077{bottom:665.692000pt;}
.y15_c00077{bottom:680.304000pt;}
.y14_c00077{bottom:694.916000pt;}
.y13_c00077{bottom:709.528000pt;}
.y12_c00077{bottom:724.140000pt;}
.y11_c00077{bottom:738.752000pt;}
.y10_c00077{bottom:767.976000pt;}
.yf_c00077{bottom:782.588000pt;}
.ye_c00077{bottom:797.198667pt;}
.yd_c00077{bottom:811.810667pt;}
.yc_c00077{bottom:826.422667pt;}
.yb_c00077{bottom:841.034667pt;}
.ya_c00077{bottom:855.646667pt;}
.y9_c00077{bottom:870.258667pt;}
.y8_c00077{bottom:884.870667pt;}
.y7_c00077{bottom:899.482667pt;}
.y6_c00077{bottom:914.094667pt;}
.y5_c00077{bottom:928.706667pt;}
.y4_c00077{bottom:972.541333pt;}
.y3_c00077{bottom:1001.765333pt;}
.y2_c00077{bottom:1016.377333pt;}
.y1_c00077{bottom:1030.989333pt;}
.h2_c00077{height:31.280681pt;}
.h3_c00077{height:32.006363pt;}
.h4_c00077{height:46.518078pt;}
.h0_c00077{height:1122.520000pt;}
.h1_c00077{height:1122.666667pt;}
.w0_c00077{width:793.706667pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:121.886667pt;}
.x7_c00077{left:192.792000pt;}
.x6_c00077{left:257.786667pt;}
.x3_c00077{left:275.513333pt;}
.x5_c00077{left:281.421333pt;}
.x2_c00077{left:299.148000pt;}
.x4_c00077{left:305.056000pt;}
.x8_c00077{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b36cca088b520ffa765fbba.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:0.893555;font-style:normal;font-weight:normal;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_b0725c21d79d68c0c596d998.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_c7a3bebdb97a5fba91a34231.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_9945753218db1b64dec91a1b.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_80517cf26ec5986f65a0da6c.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.083496;font-style: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;}
.ls3_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:0.087998px;}
.ls2_c00078{letter-spacing:0.098482px;}
.ls0_c00078{letter-spacing:0.104482px;}
.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;}
}
.ws1_c00078{word-spacing:-37.180650px;}
.ws0_c00078{word-spacing:-30.993750px;}
.ws15_c00078{word-spacing:-26.575517px;}
.ws14_c00078{word-spacing:-26.487518px;}
.ws11_c00078{word-spacing:-23.790689px;}
.wsf_c00078{word-spacing:-23.781588px;}
.wse_c00078{word-spacing:-23.755513px;}
.ws10_c00078{word-spacing:-23.730913px;}
.ws12_c00078{word-spacing:-23.133157px;}
.wsa_c00078{word-spacing:-21.877870px;}
.ws6_c00078{word-spacing:-21.605377px;}
.wsc_c00078{word-spacing:-19.666172px;}
.ws5_c00078{word-spacing:-18.769538px;}
.ws9_c00078{word-spacing:-18.351109px;}
.ws2_c00078{word-spacing:-18.112007px;}
.wsd_c00078{word-spacing:-17.095822px;}
.ws4_c00078{word-spacing:-16.079636px;}
.ws7_c00078{word-spacing:-15.720983px;}
.ws3_c00078{word-spacing:-15.362329px;}
.wsb_c00078{word-spacing:-14.047266px;}
.ws8_c00078{word-spacing:-11.955120px;}
.ws18_c00078{word-spacing:0.000000px;}
.ws16_c00078{word-spacing:0.043999px;}
.ws13_c00078{word-spacing:0.175997px;}
.ws17_c00078{word-spacing:0.213446px;}
._5_c00078{margin-left:-7.833025px;}
._9_c00078{margin-left:-5.426312px;}
._0_c00078{margin-left:-2.677007px;}
._6_c00078{margin-left:-1.463312px;}
._a_c00078{width:1.047451px;}
._8_c00078{width:18.948865px;}
._2_c00078{width:20.084602px;}
._1_c00078{width:21.937645px;}
._3_c00078{width:27.735878px;}
._7_c00078{width:40.228979px;}
._4_c00078{width:86.077200px;}
.fc6_c00078{color:rgb(0,0,207);}
.fc5_c00078{color:rgb(79,153,5);}
.fc3_c00078{color:rgb(33,74,135);}
.fc2_c00078{color:rgb(143,89,3);}
.fc4_c00078{color:rgb(207,92,0);}
.fc1_c00078{color:rgb(6,69,173);}
.fc0_c00078{color:rgb(0,0,0);}
.fs4_c00078{font-size:43.999200px;}
.fs2_c00078{font-size:59.775600px;}
.fs3_c00078{font-size:86.077200px;}
.fs0_c00078{font-size:123.975000px;}
.fs1_c00078{font-size:148.722600px;}
.y0_c00078{bottom:0.000000px;}
.y26_c00078{bottom:44.250000px;}
.y25_c00078{bottom:86.982000px;}
.y24_c00078{bottom:103.420500px;}
.y23_c00078{bottom:119.859000px;}
.y22_c00078{bottom:136.297500px;}
.y21_c00078{bottom:169.174500px;}
.y20_c00078{bottom:185.613000px;}
.y1f_c00078{bottom:218.490000px;}
.y1e_c00078{bottom:234.927000px;}
.y1d_c00078{bottom:267.804000px;}
.y1c_c00078{bottom:284.242500px;}
.y1b_c00078{bottom:317.119500px;}
.y1a_c00078{bottom:349.996500px;}
.y19_c00078{bottom:366.435000px;}
.y18_c00078{bottom:399.310500px;}
.y17_c00078{bottom:415.749000px;}
.y16_c00078{bottom:432.187500px;}
.y15_c00078{bottom:448.626000px;}
.y14_c00078{bottom:465.064500px;}
.y13_c00078{bottom:481.503000px;}
.y12_c00078{bottom:497.568000px;}
.y11_c00078{bottom:546.772500px;}
.y10_c00078{bottom:564.705000px;}
.yf_c00078{bottom:582.639000px;}
.ye_c00078{bottom:600.571500px;}
.yd_c00078{bottom:618.504000px;}
.yc_c00078{bottom:636.436500px;}
.yb_c00078{bottom:654.369000px;}
.ya_c00078{bottom:672.301500px;}
.y9_c00078{bottom:690.235500px;}
.y8_c00078{bottom:708.168000px;}
.y7_c00078{bottom:751.018500px;}
.y6_c00078{bottom:811.569000px;}
.y5_c00078{bottom:829.503000px;}
.y4_c00078{bottom:847.435500px;}
.y3_c00078{bottom:865.368000px;}
.y2_c00078{bottom:954.331500px;}
.y1_c00078{bottom:1038.417000px;}
.h6_c00078{height:35.190766px;}
.h7_c00078{height:36.007158px;}
.h4_c00078{height:52.332837px;}
.h5_c00078{height:58.337477px;}
.h2_c00078{height:84.022119px;}
.h3_c00078{height:100.794418px;}
.h0_c00078{height:1262.835000px;}
.h1_c00078{height:1263.000000px;}
.w0_c00078{width:892.920000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:127.558500px;}
.x2_c00078{left:137.122500px;}
.x3_c00078{left:438.984000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls3_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:0.078221pt;}
.ls2_c00078{letter-spacing:0.087539pt;}
.ls0_c00078{letter-spacing:0.092873pt;}
.ws1_c00078{word-spacing:-33.049467pt;}
.ws0_c00078{word-spacing:-27.550000pt;}
.ws15_c00078{word-spacing:-23.622682pt;}
.ws14_c00078{word-spacing:-23.544461pt;}
.ws11_c00078{word-spacing:-21.147279pt;}
.wsf_c00078{word-spacing:-21.139189pt;}
.wse_c00078{word-spacing:-21.116012pt;}
.ws10_c00078{word-spacing:-21.094145pt;}
.ws12_c00078{word-spacing:-20.562806pt;}
.wsa_c00078{word-spacing:-19.446995pt;}
.ws6_c00078{word-spacing:-19.204780pt;}
.wsc_c00078{word-spacing:-17.481042pt;}
.ws5_c00078{word-spacing:-16.684034pt;}
.ws9_c00078{word-spacing:-16.312097pt;}
.ws2_c00078{word-spacing:-16.099562pt;}
.wsd_c00078{word-spacing:-15.196286pt;}
.ws4_c00078{word-spacing:-14.293010pt;}
.ws7_c00078{word-spacing:-13.974207pt;}
.ws3_c00078{word-spacing:-13.655404pt;}
.wsb_c00078{word-spacing:-12.486459pt;}
.ws8_c00078{word-spacing:-10.626773pt;}
.ws18_c00078{word-spacing:0.000000pt;}
.ws16_c00078{word-spacing:0.039110pt;}
.ws13_c00078{word-spacing:0.156442pt;}
.ws17_c00078{word-spacing:0.189730pt;}
._5_c00078{margin-left:-6.962689pt;}
._9_c00078{margin-left:-4.823389pt;}
._0_c00078{margin-left:-2.379562pt;}
._6_c00078{margin-left:-1.300722pt;}
._a_c00078{width:0.931068pt;}
._8_c00078{width:16.843436pt;}
._2_c00078{width:17.852979pt;}
._1_c00078{width:19.500129pt;}
._3_c00078{width:24.654114pt;}
._7_c00078{width:35.759092pt;}
._4_c00078{width:76.513067pt;}
.fs4_c00078{font-size:39.110400pt;}
.fs2_c00078{font-size:53.133867pt;}
.fs3_c00078{font-size:76.513067pt;}
.fs0_c00078{font-size:110.200000pt;}
.fs1_c00078{font-size:132.197867pt;}
.y0_c00078{bottom:0.000000pt;}
.y26_c00078{bottom:39.333333pt;}
.y25_c00078{bottom:77.317333pt;}
.y24_c00078{bottom:91.929333pt;}
.y23_c00078{bottom:106.541333pt;}
.y22_c00078{bottom:121.153333pt;}
.y21_c00078{bottom:150.377333pt;}
.y20_c00078{bottom:164.989333pt;}
.y1f_c00078{bottom:194.213333pt;}
.y1e_c00078{bottom:208.824000pt;}
.y1d_c00078{bottom:238.048000pt;}
.y1c_c00078{bottom:252.660000pt;}
.y1b_c00078{bottom:281.884000pt;}
.y1a_c00078{bottom:311.108000pt;}
.y19_c00078{bottom:325.720000pt;}
.y18_c00078{bottom:354.942667pt;}
.y17_c00078{bottom:369.554667pt;}
.y16_c00078{bottom:384.166667pt;}
.y15_c00078{bottom:398.778667pt;}
.y14_c00078{bottom:413.390667pt;}
.y13_c00078{bottom:428.002667pt;}
.y12_c00078{bottom:442.282667pt;}
.y11_c00078{bottom:486.020000pt;}
.y10_c00078{bottom:501.960000pt;}
.yf_c00078{bottom:517.901333pt;}
.ye_c00078{bottom:533.841333pt;}
.yd_c00078{bottom:549.781333pt;}
.yc_c00078{bottom:565.721333pt;}
.yb_c00078{bottom:581.661333pt;}
.ya_c00078{bottom:597.601333pt;}
.y9_c00078{bottom:613.542667pt;}
.y8_c00078{bottom:629.482667pt;}
.y7_c00078{bottom:667.572000pt;}
.y6_c00078{bottom:721.394667pt;}
.y5_c00078{bottom:737.336000pt;}
.y4_c00078{bottom:753.276000pt;}
.y3_c00078{bottom:769.216000pt;}
.y2_c00078{bottom:848.294667pt;}
.y1_c00078{bottom:923.037333pt;}
.h6_c00078{height:31.280681pt;}
.h7_c00078{height:32.006363pt;}
.h4_c00078{height:46.518078pt;}
.h5_c00078{height:51.855535pt;}
.h2_c00078{height:74.686328pt;}
.h3_c00078{height:89.595039pt;}
.h0_c00078{height:1122.520000pt;}
.h1_c00078{height:1122.666667pt;}
.w0_c00078{width:793.706667pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:113.385333pt;}
.x2_c00078{left:121.886667pt;}
.x3_c00078{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61444c3d0fa230c03e6933e0.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.083496;font-style:normal;font-weight:normal;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_68a976a05e694d480959fb6f.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.048828;font-style:normal;font-weight:normal;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_e0a873d44b1e378bb7724369.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.014648;font-style:normal;font-weight:normal;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_61eaf60ddeecb041c335db0b.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.102051;font-style:normal;font-weight:normal;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_64c5eef5cf2a9b081597d7a0.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:0.893555;font-style: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;}
.ls3_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.087998px;}
.ls2_c00079{letter-spacing:0.098482px;}
.ls1_c00079{letter-spacing:0.104482px;}
.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;}
}
.wsd_c00079{word-spacing:-29.887800px;}
.ws0_c00079{word-spacing:-26.575517px;}
.ws1_c00079{word-spacing:-26.487518px;}
.ws7_c00079{word-spacing:-23.730913px;}
.wsc_c00079{word-spacing:-20.443255px;}
.ws9_c00079{word-spacing:-18.829314px;}
.ws6_c00079{word-spacing:-18.769538px;}
.ws8_c00079{word-spacing:-17.693578px;}
.ws5_c00079{word-spacing:-16.318739px;}
.wsb_c00079{word-spacing:-16.258963px;}
.wsa_c00079{word-spacing:-15.362329px;}
.ws4_c00079{word-spacing:0.000000px;}
.ws3_c00079{word-spacing:0.043999px;}
.ws2_c00079{word-spacing:0.175997px;}
.wse_c00079{word-spacing:0.213446px;}
._3_c00079{margin-left:-3.825638px;}
._4_c00079{margin-left:-2.570351px;}
._0_c00079{width:1.017650px;}
._2_c00079{width:11.118262px;}
._5_c00079{width:19.367294px;}
._1_c00079{width:29.886300px;}
.fc5_c00079{color:rgb(207,92,0);}
.fc4_c00079{color:rgb(79,153,5);}
.fc3_c00079{color:rgb(0,0,207);}
.fc2_c00079{color:rgb(33,74,135);}
.fc1_c00079{color:rgb(143,89,3);}
.fc0_c00079{color:rgb(0,0,0);}
.fs0_c00079{font-size:43.999200px;}
.fs1_c00079{font-size:59.775600px;}
.y0_c00079{bottom:0.000000px;}
.y32_c00079{bottom:44.250000px;}
.y31_c00079{bottom:82.051500px;}
.y30_c00079{bottom:114.927000px;}
.y2f_c00079{bottom:147.804000px;}
.y2e_c00079{bottom:164.242500px;}
.y2d_c00079{bottom:197.119500px;}
.y2c_c00079{bottom:213.558000px;}
.y2b_c00079{bottom:229.623000px;}
.y2a_c00079{bottom:277.093500px;}
.y29_c00079{bottom:295.026000px;}
.y28_c00079{bottom:324.669000px;}
.y27_c00079{bottom:342.601500px;}
.y26_c00079{bottom:372.244500px;}
.y25_c00079{bottom:390.177000px;}
.y24_c00079{bottom:419.820000px;}
.y23_c00079{bottom:437.752500px;}
.y22_c00079{bottom:467.395500px;}
.y21_c00079{bottom:508.503000px;}
.y20_c00079{bottom:526.435500px;}
.y1f_c00079{bottom:568.081500px;}
.y1e_c00079{bottom:584.520000px;}
.y1d_c00079{bottom:600.958500px;}
.y1c_c00079{bottom:617.397000px;}
.y1b_c00079{bottom:633.835500px;}
.y1a_c00079{bottom:650.274000px;}
.y19_c00079{bottom:666.712500px;}
.y18_c00079{bottom:683.151000px;}
.y17_c00079{bottom:699.589500px;}
.y16_c00079{bottom:716.028000px;}
.y15_c00079{bottom:732.465000px;}
.y14_c00079{bottom:748.903500px;}
.y13_c00079{bottom:765.342000px;}
.y12_c00079{bottom:781.780500px;}
.y11_c00079{bottom:814.657500px;}
.y10_c00079{bottom:831.096000px;}
.yf_c00079{bottom:847.534500px;}
.ye_c00079{bottom:863.973000px;}
.yd_c00079{bottom:880.411500px;}
.yc_c00079{bottom:913.287000px;}
.yb_c00079{bottom:929.725500px;}
.ya_c00079{bottom:962.602500px;}
.y9_c00079{bottom:979.041000px;}
.y8_c00079{bottom:995.479500px;}
.y7_c00079{bottom:1011.918000px;}
.y6_c00079{bottom:1028.356500px;}
.y5_c00079{bottom:1044.795000px;}
.y4_c00079{bottom:1094.109000px;}
.y3_c00079{bottom:1110.547500px;}
.y2_c00079{bottom:1126.986000px;}
.y1_c00079{bottom:1159.863000px;}
.h3_c00079{height:35.190766px;}
.h2_c00079{height:36.007158px;}
.h4_c00079{height:52.332837px;}
.h0_c00079{height:1262.835000px;}
.h1_c00079{height:1263.000000px;}
.w0_c00079{width:892.920000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x3_c00079{left:127.558500px;}
.x1_c00079{left:137.122500px;}
.x4_c00079{left:146.239500px;}
.x5_c00079{left:164.919000px;}
.x2_c00079{left:236.832000px;}
.x6_c00079{left:438.984000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls3_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.078221pt;}
.ls2_c00079{letter-spacing:0.087539pt;}
.ls1_c00079{letter-spacing:0.092873pt;}
.wsd_c00079{word-spacing:-26.566933pt;}
.ws0_c00079{word-spacing:-23.622682pt;}
.ws1_c00079{word-spacing:-23.544461pt;}
.ws7_c00079{word-spacing:-21.094145pt;}
.wsc_c00079{word-spacing:-18.171782pt;}
.ws9_c00079{word-spacing:-16.737168pt;}
.ws6_c00079{word-spacing:-16.684034pt;}
.ws8_c00079{word-spacing:-15.727625pt;}
.ws5_c00079{word-spacing:-14.505546pt;}
.wsb_c00079{word-spacing:-14.452412pt;}
.wsa_c00079{word-spacing:-13.655404pt;}
.ws4_c00079{word-spacing:0.000000pt;}
.ws3_c00079{word-spacing:0.039110pt;}
.ws2_c00079{word-spacing:0.156442pt;}
.wse_c00079{word-spacing:0.189730pt;}
._3_c00079{margin-left:-3.400567pt;}
._4_c00079{margin-left:-2.284756pt;}
._0_c00079{width:0.904578pt;}
._2_c00079{width:9.882899pt;}
._5_c00079{width:17.215373pt;}
._1_c00079{width:26.565600pt;}
.fs0_c00079{font-size:39.110400pt;}
.fs1_c00079{font-size:53.133867pt;}
.y0_c00079{bottom:0.000000pt;}
.y32_c00079{bottom:39.333333pt;}
.y31_c00079{bottom:72.934667pt;}
.y30_c00079{bottom:102.157333pt;}
.y2f_c00079{bottom:131.381333pt;}
.y2e_c00079{bottom:145.993333pt;}
.y2d_c00079{bottom:175.217333pt;}
.y2c_c00079{bottom:189.829333pt;}
.y2b_c00079{bottom:204.109333pt;}
.y2a_c00079{bottom:246.305333pt;}
.y29_c00079{bottom:262.245333pt;}
.y28_c00079{bottom:288.594667pt;}
.y27_c00079{bottom:304.534667pt;}
.y26_c00079{bottom:330.884000pt;}
.y25_c00079{bottom:346.824000pt;}
.y24_c00079{bottom:373.173333pt;}
.y23_c00079{bottom:389.113333pt;}
.y22_c00079{bottom:415.462667pt;}
.y21_c00079{bottom:452.002667pt;}
.y20_c00079{bottom:467.942667pt;}
.y1f_c00079{bottom:504.961333pt;}
.y1e_c00079{bottom:519.573333pt;}
.y1d_c00079{bottom:534.185333pt;}
.y1c_c00079{bottom:548.797333pt;}
.y1b_c00079{bottom:563.409333pt;}
.y1a_c00079{bottom:578.021333pt;}
.y19_c00079{bottom:592.633333pt;}
.y18_c00079{bottom:607.245333pt;}
.y17_c00079{bottom:621.857333pt;}
.y16_c00079{bottom:636.469333pt;}
.y15_c00079{bottom:651.080000pt;}
.y14_c00079{bottom:665.692000pt;}
.y13_c00079{bottom:680.304000pt;}
.y12_c00079{bottom:694.916000pt;}
.y11_c00079{bottom:724.140000pt;}
.y10_c00079{bottom:738.752000pt;}
.yf_c00079{bottom:753.364000pt;}
.ye_c00079{bottom:767.976000pt;}
.yd_c00079{bottom:782.588000pt;}
.yc_c00079{bottom:811.810667pt;}
.yb_c00079{bottom:826.422667pt;}
.ya_c00079{bottom:855.646667pt;}
.y9_c00079{bottom:870.258667pt;}
.y8_c00079{bottom:884.870667pt;}
.y7_c00079{bottom:899.482667pt;}
.y6_c00079{bottom:914.094667pt;}
.y5_c00079{bottom:928.706667pt;}
.y4_c00079{bottom:972.541333pt;}
.y3_c00079{bottom:987.153333pt;}
.y2_c00079{bottom:1001.765333pt;}
.y1_c00079{bottom:1030.989333pt;}
.h3_c00079{height:31.280681pt;}
.h2_c00079{height:32.006363pt;}
.h4_c00079{height:46.518078pt;}
.h0_c00079{height:1122.520000pt;}
.h1_c00079{height:1122.666667pt;}
.w0_c00079{width:793.706667pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x3_c00079{left:113.385333pt;}
.x1_c00079{left:121.886667pt;}
.x4_c00079{left:129.990667pt;}
.x5_c00079{left:146.594667pt;}
.x2_c00079{left:210.517333pt;}
.x6_c00079{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5e1ec3e24040d8ec52c1515.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.083496;font-style:normal;font-weight:normal;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_87f4adf233764825904a32c5.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.048828;font-style:normal;font-weight:normal;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_bdad18e7406211f355c53493.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.014648;font-style:normal;font-weight:normal;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_36b1203c6f3b5e1727bc0e05.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_ff62fbebf534f2dc1f0a2e49.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls4_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:0.087998px;}
.ls2_c00080{letter-spacing:0.098482px;}
.ls1_c00080{letter-spacing:0.104482px;}
.ls3_c00080{letter-spacing:26.690482px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:-26.575517px;}
.ws5_c00080{word-spacing:-26.487518px;}
.wsc_c00080{word-spacing:-19.905275px;}
.wsd_c00080{word-spacing:-18.769538px;}
.wsb_c00080{word-spacing:-15.960085px;}
.ws2_c00080{word-spacing:0.000000px;}
.ws4_c00080{word-spacing:0.043999px;}
.ws8_c00080{word-spacing:0.047383px;}
.ws6_c00080{word-spacing:0.053383px;}
.wsa_c00080{word-spacing:0.080899px;}
.ws1_c00080{word-spacing:0.175997px;}
.ws9_c00080{word-spacing:0.212897px;}
.ws3_c00080{word-spacing:0.218897px;}
.ws7_c00080{word-spacing:0.219446px;}
._0_c00080{width:1.013717px;}
._1_c00080{width:18.889090px;}
._2_c00080{width:19.965050px;}
.fc5_c00080{color:rgb(207,92,0);}
.fc4_c00080{color:rgb(0,0,207);}
.fc3_c00080{color:rgb(79,153,5);}
.fc2_c00080{color:rgb(33,74,135);}
.fc1_c00080{color:rgb(143,89,3);}
.fc0_c00080{color:rgb(0,0,0);}
.fs0_c00080{font-size:43.999200px;}
.fs1_c00080{font-size:59.775600px;}
.y0_c00080{bottom:0.000000px;}
.y38_c00080{bottom:44.250000px;}
.y37_c00080{bottom:82.051500px;}
.y36_c00080{bottom:99.984000px;}
.y35_c00080{bottom:117.916500px;}
.y34_c00080{bottom:190.000500px;}
.y33_c00080{bottom:206.437500px;}
.y32_c00080{bottom:222.876000px;}
.y31_c00080{bottom:239.314500px;}
.y30_c00080{bottom:255.753000px;}
.y2f_c00080{bottom:272.191500px;}
.y2e_c00080{bottom:305.068500px;}
.y2d_c00080{bottom:337.945500px;}
.y2c_c00080{bottom:354.384000px;}
.y2b_c00080{bottom:370.822500px;}
.y2a_c00080{bottom:387.259500px;}
.y29_c00080{bottom:403.698000px;}
.y28_c00080{bottom:420.136500px;}
.y27_c00080{bottom:436.575000px;}
.y26_c00080{bottom:453.013500px;}
.y25_c00080{bottom:469.452000px;}
.y24_c00080{bottom:485.890500px;}
.y23_c00080{bottom:518.767500px;}
.y22_c00080{bottom:535.206000px;}
.y21_c00080{bottom:551.643000px;}
.y20_c00080{bottom:568.081500px;}
.y1f_c00080{bottom:600.958500px;}
.y1e_c00080{bottom:617.397000px;}
.y1d_c00080{bottom:633.835500px;}
.y1c_c00080{bottom:650.274000px;}
.y1b_c00080{bottom:666.712500px;}
.y1a_c00080{bottom:699.589500px;}
.y19_c00080{bottom:716.028000px;}
.y18_c00080{bottom:732.465000px;}
.y17_c00080{bottom:748.903500px;}
.y16_c00080{bottom:765.342000px;}
.y15_c00080{bottom:781.780500px;}
.y14_c00080{bottom:798.219000px;}
.y13_c00080{bottom:831.096000px;}
.y12_c00080{bottom:847.534500px;}
.y11_c00080{bottom:863.973000px;}
.y10_c00080{bottom:880.411500px;}
.yf_c00080{bottom:913.287000px;}
.ye_c00080{bottom:929.725500px;}
.yd_c00080{bottom:946.164000px;}
.yc_c00080{bottom:962.602500px;}
.yb_c00080{bottom:979.041000px;}
.ya_c00080{bottom:995.479500px;}
.y9_c00080{bottom:1011.918000px;}
.y8_c00080{bottom:1028.356500px;}
.y7_c00080{bottom:1044.795000px;}
.y6_c00080{bottom:1061.232000px;}
.y5_c00080{bottom:1077.670500px;}
.y4_c00080{bottom:1094.109000px;}
.y3_c00080{bottom:1110.547500px;}
.y2_c00080{bottom:1126.986000px;}
.y1_c00080{bottom:1159.863000px;}
.h3_c00080{height:35.190766px;}
.h4_c00080{height:35.770834px;}
.h2_c00080{height:36.007158px;}
.h5_c00080{height:52.332837px;}
.h0_c00080{height:1262.835000px;}
.h1_c00080{height:1263.000000px;}
.w0_c00080{width:892.920000px;}
.w1_c00080{width:893.250000px;}
.x0_c00080{left:0.000000px;}
.x7_c00080{left:127.558500px;}
.x1_c00080{left:137.122500px;}
.x2_c00080{left:150.417000px;}
.x4_c00080{left:196.948500px;}
.x5_c00080{left:236.832000px;}
.x3_c00080{left:256.774500px;}
.x6_c00080{left:323.247000px;}
.x8_c00080{left:438.984000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls4_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:0.078221pt;}
.ls2_c00080{letter-spacing:0.087539pt;}
.ls1_c00080{letter-spacing:0.092873pt;}
.ls3_c00080{letter-spacing:23.724873pt;}
.ws0_c00080{word-spacing:-23.622682pt;}
.ws5_c00080{word-spacing:-23.544461pt;}
.wsc_c00080{word-spacing:-17.693578pt;}
.wsd_c00080{word-spacing:-16.684034pt;}
.wsb_c00080{word-spacing:-14.186742pt;}
.ws2_c00080{word-spacing:0.000000pt;}
.ws4_c00080{word-spacing:0.039110pt;}
.ws8_c00080{word-spacing:0.042118pt;}
.ws6_c00080{word-spacing:0.047452pt;}
.wsa_c00080{word-spacing:0.071910pt;}
.ws1_c00080{word-spacing:0.156442pt;}
.ws9_c00080{word-spacing:0.189242pt;}
.ws3_c00080{word-spacing:0.194575pt;}
.ws7_c00080{word-spacing:0.195063pt;}
._0_c00080{width:0.901082pt;}
._1_c00080{width:16.790302pt;}
._2_c00080{width:17.746711pt;}
.fs0_c00080{font-size:39.110400pt;}
.fs1_c00080{font-size:53.133867pt;}
.y0_c00080{bottom:0.000000pt;}
.y38_c00080{bottom:39.333333pt;}
.y37_c00080{bottom:72.934667pt;}
.y36_c00080{bottom:88.874667pt;}
.y35_c00080{bottom:104.814667pt;}
.y34_c00080{bottom:168.889333pt;}
.y33_c00080{bottom:183.500000pt;}
.y32_c00080{bottom:198.112000pt;}
.y31_c00080{bottom:212.724000pt;}
.y30_c00080{bottom:227.336000pt;}
.y2f_c00080{bottom:241.948000pt;}
.y2e_c00080{bottom:271.172000pt;}
.y2d_c00080{bottom:300.396000pt;}
.y2c_c00080{bottom:315.008000pt;}
.y2b_c00080{bottom:329.620000pt;}
.y2a_c00080{bottom:344.230667pt;}
.y29_c00080{bottom:358.842667pt;}
.y28_c00080{bottom:373.454667pt;}
.y27_c00080{bottom:388.066667pt;}
.y26_c00080{bottom:402.678667pt;}
.y25_c00080{bottom:417.290667pt;}
.y24_c00080{bottom:431.902667pt;}
.y23_c00080{bottom:461.126667pt;}
.y22_c00080{bottom:475.738667pt;}
.y21_c00080{bottom:490.349333pt;}
.y20_c00080{bottom:504.961333pt;}
.y1f_c00080{bottom:534.185333pt;}
.y1e_c00080{bottom:548.797333pt;}
.y1d_c00080{bottom:563.409333pt;}
.y1c_c00080{bottom:578.021333pt;}
.y1b_c00080{bottom:592.633333pt;}
.y1a_c00080{bottom:621.857333pt;}
.y19_c00080{bottom:636.469333pt;}
.y18_c00080{bottom:651.080000pt;}
.y17_c00080{bottom:665.692000pt;}
.y16_c00080{bottom:680.304000pt;}
.y15_c00080{bottom:694.916000pt;}
.y14_c00080{bottom:709.528000pt;}
.y13_c00080{bottom:738.752000pt;}
.y12_c00080{bottom:753.364000pt;}
.y11_c00080{bottom:767.976000pt;}
.y10_c00080{bottom:782.588000pt;}
.yf_c00080{bottom:811.810667pt;}
.ye_c00080{bottom:826.422667pt;}
.yd_c00080{bottom:841.034667pt;}
.yc_c00080{bottom:855.646667pt;}
.yb_c00080{bottom:870.258667pt;}
.ya_c00080{bottom:884.870667pt;}
.y9_c00080{bottom:899.482667pt;}
.y8_c00080{bottom:914.094667pt;}
.y7_c00080{bottom:928.706667pt;}
.y6_c00080{bottom:943.317333pt;}
.y5_c00080{bottom:957.929333pt;}
.y4_c00080{bottom:972.541333pt;}
.y3_c00080{bottom:987.153333pt;}
.y2_c00080{bottom:1001.765333pt;}
.y1_c00080{bottom:1030.989333pt;}
.h3_c00080{height:31.280681pt;}
.h4_c00080{height:31.796297pt;}
.h2_c00080{height:32.006363pt;}
.h5_c00080{height:46.518078pt;}
.h0_c00080{height:1122.520000pt;}
.h1_c00080{height:1122.666667pt;}
.w0_c00080{width:793.706667pt;}
.w1_c00080{width:794.000000pt;}
.x0_c00080{left:0.000000pt;}
.x7_c00080{left:113.385333pt;}
.x1_c00080{left:121.886667pt;}
.x2_c00080{left:133.704000pt;}
.x4_c00080{left:175.065333pt;}
.x5_c00080{left:210.517333pt;}
.x3_c00080{left:228.244000pt;}
.x6_c00080{left:287.330667pt;}
.x8_c00080{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cf4088d48ddebd618cb3b8f.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.014648;font-style:normal;font-weight:normal;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_e6295572113e814dd13b0db9.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.048828;font-style:normal;font-weight:normal;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_12bcfecf7743922eab28596f.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.083496;font-style:normal;font-weight:normal;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_bf0ff148e57f069e4a85ed68.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls3_c00081{letter-spacing:0.000000px;}
.ls1_c00081{letter-spacing:0.087998px;}
.ls2_c00081{letter-spacing:0.098482px;}
.ls0_c00081{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00081{word-spacing:-26.575517px;}
.ws1_c00081{word-spacing:-26.487518px;}
.ws5_c00081{word-spacing:0.000000px;}
.ws3_c00081{word-spacing:0.043999px;}
.ws0_c00081{word-spacing:0.175997px;}
.ws4_c00081{word-spacing:0.213446px;}
._0_c00081{width:1.047451px;}
._1_c00081{width:53.151034px;}
.fc4_c00081{color:rgb(79,153,5);}
.fc3_c00081{color:rgb(207,92,0);}
.fc2_c00081{color:rgb(0,0,0);}
.fc1_c00081{color:rgb(33,74,135);}
.fc0_c00081{color:rgb(143,89,3);}
.fs0_c00081{font-size:43.999200px;}
.fs1_c00081{font-size:59.775600px;}
.y0_c00081{bottom:0.000000px;}
.y37_c00081{bottom:44.250000px;}
.y36_c00081{bottom:87.708000px;}
.y35_c00081{bottom:104.146500px;}
.y34_c00081{bottom:120.585000px;}
.y33_c00081{bottom:137.023500px;}
.y32_c00081{bottom:153.462000px;}
.y31_c00081{bottom:169.900500px;}
.y30_c00081{bottom:186.339000px;}
.y2f_c00081{bottom:252.091500px;}
.y2e_c00081{bottom:268.530000px;}
.y2d_c00081{bottom:284.968500px;}
.y2c_c00081{bottom:301.407000px;}
.y2b_c00081{bottom:317.845500px;}
.y2a_c00081{bottom:334.284000px;}
.y29_c00081{bottom:350.722500px;}
.y28_c00081{bottom:367.161000px;}
.y27_c00081{bottom:383.599500px;}
.y26_c00081{bottom:400.038000px;}
.y25_c00081{bottom:416.475000px;}
.y24_c00081{bottom:432.913500px;}
.y23_c00081{bottom:449.352000px;}
.y22_c00081{bottom:465.790500px;}
.y21_c00081{bottom:482.229000px;}
.y20_c00081{bottom:531.544500px;}
.y1f_c00081{bottom:547.983000px;}
.y1e_c00081{bottom:564.421500px;}
.y1d_c00081{bottom:580.858500px;}
.y1c_c00081{bottom:597.297000px;}
.y1b_c00081{bottom:613.735500px;}
.y1a_c00081{bottom:630.174000px;}
.y19_c00081{bottom:646.612500px;}
.y18_c00081{bottom:663.051000px;}
.y17_c00081{bottom:679.489500px;}
.y16_c00081{bottom:695.928000px;}
.y15_c00081{bottom:712.366500px;}
.y14_c00081{bottom:728.805000px;}
.y13_c00081{bottom:745.243500px;}
.y12_c00081{bottom:761.680500px;}
.y11_c00081{bottom:778.119000px;}
.y10_c00081{bottom:827.434500px;}
.yf_c00081{bottom:843.873000px;}
.ye_c00081{bottom:860.311500px;}
.yd_c00081{bottom:876.750000px;}
.yc_c00081{bottom:909.627000px;}
.yb_c00081{bottom:926.064000px;}
.ya_c00081{bottom:975.379500px;}
.y9_c00081{bottom:991.818000px;}
.y8_c00081{bottom:1008.256500px;}
.y7_c00081{bottom:1041.133500px;}
.y6_c00081{bottom:1057.572000px;}
.y5_c00081{bottom:1074.010500px;}
.y4_c00081{bottom:1090.447500px;}
.y3_c00081{bottom:1106.886000px;}
.y2_c00081{bottom:1123.324500px;}
.y1_c00081{bottom:1139.389500px;}
.h2_c00081{height:35.190766px;}
.h3_c00081{height:36.007158px;}
.h4_c00081{height:52.332837px;}
.h0_c00081{height:1262.835000px;}
.h1_c00081{height:1263.000000px;}
.w0_c00081{width:892.920000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:137.122500px;}
.x4_c00081{left:263.421000px;}
.x2_c00081{left:276.715500px;}
.x6_c00081{left:330.364500px;}
.x3_c00081{left:336.541500px;}
.x5_c00081{left:343.188000px;}
.x7_c00081{left:438.984000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls3_c00081{letter-spacing:0.000000pt;}
.ls1_c00081{letter-spacing:0.078221pt;}
.ls2_c00081{letter-spacing:0.087539pt;}
.ls0_c00081{letter-spacing:0.092873pt;}
.ws2_c00081{word-spacing:-23.622682pt;}
.ws1_c00081{word-spacing:-23.544461pt;}
.ws5_c00081{word-spacing:0.000000pt;}
.ws3_c00081{word-spacing:0.039110pt;}
.ws0_c00081{word-spacing:0.156442pt;}
.ws4_c00081{word-spacing:0.189730pt;}
._0_c00081{width:0.931068pt;}
._1_c00081{width:47.245363pt;}
.fs0_c00081{font-size:39.110400pt;}
.fs1_c00081{font-size:53.133867pt;}
.y0_c00081{bottom:0.000000pt;}
.y37_c00081{bottom:39.333333pt;}
.y36_c00081{bottom:77.962667pt;}
.y35_c00081{bottom:92.574667pt;}
.y34_c00081{bottom:107.186667pt;}
.y33_c00081{bottom:121.798667pt;}
.y32_c00081{bottom:136.410667pt;}
.y31_c00081{bottom:151.022667pt;}
.y30_c00081{bottom:165.634667pt;}
.y2f_c00081{bottom:224.081333pt;}
.y2e_c00081{bottom:238.693333pt;}
.y2d_c00081{bottom:253.305333pt;}
.y2c_c00081{bottom:267.917333pt;}
.y2b_c00081{bottom:282.529333pt;}
.y2a_c00081{bottom:297.141333pt;}
.y29_c00081{bottom:311.753333pt;}
.y28_c00081{bottom:326.365333pt;}
.y27_c00081{bottom:340.977333pt;}
.y26_c00081{bottom:355.589333pt;}
.y25_c00081{bottom:370.200000pt;}
.y24_c00081{bottom:384.812000pt;}
.y23_c00081{bottom:399.424000pt;}
.y22_c00081{bottom:414.036000pt;}
.y21_c00081{bottom:428.648000pt;}
.y20_c00081{bottom:472.484000pt;}
.y1f_c00081{bottom:487.096000pt;}
.y1e_c00081{bottom:501.708000pt;}
.y1d_c00081{bottom:516.318667pt;}
.y1c_c00081{bottom:530.930667pt;}
.y1b_c00081{bottom:545.542667pt;}
.y1a_c00081{bottom:560.154667pt;}
.y19_c00081{bottom:574.766667pt;}
.y18_c00081{bottom:589.378667pt;}
.y17_c00081{bottom:603.990667pt;}
.y16_c00081{bottom:618.602667pt;}
.y15_c00081{bottom:633.214667pt;}
.y14_c00081{bottom:647.826667pt;}
.y13_c00081{bottom:662.438667pt;}
.y12_c00081{bottom:677.049333pt;}
.y11_c00081{bottom:691.661333pt;}
.y10_c00081{bottom:735.497333pt;}
.yf_c00081{bottom:750.109333pt;}
.ye_c00081{bottom:764.721333pt;}
.yd_c00081{bottom:779.333333pt;}
.yc_c00081{bottom:808.557333pt;}
.yb_c00081{bottom:823.168000pt;}
.ya_c00081{bottom:867.004000pt;}
.y9_c00081{bottom:881.616000pt;}
.y8_c00081{bottom:896.228000pt;}
.y7_c00081{bottom:925.452000pt;}
.y6_c00081{bottom:940.064000pt;}
.y5_c00081{bottom:954.676000pt;}
.y4_c00081{bottom:969.286667pt;}
.y3_c00081{bottom:983.898667pt;}
.y2_c00081{bottom:998.510667pt;}
.y1_c00081{bottom:1012.790667pt;}
.h2_c00081{height:31.280681pt;}
.h3_c00081{height:32.006363pt;}
.h4_c00081{height:46.518078pt;}
.h0_c00081{height:1122.520000pt;}
.h1_c00081{height:1122.666667pt;}
.w0_c00081{width:793.706667pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:121.886667pt;}
.x4_c00081{left:234.152000pt;}
.x2_c00081{left:245.969333pt;}
.x6_c00081{left:293.657333pt;}
.x3_c00081{left:299.148000pt;}
.x5_c00081{left:305.056000pt;}
.x7_c00081{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fabe10f770c2c1fc73b10df.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.083496;font-style:normal;font-weight:normal;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_7480e10ef183720d7a4eb5c7.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.048828;font-style:normal;font-weight:normal;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_7981bd471ef2a6e02d6def75.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.014648;font-style:normal;font-weight:normal;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_efe7352b008833c4865c19a2.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:0.893555;font-style:normal;font-weight:normal;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_50ef055e29088eb7758f0efd.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.102051;font-style: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.000000px;}
.ls0_c00082{letter-spacing:0.087998px;}
.ls2_c00082{letter-spacing:0.098482px;}
.ls1_c00082{letter-spacing:0.104482px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-26.575517px;}
.ws1_c00082{word-spacing:-26.487518px;}
.ws3_c00082{word-spacing:-21.605377px;}
.wsa_c00082{word-spacing:-20.801909px;}
.ws9_c00082{word-spacing:-20.742133px;}
.wsb_c00082{word-spacing:-18.829314px;}
.ws8_c00082{word-spacing:-18.769538px;}
.wsf_c00082{word-spacing:-17.753353px;}
.ws4_c00082{word-spacing:-17.454475px;}
.wsd_c00082{word-spacing:-17.280768px;}
.wse_c00082{word-spacing:-17.275148px;}
.ws7_c00082{word-spacing:-16.856719px;}
.ws6_c00082{word-spacing:-16.498066px;}
.ws5_c00082{word-spacing:-16.438290px;}
.wsc_c00082{word-spacing:-15.183002px;}
.ws2_c00082{word-spacing:0.000000px;}
._7_c00082{margin-left:-4.801886px;}
._8_c00082{margin-left:-3.529652px;}
._2_c00082{margin-left:-1.463312px;}
._0_c00082{width:1.006068px;}
._3_c00082{width:17.334924px;}
._6_c00082{width:25.667154px;}
._4_c00082{width:27.018571px;}
._5_c00082{width:29.886300px;}
._1_c00082{width:86.077200px;}
.fc4_c00082{color:rgb(79,153,5);}
.fc3_c00082{color:rgb(33,74,135);}
.fc5_c00082{color:rgb(6,69,173);}
.fc2_c00082{color:rgb(207,92,0);}
.fc1_c00082{color:rgb(143,89,3);}
.fc0_c00082{color:rgb(0,0,0);}
.fs0_c00082{font-size:43.999200px;}
.fs2_c00082{font-size:59.775600px;}
.fs1_c00082{font-size:86.077200px;}
.y0_c00082{bottom:0.000000px;}
.y32_c00082{bottom:44.250000px;}
.y31_c00082{bottom:82.051500px;}
.y30_c00082{bottom:99.984000px;}
.y2f_c00082{bottom:133.876500px;}
.y2e_c00082{bottom:151.809000px;}
.y2d_c00082{bottom:169.741500px;}
.y2c_c00082{bottom:203.634000px;}
.y2b_c00082{bottom:221.566500px;}
.y2a_c00082{bottom:255.459000px;}
.y29_c00082{bottom:273.393000px;}
.y28_c00082{bottom:307.285500px;}
.y27_c00082{bottom:325.218000px;}
.y26_c00082{bottom:372.066000px;}
.y25_c00082{bottom:390.000000px;}
.y24_c00082{bottom:407.932500px;}
.y23_c00082{bottom:425.865000px;}
.y22_c00082{bottom:471.034500px;}
.y21_c00082{bottom:551.643000px;}
.y20_c00082{bottom:568.081500px;}
.y1f_c00082{bottom:584.520000px;}
.y1e_c00082{bottom:600.958500px;}
.y1d_c00082{bottom:633.835500px;}
.y1c_c00082{bottom:650.274000px;}
.y1b_c00082{bottom:666.712500px;}
.y1a_c00082{bottom:683.151000px;}
.y19_c00082{bottom:699.589500px;}
.y18_c00082{bottom:748.903500px;}
.y17_c00082{bottom:765.342000px;}
.y16_c00082{bottom:781.780500px;}
.y15_c00082{bottom:798.219000px;}
.y14_c00082{bottom:814.657500px;}
.y13_c00082{bottom:831.096000px;}
.y12_c00082{bottom:847.534500px;}
.y11_c00082{bottom:863.973000px;}
.y10_c00082{bottom:880.411500px;}
.yf_c00082{bottom:896.848500px;}
.ye_c00082{bottom:913.287000px;}
.yd_c00082{bottom:929.725500px;}
.yc_c00082{bottom:946.164000px;}
.yb_c00082{bottom:962.602500px;}
.ya_c00082{bottom:979.041000px;}
.y9_c00082{bottom:995.479500px;}
.y8_c00082{bottom:1044.795000px;}
.y7_c00082{bottom:1061.232000px;}
.y6_c00082{bottom:1077.670500px;}
.y5_c00082{bottom:1094.109000px;}
.y4_c00082{bottom:1110.547500px;}
.y3_c00082{bottom:1126.986000px;}
.y2_c00082{bottom:1143.424500px;}
.y1_c00082{bottom:1159.863000px;}
.h3_c00082{height:35.190766px;}
.h2_c00082{height:36.007158px;}
.h5_c00082{height:52.332837px;}
.h4_c00082{height:58.337477px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w0_c00082{width:892.920000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x4_c00082{left:127.558500px;}
.x1_c00082{left:137.122500px;}
.x5_c00082{left:146.239500px;}
.x6_c00082{left:164.919000px;}
.x3_c00082{left:263.421000px;}
.x2_c00082{left:323.247000px;}
.x7_c00082{left:438.984000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls3_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.078221pt;}
.ls2_c00082{letter-spacing:0.087539pt;}
.ls1_c00082{letter-spacing:0.092873pt;}
.ws0_c00082{word-spacing:-23.622682pt;}
.ws1_c00082{word-spacing:-23.544461pt;}
.ws3_c00082{word-spacing:-19.204780pt;}
.wsa_c00082{word-spacing:-18.490586pt;}
.ws9_c00082{word-spacing:-18.437452pt;}
.wsb_c00082{word-spacing:-16.737168pt;}
.ws8_c00082{word-spacing:-16.684034pt;}
.wsf_c00082{word-spacing:-15.780758pt;}
.ws4_c00082{word-spacing:-15.515089pt;}
.wsd_c00082{word-spacing:-15.360683pt;}
.wse_c00082{word-spacing:-15.355687pt;}
.ws7_c00082{word-spacing:-14.983750pt;}
.ws6_c00082{word-spacing:-14.664947pt;}
.ws5_c00082{word-spacing:-14.611813pt;}
.wsc_c00082{word-spacing:-13.496002pt;}
.ws2_c00082{word-spacing:0.000000pt;}
._7_c00082{margin-left:-4.268343pt;}
._8_c00082{margin-left:-3.137469pt;}
._2_c00082{margin-left:-1.300722pt;}
._0_c00082{width:0.894283pt;}
._3_c00082{width:15.408821pt;}
._6_c00082{width:22.815248pt;}
._4_c00082{width:24.016508pt;}
._5_c00082{width:26.565600pt;}
._1_c00082{width:76.513067pt;}
.fs0_c00082{font-size:39.110400pt;}
.fs2_c00082{font-size:53.133867pt;}
.fs1_c00082{font-size:76.513067pt;}
.y0_c00082{bottom:0.000000pt;}
.y32_c00082{bottom:39.333333pt;}
.y31_c00082{bottom:72.934667pt;}
.y30_c00082{bottom:88.874667pt;}
.y2f_c00082{bottom:119.001333pt;}
.y2e_c00082{bottom:134.941333pt;}
.y2d_c00082{bottom:150.881333pt;}
.y2c_c00082{bottom:181.008000pt;}
.y2b_c00082{bottom:196.948000pt;}
.y2a_c00082{bottom:227.074667pt;}
.y29_c00082{bottom:243.016000pt;}
.y28_c00082{bottom:273.142667pt;}
.y27_c00082{bottom:289.082667pt;}
.y26_c00082{bottom:330.725333pt;}
.y25_c00082{bottom:346.666667pt;}
.y24_c00082{bottom:362.606667pt;}
.y23_c00082{bottom:378.546667pt;}
.y22_c00082{bottom:418.697333pt;}
.y21_c00082{bottom:490.349333pt;}
.y20_c00082{bottom:504.961333pt;}
.y1f_c00082{bottom:519.573333pt;}
.y1e_c00082{bottom:534.185333pt;}
.y1d_c00082{bottom:563.409333pt;}
.y1c_c00082{bottom:578.021333pt;}
.y1b_c00082{bottom:592.633333pt;}
.y1a_c00082{bottom:607.245333pt;}
.y19_c00082{bottom:621.857333pt;}
.y18_c00082{bottom:665.692000pt;}
.y17_c00082{bottom:680.304000pt;}
.y16_c00082{bottom:694.916000pt;}
.y15_c00082{bottom:709.528000pt;}
.y14_c00082{bottom:724.140000pt;}
.y13_c00082{bottom:738.752000pt;}
.y12_c00082{bottom:753.364000pt;}
.y11_c00082{bottom:767.976000pt;}
.y10_c00082{bottom:782.588000pt;}
.yf_c00082{bottom:797.198667pt;}
.ye_c00082{bottom:811.810667pt;}
.yd_c00082{bottom:826.422667pt;}
.yc_c00082{bottom:841.034667pt;}
.yb_c00082{bottom:855.646667pt;}
.ya_c00082{bottom:870.258667pt;}
.y9_c00082{bottom:884.870667pt;}
.y8_c00082{bottom:928.706667pt;}
.y7_c00082{bottom:943.317333pt;}
.y6_c00082{bottom:957.929333pt;}
.y5_c00082{bottom:972.541333pt;}
.y4_c00082{bottom:987.153333pt;}
.y3_c00082{bottom:1001.765333pt;}
.y2_c00082{bottom:1016.377333pt;}
.y1_c00082{bottom:1030.989333pt;}
.h3_c00082{height:31.280681pt;}
.h2_c00082{height:32.006363pt;}
.h5_c00082{height:46.518078pt;}
.h4_c00082{height:51.855535pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w0_c00082{width:793.706667pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x4_c00082{left:113.385333pt;}
.x1_c00082{left:121.886667pt;}
.x5_c00082{left:129.990667pt;}
.x6_c00082{left:146.594667pt;}
.x3_c00082{left:234.152000pt;}
.x2_c00082{left:287.330667pt;}
.x7_c00082{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5002f996692bda6eddde127.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.014648;font-style:normal;font-weight:normal;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_3c864c64328e37d2fcd9a7b2.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.048828;font-style:normal;font-weight:normal;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_132ca5f1b7920eaa0afcffed.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.083496;font-style:normal;font-weight:normal;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_ccb464401e5409ffd624a43b.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_8779f4e45255fdd1b95d1d22.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls3_c00083{letter-spacing:0.000000px;}
.ls1_c00083{letter-spacing:0.087998px;}
.ls2_c00083{letter-spacing:0.098482px;}
.ls0_c00083{letter-spacing:0.104482px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00083{word-spacing:-26.575517px;}
.ws1_c00083{word-spacing:-26.487518px;}
.ws6_c00083{word-spacing:-21.638767px;}
.ws5_c00083{word-spacing:-21.519300px;}
.wsd_c00083{word-spacing:-20.204153px;}
.wsc_c00083{word-spacing:-18.769538px;}
.wsb_c00083{word-spacing:-16.258963px;}
.wsa_c00083{word-spacing:-16.199188px;}
.ws7_c00083{word-spacing:-15.661207px;}
.ws8_c00083{word-spacing:-13.509286px;}
.ws9_c00083{word-spacing:-11.476915px;}
.wse_c00083{word-spacing:0.000000px;}
.ws3_c00083{word-spacing:0.043999px;}
.ws0_c00083{word-spacing:0.175997px;}
.ws4_c00083{word-spacing:0.213446px;}
._1_c00083{margin-left:-1.434614px;}
._3_c00083{width:23.970016px;}
._4_c00083{width:27.138122px;}
._2_c00083{width:35.745809px;}
._0_c00083{width:86.077200px;}
.fc5_c00083{color:rgb(0,0,207);}
.fc4_c00083{color:rgb(79,153,5);}
.fc3_c00083{color:rgb(207,92,0);}
.fc2_c00083{color:rgb(0,0,0);}
.fc1_c00083{color:rgb(33,74,135);}
.fc0_c00083{color:rgb(143,89,3);}
.fs0_c00083{font-size:43.999200px;}
.fs2_c00083{font-size:59.775600px;}
.fs1_c00083{font-size:86.077200px;}
.y0_c00083{bottom:0.000000px;}
.y2f_c00083{bottom:44.250000px;}
.y2e_c00083{bottom:82.051500px;}
.y2d_c00083{bottom:99.984000px;}
.y2c_c00083{bottom:129.747000px;}
.y2b_c00083{bottom:147.679500px;}
.y2a_c00083{bottom:165.613500px;}
.y29_c00083{bottom:183.546000px;}
.y28_c00083{bottom:201.478500px;}
.y27_c00083{bottom:219.411000px;}
.y26_c00083{bottom:237.343500px;}
.y25_c00083{bottom:283.761000px;}
.y24_c00083{bottom:367.161000px;}
.y23_c00083{bottom:383.599500px;}
.y22_c00083{bottom:400.038000px;}
.y21_c00083{bottom:432.913500px;}
.y20_c00083{bottom:449.352000px;}
.y1f_c00083{bottom:482.229000px;}
.y1e_c00083{bottom:515.106000px;}
.y1d_c00083{bottom:531.544500px;}
.y1c_c00083{bottom:564.421500px;}
.y1b_c00083{bottom:597.297000px;}
.y1a_c00083{bottom:613.735500px;}
.y19_c00083{bottom:630.174000px;}
.y18_c00083{bottom:663.051000px;}
.y17_c00083{bottom:679.489500px;}
.y16_c00083{bottom:712.366500px;}
.y15_c00083{bottom:728.805000px;}
.y14_c00083{bottom:745.243500px;}
.y13_c00083{bottom:761.680500px;}
.y12_c00083{bottom:794.557500px;}
.y11_c00083{bottom:810.996000px;}
.y10_c00083{bottom:843.873000px;}
.yf_c00083{bottom:860.311500px;}
.ye_c00083{bottom:876.750000px;}
.yd_c00083{bottom:893.188500px;}
.yc_c00083{bottom:942.502500px;}
.yb_c00083{bottom:958.941000px;}
.ya_c00083{bottom:975.379500px;}
.y9_c00083{bottom:991.818000px;}
.y8_c00083{bottom:1008.256500px;}
.y7_c00083{bottom:1024.695000px;}
.y6_c00083{bottom:1041.133500px;}
.y5_c00083{bottom:1057.572000px;}
.y4_c00083{bottom:1074.010500px;}
.y3_c00083{bottom:1090.447500px;}
.y2_c00083{bottom:1123.324500px;}
.y1_c00083{bottom:1139.389500px;}
.h2_c00083{height:35.190766px;}
.h3_c00083{height:36.007158px;}
.h5_c00083{height:52.332837px;}
.h4_c00083{height:58.337477px;}
.h0_c00083{height:1262.835000px;}
.h1_c00083{height:1263.000000px;}
.w0_c00083{width:892.920000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x7_c00083{left:127.558500px;}
.x1_c00083{left:137.122500px;}
.x6_c00083{left:210.243000px;}
.x2_c00083{left:216.891000px;}
.x3_c00083{left:250.126500px;}
.x4_c00083{left:283.363500px;}
.x5_c00083{left:316.599000px;}
.x8_c00083{left:438.984000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls3_c00083{letter-spacing:0.000000pt;}
.ls1_c00083{letter-spacing:0.078221pt;}
.ls2_c00083{letter-spacing:0.087539pt;}
.ls0_c00083{letter-spacing:0.092873pt;}
.ws2_c00083{word-spacing:-23.622682pt;}
.ws1_c00083{word-spacing:-23.544461pt;}
.ws6_c00083{word-spacing:-19.234460pt;}
.ws5_c00083{word-spacing:-19.128267pt;}
.wsd_c00083{word-spacing:-17.959247pt;}
.wsc_c00083{word-spacing:-16.684034pt;}
.wsb_c00083{word-spacing:-14.452412pt;}
.wsa_c00083{word-spacing:-14.399278pt;}
.ws7_c00083{word-spacing:-13.921073pt;}
.ws8_c00083{word-spacing:-12.008254pt;}
.ws9_c00083{word-spacing:-10.201702pt;}
.wse_c00083{word-spacing:0.000000pt;}
.ws3_c00083{word-spacing:0.039110pt;}
.ws0_c00083{word-spacing:0.156442pt;}
.ws4_c00083{word-spacing:0.189730pt;}
._1_c00083{margin-left:-1.275213pt;}
._3_c00083{width:21.306681pt;}
._4_c00083{width:24.122775pt;}
._2_c00083{width:31.774052pt;}
._0_c00083{width:76.513067pt;}
.fs0_c00083{font-size:39.110400pt;}
.fs2_c00083{font-size:53.133867pt;}
.fs1_c00083{font-size:76.513067pt;}
.y0_c00083{bottom:0.000000pt;}
.y2f_c00083{bottom:39.333333pt;}
.y2e_c00083{bottom:72.934667pt;}
.y2d_c00083{bottom:88.874667pt;}
.y2c_c00083{bottom:115.330667pt;}
.y2b_c00083{bottom:131.270667pt;}
.y2a_c00083{bottom:147.212000pt;}
.y29_c00083{bottom:163.152000pt;}
.y28_c00083{bottom:179.092000pt;}
.y27_c00083{bottom:195.032000pt;}
.y26_c00083{bottom:210.972000pt;}
.y25_c00083{bottom:252.232000pt;}
.y24_c00083{bottom:326.365333pt;}
.y23_c00083{bottom:340.977333pt;}
.y22_c00083{bottom:355.589333pt;}
.y21_c00083{bottom:384.812000pt;}
.y20_c00083{bottom:399.424000pt;}
.y1f_c00083{bottom:428.648000pt;}
.y1e_c00083{bottom:457.872000pt;}
.y1d_c00083{bottom:472.484000pt;}
.y1c_c00083{bottom:501.708000pt;}
.y1b_c00083{bottom:530.930667pt;}
.y1a_c00083{bottom:545.542667pt;}
.y19_c00083{bottom:560.154667pt;}
.y18_c00083{bottom:589.378667pt;}
.y17_c00083{bottom:603.990667pt;}
.y16_c00083{bottom:633.214667pt;}
.y15_c00083{bottom:647.826667pt;}
.y14_c00083{bottom:662.438667pt;}
.y13_c00083{bottom:677.049333pt;}
.y12_c00083{bottom:706.273333pt;}
.y11_c00083{bottom:720.885333pt;}
.y10_c00083{bottom:750.109333pt;}
.yf_c00083{bottom:764.721333pt;}
.ye_c00083{bottom:779.333333pt;}
.yd_c00083{bottom:793.945333pt;}
.yc_c00083{bottom:837.780000pt;}
.yb_c00083{bottom:852.392000pt;}
.ya_c00083{bottom:867.004000pt;}
.y9_c00083{bottom:881.616000pt;}
.y8_c00083{bottom:896.228000pt;}
.y7_c00083{bottom:910.840000pt;}
.y6_c00083{bottom:925.452000pt;}
.y5_c00083{bottom:940.064000pt;}
.y4_c00083{bottom:954.676000pt;}
.y3_c00083{bottom:969.286667pt;}
.y2_c00083{bottom:998.510667pt;}
.y1_c00083{bottom:1012.790667pt;}
.h2_c00083{height:31.280681pt;}
.h3_c00083{height:32.006363pt;}
.h5_c00083{height:46.518078pt;}
.h4_c00083{height:51.855535pt;}
.h0_c00083{height:1122.520000pt;}
.h1_c00083{height:1122.666667pt;}
.w0_c00083{width:793.706667pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x7_c00083{left:113.385333pt;}
.x1_c00083{left:121.886667pt;}
.x6_c00083{left:186.882667pt;}
.x2_c00083{left:192.792000pt;}
.x3_c00083{left:222.334667pt;}
.x4_c00083{left:251.878667pt;}
.x5_c00083{left:281.421333pt;}
.x8_c00083{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d57d18c8448c147dfa9a9b5.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.102051;font-style:normal;font-weight:normal;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_1716c30e7e1dc31fbc210760.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_f81f4fa080001ffd361f32b5.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_ccf74845db8020651694d267.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_69f67af1000ce5be0acc3d8d.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:1.048828;font-style: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;}
.ls8_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.087998px;}
.ls6_c00084{letter-spacing:0.098482px;}
.ls5_c00084{letter-spacing:0.104482px;}
.ls3_c00084{letter-spacing:10.742100px;}
.ls4_c00084{letter-spacing:10.748100px;}
.ls1_c00084{letter-spacing:14.312725px;}
.ls7_c00084{letter-spacing:26.690482px;}
.ls2_c00084{letter-spacing:29.890200px;}
.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;}
}
.wsa_c00084{word-spacing:-29.887800px;}
.ws2_c00084{word-spacing:-26.575517px;}
.ws19_c00084{word-spacing:-26.487518px;}
.ws12_c00084{word-spacing:-23.073382px;}
.ws13_c00084{word-spacing:-22.989571px;}
.ws0_c00084{word-spacing:-20.682358px;}
.wsb_c00084{word-spacing:-19.427070px;}
.ws8_c00084{word-spacing:-19.397164px;}
.ws6_c00084{word-spacing:-18.829314px;}
.ws1_c00084{word-spacing:-18.815996px;}
.ws3_c00084{word-spacing:-18.769538px;}
.ws4_c00084{word-spacing:-18.767164px;}
.ws7_c00084{word-spacing:-18.765313px;}
.ws16_c00084{word-spacing:-15.601432px;}
.ws15_c00084{word-spacing:-13.808164px;}
.ws9_c00084{word-spacing:-12.216067px;}
.ws5_c00084{word-spacing:-11.592067px;}
.ws14_c00084{word-spacing:-11.545783px;}
.ws17_c00084{word-spacing:-11.536399px;}
.ws11_c00084{word-spacing:-9.265218px;}
.wsc_c00084{word-spacing:-9.243571px;}
.ws10_c00084{word-spacing:-9.205442px;}
.wse_c00084{word-spacing:-9.089405px;}
.wsd_c00084{word-spacing:-2.054683px;}
.wsf_c00084{word-spacing:-2.048683px;}
.ws1c_c00084{word-spacing:0.000000px;}
.ws1a_c00084{word-spacing:0.043999px;}
.ws1d_c00084{word-spacing:0.046834px;}
.ws18_c00084{word-spacing:0.175997px;}
.ws1b_c00084{word-spacing:0.213446px;}
._2_c00084{margin-left:-4.722272px;}
._3_c00084{margin-left:-1.075961px;}
._5_c00084{width:1.041538px;}
._0_c00084{width:19.367294px;}
._1_c00084{width:29.892540px;}
._4_c00084{width:35.686033px;}
.fc6_c00084{color:rgb(0,0,207);}
.fc5_c00084{color:rgb(79,153,5);}
.fc3_c00084{color:rgb(33,74,135);}
.fc2_c00084{color:rgb(143,89,3);}
.fc4_c00084{color:rgb(207,92,0);}
.fc1_c00084{color:rgb(6,69,173);}
.fc0_c00084{color:rgb(0,0,0);}
.fs1_c00084{font-size:43.999200px;}
.fs0_c00084{font-size:59.775600px;}
.y0_c00084{bottom:0.000000px;}
.y2e_c00084{bottom:44.250000px;}
.y2d_c00084{bottom:82.051500px;}
.y2c_c00084{bottom:114.927000px;}
.y2b_c00084{bottom:131.365500px;}
.y2a_c00084{bottom:147.804000px;}
.y29_c00084{bottom:164.242500px;}
.y28_c00084{bottom:180.681000px;}
.y27_c00084{bottom:197.119500px;}
.y26_c00084{bottom:213.558000px;}
.y25_c00084{bottom:246.435000px;}
.y24_c00084{bottom:295.749000px;}
.y23_c00084{bottom:312.187500px;}
.y22_c00084{bottom:328.626000px;}
.y21_c00084{bottom:361.503000px;}
.y20_c00084{bottom:377.941500px;}
.y1f_c00084{bottom:394.380000px;}
.y1e_c00084{bottom:410.818500px;}
.y1d_c00084{bottom:427.257000px;}
.y1c_c00084{bottom:443.694000px;}
.y1b_c00084{bottom:460.132500px;}
.y1a_c00084{bottom:476.571000px;}
.y19_c00084{bottom:493.009500px;}
.y18_c00084{bottom:509.074500px;}
.y17_c00084{bottom:556.135500px;}
.y16_c00084{bottom:574.068000px;}
.y15_c00084{bottom:614.766000px;}
.y14_c00084{bottom:632.698500px;}
.y13_c00084{bottom:650.631000px;}
.y12_c00084{bottom:674.160000px;}
.y11_c00084{bottom:692.092500px;}
.y10_c00084{bottom:715.620000px;}
.yf_c00084{bottom:733.554000px;}
.ye_c00084{bottom:765.856500px;}
.yd_c00084{bottom:783.790500px;}
.yc_c00084{bottom:824.487000px;}
.yb_c00084{bottom:865.185000px;}
.ya_c00084{bottom:894.690000px;}
.y9_c00084{bottom:924.196500px;}
.y8_c00084{bottom:953.703000px;}
.y7_c00084{bottom:983.208000px;}
.y6_c00084{bottom:1012.714500px;}
.y5_c00084{bottom:1042.221000px;}
.y4_c00084{bottom:1071.726000px;}
.y3_c00084{bottom:1101.232500px;}
.y2_c00084{bottom:1141.930500px;}
.y1_c00084{bottom:1159.863000px;}
.h3_c00084{height:35.190766px;}
.h4_c00084{height:36.007158px;}
.h2_c00084{height:52.332837px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w0_c00084{width:892.920000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:127.558500px;}
.x6_c00084{left:137.122500px;}
.x7_c00084{left:150.417000px;}
.x2_c00084{left:152.215500px;}
.x3_c00084{left:164.919000px;}
.x4_c00084{left:182.851500px;}
.x5_c00084{left:197.796000px;}
.x8_c00084{left:438.984000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls8_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.078221pt;}
.ls6_c00084{letter-spacing:0.087539pt;}
.ls5_c00084{letter-spacing:0.092873pt;}
.ls3_c00084{letter-spacing:9.548533pt;}
.ls4_c00084{letter-spacing:9.553867pt;}
.ls1_c00084{letter-spacing:12.722422pt;}
.ls7_c00084{letter-spacing:23.724873pt;}
.ls2_c00084{letter-spacing:26.569067pt;}
.wsa_c00084{word-spacing:-26.566933pt;}
.ws2_c00084{word-spacing:-23.622682pt;}
.ws19_c00084{word-spacing:-23.544461pt;}
.ws12_c00084{word-spacing:-20.509673pt;}
.ws13_c00084{word-spacing:-20.435174pt;}
.ws0_c00084{word-spacing:-18.384318pt;}
.wsb_c00084{word-spacing:-17.268507pt;}
.ws8_c00084{word-spacing:-17.241923pt;}
.ws6_c00084{word-spacing:-16.737168pt;}
.ws1_c00084{word-spacing:-16.725330pt;}
.ws3_c00084{word-spacing:-16.684034pt;}
.ws4_c00084{word-spacing:-16.681923pt;}
.ws7_c00084{word-spacing:-16.680278pt;}
.ws16_c00084{word-spacing:-13.867939pt;}
.ws15_c00084{word-spacing:-12.273923pt;}
.ws9_c00084{word-spacing:-10.858726pt;}
.ws5_c00084{word-spacing:-10.304060pt;}
.ws14_c00084{word-spacing:-10.262918pt;}
.ws17_c00084{word-spacing:-10.254577pt;}
.ws11_c00084{word-spacing:-8.235749pt;}
.wsc_c00084{word-spacing:-8.216508pt;}
.ws10_c00084{word-spacing:-8.182615pt;}
.wse_c00084{word-spacing:-8.079471pt;}
.wsd_c00084{word-spacing:-1.826385pt;}
.wsf_c00084{word-spacing:-1.821052pt;}
.ws1c_c00084{word-spacing:0.000000pt;}
.ws1a_c00084{word-spacing:0.039110pt;}
.ws1d_c00084{word-spacing:0.041630pt;}
.ws18_c00084{word-spacing:0.156442pt;}
.ws1b_c00084{word-spacing:0.189730pt;}
._2_c00084{margin-left:-4.197575pt;}
._3_c00084{margin-left:-0.956410pt;}
._5_c00084{width:0.925811pt;}
._0_c00084{width:17.215373pt;}
._1_c00084{width:26.571147pt;}
._4_c00084{width:31.720918pt;}
.fs1_c00084{font-size:39.110400pt;}
.fs0_c00084{font-size:53.133867pt;}
.y0_c00084{bottom:0.000000pt;}
.y2e_c00084{bottom:39.333333pt;}
.y2d_c00084{bottom:72.934667pt;}
.y2c_c00084{bottom:102.157333pt;}
.y2b_c00084{bottom:116.769333pt;}
.y2a_c00084{bottom:131.381333pt;}
.y29_c00084{bottom:145.993333pt;}
.y28_c00084{bottom:160.605333pt;}
.y27_c00084{bottom:175.217333pt;}
.y26_c00084{bottom:189.829333pt;}
.y25_c00084{bottom:219.053333pt;}
.y24_c00084{bottom:262.888000pt;}
.y23_c00084{bottom:277.500000pt;}
.y22_c00084{bottom:292.112000pt;}
.y21_c00084{bottom:321.336000pt;}
.y20_c00084{bottom:335.948000pt;}
.y1f_c00084{bottom:350.560000pt;}
.y1e_c00084{bottom:365.172000pt;}
.y1d_c00084{bottom:379.784000pt;}
.y1c_c00084{bottom:394.394667pt;}
.y1b_c00084{bottom:409.006667pt;}
.y1a_c00084{bottom:423.618667pt;}
.y19_c00084{bottom:438.230667pt;}
.y18_c00084{bottom:452.510667pt;}
.y17_c00084{bottom:494.342667pt;}
.y16_c00084{bottom:510.282667pt;}
.y15_c00084{bottom:546.458667pt;}
.y14_c00084{bottom:562.398667pt;}
.y13_c00084{bottom:578.338667pt;}
.y12_c00084{bottom:599.253333pt;}
.y11_c00084{bottom:615.193333pt;}
.y10_c00084{bottom:636.106667pt;}
.yf_c00084{bottom:652.048000pt;}
.ye_c00084{bottom:680.761333pt;}
.yd_c00084{bottom:696.702667pt;}
.yc_c00084{bottom:732.877333pt;}
.yb_c00084{bottom:769.053333pt;}
.ya_c00084{bottom:795.280000pt;}
.y9_c00084{bottom:821.508000pt;}
.y8_c00084{bottom:847.736000pt;}
.y7_c00084{bottom:873.962667pt;}
.y6_c00084{bottom:900.190667pt;}
.y5_c00084{bottom:926.418667pt;}
.y4_c00084{bottom:952.645333pt;}
.y3_c00084{bottom:978.873333pt;}
.y2_c00084{bottom:1015.049333pt;}
.y1_c00084{bottom:1030.989333pt;}
.h3_c00084{height:31.280681pt;}
.h4_c00084{height:32.006363pt;}
.h2_c00084{height:46.518078pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w0_c00084{width:793.706667pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:113.385333pt;}
.x6_c00084{left:121.886667pt;}
.x7_c00084{left:133.704000pt;}
.x2_c00084{left:135.302667pt;}
.x3_c00084{left:146.594667pt;}
.x4_c00084{left:162.534667pt;}
.x5_c00084{left:175.818667pt;}
.x8_c00084{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2576a4754521dd5a09ccd82.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.083496;font-style:normal;font-weight:normal;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_a345fb88bb3defaceccb5fe4.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.048828;font-style:normal;font-weight:normal;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_5ed73190d9c53090611dab25.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.000000;font-style:normal;font-weight:normal;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_1c9a975ce80184cf81f28c28.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_bc9021dbd6d3369ae3a4d477.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:1.102051;font-style: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);}
.v1_c00085{vertical-align:-12.258000px;}
.v0_c00085{vertical-align:0.000000px;}
.ls6_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:0.087998px;}
.ls1_c00085{letter-spacing:0.098482px;}
.ls4_c00085{letter-spacing:0.104482px;}
.ls2_c00085{letter-spacing:7.460482px;}
.ls5_c00085{letter-spacing:7.466482px;}
.ls3_c00085{letter-spacing:26.690482px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:-26.575517px;}
.ws1_c00085{word-spacing:-26.487518px;}
.ws8_c00085{word-spacing:0.000000px;}
.ws5_c00085{word-spacing:0.056767px;}
.ws6_c00085{word-spacing:0.063317px;}
.ws3_c00085{word-spacing:0.073800px;}
.ws2_c00085{word-spacing:0.090283px;}
.ws4_c00085{word-spacing:0.175997px;}
.ws7_c00085{word-spacing:0.219446px;}
._2_c00085{margin-left:-2423.841518px;}
._3_c00085{margin-left:-2104.935317px;}
._0_c00085{margin-left:-2050.602245px;}
._1_c00085{width:1.182038px;}
.fc5_c00085{color:rgb(0,0,207);}
.fc4_c00085{color:rgb(207,92,0);}
.fc3_c00085{color:rgb(79,153,5);}
.fc2_c00085{color:rgb(33,74,135);}
.fc1_c00085{color:rgb(143,89,3);}
.fc0_c00085{color:rgb(0,0,0);}
.fs2_c00085{font-size:31.015800px;}
.fs1_c00085{font-size:37.218600px;}
.fs0_c00085{font-size:43.999200px;}
.fs3_c00085{font-size:59.775600px;}
.y0_c00085{bottom:0.000000px;}
.y3d_c00085{bottom:44.250000px;}
.y3c_c00085{bottom:83.469000px;}
.y3b_c00085{bottom:116.346000px;}
.y3a_c00085{bottom:132.784500px;}
.y39_c00085{bottom:149.223000px;}
.y38_c00085{bottom:165.661500px;}
.y37_c00085{bottom:198.537000px;}
.y36_c00085{bottom:214.975500px;}
.y35_c00085{bottom:231.414000px;}
.y34_c00085{bottom:247.852500px;}
.y33_c00085{bottom:280.729500px;}
.y32_c00085{bottom:297.168000px;}
.y31_c00085{bottom:313.606500px;}
.y30_c00085{bottom:330.045000px;}
.y2f_c00085{bottom:346.483500px;}
.y2e_c00085{bottom:362.920500px;}
.y2d_c00085{bottom:379.359000px;}
.y2c_c00085{bottom:395.797500px;}
.y2b_c00085{bottom:412.236000px;}
.y2a_c00085{bottom:428.674500px;}
.y29_c00085{bottom:445.113000px;}
.y28_c00085{bottom:461.551500px;}
.y27_c00085{bottom:477.990000px;}
.y26_c00085{bottom:510.867000px;}
.y25_c00085{bottom:527.305500px;}
.y24_c00085{bottom:543.742500px;}
.y23_c00085{bottom:560.181000px;}
.y22_c00085{bottom:576.619500px;}
.y21_c00085{bottom:593.058000px;}
.y20_c00085{bottom:609.496500px;}
.y1f_c00085{bottom:625.935000px;}
.y1e_c00085{bottom:642.373500px;}
.y1d_c00085{bottom:658.812000px;}
.y1c_c00085{bottom:675.250500px;}
.y1b_c00085{bottom:691.689000px;}
.y1a_c00085{bottom:707.752500px;}
.y19_c00085{bottom:726.145500px;}
.y18_c00085{bottom:742.584000px;}
.y17_c00085{bottom:759.022500px;}
.y16_c00085{bottom:775.459500px;}
.y15_c00085{bottom:791.524500px;}
.y14_c00085{bottom:809.917500px;}
.y13_c00085{bottom:826.356000px;}
.y12_c00085{bottom:875.670000px;}
.y11_c00085{bottom:892.108500px;}
.y10_c00085{bottom:908.547000px;}
.yf_c00085{bottom:924.985500px;}
.ye_c00085{bottom:941.424000px;}
.yd_c00085{bottom:957.862500px;}
.yc_c00085{bottom:973.927500px;}
.yb_c00085{bottom:992.319000px;}
.ya_c00085{bottom:1008.757500px;}
.y9_c00085{bottom:1025.196000px;}
.y8_c00085{bottom:1041.634500px;}
.y7_c00085{bottom:1057.699500px;}
.y6_c00085{bottom:1076.091000px;}
.y5_c00085{bottom:1092.529500px;}
.y4_c00085{bottom:1108.968000px;}
.y3_c00085{bottom:1125.406500px;}
.y2_c00085{bottom:1141.471500px;}
.y1_c00085{bottom:1159.863000px;}
.h3_c00085{height:35.190766px;}
.h2_c00085{height:36.007158px;}
.h4_c00085{height:52.332837px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w0_c00085{width:892.920000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:137.122500px;}
.x3_c00085{left:150.417000px;}
.x2_c00085{left:163.713000px;}
.x4_c00085{left:438.984000px;}
@media print{
.v1_c00085{vertical-align:-10.896000pt;}
.v0_c00085{vertical-align:0.000000pt;}
.ls6_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:0.078221pt;}
.ls1_c00085{letter-spacing:0.087539pt;}
.ls4_c00085{letter-spacing:0.092873pt;}
.ls2_c00085{letter-spacing:6.631539pt;}
.ls5_c00085{letter-spacing:6.636873pt;}
.ls3_c00085{letter-spacing:23.724873pt;}
.ws0_c00085{word-spacing:-23.622682pt;}
.ws1_c00085{word-spacing:-23.544461pt;}
.ws8_c00085{word-spacing:0.000000pt;}
.ws5_c00085{word-spacing:0.050460pt;}
.ws6_c00085{word-spacing:0.056282pt;}
.ws3_c00085{word-spacing:0.065600pt;}
.ws2_c00085{word-spacing:0.080252pt;}
.ws4_c00085{word-spacing:0.156442pt;}
.ws7_c00085{word-spacing:0.195063pt;}
._2_c00085{margin-left:-2154.525794pt;}
._3_c00085{margin-left:-1871.053615pt;}
._0_c00085{margin-left:-1822.757551pt;}
._1_c00085{width:1.050701pt;}
.fs2_c00085{font-size:27.569600pt;}
.fs1_c00085{font-size:33.083200pt;}
.fs0_c00085{font-size:39.110400pt;}
.fs3_c00085{font-size:53.133867pt;}
.y0_c00085{bottom:0.000000pt;}
.y3d_c00085{bottom:39.333333pt;}
.y3c_c00085{bottom:74.194667pt;}
.y3b_c00085{bottom:103.418667pt;}
.y3a_c00085{bottom:118.030667pt;}
.y39_c00085{bottom:132.642667pt;}
.y38_c00085{bottom:147.254667pt;}
.y37_c00085{bottom:176.477333pt;}
.y36_c00085{bottom:191.089333pt;}
.y35_c00085{bottom:205.701333pt;}
.y34_c00085{bottom:220.313333pt;}
.y33_c00085{bottom:249.537333pt;}
.y32_c00085{bottom:264.149333pt;}
.y31_c00085{bottom:278.761333pt;}
.y30_c00085{bottom:293.373333pt;}
.y2f_c00085{bottom:307.985333pt;}
.y2e_c00085{bottom:322.596000pt;}
.y2d_c00085{bottom:337.208000pt;}
.y2c_c00085{bottom:351.820000pt;}
.y2b_c00085{bottom:366.432000pt;}
.y2a_c00085{bottom:381.044000pt;}
.y29_c00085{bottom:395.656000pt;}
.y28_c00085{bottom:410.268000pt;}
.y27_c00085{bottom:424.880000pt;}
.y26_c00085{bottom:454.104000pt;}
.y25_c00085{bottom:468.716000pt;}
.y24_c00085{bottom:483.326667pt;}
.y23_c00085{bottom:497.938667pt;}
.y22_c00085{bottom:512.550667pt;}
.y21_c00085{bottom:527.162667pt;}
.y20_c00085{bottom:541.774667pt;}
.y1f_c00085{bottom:556.386667pt;}
.y1e_c00085{bottom:570.998667pt;}
.y1d_c00085{bottom:585.610667pt;}
.y1c_c00085{bottom:600.222667pt;}
.y1b_c00085{bottom:614.834667pt;}
.y1a_c00085{bottom:629.113333pt;}
.y19_c00085{bottom:645.462667pt;}
.y18_c00085{bottom:660.074667pt;}
.y17_c00085{bottom:674.686667pt;}
.y16_c00085{bottom:689.297333pt;}
.y15_c00085{bottom:703.577333pt;}
.y14_c00085{bottom:719.926667pt;}
.y13_c00085{bottom:734.538667pt;}
.y12_c00085{bottom:778.373333pt;}
.y11_c00085{bottom:792.985333pt;}
.y10_c00085{bottom:807.597333pt;}
.yf_c00085{bottom:822.209333pt;}
.ye_c00085{bottom:836.821333pt;}
.yd_c00085{bottom:851.433333pt;}
.yc_c00085{bottom:865.713333pt;}
.yb_c00085{bottom:882.061333pt;}
.ya_c00085{bottom:896.673333pt;}
.y9_c00085{bottom:911.285333pt;}
.y8_c00085{bottom:925.897333pt;}
.y7_c00085{bottom:940.177333pt;}
.y6_c00085{bottom:956.525333pt;}
.y5_c00085{bottom:971.137333pt;}
.y4_c00085{bottom:985.749333pt;}
.y3_c00085{bottom:1000.361333pt;}
.y2_c00085{bottom:1014.641333pt;}
.y1_c00085{bottom:1030.989333pt;}
.h3_c00085{height:31.280681pt;}
.h2_c00085{height:32.006363pt;}
.h4_c00085{height:46.518078pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w0_c00085{width:793.706667pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:121.886667pt;}
.x3_c00085{left:133.704000pt;}
.x2_c00085{left:145.522667pt;}
.x4_c00085{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb1892fb1244c8e989644a83.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.048828;font-style:normal;font-weight:normal;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_f9cefe2ea4a8d5df3774fee9.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_dfd135a456eb121e85ad8807.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_df35fec0049a2d2e9a5fccb2.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_597718e341a9a98fada8c2a9.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:0.893555;font-style: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;}
.ls6_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.087998px;}
.ls4_c00086{letter-spacing:0.098482px;}
.ls1_c00086{letter-spacing:0.104482px;}
.ls3_c00086{letter-spacing:14.944200px;}
.ls2_c00086{letter-spacing:17.972725px;}
.ls5_c00086{letter-spacing:26.690482px;}
.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;}
}
.ws5_c00086{word-spacing:-29.887800px;}
.ws0_c00086{word-spacing:-26.575517px;}
.ws2_c00086{word-spacing:-26.487518px;}
.wse_c00086{word-spacing:-22.834279px;}
.ws7_c00086{word-spacing:-18.829314px;}
.ws8_c00086{word-spacing:-18.789571px;}
.wsb_c00086{word-spacing:-18.769538px;}
.wsc_c00086{word-spacing:-18.740438px;}
.wsa_c00086{word-spacing:-18.635405px;}
.wsd_c00086{word-spacing:-18.414863px;}
.wsf_c00086{word-spacing:-17.036046px;}
.ws3_c00086{word-spacing:-15.743164px;}
.ws6_c00086{word-spacing:-15.720983px;}
.ws10_c00086{word-spacing:-15.601432px;}
.ws9_c00086{word-spacing:-11.566200px;}
.ws11_c00086{word-spacing:-11.544048px;}
.ws4_c00086{word-spacing:-8.568067px;}
.ws1_c00086{word-spacing:0.000000px;}
.ws16_c00086{word-spacing:0.036900px;}
.ws13_c00086{word-spacing:0.043999px;}
.ws15_c00086{word-spacing:0.083734px;}
.ws17_c00086{word-spacing:0.100217px;}
.ws12_c00086{word-spacing:0.175997px;}
.ws14_c00086{word-spacing:0.213446px;}
._4_c00086{margin-left:-5.439580px;}
._1_c00086{margin-left:-3.287658px;}
._5_c00086{width:1.041538px;}
._3_c00086{width:16.971530px;}
._2_c00086{width:25.920152px;}
._0_c00086{width:29.892540px;}
.fc6_c00086{color:rgb(0,0,207);}
.fc5_c00086{color:rgb(207,92,0);}
.fc4_c00086{color:rgb(6,69,173);}
.fc3_c00086{color:rgb(79,153,5);}
.fc2_c00086{color:rgb(143,89,3);}
.fc1_c00086{color:rgb(0,0,0);}
.fc0_c00086{color:rgb(33,74,135);}
.fs0_c00086{font-size:43.999200px;}
.fs1_c00086{font-size:59.775600px;}
.y0_c00086{bottom:0.000000px;}
.y35_c00086{bottom:44.250000px;}
.y34_c00086{bottom:86.982000px;}
.y33_c00086{bottom:103.420500px;}
.y32_c00086{bottom:119.859000px;}
.y31_c00086{bottom:136.297500px;}
.y30_c00086{bottom:152.736000px;}
.y2f_c00086{bottom:169.174500px;}
.y2e_c00086{bottom:185.613000px;}
.y2d_c00086{bottom:202.051500px;}
.y2c_c00086{bottom:218.490000px;}
.y2b_c00086{bottom:234.927000px;}
.y2a_c00086{bottom:251.365500px;}
.y29_c00086{bottom:267.804000px;}
.y28_c00086{bottom:284.242500px;}
.y27_c00086{bottom:300.681000px;}
.y26_c00086{bottom:317.119500px;}
.y25_c00086{bottom:333.558000px;}
.y24_c00086{bottom:349.996500px;}
.y23_c00086{bottom:382.873500px;}
.y22_c00086{bottom:432.187500px;}
.y21_c00086{bottom:448.626000px;}
.y20_c00086{bottom:465.064500px;}
.y1f_c00086{bottom:497.941500px;}
.y1e_c00086{bottom:514.380000px;}
.y1d_c00086{bottom:530.818500px;}
.y1c_c00086{bottom:547.257000px;}
.y1b_c00086{bottom:563.695500px;}
.y1a_c00086{bottom:580.132500px;}
.y19_c00086{bottom:596.571000px;}
.y18_c00086{bottom:613.009500px;}
.y17_c00086{bottom:629.448000px;}
.y16_c00086{bottom:645.513000px;}
.y15_c00086{bottom:694.362000px;}
.y14_c00086{bottom:712.294500px;}
.y13_c00086{bottom:754.780500px;}
.y12_c00086{bottom:772.713000px;}
.y11_c00086{bottom:790.645500px;}
.y10_c00086{bottom:814.813500px;}
.yf_c00086{bottom:838.980000px;}
.ye_c00086{bottom:863.148000px;}
.yd_c00086{bottom:887.314500px;}
.yc_c00086{bottom:905.248500px;}
.yb_c00086{bottom:962.602500px;}
.ya_c00086{bottom:979.041000px;}
.y9_c00086{bottom:995.479500px;}
.y8_c00086{bottom:1011.918000px;}
.y7_c00086{bottom:1028.356500px;}
.y6_c00086{bottom:1044.795000px;}
.y5_c00086{bottom:1077.670500px;}
.y4_c00086{bottom:1094.109000px;}
.y3_c00086{bottom:1110.547500px;}
.y2_c00086{bottom:1126.986000px;}
.y1_c00086{bottom:1159.863000px;}
.h3_c00086{height:35.190766px;}
.h2_c00086{height:36.007158px;}
.h4_c00086{height:52.332837px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w0_c00086{width:892.920000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.x5_c00086{left:127.558500px;}
.x1_c00086{left:137.122500px;}
.x6_c00086{left:150.417000px;}
.x3_c00086{left:152.215500px;}
.x4_c00086{left:164.919000px;}
.x2_c00086{left:256.774500px;}
.x7_c00086{left:270.069000px;}
.x8_c00086{left:438.984000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls6_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.078221pt;}
.ls4_c00086{letter-spacing:0.087539pt;}
.ls1_c00086{letter-spacing:0.092873pt;}
.ls3_c00086{letter-spacing:13.283733pt;}
.ls2_c00086{letter-spacing:15.975756pt;}
.ls5_c00086{letter-spacing:23.724873pt;}
.ws5_c00086{word-spacing:-26.566933pt;}
.ws0_c00086{word-spacing:-23.622682pt;}
.ws2_c00086{word-spacing:-23.544461pt;}
.wse_c00086{word-spacing:-20.297137pt;}
.ws7_c00086{word-spacing:-16.737168pt;}
.ws8_c00086{word-spacing:-16.701841pt;}
.wsb_c00086{word-spacing:-16.684034pt;}
.wsc_c00086{word-spacing:-16.658167pt;}
.wsa_c00086{word-spacing:-16.564804pt;}
.wsd_c00086{word-spacing:-16.368767pt;}
.wsf_c00086{word-spacing:-15.143152pt;}
.ws3_c00086{word-spacing:-13.993923pt;}
.ws6_c00086{word-spacing:-13.974207pt;}
.ws10_c00086{word-spacing:-13.867939pt;}
.ws9_c00086{word-spacing:-10.281067pt;}
.ws11_c00086{word-spacing:-10.261376pt;}
.ws4_c00086{word-spacing:-7.616060pt;}
.ws1_c00086{word-spacing:0.000000pt;}
.ws16_c00086{word-spacing:0.032800pt;}
.ws13_c00086{word-spacing:0.039110pt;}
.ws15_c00086{word-spacing:0.074430pt;}
.ws17_c00086{word-spacing:0.089082pt;}
.ws12_c00086{word-spacing:0.156442pt;}
.ws14_c00086{word-spacing:0.189730pt;}
._4_c00086{margin-left:-4.835182pt;}
._1_c00086{margin-left:-2.922363pt;}
._5_c00086{width:0.925811pt;}
._3_c00086{width:15.085805pt;}
._2_c00086{width:23.040135pt;}
._0_c00086{width:26.571147pt;}
.fs0_c00086{font-size:39.110400pt;}
.fs1_c00086{font-size:53.133867pt;}
.y0_c00086{bottom:0.000000pt;}
.y35_c00086{bottom:39.333333pt;}
.y34_c00086{bottom:77.317333pt;}
.y33_c00086{bottom:91.929333pt;}
.y32_c00086{bottom:106.541333pt;}
.y31_c00086{bottom:121.153333pt;}
.y30_c00086{bottom:135.765333pt;}
.y2f_c00086{bottom:150.377333pt;}
.y2e_c00086{bottom:164.989333pt;}
.y2d_c00086{bottom:179.601333pt;}
.y2c_c00086{bottom:194.213333pt;}
.y2b_c00086{bottom:208.824000pt;}
.y2a_c00086{bottom:223.436000pt;}
.y29_c00086{bottom:238.048000pt;}
.y28_c00086{bottom:252.660000pt;}
.y27_c00086{bottom:267.272000pt;}
.y26_c00086{bottom:281.884000pt;}
.y25_c00086{bottom:296.496000pt;}
.y24_c00086{bottom:311.108000pt;}
.y23_c00086{bottom:340.332000pt;}
.y22_c00086{bottom:384.166667pt;}
.y21_c00086{bottom:398.778667pt;}
.y20_c00086{bottom:413.390667pt;}
.y1f_c00086{bottom:442.614667pt;}
.y1e_c00086{bottom:457.226667pt;}
.y1d_c00086{bottom:471.838667pt;}
.y1c_c00086{bottom:486.450667pt;}
.y1b_c00086{bottom:501.062667pt;}
.y1a_c00086{bottom:515.673333pt;}
.y19_c00086{bottom:530.285333pt;}
.y18_c00086{bottom:544.897333pt;}
.y17_c00086{bottom:559.509333pt;}
.y16_c00086{bottom:573.789333pt;}
.y15_c00086{bottom:617.210667pt;}
.y14_c00086{bottom:633.150667pt;}
.y13_c00086{bottom:670.916000pt;}
.y12_c00086{bottom:686.856000pt;}
.y11_c00086{bottom:702.796000pt;}
.y10_c00086{bottom:724.278667pt;}
.yf_c00086{bottom:745.760000pt;}
.ye_c00086{bottom:767.242667pt;}
.yd_c00086{bottom:788.724000pt;}
.yc_c00086{bottom:804.665333pt;}
.yb_c00086{bottom:855.646667pt;}
.ya_c00086{bottom:870.258667pt;}
.y9_c00086{bottom:884.870667pt;}
.y8_c00086{bottom:899.482667pt;}
.y7_c00086{bottom:914.094667pt;}
.y6_c00086{bottom:928.706667pt;}
.y5_c00086{bottom:957.929333pt;}
.y4_c00086{bottom:972.541333pt;}
.y3_c00086{bottom:987.153333pt;}
.y2_c00086{bottom:1001.765333pt;}
.y1_c00086{bottom:1030.989333pt;}
.h3_c00086{height:31.280681pt;}
.h2_c00086{height:32.006363pt;}
.h4_c00086{height:46.518078pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w0_c00086{width:793.706667pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.x5_c00086{left:113.385333pt;}
.x1_c00086{left:121.886667pt;}
.x6_c00086{left:133.704000pt;}
.x3_c00086{left:135.302667pt;}
.x4_c00086{left:146.594667pt;}
.x2_c00086{left:228.244000pt;}
.x7_c00086{left:240.061333pt;}
.x8_c00086{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20669ffb3156a4a38b67586d.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.014648;font-style:normal;font-weight:normal;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_60cc784fcf9ce7fa9843a9f4.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.048828;font-style:normal;font-weight:normal;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_2c19ceb38d7508d8e2d3f752.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.083496;font-style:normal;font-weight:normal;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_9c862b95cd0d74d983cd348f.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.102051;font-style:normal;font-weight:normal;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_81b41df0cb4e492d5db321e2.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:0.893555;font-style: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;}
.ls6_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:0.087998px;}
.ls2_c00087{letter-spacing:0.098482px;}
.ls1_c00087{letter-spacing:0.104482px;}
.ls4_c00087{letter-spacing:11.552725px;}
.ls5_c00087{letter-spacing:18.082200px;}
.ls3_c00087{letter-spacing:26.690482px;}
.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;}
}
.wsc_c00087{word-spacing:-33.713438px;}
.ws8_c00087{word-spacing:-29.887800px;}
.ws2_c00087{word-spacing:-26.575517px;}
.ws1_c00087{word-spacing:-26.487518px;}
.ws9_c00087{word-spacing:-22.176748px;}
.ws6_c00087{word-spacing:-22.157164px;}
.wsa_c00087{word-spacing:-18.769538px;}
.wsb_c00087{word-spacing:-15.661207px;}
.wsd_c00087{word-spacing:-15.601432px;}
.ws7_c00087{word-spacing:-14.982067px;}
.ws0_c00087{word-spacing:0.000000px;}
.ws5_c00087{word-spacing:0.063317px;}
.ws4_c00087{word-spacing:0.073800px;}
.ws3_c00087{word-spacing:0.175997px;}
._0_c00087{width:1.069690px;}
._2_c00087{width:18.165766px;}
._3_c00087{width:19.665692px;}
._1_c00087{width:29.892540px;}
.fc5_c00087{color:rgb(0,0,207);}
.fc6_c00087{color:rgb(6,69,173);}
.fc4_c00087{color:rgb(207,92,0);}
.fc3_c00087{color:rgb(79,153,5);}
.fc2_c00087{color:rgb(0,0,0);}
.fc1_c00087{color:rgb(33,74,135);}
.fc0_c00087{color:rgb(143,89,3);}
.fs0_c00087{font-size:43.999200px;}
.fs1_c00087{font-size:59.775600px;}
.y0_c00087{bottom:0.000000px;}
.y39_c00087{bottom:44.250000px;}
.y38_c00087{bottom:82.051500px;}
.y37_c00087{bottom:99.984000px;}
.y36_c00087{bottom:126.151500px;}
.y35_c00087{bottom:144.084000px;}
.y34_c00087{bottom:206.437500px;}
.y33_c00087{bottom:222.876000px;}
.y32_c00087{bottom:239.314500px;}
.y31_c00087{bottom:255.753000px;}
.y30_c00087{bottom:272.191500px;}
.y2f_c00087{bottom:288.630000px;}
.y2e_c00087{bottom:305.068500px;}
.y2d_c00087{bottom:321.507000px;}
.y2c_c00087{bottom:337.945500px;}
.y2b_c00087{bottom:370.822500px;}
.y2a_c00087{bottom:387.259500px;}
.y29_c00087{bottom:403.698000px;}
.y28_c00087{bottom:420.136500px;}
.y27_c00087{bottom:453.013500px;}
.y26_c00087{bottom:469.452000px;}
.y25_c00087{bottom:485.890500px;}
.y24_c00087{bottom:502.329000px;}
.y23_c00087{bottom:551.643000px;}
.y22_c00087{bottom:568.081500px;}
.y21_c00087{bottom:584.520000px;}
.y20_c00087{bottom:600.958500px;}
.y1f_c00087{bottom:617.397000px;}
.y1e_c00087{bottom:633.835500px;}
.y1d_c00087{bottom:650.274000px;}
.y1c_c00087{bottom:666.712500px;}
.y1b_c00087{bottom:683.151000px;}
.y1a_c00087{bottom:699.589500px;}
.y19_c00087{bottom:716.028000px;}
.y18_c00087{bottom:732.465000px;}
.y17_c00087{bottom:748.903500px;}
.y16_c00087{bottom:765.342000px;}
.y15_c00087{bottom:798.219000px;}
.y14_c00087{bottom:814.657500px;}
.y13_c00087{bottom:831.096000px;}
.y12_c00087{bottom:847.534500px;}
.y11_c00087{bottom:863.973000px;}
.y10_c00087{bottom:880.411500px;}
.yf_c00087{bottom:896.848500px;}
.ye_c00087{bottom:913.287000px;}
.yd_c00087{bottom:929.725500px;}
.yc_c00087{bottom:946.164000px;}
.yb_c00087{bottom:962.602500px;}
.ya_c00087{bottom:979.041000px;}
.y9_c00087{bottom:995.479500px;}
.y8_c00087{bottom:1028.356500px;}
.y7_c00087{bottom:1044.795000px;}
.y6_c00087{bottom:1061.232000px;}
.y5_c00087{bottom:1094.109000px;}
.y4_c00087{bottom:1110.547500px;}
.y3_c00087{bottom:1126.986000px;}
.y2_c00087{bottom:1143.424500px;}
.y1_c00087{bottom:1159.863000px;}
.h2_c00087{height:35.190766px;}
.h3_c00087{height:36.007158px;}
.h4_c00087{height:52.332837px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w0_c00087{width:892.920000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:137.122500px;}
.x2_c00087{left:150.417000px;}
.x6_c00087{left:152.215500px;}
.x7_c00087{left:164.919000px;}
.x4_c00087{left:243.949500px;}
.x5_c00087{left:263.421000px;}
.x3_c00087{left:270.069000px;}
.x8_c00087{left:438.984000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls6_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:0.078221pt;}
.ls2_c00087{letter-spacing:0.087539pt;}
.ls1_c00087{letter-spacing:0.092873pt;}
.ls4_c00087{letter-spacing:10.269089pt;}
.ls5_c00087{letter-spacing:16.073067pt;}
.ls3_c00087{letter-spacing:23.724873pt;}
.wsc_c00087{word-spacing:-29.967501pt;}
.ws8_c00087{word-spacing:-26.566933pt;}
.ws2_c00087{word-spacing:-23.622682pt;}
.ws1_c00087{word-spacing:-23.544461pt;}
.ws9_c00087{word-spacing:-19.712665pt;}
.ws6_c00087{word-spacing:-19.695257pt;}
.wsa_c00087{word-spacing:-16.684034pt;}
.wsb_c00087{word-spacing:-13.921073pt;}
.wsd_c00087{word-spacing:-13.867939pt;}
.ws7_c00087{word-spacing:-13.317393pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.ws5_c00087{word-spacing:0.056282pt;}
.ws4_c00087{word-spacing:0.065600pt;}
.ws3_c00087{word-spacing:0.156442pt;}
._0_c00087{width:0.950835pt;}
._2_c00087{width:16.147347pt;}
._3_c00087{width:17.480615pt;}
._1_c00087{width:26.571147pt;}
.fs0_c00087{font-size:39.110400pt;}
.fs1_c00087{font-size:53.133867pt;}
.y0_c00087{bottom:0.000000pt;}
.y39_c00087{bottom:39.333333pt;}
.y38_c00087{bottom:72.934667pt;}
.y37_c00087{bottom:88.874667pt;}
.y36_c00087{bottom:112.134667pt;}
.y35_c00087{bottom:128.074667pt;}
.y34_c00087{bottom:183.500000pt;}
.y33_c00087{bottom:198.112000pt;}
.y32_c00087{bottom:212.724000pt;}
.y31_c00087{bottom:227.336000pt;}
.y30_c00087{bottom:241.948000pt;}
.y2f_c00087{bottom:256.560000pt;}
.y2e_c00087{bottom:271.172000pt;}
.y2d_c00087{bottom:285.784000pt;}
.y2c_c00087{bottom:300.396000pt;}
.y2b_c00087{bottom:329.620000pt;}
.y2a_c00087{bottom:344.230667pt;}
.y29_c00087{bottom:358.842667pt;}
.y28_c00087{bottom:373.454667pt;}
.y27_c00087{bottom:402.678667pt;}
.y26_c00087{bottom:417.290667pt;}
.y25_c00087{bottom:431.902667pt;}
.y24_c00087{bottom:446.514667pt;}
.y23_c00087{bottom:490.349333pt;}
.y22_c00087{bottom:504.961333pt;}
.y21_c00087{bottom:519.573333pt;}
.y20_c00087{bottom:534.185333pt;}
.y1f_c00087{bottom:548.797333pt;}
.y1e_c00087{bottom:563.409333pt;}
.y1d_c00087{bottom:578.021333pt;}
.y1c_c00087{bottom:592.633333pt;}
.y1b_c00087{bottom:607.245333pt;}
.y1a_c00087{bottom:621.857333pt;}
.y19_c00087{bottom:636.469333pt;}
.y18_c00087{bottom:651.080000pt;}
.y17_c00087{bottom:665.692000pt;}
.y16_c00087{bottom:680.304000pt;}
.y15_c00087{bottom:709.528000pt;}
.y14_c00087{bottom:724.140000pt;}
.y13_c00087{bottom:738.752000pt;}
.y12_c00087{bottom:753.364000pt;}
.y11_c00087{bottom:767.976000pt;}
.y10_c00087{bottom:782.588000pt;}
.yf_c00087{bottom:797.198667pt;}
.ye_c00087{bottom:811.810667pt;}
.yd_c00087{bottom:826.422667pt;}
.yc_c00087{bottom:841.034667pt;}
.yb_c00087{bottom:855.646667pt;}
.ya_c00087{bottom:870.258667pt;}
.y9_c00087{bottom:884.870667pt;}
.y8_c00087{bottom:914.094667pt;}
.y7_c00087{bottom:928.706667pt;}
.y6_c00087{bottom:943.317333pt;}
.y5_c00087{bottom:972.541333pt;}
.y4_c00087{bottom:987.153333pt;}
.y3_c00087{bottom:1001.765333pt;}
.y2_c00087{bottom:1016.377333pt;}
.y1_c00087{bottom:1030.989333pt;}
.h2_c00087{height:31.280681pt;}
.h3_c00087{height:32.006363pt;}
.h4_c00087{height:46.518078pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w0_c00087{width:793.706667pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:121.886667pt;}
.x2_c00087{left:133.704000pt;}
.x6_c00087{left:135.302667pt;}
.x7_c00087{left:146.594667pt;}
.x4_c00087{left:216.844000pt;}
.x5_c00087{left:234.152000pt;}
.x3_c00087{left:240.061333pt;}
.x8_c00087{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e44b066dcfee9d1cd08ec4af.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.083496;font-style:normal;font-weight:normal;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_5789e53b7a2ead0782a3d5c0.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.102051;font-style:normal;font-weight:normal;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_54f0aef3584d6bd08abd7627.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.014648;font-style:normal;font-weight:normal;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_cb3e8c0c8957b5b4c4296e53.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_0038821f75e4bc22eba0929d.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls5_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.087998px;}
.ls0_c00088{letter-spacing:0.097776px;}
.ls3_c00088{letter-spacing:0.098482px;}
.ls2_c00088{letter-spacing:0.104482px;}
.ls4_c00088{letter-spacing:26.690482px;}
.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;}
}
.ws9_c00088{word-spacing:-26.575517px;}
.ws8_c00088{word-spacing:-26.487518px;}
.ws2_c00088{word-spacing:-19.546621px;}
.ws6_c00088{word-spacing:-18.829314px;}
.ws4_c00088{word-spacing:-18.798313px;}
.ws3_c00088{word-spacing:-12.342067px;}
.ws5_c00088{word-spacing:-11.497214px;}
.ws0_c00088{word-spacing:0.000000px;}
.ws10_c00088{word-spacing:0.036900px;}
.wsa_c00088{word-spacing:0.043999px;}
.ws1_c00088{word-spacing:0.048888px;}
.wsd_c00088{word-spacing:0.053933px;}
.wse_c00088{word-spacing:0.056767px;}
.ws11_c00088{word-spacing:0.057317px;}
.wsc_c00088{word-spacing:0.063317px;}
.wsf_c00088{word-spacing:0.064416px;}
.ws12_c00088{word-spacing:0.080899px;}
.ws7_c00088{word-spacing:0.175997px;}
.wsb_c00088{word-spacing:0.213446px;}
._0_c00088{width:1.041538px;}
.fc5_c00088{color:rgb(0,0,207);}
.fc4_c00088{color:rgb(79,153,5);}
.fc3_c00088{color:rgb(207,92,0);}
.fc2_c00088{color:rgb(33,74,135);}
.fc1_c00088{color:rgb(143,89,3);}
.fc0_c00088{color:rgb(0,0,0);}
.fs2_c00088{font-size:43.999200px;}
.fs0_c00088{font-size:48.888000px;}
.fs1_c00088{font-size:59.775600px;}
.y0_c00088{bottom:0.000000px;}
.y34_c00088{bottom:44.250000px;}
.y33_c00088{bottom:86.982000px;}
.y32_c00088{bottom:103.420500px;}
.y31_c00088{bottom:119.859000px;}
.y30_c00088{bottom:136.297500px;}
.y2f_c00088{bottom:152.736000px;}
.y2e_c00088{bottom:169.174500px;}
.y2d_c00088{bottom:185.613000px;}
.y2c_c00088{bottom:202.051500px;}
.y2b_c00088{bottom:218.490000px;}
.y2a_c00088{bottom:234.927000px;}
.y29_c00088{bottom:251.365500px;}
.y28_c00088{bottom:300.681000px;}
.y27_c00088{bottom:317.119500px;}
.y26_c00088{bottom:333.558000px;}
.y25_c00088{bottom:349.996500px;}
.y24_c00088{bottom:366.435000px;}
.y23_c00088{bottom:382.873500px;}
.y22_c00088{bottom:399.310500px;}
.y21_c00088{bottom:415.749000px;}
.y20_c00088{bottom:432.187500px;}
.y1f_c00088{bottom:448.626000px;}
.y1e_c00088{bottom:465.064500px;}
.y1d_c00088{bottom:481.503000px;}
.y1c_c00088{bottom:497.941500px;}
.y1b_c00088{bottom:514.380000px;}
.y1a_c00088{bottom:530.818500px;}
.y19_c00088{bottom:547.257000px;}
.y18_c00088{bottom:596.571000px;}
.y17_c00088{bottom:613.009500px;}
.y16_c00088{bottom:629.448000px;}
.y15_c00088{bottom:662.325000px;}
.y14_c00088{bottom:711.640500px;}
.y13_c00088{bottom:728.079000px;}
.y12_c00088{bottom:744.516000px;}
.y11_c00088{bottom:777.393000px;}
.y10_c00088{bottom:793.831500px;}
.yf_c00088{bottom:810.270000px;}
.ye_c00088{bottom:826.708500px;}
.yd_c00088{bottom:843.147000px;}
.yc_c00088{bottom:859.585500px;}
.yb_c00088{bottom:876.024000px;}
.ya_c00088{bottom:892.462500px;}
.y9_c00088{bottom:908.901000px;}
.y8_c00088{bottom:924.964500px;}
.y7_c00088{bottom:973.864500px;}
.y6_c00088{bottom:991.797000px;}
.y5_c00088{bottom:1034.334000px;}
.y4_c00088{bottom:1052.266500px;}
.y3_c00088{bottom:1088.131500px;}
.y2_c00088{bottom:1123.998000px;}
.y1_c00088{bottom:1159.863000px;}
.h4_c00088{height:35.190766px;}
.h6_c00088{height:35.770834px;}
.h5_c00088{height:36.007158px;}
.h2_c00088{height:40.007953px;}
.h3_c00088{height:52.332837px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w0_c00088{width:892.920000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x2_c00088{left:127.558500px;}
.x3_c00088{left:137.122500px;}
.x4_c00088{left:150.417000px;}
.x1_c00088{left:179.691000px;}
.x5_c00088{left:270.069000px;}
.x6_c00088{left:438.984000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls5_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.078221pt;}
.ls0_c00088{letter-spacing:0.086912pt;}
.ls3_c00088{letter-spacing:0.087539pt;}
.ls2_c00088{letter-spacing:0.092873pt;}
.ls4_c00088{letter-spacing:23.724873pt;}
.ws9_c00088{word-spacing:-23.622682pt;}
.ws8_c00088{word-spacing:-23.544461pt;}
.ws2_c00088{word-spacing:-17.374774pt;}
.ws6_c00088{word-spacing:-16.737168pt;}
.ws4_c00088{word-spacing:-16.709612pt;}
.ws3_c00088{word-spacing:-10.970726pt;}
.ws5_c00088{word-spacing:-10.219746pt;}
.ws0_c00088{word-spacing:0.000000pt;}
.ws10_c00088{word-spacing:0.032800pt;}
.wsa_c00088{word-spacing:0.039110pt;}
.ws1_c00088{word-spacing:0.043456pt;}
.wsd_c00088{word-spacing:0.047940pt;}
.wse_c00088{word-spacing:0.050460pt;}
.ws11_c00088{word-spacing:0.050948pt;}
.wsc_c00088{word-spacing:0.056282pt;}
.wsf_c00088{word-spacing:0.057259pt;}
.ws12_c00088{word-spacing:0.071910pt;}
.ws7_c00088{word-spacing:0.156442pt;}
.wsb_c00088{word-spacing:0.189730pt;}
._0_c00088{width:0.925811pt;}
.fs2_c00088{font-size:39.110400pt;}
.fs0_c00088{font-size:43.456000pt;}
.fs1_c00088{font-size:53.133867pt;}
.y0_c00088{bottom:0.000000pt;}
.y34_c00088{bottom:39.333333pt;}
.y33_c00088{bottom:77.317333pt;}
.y32_c00088{bottom:91.929333pt;}
.y31_c00088{bottom:106.541333pt;}
.y30_c00088{bottom:121.153333pt;}
.y2f_c00088{bottom:135.765333pt;}
.y2e_c00088{bottom:150.377333pt;}
.y2d_c00088{bottom:164.989333pt;}
.y2c_c00088{bottom:179.601333pt;}
.y2b_c00088{bottom:194.213333pt;}
.y2a_c00088{bottom:208.824000pt;}
.y29_c00088{bottom:223.436000pt;}
.y28_c00088{bottom:267.272000pt;}
.y27_c00088{bottom:281.884000pt;}
.y26_c00088{bottom:296.496000pt;}
.y25_c00088{bottom:311.108000pt;}
.y24_c00088{bottom:325.720000pt;}
.y23_c00088{bottom:340.332000pt;}
.y22_c00088{bottom:354.942667pt;}
.y21_c00088{bottom:369.554667pt;}
.y20_c00088{bottom:384.166667pt;}
.y1f_c00088{bottom:398.778667pt;}
.y1e_c00088{bottom:413.390667pt;}
.y1d_c00088{bottom:428.002667pt;}
.y1c_c00088{bottom:442.614667pt;}
.y1b_c00088{bottom:457.226667pt;}
.y1a_c00088{bottom:471.838667pt;}
.y19_c00088{bottom:486.450667pt;}
.y18_c00088{bottom:530.285333pt;}
.y17_c00088{bottom:544.897333pt;}
.y16_c00088{bottom:559.509333pt;}
.y15_c00088{bottom:588.733333pt;}
.y14_c00088{bottom:632.569333pt;}
.y13_c00088{bottom:647.181333pt;}
.y12_c00088{bottom:661.792000pt;}
.y11_c00088{bottom:691.016000pt;}
.y10_c00088{bottom:705.628000pt;}
.yf_c00088{bottom:720.240000pt;}
.ye_c00088{bottom:734.852000pt;}
.yd_c00088{bottom:749.464000pt;}
.yc_c00088{bottom:764.076000pt;}
.yb_c00088{bottom:778.688000pt;}
.ya_c00088{bottom:793.300000pt;}
.y9_c00088{bottom:807.912000pt;}
.y8_c00088{bottom:822.190667pt;}
.y7_c00088{bottom:865.657333pt;}
.y6_c00088{bottom:881.597333pt;}
.y5_c00088{bottom:919.408000pt;}
.y4_c00088{bottom:935.348000pt;}
.y3_c00088{bottom:967.228000pt;}
.y2_c00088{bottom:999.109333pt;}
.y1_c00088{bottom:1030.989333pt;}
.h4_c00088{height:31.280681pt;}
.h6_c00088{height:31.796297pt;}
.h5_c00088{height:32.006363pt;}
.h2_c00088{height:35.562625pt;}
.h3_c00088{height:46.518078pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w0_c00088{width:793.706667pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x2_c00088{left:113.385333pt;}
.x3_c00088{left:121.886667pt;}
.x4_c00088{left:133.704000pt;}
.x1_c00088{left:159.725333pt;}
.x5_c00088{left:240.061333pt;}
.x6_c00088{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_583e39b24ca06b44fad0927f.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.083496;font-style:normal;font-weight:normal;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_64643f575f60aa499347f798.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.014648;font-style:normal;font-weight:normal;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_13583739ba9cb119f2c5b5a6.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.048828;font-style:normal;font-weight:normal;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_46f8b4f5d9b57c5298f8b4fa.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_5e5b974a797dd442c1edfb7e.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00089;src:url('chunks/assets/font_0305abd17fab88d16f8901d2.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:0.893555;font-style: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;}
.ls8_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:0.087998px;}
.ls1_c00089{letter-spacing:0.098482px;}
.ls3_c00089{letter-spacing:0.104482px;}
.ls7_c00089{letter-spacing:15.418200px;}
.ls4_c00089{letter-spacing:20.360725px;}
.ls2_c00089{letter-spacing:26.690482px;}
.ls6_c00089{letter-spacing:27.898200px;}
.ls5_c00089{letter-spacing:103.276200px;}
.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;}
}
.ws1a_c00089{word-spacing:-33.713438px;}
.ws0_c00089{word-spacing:-26.575517px;}
.ws2_c00089{word-spacing:-26.487518px;}
.ws17_c00089{word-spacing:-19.486846px;}
.ws12_c00089{word-spacing:-18.829314px;}
.wsd_c00089{word-spacing:-18.769538px;}
.ws18_c00089{word-spacing:-18.315792px;}
.ws19_c00089{word-spacing:-18.291334px;}
.ws1b_c00089{word-spacing:-15.601432px;}
.wsc_c00089{word-spacing:-13.389734px;}
.ws9_c00089{word-spacing:-13.355164px;}
.ws1c_c00089{word-spacing:-11.523631px;}
.wsb_c00089{word-spacing:-9.564096px;}
.wsa_c00089{word-spacing:-6.180067px;}
.ws13_c00089{word-spacing:-5.858009px;}
.ws14_c00089{word-spacing:-5.466863px;}
.ws16_c00089{word-spacing:-2.570351px;}
.ws1_c00089{word-spacing:0.000000px;}
.ws7_c00089{word-spacing:0.036900px;}
.ws1d_c00089{word-spacing:0.043999px;}
.ws4_c00089{word-spacing:0.053933px;}
.ws5_c00089{word-spacing:0.056767px;}
.ws3_c00089{word-spacing:0.063317px;}
.ws6_c00089{word-spacing:0.064416px;}
.ws8_c00089{word-spacing:0.175997px;}
.ws1e_c00089{word-spacing:0.213446px;}
.ws15_c00089{word-spacing:1.386283px;}
.wse_c00089{word-spacing:69.519023px;}
.wsf_c00089{word-spacing:69.911137px;}
.ws10_c00089{word-spacing:76.732834px;}
.ws11_c00089{word-spacing:162.846287px;}
._6_c00089{margin-left:-6.455864px;}
._5_c00089{margin-left:-4.124516px;}
._3_c00089{margin-left:-1.016185px;}
._0_c00089{width:1.020240px;}
._2_c00089{width:21.698543px;}
._1_c00089{width:29.892540px;}
._4_c00089{width:36.228736px;}
._7_c00089{width:45.911624px;}
.fc5_c00089{color:rgb(0,0,207);}
.fc4_c00089{color:rgb(79,153,5);}
.fc6_c00089{color:rgb(6,69,173);}
.fc3_c00089{color:rgb(207,92,0);}
.fc2_c00089{color:rgb(0,0,0);}
.fc1_c00089{color:rgb(143,89,3);}
.fc0_c00089{color:rgb(33,74,135);}
.fs0_c00089{font-size:43.999200px;}
.fs1_c00089{font-size:59.775600px;}
.y0_c00089{bottom:0.000000px;}
.y39_c00089{bottom:44.250000px;}
.y38_c00089{bottom:82.051500px;}
.y37_c00089{bottom:98.490000px;}
.y36_c00089{bottom:114.553500px;}
.y35_c00089{bottom:161.598000px;}
.y34_c00089{bottom:179.530500px;}
.y33_c00089{bottom:220.212000px;}
.y32_c00089{bottom:238.144500px;}
.y31_c00089{bottom:261.861000px;}
.y30_c00089{bottom:279.793500px;}
.y2f_c00089{bottom:297.726000px;}
.y2e_c00089{bottom:321.442500px;}
.y2d_c00089{bottom:339.376500px;}
.y2c_c00089{bottom:363.093000px;}
.y2b_c00089{bottom:381.025500px;}
.y2a_c00089{bottom:436.575000px;}
.y29_c00089{bottom:453.013500px;}
.y28_c00089{bottom:469.452000px;}
.y27_c00089{bottom:485.890500px;}
.y26_c00089{bottom:502.329000px;}
.y25_c00089{bottom:518.767500px;}
.y24_c00089{bottom:535.206000px;}
.y23_c00089{bottom:551.643000px;}
.y22_c00089{bottom:568.081500px;}
.y21_c00089{bottom:584.520000px;}
.y20_c00089{bottom:600.958500px;}
.y1f_c00089{bottom:617.397000px;}
.y1e_c00089{bottom:633.835500px;}
.y1d_c00089{bottom:650.274000px;}
.y1c_c00089{bottom:666.712500px;}
.y1b_c00089{bottom:683.151000px;}
.y1a_c00089{bottom:699.589500px;}
.y19_c00089{bottom:732.465000px;}
.y18_c00089{bottom:748.903500px;}
.y17_c00089{bottom:765.342000px;}
.y16_c00089{bottom:781.780500px;}
.y15_c00089{bottom:814.657500px;}
.y14_c00089{bottom:831.096000px;}
.y13_c00089{bottom:847.534500px;}
.y12_c00089{bottom:863.973000px;}
.y11_c00089{bottom:880.411500px;}
.y10_c00089{bottom:896.848500px;}
.yf_c00089{bottom:913.287000px;}
.ye_c00089{bottom:929.725500px;}
.yd_c00089{bottom:946.164000px;}
.yc_c00089{bottom:962.602500px;}
.yb_c00089{bottom:979.041000px;}
.ya_c00089{bottom:995.479500px;}
.y9_c00089{bottom:1011.918000px;}
.y8_c00089{bottom:1028.356500px;}
.y7_c00089{bottom:1044.795000px;}
.y6_c00089{bottom:1061.232000px;}
.y5_c00089{bottom:1094.109000px;}
.y4_c00089{bottom:1110.547500px;}
.y3_c00089{bottom:1126.986000px;}
.y2_c00089{bottom:1143.424500px;}
.y1_c00089{bottom:1159.863000px;}
.h3_c00089{height:35.190766px;}
.h4_c00089{height:35.770834px;}
.h2_c00089{height:36.007158px;}
.h5_c00089{height:52.332837px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w0_c00089{width:892.920000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x8_c00089{left:127.558500px;}
.x2_c00089{left:137.122500px;}
.x3_c00089{left:150.417000px;}
.x6_c00089{left:152.215500px;}
.x7_c00089{left:164.919000px;}
.x1_c00089{left:270.069000px;}
.x4_c00089{left:283.363500px;}
.x5_c00089{left:389.719500px;}
.x9_c00089{left:438.984000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls8_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:0.078221pt;}
.ls1_c00089{letter-spacing:0.087539pt;}
.ls3_c00089{letter-spacing:0.092873pt;}
.ls7_c00089{letter-spacing:13.705067pt;}
.ls4_c00089{letter-spacing:18.098422pt;}
.ls2_c00089{letter-spacing:23.724873pt;}
.ls6_c00089{letter-spacing:24.798400pt;}
.ls5_c00089{letter-spacing:91.801067pt;}
.ws1a_c00089{word-spacing:-29.967501pt;}
.ws0_c00089{word-spacing:-23.622682pt;}
.ws2_c00089{word-spacing:-23.544461pt;}
.ws17_c00089{word-spacing:-17.321641pt;}
.ws12_c00089{word-spacing:-16.737168pt;}
.wsd_c00089{word-spacing:-16.684034pt;}
.ws18_c00089{word-spacing:-16.280704pt;}
.ws19_c00089{word-spacing:-16.258963pt;}
.ws1b_c00089{word-spacing:-13.867939pt;}
.wsc_c00089{word-spacing:-11.901986pt;}
.ws9_c00089{word-spacing:-11.871257pt;}
.ws1c_c00089{word-spacing:-10.243228pt;}
.wsb_c00089{word-spacing:-8.501419pt;}
.wsa_c00089{word-spacing:-5.493393pt;}
.ws13_c00089{word-spacing:-5.207119pt;}
.ws14_c00089{word-spacing:-4.859434pt;}
.ws16_c00089{word-spacing:-2.284756pt;}
.ws1_c00089{word-spacing:0.000000pt;}
.ws7_c00089{word-spacing:0.032800pt;}
.ws1d_c00089{word-spacing:0.039110pt;}
.ws4_c00089{word-spacing:0.047940pt;}
.ws5_c00089{word-spacing:0.050460pt;}
.ws3_c00089{word-spacing:0.056282pt;}
.ws6_c00089{word-spacing:0.057259pt;}
.ws8_c00089{word-spacing:0.156442pt;}
.ws1e_c00089{word-spacing:0.189730pt;}
.ws15_c00089{word-spacing:1.232252pt;}
.wse_c00089{word-spacing:61.794687pt;}
.wsf_c00089{word-spacing:62.143233pt;}
.ws10_c00089{word-spacing:68.206963pt;}
.ws11_c00089{word-spacing:144.752255pt;}
._6_c00089{margin-left:-5.738546pt;}
._5_c00089{margin-left:-3.666237pt;}
._3_c00089{margin-left:-0.903276pt;}
._0_c00089{width:0.906880pt;}
._2_c00089{width:19.287594pt;}
._1_c00089{width:26.571147pt;}
._4_c00089{width:32.203321pt;}
._7_c00089{width:40.810333pt;}
.fs0_c00089{font-size:39.110400pt;}
.fs1_c00089{font-size:53.133867pt;}
.y0_c00089{bottom:0.000000pt;}
.y39_c00089{bottom:39.333333pt;}
.y38_c00089{bottom:72.934667pt;}
.y37_c00089{bottom:87.546667pt;}
.y36_c00089{bottom:101.825333pt;}
.y35_c00089{bottom:143.642667pt;}
.y34_c00089{bottom:159.582667pt;}
.y33_c00089{bottom:195.744000pt;}
.y32_c00089{bottom:211.684000pt;}
.y31_c00089{bottom:232.765333pt;}
.y30_c00089{bottom:248.705333pt;}
.y2f_c00089{bottom:264.645333pt;}
.y2e_c00089{bottom:285.726667pt;}
.y2d_c00089{bottom:301.668000pt;}
.y2c_c00089{bottom:322.749333pt;}
.y2b_c00089{bottom:338.689333pt;}
.y2a_c00089{bottom:388.066667pt;}
.y29_c00089{bottom:402.678667pt;}
.y28_c00089{bottom:417.290667pt;}
.y27_c00089{bottom:431.902667pt;}
.y26_c00089{bottom:446.514667pt;}
.y25_c00089{bottom:461.126667pt;}
.y24_c00089{bottom:475.738667pt;}
.y23_c00089{bottom:490.349333pt;}
.y22_c00089{bottom:504.961333pt;}
.y21_c00089{bottom:519.573333pt;}
.y20_c00089{bottom:534.185333pt;}
.y1f_c00089{bottom:548.797333pt;}
.y1e_c00089{bottom:563.409333pt;}
.y1d_c00089{bottom:578.021333pt;}
.y1c_c00089{bottom:592.633333pt;}
.y1b_c00089{bottom:607.245333pt;}
.y1a_c00089{bottom:621.857333pt;}
.y19_c00089{bottom:651.080000pt;}
.y18_c00089{bottom:665.692000pt;}
.y17_c00089{bottom:680.304000pt;}
.y16_c00089{bottom:694.916000pt;}
.y15_c00089{bottom:724.140000pt;}
.y14_c00089{bottom:738.752000pt;}
.y13_c00089{bottom:753.364000pt;}
.y12_c00089{bottom:767.976000pt;}
.y11_c00089{bottom:782.588000pt;}
.y10_c00089{bottom:797.198667pt;}
.yf_c00089{bottom:811.810667pt;}
.ye_c00089{bottom:826.422667pt;}
.yd_c00089{bottom:841.034667pt;}
.yc_c00089{bottom:855.646667pt;}
.yb_c00089{bottom:870.258667pt;}
.ya_c00089{bottom:884.870667pt;}
.y9_c00089{bottom:899.482667pt;}
.y8_c00089{bottom:914.094667pt;}
.y7_c00089{bottom:928.706667pt;}
.y6_c00089{bottom:943.317333pt;}
.y5_c00089{bottom:972.541333pt;}
.y4_c00089{bottom:987.153333pt;}
.y3_c00089{bottom:1001.765333pt;}
.y2_c00089{bottom:1016.377333pt;}
.y1_c00089{bottom:1030.989333pt;}
.h3_c00089{height:31.280681pt;}
.h4_c00089{height:31.796297pt;}
.h2_c00089{height:32.006363pt;}
.h5_c00089{height:46.518078pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w0_c00089{width:793.706667pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x8_c00089{left:113.385333pt;}
.x2_c00089{left:121.886667pt;}
.x3_c00089{left:133.704000pt;}
.x6_c00089{left:135.302667pt;}
.x7_c00089{left:146.594667pt;}
.x1_c00089{left:240.061333pt;}
.x4_c00089{left:251.878667pt;}
.x5_c00089{left:346.417333pt;}
.x9_c00089{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dc704a72e9b52c3a3b8e84f.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.048828;font-style:normal;font-weight:normal;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_8207f01d7bb049e7ec244d0e.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_22cd2542bf38f704efb00e7e.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_5c7d564e5c27669e970478a8.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls4_c00090{letter-spacing:0.000000px;}
.ls1_c00090{letter-spacing:0.087998px;}
.ls2_c00090{letter-spacing:0.098482px;}
.ls0_c00090{letter-spacing:0.104482px;}
.ls3_c00090{letter-spacing:26.690482px;}
.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;}
}
.ws1_c00090{word-spacing:-26.575517px;}
.ws0_c00090{word-spacing:-26.487518px;}
.ws4_c00090{word-spacing:0.000000px;}
.wse_c00090{word-spacing:0.036900px;}
.ws2_c00090{word-spacing:0.043999px;}
.ws6_c00090{word-spacing:0.047383px;}
.wsb_c00090{word-spacing:0.053933px;}
.wsc_c00090{word-spacing:0.056767px;}
.ws5_c00090{word-spacing:0.063317px;}
.wsd_c00090{word-spacing:0.064416px;}
.ws7_c00090{word-spacing:0.070416px;}
.ws9_c00090{word-spacing:0.090283px;}
.ws8_c00090{word-spacing:0.175997px;}
.ws3_c00090{word-spacing:0.213446px;}
.wsa_c00090{word-spacing:0.219446px;}
._0_c00090{width:1.031604px;}
.fc5_c00090{color:rgb(0,0,207);}
.fc4_c00090{color:rgb(143,89,3);}
.fc3_c00090{color:rgb(79,153,5);}
.fc2_c00090{color:rgb(207,92,0);}
.fc1_c00090{color:rgb(0,0,0);}
.fc0_c00090{color:rgb(33,74,135);}
.fs0_c00090{font-size:43.999200px;}
.fs1_c00090{font-size:59.775600px;}
.y0_c00090{bottom:0.000000px;}
.y3c_c00090{bottom:44.250000px;}
.y3b_c00090{bottom:91.369500px;}
.y3a_c00090{bottom:107.808000px;}
.y39_c00090{bottom:124.246500px;}
.y38_c00090{bottom:140.685000px;}
.y37_c00090{bottom:157.123500px;}
.y36_c00090{bottom:173.562000px;}
.y35_c00090{bottom:190.000500px;}
.y34_c00090{bottom:206.437500px;}
.y33_c00090{bottom:222.876000px;}
.y32_c00090{bottom:239.314500px;}
.y31_c00090{bottom:255.753000px;}
.y30_c00090{bottom:272.191500px;}
.y2f_c00090{bottom:288.630000px;}
.y2e_c00090{bottom:305.068500px;}
.y2d_c00090{bottom:321.507000px;}
.y2c_c00090{bottom:337.945500px;}
.y2b_c00090{bottom:354.384000px;}
.y2a_c00090{bottom:370.822500px;}
.y29_c00090{bottom:403.698000px;}
.y28_c00090{bottom:420.136500px;}
.y27_c00090{bottom:436.575000px;}
.y26_c00090{bottom:453.013500px;}
.y25_c00090{bottom:469.452000px;}
.y24_c00090{bottom:485.890500px;}
.y23_c00090{bottom:502.329000px;}
.y22_c00090{bottom:518.767500px;}
.y21_c00090{bottom:535.206000px;}
.y20_c00090{bottom:551.643000px;}
.y1f_c00090{bottom:568.081500px;}
.y1e_c00090{bottom:584.520000px;}
.y1d_c00090{bottom:600.958500px;}
.y1c_c00090{bottom:617.397000px;}
.y1b_c00090{bottom:633.835500px;}
.y1a_c00090{bottom:650.274000px;}
.y19_c00090{bottom:683.151000px;}
.y18_c00090{bottom:699.589500px;}
.y17_c00090{bottom:716.028000px;}
.y16_c00090{bottom:732.465000px;}
.y15_c00090{bottom:748.903500px;}
.y14_c00090{bottom:765.342000px;}
.y13_c00090{bottom:781.780500px;}
.y12_c00090{bottom:798.219000px;}
.y11_c00090{bottom:814.657500px;}
.y10_c00090{bottom:831.096000px;}
.yf_c00090{bottom:847.534500px;}
.ye_c00090{bottom:863.973000px;}
.yd_c00090{bottom:880.411500px;}
.yc_c00090{bottom:896.848500px;}
.yb_c00090{bottom:913.287000px;}
.ya_c00090{bottom:962.602500px;}
.y9_c00090{bottom:1011.918000px;}
.y8_c00090{bottom:1028.356500px;}
.y7_c00090{bottom:1044.795000px;}
.y6_c00090{bottom:1077.670500px;}
.y5_c00090{bottom:1094.109000px;}
.y4_c00090{bottom:1110.547500px;}
.y3_c00090{bottom:1126.986000px;}
.y2_c00090{bottom:1143.424500px;}
.y1_c00090{bottom:1159.863000px;}
.h3_c00090{height:35.190766px;}
.h2_c00090{height:36.007158px;}
.h4_c00090{height:52.332837px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w0_c00090{width:892.920000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:137.122500px;}
.x2_c00090{left:150.417000px;}
.x3_c00090{left:230.655000px;}
.x4_c00090{left:270.069000px;}
.x5_c00090{left:283.363500px;}
.x6_c00090{left:438.984000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls4_c00090{letter-spacing:0.000000pt;}
.ls1_c00090{letter-spacing:0.078221pt;}
.ls2_c00090{letter-spacing:0.087539pt;}
.ls0_c00090{letter-spacing:0.092873pt;}
.ls3_c00090{letter-spacing:23.724873pt;}
.ws1_c00090{word-spacing:-23.622682pt;}
.ws0_c00090{word-spacing:-23.544461pt;}
.ws4_c00090{word-spacing:0.000000pt;}
.wse_c00090{word-spacing:0.032800pt;}
.ws2_c00090{word-spacing:0.039110pt;}
.ws6_c00090{word-spacing:0.042118pt;}
.wsb_c00090{word-spacing:0.047940pt;}
.wsc_c00090{word-spacing:0.050460pt;}
.ws5_c00090{word-spacing:0.056282pt;}
.wsd_c00090{word-spacing:0.057259pt;}
.ws7_c00090{word-spacing:0.062592pt;}
.ws9_c00090{word-spacing:0.080252pt;}
.ws8_c00090{word-spacing:0.156442pt;}
.ws3_c00090{word-spacing:0.189730pt;}
.wsa_c00090{word-spacing:0.195063pt;}
._0_c00090{width:0.916981pt;}
.fs0_c00090{font-size:39.110400pt;}
.fs1_c00090{font-size:53.133867pt;}
.y0_c00090{bottom:0.000000pt;}
.y3c_c00090{bottom:39.333333pt;}
.y3b_c00090{bottom:81.217333pt;}
.y3a_c00090{bottom:95.829333pt;}
.y39_c00090{bottom:110.441333pt;}
.y38_c00090{bottom:125.053333pt;}
.y37_c00090{bottom:139.665333pt;}
.y36_c00090{bottom:154.277333pt;}
.y35_c00090{bottom:168.889333pt;}
.y34_c00090{bottom:183.500000pt;}
.y33_c00090{bottom:198.112000pt;}
.y32_c00090{bottom:212.724000pt;}
.y31_c00090{bottom:227.336000pt;}
.y30_c00090{bottom:241.948000pt;}
.y2f_c00090{bottom:256.560000pt;}
.y2e_c00090{bottom:271.172000pt;}
.y2d_c00090{bottom:285.784000pt;}
.y2c_c00090{bottom:300.396000pt;}
.y2b_c00090{bottom:315.008000pt;}
.y2a_c00090{bottom:329.620000pt;}
.y29_c00090{bottom:358.842667pt;}
.y28_c00090{bottom:373.454667pt;}
.y27_c00090{bottom:388.066667pt;}
.y26_c00090{bottom:402.678667pt;}
.y25_c00090{bottom:417.290667pt;}
.y24_c00090{bottom:431.902667pt;}
.y23_c00090{bottom:446.514667pt;}
.y22_c00090{bottom:461.126667pt;}
.y21_c00090{bottom:475.738667pt;}
.y20_c00090{bottom:490.349333pt;}
.y1f_c00090{bottom:504.961333pt;}
.y1e_c00090{bottom:519.573333pt;}
.y1d_c00090{bottom:534.185333pt;}
.y1c_c00090{bottom:548.797333pt;}
.y1b_c00090{bottom:563.409333pt;}
.y1a_c00090{bottom:578.021333pt;}
.y19_c00090{bottom:607.245333pt;}
.y18_c00090{bottom:621.857333pt;}
.y17_c00090{bottom:636.469333pt;}
.y16_c00090{bottom:651.080000pt;}
.y15_c00090{bottom:665.692000pt;}
.y14_c00090{bottom:680.304000pt;}
.y13_c00090{bottom:694.916000pt;}
.y12_c00090{bottom:709.528000pt;}
.y11_c00090{bottom:724.140000pt;}
.y10_c00090{bottom:738.752000pt;}
.yf_c00090{bottom:753.364000pt;}
.ye_c00090{bottom:767.976000pt;}
.yd_c00090{bottom:782.588000pt;}
.yc_c00090{bottom:797.198667pt;}
.yb_c00090{bottom:811.810667pt;}
.ya_c00090{bottom:855.646667pt;}
.y9_c00090{bottom:899.482667pt;}
.y8_c00090{bottom:914.094667pt;}
.y7_c00090{bottom:928.706667pt;}
.y6_c00090{bottom:957.929333pt;}
.y5_c00090{bottom:972.541333pt;}
.y4_c00090{bottom:987.153333pt;}
.y3_c00090{bottom:1001.765333pt;}
.y2_c00090{bottom:1016.377333pt;}
.y1_c00090{bottom:1030.989333pt;}
.h3_c00090{height:31.280681pt;}
.h2_c00090{height:32.006363pt;}
.h4_c00090{height:46.518078pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w0_c00090{width:793.706667pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:121.886667pt;}
.x2_c00090{left:133.704000pt;}
.x3_c00090{left:205.026667pt;}
.x4_c00090{left:240.061333pt;}
.x5_c00090{left:251.878667pt;}
.x6_c00090{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_722d0c724e733fc8e9c3074f.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.048828;font-style:normal;font-weight:normal;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_ecb691370ff0abb6b81e39b4.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.083496;font-style:normal;font-weight:normal;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_b288bed8d46295c61140e775.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.014648;font-style:normal;font-weight:normal;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_02b52af6548161d4dc1ed0f8.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.102051;font-style:normal;font-weight:normal;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_f2b671b31577a7620b7a07fc.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:0.893555;font-style: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;}
.lsa_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.087998px;}
.ls1_c00091{letter-spacing:0.098482px;}
.ls2_c00091{letter-spacing:0.104482px;}
.ls4_c00091{letter-spacing:12.368725px;}
.ls6_c00091{letter-spacing:14.512200px;}
.ls5_c00091{letter-spacing:14.944200px;}
.ls3_c00091{letter-spacing:15.632725px;}
.ls8_c00091{letter-spacing:20.332200px;}
.ls7_c00091{letter-spacing:40.414200px;}
.ls9_c00091{letter-spacing:44.806200px;}
.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;}
}
.ws19_c00091{word-spacing:-33.713438px;}
.ws6_c00091{word-spacing:-29.887800px;}
.ws1_c00091{word-spacing:-26.575517px;}
.ws0_c00091{word-spacing:-26.487518px;}
.wsa_c00091{word-spacing:-21.341164px;}
.wsd_c00091{word-spacing:-21.339889px;}
.wsf_c00091{word-spacing:-19.247743px;}
.ws10_c00091{word-spacing:-19.187968px;}
.wse_c00091{word-spacing:-18.829314px;}
.ws9_c00091{word-spacing:-18.769538px;}
.ws11_c00091{word-spacing:-18.414863px;}
.ws7_c00091{word-spacing:-18.112007px;}
.ws4_c00091{word-spacing:-18.083164px;}
.ws8_c00091{word-spacing:-17.275148px;}
.wsc_c00091{word-spacing:-17.036046px;}
.ws1e_c00091{word-spacing:-15.601432px;}
.wsb_c00091{word-spacing:-14.166067px;}
.ws17_c00091{word-spacing:-13.449510px;}
.ws18_c00091{word-spacing:-13.389734px;}
.ws12_c00091{word-spacing:-11.572200px;}
.ws1f_c00091{word-spacing:-11.533565px;}
.ws5_c00091{word-spacing:-10.908067px;}
.ws3_c00091{word-spacing:0.000000px;}
.ws20_c00091{word-spacing:0.043999px;}
.ws2_c00091{word-spacing:0.175997px;}
.ws21_c00091{word-spacing:0.213446px;}
.ws13_c00091{word-spacing:6.650632px;}
.ws14_c00091{word-spacing:6.686429px;}
.ws1a_c00091{word-spacing:11.058486px;}
.ws1b_c00091{word-spacing:11.441137px;}
.ws16_c00091{word-spacing:13.090856px;}
.ws15_c00091{word-spacing:13.884283px;}
.ws1c_c00091{word-spacing:18.276283px;}
.ws1d_c00091{word-spacing:18.530436px;}
._5_c00091{margin-left:-5.021150px;}
._b_c00091{margin-left:-2.697481px;}
._4_c00091{margin-left:-1.075961px;}
._0_c00091{width:1.171555px;}
._7_c00091{width:13.389734px;}
._6_c00091{width:18.687364px;}
._8_c00091{width:19.905275px;}
._2_c00091{width:21.286304px;}
._3_c00091{width:22.356074px;}
._1_c00091{width:29.892540px;}
._9_c00091{width:70.966320px;}
._a_c00091{width:79.721624px;}
.fc5_c00091{color:rgb(207,92,0);}
.fc4_c00091{color:rgb(6,69,173);}
.fc3_c00091{color:rgb(79,153,5);}
.fc2_c00091{color:rgb(143,89,3);}
.fc1_c00091{color:rgb(0,0,0);}
.fc0_c00091{color:rgb(33,74,135);}
.fs0_c00091{font-size:43.999200px;}
.fs1_c00091{font-size:59.775600px;}
.y0_c00091{bottom:0.000000px;}
.y34_c00091{bottom:44.250000px;}
.y33_c00091{bottom:82.051500px;}
.y32_c00091{bottom:98.490000px;}
.y31_c00091{bottom:114.927000px;}
.y30_c00091{bottom:147.804000px;}
.y2f_c00091{bottom:164.242500px;}
.y2e_c00091{bottom:180.681000px;}
.y2d_c00091{bottom:197.119500px;}
.y2c_c00091{bottom:213.558000px;}
.y2b_c00091{bottom:229.996500px;}
.y2a_c00091{bottom:246.435000px;}
.y29_c00091{bottom:262.873500px;}
.y28_c00091{bottom:278.937000px;}
.y27_c00091{bottom:325.732500px;}
.y26_c00091{bottom:343.665000px;}
.y25_c00091{bottom:384.097500px;}
.y24_c00091{bottom:407.772000px;}
.y23_c00091{bottom:431.448000px;}
.y22_c00091{bottom:449.380500px;}
.y21_c00091{bottom:473.055000px;}
.y20_c00091{bottom:496.729500px;}
.y1f_c00091{bottom:514.663500px;}
.y1e_c00091{bottom:538.338000px;}
.y1d_c00091{bottom:556.270500px;}
.y1c_c00091{bottom:579.946500px;}
.y1b_c00091{bottom:603.621000px;}
.y1a_c00091{bottom:621.553500px;}
.y19_c00091{bottom:645.229500px;}
.y18_c00091{bottom:668.904000px;}
.y17_c00091{bottom:692.578500px;}
.y16_c00091{bottom:710.512500px;}
.y15_c00091{bottom:739.929000px;}
.y14_c00091{bottom:757.861500px;}
.y13_c00091{bottom:775.795500px;}
.y12_c00091{bottom:831.096000px;}
.y11_c00091{bottom:847.534500px;}
.y10_c00091{bottom:863.973000px;}
.yf_c00091{bottom:880.411500px;}
.ye_c00091{bottom:896.848500px;}
.yd_c00091{bottom:913.287000px;}
.yc_c00091{bottom:929.725500px;}
.yb_c00091{bottom:962.602500px;}
.ya_c00091{bottom:979.041000px;}
.y9_c00091{bottom:995.479500px;}
.y8_c00091{bottom:1011.918000px;}
.y7_c00091{bottom:1028.356500px;}
.y6_c00091{bottom:1061.232000px;}
.y5_c00091{bottom:1077.670500px;}
.y4_c00091{bottom:1094.109000px;}
.y3_c00091{bottom:1110.547500px;}
.y2_c00091{bottom:1143.424500px;}
.y1_c00091{bottom:1159.863000px;}
.h3_c00091{height:35.190766px;}
.h2_c00091{height:36.007158px;}
.h4_c00091{height:52.332837px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w0_c00091{width:892.920000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x7_c00091{left:127.558500px;}
.x1_c00091{left:137.122500px;}
.x5_c00091{left:152.215500px;}
.x6_c00091{left:164.919000px;}
.x3_c00091{left:276.715500px;}
.x2_c00091{left:283.363500px;}
.x4_c00091{left:383.073000px;}
.x8_c00091{left:438.984000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.lsa_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.078221pt;}
.ls1_c00091{letter-spacing:0.087539pt;}
.ls2_c00091{letter-spacing:0.092873pt;}
.ls4_c00091{letter-spacing:10.994422pt;}
.ls6_c00091{letter-spacing:12.899733pt;}
.ls5_c00091{letter-spacing:13.283733pt;}
.ls3_c00091{letter-spacing:13.895756pt;}
.ls8_c00091{letter-spacing:18.073067pt;}
.ls7_c00091{letter-spacing:35.923733pt;}
.ls9_c00091{letter-spacing:39.827733pt;}
.ws19_c00091{word-spacing:-29.967501pt;}
.ws6_c00091{word-spacing:-26.566933pt;}
.ws1_c00091{word-spacing:-23.622682pt;}
.ws0_c00091{word-spacing:-23.544461pt;}
.wsa_c00091{word-spacing:-18.969923pt;}
.wsd_c00091{word-spacing:-18.968790pt;}
.wsf_c00091{word-spacing:-17.109105pt;}
.ws10_c00091{word-spacing:-17.055971pt;}
.wse_c00091{word-spacing:-16.737168pt;}
.ws9_c00091{word-spacing:-16.684034pt;}
.ws11_c00091{word-spacing:-16.368767pt;}
.ws7_c00091{word-spacing:-16.099562pt;}
.ws4_c00091{word-spacing:-16.073923pt;}
.ws8_c00091{word-spacing:-15.355687pt;}
.wsc_c00091{word-spacing:-15.143152pt;}
.ws1e_c00091{word-spacing:-13.867939pt;}
.wsb_c00091{word-spacing:-12.592060pt;}
.ws17_c00091{word-spacing:-11.955120pt;}
.ws18_c00091{word-spacing:-11.901986pt;}
.ws12_c00091{word-spacing:-10.286400pt;}
.ws1f_c00091{word-spacing:-10.252058pt;}
.ws5_c00091{word-spacing:-9.696060pt;}
.ws3_c00091{word-spacing:0.000000pt;}
.ws20_c00091{word-spacing:0.039110pt;}
.ws2_c00091{word-spacing:0.156442pt;}
.ws21_c00091{word-spacing:0.189730pt;}
.ws13_c00091{word-spacing:5.911673pt;}
.ws14_c00091{word-spacing:5.943492pt;}
.ws1a_c00091{word-spacing:9.829765pt;}
.ws1b_c00091{word-spacing:10.169900pt;}
.ws16_c00091{word-spacing:11.636317pt;}
.ws15_c00091{word-spacing:12.341585pt;}
.ws1c_c00091{word-spacing:16.245585pt;}
.ws1d_c00091{word-spacing:16.471499pt;}
._5_c00091{margin-left:-4.463245pt;}
._b_c00091{margin-left:-2.397761pt;}
._4_c00091{margin-left:-0.956410pt;}
._0_c00091{width:1.041382pt;}
._7_c00091{width:11.901986pt;}
._6_c00091{width:16.610990pt;}
._8_c00091{width:17.693578pt;}
._2_c00091{width:18.921159pt;}
._3_c00091{width:19.872066pt;}
._1_c00091{width:26.571147pt;}
._9_c00091{width:63.081173pt;}
._a_c00091{width:70.863666pt;}
.fs0_c00091{font-size:39.110400pt;}
.fs1_c00091{font-size:53.133867pt;}
.y0_c00091{bottom:0.000000pt;}
.y34_c00091{bottom:39.333333pt;}
.y33_c00091{bottom:72.934667pt;}
.y32_c00091{bottom:87.546667pt;}
.y31_c00091{bottom:102.157333pt;}
.y30_c00091{bottom:131.381333pt;}
.y2f_c00091{bottom:145.993333pt;}
.y2e_c00091{bottom:160.605333pt;}
.y2d_c00091{bottom:175.217333pt;}
.y2c_c00091{bottom:189.829333pt;}
.y2b_c00091{bottom:204.441333pt;}
.y2a_c00091{bottom:219.053333pt;}
.y29_c00091{bottom:233.665333pt;}
.y28_c00091{bottom:247.944000pt;}
.y27_c00091{bottom:289.540000pt;}
.y26_c00091{bottom:305.480000pt;}
.y25_c00091{bottom:341.420000pt;}
.y24_c00091{bottom:362.464000pt;}
.y23_c00091{bottom:383.509333pt;}
.y22_c00091{bottom:399.449333pt;}
.y21_c00091{bottom:420.493333pt;}
.y20_c00091{bottom:441.537333pt;}
.y1f_c00091{bottom:457.478667pt;}
.y1e_c00091{bottom:478.522667pt;}
.y1d_c00091{bottom:494.462667pt;}
.y1c_c00091{bottom:515.508000pt;}
.y1b_c00091{bottom:536.552000pt;}
.y1a_c00091{bottom:552.492000pt;}
.y19_c00091{bottom:573.537333pt;}
.y18_c00091{bottom:594.581333pt;}
.y17_c00091{bottom:615.625333pt;}
.y16_c00091{bottom:631.566667pt;}
.y15_c00091{bottom:657.714667pt;}
.y14_c00091{bottom:673.654667pt;}
.y13_c00091{bottom:689.596000pt;}
.y12_c00091{bottom:738.752000pt;}
.y11_c00091{bottom:753.364000pt;}
.y10_c00091{bottom:767.976000pt;}
.yf_c00091{bottom:782.588000pt;}
.ye_c00091{bottom:797.198667pt;}
.yd_c00091{bottom:811.810667pt;}
.yc_c00091{bottom:826.422667pt;}
.yb_c00091{bottom:855.646667pt;}
.ya_c00091{bottom:870.258667pt;}
.y9_c00091{bottom:884.870667pt;}
.y8_c00091{bottom:899.482667pt;}
.y7_c00091{bottom:914.094667pt;}
.y6_c00091{bottom:943.317333pt;}
.y5_c00091{bottom:957.929333pt;}
.y4_c00091{bottom:972.541333pt;}
.y3_c00091{bottom:987.153333pt;}
.y2_c00091{bottom:1016.377333pt;}
.y1_c00091{bottom:1030.989333pt;}
.h3_c00091{height:31.280681pt;}
.h2_c00091{height:32.006363pt;}
.h4_c00091{height:46.518078pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w0_c00091{width:793.706667pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x7_c00091{left:113.385333pt;}
.x1_c00091{left:121.886667pt;}
.x5_c00091{left:135.302667pt;}
.x6_c00091{left:146.594667pt;}
.x3_c00091{left:245.969333pt;}
.x2_c00091{left:251.878667pt;}
.x4_c00091{left:340.509333pt;}
.x8_c00091{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae4e6a2d52d3df5ecdb9c78f.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.014648;font-style:normal;font-weight:normal;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_2b52b92c85a1dfb312038f7d.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.083496;font-style:normal;font-weight:normal;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_83e0ec87f6d517208829b510.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.048828;font-style:normal;font-weight:normal;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_c44ed847fd156bde30bcf347.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls6_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.087998px;}
.ls2_c00092{letter-spacing:0.098482px;}
.ls1_c00092{letter-spacing:0.104482px;}
.ls3_c00092{letter-spacing:26.690482px;}
.ls4_c00092{letter-spacing:26.732482px;}
.ls5_c00092{letter-spacing:26.738482px;}
.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;}
}
.ws2_c00092{word-spacing:-26.575517px;}
.ws8_c00092{word-spacing:-26.487518px;}
.ws3_c00092{word-spacing:0.000000px;}
.ws0_c00092{word-spacing:0.043999px;}
.ws9_c00092{word-spacing:0.047383px;}
.ws4_c00092{word-spacing:0.053933px;}
.ws6_c00092{word-spacing:0.064416px;}
.wsa_c00092{word-spacing:0.070416px;}
.ws5_c00092{word-spacing:0.080899px;}
.ws1_c00092{word-spacing:0.175997px;}
.ws7_c00092{word-spacing:0.219446px;}
.fc5_c00092{color:rgb(0,0,207);}
.fc4_c00092{color:rgb(207,92,0);}
.fc3_c00092{color:rgb(79,153,5);}
.fc2_c00092{color:rgb(33,74,135);}
.fc1_c00092{color:rgb(0,0,0);}
.fc0_c00092{color:rgb(143,89,3);}
.fs0_c00092{font-size:43.999200px;}
.fs1_c00092{font-size:59.775600px;}
.y0_c00092{bottom:0.000000px;}
.y3a_c00092{bottom:44.250000px;}
.y39_c00092{bottom:91.369500px;}
.y38_c00092{bottom:107.808000px;}
.y37_c00092{bottom:124.246500px;}
.y36_c00092{bottom:140.685000px;}
.y35_c00092{bottom:157.123500px;}
.y34_c00092{bottom:190.000500px;}
.y33_c00092{bottom:206.437500px;}
.y32_c00092{bottom:222.876000px;}
.y31_c00092{bottom:239.314500px;}
.y30_c00092{bottom:255.753000px;}
.y2f_c00092{bottom:272.191500px;}
.y2e_c00092{bottom:288.630000px;}
.y2d_c00092{bottom:305.068500px;}
.y2c_c00092{bottom:337.945500px;}
.y2b_c00092{bottom:354.384000px;}
.y2a_c00092{bottom:370.822500px;}
.y29_c00092{bottom:387.259500px;}
.y28_c00092{bottom:403.698000px;}
.y27_c00092{bottom:420.136500px;}
.y26_c00092{bottom:436.575000px;}
.y25_c00092{bottom:453.013500px;}
.y24_c00092{bottom:469.452000px;}
.y23_c00092{bottom:485.890500px;}
.y22_c00092{bottom:502.329000px;}
.y21_c00092{bottom:518.767500px;}
.y20_c00092{bottom:535.206000px;}
.y1f_c00092{bottom:551.643000px;}
.y1e_c00092{bottom:600.958500px;}
.y1d_c00092{bottom:617.397000px;}
.y1c_c00092{bottom:633.835500px;}
.y1b_c00092{bottom:650.274000px;}
.y1a_c00092{bottom:666.712500px;}
.y19_c00092{bottom:683.151000px;}
.y18_c00092{bottom:699.589500px;}
.y17_c00092{bottom:716.028000px;}
.y16_c00092{bottom:732.465000px;}
.y15_c00092{bottom:748.903500px;}
.y14_c00092{bottom:765.342000px;}
.y13_c00092{bottom:781.780500px;}
.y12_c00092{bottom:798.219000px;}
.y11_c00092{bottom:814.657500px;}
.y10_c00092{bottom:847.534500px;}
.yf_c00092{bottom:863.973000px;}
.ye_c00092{bottom:880.411500px;}
.yd_c00092{bottom:896.848500px;}
.yc_c00092{bottom:913.287000px;}
.yb_c00092{bottom:929.725500px;}
.ya_c00092{bottom:946.164000px;}
.y9_c00092{bottom:962.602500px;}
.y8_c00092{bottom:979.041000px;}
.y7_c00092{bottom:995.479500px;}
.y6_c00092{bottom:1011.918000px;}
.y5_c00092{bottom:1028.356500px;}
.y4_c00092{bottom:1044.795000px;}
.y3_c00092{bottom:1077.670500px;}
.y2_c00092{bottom:1094.109000px;}
.y1_c00092{bottom:1126.986000px;}
.h2_c00092{height:35.190766px;}
.h3_c00092{height:36.007158px;}
.h4_c00092{height:52.332837px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w0_c00092{width:892.920000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:137.122500px;}
.x2_c00092{left:150.417000px;}
.x4_c00092{left:203.596500px;}
.x5_c00092{left:223.537500px;}
.x3_c00092{left:270.069000px;}
.x6_c00092{left:438.984000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls6_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.078221pt;}
.ls2_c00092{letter-spacing:0.087539pt;}
.ls1_c00092{letter-spacing:0.092873pt;}
.ls3_c00092{letter-spacing:23.724873pt;}
.ls4_c00092{letter-spacing:23.762206pt;}
.ls5_c00092{letter-spacing:23.767539pt;}
.ws2_c00092{word-spacing:-23.622682pt;}
.ws8_c00092{word-spacing:-23.544461pt;}
.ws3_c00092{word-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.039110pt;}
.ws9_c00092{word-spacing:0.042118pt;}
.ws4_c00092{word-spacing:0.047940pt;}
.ws6_c00092{word-spacing:0.057259pt;}
.wsa_c00092{word-spacing:0.062592pt;}
.ws5_c00092{word-spacing:0.071910pt;}
.ws1_c00092{word-spacing:0.156442pt;}
.ws7_c00092{word-spacing:0.195063pt;}
.fs0_c00092{font-size:39.110400pt;}
.fs1_c00092{font-size:53.133867pt;}
.y0_c00092{bottom:0.000000pt;}
.y3a_c00092{bottom:39.333333pt;}
.y39_c00092{bottom:81.217333pt;}
.y38_c00092{bottom:95.829333pt;}
.y37_c00092{bottom:110.441333pt;}
.y36_c00092{bottom:125.053333pt;}
.y35_c00092{bottom:139.665333pt;}
.y34_c00092{bottom:168.889333pt;}
.y33_c00092{bottom:183.500000pt;}
.y32_c00092{bottom:198.112000pt;}
.y31_c00092{bottom:212.724000pt;}
.y30_c00092{bottom:227.336000pt;}
.y2f_c00092{bottom:241.948000pt;}
.y2e_c00092{bottom:256.560000pt;}
.y2d_c00092{bottom:271.172000pt;}
.y2c_c00092{bottom:300.396000pt;}
.y2b_c00092{bottom:315.008000pt;}
.y2a_c00092{bottom:329.620000pt;}
.y29_c00092{bottom:344.230667pt;}
.y28_c00092{bottom:358.842667pt;}
.y27_c00092{bottom:373.454667pt;}
.y26_c00092{bottom:388.066667pt;}
.y25_c00092{bottom:402.678667pt;}
.y24_c00092{bottom:417.290667pt;}
.y23_c00092{bottom:431.902667pt;}
.y22_c00092{bottom:446.514667pt;}
.y21_c00092{bottom:461.126667pt;}
.y20_c00092{bottom:475.738667pt;}
.y1f_c00092{bottom:490.349333pt;}
.y1e_c00092{bottom:534.185333pt;}
.y1d_c00092{bottom:548.797333pt;}
.y1c_c00092{bottom:563.409333pt;}
.y1b_c00092{bottom:578.021333pt;}
.y1a_c00092{bottom:592.633333pt;}
.y19_c00092{bottom:607.245333pt;}
.y18_c00092{bottom:621.857333pt;}
.y17_c00092{bottom:636.469333pt;}
.y16_c00092{bottom:651.080000pt;}
.y15_c00092{bottom:665.692000pt;}
.y14_c00092{bottom:680.304000pt;}
.y13_c00092{bottom:694.916000pt;}
.y12_c00092{bottom:709.528000pt;}
.y11_c00092{bottom:724.140000pt;}
.y10_c00092{bottom:753.364000pt;}
.yf_c00092{bottom:767.976000pt;}
.ye_c00092{bottom:782.588000pt;}
.yd_c00092{bottom:797.198667pt;}
.yc_c00092{bottom:811.810667pt;}
.yb_c00092{bottom:826.422667pt;}
.ya_c00092{bottom:841.034667pt;}
.y9_c00092{bottom:855.646667pt;}
.y8_c00092{bottom:870.258667pt;}
.y7_c00092{bottom:884.870667pt;}
.y6_c00092{bottom:899.482667pt;}
.y5_c00092{bottom:914.094667pt;}
.y4_c00092{bottom:928.706667pt;}
.y3_c00092{bottom:957.929333pt;}
.y2_c00092{bottom:972.541333pt;}
.y1_c00092{bottom:1001.765333pt;}
.h2_c00092{height:31.280681pt;}
.h3_c00092{height:32.006363pt;}
.h4_c00092{height:46.518078pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w0_c00092{width:793.706667pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:121.886667pt;}
.x2_c00092{left:133.704000pt;}
.x4_c00092{left:180.974667pt;}
.x5_c00092{left:198.700000pt;}
.x3_c00092{left:240.061333pt;}
.x6_c00092{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11b62ec2a7bdceb3448fc13a.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.014648;font-style:normal;font-weight:normal;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_ff04ffa8306b725c62cd024d.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_44891e0f6f0489748494ce86.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_6ea1ad7ae91305e8dfe062ef.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls4_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.087998px;}
.ls1_c00093{letter-spacing:0.098482px;}
.ls2_c00093{letter-spacing:0.104482px;}
.ls3_c00093{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00093{word-spacing:-26.575517px;}
.ws1_c00093{word-spacing:-26.487518px;}
.ws0_c00093{word-spacing:0.000000px;}
.wsa_c00093{word-spacing:0.047383px;}
.ws5_c00093{word-spacing:0.053933px;}
.ws6_c00093{word-spacing:0.056767px;}
.ws4_c00093{word-spacing:0.057317px;}
.wsd_c00093{word-spacing:0.063317px;}
.ws7_c00093{word-spacing:0.064416px;}
.wsb_c00093{word-spacing:0.070416px;}
.ws9_c00093{word-spacing:0.080350px;}
.ws8_c00093{word-spacing:0.080899px;}
.ws3_c00093{word-spacing:0.175997px;}
.wse_c00093{word-spacing:0.213446px;}
.wsc_c00093{word-spacing:0.219446px;}
._0_c00093{width:1.026240px;}
.fc5_c00093{color:rgb(0,0,207);}
.fc4_c00093{color:rgb(207,92,0);}
.fc3_c00093{color:rgb(79,153,5);}
.fc2_c00093{color:rgb(0,0,0);}
.fc1_c00093{color:rgb(33,74,135);}
.fc0_c00093{color:rgb(143,89,3);}
.fs0_c00093{font-size:43.999200px;}
.fs1_c00093{font-size:59.775600px;}
.y0_c00093{bottom:0.000000px;}
.y3d_c00093{bottom:44.250000px;}
.y3c_c00093{bottom:91.369500px;}
.y3b_c00093{bottom:124.246500px;}
.y3a_c00093{bottom:140.685000px;}
.y39_c00093{bottom:157.123500px;}
.y38_c00093{bottom:190.000500px;}
.y37_c00093{bottom:206.437500px;}
.y36_c00093{bottom:222.876000px;}
.y35_c00093{bottom:239.314500px;}
.y34_c00093{bottom:255.753000px;}
.y33_c00093{bottom:272.191500px;}
.y32_c00093{bottom:288.630000px;}
.y31_c00093{bottom:305.068500px;}
.y30_c00093{bottom:321.507000px;}
.y2f_c00093{bottom:337.945500px;}
.y2e_c00093{bottom:354.384000px;}
.y2d_c00093{bottom:370.822500px;}
.y2c_c00093{bottom:387.259500px;}
.y2b_c00093{bottom:403.698000px;}
.y2a_c00093{bottom:420.136500px;}
.y29_c00093{bottom:436.575000px;}
.y28_c00093{bottom:469.452000px;}
.y27_c00093{bottom:485.890500px;}
.y26_c00093{bottom:502.329000px;}
.y25_c00093{bottom:518.767500px;}
.y24_c00093{bottom:535.206000px;}
.y23_c00093{bottom:551.643000px;}
.y22_c00093{bottom:568.081500px;}
.y21_c00093{bottom:584.520000px;}
.y20_c00093{bottom:600.958500px;}
.y1f_c00093{bottom:617.397000px;}
.y1e_c00093{bottom:633.835500px;}
.y1d_c00093{bottom:650.274000px;}
.y1c_c00093{bottom:666.712500px;}
.y1b_c00093{bottom:683.151000px;}
.y1a_c00093{bottom:699.589500px;}
.y19_c00093{bottom:716.028000px;}
.y18_c00093{bottom:748.903500px;}
.y17_c00093{bottom:765.342000px;}
.y16_c00093{bottom:781.780500px;}
.y15_c00093{bottom:798.219000px;}
.y14_c00093{bottom:814.657500px;}
.y13_c00093{bottom:831.096000px;}
.y12_c00093{bottom:847.534500px;}
.y11_c00093{bottom:863.973000px;}
.y10_c00093{bottom:880.411500px;}
.yf_c00093{bottom:896.848500px;}
.ye_c00093{bottom:913.287000px;}
.yd_c00093{bottom:929.725500px;}
.yc_c00093{bottom:946.164000px;}
.yb_c00093{bottom:962.602500px;}
.ya_c00093{bottom:979.041000px;}
.y9_c00093{bottom:995.479500px;}
.y8_c00093{bottom:1011.918000px;}
.y7_c00093{bottom:1028.356500px;}
.y6_c00093{bottom:1044.795000px;}
.y5_c00093{bottom:1061.232000px;}
.y4_c00093{bottom:1077.670500px;}
.y3_c00093{bottom:1126.986000px;}
.y2_c00093{bottom:1143.424500px;}
.y1_c00093{bottom:1159.863000px;}
.h2_c00093{height:35.190766px;}
.h3_c00093{height:36.007158px;}
.h4_c00093{height:52.332837px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w0_c00093{width:892.920000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:137.122500px;}
.x2_c00093{left:150.417000px;}
.x3_c00093{left:270.069000px;}
.x4_c00093{left:283.363500px;}
.x5_c00093{left:438.984000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls4_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.078221pt;}
.ls1_c00093{letter-spacing:0.087539pt;}
.ls2_c00093{letter-spacing:0.092873pt;}
.ls3_c00093{letter-spacing:23.724873pt;}
.ws2_c00093{word-spacing:-23.622682pt;}
.ws1_c00093{word-spacing:-23.544461pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.wsa_c00093{word-spacing:0.042118pt;}
.ws5_c00093{word-spacing:0.047940pt;}
.ws6_c00093{word-spacing:0.050460pt;}
.ws4_c00093{word-spacing:0.050948pt;}
.wsd_c00093{word-spacing:0.056282pt;}
.ws7_c00093{word-spacing:0.057259pt;}
.wsb_c00093{word-spacing:0.062592pt;}
.ws9_c00093{word-spacing:0.071422pt;}
.ws8_c00093{word-spacing:0.071910pt;}
.ws3_c00093{word-spacing:0.156442pt;}
.wse_c00093{word-spacing:0.189730pt;}
.wsc_c00093{word-spacing:0.195063pt;}
._0_c00093{width:0.912213pt;}
.fs0_c00093{font-size:39.110400pt;}
.fs1_c00093{font-size:53.133867pt;}
.y0_c00093{bottom:0.000000pt;}
.y3d_c00093{bottom:39.333333pt;}
.y3c_c00093{bottom:81.217333pt;}
.y3b_c00093{bottom:110.441333pt;}
.y3a_c00093{bottom:125.053333pt;}
.y39_c00093{bottom:139.665333pt;}
.y38_c00093{bottom:168.889333pt;}
.y37_c00093{bottom:183.500000pt;}
.y36_c00093{bottom:198.112000pt;}
.y35_c00093{bottom:212.724000pt;}
.y34_c00093{bottom:227.336000pt;}
.y33_c00093{bottom:241.948000pt;}
.y32_c00093{bottom:256.560000pt;}
.y31_c00093{bottom:271.172000pt;}
.y30_c00093{bottom:285.784000pt;}
.y2f_c00093{bottom:300.396000pt;}
.y2e_c00093{bottom:315.008000pt;}
.y2d_c00093{bottom:329.620000pt;}
.y2c_c00093{bottom:344.230667pt;}
.y2b_c00093{bottom:358.842667pt;}
.y2a_c00093{bottom:373.454667pt;}
.y29_c00093{bottom:388.066667pt;}
.y28_c00093{bottom:417.290667pt;}
.y27_c00093{bottom:431.902667pt;}
.y26_c00093{bottom:446.514667pt;}
.y25_c00093{bottom:461.126667pt;}
.y24_c00093{bottom:475.738667pt;}
.y23_c00093{bottom:490.349333pt;}
.y22_c00093{bottom:504.961333pt;}
.y21_c00093{bottom:519.573333pt;}
.y20_c00093{bottom:534.185333pt;}
.y1f_c00093{bottom:548.797333pt;}
.y1e_c00093{bottom:563.409333pt;}
.y1d_c00093{bottom:578.021333pt;}
.y1c_c00093{bottom:592.633333pt;}
.y1b_c00093{bottom:607.245333pt;}
.y1a_c00093{bottom:621.857333pt;}
.y19_c00093{bottom:636.469333pt;}
.y18_c00093{bottom:665.692000pt;}
.y17_c00093{bottom:680.304000pt;}
.y16_c00093{bottom:694.916000pt;}
.y15_c00093{bottom:709.528000pt;}
.y14_c00093{bottom:724.140000pt;}
.y13_c00093{bottom:738.752000pt;}
.y12_c00093{bottom:753.364000pt;}
.y11_c00093{bottom:767.976000pt;}
.y10_c00093{bottom:782.588000pt;}
.yf_c00093{bottom:797.198667pt;}
.ye_c00093{bottom:811.810667pt;}
.yd_c00093{bottom:826.422667pt;}
.yc_c00093{bottom:841.034667pt;}
.yb_c00093{bottom:855.646667pt;}
.ya_c00093{bottom:870.258667pt;}
.y9_c00093{bottom:884.870667pt;}
.y8_c00093{bottom:899.482667pt;}
.y7_c00093{bottom:914.094667pt;}
.y6_c00093{bottom:928.706667pt;}
.y5_c00093{bottom:943.317333pt;}
.y4_c00093{bottom:957.929333pt;}
.y3_c00093{bottom:1001.765333pt;}
.y2_c00093{bottom:1016.377333pt;}
.y1_c00093{bottom:1030.989333pt;}
.h2_c00093{height:31.280681pt;}
.h3_c00093{height:32.006363pt;}
.h4_c00093{height:46.518078pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w0_c00093{width:793.706667pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:121.886667pt;}
.x2_c00093{left:133.704000pt;}
.x3_c00093{left:240.061333pt;}
.x4_c00093{left:251.878667pt;}
.x5_c00093{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7725d675cf0c3f09a4ae2258.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.083496;font-style:normal;font-weight:normal;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_0b7c31681e118913843fe059.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.048828;font-style:normal;font-weight:normal;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_9abd55241ece493d7169931e.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.014648;font-style:normal;font-weight:normal;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_72a5ebfe45a37400e0b1cf6f.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.000000;font-style:normal;font-weight:normal;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_a4b3ab96317191234b89f943.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:1.102051;font-style: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);}
.v1_c00094{vertical-align:-12.258000px;}
.v0_c00094{vertical-align:0.000000px;}
.ls6_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.087998px;}
.ls1_c00094{letter-spacing:0.098482px;}
.ls2_c00094{letter-spacing:0.104482px;}
.ls5_c00094{letter-spacing:7.460482px;}
.ls4_c00094{letter-spacing:7.466482px;}
.ls3_c00094{letter-spacing:26.690482px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-26.575517px;}
.ws2_c00094{word-spacing:-26.487518px;}
.ws3_c00094{word-spacing:0.000000px;}
.ws4_c00094{word-spacing:0.084283px;}
.ws1_c00094{word-spacing:0.090283px;}
.ws6_c00094{word-spacing:0.175997px;}
.ws5_c00094{word-spacing:0.219446px;}
._1_c00094{margin-left:-1997.451211px;}
._2_c00094{margin-left:-1970.875694px;}
._0_c00094{width:1.022770px;}
.fc5_c00094{color:rgb(0,0,207);}
.fc4_c00094{color:rgb(79,153,5);}
.fc3_c00094{color:rgb(33,74,135);}
.fc2_c00094{color:rgb(207,92,0);}
.fc1_c00094{color:rgb(143,89,3);}
.fc0_c00094{color:rgb(0,0,0);}
.fs2_c00094{font-size:31.015800px;}
.fs1_c00094{font-size:37.218600px;}
.fs0_c00094{font-size:43.999200px;}
.fs3_c00094{font-size:59.775600px;}
.y0_c00094{bottom:0.000000px;}
.y3d_c00094{bottom:44.250000px;}
.y3c_c00094{bottom:88.209000px;}
.y3b_c00094{bottom:104.647500px;}
.y3a_c00094{bottom:121.086000px;}
.y39_c00094{bottom:137.524500px;}
.y38_c00094{bottom:153.963000px;}
.y37_c00094{bottom:170.401500px;}
.y36_c00094{bottom:186.840000px;}
.y35_c00094{bottom:236.154000px;}
.y34_c00094{bottom:252.592500px;}
.y33_c00094{bottom:269.031000px;}
.y32_c00094{bottom:285.469500px;}
.y31_c00094{bottom:301.908000px;}
.y30_c00094{bottom:318.346500px;}
.y2f_c00094{bottom:334.785000px;}
.y2e_c00094{bottom:351.223500px;}
.y2d_c00094{bottom:367.662000px;}
.y2c_c00094{bottom:384.100500px;}
.y2b_c00094{bottom:400.539000px;}
.y2a_c00094{bottom:449.853000px;}
.y29_c00094{bottom:466.291500px;}
.y28_c00094{bottom:482.730000px;}
.y27_c00094{bottom:499.168500px;}
.y26_c00094{bottom:515.607000px;}
.y25_c00094{bottom:531.672000px;}
.y24_c00094{bottom:550.063500px;}
.y23_c00094{bottom:566.128500px;}
.y22_c00094{bottom:584.520000px;}
.y21_c00094{bottom:600.958500px;}
.y20_c00094{bottom:617.397000px;}
.y1f_c00094{bottom:633.835500px;}
.y1e_c00094{bottom:650.274000px;}
.y1d_c00094{bottom:683.151000px;}
.y1c_c00094{bottom:699.589500px;}
.y1b_c00094{bottom:716.028000px;}
.y1a_c00094{bottom:732.465000px;}
.y19_c00094{bottom:748.903500px;}
.y18_c00094{bottom:765.342000px;}
.y17_c00094{bottom:781.780500px;}
.y16_c00094{bottom:798.219000px;}
.y15_c00094{bottom:814.657500px;}
.y14_c00094{bottom:831.096000px;}
.y13_c00094{bottom:847.534500px;}
.y12_c00094{bottom:863.973000px;}
.y11_c00094{bottom:880.411500px;}
.y10_c00094{bottom:896.848500px;}
.yf_c00094{bottom:913.287000px;}
.ye_c00094{bottom:946.164000px;}
.yd_c00094{bottom:962.602500px;}
.yc_c00094{bottom:979.041000px;}
.yb_c00094{bottom:995.479500px;}
.ya_c00094{bottom:1011.918000px;}
.y9_c00094{bottom:1028.356500px;}
.y8_c00094{bottom:1044.795000px;}
.y7_c00094{bottom:1061.232000px;}
.y6_c00094{bottom:1077.670500px;}
.y5_c00094{bottom:1094.109000px;}
.y4_c00094{bottom:1110.547500px;}
.y3_c00094{bottom:1126.986000px;}
.y2_c00094{bottom:1143.424500px;}
.y1_c00094{bottom:1159.863000px;}
.h3_c00094{height:35.190766px;}
.h2_c00094{height:36.007158px;}
.h4_c00094{height:52.332837px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w0_c00094{width:892.920000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:137.122500px;}
.x2_c00094{left:150.417000px;}
.x5_c00094{left:163.713000px;}
.x3_c00094{left:210.243000px;}
.x6_c00094{left:237.303000px;}
.x7_c00094{left:250.126500px;}
.x4_c00094{left:270.069000px;}
.x8_c00094{left:438.984000px;}
@media print{
.v1_c00094{vertical-align:-10.896000pt;}
.v0_c00094{vertical-align:0.000000pt;}
.ls6_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.078221pt;}
.ls1_c00094{letter-spacing:0.087539pt;}
.ls2_c00094{letter-spacing:0.092873pt;}
.ls5_c00094{letter-spacing:6.631539pt;}
.ls4_c00094{letter-spacing:6.636873pt;}
.ls3_c00094{letter-spacing:23.724873pt;}
.ws0_c00094{word-spacing:-23.622682pt;}
.ws2_c00094{word-spacing:-23.544461pt;}
.ws3_c00094{word-spacing:0.000000pt;}
.ws4_c00094{word-spacing:0.074918pt;}
.ws1_c00094{word-spacing:0.080252pt;}
.ws6_c00094{word-spacing:0.156442pt;}
.ws5_c00094{word-spacing:0.195063pt;}
._1_c00094{margin-left:-1775.512188pt;}
._2_c00094{margin-left:-1751.889506pt;}
._0_c00094{width:0.909129pt;}
.fs2_c00094{font-size:27.569600pt;}
.fs1_c00094{font-size:33.083200pt;}
.fs0_c00094{font-size:39.110400pt;}
.fs3_c00094{font-size:53.133867pt;}
.y0_c00094{bottom:0.000000pt;}
.y3d_c00094{bottom:39.333333pt;}
.y3c_c00094{bottom:78.408000pt;}
.y3b_c00094{bottom:93.020000pt;}
.y3a_c00094{bottom:107.632000pt;}
.y39_c00094{bottom:122.244000pt;}
.y38_c00094{bottom:136.856000pt;}
.y37_c00094{bottom:151.468000pt;}
.y36_c00094{bottom:166.080000pt;}
.y35_c00094{bottom:209.914667pt;}
.y34_c00094{bottom:224.526667pt;}
.y33_c00094{bottom:239.138667pt;}
.y32_c00094{bottom:253.750667pt;}
.y31_c00094{bottom:268.362667pt;}
.y30_c00094{bottom:282.974667pt;}
.y2f_c00094{bottom:297.586667pt;}
.y2e_c00094{bottom:312.198667pt;}
.y2d_c00094{bottom:326.810667pt;}
.y2c_c00094{bottom:341.422667pt;}
.y2b_c00094{bottom:356.034667pt;}
.y2a_c00094{bottom:399.869333pt;}
.y29_c00094{bottom:414.481333pt;}
.y28_c00094{bottom:429.093333pt;}
.y27_c00094{bottom:443.705333pt;}
.y26_c00094{bottom:458.317333pt;}
.y25_c00094{bottom:472.597333pt;}
.y24_c00094{bottom:488.945333pt;}
.y23_c00094{bottom:503.225333pt;}
.y22_c00094{bottom:519.573333pt;}
.y21_c00094{bottom:534.185333pt;}
.y20_c00094{bottom:548.797333pt;}
.y1f_c00094{bottom:563.409333pt;}
.y1e_c00094{bottom:578.021333pt;}
.y1d_c00094{bottom:607.245333pt;}
.y1c_c00094{bottom:621.857333pt;}
.y1b_c00094{bottom:636.469333pt;}
.y1a_c00094{bottom:651.080000pt;}
.y19_c00094{bottom:665.692000pt;}
.y18_c00094{bottom:680.304000pt;}
.y17_c00094{bottom:694.916000pt;}
.y16_c00094{bottom:709.528000pt;}
.y15_c00094{bottom:724.140000pt;}
.y14_c00094{bottom:738.752000pt;}
.y13_c00094{bottom:753.364000pt;}
.y12_c00094{bottom:767.976000pt;}
.y11_c00094{bottom:782.588000pt;}
.y10_c00094{bottom:797.198667pt;}
.yf_c00094{bottom:811.810667pt;}
.ye_c00094{bottom:841.034667pt;}
.yd_c00094{bottom:855.646667pt;}
.yc_c00094{bottom:870.258667pt;}
.yb_c00094{bottom:884.870667pt;}
.ya_c00094{bottom:899.482667pt;}
.y9_c00094{bottom:914.094667pt;}
.y8_c00094{bottom:928.706667pt;}
.y7_c00094{bottom:943.317333pt;}
.y6_c00094{bottom:957.929333pt;}
.y5_c00094{bottom:972.541333pt;}
.y4_c00094{bottom:987.153333pt;}
.y3_c00094{bottom:1001.765333pt;}
.y2_c00094{bottom:1016.377333pt;}
.y1_c00094{bottom:1030.989333pt;}
.h3_c00094{height:31.280681pt;}
.h2_c00094{height:32.006363pt;}
.h4_c00094{height:46.518078pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w0_c00094{width:793.706667pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:121.886667pt;}
.x2_c00094{left:133.704000pt;}
.x5_c00094{left:145.522667pt;}
.x3_c00094{left:186.882667pt;}
.x6_c00094{left:210.936000pt;}
.x7_c00094{left:222.334667pt;}
.x4_c00094{left:240.061333pt;}
.x8_c00094{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e13e53c21fdd7a3ba1b3e68d.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.048828;font-style:normal;font-weight:normal;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_b3952e1bc3d84743a7536ea3.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_2cdbf4ed53b42518f6c0f75e.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_d3baeba8256b4c2a2af9afb3.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00095;src:url('chunks/assets/font_6377499c6665692b9fb45bfb.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00095;src:url('chunks/assets/font_6a97470a996818a01ff39f77.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.020996;font-style: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;}
.ls8_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:0.087998px;}
.ls1_c00095{letter-spacing:0.098482px;}
.ls7_c00095{letter-spacing:0.104482px;}
.ls2_c00095{letter-spacing:11.684725px;}
.ls5_c00095{letter-spacing:14.944200px;}
.ls4_c00095{letter-spacing:20.644200px;}
.ls3_c00095{letter-spacing:25.078200px;}
.ls6_c00095{letter-spacing:29.890200px;}
.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;}
}
.ws4_c00095{word-spacing:-29.887800px;}
.ws1_c00095{word-spacing:-26.575517px;}
.ws0_c00095{word-spacing:-26.487518px;}
.ws5_c00095{word-spacing:-22.057196px;}
.ws2_c00095{word-spacing:-22.025164px;}
.ws15_c00095{word-spacing:-18.829314px;}
.wsa_c00095{word-spacing:-18.769538px;}
.ws16_c00095{word-spacing:-18.414863px;}
.ws19_c00095{word-spacing:-17.155597px;}
.ws1a_c00095{word-spacing:-15.601432px;}
.ws3_c00095{word-spacing:-14.850067px;}
.ws18_c00095{word-spacing:-13.509286px;}
.ws17_c00095{word-spacing:-13.449510px;}
.ws6_c00095{word-spacing:-13.329959px;}
.ws9_c00095{word-spacing:-13.270183px;}
.ws11_c00095{word-spacing:-13.109645px;}
.ws12_c00095{word-spacing:-12.720863px;}
.ws14_c00095{word-spacing:-11.596466px;}
.ws1b_c00095{word-spacing:-11.517082px;}
.ws7_c00095{word-spacing:-9.444545px;}
.ws10_c00095{word-spacing:-8.727238px;}
.wsb_c00095{word-spacing:-8.667462px;}
.wsc_c00095{word-spacing:-8.286863px;}
.wse_c00095{word-spacing:-6.097111px;}
.ws8_c00095{word-spacing:-6.090067px;}
.ws13_c00095{word-spacing:-5.861717px;}
.wsd_c00095{word-spacing:-1.433717px;}
.ws1f_c00095{word-spacing:0.000000px;}
.ws1d_c00095{word-spacing:0.043999px;}
.ws1c_c00095{word-spacing:0.175997px;}
.ws1e_c00095{word-spacing:0.213446px;}
.wsf_c00095{word-spacing:33.055907px;}
._2_c00095{margin-left:-3.287658px;}
._0_c00095{width:1.053206px;}
._4_c00095{width:13.210408px;}
._3_c00095{width:18.289158px;}
._a_c00095{width:20.144702px;}
._5_c00095{width:21.868546px;}
._8_c00095{width:27.437000px;}
._1_c00095{width:29.892540px;}
._9_c00095{width:31.369426px;}
._6_c00095{width:36.310459px;}
._7_c00095{width:40.259624px;}
.fc4_c00095{color:rgb(143,89,3);}
.fc5_c00095{color:rgb(207,92,0);}
.fc3_c00095{color:rgb(6,69,173);}
.fc2_c00095{color:rgb(79,153,5);}
.fc1_c00095{color:rgb(0,0,0);}
.fc0_c00095{color:rgb(33,74,135);}
.fs0_c00095{font-size:43.999200px;}
.fs1_c00095{font-size:59.775600px;}
.y0_c00095{bottom:0.000000px;}
.y33_c00095{bottom:44.250000px;}
.y32_c00095{bottom:86.982000px;}
.y31_c00095{bottom:119.859000px;}
.y30_c00095{bottom:136.297500px;}
.y2f_c00095{bottom:152.736000px;}
.y2e_c00095{bottom:185.613000px;}
.y2d_c00095{bottom:234.927000px;}
.y2c_c00095{bottom:251.365500px;}
.y2b_c00095{bottom:267.804000px;}
.y2a_c00095{bottom:300.681000px;}
.y29_c00095{bottom:317.119500px;}
.y28_c00095{bottom:333.558000px;}
.y27_c00095{bottom:349.996500px;}
.y26_c00095{bottom:366.435000px;}
.y25_c00095{bottom:382.873500px;}
.y24_c00095{bottom:399.310500px;}
.y23_c00095{bottom:415.749000px;}
.y22_c00095{bottom:431.814000px;}
.y21_c00095{bottom:479.373000px;}
.y20_c00095{bottom:497.305500px;}
.y1f_c00095{bottom:538.501500px;}
.y1e_c00095{bottom:562.195500px;}
.y1d_c00095{bottom:594.748500px;}
.y1c_c00095{bottom:612.681000px;}
.y1b_c00095{bottom:636.484500px;}
.y1a_c00095{bottom:654.417000px;}
.y19_c00095{bottom:678.219000px;}
.y18_c00095{bottom:702.021000px;}
.y17_c00095{bottom:719.953500px;}
.y16_c00095{bottom:743.757000px;}
.y15_c00095{bottom:761.689500px;}
.y14_c00095{bottom:779.622000px;}
.y13_c00095{bottom:797.554500px;}
.y12_c00095{bottom:821.358000px;}
.y11_c00095{bottom:839.290500px;}
.y10_c00095{bottom:857.223000px;}
.yf_c00095{bottom:913.287000px;}
.ye_c00095{bottom:929.725500px;}
.yd_c00095{bottom:946.164000px;}
.yc_c00095{bottom:962.602500px;}
.yb_c00095{bottom:979.041000px;}
.ya_c00095{bottom:995.479500px;}
.y9_c00095{bottom:1011.918000px;}
.y8_c00095{bottom:1028.356500px;}
.y7_c00095{bottom:1044.795000px;}
.y6_c00095{bottom:1061.232000px;}
.y5_c00095{bottom:1094.109000px;}
.y4_c00095{bottom:1110.547500px;}
.y3_c00095{bottom:1126.986000px;}
.y2_c00095{bottom:1143.424500px;}
.y1_c00095{bottom:1159.863000px;}
.h4_c00095{height:35.190766px;}
.h5_c00095{height:35.770834px;}
.h2_c00095{height:36.007158px;}
.h3_c00095{height:52.332837px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w0_c00095{width:892.920000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x5_c00095{left:127.558500px;}
.x1_c00095{left:137.122500px;}
.x2_c00095{left:152.215500px;}
.x3_c00095{left:164.919000px;}
.x4_c00095{left:182.851500px;}
.x6_c00095{left:438.984000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls8_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:0.078221pt;}
.ls1_c00095{letter-spacing:0.087539pt;}
.ls7_c00095{letter-spacing:0.092873pt;}
.ls2_c00095{letter-spacing:10.386422pt;}
.ls5_c00095{letter-spacing:13.283733pt;}
.ls4_c00095{letter-spacing:18.350400pt;}
.ls3_c00095{letter-spacing:22.291733pt;}
.ls6_c00095{letter-spacing:26.569067pt;}
.ws4_c00095{word-spacing:-26.566933pt;}
.ws1_c00095{word-spacing:-23.622682pt;}
.ws0_c00095{word-spacing:-23.544461pt;}
.ws5_c00095{word-spacing:-19.606397pt;}
.ws2_c00095{word-spacing:-19.577923pt;}
.ws15_c00095{word-spacing:-16.737168pt;}
.wsa_c00095{word-spacing:-16.684034pt;}
.ws16_c00095{word-spacing:-16.368767pt;}
.ws19_c00095{word-spacing:-15.249420pt;}
.ws1a_c00095{word-spacing:-13.867939pt;}
.ws3_c00095{word-spacing:-13.200060pt;}
.ws18_c00095{word-spacing:-12.008254pt;}
.ws17_c00095{word-spacing:-11.955120pt;}
.ws6_c00095{word-spacing:-11.848852pt;}
.ws9_c00095{word-spacing:-11.795718pt;}
.ws11_c00095{word-spacing:-11.653018pt;}
.ws12_c00095{word-spacing:-11.307434pt;}
.ws14_c00095{word-spacing:-10.307970pt;}
.ws1b_c00095{word-spacing:-10.237406pt;}
.ws7_c00095{word-spacing:-8.395151pt;}
.ws10_c00095{word-spacing:-7.757545pt;}
.wsb_c00095{word-spacing:-7.704411pt;}
.wsc_c00095{word-spacing:-7.366100pt;}
.wse_c00095{word-spacing:-5.419654pt;}
.ws8_c00095{word-spacing:-5.413393pt;}
.ws13_c00095{word-spacing:-5.210415pt;}
.wsd_c00095{word-spacing:-1.274415pt;}
.ws1f_c00095{word-spacing:0.000000pt;}
.ws1d_c00095{word-spacing:0.039110pt;}
.ws1c_c00095{word-spacing:0.156442pt;}
.ws1e_c00095{word-spacing:0.189730pt;}
.wsf_c00095{word-spacing:29.383028pt;}
._2_c00095{margin-left:-2.922363pt;}
._0_c00095{width:0.936183pt;}
._4_c00095{width:11.742585pt;}
._3_c00095{width:16.257029pt;}
._a_c00095{width:17.906402pt;}
._5_c00095{width:19.438707pt;}
._8_c00095{width:24.388445pt;}
._1_c00095{width:26.571147pt;}
._9_c00095{width:27.883934pt;}
._6_c00095{width:32.275964pt;}
._7_c00095{width:35.786333pt;}
.fs0_c00095{font-size:39.110400pt;}
.fs1_c00095{font-size:53.133867pt;}
.y0_c00095{bottom:0.000000pt;}
.y33_c00095{bottom:39.333333pt;}
.y32_c00095{bottom:77.317333pt;}
.y31_c00095{bottom:106.541333pt;}
.y30_c00095{bottom:121.153333pt;}
.y2f_c00095{bottom:135.765333pt;}
.y2e_c00095{bottom:164.989333pt;}
.y2d_c00095{bottom:208.824000pt;}
.y2c_c00095{bottom:223.436000pt;}
.y2b_c00095{bottom:238.048000pt;}
.y2a_c00095{bottom:267.272000pt;}
.y29_c00095{bottom:281.884000pt;}
.y28_c00095{bottom:296.496000pt;}
.y27_c00095{bottom:311.108000pt;}
.y26_c00095{bottom:325.720000pt;}
.y25_c00095{bottom:340.332000pt;}
.y24_c00095{bottom:354.942667pt;}
.y23_c00095{bottom:369.554667pt;}
.y22_c00095{bottom:383.834667pt;}
.y21_c00095{bottom:426.109333pt;}
.y20_c00095{bottom:442.049333pt;}
.y1f_c00095{bottom:478.668000pt;}
.y1e_c00095{bottom:499.729333pt;}
.y1d_c00095{bottom:528.665333pt;}
.y1c_c00095{bottom:544.605333pt;}
.y1b_c00095{bottom:565.764000pt;}
.y1a_c00095{bottom:581.704000pt;}
.y19_c00095{bottom:602.861333pt;}
.y18_c00095{bottom:624.018667pt;}
.y17_c00095{bottom:639.958667pt;}
.y16_c00095{bottom:661.117333pt;}
.y15_c00095{bottom:677.057333pt;}
.y14_c00095{bottom:692.997333pt;}
.y13_c00095{bottom:708.937333pt;}
.y12_c00095{bottom:730.096000pt;}
.y11_c00095{bottom:746.036000pt;}
.y10_c00095{bottom:761.976000pt;}
.yf_c00095{bottom:811.810667pt;}
.ye_c00095{bottom:826.422667pt;}
.yd_c00095{bottom:841.034667pt;}
.yc_c00095{bottom:855.646667pt;}
.yb_c00095{bottom:870.258667pt;}
.ya_c00095{bottom:884.870667pt;}
.y9_c00095{bottom:899.482667pt;}
.y8_c00095{bottom:914.094667pt;}
.y7_c00095{bottom:928.706667pt;}
.y6_c00095{bottom:943.317333pt;}
.y5_c00095{bottom:972.541333pt;}
.y4_c00095{bottom:987.153333pt;}
.y3_c00095{bottom:1001.765333pt;}
.y2_c00095{bottom:1016.377333pt;}
.y1_c00095{bottom:1030.989333pt;}
.h4_c00095{height:31.280681pt;}
.h5_c00095{height:31.796297pt;}
.h2_c00095{height:32.006363pt;}
.h3_c00095{height:46.518078pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w0_c00095{width:793.706667pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x5_c00095{left:113.385333pt;}
.x1_c00095{left:121.886667pt;}
.x2_c00095{left:135.302667pt;}
.x3_c00095{left:146.594667pt;}
.x4_c00095{left:162.534667pt;}
.x6_c00095{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ca542a4607188659ee668ee.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.083496;font-style:normal;font-weight:normal;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_b7f5a9458186476777962b32.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.048828;font-style:normal;font-weight:normal;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_63bd34dc5199c1df4351980e.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.014648;font-style:normal;font-weight:normal;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_6f05acaa54bc00b24e21a83d.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.020996;font-style:normal;font-weight:normal;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_0f1de9ffb8ec53a39559de3a.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.087998px;}
.ls2_c00096{letter-spacing:0.098482px;}
.ls1_c00096{letter-spacing:0.104482px;}
.ls3_c00096{letter-spacing:26.690482px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-26.575517px;}
.ws5_c00096{word-spacing:-26.487518px;}
.ws6_c00096{word-spacing:0.000000px;}
.ws2_c00096{word-spacing:0.047383px;}
.ws9_c00096{word-spacing:0.053933px;}
.ws8_c00096{word-spacing:0.063317px;}
.ws1_c00096{word-spacing:0.064416px;}
.ws3_c00096{word-spacing:0.070416px;}
.wsa_c00096{word-spacing:0.080899px;}
.ws7_c00096{word-spacing:0.175997px;}
.ws4_c00096{word-spacing:0.213446px;}
.wsb_c00096{word-spacing:0.219446px;}
._0_c00096{width:1.042723px;}
.fc5_c00096{color:rgb(0,0,207);}
.fc4_c00096{color:rgb(79,153,5);}
.fc3_c00096{color:rgb(33,74,135);}
.fc2_c00096{color:rgb(207,92,0);}
.fc1_c00096{color:rgb(143,89,3);}
.fc0_c00096{color:rgb(0,0,0);}
.fs0_c00096{font-size:43.999200px;}
.fs1_c00096{font-size:59.775600px;}
.y0_c00096{bottom:0.000000px;}
.y3d_c00096{bottom:44.250000px;}
.y3c_c00096{bottom:91.369500px;}
.y3b_c00096{bottom:107.808000px;}
.y3a_c00096{bottom:124.246500px;}
.y39_c00096{bottom:140.685000px;}
.y38_c00096{bottom:157.123500px;}
.y37_c00096{bottom:173.562000px;}
.y36_c00096{bottom:190.000500px;}
.y35_c00096{bottom:206.437500px;}
.y34_c00096{bottom:239.314500px;}
.y33_c00096{bottom:255.753000px;}
.y32_c00096{bottom:272.191500px;}
.y31_c00096{bottom:288.630000px;}
.y30_c00096{bottom:305.068500px;}
.y2f_c00096{bottom:321.507000px;}
.y2e_c00096{bottom:337.945500px;}
.y2d_c00096{bottom:354.384000px;}
.y2c_c00096{bottom:370.822500px;}
.y2b_c00096{bottom:387.259500px;}
.y2a_c00096{bottom:403.698000px;}
.y29_c00096{bottom:420.136500px;}
.y28_c00096{bottom:436.575000px;}
.y27_c00096{bottom:469.452000px;}
.y26_c00096{bottom:485.890500px;}
.y25_c00096{bottom:535.206000px;}
.y24_c00096{bottom:551.643000px;}
.y23_c00096{bottom:568.081500px;}
.y22_c00096{bottom:584.520000px;}
.y21_c00096{bottom:600.958500px;}
.y20_c00096{bottom:617.397000px;}
.y1f_c00096{bottom:633.835500px;}
.y1e_c00096{bottom:650.274000px;}
.y1d_c00096{bottom:666.712500px;}
.y1c_c00096{bottom:683.151000px;}
.y1b_c00096{bottom:699.589500px;}
.y1a_c00096{bottom:716.028000px;}
.y19_c00096{bottom:732.465000px;}
.y18_c00096{bottom:748.903500px;}
.y17_c00096{bottom:765.342000px;}
.y16_c00096{bottom:781.780500px;}
.y15_c00096{bottom:798.219000px;}
.y14_c00096{bottom:814.657500px;}
.y13_c00096{bottom:831.096000px;}
.y12_c00096{bottom:847.534500px;}
.y11_c00096{bottom:863.973000px;}
.y10_c00096{bottom:913.287000px;}
.yf_c00096{bottom:929.725500px;}
.ye_c00096{bottom:946.164000px;}
.yd_c00096{bottom:962.602500px;}
.yc_c00096{bottom:979.041000px;}
.yb_c00096{bottom:995.479500px;}
.ya_c00096{bottom:1011.918000px;}
.y9_c00096{bottom:1028.356500px;}
.y8_c00096{bottom:1044.795000px;}
.y7_c00096{bottom:1061.232000px;}
.y6_c00096{bottom:1077.670500px;}
.y5_c00096{bottom:1094.109000px;}
.y4_c00096{bottom:1110.547500px;}
.y3_c00096{bottom:1126.986000px;}
.y2_c00096{bottom:1143.424500px;}
.y1_c00096{bottom:1159.863000px;}
.h3_c00096{height:35.190766px;}
.h4_c00096{height:35.770834px;}
.h2_c00096{height:36.007158px;}
.h5_c00096{height:52.332837px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w0_c00096{width:892.920000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:137.122500px;}
.x2_c00096{left:150.417000px;}
.x4_c00096{left:270.069000px;}
.x3_c00096{left:283.363500px;}
.x5_c00096{left:438.984000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.078221pt;}
.ls2_c00096{letter-spacing:0.087539pt;}
.ls1_c00096{letter-spacing:0.092873pt;}
.ls3_c00096{letter-spacing:23.724873pt;}
.ws0_c00096{word-spacing:-23.622682pt;}
.ws5_c00096{word-spacing:-23.544461pt;}
.ws6_c00096{word-spacing:0.000000pt;}
.ws2_c00096{word-spacing:0.042118pt;}
.ws9_c00096{word-spacing:0.047940pt;}
.ws8_c00096{word-spacing:0.056282pt;}
.ws1_c00096{word-spacing:0.057259pt;}
.ws3_c00096{word-spacing:0.062592pt;}
.wsa_c00096{word-spacing:0.071910pt;}
.ws7_c00096{word-spacing:0.156442pt;}
.ws4_c00096{word-spacing:0.189730pt;}
.wsb_c00096{word-spacing:0.195063pt;}
._0_c00096{width:0.926865pt;}
.fs0_c00096{font-size:39.110400pt;}
.fs1_c00096{font-size:53.133867pt;}
.y0_c00096{bottom:0.000000pt;}
.y3d_c00096{bottom:39.333333pt;}
.y3c_c00096{bottom:81.217333pt;}
.y3b_c00096{bottom:95.829333pt;}
.y3a_c00096{bottom:110.441333pt;}
.y39_c00096{bottom:125.053333pt;}
.y38_c00096{bottom:139.665333pt;}
.y37_c00096{bottom:154.277333pt;}
.y36_c00096{bottom:168.889333pt;}
.y35_c00096{bottom:183.500000pt;}
.y34_c00096{bottom:212.724000pt;}
.y33_c00096{bottom:227.336000pt;}
.y32_c00096{bottom:241.948000pt;}
.y31_c00096{bottom:256.560000pt;}
.y30_c00096{bottom:271.172000pt;}
.y2f_c00096{bottom:285.784000pt;}
.y2e_c00096{bottom:300.396000pt;}
.y2d_c00096{bottom:315.008000pt;}
.y2c_c00096{bottom:329.620000pt;}
.y2b_c00096{bottom:344.230667pt;}
.y2a_c00096{bottom:358.842667pt;}
.y29_c00096{bottom:373.454667pt;}
.y28_c00096{bottom:388.066667pt;}
.y27_c00096{bottom:417.290667pt;}
.y26_c00096{bottom:431.902667pt;}
.y25_c00096{bottom:475.738667pt;}
.y24_c00096{bottom:490.349333pt;}
.y23_c00096{bottom:504.961333pt;}
.y22_c00096{bottom:519.573333pt;}
.y21_c00096{bottom:534.185333pt;}
.y20_c00096{bottom:548.797333pt;}
.y1f_c00096{bottom:563.409333pt;}
.y1e_c00096{bottom:578.021333pt;}
.y1d_c00096{bottom:592.633333pt;}
.y1c_c00096{bottom:607.245333pt;}
.y1b_c00096{bottom:621.857333pt;}
.y1a_c00096{bottom:636.469333pt;}
.y19_c00096{bottom:651.080000pt;}
.y18_c00096{bottom:665.692000pt;}
.y17_c00096{bottom:680.304000pt;}
.y16_c00096{bottom:694.916000pt;}
.y15_c00096{bottom:709.528000pt;}
.y14_c00096{bottom:724.140000pt;}
.y13_c00096{bottom:738.752000pt;}
.y12_c00096{bottom:753.364000pt;}
.y11_c00096{bottom:767.976000pt;}
.y10_c00096{bottom:811.810667pt;}
.yf_c00096{bottom:826.422667pt;}
.ye_c00096{bottom:841.034667pt;}
.yd_c00096{bottom:855.646667pt;}
.yc_c00096{bottom:870.258667pt;}
.yb_c00096{bottom:884.870667pt;}
.ya_c00096{bottom:899.482667pt;}
.y9_c00096{bottom:914.094667pt;}
.y8_c00096{bottom:928.706667pt;}
.y7_c00096{bottom:943.317333pt;}
.y6_c00096{bottom:957.929333pt;}
.y5_c00096{bottom:972.541333pt;}
.y4_c00096{bottom:987.153333pt;}
.y3_c00096{bottom:1001.765333pt;}
.y2_c00096{bottom:1016.377333pt;}
.y1_c00096{bottom:1030.989333pt;}
.h3_c00096{height:31.280681pt;}
.h4_c00096{height:31.796297pt;}
.h2_c00096{height:32.006363pt;}
.h5_c00096{height:46.518078pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w0_c00096{width:793.706667pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:121.886667pt;}
.x2_c00096{left:133.704000pt;}
.x4_c00096{left:240.061333pt;}
.x3_c00096{left:251.878667pt;}
.x5_c00096{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_647468502a178244c1dcab2c.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.083496;font-style:normal;font-weight:normal;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_64643f575f60aa499347f798.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.014648;font-style:normal;font-weight:normal;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_aebe48fe390e2ad60470ec85.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.048828;font-style:normal;font-weight:normal;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_eee1b0a19aab019227f6644b.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00097;src:url('chunks/assets/font_91762362e5b62c3796951cef.woff2')format("woff");}.ff5_c00097{font-family:ff5_c00097;line-height:0.893555;font-style: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.000000px;}
.ls0_c00097{letter-spacing:0.087998px;}
.ls2_c00097{letter-spacing:0.098482px;}
.ls1_c00097{letter-spacing:0.104482px;}
.ls3_c00097{letter-spacing:14.756725px;}
.ls4_c00097{letter-spacing:45.586200px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:-26.575517px;}
.ws2_c00097{word-spacing:-26.487518px;}
.ws4_c00097{word-spacing:-18.959164px;}
.ws7_c00097{word-spacing:-18.948865px;}
.ws8_c00097{word-spacing:-18.769538px;}
.wsd_c00097{word-spacing:-17.155597px;}
.wse_c00097{word-spacing:-15.601432px;}
.ws6_c00097{word-spacing:-15.123227px;}
.ws5_c00097{word-spacing:-11.778067px;}
.wsf_c00097{word-spacing:-11.506598px;}
.ws1_c00097{word-spacing:0.000000px;}
.ws10_c00097{word-spacing:0.043999px;}
.ws3_c00097{word-spacing:0.175997px;}
.ws11_c00097{word-spacing:0.213446px;}
.ws9_c00097{word-spacing:11.835569px;}
.wsa_c00097{word-spacing:12.221137px;}
.wsb_c00097{word-spacing:19.056283px;}
.wsc_c00097{word-spacing:19.546621px;}
._5_c00097{margin-left:-3.586536px;}
._2_c00097{margin-left:-1.075961px;}
._0_c00097{width:1.007167px;}
._3_c00097{width:19.712698px;}
._1_c00097{width:29.892540px;}
._4_c00097{width:81.287624px;}
.fc5_c00097{color:rgb(0,0,207);}
.fc6_c00097{color:rgb(6,69,173);}
.fc4_c00097{color:rgb(207,92,0);}
.fc3_c00097{color:rgb(143,89,3);}
.fc2_c00097{color:rgb(0,0,0);}
.fc1_c00097{color:rgb(79,153,5);}
.fc0_c00097{color:rgb(33,74,135);}
.fs0_c00097{font-size:43.999200px;}
.fs1_c00097{font-size:59.775600px;}
.y0_c00097{bottom:0.000000px;}
.y37_c00097{bottom:44.250000px;}
.y36_c00097{bottom:86.982000px;}
.y35_c00097{bottom:103.420500px;}
.y34_c00097{bottom:119.859000px;}
.y33_c00097{bottom:136.297500px;}
.y32_c00097{bottom:152.736000px;}
.y31_c00097{bottom:169.174500px;}
.y30_c00097{bottom:185.613000px;}
.y2f_c00097{bottom:201.678000px;}
.y2e_c00097{bottom:250.269000px;}
.y2d_c00097{bottom:268.201500px;}
.y2c_c00097{bottom:310.428000px;}
.y2b_c00097{bottom:328.362000px;}
.y2a_c00097{bottom:352.425000px;}
.y29_c00097{bottom:370.357500px;}
.y28_c00097{bottom:394.422000px;}
.y27_c00097{bottom:412.354500px;}
.y26_c00097{bottom:469.452000px;}
.y25_c00097{bottom:485.890500px;}
.y24_c00097{bottom:502.329000px;}
.y23_c00097{bottom:535.206000px;}
.y22_c00097{bottom:551.643000px;}
.y21_c00097{bottom:568.081500px;}
.y20_c00097{bottom:584.520000px;}
.y1f_c00097{bottom:600.958500px;}
.y1e_c00097{bottom:617.397000px;}
.y1d_c00097{bottom:633.835500px;}
.y1c_c00097{bottom:650.274000px;}
.y1b_c00097{bottom:666.712500px;}
.y1a_c00097{bottom:683.151000px;}
.y19_c00097{bottom:699.589500px;}
.y18_c00097{bottom:716.028000px;}
.y17_c00097{bottom:732.465000px;}
.y16_c00097{bottom:748.903500px;}
.y15_c00097{bottom:765.342000px;}
.y14_c00097{bottom:781.780500px;}
.y13_c00097{bottom:798.219000px;}
.y12_c00097{bottom:814.657500px;}
.y11_c00097{bottom:831.096000px;}
.y10_c00097{bottom:847.534500px;}
.yf_c00097{bottom:880.411500px;}
.ye_c00097{bottom:896.848500px;}
.yd_c00097{bottom:913.287000px;}
.yc_c00097{bottom:929.725500px;}
.yb_c00097{bottom:946.164000px;}
.ya_c00097{bottom:962.602500px;}
.y9_c00097{bottom:979.041000px;}
.y8_c00097{bottom:995.479500px;}
.y7_c00097{bottom:1011.918000px;}
.y6_c00097{bottom:1077.670500px;}
.y5_c00097{bottom:1094.109000px;}
.y4_c00097{bottom:1110.547500px;}
.y3_c00097{bottom:1126.986000px;}
.y2_c00097{bottom:1143.424500px;}
.y1_c00097{bottom:1159.863000px;}
.h3_c00097{height:35.190766px;}
.h2_c00097{height:36.007158px;}
.h4_c00097{height:52.332837px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w0_c00097{width:892.920000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x8_c00097{left:127.558500px;}
.x2_c00097{left:137.122500px;}
.x6_c00097{left:152.215500px;}
.x7_c00097{left:164.919000px;}
.x1_c00097{left:270.069000px;}
.x3_c00097{left:276.715500px;}
.x5_c00097{left:323.247000px;}
.x4_c00097{left:383.073000px;}
.x9_c00097{left:438.984000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls5_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:0.078221pt;}
.ls2_c00097{letter-spacing:0.087539pt;}
.ls1_c00097{letter-spacing:0.092873pt;}
.ls3_c00097{letter-spacing:13.117089pt;}
.ls4_c00097{letter-spacing:40.521067pt;}
.ws0_c00097{word-spacing:-23.622682pt;}
.ws2_c00097{word-spacing:-23.544461pt;}
.ws4_c00097{word-spacing:-16.852590pt;}
.ws7_c00097{word-spacing:-16.843436pt;}
.ws8_c00097{word-spacing:-16.684034pt;}
.wsd_c00097{word-spacing:-15.249420pt;}
.wse_c00097{word-spacing:-13.867939pt;}
.ws6_c00097{word-spacing:-13.442868pt;}
.ws5_c00097{word-spacing:-10.469393pt;}
.wsf_c00097{word-spacing:-10.228087pt;}
.ws1_c00097{word-spacing:0.000000pt;}
.ws10_c00097{word-spacing:0.039110pt;}
.ws3_c00097{word-spacing:0.156442pt;}
.ws11_c00097{word-spacing:0.189730pt;}
.ws9_c00097{word-spacing:10.520506pt;}
.wsa_c00097{word-spacing:10.863233pt;}
.wsb_c00097{word-spacing:16.938918pt;}
.wsc_c00097{word-spacing:17.374774pt;}
._5_c00097{margin-left:-3.188032pt;}
._2_c00097{margin-left:-0.956410pt;}
._0_c00097{width:0.895260pt;}
._3_c00097{width:17.522398pt;}
._1_c00097{width:26.571147pt;}
._4_c00097{width:72.255666pt;}
.fs0_c00097{font-size:39.110400pt;}
.fs1_c00097{font-size:53.133867pt;}
.y0_c00097{bottom:0.000000pt;}
.y37_c00097{bottom:39.333333pt;}
.y36_c00097{bottom:77.317333pt;}
.y35_c00097{bottom:91.929333pt;}
.y34_c00097{bottom:106.541333pt;}
.y33_c00097{bottom:121.153333pt;}
.y32_c00097{bottom:135.765333pt;}
.y31_c00097{bottom:150.377333pt;}
.y30_c00097{bottom:164.989333pt;}
.y2f_c00097{bottom:179.269333pt;}
.y2e_c00097{bottom:222.461333pt;}
.y2d_c00097{bottom:238.401333pt;}
.y2c_c00097{bottom:275.936000pt;}
.y2b_c00097{bottom:291.877333pt;}
.y2a_c00097{bottom:313.266667pt;}
.y29_c00097{bottom:329.206667pt;}
.y28_c00097{bottom:350.597333pt;}
.y27_c00097{bottom:366.537333pt;}
.y26_c00097{bottom:417.290667pt;}
.y25_c00097{bottom:431.902667pt;}
.y24_c00097{bottom:446.514667pt;}
.y23_c00097{bottom:475.738667pt;}
.y22_c00097{bottom:490.349333pt;}
.y21_c00097{bottom:504.961333pt;}
.y20_c00097{bottom:519.573333pt;}
.y1f_c00097{bottom:534.185333pt;}
.y1e_c00097{bottom:548.797333pt;}
.y1d_c00097{bottom:563.409333pt;}
.y1c_c00097{bottom:578.021333pt;}
.y1b_c00097{bottom:592.633333pt;}
.y1a_c00097{bottom:607.245333pt;}
.y19_c00097{bottom:621.857333pt;}
.y18_c00097{bottom:636.469333pt;}
.y17_c00097{bottom:651.080000pt;}
.y16_c00097{bottom:665.692000pt;}
.y15_c00097{bottom:680.304000pt;}
.y14_c00097{bottom:694.916000pt;}
.y13_c00097{bottom:709.528000pt;}
.y12_c00097{bottom:724.140000pt;}
.y11_c00097{bottom:738.752000pt;}
.y10_c00097{bottom:753.364000pt;}
.yf_c00097{bottom:782.588000pt;}
.ye_c00097{bottom:797.198667pt;}
.yd_c00097{bottom:811.810667pt;}
.yc_c00097{bottom:826.422667pt;}
.yb_c00097{bottom:841.034667pt;}
.ya_c00097{bottom:855.646667pt;}
.y9_c00097{bottom:870.258667pt;}
.y8_c00097{bottom:884.870667pt;}
.y7_c00097{bottom:899.482667pt;}
.y6_c00097{bottom:957.929333pt;}
.y5_c00097{bottom:972.541333pt;}
.y4_c00097{bottom:987.153333pt;}
.y3_c00097{bottom:1001.765333pt;}
.y2_c00097{bottom:1016.377333pt;}
.y1_c00097{bottom:1030.989333pt;}
.h3_c00097{height:31.280681pt;}
.h2_c00097{height:32.006363pt;}
.h4_c00097{height:46.518078pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w0_c00097{width:793.706667pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x8_c00097{left:113.385333pt;}
.x2_c00097{left:121.886667pt;}
.x6_c00097{left:135.302667pt;}
.x7_c00097{left:146.594667pt;}
.x1_c00097{left:240.061333pt;}
.x3_c00097{left:245.969333pt;}
.x5_c00097{left:287.330667pt;}
.x4_c00097{left:340.509333pt;}
.x9_c00097{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fdd4f0581bfc7e1ae6a236f3.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.048828;font-style:normal;font-weight:normal;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_2ad7c6ada65968abfdff5db2.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_6024e0154b7b56675dab1a3a.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_d6f1a849a4ee997a3a22d4c3.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_c4480279bb5b96c08b7576bd.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00098;src:url('chunks/assets/font_04c8c46e162c4b7c5e690a76.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;line-height:1.102051;font-style: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);}
.v1_c00098{vertical-align:-12.258000px;}
.v0_c00098{vertical-align:0.000000px;}
.ls5_c00098{letter-spacing:0.000000px;}
.ls1_c00098{letter-spacing:0.087998px;}
.ls2_c00098{letter-spacing:0.098482px;}
.ls0_c00098{letter-spacing:0.104482px;}
.ls4_c00098{letter-spacing:7.460482px;}
.ls3_c00098{letter-spacing:26.690482px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00098{word-spacing:-26.575517px;}
.ws0_c00098{word-spacing:-26.487518px;}
.ws12_c00098{word-spacing:-18.829314px;}
.ws10_c00098{word-spacing:-18.769538px;}
.wsf_c00098{word-spacing:-18.231558px;}
.wse_c00098{word-spacing:-16.976270px;}
.wsd_c00098{word-spacing:-14.943900px;}
.ws11_c00098{word-spacing:-11.563366px;}
.ws2_c00098{word-spacing:0.000000px;}
.ws4_c00098{word-spacing:0.043999px;}
.ws6_c00098{word-spacing:0.047383px;}
.ws9_c00098{word-spacing:0.053933px;}
.ws5_c00098{word-spacing:0.056767px;}
.wsb_c00098{word-spacing:0.064416px;}
.ws7_c00098{word-spacing:0.070416px;}
.wsa_c00098{word-spacing:0.080899px;}
.ws8_c00098{word-spacing:0.175997px;}
.ws3_c00098{word-spacing:0.213446px;}
.wsc_c00098{word-spacing:0.219446px;}
._1_c00098{margin-left:-2024.026728px;}
._2_c00098{margin-left:-4.782048px;}
._0_c00098{width:1.042637px;}
._3_c00098{width:19.905275px;}
.fc5_c00098{color:rgb(0,0,207);}
.fc4_c00098{color:rgb(143,89,3);}
.fc3_c00098{color:rgb(79,153,5);}
.fc2_c00098{color:rgb(207,92,0);}
.fc1_c00098{color:rgb(0,0,0);}
.fc0_c00098{color:rgb(33,74,135);}
.fs2_c00098{font-size:31.015800px;}
.fs1_c00098{font-size:37.218600px;}
.fs0_c00098{font-size:43.999200px;}
.fs3_c00098{font-size:59.775600px;}
.y0_c00098{bottom:0.000000px;}
.y37_c00098{bottom:44.250000px;}
.y36_c00098{bottom:82.051500px;}
.y35_c00098{bottom:99.984000px;}
.y34_c00098{bottom:117.916500px;}
.y33_c00098{bottom:135.849000px;}
.y32_c00098{bottom:171.138000px;}
.y31_c00098{bottom:221.296500px;}
.y30_c00098{bottom:237.735000px;}
.y2f_c00098{bottom:270.612000px;}
.y2e_c00098{bottom:287.050500px;}
.y2d_c00098{bottom:303.487500px;}
.y2c_c00098{bottom:319.926000px;}
.y2b_c00098{bottom:336.364500px;}
.y2a_c00098{bottom:352.803000px;}
.y29_c00098{bottom:369.241500px;}
.y28_c00098{bottom:385.680000px;}
.y27_c00098{bottom:402.118500px;}
.y26_c00098{bottom:434.995500px;}
.y25_c00098{bottom:451.060500px;}
.y24_c00098{bottom:469.452000px;}
.y23_c00098{bottom:485.890500px;}
.y22_c00098{bottom:518.767500px;}
.y21_c00098{bottom:535.206000px;}
.y20_c00098{bottom:551.643000px;}
.y1f_c00098{bottom:568.081500px;}
.y1e_c00098{bottom:584.520000px;}
.y1d_c00098{bottom:600.958500px;}
.y1c_c00098{bottom:617.397000px;}
.y1b_c00098{bottom:633.835500px;}
.y1a_c00098{bottom:650.274000px;}
.y19_c00098{bottom:666.712500px;}
.y18_c00098{bottom:683.151000px;}
.y17_c00098{bottom:699.589500px;}
.y16_c00098{bottom:716.028000px;}
.y15_c00098{bottom:748.903500px;}
.y14_c00098{bottom:765.342000px;}
.y13_c00098{bottom:798.219000px;}
.y12_c00098{bottom:814.657500px;}
.y11_c00098{bottom:831.096000px;}
.y10_c00098{bottom:847.534500px;}
.yf_c00098{bottom:863.973000px;}
.ye_c00098{bottom:880.411500px;}
.yd_c00098{bottom:896.848500px;}
.yc_c00098{bottom:913.287000px;}
.yb_c00098{bottom:929.725500px;}
.ya_c00098{bottom:946.164000px;}
.y9_c00098{bottom:962.602500px;}
.y8_c00098{bottom:979.041000px;}
.y7_c00098{bottom:995.479500px;}
.y6_c00098{bottom:1011.918000px;}
.y5_c00098{bottom:1044.795000px;}
.y4_c00098{bottom:1094.109000px;}
.y3_c00098{bottom:1110.547500px;}
.y2_c00098{bottom:1126.986000px;}
.y1_c00098{bottom:1159.863000px;}
.h3_c00098{height:35.190766px;}
.h2_c00098{height:36.007158px;}
.h4_c00098{height:40.511979px;}
.h5_c00098{height:52.332837px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w0_c00098{width:892.920000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.x9_c00098{left:127.558500px;}
.x1_c00098{left:137.122500px;}
.x2_c00098{left:150.417000px;}
.x5_c00098{left:163.713000px;}
.x4_c00098{left:270.069000px;}
.x3_c00098{left:283.363500px;}
.x6_c00098{left:296.658000px;}
.x8_c00098{left:343.188000px;}
.x7_c00098{left:403.014000px;}
.xa_c00098{left:438.984000px;}
@media print{
.v1_c00098{vertical-align:-10.896000pt;}
.v0_c00098{vertical-align:0.000000pt;}
.ls5_c00098{letter-spacing:0.000000pt;}
.ls1_c00098{letter-spacing:0.078221pt;}
.ls2_c00098{letter-spacing:0.087539pt;}
.ls0_c00098{letter-spacing:0.092873pt;}
.ls4_c00098{letter-spacing:6.631539pt;}
.ls3_c00098{letter-spacing:23.724873pt;}
.ws1_c00098{word-spacing:-23.622682pt;}
.ws0_c00098{word-spacing:-23.544461pt;}
.ws12_c00098{word-spacing:-16.737168pt;}
.ws10_c00098{word-spacing:-16.684034pt;}
.wsf_c00098{word-spacing:-16.205829pt;}
.wse_c00098{word-spacing:-15.090018pt;}
.wsd_c00098{word-spacing:-13.283467pt;}
.ws11_c00098{word-spacing:-10.278547pt;}
.ws2_c00098{word-spacing:0.000000pt;}
.ws4_c00098{word-spacing:0.039110pt;}
.ws6_c00098{word-spacing:0.042118pt;}
.ws9_c00098{word-spacing:0.047940pt;}
.ws5_c00098{word-spacing:0.050460pt;}
.wsb_c00098{word-spacing:0.057259pt;}
.ws7_c00098{word-spacing:0.062592pt;}
.wsa_c00098{word-spacing:0.071910pt;}
.ws8_c00098{word-spacing:0.156442pt;}
.ws3_c00098{word-spacing:0.189730pt;}
.wsc_c00098{word-spacing:0.195063pt;}
._1_c00098{margin-left:-1799.134869pt;}
._2_c00098{margin-left:-4.250709pt;}
._0_c00098{width:0.926788pt;}
._3_c00098{width:17.693578pt;}
.fs2_c00098{font-size:27.569600pt;}
.fs1_c00098{font-size:33.083200pt;}
.fs0_c00098{font-size:39.110400pt;}
.fs3_c00098{font-size:53.133867pt;}
.y0_c00098{bottom:0.000000pt;}
.y37_c00098{bottom:39.333333pt;}
.y36_c00098{bottom:72.934667pt;}
.y35_c00098{bottom:88.874667pt;}
.y34_c00098{bottom:104.814667pt;}
.y33_c00098{bottom:120.754667pt;}
.y32_c00098{bottom:152.122667pt;}
.y31_c00098{bottom:196.708000pt;}
.y30_c00098{bottom:211.320000pt;}
.y2f_c00098{bottom:240.544000pt;}
.y2e_c00098{bottom:255.156000pt;}
.y2d_c00098{bottom:269.766667pt;}
.y2c_c00098{bottom:284.378667pt;}
.y2b_c00098{bottom:298.990667pt;}
.y2a_c00098{bottom:313.602667pt;}
.y29_c00098{bottom:328.214667pt;}
.y28_c00098{bottom:342.826667pt;}
.y27_c00098{bottom:357.438667pt;}
.y26_c00098{bottom:386.662667pt;}
.y25_c00098{bottom:400.942667pt;}
.y24_c00098{bottom:417.290667pt;}
.y23_c00098{bottom:431.902667pt;}
.y22_c00098{bottom:461.126667pt;}
.y21_c00098{bottom:475.738667pt;}
.y20_c00098{bottom:490.349333pt;}
.y1f_c00098{bottom:504.961333pt;}
.y1e_c00098{bottom:519.573333pt;}
.y1d_c00098{bottom:534.185333pt;}
.y1c_c00098{bottom:548.797333pt;}
.y1b_c00098{bottom:563.409333pt;}
.y1a_c00098{bottom:578.021333pt;}
.y19_c00098{bottom:592.633333pt;}
.y18_c00098{bottom:607.245333pt;}
.y17_c00098{bottom:621.857333pt;}
.y16_c00098{bottom:636.469333pt;}
.y15_c00098{bottom:665.692000pt;}
.y14_c00098{bottom:680.304000pt;}
.y13_c00098{bottom:709.528000pt;}
.y12_c00098{bottom:724.140000pt;}
.y11_c00098{bottom:738.752000pt;}
.y10_c00098{bottom:753.364000pt;}
.yf_c00098{bottom:767.976000pt;}
.ye_c00098{bottom:782.588000pt;}
.yd_c00098{bottom:797.198667pt;}
.yc_c00098{bottom:811.810667pt;}
.yb_c00098{bottom:826.422667pt;}
.ya_c00098{bottom:841.034667pt;}
.y9_c00098{bottom:855.646667pt;}
.y8_c00098{bottom:870.258667pt;}
.y7_c00098{bottom:884.870667pt;}
.y6_c00098{bottom:899.482667pt;}
.y5_c00098{bottom:928.706667pt;}
.y4_c00098{bottom:972.541333pt;}
.y3_c00098{bottom:987.153333pt;}
.y2_c00098{bottom:1001.765333pt;}
.y1_c00098{bottom:1030.989333pt;}
.h3_c00098{height:31.280681pt;}
.h2_c00098{height:32.006363pt;}
.h4_c00098{height:36.010648pt;}
.h5_c00098{height:46.518078pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w0_c00098{width:793.706667pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.x9_c00098{left:113.385333pt;}
.x1_c00098{left:121.886667pt;}
.x2_c00098{left:133.704000pt;}
.x5_c00098{left:145.522667pt;}
.x4_c00098{left:240.061333pt;}
.x3_c00098{left:251.878667pt;}
.x6_c00098{left:263.696000pt;}
.x8_c00098{left:305.056000pt;}
.x7_c00098{left:358.234667pt;}
.xa_c00098{left:390.208000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a53a14e71f8a310c55cda491.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.014648;font-style:normal;font-weight:normal;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_b984a573c893253391753df0.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.048828;font-style:normal;font-weight:normal;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_8471d808f0879147b709e29e.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.083496;font-style:normal;font-weight:normal;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_0c295d8f522b0c94499c0325.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls3_c00099{letter-spacing:0.000000px;}
.ls1_c00099{letter-spacing:0.087998px;}
.ls2_c00099{letter-spacing:0.098482px;}
.ls0_c00099{letter-spacing:0.104482px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00099{word-spacing:-26.575517px;}
.ws1_c00099{word-spacing:-26.487518px;}
.ws5_c00099{word-spacing:0.000000px;}
.ws3_c00099{word-spacing:0.043999px;}
.ws0_c00099{word-spacing:0.175997px;}
.ws4_c00099{word-spacing:0.213446px;}
._0_c00099{width:1.047206px;}
.fc5_c00099{color:rgb(0,0,207);}
.fc4_c00099{color:rgb(79,153,5);}
.fc3_c00099{color:rgb(207,92,0);}
.fc2_c00099{color:rgb(0,0,0);}
.fc1_c00099{color:rgb(33,74,135);}
.fc0_c00099{color:rgb(143,89,3);}
.fs0_c00099{font-size:43.999200px;}
.fs1_c00099{font-size:59.775600px;}
.y0_c00099{bottom:0.000000px;}
.y35_c00099{bottom:44.250000px;}
.y34_c00099{bottom:87.708000px;}
.y33_c00099{bottom:104.146500px;}
.y32_c00099{bottom:120.585000px;}
.y31_c00099{bottom:137.023500px;}
.y30_c00099{bottom:153.462000px;}
.y2f_c00099{bottom:169.900500px;}
.y2e_c00099{bottom:186.339000px;}
.y2d_c00099{bottom:202.777500px;}
.y2c_c00099{bottom:219.216000px;}
.y2b_c00099{bottom:235.653000px;}
.y2a_c00099{bottom:252.091500px;}
.y29_c00099{bottom:268.530000px;}
.y28_c00099{bottom:301.407000px;}
.y27_c00099{bottom:317.845500px;}
.y26_c00099{bottom:350.722500px;}
.y25_c00099{bottom:367.161000px;}
.y24_c00099{bottom:400.038000px;}
.y23_c00099{bottom:416.475000px;}
.y22_c00099{bottom:449.352000px;}
.y21_c00099{bottom:465.790500px;}
.y20_c00099{bottom:498.667500px;}
.y1f_c00099{bottom:515.106000px;}
.y1e_c00099{bottom:547.983000px;}
.y1d_c00099{bottom:564.421500px;}
.y1c_c00099{bottom:597.297000px;}
.y1b_c00099{bottom:613.735500px;}
.y1a_c00099{bottom:646.612500px;}
.y19_c00099{bottom:663.051000px;}
.y18_c00099{bottom:695.928000px;}
.y17_c00099{bottom:712.366500px;}
.y16_c00099{bottom:728.805000px;}
.y15_c00099{bottom:745.243500px;}
.y14_c00099{bottom:761.680500px;}
.y13_c00099{bottom:778.119000px;}
.y12_c00099{bottom:794.557500px;}
.y11_c00099{bottom:810.996000px;}
.y10_c00099{bottom:827.434500px;}
.yf_c00099{bottom:843.873000px;}
.ye_c00099{bottom:860.311500px;}
.yd_c00099{bottom:876.750000px;}
.yc_c00099{bottom:893.188500px;}
.yb_c00099{bottom:909.627000px;}
.ya_c00099{bottom:926.064000px;}
.y9_c00099{bottom:942.502500px;}
.y8_c00099{bottom:958.941000px;}
.y7_c00099{bottom:975.379500px;}
.y6_c00099{bottom:1008.256500px;}
.y5_c00099{bottom:1057.572000px;}
.y4_c00099{bottom:1074.010500px;}
.y3_c00099{bottom:1090.447500px;}
.y2_c00099{bottom:1123.324500px;}
.y1_c00099{bottom:1139.389500px;}
.h2_c00099{height:35.190766px;}
.h3_c00099{height:36.007158px;}
.h4_c00099{height:52.332837px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w0_c00099{width:892.920000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:137.122500px;}
.x3_c00099{left:216.891000px;}
.x2_c00099{left:243.480000px;}
.x4_c00099{left:316.599000px;}
.x5_c00099{left:435.249000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls3_c00099{letter-spacing:0.000000pt;}
.ls1_c00099{letter-spacing:0.078221pt;}
.ls2_c00099{letter-spacing:0.087539pt;}
.ls0_c00099{letter-spacing:0.092873pt;}
.ws2_c00099{word-spacing:-23.622682pt;}
.ws1_c00099{word-spacing:-23.544461pt;}
.ws5_c00099{word-spacing:0.000000pt;}
.ws3_c00099{word-spacing:0.039110pt;}
.ws0_c00099{word-spacing:0.156442pt;}
.ws4_c00099{word-spacing:0.189730pt;}
._0_c00099{width:0.930850pt;}
.fs0_c00099{font-size:39.110400pt;}
.fs1_c00099{font-size:53.133867pt;}
.y0_c00099{bottom:0.000000pt;}
.y35_c00099{bottom:39.333333pt;}
.y34_c00099{bottom:77.962667pt;}
.y33_c00099{bottom:92.574667pt;}
.y32_c00099{bottom:107.186667pt;}
.y31_c00099{bottom:121.798667pt;}
.y30_c00099{bottom:136.410667pt;}
.y2f_c00099{bottom:151.022667pt;}
.y2e_c00099{bottom:165.634667pt;}
.y2d_c00099{bottom:180.246667pt;}
.y2c_c00099{bottom:194.858667pt;}
.y2b_c00099{bottom:209.469333pt;}
.y2a_c00099{bottom:224.081333pt;}
.y29_c00099{bottom:238.693333pt;}
.y28_c00099{bottom:267.917333pt;}
.y27_c00099{bottom:282.529333pt;}
.y26_c00099{bottom:311.753333pt;}
.y25_c00099{bottom:326.365333pt;}
.y24_c00099{bottom:355.589333pt;}
.y23_c00099{bottom:370.200000pt;}
.y22_c00099{bottom:399.424000pt;}
.y21_c00099{bottom:414.036000pt;}
.y20_c00099{bottom:443.260000pt;}
.y1f_c00099{bottom:457.872000pt;}
.y1e_c00099{bottom:487.096000pt;}
.y1d_c00099{bottom:501.708000pt;}
.y1c_c00099{bottom:530.930667pt;}
.y1b_c00099{bottom:545.542667pt;}
.y1a_c00099{bottom:574.766667pt;}
.y19_c00099{bottom:589.378667pt;}
.y18_c00099{bottom:618.602667pt;}
.y17_c00099{bottom:633.214667pt;}
.y16_c00099{bottom:647.826667pt;}
.y15_c00099{bottom:662.438667pt;}
.y14_c00099{bottom:677.049333pt;}
.y13_c00099{bottom:691.661333pt;}
.y12_c00099{bottom:706.273333pt;}
.y11_c00099{bottom:720.885333pt;}
.y10_c00099{bottom:735.497333pt;}
.yf_c00099{bottom:750.109333pt;}
.ye_c00099{bottom:764.721333pt;}
.yd_c00099{bottom:779.333333pt;}
.yc_c00099{bottom:793.945333pt;}
.yb_c00099{bottom:808.557333pt;}
.ya_c00099{bottom:823.168000pt;}
.y9_c00099{bottom:837.780000pt;}
.y8_c00099{bottom:852.392000pt;}
.y7_c00099{bottom:867.004000pt;}
.y6_c00099{bottom:896.228000pt;}
.y5_c00099{bottom:940.064000pt;}
.y4_c00099{bottom:954.676000pt;}
.y3_c00099{bottom:969.286667pt;}
.y2_c00099{bottom:998.510667pt;}
.y1_c00099{bottom:1012.790667pt;}
.h2_c00099{height:31.280681pt;}
.h3_c00099{height:32.006363pt;}
.h4_c00099{height:46.518078pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w0_c00099{width:793.706667pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:121.886667pt;}
.x3_c00099{left:192.792000pt;}
.x2_c00099{left:216.426667pt;}
.x4_c00099{left:281.421333pt;}
.x5_c00099{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32f8a111fba31646732665b1.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.014648;font-style:normal;font-weight:normal;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_28bf5dbe7c988faf50be5438.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_2998e93beb584745f142b35f.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_d9a6b2abf96d4c1b8bde9ec6.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_d6aa6c15bd8a392238f6cdf2.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls3_c00100{letter-spacing:0.000000px;}
.ls0_c00100{letter-spacing:0.087998px;}
.ls2_c00100{letter-spacing:0.098482px;}
.ls1_c00100{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00100{word-spacing:-26.575517px;}
.ws1_c00100{word-spacing:-26.487518px;}
.ws13_c00100{word-spacing:-22.834279px;}
.ws4_c00100{word-spacing:-21.519300px;}
.wsf_c00100{word-spacing:-21.280114px;}
.ws11_c00100{word-spacing:-21.100787px;}
.ws10_c00100{word-spacing:-21.041011px;}
.wsa_c00100{word-spacing:-20.323704px;}
.wse_c00100{word-spacing:-19.725948px;}
.ws12_c00100{word-spacing:-19.307519px;}
.ws7_c00100{word-spacing:-18.769538px;}
.ws9_c00100{word-spacing:-18.649987px;}
.ws6_c00100{word-spacing:-18.351109px;}
.ws5_c00100{word-spacing:-18.112007px;}
.wsb_c00100{word-spacing:-17.514251px;}
.wsc_c00100{word-spacing:-16.557841px;}
.ws8_c00100{word-spacing:-13.688612px;}
.wsd_c00100{word-spacing:-13.090856px;}
.ws0_c00100{word-spacing:0.000000px;}
.ws3_c00100{word-spacing:0.175997px;}
._1_c00100{margin-left:-5.260253px;}
._5_c00100{margin-left:-4.064741px;}
._4_c00100{margin-left:-1.075961px;}
._a_c00100{width:12.552876px;}
._9_c00100{width:18.052231px;}
._2_c00100{width:20.263928px;}
._8_c00100{width:22.236523px;}
._6_c00100{width:23.491811px;}
._3_c00100{width:29.892540px;}
._7_c00100{width:36.941321px;}
._0_c00100{width:86.077200px;}
.fc4_c00100{color:rgb(207,92,0);}
.fc3_c00100{color:rgb(79,153,5);}
.fc2_c00100{color:rgb(0,0,0);}
.fc1_c00100{color:rgb(33,74,135);}
.fc0_c00100{color:rgb(143,89,3);}
.fs0_c00100{font-size:43.999200px;}
.fs2_c00100{font-size:59.775600px;}
.fs1_c00100{font-size:86.077200px;}
.y0_c00100{bottom:0.000000px;}
.y30_c00100{bottom:44.250000px;}
.y2f_c00100{bottom:82.051500px;}
.y2e_c00100{bottom:99.984000px;}
.y2d_c00100{bottom:130.251000px;}
.y2c_c00100{bottom:148.183500px;}
.y2b_c00100{bottom:166.116000px;}
.y2a_c00100{bottom:184.048500px;}
.y29_c00100{bottom:201.981000px;}
.y28_c00100{bottom:252.244500px;}
.y27_c00100{bottom:288.867000px;}
.y26_c00100{bottom:306.799500px;}
.y25_c00100{bottom:324.733500px;}
.y24_c00100{bottom:342.666000px;}
.y23_c00100{bottom:360.598500px;}
.y22_c00100{bottom:397.222500px;}
.y21_c00100{bottom:447.484500px;}
.y20_c00100{bottom:465.417000px;}
.y1f_c00100{bottom:483.349500px;}
.y1e_c00100{bottom:501.282000px;}
.y1d_c00100{bottom:531.549000px;}
.y1c_c00100{bottom:549.483000px;}
.y1b_c00100{bottom:567.415500px;}
.y1a_c00100{bottom:614.560500px;}
.y19_c00100{bottom:699.589500px;}
.y18_c00100{bottom:716.028000px;}
.y17_c00100{bottom:732.465000px;}
.y16_c00100{bottom:765.342000px;}
.y15_c00100{bottom:781.780500px;}
.y14_c00100{bottom:798.219000px;}
.y13_c00100{bottom:814.657500px;}
.y12_c00100{bottom:831.096000px;}
.y11_c00100{bottom:863.973000px;}
.y10_c00100{bottom:880.411500px;}
.yf_c00100{bottom:896.848500px;}
.ye_c00100{bottom:913.287000px;}
.yd_c00100{bottom:946.164000px;}
.yc_c00100{bottom:962.602500px;}
.yb_c00100{bottom:979.041000px;}
.ya_c00100{bottom:995.479500px;}
.y9_c00100{bottom:1011.918000px;}
.y8_c00100{bottom:1028.356500px;}
.y7_c00100{bottom:1044.795000px;}
.y6_c00100{bottom:1061.232000px;}
.y5_c00100{bottom:1077.670500px;}
.y4_c00100{bottom:1094.109000px;}
.y3_c00100{bottom:1110.547500px;}
.y2_c00100{bottom:1126.986000px;}
.y1_c00100{bottom:1143.424500px;}
.h2_c00100{height:35.190766px;}
.h3_c00100{height:36.007158px;}
.h5_c00100{height:52.332837px;}
.h4_c00100{height:58.337477px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w0_c00100{width:892.920000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:127.558500px;}
.x1_c00100{left:137.122500px;}
.x4_c00100{left:152.215500px;}
.x5_c00100{left:164.919000px;}
.x2_c00100{left:316.599000px;}
.x6_c00100{left:435.249000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls3_c00100{letter-spacing:0.000000pt;}
.ls0_c00100{letter-spacing:0.078221pt;}
.ls2_c00100{letter-spacing:0.087539pt;}
.ls1_c00100{letter-spacing:0.092873pt;}
.ws2_c00100{word-spacing:-23.622682pt;}
.ws1_c00100{word-spacing:-23.544461pt;}
.ws13_c00100{word-spacing:-20.297137pt;}
.ws4_c00100{word-spacing:-19.128267pt;}
.wsf_c00100{word-spacing:-18.915657pt;}
.ws11_c00100{word-spacing:-18.756255pt;}
.ws10_c00100{word-spacing:-18.703121pt;}
.wsa_c00100{word-spacing:-18.065515pt;}
.wse_c00100{word-spacing:-17.534176pt;}
.ws12_c00100{word-spacing:-17.162239pt;}
.ws7_c00100{word-spacing:-16.684034pt;}
.ws9_c00100{word-spacing:-16.577766pt;}
.ws6_c00100{word-spacing:-16.312097pt;}
.ws5_c00100{word-spacing:-16.099562pt;}
.wsb_c00100{word-spacing:-15.568223pt;}
.wsc_c00100{word-spacing:-14.718081pt;}
.ws8_c00100{word-spacing:-12.167655pt;}
.wsd_c00100{word-spacing:-11.636317pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.ws3_c00100{word-spacing:0.156442pt;}
._1_c00100{margin-left:-4.675780pt;}
._5_c00100{margin-left:-3.613103pt;}
._4_c00100{margin-left:-0.956410pt;}
._a_c00100{width:11.158112pt;}
._9_c00100{width:16.046428pt;}
._2_c00100{width:18.012381pt;}
._8_c00100{width:19.765798pt;}
._6_c00100{width:20.881610pt;}
._3_c00100{width:26.571147pt;}
._7_c00100{width:32.836730pt;}
._0_c00100{width:76.513067pt;}
.fs0_c00100{font-size:39.110400pt;}
.fs2_c00100{font-size:53.133867pt;}
.fs1_c00100{font-size:76.513067pt;}
.y0_c00100{bottom:0.000000pt;}
.y30_c00100{bottom:39.333333pt;}
.y2f_c00100{bottom:72.934667pt;}
.y2e_c00100{bottom:88.874667pt;}
.y2d_c00100{bottom:115.778667pt;}
.y2c_c00100{bottom:131.718667pt;}
.y2b_c00100{bottom:147.658667pt;}
.y2a_c00100{bottom:163.598667pt;}
.y29_c00100{bottom:179.538667pt;}
.y28_c00100{bottom:224.217333pt;}
.y27_c00100{bottom:256.770667pt;}
.y26_c00100{bottom:272.710667pt;}
.y25_c00100{bottom:288.652000pt;}
.y24_c00100{bottom:304.592000pt;}
.y23_c00100{bottom:320.532000pt;}
.y22_c00100{bottom:353.086667pt;}
.y21_c00100{bottom:397.764000pt;}
.y20_c00100{bottom:413.704000pt;}
.y1f_c00100{bottom:429.644000pt;}
.y1e_c00100{bottom:445.584000pt;}
.y1d_c00100{bottom:472.488000pt;}
.y1c_c00100{bottom:488.429333pt;}
.y1b_c00100{bottom:504.369333pt;}
.y1a_c00100{bottom:546.276000pt;}
.y19_c00100{bottom:621.857333pt;}
.y18_c00100{bottom:636.469333pt;}
.y17_c00100{bottom:651.080000pt;}
.y16_c00100{bottom:680.304000pt;}
.y15_c00100{bottom:694.916000pt;}
.y14_c00100{bottom:709.528000pt;}
.y13_c00100{bottom:724.140000pt;}
.y12_c00100{bottom:738.752000pt;}
.y11_c00100{bottom:767.976000pt;}
.y10_c00100{bottom:782.588000pt;}
.yf_c00100{bottom:797.198667pt;}
.ye_c00100{bottom:811.810667pt;}
.yd_c00100{bottom:841.034667pt;}
.yc_c00100{bottom:855.646667pt;}
.yb_c00100{bottom:870.258667pt;}
.ya_c00100{bottom:884.870667pt;}
.y9_c00100{bottom:899.482667pt;}
.y8_c00100{bottom:914.094667pt;}
.y7_c00100{bottom:928.706667pt;}
.y6_c00100{bottom:943.317333pt;}
.y5_c00100{bottom:957.929333pt;}
.y4_c00100{bottom:972.541333pt;}
.y3_c00100{bottom:987.153333pt;}
.y2_c00100{bottom:1001.765333pt;}
.y1_c00100{bottom:1016.377333pt;}
.h2_c00100{height:31.280681pt;}
.h3_c00100{height:32.006363pt;}
.h5_c00100{height:46.518078pt;}
.h4_c00100{height:51.855535pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w0_c00100{width:793.706667pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:113.385333pt;}
.x1_c00100{left:121.886667pt;}
.x4_c00100{left:135.302667pt;}
.x5_c00100{left:146.594667pt;}
.x2_c00100{left:281.421333pt;}
.x6_c00100{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78d2db8983bda032563b084c.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:0.893555;font-style:normal;font-weight:normal;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_4fa6e6a44b0f197230c94f7a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.102051;font-style:normal;font-weight:normal;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_ac9a68fa92b5aecba8d4a0ed.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.083496;font-style:normal;font-weight:normal;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_ef8de29c1277d90880d75bfb.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.014648;font-style:normal;font-weight:normal;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_0de621298738bc41aa2186bd.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00101;src:url('chunks/assets/font_1e4b9c0c479467d4376295ca.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:1.020996;font-style: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;}
.v1_c00101{vertical-align:24.330000px;}
.ls6_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:0.087998px;}
.ls4_c00101{letter-spacing:0.098482px;}
.ls3_c00101{letter-spacing:0.104482px;}
.ls5_c00101{letter-spacing:26.690482px;}
.ls2_c00101{letter-spacing:29.887500px;}
.ls1_c00101{letter-spacing:29.890200px;}
.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:-26.575517px;}
.ws13_c00101{word-spacing:-26.487518px;}
.wsf_c00101{word-spacing:-19.187968px;}
.ws3_c00101{word-spacing:-18.829314px;}
.wsa_c00101{word-spacing:-18.804829px;}
.ws1_c00101{word-spacing:-18.769538px;}
.ws8_c00101{word-spacing:-18.231558px;}
.ws0_c00101{word-spacing:-17.932800px;}
.wsb_c00101{word-spacing:-16.856719px;}
.ws11_c00101{word-spacing:-16.737168px;}
.ws10_c00101{word-spacing:-16.726272px;}
.ws9_c00101{word-spacing:-16.258963px;}
.wsc_c00101{word-spacing:-16.019861px;}
.wse_c00101{word-spacing:-14.943900px;}
.ws4_c00101{word-spacing:-14.465695px;}
.ws5_c00101{word-spacing:-11.735388px;}
.ws6_c00101{word-spacing:-11.719205px;}
.ws7_c00101{word-spacing:-11.716018px;}
.wsd_c00101{word-spacing:-11.417140px;}
.ws16_c00101{word-spacing:0.000000px;}
.ws14_c00101{word-spacing:0.043999px;}
.ws17_c00101{word-spacing:0.053933px;}
.ws18_c00101{word-spacing:0.073250px;}
.ws12_c00101{word-spacing:0.175997px;}
.ws15_c00101{word-spacing:0.213446px;}
.ws19_c00101{word-spacing:0.219446px;}
._5_c00101{margin-left:-6.694867px;}
._2_c00101{margin-left:-4.004965px;}
._8_c00101{margin-left:-2.151922px;}
._d_c00101{width:1.008571px;}
._6_c00101{width:15.661207px;}
._4_c00101{width:20.024826px;}
._7_c00101{width:23.013606px;}
._b_c00101{width:24.149342px;}
._9_c00101{width:25.344854px;}
._c_c00101{width:26.439691px;}
._1_c00101{width:29.892540px;}
._3_c00101{width:32.757029px;}
._a_c00101{width:41.842920px;}
._0_c00101{width:71.731200px;}
.fc6_c00101{color:rgb(0,0,207);}
.fc5_c00101{color:rgb(79,153,5);}
.fc3_c00101{color:rgb(33,74,135);}
.fc2_c00101{color:rgb(143,89,3);}
.fc4_c00101{color:rgb(207,92,0);}
.fc1_c00101{color:rgb(6,69,173);}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:43.999200px;}
.fs1_c00101{font-size:59.775600px;}
.fs0_c00101{font-size:71.731200px;}
.fs3_c00101{font-size:77.709000px;}
.y0_c00101{bottom:0.000000px;}
.y31_c00101{bottom:44.250000px;}
.y30_c00101{bottom:98.490000px;}
.y2f_c00101{bottom:114.927000px;}
.y2e_c00101{bottom:131.365500px;}
.y2d_c00101{bottom:147.804000px;}
.y2c_c00101{bottom:164.242500px;}
.y2b_c00101{bottom:180.681000px;}
.y2a_c00101{bottom:197.119500px;}
.y29_c00101{bottom:213.558000px;}
.y28_c00101{bottom:229.996500px;}
.y27_c00101{bottom:262.873500px;}
.y26_c00101{bottom:295.749000px;}
.y25_c00101{bottom:345.064500px;}
.y24_c00101{bottom:361.503000px;}
.y23_c00101{bottom:377.941500px;}
.y22_c00101{bottom:410.818500px;}
.y21_c00101{bottom:427.257000px;}
.y20_c00101{bottom:443.694000px;}
.y1f_c00101{bottom:460.132500px;}
.y1e_c00101{bottom:476.571000px;}
.y1d_c00101{bottom:493.009500px;}
.y1c_c00101{bottom:509.448000px;}
.y1b_c00101{bottom:525.513000px;}
.y1a_c00101{bottom:572.335500px;}
.y19_c00101{bottom:590.268000px;}
.y18_c00101{bottom:608.200500px;}
.y17_c00101{bottom:648.660000px;}
.y16_c00101{bottom:667.291500px;}
.y15_c00101{bottom:687.982500px;}
.y14_c00101{bottom:718.777500px;}
.y13_c00101{bottom:743.490000px;}
.y12_c00101{bottom:761.422500px;}
.y11_c00101{bottom:779.356500px;}
.y10_c00101{bottom:791.206500px;}
.yf_c00101{bottom:817.980000px;}
.ye_c00101{bottom:829.830000px;}
.yd_c00101{bottom:850.521000px;}
.yc_c00101{bottom:871.212000px;}
.yb_c00101{bottom:902.007000px;}
.ya_c00101{bottom:934.192500px;}
.y9_c00101{bottom:952.125000px;}
.y8_c00101{bottom:970.057500px;}
.y7_c00101{bottom:999.484500px;}
.y6_c00101{bottom:1017.417000px;}
.y5_c00101{bottom:1035.349500px;}
.y4_c00101{bottom:1053.282000px;}
.y3_c00101{bottom:1082.709000px;}
.y2_c00101{bottom:1123.168500px;}
.y1_c00101{bottom:1159.863000px;}
.h5_c00101{height:35.190766px;}
.h7_c00101{height:35.770834px;}
.h6_c00101{height:36.007158px;}
.h2_c00101{height:48.614700px;}
.h3_c00101{height:52.332837px;}
.h4_c00101{height:76.662837px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w0_c00101{width:892.920000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:127.558500px;}
.x7_c00101{left:137.122500px;}
.x8_c00101{left:150.417000px;}
.x2_c00101{left:152.215500px;}
.x3_c00101{left:164.919000px;}
.x4_c00101{left:182.851500px;}
.x5_c00101{left:208.555500px;}
.x6_c00101{left:225.741000px;}
.x9_c00101{left:435.249000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.v1_c00101{vertical-align:21.626667pt;}
.ls6_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:0.078221pt;}
.ls4_c00101{letter-spacing:0.087539pt;}
.ls3_c00101{letter-spacing:0.092873pt;}
.ls5_c00101{letter-spacing:23.724873pt;}
.ls2_c00101{letter-spacing:26.566667pt;}
.ls1_c00101{letter-spacing:26.569067pt;}
.ws2_c00101{word-spacing:-23.622682pt;}
.ws13_c00101{word-spacing:-23.544461pt;}
.wsf_c00101{word-spacing:-17.055971pt;}
.ws3_c00101{word-spacing:-16.737168pt;}
.wsa_c00101{word-spacing:-16.715404pt;}
.ws1_c00101{word-spacing:-16.684034pt;}
.ws8_c00101{word-spacing:-16.205829pt;}
.ws0_c00101{word-spacing:-15.940267pt;}
.wsb_c00101{word-spacing:-14.983750pt;}
.ws11_c00101{word-spacing:-14.877483pt;}
.ws10_c00101{word-spacing:-14.867797pt;}
.ws9_c00101{word-spacing:-14.452412pt;}
.wsc_c00101{word-spacing:-14.239876pt;}
.wse_c00101{word-spacing:-13.283467pt;}
.ws4_c00101{word-spacing:-12.858396pt;}
.ws5_c00101{word-spacing:-10.431456pt;}
.ws6_c00101{word-spacing:-10.417071pt;}
.ws7_c00101{word-spacing:-10.414238pt;}
.wsd_c00101{word-spacing:-10.148569pt;}
.ws16_c00101{word-spacing:0.000000pt;}
.ws14_c00101{word-spacing:0.039110pt;}
.ws17_c00101{word-spacing:0.047940pt;}
.ws18_c00101{word-spacing:0.065111pt;}
.ws12_c00101{word-spacing:0.156442pt;}
.ws15_c00101{word-spacing:0.189730pt;}
.ws19_c00101{word-spacing:0.195063pt;}
._5_c00101{margin-left:-5.950993pt;}
._2_c00101{margin-left:-3.559969pt;}
._8_c00101{margin-left:-1.912819pt;}
._d_c00101{width:0.896508pt;}
._6_c00101{width:13.921073pt;}
._4_c00101{width:17.799845pt;}
._7_c00101{width:20.456539pt;}
._b_c00101{width:21.466082pt;}
._9_c00101{width:22.528759pt;}
._c_c00101{width:23.501948pt;}
._1_c00101{width:26.571147pt;}
._3_c00101{width:29.117359pt;}
._a_c00101{width:37.193707pt;}
._0_c00101{width:63.761067pt;}
.fs2_c00101{font-size:39.110400pt;}
.fs1_c00101{font-size:53.133867pt;}
.fs0_c00101{font-size:63.761067pt;}
.fs3_c00101{font-size:69.074667pt;}
.y0_c00101{bottom:0.000000pt;}
.y31_c00101{bottom:39.333333pt;}
.y30_c00101{bottom:87.546667pt;}
.y2f_c00101{bottom:102.157333pt;}
.y2e_c00101{bottom:116.769333pt;}
.y2d_c00101{bottom:131.381333pt;}
.y2c_c00101{bottom:145.993333pt;}
.y2b_c00101{bottom:160.605333pt;}
.y2a_c00101{bottom:175.217333pt;}
.y29_c00101{bottom:189.829333pt;}
.y28_c00101{bottom:204.441333pt;}
.y27_c00101{bottom:233.665333pt;}
.y26_c00101{bottom:262.888000pt;}
.y25_c00101{bottom:306.724000pt;}
.y24_c00101{bottom:321.336000pt;}
.y23_c00101{bottom:335.948000pt;}
.y22_c00101{bottom:365.172000pt;}
.y21_c00101{bottom:379.784000pt;}
.y20_c00101{bottom:394.394667pt;}
.y1f_c00101{bottom:409.006667pt;}
.y1e_c00101{bottom:423.618667pt;}
.y1d_c00101{bottom:438.230667pt;}
.y1c_c00101{bottom:452.842667pt;}
.y1b_c00101{bottom:467.122667pt;}
.y1a_c00101{bottom:508.742667pt;}
.y19_c00101{bottom:524.682667pt;}
.y18_c00101{bottom:540.622667pt;}
.y17_c00101{bottom:576.586667pt;}
.y16_c00101{bottom:593.148000pt;}
.y15_c00101{bottom:611.540000pt;}
.y14_c00101{bottom:638.913333pt;}
.y13_c00101{bottom:660.880000pt;}
.y12_c00101{bottom:676.820000pt;}
.y11_c00101{bottom:692.761333pt;}
.y10_c00101{bottom:703.294667pt;}
.yf_c00101{bottom:727.093333pt;}
.ye_c00101{bottom:737.626667pt;}
.yd_c00101{bottom:756.018667pt;}
.yc_c00101{bottom:774.410667pt;}
.yb_c00101{bottom:801.784000pt;}
.ya_c00101{bottom:830.393333pt;}
.y9_c00101{bottom:846.333333pt;}
.y8_c00101{bottom:862.273333pt;}
.y7_c00101{bottom:888.430667pt;}
.y6_c00101{bottom:904.370667pt;}
.y5_c00101{bottom:920.310667pt;}
.y4_c00101{bottom:936.250667pt;}
.y3_c00101{bottom:962.408000pt;}
.y2_c00101{bottom:998.372000pt;}
.y1_c00101{bottom:1030.989333pt;}
.h5_c00101{height:31.280681pt;}
.h7_c00101{height:31.796297pt;}
.h6_c00101{height:32.006363pt;}
.h2_c00101{height:43.213067pt;}
.h3_c00101{height:46.518078pt;}
.h4_c00101{height:68.144744pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w0_c00101{width:793.706667pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:113.385333pt;}
.x7_c00101{left:121.886667pt;}
.x8_c00101{left:133.704000pt;}
.x2_c00101{left:135.302667pt;}
.x3_c00101{left:146.594667pt;}
.x4_c00101{left:162.534667pt;}
.x5_c00101{left:185.382667pt;}
.x6_c00101{left:200.658667pt;}
.x9_c00101{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec6c438fe44aaefe9e1d93df.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.014648;font-style:normal;font-weight:normal;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_f37d1e74b3b1f72818b15698.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.048828;font-style:normal;font-weight:normal;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_7e4c7488e74b9bab7be6317b.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.083496;font-style:normal;font-weight:normal;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_4e76d8748e0ef140e08f8ef6.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_e66345382d34761cc5b84206.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_396d23afe8ad14bad767af0b.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls4_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:0.087998px;}
.ls2_c00102{letter-spacing:0.098482px;}
.ls1_c00102{letter-spacing:0.104482px;}
.ls3_c00102{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws3_c00102{word-spacing:-26.487518px;}
.ws0_c00102{word-spacing:0.000000px;}
.ws2_c00102{word-spacing:0.043999px;}
.ws5_c00102{word-spacing:0.053933px;}
.wsc_c00102{word-spacing:0.056767px;}
.wsa_c00102{word-spacing:0.059933px;}
.ws7_c00102{word-spacing:0.064416px;}
.ws9_c00102{word-spacing:0.067250px;}
.ws6_c00102{word-spacing:0.070416px;}
.wsb_c00102{word-spacing:0.073250px;}
.ws4_c00102{word-spacing:0.175997px;}
.ws8_c00102{word-spacing:0.219446px;}
._2_c00102{margin-left:-907.908955px;}
._1_c00102{margin-left:-801.579922px;}
._0_c00102{width:1.027034px;}
.fc5_c00102{color:rgb(0,0,207);}
.fc4_c00102{color:rgb(207,92,0);}
.fc3_c00102{color:rgb(79,153,5);}
.fc2_c00102{color:rgb(0,0,0);}
.fc1_c00102{color:rgb(33,74,135);}
.fc0_c00102{color:rgb(143,89,3);}
.fs1_c00102{font-size:31.015800px;}
.fs0_c00102{font-size:43.999200px;}
.fs2_c00102{font-size:59.775600px;}
.y0_c00102{bottom:0.000000px;}
.y3c_c00102{bottom:44.250000px;}
.y3b_c00102{bottom:108.555000px;}
.y3a_c00102{bottom:124.993500px;}
.y39_c00102{bottom:141.432000px;}
.y38_c00102{bottom:157.870500px;}
.y37_c00102{bottom:174.309000px;}
.y36_c00102{bottom:190.747500px;}
.y35_c00102{bottom:207.186000px;}
.y34_c00102{bottom:223.624500px;}
.y33_c00102{bottom:240.061500px;}
.y32_c00102{bottom:256.500000px;}
.y31_c00102{bottom:272.938500px;}
.y30_c00102{bottom:289.377000px;}
.y2f_c00102{bottom:305.815500px;}
.y2e_c00102{bottom:338.692500px;}
.y2d_c00102{bottom:355.131000px;}
.y2c_c00102{bottom:371.569500px;}
.y2b_c00102{bottom:388.008000px;}
.y2a_c00102{bottom:404.445000px;}
.y29_c00102{bottom:420.883500px;}
.y28_c00102{bottom:437.322000px;}
.y27_c00102{bottom:453.760500px;}
.y26_c00102{bottom:470.199000px;}
.y25_c00102{bottom:486.637500px;}
.y24_c00102{bottom:503.076000px;}
.y23_c00102{bottom:519.514500px;}
.y22_c00102{bottom:535.579500px;}
.y21_c00102{bottom:552.018000px;}
.y20_c00102{bottom:568.081500px;}
.y1f_c00102{bottom:584.520000px;}
.y1e_c00102{bottom:600.958500px;}
.y1d_c00102{bottom:617.397000px;}
.y1c_c00102{bottom:633.835500px;}
.y1b_c00102{bottom:650.274000px;}
.y1a_c00102{bottom:666.712500px;}
.y19_c00102{bottom:683.151000px;}
.y18_c00102{bottom:699.589500px;}
.y17_c00102{bottom:716.028000px;}
.y16_c00102{bottom:732.465000px;}
.y15_c00102{bottom:765.342000px;}
.y14_c00102{bottom:781.780500px;}
.y13_c00102{bottom:798.219000px;}
.y12_c00102{bottom:814.657500px;}
.y11_c00102{bottom:831.096000px;}
.y10_c00102{bottom:863.973000px;}
.yf_c00102{bottom:880.411500px;}
.ye_c00102{bottom:913.287000px;}
.yd_c00102{bottom:962.602500px;}
.yc_c00102{bottom:979.041000px;}
.yb_c00102{bottom:995.479500px;}
.ya_c00102{bottom:1011.918000px;}
.y9_c00102{bottom:1028.356500px;}
.y8_c00102{bottom:1044.795000px;}
.y7_c00102{bottom:1061.232000px;}
.y6_c00102{bottom:1077.670500px;}
.y5_c00102{bottom:1094.109000px;}
.y4_c00102{bottom:1110.547500px;}
.y3_c00102{bottom:1126.986000px;}
.y2_c00102{bottom:1143.424500px;}
.y1_c00102{bottom:1159.863000px;}
.h2_c00102{height:35.190766px;}
.h4_c00102{height:35.770834px;}
.h3_c00102{height:36.007158px;}
.h5_c00102{height:52.332837px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w0_c00102{width:892.920000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:137.122500px;}
.x4_c00102{left:150.417000px;}
.x3_c00102{left:177.007500px;}
.x6_c00102{left:196.948500px;}
.x5_c00102{left:210.243000px;}
.x2_c00102{left:230.185500px;}
.x7_c00102{left:236.832000px;}
.x8_c00102{left:276.715500px;}
.xb_c00102{left:316.599000px;}
.x9_c00102{left:323.247000px;}
.xa_c00102{left:369.778500px;}
.xc_c00102{left:435.249000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls4_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:0.078221pt;}
.ls2_c00102{letter-spacing:0.087539pt;}
.ls1_c00102{letter-spacing:0.092873pt;}
.ls3_c00102{letter-spacing:23.724873pt;}
.ws1_c00102{word-spacing:-23.622682pt;}
.ws3_c00102{word-spacing:-23.544461pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.ws2_c00102{word-spacing:0.039110pt;}
.ws5_c00102{word-spacing:0.047940pt;}
.wsc_c00102{word-spacing:0.050460pt;}
.wsa_c00102{word-spacing:0.053274pt;}
.ws7_c00102{word-spacing:0.057259pt;}
.ws9_c00102{word-spacing:0.059778pt;}
.ws6_c00102{word-spacing:0.062592pt;}
.wsb_c00102{word-spacing:0.065111pt;}
.ws4_c00102{word-spacing:0.156442pt;}
.ws8_c00102{word-spacing:0.195063pt;}
._2_c00102{margin-left:-807.030182pt;}
._1_c00102{margin-left:-712.515486pt;}
._0_c00102{width:0.912919pt;}
.fs1_c00102{font-size:27.569600pt;}
.fs0_c00102{font-size:39.110400pt;}
.fs2_c00102{font-size:53.133867pt;}
.y0_c00102{bottom:0.000000pt;}
.y3c_c00102{bottom:39.333333pt;}
.y3b_c00102{bottom:96.493333pt;}
.y3a_c00102{bottom:111.105333pt;}
.y39_c00102{bottom:125.717333pt;}
.y38_c00102{bottom:140.329333pt;}
.y37_c00102{bottom:154.941333pt;}
.y36_c00102{bottom:169.553333pt;}
.y35_c00102{bottom:184.165333pt;}
.y34_c00102{bottom:198.777333pt;}
.y33_c00102{bottom:213.388000pt;}
.y32_c00102{bottom:228.000000pt;}
.y31_c00102{bottom:242.612000pt;}
.y30_c00102{bottom:257.224000pt;}
.y2f_c00102{bottom:271.836000pt;}
.y2e_c00102{bottom:301.060000pt;}
.y2d_c00102{bottom:315.672000pt;}
.y2c_c00102{bottom:330.284000pt;}
.y2b_c00102{bottom:344.896000pt;}
.y2a_c00102{bottom:359.506667pt;}
.y29_c00102{bottom:374.118667pt;}
.y28_c00102{bottom:388.730667pt;}
.y27_c00102{bottom:403.342667pt;}
.y26_c00102{bottom:417.954667pt;}
.y25_c00102{bottom:432.566667pt;}
.y24_c00102{bottom:447.178667pt;}
.y23_c00102{bottom:461.790667pt;}
.y22_c00102{bottom:476.070667pt;}
.y21_c00102{bottom:490.682667pt;}
.y20_c00102{bottom:504.961333pt;}
.y1f_c00102{bottom:519.573333pt;}
.y1e_c00102{bottom:534.185333pt;}
.y1d_c00102{bottom:548.797333pt;}
.y1c_c00102{bottom:563.409333pt;}
.y1b_c00102{bottom:578.021333pt;}
.y1a_c00102{bottom:592.633333pt;}
.y19_c00102{bottom:607.245333pt;}
.y18_c00102{bottom:621.857333pt;}
.y17_c00102{bottom:636.469333pt;}
.y16_c00102{bottom:651.080000pt;}
.y15_c00102{bottom:680.304000pt;}
.y14_c00102{bottom:694.916000pt;}
.y13_c00102{bottom:709.528000pt;}
.y12_c00102{bottom:724.140000pt;}
.y11_c00102{bottom:738.752000pt;}
.y10_c00102{bottom:767.976000pt;}
.yf_c00102{bottom:782.588000pt;}
.ye_c00102{bottom:811.810667pt;}
.yd_c00102{bottom:855.646667pt;}
.yc_c00102{bottom:870.258667pt;}
.yb_c00102{bottom:884.870667pt;}
.ya_c00102{bottom:899.482667pt;}
.y9_c00102{bottom:914.094667pt;}
.y8_c00102{bottom:928.706667pt;}
.y7_c00102{bottom:943.317333pt;}
.y6_c00102{bottom:957.929333pt;}
.y5_c00102{bottom:972.541333pt;}
.y4_c00102{bottom:987.153333pt;}
.y3_c00102{bottom:1001.765333pt;}
.y2_c00102{bottom:1016.377333pt;}
.y1_c00102{bottom:1030.989333pt;}
.h2_c00102{height:31.280681pt;}
.h4_c00102{height:31.796297pt;}
.h3_c00102{height:32.006363pt;}
.h5_c00102{height:46.518078pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w0_c00102{width:793.706667pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:121.886667pt;}
.x4_c00102{left:133.704000pt;}
.x3_c00102{left:157.340000pt;}
.x6_c00102{left:175.065333pt;}
.x5_c00102{left:186.882667pt;}
.x2_c00102{left:204.609333pt;}
.x7_c00102{left:210.517333pt;}
.x8_c00102{left:245.969333pt;}
.xb_c00102{left:281.421333pt;}
.x9_c00102{left:287.330667pt;}
.xa_c00102{left:328.692000pt;}
.xc_c00102{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_416a3d307047188f046e1d06.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.020996;font-style:normal;font-weight:normal;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_014b246e3b80c151d20bbe85.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_0f3e2e6a6378fdcde1a84b90.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_35f7a8d69bb1ec22d635759b.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00103;src:url('chunks/assets/font_f4e91cc1386d5dcc8bf14ca3.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.102051;font-style: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;}
.ls5_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:0.087998px;}
.ls1_c00103{letter-spacing:0.098482px;}
.ls2_c00103{letter-spacing:0.104482px;}
.ls3_c00103{letter-spacing:26.690482px;}
.ls4_c00103{letter-spacing:29.892540px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-26.575517px;}
.ws3_c00103{word-spacing:-26.487518px;}
.wsd_c00103{word-spacing:-18.829314px;}
.wsa_c00103{word-spacing:-18.769538px;}
.ws9_c00103{word-spacing:-18.004531px;}
.wse_c00103{word-spacing:-17.813129px;}
.wsb_c00103{word-spacing:-15.720983px;}
.wsc_c00103{word-spacing:-14.525471px;}
.wsf_c00103{word-spacing:-13.090856px;}
.ws0_c00103{word-spacing:0.000000px;}
.ws6_c00103{word-spacing:0.026966px;}
.ws2_c00103{word-spacing:0.043999px;}
.ws8_c00103{word-spacing:0.056218px;}
.ws4_c00103{word-spacing:0.069866px;}
.ws7_c00103{word-spacing:0.202963px;}
.ws5_c00103{word-spacing:0.213446px;}
._d_c00103{margin-left:-3.287658px;}
._b_c00103{margin-left:-1.291162px;}
._0_c00103{width:1.020240px;}
._c_c00103{width:19.725948px;}
._f_c00103{width:21.160562px;}
._10_c00103{width:29.892540px;}
._e_c00103{width:32.816804px;}
._11_c00103{width:37.301521px;}
._7_c00103{width:53.327030px;}
._a_c00103{width:71.731200px;}
._6_c00103{width:79.902547px;}
._9_c00103{width:106.478064px;}
._4_c00103{width:133.082832px;}
._1_c00103{width:159.658349px;}
._3_c00103{width:186.233866px;}
._5_c00103{width:212.809382px;}
._2_c00103{width:266.400408px;}
._8_c00103{width:292.535933px;}
.fc6_c00103{color:rgb(6,69,173);}
.fc5_c00103{color:rgb(207,92,0);}
.fc4_c00103{color:rgb(0,0,207);}
.fc3_c00103{color:rgb(79,153,5);}
.fc2_c00103{color:rgb(33,74,135);}
.fc1_c00103{color:rgb(0,0,0);}
.fc0_c00103{color:rgb(143,89,3);}
.fs0_c00103{font-size:43.999200px;}
.fs2_c00103{font-size:59.775600px;}
.fs1_c00103{font-size:71.731200px;}
.y0_c00103{bottom:0.000000px;}
.y30_c00103{bottom:44.250000px;}
.y2f_c00103{bottom:82.051500px;}
.y2e_c00103{bottom:99.984000px;}
.y2d_c00103{bottom:117.916500px;}
.y2c_c00103{bottom:163.104000px;}
.y2b_c00103{bottom:195.667500px;}
.y2a_c00103{bottom:228.231000px;}
.y29_c00103{bottom:260.794500px;}
.y28_c00103{bottom:278.728500px;}
.y27_c00103{bottom:296.661000px;}
.y26_c00103{bottom:341.848500px;}
.y25_c00103{bottom:359.781000px;}
.y24_c00103{bottom:398.641500px;}
.y23_c00103{bottom:469.452000px;}
.y22_c00103{bottom:485.890500px;}
.y21_c00103{bottom:502.329000px;}
.y20_c00103{bottom:518.767500px;}
.y1f_c00103{bottom:535.206000px;}
.y1e_c00103{bottom:551.643000px;}
.y1d_c00103{bottom:568.081500px;}
.y1c_c00103{bottom:584.520000px;}
.y1b_c00103{bottom:600.958500px;}
.y1a_c00103{bottom:617.397000px;}
.y19_c00103{bottom:633.835500px;}
.y18_c00103{bottom:650.274000px;}
.y17_c00103{bottom:666.712500px;}
.y16_c00103{bottom:683.151000px;}
.y15_c00103{bottom:699.589500px;}
.y14_c00103{bottom:716.028000px;}
.y13_c00103{bottom:732.465000px;}
.y12_c00103{bottom:748.903500px;}
.y11_c00103{bottom:765.342000px;}
.y10_c00103{bottom:781.780500px;}
.yf_c00103{bottom:831.096000px;}
.ye_c00103{bottom:863.973000px;}
.yd_c00103{bottom:880.411500px;}
.yc_c00103{bottom:896.848500px;}
.yb_c00103{bottom:913.287000px;}
.ya_c00103{bottom:929.725500px;}
.y9_c00103{bottom:962.602500px;}
.y8_c00103{bottom:979.041000px;}
.y7_c00103{bottom:995.479500px;}
.y6_c00103{bottom:1011.918000px;}
.y5_c00103{bottom:1044.795000px;}
.y4_c00103{bottom:1061.232000px;}
.y3_c00103{bottom:1094.109000px;}
.y2_c00103{bottom:1126.986000px;}
.y1_c00103{bottom:1159.863000px;}
.h2_c00103{height:35.770834px;}
.h3_c00103{height:36.007158px;}
.h4_c00103{height:48.614700px;}
.h5_c00103{height:52.332837px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w0_c00103{width:892.920000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x5_c00103{left:127.558500px;}
.x1_c00103{left:137.122500px;}
.x4_c00103{left:150.417000px;}
.x6_c00103{left:152.215500px;}
.x7_c00103{left:164.919000px;}
.x2_c00103{left:290.481000px;}
.x3_c00103{left:296.658000px;}
.x8_c00103{left:435.249000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls5_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:0.078221pt;}
.ls1_c00103{letter-spacing:0.087539pt;}
.ls2_c00103{letter-spacing:0.092873pt;}
.ls3_c00103{letter-spacing:23.724873pt;}
.ls4_c00103{letter-spacing:26.571147pt;}
.ws1_c00103{word-spacing:-23.622682pt;}
.ws3_c00103{word-spacing:-23.544461pt;}
.wsd_c00103{word-spacing:-16.737168pt;}
.wsa_c00103{word-spacing:-16.684034pt;}
.ws9_c00103{word-spacing:-16.004028pt;}
.wse_c00103{word-spacing:-15.833892pt;}
.wsb_c00103{word-spacing:-13.974207pt;}
.wsc_c00103{word-spacing:-12.911530pt;}
.wsf_c00103{word-spacing:-11.636317pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.ws6_c00103{word-spacing:0.023970pt;}
.ws2_c00103{word-spacing:0.039110pt;}
.ws8_c00103{word-spacing:0.049971pt;}
.ws4_c00103{word-spacing:0.062103pt;}
.ws7_c00103{word-spacing:0.180412pt;}
.ws5_c00103{word-spacing:0.189730pt;}
._d_c00103{margin-left:-2.922363pt;}
._b_c00103{margin-left:-1.147699pt;}
._0_c00103{width:0.906880pt;}
._c_c00103{width:17.534176pt;}
._f_c00103{width:18.809389pt;}
._10_c00103{width:26.571147pt;}
._e_c00103{width:29.170493pt;}
._11_c00103{width:33.156908pt;}
._7_c00103{width:47.401805pt;}
._a_c00103{width:63.761067pt;}
._6_c00103{width:71.024486pt;}
._9_c00103{width:94.647168pt;}
._4_c00103{width:118.295851pt;}
._1_c00103{width:141.918532pt;}
._3_c00103{width:165.541214pt;}
._5_c00103{width:189.163895pt;}
._2_c00103{width:236.800363pt;}
._8_c00103{width:260.031940pt;}
.fs0_c00103{font-size:39.110400pt;}
.fs2_c00103{font-size:53.133867pt;}
.fs1_c00103{font-size:63.761067pt;}
.y0_c00103{bottom:0.000000pt;}
.y30_c00103{bottom:39.333333pt;}
.y2f_c00103{bottom:72.934667pt;}
.y2e_c00103{bottom:88.874667pt;}
.y2d_c00103{bottom:104.814667pt;}
.y2c_c00103{bottom:144.981333pt;}
.y2b_c00103{bottom:173.926667pt;}
.y2a_c00103{bottom:202.872000pt;}
.y29_c00103{bottom:231.817333pt;}
.y28_c00103{bottom:247.758667pt;}
.y27_c00103{bottom:263.698667pt;}
.y26_c00103{bottom:303.865333pt;}
.y25_c00103{bottom:319.805333pt;}
.y24_c00103{bottom:354.348000pt;}
.y23_c00103{bottom:417.290667pt;}
.y22_c00103{bottom:431.902667pt;}
.y21_c00103{bottom:446.514667pt;}
.y20_c00103{bottom:461.126667pt;}
.y1f_c00103{bottom:475.738667pt;}
.y1e_c00103{bottom:490.349333pt;}
.y1d_c00103{bottom:504.961333pt;}
.y1c_c00103{bottom:519.573333pt;}
.y1b_c00103{bottom:534.185333pt;}
.y1a_c00103{bottom:548.797333pt;}
.y19_c00103{bottom:563.409333pt;}
.y18_c00103{bottom:578.021333pt;}
.y17_c00103{bottom:592.633333pt;}
.y16_c00103{bottom:607.245333pt;}
.y15_c00103{bottom:621.857333pt;}
.y14_c00103{bottom:636.469333pt;}
.y13_c00103{bottom:651.080000pt;}
.y12_c00103{bottom:665.692000pt;}
.y11_c00103{bottom:680.304000pt;}
.y10_c00103{bottom:694.916000pt;}
.yf_c00103{bottom:738.752000pt;}
.ye_c00103{bottom:767.976000pt;}
.yd_c00103{bottom:782.588000pt;}
.yc_c00103{bottom:797.198667pt;}
.yb_c00103{bottom:811.810667pt;}
.ya_c00103{bottom:826.422667pt;}
.y9_c00103{bottom:855.646667pt;}
.y8_c00103{bottom:870.258667pt;}
.y7_c00103{bottom:884.870667pt;}
.y6_c00103{bottom:899.482667pt;}
.y5_c00103{bottom:928.706667pt;}
.y4_c00103{bottom:943.317333pt;}
.y3_c00103{bottom:972.541333pt;}
.y2_c00103{bottom:1001.765333pt;}
.y1_c00103{bottom:1030.989333pt;}
.h2_c00103{height:31.796297pt;}
.h3_c00103{height:32.006363pt;}
.h4_c00103{height:43.213067pt;}
.h5_c00103{height:46.518078pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w0_c00103{width:793.706667pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x5_c00103{left:113.385333pt;}
.x1_c00103{left:121.886667pt;}
.x4_c00103{left:133.704000pt;}
.x6_c00103{left:135.302667pt;}
.x7_c00103{left:146.594667pt;}
.x2_c00103{left:258.205333pt;}
.x3_c00103{left:263.696000pt;}
.x8_c00103{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_334c4a4191939413b43af819.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.014648;font-style:normal;font-weight:normal;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_580ea0891d07dc1bfb19b69c.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.048828;font-style:normal;font-weight:normal;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_ac3214755e1cc09523869b61.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.083496;font-style:normal;font-weight:normal;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_411a1eacd96283dc36359ec6.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_9756372fe7b746bb33746864.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls4_c00104{letter-spacing:0.000000px;}
.ls1_c00104{letter-spacing:0.087998px;}
.ls2_c00104{letter-spacing:0.098482px;}
.ls0_c00104{letter-spacing:0.104482px;}
.ls3_c00104{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00104{word-spacing:-26.575517px;}
.ws1_c00104{word-spacing:-26.487518px;}
.ws5_c00104{word-spacing:0.000000px;}
.ws3_c00104{word-spacing:0.043999px;}
.ws7_c00104{word-spacing:0.047383px;}
.ws6_c00104{word-spacing:0.053933px;}
.ws8_c00104{word-spacing:0.063866px;}
.ws0_c00104{word-spacing:0.175997px;}
.ws4_c00104{word-spacing:0.213446px;}
._0_c00104{width:1.008571px;}
.fc5_c00104{color:rgb(0,0,207);}
.fc4_c00104{color:rgb(79,153,5);}
.fc3_c00104{color:rgb(207,92,0);}
.fc2_c00104{color:rgb(0,0,0);}
.fc1_c00104{color:rgb(33,74,135);}
.fc0_c00104{color:rgb(143,89,3);}
.fs0_c00104{font-size:43.999200px;}
.fs1_c00104{font-size:59.775600px;}
.y0_c00104{bottom:0.000000px;}
.y35_c00104{bottom:44.250000px;}
.y34_c00104{bottom:87.708000px;}
.y33_c00104{bottom:104.146500px;}
.y32_c00104{bottom:120.585000px;}
.y31_c00104{bottom:137.023500px;}
.y30_c00104{bottom:169.900500px;}
.y2f_c00104{bottom:186.339000px;}
.y2e_c00104{bottom:202.777500px;}
.y2d_c00104{bottom:219.216000px;}
.y2c_c00104{bottom:252.091500px;}
.y2b_c00104{bottom:268.530000px;}
.y2a_c00104{bottom:284.968500px;}
.y29_c00104{bottom:301.407000px;}
.y28_c00104{bottom:317.845500px;}
.y27_c00104{bottom:350.722500px;}
.y26_c00104{bottom:383.599500px;}
.y25_c00104{bottom:400.038000px;}
.y24_c00104{bottom:432.913500px;}
.y23_c00104{bottom:449.352000px;}
.y22_c00104{bottom:482.229000px;}
.y21_c00104{bottom:498.667500px;}
.y20_c00104{bottom:515.106000px;}
.y1f_c00104{bottom:531.544500px;}
.y1e_c00104{bottom:547.983000px;}
.y1d_c00104{bottom:564.421500px;}
.y1c_c00104{bottom:580.858500px;}
.y1b_c00104{bottom:597.297000px;}
.y1a_c00104{bottom:613.735500px;}
.y19_c00104{bottom:630.174000px;}
.y18_c00104{bottom:663.051000px;}
.y17_c00104{bottom:679.489500px;}
.y16_c00104{bottom:695.928000px;}
.y15_c00104{bottom:712.366500px;}
.y14_c00104{bottom:728.805000px;}
.y13_c00104{bottom:745.243500px;}
.y12_c00104{bottom:761.680500px;}
.y11_c00104{bottom:794.557500px;}
.y10_c00104{bottom:810.996000px;}
.yf_c00104{bottom:827.434500px;}
.ye_c00104{bottom:876.750000px;}
.yd_c00104{bottom:893.188500px;}
.yc_c00104{bottom:926.064000px;}
.yb_c00104{bottom:958.941000px;}
.ya_c00104{bottom:975.379500px;}
.y9_c00104{bottom:991.818000px;}
.y8_c00104{bottom:1024.695000px;}
.y7_c00104{bottom:1041.133500px;}
.y6_c00104{bottom:1057.572000px;}
.y5_c00104{bottom:1074.010500px;}
.y4_c00104{bottom:1090.447500px;}
.y3_c00104{bottom:1106.886000px;}
.y2_c00104{bottom:1123.324500px;}
.y1_c00104{bottom:1139.389500px;}
.h2_c00104{height:35.190766px;}
.h4_c00104{height:35.770834px;}
.h3_c00104{height:36.007158px;}
.h5_c00104{height:52.332837px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w0_c00104{width:892.920000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:137.122500px;}
.x2_c00104{left:150.417000px;}
.x3_c00104{left:196.948500px;}
.x4_c00104{left:230.185500px;}
.x5_c00104{left:296.658000px;}
.x6_c00104{left:435.249000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls4_c00104{letter-spacing:0.000000pt;}
.ls1_c00104{letter-spacing:0.078221pt;}
.ls2_c00104{letter-spacing:0.087539pt;}
.ls0_c00104{letter-spacing:0.092873pt;}
.ls3_c00104{letter-spacing:23.724873pt;}
.ws2_c00104{word-spacing:-23.622682pt;}
.ws1_c00104{word-spacing:-23.544461pt;}
.ws5_c00104{word-spacing:0.000000pt;}
.ws3_c00104{word-spacing:0.039110pt;}
.ws7_c00104{word-spacing:0.042118pt;}
.ws6_c00104{word-spacing:0.047940pt;}
.ws8_c00104{word-spacing:0.056770pt;}
.ws0_c00104{word-spacing:0.156442pt;}
.ws4_c00104{word-spacing:0.189730pt;}
._0_c00104{width:0.896508pt;}
.fs0_c00104{font-size:39.110400pt;}
.fs1_c00104{font-size:53.133867pt;}
.y0_c00104{bottom:0.000000pt;}
.y35_c00104{bottom:39.333333pt;}
.y34_c00104{bottom:77.962667pt;}
.y33_c00104{bottom:92.574667pt;}
.y32_c00104{bottom:107.186667pt;}
.y31_c00104{bottom:121.798667pt;}
.y30_c00104{bottom:151.022667pt;}
.y2f_c00104{bottom:165.634667pt;}
.y2e_c00104{bottom:180.246667pt;}
.y2d_c00104{bottom:194.858667pt;}
.y2c_c00104{bottom:224.081333pt;}
.y2b_c00104{bottom:238.693333pt;}
.y2a_c00104{bottom:253.305333pt;}
.y29_c00104{bottom:267.917333pt;}
.y28_c00104{bottom:282.529333pt;}
.y27_c00104{bottom:311.753333pt;}
.y26_c00104{bottom:340.977333pt;}
.y25_c00104{bottom:355.589333pt;}
.y24_c00104{bottom:384.812000pt;}
.y23_c00104{bottom:399.424000pt;}
.y22_c00104{bottom:428.648000pt;}
.y21_c00104{bottom:443.260000pt;}
.y20_c00104{bottom:457.872000pt;}
.y1f_c00104{bottom:472.484000pt;}
.y1e_c00104{bottom:487.096000pt;}
.y1d_c00104{bottom:501.708000pt;}
.y1c_c00104{bottom:516.318667pt;}
.y1b_c00104{bottom:530.930667pt;}
.y1a_c00104{bottom:545.542667pt;}
.y19_c00104{bottom:560.154667pt;}
.y18_c00104{bottom:589.378667pt;}
.y17_c00104{bottom:603.990667pt;}
.y16_c00104{bottom:618.602667pt;}
.y15_c00104{bottom:633.214667pt;}
.y14_c00104{bottom:647.826667pt;}
.y13_c00104{bottom:662.438667pt;}
.y12_c00104{bottom:677.049333pt;}
.y11_c00104{bottom:706.273333pt;}
.y10_c00104{bottom:720.885333pt;}
.yf_c00104{bottom:735.497333pt;}
.ye_c00104{bottom:779.333333pt;}
.yd_c00104{bottom:793.945333pt;}
.yc_c00104{bottom:823.168000pt;}
.yb_c00104{bottom:852.392000pt;}
.ya_c00104{bottom:867.004000pt;}
.y9_c00104{bottom:881.616000pt;}
.y8_c00104{bottom:910.840000pt;}
.y7_c00104{bottom:925.452000pt;}
.y6_c00104{bottom:940.064000pt;}
.y5_c00104{bottom:954.676000pt;}
.y4_c00104{bottom:969.286667pt;}
.y3_c00104{bottom:983.898667pt;}
.y2_c00104{bottom:998.510667pt;}
.y1_c00104{bottom:1012.790667pt;}
.h2_c00104{height:31.280681pt;}
.h4_c00104{height:31.796297pt;}
.h3_c00104{height:32.006363pt;}
.h5_c00104{height:46.518078pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w0_c00104{width:793.706667pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:121.886667pt;}
.x2_c00104{left:133.704000pt;}
.x3_c00104{left:175.065333pt;}
.x4_c00104{left:204.609333pt;}
.x5_c00104{left:263.696000pt;}
.x6_c00104{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4a66753ae6aaefcdfef5890.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.048828;font-style:normal;font-weight:normal;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_818b6cb3e5f4487d78f5095b.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_a716f38326cca4e28fb9702d.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_eba69688c4de893edc10ff48.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_8ea79706b197a0f7e5c10dfb.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00105;src:url('chunks/assets/font_00bbe09c6eeeaedbe55c231d.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:1.014648;font-style: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;}
.ls5_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.087998px;}
.ls3_c00105{letter-spacing:0.098482px;}
.ls1_c00105{letter-spacing:0.104482px;}
.ls2_c00105{letter-spacing:26.690482px;}
.ls4_c00105{letter-spacing:29.892540px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00105{word-spacing:-26.575517px;}
.ws0_c00105{word-spacing:-26.487518px;}
.wsd_c00105{word-spacing:-20.921460px;}
.wsb_c00105{word-spacing:-18.829314px;}
.wsa_c00105{word-spacing:-18.769538px;}
.ws8_c00105{word-spacing:-17.932800px;}
.ws9_c00105{word-spacing:-17.753353px;}
.wsc_c00105{word-spacing:-16.737168px;}
.wsf_c00105{word-spacing:0.000000px;}
.ws5_c00105{word-spacing:0.026966px;}
.ws2_c00105{word-spacing:0.043999px;}
.ws7_c00105{word-spacing:0.056218px;}
.ws3_c00105{word-spacing:0.069866px;}
.wse_c00105{word-spacing:0.175997px;}
.ws6_c00105{word-spacing:0.202963px;}
.ws4_c00105{word-spacing:0.213446px;}
._d_c00105{margin-left:-4.124516px;}
._e_c00105{margin-left:-2.391024px;}
._f_c00105{width:1.008571px;}
._c_c00105{width:19.571497px;}
._a_c00105{width:23.312484px;}
._b_c00105{width:29.892540px;}
._6_c00105{width:53.327030px;}
._9_c00105{width:71.731200px;}
._5_c00105{width:79.902547px;}
._8_c00105{width:106.478064px;}
._3_c00105{width:133.082832px;}
._0_c00105{width:159.658349px;}
._2_c00105{width:186.233866px;}
._4_c00105{width:212.809382px;}
._1_c00105{width:266.400408px;}
._7_c00105{width:292.535933px;}
.fc6_c00105{color:rgb(6,69,173);}
.fc5_c00105{color:rgb(207,92,0);}
.fc4_c00105{color:rgb(0,0,207);}
.fc3_c00105{color:rgb(79,153,5);}
.fc2_c00105{color:rgb(143,89,3);}
.fc1_c00105{color:rgb(0,0,0);}
.fc0_c00105{color:rgb(33,74,135);}
.fs0_c00105{font-size:43.999200px;}
.fs2_c00105{font-size:59.775600px;}
.fs1_c00105{font-size:71.731200px;}
.y0_c00105{bottom:0.000000px;}
.y2e_c00105{bottom:44.250000px;}
.y2d_c00105{bottom:86.982000px;}
.y2c_c00105{bottom:152.736000px;}
.y2b_c00105{bottom:169.174500px;}
.y2a_c00105{bottom:185.613000px;}
.y29_c00105{bottom:218.490000px;}
.y28_c00105{bottom:234.927000px;}
.y27_c00105{bottom:251.365500px;}
.y26_c00105{bottom:267.804000px;}
.y25_c00105{bottom:284.242500px;}
.y24_c00105{bottom:300.681000px;}
.y23_c00105{bottom:317.119500px;}
.y22_c00105{bottom:333.184500px;}
.y21_c00105{bottom:381.952500px;}
.y20_c00105{bottom:399.885000px;}
.y1f_c00105{bottom:417.817500px;}
.y1e_c00105{bottom:460.222500px;}
.y1d_c00105{bottom:490.558500px;}
.y1c_c00105{bottom:520.896000px;}
.y1b_c00105{bottom:551.233500px;}
.y1a_c00105{bottom:593.637000px;}
.y19_c00105{bottom:611.571000px;}
.y18_c00105{bottom:648.820500px;}
.y17_c00105{bottom:716.028000px;}
.y16_c00105{bottom:732.465000px;}
.y15_c00105{bottom:765.342000px;}
.y14_c00105{bottom:781.780500px;}
.y13_c00105{bottom:798.219000px;}
.y12_c00105{bottom:814.657500px;}
.y11_c00105{bottom:831.096000px;}
.y10_c00105{bottom:847.534500px;}
.yf_c00105{bottom:863.973000px;}
.ye_c00105{bottom:880.411500px;}
.yd_c00105{bottom:896.848500px;}
.yc_c00105{bottom:913.287000px;}
.yb_c00105{bottom:929.725500px;}
.ya_c00105{bottom:946.164000px;}
.y9_c00105{bottom:962.602500px;}
.y8_c00105{bottom:979.041000px;}
.y7_c00105{bottom:995.479500px;}
.y6_c00105{bottom:1011.918000px;}
.y5_c00105{bottom:1028.356500px;}
.y4_c00105{bottom:1044.795000px;}
.y3_c00105{bottom:1077.670500px;}
.y2_c00105{bottom:1143.424500px;}
.y1_c00105{bottom:1159.863000px;}
.h6_c00105{height:35.190766px;}
.h3_c00105{height:35.770834px;}
.h2_c00105{height:36.007158px;}
.h4_c00105{height:48.614700px;}
.h5_c00105{height:52.332837px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w0_c00105{width:892.920000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x3_c00105{left:127.558500px;}
.x1_c00105{left:137.122500px;}
.x2_c00105{left:150.417000px;}
.x4_c00105{left:152.215500px;}
.x5_c00105{left:435.249000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls5_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.078221pt;}
.ls3_c00105{letter-spacing:0.087539pt;}
.ls1_c00105{letter-spacing:0.092873pt;}
.ls2_c00105{letter-spacing:23.724873pt;}
.ls4_c00105{letter-spacing:26.571147pt;}
.ws1_c00105{word-spacing:-23.622682pt;}
.ws0_c00105{word-spacing:-23.544461pt;}
.wsd_c00105{word-spacing:-18.596853pt;}
.wsb_c00105{word-spacing:-16.737168pt;}
.wsa_c00105{word-spacing:-16.684034pt;}
.ws8_c00105{word-spacing:-15.940267pt;}
.ws9_c00105{word-spacing:-15.780758pt;}
.wsc_c00105{word-spacing:-14.877483pt;}
.wsf_c00105{word-spacing:0.000000pt;}
.ws5_c00105{word-spacing:0.023970pt;}
.ws2_c00105{word-spacing:0.039110pt;}
.ws7_c00105{word-spacing:0.049971pt;}
.ws3_c00105{word-spacing:0.062103pt;}
.wse_c00105{word-spacing:0.156442pt;}
.ws6_c00105{word-spacing:0.180412pt;}
.ws4_c00105{word-spacing:0.189730pt;}
._d_c00105{margin-left:-3.666237pt;}
._e_c00105{margin-left:-2.125355pt;}
._f_c00105{width:0.896508pt;}
._c_c00105{width:17.396886pt;}
._a_c00105{width:20.722208pt;}
._b_c00105{width:26.571147pt;}
._6_c00105{width:47.401805pt;}
._9_c00105{width:63.761067pt;}
._5_c00105{width:71.024486pt;}
._8_c00105{width:94.647168pt;}
._3_c00105{width:118.295851pt;}
._0_c00105{width:141.918532pt;}
._2_c00105{width:165.541214pt;}
._4_c00105{width:189.163895pt;}
._1_c00105{width:236.800363pt;}
._7_c00105{width:260.031940pt;}
.fs0_c00105{font-size:39.110400pt;}
.fs2_c00105{font-size:53.133867pt;}
.fs1_c00105{font-size:63.761067pt;}
.y0_c00105{bottom:0.000000pt;}
.y2e_c00105{bottom:39.333333pt;}
.y2d_c00105{bottom:77.317333pt;}
.y2c_c00105{bottom:135.765333pt;}
.y2b_c00105{bottom:150.377333pt;}
.y2a_c00105{bottom:164.989333pt;}
.y29_c00105{bottom:194.213333pt;}
.y28_c00105{bottom:208.824000pt;}
.y27_c00105{bottom:223.436000pt;}
.y26_c00105{bottom:238.048000pt;}
.y25_c00105{bottom:252.660000pt;}
.y24_c00105{bottom:267.272000pt;}
.y23_c00105{bottom:281.884000pt;}
.y22_c00105{bottom:296.164000pt;}
.y21_c00105{bottom:339.513333pt;}
.y20_c00105{bottom:355.453333pt;}
.y1f_c00105{bottom:371.393333pt;}
.y1e_c00105{bottom:409.086667pt;}
.y1d_c00105{bottom:436.052000pt;}
.y1c_c00105{bottom:463.018667pt;}
.y1b_c00105{bottom:489.985333pt;}
.y1a_c00105{bottom:527.677333pt;}
.y19_c00105{bottom:543.618667pt;}
.y18_c00105{bottom:576.729333pt;}
.y17_c00105{bottom:636.469333pt;}
.y16_c00105{bottom:651.080000pt;}
.y15_c00105{bottom:680.304000pt;}
.y14_c00105{bottom:694.916000pt;}
.y13_c00105{bottom:709.528000pt;}
.y12_c00105{bottom:724.140000pt;}
.y11_c00105{bottom:738.752000pt;}
.y10_c00105{bottom:753.364000pt;}
.yf_c00105{bottom:767.976000pt;}
.ye_c00105{bottom:782.588000pt;}
.yd_c00105{bottom:797.198667pt;}
.yc_c00105{bottom:811.810667pt;}
.yb_c00105{bottom:826.422667pt;}
.ya_c00105{bottom:841.034667pt;}
.y9_c00105{bottom:855.646667pt;}
.y8_c00105{bottom:870.258667pt;}
.y7_c00105{bottom:884.870667pt;}
.y6_c00105{bottom:899.482667pt;}
.y5_c00105{bottom:914.094667pt;}
.y4_c00105{bottom:928.706667pt;}
.y3_c00105{bottom:957.929333pt;}
.y2_c00105{bottom:1016.377333pt;}
.y1_c00105{bottom:1030.989333pt;}
.h6_c00105{height:31.280681pt;}
.h3_c00105{height:31.796297pt;}
.h2_c00105{height:32.006363pt;}
.h4_c00105{height:43.213067pt;}
.h5_c00105{height:46.518078pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w0_c00105{width:793.706667pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x3_c00105{left:113.385333pt;}
.x1_c00105{left:121.886667pt;}
.x2_c00105{left:133.704000pt;}
.x4_c00105{left:135.302667pt;}
.x5_c00105{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_485cea6b65806951f4b1990b.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.020996;font-style:normal;font-weight:normal;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_a45503ed8f380f249c610b9f.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.083496;font-style:normal;font-weight:normal;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_c84d66004f736f666608cd48.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.048828;font-style:normal;font-weight:normal;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_3992ce2247bb6fa7bba96965.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.014648;font-style:normal;font-weight:normal;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_f1b316eec8150e561a59df1c.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls4_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:0.087998px;}
.ls1_c00106{letter-spacing:0.098482px;}
.ls2_c00106{letter-spacing:0.104482px;}
.ls3_c00106{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws2_c00106{word-spacing:-26.487518px;}
.ws0_c00106{word-spacing:0.000000px;}
.ws6_c00106{word-spacing:0.026966px;}
.ws3_c00106{word-spacing:0.043999px;}
.ws8_c00106{word-spacing:0.056218px;}
.ws4_c00106{word-spacing:0.069866px;}
.ws7_c00106{word-spacing:0.202963px;}
.ws5_c00106{word-spacing:0.213446px;}
._0_c00106{width:1.020240px;}
._7_c00106{width:53.327030px;}
._6_c00106{width:79.902547px;}
._9_c00106{width:106.478064px;}
._4_c00106{width:133.082832px;}
._1_c00106{width:159.658349px;}
._3_c00106{width:186.233866px;}
._5_c00106{width:212.809382px;}
._2_c00106{width:266.400408px;}
._8_c00106{width:292.535933px;}
.fc5_c00106{color:rgb(0,0,207);}
.fc4_c00106{color:rgb(207,92,0);}
.fc3_c00106{color:rgb(79,153,5);}
.fc2_c00106{color:rgb(33,74,135);}
.fc1_c00106{color:rgb(0,0,0);}
.fc0_c00106{color:rgb(143,89,3);}
.fs0_c00106{font-size:43.999200px;}
.fs1_c00106{font-size:59.775600px;}
.y0_c00106{bottom:0.000000px;}
.y33_c00106{bottom:44.250000px;}
.y32_c00106{bottom:91.369500px;}
.y31_c00106{bottom:107.808000px;}
.y30_c00106{bottom:124.246500px;}
.y2f_c00106{bottom:140.685000px;}
.y2e_c00106{bottom:157.123500px;}
.y2d_c00106{bottom:173.562000px;}
.y2c_c00106{bottom:190.000500px;}
.y2b_c00106{bottom:206.437500px;}
.y2a_c00106{bottom:222.876000px;}
.y29_c00106{bottom:239.314500px;}
.y28_c00106{bottom:255.753000px;}
.y27_c00106{bottom:272.191500px;}
.y26_c00106{bottom:288.630000px;}
.y25_c00106{bottom:305.068500px;}
.y24_c00106{bottom:321.507000px;}
.y23_c00106{bottom:337.945500px;}
.y22_c00106{bottom:370.822500px;}
.y21_c00106{bottom:420.136500px;}
.y20_c00106{bottom:436.575000px;}
.y1f_c00106{bottom:453.013500px;}
.y1e_c00106{bottom:469.452000px;}
.y1d_c00106{bottom:485.890500px;}
.y1c_c00106{bottom:502.329000px;}
.y1b_c00106{bottom:535.206000px;}
.y1a_c00106{bottom:551.643000px;}
.y19_c00106{bottom:568.081500px;}
.y18_c00106{bottom:584.520000px;}
.y17_c00106{bottom:600.958500px;}
.y16_c00106{bottom:617.397000px;}
.y15_c00106{bottom:633.835500px;}
.y14_c00106{bottom:666.712500px;}
.y13_c00106{bottom:699.589500px;}
.y12_c00106{bottom:716.028000px;}
.y11_c00106{bottom:765.342000px;}
.y10_c00106{bottom:781.780500px;}
.yf_c00106{bottom:814.657500px;}
.ye_c00106{bottom:831.096000px;}
.yd_c00106{bottom:847.534500px;}
.yc_c00106{bottom:863.973000px;}
.yb_c00106{bottom:880.411500px;}
.ya_c00106{bottom:896.848500px;}
.y9_c00106{bottom:913.287000px;}
.y8_c00106{bottom:929.725500px;}
.y7_c00106{bottom:946.164000px;}
.y6_c00106{bottom:962.602500px;}
.y5_c00106{bottom:995.479500px;}
.y4_c00106{bottom:1011.918000px;}
.y3_c00106{bottom:1044.795000px;}
.y2_c00106{bottom:1094.109000px;}
.y1_c00106{bottom:1126.986000px;}
.h4_c00106{height:35.190766px;}
.h2_c00106{height:35.770834px;}
.h3_c00106{height:36.007158px;}
.h5_c00106{height:52.332837px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w0_c00106{width:892.920000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:137.122500px;}
.x4_c00106{left:150.417000px;}
.x2_c00106{left:230.185500px;}
.x3_c00106{left:296.658000px;}
.x5_c00106{left:435.249000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls4_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:0.078221pt;}
.ls1_c00106{letter-spacing:0.087539pt;}
.ls2_c00106{letter-spacing:0.092873pt;}
.ls3_c00106{letter-spacing:23.724873pt;}
.ws1_c00106{word-spacing:-23.622682pt;}
.ws2_c00106{word-spacing:-23.544461pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.ws6_c00106{word-spacing:0.023970pt;}
.ws3_c00106{word-spacing:0.039110pt;}
.ws8_c00106{word-spacing:0.049971pt;}
.ws4_c00106{word-spacing:0.062103pt;}
.ws7_c00106{word-spacing:0.180412pt;}
.ws5_c00106{word-spacing:0.189730pt;}
._0_c00106{width:0.906880pt;}
._7_c00106{width:47.401805pt;}
._6_c00106{width:71.024486pt;}
._9_c00106{width:94.647168pt;}
._4_c00106{width:118.295851pt;}
._1_c00106{width:141.918532pt;}
._3_c00106{width:165.541214pt;}
._5_c00106{width:189.163895pt;}
._2_c00106{width:236.800363pt;}
._8_c00106{width:260.031940pt;}
.fs0_c00106{font-size:39.110400pt;}
.fs1_c00106{font-size:53.133867pt;}
.y0_c00106{bottom:0.000000pt;}
.y33_c00106{bottom:39.333333pt;}
.y32_c00106{bottom:81.217333pt;}
.y31_c00106{bottom:95.829333pt;}
.y30_c00106{bottom:110.441333pt;}
.y2f_c00106{bottom:125.053333pt;}
.y2e_c00106{bottom:139.665333pt;}
.y2d_c00106{bottom:154.277333pt;}
.y2c_c00106{bottom:168.889333pt;}
.y2b_c00106{bottom:183.500000pt;}
.y2a_c00106{bottom:198.112000pt;}
.y29_c00106{bottom:212.724000pt;}
.y28_c00106{bottom:227.336000pt;}
.y27_c00106{bottom:241.948000pt;}
.y26_c00106{bottom:256.560000pt;}
.y25_c00106{bottom:271.172000pt;}
.y24_c00106{bottom:285.784000pt;}
.y23_c00106{bottom:300.396000pt;}
.y22_c00106{bottom:329.620000pt;}
.y21_c00106{bottom:373.454667pt;}
.y20_c00106{bottom:388.066667pt;}
.y1f_c00106{bottom:402.678667pt;}
.y1e_c00106{bottom:417.290667pt;}
.y1d_c00106{bottom:431.902667pt;}
.y1c_c00106{bottom:446.514667pt;}
.y1b_c00106{bottom:475.738667pt;}
.y1a_c00106{bottom:490.349333pt;}
.y19_c00106{bottom:504.961333pt;}
.y18_c00106{bottom:519.573333pt;}
.y17_c00106{bottom:534.185333pt;}
.y16_c00106{bottom:548.797333pt;}
.y15_c00106{bottom:563.409333pt;}
.y14_c00106{bottom:592.633333pt;}
.y13_c00106{bottom:621.857333pt;}
.y12_c00106{bottom:636.469333pt;}
.y11_c00106{bottom:680.304000pt;}
.y10_c00106{bottom:694.916000pt;}
.yf_c00106{bottom:724.140000pt;}
.ye_c00106{bottom:738.752000pt;}
.yd_c00106{bottom:753.364000pt;}
.yc_c00106{bottom:767.976000pt;}
.yb_c00106{bottom:782.588000pt;}
.ya_c00106{bottom:797.198667pt;}
.y9_c00106{bottom:811.810667pt;}
.y8_c00106{bottom:826.422667pt;}
.y7_c00106{bottom:841.034667pt;}
.y6_c00106{bottom:855.646667pt;}
.y5_c00106{bottom:884.870667pt;}
.y4_c00106{bottom:899.482667pt;}
.y3_c00106{bottom:928.706667pt;}
.y2_c00106{bottom:972.541333pt;}
.y1_c00106{bottom:1001.765333pt;}
.h4_c00106{height:31.280681pt;}
.h2_c00106{height:31.796297pt;}
.h3_c00106{height:32.006363pt;}
.h5_c00106{height:46.518078pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w0_c00106{width:793.706667pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:121.886667pt;}
.x4_c00106{left:133.704000pt;}
.x2_c00106{left:204.609333pt;}
.x3_c00106{left:263.696000pt;}
.x5_c00106{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c215d17c345097f379d4cb8.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.083496;font-style:normal;font-weight:normal;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_59b849f639ffff1125649734.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.048828;font-style:normal;font-weight:normal;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_ce2e81ecdb1f4e2a88c98353.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls3_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:0.087998px;}
.ls1_c00107{letter-spacing:0.098482px;}
.ls2_c00107{letter-spacing:0.104482px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:-26.575517px;}
.ws1_c00107{word-spacing:-26.487518px;}
.ws2_c00107{word-spacing:0.000000px;}
.fc2_c00107{color:rgb(79,153,5);}
.fc1_c00107{color:rgb(33,74,135);}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:43.999200px;}
.fs1_c00107{font-size:59.775600px;}
.y0_c00107{bottom:0.000000px;}
.y5_c00107{bottom:44.250000px;}
.y4_c00107{bottom:1094.109000px;}
.y3_c00107{bottom:1110.547500px;}
.y2_c00107{bottom:1143.424500px;}
.y1_c00107{bottom:1159.863000px;}
.h2_c00107{height:36.007158px;}
.h3_c00107{height:52.332837px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w0_c00107{width:892.920000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:137.122500px;}
.x2_c00107{left:435.249000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls3_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:0.078221pt;}
.ls1_c00107{letter-spacing:0.087539pt;}
.ls2_c00107{letter-spacing:0.092873pt;}
.ws0_c00107{word-spacing:-23.622682pt;}
.ws1_c00107{word-spacing:-23.544461pt;}
.ws2_c00107{word-spacing:0.000000pt;}
.fs0_c00107{font-size:39.110400pt;}
.fs1_c00107{font-size:53.133867pt;}
.y0_c00107{bottom:0.000000pt;}
.y5_c00107{bottom:39.333333pt;}
.y4_c00107{bottom:972.541333pt;}
.y3_c00107{bottom:987.153333pt;}
.y2_c00107{bottom:1016.377333pt;}
.y1_c00107{bottom:1030.989333pt;}
.h2_c00107{height:32.006363pt;}
.h3_c00107{height:46.518078pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w0_c00107{width:793.706667pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:121.886667pt;}
.x2_c00107{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f14e6a52836f04020f3af71f.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:0.893555;font-style:normal;font-weight:normal;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_23d71bb48c5f97135b876f98.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.102051;font-style: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;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00108{word-spacing:-37.180650px;}
.ws0_c00108{word-spacing:-30.993750px;}
.ws5_c00108{word-spacing:-21.339889px;}
.ws3_c00108{word-spacing:-18.769538px;}
.ws7_c00108{word-spacing:-18.231558px;}
.ws2_c00108{word-spacing:-17.633802px;}
.ws4_c00108{word-spacing:-17.095822px;}
.ws8_c00108{word-spacing:-16.199188px;}
.ws6_c00108{word-spacing:-15.780758px;}
.ws9_c00108{word-spacing:-11.417140px;}
.wsa_c00108{word-spacing:-10.460730px;}
.wsb_c00108{word-spacing:0.000000px;}
._4_c00108{margin-left:-4.901599px;}
._5_c00108{margin-left:-1.075961px;}
._1_c00108{width:18.470660px;}
._6_c00108{width:19.908892px;}
._3_c00108{width:20.981236px;}
._9_c00108{width:22.236523px;}
._0_c00108{width:24.757618px;}
._8_c00108{width:25.932091px;}
._2_c00108{width:29.892540px;}
._7_c00108{width:41.125613px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs2_c00108{font-size:59.775600px;}
.fs0_c00108{font-size:123.975000px;}
.fs1_c00108{font-size:148.722600px;}
.y0_c00108{bottom:0.000000px;}
.y11_c00108{bottom:44.250000px;}
.y10_c00108{bottom:82.051500px;}
.yf_c00108{bottom:99.984000px;}
.ye_c00108{bottom:117.916500px;}
.yd_c00108{bottom:151.312500px;}
.yc_c00108{bottom:665.599500px;}
.yb_c00108{bottom:683.532000px;}
.ya_c00108{bottom:710.950500px;}
.y9_c00108{bottom:738.369000px;}
.y8_c00108{bottom:756.301500px;}
.y7_c00108{bottom:790.735500px;}
.y6_c00108{bottom:808.668000px;}
.y5_c00108{bottom:826.600500px;}
.y4_c00108{bottom:852.265500px;}
.y3_c00108{bottom:870.198000px;}
.y2_c00108{bottom:957.600000px;}
.y1_c00108{bottom:1040.052000px;}
.h4_c00108{height:52.332837px;}
.h2_c00108{height:84.022119px;}
.h3_c00108{height:100.794418px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w0_c00108{width:892.920000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:127.558500px;}
.x2_c00108{left:152.215500px;}
.x3_c00108{left:164.919000px;}
.x4_c00108{left:246.444000px;}
.x5_c00108{left:435.249000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws1_c00108{word-spacing:-33.049467pt;}
.ws0_c00108{word-spacing:-27.550000pt;}
.ws5_c00108{word-spacing:-18.968790pt;}
.ws3_c00108{word-spacing:-16.684034pt;}
.ws7_c00108{word-spacing:-16.205829pt;}
.ws2_c00108{word-spacing:-15.674491pt;}
.ws4_c00108{word-spacing:-15.196286pt;}
.ws8_c00108{word-spacing:-14.399278pt;}
.ws6_c00108{word-spacing:-14.027341pt;}
.ws9_c00108{word-spacing:-10.148569pt;}
.wsa_c00108{word-spacing:-9.298427pt;}
.wsb_c00108{word-spacing:0.000000pt;}
._4_c00108{margin-left:-4.356977pt;}
._5_c00108{margin-left:-0.956410pt;}
._1_c00108{width:16.418365pt;}
._6_c00108{width:17.696793pt;}
._3_c00108{width:18.649987pt;}
._9_c00108{width:19.765798pt;}
._0_c00108{width:22.006771pt;}
._8_c00108{width:23.050748pt;}
._2_c00108{width:26.571147pt;}
._7_c00108{width:36.556100pt;}
.fs2_c00108{font-size:53.133867pt;}
.fs0_c00108{font-size:110.200000pt;}
.fs1_c00108{font-size:132.197867pt;}
.y0_c00108{bottom:0.000000pt;}
.y11_c00108{bottom:39.333333pt;}
.y10_c00108{bottom:72.934667pt;}
.yf_c00108{bottom:88.874667pt;}
.ye_c00108{bottom:104.814667pt;}
.yd_c00108{bottom:134.500000pt;}
.yc_c00108{bottom:591.644000pt;}
.yb_c00108{bottom:607.584000pt;}
.ya_c00108{bottom:631.956000pt;}
.y9_c00108{bottom:656.328000pt;}
.y8_c00108{bottom:672.268000pt;}
.y7_c00108{bottom:702.876000pt;}
.y6_c00108{bottom:718.816000pt;}
.y5_c00108{bottom:734.756000pt;}
.y4_c00108{bottom:757.569333pt;}
.y3_c00108{bottom:773.509333pt;}
.y2_c00108{bottom:851.200000pt;}
.y1_c00108{bottom:924.490667pt;}
.h4_c00108{height:46.518078pt;}
.h2_c00108{height:74.686328pt;}
.h3_c00108{height:89.595039pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w0_c00108{width:793.706667pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:113.385333pt;}
.x2_c00108{left:135.302667pt;}
.x3_c00108{left:146.594667pt;}
.x4_c00108{left:219.061333pt;}
.x5_c00108{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60249b33e8f3829c0ad32fbf.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.102051;font-style:normal;font-weight:normal;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_214faec062c83124f5c8eda4.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.083496;font-style:normal;font-weight:normal;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_6ec823ccd23b3729697d5607.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.893555;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.048828;font-style: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;}
.ls3_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.087998px;}
.ls2_c00109{letter-spacing:0.098482px;}
.ls1_c00109{letter-spacing:0.104482px;}
.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;}
}
.ws1f_c00109{word-spacing:-33.713438px;}
.ws2_c00109{word-spacing:-26.575517px;}
.ws16_c00109{word-spacing:-26.487518px;}
.ws13_c00109{word-spacing:-19.128192px;}
.ws9_c00109{word-spacing:-18.769538px;}
.ws4_c00109{word-spacing:-17.454475px;}
.ws7_c00109{word-spacing:-17.215373px;}
.ws5_c00109{word-spacing:-17.036046px;}
.wse_c00109{word-spacing:-16.139412px;}
.ws8_c00109{word-spacing:-15.481880px;}
.wsf_c00109{word-spacing:-14.943900px;}
.ws14_c00109{word-spacing:-14.824349px;}
.ws3_c00109{word-spacing:-14.645022px;}
.ws0_c00109{word-spacing:-13.927715px;}
.ws6_c00109{word-spacing:-13.748388px;}
.wsd_c00109{word-spacing:-12.313774px;}
.ws12_c00109{word-spacing:-11.918882px;}
.wsb_c00109{word-spacing:-9.988424px;}
.wsc_c00109{word-spacing:-9.987499px;}
.ws1_c00109{word-spacing:-5.977560px;}
.ws19_c00109{word-spacing:0.000000px;}
.ws17_c00109{word-spacing:0.043999px;}
.ws1b_c00109{word-spacing:0.046284px;}
.ws1a_c00109{word-spacing:0.056767px;}
.ws1d_c00109{word-spacing:0.073250px;}
.ws1c_c00109{word-spacing:0.073800px;}
.ws15_c00109{word-spacing:0.175997px;}
.ws1e_c00109{word-spacing:0.213446px;}
.ws18_c00109{word-spacing:0.219446px;}
.ws11_c00109{word-spacing:13.569061px;}
.wsa_c00109{word-spacing:43.038600px;}
.ws10_c00109{word-spacing:54.749856px;}
._7_c00109{margin-left:-6.369713px;}
._1_c00109{margin-left:-4.124516px;}
._4_c00109{margin-left:-1.613941px;}
._a_c00109{width:1.005737px;}
._3_c00109{width:20.414198px;}
._6_c00109{width:25.285079px;}
._2_c00109{width:30.664883px;}
._9_c00109{width:31.920170px;}
._5_c00109{width:35.088277px;}
._c_c00109{width:53.283031px;}
._0_c00109{width:58.161659px;}
._b_c00109{width:79.858548px;}
._d_c00109{width:106.390066px;}
._8_c00109{width:116.559096px;}
.fc6_c00109{color:rgb(0,0,207);}
.fc5_c00109{color:rgb(79,153,5);}
.fc3_c00109{color:rgb(33,74,135);}
.fc2_c00109{color:rgb(143,89,3);}
.fc4_c00109{color:rgb(207,92,0);}
.fc1_c00109{color:rgb(6,69,173);}
.fc0_c00109{color:rgb(0,0,0);}
.fs1_c00109{font-size:43.999200px;}
.fs0_c00109{font-size:59.775600px;}
.fs2_c00109{font-size:86.077200px;}
.y0_c00109{bottom:0.000000px;}
.y35_c00109{bottom:44.250000px;}
.y34_c00109{bottom:96.919500px;}
.y33_c00109{bottom:113.358000px;}
.y32_c00109{bottom:129.796500px;}
.y31_c00109{bottom:146.235000px;}
.y30_c00109{bottom:162.673500px;}
.y2f_c00109{bottom:179.112000px;}
.y2e_c00109{bottom:195.550500px;}
.y2d_c00109{bottom:211.989000px;}
.y2c_c00109{bottom:228.427500px;}
.y2b_c00109{bottom:244.866000px;}
.y2a_c00109{bottom:261.304500px;}
.y29_c00109{bottom:277.741500px;}
.y28_c00109{bottom:294.180000px;}
.y27_c00109{bottom:310.618500px;}
.y26_c00109{bottom:343.495500px;}
.y25_c00109{bottom:359.934000px;}
.y24_c00109{bottom:376.372500px;}
.y23_c00109{bottom:392.811000px;}
.y22_c00109{bottom:409.249500px;}
.y21_c00109{bottom:425.688000px;}
.y20_c00109{bottom:442.125000px;}
.y1f_c00109{bottom:458.563500px;}
.y1e_c00109{bottom:475.002000px;}
.y1d_c00109{bottom:491.440500px;}
.y1c_c00109{bottom:507.879000px;}
.y1b_c00109{bottom:524.317500px;}
.y1a_c00109{bottom:557.194500px;}
.y19_c00109{bottom:573.633000px;}
.y18_c00109{bottom:590.071500px;}
.y17_c00109{bottom:606.508500px;}
.y16_c00109{bottom:639.385500px;}
.y15_c00109{bottom:655.450500px;}
.y14_c00109{bottom:704.680500px;}
.y13_c00109{bottom:722.613000px;}
.y12_c00109{bottom:740.545500px;}
.y11_c00109{bottom:758.478000px;}
.y10_c00109{bottom:785.787000px;}
.yf_c00109{bottom:813.094500px;}
.ye_c00109{bottom:831.028500px;}
.yd_c00109{bottom:858.336000px;}
.yc_c00109{bottom:885.645000px;}
.yb_c00109{bottom:928.509000px;}
.ya_c00109{bottom:989.092500px;}
.y9_c00109{bottom:1007.025000px;}
.y8_c00109{bottom:1024.957500px;}
.y7_c00109{bottom:1042.891500px;}
.y6_c00109{bottom:1070.199000px;}
.y5_c00109{bottom:1088.131500px;}
.y4_c00109{bottom:1106.064000px;}
.y3_c00109{bottom:1123.998000px;}
.y2_c00109{bottom:1141.930500px;}
.y1_c00109{bottom:1159.863000px;}
.h5_c00109{height:35.190766px;}
.h6_c00109{height:36.007158px;}
.h4_c00109{height:40.511979px;}
.h2_c00109{height:52.332837px;}
.h3_c00109{height:58.337477px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w0_c00109{width:892.920000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:127.558500px;}
.x2_c00109{left:137.122500px;}
.x3_c00109{left:143.770500px;}
.x4_c00109{left:177.007500px;}
.x5_c00109{left:435.526500px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls3_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.078221pt;}
.ls2_c00109{letter-spacing:0.087539pt;}
.ls1_c00109{letter-spacing:0.092873pt;}
.ws1f_c00109{word-spacing:-29.967501pt;}
.ws2_c00109{word-spacing:-23.622682pt;}
.ws16_c00109{word-spacing:-23.544461pt;}
.ws13_c00109{word-spacing:-17.002837pt;}
.ws9_c00109{word-spacing:-16.684034pt;}
.ws4_c00109{word-spacing:-15.515089pt;}
.ws7_c00109{word-spacing:-15.302554pt;}
.ws5_c00109{word-spacing:-15.143152pt;}
.wse_c00109{word-spacing:-14.346144pt;}
.ws8_c00109{word-spacing:-13.761671pt;}
.wsf_c00109{word-spacing:-13.283467pt;}
.ws14_c00109{word-spacing:-13.177199pt;}
.ws3_c00109{word-spacing:-13.017797pt;}
.ws0_c00109{word-spacing:-12.380191pt;}
.ws6_c00109{word-spacing:-12.220789pt;}
.wsd_c00109{word-spacing:-10.945577pt;}
.ws12_c00109{word-spacing:-10.594562pt;}
.wsb_c00109{word-spacing:-8.878599pt;}
.wsc_c00109{word-spacing:-8.877777pt;}
.ws1_c00109{word-spacing:-5.313387pt;}
.ws19_c00109{word-spacing:0.000000pt;}
.ws17_c00109{word-spacing:0.039110pt;}
.ws1b_c00109{word-spacing:0.041141pt;}
.ws1a_c00109{word-spacing:0.050460pt;}
.ws1d_c00109{word-spacing:0.065111pt;}
.ws1c_c00109{word-spacing:0.065600pt;}
.ws15_c00109{word-spacing:0.156442pt;}
.ws1e_c00109{word-spacing:0.189730pt;}
.ws18_c00109{word-spacing:0.195063pt;}
.ws11_c00109{word-spacing:12.061388pt;}
.wsa_c00109{word-spacing:38.256533pt;}
.ws10_c00109{word-spacing:48.666539pt;}
._7_c00109{margin-left:-5.661967pt;}
._1_c00109{margin-left:-3.666237pt;}
._4_c00109{margin-left:-1.434614pt;}
._a_c00109{width:0.893988pt;}
._3_c00109{width:18.145954pt;}
._6_c00109{width:22.475626pt;}
._2_c00109{width:27.257674pt;}
._9_c00109{width:28.373485pt;}
._5_c00109{width:31.189580pt;}
._c_c00109{width:47.362694pt;}
._0_c00109{width:51.699252pt;}
._b_c00109{width:70.985376pt;}
._d_c00109{width:94.568947pt;}
._8_c00109{width:103.608085pt;}
.fs1_c00109{font-size:39.110400pt;}
.fs0_c00109{font-size:53.133867pt;}
.fs2_c00109{font-size:76.513067pt;}
.y0_c00109{bottom:0.000000pt;}
.y35_c00109{bottom:39.333333pt;}
.y34_c00109{bottom:86.150667pt;}
.y33_c00109{bottom:100.762667pt;}
.y32_c00109{bottom:115.374667pt;}
.y31_c00109{bottom:129.986667pt;}
.y30_c00109{bottom:144.598667pt;}
.y2f_c00109{bottom:159.210667pt;}
.y2e_c00109{bottom:173.822667pt;}
.y2d_c00109{bottom:188.434667pt;}
.y2c_c00109{bottom:203.046667pt;}
.y2b_c00109{bottom:217.658667pt;}
.y2a_c00109{bottom:232.270667pt;}
.y29_c00109{bottom:246.881333pt;}
.y28_c00109{bottom:261.493333pt;}
.y27_c00109{bottom:276.105333pt;}
.y26_c00109{bottom:305.329333pt;}
.y25_c00109{bottom:319.941333pt;}
.y24_c00109{bottom:334.553333pt;}
.y23_c00109{bottom:349.165333pt;}
.y22_c00109{bottom:363.777333pt;}
.y21_c00109{bottom:378.389333pt;}
.y20_c00109{bottom:393.000000pt;}
.y1f_c00109{bottom:407.612000pt;}
.y1e_c00109{bottom:422.224000pt;}
.y1d_c00109{bottom:436.836000pt;}
.y1c_c00109{bottom:451.448000pt;}
.y1b_c00109{bottom:466.060000pt;}
.y1a_c00109{bottom:495.284000pt;}
.y19_c00109{bottom:509.896000pt;}
.y18_c00109{bottom:524.508000pt;}
.y17_c00109{bottom:539.118667pt;}
.y16_c00109{bottom:568.342667pt;}
.y15_c00109{bottom:582.622667pt;}
.y14_c00109{bottom:626.382667pt;}
.y13_c00109{bottom:642.322667pt;}
.y12_c00109{bottom:658.262667pt;}
.y11_c00109{bottom:674.202667pt;}
.y10_c00109{bottom:698.477333pt;}
.yf_c00109{bottom:722.750667pt;}
.ye_c00109{bottom:738.692000pt;}
.yd_c00109{bottom:762.965333pt;}
.yc_c00109{bottom:787.240000pt;}
.yb_c00109{bottom:825.341333pt;}
.ya_c00109{bottom:879.193333pt;}
.y9_c00109{bottom:895.133333pt;}
.y8_c00109{bottom:911.073333pt;}
.y7_c00109{bottom:927.014667pt;}
.y6_c00109{bottom:951.288000pt;}
.y5_c00109{bottom:967.228000pt;}
.y4_c00109{bottom:983.168000pt;}
.y3_c00109{bottom:999.109333pt;}
.y2_c00109{bottom:1015.049333pt;}
.y1_c00109{bottom:1030.989333pt;}
.h5_c00109{height:31.280681pt;}
.h6_c00109{height:32.006363pt;}
.h4_c00109{height:36.010648pt;}
.h2_c00109{height:46.518078pt;}
.h3_c00109{height:51.855535pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w0_c00109{width:793.706667pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:113.385333pt;}
.x2_c00109{left:121.886667pt;}
.x3_c00109{left:127.796000pt;}
.x4_c00109{left:157.340000pt;}
.x5_c00109{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76247fcdd0c551408370d98d.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:0.893555;font-style:normal;font-weight:normal;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_6eee4a72e9bfaccca0e5b926.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_3c0cd4ce537c3550373dd99a.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00110;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.048828;font-style: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;}
.ls3_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.087998px;}
.ls2_c00110{letter-spacing:0.098482px;}
.ls1_c00110{letter-spacing:0.104482px;}
.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;}
}
.ws17_c00110{word-spacing:-33.713438px;}
.ws2_c00110{word-spacing:-26.575517px;}
.wsf_c00110{word-spacing:-26.487518px;}
.wsc_c00110{word-spacing:-19.128192px;}
.ws6_c00110{word-spacing:-18.769538px;}
.ws5_c00110{word-spacing:-17.992456px;}
.wsd_c00110{word-spacing:-14.824349px;}
.ws4_c00110{word-spacing:-14.226593px;}
.wsb_c00110{word-spacing:-11.918882px;}
.ws8_c00110{word-spacing:-11.476915px;}
.ws1_c00110{word-spacing:-9.988424px;}
.ws3_c00110{word-spacing:-9.987499px;}
.ws7_c00110{word-spacing:-7.711052px;}
.ws12_c00110{word-spacing:0.000000px;}
.ws10_c00110{word-spacing:0.043999px;}
.ws14_c00110{word-spacing:0.046284px;}
.ws13_c00110{word-spacing:0.056767px;}
.ws16_c00110{word-spacing:0.073250px;}
.ws15_c00110{word-spacing:0.073800px;}
.wse_c00110{word-spacing:0.175997px;}
.ws11_c00110{word-spacing:0.219446px;}
.wsa_c00110{word-spacing:13.569061px;}
.ws0_c00110{word-spacing:43.038600px;}
.ws9_c00110{word-spacing:54.749856px;}
._0_c00110{margin-left:-6.369713px;}
._6_c00110{margin-left:-3.825638px;}
._c_c00110{margin-left:-2.211697px;}
._3_c00110{margin-left:-1.075961px;}
._8_c00110{width:1.005737px;}
._7_c00110{width:19.905275px;}
._1_c00110{width:21.522509px;}
._5_c00110{width:31.920170px;}
._2_c00110{width:34.567652px;}
._a_c00110{width:53.283031px;}
._9_c00110{width:79.858548px;}
._b_c00110{width:106.390066px;}
._4_c00110{width:117.097076px;}
.fc6_c00110{color:rgb(0,0,207);}
.fc5_c00110{color:rgb(79,153,5);}
.fc3_c00110{color:rgb(33,74,135);}
.fc2_c00110{color:rgb(143,89,3);}
.fc4_c00110{color:rgb(207,92,0);}
.fc1_c00110{color:rgb(6,69,173);}
.fc0_c00110{color:rgb(0,0,0);}
.fs2_c00110{font-size:43.999200px;}
.fs1_c00110{font-size:59.775600px;}
.fs0_c00110{font-size:86.077200px;}
.y0_c00110{bottom:0.000000px;}
.y1f_c00110{bottom:44.250000px;}
.y1e_c00110{bottom:86.982000px;}
.y1d_c00110{bottom:119.859000px;}
.y1c_c00110{bottom:136.297500px;}
.y1b_c00110{bottom:152.736000px;}
.y1a_c00110{bottom:169.174500px;}
.y19_c00110{bottom:185.613000px;}
.y18_c00110{bottom:202.051500px;}
.y17_c00110{bottom:218.490000px;}
.y16_c00110{bottom:234.927000px;}
.y15_c00110{bottom:251.365500px;}
.y14_c00110{bottom:267.804000px;}
.y13_c00110{bottom:284.242500px;}
.y12_c00110{bottom:300.681000px;}
.y11_c00110{bottom:333.558000px;}
.y10_c00110{bottom:349.996500px;}
.yf_c00110{bottom:366.435000px;}
.ye_c00110{bottom:399.310500px;}
.yd_c00110{bottom:432.187500px;}
.yc_c00110{bottom:448.252500px;}
.yb_c00110{bottom:495.994500px;}
.ya_c00110{bottom:513.927000px;}
.y9_c00110{bottom:531.859500px;}
.y8_c00110{bottom:549.793500px;}
.y7_c00110{bottom:576.615000px;}
.y6_c00110{bottom:594.547500px;}
.y5_c00110{bottom:621.369000px;}
.y4_c00110{bottom:639.301500px;}
.y3_c00110{bottom:666.123000px;}
.y2_c00110{bottom:692.944500px;}
.y1_c00110{bottom:735.139500px;}
.h5_c00110{height:35.190766px;}
.h6_c00110{height:36.007158px;}
.h3_c00110{height:40.511979px;}
.h4_c00110{height:52.332837px;}
.h2_c00110{height:58.337477px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w0_c00110{width:892.920000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:127.558500px;}
.x2_c00110{left:137.122500px;}
.x3_c00110{left:143.770500px;}
.x4_c00110{left:435.804000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls3_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.078221pt;}
.ls2_c00110{letter-spacing:0.087539pt;}
.ls1_c00110{letter-spacing:0.092873pt;}
.ws17_c00110{word-spacing:-29.967501pt;}
.ws2_c00110{word-spacing:-23.622682pt;}
.wsf_c00110{word-spacing:-23.544461pt;}
.wsc_c00110{word-spacing:-17.002837pt;}
.ws6_c00110{word-spacing:-16.684034pt;}
.ws5_c00110{word-spacing:-15.993294pt;}
.wsd_c00110{word-spacing:-13.177199pt;}
.ws4_c00110{word-spacing:-12.645860pt;}
.wsb_c00110{word-spacing:-10.594562pt;}
.ws8_c00110{word-spacing:-10.201702pt;}
.ws1_c00110{word-spacing:-8.878599pt;}
.ws3_c00110{word-spacing:-8.877777pt;}
.ws7_c00110{word-spacing:-6.854269pt;}
.ws12_c00110{word-spacing:0.000000pt;}
.ws10_c00110{word-spacing:0.039110pt;}
.ws14_c00110{word-spacing:0.041141pt;}
.ws13_c00110{word-spacing:0.050460pt;}
.ws16_c00110{word-spacing:0.065111pt;}
.ws15_c00110{word-spacing:0.065600pt;}
.wse_c00110{word-spacing:0.156442pt;}
.ws11_c00110{word-spacing:0.195063pt;}
.wsa_c00110{word-spacing:12.061388pt;}
.ws0_c00110{word-spacing:38.256533pt;}
.ws9_c00110{word-spacing:48.666539pt;}
._0_c00110{margin-left:-5.661967pt;}
._6_c00110{margin-left:-3.400567pt;}
._c_c00110{margin-left:-1.965953pt;}
._3_c00110{margin-left:-0.956410pt;}
._8_c00110{width:0.893988pt;}
._7_c00110{width:17.693578pt;}
._1_c00110{width:19.131119pt;}
._5_c00110{width:28.373485pt;}
._2_c00110{width:30.726802pt;}
._a_c00110{width:47.362694pt;}
._9_c00110{width:70.985376pt;}
._b_c00110{width:94.568947pt;}
._4_c00110{width:104.086290pt;}
.fs2_c00110{font-size:39.110400pt;}
.fs1_c00110{font-size:53.133867pt;}
.fs0_c00110{font-size:76.513067pt;}
.y0_c00110{bottom:0.000000pt;}
.y1f_c00110{bottom:39.333333pt;}
.y1e_c00110{bottom:77.317333pt;}
.y1d_c00110{bottom:106.541333pt;}
.y1c_c00110{bottom:121.153333pt;}
.y1b_c00110{bottom:135.765333pt;}
.y1a_c00110{bottom:150.377333pt;}
.y19_c00110{bottom:164.989333pt;}
.y18_c00110{bottom:179.601333pt;}
.y17_c00110{bottom:194.213333pt;}
.y16_c00110{bottom:208.824000pt;}
.y15_c00110{bottom:223.436000pt;}
.y14_c00110{bottom:238.048000pt;}
.y13_c00110{bottom:252.660000pt;}
.y12_c00110{bottom:267.272000pt;}
.y11_c00110{bottom:296.496000pt;}
.y10_c00110{bottom:311.108000pt;}
.yf_c00110{bottom:325.720000pt;}
.ye_c00110{bottom:354.942667pt;}
.yd_c00110{bottom:384.166667pt;}
.yc_c00110{bottom:398.446667pt;}
.yb_c00110{bottom:440.884000pt;}
.ya_c00110{bottom:456.824000pt;}
.y9_c00110{bottom:472.764000pt;}
.y8_c00110{bottom:488.705333pt;}
.y7_c00110{bottom:512.546667pt;}
.y6_c00110{bottom:528.486667pt;}
.y5_c00110{bottom:552.328000pt;}
.y4_c00110{bottom:568.268000pt;}
.y3_c00110{bottom:592.109333pt;}
.y2_c00110{bottom:615.950667pt;}
.y1_c00110{bottom:653.457333pt;}
.h5_c00110{height:31.280681pt;}
.h6_c00110{height:32.006363pt;}
.h3_c00110{height:36.010648pt;}
.h4_c00110{height:46.518078pt;}
.h2_c00110{height:51.855535pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w0_c00110{width:793.706667pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:113.385333pt;}
.x2_c00110{left:121.886667pt;}
.x3_c00110{left:127.796000pt;}
.x4_c00110{left:387.381333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.048828;font-style:normal;font-weight:normal;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_30275a02f0241f22938dcbe8.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.083496;font-style:normal;font-weight:normal;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_f85f703575ec29486b5bd24e.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.893555;font-style:normal;font-weight:normal;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_3c0cd4ce537c3550373dd99a.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.014648;font-style: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;}
.ls3_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.087998px;}
.ls2_c00111{letter-spacing:0.098482px;}
.ls0_c00111{letter-spacing:0.104482px;}
.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;}
}
.ws13_c00111{word-spacing:-33.713438px;}
.ws1_c00111{word-spacing:-26.575517px;}
.ws0_c00111{word-spacing:-26.487518px;}
.wsf_c00111{word-spacing:-19.128192px;}
.ws9_c00111{word-spacing:-18.769538px;}
.ws8_c00111{word-spacing:-15.900310px;}
.wsb_c00111{word-spacing:-15.302554px;}
.ws10_c00111{word-spacing:-14.824349px;}
.ws7_c00111{word-spacing:-12.134447px;}
.wse_c00111{word-spacing:-11.918882px;}
.wsa_c00111{word-spacing:-11.476915px;}
.ws5_c00111{word-spacing:-9.988424px;}
.ws6_c00111{word-spacing:-9.987499px;}
.ws14_c00111{word-spacing:0.000000px;}
.ws2_c00111{word-spacing:0.043999px;}
.ws11_c00111{word-spacing:0.175997px;}
.ws3_c00111{word-spacing:0.213446px;}
.ws12_c00111{word-spacing:0.219446px;}
.wsd_c00111{word-spacing:13.569061px;}
.ws4_c00111{word-spacing:43.038600px;}
.wsc_c00111{word-spacing:54.749856px;}
._1_c00111{margin-left:-6.369713px;}
._2_c00111{margin-left:-4.734246px;}
._9_c00111{margin-left:-3.287658px;}
._a_c00111{margin-left:-2.211697px;}
._5_c00111{margin-left:-1.075961px;}
._0_c00111{width:1.041538px;}
._8_c00111{width:20.754107px;}
._3_c00111{width:25.658363px;}
._4_c00111{width:26.951515px;}
._7_c00111{width:31.920170px;}
._6_c00111{width:117.097076px;}
.fc5_c00111{color:rgb(0,0,207);}
.fc4_c00111{color:rgb(143,89,3);}
.fc3_c00111{color:rgb(79,153,5);}
.fc6_c00111{color:rgb(6,69,173);}
.fc2_c00111{color:rgb(207,92,0);}
.fc1_c00111{color:rgb(0,0,0);}
.fc0_c00111{color:rgb(33,74,135);}
.fs0_c00111{font-size:43.999200px;}
.fs2_c00111{font-size:59.775600px;}
.fs1_c00111{font-size:86.077200px;}
.y0_c00111{bottom:0.000000px;}
.y1f_c00111{bottom:44.250000px;}
.y1e_c00111{bottom:82.051500px;}
.y1d_c00111{bottom:98.490000px;}
.y1c_c00111{bottom:114.927000px;}
.y1b_c00111{bottom:147.804000px;}
.y1a_c00111{bottom:180.681000px;}
.y19_c00111{bottom:196.746000px;}
.y18_c00111{bottom:243.456000px;}
.y17_c00111{bottom:261.388500px;}
.y16_c00111{bottom:279.322500px;}
.y15_c00111{bottom:297.255000px;}
.y14_c00111{bottom:323.904000px;}
.y13_c00111{bottom:341.836500px;}
.y12_c00111{bottom:368.487000px;}
.y11_c00111{bottom:386.419500px;}
.y10_c00111{bottom:413.070000px;}
.yf_c00111{bottom:439.719000px;}
.ye_c00111{bottom:481.741500px;}
.yd_c00111{bottom:946.164000px;}
.yc_c00111{bottom:962.602500px;}
.yb_c00111{bottom:979.041000px;}
.ya_c00111{bottom:995.479500px;}
.y9_c00111{bottom:1011.918000px;}
.y8_c00111{bottom:1028.356500px;}
.y7_c00111{bottom:1044.795000px;}
.y6_c00111{bottom:1061.232000px;}
.y5_c00111{bottom:1077.670500px;}
.y4_c00111{bottom:1094.109000px;}
.y3_c00111{bottom:1110.547500px;}
.y2_c00111{bottom:1143.424500px;}
.y1_c00111{bottom:1159.863000px;}
.h6_c00111{height:35.190766px;}
.h2_c00111{height:36.007158px;}
.h4_c00111{height:40.511979px;}
.h5_c00111{height:52.332837px;}
.h3_c00111{height:58.337477px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w0_c00111{width:892.920000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x3_c00111{left:127.558500px;}
.x1_c00111{left:137.122500px;}
.x2_c00111{left:177.007500px;}
.x4_c00111{left:435.526500px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls3_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.078221pt;}
.ls2_c00111{letter-spacing:0.087539pt;}
.ls0_c00111{letter-spacing:0.092873pt;}
.ws13_c00111{word-spacing:-29.967501pt;}
.ws1_c00111{word-spacing:-23.622682pt;}
.ws0_c00111{word-spacing:-23.544461pt;}
.wsf_c00111{word-spacing:-17.002837pt;}
.ws9_c00111{word-spacing:-16.684034pt;}
.ws8_c00111{word-spacing:-14.133609pt;}
.wsb_c00111{word-spacing:-13.602270pt;}
.ws10_c00111{word-spacing:-13.177199pt;}
.ws7_c00111{word-spacing:-10.786175pt;}
.wse_c00111{word-spacing:-10.594562pt;}
.wsa_c00111{word-spacing:-10.201702pt;}
.ws5_c00111{word-spacing:-8.878599pt;}
.ws6_c00111{word-spacing:-8.877777pt;}
.ws14_c00111{word-spacing:0.000000pt;}
.ws2_c00111{word-spacing:0.039110pt;}
.ws11_c00111{word-spacing:0.156442pt;}
.ws3_c00111{word-spacing:0.189730pt;}
.ws12_c00111{word-spacing:0.195063pt;}
.wsd_c00111{word-spacing:12.061388pt;}
.ws4_c00111{word-spacing:38.256533pt;}
.wsc_c00111{word-spacing:48.666539pt;}
._1_c00111{margin-left:-5.661967pt;}
._2_c00111{margin-left:-4.208219pt;}
._9_c00111{margin-left:-2.922363pt;}
._a_c00111{margin-left:-1.965953pt;}
._5_c00111{margin-left:-0.956410pt;}
._0_c00111{width:0.925811pt;}
._8_c00111{width:18.448095pt;}
._3_c00111{width:22.807434pt;}
._4_c00111{width:23.956902pt;}
._7_c00111{width:28.373485pt;}
._6_c00111{width:104.086290pt;}
.fs0_c00111{font-size:39.110400pt;}
.fs2_c00111{font-size:53.133867pt;}
.fs1_c00111{font-size:76.513067pt;}
.y0_c00111{bottom:0.000000pt;}
.y1f_c00111{bottom:39.333333pt;}
.y1e_c00111{bottom:72.934667pt;}
.y1d_c00111{bottom:87.546667pt;}
.y1c_c00111{bottom:102.157333pt;}
.y1b_c00111{bottom:131.381333pt;}
.y1a_c00111{bottom:160.605333pt;}
.y19_c00111{bottom:174.885333pt;}
.y18_c00111{bottom:216.405333pt;}
.y17_c00111{bottom:232.345333pt;}
.y16_c00111{bottom:248.286667pt;}
.y15_c00111{bottom:264.226667pt;}
.y14_c00111{bottom:287.914667pt;}
.y13_c00111{bottom:303.854667pt;}
.y12_c00111{bottom:327.544000pt;}
.y11_c00111{bottom:343.484000pt;}
.y10_c00111{bottom:367.173333pt;}
.yf_c00111{bottom:390.861333pt;}
.ye_c00111{bottom:428.214667pt;}
.yd_c00111{bottom:841.034667pt;}
.yc_c00111{bottom:855.646667pt;}
.yb_c00111{bottom:870.258667pt;}
.ya_c00111{bottom:884.870667pt;}
.y9_c00111{bottom:899.482667pt;}
.y8_c00111{bottom:914.094667pt;}
.y7_c00111{bottom:928.706667pt;}
.y6_c00111{bottom:943.317333pt;}
.y5_c00111{bottom:957.929333pt;}
.y4_c00111{bottom:972.541333pt;}
.y3_c00111{bottom:987.153333pt;}
.y2_c00111{bottom:1016.377333pt;}
.y1_c00111{bottom:1030.989333pt;}
.h6_c00111{height:31.280681pt;}
.h2_c00111{height:32.006363pt;}
.h4_c00111{height:36.010648pt;}
.h5_c00111{height:46.518078pt;}
.h3_c00111{height:51.855535pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w0_c00111{width:793.706667pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x3_c00111{left:113.385333pt;}
.x1_c00111{left:121.886667pt;}
.x2_c00111{left:157.340000pt;}
.x4_c00111{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b67bec6c90882749ec081485.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.014648;font-style:normal;font-weight:normal;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_7f01b34fe2941167e8021fa7.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_ad2024913428d62bacf413a9.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.v1_c00112{vertical-align:22.524000px;}
.ls3_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:0.087998px;}
.ls1_c00112{letter-spacing:0.098482px;}
.ls2_c00112{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00112{word-spacing:-33.713438px;}
.ws1_c00112{word-spacing:-26.575517px;}
.ws8_c00112{word-spacing:-26.487518px;}
.ws11_c00112{word-spacing:-23.599339px;}
.wse_c00112{word-spacing:-20.562806px;}
.ws13_c00112{word-spacing:-18.769538px;}
.wsd_c00112{word-spacing:-16.737168px;}
.ws12_c00112{word-spacing:-14.943900px;}
.wsb_c00112{word-spacing:-9.988424px;}
.wsc_c00112{word-spacing:-9.987499px;}
.wsf_c00112{word-spacing:-7.419230px;}
.ws14_c00112{word-spacing:-5.649230px;}
.ws2_c00112{word-spacing:0.000000px;}
.ws4_c00112{word-spacing:0.043999px;}
.ws5_c00112{word-spacing:0.046284px;}
.ws3_c00112{word-spacing:0.056767px;}
.ws7_c00112{word-spacing:0.073250px;}
.ws6_c00112{word-spacing:0.073800px;}
.ws9_c00112{word-spacing:0.213446px;}
.ws0_c00112{word-spacing:0.219446px;}
.wsa_c00112{word-spacing:43.038600px;}
._4_c00112{margin-left:-6.369713px;}
._7_c00112{margin-left:-2.211697px;}
._3_c00112{width:1.041538px;}
._6_c00112{width:2.936195px;}
._5_c00112{width:19.077084px;}
._1_c00112{width:53.283031px;}
._0_c00112{width:79.858548px;}
._2_c00112{width:106.390066px;}
.fc5_c00112{color:rgb(207,92,0);}
.fc4_c00112{color:rgb(0,0,207);}
.fc3_c00112{color:rgb(79,153,5);}
.fc2_c00112{color:rgb(33,74,135);}
.fc1_c00112{color:rgb(143,89,3);}
.fc0_c00112{color:rgb(0,0,0);}
.fs3_c00112{font-size:41.842800px;}
.fs0_c00112{font-size:43.999200px;}
.fs2_c00112{font-size:59.775600px;}
.fs1_c00112{font-size:86.077200px;}
.y0_c00112{bottom:0.000000px;}
.y20_c00112{bottom:44.250000px;}
.y1f_c00112{bottom:82.051500px;}
.y1e_c00112{bottom:112.338000px;}
.y1d_c00112{bottom:142.626000px;}
.y1c_c00112{bottom:172.914000px;}
.y1b_c00112{bottom:220.090500px;}
.y1a_c00112{bottom:699.589500px;}
.y19_c00112{bottom:716.028000px;}
.y18_c00112{bottom:732.465000px;}
.y17_c00112{bottom:748.903500px;}
.y16_c00112{bottom:765.342000px;}
.y15_c00112{bottom:781.780500px;}
.y14_c00112{bottom:798.219000px;}
.y13_c00112{bottom:814.657500px;}
.y12_c00112{bottom:831.096000px;}
.y11_c00112{bottom:847.534500px;}
.y10_c00112{bottom:863.973000px;}
.yf_c00112{bottom:896.848500px;}
.ye_c00112{bottom:913.287000px;}
.yd_c00112{bottom:929.725500px;}
.yc_c00112{bottom:962.602500px;}
.yb_c00112{bottom:979.041000px;}
.ya_c00112{bottom:995.479500px;}
.y9_c00112{bottom:1011.918000px;}
.y8_c00112{bottom:1028.356500px;}
.y7_c00112{bottom:1044.795000px;}
.y6_c00112{bottom:1061.232000px;}
.y5_c00112{bottom:1077.670500px;}
.y4_c00112{bottom:1094.109000px;}
.y3_c00112{bottom:1110.547500px;}
.y2_c00112{bottom:1126.986000px;}
.y1_c00112{bottom:1143.424500px;}
.h3_c00112{height:35.190766px;}
.h2_c00112{height:36.007158px;}
.h5_c00112{height:40.511979px;}
.h8_c00112{height:52.332837px;}
.h4_c00112{height:58.337477px;}
.h7_c00112{height:59.150881px;}
.h6_c00112{height:59.156881px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w0_c00112{width:892.920000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x4_c00112{left:127.558500px;}
.x1_c00112{left:137.122500px;}
.x2_c00112{left:143.770500px;}
.x3_c00112{left:177.007500px;}
.x5_c00112{left:435.526500px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.v1_c00112{vertical-align:20.021333pt;}
.ls3_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:0.078221pt;}
.ls1_c00112{letter-spacing:0.087539pt;}
.ls2_c00112{letter-spacing:0.092873pt;}
.ws10_c00112{word-spacing:-29.967501pt;}
.ws1_c00112{word-spacing:-23.622682pt;}
.ws8_c00112{word-spacing:-23.544461pt;}
.ws11_c00112{word-spacing:-20.977190pt;}
.wse_c00112{word-spacing:-18.278050pt;}
.ws13_c00112{word-spacing:-16.684034pt;}
.wsd_c00112{word-spacing:-14.877483pt;}
.ws12_c00112{word-spacing:-13.283467pt;}
.wsb_c00112{word-spacing:-8.878599pt;}
.wsc_c00112{word-spacing:-8.877777pt;}
.wsf_c00112{word-spacing:-6.594871pt;}
.ws14_c00112{word-spacing:-5.021538pt;}
.ws2_c00112{word-spacing:0.000000pt;}
.ws4_c00112{word-spacing:0.039110pt;}
.ws5_c00112{word-spacing:0.041141pt;}
.ws3_c00112{word-spacing:0.050460pt;}
.ws7_c00112{word-spacing:0.065111pt;}
.ws6_c00112{word-spacing:0.065600pt;}
.ws9_c00112{word-spacing:0.189730pt;}
.ws0_c00112{word-spacing:0.195063pt;}
.wsa_c00112{word-spacing:38.256533pt;}
._4_c00112{margin-left:-5.661967pt;}
._7_c00112{margin-left:-1.965953pt;}
._3_c00112{width:0.925811pt;}
._6_c00112{width:2.609951pt;}
._5_c00112{width:16.957408pt;}
._1_c00112{width:47.362694pt;}
._0_c00112{width:70.985376pt;}
._2_c00112{width:94.568947pt;}
.fs3_c00112{font-size:37.193600pt;}
.fs0_c00112{font-size:39.110400pt;}
.fs2_c00112{font-size:53.133867pt;}
.fs1_c00112{font-size:76.513067pt;}
.y0_c00112{bottom:0.000000pt;}
.y20_c00112{bottom:39.333333pt;}
.y1f_c00112{bottom:72.934667pt;}
.y1e_c00112{bottom:99.856000pt;}
.y1d_c00112{bottom:126.778667pt;}
.y1c_c00112{bottom:153.701333pt;}
.y1b_c00112{bottom:195.636000pt;}
.y1a_c00112{bottom:621.857333pt;}
.y19_c00112{bottom:636.469333pt;}
.y18_c00112{bottom:651.080000pt;}
.y17_c00112{bottom:665.692000pt;}
.y16_c00112{bottom:680.304000pt;}
.y15_c00112{bottom:694.916000pt;}
.y14_c00112{bottom:709.528000pt;}
.y13_c00112{bottom:724.140000pt;}
.y12_c00112{bottom:738.752000pt;}
.y11_c00112{bottom:753.364000pt;}
.y10_c00112{bottom:767.976000pt;}
.yf_c00112{bottom:797.198667pt;}
.ye_c00112{bottom:811.810667pt;}
.yd_c00112{bottom:826.422667pt;}
.yc_c00112{bottom:855.646667pt;}
.yb_c00112{bottom:870.258667pt;}
.ya_c00112{bottom:884.870667pt;}
.y9_c00112{bottom:899.482667pt;}
.y8_c00112{bottom:914.094667pt;}
.y7_c00112{bottom:928.706667pt;}
.y6_c00112{bottom:943.317333pt;}
.y5_c00112{bottom:957.929333pt;}
.y4_c00112{bottom:972.541333pt;}
.y3_c00112{bottom:987.153333pt;}
.y2_c00112{bottom:1001.765333pt;}
.y1_c00112{bottom:1016.377333pt;}
.h3_c00112{height:31.280681pt;}
.h2_c00112{height:32.006363pt;}
.h5_c00112{height:36.010648pt;}
.h8_c00112{height:46.518078pt;}
.h4_c00112{height:51.855535pt;}
.h7_c00112{height:52.578561pt;}
.h6_c00112{height:52.583894pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w0_c00112{width:793.706667pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x4_c00112{left:113.385333pt;}
.x1_c00112{left:121.886667pt;}
.x2_c00112{left:127.796000pt;}
.x3_c00112{left:157.340000pt;}
.x5_c00112{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:0.893555;font-style:normal;font-weight:normal;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_2d398ea495d2735271b4fa7e.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.102051;font-style:normal;font-weight:normal;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_214faec062c83124f5c8eda4.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00113;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.048828;font-style: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;}
.ls3_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.087998px;}
.ls2_c00113{letter-spacing:0.098482px;}
.ls1_c00113{letter-spacing:0.104482px;}
.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;}
}
.ws11_c00113{word-spacing:-33.713438px;}
.ws2_c00113{word-spacing:-26.575517px;}
.ws8_c00113{word-spacing:-26.487518px;}
.ws4_c00113{word-spacing:-19.128192px;}
.ws6_c00113{word-spacing:-18.769538px;}
.ws5_c00113{word-spacing:-14.824349px;}
.ws3_c00113{word-spacing:-11.918882px;}
.wsb_c00113{word-spacing:0.000000px;}
.ws9_c00113{word-spacing:0.043999px;}
.wsd_c00113{word-spacing:0.046284px;}
.wsc_c00113{word-spacing:0.056767px;}
.wsf_c00113{word-spacing:0.073250px;}
.wse_c00113{word-spacing:0.073800px;}
.ws7_c00113{word-spacing:0.175997px;}
.ws10_c00113{word-spacing:0.213446px;}
.wsa_c00113{word-spacing:0.219446px;}
.ws1_c00113{word-spacing:13.569061px;}
.ws0_c00113{word-spacing:54.749856px;}
._3_c00113{margin-left:-3.825638px;}
._9_c00113{margin-left:-2.211697px;}
._0_c00113{margin-left:-1.075961px;}
._5_c00113{width:1.005737px;}
._4_c00113{width:19.905275px;}
._2_c00113{width:31.920170px;}
._7_c00113{width:53.283031px;}
._6_c00113{width:79.858548px;}
._8_c00113{width:106.390066px;}
._1_c00113{width:117.097076px;}
.fc6_c00113{color:rgb(0,0,207);}
.fc5_c00113{color:rgb(79,153,5);}
.fc3_c00113{color:rgb(33,74,135);}
.fc2_c00113{color:rgb(143,89,3);}
.fc4_c00113{color:rgb(207,92,0);}
.fc1_c00113{color:rgb(6,69,173);}
.fc0_c00113{color:rgb(0,0,0);}
.fs1_c00113{font-size:43.999200px;}
.fs0_c00113{font-size:59.775600px;}
.y0_c00113{bottom:0.000000px;}
.y25_c00113{bottom:44.250000px;}
.y24_c00113{bottom:96.919500px;}
.y23_c00113{bottom:113.358000px;}
.y22_c00113{bottom:129.796500px;}
.y21_c00113{bottom:146.235000px;}
.y20_c00113{bottom:162.673500px;}
.y1f_c00113{bottom:179.112000px;}
.y1e_c00113{bottom:195.550500px;}
.y1d_c00113{bottom:211.989000px;}
.y1c_c00113{bottom:228.427500px;}
.y1b_c00113{bottom:244.866000px;}
.y1a_c00113{bottom:261.304500px;}
.y19_c00113{bottom:294.180000px;}
.y18_c00113{bottom:310.618500px;}
.y17_c00113{bottom:327.057000px;}
.y16_c00113{bottom:359.934000px;}
.y15_c00113{bottom:376.372500px;}
.y14_c00113{bottom:392.811000px;}
.y13_c00113{bottom:409.249500px;}
.y12_c00113{bottom:425.688000px;}
.y11_c00113{bottom:442.125000px;}
.y10_c00113{bottom:458.563500px;}
.yf_c00113{bottom:475.002000px;}
.ye_c00113{bottom:491.440500px;}
.yd_c00113{bottom:507.879000px;}
.yc_c00113{bottom:524.317500px;}
.yb_c00113{bottom:540.756000px;}
.ya_c00113{bottom:573.633000px;}
.y9_c00113{bottom:590.071500px;}
.y8_c00113{bottom:606.508500px;}
.y7_c00113{bottom:639.385500px;}
.y6_c00113{bottom:672.262500px;}
.y5_c00113{bottom:688.327500px;}
.y4_c00113{bottom:1106.064000px;}
.y3_c00113{bottom:1123.998000px;}
.y2_c00113{bottom:1141.930500px;}
.y1_c00113{bottom:1159.863000px;}
.h3_c00113{height:35.190766px;}
.h4_c00113{height:36.007158px;}
.h2_c00113{height:52.332837px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w0_c00113{width:892.920000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:127.558500px;}
.x2_c00113{left:137.122500px;}
.x3_c00113{left:143.770500px;}
.x4_c00113{left:177.007500px;}
.x5_c00113{left:435.526500px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls3_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.078221pt;}
.ls2_c00113{letter-spacing:0.087539pt;}
.ls1_c00113{letter-spacing:0.092873pt;}
.ws11_c00113{word-spacing:-29.967501pt;}
.ws2_c00113{word-spacing:-23.622682pt;}
.ws8_c00113{word-spacing:-23.544461pt;}
.ws4_c00113{word-spacing:-17.002837pt;}
.ws6_c00113{word-spacing:-16.684034pt;}
.ws5_c00113{word-spacing:-13.177199pt;}
.ws3_c00113{word-spacing:-10.594562pt;}
.wsb_c00113{word-spacing:0.000000pt;}
.ws9_c00113{word-spacing:0.039110pt;}
.wsd_c00113{word-spacing:0.041141pt;}
.wsc_c00113{word-spacing:0.050460pt;}
.wsf_c00113{word-spacing:0.065111pt;}
.wse_c00113{word-spacing:0.065600pt;}
.ws7_c00113{word-spacing:0.156442pt;}
.ws10_c00113{word-spacing:0.189730pt;}
.wsa_c00113{word-spacing:0.195063pt;}
.ws1_c00113{word-spacing:12.061388pt;}
.ws0_c00113{word-spacing:48.666539pt;}
._3_c00113{margin-left:-3.400567pt;}
._9_c00113{margin-left:-1.965953pt;}
._0_c00113{margin-left:-0.956410pt;}
._5_c00113{width:0.893988pt;}
._4_c00113{width:17.693578pt;}
._2_c00113{width:28.373485pt;}
._7_c00113{width:47.362694pt;}
._6_c00113{width:70.985376pt;}
._8_c00113{width:94.568947pt;}
._1_c00113{width:104.086290pt;}
.fs1_c00113{font-size:39.110400pt;}
.fs0_c00113{font-size:53.133867pt;}
.y0_c00113{bottom:0.000000pt;}
.y25_c00113{bottom:39.333333pt;}
.y24_c00113{bottom:86.150667pt;}
.y23_c00113{bottom:100.762667pt;}
.y22_c00113{bottom:115.374667pt;}
.y21_c00113{bottom:129.986667pt;}
.y20_c00113{bottom:144.598667pt;}
.y1f_c00113{bottom:159.210667pt;}
.y1e_c00113{bottom:173.822667pt;}
.y1d_c00113{bottom:188.434667pt;}
.y1c_c00113{bottom:203.046667pt;}
.y1b_c00113{bottom:217.658667pt;}
.y1a_c00113{bottom:232.270667pt;}
.y19_c00113{bottom:261.493333pt;}
.y18_c00113{bottom:276.105333pt;}
.y17_c00113{bottom:290.717333pt;}
.y16_c00113{bottom:319.941333pt;}
.y15_c00113{bottom:334.553333pt;}
.y14_c00113{bottom:349.165333pt;}
.y13_c00113{bottom:363.777333pt;}
.y12_c00113{bottom:378.389333pt;}
.y11_c00113{bottom:393.000000pt;}
.y10_c00113{bottom:407.612000pt;}
.yf_c00113{bottom:422.224000pt;}
.ye_c00113{bottom:436.836000pt;}
.yd_c00113{bottom:451.448000pt;}
.yc_c00113{bottom:466.060000pt;}
.yb_c00113{bottom:480.672000pt;}
.ya_c00113{bottom:509.896000pt;}
.y9_c00113{bottom:524.508000pt;}
.y8_c00113{bottom:539.118667pt;}
.y7_c00113{bottom:568.342667pt;}
.y6_c00113{bottom:597.566667pt;}
.y5_c00113{bottom:611.846667pt;}
.y4_c00113{bottom:983.168000pt;}
.y3_c00113{bottom:999.109333pt;}
.y2_c00113{bottom:1015.049333pt;}
.y1_c00113{bottom:1030.989333pt;}
.h3_c00113{height:31.280681pt;}
.h4_c00113{height:32.006363pt;}
.h2_c00113{height:46.518078pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w0_c00113{width:793.706667pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:113.385333pt;}
.x2_c00113{left:121.886667pt;}
.x3_c00113{left:127.796000pt;}
.x4_c00113{left:157.340000pt;}
.x5_c00113{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6728abf5d2b8893e41bbced.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:0.893555;font-style:normal;font-weight:normal;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_626758a26a88ed5f41792a4d.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.083496;font-style:normal;font-weight:normal;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_5fe6aeb82442424ee72bc6ae.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.014648;font-style:normal;font-weight:normal;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_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.048828;font-style: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;}
.v1_c00114{vertical-align:22.518000px;}
.ls3_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.087998px;}
.ls2_c00114{letter-spacing:0.098482px;}
.ls1_c00114{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00114{word-spacing:-33.713438px;}
.ws2_c00114{word-spacing:-26.575517px;}
.ws14_c00114{word-spacing:-26.487518px;}
.ws8_c00114{word-spacing:-23.599339px;}
.wsd_c00114{word-spacing:-20.263928px;}
.wsb_c00114{word-spacing:-20.204153px;}
.ws11_c00114{word-spacing:-19.128192px;}
.ws9_c00114{word-spacing:-18.769538px;}
.wsa_c00114{word-spacing:-16.438290px;}
.ws12_c00114{word-spacing:-14.824349px;}
.ws5_c00114{word-spacing:-13.987490px;}
.ws10_c00114{word-spacing:-11.918882px;}
.ws4_c00114{word-spacing:-10.161852px;}
.ws1_c00114{word-spacing:-9.988424px;}
.ws3_c00114{word-spacing:-9.987499px;}
.wsc_c00114{word-spacing:-7.101230px;}
.ws6_c00114{word-spacing:-0.849230px;}
.ws17_c00114{word-spacing:0.000000px;}
.ws15_c00114{word-spacing:0.043999px;}
.ws19_c00114{word-spacing:0.046284px;}
.ws18_c00114{word-spacing:0.056767px;}
.ws1b_c00114{word-spacing:0.073250px;}
.ws1a_c00114{word-spacing:0.073800px;}
.ws13_c00114{word-spacing:0.175997px;}
.ws1c_c00114{word-spacing:0.213446px;}
.ws16_c00114{word-spacing:0.219446px;}
.wsf_c00114{word-spacing:13.569061px;}
.ws0_c00114{word-spacing:43.038600px;}
.wse_c00114{word-spacing:54.749856px;}
._0_c00114{margin-left:-6.369713px;}
._7_c00114{margin-left:-3.825638px;}
._c_c00114{margin-left:-2.211697px;}
._4_c00114{margin-left:-1.075961px;}
._8_c00114{width:1.005737px;}
._2_c00114{width:2.930812px;}
._3_c00114{width:19.240890px;}
._1_c00114{width:29.565768px;}
._6_c00114{width:31.920170px;}
._a_c00114{width:53.283031px;}
._9_c00114{width:79.858548px;}
._b_c00114{width:106.390066px;}
._5_c00114{width:117.097076px;}
.fc6_c00114{color:rgb(0,0,207);}
.fc5_c00114{color:rgb(79,153,5);}
.fc3_c00114{color:rgb(33,74,135);}
.fc2_c00114{color:rgb(143,89,3);}
.fc4_c00114{color:rgb(207,92,0);}
.fc1_c00114{color:rgb(6,69,173);}
.fc0_c00114{color:rgb(0,0,0);}
.fs3_c00114{font-size:41.842800px;}
.fs2_c00114{font-size:43.999200px;}
.fs1_c00114{font-size:59.775600px;}
.fs0_c00114{font-size:86.077200px;}
.y0_c00114{bottom:0.000000px;}
.y1f_c00114{bottom:44.250000px;}
.y1e_c00114{bottom:86.982000px;}
.y1d_c00114{bottom:103.420500px;}
.y1c_c00114{bottom:136.297500px;}
.y1b_c00114{bottom:152.736000px;}
.y1a_c00114{bottom:169.174500px;}
.y19_c00114{bottom:185.613000px;}
.y18_c00114{bottom:202.051500px;}
.y17_c00114{bottom:218.490000px;}
.y16_c00114{bottom:234.927000px;}
.y15_c00114{bottom:251.365500px;}
.y14_c00114{bottom:267.804000px;}
.y13_c00114{bottom:284.242500px;}
.y12_c00114{bottom:300.681000px;}
.y11_c00114{bottom:317.119500px;}
.y10_c00114{bottom:349.996500px;}
.yf_c00114{bottom:366.435000px;}
.ye_c00114{bottom:382.873500px;}
.yd_c00114{bottom:415.749000px;}
.yc_c00114{bottom:448.626000px;}
.yb_c00114{bottom:464.691000px;}
.ya_c00114{bottom:513.009000px;}
.y9_c00114{bottom:530.941500px;}
.y8_c00114{bottom:548.874000px;}
.y7_c00114{bottom:566.806500px;}
.y6_c00114{bottom:593.749500px;}
.y5_c00114{bottom:620.694000px;}
.y4_c00114{bottom:638.626500px;}
.y3_c00114{bottom:665.569500px;}
.y2_c00114{bottom:692.512500px;}
.y1_c00114{bottom:734.850000px;}
.h7_c00114{height:35.190766px;}
.h8_c00114{height:36.007158px;}
.h3_c00114{height:40.511979px;}
.h5_c00114{height:52.332837px;}
.h2_c00114{height:58.337477px;}
.h4_c00114{height:59.150881px;}
.h6_c00114{height:59.156881px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w0_c00114{width:892.920000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:127.558500px;}
.x2_c00114{left:137.122500px;}
.x3_c00114{left:143.770500px;}
.x4_c00114{left:435.526500px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:20.016000pt;}
.ls3_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.078221pt;}
.ls2_c00114{letter-spacing:0.087539pt;}
.ls1_c00114{letter-spacing:0.092873pt;}
.ws7_c00114{word-spacing:-29.967501pt;}
.ws2_c00114{word-spacing:-23.622682pt;}
.ws14_c00114{word-spacing:-23.544461pt;}
.ws8_c00114{word-spacing:-20.977190pt;}
.wsd_c00114{word-spacing:-18.012381pt;}
.wsb_c00114{word-spacing:-17.959247pt;}
.ws11_c00114{word-spacing:-17.002837pt;}
.ws9_c00114{word-spacing:-16.684034pt;}
.wsa_c00114{word-spacing:-14.611813pt;}
.ws12_c00114{word-spacing:-13.177199pt;}
.ws5_c00114{word-spacing:-12.433325pt;}
.ws10_c00114{word-spacing:-10.594562pt;}
.ws4_c00114{word-spacing:-9.032757pt;}
.ws1_c00114{word-spacing:-8.878599pt;}
.ws3_c00114{word-spacing:-8.877777pt;}
.wsc_c00114{word-spacing:-6.312205pt;}
.ws6_c00114{word-spacing:-0.754871pt;}
.ws17_c00114{word-spacing:0.000000pt;}
.ws15_c00114{word-spacing:0.039110pt;}
.ws19_c00114{word-spacing:0.041141pt;}
.ws18_c00114{word-spacing:0.050460pt;}
.ws1b_c00114{word-spacing:0.065111pt;}
.ws1a_c00114{word-spacing:0.065600pt;}
.ws13_c00114{word-spacing:0.156442pt;}
.ws1c_c00114{word-spacing:0.189730pt;}
.ws16_c00114{word-spacing:0.195063pt;}
.wsf_c00114{word-spacing:12.061388pt;}
.ws0_c00114{word-spacing:38.256533pt;}
.wse_c00114{word-spacing:48.666539pt;}
._0_c00114{margin-left:-5.661967pt;}
._7_c00114{margin-left:-3.400567pt;}
._c_c00114{margin-left:-1.965953pt;}
._4_c00114{margin-left:-0.956410pt;}
._8_c00114{width:0.893988pt;}
._2_c00114{width:2.605166pt;}
._3_c00114{width:17.103013pt;}
._1_c00114{width:26.280683pt;}
._6_c00114{width:28.373485pt;}
._a_c00114{width:47.362694pt;}
._9_c00114{width:70.985376pt;}
._b_c00114{width:94.568947pt;}
._5_c00114{width:104.086290pt;}
.fs3_c00114{font-size:37.193600pt;}
.fs2_c00114{font-size:39.110400pt;}
.fs1_c00114{font-size:53.133867pt;}
.fs0_c00114{font-size:76.513067pt;}
.y0_c00114{bottom:0.000000pt;}
.y1f_c00114{bottom:39.333333pt;}
.y1e_c00114{bottom:77.317333pt;}
.y1d_c00114{bottom:91.929333pt;}
.y1c_c00114{bottom:121.153333pt;}
.y1b_c00114{bottom:135.765333pt;}
.y1a_c00114{bottom:150.377333pt;}
.y19_c00114{bottom:164.989333pt;}
.y18_c00114{bottom:179.601333pt;}
.y17_c00114{bottom:194.213333pt;}
.y16_c00114{bottom:208.824000pt;}
.y15_c00114{bottom:223.436000pt;}
.y14_c00114{bottom:238.048000pt;}
.y13_c00114{bottom:252.660000pt;}
.y12_c00114{bottom:267.272000pt;}
.y11_c00114{bottom:281.884000pt;}
.y10_c00114{bottom:311.108000pt;}
.yf_c00114{bottom:325.720000pt;}
.ye_c00114{bottom:340.332000pt;}
.yd_c00114{bottom:369.554667pt;}
.yc_c00114{bottom:398.778667pt;}
.yb_c00114{bottom:413.058667pt;}
.ya_c00114{bottom:456.008000pt;}
.y9_c00114{bottom:471.948000pt;}
.y8_c00114{bottom:487.888000pt;}
.y7_c00114{bottom:503.828000pt;}
.y6_c00114{bottom:527.777333pt;}
.y5_c00114{bottom:551.728000pt;}
.y4_c00114{bottom:567.668000pt;}
.y3_c00114{bottom:591.617333pt;}
.y2_c00114{bottom:615.566667pt;}
.y1_c00114{bottom:653.200000pt;}
.h7_c00114{height:31.280681pt;}
.h8_c00114{height:32.006363pt;}
.h3_c00114{height:36.010648pt;}
.h5_c00114{height:46.518078pt;}
.h2_c00114{height:51.855535pt;}
.h4_c00114{height:52.578561pt;}
.h6_c00114{height:52.583894pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w0_c00114{width:793.706667pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:113.385333pt;}
.x2_c00114{left:121.886667pt;}
.x3_c00114{left:127.796000pt;}
.x4_c00114{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.048828;font-style:normal;font-weight:normal;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_4612bdc785d908de09e3df3b.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.083496;font-style:normal;font-weight:normal;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_499d5b2e1e8dbbe237179c61.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.893555;font-style:normal;font-weight:normal;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_94f72a27da6716b7b6c7d751.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:1.014648;font-style: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;}
.v1_c00115{vertical-align:22.524000px;}
.ls3_c00115{letter-spacing:0.000000px;}
.ls1_c00115{letter-spacing:0.087998px;}
.ls2_c00115{letter-spacing:0.098482px;}
.ls0_c00115{letter-spacing:0.104482px;}
.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;}
}
.wsa_c00115{word-spacing:-33.713438px;}
.ws1_c00115{word-spacing:-26.575517px;}
.ws0_c00115{word-spacing:-26.487518px;}
.wsb_c00115{word-spacing:-23.599339px;}
.wse_c00115{word-spacing:-19.486846px;}
.ws13_c00115{word-spacing:-19.128192px;}
.wsc_c00115{word-spacing:-18.769538px;}
.wsd_c00115{word-spacing:-15.661207px;}
.ws14_c00115{word-spacing:-14.824349px;}
.ws12_c00115{word-spacing:-11.918882px;}
.ws8_c00115{word-spacing:-11.536691px;}
.ws5_c00115{word-spacing:-9.988424px;}
.ws6_c00115{word-spacing:-9.987499px;}
.ws7_c00115{word-spacing:-7.711052px;}
.wsf_c00115{word-spacing:-6.369230px;}
.ws17_c00115{word-spacing:0.000000px;}
.ws2_c00115{word-spacing:0.043999px;}
.ws15_c00115{word-spacing:0.175997px;}
.ws3_c00115{word-spacing:0.213446px;}
.ws16_c00115{word-spacing:0.219446px;}
.ws9_c00115{word-spacing:1.586770px;}
.ws11_c00115{word-spacing:13.569061px;}
.ws4_c00115{word-spacing:43.038600px;}
.ws10_c00115{word-spacing:54.749856px;}
._1_c00115{margin-left:-6.369713px;}
._8_c00115{margin-left:-3.825638px;}
._9_c00115{margin-left:-2.211697px;}
._5_c00115{margin-left:-1.075961px;}
._0_c00115{width:1.041538px;}
._3_c00115{width:2.880413px;}
._4_c00115{width:19.567807px;}
._7_c00115{width:31.920170px;}
._2_c00115{width:34.416968px;}
._6_c00115{width:117.097076px;}
.fc5_c00115{color:rgb(0,0,207);}
.fc4_c00115{color:rgb(143,89,3);}
.fc3_c00115{color:rgb(79,153,5);}
.fc6_c00115{color:rgb(6,69,173);}
.fc2_c00115{color:rgb(207,92,0);}
.fc1_c00115{color:rgb(0,0,0);}
.fc0_c00115{color:rgb(33,74,135);}
.fs3_c00115{font-size:41.842800px;}
.fs0_c00115{font-size:43.999200px;}
.fs2_c00115{font-size:59.775600px;}
.fs1_c00115{font-size:86.077200px;}
.y0_c00115{bottom:0.000000px;}
.y1e_c00115{bottom:44.250000px;}
.y1d_c00115{bottom:82.051500px;}
.y1c_c00115{bottom:114.927000px;}
.y1b_c00115{bottom:131.365500px;}
.y1a_c00115{bottom:147.804000px;}
.y19_c00115{bottom:180.681000px;}
.y18_c00115{bottom:213.558000px;}
.y17_c00115{bottom:229.623000px;}
.y16_c00115{bottom:276.978000px;}
.y15_c00115{bottom:294.910500px;}
.y14_c00115{bottom:312.844500px;}
.y13_c00115{bottom:330.777000px;}
.y12_c00115{bottom:357.534000px;}
.y11_c00115{bottom:384.291000px;}
.y10_c00115{bottom:402.223500px;}
.yf_c00115{bottom:428.982000px;}
.ye_c00115{bottom:455.739000px;}
.yd_c00115{bottom:497.869500px;}
.yc_c00115{bottom:962.602500px;}
.yb_c00115{bottom:979.041000px;}
.ya_c00115{bottom:995.479500px;}
.y9_c00115{bottom:1011.918000px;}
.y8_c00115{bottom:1028.356500px;}
.y7_c00115{bottom:1044.795000px;}
.y6_c00115{bottom:1061.232000px;}
.y5_c00115{bottom:1077.670500px;}
.y4_c00115{bottom:1094.109000px;}
.y3_c00115{bottom:1110.547500px;}
.y2_c00115{bottom:1126.986000px;}
.y1_c00115{bottom:1159.863000px;}
.h8_c00115{height:35.190766px;}
.h2_c00115{height:36.007158px;}
.h4_c00115{height:40.511979px;}
.h6_c00115{height:52.332837px;}
.h3_c00115{height:58.337477px;}
.h7_c00115{height:59.150881px;}
.h5_c00115{height:59.156881px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w0_c00115{width:892.920000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x3_c00115{left:127.558500px;}
.x1_c00115{left:137.122500px;}
.x2_c00115{left:177.007500px;}
.x4_c00115{left:435.526500px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:20.021333pt;}
.ls3_c00115{letter-spacing:0.000000pt;}
.ls1_c00115{letter-spacing:0.078221pt;}
.ls2_c00115{letter-spacing:0.087539pt;}
.ls0_c00115{letter-spacing:0.092873pt;}
.wsa_c00115{word-spacing:-29.967501pt;}
.ws1_c00115{word-spacing:-23.622682pt;}
.ws0_c00115{word-spacing:-23.544461pt;}
.wsb_c00115{word-spacing:-20.977190pt;}
.wse_c00115{word-spacing:-17.321641pt;}
.ws13_c00115{word-spacing:-17.002837pt;}
.wsc_c00115{word-spacing:-16.684034pt;}
.wsd_c00115{word-spacing:-13.921073pt;}
.ws14_c00115{word-spacing:-13.177199pt;}
.ws12_c00115{word-spacing:-10.594562pt;}
.ws8_c00115{word-spacing:-10.254836pt;}
.ws5_c00115{word-spacing:-8.878599pt;}
.ws6_c00115{word-spacing:-8.877777pt;}
.ws7_c00115{word-spacing:-6.854269pt;}
.wsf_c00115{word-spacing:-5.661538pt;}
.ws17_c00115{word-spacing:0.000000pt;}
.ws2_c00115{word-spacing:0.039110pt;}
.ws15_c00115{word-spacing:0.156442pt;}
.ws3_c00115{word-spacing:0.189730pt;}
.ws16_c00115{word-spacing:0.195063pt;}
.ws9_c00115{word-spacing:1.410462pt;}
.ws11_c00115{word-spacing:12.061388pt;}
.ws4_c00115{word-spacing:38.256533pt;}
.ws10_c00115{word-spacing:48.666539pt;}
._1_c00115{margin-left:-5.661967pt;}
._8_c00115{margin-left:-3.400567pt;}
._9_c00115{margin-left:-1.965953pt;}
._5_c00115{margin-left:-0.956410pt;}
._0_c00115{width:0.925811pt;}
._3_c00115{width:2.560367pt;}
._4_c00115{width:17.393606pt;}
._7_c00115{width:28.373485pt;}
._2_c00115{width:30.592861pt;}
._6_c00115{width:104.086290pt;}
.fs3_c00115{font-size:37.193600pt;}
.fs0_c00115{font-size:39.110400pt;}
.fs2_c00115{font-size:53.133867pt;}
.fs1_c00115{font-size:76.513067pt;}
.y0_c00115{bottom:0.000000pt;}
.y1e_c00115{bottom:39.333333pt;}
.y1d_c00115{bottom:72.934667pt;}
.y1c_c00115{bottom:102.157333pt;}
.y1b_c00115{bottom:116.769333pt;}
.y1a_c00115{bottom:131.381333pt;}
.y19_c00115{bottom:160.605333pt;}
.y18_c00115{bottom:189.829333pt;}
.y17_c00115{bottom:204.109333pt;}
.y16_c00115{bottom:246.202667pt;}
.y15_c00115{bottom:262.142667pt;}
.y14_c00115{bottom:278.084000pt;}
.y13_c00115{bottom:294.024000pt;}
.y12_c00115{bottom:317.808000pt;}
.y11_c00115{bottom:341.592000pt;}
.y10_c00115{bottom:357.532000pt;}
.yf_c00115{bottom:381.317333pt;}
.ye_c00115{bottom:405.101333pt;}
.yd_c00115{bottom:442.550667pt;}
.yc_c00115{bottom:855.646667pt;}
.yb_c00115{bottom:870.258667pt;}
.ya_c00115{bottom:884.870667pt;}
.y9_c00115{bottom:899.482667pt;}
.y8_c00115{bottom:914.094667pt;}
.y7_c00115{bottom:928.706667pt;}
.y6_c00115{bottom:943.317333pt;}
.y5_c00115{bottom:957.929333pt;}
.y4_c00115{bottom:972.541333pt;}
.y3_c00115{bottom:987.153333pt;}
.y2_c00115{bottom:1001.765333pt;}
.y1_c00115{bottom:1030.989333pt;}
.h8_c00115{height:31.280681pt;}
.h2_c00115{height:32.006363pt;}
.h4_c00115{height:36.010648pt;}
.h6_c00115{height:46.518078pt;}
.h3_c00115{height:51.855535pt;}
.h7_c00115{height:52.578561pt;}
.h5_c00115{height:52.583894pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w0_c00115{width:793.706667pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x3_c00115{left:113.385333pt;}
.x1_c00115{left:121.886667pt;}
.x2_c00115{left:157.340000pt;}
.x4_c00115{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ec4d99fdcd488cc17166fa4.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_ba84315c193dfb779586ac8f.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00116;src:url('chunks/assets/font_4e6fe337773fd6deb3170d9a.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:1.102051;font-style: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;}
.v1_c00116{vertical-align:22.518000px;}
.ls3_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:0.087998px;}
.ls1_c00116{letter-spacing:0.098482px;}
.ls2_c00116{letter-spacing:0.104482px;}
.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;}
}
.ws13_c00116{word-spacing:-33.713438px;}
.ws1_c00116{word-spacing:-26.575517px;}
.ws7_c00116{word-spacing:-26.487518px;}
.wse_c00116{word-spacing:-23.599339px;}
.ws12_c00116{word-spacing:-19.128192px;}
.wsd_c00116{word-spacing:-18.769538px;}
.wsc_c00116{word-spacing:-14.943900px;}
.ws11_c00116{word-spacing:-11.918882px;}
.wsa_c00116{word-spacing:-9.988424px;}
.wsb_c00116{word-spacing:-9.987499px;}
.ws0_c00116{word-spacing:0.000000px;}
.ws3_c00116{word-spacing:0.043999px;}
.ws4_c00116{word-spacing:0.046284px;}
.ws2_c00116{word-spacing:0.056767px;}
.ws6_c00116{word-spacing:0.073250px;}
.ws5_c00116{word-spacing:0.073800px;}
.ws8_c00116{word-spacing:0.213446px;}
.ws10_c00116{word-spacing:13.569061px;}
.ws9_c00116{word-spacing:43.038600px;}
.wsf_c00116{word-spacing:54.749856px;}
._4_c00116{margin-left:-6.369713px;}
._9_c00116{margin-left:-2.211697px;}
._7_c00116{margin-left:-1.075961px;}
._3_c00116{width:1.041538px;}
._6_c00116{width:2.858989px;}
._5_c00116{width:19.935816px;}
._1_c00116{width:53.283031px;}
._0_c00116{width:79.858548px;}
._2_c00116{width:106.390066px;}
._8_c00116{width:117.097076px;}
.fc6_c00116{color:rgb(6,69,173);}
.fc5_c00116{color:rgb(207,92,0);}
.fc4_c00116{color:rgb(0,0,207);}
.fc3_c00116{color:rgb(143,89,3);}
.fc2_c00116{color:rgb(0,0,0);}
.fc1_c00116{color:rgb(79,153,5);}
.fc0_c00116{color:rgb(33,74,135);}
.fs3_c00116{font-size:41.842800px;}
.fs0_c00116{font-size:43.999200px;}
.fs2_c00116{font-size:59.775600px;}
.fs1_c00116{font-size:86.077200px;}
.y0_c00116{bottom:0.000000px;}
.y21_c00116{bottom:44.250000px;}
.y20_c00116{bottom:82.051500px;}
.y1f_c00116{bottom:99.984000px;}
.y1e_c00116{bottom:128.686500px;}
.y1d_c00116{bottom:157.390500px;}
.y1c_c00116{bottom:186.093000px;}
.y1b_c00116{bottom:214.797000px;}
.y1a_c00116{bottom:259.680000px;}
.y19_c00116{bottom:732.465000px;}
.y18_c00116{bottom:748.903500px;}
.y17_c00116{bottom:765.342000px;}
.y16_c00116{bottom:781.780500px;}
.y15_c00116{bottom:798.219000px;}
.y14_c00116{bottom:814.657500px;}
.y13_c00116{bottom:831.096000px;}
.y12_c00116{bottom:847.534500px;}
.y11_c00116{bottom:863.973000px;}
.y10_c00116{bottom:880.411500px;}
.yf_c00116{bottom:896.848500px;}
.ye_c00116{bottom:929.725500px;}
.yd_c00116{bottom:946.164000px;}
.yc_c00116{bottom:962.602500px;}
.yb_c00116{bottom:995.479500px;}
.ya_c00116{bottom:1011.918000px;}
.y9_c00116{bottom:1028.356500px;}
.y8_c00116{bottom:1044.795000px;}
.y7_c00116{bottom:1061.232000px;}
.y6_c00116{bottom:1077.670500px;}
.y5_c00116{bottom:1094.109000px;}
.y4_c00116{bottom:1110.547500px;}
.y3_c00116{bottom:1126.986000px;}
.y2_c00116{bottom:1143.424500px;}
.y1_c00116{bottom:1159.863000px;}
.h3_c00116{height:35.190766px;}
.h2_c00116{height:36.007158px;}
.h5_c00116{height:40.511979px;}
.h8_c00116{height:52.332837px;}
.h4_c00116{height:58.337477px;}
.h6_c00116{height:59.150881px;}
.h7_c00116{height:59.156881px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w0_c00116{width:892.920000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x4_c00116{left:127.558500px;}
.x2_c00116{left:137.122500px;}
.x1_c00116{left:143.770500px;}
.x3_c00116{left:177.007500px;}
.x5_c00116{left:435.526500px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.v1_c00116{vertical-align:20.016000pt;}
.ls3_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:0.078221pt;}
.ls1_c00116{letter-spacing:0.087539pt;}
.ls2_c00116{letter-spacing:0.092873pt;}
.ws13_c00116{word-spacing:-29.967501pt;}
.ws1_c00116{word-spacing:-23.622682pt;}
.ws7_c00116{word-spacing:-23.544461pt;}
.wse_c00116{word-spacing:-20.977190pt;}
.ws12_c00116{word-spacing:-17.002837pt;}
.wsd_c00116{word-spacing:-16.684034pt;}
.wsc_c00116{word-spacing:-13.283467pt;}
.ws11_c00116{word-spacing:-10.594562pt;}
.wsa_c00116{word-spacing:-8.878599pt;}
.wsb_c00116{word-spacing:-8.877777pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.ws3_c00116{word-spacing:0.039110pt;}
.ws4_c00116{word-spacing:0.041141pt;}
.ws2_c00116{word-spacing:0.050460pt;}
.ws6_c00116{word-spacing:0.065111pt;}
.ws5_c00116{word-spacing:0.065600pt;}
.ws8_c00116{word-spacing:0.189730pt;}
.ws10_c00116{word-spacing:12.061388pt;}
.ws9_c00116{word-spacing:38.256533pt;}
.wsf_c00116{word-spacing:48.666539pt;}
._4_c00116{margin-left:-5.661967pt;}
._9_c00116{margin-left:-1.965953pt;}
._7_c00116{margin-left:-0.956410pt;}
._3_c00116{width:0.925811pt;}
._6_c00116{width:2.541324pt;}
._5_c00116{width:17.720725pt;}
._1_c00116{width:47.362694pt;}
._0_c00116{width:70.985376pt;}
._2_c00116{width:94.568947pt;}
._8_c00116{width:104.086290pt;}
.fs3_c00116{font-size:37.193600pt;}
.fs0_c00116{font-size:39.110400pt;}
.fs2_c00116{font-size:53.133867pt;}
.fs1_c00116{font-size:76.513067pt;}
.y0_c00116{bottom:0.000000pt;}
.y21_c00116{bottom:39.333333pt;}
.y20_c00116{bottom:72.934667pt;}
.y1f_c00116{bottom:88.874667pt;}
.y1e_c00116{bottom:114.388000pt;}
.y1d_c00116{bottom:139.902667pt;}
.y1c_c00116{bottom:165.416000pt;}
.y1b_c00116{bottom:190.930667pt;}
.y1a_c00116{bottom:230.826667pt;}
.y19_c00116{bottom:651.080000pt;}
.y18_c00116{bottom:665.692000pt;}
.y17_c00116{bottom:680.304000pt;}
.y16_c00116{bottom:694.916000pt;}
.y15_c00116{bottom:709.528000pt;}
.y14_c00116{bottom:724.140000pt;}
.y13_c00116{bottom:738.752000pt;}
.y12_c00116{bottom:753.364000pt;}
.y11_c00116{bottom:767.976000pt;}
.y10_c00116{bottom:782.588000pt;}
.yf_c00116{bottom:797.198667pt;}
.ye_c00116{bottom:826.422667pt;}
.yd_c00116{bottom:841.034667pt;}
.yc_c00116{bottom:855.646667pt;}
.yb_c00116{bottom:884.870667pt;}
.ya_c00116{bottom:899.482667pt;}
.y9_c00116{bottom:914.094667pt;}
.y8_c00116{bottom:928.706667pt;}
.y7_c00116{bottom:943.317333pt;}
.y6_c00116{bottom:957.929333pt;}
.y5_c00116{bottom:972.541333pt;}
.y4_c00116{bottom:987.153333pt;}
.y3_c00116{bottom:1001.765333pt;}
.y2_c00116{bottom:1016.377333pt;}
.y1_c00116{bottom:1030.989333pt;}
.h3_c00116{height:31.280681pt;}
.h2_c00116{height:32.006363pt;}
.h5_c00116{height:36.010648pt;}
.h8_c00116{height:46.518078pt;}
.h4_c00116{height:51.855535pt;}
.h6_c00116{height:52.578561pt;}
.h7_c00116{height:52.583894pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w0_c00116{width:793.706667pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x4_c00116{left:113.385333pt;}
.x2_c00116{left:121.886667pt;}
.x1_c00116{left:127.796000pt;}
.x3_c00116{left:157.340000pt;}
.x5_c00116{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a67b444afd85c5dd784b2b9f.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:1.048828;font-style:normal;font-weight:normal;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_c336393844b8ea1d39f434d8.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls3_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:0.087998px;}
.ls2_c00117{letter-spacing:0.098482px;}
.ls0_c00117{letter-spacing:0.104482px;}
.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;}
}
.wsd_c00117{word-spacing:-33.713438px;}
.ws4_c00117{word-spacing:-26.575517px;}
.ws3_c00117{word-spacing:-26.487518px;}
.ws1_c00117{word-spacing:-18.769538px;}
.ws0_c00117{word-spacing:-14.824349px;}
.ws7_c00117{word-spacing:0.000000px;}
.ws5_c00117{word-spacing:0.043999px;}
.ws9_c00117{word-spacing:0.046284px;}
.ws8_c00117{word-spacing:0.056767px;}
.wsb_c00117{word-spacing:0.073250px;}
.wsa_c00117{word-spacing:0.073800px;}
.ws2_c00117{word-spacing:0.175997px;}
.wsc_c00117{word-spacing:0.213446px;}
.ws6_c00117{word-spacing:0.219446px;}
._1_c00117{margin-left:-3.825638px;}
._7_c00117{margin-left:-2.211697px;}
._3_c00117{width:1.005737px;}
._2_c00117{width:19.905275px;}
._0_c00117{width:31.920170px;}
._5_c00117{width:53.283031px;}
._4_c00117{width:79.858548px;}
._6_c00117{width:106.390066px;}
.fc5_c00117{color:rgb(0,0,207);}
.fc4_c00117{color:rgb(79,153,5);}
.fc3_c00117{color:rgb(207,92,0);}
.fc2_c00117{color:rgb(33,74,135);}
.fc1_c00117{color:rgb(143,89,3);}
.fc0_c00117{color:rgb(0,0,0);}
.fs1_c00117{font-size:43.999200px;}
.fs0_c00117{font-size:59.775600px;}
.y0_c00117{bottom:0.000000px;}
.y23_c00117{bottom:44.250000px;}
.y22_c00117{bottom:492.045000px;}
.y21_c00117{bottom:508.483500px;}
.y20_c00117{bottom:524.920500px;}
.y1f_c00117{bottom:541.359000px;}
.y1e_c00117{bottom:557.797500px;}
.y1d_c00117{bottom:574.236000px;}
.y1c_c00117{bottom:590.674500px;}
.y1b_c00117{bottom:607.113000px;}
.y1a_c00117{bottom:623.551500px;}
.y19_c00117{bottom:639.990000px;}
.y18_c00117{bottom:656.428500px;}
.y17_c00117{bottom:689.304000px;}
.y16_c00117{bottom:705.742500px;}
.y15_c00117{bottom:722.181000px;}
.y14_c00117{bottom:755.058000px;}
.y13_c00117{bottom:771.496500px;}
.y12_c00117{bottom:787.935000px;}
.y11_c00117{bottom:804.373500px;}
.y10_c00117{bottom:820.812000px;}
.yf_c00117{bottom:837.250500px;}
.ye_c00117{bottom:853.689000px;}
.yd_c00117{bottom:870.126000px;}
.yc_c00117{bottom:886.564500px;}
.yb_c00117{bottom:903.003000px;}
.ya_c00117{bottom:919.441500px;}
.y9_c00117{bottom:935.880000px;}
.y8_c00117{bottom:968.757000px;}
.y7_c00117{bottom:985.195500px;}
.y6_c00117{bottom:1001.634000px;}
.y5_c00117{bottom:1034.509500px;}
.y4_c00117{bottom:1067.386500px;}
.y3_c00117{bottom:1083.451500px;}
.y2_c00117{bottom:1141.930500px;}
.y1_c00117{bottom:1159.863000px;}
.h3_c00117{height:35.190766px;}
.h4_c00117{height:36.007158px;}
.h2_c00117{height:52.332837px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w0_c00117{width:892.920000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:127.558500px;}
.x2_c00117{left:137.122500px;}
.x3_c00117{left:143.770500px;}
.x4_c00117{left:177.007500px;}
.x5_c00117{left:435.526500px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls3_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:0.078221pt;}
.ls2_c00117{letter-spacing:0.087539pt;}
.ls0_c00117{letter-spacing:0.092873pt;}
.wsd_c00117{word-spacing:-29.967501pt;}
.ws4_c00117{word-spacing:-23.622682pt;}
.ws3_c00117{word-spacing:-23.544461pt;}
.ws1_c00117{word-spacing:-16.684034pt;}
.ws0_c00117{word-spacing:-13.177199pt;}
.ws7_c00117{word-spacing:0.000000pt;}
.ws5_c00117{word-spacing:0.039110pt;}
.ws9_c00117{word-spacing:0.041141pt;}
.ws8_c00117{word-spacing:0.050460pt;}
.wsb_c00117{word-spacing:0.065111pt;}
.wsa_c00117{word-spacing:0.065600pt;}
.ws2_c00117{word-spacing:0.156442pt;}
.wsc_c00117{word-spacing:0.189730pt;}
.ws6_c00117{word-spacing:0.195063pt;}
._1_c00117{margin-left:-3.400567pt;}
._7_c00117{margin-left:-1.965953pt;}
._3_c00117{width:0.893988pt;}
._2_c00117{width:17.693578pt;}
._0_c00117{width:28.373485pt;}
._5_c00117{width:47.362694pt;}
._4_c00117{width:70.985376pt;}
._6_c00117{width:94.568947pt;}
.fs1_c00117{font-size:39.110400pt;}
.fs0_c00117{font-size:53.133867pt;}
.y0_c00117{bottom:0.000000pt;}
.y23_c00117{bottom:39.333333pt;}
.y22_c00117{bottom:437.373333pt;}
.y21_c00117{bottom:451.985333pt;}
.y20_c00117{bottom:466.596000pt;}
.y1f_c00117{bottom:481.208000pt;}
.y1e_c00117{bottom:495.820000pt;}
.y1d_c00117{bottom:510.432000pt;}
.y1c_c00117{bottom:525.044000pt;}
.y1b_c00117{bottom:539.656000pt;}
.y1a_c00117{bottom:554.268000pt;}
.y19_c00117{bottom:568.880000pt;}
.y18_c00117{bottom:583.492000pt;}
.y17_c00117{bottom:612.714667pt;}
.y16_c00117{bottom:627.326667pt;}
.y15_c00117{bottom:641.938667pt;}
.y14_c00117{bottom:671.162667pt;}
.y13_c00117{bottom:685.774667pt;}
.y12_c00117{bottom:700.386667pt;}
.y11_c00117{bottom:714.998667pt;}
.y10_c00117{bottom:729.610667pt;}
.yf_c00117{bottom:744.222667pt;}
.ye_c00117{bottom:758.834667pt;}
.yd_c00117{bottom:773.445333pt;}
.yc_c00117{bottom:788.057333pt;}
.yb_c00117{bottom:802.669333pt;}
.ya_c00117{bottom:817.281333pt;}
.y9_c00117{bottom:831.893333pt;}
.y8_c00117{bottom:861.117333pt;}
.y7_c00117{bottom:875.729333pt;}
.y6_c00117{bottom:890.341333pt;}
.y5_c00117{bottom:919.564000pt;}
.y4_c00117{bottom:948.788000pt;}
.y3_c00117{bottom:963.068000pt;}
.y2_c00117{bottom:1015.049333pt;}
.y1_c00117{bottom:1030.989333pt;}
.h3_c00117{height:31.280681pt;}
.h4_c00117{height:32.006363pt;}
.h2_c00117{height:46.518078pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w0_c00117{width:793.706667pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:113.385333pt;}
.x2_c00117{left:121.886667pt;}
.x3_c00117{left:127.796000pt;}
.x4_c00117{left:157.340000pt;}
.x5_c00117{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ae3911457306bf2c871ef10.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:0.893555;font-style:normal;font-weight:normal;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_677d176dd023aab570b824c8.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_6e5921bb909a63b09d743b0a.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.048828;font-style: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;}
.v1_c00118{vertical-align:22.518000px;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:0.087998px;}
.ls2_c00118{letter-spacing:0.098482px;}
.ls1_c00118{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00118{word-spacing:-33.713438px;}
.ws2_c00118{word-spacing:-26.575517px;}
.ws14_c00118{word-spacing:-26.487518px;}
.ws8_c00118{word-spacing:-23.599339px;}
.ws5_c00118{word-spacing:-22.535401px;}
.ws11_c00118{word-spacing:-19.128192px;}
.ws9_c00118{word-spacing:-18.769538px;}
.ws4_c00118{word-spacing:-18.709763px;}
.wsd_c00118{word-spacing:-16.258963px;}
.wsb_c00118{word-spacing:-16.199188px;}
.ws12_c00118{word-spacing:-14.824349px;}
.wsa_c00118{word-spacing:-12.373549px;}
.ws10_c00118{word-spacing:-11.918882px;}
.ws1_c00118{word-spacing:-9.988424px;}
.ws3_c00118{word-spacing:-9.987499px;}
.ws6_c00118{word-spacing:-9.399230px;}
.wsc_c00118{word-spacing:-3.075230px;}
.ws17_c00118{word-spacing:0.000000px;}
.ws15_c00118{word-spacing:0.043999px;}
.ws19_c00118{word-spacing:0.046284px;}
.ws18_c00118{word-spacing:0.056767px;}
.ws1b_c00118{word-spacing:0.073250px;}
.ws1a_c00118{word-spacing:0.073800px;}
.ws13_c00118{word-spacing:0.175997px;}
.ws1c_c00118{word-spacing:0.213446px;}
.ws16_c00118{word-spacing:0.219446px;}
.wsf_c00118{word-spacing:13.569061px;}
.ws0_c00118{word-spacing:43.038600px;}
.wse_c00118{word-spacing:54.749856px;}
._0_c00118{margin-left:-6.369713px;}
._7_c00118{margin-left:-3.825638px;}
._d_c00118{margin-left:-2.211697px;}
._4_c00118{margin-left:-1.075961px;}
._9_c00118{width:1.005737px;}
._2_c00118{width:2.887012px;}
._1_c00118{width:18.073679px;}
._8_c00118{width:19.905275px;}
._3_c00118{width:25.064149px;}
._6_c00118{width:31.920170px;}
._b_c00118{width:53.283031px;}
._a_c00118{width:79.858548px;}
._c_c00118{width:106.390066px;}
._5_c00118{width:117.097076px;}
.fc6_c00118{color:rgb(0,0,207);}
.fc5_c00118{color:rgb(79,153,5);}
.fc3_c00118{color:rgb(33,74,135);}
.fc2_c00118{color:rgb(143,89,3);}
.fc4_c00118{color:rgb(207,92,0);}
.fc1_c00118{color:rgb(6,69,173);}
.fc0_c00118{color:rgb(0,0,0);}
.fs3_c00118{font-size:41.842800px;}
.fs2_c00118{font-size:43.999200px;}
.fs1_c00118{font-size:59.775600px;}
.fs0_c00118{font-size:86.077200px;}
.y0_c00118{bottom:0.000000px;}
.y2c_c00118{bottom:44.250000px;}
.y2b_c00118{bottom:96.919500px;}
.y2a_c00118{bottom:113.358000px;}
.y29_c00118{bottom:129.796500px;}
.y28_c00118{bottom:146.235000px;}
.y27_c00118{bottom:162.673500px;}
.y26_c00118{bottom:179.112000px;}
.y25_c00118{bottom:195.550500px;}
.y24_c00118{bottom:211.989000px;}
.y23_c00118{bottom:228.427500px;}
.y22_c00118{bottom:244.866000px;}
.y21_c00118{bottom:261.304500px;}
.y20_c00118{bottom:294.180000px;}
.y1f_c00118{bottom:310.618500px;}
.y1e_c00118{bottom:327.057000px;}
.y1d_c00118{bottom:359.934000px;}
.y1c_c00118{bottom:376.372500px;}
.y1b_c00118{bottom:392.811000px;}
.y1a_c00118{bottom:409.249500px;}
.y19_c00118{bottom:425.688000px;}
.y18_c00118{bottom:442.125000px;}
.y17_c00118{bottom:458.563500px;}
.y16_c00118{bottom:475.002000px;}
.y15_c00118{bottom:491.440500px;}
.y14_c00118{bottom:507.879000px;}
.y13_c00118{bottom:524.317500px;}
.y12_c00118{bottom:540.756000px;}
.y11_c00118{bottom:573.633000px;}
.y10_c00118{bottom:590.071500px;}
.yf_c00118{bottom:606.508500px;}
.ye_c00118{bottom:639.385500px;}
.yd_c00118{bottom:672.262500px;}
.yc_c00118{bottom:688.327500px;}
.yb_c00118{bottom:794.352000px;}
.ya_c00118{bottom:812.284500px;}
.y9_c00118{bottom:830.217000px;}
.y8_c00118{bottom:848.149500px;}
.y7_c00118{bottom:898.176000px;}
.y6_c00118{bottom:916.108500px;}
.y5_c00118{bottom:966.135000px;}
.y4_c00118{bottom:984.067500px;}
.y3_c00118{bottom:1034.094000px;}
.y2_c00118{bottom:1084.120500px;}
.y1_c00118{bottom:1159.863000px;}
.h6_c00118{height:35.190766px;}
.h7_c00118{height:36.007158px;}
.h3_c00118{height:40.511979px;}
.h5_c00118{height:52.332837px;}
.h2_c00118{height:58.337477px;}
.h4_c00118{height:59.150881px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w0_c00118{width:892.920000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:127.558500px;}
.x2_c00118{left:137.122500px;}
.x3_c00118{left:143.770500px;}
.x4_c00118{left:177.007500px;}
.x5_c00118{left:435.526500px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.v1_c00118{vertical-align:20.016000pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:0.078221pt;}
.ls2_c00118{letter-spacing:0.087539pt;}
.ls1_c00118{letter-spacing:0.092873pt;}
.ws7_c00118{word-spacing:-29.967501pt;}
.ws2_c00118{word-spacing:-23.622682pt;}
.ws14_c00118{word-spacing:-23.544461pt;}
.ws8_c00118{word-spacing:-20.977190pt;}
.ws5_c00118{word-spacing:-20.031468pt;}
.ws11_c00118{word-spacing:-17.002837pt;}
.ws9_c00118{word-spacing:-16.684034pt;}
.ws4_c00118{word-spacing:-16.630900pt;}
.wsd_c00118{word-spacing:-14.452412pt;}
.wsb_c00118{word-spacing:-14.399278pt;}
.ws12_c00118{word-spacing:-13.177199pt;}
.wsa_c00118{word-spacing:-10.998710pt;}
.ws10_c00118{word-spacing:-10.594562pt;}
.ws1_c00118{word-spacing:-8.878599pt;}
.ws3_c00118{word-spacing:-8.877777pt;}
.ws6_c00118{word-spacing:-8.354871pt;}
.wsc_c00118{word-spacing:-2.733538pt;}
.ws17_c00118{word-spacing:0.000000pt;}
.ws15_c00118{word-spacing:0.039110pt;}
.ws19_c00118{word-spacing:0.041141pt;}
.ws18_c00118{word-spacing:0.050460pt;}
.ws1b_c00118{word-spacing:0.065111pt;}
.ws1a_c00118{word-spacing:0.065600pt;}
.ws13_c00118{word-spacing:0.156442pt;}
.ws1c_c00118{word-spacing:0.189730pt;}
.ws16_c00118{word-spacing:0.195063pt;}
.wsf_c00118{word-spacing:12.061388pt;}
.ws0_c00118{word-spacing:38.256533pt;}
.wse_c00118{word-spacing:48.666539pt;}
._0_c00118{margin-left:-5.661967pt;}
._7_c00118{margin-left:-3.400567pt;}
._d_c00118{margin-left:-1.965953pt;}
._4_c00118{margin-left:-0.956410pt;}
._9_c00118{width:0.893988pt;}
._2_c00118{width:2.566233pt;}
._1_c00118{width:16.065492pt;}
._8_c00118{width:17.693578pt;}
._3_c00118{width:22.279244pt;}
._6_c00118{width:28.373485pt;}
._b_c00118{width:47.362694pt;}
._a_c00118{width:70.985376pt;}
._c_c00118{width:94.568947pt;}
._5_c00118{width:104.086290pt;}
.fs3_c00118{font-size:37.193600pt;}
.fs2_c00118{font-size:39.110400pt;}
.fs1_c00118{font-size:53.133867pt;}
.fs0_c00118{font-size:76.513067pt;}
.y0_c00118{bottom:0.000000pt;}
.y2c_c00118{bottom:39.333333pt;}
.y2b_c00118{bottom:86.150667pt;}
.y2a_c00118{bottom:100.762667pt;}
.y29_c00118{bottom:115.374667pt;}
.y28_c00118{bottom:129.986667pt;}
.y27_c00118{bottom:144.598667pt;}
.y26_c00118{bottom:159.210667pt;}
.y25_c00118{bottom:173.822667pt;}
.y24_c00118{bottom:188.434667pt;}
.y23_c00118{bottom:203.046667pt;}
.y22_c00118{bottom:217.658667pt;}
.y21_c00118{bottom:232.270667pt;}
.y20_c00118{bottom:261.493333pt;}
.y1f_c00118{bottom:276.105333pt;}
.y1e_c00118{bottom:290.717333pt;}
.y1d_c00118{bottom:319.941333pt;}
.y1c_c00118{bottom:334.553333pt;}
.y1b_c00118{bottom:349.165333pt;}
.y1a_c00118{bottom:363.777333pt;}
.y19_c00118{bottom:378.389333pt;}
.y18_c00118{bottom:393.000000pt;}
.y17_c00118{bottom:407.612000pt;}
.y16_c00118{bottom:422.224000pt;}
.y15_c00118{bottom:436.836000pt;}
.y14_c00118{bottom:451.448000pt;}
.y13_c00118{bottom:466.060000pt;}
.y12_c00118{bottom:480.672000pt;}
.y11_c00118{bottom:509.896000pt;}
.y10_c00118{bottom:524.508000pt;}
.yf_c00118{bottom:539.118667pt;}
.ye_c00118{bottom:568.342667pt;}
.yd_c00118{bottom:597.566667pt;}
.yc_c00118{bottom:611.846667pt;}
.yb_c00118{bottom:706.090667pt;}
.ya_c00118{bottom:722.030667pt;}
.y9_c00118{bottom:737.970667pt;}
.y8_c00118{bottom:753.910667pt;}
.y7_c00118{bottom:798.378667pt;}
.y6_c00118{bottom:814.318667pt;}
.y5_c00118{bottom:858.786667pt;}
.y4_c00118{bottom:874.726667pt;}
.y3_c00118{bottom:919.194667pt;}
.y2_c00118{bottom:963.662667pt;}
.y1_c00118{bottom:1030.989333pt;}
.h6_c00118{height:31.280681pt;}
.h7_c00118{height:32.006363pt;}
.h3_c00118{height:36.010648pt;}
.h5_c00118{height:46.518078pt;}
.h2_c00118{height:51.855535pt;}
.h4_c00118{height:52.578561pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w0_c00118{width:793.706667pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:113.385333pt;}
.x2_c00118{left:121.886667pt;}
.x3_c00118{left:127.796000pt;}
.x4_c00118{left:157.340000pt;}
.x5_c00118{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7a69fd1eae977aeb4c61a67.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:0.893555;font-style:normal;font-weight:normal;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_820281139f39faef430976f8.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.083496;font-style:normal;font-weight:normal;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_e968ee925caf0c56894a917b.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.014648;font-style:normal;font-weight:normal;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_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.048828;font-style: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;}
.v1_c00119{vertical-align:22.518000px;}
.ls3_c00119{letter-spacing:0.000000px;}
.ls0_c00119{letter-spacing:0.087998px;}
.ls2_c00119{letter-spacing:0.098482px;}
.ls1_c00119{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00119{word-spacing:-33.713438px;}
.ws2_c00119{word-spacing:-26.575517px;}
.ws14_c00119{word-spacing:-26.487518px;}
.ws8_c00119{word-spacing:-23.599339px;}
.ws5_c00119{word-spacing:-19.845499px;}
.ws11_c00119{word-spacing:-19.128192px;}
.ws9_c00119{word-spacing:-18.769538px;}
.ws4_c00119{word-spacing:-16.019861px;}
.wsd_c00119{word-spacing:-15.481880px;}
.wsb_c00119{word-spacing:-15.422105px;}
.ws12_c00119{word-spacing:-14.824349px;}
.ws10_c00119{word-spacing:-11.918882px;}
.wsa_c00119{word-spacing:-11.656242px;}
.ws1_c00119{word-spacing:-9.988424px;}
.ws3_c00119{word-spacing:-9.987499px;}
.ws6_c00119{word-spacing:-6.699230px;}
.wsc_c00119{word-spacing:-2.313230px;}
.ws17_c00119{word-spacing:0.000000px;}
.ws15_c00119{word-spacing:0.043999px;}
.ws19_c00119{word-spacing:0.046284px;}
.ws18_c00119{word-spacing:0.056767px;}
.ws1b_c00119{word-spacing:0.073250px;}
.ws1a_c00119{word-spacing:0.073800px;}
.ws13_c00119{word-spacing:0.175997px;}
.ws16_c00119{word-spacing:0.219446px;}
.wsf_c00119{word-spacing:13.569061px;}
.ws0_c00119{word-spacing:43.038600px;}
.wse_c00119{word-spacing:54.749856px;}
._0_c00119{margin-left:-6.369713px;}
._7_c00119{margin-left:-3.825638px;}
._4_c00119{margin-left:-1.075961px;}
._8_c00119{width:1.005737px;}
._2_c00119{width:2.961502px;}
._1_c00119{width:19.439777px;}
._3_c00119{width:26.644842px;}
._6_c00119{width:31.920170px;}
._a_c00119{width:53.283031px;}
._9_c00119{width:79.858548px;}
._b_c00119{width:106.390066px;}
._5_c00119{width:117.097076px;}
.fc6_c00119{color:rgb(0,0,207);}
.fc5_c00119{color:rgb(79,153,5);}
.fc3_c00119{color:rgb(33,74,135);}
.fc2_c00119{color:rgb(143,89,3);}
.fc4_c00119{color:rgb(207,92,0);}
.fc1_c00119{color:rgb(6,69,173);}
.fc0_c00119{color:rgb(0,0,0);}
.fs3_c00119{font-size:41.842800px;}
.fs2_c00119{font-size:43.999200px;}
.fs1_c00119{font-size:59.775600px;}
.fs0_c00119{font-size:86.077200px;}
.y0_c00119{bottom:0.000000px;}
.y1f_c00119{bottom:44.250000px;}
.y1e_c00119{bottom:86.982000px;}
.y1d_c00119{bottom:119.859000px;}
.y1c_c00119{bottom:136.297500px;}
.y1b_c00119{bottom:152.736000px;}
.y1a_c00119{bottom:169.174500px;}
.y19_c00119{bottom:185.613000px;}
.y18_c00119{bottom:202.051500px;}
.y17_c00119{bottom:218.490000px;}
.y16_c00119{bottom:234.927000px;}
.y15_c00119{bottom:251.365500px;}
.y14_c00119{bottom:267.804000px;}
.y13_c00119{bottom:284.242500px;}
.y12_c00119{bottom:300.681000px;}
.y11_c00119{bottom:333.558000px;}
.y10_c00119{bottom:349.996500px;}
.yf_c00119{bottom:366.435000px;}
.ye_c00119{bottom:399.310500px;}
.yd_c00119{bottom:432.187500px;}
.yc_c00119{bottom:448.252500px;}
.yb_c00119{bottom:495.994500px;}
.ya_c00119{bottom:513.927000px;}
.y9_c00119{bottom:531.859500px;}
.y8_c00119{bottom:549.793500px;}
.y7_c00119{bottom:576.615000px;}
.y6_c00119{bottom:594.547500px;}
.y5_c00119{bottom:621.369000px;}
.y4_c00119{bottom:639.301500px;}
.y3_c00119{bottom:666.123000px;}
.y2_c00119{bottom:692.944500px;}
.y1_c00119{bottom:735.139500px;}
.h6_c00119{height:35.190766px;}
.h7_c00119{height:36.007158px;}
.h3_c00119{height:40.511979px;}
.h5_c00119{height:52.332837px;}
.h2_c00119{height:58.337477px;}
.h4_c00119{height:59.150881px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w0_c00119{width:892.920000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:127.558500px;}
.x2_c00119{left:137.122500px;}
.x3_c00119{left:143.770500px;}
.x4_c00119{left:435.249000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:20.016000pt;}
.ls3_c00119{letter-spacing:0.000000pt;}
.ls0_c00119{letter-spacing:0.078221pt;}
.ls2_c00119{letter-spacing:0.087539pt;}
.ls1_c00119{letter-spacing:0.092873pt;}
.ws7_c00119{word-spacing:-29.967501pt;}
.ws2_c00119{word-spacing:-23.622682pt;}
.ws14_c00119{word-spacing:-23.544461pt;}
.ws8_c00119{word-spacing:-20.977190pt;}
.ws5_c00119{word-spacing:-17.640444pt;}
.ws11_c00119{word-spacing:-17.002837pt;}
.ws9_c00119{word-spacing:-16.684034pt;}
.ws4_c00119{word-spacing:-14.239876pt;}
.wsd_c00119{word-spacing:-13.761671pt;}
.wsb_c00119{word-spacing:-13.708538pt;}
.ws12_c00119{word-spacing:-13.177199pt;}
.ws10_c00119{word-spacing:-10.594562pt;}
.wsa_c00119{word-spacing:-10.361104pt;}
.ws1_c00119{word-spacing:-8.878599pt;}
.ws3_c00119{word-spacing:-8.877777pt;}
.ws6_c00119{word-spacing:-5.954871pt;}
.wsc_c00119{word-spacing:-2.056205pt;}
.ws17_c00119{word-spacing:0.000000pt;}
.ws15_c00119{word-spacing:0.039110pt;}
.ws19_c00119{word-spacing:0.041141pt;}
.ws18_c00119{word-spacing:0.050460pt;}
.ws1b_c00119{word-spacing:0.065111pt;}
.ws1a_c00119{word-spacing:0.065600pt;}
.ws13_c00119{word-spacing:0.156442pt;}
.ws16_c00119{word-spacing:0.195063pt;}
.wsf_c00119{word-spacing:12.061388pt;}
.ws0_c00119{word-spacing:38.256533pt;}
.wse_c00119{word-spacing:48.666539pt;}
._0_c00119{margin-left:-5.661967pt;}
._7_c00119{margin-left:-3.400567pt;}
._4_c00119{margin-left:-0.956410pt;}
._8_c00119{width:0.893988pt;}
._2_c00119{width:2.632446pt;}
._1_c00119{width:17.279802pt;}
._3_c00119{width:23.684304pt;}
._6_c00119{width:28.373485pt;}
._a_c00119{width:47.362694pt;}
._9_c00119{width:70.985376pt;}
._b_c00119{width:94.568947pt;}
._5_c00119{width:104.086290pt;}
.fs3_c00119{font-size:37.193600pt;}
.fs2_c00119{font-size:39.110400pt;}
.fs1_c00119{font-size:53.133867pt;}
.fs0_c00119{font-size:76.513067pt;}
.y0_c00119{bottom:0.000000pt;}
.y1f_c00119{bottom:39.333333pt;}
.y1e_c00119{bottom:77.317333pt;}
.y1d_c00119{bottom:106.541333pt;}
.y1c_c00119{bottom:121.153333pt;}
.y1b_c00119{bottom:135.765333pt;}
.y1a_c00119{bottom:150.377333pt;}
.y19_c00119{bottom:164.989333pt;}
.y18_c00119{bottom:179.601333pt;}
.y17_c00119{bottom:194.213333pt;}
.y16_c00119{bottom:208.824000pt;}
.y15_c00119{bottom:223.436000pt;}
.y14_c00119{bottom:238.048000pt;}
.y13_c00119{bottom:252.660000pt;}
.y12_c00119{bottom:267.272000pt;}
.y11_c00119{bottom:296.496000pt;}
.y10_c00119{bottom:311.108000pt;}
.yf_c00119{bottom:325.720000pt;}
.ye_c00119{bottom:354.942667pt;}
.yd_c00119{bottom:384.166667pt;}
.yc_c00119{bottom:398.446667pt;}
.yb_c00119{bottom:440.884000pt;}
.ya_c00119{bottom:456.824000pt;}
.y9_c00119{bottom:472.764000pt;}
.y8_c00119{bottom:488.705333pt;}
.y7_c00119{bottom:512.546667pt;}
.y6_c00119{bottom:528.486667pt;}
.y5_c00119{bottom:552.328000pt;}
.y4_c00119{bottom:568.268000pt;}
.y3_c00119{bottom:592.109333pt;}
.y2_c00119{bottom:615.950667pt;}
.y1_c00119{bottom:653.457333pt;}
.h6_c00119{height:31.280681pt;}
.h7_c00119{height:32.006363pt;}
.h3_c00119{height:36.010648pt;}
.h5_c00119{height:46.518078pt;}
.h2_c00119{height:51.855535pt;}
.h4_c00119{height:52.578561pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w0_c00119{width:793.706667pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:113.385333pt;}
.x2_c00119{left:121.886667pt;}
.x3_c00119{left:127.796000pt;}
.x4_c00119{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.048828;font-style:normal;font-weight:normal;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_cf20c6046ac251a59e65cccf.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.083496;font-style:normal;font-weight:normal;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_f513f8199f5000793212772f.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.893555;font-style:normal;font-weight:normal;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_e968ee925caf0c56894a917b.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00120;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.014648;font-style: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;}
.v1_c00120{vertical-align:22.518000px;}
.ls3_c00120{letter-spacing:0.000000px;}
.ls1_c00120{letter-spacing:0.087998px;}
.ls2_c00120{letter-spacing:0.098482px;}
.ls0_c00120{letter-spacing:0.104482px;}
.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;}
}
.wsa_c00120{word-spacing:-33.713438px;}
.ws1_c00120{word-spacing:-26.575517px;}
.ws0_c00120{word-spacing:-26.487518px;}
.wsb_c00120{word-spacing:-23.599339px;}
.ws13_c00120{word-spacing:-19.128192px;}
.wsc_c00120{word-spacing:-18.769538px;}
.ws8_c00120{word-spacing:-14.824349px;}
.wse_c00120{word-spacing:-13.150632px;}
.ws12_c00120{word-spacing:-11.918882px;}
.ws7_c00120{word-spacing:-10.998710px;}
.ws5_c00120{word-spacing:-9.988424px;}
.ws6_c00120{word-spacing:-9.987499px;}
.wsd_c00120{word-spacing:-9.324994px;}
.ws9_c00120{word-spacing:-1.671230px;}
.wsf_c00120{word-spacing:-0.021230px;}
.ws16_c00120{word-spacing:0.000000px;}
.ws2_c00120{word-spacing:0.043999px;}
.ws14_c00120{word-spacing:0.175997px;}
.ws3_c00120{word-spacing:0.213446px;}
.ws15_c00120{word-spacing:0.219446px;}
.ws11_c00120{word-spacing:13.569061px;}
.ws4_c00120{word-spacing:43.038600px;}
.ws10_c00120{word-spacing:54.749856px;}
._1_c00120{margin-left:-6.369713px;}
._7_c00120{margin-left:-3.113062px;}
._5_c00120{margin-left:-1.075961px;}
._0_c00120{width:1.041538px;}
._3_c00120{width:2.953750px;}
._8_c00120{width:19.905275px;}
._2_c00120{width:27.906626px;}
._4_c00120{width:31.207594px;}
._6_c00120{width:117.097076px;}
.fc5_c00120{color:rgb(0,0,207);}
.fc4_c00120{color:rgb(143,89,3);}
.fc3_c00120{color:rgb(79,153,5);}
.fc6_c00120{color:rgb(6,69,173);}
.fc2_c00120{color:rgb(207,92,0);}
.fc1_c00120{color:rgb(0,0,0);}
.fc0_c00120{color:rgb(33,74,135);}
.fs3_c00120{font-size:41.842800px;}
.fs0_c00120{font-size:43.999200px;}
.fs2_c00120{font-size:59.775600px;}
.fs1_c00120{font-size:86.077200px;}
.y0_c00120{bottom:0.000000px;}
.y1f_c00120{bottom:44.250000px;}
.y1e_c00120{bottom:82.051500px;}
.y1d_c00120{bottom:98.490000px;}
.y1c_c00120{bottom:114.927000px;}
.y1b_c00120{bottom:147.804000px;}
.y1a_c00120{bottom:180.681000px;}
.y19_c00120{bottom:196.746000px;}
.y18_c00120{bottom:243.456000px;}
.y17_c00120{bottom:261.388500px;}
.y16_c00120{bottom:279.322500px;}
.y15_c00120{bottom:297.255000px;}
.y14_c00120{bottom:323.904000px;}
.y13_c00120{bottom:341.836500px;}
.y12_c00120{bottom:368.487000px;}
.y11_c00120{bottom:386.419500px;}
.y10_c00120{bottom:413.070000px;}
.yf_c00120{bottom:439.719000px;}
.ye_c00120{bottom:481.741500px;}
.yd_c00120{bottom:946.164000px;}
.yc_c00120{bottom:962.602500px;}
.yb_c00120{bottom:979.041000px;}
.ya_c00120{bottom:995.479500px;}
.y9_c00120{bottom:1011.918000px;}
.y8_c00120{bottom:1028.356500px;}
.y7_c00120{bottom:1044.795000px;}
.y6_c00120{bottom:1061.232000px;}
.y5_c00120{bottom:1077.670500px;}
.y4_c00120{bottom:1094.109000px;}
.y3_c00120{bottom:1110.547500px;}
.y2_c00120{bottom:1143.424500px;}
.y1_c00120{bottom:1159.863000px;}
.h8_c00120{height:35.190766px;}
.h2_c00120{height:36.007158px;}
.h4_c00120{height:40.511979px;}
.h6_c00120{height:52.332837px;}
.h3_c00120{height:58.337477px;}
.h5_c00120{height:59.150881px;}
.h7_c00120{height:59.156881px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w0_c00120{width:892.920000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x3_c00120{left:127.558500px;}
.x1_c00120{left:137.122500px;}
.x2_c00120{left:177.007500px;}
.x4_c00120{left:435.249000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:20.016000pt;}
.ls3_c00120{letter-spacing:0.000000pt;}
.ls1_c00120{letter-spacing:0.078221pt;}
.ls2_c00120{letter-spacing:0.087539pt;}
.ls0_c00120{letter-spacing:0.092873pt;}
.wsa_c00120{word-spacing:-29.967501pt;}
.ws1_c00120{word-spacing:-23.622682pt;}
.ws0_c00120{word-spacing:-23.544461pt;}
.wsb_c00120{word-spacing:-20.977190pt;}
.ws13_c00120{word-spacing:-17.002837pt;}
.wsc_c00120{word-spacing:-16.684034pt;}
.ws8_c00120{word-spacing:-13.177199pt;}
.wse_c00120{word-spacing:-11.689451pt;}
.ws12_c00120{word-spacing:-10.594562pt;}
.ws7_c00120{word-spacing:-9.776631pt;}
.ws5_c00120{word-spacing:-8.878599pt;}
.ws6_c00120{word-spacing:-8.877777pt;}
.wsd_c00120{word-spacing:-8.288883pt;}
.ws9_c00120{word-spacing:-1.485538pt;}
.wsf_c00120{word-spacing:-0.018871pt;}
.ws16_c00120{word-spacing:0.000000pt;}
.ws2_c00120{word-spacing:0.039110pt;}
.ws14_c00120{word-spacing:0.156442pt;}
.ws3_c00120{word-spacing:0.189730pt;}
.ws15_c00120{word-spacing:0.195063pt;}
.ws11_c00120{word-spacing:12.061388pt;}
.ws4_c00120{word-spacing:38.256533pt;}
.ws10_c00120{word-spacing:48.666539pt;}
._1_c00120{margin-left:-5.661967pt;}
._7_c00120{margin-left:-2.767166pt;}
._5_c00120{margin-left:-0.956410pt;}
._0_c00120{width:0.925811pt;}
._3_c00120{width:2.625555pt;}
._8_c00120{width:17.693578pt;}
._2_c00120{width:24.805890pt;}
._4_c00120{width:27.740083pt;}
._6_c00120{width:104.086290pt;}
.fs3_c00120{font-size:37.193600pt;}
.fs0_c00120{font-size:39.110400pt;}
.fs2_c00120{font-size:53.133867pt;}
.fs1_c00120{font-size:76.513067pt;}
.y0_c00120{bottom:0.000000pt;}
.y1f_c00120{bottom:39.333333pt;}
.y1e_c00120{bottom:72.934667pt;}
.y1d_c00120{bottom:87.546667pt;}
.y1c_c00120{bottom:102.157333pt;}
.y1b_c00120{bottom:131.381333pt;}
.y1a_c00120{bottom:160.605333pt;}
.y19_c00120{bottom:174.885333pt;}
.y18_c00120{bottom:216.405333pt;}
.y17_c00120{bottom:232.345333pt;}
.y16_c00120{bottom:248.286667pt;}
.y15_c00120{bottom:264.226667pt;}
.y14_c00120{bottom:287.914667pt;}
.y13_c00120{bottom:303.854667pt;}
.y12_c00120{bottom:327.544000pt;}
.y11_c00120{bottom:343.484000pt;}
.y10_c00120{bottom:367.173333pt;}
.yf_c00120{bottom:390.861333pt;}
.ye_c00120{bottom:428.214667pt;}
.yd_c00120{bottom:841.034667pt;}
.yc_c00120{bottom:855.646667pt;}
.yb_c00120{bottom:870.258667pt;}
.ya_c00120{bottom:884.870667pt;}
.y9_c00120{bottom:899.482667pt;}
.y8_c00120{bottom:914.094667pt;}
.y7_c00120{bottom:928.706667pt;}
.y6_c00120{bottom:943.317333pt;}
.y5_c00120{bottom:957.929333pt;}
.y4_c00120{bottom:972.541333pt;}
.y3_c00120{bottom:987.153333pt;}
.y2_c00120{bottom:1016.377333pt;}
.y1_c00120{bottom:1030.989333pt;}
.h8_c00120{height:31.280681pt;}
.h2_c00120{height:32.006363pt;}
.h4_c00120{height:36.010648pt;}
.h6_c00120{height:46.518078pt;}
.h3_c00120{height:51.855535pt;}
.h5_c00120{height:52.578561pt;}
.h7_c00120{height:52.583894pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w0_c00120{width:793.706667pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x3_c00120{left:113.385333pt;}
.x1_c00120{left:121.886667pt;}
.x2_c00120{left:157.340000pt;}
.x4_c00120{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_713258a824e66d0140b32bf6.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.014648;font-style:normal;font-weight:normal;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_51c5f1af957ef6a2f70e9b94.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00121;src:url('chunks/assets/font_6c841a69a3c4ff24eaa21ba8.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:22.518000px;}
.ls3_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:0.087998px;}
.ls1_c00121{letter-spacing:0.098482px;}
.ls2_c00121{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00121{word-spacing:-33.713438px;}
.ws1_c00121{word-spacing:-26.575517px;}
.ws8_c00121{word-spacing:-26.487518px;}
.ws11_c00121{word-spacing:-23.599339px;}
.wse_c00121{word-spacing:-22.535401px;}
.ws12_c00121{word-spacing:-18.769538px;}
.wsd_c00121{word-spacing:-18.709763px;}
.ws14_c00121{word-spacing:-17.753353px;}
.ws13_c00121{word-spacing:-13.927715px;}
.wsb_c00121{word-spacing:-9.988424px;}
.wsc_c00121{word-spacing:-9.987499px;}
.wsf_c00121{word-spacing:-9.399230px;}
.ws15_c00121{word-spacing:-4.611230px;}
.ws2_c00121{word-spacing:0.000000px;}
.ws4_c00121{word-spacing:0.043999px;}
.ws5_c00121{word-spacing:0.046284px;}
.ws3_c00121{word-spacing:0.056767px;}
.ws7_c00121{word-spacing:0.073250px;}
.ws6_c00121{word-spacing:0.073800px;}
.ws9_c00121{word-spacing:0.213446px;}
.ws0_c00121{word-spacing:0.219446px;}
.wsa_c00121{word-spacing:42.952523px;}
._5_c00121{margin-left:-6.283636px;}
._4_c00121{margin-left:-4.734246px;}
._3_c00121{width:1.041538px;}
._7_c00121{width:2.887012px;}
._6_c00121{width:18.073679px;}
._8_c00121{width:22.022315px;}
._1_c00121{width:53.283031px;}
._0_c00121{width:79.858548px;}
._2_c00121{width:106.390066px;}
.fc5_c00121{color:rgb(207,92,0);}
.fc4_c00121{color:rgb(0,0,207);}
.fc3_c00121{color:rgb(79,153,5);}
.fc2_c00121{color:rgb(33,74,135);}
.fc1_c00121{color:rgb(143,89,3);}
.fc0_c00121{color:rgb(0,0,0);}
.fs3_c00121{font-size:41.842800px;}
.fs0_c00121{font-size:43.999200px;}
.fs2_c00121{font-size:59.775600px;}
.fs1_c00121{font-size:86.077200px;}
.y0_c00121{bottom:0.000000px;}
.y22_c00121{bottom:44.250000px;}
.y21_c00121{bottom:82.051500px;}
.y20_c00121{bottom:99.984000px;}
.y1f_c00121{bottom:125.949000px;}
.y1e_c00121{bottom:143.881500px;}
.y1d_c00121{bottom:169.846500px;}
.y1c_c00121{bottom:195.811500px;}
.y1b_c00121{bottom:237.148500px;}
.y1a_c00121{bottom:699.589500px;}
.y19_c00121{bottom:716.028000px;}
.y18_c00121{bottom:732.465000px;}
.y17_c00121{bottom:748.903500px;}
.y16_c00121{bottom:765.342000px;}
.y15_c00121{bottom:781.780500px;}
.y14_c00121{bottom:798.219000px;}
.y13_c00121{bottom:814.657500px;}
.y12_c00121{bottom:831.096000px;}
.y11_c00121{bottom:847.534500px;}
.y10_c00121{bottom:863.973000px;}
.yf_c00121{bottom:896.848500px;}
.ye_c00121{bottom:913.287000px;}
.yd_c00121{bottom:929.725500px;}
.yc_c00121{bottom:962.602500px;}
.yb_c00121{bottom:979.041000px;}
.ya_c00121{bottom:995.479500px;}
.y9_c00121{bottom:1011.918000px;}
.y8_c00121{bottom:1028.356500px;}
.y7_c00121{bottom:1044.795000px;}
.y6_c00121{bottom:1061.232000px;}
.y5_c00121{bottom:1077.670500px;}
.y4_c00121{bottom:1094.109000px;}
.y3_c00121{bottom:1110.547500px;}
.y2_c00121{bottom:1126.986000px;}
.y1_c00121{bottom:1143.424500px;}
.h3_c00121{height:35.190766px;}
.h2_c00121{height:36.007158px;}
.h5_c00121{height:40.511979px;}
.h7_c00121{height:52.332837px;}
.h4_c00121{height:58.337477px;}
.h6_c00121{height:59.150881px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w0_c00121{width:892.920000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x4_c00121{left:127.558500px;}
.x1_c00121{left:137.122500px;}
.x2_c00121{left:143.770500px;}
.x3_c00121{left:177.007500px;}
.x5_c00121{left:435.249000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:20.016000pt;}
.ls3_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:0.078221pt;}
.ls1_c00121{letter-spacing:0.087539pt;}
.ls2_c00121{letter-spacing:0.092873pt;}
.ws10_c00121{word-spacing:-29.967501pt;}
.ws1_c00121{word-spacing:-23.622682pt;}
.ws8_c00121{word-spacing:-23.544461pt;}
.ws11_c00121{word-spacing:-20.977190pt;}
.wse_c00121{word-spacing:-20.031468pt;}
.ws12_c00121{word-spacing:-16.684034pt;}
.wsd_c00121{word-spacing:-16.630900pt;}
.ws14_c00121{word-spacing:-15.780758pt;}
.ws13_c00121{word-spacing:-12.380191pt;}
.wsb_c00121{word-spacing:-8.878599pt;}
.wsc_c00121{word-spacing:-8.877777pt;}
.wsf_c00121{word-spacing:-8.354871pt;}
.ws15_c00121{word-spacing:-4.098871pt;}
.ws2_c00121{word-spacing:0.000000pt;}
.ws4_c00121{word-spacing:0.039110pt;}
.ws5_c00121{word-spacing:0.041141pt;}
.ws3_c00121{word-spacing:0.050460pt;}
.ws7_c00121{word-spacing:0.065111pt;}
.ws6_c00121{word-spacing:0.065600pt;}
.ws9_c00121{word-spacing:0.189730pt;}
.ws0_c00121{word-spacing:0.195063pt;}
.wsa_c00121{word-spacing:38.180020pt;}
._5_c00121{margin-left:-5.585454pt;}
._4_c00121{margin-left:-4.208219pt;}
._3_c00121{width:0.925811pt;}
._7_c00121{width:2.566233pt;}
._6_c00121{width:16.065492pt;}
._8_c00121{width:19.575391pt;}
._1_c00121{width:47.362694pt;}
._0_c00121{width:70.985376pt;}
._2_c00121{width:94.568947pt;}
.fs3_c00121{font-size:37.193600pt;}
.fs0_c00121{font-size:39.110400pt;}
.fs2_c00121{font-size:53.133867pt;}
.fs1_c00121{font-size:76.513067pt;}
.y0_c00121{bottom:0.000000pt;}
.y22_c00121{bottom:39.333333pt;}
.y21_c00121{bottom:72.934667pt;}
.y20_c00121{bottom:88.874667pt;}
.y1f_c00121{bottom:111.954667pt;}
.y1e_c00121{bottom:127.894667pt;}
.y1d_c00121{bottom:150.974667pt;}
.y1c_c00121{bottom:174.054667pt;}
.y1b_c00121{bottom:210.798667pt;}
.y1a_c00121{bottom:621.857333pt;}
.y19_c00121{bottom:636.469333pt;}
.y18_c00121{bottom:651.080000pt;}
.y17_c00121{bottom:665.692000pt;}
.y16_c00121{bottom:680.304000pt;}
.y15_c00121{bottom:694.916000pt;}
.y14_c00121{bottom:709.528000pt;}
.y13_c00121{bottom:724.140000pt;}
.y12_c00121{bottom:738.752000pt;}
.y11_c00121{bottom:753.364000pt;}
.y10_c00121{bottom:767.976000pt;}
.yf_c00121{bottom:797.198667pt;}
.ye_c00121{bottom:811.810667pt;}
.yd_c00121{bottom:826.422667pt;}
.yc_c00121{bottom:855.646667pt;}
.yb_c00121{bottom:870.258667pt;}
.ya_c00121{bottom:884.870667pt;}
.y9_c00121{bottom:899.482667pt;}
.y8_c00121{bottom:914.094667pt;}
.y7_c00121{bottom:928.706667pt;}
.y6_c00121{bottom:943.317333pt;}
.y5_c00121{bottom:957.929333pt;}
.y4_c00121{bottom:972.541333pt;}
.y3_c00121{bottom:987.153333pt;}
.y2_c00121{bottom:1001.765333pt;}
.y1_c00121{bottom:1016.377333pt;}
.h3_c00121{height:31.280681pt;}
.h2_c00121{height:32.006363pt;}
.h5_c00121{height:36.010648pt;}
.h7_c00121{height:46.518078pt;}
.h4_c00121{height:51.855535pt;}
.h6_c00121{height:52.578561pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w0_c00121{width:793.706667pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x4_c00121{left:113.385333pt;}
.x1_c00121{left:121.886667pt;}
.x2_c00121{left:127.796000pt;}
.x3_c00121{left:157.340000pt;}
.x5_c00121{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:0.893555;font-style:normal;font-weight:normal;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_5a87f43449bf92776527a2e6.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_7be8446619bbc09c3cb52ec7.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.048828;font-style: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;}
.ls3_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.087998px;}
.ls2_c00122{letter-spacing:0.098482px;}
.ls1_c00122{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00122{word-spacing:-26.575517px;}
.ws8_c00122{word-spacing:-26.487518px;}
.ws4_c00122{word-spacing:-19.128192px;}
.ws6_c00122{word-spacing:-18.769538px;}
.ws5_c00122{word-spacing:-14.824349px;}
.ws3_c00122{word-spacing:-11.918882px;}
.wsb_c00122{word-spacing:0.000000px;}
.ws9_c00122{word-spacing:0.043999px;}
.wsd_c00122{word-spacing:0.046284px;}
.wsc_c00122{word-spacing:0.056767px;}
.wsf_c00122{word-spacing:0.073250px;}
.wse_c00122{word-spacing:0.073800px;}
.ws7_c00122{word-spacing:0.175997px;}
.ws10_c00122{word-spacing:0.213446px;}
.wsa_c00122{word-spacing:0.219446px;}
.ws1_c00122{word-spacing:13.569061px;}
.ws0_c00122{word-spacing:54.749856px;}
._3_c00122{margin-left:-3.825638px;}
._0_c00122{margin-left:-1.075961px;}
._5_c00122{width:1.005737px;}
._4_c00122{width:19.905275px;}
._2_c00122{width:31.920170px;}
._7_c00122{width:53.283031px;}
._6_c00122{width:79.858548px;}
._8_c00122{width:106.390066px;}
._1_c00122{width:117.097076px;}
.fc6_c00122{color:rgb(0,0,207);}
.fc5_c00122{color:rgb(79,153,5);}
.fc3_c00122{color:rgb(33,74,135);}
.fc2_c00122{color:rgb(143,89,3);}
.fc4_c00122{color:rgb(207,92,0);}
.fc1_c00122{color:rgb(6,69,173);}
.fc0_c00122{color:rgb(0,0,0);}
.fs1_c00122{font-size:43.999200px;}
.fs0_c00122{font-size:59.775600px;}
.y0_c00122{bottom:0.000000px;}
.y25_c00122{bottom:44.250000px;}
.y24_c00122{bottom:96.919500px;}
.y23_c00122{bottom:113.358000px;}
.y22_c00122{bottom:129.796500px;}
.y21_c00122{bottom:146.235000px;}
.y20_c00122{bottom:162.673500px;}
.y1f_c00122{bottom:179.112000px;}
.y1e_c00122{bottom:195.550500px;}
.y1d_c00122{bottom:211.989000px;}
.y1c_c00122{bottom:228.427500px;}
.y1b_c00122{bottom:244.866000px;}
.y1a_c00122{bottom:261.304500px;}
.y19_c00122{bottom:294.180000px;}
.y18_c00122{bottom:310.618500px;}
.y17_c00122{bottom:327.057000px;}
.y16_c00122{bottom:359.934000px;}
.y15_c00122{bottom:376.372500px;}
.y14_c00122{bottom:392.811000px;}
.y13_c00122{bottom:409.249500px;}
.y12_c00122{bottom:425.688000px;}
.y11_c00122{bottom:442.125000px;}
.y10_c00122{bottom:458.563500px;}
.yf_c00122{bottom:475.002000px;}
.ye_c00122{bottom:491.440500px;}
.yd_c00122{bottom:507.879000px;}
.yc_c00122{bottom:524.317500px;}
.yb_c00122{bottom:540.756000px;}
.ya_c00122{bottom:573.633000px;}
.y9_c00122{bottom:590.071500px;}
.y8_c00122{bottom:606.508500px;}
.y7_c00122{bottom:639.385500px;}
.y6_c00122{bottom:672.262500px;}
.y5_c00122{bottom:688.327500px;}
.y4_c00122{bottom:1106.064000px;}
.y3_c00122{bottom:1123.998000px;}
.y2_c00122{bottom:1141.930500px;}
.y1_c00122{bottom:1159.863000px;}
.h3_c00122{height:35.190766px;}
.h4_c00122{height:36.007158px;}
.h2_c00122{height:52.332837px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w0_c00122{width:892.920000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:127.558500px;}
.x2_c00122{left:137.122500px;}
.x3_c00122{left:143.770500px;}
.x4_c00122{left:177.007500px;}
.x5_c00122{left:435.249000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls3_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.078221pt;}
.ls2_c00122{letter-spacing:0.087539pt;}
.ls1_c00122{letter-spacing:0.092873pt;}
.ws2_c00122{word-spacing:-23.622682pt;}
.ws8_c00122{word-spacing:-23.544461pt;}
.ws4_c00122{word-spacing:-17.002837pt;}
.ws6_c00122{word-spacing:-16.684034pt;}
.ws5_c00122{word-spacing:-13.177199pt;}
.ws3_c00122{word-spacing:-10.594562pt;}
.wsb_c00122{word-spacing:0.000000pt;}
.ws9_c00122{word-spacing:0.039110pt;}
.wsd_c00122{word-spacing:0.041141pt;}
.wsc_c00122{word-spacing:0.050460pt;}
.wsf_c00122{word-spacing:0.065111pt;}
.wse_c00122{word-spacing:0.065600pt;}
.ws7_c00122{word-spacing:0.156442pt;}
.ws10_c00122{word-spacing:0.189730pt;}
.wsa_c00122{word-spacing:0.195063pt;}
.ws1_c00122{word-spacing:12.061388pt;}
.ws0_c00122{word-spacing:48.666539pt;}
._3_c00122{margin-left:-3.400567pt;}
._0_c00122{margin-left:-0.956410pt;}
._5_c00122{width:0.893988pt;}
._4_c00122{width:17.693578pt;}
._2_c00122{width:28.373485pt;}
._7_c00122{width:47.362694pt;}
._6_c00122{width:70.985376pt;}
._8_c00122{width:94.568947pt;}
._1_c00122{width:104.086290pt;}
.fs1_c00122{font-size:39.110400pt;}
.fs0_c00122{font-size:53.133867pt;}
.y0_c00122{bottom:0.000000pt;}
.y25_c00122{bottom:39.333333pt;}
.y24_c00122{bottom:86.150667pt;}
.y23_c00122{bottom:100.762667pt;}
.y22_c00122{bottom:115.374667pt;}
.y21_c00122{bottom:129.986667pt;}
.y20_c00122{bottom:144.598667pt;}
.y1f_c00122{bottom:159.210667pt;}
.y1e_c00122{bottom:173.822667pt;}
.y1d_c00122{bottom:188.434667pt;}
.y1c_c00122{bottom:203.046667pt;}
.y1b_c00122{bottom:217.658667pt;}
.y1a_c00122{bottom:232.270667pt;}
.y19_c00122{bottom:261.493333pt;}
.y18_c00122{bottom:276.105333pt;}
.y17_c00122{bottom:290.717333pt;}
.y16_c00122{bottom:319.941333pt;}
.y15_c00122{bottom:334.553333pt;}
.y14_c00122{bottom:349.165333pt;}
.y13_c00122{bottom:363.777333pt;}
.y12_c00122{bottom:378.389333pt;}
.y11_c00122{bottom:393.000000pt;}
.y10_c00122{bottom:407.612000pt;}
.yf_c00122{bottom:422.224000pt;}
.ye_c00122{bottom:436.836000pt;}
.yd_c00122{bottom:451.448000pt;}
.yc_c00122{bottom:466.060000pt;}
.yb_c00122{bottom:480.672000pt;}
.ya_c00122{bottom:509.896000pt;}
.y9_c00122{bottom:524.508000pt;}
.y8_c00122{bottom:539.118667pt;}
.y7_c00122{bottom:568.342667pt;}
.y6_c00122{bottom:597.566667pt;}
.y5_c00122{bottom:611.846667pt;}
.y4_c00122{bottom:983.168000pt;}
.y3_c00122{bottom:999.109333pt;}
.y2_c00122{bottom:1015.049333pt;}
.y1_c00122{bottom:1030.989333pt;}
.h3_c00122{height:31.280681pt;}
.h4_c00122{height:32.006363pt;}
.h2_c00122{height:46.518078pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w0_c00122{width:793.706667pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:113.385333pt;}
.x2_c00122{left:121.886667pt;}
.x3_c00122{left:127.796000pt;}
.x4_c00122{left:157.340000pt;}
.x5_c00122{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ec823ccd23b3729697d5607.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:0.893555;font-style:normal;font-weight:normal;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_6eee4a72e9bfaccca0e5b926.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.083496;font-style:normal;font-weight:normal;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_aa80f6fd984d8f5f92161df4.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.014648;font-style:normal;font-weight:normal;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_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.048828;font-style: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;}
.ls3_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:0.087998px;}
.ls2_c00123{letter-spacing:0.098482px;}
.ls1_c00123{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00123{word-spacing:-26.575517px;}
.wsc_c00123{word-spacing:-26.487518px;}
.ws9_c00123{word-spacing:-19.128192px;}
.ws5_c00123{word-spacing:-18.769538px;}
.ws4_c00123{word-spacing:-14.943900px;}
.wsa_c00123{word-spacing:-14.824349px;}
.ws8_c00123{word-spacing:-11.918882px;}
.ws1_c00123{word-spacing:-9.988424px;}
.ws3_c00123{word-spacing:-9.987499px;}
.wsf_c00123{word-spacing:0.000000px;}
.wsd_c00123{word-spacing:0.043999px;}
.ws11_c00123{word-spacing:0.046284px;}
.ws10_c00123{word-spacing:0.056767px;}
.ws13_c00123{word-spacing:0.073250px;}
.ws12_c00123{word-spacing:0.073800px;}
.wsb_c00123{word-spacing:0.175997px;}
.ws14_c00123{word-spacing:0.213446px;}
.wse_c00123{word-spacing:0.219446px;}
.ws7_c00123{word-spacing:13.569061px;}
.ws0_c00123{word-spacing:43.038600px;}
.ws6_c00123{word-spacing:54.749856px;}
._0_c00123{margin-left:-6.369713px;}
._2_c00123{margin-left:-3.591852px;}
._3_c00123{margin-left:-1.075961px;}
._6_c00123{width:1.005737px;}
._1_c00123{width:19.935816px;}
._5_c00123{width:31.920170px;}
._8_c00123{width:53.283031px;}
._7_c00123{width:79.858548px;}
._9_c00123{width:106.390066px;}
._4_c00123{width:117.097076px;}
.fc6_c00123{color:rgb(0,0,207);}
.fc5_c00123{color:rgb(79,153,5);}
.fc3_c00123{color:rgb(33,74,135);}
.fc2_c00123{color:rgb(143,89,3);}
.fc4_c00123{color:rgb(207,92,0);}
.fc1_c00123{color:rgb(6,69,173);}
.fc0_c00123{color:rgb(0,0,0);}
.fs2_c00123{font-size:43.999200px;}
.fs1_c00123{font-size:59.775600px;}
.fs0_c00123{font-size:86.077200px;}
.y0_c00123{bottom:0.000000px;}
.y1f_c00123{bottom:44.250000px;}
.y1e_c00123{bottom:86.982000px;}
.y1d_c00123{bottom:103.420500px;}
.y1c_c00123{bottom:119.859000px;}
.y1b_c00123{bottom:152.736000px;}
.y1a_c00123{bottom:169.174500px;}
.y19_c00123{bottom:185.613000px;}
.y18_c00123{bottom:202.051500px;}
.y17_c00123{bottom:218.490000px;}
.y16_c00123{bottom:234.927000px;}
.y15_c00123{bottom:251.365500px;}
.y14_c00123{bottom:267.804000px;}
.y13_c00123{bottom:284.242500px;}
.y12_c00123{bottom:300.681000px;}
.y11_c00123{bottom:317.119500px;}
.y10_c00123{bottom:333.558000px;}
.yf_c00123{bottom:366.435000px;}
.ye_c00123{bottom:382.873500px;}
.yd_c00123{bottom:399.310500px;}
.yc_c00123{bottom:432.187500px;}
.yb_c00123{bottom:465.064500px;}
.ya_c00123{bottom:481.129500px;}
.y9_c00123{bottom:529.780500px;}
.y8_c00123{bottom:547.713000px;}
.y7_c00123{bottom:565.647000px;}
.y6_c00123{bottom:583.579500px;}
.y5_c00123{bottom:610.656000px;}
.y4_c00123{bottom:637.732500px;}
.y3_c00123{bottom:664.810500px;}
.y2_c00123{bottom:691.887000px;}
.y1_c00123{bottom:734.416500px;}
.h5_c00123{height:35.190766px;}
.h6_c00123{height:36.007158px;}
.h3_c00123{height:40.511979px;}
.h4_c00123{height:52.332837px;}
.h2_c00123{height:58.337477px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w0_c00123{width:892.920000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:127.558500px;}
.x2_c00123{left:137.122500px;}
.x3_c00123{left:143.770500px;}
.x4_c00123{left:435.249000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls3_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:0.078221pt;}
.ls2_c00123{letter-spacing:0.087539pt;}
.ls1_c00123{letter-spacing:0.092873pt;}
.ws2_c00123{word-spacing:-23.622682pt;}
.wsc_c00123{word-spacing:-23.544461pt;}
.ws9_c00123{word-spacing:-17.002837pt;}
.ws5_c00123{word-spacing:-16.684034pt;}
.ws4_c00123{word-spacing:-13.283467pt;}
.wsa_c00123{word-spacing:-13.177199pt;}
.ws8_c00123{word-spacing:-10.594562pt;}
.ws1_c00123{word-spacing:-8.878599pt;}
.ws3_c00123{word-spacing:-8.877777pt;}
.wsf_c00123{word-spacing:0.000000pt;}
.wsd_c00123{word-spacing:0.039110pt;}
.ws11_c00123{word-spacing:0.041141pt;}
.ws10_c00123{word-spacing:0.050460pt;}
.ws13_c00123{word-spacing:0.065111pt;}
.ws12_c00123{word-spacing:0.065600pt;}
.wsb_c00123{word-spacing:0.156442pt;}
.ws14_c00123{word-spacing:0.189730pt;}
.wse_c00123{word-spacing:0.195063pt;}
.ws7_c00123{word-spacing:12.061388pt;}
.ws0_c00123{word-spacing:38.256533pt;}
.ws6_c00123{word-spacing:48.666539pt;}
._0_c00123{margin-left:-5.661967pt;}
._2_c00123{margin-left:-3.192757pt;}
._3_c00123{margin-left:-0.956410pt;}
._6_c00123{width:0.893988pt;}
._1_c00123{width:17.720725pt;}
._5_c00123{width:28.373485pt;}
._8_c00123{width:47.362694pt;}
._7_c00123{width:70.985376pt;}
._9_c00123{width:94.568947pt;}
._4_c00123{width:104.086290pt;}
.fs2_c00123{font-size:39.110400pt;}
.fs1_c00123{font-size:53.133867pt;}
.fs0_c00123{font-size:76.513067pt;}
.y0_c00123{bottom:0.000000pt;}
.y1f_c00123{bottom:39.333333pt;}
.y1e_c00123{bottom:77.317333pt;}
.y1d_c00123{bottom:91.929333pt;}
.y1c_c00123{bottom:106.541333pt;}
.y1b_c00123{bottom:135.765333pt;}
.y1a_c00123{bottom:150.377333pt;}
.y19_c00123{bottom:164.989333pt;}
.y18_c00123{bottom:179.601333pt;}
.y17_c00123{bottom:194.213333pt;}
.y16_c00123{bottom:208.824000pt;}
.y15_c00123{bottom:223.436000pt;}
.y14_c00123{bottom:238.048000pt;}
.y13_c00123{bottom:252.660000pt;}
.y12_c00123{bottom:267.272000pt;}
.y11_c00123{bottom:281.884000pt;}
.y10_c00123{bottom:296.496000pt;}
.yf_c00123{bottom:325.720000pt;}
.ye_c00123{bottom:340.332000pt;}
.yd_c00123{bottom:354.942667pt;}
.yc_c00123{bottom:384.166667pt;}
.yb_c00123{bottom:413.390667pt;}
.ya_c00123{bottom:427.670667pt;}
.y9_c00123{bottom:470.916000pt;}
.y8_c00123{bottom:486.856000pt;}
.y7_c00123{bottom:502.797333pt;}
.y6_c00123{bottom:518.737333pt;}
.y5_c00123{bottom:542.805333pt;}
.y4_c00123{bottom:566.873333pt;}
.y3_c00123{bottom:590.942667pt;}
.y2_c00123{bottom:615.010667pt;}
.y1_c00123{bottom:652.814667pt;}
.h5_c00123{height:31.280681pt;}
.h6_c00123{height:32.006363pt;}
.h3_c00123{height:36.010648pt;}
.h4_c00123{height:46.518078pt;}
.h2_c00123{height:51.855535pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w0_c00123{width:793.706667pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:113.385333pt;}
.x2_c00123{left:121.886667pt;}
.x3_c00123{left:127.796000pt;}
.x4_c00123{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_408a313b6db05cd839f3a2da.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.083496;font-style:normal;font-weight:normal;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_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.048828;font-style:normal;font-weight:normal;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_f85f703575ec29486b5bd24e.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.893555;font-style:normal;font-weight:normal;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_14c2e17b714aa49a3a4fc639.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.014648;font-style: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;}
.ls3_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:0.087998px;}
.ls2_c00124{letter-spacing:0.098482px;}
.ls1_c00124{letter-spacing:0.104482px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-26.575517px;}
.ws1_c00124{word-spacing:-26.487518px;}
.wsb_c00124{word-spacing:-19.128192px;}
.ws7_c00124{word-spacing:-18.769538px;}
.wsc_c00124{word-spacing:-14.824349px;}
.wsa_c00124{word-spacing:-11.918882px;}
.ws3_c00124{word-spacing:-9.988424px;}
.ws4_c00124{word-spacing:-9.987499px;}
.ws6_c00124{word-spacing:-7.352399px;}
.ws5_c00124{word-spacing:-3.526760px;}
.ws10_c00124{word-spacing:0.000000px;}
.wse_c00124{word-spacing:0.043999px;}
.wsd_c00124{word-spacing:0.175997px;}
.wsf_c00124{word-spacing:0.219446px;}
.ws9_c00124{word-spacing:13.569061px;}
.ws2_c00124{word-spacing:43.038600px;}
.ws8_c00124{word-spacing:54.749856px;}
._0_c00124{margin-left:-6.369713px;}
._5_c00124{margin-left:-3.825638px;}
._2_c00124{margin-left:-1.075961px;}
._7_c00124{width:1.005737px;}
._6_c00124{width:19.905275px;}
._4_c00124{width:31.920170px;}
._1_c00124{width:42.826676px;}
._3_c00124{width:117.097076px;}
.fc5_c00124{color:rgb(0,0,207);}
.fc6_c00124{color:rgb(6,69,173);}
.fc4_c00124{color:rgb(207,92,0);}
.fc3_c00124{color:rgb(33,74,135);}
.fc2_c00124{color:rgb(79,153,5);}
.fc1_c00124{color:rgb(143,89,3);}
.fc0_c00124{color:rgb(0,0,0);}
.fs0_c00124{font-size:43.999200px;}
.fs2_c00124{font-size:59.775600px;}
.fs1_c00124{font-size:86.077200px;}
.y0_c00124{bottom:0.000000px;}
.y1e_c00124{bottom:44.250000px;}
.y1d_c00124{bottom:82.051500px;}
.y1c_c00124{bottom:114.927000px;}
.y1b_c00124{bottom:131.365500px;}
.y1a_c00124{bottom:147.804000px;}
.y19_c00124{bottom:180.681000px;}
.y18_c00124{bottom:213.558000px;}
.y17_c00124{bottom:229.623000px;}
.y16_c00124{bottom:276.333000px;}
.y15_c00124{bottom:294.265500px;}
.y14_c00124{bottom:312.198000px;}
.y13_c00124{bottom:330.132000px;}
.y12_c00124{bottom:356.781000px;}
.y11_c00124{bottom:374.713500px;}
.y10_c00124{bottom:401.364000px;}
.yf_c00124{bottom:419.296500px;}
.ye_c00124{bottom:445.945500px;}
.yd_c00124{bottom:472.596000px;}
.yc_c00124{bottom:514.618500px;}
.yb_c00124{bottom:979.041000px;}
.ya_c00124{bottom:995.479500px;}
.y9_c00124{bottom:1011.918000px;}
.y8_c00124{bottom:1028.356500px;}
.y7_c00124{bottom:1044.795000px;}
.y6_c00124{bottom:1061.232000px;}
.y5_c00124{bottom:1077.670500px;}
.y4_c00124{bottom:1094.109000px;}
.y3_c00124{bottom:1110.547500px;}
.y2_c00124{bottom:1126.986000px;}
.y1_c00124{bottom:1143.424500px;}
.h6_c00124{height:35.190766px;}
.h2_c00124{height:36.007158px;}
.h4_c00124{height:40.511979px;}
.h5_c00124{height:52.332837px;}
.h3_c00124{height:58.337477px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w0_c00124{width:892.920000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x3_c00124{left:127.558500px;}
.x1_c00124{left:137.122500px;}
.x2_c00124{left:177.007500px;}
.x4_c00124{left:435.249000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls3_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:0.078221pt;}
.ls2_c00124{letter-spacing:0.087539pt;}
.ls1_c00124{letter-spacing:0.092873pt;}
.ws0_c00124{word-spacing:-23.622682pt;}
.ws1_c00124{word-spacing:-23.544461pt;}
.wsb_c00124{word-spacing:-17.002837pt;}
.ws7_c00124{word-spacing:-16.684034pt;}
.wsc_c00124{word-spacing:-13.177199pt;}
.wsa_c00124{word-spacing:-10.594562pt;}
.ws3_c00124{word-spacing:-8.878599pt;}
.ws4_c00124{word-spacing:-8.877777pt;}
.ws6_c00124{word-spacing:-6.535466pt;}
.ws5_c00124{word-spacing:-3.134898pt;}
.ws10_c00124{word-spacing:0.000000pt;}
.wse_c00124{word-spacing:0.039110pt;}
.wsd_c00124{word-spacing:0.156442pt;}
.wsf_c00124{word-spacing:0.195063pt;}
.ws9_c00124{word-spacing:12.061388pt;}
.ws2_c00124{word-spacing:38.256533pt;}
.ws8_c00124{word-spacing:48.666539pt;}
._0_c00124{margin-left:-5.661967pt;}
._5_c00124{margin-left:-3.400567pt;}
._2_c00124{margin-left:-0.956410pt;}
._7_c00124{width:0.893988pt;}
._6_c00124{width:17.693578pt;}
._4_c00124{width:28.373485pt;}
._1_c00124{width:38.068157pt;}
._3_c00124{width:104.086290pt;}
.fs0_c00124{font-size:39.110400pt;}
.fs2_c00124{font-size:53.133867pt;}
.fs1_c00124{font-size:76.513067pt;}
.y0_c00124{bottom:0.000000pt;}
.y1e_c00124{bottom:39.333333pt;}
.y1d_c00124{bottom:72.934667pt;}
.y1c_c00124{bottom:102.157333pt;}
.y1b_c00124{bottom:116.769333pt;}
.y1a_c00124{bottom:131.381333pt;}
.y19_c00124{bottom:160.605333pt;}
.y18_c00124{bottom:189.829333pt;}
.y17_c00124{bottom:204.109333pt;}
.y16_c00124{bottom:245.629333pt;}
.y15_c00124{bottom:261.569333pt;}
.y14_c00124{bottom:277.509333pt;}
.y13_c00124{bottom:293.450667pt;}
.y12_c00124{bottom:317.138667pt;}
.y11_c00124{bottom:333.078667pt;}
.y10_c00124{bottom:356.768000pt;}
.yf_c00124{bottom:372.708000pt;}
.ye_c00124{bottom:396.396000pt;}
.yd_c00124{bottom:420.085333pt;}
.yc_c00124{bottom:457.438667pt;}
.yb_c00124{bottom:870.258667pt;}
.ya_c00124{bottom:884.870667pt;}
.y9_c00124{bottom:899.482667pt;}
.y8_c00124{bottom:914.094667pt;}
.y7_c00124{bottom:928.706667pt;}
.y6_c00124{bottom:943.317333pt;}
.y5_c00124{bottom:957.929333pt;}
.y4_c00124{bottom:972.541333pt;}
.y3_c00124{bottom:987.153333pt;}
.y2_c00124{bottom:1001.765333pt;}
.y1_c00124{bottom:1016.377333pt;}
.h6_c00124{height:31.280681pt;}
.h2_c00124{height:32.006363pt;}
.h4_c00124{height:36.010648pt;}
.h5_c00124{height:46.518078pt;}
.h3_c00124{height:51.855535pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w0_c00124{width:793.706667pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x3_c00124{left:113.385333pt;}
.x1_c00124{left:121.886667pt;}
.x2_c00124{left:157.340000pt;}
.x4_c00124{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c69085d873ca9e4af134e26.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_7f01b34fe2941167e8021fa7.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_0881aee538331aff314132d8.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls3_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:0.087998px;}
.ls1_c00125{letter-spacing:0.098482px;}
.ls2_c00125{letter-spacing:0.104482px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-26.575517px;}
.ws7_c00125{word-spacing:-26.487518px;}
.wsd_c00125{word-spacing:-23.073382px;}
.wsc_c00125{word-spacing:-19.307519px;}
.wse_c00125{word-spacing:-18.769538px;}
.wsa_c00125{word-spacing:-9.988424px;}
.wsb_c00125{word-spacing:-9.987499px;}
.ws10_c00125{word-spacing:-7.950155px;}
.wsf_c00125{word-spacing:-4.184292px;}
.ws0_c00125{word-spacing:0.000000px;}
.ws3_c00125{word-spacing:0.043999px;}
.ws4_c00125{word-spacing:0.046284px;}
.ws2_c00125{word-spacing:0.056767px;}
.ws6_c00125{word-spacing:0.073250px;}
.ws5_c00125{word-spacing:0.073800px;}
.ws8_c00125{word-spacing:0.213446px;}
.ws9_c00125{word-spacing:43.038600px;}
._4_c00125{margin-left:-6.369713px;}
._6_c00125{margin-left:-4.124516px;}
._3_c00125{width:1.041538px;}
._5_c00125{width:17.801435px;}
._7_c00125{width:41.576892px;}
._1_c00125{width:53.283031px;}
._0_c00125{width:79.858548px;}
._2_c00125{width:106.390066px;}
.fc5_c00125{color:rgb(207,92,0);}
.fc4_c00125{color:rgb(0,0,207);}
.fc3_c00125{color:rgb(143,89,3);}
.fc2_c00125{color:rgb(0,0,0);}
.fc1_c00125{color:rgb(79,153,5);}
.fc0_c00125{color:rgb(33,74,135);}
.fs0_c00125{font-size:43.999200px;}
.fs2_c00125{font-size:59.775600px;}
.fs1_c00125{font-size:86.077200px;}
.y0_c00125{bottom:0.000000px;}
.y21_c00125{bottom:44.250000px;}
.y20_c00125{bottom:82.051500px;}
.y1f_c00125{bottom:99.984000px;}
.y1e_c00125{bottom:129.927000px;}
.y1d_c00125{bottom:147.859500px;}
.y1c_c00125{bottom:177.804000px;}
.y1b_c00125{bottom:207.747000px;}
.y1a_c00125{bottom:254.425500px;}
.y19_c00125{bottom:732.465000px;}
.y18_c00125{bottom:748.903500px;}
.y17_c00125{bottom:765.342000px;}
.y16_c00125{bottom:781.780500px;}
.y15_c00125{bottom:798.219000px;}
.y14_c00125{bottom:814.657500px;}
.y13_c00125{bottom:831.096000px;}
.y12_c00125{bottom:847.534500px;}
.y11_c00125{bottom:863.973000px;}
.y10_c00125{bottom:880.411500px;}
.yf_c00125{bottom:896.848500px;}
.ye_c00125{bottom:929.725500px;}
.yd_c00125{bottom:946.164000px;}
.yc_c00125{bottom:962.602500px;}
.yb_c00125{bottom:995.479500px;}
.ya_c00125{bottom:1011.918000px;}
.y9_c00125{bottom:1028.356500px;}
.y8_c00125{bottom:1044.795000px;}
.y7_c00125{bottom:1061.232000px;}
.y6_c00125{bottom:1077.670500px;}
.y5_c00125{bottom:1094.109000px;}
.y4_c00125{bottom:1110.547500px;}
.y3_c00125{bottom:1126.986000px;}
.y2_c00125{bottom:1143.424500px;}
.y1_c00125{bottom:1159.863000px;}
.h3_c00125{height:35.190766px;}
.h2_c00125{height:36.007158px;}
.h5_c00125{height:40.511979px;}
.h6_c00125{height:52.332837px;}
.h4_c00125{height:58.337477px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w0_c00125{width:892.920000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x4_c00125{left:127.558500px;}
.x2_c00125{left:137.122500px;}
.x1_c00125{left:143.770500px;}
.x3_c00125{left:177.007500px;}
.x5_c00125{left:435.249000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls3_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:0.078221pt;}
.ls1_c00125{letter-spacing:0.087539pt;}
.ls2_c00125{letter-spacing:0.092873pt;}
.ws1_c00125{word-spacing:-23.622682pt;}
.ws7_c00125{word-spacing:-23.544461pt;}
.wsd_c00125{word-spacing:-20.509673pt;}
.wsc_c00125{word-spacing:-17.162239pt;}
.wse_c00125{word-spacing:-16.684034pt;}
.wsa_c00125{word-spacing:-8.878599pt;}
.wsb_c00125{word-spacing:-8.877777pt;}
.ws10_c00125{word-spacing:-7.066804pt;}
.wsf_c00125{word-spacing:-3.719371pt;}
.ws0_c00125{word-spacing:0.000000pt;}
.ws3_c00125{word-spacing:0.039110pt;}
.ws4_c00125{word-spacing:0.041141pt;}
.ws2_c00125{word-spacing:0.050460pt;}
.ws6_c00125{word-spacing:0.065111pt;}
.ws5_c00125{word-spacing:0.065600pt;}
.ws8_c00125{word-spacing:0.189730pt;}
.ws9_c00125{word-spacing:38.256533pt;}
._4_c00125{margin-left:-5.661967pt;}
._6_c00125{margin-left:-3.666237pt;}
._3_c00125{width:0.925811pt;}
._5_c00125{width:15.823498pt;}
._7_c00125{width:36.957237pt;}
._1_c00125{width:47.362694pt;}
._0_c00125{width:70.985376pt;}
._2_c00125{width:94.568947pt;}
.fs0_c00125{font-size:39.110400pt;}
.fs2_c00125{font-size:53.133867pt;}
.fs1_c00125{font-size:76.513067pt;}
.y0_c00125{bottom:0.000000pt;}
.y21_c00125{bottom:39.333333pt;}
.y20_c00125{bottom:72.934667pt;}
.y1f_c00125{bottom:88.874667pt;}
.y1e_c00125{bottom:115.490667pt;}
.y1d_c00125{bottom:131.430667pt;}
.y1c_c00125{bottom:158.048000pt;}
.y1b_c00125{bottom:184.664000pt;}
.y1a_c00125{bottom:226.156000pt;}
.y19_c00125{bottom:651.080000pt;}
.y18_c00125{bottom:665.692000pt;}
.y17_c00125{bottom:680.304000pt;}
.y16_c00125{bottom:694.916000pt;}
.y15_c00125{bottom:709.528000pt;}
.y14_c00125{bottom:724.140000pt;}
.y13_c00125{bottom:738.752000pt;}
.y12_c00125{bottom:753.364000pt;}
.y11_c00125{bottom:767.976000pt;}
.y10_c00125{bottom:782.588000pt;}
.yf_c00125{bottom:797.198667pt;}
.ye_c00125{bottom:826.422667pt;}
.yd_c00125{bottom:841.034667pt;}
.yc_c00125{bottom:855.646667pt;}
.yb_c00125{bottom:884.870667pt;}
.ya_c00125{bottom:899.482667pt;}
.y9_c00125{bottom:914.094667pt;}
.y8_c00125{bottom:928.706667pt;}
.y7_c00125{bottom:943.317333pt;}
.y6_c00125{bottom:957.929333pt;}
.y5_c00125{bottom:972.541333pt;}
.y4_c00125{bottom:987.153333pt;}
.y3_c00125{bottom:1001.765333pt;}
.y2_c00125{bottom:1016.377333pt;}
.y1_c00125{bottom:1030.989333pt;}
.h3_c00125{height:31.280681pt;}
.h2_c00125{height:32.006363pt;}
.h5_c00125{height:36.010648pt;}
.h6_c00125{height:46.518078pt;}
.h4_c00125{height:51.855535pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w0_c00125{width:793.706667pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x4_c00125{left:113.385333pt;}
.x2_c00125{left:121.886667pt;}
.x1_c00125{left:127.796000pt;}
.x3_c00125{left:157.340000pt;}
.x5_c00125{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:0.893555;font-style:normal;font-weight:normal;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_81f5303bd57da5134312dceb.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.102051;font-style:normal;font-weight:normal;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_214faec062c83124f5c8eda4.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.048828;font-style: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;}
.ls3_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:0.087998px;}
.ls2_c00126{letter-spacing:0.098482px;}
.ls1_c00126{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00126{word-spacing:-26.575517px;}
.ws8_c00126{word-spacing:-26.487518px;}
.ws4_c00126{word-spacing:-19.128192px;}
.ws6_c00126{word-spacing:-18.769538px;}
.ws5_c00126{word-spacing:-14.824349px;}
.ws3_c00126{word-spacing:-11.918882px;}
.wsb_c00126{word-spacing:0.000000px;}
.ws9_c00126{word-spacing:0.043999px;}
.wsd_c00126{word-spacing:0.046284px;}
.wsc_c00126{word-spacing:0.056767px;}
.wsf_c00126{word-spacing:0.073250px;}
.wse_c00126{word-spacing:0.073800px;}
.ws7_c00126{word-spacing:0.175997px;}
.ws10_c00126{word-spacing:0.213446px;}
.wsa_c00126{word-spacing:0.219446px;}
.ws1_c00126{word-spacing:13.569061px;}
.ws0_c00126{word-spacing:54.749856px;}
._3_c00126{margin-left:-3.825638px;}
._0_c00126{margin-left:-1.075961px;}
._5_c00126{width:1.005737px;}
._4_c00126{width:19.905275px;}
._2_c00126{width:31.920170px;}
._7_c00126{width:53.283031px;}
._6_c00126{width:79.858548px;}
._8_c00126{width:106.390066px;}
._1_c00126{width:117.097076px;}
.fc6_c00126{color:rgb(0,0,207);}
.fc5_c00126{color:rgb(79,153,5);}
.fc3_c00126{color:rgb(33,74,135);}
.fc2_c00126{color:rgb(143,89,3);}
.fc4_c00126{color:rgb(207,92,0);}
.fc1_c00126{color:rgb(6,69,173);}
.fc0_c00126{color:rgb(0,0,0);}
.fs1_c00126{font-size:43.999200px;}
.fs0_c00126{font-size:59.775600px;}
.y0_c00126{bottom:0.000000px;}
.y25_c00126{bottom:44.250000px;}
.y24_c00126{bottom:96.919500px;}
.y23_c00126{bottom:113.358000px;}
.y22_c00126{bottom:129.796500px;}
.y21_c00126{bottom:146.235000px;}
.y20_c00126{bottom:162.673500px;}
.y1f_c00126{bottom:179.112000px;}
.y1e_c00126{bottom:195.550500px;}
.y1d_c00126{bottom:211.989000px;}
.y1c_c00126{bottom:228.427500px;}
.y1b_c00126{bottom:244.866000px;}
.y1a_c00126{bottom:261.304500px;}
.y19_c00126{bottom:294.180000px;}
.y18_c00126{bottom:310.618500px;}
.y17_c00126{bottom:327.057000px;}
.y16_c00126{bottom:359.934000px;}
.y15_c00126{bottom:376.372500px;}
.y14_c00126{bottom:392.811000px;}
.y13_c00126{bottom:409.249500px;}
.y12_c00126{bottom:425.688000px;}
.y11_c00126{bottom:442.125000px;}
.y10_c00126{bottom:458.563500px;}
.yf_c00126{bottom:475.002000px;}
.ye_c00126{bottom:491.440500px;}
.yd_c00126{bottom:507.879000px;}
.yc_c00126{bottom:524.317500px;}
.yb_c00126{bottom:540.756000px;}
.ya_c00126{bottom:573.633000px;}
.y9_c00126{bottom:590.071500px;}
.y8_c00126{bottom:606.508500px;}
.y7_c00126{bottom:639.385500px;}
.y6_c00126{bottom:672.262500px;}
.y5_c00126{bottom:688.327500px;}
.y4_c00126{bottom:1106.064000px;}
.y3_c00126{bottom:1123.998000px;}
.y2_c00126{bottom:1141.930500px;}
.y1_c00126{bottom:1159.863000px;}
.h3_c00126{height:35.190766px;}
.h4_c00126{height:36.007158px;}
.h2_c00126{height:52.332837px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w0_c00126{width:892.920000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:127.558500px;}
.x2_c00126{left:137.122500px;}
.x3_c00126{left:143.770500px;}
.x4_c00126{left:177.007500px;}
.x5_c00126{left:435.249000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls3_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:0.078221pt;}
.ls2_c00126{letter-spacing:0.087539pt;}
.ls1_c00126{letter-spacing:0.092873pt;}
.ws2_c00126{word-spacing:-23.622682pt;}
.ws8_c00126{word-spacing:-23.544461pt;}
.ws4_c00126{word-spacing:-17.002837pt;}
.ws6_c00126{word-spacing:-16.684034pt;}
.ws5_c00126{word-spacing:-13.177199pt;}
.ws3_c00126{word-spacing:-10.594562pt;}
.wsb_c00126{word-spacing:0.000000pt;}
.ws9_c00126{word-spacing:0.039110pt;}
.wsd_c00126{word-spacing:0.041141pt;}
.wsc_c00126{word-spacing:0.050460pt;}
.wsf_c00126{word-spacing:0.065111pt;}
.wse_c00126{word-spacing:0.065600pt;}
.ws7_c00126{word-spacing:0.156442pt;}
.ws10_c00126{word-spacing:0.189730pt;}
.wsa_c00126{word-spacing:0.195063pt;}
.ws1_c00126{word-spacing:12.061388pt;}
.ws0_c00126{word-spacing:48.666539pt;}
._3_c00126{margin-left:-3.400567pt;}
._0_c00126{margin-left:-0.956410pt;}
._5_c00126{width:0.893988pt;}
._4_c00126{width:17.693578pt;}
._2_c00126{width:28.373485pt;}
._7_c00126{width:47.362694pt;}
._6_c00126{width:70.985376pt;}
._8_c00126{width:94.568947pt;}
._1_c00126{width:104.086290pt;}
.fs1_c00126{font-size:39.110400pt;}
.fs0_c00126{font-size:53.133867pt;}
.y0_c00126{bottom:0.000000pt;}
.y25_c00126{bottom:39.333333pt;}
.y24_c00126{bottom:86.150667pt;}
.y23_c00126{bottom:100.762667pt;}
.y22_c00126{bottom:115.374667pt;}
.y21_c00126{bottom:129.986667pt;}
.y20_c00126{bottom:144.598667pt;}
.y1f_c00126{bottom:159.210667pt;}
.y1e_c00126{bottom:173.822667pt;}
.y1d_c00126{bottom:188.434667pt;}
.y1c_c00126{bottom:203.046667pt;}
.y1b_c00126{bottom:217.658667pt;}
.y1a_c00126{bottom:232.270667pt;}
.y19_c00126{bottom:261.493333pt;}
.y18_c00126{bottom:276.105333pt;}
.y17_c00126{bottom:290.717333pt;}
.y16_c00126{bottom:319.941333pt;}
.y15_c00126{bottom:334.553333pt;}
.y14_c00126{bottom:349.165333pt;}
.y13_c00126{bottom:363.777333pt;}
.y12_c00126{bottom:378.389333pt;}
.y11_c00126{bottom:393.000000pt;}
.y10_c00126{bottom:407.612000pt;}
.yf_c00126{bottom:422.224000pt;}
.ye_c00126{bottom:436.836000pt;}
.yd_c00126{bottom:451.448000pt;}
.yc_c00126{bottom:466.060000pt;}
.yb_c00126{bottom:480.672000pt;}
.ya_c00126{bottom:509.896000pt;}
.y9_c00126{bottom:524.508000pt;}
.y8_c00126{bottom:539.118667pt;}
.y7_c00126{bottom:568.342667pt;}
.y6_c00126{bottom:597.566667pt;}
.y5_c00126{bottom:611.846667pt;}
.y4_c00126{bottom:983.168000pt;}
.y3_c00126{bottom:999.109333pt;}
.y2_c00126{bottom:1015.049333pt;}
.y1_c00126{bottom:1030.989333pt;}
.h3_c00126{height:31.280681pt;}
.h4_c00126{height:32.006363pt;}
.h2_c00126{height:46.518078pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w0_c00126{width:793.706667pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:113.385333pt;}
.x2_c00126{left:121.886667pt;}
.x3_c00126{left:127.796000pt;}
.x4_c00126{left:157.340000pt;}
.x5_c00126{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53ea739f20bbe84976f3cfc3.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:0.893555;font-style:normal;font-weight:normal;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_6eee4a72e9bfaccca0e5b926.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_9525f056a77be1da1ec3f3bb.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00127;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:1.048828;font-style: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;}
.ls3_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.087998px;}
.ls2_c00127{letter-spacing:0.098482px;}
.ls1_c00127{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00127{word-spacing:-26.575517px;}
.wsf_c00127{word-spacing:-26.487518px;}
.wsc_c00127{word-spacing:-19.128192px;}
.ws6_c00127{word-spacing:-18.769538px;}
.ws8_c00127{word-spacing:-17.872904px;}
.ws5_c00127{word-spacing:-16.976270px;}
.wsd_c00127{word-spacing:-14.824349px;}
.ws7_c00127{word-spacing:-14.107042px;}
.ws4_c00127{word-spacing:-13.150632px;}
.wsb_c00127{word-spacing:-11.918882px;}
.ws1_c00127{word-spacing:-9.988424px;}
.ws3_c00127{word-spacing:-9.987499px;}
.ws12_c00127{word-spacing:0.000000px;}
.ws10_c00127{word-spacing:0.043999px;}
.ws14_c00127{word-spacing:0.046284px;}
.ws13_c00127{word-spacing:0.056767px;}
.ws16_c00127{word-spacing:0.073250px;}
.ws15_c00127{word-spacing:0.073800px;}
.wse_c00127{word-spacing:0.175997px;}
.ws11_c00127{word-spacing:0.219446px;}
.wsa_c00127{word-spacing:13.569061px;}
.ws0_c00127{word-spacing:43.038600px;}
.ws9_c00127{word-spacing:54.749856px;}
._0_c00127{margin-left:-6.369713px;}
._6_c00127{margin-left:-3.825638px;}
._3_c00127{margin-left:-1.075961px;}
._8_c00127{width:1.005737px;}
._7_c00127{width:19.905275px;}
._2_c00127{width:21.751642px;}
._1_c00127{width:23.554548px;}
._5_c00127{width:31.920170px;}
._a_c00127{width:53.283031px;}
._9_c00127{width:79.858548px;}
._b_c00127{width:106.390066px;}
._4_c00127{width:117.097076px;}
.fc6_c00127{color:rgb(0,0,207);}
.fc5_c00127{color:rgb(79,153,5);}
.fc3_c00127{color:rgb(33,74,135);}
.fc2_c00127{color:rgb(143,89,3);}
.fc4_c00127{color:rgb(207,92,0);}
.fc1_c00127{color:rgb(6,69,173);}
.fc0_c00127{color:rgb(0,0,0);}
.fs2_c00127{font-size:43.999200px;}
.fs1_c00127{font-size:59.775600px;}
.fs0_c00127{font-size:86.077200px;}
.y0_c00127{bottom:0.000000px;}
.y1f_c00127{bottom:44.250000px;}
.y1e_c00127{bottom:86.982000px;}
.y1d_c00127{bottom:119.859000px;}
.y1c_c00127{bottom:136.297500px;}
.y1b_c00127{bottom:152.736000px;}
.y1a_c00127{bottom:169.174500px;}
.y19_c00127{bottom:185.613000px;}
.y18_c00127{bottom:202.051500px;}
.y17_c00127{bottom:218.490000px;}
.y16_c00127{bottom:234.927000px;}
.y15_c00127{bottom:251.365500px;}
.y14_c00127{bottom:267.804000px;}
.y13_c00127{bottom:284.242500px;}
.y12_c00127{bottom:300.681000px;}
.y11_c00127{bottom:333.558000px;}
.y10_c00127{bottom:349.996500px;}
.yf_c00127{bottom:366.435000px;}
.ye_c00127{bottom:399.310500px;}
.yd_c00127{bottom:432.187500px;}
.yc_c00127{bottom:448.252500px;}
.yb_c00127{bottom:495.994500px;}
.ya_c00127{bottom:513.927000px;}
.y9_c00127{bottom:531.859500px;}
.y8_c00127{bottom:549.793500px;}
.y7_c00127{bottom:576.615000px;}
.y6_c00127{bottom:594.547500px;}
.y5_c00127{bottom:621.369000px;}
.y4_c00127{bottom:639.301500px;}
.y3_c00127{bottom:666.123000px;}
.y2_c00127{bottom:692.944500px;}
.y1_c00127{bottom:735.139500px;}
.h5_c00127{height:35.190766px;}
.h6_c00127{height:36.007158px;}
.h3_c00127{height:40.511979px;}
.h4_c00127{height:52.332837px;}
.h2_c00127{height:58.337477px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w0_c00127{width:892.920000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:127.558500px;}
.x2_c00127{left:137.122500px;}
.x3_c00127{left:143.770500px;}
.x4_c00127{left:435.249000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls3_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.078221pt;}
.ls2_c00127{letter-spacing:0.087539pt;}
.ls1_c00127{letter-spacing:0.092873pt;}
.ws2_c00127{word-spacing:-23.622682pt;}
.wsf_c00127{word-spacing:-23.544461pt;}
.wsc_c00127{word-spacing:-17.002837pt;}
.ws6_c00127{word-spacing:-16.684034pt;}
.ws8_c00127{word-spacing:-15.887026pt;}
.ws5_c00127{word-spacing:-15.090018pt;}
.wsd_c00127{word-spacing:-13.177199pt;}
.ws7_c00127{word-spacing:-12.539593pt;}
.ws4_c00127{word-spacing:-11.689451pt;}
.wsb_c00127{word-spacing:-10.594562pt;}
.ws1_c00127{word-spacing:-8.878599pt;}
.ws3_c00127{word-spacing:-8.877777pt;}
.ws12_c00127{word-spacing:0.000000pt;}
.ws10_c00127{word-spacing:0.039110pt;}
.ws14_c00127{word-spacing:0.041141pt;}
.ws13_c00127{word-spacing:0.050460pt;}
.ws16_c00127{word-spacing:0.065111pt;}
.ws15_c00127{word-spacing:0.065600pt;}
.wse_c00127{word-spacing:0.156442pt;}
.ws11_c00127{word-spacing:0.195063pt;}
.wsa_c00127{word-spacing:12.061388pt;}
.ws0_c00127{word-spacing:38.256533pt;}
.ws9_c00127{word-spacing:48.666539pt;}
._0_c00127{margin-left:-5.661967pt;}
._6_c00127{margin-left:-3.400567pt;}
._3_c00127{margin-left:-0.956410pt;}
._8_c00127{width:0.893988pt;}
._7_c00127{width:17.693578pt;}
._2_c00127{width:19.334793pt;}
._1_c00127{width:20.937376pt;}
._5_c00127{width:28.373485pt;}
._a_c00127{width:47.362694pt;}
._9_c00127{width:70.985376pt;}
._b_c00127{width:94.568947pt;}
._4_c00127{width:104.086290pt;}
.fs2_c00127{font-size:39.110400pt;}
.fs1_c00127{font-size:53.133867pt;}
.fs0_c00127{font-size:76.513067pt;}
.y0_c00127{bottom:0.000000pt;}
.y1f_c00127{bottom:39.333333pt;}
.y1e_c00127{bottom:77.317333pt;}
.y1d_c00127{bottom:106.541333pt;}
.y1c_c00127{bottom:121.153333pt;}
.y1b_c00127{bottom:135.765333pt;}
.y1a_c00127{bottom:150.377333pt;}
.y19_c00127{bottom:164.989333pt;}
.y18_c00127{bottom:179.601333pt;}
.y17_c00127{bottom:194.213333pt;}
.y16_c00127{bottom:208.824000pt;}
.y15_c00127{bottom:223.436000pt;}
.y14_c00127{bottom:238.048000pt;}
.y13_c00127{bottom:252.660000pt;}
.y12_c00127{bottom:267.272000pt;}
.y11_c00127{bottom:296.496000pt;}
.y10_c00127{bottom:311.108000pt;}
.yf_c00127{bottom:325.720000pt;}
.ye_c00127{bottom:354.942667pt;}
.yd_c00127{bottom:384.166667pt;}
.yc_c00127{bottom:398.446667pt;}
.yb_c00127{bottom:440.884000pt;}
.ya_c00127{bottom:456.824000pt;}
.y9_c00127{bottom:472.764000pt;}
.y8_c00127{bottom:488.705333pt;}
.y7_c00127{bottom:512.546667pt;}
.y6_c00127{bottom:528.486667pt;}
.y5_c00127{bottom:552.328000pt;}
.y4_c00127{bottom:568.268000pt;}
.y3_c00127{bottom:592.109333pt;}
.y2_c00127{bottom:615.950667pt;}
.y1_c00127{bottom:653.457333pt;}
.h5_c00127{height:31.280681pt;}
.h6_c00127{height:32.006363pt;}
.h3_c00127{height:36.010648pt;}
.h4_c00127{height:46.518078pt;}
.h2_c00127{height:51.855535pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w0_c00127{width:793.706667pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:113.385333pt;}
.x2_c00127{left:121.886667pt;}
.x3_c00127{left:127.796000pt;}
.x4_c00127{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.048828;font-style:normal;font-weight:normal;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_2393d36cf592438b26687e8a.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.083496;font-style:normal;font-weight:normal;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_6ec823ccd23b3729697d5607.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.893555;font-style:normal;font-weight:normal;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_0186b481f7fd6c0af4e70aca.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:1.014648;font-style: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;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls1_c00128{letter-spacing:0.087998px;}
.ls2_c00128{letter-spacing:0.098482px;}
.ls0_c00128{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00128{word-spacing:-26.487518px;}
.wsb_c00128{word-spacing:-20.443255px;}
.ws8_c00128{word-spacing:-20.024826px;}
.wsf_c00128{word-spacing:-19.128192px;}
.ws9_c00128{word-spacing:-18.769538px;}
.wsa_c00128{word-spacing:-16.617617px;}
.ws7_c00128{word-spacing:-16.199188px;}
.ws10_c00128{word-spacing:-14.824349px;}
.wse_c00128{word-spacing:-11.918882px;}
.ws5_c00128{word-spacing:-9.988424px;}
.ws6_c00128{word-spacing:-9.987499px;}
.ws13_c00128{word-spacing:0.000000px;}
.ws2_c00128{word-spacing:0.043999px;}
.ws11_c00128{word-spacing:0.175997px;}
.ws3_c00128{word-spacing:0.213446px;}
.ws12_c00128{word-spacing:0.219446px;}
.wsd_c00128{word-spacing:13.569061px;}
.ws4_c00128{word-spacing:43.038600px;}
.wsc_c00128{word-spacing:54.749856px;}
._1_c00128{margin-left:-6.369713px;}
._6_c00128{margin-left:-3.825638px;}
._3_c00128{margin-left:-1.075961px;}
._0_c00128{width:1.041538px;}
._2_c00128{width:19.349104px;}
._5_c00128{width:31.920170px;}
._4_c00128{width:117.097076px;}
.fc5_c00128{color:rgb(0,0,207);}
.fc4_c00128{color:rgb(143,89,3);}
.fc3_c00128{color:rgb(79,153,5);}
.fc6_c00128{color:rgb(6,69,173);}
.fc2_c00128{color:rgb(207,92,0);}
.fc1_c00128{color:rgb(0,0,0);}
.fc0_c00128{color:rgb(33,74,135);}
.fs0_c00128{font-size:43.999200px;}
.fs2_c00128{font-size:59.775600px;}
.fs1_c00128{font-size:86.077200px;}
.y0_c00128{bottom:0.000000px;}
.y1f_c00128{bottom:44.250000px;}
.y1e_c00128{bottom:82.051500px;}
.y1d_c00128{bottom:98.490000px;}
.y1c_c00128{bottom:114.927000px;}
.y1b_c00128{bottom:147.804000px;}
.y1a_c00128{bottom:180.681000px;}
.y19_c00128{bottom:196.746000px;}
.y18_c00128{bottom:243.456000px;}
.y17_c00128{bottom:261.388500px;}
.y16_c00128{bottom:279.322500px;}
.y15_c00128{bottom:297.255000px;}
.y14_c00128{bottom:323.904000px;}
.y13_c00128{bottom:341.836500px;}
.y12_c00128{bottom:368.487000px;}
.y11_c00128{bottom:386.419500px;}
.y10_c00128{bottom:413.070000px;}
.yf_c00128{bottom:439.719000px;}
.ye_c00128{bottom:481.741500px;}
.yd_c00128{bottom:946.164000px;}
.yc_c00128{bottom:962.602500px;}
.yb_c00128{bottom:979.041000px;}
.ya_c00128{bottom:995.479500px;}
.y9_c00128{bottom:1011.918000px;}
.y8_c00128{bottom:1028.356500px;}
.y7_c00128{bottom:1044.795000px;}
.y6_c00128{bottom:1061.232000px;}
.y5_c00128{bottom:1077.670500px;}
.y4_c00128{bottom:1094.109000px;}
.y3_c00128{bottom:1110.547500px;}
.y2_c00128{bottom:1143.424500px;}
.y1_c00128{bottom:1159.863000px;}
.h6_c00128{height:35.190766px;}
.h2_c00128{height:36.007158px;}
.h4_c00128{height:40.511979px;}
.h5_c00128{height:52.332837px;}
.h3_c00128{height:58.337477px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w0_c00128{width:892.920000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.x3_c00128{left:127.558500px;}
.x1_c00128{left:137.122500px;}
.x2_c00128{left:177.007500px;}
.x4_c00128{left:435.249000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls1_c00128{letter-spacing:0.078221pt;}
.ls2_c00128{letter-spacing:0.087539pt;}
.ls0_c00128{letter-spacing:0.092873pt;}
.ws1_c00128{word-spacing:-23.622682pt;}
.ws0_c00128{word-spacing:-23.544461pt;}
.wsb_c00128{word-spacing:-18.171782pt;}
.ws8_c00128{word-spacing:-17.799845pt;}
.wsf_c00128{word-spacing:-17.002837pt;}
.ws9_c00128{word-spacing:-16.684034pt;}
.wsa_c00128{word-spacing:-14.771215pt;}
.ws7_c00128{word-spacing:-14.399278pt;}
.ws10_c00128{word-spacing:-13.177199pt;}
.wse_c00128{word-spacing:-10.594562pt;}
.ws5_c00128{word-spacing:-8.878599pt;}
.ws6_c00128{word-spacing:-8.877777pt;}
.ws13_c00128{word-spacing:0.000000pt;}
.ws2_c00128{word-spacing:0.039110pt;}
.ws11_c00128{word-spacing:0.156442pt;}
.ws3_c00128{word-spacing:0.189730pt;}
.ws12_c00128{word-spacing:0.195063pt;}
.wsd_c00128{word-spacing:12.061388pt;}
.ws4_c00128{word-spacing:38.256533pt;}
.wsc_c00128{word-spacing:48.666539pt;}
._1_c00128{margin-left:-5.661967pt;}
._6_c00128{margin-left:-3.400567pt;}
._3_c00128{margin-left:-0.956410pt;}
._0_c00128{width:0.925811pt;}
._2_c00128{width:17.199203pt;}
._5_c00128{width:28.373485pt;}
._4_c00128{width:104.086290pt;}
.fs0_c00128{font-size:39.110400pt;}
.fs2_c00128{font-size:53.133867pt;}
.fs1_c00128{font-size:76.513067pt;}
.y0_c00128{bottom:0.000000pt;}
.y1f_c00128{bottom:39.333333pt;}
.y1e_c00128{bottom:72.934667pt;}
.y1d_c00128{bottom:87.546667pt;}
.y1c_c00128{bottom:102.157333pt;}
.y1b_c00128{bottom:131.381333pt;}
.y1a_c00128{bottom:160.605333pt;}
.y19_c00128{bottom:174.885333pt;}
.y18_c00128{bottom:216.405333pt;}
.y17_c00128{bottom:232.345333pt;}
.y16_c00128{bottom:248.286667pt;}
.y15_c00128{bottom:264.226667pt;}
.y14_c00128{bottom:287.914667pt;}
.y13_c00128{bottom:303.854667pt;}
.y12_c00128{bottom:327.544000pt;}
.y11_c00128{bottom:343.484000pt;}
.y10_c00128{bottom:367.173333pt;}
.yf_c00128{bottom:390.861333pt;}
.ye_c00128{bottom:428.214667pt;}
.yd_c00128{bottom:841.034667pt;}
.yc_c00128{bottom:855.646667pt;}
.yb_c00128{bottom:870.258667pt;}
.ya_c00128{bottom:884.870667pt;}
.y9_c00128{bottom:899.482667pt;}
.y8_c00128{bottom:914.094667pt;}
.y7_c00128{bottom:928.706667pt;}
.y6_c00128{bottom:943.317333pt;}
.y5_c00128{bottom:957.929333pt;}
.y4_c00128{bottom:972.541333pt;}
.y3_c00128{bottom:987.153333pt;}
.y2_c00128{bottom:1016.377333pt;}
.y1_c00128{bottom:1030.989333pt;}
.h6_c00128{height:31.280681pt;}
.h2_c00128{height:32.006363pt;}
.h4_c00128{height:36.010648pt;}
.h5_c00128{height:46.518078pt;}
.h3_c00128{height:51.855535pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w0_c00128{width:793.706667pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.x3_c00128{left:113.385333pt;}
.x1_c00128{left:121.886667pt;}
.x2_c00128{left:157.340000pt;}
.x4_c00128{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a589bf6a45b4f3f3dc56188.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.014648;font-style:normal;font-weight:normal;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_fa3ab033699dbf4b61a2c051.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_343c18c81eea2abb123c79ac.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls3_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.087998px;}
.ls1_c00129{letter-spacing:0.098482px;}
.ls2_c00129{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws8_c00129{word-spacing:-26.487518px;}
.wse_c00129{word-spacing:-18.769538px;}
.wsd_c00129{word-spacing:-14.943900px;}
.wsb_c00129{word-spacing:-9.988424px;}
.wsc_c00129{word-spacing:-9.987499px;}
.ws2_c00129{word-spacing:0.000000px;}
.ws4_c00129{word-spacing:0.043999px;}
.ws5_c00129{word-spacing:0.046284px;}
.ws3_c00129{word-spacing:0.056767px;}
.ws7_c00129{word-spacing:0.073250px;}
.ws6_c00129{word-spacing:0.073800px;}
.ws9_c00129{word-spacing:0.213446px;}
.ws0_c00129{word-spacing:0.219446px;}
.wsa_c00129{word-spacing:43.038600px;}
._4_c00129{margin-left:-6.369713px;}
._3_c00129{width:1.041538px;}
._5_c00129{width:19.935816px;}
._1_c00129{width:53.283031px;}
._0_c00129{width:79.858548px;}
._2_c00129{width:106.390066px;}
.fc5_c00129{color:rgb(207,92,0);}
.fc4_c00129{color:rgb(0,0,207);}
.fc3_c00129{color:rgb(79,153,5);}
.fc2_c00129{color:rgb(33,74,135);}
.fc1_c00129{color:rgb(143,89,3);}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:43.999200px;}
.fs2_c00129{font-size:59.775600px;}
.fs1_c00129{font-size:86.077200px;}
.y0_c00129{bottom:0.000000px;}
.y20_c00129{bottom:44.250000px;}
.y1f_c00129{bottom:82.051500px;}
.y1e_c00129{bottom:112.338000px;}
.y1d_c00129{bottom:142.626000px;}
.y1c_c00129{bottom:172.914000px;}
.y1b_c00129{bottom:220.090500px;}
.y1a_c00129{bottom:699.589500px;}
.y19_c00129{bottom:716.028000px;}
.y18_c00129{bottom:732.465000px;}
.y17_c00129{bottom:748.903500px;}
.y16_c00129{bottom:765.342000px;}
.y15_c00129{bottom:781.780500px;}
.y14_c00129{bottom:798.219000px;}
.y13_c00129{bottom:814.657500px;}
.y12_c00129{bottom:831.096000px;}
.y11_c00129{bottom:847.534500px;}
.y10_c00129{bottom:863.973000px;}
.yf_c00129{bottom:896.848500px;}
.ye_c00129{bottom:913.287000px;}
.yd_c00129{bottom:929.725500px;}
.yc_c00129{bottom:962.602500px;}
.yb_c00129{bottom:979.041000px;}
.ya_c00129{bottom:995.479500px;}
.y9_c00129{bottom:1011.918000px;}
.y8_c00129{bottom:1028.356500px;}
.y7_c00129{bottom:1044.795000px;}
.y6_c00129{bottom:1061.232000px;}
.y5_c00129{bottom:1077.670500px;}
.y4_c00129{bottom:1094.109000px;}
.y3_c00129{bottom:1110.547500px;}
.y2_c00129{bottom:1126.986000px;}
.y1_c00129{bottom:1143.424500px;}
.h3_c00129{height:35.190766px;}
.h2_c00129{height:36.007158px;}
.h5_c00129{height:40.511979px;}
.h6_c00129{height:52.332837px;}
.h4_c00129{height:58.337477px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w0_c00129{width:892.920000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.x4_c00129{left:127.558500px;}
.x1_c00129{left:137.122500px;}
.x2_c00129{left:143.770500px;}
.x3_c00129{left:177.007500px;}
.x5_c00129{left:435.249000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.078221pt;}
.ls1_c00129{letter-spacing:0.087539pt;}
.ls2_c00129{letter-spacing:0.092873pt;}
.ws1_c00129{word-spacing:-23.622682pt;}
.ws8_c00129{word-spacing:-23.544461pt;}
.wse_c00129{word-spacing:-16.684034pt;}
.wsd_c00129{word-spacing:-13.283467pt;}
.wsb_c00129{word-spacing:-8.878599pt;}
.wsc_c00129{word-spacing:-8.877777pt;}
.ws2_c00129{word-spacing:0.000000pt;}
.ws4_c00129{word-spacing:0.039110pt;}
.ws5_c00129{word-spacing:0.041141pt;}
.ws3_c00129{word-spacing:0.050460pt;}
.ws7_c00129{word-spacing:0.065111pt;}
.ws6_c00129{word-spacing:0.065600pt;}
.ws9_c00129{word-spacing:0.189730pt;}
.ws0_c00129{word-spacing:0.195063pt;}
.wsa_c00129{word-spacing:38.256533pt;}
._4_c00129{margin-left:-5.661967pt;}
._3_c00129{width:0.925811pt;}
._5_c00129{width:17.720725pt;}
._1_c00129{width:47.362694pt;}
._0_c00129{width:70.985376pt;}
._2_c00129{width:94.568947pt;}
.fs0_c00129{font-size:39.110400pt;}
.fs2_c00129{font-size:53.133867pt;}
.fs1_c00129{font-size:76.513067pt;}
.y0_c00129{bottom:0.000000pt;}
.y20_c00129{bottom:39.333333pt;}
.y1f_c00129{bottom:72.934667pt;}
.y1e_c00129{bottom:99.856000pt;}
.y1d_c00129{bottom:126.778667pt;}
.y1c_c00129{bottom:153.701333pt;}
.y1b_c00129{bottom:195.636000pt;}
.y1a_c00129{bottom:621.857333pt;}
.y19_c00129{bottom:636.469333pt;}
.y18_c00129{bottom:651.080000pt;}
.y17_c00129{bottom:665.692000pt;}
.y16_c00129{bottom:680.304000pt;}
.y15_c00129{bottom:694.916000pt;}
.y14_c00129{bottom:709.528000pt;}
.y13_c00129{bottom:724.140000pt;}
.y12_c00129{bottom:738.752000pt;}
.y11_c00129{bottom:753.364000pt;}
.y10_c00129{bottom:767.976000pt;}
.yf_c00129{bottom:797.198667pt;}
.ye_c00129{bottom:811.810667pt;}
.yd_c00129{bottom:826.422667pt;}
.yc_c00129{bottom:855.646667pt;}
.yb_c00129{bottom:870.258667pt;}
.ya_c00129{bottom:884.870667pt;}
.y9_c00129{bottom:899.482667pt;}
.y8_c00129{bottom:914.094667pt;}
.y7_c00129{bottom:928.706667pt;}
.y6_c00129{bottom:943.317333pt;}
.y5_c00129{bottom:957.929333pt;}
.y4_c00129{bottom:972.541333pt;}
.y3_c00129{bottom:987.153333pt;}
.y2_c00129{bottom:1001.765333pt;}
.y1_c00129{bottom:1016.377333pt;}
.h3_c00129{height:31.280681pt;}
.h2_c00129{height:32.006363pt;}
.h5_c00129{height:36.010648pt;}
.h6_c00129{height:46.518078pt;}
.h4_c00129{height:51.855535pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w0_c00129{width:793.706667pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.x4_c00129{left:113.385333pt;}
.x1_c00129{left:121.886667pt;}
.x2_c00129{left:127.796000pt;}
.x3_c00129{left:157.340000pt;}
.x5_c00129{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:0.893555;font-style:normal;font-weight:normal;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_5a87f43449bf92776527a2e6.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.102051;font-style:normal;font-weight:normal;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_e7841681ab9f4611ef928492.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:1.048828;font-style: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;}
.ls3_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.087998px;}
.ls2_c00130{letter-spacing:0.098482px;}
.ls1_c00130{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00130{word-spacing:-26.575517px;}
.ws8_c00130{word-spacing:-26.487518px;}
.ws4_c00130{word-spacing:-19.128192px;}
.ws6_c00130{word-spacing:-18.769538px;}
.ws5_c00130{word-spacing:-14.824349px;}
.ws3_c00130{word-spacing:-11.918882px;}
.wsb_c00130{word-spacing:0.000000px;}
.ws9_c00130{word-spacing:0.043999px;}
.wsd_c00130{word-spacing:0.046284px;}
.wsc_c00130{word-spacing:0.056767px;}
.wsf_c00130{word-spacing:0.073250px;}
.wse_c00130{word-spacing:0.073800px;}
.ws7_c00130{word-spacing:0.175997px;}
.ws10_c00130{word-spacing:0.213446px;}
.wsa_c00130{word-spacing:0.219446px;}
.ws1_c00130{word-spacing:13.569061px;}
.ws0_c00130{word-spacing:54.749856px;}
._3_c00130{margin-left:-3.825638px;}
._0_c00130{margin-left:-1.075961px;}
._5_c00130{width:1.005737px;}
._4_c00130{width:19.905275px;}
._2_c00130{width:31.920170px;}
._7_c00130{width:53.283031px;}
._6_c00130{width:79.858548px;}
._8_c00130{width:106.390066px;}
._1_c00130{width:117.097076px;}
.fc6_c00130{color:rgb(0,0,207);}
.fc5_c00130{color:rgb(79,153,5);}
.fc3_c00130{color:rgb(33,74,135);}
.fc2_c00130{color:rgb(143,89,3);}
.fc4_c00130{color:rgb(207,92,0);}
.fc1_c00130{color:rgb(6,69,173);}
.fc0_c00130{color:rgb(0,0,0);}
.fs1_c00130{font-size:43.999200px;}
.fs0_c00130{font-size:59.775600px;}
.y0_c00130{bottom:0.000000px;}
.y25_c00130{bottom:44.250000px;}
.y24_c00130{bottom:96.919500px;}
.y23_c00130{bottom:113.358000px;}
.y22_c00130{bottom:129.796500px;}
.y21_c00130{bottom:146.235000px;}
.y20_c00130{bottom:162.673500px;}
.y1f_c00130{bottom:179.112000px;}
.y1e_c00130{bottom:195.550500px;}
.y1d_c00130{bottom:211.989000px;}
.y1c_c00130{bottom:228.427500px;}
.y1b_c00130{bottom:244.866000px;}
.y1a_c00130{bottom:261.304500px;}
.y19_c00130{bottom:294.180000px;}
.y18_c00130{bottom:310.618500px;}
.y17_c00130{bottom:327.057000px;}
.y16_c00130{bottom:359.934000px;}
.y15_c00130{bottom:376.372500px;}
.y14_c00130{bottom:392.811000px;}
.y13_c00130{bottom:409.249500px;}
.y12_c00130{bottom:425.688000px;}
.y11_c00130{bottom:442.125000px;}
.y10_c00130{bottom:458.563500px;}
.yf_c00130{bottom:475.002000px;}
.ye_c00130{bottom:491.440500px;}
.yd_c00130{bottom:507.879000px;}
.yc_c00130{bottom:524.317500px;}
.yb_c00130{bottom:540.756000px;}
.ya_c00130{bottom:573.633000px;}
.y9_c00130{bottom:590.071500px;}
.y8_c00130{bottom:606.508500px;}
.y7_c00130{bottom:639.385500px;}
.y6_c00130{bottom:672.262500px;}
.y5_c00130{bottom:688.327500px;}
.y4_c00130{bottom:1106.064000px;}
.y3_c00130{bottom:1123.998000px;}
.y2_c00130{bottom:1141.930500px;}
.y1_c00130{bottom:1159.863000px;}
.h3_c00130{height:35.190766px;}
.h4_c00130{height:36.007158px;}
.h2_c00130{height:52.332837px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w0_c00130{width:892.920000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:127.558500px;}
.x2_c00130{left:137.122500px;}
.x3_c00130{left:143.770500px;}
.x4_c00130{left:177.007500px;}
.x5_c00130{left:435.249000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls3_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.078221pt;}
.ls2_c00130{letter-spacing:0.087539pt;}
.ls1_c00130{letter-spacing:0.092873pt;}
.ws2_c00130{word-spacing:-23.622682pt;}
.ws8_c00130{word-spacing:-23.544461pt;}
.ws4_c00130{word-spacing:-17.002837pt;}
.ws6_c00130{word-spacing:-16.684034pt;}
.ws5_c00130{word-spacing:-13.177199pt;}
.ws3_c00130{word-spacing:-10.594562pt;}
.wsb_c00130{word-spacing:0.000000pt;}
.ws9_c00130{word-spacing:0.039110pt;}
.wsd_c00130{word-spacing:0.041141pt;}
.wsc_c00130{word-spacing:0.050460pt;}
.wsf_c00130{word-spacing:0.065111pt;}
.wse_c00130{word-spacing:0.065600pt;}
.ws7_c00130{word-spacing:0.156442pt;}
.ws10_c00130{word-spacing:0.189730pt;}
.wsa_c00130{word-spacing:0.195063pt;}
.ws1_c00130{word-spacing:12.061388pt;}
.ws0_c00130{word-spacing:48.666539pt;}
._3_c00130{margin-left:-3.400567pt;}
._0_c00130{margin-left:-0.956410pt;}
._5_c00130{width:0.893988pt;}
._4_c00130{width:17.693578pt;}
._2_c00130{width:28.373485pt;}
._7_c00130{width:47.362694pt;}
._6_c00130{width:70.985376pt;}
._8_c00130{width:94.568947pt;}
._1_c00130{width:104.086290pt;}
.fs1_c00130{font-size:39.110400pt;}
.fs0_c00130{font-size:53.133867pt;}
.y0_c00130{bottom:0.000000pt;}
.y25_c00130{bottom:39.333333pt;}
.y24_c00130{bottom:86.150667pt;}
.y23_c00130{bottom:100.762667pt;}
.y22_c00130{bottom:115.374667pt;}
.y21_c00130{bottom:129.986667pt;}
.y20_c00130{bottom:144.598667pt;}
.y1f_c00130{bottom:159.210667pt;}
.y1e_c00130{bottom:173.822667pt;}
.y1d_c00130{bottom:188.434667pt;}
.y1c_c00130{bottom:203.046667pt;}
.y1b_c00130{bottom:217.658667pt;}
.y1a_c00130{bottom:232.270667pt;}
.y19_c00130{bottom:261.493333pt;}
.y18_c00130{bottom:276.105333pt;}
.y17_c00130{bottom:290.717333pt;}
.y16_c00130{bottom:319.941333pt;}
.y15_c00130{bottom:334.553333pt;}
.y14_c00130{bottom:349.165333pt;}
.y13_c00130{bottom:363.777333pt;}
.y12_c00130{bottom:378.389333pt;}
.y11_c00130{bottom:393.000000pt;}
.y10_c00130{bottom:407.612000pt;}
.yf_c00130{bottom:422.224000pt;}
.ye_c00130{bottom:436.836000pt;}
.yd_c00130{bottom:451.448000pt;}
.yc_c00130{bottom:466.060000pt;}
.yb_c00130{bottom:480.672000pt;}
.ya_c00130{bottom:509.896000pt;}
.y9_c00130{bottom:524.508000pt;}
.y8_c00130{bottom:539.118667pt;}
.y7_c00130{bottom:568.342667pt;}
.y6_c00130{bottom:597.566667pt;}
.y5_c00130{bottom:611.846667pt;}
.y4_c00130{bottom:983.168000pt;}
.y3_c00130{bottom:999.109333pt;}
.y2_c00130{bottom:1015.049333pt;}
.y1_c00130{bottom:1030.989333pt;}
.h3_c00130{height:31.280681pt;}
.h4_c00130{height:32.006363pt;}
.h2_c00130{height:46.518078pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w0_c00130{width:793.706667pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:113.385333pt;}
.x2_c00130{left:121.886667pt;}
.x3_c00130{left:127.796000pt;}
.x4_c00130{left:157.340000pt;}
.x5_c00130{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ae3911457306bf2c871ef10.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:0.893555;font-style:normal;font-weight:normal;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_f465dc571498c248827faa65.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.083496;font-style:normal;font-weight:normal;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_a8780fa056f6fc827a32c528.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.014648;font-style:normal;font-weight:normal;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_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:1.048828;font-style: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.000000px;}
.ls0_c00131{letter-spacing:0.087998px;}
.ls2_c00131{letter-spacing:0.098482px;}
.ls1_c00131{letter-spacing:0.104482px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00131{word-spacing:-26.575517px;}
.wsf_c00131{word-spacing:-26.487518px;}
.ws8_c00131{word-spacing:-19.905275px;}
.wsc_c00131{word-spacing:-19.128192px;}
.ws6_c00131{word-spacing:-18.769538px;}
.ws7_c00131{word-spacing:-16.079636px;}
.ws5_c00131{word-spacing:-15.900310px;}
.wsd_c00131{word-spacing:-14.824349px;}
.ws4_c00131{word-spacing:-12.134447px;}
.wsb_c00131{word-spacing:-11.918882px;}
.ws1_c00131{word-spacing:-9.988424px;}
.ws3_c00131{word-spacing:-9.987499px;}
.ws12_c00131{word-spacing:0.000000px;}
.ws10_c00131{word-spacing:0.043999px;}
.ws14_c00131{word-spacing:0.046284px;}
.ws13_c00131{word-spacing:0.056767px;}
.ws16_c00131{word-spacing:0.073250px;}
.ws15_c00131{word-spacing:0.073800px;}
.wse_c00131{word-spacing:0.175997px;}
.ws11_c00131{word-spacing:0.219446px;}
.wsa_c00131{word-spacing:13.569061px;}
.ws0_c00131{word-spacing:43.038600px;}
.ws9_c00131{word-spacing:54.749856px;}
._0_c00131{margin-left:-6.369713px;}
._6_c00131{margin-left:-3.825638px;}
._3_c00131{margin-left:-1.075961px;}
._7_c00131{width:1.005737px;}
._2_c00131{width:19.368236px;}
._1_c00131{width:25.658363px;}
._5_c00131{width:31.920170px;}
._9_c00131{width:53.283031px;}
._8_c00131{width:79.858548px;}
._a_c00131{width:106.390066px;}
._4_c00131{width:117.097076px;}
.fc6_c00131{color:rgb(0,0,207);}
.fc5_c00131{color:rgb(79,153,5);}
.fc3_c00131{color:rgb(33,74,135);}
.fc2_c00131{color:rgb(143,89,3);}
.fc4_c00131{color:rgb(207,92,0);}
.fc1_c00131{color:rgb(6,69,173);}
.fc0_c00131{color:rgb(0,0,0);}
.fs2_c00131{font-size:43.999200px;}
.fs1_c00131{font-size:59.775600px;}
.fs0_c00131{font-size:86.077200px;}
.y0_c00131{bottom:0.000000px;}
.y1f_c00131{bottom:44.250000px;}
.y1e_c00131{bottom:86.982000px;}
.y1d_c00131{bottom:119.859000px;}
.y1c_c00131{bottom:136.297500px;}
.y1b_c00131{bottom:152.736000px;}
.y1a_c00131{bottom:169.174500px;}
.y19_c00131{bottom:185.613000px;}
.y18_c00131{bottom:202.051500px;}
.y17_c00131{bottom:218.490000px;}
.y16_c00131{bottom:234.927000px;}
.y15_c00131{bottom:251.365500px;}
.y14_c00131{bottom:267.804000px;}
.y13_c00131{bottom:284.242500px;}
.y12_c00131{bottom:300.681000px;}
.y11_c00131{bottom:333.558000px;}
.y10_c00131{bottom:349.996500px;}
.yf_c00131{bottom:366.435000px;}
.ye_c00131{bottom:399.310500px;}
.yd_c00131{bottom:432.187500px;}
.yc_c00131{bottom:448.252500px;}
.yb_c00131{bottom:495.994500px;}
.ya_c00131{bottom:513.927000px;}
.y9_c00131{bottom:531.859500px;}
.y8_c00131{bottom:549.793500px;}
.y7_c00131{bottom:576.615000px;}
.y6_c00131{bottom:594.547500px;}
.y5_c00131{bottom:621.369000px;}
.y4_c00131{bottom:639.301500px;}
.y3_c00131{bottom:666.123000px;}
.y2_c00131{bottom:692.944500px;}
.y1_c00131{bottom:735.139500px;}
.h5_c00131{height:35.190766px;}
.h6_c00131{height:36.007158px;}
.h3_c00131{height:40.511979px;}
.h4_c00131{height:52.332837px;}
.h2_c00131{height:58.337477px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w0_c00131{width:892.920000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:127.558500px;}
.x2_c00131{left:137.122500px;}
.x3_c00131{left:143.770500px;}
.x4_c00131{left:435.249000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls3_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.078221pt;}
.ls2_c00131{letter-spacing:0.087539pt;}
.ls1_c00131{letter-spacing:0.092873pt;}
.ws2_c00131{word-spacing:-23.622682pt;}
.wsf_c00131{word-spacing:-23.544461pt;}
.ws8_c00131{word-spacing:-17.693578pt;}
.wsc_c00131{word-spacing:-17.002837pt;}
.ws6_c00131{word-spacing:-16.684034pt;}
.ws7_c00131{word-spacing:-14.293010pt;}
.ws5_c00131{word-spacing:-14.133609pt;}
.wsd_c00131{word-spacing:-13.177199pt;}
.ws4_c00131{word-spacing:-10.786175pt;}
.wsb_c00131{word-spacing:-10.594562pt;}
.ws1_c00131{word-spacing:-8.878599pt;}
.ws3_c00131{word-spacing:-8.877777pt;}
.ws12_c00131{word-spacing:0.000000pt;}
.ws10_c00131{word-spacing:0.039110pt;}
.ws14_c00131{word-spacing:0.041141pt;}
.ws13_c00131{word-spacing:0.050460pt;}
.ws16_c00131{word-spacing:0.065111pt;}
.ws15_c00131{word-spacing:0.065600pt;}
.wse_c00131{word-spacing:0.156442pt;}
.ws11_c00131{word-spacing:0.195063pt;}
.wsa_c00131{word-spacing:12.061388pt;}
.ws0_c00131{word-spacing:38.256533pt;}
.ws9_c00131{word-spacing:48.666539pt;}
._0_c00131{margin-left:-5.661967pt;}
._6_c00131{margin-left:-3.400567pt;}
._3_c00131{margin-left:-0.956410pt;}
._7_c00131{width:0.893988pt;}
._2_c00131{width:17.216210pt;}
._1_c00131{width:22.807434pt;}
._5_c00131{width:28.373485pt;}
._9_c00131{width:47.362694pt;}
._8_c00131{width:70.985376pt;}
._a_c00131{width:94.568947pt;}
._4_c00131{width:104.086290pt;}
.fs2_c00131{font-size:39.110400pt;}
.fs1_c00131{font-size:53.133867pt;}
.fs0_c00131{font-size:76.513067pt;}
.y0_c00131{bottom:0.000000pt;}
.y1f_c00131{bottom:39.333333pt;}
.y1e_c00131{bottom:77.317333pt;}
.y1d_c00131{bottom:106.541333pt;}
.y1c_c00131{bottom:121.153333pt;}
.y1b_c00131{bottom:135.765333pt;}
.y1a_c00131{bottom:150.377333pt;}
.y19_c00131{bottom:164.989333pt;}
.y18_c00131{bottom:179.601333pt;}
.y17_c00131{bottom:194.213333pt;}
.y16_c00131{bottom:208.824000pt;}
.y15_c00131{bottom:223.436000pt;}
.y14_c00131{bottom:238.048000pt;}
.y13_c00131{bottom:252.660000pt;}
.y12_c00131{bottom:267.272000pt;}
.y11_c00131{bottom:296.496000pt;}
.y10_c00131{bottom:311.108000pt;}
.yf_c00131{bottom:325.720000pt;}
.ye_c00131{bottom:354.942667pt;}
.yd_c00131{bottom:384.166667pt;}
.yc_c00131{bottom:398.446667pt;}
.yb_c00131{bottom:440.884000pt;}
.ya_c00131{bottom:456.824000pt;}
.y9_c00131{bottom:472.764000pt;}
.y8_c00131{bottom:488.705333pt;}
.y7_c00131{bottom:512.546667pt;}
.y6_c00131{bottom:528.486667pt;}
.y5_c00131{bottom:552.328000pt;}
.y4_c00131{bottom:568.268000pt;}
.y3_c00131{bottom:592.109333pt;}
.y2_c00131{bottom:615.950667pt;}
.y1_c00131{bottom:653.457333pt;}
.h5_c00131{height:31.280681pt;}
.h6_c00131{height:32.006363pt;}
.h3_c00131{height:36.010648pt;}
.h4_c00131{height:46.518078pt;}
.h2_c00131{height:51.855535pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w0_c00131{width:793.706667pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:113.385333pt;}
.x2_c00131{left:121.886667pt;}
.x3_c00131{left:127.796000pt;}
.x4_c00131{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.048828;font-style:normal;font-weight:normal;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_f8b963be128fef024cc508ff.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.083496;font-style:normal;font-weight:normal;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_ebfffa97426d532ff76a4be4.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.893555;font-style:normal;font-weight:normal;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_a8780fa056f6fc827a32c528.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:1.014648;font-style: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;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:0.087998px;}
.ls2_c00132{letter-spacing:0.098482px;}
.ls0_c00132{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00132{word-spacing:-26.487518px;}
.wsb_c00132{word-spacing:-19.128192px;}
.ws9_c00132{word-spacing:-18.769538px;}
.wsa_c00132{word-spacing:-15.302554px;}
.wsf_c00132{word-spacing:-14.824349px;}
.ws8_c00132{word-spacing:-13.628837px;}
.wse_c00132{word-spacing:-11.918882px;}
.ws5_c00132{word-spacing:-9.988424px;}
.ws6_c00132{word-spacing:-9.987499px;}
.ws7_c00132{word-spacing:-9.862974px;}
.ws12_c00132{word-spacing:0.000000px;}
.ws2_c00132{word-spacing:0.043999px;}
.ws10_c00132{word-spacing:0.175997px;}
.ws3_c00132{word-spacing:0.213446px;}
.ws11_c00132{word-spacing:0.219446px;}
.wsd_c00132{word-spacing:13.569061px;}
.ws4_c00132{word-spacing:43.038600px;}
.wsc_c00132{word-spacing:54.749856px;}
._1_c00132{margin-left:-6.369713px;}
._7_c00132{margin-left:-3.825638px;}
._4_c00132{margin-left:-1.075961px;}
._0_c00132{width:1.041538px;}
._3_c00132{width:19.785154px;}
._2_c00132{width:30.232890px;}
._6_c00132{width:31.920170px;}
._5_c00132{width:117.097076px;}
.fc5_c00132{color:rgb(0,0,207);}
.fc4_c00132{color:rgb(143,89,3);}
.fc3_c00132{color:rgb(79,153,5);}
.fc6_c00132{color:rgb(6,69,173);}
.fc2_c00132{color:rgb(207,92,0);}
.fc1_c00132{color:rgb(0,0,0);}
.fc0_c00132{color:rgb(33,74,135);}
.fs0_c00132{font-size:43.999200px;}
.fs2_c00132{font-size:59.775600px;}
.fs1_c00132{font-size:86.077200px;}
.y0_c00132{bottom:0.000000px;}
.y1f_c00132{bottom:44.250000px;}
.y1e_c00132{bottom:82.051500px;}
.y1d_c00132{bottom:98.490000px;}
.y1c_c00132{bottom:114.927000px;}
.y1b_c00132{bottom:147.804000px;}
.y1a_c00132{bottom:180.681000px;}
.y19_c00132{bottom:196.746000px;}
.y18_c00132{bottom:243.456000px;}
.y17_c00132{bottom:261.388500px;}
.y16_c00132{bottom:279.322500px;}
.y15_c00132{bottom:297.255000px;}
.y14_c00132{bottom:323.904000px;}
.y13_c00132{bottom:341.836500px;}
.y12_c00132{bottom:368.487000px;}
.y11_c00132{bottom:386.419500px;}
.y10_c00132{bottom:413.070000px;}
.yf_c00132{bottom:439.719000px;}
.ye_c00132{bottom:481.741500px;}
.yd_c00132{bottom:946.164000px;}
.yc_c00132{bottom:962.602500px;}
.yb_c00132{bottom:979.041000px;}
.ya_c00132{bottom:995.479500px;}
.y9_c00132{bottom:1011.918000px;}
.y8_c00132{bottom:1028.356500px;}
.y7_c00132{bottom:1044.795000px;}
.y6_c00132{bottom:1061.232000px;}
.y5_c00132{bottom:1077.670500px;}
.y4_c00132{bottom:1094.109000px;}
.y3_c00132{bottom:1110.547500px;}
.y2_c00132{bottom:1143.424500px;}
.y1_c00132{bottom:1159.863000px;}
.h6_c00132{height:35.190766px;}
.h2_c00132{height:36.007158px;}
.h4_c00132{height:40.511979px;}
.h5_c00132{height:52.332837px;}
.h3_c00132{height:58.337477px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w0_c00132{width:892.920000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:127.558500px;}
.x1_c00132{left:137.122500px;}
.x2_c00132{left:177.007500px;}
.x4_c00132{left:435.249000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:0.078221pt;}
.ls2_c00132{letter-spacing:0.087539pt;}
.ls0_c00132{letter-spacing:0.092873pt;}
.ws1_c00132{word-spacing:-23.622682pt;}
.ws0_c00132{word-spacing:-23.544461pt;}
.wsb_c00132{word-spacing:-17.002837pt;}
.ws9_c00132{word-spacing:-16.684034pt;}
.wsa_c00132{word-spacing:-13.602270pt;}
.wsf_c00132{word-spacing:-13.177199pt;}
.ws8_c00132{word-spacing:-12.114522pt;}
.wse_c00132{word-spacing:-10.594562pt;}
.ws5_c00132{word-spacing:-8.878599pt;}
.ws6_c00132{word-spacing:-8.877777pt;}
.ws7_c00132{word-spacing:-8.767088pt;}
.ws12_c00132{word-spacing:0.000000pt;}
.ws2_c00132{word-spacing:0.039110pt;}
.ws10_c00132{word-spacing:0.156442pt;}
.ws3_c00132{word-spacing:0.189730pt;}
.ws11_c00132{word-spacing:0.195063pt;}
.wsd_c00132{word-spacing:12.061388pt;}
.ws4_c00132{word-spacing:38.256533pt;}
.wsc_c00132{word-spacing:48.666539pt;}
._1_c00132{margin-left:-5.661967pt;}
._7_c00132{margin-left:-3.400567pt;}
._4_c00132{margin-left:-0.956410pt;}
._0_c00132{width:0.925811pt;}
._3_c00132{width:17.586803pt;}
._2_c00132{width:26.873680pt;}
._6_c00132{width:28.373485pt;}
._5_c00132{width:104.086290pt;}
.fs0_c00132{font-size:39.110400pt;}
.fs2_c00132{font-size:53.133867pt;}
.fs1_c00132{font-size:76.513067pt;}
.y0_c00132{bottom:0.000000pt;}
.y1f_c00132{bottom:39.333333pt;}
.y1e_c00132{bottom:72.934667pt;}
.y1d_c00132{bottom:87.546667pt;}
.y1c_c00132{bottom:102.157333pt;}
.y1b_c00132{bottom:131.381333pt;}
.y1a_c00132{bottom:160.605333pt;}
.y19_c00132{bottom:174.885333pt;}
.y18_c00132{bottom:216.405333pt;}
.y17_c00132{bottom:232.345333pt;}
.y16_c00132{bottom:248.286667pt;}
.y15_c00132{bottom:264.226667pt;}
.y14_c00132{bottom:287.914667pt;}
.y13_c00132{bottom:303.854667pt;}
.y12_c00132{bottom:327.544000pt;}
.y11_c00132{bottom:343.484000pt;}
.y10_c00132{bottom:367.173333pt;}
.yf_c00132{bottom:390.861333pt;}
.ye_c00132{bottom:428.214667pt;}
.yd_c00132{bottom:841.034667pt;}
.yc_c00132{bottom:855.646667pt;}
.yb_c00132{bottom:870.258667pt;}
.ya_c00132{bottom:884.870667pt;}
.y9_c00132{bottom:899.482667pt;}
.y8_c00132{bottom:914.094667pt;}
.y7_c00132{bottom:928.706667pt;}
.y6_c00132{bottom:943.317333pt;}
.y5_c00132{bottom:957.929333pt;}
.y4_c00132{bottom:972.541333pt;}
.y3_c00132{bottom:987.153333pt;}
.y2_c00132{bottom:1016.377333pt;}
.y1_c00132{bottom:1030.989333pt;}
.h6_c00132{height:31.280681pt;}
.h2_c00132{height:32.006363pt;}
.h4_c00132{height:36.010648pt;}
.h5_c00132{height:46.518078pt;}
.h3_c00132{height:51.855535pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w0_c00132{width:793.706667pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:113.385333pt;}
.x1_c00132{left:121.886667pt;}
.x2_c00132{left:157.340000pt;}
.x4_c00132{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_761a03537f569cce0e69ea7c.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_9b7e17f2e4cbf3df9ef3c7e9.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00133;src:url('chunks/assets/font_b125f9404f6ba6182b76e9af.woff2')format("woff");}.ff5_c00133{font-family:ff5_c00133;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls3_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:0.087998px;}
.ls1_c00133{letter-spacing:0.098482px;}
.ls2_c00133{letter-spacing:0.104482px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00133{word-spacing:-26.575517px;}
.ws8_c00133{word-spacing:-26.487518px;}
.wsf_c00133{word-spacing:-18.769538px;}
.wse_c00133{word-spacing:-15.183002px;}
.ws10_c00133{word-spacing:-14.943900px;}
.wsd_c00133{word-spacing:-11.357364px;}
.wsb_c00133{word-spacing:-9.988424px;}
.wsc_c00133{word-spacing:-9.987499px;}
.ws2_c00133{word-spacing:0.000000px;}
.ws4_c00133{word-spacing:0.043999px;}
.ws5_c00133{word-spacing:0.046284px;}
.ws3_c00133{word-spacing:0.056767px;}
.ws7_c00133{word-spacing:0.073250px;}
.ws6_c00133{word-spacing:0.073800px;}
.ws9_c00133{word-spacing:0.213446px;}
.ws0_c00133{word-spacing:0.219446px;}
.wsa_c00133{word-spacing:43.038600px;}
._4_c00133{margin-left:-6.369713px;}
._3_c00133{width:1.041538px;}
._6_c00133{width:19.930500px;}
._5_c00133{width:27.209280px;}
._1_c00133{width:53.283031px;}
._0_c00133{width:79.858548px;}
._2_c00133{width:106.390066px;}
.fc5_c00133{color:rgb(207,92,0);}
.fc4_c00133{color:rgb(0,0,207);}
.fc3_c00133{color:rgb(79,153,5);}
.fc2_c00133{color:rgb(33,74,135);}
.fc1_c00133{color:rgb(143,89,3);}
.fc0_c00133{color:rgb(0,0,0);}
.fs0_c00133{font-size:43.999200px;}
.fs2_c00133{font-size:59.775600px;}
.fs1_c00133{font-size:86.077200px;}
.y0_c00133{bottom:0.000000px;}
.y21_c00133{bottom:44.250000px;}
.y20_c00133{bottom:82.051500px;}
.y1f_c00133{bottom:110.274000px;}
.y1e_c00133{bottom:128.206500px;}
.y1d_c00133{bottom:156.429000px;}
.y1c_c00133{bottom:184.651500px;}
.y1b_c00133{bottom:228.838500px;}
.y1a_c00133{bottom:699.589500px;}
.y19_c00133{bottom:716.028000px;}
.y18_c00133{bottom:732.465000px;}
.y17_c00133{bottom:748.903500px;}
.y16_c00133{bottom:765.342000px;}
.y15_c00133{bottom:781.780500px;}
.y14_c00133{bottom:798.219000px;}
.y13_c00133{bottom:814.657500px;}
.y12_c00133{bottom:831.096000px;}
.y11_c00133{bottom:847.534500px;}
.y10_c00133{bottom:863.973000px;}
.yf_c00133{bottom:896.848500px;}
.ye_c00133{bottom:913.287000px;}
.yd_c00133{bottom:929.725500px;}
.yc_c00133{bottom:962.602500px;}
.yb_c00133{bottom:979.041000px;}
.ya_c00133{bottom:995.479500px;}
.y9_c00133{bottom:1011.918000px;}
.y8_c00133{bottom:1028.356500px;}
.y7_c00133{bottom:1044.795000px;}
.y6_c00133{bottom:1061.232000px;}
.y5_c00133{bottom:1077.670500px;}
.y4_c00133{bottom:1094.109000px;}
.y3_c00133{bottom:1110.547500px;}
.y2_c00133{bottom:1126.986000px;}
.y1_c00133{bottom:1143.424500px;}
.h3_c00133{height:35.190766px;}
.h2_c00133{height:36.007158px;}
.h5_c00133{height:40.511979px;}
.h6_c00133{height:52.332837px;}
.h4_c00133{height:58.337477px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w0_c00133{width:892.920000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x4_c00133{left:127.558500px;}
.x1_c00133{left:137.122500px;}
.x2_c00133{left:143.770500px;}
.x3_c00133{left:177.007500px;}
.x5_c00133{left:435.249000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls3_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:0.078221pt;}
.ls1_c00133{letter-spacing:0.087539pt;}
.ls2_c00133{letter-spacing:0.092873pt;}
.ws1_c00133{word-spacing:-23.622682pt;}
.ws8_c00133{word-spacing:-23.544461pt;}
.wsf_c00133{word-spacing:-16.684034pt;}
.wse_c00133{word-spacing:-13.496002pt;}
.ws10_c00133{word-spacing:-13.283467pt;}
.wsd_c00133{word-spacing:-10.095435pt;}
.wsb_c00133{word-spacing:-8.878599pt;}
.wsc_c00133{word-spacing:-8.877777pt;}
.ws2_c00133{word-spacing:0.000000pt;}
.ws4_c00133{word-spacing:0.039110pt;}
.ws5_c00133{word-spacing:0.041141pt;}
.ws3_c00133{word-spacing:0.050460pt;}
.ws7_c00133{word-spacing:0.065111pt;}
.ws6_c00133{word-spacing:0.065600pt;}
.ws9_c00133{word-spacing:0.189730pt;}
.ws0_c00133{word-spacing:0.195063pt;}
.wsa_c00133{word-spacing:38.256533pt;}
._4_c00133{margin-left:-5.661967pt;}
._3_c00133{width:0.925811pt;}
._6_c00133{width:17.716000pt;}
._5_c00133{width:24.186027pt;}
._1_c00133{width:47.362694pt;}
._0_c00133{width:70.985376pt;}
._2_c00133{width:94.568947pt;}
.fs0_c00133{font-size:39.110400pt;}
.fs2_c00133{font-size:53.133867pt;}
.fs1_c00133{font-size:76.513067pt;}
.y0_c00133{bottom:0.000000pt;}
.y21_c00133{bottom:39.333333pt;}
.y20_c00133{bottom:72.934667pt;}
.y1f_c00133{bottom:98.021333pt;}
.y1e_c00133{bottom:113.961333pt;}
.y1d_c00133{bottom:139.048000pt;}
.y1c_c00133{bottom:164.134667pt;}
.y1b_c00133{bottom:203.412000pt;}
.y1a_c00133{bottom:621.857333pt;}
.y19_c00133{bottom:636.469333pt;}
.y18_c00133{bottom:651.080000pt;}
.y17_c00133{bottom:665.692000pt;}
.y16_c00133{bottom:680.304000pt;}
.y15_c00133{bottom:694.916000pt;}
.y14_c00133{bottom:709.528000pt;}
.y13_c00133{bottom:724.140000pt;}
.y12_c00133{bottom:738.752000pt;}
.y11_c00133{bottom:753.364000pt;}
.y10_c00133{bottom:767.976000pt;}
.yf_c00133{bottom:797.198667pt;}
.ye_c00133{bottom:811.810667pt;}
.yd_c00133{bottom:826.422667pt;}
.yc_c00133{bottom:855.646667pt;}
.yb_c00133{bottom:870.258667pt;}
.ya_c00133{bottom:884.870667pt;}
.y9_c00133{bottom:899.482667pt;}
.y8_c00133{bottom:914.094667pt;}
.y7_c00133{bottom:928.706667pt;}
.y6_c00133{bottom:943.317333pt;}
.y5_c00133{bottom:957.929333pt;}
.y4_c00133{bottom:972.541333pt;}
.y3_c00133{bottom:987.153333pt;}
.y2_c00133{bottom:1001.765333pt;}
.y1_c00133{bottom:1016.377333pt;}
.h3_c00133{height:31.280681pt;}
.h2_c00133{height:32.006363pt;}
.h5_c00133{height:36.010648pt;}
.h6_c00133{height:46.518078pt;}
.h4_c00133{height:51.855535pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w0_c00133{width:793.706667pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x4_c00133{left:113.385333pt;}
.x1_c00133{left:121.886667pt;}
.x2_c00133{left:127.796000pt;}
.x3_c00133{left:157.340000pt;}
.x5_c00133{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:0.893555;font-style:normal;font-weight:normal;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_5a87f43449bf92776527a2e6.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.102051;font-style:normal;font-weight:normal;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_84a0a6d345dfc6ade51d98f2.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:1.048828;font-style: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;}
.ls3_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.087998px;}
.ls2_c00134{letter-spacing:0.098482px;}
.ls1_c00134{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00134{word-spacing:-26.575517px;}
.ws8_c00134{word-spacing:-26.487518px;}
.ws4_c00134{word-spacing:-19.128192px;}
.ws6_c00134{word-spacing:-18.769538px;}
.ws5_c00134{word-spacing:-14.824349px;}
.ws3_c00134{word-spacing:-11.918882px;}
.wsb_c00134{word-spacing:0.000000px;}
.ws9_c00134{word-spacing:0.043999px;}
.wsd_c00134{word-spacing:0.046284px;}
.wsc_c00134{word-spacing:0.056767px;}
.wsf_c00134{word-spacing:0.073250px;}
.wse_c00134{word-spacing:0.073800px;}
.ws7_c00134{word-spacing:0.175997px;}
.ws10_c00134{word-spacing:0.213446px;}
.wsa_c00134{word-spacing:0.219446px;}
.ws1_c00134{word-spacing:13.569061px;}
.ws0_c00134{word-spacing:54.749856px;}
._3_c00134{margin-left:-3.825638px;}
._0_c00134{margin-left:-1.075961px;}
._5_c00134{width:1.005737px;}
._4_c00134{width:19.905275px;}
._2_c00134{width:31.920170px;}
._7_c00134{width:53.283031px;}
._6_c00134{width:79.858548px;}
._8_c00134{width:106.390066px;}
._1_c00134{width:117.097076px;}
.fc6_c00134{color:rgb(0,0,207);}
.fc5_c00134{color:rgb(79,153,5);}
.fc3_c00134{color:rgb(33,74,135);}
.fc2_c00134{color:rgb(143,89,3);}
.fc4_c00134{color:rgb(207,92,0);}
.fc1_c00134{color:rgb(6,69,173);}
.fc0_c00134{color:rgb(0,0,0);}
.fs1_c00134{font-size:43.999200px;}
.fs0_c00134{font-size:59.775600px;}
.y0_c00134{bottom:0.000000px;}
.y25_c00134{bottom:44.250000px;}
.y24_c00134{bottom:96.919500px;}
.y23_c00134{bottom:113.358000px;}
.y22_c00134{bottom:129.796500px;}
.y21_c00134{bottom:146.235000px;}
.y20_c00134{bottom:162.673500px;}
.y1f_c00134{bottom:179.112000px;}
.y1e_c00134{bottom:195.550500px;}
.y1d_c00134{bottom:211.989000px;}
.y1c_c00134{bottom:228.427500px;}
.y1b_c00134{bottom:244.866000px;}
.y1a_c00134{bottom:261.304500px;}
.y19_c00134{bottom:294.180000px;}
.y18_c00134{bottom:310.618500px;}
.y17_c00134{bottom:327.057000px;}
.y16_c00134{bottom:359.934000px;}
.y15_c00134{bottom:376.372500px;}
.y14_c00134{bottom:392.811000px;}
.y13_c00134{bottom:409.249500px;}
.y12_c00134{bottom:425.688000px;}
.y11_c00134{bottom:442.125000px;}
.y10_c00134{bottom:458.563500px;}
.yf_c00134{bottom:475.002000px;}
.ye_c00134{bottom:491.440500px;}
.yd_c00134{bottom:507.879000px;}
.yc_c00134{bottom:524.317500px;}
.yb_c00134{bottom:540.756000px;}
.ya_c00134{bottom:573.633000px;}
.y9_c00134{bottom:590.071500px;}
.y8_c00134{bottom:606.508500px;}
.y7_c00134{bottom:639.385500px;}
.y6_c00134{bottom:672.262500px;}
.y5_c00134{bottom:688.327500px;}
.y4_c00134{bottom:1106.064000px;}
.y3_c00134{bottom:1123.998000px;}
.y2_c00134{bottom:1141.930500px;}
.y1_c00134{bottom:1159.863000px;}
.h3_c00134{height:35.190766px;}
.h4_c00134{height:36.007158px;}
.h2_c00134{height:52.332837px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w0_c00134{width:892.920000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:127.558500px;}
.x2_c00134{left:137.122500px;}
.x3_c00134{left:143.770500px;}
.x4_c00134{left:177.007500px;}
.x5_c00134{left:435.249000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls3_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.078221pt;}
.ls2_c00134{letter-spacing:0.087539pt;}
.ls1_c00134{letter-spacing:0.092873pt;}
.ws2_c00134{word-spacing:-23.622682pt;}
.ws8_c00134{word-spacing:-23.544461pt;}
.ws4_c00134{word-spacing:-17.002837pt;}
.ws6_c00134{word-spacing:-16.684034pt;}
.ws5_c00134{word-spacing:-13.177199pt;}
.ws3_c00134{word-spacing:-10.594562pt;}
.wsb_c00134{word-spacing:0.000000pt;}
.ws9_c00134{word-spacing:0.039110pt;}
.wsd_c00134{word-spacing:0.041141pt;}
.wsc_c00134{word-spacing:0.050460pt;}
.wsf_c00134{word-spacing:0.065111pt;}
.wse_c00134{word-spacing:0.065600pt;}
.ws7_c00134{word-spacing:0.156442pt;}
.ws10_c00134{word-spacing:0.189730pt;}
.wsa_c00134{word-spacing:0.195063pt;}
.ws1_c00134{word-spacing:12.061388pt;}
.ws0_c00134{word-spacing:48.666539pt;}
._3_c00134{margin-left:-3.400567pt;}
._0_c00134{margin-left:-0.956410pt;}
._5_c00134{width:0.893988pt;}
._4_c00134{width:17.693578pt;}
._2_c00134{width:28.373485pt;}
._7_c00134{width:47.362694pt;}
._6_c00134{width:70.985376pt;}
._8_c00134{width:94.568947pt;}
._1_c00134{width:104.086290pt;}
.fs1_c00134{font-size:39.110400pt;}
.fs0_c00134{font-size:53.133867pt;}
.y0_c00134{bottom:0.000000pt;}
.y25_c00134{bottom:39.333333pt;}
.y24_c00134{bottom:86.150667pt;}
.y23_c00134{bottom:100.762667pt;}
.y22_c00134{bottom:115.374667pt;}
.y21_c00134{bottom:129.986667pt;}
.y20_c00134{bottom:144.598667pt;}
.y1f_c00134{bottom:159.210667pt;}
.y1e_c00134{bottom:173.822667pt;}
.y1d_c00134{bottom:188.434667pt;}
.y1c_c00134{bottom:203.046667pt;}
.y1b_c00134{bottom:217.658667pt;}
.y1a_c00134{bottom:232.270667pt;}
.y19_c00134{bottom:261.493333pt;}
.y18_c00134{bottom:276.105333pt;}
.y17_c00134{bottom:290.717333pt;}
.y16_c00134{bottom:319.941333pt;}
.y15_c00134{bottom:334.553333pt;}
.y14_c00134{bottom:349.165333pt;}
.y13_c00134{bottom:363.777333pt;}
.y12_c00134{bottom:378.389333pt;}
.y11_c00134{bottom:393.000000pt;}
.y10_c00134{bottom:407.612000pt;}
.yf_c00134{bottom:422.224000pt;}
.ye_c00134{bottom:436.836000pt;}
.yd_c00134{bottom:451.448000pt;}
.yc_c00134{bottom:466.060000pt;}
.yb_c00134{bottom:480.672000pt;}
.ya_c00134{bottom:509.896000pt;}
.y9_c00134{bottom:524.508000pt;}
.y8_c00134{bottom:539.118667pt;}
.y7_c00134{bottom:568.342667pt;}
.y6_c00134{bottom:597.566667pt;}
.y5_c00134{bottom:611.846667pt;}
.y4_c00134{bottom:983.168000pt;}
.y3_c00134{bottom:999.109333pt;}
.y2_c00134{bottom:1015.049333pt;}
.y1_c00134{bottom:1030.989333pt;}
.h3_c00134{height:31.280681pt;}
.h4_c00134{height:32.006363pt;}
.h2_c00134{height:46.518078pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w0_c00134{width:793.706667pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:113.385333pt;}
.x2_c00134{left:121.886667pt;}
.x3_c00134{left:127.796000pt;}
.x4_c00134{left:157.340000pt;}
.x5_c00134{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a079c5e64c1f378ccca95287.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:0.893555;font-style:normal;font-weight:normal;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_5cb27e80fd6d98293480a4e1.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_c10b44b6e42773121a7f0ec3.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.048828;font-style: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;}
.ls3_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.087998px;}
.ls2_c00135{letter-spacing:0.098482px;}
.ls1_c00135{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00135{word-spacing:-26.575517px;}
.wse_c00135{word-spacing:-26.487518px;}
.ws5_c00135{word-spacing:-20.383480px;}
.wsb_c00135{word-spacing:-19.128192px;}
.ws7_c00135{word-spacing:-18.769538px;}
.ws4_c00135{word-spacing:-16.617617px;}
.ws6_c00135{word-spacing:-14.943900px;}
.wsc_c00135{word-spacing:-14.824349px;}
.wsa_c00135{word-spacing:-11.918882px;}
.ws1_c00135{word-spacing:-9.988424px;}
.ws3_c00135{word-spacing:-9.987499px;}
.ws11_c00135{word-spacing:0.000000px;}
.wsf_c00135{word-spacing:0.043999px;}
.ws13_c00135{word-spacing:0.046284px;}
.ws12_c00135{word-spacing:0.056767px;}
.ws15_c00135{word-spacing:0.073250px;}
.ws14_c00135{word-spacing:0.073800px;}
.wsd_c00135{word-spacing:0.175997px;}
.ws16_c00135{word-spacing:0.213446px;}
.ws10_c00135{word-spacing:0.219446px;}
.ws9_c00135{word-spacing:13.569061px;}
.ws0_c00135{word-spacing:43.038600px;}
.ws8_c00135{word-spacing:54.749856px;}
._0_c00135{margin-left:-6.369713px;}
._6_c00135{margin-left:-3.825638px;}
._2_c00135{margin-left:-2.823569px;}
._3_c00135{margin-left:-1.075961px;}
._7_c00135{width:1.005737px;}
._1_c00135{width:19.167533px;}
._5_c00135{width:31.920170px;}
._9_c00135{width:53.283031px;}
._8_c00135{width:79.858548px;}
._a_c00135{width:106.390066px;}
._4_c00135{width:117.097076px;}
.fc6_c00135{color:rgb(0,0,207);}
.fc5_c00135{color:rgb(79,153,5);}
.fc3_c00135{color:rgb(33,74,135);}
.fc2_c00135{color:rgb(143,89,3);}
.fc4_c00135{color:rgb(207,92,0);}
.fc1_c00135{color:rgb(6,69,173);}
.fc0_c00135{color:rgb(0,0,0);}
.fs2_c00135{font-size:43.999200px;}
.fs1_c00135{font-size:59.775600px;}
.fs0_c00135{font-size:86.077200px;}
.y0_c00135{bottom:0.000000px;}
.y1f_c00135{bottom:44.250000px;}
.y1e_c00135{bottom:86.982000px;}
.y1d_c00135{bottom:103.420500px;}
.y1c_c00135{bottom:119.859000px;}
.y1b_c00135{bottom:152.736000px;}
.y1a_c00135{bottom:169.174500px;}
.y19_c00135{bottom:185.613000px;}
.y18_c00135{bottom:202.051500px;}
.y17_c00135{bottom:218.490000px;}
.y16_c00135{bottom:234.927000px;}
.y15_c00135{bottom:251.365500px;}
.y14_c00135{bottom:267.804000px;}
.y13_c00135{bottom:284.242500px;}
.y12_c00135{bottom:300.681000px;}
.y11_c00135{bottom:317.119500px;}
.y10_c00135{bottom:333.558000px;}
.yf_c00135{bottom:366.435000px;}
.ye_c00135{bottom:382.873500px;}
.yd_c00135{bottom:399.310500px;}
.yc_c00135{bottom:432.187500px;}
.yb_c00135{bottom:465.064500px;}
.ya_c00135{bottom:481.129500px;}
.y9_c00135{bottom:529.780500px;}
.y8_c00135{bottom:547.713000px;}
.y7_c00135{bottom:565.647000px;}
.y6_c00135{bottom:583.579500px;}
.y5_c00135{bottom:610.656000px;}
.y4_c00135{bottom:637.732500px;}
.y3_c00135{bottom:664.810500px;}
.y2_c00135{bottom:691.887000px;}
.y1_c00135{bottom:734.416500px;}
.h5_c00135{height:35.190766px;}
.h6_c00135{height:36.007158px;}
.h3_c00135{height:40.511979px;}
.h4_c00135{height:52.332837px;}
.h2_c00135{height:58.337477px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w0_c00135{width:892.920000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:127.558500px;}
.x2_c00135{left:137.122500px;}
.x3_c00135{left:143.770500px;}
.x4_c00135{left:435.249000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls3_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.078221pt;}
.ls2_c00135{letter-spacing:0.087539pt;}
.ls1_c00135{letter-spacing:0.092873pt;}
.ws2_c00135{word-spacing:-23.622682pt;}
.wse_c00135{word-spacing:-23.544461pt;}
.ws5_c00135{word-spacing:-18.118649pt;}
.wsb_c00135{word-spacing:-17.002837pt;}
.ws7_c00135{word-spacing:-16.684034pt;}
.ws4_c00135{word-spacing:-14.771215pt;}
.ws6_c00135{word-spacing:-13.283467pt;}
.wsc_c00135{word-spacing:-13.177199pt;}
.wsa_c00135{word-spacing:-10.594562pt;}
.ws1_c00135{word-spacing:-8.878599pt;}
.ws3_c00135{word-spacing:-8.877777pt;}
.ws11_c00135{word-spacing:0.000000pt;}
.wsf_c00135{word-spacing:0.039110pt;}
.ws13_c00135{word-spacing:0.041141pt;}
.ws12_c00135{word-spacing:0.050460pt;}
.ws15_c00135{word-spacing:0.065111pt;}
.ws14_c00135{word-spacing:0.065600pt;}
.wsd_c00135{word-spacing:0.156442pt;}
.ws16_c00135{word-spacing:0.189730pt;}
.ws10_c00135{word-spacing:0.195063pt;}
.ws9_c00135{word-spacing:12.061388pt;}
.ws0_c00135{word-spacing:38.256533pt;}
.ws8_c00135{word-spacing:48.666539pt;}
._0_c00135{margin-left:-5.661967pt;}
._6_c00135{margin-left:-3.400567pt;}
._2_c00135{margin-left:-2.509839pt;}
._3_c00135{margin-left:-0.956410pt;}
._7_c00135{width:0.893988pt;}
._1_c00135{width:17.037807pt;}
._5_c00135{width:28.373485pt;}
._9_c00135{width:47.362694pt;}
._8_c00135{width:70.985376pt;}
._a_c00135{width:94.568947pt;}
._4_c00135{width:104.086290pt;}
.fs2_c00135{font-size:39.110400pt;}
.fs1_c00135{font-size:53.133867pt;}
.fs0_c00135{font-size:76.513067pt;}
.y0_c00135{bottom:0.000000pt;}
.y1f_c00135{bottom:39.333333pt;}
.y1e_c00135{bottom:77.317333pt;}
.y1d_c00135{bottom:91.929333pt;}
.y1c_c00135{bottom:106.541333pt;}
.y1b_c00135{bottom:135.765333pt;}
.y1a_c00135{bottom:150.377333pt;}
.y19_c00135{bottom:164.989333pt;}
.y18_c00135{bottom:179.601333pt;}
.y17_c00135{bottom:194.213333pt;}
.y16_c00135{bottom:208.824000pt;}
.y15_c00135{bottom:223.436000pt;}
.y14_c00135{bottom:238.048000pt;}
.y13_c00135{bottom:252.660000pt;}
.y12_c00135{bottom:267.272000pt;}
.y11_c00135{bottom:281.884000pt;}
.y10_c00135{bottom:296.496000pt;}
.yf_c00135{bottom:325.720000pt;}
.ye_c00135{bottom:340.332000pt;}
.yd_c00135{bottom:354.942667pt;}
.yc_c00135{bottom:384.166667pt;}
.yb_c00135{bottom:413.390667pt;}
.ya_c00135{bottom:427.670667pt;}
.y9_c00135{bottom:470.916000pt;}
.y8_c00135{bottom:486.856000pt;}
.y7_c00135{bottom:502.797333pt;}
.y6_c00135{bottom:518.737333pt;}
.y5_c00135{bottom:542.805333pt;}
.y4_c00135{bottom:566.873333pt;}
.y3_c00135{bottom:590.942667pt;}
.y2_c00135{bottom:615.010667pt;}
.y1_c00135{bottom:652.814667pt;}
.h5_c00135{height:31.280681pt;}
.h6_c00135{height:32.006363pt;}
.h3_c00135{height:36.010648pt;}
.h4_c00135{height:46.518078pt;}
.h2_c00135{height:51.855535pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w0_c00135{width:793.706667pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:113.385333pt;}
.x2_c00135{left:121.886667pt;}
.x3_c00135{left:127.796000pt;}
.x4_c00135{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10e5d56d6b2f43e79224b05a.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.083496;font-style:normal;font-weight:normal;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_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.048828;font-style:normal;font-weight:normal;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_a079c5e64c1f378ccca95287.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:0.893555;font-style:normal;font-weight:normal;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_675e35d5a748f473ae2841ac.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:1.014648;font-style: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;}
.ls3_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.087998px;}
.ls2_c00136{letter-spacing:0.098482px;}
.ls1_c00136{letter-spacing:0.104482px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-26.575517px;}
.ws1_c00136{word-spacing:-26.487518px;}
.ws6_c00136{word-spacing:-21.339889px;}
.wsc_c00136{word-spacing:-19.128192px;}
.ws7_c00136{word-spacing:-18.769538px;}
.ws5_c00136{word-spacing:-17.514251px;}
.ws8_c00136{word-spacing:-14.943900px;}
.wsd_c00136{word-spacing:-14.824349px;}
.wsb_c00136{word-spacing:-11.918882px;}
.ws3_c00136{word-spacing:-9.988424px;}
.ws4_c00136{word-spacing:-9.987499px;}
.ws11_c00136{word-spacing:0.000000px;}
.wsf_c00136{word-spacing:0.043999px;}
.wse_c00136{word-spacing:0.175997px;}
.ws10_c00136{word-spacing:0.219446px;}
.wsa_c00136{word-spacing:13.569061px;}
.ws2_c00136{word-spacing:43.038600px;}
.ws9_c00136{word-spacing:54.749856px;}
._0_c00136{margin-left:-6.369713px;}
._6_c00136{margin-left:-3.825638px;}
._3_c00136{margin-left:-1.075961px;}
._7_c00136{width:1.005737px;}
._1_c00136{width:18.678167px;}
._2_c00136{width:19.930500px;}
._5_c00136{width:31.920170px;}
._4_c00136{width:117.097076px;}
.fc5_c00136{color:rgb(0,0,207);}
.fc6_c00136{color:rgb(6,69,173);}
.fc4_c00136{color:rgb(207,92,0);}
.fc3_c00136{color:rgb(33,74,135);}
.fc2_c00136{color:rgb(79,153,5);}
.fc1_c00136{color:rgb(143,89,3);}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:43.999200px;}
.fs2_c00136{font-size:59.775600px;}
.fs1_c00136{font-size:86.077200px;}
.y0_c00136{bottom:0.000000px;}
.y1e_c00136{bottom:44.250000px;}
.y1d_c00136{bottom:82.051500px;}
.y1c_c00136{bottom:98.490000px;}
.y1b_c00136{bottom:131.365500px;}
.y1a_c00136{bottom:147.804000px;}
.y19_c00136{bottom:164.242500px;}
.y18_c00136{bottom:197.119500px;}
.y17_c00136{bottom:229.996500px;}
.y16_c00136{bottom:246.061500px;}
.y15_c00136{bottom:293.416500px;}
.y14_c00136{bottom:311.349000px;}
.y13_c00136{bottom:329.281500px;}
.y12_c00136{bottom:347.215500px;}
.y11_c00136{bottom:373.972500px;}
.y10_c00136{bottom:400.729500px;}
.yf_c00136{bottom:418.662000px;}
.ye_c00136{bottom:445.419000px;}
.yd_c00136{bottom:472.177500px;}
.yc_c00136{bottom:514.308000px;}
.yb_c00136{bottom:979.041000px;}
.ya_c00136{bottom:995.479500px;}
.y9_c00136{bottom:1011.918000px;}
.y8_c00136{bottom:1028.356500px;}
.y7_c00136{bottom:1044.795000px;}
.y6_c00136{bottom:1061.232000px;}
.y5_c00136{bottom:1077.670500px;}
.y4_c00136{bottom:1094.109000px;}
.y3_c00136{bottom:1110.547500px;}
.y2_c00136{bottom:1126.986000px;}
.y1_c00136{bottom:1143.424500px;}
.h6_c00136{height:35.190766px;}
.h2_c00136{height:36.007158px;}
.h4_c00136{height:40.511979px;}
.h5_c00136{height:52.332837px;}
.h3_c00136{height:58.337477px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w0_c00136{width:892.920000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x3_c00136{left:127.558500px;}
.x1_c00136{left:137.122500px;}
.x4_c00136{left:143.770500px;}
.x2_c00136{left:177.007500px;}
.x5_c00136{left:435.249000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls3_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.078221pt;}
.ls2_c00136{letter-spacing:0.087539pt;}
.ls1_c00136{letter-spacing:0.092873pt;}
.ws0_c00136{word-spacing:-23.622682pt;}
.ws1_c00136{word-spacing:-23.544461pt;}
.ws6_c00136{word-spacing:-18.968790pt;}
.wsc_c00136{word-spacing:-17.002837pt;}
.ws7_c00136{word-spacing:-16.684034pt;}
.ws5_c00136{word-spacing:-15.568223pt;}
.ws8_c00136{word-spacing:-13.283467pt;}
.wsd_c00136{word-spacing:-13.177199pt;}
.wsb_c00136{word-spacing:-10.594562pt;}
.ws3_c00136{word-spacing:-8.878599pt;}
.ws4_c00136{word-spacing:-8.877777pt;}
.ws11_c00136{word-spacing:0.000000pt;}
.wsf_c00136{word-spacing:0.039110pt;}
.wse_c00136{word-spacing:0.156442pt;}
.ws10_c00136{word-spacing:0.195063pt;}
.wsa_c00136{word-spacing:12.061388pt;}
.ws2_c00136{word-spacing:38.256533pt;}
.ws9_c00136{word-spacing:48.666539pt;}
._0_c00136{margin-left:-5.661967pt;}
._6_c00136{margin-left:-3.400567pt;}
._3_c00136{margin-left:-0.956410pt;}
._7_c00136{width:0.893988pt;}
._1_c00136{width:16.602815pt;}
._2_c00136{width:17.716000pt;}
._5_c00136{width:28.373485pt;}
._4_c00136{width:104.086290pt;}
.fs0_c00136{font-size:39.110400pt;}
.fs2_c00136{font-size:53.133867pt;}
.fs1_c00136{font-size:76.513067pt;}
.y0_c00136{bottom:0.000000pt;}
.y1e_c00136{bottom:39.333333pt;}
.y1d_c00136{bottom:72.934667pt;}
.y1c_c00136{bottom:87.546667pt;}
.y1b_c00136{bottom:116.769333pt;}
.y1a_c00136{bottom:131.381333pt;}
.y19_c00136{bottom:145.993333pt;}
.y18_c00136{bottom:175.217333pt;}
.y17_c00136{bottom:204.441333pt;}
.y16_c00136{bottom:218.721333pt;}
.y15_c00136{bottom:260.814667pt;}
.y14_c00136{bottom:276.754667pt;}
.y13_c00136{bottom:292.694667pt;}
.y12_c00136{bottom:308.636000pt;}
.y11_c00136{bottom:332.420000pt;}
.y10_c00136{bottom:356.204000pt;}
.yf_c00136{bottom:372.144000pt;}
.ye_c00136{bottom:395.928000pt;}
.yd_c00136{bottom:419.713333pt;}
.yc_c00136{bottom:457.162667pt;}
.yb_c00136{bottom:870.258667pt;}
.ya_c00136{bottom:884.870667pt;}
.y9_c00136{bottom:899.482667pt;}
.y8_c00136{bottom:914.094667pt;}
.y7_c00136{bottom:928.706667pt;}
.y6_c00136{bottom:943.317333pt;}
.y5_c00136{bottom:957.929333pt;}
.y4_c00136{bottom:972.541333pt;}
.y3_c00136{bottom:987.153333pt;}
.y2_c00136{bottom:1001.765333pt;}
.y1_c00136{bottom:1016.377333pt;}
.h6_c00136{height:31.280681pt;}
.h2_c00136{height:32.006363pt;}
.h4_c00136{height:36.010648pt;}
.h5_c00136{height:46.518078pt;}
.h3_c00136{height:51.855535pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w0_c00136{width:793.706667pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x3_c00136{left:113.385333pt;}
.x1_c00136{left:121.886667pt;}
.x4_c00136{left:127.796000pt;}
.x2_c00136{left:157.340000pt;}
.x5_c00136{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aca3025ffd4f9393768be0da.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.014648;font-style:normal;font-weight:normal;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_dd69531480c2ee0f71d6dc2a.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_c70ca751ae500f64797a3c04.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.102051;font-style: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;}
.ls3_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.087998px;}
.ls1_c00137{letter-spacing:0.098482px;}
.ls2_c00137{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws7_c00137{word-spacing:-26.487518px;}
.ws13_c00137{word-spacing:-19.128192px;}
.wse_c00137{word-spacing:-18.769538px;}
.wsd_c00137{word-spacing:-17.334924px;}
.wsf_c00137{word-spacing:-14.943900px;}
.wsc_c00137{word-spacing:-13.569061px;}
.ws12_c00137{word-spacing:-11.918882px;}
.wsa_c00137{word-spacing:-9.988424px;}
.wsb_c00137{word-spacing:-9.987499px;}
.ws6_c00137{word-spacing:0.000000px;}
.ws2_c00137{word-spacing:0.043999px;}
.ws3_c00137{word-spacing:0.046284px;}
.ws0_c00137{word-spacing:0.056767px;}
.ws5_c00137{word-spacing:0.073250px;}
.ws4_c00137{word-spacing:0.073800px;}
.ws8_c00137{word-spacing:0.213446px;}
.ws11_c00137{word-spacing:13.569061px;}
.ws9_c00137{word-spacing:43.038600px;}
.ws10_c00137{word-spacing:54.749856px;}
._4_c00137{margin-left:-6.369713px;}
._7_c00137{margin-left:-1.075961px;}
._3_c00137{width:1.041538px;}
._6_c00137{width:19.930500px;}
._5_c00137{width:22.850977px;}
._1_c00137{width:53.283031px;}
._0_c00137{width:79.858548px;}
._2_c00137{width:106.390066px;}
._8_c00137{width:117.097076px;}
.fc6_c00137{color:rgb(6,69,173);}
.fc5_c00137{color:rgb(207,92,0);}
.fc4_c00137{color:rgb(0,0,207);}
.fc3_c00137{color:rgb(143,89,3);}
.fc2_c00137{color:rgb(0,0,0);}
.fc1_c00137{color:rgb(79,153,5);}
.fc0_c00137{color:rgb(33,74,135);}
.fs0_c00137{font-size:43.999200px;}
.fs2_c00137{font-size:59.775600px;}
.fs1_c00137{font-size:86.077200px;}
.y0_c00137{bottom:0.000000px;}
.y21_c00137{bottom:44.250000px;}
.y20_c00137{bottom:82.051500px;}
.y1f_c00137{bottom:99.984000px;}
.y1e_c00137{bottom:128.532000px;}
.y1d_c00137{bottom:157.081500px;}
.y1c_c00137{bottom:175.014000px;}
.y1b_c00137{bottom:203.563500px;}
.y1a_c00137{bottom:232.111500px;}
.y19_c00137{bottom:276.771000px;}
.y18_c00137{bottom:748.903500px;}
.y17_c00137{bottom:765.342000px;}
.y16_c00137{bottom:781.780500px;}
.y15_c00137{bottom:798.219000px;}
.y14_c00137{bottom:814.657500px;}
.y13_c00137{bottom:831.096000px;}
.y12_c00137{bottom:847.534500px;}
.y11_c00137{bottom:863.973000px;}
.y10_c00137{bottom:880.411500px;}
.yf_c00137{bottom:896.848500px;}
.ye_c00137{bottom:913.287000px;}
.yd_c00137{bottom:946.164000px;}
.yc_c00137{bottom:962.602500px;}
.yb_c00137{bottom:979.041000px;}
.ya_c00137{bottom:1011.918000px;}
.y9_c00137{bottom:1028.356500px;}
.y8_c00137{bottom:1044.795000px;}
.y7_c00137{bottom:1061.232000px;}
.y6_c00137{bottom:1077.670500px;}
.y5_c00137{bottom:1094.109000px;}
.y4_c00137{bottom:1110.547500px;}
.y3_c00137{bottom:1126.986000px;}
.y2_c00137{bottom:1143.424500px;}
.y1_c00137{bottom:1159.863000px;}
.h3_c00137{height:35.190766px;}
.h2_c00137{height:36.007158px;}
.h5_c00137{height:40.511979px;}
.h6_c00137{height:52.332837px;}
.h4_c00137{height:58.337477px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w0_c00137{width:892.920000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x4_c00137{left:127.558500px;}
.x2_c00137{left:137.122500px;}
.x1_c00137{left:143.770500px;}
.x3_c00137{left:177.007500px;}
.x5_c00137{left:435.249000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls3_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.078221pt;}
.ls1_c00137{letter-spacing:0.087539pt;}
.ls2_c00137{letter-spacing:0.092873pt;}
.ws1_c00137{word-spacing:-23.622682pt;}
.ws7_c00137{word-spacing:-23.544461pt;}
.ws13_c00137{word-spacing:-17.002837pt;}
.wse_c00137{word-spacing:-16.684034pt;}
.wsd_c00137{word-spacing:-15.408821pt;}
.wsf_c00137{word-spacing:-13.283467pt;}
.wsc_c00137{word-spacing:-12.061388pt;}
.ws12_c00137{word-spacing:-10.594562pt;}
.wsa_c00137{word-spacing:-8.878599pt;}
.wsb_c00137{word-spacing:-8.877777pt;}
.ws6_c00137{word-spacing:0.000000pt;}
.ws2_c00137{word-spacing:0.039110pt;}
.ws3_c00137{word-spacing:0.041141pt;}
.ws0_c00137{word-spacing:0.050460pt;}
.ws5_c00137{word-spacing:0.065111pt;}
.ws4_c00137{word-spacing:0.065600pt;}
.ws8_c00137{word-spacing:0.189730pt;}
.ws11_c00137{word-spacing:12.061388pt;}
.ws9_c00137{word-spacing:38.256533pt;}
.ws10_c00137{word-spacing:48.666539pt;}
._4_c00137{margin-left:-5.661967pt;}
._7_c00137{margin-left:-0.956410pt;}
._3_c00137{width:0.925811pt;}
._6_c00137{width:17.716000pt;}
._5_c00137{width:20.311980pt;}
._1_c00137{width:47.362694pt;}
._0_c00137{width:70.985376pt;}
._2_c00137{width:94.568947pt;}
._8_c00137{width:104.086290pt;}
.fs0_c00137{font-size:39.110400pt;}
.fs2_c00137{font-size:53.133867pt;}
.fs1_c00137{font-size:76.513067pt;}
.y0_c00137{bottom:0.000000pt;}
.y21_c00137{bottom:39.333333pt;}
.y20_c00137{bottom:72.934667pt;}
.y1f_c00137{bottom:88.874667pt;}
.y1e_c00137{bottom:114.250667pt;}
.y1d_c00137{bottom:139.628000pt;}
.y1c_c00137{bottom:155.568000pt;}
.y1b_c00137{bottom:180.945333pt;}
.y1a_c00137{bottom:206.321333pt;}
.y19_c00137{bottom:246.018667pt;}
.y18_c00137{bottom:665.692000pt;}
.y17_c00137{bottom:680.304000pt;}
.y16_c00137{bottom:694.916000pt;}
.y15_c00137{bottom:709.528000pt;}
.y14_c00137{bottom:724.140000pt;}
.y13_c00137{bottom:738.752000pt;}
.y12_c00137{bottom:753.364000pt;}
.y11_c00137{bottom:767.976000pt;}
.y10_c00137{bottom:782.588000pt;}
.yf_c00137{bottom:797.198667pt;}
.ye_c00137{bottom:811.810667pt;}
.yd_c00137{bottom:841.034667pt;}
.yc_c00137{bottom:855.646667pt;}
.yb_c00137{bottom:870.258667pt;}
.ya_c00137{bottom:899.482667pt;}
.y9_c00137{bottom:914.094667pt;}
.y8_c00137{bottom:928.706667pt;}
.y7_c00137{bottom:943.317333pt;}
.y6_c00137{bottom:957.929333pt;}
.y5_c00137{bottom:972.541333pt;}
.y4_c00137{bottom:987.153333pt;}
.y3_c00137{bottom:1001.765333pt;}
.y2_c00137{bottom:1016.377333pt;}
.y1_c00137{bottom:1030.989333pt;}
.h3_c00137{height:31.280681pt;}
.h2_c00137{height:32.006363pt;}
.h5_c00137{height:36.010648pt;}
.h6_c00137{height:46.518078pt;}
.h4_c00137{height:51.855535pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w0_c00137{width:793.706667pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x4_c00137{left:113.385333pt;}
.x2_c00137{left:121.886667pt;}
.x1_c00137{left:127.796000pt;}
.x3_c00137{left:157.340000pt;}
.x5_c00137{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77dacadad05cffe153fbaf97.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_1fdc62f85c047f81f83a456b.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls3_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.087998px;}
.ls2_c00138{letter-spacing:0.098482px;}
.ls0_c00138{letter-spacing:0.104482px;}
.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;}
}
.ws4_c00138{word-spacing:-26.575517px;}
.ws3_c00138{word-spacing:-26.487518px;}
.ws1_c00138{word-spacing:-18.769538px;}
.ws0_c00138{word-spacing:-14.824349px;}
.ws7_c00138{word-spacing:0.000000px;}
.ws5_c00138{word-spacing:0.043999px;}
.ws9_c00138{word-spacing:0.046284px;}
.ws8_c00138{word-spacing:0.056767px;}
.wsb_c00138{word-spacing:0.073250px;}
.wsa_c00138{word-spacing:0.073800px;}
.ws2_c00138{word-spacing:0.175997px;}
.wsc_c00138{word-spacing:0.213446px;}
.ws6_c00138{word-spacing:0.219446px;}
._1_c00138{margin-left:-3.825638px;}
._3_c00138{width:1.005737px;}
._2_c00138{width:19.905275px;}
._0_c00138{width:31.920170px;}
._5_c00138{width:53.283031px;}
._4_c00138{width:79.858548px;}
._6_c00138{width:106.390066px;}
.fc5_c00138{color:rgb(0,0,207);}
.fc4_c00138{color:rgb(79,153,5);}
.fc3_c00138{color:rgb(207,92,0);}
.fc2_c00138{color:rgb(33,74,135);}
.fc1_c00138{color:rgb(143,89,3);}
.fc0_c00138{color:rgb(0,0,0);}
.fs1_c00138{font-size:43.999200px;}
.fs0_c00138{font-size:59.775600px;}
.y0_c00138{bottom:0.000000px;}
.y23_c00138{bottom:44.250000px;}
.y22_c00138{bottom:492.045000px;}
.y21_c00138{bottom:508.483500px;}
.y20_c00138{bottom:524.920500px;}
.y1f_c00138{bottom:541.359000px;}
.y1e_c00138{bottom:557.797500px;}
.y1d_c00138{bottom:574.236000px;}
.y1c_c00138{bottom:590.674500px;}
.y1b_c00138{bottom:607.113000px;}
.y1a_c00138{bottom:623.551500px;}
.y19_c00138{bottom:639.990000px;}
.y18_c00138{bottom:656.428500px;}
.y17_c00138{bottom:689.304000px;}
.y16_c00138{bottom:705.742500px;}
.y15_c00138{bottom:722.181000px;}
.y14_c00138{bottom:755.058000px;}
.y13_c00138{bottom:771.496500px;}
.y12_c00138{bottom:787.935000px;}
.y11_c00138{bottom:804.373500px;}
.y10_c00138{bottom:820.812000px;}
.yf_c00138{bottom:837.250500px;}
.ye_c00138{bottom:853.689000px;}
.yd_c00138{bottom:870.126000px;}
.yc_c00138{bottom:886.564500px;}
.yb_c00138{bottom:903.003000px;}
.ya_c00138{bottom:919.441500px;}
.y9_c00138{bottom:935.880000px;}
.y8_c00138{bottom:968.757000px;}
.y7_c00138{bottom:985.195500px;}
.y6_c00138{bottom:1001.634000px;}
.y5_c00138{bottom:1034.509500px;}
.y4_c00138{bottom:1067.386500px;}
.y3_c00138{bottom:1083.451500px;}
.y2_c00138{bottom:1141.930500px;}
.y1_c00138{bottom:1159.863000px;}
.h3_c00138{height:35.190766px;}
.h4_c00138{height:36.007158px;}
.h2_c00138{height:52.332837px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w0_c00138{width:892.920000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:127.558500px;}
.x2_c00138{left:137.122500px;}
.x3_c00138{left:143.770500px;}
.x4_c00138{left:177.007500px;}
.x5_c00138{left:435.249000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls3_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.078221pt;}
.ls2_c00138{letter-spacing:0.087539pt;}
.ls0_c00138{letter-spacing:0.092873pt;}
.ws4_c00138{word-spacing:-23.622682pt;}
.ws3_c00138{word-spacing:-23.544461pt;}
.ws1_c00138{word-spacing:-16.684034pt;}
.ws0_c00138{word-spacing:-13.177199pt;}
.ws7_c00138{word-spacing:0.000000pt;}
.ws5_c00138{word-spacing:0.039110pt;}
.ws9_c00138{word-spacing:0.041141pt;}
.ws8_c00138{word-spacing:0.050460pt;}
.wsb_c00138{word-spacing:0.065111pt;}
.wsa_c00138{word-spacing:0.065600pt;}
.ws2_c00138{word-spacing:0.156442pt;}
.wsc_c00138{word-spacing:0.189730pt;}
.ws6_c00138{word-spacing:0.195063pt;}
._1_c00138{margin-left:-3.400567pt;}
._3_c00138{width:0.893988pt;}
._2_c00138{width:17.693578pt;}
._0_c00138{width:28.373485pt;}
._5_c00138{width:47.362694pt;}
._4_c00138{width:70.985376pt;}
._6_c00138{width:94.568947pt;}
.fs1_c00138{font-size:39.110400pt;}
.fs0_c00138{font-size:53.133867pt;}
.y0_c00138{bottom:0.000000pt;}
.y23_c00138{bottom:39.333333pt;}
.y22_c00138{bottom:437.373333pt;}
.y21_c00138{bottom:451.985333pt;}
.y20_c00138{bottom:466.596000pt;}
.y1f_c00138{bottom:481.208000pt;}
.y1e_c00138{bottom:495.820000pt;}
.y1d_c00138{bottom:510.432000pt;}
.y1c_c00138{bottom:525.044000pt;}
.y1b_c00138{bottom:539.656000pt;}
.y1a_c00138{bottom:554.268000pt;}
.y19_c00138{bottom:568.880000pt;}
.y18_c00138{bottom:583.492000pt;}
.y17_c00138{bottom:612.714667pt;}
.y16_c00138{bottom:627.326667pt;}
.y15_c00138{bottom:641.938667pt;}
.y14_c00138{bottom:671.162667pt;}
.y13_c00138{bottom:685.774667pt;}
.y12_c00138{bottom:700.386667pt;}
.y11_c00138{bottom:714.998667pt;}
.y10_c00138{bottom:729.610667pt;}
.yf_c00138{bottom:744.222667pt;}
.ye_c00138{bottom:758.834667pt;}
.yd_c00138{bottom:773.445333pt;}
.yc_c00138{bottom:788.057333pt;}
.yb_c00138{bottom:802.669333pt;}
.ya_c00138{bottom:817.281333pt;}
.y9_c00138{bottom:831.893333pt;}
.y8_c00138{bottom:861.117333pt;}
.y7_c00138{bottom:875.729333pt;}
.y6_c00138{bottom:890.341333pt;}
.y5_c00138{bottom:919.564000pt;}
.y4_c00138{bottom:948.788000pt;}
.y3_c00138{bottom:963.068000pt;}
.y2_c00138{bottom:1015.049333pt;}
.y1_c00138{bottom:1030.989333pt;}
.h3_c00138{height:31.280681pt;}
.h4_c00138{height:32.006363pt;}
.h2_c00138{height:46.518078pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w0_c00138{width:793.706667pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:113.385333pt;}
.x2_c00138{left:121.886667pt;}
.x3_c00138{left:127.796000pt;}
.x4_c00138{left:157.340000pt;}
.x5_c00138{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9921fac66ba5d87ab0fdc9b.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:0.893555;font-style:normal;font-weight:normal;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_84a0a6d345dfc6ade51d98f2.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.083496;font-style:normal;font-weight:normal;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_eed56663fe2e7fcb1b7b0c63.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00139;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:1.048828;font-style: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;}
.v1_c00139{vertical-align:22.518000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.087998px;}
.ls2_c00139{letter-spacing:0.098482px;}
.ls1_c00139{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00139{word-spacing:-33.713438px;}
.ws2_c00139{word-spacing:-26.575517px;}
.ws14_c00139{word-spacing:-26.487518px;}
.ws8_c00139{word-spacing:-23.599339px;}
.wsc_c00139{word-spacing:-22.415850px;}
.ws11_c00139{word-spacing:-19.128192px;}
.wsa_c00139{word-spacing:-18.769538px;}
.wsb_c00139{word-spacing:-18.590212px;}
.ws12_c00139{word-spacing:-14.824349px;}
.ws10_c00139{word-spacing:-11.918882px;}
.ws9_c00139{word-spacing:-11.895344px;}
.ws5_c00139{word-spacing:-11.835569px;}
.ws1_c00139{word-spacing:-9.988424px;}
.ws3_c00139{word-spacing:-9.987499px;}
.wsd_c00139{word-spacing:-9.279230px;}
.ws4_c00139{word-spacing:-8.069706px;}
.ws17_c00139{word-spacing:0.000000px;}
.ws15_c00139{word-spacing:0.043999px;}
.ws19_c00139{word-spacing:0.046284px;}
.ws18_c00139{word-spacing:0.056767px;}
.ws1b_c00139{word-spacing:0.073250px;}
.ws1a_c00139{word-spacing:0.073800px;}
.ws13_c00139{word-spacing:0.175997px;}
.ws1c_c00139{word-spacing:0.213446px;}
.ws16_c00139{word-spacing:0.219446px;}
.ws6_c00139{word-spacing:1.280770px;}
.wsf_c00139{word-spacing:13.569061px;}
.ws0_c00139{word-spacing:43.038600px;}
.wse_c00139{word-spacing:54.749856px;}
._0_c00139{margin-left:-6.369713px;}
._4_c00139{margin-left:-3.586536px;}
._5_c00139{margin-left:-1.075961px;}
._8_c00139{width:1.005737px;}
._2_c00139{width:2.702441px;}
._3_c00139{width:18.122812px;}
._7_c00139{width:31.920170px;}
._1_c00139{width:33.845622px;}
._a_c00139{width:53.283031px;}
._9_c00139{width:79.858548px;}
._b_c00139{width:106.390066px;}
._6_c00139{width:117.097076px;}
.fc6_c00139{color:rgb(0,0,207);}
.fc5_c00139{color:rgb(79,153,5);}
.fc3_c00139{color:rgb(33,74,135);}
.fc2_c00139{color:rgb(143,89,3);}
.fc4_c00139{color:rgb(207,92,0);}
.fc1_c00139{color:rgb(6,69,173);}
.fc0_c00139{color:rgb(0,0,0);}
.fs3_c00139{font-size:41.842800px;}
.fs2_c00139{font-size:43.999200px;}
.fs1_c00139{font-size:59.775600px;}
.fs0_c00139{font-size:86.077200px;}
.y0_c00139{bottom:0.000000px;}
.y2c_c00139{bottom:44.250000px;}
.y2b_c00139{bottom:96.919500px;}
.y2a_c00139{bottom:113.358000px;}
.y29_c00139{bottom:129.796500px;}
.y28_c00139{bottom:146.235000px;}
.y27_c00139{bottom:162.673500px;}
.y26_c00139{bottom:179.112000px;}
.y25_c00139{bottom:195.550500px;}
.y24_c00139{bottom:211.989000px;}
.y23_c00139{bottom:228.427500px;}
.y22_c00139{bottom:244.866000px;}
.y21_c00139{bottom:261.304500px;}
.y20_c00139{bottom:294.180000px;}
.y1f_c00139{bottom:310.618500px;}
.y1e_c00139{bottom:327.057000px;}
.y1d_c00139{bottom:359.934000px;}
.y1c_c00139{bottom:376.372500px;}
.y1b_c00139{bottom:392.811000px;}
.y1a_c00139{bottom:409.249500px;}
.y19_c00139{bottom:425.688000px;}
.y18_c00139{bottom:442.125000px;}
.y17_c00139{bottom:458.563500px;}
.y16_c00139{bottom:475.002000px;}
.y15_c00139{bottom:491.440500px;}
.y14_c00139{bottom:507.879000px;}
.y13_c00139{bottom:524.317500px;}
.y12_c00139{bottom:540.756000px;}
.y11_c00139{bottom:573.633000px;}
.y10_c00139{bottom:590.071500px;}
.yf_c00139{bottom:606.508500px;}
.ye_c00139{bottom:639.385500px;}
.yd_c00139{bottom:672.262500px;}
.yc_c00139{bottom:688.327500px;}
.yb_c00139{bottom:794.352000px;}
.ya_c00139{bottom:812.284500px;}
.y9_c00139{bottom:830.217000px;}
.y8_c00139{bottom:848.149500px;}
.y7_c00139{bottom:898.176000px;}
.y6_c00139{bottom:916.108500px;}
.y5_c00139{bottom:966.135000px;}
.y4_c00139{bottom:984.067500px;}
.y3_c00139{bottom:1034.094000px;}
.y2_c00139{bottom:1084.120500px;}
.y1_c00139{bottom:1159.863000px;}
.h6_c00139{height:35.190766px;}
.h7_c00139{height:36.007158px;}
.h3_c00139{height:40.511979px;}
.h5_c00139{height:52.332837px;}
.h2_c00139{height:58.337477px;}
.h4_c00139{height:59.150881px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w0_c00139{width:892.920000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:127.558500px;}
.x2_c00139{left:137.122500px;}
.x3_c00139{left:143.770500px;}
.x4_c00139{left:177.007500px;}
.x5_c00139{left:435.249000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:20.016000pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.078221pt;}
.ls2_c00139{letter-spacing:0.087539pt;}
.ls1_c00139{letter-spacing:0.092873pt;}
.ws7_c00139{word-spacing:-29.967501pt;}
.ws2_c00139{word-spacing:-23.622682pt;}
.ws14_c00139{word-spacing:-23.544461pt;}
.ws8_c00139{word-spacing:-20.977190pt;}
.wsc_c00139{word-spacing:-19.925200pt;}
.ws11_c00139{word-spacing:-17.002837pt;}
.wsa_c00139{word-spacing:-16.684034pt;}
.wsb_c00139{word-spacing:-16.524633pt;}
.ws12_c00139{word-spacing:-13.177199pt;}
.ws10_c00139{word-spacing:-10.594562pt;}
.ws9_c00139{word-spacing:-10.573639pt;}
.ws5_c00139{word-spacing:-10.520506pt;}
.ws1_c00139{word-spacing:-8.878599pt;}
.ws3_c00139{word-spacing:-8.877777pt;}
.wsd_c00139{word-spacing:-8.248205pt;}
.ws4_c00139{word-spacing:-7.173072pt;}
.ws17_c00139{word-spacing:0.000000pt;}
.ws15_c00139{word-spacing:0.039110pt;}
.ws19_c00139{word-spacing:0.041141pt;}
.ws18_c00139{word-spacing:0.050460pt;}
.ws1b_c00139{word-spacing:0.065111pt;}
.ws1a_c00139{word-spacing:0.065600pt;}
.ws13_c00139{word-spacing:0.156442pt;}
.ws1c_c00139{word-spacing:0.189730pt;}
.ws16_c00139{word-spacing:0.195063pt;}
.ws6_c00139{word-spacing:1.138462pt;}
.wsf_c00139{word-spacing:12.061388pt;}
.ws0_c00139{word-spacing:38.256533pt;}
.wse_c00139{word-spacing:48.666539pt;}
._0_c00139{margin-left:-5.661967pt;}
._4_c00139{margin-left:-3.188032pt;}
._5_c00139{margin-left:-0.956410pt;}
._8_c00139{width:0.893988pt;}
._2_c00139{width:2.402170pt;}
._3_c00139{width:16.109166pt;}
._7_c00139{width:28.373485pt;}
._1_c00139{width:30.084997pt;}
._a_c00139{width:47.362694pt;}
._9_c00139{width:70.985376pt;}
._b_c00139{width:94.568947pt;}
._6_c00139{width:104.086290pt;}
.fs3_c00139{font-size:37.193600pt;}
.fs2_c00139{font-size:39.110400pt;}
.fs1_c00139{font-size:53.133867pt;}
.fs0_c00139{font-size:76.513067pt;}
.y0_c00139{bottom:0.000000pt;}
.y2c_c00139{bottom:39.333333pt;}
.y2b_c00139{bottom:86.150667pt;}
.y2a_c00139{bottom:100.762667pt;}
.y29_c00139{bottom:115.374667pt;}
.y28_c00139{bottom:129.986667pt;}
.y27_c00139{bottom:144.598667pt;}
.y26_c00139{bottom:159.210667pt;}
.y25_c00139{bottom:173.822667pt;}
.y24_c00139{bottom:188.434667pt;}
.y23_c00139{bottom:203.046667pt;}
.y22_c00139{bottom:217.658667pt;}
.y21_c00139{bottom:232.270667pt;}
.y20_c00139{bottom:261.493333pt;}
.y1f_c00139{bottom:276.105333pt;}
.y1e_c00139{bottom:290.717333pt;}
.y1d_c00139{bottom:319.941333pt;}
.y1c_c00139{bottom:334.553333pt;}
.y1b_c00139{bottom:349.165333pt;}
.y1a_c00139{bottom:363.777333pt;}
.y19_c00139{bottom:378.389333pt;}
.y18_c00139{bottom:393.000000pt;}
.y17_c00139{bottom:407.612000pt;}
.y16_c00139{bottom:422.224000pt;}
.y15_c00139{bottom:436.836000pt;}
.y14_c00139{bottom:451.448000pt;}
.y13_c00139{bottom:466.060000pt;}
.y12_c00139{bottom:480.672000pt;}
.y11_c00139{bottom:509.896000pt;}
.y10_c00139{bottom:524.508000pt;}
.yf_c00139{bottom:539.118667pt;}
.ye_c00139{bottom:568.342667pt;}
.yd_c00139{bottom:597.566667pt;}
.yc_c00139{bottom:611.846667pt;}
.yb_c00139{bottom:706.090667pt;}
.ya_c00139{bottom:722.030667pt;}
.y9_c00139{bottom:737.970667pt;}
.y8_c00139{bottom:753.910667pt;}
.y7_c00139{bottom:798.378667pt;}
.y6_c00139{bottom:814.318667pt;}
.y5_c00139{bottom:858.786667pt;}
.y4_c00139{bottom:874.726667pt;}
.y3_c00139{bottom:919.194667pt;}
.y2_c00139{bottom:963.662667pt;}
.y1_c00139{bottom:1030.989333pt;}
.h6_c00139{height:31.280681pt;}
.h7_c00139{height:32.006363pt;}
.h3_c00139{height:36.010648pt;}
.h5_c00139{height:46.518078pt;}
.h2_c00139{height:51.855535pt;}
.h4_c00139{height:52.578561pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w0_c00139{width:793.706667pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:113.385333pt;}
.x2_c00139{left:121.886667pt;}
.x3_c00139{left:127.796000pt;}
.x4_c00139{left:157.340000pt;}
.x5_c00139{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f91b1f36b679f5ce11b6089.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:0.893555;font-style:normal;font-weight:normal;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_5cb27e80fd6d98293480a4e1.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_eed56663fe2e7fcb1b7b0c63.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:1.048828;font-style: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;}
.v1_c00140{vertical-align:22.518000px;}
.ls3_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.087998px;}
.ls2_c00140{letter-spacing:0.098482px;}
.ls1_c00140{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00140{word-spacing:-33.713438px;}
.ws2_c00140{word-spacing:-26.575517px;}
.ws13_c00140{word-spacing:-26.487518px;}
.ws8_c00140{word-spacing:-23.599339px;}
.ws10_c00140{word-spacing:-19.128192px;}
.ws9_c00140{word-spacing:-18.769538px;}
.ws5_c00140{word-spacing:-15.960085px;}
.ws11_c00140{word-spacing:-14.824349px;}
.wsb_c00140{word-spacing:-13.987490px;}
.ws4_c00140{word-spacing:-12.134447px;}
.wsf_c00140{word-spacing:-11.918882px;}
.wsa_c00140{word-spacing:-10.161852px;}
.ws1_c00140{word-spacing:-9.988424px;}
.ws3_c00140{word-spacing:-9.987499px;}
.ws6_c00140{word-spacing:-2.835230px;}
.wsc_c00140{word-spacing:-0.831230px;}
.ws16_c00140{word-spacing:0.000000px;}
.ws14_c00140{word-spacing:0.043999px;}
.ws18_c00140{word-spacing:0.046284px;}
.ws17_c00140{word-spacing:0.056767px;}
.ws1a_c00140{word-spacing:0.073250px;}
.ws19_c00140{word-spacing:0.073800px;}
.ws12_c00140{word-spacing:0.175997px;}
.ws15_c00140{word-spacing:0.219446px;}
.wse_c00140{word-spacing:13.569061px;}
.ws0_c00140{word-spacing:43.038600px;}
.wsd_c00140{word-spacing:54.749856px;}
._0_c00140{margin-left:-6.369713px;}
._4_c00140{margin-left:-3.586536px;}
._5_c00140{margin-left:-1.075961px;}
._8_c00140{width:1.005737px;}
._2_c00140{width:2.826456px;}
._1_c00140{width:25.568363px;}
._3_c00140{width:29.602452px;}
._7_c00140{width:31.920170px;}
._a_c00140{width:53.283031px;}
._9_c00140{width:79.858548px;}
._b_c00140{width:106.390066px;}
._6_c00140{width:117.097076px;}
.fc6_c00140{color:rgb(0,0,207);}
.fc5_c00140{color:rgb(79,153,5);}
.fc3_c00140{color:rgb(33,74,135);}
.fc2_c00140{color:rgb(143,89,3);}
.fc4_c00140{color:rgb(207,92,0);}
.fc1_c00140{color:rgb(6,69,173);}
.fc0_c00140{color:rgb(0,0,0);}
.fs3_c00140{font-size:41.842800px;}
.fs2_c00140{font-size:43.999200px;}
.fs1_c00140{font-size:59.775600px;}
.fs0_c00140{font-size:86.077200px;}
.y0_c00140{bottom:0.000000px;}
.y1f_c00140{bottom:44.250000px;}
.y1e_c00140{bottom:86.982000px;}
.y1d_c00140{bottom:119.859000px;}
.y1c_c00140{bottom:136.297500px;}
.y1b_c00140{bottom:152.736000px;}
.y1a_c00140{bottom:169.174500px;}
.y19_c00140{bottom:185.613000px;}
.y18_c00140{bottom:202.051500px;}
.y17_c00140{bottom:218.490000px;}
.y16_c00140{bottom:234.927000px;}
.y15_c00140{bottom:251.365500px;}
.y14_c00140{bottom:267.804000px;}
.y13_c00140{bottom:284.242500px;}
.y12_c00140{bottom:300.681000px;}
.y11_c00140{bottom:333.558000px;}
.y10_c00140{bottom:349.996500px;}
.yf_c00140{bottom:366.435000px;}
.ye_c00140{bottom:399.310500px;}
.yd_c00140{bottom:432.187500px;}
.yc_c00140{bottom:448.252500px;}
.yb_c00140{bottom:495.994500px;}
.ya_c00140{bottom:513.927000px;}
.y9_c00140{bottom:531.859500px;}
.y8_c00140{bottom:549.793500px;}
.y7_c00140{bottom:576.615000px;}
.y6_c00140{bottom:594.547500px;}
.y5_c00140{bottom:621.369000px;}
.y4_c00140{bottom:639.301500px;}
.y3_c00140{bottom:666.123000px;}
.y2_c00140{bottom:692.944500px;}
.y1_c00140{bottom:735.139500px;}
.h6_c00140{height:35.190766px;}
.h7_c00140{height:36.007158px;}
.h3_c00140{height:40.511979px;}
.h5_c00140{height:52.332837px;}
.h2_c00140{height:58.337477px;}
.h4_c00140{height:59.150881px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w0_c00140{width:892.920000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:127.558500px;}
.x2_c00140{left:137.122500px;}
.x3_c00140{left:143.770500px;}
.x4_c00140{left:435.249000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:20.016000pt;}
.ls3_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.078221pt;}
.ls2_c00140{letter-spacing:0.087539pt;}
.ls1_c00140{letter-spacing:0.092873pt;}
.ws7_c00140{word-spacing:-29.967501pt;}
.ws2_c00140{word-spacing:-23.622682pt;}
.ws13_c00140{word-spacing:-23.544461pt;}
.ws8_c00140{word-spacing:-20.977190pt;}
.ws10_c00140{word-spacing:-17.002837pt;}
.ws9_c00140{word-spacing:-16.684034pt;}
.ws5_c00140{word-spacing:-14.186742pt;}
.ws11_c00140{word-spacing:-13.177199pt;}
.wsb_c00140{word-spacing:-12.433325pt;}
.ws4_c00140{word-spacing:-10.786175pt;}
.wsf_c00140{word-spacing:-10.594562pt;}
.wsa_c00140{word-spacing:-9.032757pt;}
.ws1_c00140{word-spacing:-8.878599pt;}
.ws3_c00140{word-spacing:-8.877777pt;}
.ws6_c00140{word-spacing:-2.520205pt;}
.wsc_c00140{word-spacing:-0.738871pt;}
.ws16_c00140{word-spacing:0.000000pt;}
.ws14_c00140{word-spacing:0.039110pt;}
.ws18_c00140{word-spacing:0.041141pt;}
.ws17_c00140{word-spacing:0.050460pt;}
.ws1a_c00140{word-spacing:0.065111pt;}
.ws19_c00140{word-spacing:0.065600pt;}
.ws12_c00140{word-spacing:0.156442pt;}
.ws15_c00140{word-spacing:0.195063pt;}
.wse_c00140{word-spacing:12.061388pt;}
.ws0_c00140{word-spacing:38.256533pt;}
.wsd_c00140{word-spacing:48.666539pt;}
._0_c00140{margin-left:-5.661967pt;}
._4_c00140{margin-left:-3.188032pt;}
._5_c00140{margin-left:-0.956410pt;}
._8_c00140{width:0.893988pt;}
._2_c00140{width:2.512405pt;}
._1_c00140{width:22.727434pt;}
._3_c00140{width:26.313291pt;}
._7_c00140{width:28.373485pt;}
._a_c00140{width:47.362694pt;}
._9_c00140{width:70.985376pt;}
._b_c00140{width:94.568947pt;}
._6_c00140{width:104.086290pt;}
.fs3_c00140{font-size:37.193600pt;}
.fs2_c00140{font-size:39.110400pt;}
.fs1_c00140{font-size:53.133867pt;}
.fs0_c00140{font-size:76.513067pt;}
.y0_c00140{bottom:0.000000pt;}
.y1f_c00140{bottom:39.333333pt;}
.y1e_c00140{bottom:77.317333pt;}
.y1d_c00140{bottom:106.541333pt;}
.y1c_c00140{bottom:121.153333pt;}
.y1b_c00140{bottom:135.765333pt;}
.y1a_c00140{bottom:150.377333pt;}
.y19_c00140{bottom:164.989333pt;}
.y18_c00140{bottom:179.601333pt;}
.y17_c00140{bottom:194.213333pt;}
.y16_c00140{bottom:208.824000pt;}
.y15_c00140{bottom:223.436000pt;}
.y14_c00140{bottom:238.048000pt;}
.y13_c00140{bottom:252.660000pt;}
.y12_c00140{bottom:267.272000pt;}
.y11_c00140{bottom:296.496000pt;}
.y10_c00140{bottom:311.108000pt;}
.yf_c00140{bottom:325.720000pt;}
.ye_c00140{bottom:354.942667pt;}
.yd_c00140{bottom:384.166667pt;}
.yc_c00140{bottom:398.446667pt;}
.yb_c00140{bottom:440.884000pt;}
.ya_c00140{bottom:456.824000pt;}
.y9_c00140{bottom:472.764000pt;}
.y8_c00140{bottom:488.705333pt;}
.y7_c00140{bottom:512.546667pt;}
.y6_c00140{bottom:528.486667pt;}
.y5_c00140{bottom:552.328000pt;}
.y4_c00140{bottom:568.268000pt;}
.y3_c00140{bottom:592.109333pt;}
.y2_c00140{bottom:615.950667pt;}
.y1_c00140{bottom:653.457333pt;}
.h6_c00140{height:31.280681pt;}
.h7_c00140{height:32.006363pt;}
.h3_c00140{height:36.010648pt;}
.h5_c00140{height:46.518078pt;}
.h2_c00140{height:51.855535pt;}
.h4_c00140{height:52.578561pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w0_c00140{width:793.706667pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:113.385333pt;}
.x2_c00140{left:121.886667pt;}
.x3_c00140{left:127.796000pt;}
.x4_c00140{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.048828;font-style:normal;font-weight:normal;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_0f45e98f8835380916198bbc.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.083496;font-style:normal;font-weight:normal;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_a079c5e64c1f378ccca95287.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:0.893555;font-style:normal;font-weight:normal;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_eed56663fe2e7fcb1b7b0c63.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:1.014648;font-style: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;}
.v1_c00141{vertical-align:22.518000px;}
.ls3_c00141{letter-spacing:0.000000px;}
.ls1_c00141{letter-spacing:0.087998px;}
.ls2_c00141{letter-spacing:0.098482px;}
.ls0_c00141{letter-spacing:0.104482px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00141{word-spacing:-33.713438px;}
.ws1_c00141{word-spacing:-26.575517px;}
.ws0_c00141{word-spacing:-26.487518px;}
.wsb_c00141{word-spacing:-23.599339px;}
.wsc_c00141{word-spacing:-23.312484px;}
.ws8_c00141{word-spacing:-23.252708px;}
.wsf_c00141{word-spacing:-19.785724px;}
.ws7_c00141{word-spacing:-19.486846px;}
.ws14_c00141{word-spacing:-19.128192px;}
.wsd_c00141{word-spacing:-18.769538px;}
.wse_c00141{word-spacing:-15.960085px;}
.ws15_c00141{word-spacing:-14.824349px;}
.ws13_c00141{word-spacing:-11.918882px;}
.ws9_c00141{word-spacing:-10.149230px;}
.ws5_c00141{word-spacing:-9.988424px;}
.ws6_c00141{word-spacing:-9.987499px;}
.ws10_c00141{word-spacing:-6.627230px;}
.ws18_c00141{word-spacing:0.000000px;}
.ws2_c00141{word-spacing:0.043999px;}
.ws16_c00141{word-spacing:0.175997px;}
.ws3_c00141{word-spacing:0.213446px;}
.ws17_c00141{word-spacing:0.219446px;}
.ws12_c00141{word-spacing:13.569061px;}
.ws4_c00141{word-spacing:43.038600px;}
.ws11_c00141{word-spacing:54.749856px;}
._1_c00141{margin-left:-6.369713px;}
._5_c00141{margin-left:-3.586536px;}
._7_c00141{margin-left:-1.075961px;}
._0_c00141{width:1.041538px;}
._3_c00141{width:2.586307px;}
._6_c00141{width:3.793098px;}
._2_c00141{width:17.722762px;}
._4_c00141{width:19.476685px;}
._9_c00141{width:31.920170px;}
._8_c00141{width:117.097076px;}
.fc5_c00141{color:rgb(0,0,207);}
.fc4_c00141{color:rgb(143,89,3);}
.fc3_c00141{color:rgb(79,153,5);}
.fc6_c00141{color:rgb(6,69,173);}
.fc2_c00141{color:rgb(207,92,0);}
.fc1_c00141{color:rgb(0,0,0);}
.fc0_c00141{color:rgb(33,74,135);}
.fs3_c00141{font-size:41.842800px;}
.fs0_c00141{font-size:43.999200px;}
.fs2_c00141{font-size:59.775600px;}
.fs1_c00141{font-size:86.077200px;}
.y0_c00141{bottom:0.000000px;}
.y1f_c00141{bottom:44.250000px;}
.y1e_c00141{bottom:82.051500px;}
.y1d_c00141{bottom:98.490000px;}
.y1c_c00141{bottom:114.927000px;}
.y1b_c00141{bottom:147.804000px;}
.y1a_c00141{bottom:180.681000px;}
.y19_c00141{bottom:196.746000px;}
.y18_c00141{bottom:243.456000px;}
.y17_c00141{bottom:261.388500px;}
.y16_c00141{bottom:279.322500px;}
.y15_c00141{bottom:297.255000px;}
.y14_c00141{bottom:323.904000px;}
.y13_c00141{bottom:341.836500px;}
.y12_c00141{bottom:368.487000px;}
.y11_c00141{bottom:386.419500px;}
.y10_c00141{bottom:413.070000px;}
.yf_c00141{bottom:439.719000px;}
.ye_c00141{bottom:481.741500px;}
.yd_c00141{bottom:946.164000px;}
.yc_c00141{bottom:962.602500px;}
.yb_c00141{bottom:979.041000px;}
.ya_c00141{bottom:995.479500px;}
.y9_c00141{bottom:1011.918000px;}
.y8_c00141{bottom:1028.356500px;}
.y7_c00141{bottom:1044.795000px;}
.y6_c00141{bottom:1061.232000px;}
.y5_c00141{bottom:1077.670500px;}
.y4_c00141{bottom:1094.109000px;}
.y3_c00141{bottom:1110.547500px;}
.y2_c00141{bottom:1143.424500px;}
.y1_c00141{bottom:1159.863000px;}
.h8_c00141{height:35.190766px;}
.h2_c00141{height:36.007158px;}
.h4_c00141{height:40.511979px;}
.h6_c00141{height:52.332837px;}
.h3_c00141{height:58.337477px;}
.h5_c00141{height:59.150881px;}
.h7_c00141{height:59.156881px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w0_c00141{width:892.920000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x3_c00141{left:127.558500px;}
.x1_c00141{left:137.122500px;}
.x2_c00141{left:177.007500px;}
.x4_c00141{left:435.249000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:20.016000pt;}
.ls3_c00141{letter-spacing:0.000000pt;}
.ls1_c00141{letter-spacing:0.078221pt;}
.ls2_c00141{letter-spacing:0.087539pt;}
.ls0_c00141{letter-spacing:0.092873pt;}
.wsa_c00141{word-spacing:-29.967501pt;}
.ws1_c00141{word-spacing:-23.622682pt;}
.ws0_c00141{word-spacing:-23.544461pt;}
.wsb_c00141{word-spacing:-20.977190pt;}
.wsc_c00141{word-spacing:-20.722208pt;}
.ws8_c00141{word-spacing:-20.669074pt;}
.wsf_c00141{word-spacing:-17.587310pt;}
.ws7_c00141{word-spacing:-17.321641pt;}
.ws14_c00141{word-spacing:-17.002837pt;}
.wsd_c00141{word-spacing:-16.684034pt;}
.wse_c00141{word-spacing:-14.186742pt;}
.ws15_c00141{word-spacing:-13.177199pt;}
.ws13_c00141{word-spacing:-10.594562pt;}
.ws9_c00141{word-spacing:-9.021538pt;}
.ws5_c00141{word-spacing:-8.878599pt;}
.ws6_c00141{word-spacing:-8.877777pt;}
.ws10_c00141{word-spacing:-5.890871pt;}
.ws18_c00141{word-spacing:0.000000pt;}
.ws2_c00141{word-spacing:0.039110pt;}
.ws16_c00141{word-spacing:0.156442pt;}
.ws3_c00141{word-spacing:0.189730pt;}
.ws17_c00141{word-spacing:0.195063pt;}
.ws12_c00141{word-spacing:12.061388pt;}
.ws4_c00141{word-spacing:38.256533pt;}
.ws11_c00141{word-spacing:48.666539pt;}
._1_c00141{margin-left:-5.661967pt;}
._5_c00141{margin-left:-3.188032pt;}
._7_c00141{margin-left:-0.956410pt;}
._0_c00141{width:0.925811pt;}
._3_c00141{width:2.298940pt;}
._6_c00141{width:3.371643pt;}
._2_c00141{width:15.753566pt;}
._4_c00141{width:17.312609pt;}
._9_c00141{width:28.373485pt;}
._8_c00141{width:104.086290pt;}
.fs3_c00141{font-size:37.193600pt;}
.fs0_c00141{font-size:39.110400pt;}
.fs2_c00141{font-size:53.133867pt;}
.fs1_c00141{font-size:76.513067pt;}
.y0_c00141{bottom:0.000000pt;}
.y1f_c00141{bottom:39.333333pt;}
.y1e_c00141{bottom:72.934667pt;}
.y1d_c00141{bottom:87.546667pt;}
.y1c_c00141{bottom:102.157333pt;}
.y1b_c00141{bottom:131.381333pt;}
.y1a_c00141{bottom:160.605333pt;}
.y19_c00141{bottom:174.885333pt;}
.y18_c00141{bottom:216.405333pt;}
.y17_c00141{bottom:232.345333pt;}
.y16_c00141{bottom:248.286667pt;}
.y15_c00141{bottom:264.226667pt;}
.y14_c00141{bottom:287.914667pt;}
.y13_c00141{bottom:303.854667pt;}
.y12_c00141{bottom:327.544000pt;}
.y11_c00141{bottom:343.484000pt;}
.y10_c00141{bottom:367.173333pt;}
.yf_c00141{bottom:390.861333pt;}
.ye_c00141{bottom:428.214667pt;}
.yd_c00141{bottom:841.034667pt;}
.yc_c00141{bottom:855.646667pt;}
.yb_c00141{bottom:870.258667pt;}
.ya_c00141{bottom:884.870667pt;}
.y9_c00141{bottom:899.482667pt;}
.y8_c00141{bottom:914.094667pt;}
.y7_c00141{bottom:928.706667pt;}
.y6_c00141{bottom:943.317333pt;}
.y5_c00141{bottom:957.929333pt;}
.y4_c00141{bottom:972.541333pt;}
.y3_c00141{bottom:987.153333pt;}
.y2_c00141{bottom:1016.377333pt;}
.y1_c00141{bottom:1030.989333pt;}
.h8_c00141{height:31.280681pt;}
.h2_c00141{height:32.006363pt;}
.h4_c00141{height:36.010648pt;}
.h6_c00141{height:46.518078pt;}
.h3_c00141{height:51.855535pt;}
.h5_c00141{height:52.578561pt;}
.h7_c00141{height:52.583894pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w0_c00141{width:793.706667pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x3_c00141{left:113.385333pt;}
.x1_c00141{left:121.886667pt;}
.x2_c00141{left:157.340000pt;}
.x4_c00141{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c336393844b8ea1d39f434d8.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.014648;font-style:normal;font-weight:normal;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_6771bb05b192118b0c7d8c6b.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_cf133dce0e6bbb969a8c289c.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:22.518000px;}
.ls3_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.087998px;}
.ls1_c00142{letter-spacing:0.098482px;}
.ls2_c00142{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00142{word-spacing:-33.713438px;}
.ws1_c00142{word-spacing:-26.575517px;}
.ws8_c00142{word-spacing:-26.487518px;}
.ws11_c00142{word-spacing:-23.599339px;}
.wse_c00142{word-spacing:-18.829314px;}
.ws12_c00142{word-spacing:-18.769538px;}
.ws14_c00142{word-spacing:-18.470660px;}
.wsd_c00142{word-spacing:-15.063451px;}
.ws13_c00142{word-spacing:-14.645022px;}
.wsb_c00142{word-spacing:-9.988424px;}
.wsc_c00142{word-spacing:-9.987499px;}
.wsf_c00142{word-spacing:-5.721230px;}
.ws15_c00142{word-spacing:-5.343230px;}
.ws2_c00142{word-spacing:0.000000px;}
.ws4_c00142{word-spacing:0.043999px;}
.ws5_c00142{word-spacing:0.046284px;}
.ws3_c00142{word-spacing:0.056767px;}
.ws7_c00142{word-spacing:0.073250px;}
.ws6_c00142{word-spacing:0.073800px;}
.ws9_c00142{word-spacing:0.213446px;}
.ws0_c00142{word-spacing:0.219446px;}
.wsa_c00142{word-spacing:43.038600px;}
._4_c00142{margin-left:-6.369713px;}
._3_c00142{width:1.041538px;}
._6_c00142{width:2.704303px;}
._7_c00142{width:3.932359px;}
._5_c00142{width:19.953367px;}
._1_c00142{width:53.283031px;}
._0_c00142{width:79.858548px;}
._2_c00142{width:106.390066px;}
.fc5_c00142{color:rgb(207,92,0);}
.fc4_c00142{color:rgb(0,0,207);}
.fc3_c00142{color:rgb(79,153,5);}
.fc2_c00142{color:rgb(33,74,135);}
.fc1_c00142{color:rgb(143,89,3);}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:41.842800px;}
.fs0_c00142{font-size:43.999200px;}
.fs2_c00142{font-size:59.775600px;}
.fs1_c00142{font-size:86.077200px;}
.y0_c00142{bottom:0.000000px;}
.y22_c00142{bottom:44.250000px;}
.y21_c00142{bottom:82.051500px;}
.y20_c00142{bottom:99.984000px;}
.y1f_c00142{bottom:125.949000px;}
.y1e_c00142{bottom:143.881500px;}
.y1d_c00142{bottom:169.846500px;}
.y1c_c00142{bottom:195.811500px;}
.y1b_c00142{bottom:237.148500px;}
.y1a_c00142{bottom:699.589500px;}
.y19_c00142{bottom:716.028000px;}
.y18_c00142{bottom:732.465000px;}
.y17_c00142{bottom:748.903500px;}
.y16_c00142{bottom:765.342000px;}
.y15_c00142{bottom:781.780500px;}
.y14_c00142{bottom:798.219000px;}
.y13_c00142{bottom:814.657500px;}
.y12_c00142{bottom:831.096000px;}
.y11_c00142{bottom:847.534500px;}
.y10_c00142{bottom:863.973000px;}
.yf_c00142{bottom:896.848500px;}
.ye_c00142{bottom:913.287000px;}
.yd_c00142{bottom:929.725500px;}
.yc_c00142{bottom:962.602500px;}
.yb_c00142{bottom:979.041000px;}
.ya_c00142{bottom:995.479500px;}
.y9_c00142{bottom:1011.918000px;}
.y8_c00142{bottom:1028.356500px;}
.y7_c00142{bottom:1044.795000px;}
.y6_c00142{bottom:1061.232000px;}
.y5_c00142{bottom:1077.670500px;}
.y4_c00142{bottom:1094.109000px;}
.y3_c00142{bottom:1110.547500px;}
.y2_c00142{bottom:1126.986000px;}
.y1_c00142{bottom:1143.424500px;}
.h3_c00142{height:35.190766px;}
.h2_c00142{height:36.007158px;}
.h5_c00142{height:40.511979px;}
.h7_c00142{height:52.332837px;}
.h4_c00142{height:58.337477px;}
.h6_c00142{height:59.150881px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w0_c00142{width:892.920000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x4_c00142{left:127.558500px;}
.x1_c00142{left:137.122500px;}
.x2_c00142{left:143.770500px;}
.x3_c00142{left:177.007500px;}
.x5_c00142{left:435.249000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:20.016000pt;}
.ls3_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.078221pt;}
.ls1_c00142{letter-spacing:0.087539pt;}
.ls2_c00142{letter-spacing:0.092873pt;}
.ws10_c00142{word-spacing:-29.967501pt;}
.ws1_c00142{word-spacing:-23.622682pt;}
.ws8_c00142{word-spacing:-23.544461pt;}
.ws11_c00142{word-spacing:-20.977190pt;}
.wse_c00142{word-spacing:-16.737168pt;}
.ws12_c00142{word-spacing:-16.684034pt;}
.ws14_c00142{word-spacing:-16.418365pt;}
.wsd_c00142{word-spacing:-13.389734pt;}
.ws13_c00142{word-spacing:-13.017797pt;}
.wsb_c00142{word-spacing:-8.878599pt;}
.wsc_c00142{word-spacing:-8.877777pt;}
.wsf_c00142{word-spacing:-5.085538pt;}
.ws15_c00142{word-spacing:-4.749538pt;}
.ws2_c00142{word-spacing:0.000000pt;}
.ws4_c00142{word-spacing:0.039110pt;}
.ws5_c00142{word-spacing:0.041141pt;}
.ws3_c00142{word-spacing:0.050460pt;}
.ws7_c00142{word-spacing:0.065111pt;}
.ws6_c00142{word-spacing:0.065600pt;}
.ws9_c00142{word-spacing:0.189730pt;}
.ws0_c00142{word-spacing:0.195063pt;}
.wsa_c00142{word-spacing:38.256533pt;}
._4_c00142{margin-left:-5.661967pt;}
._3_c00142{width:0.925811pt;}
._6_c00142{width:2.403825pt;}
._7_c00142{width:3.495430pt;}
._5_c00142{width:17.736326pt;}
._1_c00142{width:47.362694pt;}
._0_c00142{width:70.985376pt;}
._2_c00142{width:94.568947pt;}
.fs3_c00142{font-size:37.193600pt;}
.fs0_c00142{font-size:39.110400pt;}
.fs2_c00142{font-size:53.133867pt;}
.fs1_c00142{font-size:76.513067pt;}
.y0_c00142{bottom:0.000000pt;}
.y22_c00142{bottom:39.333333pt;}
.y21_c00142{bottom:72.934667pt;}
.y20_c00142{bottom:88.874667pt;}
.y1f_c00142{bottom:111.954667pt;}
.y1e_c00142{bottom:127.894667pt;}
.y1d_c00142{bottom:150.974667pt;}
.y1c_c00142{bottom:174.054667pt;}
.y1b_c00142{bottom:210.798667pt;}
.y1a_c00142{bottom:621.857333pt;}
.y19_c00142{bottom:636.469333pt;}
.y18_c00142{bottom:651.080000pt;}
.y17_c00142{bottom:665.692000pt;}
.y16_c00142{bottom:680.304000pt;}
.y15_c00142{bottom:694.916000pt;}
.y14_c00142{bottom:709.528000pt;}
.y13_c00142{bottom:724.140000pt;}
.y12_c00142{bottom:738.752000pt;}
.y11_c00142{bottom:753.364000pt;}
.y10_c00142{bottom:767.976000pt;}
.yf_c00142{bottom:797.198667pt;}
.ye_c00142{bottom:811.810667pt;}
.yd_c00142{bottom:826.422667pt;}
.yc_c00142{bottom:855.646667pt;}
.yb_c00142{bottom:870.258667pt;}
.ya_c00142{bottom:884.870667pt;}
.y9_c00142{bottom:899.482667pt;}
.y8_c00142{bottom:914.094667pt;}
.y7_c00142{bottom:928.706667pt;}
.y6_c00142{bottom:943.317333pt;}
.y5_c00142{bottom:957.929333pt;}
.y4_c00142{bottom:972.541333pt;}
.y3_c00142{bottom:987.153333pt;}
.y2_c00142{bottom:1001.765333pt;}
.y1_c00142{bottom:1016.377333pt;}
.h3_c00142{height:31.280681pt;}
.h2_c00142{height:32.006363pt;}
.h5_c00142{height:36.010648pt;}
.h7_c00142{height:46.518078pt;}
.h4_c00142{height:51.855535pt;}
.h6_c00142{height:52.578561pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w0_c00142{width:793.706667pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x4_c00142{left:113.385333pt;}
.x1_c00142{left:121.886667pt;}
.x2_c00142{left:127.796000pt;}
.x3_c00142{left:157.340000pt;}
.x5_c00142{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:0.893555;font-style:normal;font-weight:normal;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_2d398ea495d2735271b4fa7e.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_e7841681ab9f4611ef928492.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.048828;font-style: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;}
.ls3_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:0.087998px;}
.ls2_c00143{letter-spacing:0.098482px;}
.ls1_c00143{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00143{word-spacing:-26.575517px;}
.ws8_c00143{word-spacing:-26.487518px;}
.ws4_c00143{word-spacing:-19.128192px;}
.ws6_c00143{word-spacing:-18.769538px;}
.ws5_c00143{word-spacing:-14.824349px;}
.ws3_c00143{word-spacing:-11.918882px;}
.wsb_c00143{word-spacing:0.000000px;}
.ws9_c00143{word-spacing:0.043999px;}
.wsd_c00143{word-spacing:0.046284px;}
.wsc_c00143{word-spacing:0.056767px;}
.wsf_c00143{word-spacing:0.073250px;}
.wse_c00143{word-spacing:0.073800px;}
.ws7_c00143{word-spacing:0.175997px;}
.ws10_c00143{word-spacing:0.213446px;}
.wsa_c00143{word-spacing:0.219446px;}
.ws1_c00143{word-spacing:13.569061px;}
.ws0_c00143{word-spacing:54.749856px;}
._3_c00143{margin-left:-3.825638px;}
._0_c00143{margin-left:-1.075961px;}
._5_c00143{width:1.005737px;}
._4_c00143{width:19.905275px;}
._2_c00143{width:31.920170px;}
._7_c00143{width:53.283031px;}
._6_c00143{width:79.858548px;}
._8_c00143{width:106.390066px;}
._1_c00143{width:117.097076px;}
.fc6_c00143{color:rgb(0,0,207);}
.fc5_c00143{color:rgb(79,153,5);}
.fc3_c00143{color:rgb(33,74,135);}
.fc2_c00143{color:rgb(143,89,3);}
.fc4_c00143{color:rgb(207,92,0);}
.fc1_c00143{color:rgb(6,69,173);}
.fc0_c00143{color:rgb(0,0,0);}
.fs1_c00143{font-size:43.999200px;}
.fs0_c00143{font-size:59.775600px;}
.y0_c00143{bottom:0.000000px;}
.y25_c00143{bottom:44.250000px;}
.y24_c00143{bottom:96.919500px;}
.y23_c00143{bottom:113.358000px;}
.y22_c00143{bottom:129.796500px;}
.y21_c00143{bottom:146.235000px;}
.y20_c00143{bottom:162.673500px;}
.y1f_c00143{bottom:179.112000px;}
.y1e_c00143{bottom:195.550500px;}
.y1d_c00143{bottom:211.989000px;}
.y1c_c00143{bottom:228.427500px;}
.y1b_c00143{bottom:244.866000px;}
.y1a_c00143{bottom:261.304500px;}
.y19_c00143{bottom:294.180000px;}
.y18_c00143{bottom:310.618500px;}
.y17_c00143{bottom:327.057000px;}
.y16_c00143{bottom:359.934000px;}
.y15_c00143{bottom:376.372500px;}
.y14_c00143{bottom:392.811000px;}
.y13_c00143{bottom:409.249500px;}
.y12_c00143{bottom:425.688000px;}
.y11_c00143{bottom:442.125000px;}
.y10_c00143{bottom:458.563500px;}
.yf_c00143{bottom:475.002000px;}
.ye_c00143{bottom:491.440500px;}
.yd_c00143{bottom:507.879000px;}
.yc_c00143{bottom:524.317500px;}
.yb_c00143{bottom:540.756000px;}
.ya_c00143{bottom:573.633000px;}
.y9_c00143{bottom:590.071500px;}
.y8_c00143{bottom:606.508500px;}
.y7_c00143{bottom:639.385500px;}
.y6_c00143{bottom:672.262500px;}
.y5_c00143{bottom:688.327500px;}
.y4_c00143{bottom:1106.064000px;}
.y3_c00143{bottom:1123.998000px;}
.y2_c00143{bottom:1141.930500px;}
.y1_c00143{bottom:1159.863000px;}
.h3_c00143{height:35.190766px;}
.h4_c00143{height:36.007158px;}
.h2_c00143{height:52.332837px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w0_c00143{width:892.920000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:127.558500px;}
.x2_c00143{left:137.122500px;}
.x3_c00143{left:143.770500px;}
.x4_c00143{left:177.007500px;}
.x5_c00143{left:435.249000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls3_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:0.078221pt;}
.ls2_c00143{letter-spacing:0.087539pt;}
.ls1_c00143{letter-spacing:0.092873pt;}
.ws2_c00143{word-spacing:-23.622682pt;}
.ws8_c00143{word-spacing:-23.544461pt;}
.ws4_c00143{word-spacing:-17.002837pt;}
.ws6_c00143{word-spacing:-16.684034pt;}
.ws5_c00143{word-spacing:-13.177199pt;}
.ws3_c00143{word-spacing:-10.594562pt;}
.wsb_c00143{word-spacing:0.000000pt;}
.ws9_c00143{word-spacing:0.039110pt;}
.wsd_c00143{word-spacing:0.041141pt;}
.wsc_c00143{word-spacing:0.050460pt;}
.wsf_c00143{word-spacing:0.065111pt;}
.wse_c00143{word-spacing:0.065600pt;}
.ws7_c00143{word-spacing:0.156442pt;}
.ws10_c00143{word-spacing:0.189730pt;}
.wsa_c00143{word-spacing:0.195063pt;}
.ws1_c00143{word-spacing:12.061388pt;}
.ws0_c00143{word-spacing:48.666539pt;}
._3_c00143{margin-left:-3.400567pt;}
._0_c00143{margin-left:-0.956410pt;}
._5_c00143{width:0.893988pt;}
._4_c00143{width:17.693578pt;}
._2_c00143{width:28.373485pt;}
._7_c00143{width:47.362694pt;}
._6_c00143{width:70.985376pt;}
._8_c00143{width:94.568947pt;}
._1_c00143{width:104.086290pt;}
.fs1_c00143{font-size:39.110400pt;}
.fs0_c00143{font-size:53.133867pt;}
.y0_c00143{bottom:0.000000pt;}
.y25_c00143{bottom:39.333333pt;}
.y24_c00143{bottom:86.150667pt;}
.y23_c00143{bottom:100.762667pt;}
.y22_c00143{bottom:115.374667pt;}
.y21_c00143{bottom:129.986667pt;}
.y20_c00143{bottom:144.598667pt;}
.y1f_c00143{bottom:159.210667pt;}
.y1e_c00143{bottom:173.822667pt;}
.y1d_c00143{bottom:188.434667pt;}
.y1c_c00143{bottom:203.046667pt;}
.y1b_c00143{bottom:217.658667pt;}
.y1a_c00143{bottom:232.270667pt;}
.y19_c00143{bottom:261.493333pt;}
.y18_c00143{bottom:276.105333pt;}
.y17_c00143{bottom:290.717333pt;}
.y16_c00143{bottom:319.941333pt;}
.y15_c00143{bottom:334.553333pt;}
.y14_c00143{bottom:349.165333pt;}
.y13_c00143{bottom:363.777333pt;}
.y12_c00143{bottom:378.389333pt;}
.y11_c00143{bottom:393.000000pt;}
.y10_c00143{bottom:407.612000pt;}
.yf_c00143{bottom:422.224000pt;}
.ye_c00143{bottom:436.836000pt;}
.yd_c00143{bottom:451.448000pt;}
.yc_c00143{bottom:466.060000pt;}
.yb_c00143{bottom:480.672000pt;}
.ya_c00143{bottom:509.896000pt;}
.y9_c00143{bottom:524.508000pt;}
.y8_c00143{bottom:539.118667pt;}
.y7_c00143{bottom:568.342667pt;}
.y6_c00143{bottom:597.566667pt;}
.y5_c00143{bottom:611.846667pt;}
.y4_c00143{bottom:983.168000pt;}
.y3_c00143{bottom:999.109333pt;}
.y2_c00143{bottom:1015.049333pt;}
.y1_c00143{bottom:1030.989333pt;}
.h3_c00143{height:31.280681pt;}
.h4_c00143{height:32.006363pt;}
.h2_c00143{height:46.518078pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w0_c00143{width:793.706667pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:113.385333pt;}
.x2_c00143{left:121.886667pt;}
.x3_c00143{left:127.796000pt;}
.x4_c00143{left:157.340000pt;}
.x5_c00143{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2688adaff8b41cb87e41ada.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:0.893555;font-style:normal;font-weight:normal;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_b2f6e580e65b56b142dd63a7.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.083496;font-style:normal;font-weight:normal;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_ff37d500e5c6ab8010ffbbe2.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00144;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.048828;font-style: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;}
.ls3_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.087998px;}
.ls2_c00144{letter-spacing:0.098482px;}
.ls1_c00144{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00144{word-spacing:-26.575517px;}
.wsf_c00144{word-spacing:-26.487518px;}
.wsc_c00144{word-spacing:-19.128192px;}
.ws6_c00144{word-spacing:-18.769538px;}
.ws5_c00144{word-spacing:-17.633802px;}
.wsd_c00144{word-spacing:-14.824349px;}
.ws8_c00144{word-spacing:-14.286368px;}
.ws4_c00144{word-spacing:-13.808164px;}
.wsb_c00144{word-spacing:-11.918882px;}
.ws7_c00144{word-spacing:-10.460730px;}
.ws1_c00144{word-spacing:-9.988424px;}
.ws3_c00144{word-spacing:-9.987499px;}
.ws12_c00144{word-spacing:0.000000px;}
.ws10_c00144{word-spacing:0.043999px;}
.ws14_c00144{word-spacing:0.046284px;}
.ws13_c00144{word-spacing:0.056767px;}
.ws16_c00144{word-spacing:0.073250px;}
.ws15_c00144{word-spacing:0.073800px;}
.wse_c00144{word-spacing:0.175997px;}
.ws11_c00144{word-spacing:0.219446px;}
.wsa_c00144{word-spacing:13.569061px;}
.ws0_c00144{word-spacing:43.038600px;}
.ws9_c00144{word-spacing:54.749856px;}
._0_c00144{margin-left:-6.369713px;}
._6_c00144{margin-left:-3.825638px;}
._3_c00144{margin-left:-1.075961px;}
._8_c00144{width:1.005737px;}
._7_c00144{width:19.905275px;}
._1_c00144{width:22.220080px;}
._2_c00144{width:28.905330px;}
._5_c00144{width:31.920170px;}
._a_c00144{width:53.283031px;}
._9_c00144{width:79.858548px;}
._b_c00144{width:106.390066px;}
._4_c00144{width:117.097076px;}
.fc6_c00144{color:rgb(0,0,207);}
.fc5_c00144{color:rgb(79,153,5);}
.fc3_c00144{color:rgb(33,74,135);}
.fc2_c00144{color:rgb(143,89,3);}
.fc4_c00144{color:rgb(207,92,0);}
.fc1_c00144{color:rgb(6,69,173);}
.fc0_c00144{color:rgb(0,0,0);}
.fs2_c00144{font-size:43.999200px;}
.fs1_c00144{font-size:59.775600px;}
.fs0_c00144{font-size:86.077200px;}
.y0_c00144{bottom:0.000000px;}
.y1f_c00144{bottom:44.250000px;}
.y1e_c00144{bottom:86.982000px;}
.y1d_c00144{bottom:119.859000px;}
.y1c_c00144{bottom:136.297500px;}
.y1b_c00144{bottom:152.736000px;}
.y1a_c00144{bottom:169.174500px;}
.y19_c00144{bottom:185.613000px;}
.y18_c00144{bottom:202.051500px;}
.y17_c00144{bottom:218.490000px;}
.y16_c00144{bottom:234.927000px;}
.y15_c00144{bottom:251.365500px;}
.y14_c00144{bottom:267.804000px;}
.y13_c00144{bottom:284.242500px;}
.y12_c00144{bottom:300.681000px;}
.y11_c00144{bottom:333.558000px;}
.y10_c00144{bottom:349.996500px;}
.yf_c00144{bottom:366.435000px;}
.ye_c00144{bottom:399.310500px;}
.yd_c00144{bottom:432.187500px;}
.yc_c00144{bottom:448.252500px;}
.yb_c00144{bottom:495.994500px;}
.ya_c00144{bottom:513.927000px;}
.y9_c00144{bottom:531.859500px;}
.y8_c00144{bottom:549.793500px;}
.y7_c00144{bottom:576.615000px;}
.y6_c00144{bottom:594.547500px;}
.y5_c00144{bottom:621.369000px;}
.y4_c00144{bottom:639.301500px;}
.y3_c00144{bottom:666.123000px;}
.y2_c00144{bottom:692.944500px;}
.y1_c00144{bottom:735.139500px;}
.h5_c00144{height:35.190766px;}
.h6_c00144{height:36.007158px;}
.h3_c00144{height:40.511979px;}
.h4_c00144{height:52.332837px;}
.h2_c00144{height:58.337477px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w0_c00144{width:892.920000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:127.558500px;}
.x2_c00144{left:137.122500px;}
.x3_c00144{left:143.770500px;}
.x4_c00144{left:435.249000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls3_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.078221pt;}
.ls2_c00144{letter-spacing:0.087539pt;}
.ls1_c00144{letter-spacing:0.092873pt;}
.ws2_c00144{word-spacing:-23.622682pt;}
.wsf_c00144{word-spacing:-23.544461pt;}
.wsc_c00144{word-spacing:-17.002837pt;}
.ws6_c00144{word-spacing:-16.684034pt;}
.ws5_c00144{word-spacing:-15.674491pt;}
.wsd_c00144{word-spacing:-13.177199pt;}
.ws8_c00144{word-spacing:-12.698994pt;}
.ws4_c00144{word-spacing:-12.273923pt;}
.wsb_c00144{word-spacing:-10.594562pt;}
.ws7_c00144{word-spacing:-9.298427pt;}
.ws1_c00144{word-spacing:-8.878599pt;}
.ws3_c00144{word-spacing:-8.877777pt;}
.ws12_c00144{word-spacing:0.000000pt;}
.ws10_c00144{word-spacing:0.039110pt;}
.ws14_c00144{word-spacing:0.041141pt;}
.ws13_c00144{word-spacing:0.050460pt;}
.ws16_c00144{word-spacing:0.065111pt;}
.ws15_c00144{word-spacing:0.065600pt;}
.wse_c00144{word-spacing:0.156442pt;}
.ws11_c00144{word-spacing:0.195063pt;}
.wsa_c00144{word-spacing:12.061388pt;}
.ws0_c00144{word-spacing:38.256533pt;}
.ws9_c00144{word-spacing:48.666539pt;}
._0_c00144{margin-left:-5.661967pt;}
._6_c00144{margin-left:-3.400567pt;}
._3_c00144{margin-left:-0.956410pt;}
._8_c00144{width:0.893988pt;}
._7_c00144{width:17.693578pt;}
._1_c00144{width:19.751182pt;}
._2_c00144{width:25.693627pt;}
._5_c00144{width:28.373485pt;}
._a_c00144{width:47.362694pt;}
._9_c00144{width:70.985376pt;}
._b_c00144{width:94.568947pt;}
._4_c00144{width:104.086290pt;}
.fs2_c00144{font-size:39.110400pt;}
.fs1_c00144{font-size:53.133867pt;}
.fs0_c00144{font-size:76.513067pt;}
.y0_c00144{bottom:0.000000pt;}
.y1f_c00144{bottom:39.333333pt;}
.y1e_c00144{bottom:77.317333pt;}
.y1d_c00144{bottom:106.541333pt;}
.y1c_c00144{bottom:121.153333pt;}
.y1b_c00144{bottom:135.765333pt;}
.y1a_c00144{bottom:150.377333pt;}
.y19_c00144{bottom:164.989333pt;}
.y18_c00144{bottom:179.601333pt;}
.y17_c00144{bottom:194.213333pt;}
.y16_c00144{bottom:208.824000pt;}
.y15_c00144{bottom:223.436000pt;}
.y14_c00144{bottom:238.048000pt;}
.y13_c00144{bottom:252.660000pt;}
.y12_c00144{bottom:267.272000pt;}
.y11_c00144{bottom:296.496000pt;}
.y10_c00144{bottom:311.108000pt;}
.yf_c00144{bottom:325.720000pt;}
.ye_c00144{bottom:354.942667pt;}
.yd_c00144{bottom:384.166667pt;}
.yc_c00144{bottom:398.446667pt;}
.yb_c00144{bottom:440.884000pt;}
.ya_c00144{bottom:456.824000pt;}
.y9_c00144{bottom:472.764000pt;}
.y8_c00144{bottom:488.705333pt;}
.y7_c00144{bottom:512.546667pt;}
.y6_c00144{bottom:528.486667pt;}
.y5_c00144{bottom:552.328000pt;}
.y4_c00144{bottom:568.268000pt;}
.y3_c00144{bottom:592.109333pt;}
.y2_c00144{bottom:615.950667pt;}
.y1_c00144{bottom:653.457333pt;}
.h5_c00144{height:31.280681pt;}
.h6_c00144{height:32.006363pt;}
.h3_c00144{height:36.010648pt;}
.h4_c00144{height:46.518078pt;}
.h2_c00144{height:51.855535pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w0_c00144{width:793.706667pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:113.385333pt;}
.x2_c00144{left:121.886667pt;}
.x3_c00144{left:127.796000pt;}
.x4_c00144{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.048828;font-style:normal;font-weight:normal;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_f36c227bc3cefad465368160.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_60da177ed02f70b63957b8e9.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_58c924b769acbf394c65a044.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00145;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.014648;font-style: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;}
.ls3_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:0.087998px;}
.ls2_c00145{letter-spacing:0.098482px;}
.ls0_c00145{letter-spacing:0.104482px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00145{word-spacing:-26.575517px;}
.ws0_c00145{word-spacing:-26.487518px;}
.ws8_c00145{word-spacing:-20.622582px;}
.wse_c00145{word-spacing:-19.128192px;}
.wsa_c00145{word-spacing:-18.769538px;}
.ws7_c00145{word-spacing:-16.856719px;}
.ws9_c00145{word-spacing:-14.943900px;}
.wsf_c00145{word-spacing:-14.824349px;}
.wsd_c00145{word-spacing:-11.918882px;}
.ws5_c00145{word-spacing:-9.988424px;}
.ws6_c00145{word-spacing:-9.987499px;}
.ws12_c00145{word-spacing:0.000000px;}
.ws2_c00145{word-spacing:0.043999px;}
.ws10_c00145{word-spacing:0.175997px;}
.ws3_c00145{word-spacing:0.213446px;}
.ws11_c00145{word-spacing:0.219446px;}
.wsc_c00145{word-spacing:13.569061px;}
.ws4_c00145{word-spacing:43.038600px;}
.wsb_c00145{word-spacing:54.749856px;}
._1_c00145{margin-left:-6.369713px;}
._6_c00145{margin-left:-3.825638px;}
._3_c00145{margin-left:-1.075961px;}
._0_c00145{width:1.041538px;}
._2_c00145{width:19.064635px;}
._5_c00145{width:31.920170px;}
._4_c00145{width:117.097076px;}
.fc5_c00145{color:rgb(0,0,207);}
.fc4_c00145{color:rgb(143,89,3);}
.fc3_c00145{color:rgb(79,153,5);}
.fc6_c00145{color:rgb(6,69,173);}
.fc2_c00145{color:rgb(207,92,0);}
.fc1_c00145{color:rgb(0,0,0);}
.fc0_c00145{color:rgb(33,74,135);}
.fs0_c00145{font-size:43.999200px;}
.fs2_c00145{font-size:59.775600px;}
.fs1_c00145{font-size:86.077200px;}
.y0_c00145{bottom:0.000000px;}
.y1e_c00145{bottom:44.250000px;}
.y1d_c00145{bottom:82.051500px;}
.y1c_c00145{bottom:114.927000px;}
.y1b_c00145{bottom:131.365500px;}
.y1a_c00145{bottom:147.804000px;}
.y19_c00145{bottom:180.681000px;}
.y18_c00145{bottom:213.558000px;}
.y17_c00145{bottom:229.623000px;}
.y16_c00145{bottom:277.623000px;}
.y15_c00145{bottom:295.557000px;}
.y14_c00145{bottom:313.489500px;}
.y13_c00145{bottom:331.422000px;}
.y12_c00145{bottom:358.287000px;}
.y11_c00145{bottom:385.152000px;}
.y10_c00145{bottom:412.017000px;}
.yf_c00145{bottom:438.882000px;}
.ye_c00145{bottom:481.119000px;}
.yd_c00145{bottom:946.164000px;}
.yc_c00145{bottom:962.602500px;}
.yb_c00145{bottom:979.041000px;}
.ya_c00145{bottom:995.479500px;}
.y9_c00145{bottom:1011.918000px;}
.y8_c00145{bottom:1028.356500px;}
.y7_c00145{bottom:1044.795000px;}
.y6_c00145{bottom:1061.232000px;}
.y5_c00145{bottom:1077.670500px;}
.y4_c00145{bottom:1094.109000px;}
.y3_c00145{bottom:1110.547500px;}
.y2_c00145{bottom:1143.424500px;}
.y1_c00145{bottom:1159.863000px;}
.h6_c00145{height:35.190766px;}
.h2_c00145{height:36.007158px;}
.h4_c00145{height:40.511979px;}
.h5_c00145{height:52.332837px;}
.h3_c00145{height:58.337477px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w0_c00145{width:892.920000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x3_c00145{left:127.558500px;}
.x1_c00145{left:137.122500px;}
.x2_c00145{left:177.007500px;}
.x4_c00145{left:435.249000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls3_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:0.078221pt;}
.ls2_c00145{letter-spacing:0.087539pt;}
.ls0_c00145{letter-spacing:0.092873pt;}
.ws1_c00145{word-spacing:-23.622682pt;}
.ws0_c00145{word-spacing:-23.544461pt;}
.ws8_c00145{word-spacing:-18.331184pt;}
.wse_c00145{word-spacing:-17.002837pt;}
.wsa_c00145{word-spacing:-16.684034pt;}
.ws7_c00145{word-spacing:-14.983750pt;}
.ws9_c00145{word-spacing:-13.283467pt;}
.wsf_c00145{word-spacing:-13.177199pt;}
.wsd_c00145{word-spacing:-10.594562pt;}
.ws5_c00145{word-spacing:-8.878599pt;}
.ws6_c00145{word-spacing:-8.877777pt;}
.ws12_c00145{word-spacing:0.000000pt;}
.ws2_c00145{word-spacing:0.039110pt;}
.ws10_c00145{word-spacing:0.156442pt;}
.ws3_c00145{word-spacing:0.189730pt;}
.ws11_c00145{word-spacing:0.195063pt;}
.wsc_c00145{word-spacing:12.061388pt;}
.ws4_c00145{word-spacing:38.256533pt;}
.wsb_c00145{word-spacing:48.666539pt;}
._1_c00145{margin-left:-5.661967pt;}
._6_c00145{margin-left:-3.400567pt;}
._3_c00145{margin-left:-0.956410pt;}
._0_c00145{width:0.925811pt;}
._2_c00145{width:16.946342pt;}
._5_c00145{width:28.373485pt;}
._4_c00145{width:104.086290pt;}
.fs0_c00145{font-size:39.110400pt;}
.fs2_c00145{font-size:53.133867pt;}
.fs1_c00145{font-size:76.513067pt;}
.y0_c00145{bottom:0.000000pt;}
.y1e_c00145{bottom:39.333333pt;}
.y1d_c00145{bottom:72.934667pt;}
.y1c_c00145{bottom:102.157333pt;}
.y1b_c00145{bottom:116.769333pt;}
.y1a_c00145{bottom:131.381333pt;}
.y19_c00145{bottom:160.605333pt;}
.y18_c00145{bottom:189.829333pt;}
.y17_c00145{bottom:204.109333pt;}
.y16_c00145{bottom:246.776000pt;}
.y15_c00145{bottom:262.717333pt;}
.y14_c00145{bottom:278.657333pt;}
.y13_c00145{bottom:294.597333pt;}
.y12_c00145{bottom:318.477333pt;}
.y11_c00145{bottom:342.357333pt;}
.y10_c00145{bottom:366.237333pt;}
.yf_c00145{bottom:390.117333pt;}
.ye_c00145{bottom:427.661333pt;}
.yd_c00145{bottom:841.034667pt;}
.yc_c00145{bottom:855.646667pt;}
.yb_c00145{bottom:870.258667pt;}
.ya_c00145{bottom:884.870667pt;}
.y9_c00145{bottom:899.482667pt;}
.y8_c00145{bottom:914.094667pt;}
.y7_c00145{bottom:928.706667pt;}
.y6_c00145{bottom:943.317333pt;}
.y5_c00145{bottom:957.929333pt;}
.y4_c00145{bottom:972.541333pt;}
.y3_c00145{bottom:987.153333pt;}
.y2_c00145{bottom:1016.377333pt;}
.y1_c00145{bottom:1030.989333pt;}
.h6_c00145{height:31.280681pt;}
.h2_c00145{height:32.006363pt;}
.h4_c00145{height:36.010648pt;}
.h5_c00145{height:46.518078pt;}
.h3_c00145{height:51.855535pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w0_c00145{width:793.706667pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x3_c00145{left:113.385333pt;}
.x1_c00145{left:121.886667pt;}
.x2_c00145{left:157.340000pt;}
.x4_c00145{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc40823c9a09111a3f4db8b6.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.014648;font-style:normal;font-weight:normal;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_d066f8ebd9d038a4228c02ab.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.893555;font-style:normal;font-weight:normal;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_56fc4447156c8180e820af99.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:1.102051;font-style: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;}
.ls3_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.087998px;}
.ls1_c00146{letter-spacing:0.098482px;}
.ls2_c00146{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws7_c00146{word-spacing:-26.487518px;}
.ws13_c00146{word-spacing:-19.128192px;}
.wse_c00146{word-spacing:-18.769538px;}
.wsd_c00146{word-spacing:-16.737168px;}
.wsf_c00146{word-spacing:-14.943900px;}
.wsc_c00146{word-spacing:-12.971305px;}
.ws12_c00146{word-spacing:-11.918882px;}
.wsa_c00146{word-spacing:-9.988424px;}
.wsb_c00146{word-spacing:-9.987499px;}
.ws0_c00146{word-spacing:0.000000px;}
.ws3_c00146{word-spacing:0.043999px;}
.ws4_c00146{word-spacing:0.046284px;}
.ws2_c00146{word-spacing:0.056767px;}
.ws6_c00146{word-spacing:0.073250px;}
.ws5_c00146{word-spacing:0.073800px;}
.ws8_c00146{word-spacing:0.213446px;}
.ws11_c00146{word-spacing:13.569061px;}
.ws9_c00146{word-spacing:43.038600px;}
.ws10_c00146{word-spacing:54.749856px;}
._4_c00146{margin-left:-6.369713px;}
._7_c00146{margin-left:-1.075961px;}
._3_c00146{width:1.041538px;}
._6_c00146{width:19.930500px;}
._5_c00146{width:24.047221px;}
._1_c00146{width:53.283031px;}
._0_c00146{width:79.858548px;}
._2_c00146{width:106.390066px;}
._8_c00146{width:117.097076px;}
.fc6_c00146{color:rgb(6,69,173);}
.fc5_c00146{color:rgb(207,92,0);}
.fc4_c00146{color:rgb(0,0,207);}
.fc3_c00146{color:rgb(143,89,3);}
.fc2_c00146{color:rgb(0,0,0);}
.fc1_c00146{color:rgb(79,153,5);}
.fc0_c00146{color:rgb(33,74,135);}
.fs0_c00146{font-size:43.999200px;}
.fs2_c00146{font-size:59.775600px;}
.fs1_c00146{font-size:86.077200px;}
.y0_c00146{bottom:0.000000px;}
.y22_c00146{bottom:44.250000px;}
.y21_c00146{bottom:82.051500px;}
.y20_c00146{bottom:99.984000px;}
.y1f_c00146{bottom:126.823500px;}
.y1e_c00146{bottom:153.664500px;}
.y1d_c00146{bottom:171.597000px;}
.y1c_c00146{bottom:198.438000px;}
.y1b_c00146{bottom:225.277500px;}
.y1a_c00146{bottom:267.492000px;}
.y19_c00146{bottom:732.465000px;}
.y18_c00146{bottom:748.903500px;}
.y17_c00146{bottom:765.342000px;}
.y16_c00146{bottom:781.780500px;}
.y15_c00146{bottom:798.219000px;}
.y14_c00146{bottom:814.657500px;}
.y13_c00146{bottom:831.096000px;}
.y12_c00146{bottom:847.534500px;}
.y11_c00146{bottom:863.973000px;}
.y10_c00146{bottom:880.411500px;}
.yf_c00146{bottom:896.848500px;}
.ye_c00146{bottom:929.725500px;}
.yd_c00146{bottom:946.164000px;}
.yc_c00146{bottom:962.602500px;}
.yb_c00146{bottom:995.479500px;}
.ya_c00146{bottom:1011.918000px;}
.y9_c00146{bottom:1028.356500px;}
.y8_c00146{bottom:1044.795000px;}
.y7_c00146{bottom:1061.232000px;}
.y6_c00146{bottom:1077.670500px;}
.y5_c00146{bottom:1094.109000px;}
.y4_c00146{bottom:1110.547500px;}
.y3_c00146{bottom:1126.986000px;}
.y2_c00146{bottom:1143.424500px;}
.y1_c00146{bottom:1159.863000px;}
.h3_c00146{height:35.190766px;}
.h2_c00146{height:36.007158px;}
.h5_c00146{height:40.511979px;}
.h6_c00146{height:52.332837px;}
.h4_c00146{height:58.337477px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w0_c00146{width:892.920000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.x4_c00146{left:127.558500px;}
.x2_c00146{left:137.122500px;}
.x1_c00146{left:143.770500px;}
.x3_c00146{left:177.007500px;}
.x5_c00146{left:435.249000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls3_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.078221pt;}
.ls1_c00146{letter-spacing:0.087539pt;}
.ls2_c00146{letter-spacing:0.092873pt;}
.ws1_c00146{word-spacing:-23.622682pt;}
.ws7_c00146{word-spacing:-23.544461pt;}
.ws13_c00146{word-spacing:-17.002837pt;}
.wse_c00146{word-spacing:-16.684034pt;}
.wsd_c00146{word-spacing:-14.877483pt;}
.wsf_c00146{word-spacing:-13.283467pt;}
.wsc_c00146{word-spacing:-11.530049pt;}
.ws12_c00146{word-spacing:-10.594562pt;}
.wsa_c00146{word-spacing:-8.878599pt;}
.wsb_c00146{word-spacing:-8.877777pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.ws3_c00146{word-spacing:0.039110pt;}
.ws4_c00146{word-spacing:0.041141pt;}
.ws2_c00146{word-spacing:0.050460pt;}
.ws6_c00146{word-spacing:0.065111pt;}
.ws5_c00146{word-spacing:0.065600pt;}
.ws8_c00146{word-spacing:0.189730pt;}
.ws11_c00146{word-spacing:12.061388pt;}
.ws9_c00146{word-spacing:38.256533pt;}
.ws10_c00146{word-spacing:48.666539pt;}
._4_c00146{margin-left:-5.661967pt;}
._7_c00146{margin-left:-0.956410pt;}
._3_c00146{width:0.925811pt;}
._6_c00146{width:17.716000pt;}
._5_c00146{width:21.375308pt;}
._1_c00146{width:47.362694pt;}
._0_c00146{width:70.985376pt;}
._2_c00146{width:94.568947pt;}
._8_c00146{width:104.086290pt;}
.fs0_c00146{font-size:39.110400pt;}
.fs2_c00146{font-size:53.133867pt;}
.fs1_c00146{font-size:76.513067pt;}
.y0_c00146{bottom:0.000000pt;}
.y22_c00146{bottom:39.333333pt;}
.y21_c00146{bottom:72.934667pt;}
.y20_c00146{bottom:88.874667pt;}
.y1f_c00146{bottom:112.732000pt;}
.y1e_c00146{bottom:136.590667pt;}
.y1d_c00146{bottom:152.530667pt;}
.y1c_c00146{bottom:176.389333pt;}
.y1b_c00146{bottom:200.246667pt;}
.y1a_c00146{bottom:237.770667pt;}
.y19_c00146{bottom:651.080000pt;}
.y18_c00146{bottom:665.692000pt;}
.y17_c00146{bottom:680.304000pt;}
.y16_c00146{bottom:694.916000pt;}
.y15_c00146{bottom:709.528000pt;}
.y14_c00146{bottom:724.140000pt;}
.y13_c00146{bottom:738.752000pt;}
.y12_c00146{bottom:753.364000pt;}
.y11_c00146{bottom:767.976000pt;}
.y10_c00146{bottom:782.588000pt;}
.yf_c00146{bottom:797.198667pt;}
.ye_c00146{bottom:826.422667pt;}
.yd_c00146{bottom:841.034667pt;}
.yc_c00146{bottom:855.646667pt;}
.yb_c00146{bottom:884.870667pt;}
.ya_c00146{bottom:899.482667pt;}
.y9_c00146{bottom:914.094667pt;}
.y8_c00146{bottom:928.706667pt;}
.y7_c00146{bottom:943.317333pt;}
.y6_c00146{bottom:957.929333pt;}
.y5_c00146{bottom:972.541333pt;}
.y4_c00146{bottom:987.153333pt;}
.y3_c00146{bottom:1001.765333pt;}
.y2_c00146{bottom:1016.377333pt;}
.y1_c00146{bottom:1030.989333pt;}
.h3_c00146{height:31.280681pt;}
.h2_c00146{height:32.006363pt;}
.h5_c00146{height:36.010648pt;}
.h6_c00146{height:46.518078pt;}
.h4_c00146{height:51.855535pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w0_c00146{width:793.706667pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.x4_c00146{left:113.385333pt;}
.x2_c00146{left:121.886667pt;}
.x1_c00146{left:127.796000pt;}
.x3_c00146{left:157.340000pt;}
.x5_c00146{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37813ab6ee40364152cb4e1a.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.048828;font-style:normal;font-weight:normal;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_1fdc62f85c047f81f83a456b.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls3_c00147{letter-spacing:0.000000px;}
.ls1_c00147{letter-spacing:0.087998px;}
.ls2_c00147{letter-spacing:0.098482px;}
.ls0_c00147{letter-spacing:0.104482px;}
.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;}
}
.ws4_c00147{word-spacing:-26.575517px;}
.ws3_c00147{word-spacing:-26.487518px;}
.ws1_c00147{word-spacing:-18.769538px;}
.ws0_c00147{word-spacing:-14.824349px;}
.ws7_c00147{word-spacing:0.000000px;}
.ws5_c00147{word-spacing:0.043999px;}
.ws9_c00147{word-spacing:0.046284px;}
.ws8_c00147{word-spacing:0.056767px;}
.wsb_c00147{word-spacing:0.073250px;}
.wsa_c00147{word-spacing:0.073800px;}
.ws2_c00147{word-spacing:0.175997px;}
.wsc_c00147{word-spacing:0.213446px;}
.ws6_c00147{word-spacing:0.219446px;}
._1_c00147{margin-left:-3.825638px;}
._3_c00147{width:1.005737px;}
._2_c00147{width:19.905275px;}
._0_c00147{width:31.920170px;}
._5_c00147{width:53.283031px;}
._4_c00147{width:79.858548px;}
._6_c00147{width:106.390066px;}
.fc5_c00147{color:rgb(0,0,207);}
.fc4_c00147{color:rgb(79,153,5);}
.fc3_c00147{color:rgb(207,92,0);}
.fc2_c00147{color:rgb(33,74,135);}
.fc1_c00147{color:rgb(143,89,3);}
.fc0_c00147{color:rgb(0,0,0);}
.fs1_c00147{font-size:43.999200px;}
.fs0_c00147{font-size:59.775600px;}
.y0_c00147{bottom:0.000000px;}
.y23_c00147{bottom:44.250000px;}
.y22_c00147{bottom:492.045000px;}
.y21_c00147{bottom:508.483500px;}
.y20_c00147{bottom:524.920500px;}
.y1f_c00147{bottom:541.359000px;}
.y1e_c00147{bottom:557.797500px;}
.y1d_c00147{bottom:574.236000px;}
.y1c_c00147{bottom:590.674500px;}
.y1b_c00147{bottom:607.113000px;}
.y1a_c00147{bottom:623.551500px;}
.y19_c00147{bottom:639.990000px;}
.y18_c00147{bottom:656.428500px;}
.y17_c00147{bottom:689.304000px;}
.y16_c00147{bottom:705.742500px;}
.y15_c00147{bottom:722.181000px;}
.y14_c00147{bottom:755.058000px;}
.y13_c00147{bottom:771.496500px;}
.y12_c00147{bottom:787.935000px;}
.y11_c00147{bottom:804.373500px;}
.y10_c00147{bottom:820.812000px;}
.yf_c00147{bottom:837.250500px;}
.ye_c00147{bottom:853.689000px;}
.yd_c00147{bottom:870.126000px;}
.yc_c00147{bottom:886.564500px;}
.yb_c00147{bottom:903.003000px;}
.ya_c00147{bottom:919.441500px;}
.y9_c00147{bottom:935.880000px;}
.y8_c00147{bottom:968.757000px;}
.y7_c00147{bottom:985.195500px;}
.y6_c00147{bottom:1001.634000px;}
.y5_c00147{bottom:1034.509500px;}
.y4_c00147{bottom:1067.386500px;}
.y3_c00147{bottom:1083.451500px;}
.y2_c00147{bottom:1141.930500px;}
.y1_c00147{bottom:1159.863000px;}
.h3_c00147{height:35.190766px;}
.h4_c00147{height:36.007158px;}
.h2_c00147{height:52.332837px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w0_c00147{width:892.920000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:127.558500px;}
.x2_c00147{left:137.122500px;}
.x3_c00147{left:143.770500px;}
.x4_c00147{left:177.007500px;}
.x5_c00147{left:435.249000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.ls1_c00147{letter-spacing:0.078221pt;}
.ls2_c00147{letter-spacing:0.087539pt;}
.ls0_c00147{letter-spacing:0.092873pt;}
.ws4_c00147{word-spacing:-23.622682pt;}
.ws3_c00147{word-spacing:-23.544461pt;}
.ws1_c00147{word-spacing:-16.684034pt;}
.ws0_c00147{word-spacing:-13.177199pt;}
.ws7_c00147{word-spacing:0.000000pt;}
.ws5_c00147{word-spacing:0.039110pt;}
.ws9_c00147{word-spacing:0.041141pt;}
.ws8_c00147{word-spacing:0.050460pt;}
.wsb_c00147{word-spacing:0.065111pt;}
.wsa_c00147{word-spacing:0.065600pt;}
.ws2_c00147{word-spacing:0.156442pt;}
.wsc_c00147{word-spacing:0.189730pt;}
.ws6_c00147{word-spacing:0.195063pt;}
._1_c00147{margin-left:-3.400567pt;}
._3_c00147{width:0.893988pt;}
._2_c00147{width:17.693578pt;}
._0_c00147{width:28.373485pt;}
._5_c00147{width:47.362694pt;}
._4_c00147{width:70.985376pt;}
._6_c00147{width:94.568947pt;}
.fs1_c00147{font-size:39.110400pt;}
.fs0_c00147{font-size:53.133867pt;}
.y0_c00147{bottom:0.000000pt;}
.y23_c00147{bottom:39.333333pt;}
.y22_c00147{bottom:437.373333pt;}
.y21_c00147{bottom:451.985333pt;}
.y20_c00147{bottom:466.596000pt;}
.y1f_c00147{bottom:481.208000pt;}
.y1e_c00147{bottom:495.820000pt;}
.y1d_c00147{bottom:510.432000pt;}
.y1c_c00147{bottom:525.044000pt;}
.y1b_c00147{bottom:539.656000pt;}
.y1a_c00147{bottom:554.268000pt;}
.y19_c00147{bottom:568.880000pt;}
.y18_c00147{bottom:583.492000pt;}
.y17_c00147{bottom:612.714667pt;}
.y16_c00147{bottom:627.326667pt;}
.y15_c00147{bottom:641.938667pt;}
.y14_c00147{bottom:671.162667pt;}
.y13_c00147{bottom:685.774667pt;}
.y12_c00147{bottom:700.386667pt;}
.y11_c00147{bottom:714.998667pt;}
.y10_c00147{bottom:729.610667pt;}
.yf_c00147{bottom:744.222667pt;}
.ye_c00147{bottom:758.834667pt;}
.yd_c00147{bottom:773.445333pt;}
.yc_c00147{bottom:788.057333pt;}
.yb_c00147{bottom:802.669333pt;}
.ya_c00147{bottom:817.281333pt;}
.y9_c00147{bottom:831.893333pt;}
.y8_c00147{bottom:861.117333pt;}
.y7_c00147{bottom:875.729333pt;}
.y6_c00147{bottom:890.341333pt;}
.y5_c00147{bottom:919.564000pt;}
.y4_c00147{bottom:948.788000pt;}
.y3_c00147{bottom:963.068000pt;}
.y2_c00147{bottom:1015.049333pt;}
.y1_c00147{bottom:1030.989333pt;}
.h3_c00147{height:31.280681pt;}
.h4_c00147{height:32.006363pt;}
.h2_c00147{height:46.518078pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w0_c00147{width:793.706667pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:113.385333pt;}
.x2_c00147{left:121.886667pt;}
.x3_c00147{left:127.796000pt;}
.x4_c00147{left:157.340000pt;}
.x5_c00147{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d066f8ebd9d038a4228c02ab.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:0.893555;font-style:normal;font-weight:normal;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_42f65517891ba46063027933.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.083496;font-style:normal;font-weight:normal;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_984ba9e3d6c30b3dc5ab0c69.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:1.048828;font-style: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;}
.ls3_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.087998px;}
.ls2_c00148{letter-spacing:0.098482px;}
.ls1_c00148{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00148{word-spacing:-26.575517px;}
.wsd_c00148{word-spacing:-26.487518px;}
.wsa_c00148{word-spacing:-19.128192px;}
.ws6_c00148{word-spacing:-18.769538px;}
.ws5_c00148{word-spacing:-18.709763px;}
.ws4_c00148{word-spacing:-14.943900px;}
.wsb_c00148{word-spacing:-14.824349px;}
.ws9_c00148{word-spacing:-11.918882px;}
.ws1_c00148{word-spacing:-9.988424px;}
.ws3_c00148{word-spacing:-9.987499px;}
.ws10_c00148{word-spacing:0.000000px;}
.wse_c00148{word-spacing:0.043999px;}
.ws12_c00148{word-spacing:0.046284px;}
.ws11_c00148{word-spacing:0.056767px;}
.ws14_c00148{word-spacing:0.073250px;}
.ws13_c00148{word-spacing:0.073800px;}
.wsc_c00148{word-spacing:0.175997px;}
.ws15_c00148{word-spacing:0.213446px;}
.wsf_c00148{word-spacing:0.219446px;}
.ws8_c00148{word-spacing:13.569061px;}
.ws0_c00148{word-spacing:43.038600px;}
.ws7_c00148{word-spacing:54.749856px;}
._0_c00148{margin-left:-6.369713px;}
._5_c00148{margin-left:-3.825638px;}
._2_c00148{margin-left:-1.075961px;}
._6_c00148{width:1.005737px;}
._1_c00148{width:20.043816px;}
._4_c00148{width:31.920170px;}
._8_c00148{width:53.283031px;}
._7_c00148{width:79.858548px;}
._9_c00148{width:106.390066px;}
._3_c00148{width:117.097076px;}
.fc6_c00148{color:rgb(0,0,207);}
.fc5_c00148{color:rgb(79,153,5);}
.fc3_c00148{color:rgb(33,74,135);}
.fc2_c00148{color:rgb(143,89,3);}
.fc4_c00148{color:rgb(207,92,0);}
.fc1_c00148{color:rgb(6,69,173);}
.fc0_c00148{color:rgb(0,0,0);}
.fs2_c00148{font-size:43.999200px;}
.fs1_c00148{font-size:59.775600px;}
.fs0_c00148{font-size:86.077200px;}
.y0_c00148{bottom:0.000000px;}
.y2b_c00148{bottom:44.250000px;}
.y2a_c00148{bottom:96.919500px;}
.y29_c00148{bottom:113.358000px;}
.y28_c00148{bottom:129.796500px;}
.y27_c00148{bottom:146.235000px;}
.y26_c00148{bottom:162.673500px;}
.y25_c00148{bottom:179.112000px;}
.y24_c00148{bottom:195.550500px;}
.y23_c00148{bottom:211.989000px;}
.y22_c00148{bottom:228.427500px;}
.y21_c00148{bottom:244.866000px;}
.y20_c00148{bottom:261.304500px;}
.y1f_c00148{bottom:294.180000px;}
.y1e_c00148{bottom:310.618500px;}
.y1d_c00148{bottom:327.057000px;}
.y1c_c00148{bottom:359.934000px;}
.y1b_c00148{bottom:376.372500px;}
.y1a_c00148{bottom:392.811000px;}
.y19_c00148{bottom:409.249500px;}
.y18_c00148{bottom:425.688000px;}
.y17_c00148{bottom:442.125000px;}
.y16_c00148{bottom:458.563500px;}
.y15_c00148{bottom:475.002000px;}
.y14_c00148{bottom:491.440500px;}
.y13_c00148{bottom:507.879000px;}
.y12_c00148{bottom:524.317500px;}
.y11_c00148{bottom:540.756000px;}
.y10_c00148{bottom:573.633000px;}
.yf_c00148{bottom:590.071500px;}
.ye_c00148{bottom:606.508500px;}
.yd_c00148{bottom:639.385500px;}
.yc_c00148{bottom:672.262500px;}
.yb_c00148{bottom:688.327500px;}
.ya_c00148{bottom:799.992000px;}
.y9_c00148{bottom:817.926000px;}
.y8_c00148{bottom:835.858500px;}
.y7_c00148{bottom:853.791000px;}
.y6_c00148{bottom:906.073500px;}
.y5_c00148{bottom:958.356000px;}
.y4_c00148{bottom:976.288500px;}
.y3_c00148{bottom:1028.571000px;}
.y2_c00148{bottom:1080.853500px;}
.y1_c00148{bottom:1159.863000px;}
.h5_c00148{height:35.190766px;}
.h6_c00148{height:36.007158px;}
.h3_c00148{height:40.511979px;}
.h4_c00148{height:52.332837px;}
.h2_c00148{height:58.337477px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w0_c00148{width:892.920000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:127.558500px;}
.x2_c00148{left:137.122500px;}
.x3_c00148{left:143.770500px;}
.x4_c00148{left:177.007500px;}
.x5_c00148{left:435.249000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls3_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.078221pt;}
.ls2_c00148{letter-spacing:0.087539pt;}
.ls1_c00148{letter-spacing:0.092873pt;}
.ws2_c00148{word-spacing:-23.622682pt;}
.wsd_c00148{word-spacing:-23.544461pt;}
.wsa_c00148{word-spacing:-17.002837pt;}
.ws6_c00148{word-spacing:-16.684034pt;}
.ws5_c00148{word-spacing:-16.630900pt;}
.ws4_c00148{word-spacing:-13.283467pt;}
.wsb_c00148{word-spacing:-13.177199pt;}
.ws9_c00148{word-spacing:-10.594562pt;}
.ws1_c00148{word-spacing:-8.878599pt;}
.ws3_c00148{word-spacing:-8.877777pt;}
.ws10_c00148{word-spacing:0.000000pt;}
.wse_c00148{word-spacing:0.039110pt;}
.ws12_c00148{word-spacing:0.041141pt;}
.ws11_c00148{word-spacing:0.050460pt;}
.ws14_c00148{word-spacing:0.065111pt;}
.ws13_c00148{word-spacing:0.065600pt;}
.wsc_c00148{word-spacing:0.156442pt;}
.ws15_c00148{word-spacing:0.189730pt;}
.wsf_c00148{word-spacing:0.195063pt;}
.ws8_c00148{word-spacing:12.061388pt;}
.ws0_c00148{word-spacing:38.256533pt;}
.ws7_c00148{word-spacing:48.666539pt;}
._0_c00148{margin-left:-5.661967pt;}
._5_c00148{margin-left:-3.400567pt;}
._2_c00148{margin-left:-0.956410pt;}
._6_c00148{width:0.893988pt;}
._1_c00148{width:17.816725pt;}
._4_c00148{width:28.373485pt;}
._8_c00148{width:47.362694pt;}
._7_c00148{width:70.985376pt;}
._9_c00148{width:94.568947pt;}
._3_c00148{width:104.086290pt;}
.fs2_c00148{font-size:39.110400pt;}
.fs1_c00148{font-size:53.133867pt;}
.fs0_c00148{font-size:76.513067pt;}
.y0_c00148{bottom:0.000000pt;}
.y2b_c00148{bottom:39.333333pt;}
.y2a_c00148{bottom:86.150667pt;}
.y29_c00148{bottom:100.762667pt;}
.y28_c00148{bottom:115.374667pt;}
.y27_c00148{bottom:129.986667pt;}
.y26_c00148{bottom:144.598667pt;}
.y25_c00148{bottom:159.210667pt;}
.y24_c00148{bottom:173.822667pt;}
.y23_c00148{bottom:188.434667pt;}
.y22_c00148{bottom:203.046667pt;}
.y21_c00148{bottom:217.658667pt;}
.y20_c00148{bottom:232.270667pt;}
.y1f_c00148{bottom:261.493333pt;}
.y1e_c00148{bottom:276.105333pt;}
.y1d_c00148{bottom:290.717333pt;}
.y1c_c00148{bottom:319.941333pt;}
.y1b_c00148{bottom:334.553333pt;}
.y1a_c00148{bottom:349.165333pt;}
.y19_c00148{bottom:363.777333pt;}
.y18_c00148{bottom:378.389333pt;}
.y17_c00148{bottom:393.000000pt;}
.y16_c00148{bottom:407.612000pt;}
.y15_c00148{bottom:422.224000pt;}
.y14_c00148{bottom:436.836000pt;}
.y13_c00148{bottom:451.448000pt;}
.y12_c00148{bottom:466.060000pt;}
.y11_c00148{bottom:480.672000pt;}
.y10_c00148{bottom:509.896000pt;}
.yf_c00148{bottom:524.508000pt;}
.ye_c00148{bottom:539.118667pt;}
.yd_c00148{bottom:568.342667pt;}
.yc_c00148{bottom:597.566667pt;}
.yb_c00148{bottom:611.846667pt;}
.ya_c00148{bottom:711.104000pt;}
.y9_c00148{bottom:727.045333pt;}
.y8_c00148{bottom:742.985333pt;}
.y7_c00148{bottom:758.925333pt;}
.y6_c00148{bottom:805.398667pt;}
.y5_c00148{bottom:851.872000pt;}
.y4_c00148{bottom:867.812000pt;}
.y3_c00148{bottom:914.285333pt;}
.y2_c00148{bottom:960.758667pt;}
.y1_c00148{bottom:1030.989333pt;}
.h5_c00148{height:31.280681pt;}
.h6_c00148{height:32.006363pt;}
.h3_c00148{height:36.010648pt;}
.h4_c00148{height:46.518078pt;}
.h2_c00148{height:51.855535pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w0_c00148{width:793.706667pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:113.385333pt;}
.x2_c00148{left:121.886667pt;}
.x3_c00148{left:127.796000pt;}
.x4_c00148{left:157.340000pt;}
.x5_c00148{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38c03fbbae18bbc0a7b41f21.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:0.893555;font-style:normal;font-weight:normal;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_9c93f8576a1393e7ba6df65e.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.083496;font-style:normal;font-weight:normal;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_46100d15064a29483969bbac.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:1.014648;font-style:normal;font-weight:normal;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_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.048828;font-style: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;}
.ls3_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:0.087998px;}
.ls2_c00149{letter-spacing:0.098482px;}
.ls1_c00149{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00149{word-spacing:-26.575517px;}
.wse_c00149{word-spacing:-26.487518px;}
.wsb_c00149{word-spacing:-19.128192px;}
.ws6_c00149{word-spacing:-18.769538px;}
.ws5_c00149{word-spacing:-16.737168px;}
.ws7_c00149{word-spacing:-14.943900px;}
.wsc_c00149{word-spacing:-14.824349px;}
.ws4_c00149{word-spacing:-12.971305px;}
.wsa_c00149{word-spacing:-11.918882px;}
.ws1_c00149{word-spacing:-9.988424px;}
.ws3_c00149{word-spacing:-9.987499px;}
.ws11_c00149{word-spacing:0.000000px;}
.wsf_c00149{word-spacing:0.043999px;}
.ws13_c00149{word-spacing:0.046284px;}
.ws12_c00149{word-spacing:0.056767px;}
.ws15_c00149{word-spacing:0.073250px;}
.ws14_c00149{word-spacing:0.073800px;}
.wsd_c00149{word-spacing:0.175997px;}
.ws16_c00149{word-spacing:0.213446px;}
.ws10_c00149{word-spacing:0.219446px;}
.ws9_c00149{word-spacing:13.569061px;}
.ws0_c00149{word-spacing:43.038600px;}
.ws8_c00149{word-spacing:54.749856px;}
._0_c00149{margin-left:-6.369713px;}
._6_c00149{margin-left:-3.825638px;}
._3_c00149{margin-left:-1.075961px;}
._7_c00149{width:1.005737px;}
._2_c00149{width:19.930500px;}
._1_c00149{width:24.047221px;}
._5_c00149{width:31.920170px;}
._9_c00149{width:53.283031px;}
._8_c00149{width:79.858548px;}
._a_c00149{width:106.390066px;}
._4_c00149{width:117.097076px;}
.fc6_c00149{color:rgb(0,0,207);}
.fc5_c00149{color:rgb(79,153,5);}
.fc3_c00149{color:rgb(33,74,135);}
.fc2_c00149{color:rgb(143,89,3);}
.fc4_c00149{color:rgb(207,92,0);}
.fc1_c00149{color:rgb(6,69,173);}
.fc0_c00149{color:rgb(0,0,0);}
.fs2_c00149{font-size:43.999200px;}
.fs1_c00149{font-size:59.775600px;}
.fs0_c00149{font-size:86.077200px;}
.y0_c00149{bottom:0.000000px;}
.y1f_c00149{bottom:44.250000px;}
.y1e_c00149{bottom:86.982000px;}
.y1d_c00149{bottom:103.420500px;}
.y1c_c00149{bottom:136.297500px;}
.y1b_c00149{bottom:152.736000px;}
.y1a_c00149{bottom:169.174500px;}
.y19_c00149{bottom:185.613000px;}
.y18_c00149{bottom:202.051500px;}
.y17_c00149{bottom:218.490000px;}
.y16_c00149{bottom:234.927000px;}
.y15_c00149{bottom:251.365500px;}
.y14_c00149{bottom:267.804000px;}
.y13_c00149{bottom:284.242500px;}
.y12_c00149{bottom:300.681000px;}
.y11_c00149{bottom:317.119500px;}
.y10_c00149{bottom:349.996500px;}
.yf_c00149{bottom:366.435000px;}
.ye_c00149{bottom:382.873500px;}
.yd_c00149{bottom:415.749000px;}
.yc_c00149{bottom:448.626000px;}
.yb_c00149{bottom:464.691000px;}
.ya_c00149{bottom:513.009000px;}
.y9_c00149{bottom:530.941500px;}
.y8_c00149{bottom:548.874000px;}
.y7_c00149{bottom:566.806500px;}
.y6_c00149{bottom:593.749500px;}
.y5_c00149{bottom:620.694000px;}
.y4_c00149{bottom:638.626500px;}
.y3_c00149{bottom:665.569500px;}
.y2_c00149{bottom:692.512500px;}
.y1_c00149{bottom:734.850000px;}
.h5_c00149{height:35.190766px;}
.h6_c00149{height:36.007158px;}
.h3_c00149{height:40.511979px;}
.h4_c00149{height:52.332837px;}
.h2_c00149{height:58.337477px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w0_c00149{width:892.920000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:127.558500px;}
.x2_c00149{left:137.122500px;}
.x3_c00149{left:143.770500px;}
.x4_c00149{left:435.249000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls3_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:0.078221pt;}
.ls2_c00149{letter-spacing:0.087539pt;}
.ls1_c00149{letter-spacing:0.092873pt;}
.ws2_c00149{word-spacing:-23.622682pt;}
.wse_c00149{word-spacing:-23.544461pt;}
.wsb_c00149{word-spacing:-17.002837pt;}
.ws6_c00149{word-spacing:-16.684034pt;}
.ws5_c00149{word-spacing:-14.877483pt;}
.ws7_c00149{word-spacing:-13.283467pt;}
.wsc_c00149{word-spacing:-13.177199pt;}
.ws4_c00149{word-spacing:-11.530049pt;}
.wsa_c00149{word-spacing:-10.594562pt;}
.ws1_c00149{word-spacing:-8.878599pt;}
.ws3_c00149{word-spacing:-8.877777pt;}
.ws11_c00149{word-spacing:0.000000pt;}
.wsf_c00149{word-spacing:0.039110pt;}
.ws13_c00149{word-spacing:0.041141pt;}
.ws12_c00149{word-spacing:0.050460pt;}
.ws15_c00149{word-spacing:0.065111pt;}
.ws14_c00149{word-spacing:0.065600pt;}
.wsd_c00149{word-spacing:0.156442pt;}
.ws16_c00149{word-spacing:0.189730pt;}
.ws10_c00149{word-spacing:0.195063pt;}
.ws9_c00149{word-spacing:12.061388pt;}
.ws0_c00149{word-spacing:38.256533pt;}
.ws8_c00149{word-spacing:48.666539pt;}
._0_c00149{margin-left:-5.661967pt;}
._6_c00149{margin-left:-3.400567pt;}
._3_c00149{margin-left:-0.956410pt;}
._7_c00149{width:0.893988pt;}
._2_c00149{width:17.716000pt;}
._1_c00149{width:21.375308pt;}
._5_c00149{width:28.373485pt;}
._9_c00149{width:47.362694pt;}
._8_c00149{width:70.985376pt;}
._a_c00149{width:94.568947pt;}
._4_c00149{width:104.086290pt;}
.fs2_c00149{font-size:39.110400pt;}
.fs1_c00149{font-size:53.133867pt;}
.fs0_c00149{font-size:76.513067pt;}
.y0_c00149{bottom:0.000000pt;}
.y1f_c00149{bottom:39.333333pt;}
.y1e_c00149{bottom:77.317333pt;}
.y1d_c00149{bottom:91.929333pt;}
.y1c_c00149{bottom:121.153333pt;}
.y1b_c00149{bottom:135.765333pt;}
.y1a_c00149{bottom:150.377333pt;}
.y19_c00149{bottom:164.989333pt;}
.y18_c00149{bottom:179.601333pt;}
.y17_c00149{bottom:194.213333pt;}
.y16_c00149{bottom:208.824000pt;}
.y15_c00149{bottom:223.436000pt;}
.y14_c00149{bottom:238.048000pt;}
.y13_c00149{bottom:252.660000pt;}
.y12_c00149{bottom:267.272000pt;}
.y11_c00149{bottom:281.884000pt;}
.y10_c00149{bottom:311.108000pt;}
.yf_c00149{bottom:325.720000pt;}
.ye_c00149{bottom:340.332000pt;}
.yd_c00149{bottom:369.554667pt;}
.yc_c00149{bottom:398.778667pt;}
.yb_c00149{bottom:413.058667pt;}
.ya_c00149{bottom:456.008000pt;}
.y9_c00149{bottom:471.948000pt;}
.y8_c00149{bottom:487.888000pt;}
.y7_c00149{bottom:503.828000pt;}
.y6_c00149{bottom:527.777333pt;}
.y5_c00149{bottom:551.728000pt;}
.y4_c00149{bottom:567.668000pt;}
.y3_c00149{bottom:591.617333pt;}
.y2_c00149{bottom:615.566667pt;}
.y1_c00149{bottom:653.200000pt;}
.h5_c00149{height:31.280681pt;}
.h6_c00149{height:32.006363pt;}
.h3_c00149{height:36.010648pt;}
.h4_c00149{height:46.518078pt;}
.h2_c00149{height:51.855535pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w0_c00149{width:793.706667pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:113.385333pt;}
.x2_c00149{left:121.886667pt;}
.x3_c00149{left:127.796000pt;}
.x4_c00149{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.048828;font-style:normal;font-weight:normal;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_8780e3f56abe8ccd0350bd1a.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.083496;font-style:normal;font-weight:normal;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_d066f8ebd9d038a4228c02ab.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:0.893555;font-style:normal;font-weight:normal;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_95f72cac600e6ac93e3bbc36.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00150;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:1.014648;font-style: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;}
.ls3_c00150{letter-spacing:0.000000px;}
.ls1_c00150{letter-spacing:0.087998px;}
.ls2_c00150{letter-spacing:0.098482px;}
.ls0_c00150{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00150{word-spacing:-26.487518px;}
.wsc_c00150{word-spacing:-19.128192px;}
.ws8_c00150{word-spacing:-18.769538px;}
.ws7_c00150{word-spacing:-14.943900px;}
.wsd_c00150{word-spacing:-14.824349px;}
.wsb_c00150{word-spacing:-11.918882px;}
.ws5_c00150{word-spacing:-9.988424px;}
.ws6_c00150{word-spacing:-9.987499px;}
.ws10_c00150{word-spacing:0.000000px;}
.ws2_c00150{word-spacing:0.043999px;}
.wse_c00150{word-spacing:0.175997px;}
.ws3_c00150{word-spacing:0.213446px;}
.wsf_c00150{word-spacing:0.219446px;}
.wsa_c00150{word-spacing:13.569061px;}
.ws4_c00150{word-spacing:43.038600px;}
.ws9_c00150{word-spacing:54.749856px;}
._1_c00150{margin-left:-6.369713px;}
._6_c00150{margin-left:-3.825638px;}
._3_c00150{margin-left:-1.075961px;}
._0_c00150{width:1.041538px;}
._2_c00150{width:19.935816px;}
._5_c00150{width:31.920170px;}
._4_c00150{width:117.097076px;}
.fc5_c00150{color:rgb(0,0,207);}
.fc4_c00150{color:rgb(143,89,3);}
.fc3_c00150{color:rgb(79,153,5);}
.fc6_c00150{color:rgb(6,69,173);}
.fc2_c00150{color:rgb(207,92,0);}
.fc1_c00150{color:rgb(0,0,0);}
.fc0_c00150{color:rgb(33,74,135);}
.fs0_c00150{font-size:43.999200px;}
.fs2_c00150{font-size:59.775600px;}
.fs1_c00150{font-size:86.077200px;}
.y0_c00150{bottom:0.000000px;}
.y1e_c00150{bottom:44.250000px;}
.y1d_c00150{bottom:82.051500px;}
.y1c_c00150{bottom:98.490000px;}
.y1b_c00150{bottom:131.365500px;}
.y1a_c00150{bottom:147.804000px;}
.y19_c00150{bottom:164.242500px;}
.y18_c00150{bottom:197.119500px;}
.y17_c00150{bottom:229.996500px;}
.y16_c00150{bottom:246.061500px;}
.y15_c00150{bottom:294.061500px;}
.y14_c00150{bottom:311.994000px;}
.y13_c00150{bottom:329.928000px;}
.y12_c00150{bottom:347.860500px;}
.y11_c00150{bottom:374.725500px;}
.y10_c00150{bottom:401.590500px;}
.yf_c00150{bottom:428.455500px;}
.ye_c00150{bottom:455.320500px;}
.yd_c00150{bottom:497.557500px;}
.yc_c00150{bottom:962.602500px;}
.yb_c00150{bottom:979.041000px;}
.ya_c00150{bottom:995.479500px;}
.y9_c00150{bottom:1011.918000px;}
.y8_c00150{bottom:1028.356500px;}
.y7_c00150{bottom:1044.795000px;}
.y6_c00150{bottom:1061.232000px;}
.y5_c00150{bottom:1077.670500px;}
.y4_c00150{bottom:1094.109000px;}
.y3_c00150{bottom:1110.547500px;}
.y2_c00150{bottom:1126.986000px;}
.y1_c00150{bottom:1159.863000px;}
.h6_c00150{height:35.190766px;}
.h2_c00150{height:36.007158px;}
.h4_c00150{height:40.511979px;}
.h5_c00150{height:52.332837px;}
.h3_c00150{height:58.337477px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w0_c00150{width:892.920000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x3_c00150{left:127.558500px;}
.x1_c00150{left:137.122500px;}
.x4_c00150{left:143.770500px;}
.x2_c00150{left:177.007500px;}
.x5_c00150{left:435.249000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls3_c00150{letter-spacing:0.000000pt;}
.ls1_c00150{letter-spacing:0.078221pt;}
.ls2_c00150{letter-spacing:0.087539pt;}
.ls0_c00150{letter-spacing:0.092873pt;}
.ws1_c00150{word-spacing:-23.622682pt;}
.ws0_c00150{word-spacing:-23.544461pt;}
.wsc_c00150{word-spacing:-17.002837pt;}
.ws8_c00150{word-spacing:-16.684034pt;}
.ws7_c00150{word-spacing:-13.283467pt;}
.wsd_c00150{word-spacing:-13.177199pt;}
.wsb_c00150{word-spacing:-10.594562pt;}
.ws5_c00150{word-spacing:-8.878599pt;}
.ws6_c00150{word-spacing:-8.877777pt;}
.ws10_c00150{word-spacing:0.000000pt;}
.ws2_c00150{word-spacing:0.039110pt;}
.wse_c00150{word-spacing:0.156442pt;}
.ws3_c00150{word-spacing:0.189730pt;}
.wsf_c00150{word-spacing:0.195063pt;}
.wsa_c00150{word-spacing:12.061388pt;}
.ws4_c00150{word-spacing:38.256533pt;}
.ws9_c00150{word-spacing:48.666539pt;}
._1_c00150{margin-left:-5.661967pt;}
._6_c00150{margin-left:-3.400567pt;}
._3_c00150{margin-left:-0.956410pt;}
._0_c00150{width:0.925811pt;}
._2_c00150{width:17.720725pt;}
._5_c00150{width:28.373485pt;}
._4_c00150{width:104.086290pt;}
.fs0_c00150{font-size:39.110400pt;}
.fs2_c00150{font-size:53.133867pt;}
.fs1_c00150{font-size:76.513067pt;}
.y0_c00150{bottom:0.000000pt;}
.y1e_c00150{bottom:39.333333pt;}
.y1d_c00150{bottom:72.934667pt;}
.y1c_c00150{bottom:87.546667pt;}
.y1b_c00150{bottom:116.769333pt;}
.y1a_c00150{bottom:131.381333pt;}
.y19_c00150{bottom:145.993333pt;}
.y18_c00150{bottom:175.217333pt;}
.y17_c00150{bottom:204.441333pt;}
.y16_c00150{bottom:218.721333pt;}
.y15_c00150{bottom:261.388000pt;}
.y14_c00150{bottom:277.328000pt;}
.y13_c00150{bottom:293.269333pt;}
.y12_c00150{bottom:309.209333pt;}
.y11_c00150{bottom:333.089333pt;}
.y10_c00150{bottom:356.969333pt;}
.yf_c00150{bottom:380.849333pt;}
.ye_c00150{bottom:404.729333pt;}
.yd_c00150{bottom:442.273333pt;}
.yc_c00150{bottom:855.646667pt;}
.yb_c00150{bottom:870.258667pt;}
.ya_c00150{bottom:884.870667pt;}
.y9_c00150{bottom:899.482667pt;}
.y8_c00150{bottom:914.094667pt;}
.y7_c00150{bottom:928.706667pt;}
.y6_c00150{bottom:943.317333pt;}
.y5_c00150{bottom:957.929333pt;}
.y4_c00150{bottom:972.541333pt;}
.y3_c00150{bottom:987.153333pt;}
.y2_c00150{bottom:1001.765333pt;}
.y1_c00150{bottom:1030.989333pt;}
.h6_c00150{height:31.280681pt;}
.h2_c00150{height:32.006363pt;}
.h4_c00150{height:36.010648pt;}
.h5_c00150{height:46.518078pt;}
.h3_c00150{height:51.855535pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w0_c00150{width:793.706667pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x3_c00150{left:113.385333pt;}
.x1_c00150{left:121.886667pt;}
.x4_c00150{left:127.796000pt;}
.x2_c00150{left:157.340000pt;}
.x5_c00150{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aca3025ffd4f9393768be0da.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_b24d8bb1a2694e0143e9d7d3.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00151;src:url('chunks/assets/font_95f72cac600e6ac93e3bbc36.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.102051;font-style: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;}
.ls3_c00151{letter-spacing:0.000000px;}
.ls0_c00151{letter-spacing:0.087998px;}
.ls1_c00151{letter-spacing:0.098482px;}
.ls2_c00151{letter-spacing:0.104482px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00151{word-spacing:-26.575517px;}
.ws7_c00151{word-spacing:-26.487518px;}
.ws11_c00151{word-spacing:-19.128192px;}
.wsd_c00151{word-spacing:-18.769538px;}
.wsc_c00151{word-spacing:-14.943900px;}
.ws12_c00151{word-spacing:-14.824349px;}
.ws10_c00151{word-spacing:-11.918882px;}
.wsa_c00151{word-spacing:-9.988424px;}
.wsb_c00151{word-spacing:-9.987499px;}
.ws6_c00151{word-spacing:0.000000px;}
.ws2_c00151{word-spacing:0.043999px;}
.ws3_c00151{word-spacing:0.046284px;}
.ws0_c00151{word-spacing:0.056767px;}
.ws5_c00151{word-spacing:0.073250px;}
.ws4_c00151{word-spacing:0.073800px;}
.ws8_c00151{word-spacing:0.213446px;}
.wsf_c00151{word-spacing:13.569061px;}
.ws9_c00151{word-spacing:43.038600px;}
.wse_c00151{word-spacing:54.749856px;}
._4_c00151{margin-left:-6.369713px;}
._9_c00151{margin-left:-3.825638px;}
._6_c00151{margin-left:-1.075961px;}
._3_c00151{width:1.041538px;}
._5_c00151{width:19.935816px;}
._8_c00151{width:31.920170px;}
._1_c00151{width:53.283031px;}
._0_c00151{width:79.858548px;}
._2_c00151{width:106.390066px;}
._7_c00151{width:117.097076px;}
.fc6_c00151{color:rgb(6,69,173);}
.fc5_c00151{color:rgb(207,92,0);}
.fc4_c00151{color:rgb(0,0,207);}
.fc3_c00151{color:rgb(143,89,3);}
.fc2_c00151{color:rgb(0,0,0);}
.fc1_c00151{color:rgb(79,153,5);}
.fc0_c00151{color:rgb(33,74,135);}
.fs0_c00151{font-size:43.999200px;}
.fs2_c00151{font-size:59.775600px;}
.fs1_c00151{font-size:86.077200px;}
.y0_c00151{bottom:0.000000px;}
.y22_c00151{bottom:44.250000px;}
.y21_c00151{bottom:82.051500px;}
.y20_c00151{bottom:99.984000px;}
.y1f_c00151{bottom:117.916500px;}
.y1e_c00151{bottom:135.849000px;}
.y1d_c00151{bottom:162.501000px;}
.y1c_c00151{bottom:189.151500px;}
.y1b_c00151{bottom:215.802000px;}
.y1a_c00151{bottom:242.454000px;}
.y19_c00151{bottom:284.478000px;}
.y18_c00151{bottom:748.903500px;}
.y17_c00151{bottom:765.342000px;}
.y16_c00151{bottom:781.780500px;}
.y15_c00151{bottom:798.219000px;}
.y14_c00151{bottom:814.657500px;}
.y13_c00151{bottom:831.096000px;}
.y12_c00151{bottom:847.534500px;}
.y11_c00151{bottom:863.973000px;}
.y10_c00151{bottom:880.411500px;}
.yf_c00151{bottom:896.848500px;}
.ye_c00151{bottom:913.287000px;}
.yd_c00151{bottom:946.164000px;}
.yc_c00151{bottom:962.602500px;}
.yb_c00151{bottom:979.041000px;}
.ya_c00151{bottom:1011.918000px;}
.y9_c00151{bottom:1028.356500px;}
.y8_c00151{bottom:1044.795000px;}
.y7_c00151{bottom:1061.232000px;}
.y6_c00151{bottom:1077.670500px;}
.y5_c00151{bottom:1094.109000px;}
.y4_c00151{bottom:1110.547500px;}
.y3_c00151{bottom:1126.986000px;}
.y2_c00151{bottom:1143.424500px;}
.y1_c00151{bottom:1159.863000px;}
.h3_c00151{height:35.190766px;}
.h2_c00151{height:36.007158px;}
.h5_c00151{height:40.511979px;}
.h6_c00151{height:52.332837px;}
.h4_c00151{height:58.337477px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w0_c00151{width:892.920000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x4_c00151{left:127.558500px;}
.x2_c00151{left:137.122500px;}
.x1_c00151{left:143.770500px;}
.x3_c00151{left:177.007500px;}
.x5_c00151{left:435.249000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls3_c00151{letter-spacing:0.000000pt;}
.ls0_c00151{letter-spacing:0.078221pt;}
.ls1_c00151{letter-spacing:0.087539pt;}
.ls2_c00151{letter-spacing:0.092873pt;}
.ws1_c00151{word-spacing:-23.622682pt;}
.ws7_c00151{word-spacing:-23.544461pt;}
.ws11_c00151{word-spacing:-17.002837pt;}
.wsd_c00151{word-spacing:-16.684034pt;}
.wsc_c00151{word-spacing:-13.283467pt;}
.ws12_c00151{word-spacing:-13.177199pt;}
.ws10_c00151{word-spacing:-10.594562pt;}
.wsa_c00151{word-spacing:-8.878599pt;}
.wsb_c00151{word-spacing:-8.877777pt;}
.ws6_c00151{word-spacing:0.000000pt;}
.ws2_c00151{word-spacing:0.039110pt;}
.ws3_c00151{word-spacing:0.041141pt;}
.ws0_c00151{word-spacing:0.050460pt;}
.ws5_c00151{word-spacing:0.065111pt;}
.ws4_c00151{word-spacing:0.065600pt;}
.ws8_c00151{word-spacing:0.189730pt;}
.wsf_c00151{word-spacing:12.061388pt;}
.ws9_c00151{word-spacing:38.256533pt;}
.wse_c00151{word-spacing:48.666539pt;}
._4_c00151{margin-left:-5.661967pt;}
._9_c00151{margin-left:-3.400567pt;}
._6_c00151{margin-left:-0.956410pt;}
._3_c00151{width:0.925811pt;}
._5_c00151{width:17.720725pt;}
._8_c00151{width:28.373485pt;}
._1_c00151{width:47.362694pt;}
._0_c00151{width:70.985376pt;}
._2_c00151{width:94.568947pt;}
._7_c00151{width:104.086290pt;}
.fs0_c00151{font-size:39.110400pt;}
.fs2_c00151{font-size:53.133867pt;}
.fs1_c00151{font-size:76.513067pt;}
.y0_c00151{bottom:0.000000pt;}
.y22_c00151{bottom:39.333333pt;}
.y21_c00151{bottom:72.934667pt;}
.y20_c00151{bottom:88.874667pt;}
.y1f_c00151{bottom:104.814667pt;}
.y1e_c00151{bottom:120.754667pt;}
.y1d_c00151{bottom:144.445333pt;}
.y1c_c00151{bottom:168.134667pt;}
.y1b_c00151{bottom:191.824000pt;}
.y1a_c00151{bottom:215.514667pt;}
.y19_c00151{bottom:252.869333pt;}
.y18_c00151{bottom:665.692000pt;}
.y17_c00151{bottom:680.304000pt;}
.y16_c00151{bottom:694.916000pt;}
.y15_c00151{bottom:709.528000pt;}
.y14_c00151{bottom:724.140000pt;}
.y13_c00151{bottom:738.752000pt;}
.y12_c00151{bottom:753.364000pt;}
.y11_c00151{bottom:767.976000pt;}
.y10_c00151{bottom:782.588000pt;}
.yf_c00151{bottom:797.198667pt;}
.ye_c00151{bottom:811.810667pt;}
.yd_c00151{bottom:841.034667pt;}
.yc_c00151{bottom:855.646667pt;}
.yb_c00151{bottom:870.258667pt;}
.ya_c00151{bottom:899.482667pt;}
.y9_c00151{bottom:914.094667pt;}
.y8_c00151{bottom:928.706667pt;}
.y7_c00151{bottom:943.317333pt;}
.y6_c00151{bottom:957.929333pt;}
.y5_c00151{bottom:972.541333pt;}
.y4_c00151{bottom:987.153333pt;}
.y3_c00151{bottom:1001.765333pt;}
.y2_c00151{bottom:1016.377333pt;}
.y1_c00151{bottom:1030.989333pt;}
.h3_c00151{height:31.280681pt;}
.h2_c00151{height:32.006363pt;}
.h5_c00151{height:36.010648pt;}
.h6_c00151{height:46.518078pt;}
.h4_c00151{height:51.855535pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w0_c00151{width:793.706667pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x4_c00151{left:113.385333pt;}
.x2_c00151{left:121.886667pt;}
.x1_c00151{left:127.796000pt;}
.x3_c00151{left:157.340000pt;}
.x5_c00151{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.048828;font-style:normal;font-weight:normal;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_1fdc62f85c047f81f83a456b.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.083496;font-style:normal;font-weight:normal;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_3b003c8475b36ac3ce4f990e.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls3_c00152{letter-spacing:0.000000px;}
.ls1_c00152{letter-spacing:0.087998px;}
.ls2_c00152{letter-spacing:0.098482px;}
.ls0_c00152{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00152{word-spacing:-26.575517px;}
.ws1_c00152{word-spacing:-26.487518px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws3_c00152{word-spacing:0.043999px;}
.ws7_c00152{word-spacing:0.046284px;}
.ws6_c00152{word-spacing:0.056767px;}
.ws9_c00152{word-spacing:0.073250px;}
.ws8_c00152{word-spacing:0.073800px;}
.ws0_c00152{word-spacing:0.175997px;}
.wsa_c00152{word-spacing:0.213446px;}
.ws4_c00152{word-spacing:0.219446px;}
._0_c00152{width:1.005737px;}
._2_c00152{width:53.283031px;}
._1_c00152{width:79.858548px;}
._3_c00152{width:106.390066px;}
.fc5_c00152{color:rgb(0,0,207);}
.fc4_c00152{color:rgb(79,153,5);}
.fc3_c00152{color:rgb(207,92,0);}
.fc2_c00152{color:rgb(0,0,0);}
.fc1_c00152{color:rgb(33,74,135);}
.fc0_c00152{color:rgb(143,89,3);}
.fs0_c00152{font-size:43.999200px;}
.fs1_c00152{font-size:59.775600px;}
.y0_c00152{bottom:0.000000px;}
.y21_c00152{bottom:44.250000px;}
.y20_c00152{bottom:547.983000px;}
.y1f_c00152{bottom:564.421500px;}
.y1e_c00152{bottom:580.858500px;}
.y1d_c00152{bottom:597.297000px;}
.y1c_c00152{bottom:613.735500px;}
.y1b_c00152{bottom:630.174000px;}
.y1a_c00152{bottom:646.612500px;}
.y19_c00152{bottom:663.051000px;}
.y18_c00152{bottom:679.489500px;}
.y17_c00152{bottom:695.928000px;}
.y16_c00152{bottom:712.366500px;}
.y15_c00152{bottom:745.243500px;}
.y14_c00152{bottom:761.680500px;}
.y13_c00152{bottom:778.119000px;}
.y12_c00152{bottom:810.996000px;}
.y11_c00152{bottom:827.434500px;}
.y10_c00152{bottom:843.873000px;}
.yf_c00152{bottom:860.311500px;}
.ye_c00152{bottom:876.750000px;}
.yd_c00152{bottom:893.188500px;}
.yc_c00152{bottom:909.627000px;}
.yb_c00152{bottom:926.064000px;}
.ya_c00152{bottom:942.502500px;}
.y9_c00152{bottom:958.941000px;}
.y8_c00152{bottom:975.379500px;}
.y7_c00152{bottom:991.818000px;}
.y6_c00152{bottom:1024.695000px;}
.y5_c00152{bottom:1041.133500px;}
.y4_c00152{bottom:1057.572000px;}
.y3_c00152{bottom:1090.447500px;}
.y2_c00152{bottom:1123.324500px;}
.y1_c00152{bottom:1139.389500px;}
.h2_c00152{height:35.190766px;}
.h3_c00152{height:36.007158px;}
.h4_c00152{height:52.332837px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w0_c00152{width:892.920000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:137.122500px;}
.x2_c00152{left:143.770500px;}
.x3_c00152{left:177.007500px;}
.x4_c00152{left:435.249000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls3_c00152{letter-spacing:0.000000pt;}
.ls1_c00152{letter-spacing:0.078221pt;}
.ls2_c00152{letter-spacing:0.087539pt;}
.ls0_c00152{letter-spacing:0.092873pt;}
.ws2_c00152{word-spacing:-23.622682pt;}
.ws1_c00152{word-spacing:-23.544461pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws3_c00152{word-spacing:0.039110pt;}
.ws7_c00152{word-spacing:0.041141pt;}
.ws6_c00152{word-spacing:0.050460pt;}
.ws9_c00152{word-spacing:0.065111pt;}
.ws8_c00152{word-spacing:0.065600pt;}
.ws0_c00152{word-spacing:0.156442pt;}
.wsa_c00152{word-spacing:0.189730pt;}
.ws4_c00152{word-spacing:0.195063pt;}
._0_c00152{width:0.893988pt;}
._2_c00152{width:47.362694pt;}
._1_c00152{width:70.985376pt;}
._3_c00152{width:94.568947pt;}
.fs0_c00152{font-size:39.110400pt;}
.fs1_c00152{font-size:53.133867pt;}
.y0_c00152{bottom:0.000000pt;}
.y21_c00152{bottom:39.333333pt;}
.y20_c00152{bottom:487.096000pt;}
.y1f_c00152{bottom:501.708000pt;}
.y1e_c00152{bottom:516.318667pt;}
.y1d_c00152{bottom:530.930667pt;}
.y1c_c00152{bottom:545.542667pt;}
.y1b_c00152{bottom:560.154667pt;}
.y1a_c00152{bottom:574.766667pt;}
.y19_c00152{bottom:589.378667pt;}
.y18_c00152{bottom:603.990667pt;}
.y17_c00152{bottom:618.602667pt;}
.y16_c00152{bottom:633.214667pt;}
.y15_c00152{bottom:662.438667pt;}
.y14_c00152{bottom:677.049333pt;}
.y13_c00152{bottom:691.661333pt;}
.y12_c00152{bottom:720.885333pt;}
.y11_c00152{bottom:735.497333pt;}
.y10_c00152{bottom:750.109333pt;}
.yf_c00152{bottom:764.721333pt;}
.ye_c00152{bottom:779.333333pt;}
.yd_c00152{bottom:793.945333pt;}
.yc_c00152{bottom:808.557333pt;}
.yb_c00152{bottom:823.168000pt;}
.ya_c00152{bottom:837.780000pt;}
.y9_c00152{bottom:852.392000pt;}
.y8_c00152{bottom:867.004000pt;}
.y7_c00152{bottom:881.616000pt;}
.y6_c00152{bottom:910.840000pt;}
.y5_c00152{bottom:925.452000pt;}
.y4_c00152{bottom:940.064000pt;}
.y3_c00152{bottom:969.286667pt;}
.y2_c00152{bottom:998.510667pt;}
.y1_c00152{bottom:1012.790667pt;}
.h2_c00152{height:31.280681pt;}
.h3_c00152{height:32.006363pt;}
.h4_c00152{height:46.518078pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w0_c00152{width:793.706667pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:121.886667pt;}
.x2_c00152{left:127.796000pt;}
.x3_c00152{left:157.340000pt;}
.x4_c00152{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38c03fbbae18bbc0a7b41f21.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:0.893555;font-style:normal;font-weight:normal;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_42f65517891ba46063027933.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_08bade93c4c98b88dab825c1.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00153;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.048828;font-style: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;}
.ls3_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.087998px;}
.ls2_c00153{letter-spacing:0.098482px;}
.ls1_c00153{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00153{word-spacing:-26.575517px;}
.wsc_c00153{word-spacing:-26.487518px;}
.ws9_c00153{word-spacing:-19.128192px;}
.ws5_c00153{word-spacing:-18.769538px;}
.ws4_c00153{word-spacing:-14.943900px;}
.wsa_c00153{word-spacing:-14.824349px;}
.ws8_c00153{word-spacing:-11.918882px;}
.ws1_c00153{word-spacing:-9.988424px;}
.ws3_c00153{word-spacing:-9.987499px;}
.wsf_c00153{word-spacing:0.000000px;}
.wsd_c00153{word-spacing:0.043999px;}
.ws11_c00153{word-spacing:0.046284px;}
.ws10_c00153{word-spacing:0.056767px;}
.ws13_c00153{word-spacing:0.073250px;}
.ws12_c00153{word-spacing:0.073800px;}
.wsb_c00153{word-spacing:0.175997px;}
.ws14_c00153{word-spacing:0.213446px;}
.wse_c00153{word-spacing:0.219446px;}
.ws7_c00153{word-spacing:13.569061px;}
.ws0_c00153{word-spacing:43.038600px;}
.ws6_c00153{word-spacing:54.749856px;}
._0_c00153{margin-left:-6.369713px;}
._5_c00153{margin-left:-3.825638px;}
._2_c00153{margin-left:-1.075961px;}
._6_c00153{width:1.005737px;}
._1_c00153{width:19.935816px;}
._4_c00153{width:31.920170px;}
._8_c00153{width:53.283031px;}
._7_c00153{width:79.858548px;}
._9_c00153{width:106.390066px;}
._3_c00153{width:117.097076px;}
.fc6_c00153{color:rgb(0,0,207);}
.fc5_c00153{color:rgb(79,153,5);}
.fc3_c00153{color:rgb(33,74,135);}
.fc2_c00153{color:rgb(143,89,3);}
.fc4_c00153{color:rgb(207,92,0);}
.fc1_c00153{color:rgb(6,69,173);}
.fc0_c00153{color:rgb(0,0,0);}
.fs2_c00153{font-size:43.999200px;}
.fs1_c00153{font-size:59.775600px;}
.fs0_c00153{font-size:86.077200px;}
.y0_c00153{bottom:0.000000px;}
.y2a_c00153{bottom:44.250000px;}
.y29_c00153{bottom:96.919500px;}
.y28_c00153{bottom:113.358000px;}
.y27_c00153{bottom:129.796500px;}
.y26_c00153{bottom:146.235000px;}
.y25_c00153{bottom:162.673500px;}
.y24_c00153{bottom:179.112000px;}
.y23_c00153{bottom:195.550500px;}
.y22_c00153{bottom:211.989000px;}
.y21_c00153{bottom:228.427500px;}
.y20_c00153{bottom:244.866000px;}
.y1f_c00153{bottom:261.304500px;}
.y1e_c00153{bottom:294.180000px;}
.y1d_c00153{bottom:310.618500px;}
.y1c_c00153{bottom:327.057000px;}
.y1b_c00153{bottom:359.934000px;}
.y1a_c00153{bottom:376.372500px;}
.y19_c00153{bottom:392.811000px;}
.y18_c00153{bottom:409.249500px;}
.y17_c00153{bottom:425.688000px;}
.y16_c00153{bottom:442.125000px;}
.y15_c00153{bottom:458.563500px;}
.y14_c00153{bottom:475.002000px;}
.y13_c00153{bottom:491.440500px;}
.y12_c00153{bottom:507.879000px;}
.y11_c00153{bottom:524.317500px;}
.y10_c00153{bottom:540.756000px;}
.yf_c00153{bottom:573.633000px;}
.ye_c00153{bottom:590.071500px;}
.yd_c00153{bottom:606.508500px;}
.yc_c00153{bottom:639.385500px;}
.yb_c00153{bottom:672.262500px;}
.ya_c00153{bottom:688.327500px;}
.y9_c00153{bottom:805.633500px;}
.y8_c00153{bottom:823.566000px;}
.y7_c00153{bottom:841.500000px;}
.y6_c00153{bottom:859.432500px;}
.y5_c00153{bottom:913.971000px;}
.y4_c00153{bottom:968.511000px;}
.y3_c00153{bottom:1023.049500px;}
.y2_c00153{bottom:1077.588000px;}
.y1_c00153{bottom:1159.863000px;}
.h5_c00153{height:35.190766px;}
.h6_c00153{height:36.007158px;}
.h3_c00153{height:40.511979px;}
.h4_c00153{height:52.332837px;}
.h2_c00153{height:58.337477px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w0_c00153{width:892.920000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:127.558500px;}
.x2_c00153{left:137.122500px;}
.x3_c00153{left:143.770500px;}
.x4_c00153{left:177.007500px;}
.x5_c00153{left:435.249000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls3_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.078221pt;}
.ls2_c00153{letter-spacing:0.087539pt;}
.ls1_c00153{letter-spacing:0.092873pt;}
.ws2_c00153{word-spacing:-23.622682pt;}
.wsc_c00153{word-spacing:-23.544461pt;}
.ws9_c00153{word-spacing:-17.002837pt;}
.ws5_c00153{word-spacing:-16.684034pt;}
.ws4_c00153{word-spacing:-13.283467pt;}
.wsa_c00153{word-spacing:-13.177199pt;}
.ws8_c00153{word-spacing:-10.594562pt;}
.ws1_c00153{word-spacing:-8.878599pt;}
.ws3_c00153{word-spacing:-8.877777pt;}
.wsf_c00153{word-spacing:0.000000pt;}
.wsd_c00153{word-spacing:0.039110pt;}
.ws11_c00153{word-spacing:0.041141pt;}
.ws10_c00153{word-spacing:0.050460pt;}
.ws13_c00153{word-spacing:0.065111pt;}
.ws12_c00153{word-spacing:0.065600pt;}
.wsb_c00153{word-spacing:0.156442pt;}
.ws14_c00153{word-spacing:0.189730pt;}
.wse_c00153{word-spacing:0.195063pt;}
.ws7_c00153{word-spacing:12.061388pt;}
.ws0_c00153{word-spacing:38.256533pt;}
.ws6_c00153{word-spacing:48.666539pt;}
._0_c00153{margin-left:-5.661967pt;}
._5_c00153{margin-left:-3.400567pt;}
._2_c00153{margin-left:-0.956410pt;}
._6_c00153{width:0.893988pt;}
._1_c00153{width:17.720725pt;}
._4_c00153{width:28.373485pt;}
._8_c00153{width:47.362694pt;}
._7_c00153{width:70.985376pt;}
._9_c00153{width:94.568947pt;}
._3_c00153{width:104.086290pt;}
.fs2_c00153{font-size:39.110400pt;}
.fs1_c00153{font-size:53.133867pt;}
.fs0_c00153{font-size:76.513067pt;}
.y0_c00153{bottom:0.000000pt;}
.y2a_c00153{bottom:39.333333pt;}
.y29_c00153{bottom:86.150667pt;}
.y28_c00153{bottom:100.762667pt;}
.y27_c00153{bottom:115.374667pt;}
.y26_c00153{bottom:129.986667pt;}
.y25_c00153{bottom:144.598667pt;}
.y24_c00153{bottom:159.210667pt;}
.y23_c00153{bottom:173.822667pt;}
.y22_c00153{bottom:188.434667pt;}
.y21_c00153{bottom:203.046667pt;}
.y20_c00153{bottom:217.658667pt;}
.y1f_c00153{bottom:232.270667pt;}
.y1e_c00153{bottom:261.493333pt;}
.y1d_c00153{bottom:276.105333pt;}
.y1c_c00153{bottom:290.717333pt;}
.y1b_c00153{bottom:319.941333pt;}
.y1a_c00153{bottom:334.553333pt;}
.y19_c00153{bottom:349.165333pt;}
.y18_c00153{bottom:363.777333pt;}
.y17_c00153{bottom:378.389333pt;}
.y16_c00153{bottom:393.000000pt;}
.y15_c00153{bottom:407.612000pt;}
.y14_c00153{bottom:422.224000pt;}
.y13_c00153{bottom:436.836000pt;}
.y12_c00153{bottom:451.448000pt;}
.y11_c00153{bottom:466.060000pt;}
.y10_c00153{bottom:480.672000pt;}
.yf_c00153{bottom:509.896000pt;}
.ye_c00153{bottom:524.508000pt;}
.yd_c00153{bottom:539.118667pt;}
.yc_c00153{bottom:568.342667pt;}
.yb_c00153{bottom:597.566667pt;}
.ya_c00153{bottom:611.846667pt;}
.y9_c00153{bottom:716.118667pt;}
.y8_c00153{bottom:732.058667pt;}
.y7_c00153{bottom:748.000000pt;}
.y6_c00153{bottom:763.940000pt;}
.y5_c00153{bottom:812.418667pt;}
.y4_c00153{bottom:860.898667pt;}
.y3_c00153{bottom:909.377333pt;}
.y2_c00153{bottom:957.856000pt;}
.y1_c00153{bottom:1030.989333pt;}
.h5_c00153{height:31.280681pt;}
.h6_c00153{height:32.006363pt;}
.h3_c00153{height:36.010648pt;}
.h4_c00153{height:46.518078pt;}
.h2_c00153{height:51.855535pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w0_c00153{width:793.706667pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:113.385333pt;}
.x2_c00153{left:121.886667pt;}
.x3_c00153{left:127.796000pt;}
.x4_c00153{left:157.340000pt;}
.x5_c00153{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d066f8ebd9d038a4228c02ab.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:0.893555;font-style:normal;font-weight:normal;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_5efa298cff1031eb38a88a78.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.083496;font-style:normal;font-weight:normal;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_e159d4aae506acc0469652fc.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.014648;font-style:normal;font-weight:normal;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_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.048828;font-style: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;}
.ls3_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.087998px;}
.ls2_c00154{letter-spacing:0.098482px;}
.ls1_c00154{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00154{word-spacing:-26.575517px;}
.wsc_c00154{word-spacing:-26.487518px;}
.ws9_c00154{word-spacing:-19.128192px;}
.ws5_c00154{word-spacing:-18.769538px;}
.ws4_c00154{word-spacing:-14.943900px;}
.wsa_c00154{word-spacing:-14.824349px;}
.ws8_c00154{word-spacing:-11.918882px;}
.ws1_c00154{word-spacing:-9.988424px;}
.ws3_c00154{word-spacing:-9.987499px;}
.wsf_c00154{word-spacing:0.000000px;}
.wsd_c00154{word-spacing:0.043999px;}
.ws11_c00154{word-spacing:0.046284px;}
.ws10_c00154{word-spacing:0.056767px;}
.ws13_c00154{word-spacing:0.073250px;}
.ws12_c00154{word-spacing:0.073800px;}
.wsb_c00154{word-spacing:0.175997px;}
.ws14_c00154{word-spacing:0.213446px;}
.wse_c00154{word-spacing:0.219446px;}
.ws7_c00154{word-spacing:13.569061px;}
.ws0_c00154{word-spacing:43.038600px;}
.ws6_c00154{word-spacing:54.749856px;}
._0_c00154{margin-left:-6.369713px;}
._5_c00154{margin-left:-3.825638px;}
._2_c00154{margin-left:-1.075961px;}
._6_c00154{width:1.005737px;}
._1_c00154{width:19.935816px;}
._4_c00154{width:31.920170px;}
._8_c00154{width:53.283031px;}
._7_c00154{width:79.858548px;}
._9_c00154{width:106.390066px;}
._3_c00154{width:117.097076px;}
.fc6_c00154{color:rgb(0,0,207);}
.fc5_c00154{color:rgb(79,153,5);}
.fc3_c00154{color:rgb(33,74,135);}
.fc2_c00154{color:rgb(143,89,3);}
.fc4_c00154{color:rgb(207,92,0);}
.fc1_c00154{color:rgb(6,69,173);}
.fc0_c00154{color:rgb(0,0,0);}
.fs2_c00154{font-size:43.999200px;}
.fs1_c00154{font-size:59.775600px;}
.fs0_c00154{font-size:86.077200px;}
.y0_c00154{bottom:0.000000px;}
.y1f_c00154{bottom:44.250000px;}
.y1e_c00154{bottom:86.982000px;}
.y1d_c00154{bottom:103.420500px;}
.y1c_c00154{bottom:119.859000px;}
.y1b_c00154{bottom:152.736000px;}
.y1a_c00154{bottom:169.174500px;}
.y19_c00154{bottom:185.613000px;}
.y18_c00154{bottom:202.051500px;}
.y17_c00154{bottom:218.490000px;}
.y16_c00154{bottom:234.927000px;}
.y15_c00154{bottom:251.365500px;}
.y14_c00154{bottom:267.804000px;}
.y13_c00154{bottom:284.242500px;}
.y12_c00154{bottom:300.681000px;}
.y11_c00154{bottom:317.119500px;}
.y10_c00154{bottom:333.558000px;}
.yf_c00154{bottom:366.435000px;}
.ye_c00154{bottom:382.873500px;}
.yd_c00154{bottom:399.310500px;}
.yc_c00154{bottom:432.187500px;}
.yb_c00154{bottom:465.064500px;}
.ya_c00154{bottom:481.129500px;}
.y9_c00154{bottom:529.780500px;}
.y8_c00154{bottom:547.713000px;}
.y7_c00154{bottom:565.647000px;}
.y6_c00154{bottom:583.579500px;}
.y5_c00154{bottom:610.656000px;}
.y4_c00154{bottom:637.732500px;}
.y3_c00154{bottom:664.810500px;}
.y2_c00154{bottom:691.887000px;}
.y1_c00154{bottom:734.416500px;}
.h5_c00154{height:35.190766px;}
.h6_c00154{height:36.007158px;}
.h3_c00154{height:40.511979px;}
.h4_c00154{height:52.332837px;}
.h2_c00154{height:58.337477px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w0_c00154{width:892.920000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:127.558500px;}
.x2_c00154{left:137.122500px;}
.x3_c00154{left:143.770500px;}
.x4_c00154{left:435.249000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls3_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.078221pt;}
.ls2_c00154{letter-spacing:0.087539pt;}
.ls1_c00154{letter-spacing:0.092873pt;}
.ws2_c00154{word-spacing:-23.622682pt;}
.wsc_c00154{word-spacing:-23.544461pt;}
.ws9_c00154{word-spacing:-17.002837pt;}
.ws5_c00154{word-spacing:-16.684034pt;}
.ws4_c00154{word-spacing:-13.283467pt;}
.wsa_c00154{word-spacing:-13.177199pt;}
.ws8_c00154{word-spacing:-10.594562pt;}
.ws1_c00154{word-spacing:-8.878599pt;}
.ws3_c00154{word-spacing:-8.877777pt;}
.wsf_c00154{word-spacing:0.000000pt;}
.wsd_c00154{word-spacing:0.039110pt;}
.ws11_c00154{word-spacing:0.041141pt;}
.ws10_c00154{word-spacing:0.050460pt;}
.ws13_c00154{word-spacing:0.065111pt;}
.ws12_c00154{word-spacing:0.065600pt;}
.wsb_c00154{word-spacing:0.156442pt;}
.ws14_c00154{word-spacing:0.189730pt;}
.wse_c00154{word-spacing:0.195063pt;}
.ws7_c00154{word-spacing:12.061388pt;}
.ws0_c00154{word-spacing:38.256533pt;}
.ws6_c00154{word-spacing:48.666539pt;}
._0_c00154{margin-left:-5.661967pt;}
._5_c00154{margin-left:-3.400567pt;}
._2_c00154{margin-left:-0.956410pt;}
._6_c00154{width:0.893988pt;}
._1_c00154{width:17.720725pt;}
._4_c00154{width:28.373485pt;}
._8_c00154{width:47.362694pt;}
._7_c00154{width:70.985376pt;}
._9_c00154{width:94.568947pt;}
._3_c00154{width:104.086290pt;}
.fs2_c00154{font-size:39.110400pt;}
.fs1_c00154{font-size:53.133867pt;}
.fs0_c00154{font-size:76.513067pt;}
.y0_c00154{bottom:0.000000pt;}
.y1f_c00154{bottom:39.333333pt;}
.y1e_c00154{bottom:77.317333pt;}
.y1d_c00154{bottom:91.929333pt;}
.y1c_c00154{bottom:106.541333pt;}
.y1b_c00154{bottom:135.765333pt;}
.y1a_c00154{bottom:150.377333pt;}
.y19_c00154{bottom:164.989333pt;}
.y18_c00154{bottom:179.601333pt;}
.y17_c00154{bottom:194.213333pt;}
.y16_c00154{bottom:208.824000pt;}
.y15_c00154{bottom:223.436000pt;}
.y14_c00154{bottom:238.048000pt;}
.y13_c00154{bottom:252.660000pt;}
.y12_c00154{bottom:267.272000pt;}
.y11_c00154{bottom:281.884000pt;}
.y10_c00154{bottom:296.496000pt;}
.yf_c00154{bottom:325.720000pt;}
.ye_c00154{bottom:340.332000pt;}
.yd_c00154{bottom:354.942667pt;}
.yc_c00154{bottom:384.166667pt;}
.yb_c00154{bottom:413.390667pt;}
.ya_c00154{bottom:427.670667pt;}
.y9_c00154{bottom:470.916000pt;}
.y8_c00154{bottom:486.856000pt;}
.y7_c00154{bottom:502.797333pt;}
.y6_c00154{bottom:518.737333pt;}
.y5_c00154{bottom:542.805333pt;}
.y4_c00154{bottom:566.873333pt;}
.y3_c00154{bottom:590.942667pt;}
.y2_c00154{bottom:615.010667pt;}
.y1_c00154{bottom:652.814667pt;}
.h5_c00154{height:31.280681pt;}
.h6_c00154{height:32.006363pt;}
.h3_c00154{height:36.010648pt;}
.h4_c00154{height:46.518078pt;}
.h2_c00154{height:51.855535pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w0_c00154{width:793.706667pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:113.385333pt;}
.x2_c00154{left:121.886667pt;}
.x3_c00154{left:127.796000pt;}
.x4_c00154{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a90f835a07da0e12c22cfb11.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.083496;font-style:normal;font-weight:normal;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_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.048828;font-style:normal;font-weight:normal;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_0000b7fa66d9a4738d0ddac6.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:0.893555;font-style:normal;font-weight:normal;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_45686e230f05be6082d7d258.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00155;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.014648;font-style: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;}
.ls3_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.087998px;}
.ls2_c00155{letter-spacing:0.098482px;}
.ls1_c00155{letter-spacing:0.104482px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-26.575517px;}
.ws1_c00155{word-spacing:-26.487518px;}
.wsa_c00155{word-spacing:-19.128192px;}
.ws6_c00155{word-spacing:-18.769538px;}
.ws5_c00155{word-spacing:-14.943900px;}
.wsb_c00155{word-spacing:-14.824349px;}
.ws9_c00155{word-spacing:-11.918882px;}
.ws3_c00155{word-spacing:-9.988424px;}
.ws4_c00155{word-spacing:-9.987499px;}
.wsf_c00155{word-spacing:0.000000px;}
.wsd_c00155{word-spacing:0.043999px;}
.ws10_c00155{word-spacing:0.056767px;}
.wsc_c00155{word-spacing:0.175997px;}
.wse_c00155{word-spacing:0.219446px;}
.ws8_c00155{word-spacing:13.569061px;}
.ws2_c00155{word-spacing:43.038600px;}
.ws7_c00155{word-spacing:54.749856px;}
._0_c00155{margin-left:-6.369713px;}
._5_c00155{margin-left:-3.825638px;}
._2_c00155{margin-left:-1.075961px;}
._6_c00155{width:1.005737px;}
._1_c00155{width:19.935816px;}
._4_c00155{width:31.920170px;}
._7_c00155{width:79.858548px;}
._3_c00155{width:117.097076px;}
.fc5_c00155{color:rgb(0,0,207);}
.fc6_c00155{color:rgb(6,69,173);}
.fc4_c00155{color:rgb(207,92,0);}
.fc3_c00155{color:rgb(33,74,135);}
.fc2_c00155{color:rgb(79,153,5);}
.fc1_c00155{color:rgb(143,89,3);}
.fc0_c00155{color:rgb(0,0,0);}
.fs0_c00155{font-size:43.999200px;}
.fs2_c00155{font-size:59.775600px;}
.fs1_c00155{font-size:86.077200px;}
.y0_c00155{bottom:0.000000px;}
.y1e_c00155{bottom:44.250000px;}
.y1d_c00155{bottom:82.051500px;}
.y1c_c00155{bottom:98.490000px;}
.y1b_c00155{bottom:114.927000px;}
.y1a_c00155{bottom:147.804000px;}
.y19_c00155{bottom:164.242500px;}
.y18_c00155{bottom:180.681000px;}
.y17_c00155{bottom:213.558000px;}
.y16_c00155{bottom:246.435000px;}
.y15_c00155{bottom:262.498500px;}
.y14_c00155{bottom:310.500000px;}
.y13_c00155{bottom:328.432500px;}
.y12_c00155{bottom:346.366500px;}
.y11_c00155{bottom:364.299000px;}
.y10_c00155{bottom:391.164000px;}
.yf_c00155{bottom:418.029000px;}
.ye_c00155{bottom:444.894000px;}
.yd_c00155{bottom:471.757500px;}
.yc_c00155{bottom:513.996000px;}
.yb_c00155{bottom:979.041000px;}
.ya_c00155{bottom:995.479500px;}
.y9_c00155{bottom:1011.918000px;}
.y8_c00155{bottom:1028.356500px;}
.y7_c00155{bottom:1044.795000px;}
.y6_c00155{bottom:1061.232000px;}
.y5_c00155{bottom:1077.670500px;}
.y4_c00155{bottom:1094.109000px;}
.y3_c00155{bottom:1110.547500px;}
.y2_c00155{bottom:1126.986000px;}
.y1_c00155{bottom:1143.424500px;}
.h6_c00155{height:35.190766px;}
.h2_c00155{height:36.007158px;}
.h4_c00155{height:40.511979px;}
.h5_c00155{height:52.332837px;}
.h3_c00155{height:58.337477px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w0_c00155{width:892.920000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x3_c00155{left:127.558500px;}
.x1_c00155{left:137.122500px;}
.x4_c00155{left:143.770500px;}
.x2_c00155{left:177.007500px;}
.x5_c00155{left:435.249000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls3_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.078221pt;}
.ls2_c00155{letter-spacing:0.087539pt;}
.ls1_c00155{letter-spacing:0.092873pt;}
.ws0_c00155{word-spacing:-23.622682pt;}
.ws1_c00155{word-spacing:-23.544461pt;}
.wsa_c00155{word-spacing:-17.002837pt;}
.ws6_c00155{word-spacing:-16.684034pt;}
.ws5_c00155{word-spacing:-13.283467pt;}
.wsb_c00155{word-spacing:-13.177199pt;}
.ws9_c00155{word-spacing:-10.594562pt;}
.ws3_c00155{word-spacing:-8.878599pt;}
.ws4_c00155{word-spacing:-8.877777pt;}
.wsf_c00155{word-spacing:0.000000pt;}
.wsd_c00155{word-spacing:0.039110pt;}
.ws10_c00155{word-spacing:0.050460pt;}
.wsc_c00155{word-spacing:0.156442pt;}
.wse_c00155{word-spacing:0.195063pt;}
.ws8_c00155{word-spacing:12.061388pt;}
.ws2_c00155{word-spacing:38.256533pt;}
.ws7_c00155{word-spacing:48.666539pt;}
._0_c00155{margin-left:-5.661967pt;}
._5_c00155{margin-left:-3.400567pt;}
._2_c00155{margin-left:-0.956410pt;}
._6_c00155{width:0.893988pt;}
._1_c00155{width:17.720725pt;}
._4_c00155{width:28.373485pt;}
._7_c00155{width:70.985376pt;}
._3_c00155{width:104.086290pt;}
.fs0_c00155{font-size:39.110400pt;}
.fs2_c00155{font-size:53.133867pt;}
.fs1_c00155{font-size:76.513067pt;}
.y0_c00155{bottom:0.000000pt;}
.y1e_c00155{bottom:39.333333pt;}
.y1d_c00155{bottom:72.934667pt;}
.y1c_c00155{bottom:87.546667pt;}
.y1b_c00155{bottom:102.157333pt;}
.y1a_c00155{bottom:131.381333pt;}
.y19_c00155{bottom:145.993333pt;}
.y18_c00155{bottom:160.605333pt;}
.y17_c00155{bottom:189.829333pt;}
.y16_c00155{bottom:219.053333pt;}
.y15_c00155{bottom:233.332000pt;}
.y14_c00155{bottom:276.000000pt;}
.y13_c00155{bottom:291.940000pt;}
.y12_c00155{bottom:307.881333pt;}
.y11_c00155{bottom:323.821333pt;}
.y10_c00155{bottom:347.701333pt;}
.yf_c00155{bottom:371.581333pt;}
.ye_c00155{bottom:395.461333pt;}
.yd_c00155{bottom:419.340000pt;}
.yc_c00155{bottom:456.885333pt;}
.yb_c00155{bottom:870.258667pt;}
.ya_c00155{bottom:884.870667pt;}
.y9_c00155{bottom:899.482667pt;}
.y8_c00155{bottom:914.094667pt;}
.y7_c00155{bottom:928.706667pt;}
.y6_c00155{bottom:943.317333pt;}
.y5_c00155{bottom:957.929333pt;}
.y4_c00155{bottom:972.541333pt;}
.y3_c00155{bottom:987.153333pt;}
.y2_c00155{bottom:1001.765333pt;}
.y1_c00155{bottom:1016.377333pt;}
.h6_c00155{height:31.280681pt;}
.h2_c00155{height:32.006363pt;}
.h4_c00155{height:36.010648pt;}
.h5_c00155{height:46.518078pt;}
.h3_c00155{height:51.855535pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w0_c00155{width:793.706667pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x3_c00155{left:113.385333pt;}
.x1_c00155{left:121.886667pt;}
.x4_c00155{left:127.796000pt;}
.x2_c00155{left:157.340000pt;}
.x5_c00155{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae6839ccf32f3ee9a643cb55.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_41a009fb5563a5823f120c3c.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_7fcb5e597e4575e0c68c5767.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.102051;font-style: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;}
.ls3_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.087998px;}
.ls1_c00156{letter-spacing:0.098482px;}
.ls2_c00156{letter-spacing:0.104482px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00156{word-spacing:-26.575517px;}
.ws7_c00156{word-spacing:-26.487518px;}
.ws11_c00156{word-spacing:-19.128192px;}
.wsd_c00156{word-spacing:-18.769538px;}
.wsc_c00156{word-spacing:-14.943900px;}
.ws12_c00156{word-spacing:-14.824349px;}
.ws10_c00156{word-spacing:-11.918882px;}
.wsa_c00156{word-spacing:-9.988424px;}
.wsb_c00156{word-spacing:-9.987499px;}
.ws6_c00156{word-spacing:0.000000px;}
.ws0_c00156{word-spacing:0.043999px;}
.ws2_c00156{word-spacing:0.046284px;}
.ws3_c00156{word-spacing:0.056767px;}
.ws5_c00156{word-spacing:0.073250px;}
.ws4_c00156{word-spacing:0.073800px;}
.ws8_c00156{word-spacing:0.213446px;}
.wsf_c00156{word-spacing:13.569061px;}
.ws9_c00156{word-spacing:43.038600px;}
.wse_c00156{word-spacing:54.749856px;}
._4_c00156{margin-left:-6.369713px;}
._9_c00156{margin-left:-3.825638px;}
._6_c00156{margin-left:-1.075961px;}
._3_c00156{width:1.041538px;}
._5_c00156{width:19.935816px;}
._8_c00156{width:31.920170px;}
._1_c00156{width:53.283031px;}
._0_c00156{width:79.858548px;}
._2_c00156{width:106.390066px;}
._7_c00156{width:117.097076px;}
.fc6_c00156{color:rgb(6,69,173);}
.fc5_c00156{color:rgb(207,92,0);}
.fc4_c00156{color:rgb(0,0,207);}
.fc3_c00156{color:rgb(143,89,3);}
.fc2_c00156{color:rgb(79,153,5);}
.fc1_c00156{color:rgb(0,0,0);}
.fc0_c00156{color:rgb(33,74,135);}
.fs0_c00156{font-size:43.999200px;}
.fs2_c00156{font-size:59.775600px;}
.fs1_c00156{font-size:86.077200px;}
.y0_c00156{bottom:0.000000px;}
.y21_c00156{bottom:44.250000px;}
.y20_c00156{bottom:82.051500px;}
.y1f_c00156{bottom:99.984000px;}
.y1e_c00156{bottom:117.916500px;}
.y1d_c00156{bottom:135.849000px;}
.y1c_c00156{bottom:164.244000px;}
.y1b_c00156{bottom:192.637500px;}
.y1a_c00156{bottom:221.032500px;}
.y19_c00156{bottom:249.427500px;}
.y18_c00156{bottom:293.863500px;}
.y17_c00156{bottom:765.342000px;}
.y16_c00156{bottom:781.780500px;}
.y15_c00156{bottom:798.219000px;}
.y14_c00156{bottom:814.657500px;}
.y13_c00156{bottom:831.096000px;}
.y12_c00156{bottom:847.534500px;}
.y11_c00156{bottom:863.973000px;}
.y10_c00156{bottom:880.411500px;}
.yf_c00156{bottom:896.848500px;}
.ye_c00156{bottom:913.287000px;}
.yd_c00156{bottom:929.725500px;}
.yc_c00156{bottom:962.602500px;}
.yb_c00156{bottom:979.041000px;}
.ya_c00156{bottom:995.479500px;}
.y9_c00156{bottom:1028.356500px;}
.y8_c00156{bottom:1044.795000px;}
.y7_c00156{bottom:1061.232000px;}
.y6_c00156{bottom:1077.670500px;}
.y5_c00156{bottom:1094.109000px;}
.y4_c00156{bottom:1110.547500px;}
.y3_c00156{bottom:1126.986000px;}
.y2_c00156{bottom:1143.424500px;}
.y1_c00156{bottom:1159.863000px;}
.h3_c00156{height:35.190766px;}
.h2_c00156{height:36.007158px;}
.h5_c00156{height:40.511979px;}
.h6_c00156{height:52.332837px;}
.h4_c00156{height:58.337477px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w0_c00156{width:892.920000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x4_c00156{left:127.558500px;}
.x2_c00156{left:137.122500px;}
.x1_c00156{left:143.770500px;}
.x3_c00156{left:177.007500px;}
.x5_c00156{left:435.249000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls3_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.078221pt;}
.ls1_c00156{letter-spacing:0.087539pt;}
.ls2_c00156{letter-spacing:0.092873pt;}
.ws1_c00156{word-spacing:-23.622682pt;}
.ws7_c00156{word-spacing:-23.544461pt;}
.ws11_c00156{word-spacing:-17.002837pt;}
.wsd_c00156{word-spacing:-16.684034pt;}
.wsc_c00156{word-spacing:-13.283467pt;}
.ws12_c00156{word-spacing:-13.177199pt;}
.ws10_c00156{word-spacing:-10.594562pt;}
.wsa_c00156{word-spacing:-8.878599pt;}
.wsb_c00156{word-spacing:-8.877777pt;}
.ws6_c00156{word-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.039110pt;}
.ws2_c00156{word-spacing:0.041141pt;}
.ws3_c00156{word-spacing:0.050460pt;}
.ws5_c00156{word-spacing:0.065111pt;}
.ws4_c00156{word-spacing:0.065600pt;}
.ws8_c00156{word-spacing:0.189730pt;}
.wsf_c00156{word-spacing:12.061388pt;}
.ws9_c00156{word-spacing:38.256533pt;}
.wse_c00156{word-spacing:48.666539pt;}
._4_c00156{margin-left:-5.661967pt;}
._9_c00156{margin-left:-3.400567pt;}
._6_c00156{margin-left:-0.956410pt;}
._3_c00156{width:0.925811pt;}
._5_c00156{width:17.720725pt;}
._8_c00156{width:28.373485pt;}
._1_c00156{width:47.362694pt;}
._0_c00156{width:70.985376pt;}
._2_c00156{width:94.568947pt;}
._7_c00156{width:104.086290pt;}
.fs0_c00156{font-size:39.110400pt;}
.fs2_c00156{font-size:53.133867pt;}
.fs1_c00156{font-size:76.513067pt;}
.y0_c00156{bottom:0.000000pt;}
.y21_c00156{bottom:39.333333pt;}
.y20_c00156{bottom:72.934667pt;}
.y1f_c00156{bottom:88.874667pt;}
.y1e_c00156{bottom:104.814667pt;}
.y1d_c00156{bottom:120.754667pt;}
.y1c_c00156{bottom:145.994667pt;}
.y1b_c00156{bottom:171.233333pt;}
.y1a_c00156{bottom:196.473333pt;}
.y19_c00156{bottom:221.713333pt;}
.y18_c00156{bottom:261.212000pt;}
.y17_c00156{bottom:680.304000pt;}
.y16_c00156{bottom:694.916000pt;}
.y15_c00156{bottom:709.528000pt;}
.y14_c00156{bottom:724.140000pt;}
.y13_c00156{bottom:738.752000pt;}
.y12_c00156{bottom:753.364000pt;}
.y11_c00156{bottom:767.976000pt;}
.y10_c00156{bottom:782.588000pt;}
.yf_c00156{bottom:797.198667pt;}
.ye_c00156{bottom:811.810667pt;}
.yd_c00156{bottom:826.422667pt;}
.yc_c00156{bottom:855.646667pt;}
.yb_c00156{bottom:870.258667pt;}
.ya_c00156{bottom:884.870667pt;}
.y9_c00156{bottom:914.094667pt;}
.y8_c00156{bottom:928.706667pt;}
.y7_c00156{bottom:943.317333pt;}
.y6_c00156{bottom:957.929333pt;}
.y5_c00156{bottom:972.541333pt;}
.y4_c00156{bottom:987.153333pt;}
.y3_c00156{bottom:1001.765333pt;}
.y2_c00156{bottom:1016.377333pt;}
.y1_c00156{bottom:1030.989333pt;}
.h3_c00156{height:31.280681pt;}
.h2_c00156{height:32.006363pt;}
.h5_c00156{height:36.010648pt;}
.h6_c00156{height:46.518078pt;}
.h4_c00156{height:51.855535pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w0_c00156{width:793.706667pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x4_c00156{left:113.385333pt;}
.x2_c00156{left:121.886667pt;}
.x1_c00156{left:127.796000pt;}
.x3_c00156{left:157.340000pt;}
.x5_c00156{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.048828;font-style:normal;font-weight:normal;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_ed8e7e21e92be1553dc21baf.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.083496;font-style:normal;font-weight:normal;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_ab8d442fe3e142f9c3892b33.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.087998px;}
.ls2_c00157{letter-spacing:0.098482px;}
.ls0_c00157{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00157{word-spacing:-26.575517px;}
.ws1_c00157{word-spacing:-26.487518px;}
.ws5_c00157{word-spacing:0.000000px;}
.ws3_c00157{word-spacing:0.043999px;}
.ws7_c00157{word-spacing:0.046284px;}
.ws6_c00157{word-spacing:0.056767px;}
.ws9_c00157{word-spacing:0.073250px;}
.ws8_c00157{word-spacing:0.073800px;}
.ws0_c00157{word-spacing:0.175997px;}
.wsa_c00157{word-spacing:0.213446px;}
.ws4_c00157{word-spacing:0.219446px;}
._0_c00157{width:1.005737px;}
._2_c00157{width:53.283031px;}
._1_c00157{width:79.858548px;}
._3_c00157{width:106.390066px;}
.fc5_c00157{color:rgb(0,0,207);}
.fc4_c00157{color:rgb(79,153,5);}
.fc3_c00157{color:rgb(207,92,0);}
.fc2_c00157{color:rgb(0,0,0);}
.fc1_c00157{color:rgb(33,74,135);}
.fc0_c00157{color:rgb(143,89,3);}
.fs0_c00157{font-size:43.999200px;}
.fs1_c00157{font-size:59.775600px;}
.y0_c00157{bottom:0.000000px;}
.y21_c00157{bottom:44.250000px;}
.y20_c00157{bottom:547.983000px;}
.y1f_c00157{bottom:564.421500px;}
.y1e_c00157{bottom:580.858500px;}
.y1d_c00157{bottom:597.297000px;}
.y1c_c00157{bottom:613.735500px;}
.y1b_c00157{bottom:630.174000px;}
.y1a_c00157{bottom:646.612500px;}
.y19_c00157{bottom:663.051000px;}
.y18_c00157{bottom:679.489500px;}
.y17_c00157{bottom:695.928000px;}
.y16_c00157{bottom:712.366500px;}
.y15_c00157{bottom:745.243500px;}
.y14_c00157{bottom:761.680500px;}
.y13_c00157{bottom:778.119000px;}
.y12_c00157{bottom:810.996000px;}
.y11_c00157{bottom:827.434500px;}
.y10_c00157{bottom:843.873000px;}
.yf_c00157{bottom:860.311500px;}
.ye_c00157{bottom:876.750000px;}
.yd_c00157{bottom:893.188500px;}
.yc_c00157{bottom:909.627000px;}
.yb_c00157{bottom:926.064000px;}
.ya_c00157{bottom:942.502500px;}
.y9_c00157{bottom:958.941000px;}
.y8_c00157{bottom:975.379500px;}
.y7_c00157{bottom:991.818000px;}
.y6_c00157{bottom:1024.695000px;}
.y5_c00157{bottom:1041.133500px;}
.y4_c00157{bottom:1057.572000px;}
.y3_c00157{bottom:1090.447500px;}
.y2_c00157{bottom:1123.324500px;}
.y1_c00157{bottom:1139.389500px;}
.h2_c00157{height:35.190766px;}
.h3_c00157{height:36.007158px;}
.h4_c00157{height:52.332837px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w0_c00157{width:892.920000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:137.122500px;}
.x2_c00157{left:143.770500px;}
.x3_c00157{left:177.007500px;}
.x4_c00157{left:435.249000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.078221pt;}
.ls2_c00157{letter-spacing:0.087539pt;}
.ls0_c00157{letter-spacing:0.092873pt;}
.ws2_c00157{word-spacing:-23.622682pt;}
.ws1_c00157{word-spacing:-23.544461pt;}
.ws5_c00157{word-spacing:0.000000pt;}
.ws3_c00157{word-spacing:0.039110pt;}
.ws7_c00157{word-spacing:0.041141pt;}
.ws6_c00157{word-spacing:0.050460pt;}
.ws9_c00157{word-spacing:0.065111pt;}
.ws8_c00157{word-spacing:0.065600pt;}
.ws0_c00157{word-spacing:0.156442pt;}
.wsa_c00157{word-spacing:0.189730pt;}
.ws4_c00157{word-spacing:0.195063pt;}
._0_c00157{width:0.893988pt;}
._2_c00157{width:47.362694pt;}
._1_c00157{width:70.985376pt;}
._3_c00157{width:94.568947pt;}
.fs0_c00157{font-size:39.110400pt;}
.fs1_c00157{font-size:53.133867pt;}
.y0_c00157{bottom:0.000000pt;}
.y21_c00157{bottom:39.333333pt;}
.y20_c00157{bottom:487.096000pt;}
.y1f_c00157{bottom:501.708000pt;}
.y1e_c00157{bottom:516.318667pt;}
.y1d_c00157{bottom:530.930667pt;}
.y1c_c00157{bottom:545.542667pt;}
.y1b_c00157{bottom:560.154667pt;}
.y1a_c00157{bottom:574.766667pt;}
.y19_c00157{bottom:589.378667pt;}
.y18_c00157{bottom:603.990667pt;}
.y17_c00157{bottom:618.602667pt;}
.y16_c00157{bottom:633.214667pt;}
.y15_c00157{bottom:662.438667pt;}
.y14_c00157{bottom:677.049333pt;}
.y13_c00157{bottom:691.661333pt;}
.y12_c00157{bottom:720.885333pt;}
.y11_c00157{bottom:735.497333pt;}
.y10_c00157{bottom:750.109333pt;}
.yf_c00157{bottom:764.721333pt;}
.ye_c00157{bottom:779.333333pt;}
.yd_c00157{bottom:793.945333pt;}
.yc_c00157{bottom:808.557333pt;}
.yb_c00157{bottom:823.168000pt;}
.ya_c00157{bottom:837.780000pt;}
.y9_c00157{bottom:852.392000pt;}
.y8_c00157{bottom:867.004000pt;}
.y7_c00157{bottom:881.616000pt;}
.y6_c00157{bottom:910.840000pt;}
.y5_c00157{bottom:925.452000pt;}
.y4_c00157{bottom:940.064000pt;}
.y3_c00157{bottom:969.286667pt;}
.y2_c00157{bottom:998.510667pt;}
.y1_c00157{bottom:1012.790667pt;}
.h2_c00157{height:31.280681pt;}
.h3_c00157{height:32.006363pt;}
.h4_c00157{height:46.518078pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w0_c00157{width:793.706667pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:121.886667pt;}
.x2_c00157{left:127.796000pt;}
.x3_c00157{left:157.340000pt;}
.x4_c00157{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22b498b73154979d73b25c87.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:0.893555;font-style:normal;font-weight:normal;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_adf26a09717ed375e0ed1190.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_55d960f9e706d922d8814dcd.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.048828;font-style: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;}
.ls3_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:0.087998px;}
.ls2_c00158{letter-spacing:0.098482px;}
.ls1_c00158{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00158{word-spacing:-26.575517px;}
.wsc_c00158{word-spacing:-26.487518px;}
.ws9_c00158{word-spacing:-19.128192px;}
.ws5_c00158{word-spacing:-18.769538px;}
.ws4_c00158{word-spacing:-14.943900px;}
.wsa_c00158{word-spacing:-14.824349px;}
.ws8_c00158{word-spacing:-11.918882px;}
.ws1_c00158{word-spacing:-9.988424px;}
.ws3_c00158{word-spacing:-9.987499px;}
.wsf_c00158{word-spacing:0.000000px;}
.wsd_c00158{word-spacing:0.043999px;}
.ws11_c00158{word-spacing:0.046284px;}
.ws10_c00158{word-spacing:0.056767px;}
.ws13_c00158{word-spacing:0.073250px;}
.ws12_c00158{word-spacing:0.073800px;}
.wsb_c00158{word-spacing:0.175997px;}
.ws14_c00158{word-spacing:0.213446px;}
.wse_c00158{word-spacing:0.219446px;}
.ws7_c00158{word-spacing:13.569061px;}
.ws0_c00158{word-spacing:43.038600px;}
.ws6_c00158{word-spacing:54.749856px;}
._0_c00158{margin-left:-6.369713px;}
._5_c00158{margin-left:-3.825638px;}
._2_c00158{margin-left:-1.075961px;}
._6_c00158{width:1.005737px;}
._1_c00158{width:19.935816px;}
._4_c00158{width:31.920170px;}
._8_c00158{width:53.283031px;}
._7_c00158{width:79.858548px;}
._9_c00158{width:106.390066px;}
._3_c00158{width:117.097076px;}
.fc6_c00158{color:rgb(0,0,207);}
.fc5_c00158{color:rgb(79,153,5);}
.fc3_c00158{color:rgb(33,74,135);}
.fc2_c00158{color:rgb(143,89,3);}
.fc4_c00158{color:rgb(207,92,0);}
.fc1_c00158{color:rgb(6,69,173);}
.fc0_c00158{color:rgb(0,0,0);}
.fs2_c00158{font-size:43.999200px;}
.fs1_c00158{font-size:59.775600px;}
.fs0_c00158{font-size:86.077200px;}
.y0_c00158{bottom:0.000000px;}
.y2a_c00158{bottom:44.250000px;}
.y29_c00158{bottom:96.919500px;}
.y28_c00158{bottom:113.358000px;}
.y27_c00158{bottom:129.796500px;}
.y26_c00158{bottom:146.235000px;}
.y25_c00158{bottom:162.673500px;}
.y24_c00158{bottom:179.112000px;}
.y23_c00158{bottom:195.550500px;}
.y22_c00158{bottom:211.989000px;}
.y21_c00158{bottom:228.427500px;}
.y20_c00158{bottom:244.866000px;}
.y1f_c00158{bottom:261.304500px;}
.y1e_c00158{bottom:294.180000px;}
.y1d_c00158{bottom:310.618500px;}
.y1c_c00158{bottom:327.057000px;}
.y1b_c00158{bottom:359.934000px;}
.y1a_c00158{bottom:376.372500px;}
.y19_c00158{bottom:392.811000px;}
.y18_c00158{bottom:409.249500px;}
.y17_c00158{bottom:425.688000px;}
.y16_c00158{bottom:442.125000px;}
.y15_c00158{bottom:458.563500px;}
.y14_c00158{bottom:475.002000px;}
.y13_c00158{bottom:491.440500px;}
.y12_c00158{bottom:507.879000px;}
.y11_c00158{bottom:524.317500px;}
.y10_c00158{bottom:540.756000px;}
.yf_c00158{bottom:573.633000px;}
.ye_c00158{bottom:590.071500px;}
.yd_c00158{bottom:606.508500px;}
.yc_c00158{bottom:639.385500px;}
.yb_c00158{bottom:672.262500px;}
.ya_c00158{bottom:688.327500px;}
.y9_c00158{bottom:805.633500px;}
.y8_c00158{bottom:823.566000px;}
.y7_c00158{bottom:841.500000px;}
.y6_c00158{bottom:859.432500px;}
.y5_c00158{bottom:913.971000px;}
.y4_c00158{bottom:968.511000px;}
.y3_c00158{bottom:1023.049500px;}
.y2_c00158{bottom:1077.588000px;}
.y1_c00158{bottom:1159.863000px;}
.h5_c00158{height:35.190766px;}
.h6_c00158{height:36.007158px;}
.h3_c00158{height:40.511979px;}
.h4_c00158{height:52.332837px;}
.h2_c00158{height:58.337477px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w0_c00158{width:892.920000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:127.558500px;}
.x2_c00158{left:137.122500px;}
.x3_c00158{left:143.770500px;}
.x4_c00158{left:177.007500px;}
.x5_c00158{left:435.249000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls3_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:0.078221pt;}
.ls2_c00158{letter-spacing:0.087539pt;}
.ls1_c00158{letter-spacing:0.092873pt;}
.ws2_c00158{word-spacing:-23.622682pt;}
.wsc_c00158{word-spacing:-23.544461pt;}
.ws9_c00158{word-spacing:-17.002837pt;}
.ws5_c00158{word-spacing:-16.684034pt;}
.ws4_c00158{word-spacing:-13.283467pt;}
.wsa_c00158{word-spacing:-13.177199pt;}
.ws8_c00158{word-spacing:-10.594562pt;}
.ws1_c00158{word-spacing:-8.878599pt;}
.ws3_c00158{word-spacing:-8.877777pt;}
.wsf_c00158{word-spacing:0.000000pt;}
.wsd_c00158{word-spacing:0.039110pt;}
.ws11_c00158{word-spacing:0.041141pt;}
.ws10_c00158{word-spacing:0.050460pt;}
.ws13_c00158{word-spacing:0.065111pt;}
.ws12_c00158{word-spacing:0.065600pt;}
.wsb_c00158{word-spacing:0.156442pt;}
.ws14_c00158{word-spacing:0.189730pt;}
.wse_c00158{word-spacing:0.195063pt;}
.ws7_c00158{word-spacing:12.061388pt;}
.ws0_c00158{word-spacing:38.256533pt;}
.ws6_c00158{word-spacing:48.666539pt;}
._0_c00158{margin-left:-5.661967pt;}
._5_c00158{margin-left:-3.400567pt;}
._2_c00158{margin-left:-0.956410pt;}
._6_c00158{width:0.893988pt;}
._1_c00158{width:17.720725pt;}
._4_c00158{width:28.373485pt;}
._8_c00158{width:47.362694pt;}
._7_c00158{width:70.985376pt;}
._9_c00158{width:94.568947pt;}
._3_c00158{width:104.086290pt;}
.fs2_c00158{font-size:39.110400pt;}
.fs1_c00158{font-size:53.133867pt;}
.fs0_c00158{font-size:76.513067pt;}
.y0_c00158{bottom:0.000000pt;}
.y2a_c00158{bottom:39.333333pt;}
.y29_c00158{bottom:86.150667pt;}
.y28_c00158{bottom:100.762667pt;}
.y27_c00158{bottom:115.374667pt;}
.y26_c00158{bottom:129.986667pt;}
.y25_c00158{bottom:144.598667pt;}
.y24_c00158{bottom:159.210667pt;}
.y23_c00158{bottom:173.822667pt;}
.y22_c00158{bottom:188.434667pt;}
.y21_c00158{bottom:203.046667pt;}
.y20_c00158{bottom:217.658667pt;}
.y1f_c00158{bottom:232.270667pt;}
.y1e_c00158{bottom:261.493333pt;}
.y1d_c00158{bottom:276.105333pt;}
.y1c_c00158{bottom:290.717333pt;}
.y1b_c00158{bottom:319.941333pt;}
.y1a_c00158{bottom:334.553333pt;}
.y19_c00158{bottom:349.165333pt;}
.y18_c00158{bottom:363.777333pt;}
.y17_c00158{bottom:378.389333pt;}
.y16_c00158{bottom:393.000000pt;}
.y15_c00158{bottom:407.612000pt;}
.y14_c00158{bottom:422.224000pt;}
.y13_c00158{bottom:436.836000pt;}
.y12_c00158{bottom:451.448000pt;}
.y11_c00158{bottom:466.060000pt;}
.y10_c00158{bottom:480.672000pt;}
.yf_c00158{bottom:509.896000pt;}
.ye_c00158{bottom:524.508000pt;}
.yd_c00158{bottom:539.118667pt;}
.yc_c00158{bottom:568.342667pt;}
.yb_c00158{bottom:597.566667pt;}
.ya_c00158{bottom:611.846667pt;}
.y9_c00158{bottom:716.118667pt;}
.y8_c00158{bottom:732.058667pt;}
.y7_c00158{bottom:748.000000pt;}
.y6_c00158{bottom:763.940000pt;}
.y5_c00158{bottom:812.418667pt;}
.y4_c00158{bottom:860.898667pt;}
.y3_c00158{bottom:909.377333pt;}
.y2_c00158{bottom:957.856000pt;}
.y1_c00158{bottom:1030.989333pt;}
.h5_c00158{height:31.280681pt;}
.h6_c00158{height:32.006363pt;}
.h3_c00158{height:36.010648pt;}
.h4_c00158{height:46.518078pt;}
.h2_c00158{height:51.855535pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w0_c00158{width:793.706667pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:113.385333pt;}
.x2_c00158{left:121.886667pt;}
.x3_c00158{left:127.796000pt;}
.x4_c00158{left:157.340000pt;}
.x5_c00158{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_243937cfcf76e9d78faa3506.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.893555;font-style:normal;font-weight:normal;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_5cb27e80fd6d98293480a4e1.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.083496;font-style:normal;font-weight:normal;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_1c8d4b94e22dd01e67e448de.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.014648;font-style:normal;font-weight:normal;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_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:1.048828;font-style: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;}
.v1_c00159{vertical-align:22.518000px;}
.ls3_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:0.087998px;}
.ls2_c00159{letter-spacing:0.098482px;}
.ls1_c00159{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00159{word-spacing:-33.713438px;}
.ws2_c00159{word-spacing:-26.575517px;}
.ws14_c00159{word-spacing:-26.487518px;}
.ws8_c00159{word-spacing:-23.599339px;}
.ws11_c00159{word-spacing:-19.128192px;}
.ws9_c00159{word-spacing:-18.769538px;}
.wsd_c00159{word-spacing:-15.541656px;}
.wsb_c00159{word-spacing:-15.481880px;}
.ws12_c00159{word-spacing:-14.824349px;}
.ws5_c00159{word-spacing:-14.346144px;}
.ws10_c00159{word-spacing:-11.918882px;}
.wsa_c00159{word-spacing:-11.716018px;}
.ws4_c00159{word-spacing:-10.580281px;}
.ws1_c00159{word-spacing:-9.988424px;}
.ws3_c00159{word-spacing:-9.987499px;}
.wsc_c00159{word-spacing:-2.379230px;}
.ws6_c00159{word-spacing:-1.233230px;}
.ws17_c00159{word-spacing:0.000000px;}
.ws15_c00159{word-spacing:0.043999px;}
.ws19_c00159{word-spacing:0.046284px;}
.ws18_c00159{word-spacing:0.056767px;}
.ws1b_c00159{word-spacing:0.073250px;}
.ws1a_c00159{word-spacing:0.073800px;}
.ws13_c00159{word-spacing:0.175997px;}
.ws16_c00159{word-spacing:0.219446px;}
.wsf_c00159{word-spacing:13.569061px;}
.ws0_c00159{word-spacing:43.038600px;}
.wse_c00159{word-spacing:54.749856px;}
._0_c00159{margin-left:-6.369713px;}
._7_c00159{margin-left:-3.825638px;}
._4_c00159{margin-left:-1.075961px;}
._9_c00159{width:1.005737px;}
._2_c00159{width:2.767412px;}
._8_c00159{width:19.905275px;}
._3_c00159{width:26.512618px;}
._1_c00159{width:28.814197px;}
._6_c00159{width:31.920170px;}
._b_c00159{width:53.283031px;}
._a_c00159{width:79.858548px;}
._c_c00159{width:106.390066px;}
._5_c00159{width:117.097076px;}
.fc6_c00159{color:rgb(0,0,207);}
.fc5_c00159{color:rgb(79,153,5);}
.fc3_c00159{color:rgb(33,74,135);}
.fc2_c00159{color:rgb(143,89,3);}
.fc4_c00159{color:rgb(207,92,0);}
.fc1_c00159{color:rgb(6,69,173);}
.fc0_c00159{color:rgb(0,0,0);}
.fs3_c00159{font-size:41.842800px;}
.fs2_c00159{font-size:43.999200px;}
.fs1_c00159{font-size:59.775600px;}
.fs0_c00159{font-size:86.077200px;}
.y0_c00159{bottom:0.000000px;}
.y1f_c00159{bottom:44.250000px;}
.y1e_c00159{bottom:86.982000px;}
.y1d_c00159{bottom:119.859000px;}
.y1c_c00159{bottom:136.297500px;}
.y1b_c00159{bottom:152.736000px;}
.y1a_c00159{bottom:169.174500px;}
.y19_c00159{bottom:185.613000px;}
.y18_c00159{bottom:202.051500px;}
.y17_c00159{bottom:218.490000px;}
.y16_c00159{bottom:234.927000px;}
.y15_c00159{bottom:251.365500px;}
.y14_c00159{bottom:267.804000px;}
.y13_c00159{bottom:284.242500px;}
.y12_c00159{bottom:300.681000px;}
.y11_c00159{bottom:333.558000px;}
.y10_c00159{bottom:349.996500px;}
.yf_c00159{bottom:366.435000px;}
.ye_c00159{bottom:399.310500px;}
.yd_c00159{bottom:432.187500px;}
.yc_c00159{bottom:448.252500px;}
.yb_c00159{bottom:495.994500px;}
.ya_c00159{bottom:513.927000px;}
.y9_c00159{bottom:531.859500px;}
.y8_c00159{bottom:549.793500px;}
.y7_c00159{bottom:576.615000px;}
.y6_c00159{bottom:594.547500px;}
.y5_c00159{bottom:621.369000px;}
.y4_c00159{bottom:639.301500px;}
.y3_c00159{bottom:666.123000px;}
.y2_c00159{bottom:692.944500px;}
.y1_c00159{bottom:735.139500px;}
.h6_c00159{height:35.190766px;}
.h7_c00159{height:36.007158px;}
.h3_c00159{height:40.511979px;}
.h5_c00159{height:52.332837px;}
.h2_c00159{height:58.337477px;}
.h4_c00159{height:59.150881px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w0_c00159{width:892.920000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:127.558500px;}
.x2_c00159{left:137.122500px;}
.x3_c00159{left:143.770500px;}
.x4_c00159{left:435.249000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:20.016000pt;}
.ls3_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:0.078221pt;}
.ls2_c00159{letter-spacing:0.087539pt;}
.ls1_c00159{letter-spacing:0.092873pt;}
.ws7_c00159{word-spacing:-29.967501pt;}
.ws2_c00159{word-spacing:-23.622682pt;}
.ws14_c00159{word-spacing:-23.544461pt;}
.ws8_c00159{word-spacing:-20.977190pt;}
.ws11_c00159{word-spacing:-17.002837pt;}
.ws9_c00159{word-spacing:-16.684034pt;}
.wsd_c00159{word-spacing:-13.814805pt;}
.wsb_c00159{word-spacing:-13.761671pt;}
.ws12_c00159{word-spacing:-13.177199pt;}
.ws5_c00159{word-spacing:-12.752128pt;}
.ws10_c00159{word-spacing:-10.594562pt;}
.wsa_c00159{word-spacing:-10.414238pt;}
.ws4_c00159{word-spacing:-9.404694pt;}
.ws1_c00159{word-spacing:-8.878599pt;}
.ws3_c00159{word-spacing:-8.877777pt;}
.wsc_c00159{word-spacing:-2.114871pt;}
.ws6_c00159{word-spacing:-1.096205pt;}
.ws17_c00159{word-spacing:0.000000pt;}
.ws15_c00159{word-spacing:0.039110pt;}
.ws19_c00159{word-spacing:0.041141pt;}
.ws18_c00159{word-spacing:0.050460pt;}
.ws1b_c00159{word-spacing:0.065111pt;}
.ws1a_c00159{word-spacing:0.065600pt;}
.ws13_c00159{word-spacing:0.156442pt;}
.ws16_c00159{word-spacing:0.195063pt;}
.wsf_c00159{word-spacing:12.061388pt;}
.ws0_c00159{word-spacing:38.256533pt;}
.wse_c00159{word-spacing:48.666539pt;}
._0_c00159{margin-left:-5.661967pt;}
._7_c00159{margin-left:-3.400567pt;}
._4_c00159{margin-left:-0.956410pt;}
._9_c00159{width:0.893988pt;}
._2_c00159{width:2.459922pt;}
._8_c00159{width:17.693578pt;}
._3_c00159{width:23.566771pt;}
._1_c00159{width:25.612620pt;}
._6_c00159{width:28.373485pt;}
._b_c00159{width:47.362694pt;}
._a_c00159{width:70.985376pt;}
._c_c00159{width:94.568947pt;}
._5_c00159{width:104.086290pt;}
.fs3_c00159{font-size:37.193600pt;}
.fs2_c00159{font-size:39.110400pt;}
.fs1_c00159{font-size:53.133867pt;}
.fs0_c00159{font-size:76.513067pt;}
.y0_c00159{bottom:0.000000pt;}
.y1f_c00159{bottom:39.333333pt;}
.y1e_c00159{bottom:77.317333pt;}
.y1d_c00159{bottom:106.541333pt;}
.y1c_c00159{bottom:121.153333pt;}
.y1b_c00159{bottom:135.765333pt;}
.y1a_c00159{bottom:150.377333pt;}
.y19_c00159{bottom:164.989333pt;}
.y18_c00159{bottom:179.601333pt;}
.y17_c00159{bottom:194.213333pt;}
.y16_c00159{bottom:208.824000pt;}
.y15_c00159{bottom:223.436000pt;}
.y14_c00159{bottom:238.048000pt;}
.y13_c00159{bottom:252.660000pt;}
.y12_c00159{bottom:267.272000pt;}
.y11_c00159{bottom:296.496000pt;}
.y10_c00159{bottom:311.108000pt;}
.yf_c00159{bottom:325.720000pt;}
.ye_c00159{bottom:354.942667pt;}
.yd_c00159{bottom:384.166667pt;}
.yc_c00159{bottom:398.446667pt;}
.yb_c00159{bottom:440.884000pt;}
.ya_c00159{bottom:456.824000pt;}
.y9_c00159{bottom:472.764000pt;}
.y8_c00159{bottom:488.705333pt;}
.y7_c00159{bottom:512.546667pt;}
.y6_c00159{bottom:528.486667pt;}
.y5_c00159{bottom:552.328000pt;}
.y4_c00159{bottom:568.268000pt;}
.y3_c00159{bottom:592.109333pt;}
.y2_c00159{bottom:615.950667pt;}
.y1_c00159{bottom:653.457333pt;}
.h6_c00159{height:31.280681pt;}
.h7_c00159{height:32.006363pt;}
.h3_c00159{height:36.010648pt;}
.h5_c00159{height:46.518078pt;}
.h2_c00159{height:51.855535pt;}
.h4_c00159{height:52.578561pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w0_c00159{width:793.706667pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:113.385333pt;}
.x2_c00159{left:121.886667pt;}
.x3_c00159{left:127.796000pt;}
.x4_c00159{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.048828;font-style:normal;font-weight:normal;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_2977a0a6adbb7cc1d97f014c.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.083496;font-style:normal;font-weight:normal;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_d537281f5137b0f5382ad140.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.893555;font-style:normal;font-weight:normal;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_ebbd17f69a5c207892e30978.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:1.014648;font-style: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;}
.ls3_c00160{letter-spacing:0.000000px;}
.ls1_c00160{letter-spacing:0.087998px;}
.ls2_c00160{letter-spacing:0.098482px;}
.ls0_c00160{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00160{word-spacing:-26.487518px;}
.ws8_c00160{word-spacing:-23.133157px;}
.ws7_c00160{word-spacing:-19.307519px;}
.wsf_c00160{word-spacing:-19.128192px;}
.ws9_c00160{word-spacing:-18.769538px;}
.wsb_c00160{word-spacing:-17.514251px;}
.ws10_c00160{word-spacing:-14.824349px;}
.wsa_c00160{word-spacing:-13.748388px;}
.wse_c00160{word-spacing:-11.918882px;}
.ws5_c00160{word-spacing:-9.988424px;}
.ws6_c00160{word-spacing:-9.987499px;}
.ws13_c00160{word-spacing:0.000000px;}
.ws2_c00160{word-spacing:0.043999px;}
.ws11_c00160{word-spacing:0.175997px;}
.ws3_c00160{word-spacing:0.213446px;}
.ws12_c00160{word-spacing:0.219446px;}
.wsd_c00160{word-spacing:13.569061px;}
.ws4_c00160{word-spacing:43.038600px;}
.wsc_c00160{word-spacing:54.749856px;}
._1_c00160{margin-left:-6.369713px;}
._4_c00160{margin-left:-3.586536px;}
._5_c00160{margin-left:-1.075961px;}
._0_c00160{width:1.041538px;}
._2_c00160{width:17.801435px;}
._3_c00160{width:22.442988px;}
._7_c00160{width:31.920170px;}
._6_c00160{width:117.097076px;}
.fc5_c00160{color:rgb(0,0,207);}
.fc4_c00160{color:rgb(143,89,3);}
.fc3_c00160{color:rgb(79,153,5);}
.fc6_c00160{color:rgb(6,69,173);}
.fc2_c00160{color:rgb(207,92,0);}
.fc1_c00160{color:rgb(0,0,0);}
.fc0_c00160{color:rgb(33,74,135);}
.fs0_c00160{font-size:43.999200px;}
.fs2_c00160{font-size:59.775600px;}
.fs1_c00160{font-size:86.077200px;}
.y0_c00160{bottom:0.000000px;}
.y1f_c00160{bottom:44.250000px;}
.y1e_c00160{bottom:82.051500px;}
.y1d_c00160{bottom:98.490000px;}
.y1c_c00160{bottom:114.927000px;}
.y1b_c00160{bottom:147.804000px;}
.y1a_c00160{bottom:180.681000px;}
.y19_c00160{bottom:196.746000px;}
.y18_c00160{bottom:243.456000px;}
.y17_c00160{bottom:261.388500px;}
.y16_c00160{bottom:279.322500px;}
.y15_c00160{bottom:297.255000px;}
.y14_c00160{bottom:323.904000px;}
.y13_c00160{bottom:341.836500px;}
.y12_c00160{bottom:368.487000px;}
.y11_c00160{bottom:386.419500px;}
.y10_c00160{bottom:413.070000px;}
.yf_c00160{bottom:439.719000px;}
.ye_c00160{bottom:481.741500px;}
.yd_c00160{bottom:946.164000px;}
.yc_c00160{bottom:962.602500px;}
.yb_c00160{bottom:979.041000px;}
.ya_c00160{bottom:995.479500px;}
.y9_c00160{bottom:1011.918000px;}
.y8_c00160{bottom:1028.356500px;}
.y7_c00160{bottom:1044.795000px;}
.y6_c00160{bottom:1061.232000px;}
.y5_c00160{bottom:1077.670500px;}
.y4_c00160{bottom:1094.109000px;}
.y3_c00160{bottom:1110.547500px;}
.y2_c00160{bottom:1143.424500px;}
.y1_c00160{bottom:1159.863000px;}
.h6_c00160{height:35.190766px;}
.h2_c00160{height:36.007158px;}
.h4_c00160{height:40.511979px;}
.h5_c00160{height:52.332837px;}
.h3_c00160{height:58.337477px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w0_c00160{width:892.920000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x3_c00160{left:127.558500px;}
.x1_c00160{left:137.122500px;}
.x2_c00160{left:177.007500px;}
.x4_c00160{left:435.249000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls3_c00160{letter-spacing:0.000000pt;}
.ls1_c00160{letter-spacing:0.078221pt;}
.ls2_c00160{letter-spacing:0.087539pt;}
.ls0_c00160{letter-spacing:0.092873pt;}
.ws1_c00160{word-spacing:-23.622682pt;}
.ws0_c00160{word-spacing:-23.544461pt;}
.ws8_c00160{word-spacing:-20.562806pt;}
.ws7_c00160{word-spacing:-17.162239pt;}
.wsf_c00160{word-spacing:-17.002837pt;}
.ws9_c00160{word-spacing:-16.684034pt;}
.wsb_c00160{word-spacing:-15.568223pt;}
.ws10_c00160{word-spacing:-13.177199pt;}
.wsa_c00160{word-spacing:-12.220789pt;}
.wse_c00160{word-spacing:-10.594562pt;}
.ws5_c00160{word-spacing:-8.878599pt;}
.ws6_c00160{word-spacing:-8.877777pt;}
.ws13_c00160{word-spacing:0.000000pt;}
.ws2_c00160{word-spacing:0.039110pt;}
.ws11_c00160{word-spacing:0.156442pt;}
.ws3_c00160{word-spacing:0.189730pt;}
.ws12_c00160{word-spacing:0.195063pt;}
.wsd_c00160{word-spacing:12.061388pt;}
.ws4_c00160{word-spacing:38.256533pt;}
.wsc_c00160{word-spacing:48.666539pt;}
._1_c00160{margin-left:-5.661967pt;}
._4_c00160{margin-left:-3.188032pt;}
._5_c00160{margin-left:-0.956410pt;}
._0_c00160{width:0.925811pt;}
._2_c00160{width:15.823498pt;}
._3_c00160{width:19.949323pt;}
._7_c00160{width:28.373485pt;}
._6_c00160{width:104.086290pt;}
.fs0_c00160{font-size:39.110400pt;}
.fs2_c00160{font-size:53.133867pt;}
.fs1_c00160{font-size:76.513067pt;}
.y0_c00160{bottom:0.000000pt;}
.y1f_c00160{bottom:39.333333pt;}
.y1e_c00160{bottom:72.934667pt;}
.y1d_c00160{bottom:87.546667pt;}
.y1c_c00160{bottom:102.157333pt;}
.y1b_c00160{bottom:131.381333pt;}
.y1a_c00160{bottom:160.605333pt;}
.y19_c00160{bottom:174.885333pt;}
.y18_c00160{bottom:216.405333pt;}
.y17_c00160{bottom:232.345333pt;}
.y16_c00160{bottom:248.286667pt;}
.y15_c00160{bottom:264.226667pt;}
.y14_c00160{bottom:287.914667pt;}
.y13_c00160{bottom:303.854667pt;}
.y12_c00160{bottom:327.544000pt;}
.y11_c00160{bottom:343.484000pt;}
.y10_c00160{bottom:367.173333pt;}
.yf_c00160{bottom:390.861333pt;}
.ye_c00160{bottom:428.214667pt;}
.yd_c00160{bottom:841.034667pt;}
.yc_c00160{bottom:855.646667pt;}
.yb_c00160{bottom:870.258667pt;}
.ya_c00160{bottom:884.870667pt;}
.y9_c00160{bottom:899.482667pt;}
.y8_c00160{bottom:914.094667pt;}
.y7_c00160{bottom:928.706667pt;}
.y6_c00160{bottom:943.317333pt;}
.y5_c00160{bottom:957.929333pt;}
.y4_c00160{bottom:972.541333pt;}
.y3_c00160{bottom:987.153333pt;}
.y2_c00160{bottom:1016.377333pt;}
.y1_c00160{bottom:1030.989333pt;}
.h6_c00160{height:31.280681pt;}
.h2_c00160{height:32.006363pt;}
.h4_c00160{height:36.010648pt;}
.h5_c00160{height:46.518078pt;}
.h3_c00160{height:51.855535pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w0_c00160{width:793.706667pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x3_c00160{left:113.385333pt;}
.x1_c00160{left:121.886667pt;}
.x2_c00160{left:157.340000pt;}
.x4_c00160{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0224e6cf88ca78dcea4bdc4.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_33c77ba3f79c67ec9eafd95f.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00161;src:url('chunks/assets/font_b52a12b0560609468a1d991b.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls3_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.087998px;}
.ls1_c00161{letter-spacing:0.098482px;}
.ls2_c00161{letter-spacing:0.104482px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00161{word-spacing:-26.575517px;}
.ws8_c00161{word-spacing:-26.487518px;}
.ws11_c00161{word-spacing:-23.013606px;}
.wse_c00161{word-spacing:-19.486846px;}
.ws10_c00161{word-spacing:-19.247743px;}
.wsf_c00161{word-spacing:-18.769538px;}
.wsd_c00161{word-spacing:-15.720983px;}
.wsb_c00161{word-spacing:-9.988424px;}
.wsc_c00161{word-spacing:-9.987499px;}
.ws2_c00161{word-spacing:0.000000px;}
.ws4_c00161{word-spacing:0.043999px;}
.ws5_c00161{word-spacing:0.046284px;}
.ws3_c00161{word-spacing:0.056767px;}
.ws7_c00161{word-spacing:0.073250px;}
.ws6_c00161{word-spacing:0.073800px;}
.ws9_c00161{word-spacing:0.213446px;}
.ws0_c00161{word-spacing:0.219446px;}
.wsa_c00161{word-spacing:43.038600px;}
._4_c00161{margin-left:-6.369713px;}
._8_c00161{margin-left:-3.586536px;}
._6_c00161{margin-left:-1.255288px;}
._3_c00161{width:1.041538px;}
._7_c00161{width:17.850343px;}
._5_c00161{width:19.608899px;}
._1_c00161{width:53.283031px;}
._0_c00161{width:79.858548px;}
._2_c00161{width:106.390066px;}
.fc5_c00161{color:rgb(207,92,0);}
.fc4_c00161{color:rgb(0,0,207);}
.fc3_c00161{color:rgb(79,153,5);}
.fc2_c00161{color:rgb(33,74,135);}
.fc1_c00161{color:rgb(143,89,3);}
.fc0_c00161{color:rgb(0,0,0);}
.fs0_c00161{font-size:43.999200px;}
.fs2_c00161{font-size:59.775600px;}
.fs1_c00161{font-size:86.077200px;}
.y0_c00161{bottom:0.000000px;}
.y22_c00161{bottom:44.250000px;}
.y21_c00161{bottom:82.051500px;}
.y20_c00161{bottom:99.984000px;}
.y1f_c00161{bottom:125.949000px;}
.y1e_c00161{bottom:143.881500px;}
.y1d_c00161{bottom:169.846500px;}
.y1c_c00161{bottom:195.811500px;}
.y1b_c00161{bottom:237.148500px;}
.y1a_c00161{bottom:699.589500px;}
.y19_c00161{bottom:716.028000px;}
.y18_c00161{bottom:732.465000px;}
.y17_c00161{bottom:748.903500px;}
.y16_c00161{bottom:765.342000px;}
.y15_c00161{bottom:781.780500px;}
.y14_c00161{bottom:798.219000px;}
.y13_c00161{bottom:814.657500px;}
.y12_c00161{bottom:831.096000px;}
.y11_c00161{bottom:847.534500px;}
.y10_c00161{bottom:863.973000px;}
.yf_c00161{bottom:896.848500px;}
.ye_c00161{bottom:913.287000px;}
.yd_c00161{bottom:929.725500px;}
.yc_c00161{bottom:962.602500px;}
.yb_c00161{bottom:979.041000px;}
.ya_c00161{bottom:995.479500px;}
.y9_c00161{bottom:1011.918000px;}
.y8_c00161{bottom:1028.356500px;}
.y7_c00161{bottom:1044.795000px;}
.y6_c00161{bottom:1061.232000px;}
.y5_c00161{bottom:1077.670500px;}
.y4_c00161{bottom:1094.109000px;}
.y3_c00161{bottom:1110.547500px;}
.y2_c00161{bottom:1126.986000px;}
.y1_c00161{bottom:1143.424500px;}
.h3_c00161{height:35.190766px;}
.h2_c00161{height:36.007158px;}
.h5_c00161{height:40.511979px;}
.h6_c00161{height:52.332837px;}
.h4_c00161{height:58.337477px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w0_c00161{width:892.920000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x4_c00161{left:127.558500px;}
.x1_c00161{left:137.122500px;}
.x2_c00161{left:143.770500px;}
.x3_c00161{left:177.007500px;}
.x5_c00161{left:435.249000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls3_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.078221pt;}
.ls1_c00161{letter-spacing:0.087539pt;}
.ls2_c00161{letter-spacing:0.092873pt;}
.ws1_c00161{word-spacing:-23.622682pt;}
.ws8_c00161{word-spacing:-23.544461pt;}
.ws11_c00161{word-spacing:-20.456539pt;}
.wse_c00161{word-spacing:-17.321641pt;}
.ws10_c00161{word-spacing:-17.109105pt;}
.wsf_c00161{word-spacing:-16.684034pt;}
.wsd_c00161{word-spacing:-13.974207pt;}
.wsb_c00161{word-spacing:-8.878599pt;}
.wsc_c00161{word-spacing:-8.877777pt;}
.ws2_c00161{word-spacing:0.000000pt;}
.ws4_c00161{word-spacing:0.039110pt;}
.ws5_c00161{word-spacing:0.041141pt;}
.ws3_c00161{word-spacing:0.050460pt;}
.ws7_c00161{word-spacing:0.065111pt;}
.ws6_c00161{word-spacing:0.065600pt;}
.ws9_c00161{word-spacing:0.189730pt;}
.ws0_c00161{word-spacing:0.195063pt;}
.wsa_c00161{word-spacing:38.256533pt;}
._4_c00161{margin-left:-5.661967pt;}
._8_c00161{margin-left:-3.188032pt;}
._6_c00161{margin-left:-1.115811pt;}
._3_c00161{width:0.925811pt;}
._7_c00161{width:15.866972pt;}
._5_c00161{width:17.430132pt;}
._1_c00161{width:47.362694pt;}
._0_c00161{width:70.985376pt;}
._2_c00161{width:94.568947pt;}
.fs0_c00161{font-size:39.110400pt;}
.fs2_c00161{font-size:53.133867pt;}
.fs1_c00161{font-size:76.513067pt;}
.y0_c00161{bottom:0.000000pt;}
.y22_c00161{bottom:39.333333pt;}
.y21_c00161{bottom:72.934667pt;}
.y20_c00161{bottom:88.874667pt;}
.y1f_c00161{bottom:111.954667pt;}
.y1e_c00161{bottom:127.894667pt;}
.y1d_c00161{bottom:150.974667pt;}
.y1c_c00161{bottom:174.054667pt;}
.y1b_c00161{bottom:210.798667pt;}
.y1a_c00161{bottom:621.857333pt;}
.y19_c00161{bottom:636.469333pt;}
.y18_c00161{bottom:651.080000pt;}
.y17_c00161{bottom:665.692000pt;}
.y16_c00161{bottom:680.304000pt;}
.y15_c00161{bottom:694.916000pt;}
.y14_c00161{bottom:709.528000pt;}
.y13_c00161{bottom:724.140000pt;}
.y12_c00161{bottom:738.752000pt;}
.y11_c00161{bottom:753.364000pt;}
.y10_c00161{bottom:767.976000pt;}
.yf_c00161{bottom:797.198667pt;}
.ye_c00161{bottom:811.810667pt;}
.yd_c00161{bottom:826.422667pt;}
.yc_c00161{bottom:855.646667pt;}
.yb_c00161{bottom:870.258667pt;}
.ya_c00161{bottom:884.870667pt;}
.y9_c00161{bottom:899.482667pt;}
.y8_c00161{bottom:914.094667pt;}
.y7_c00161{bottom:928.706667pt;}
.y6_c00161{bottom:943.317333pt;}
.y5_c00161{bottom:957.929333pt;}
.y4_c00161{bottom:972.541333pt;}
.y3_c00161{bottom:987.153333pt;}
.y2_c00161{bottom:1001.765333pt;}
.y1_c00161{bottom:1016.377333pt;}
.h3_c00161{height:31.280681pt;}
.h2_c00161{height:32.006363pt;}
.h5_c00161{height:36.010648pt;}
.h6_c00161{height:46.518078pt;}
.h4_c00161{height:51.855535pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w0_c00161{width:793.706667pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x4_c00161{left:113.385333pt;}
.x1_c00161{left:121.886667pt;}
.x2_c00161{left:127.796000pt;}
.x3_c00161{left:157.340000pt;}
.x5_c00161{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:0.893555;font-style:normal;font-weight:normal;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_c755d065af8454c936a77a21.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.102051;font-style:normal;font-weight:normal;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_84a0a6d345dfc6ade51d98f2.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:1.048828;font-style: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;}
.ls3_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.087998px;}
.ls2_c00162{letter-spacing:0.098482px;}
.ls1_c00162{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00162{word-spacing:-26.575517px;}
.ws8_c00162{word-spacing:-26.487518px;}
.ws4_c00162{word-spacing:-19.128192px;}
.ws6_c00162{word-spacing:-18.769538px;}
.ws5_c00162{word-spacing:-14.824349px;}
.ws3_c00162{word-spacing:-11.918882px;}
.wsb_c00162{word-spacing:0.000000px;}
.ws9_c00162{word-spacing:0.043999px;}
.wsd_c00162{word-spacing:0.046284px;}
.wsc_c00162{word-spacing:0.056767px;}
.wsf_c00162{word-spacing:0.073250px;}
.wse_c00162{word-spacing:0.073800px;}
.ws7_c00162{word-spacing:0.175997px;}
.ws10_c00162{word-spacing:0.213446px;}
.wsa_c00162{word-spacing:0.219446px;}
.ws1_c00162{word-spacing:13.569061px;}
.ws0_c00162{word-spacing:54.749856px;}
._3_c00162{margin-left:-3.825638px;}
._0_c00162{margin-left:-1.075961px;}
._5_c00162{width:1.005737px;}
._4_c00162{width:19.905275px;}
._2_c00162{width:31.920170px;}
._7_c00162{width:53.283031px;}
._6_c00162{width:79.858548px;}
._8_c00162{width:106.390066px;}
._1_c00162{width:117.097076px;}
.fc6_c00162{color:rgb(0,0,207);}
.fc5_c00162{color:rgb(79,153,5);}
.fc3_c00162{color:rgb(33,74,135);}
.fc2_c00162{color:rgb(143,89,3);}
.fc4_c00162{color:rgb(207,92,0);}
.fc1_c00162{color:rgb(6,69,173);}
.fc0_c00162{color:rgb(0,0,0);}
.fs1_c00162{font-size:43.999200px;}
.fs0_c00162{font-size:59.775600px;}
.y0_c00162{bottom:0.000000px;}
.y25_c00162{bottom:44.250000px;}
.y24_c00162{bottom:96.919500px;}
.y23_c00162{bottom:113.358000px;}
.y22_c00162{bottom:129.796500px;}
.y21_c00162{bottom:146.235000px;}
.y20_c00162{bottom:162.673500px;}
.y1f_c00162{bottom:179.112000px;}
.y1e_c00162{bottom:195.550500px;}
.y1d_c00162{bottom:211.989000px;}
.y1c_c00162{bottom:228.427500px;}
.y1b_c00162{bottom:244.866000px;}
.y1a_c00162{bottom:261.304500px;}
.y19_c00162{bottom:294.180000px;}
.y18_c00162{bottom:310.618500px;}
.y17_c00162{bottom:327.057000px;}
.y16_c00162{bottom:359.934000px;}
.y15_c00162{bottom:376.372500px;}
.y14_c00162{bottom:392.811000px;}
.y13_c00162{bottom:409.249500px;}
.y12_c00162{bottom:425.688000px;}
.y11_c00162{bottom:442.125000px;}
.y10_c00162{bottom:458.563500px;}
.yf_c00162{bottom:475.002000px;}
.ye_c00162{bottom:491.440500px;}
.yd_c00162{bottom:507.879000px;}
.yc_c00162{bottom:524.317500px;}
.yb_c00162{bottom:540.756000px;}
.ya_c00162{bottom:573.633000px;}
.y9_c00162{bottom:590.071500px;}
.y8_c00162{bottom:606.508500px;}
.y7_c00162{bottom:639.385500px;}
.y6_c00162{bottom:672.262500px;}
.y5_c00162{bottom:688.327500px;}
.y4_c00162{bottom:1106.064000px;}
.y3_c00162{bottom:1123.998000px;}
.y2_c00162{bottom:1141.930500px;}
.y1_c00162{bottom:1159.863000px;}
.h3_c00162{height:35.190766px;}
.h4_c00162{height:36.007158px;}
.h2_c00162{height:52.332837px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w0_c00162{width:892.920000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:127.558500px;}
.x2_c00162{left:137.122500px;}
.x3_c00162{left:143.770500px;}
.x4_c00162{left:177.007500px;}
.x5_c00162{left:435.249000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls3_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.078221pt;}
.ls2_c00162{letter-spacing:0.087539pt;}
.ls1_c00162{letter-spacing:0.092873pt;}
.ws2_c00162{word-spacing:-23.622682pt;}
.ws8_c00162{word-spacing:-23.544461pt;}
.ws4_c00162{word-spacing:-17.002837pt;}
.ws6_c00162{word-spacing:-16.684034pt;}
.ws5_c00162{word-spacing:-13.177199pt;}
.ws3_c00162{word-spacing:-10.594562pt;}
.wsb_c00162{word-spacing:0.000000pt;}
.ws9_c00162{word-spacing:0.039110pt;}
.wsd_c00162{word-spacing:0.041141pt;}
.wsc_c00162{word-spacing:0.050460pt;}
.wsf_c00162{word-spacing:0.065111pt;}
.wse_c00162{word-spacing:0.065600pt;}
.ws7_c00162{word-spacing:0.156442pt;}
.ws10_c00162{word-spacing:0.189730pt;}
.wsa_c00162{word-spacing:0.195063pt;}
.ws1_c00162{word-spacing:12.061388pt;}
.ws0_c00162{word-spacing:48.666539pt;}
._3_c00162{margin-left:-3.400567pt;}
._0_c00162{margin-left:-0.956410pt;}
._5_c00162{width:0.893988pt;}
._4_c00162{width:17.693578pt;}
._2_c00162{width:28.373485pt;}
._7_c00162{width:47.362694pt;}
._6_c00162{width:70.985376pt;}
._8_c00162{width:94.568947pt;}
._1_c00162{width:104.086290pt;}
.fs1_c00162{font-size:39.110400pt;}
.fs0_c00162{font-size:53.133867pt;}
.y0_c00162{bottom:0.000000pt;}
.y25_c00162{bottom:39.333333pt;}
.y24_c00162{bottom:86.150667pt;}
.y23_c00162{bottom:100.762667pt;}
.y22_c00162{bottom:115.374667pt;}
.y21_c00162{bottom:129.986667pt;}
.y20_c00162{bottom:144.598667pt;}
.y1f_c00162{bottom:159.210667pt;}
.y1e_c00162{bottom:173.822667pt;}
.y1d_c00162{bottom:188.434667pt;}
.y1c_c00162{bottom:203.046667pt;}
.y1b_c00162{bottom:217.658667pt;}
.y1a_c00162{bottom:232.270667pt;}
.y19_c00162{bottom:261.493333pt;}
.y18_c00162{bottom:276.105333pt;}
.y17_c00162{bottom:290.717333pt;}
.y16_c00162{bottom:319.941333pt;}
.y15_c00162{bottom:334.553333pt;}
.y14_c00162{bottom:349.165333pt;}
.y13_c00162{bottom:363.777333pt;}
.y12_c00162{bottom:378.389333pt;}
.y11_c00162{bottom:393.000000pt;}
.y10_c00162{bottom:407.612000pt;}
.yf_c00162{bottom:422.224000pt;}
.ye_c00162{bottom:436.836000pt;}
.yd_c00162{bottom:451.448000pt;}
.yc_c00162{bottom:466.060000pt;}
.yb_c00162{bottom:480.672000pt;}
.ya_c00162{bottom:509.896000pt;}
.y9_c00162{bottom:524.508000pt;}
.y8_c00162{bottom:539.118667pt;}
.y7_c00162{bottom:568.342667pt;}
.y6_c00162{bottom:597.566667pt;}
.y5_c00162{bottom:611.846667pt;}
.y4_c00162{bottom:983.168000pt;}
.y3_c00162{bottom:999.109333pt;}
.y2_c00162{bottom:1015.049333pt;}
.y1_c00162{bottom:1030.989333pt;}
.h3_c00162{height:31.280681pt;}
.h4_c00162{height:32.006363pt;}
.h2_c00162{height:46.518078pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w0_c00162{width:793.706667pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:113.385333pt;}
.x2_c00162{left:121.886667pt;}
.x3_c00162{left:127.796000pt;}
.x4_c00162{left:157.340000pt;}
.x5_c00162{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e8c768de12873c553b89a01.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:0.893555;font-style:normal;font-weight:normal;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_9c93f8576a1393e7ba6df65e.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_ded8f8484df6d7dd2524223f.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00163;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.048828;font-style: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;}
.ls3_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.087998px;}
.ls2_c00163{letter-spacing:0.098482px;}
.ls1_c00163{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00163{word-spacing:-26.575517px;}
.wsf_c00163{word-spacing:-26.487518px;}
.wsc_c00163{word-spacing:-19.128192px;}
.ws6_c00163{word-spacing:-18.769538px;}
.wsd_c00163{word-spacing:-14.824349px;}
.ws8_c00163{word-spacing:-14.525471px;}
.wsb_c00163{word-spacing:-11.918882px;}
.ws5_c00163{word-spacing:-11.357364px;}
.ws7_c00163{word-spacing:-10.699832px;}
.ws1_c00163{word-spacing:-9.988424px;}
.ws3_c00163{word-spacing:-9.987499px;}
.ws4_c00163{word-spacing:-7.531726px;}
.ws12_c00163{word-spacing:0.000000px;}
.ws10_c00163{word-spacing:0.043999px;}
.ws14_c00163{word-spacing:0.046284px;}
.ws13_c00163{word-spacing:0.056767px;}
.ws16_c00163{word-spacing:0.073250px;}
.ws15_c00163{word-spacing:0.073800px;}
.wse_c00163{word-spacing:0.175997px;}
.ws11_c00163{word-spacing:0.219446px;}
.wsa_c00163{word-spacing:13.569061px;}
.ws0_c00163{word-spacing:43.038600px;}
.ws9_c00163{word-spacing:54.749856px;}
._0_c00163{margin-left:-6.369713px;}
._4_c00163{margin-left:-3.586536px;}
._2_c00163{margin-left:-1.195512px;}
._7_c00163{width:1.005737px;}
._3_c00163{width:28.484432px;}
._6_c00163{width:31.920170px;}
._1_c00163{width:34.753642px;}
._9_c00163{width:53.283031px;}
._8_c00163{width:79.858548px;}
._a_c00163{width:106.390066px;}
._5_c00163{width:116.140667px;}
.fc6_c00163{color:rgb(0,0,207);}
.fc5_c00163{color:rgb(79,153,5);}
.fc3_c00163{color:rgb(33,74,135);}
.fc2_c00163{color:rgb(143,89,3);}
.fc4_c00163{color:rgb(207,92,0);}
.fc1_c00163{color:rgb(6,69,173);}
.fc0_c00163{color:rgb(0,0,0);}
.fs2_c00163{font-size:43.999200px;}
.fs1_c00163{font-size:59.775600px;}
.fs0_c00163{font-size:86.077200px;}
.y0_c00163{bottom:0.000000px;}
.y1f_c00163{bottom:44.250000px;}
.y1e_c00163{bottom:86.982000px;}
.y1d_c00163{bottom:119.859000px;}
.y1c_c00163{bottom:136.297500px;}
.y1b_c00163{bottom:152.736000px;}
.y1a_c00163{bottom:169.174500px;}
.y19_c00163{bottom:185.613000px;}
.y18_c00163{bottom:202.051500px;}
.y17_c00163{bottom:218.490000px;}
.y16_c00163{bottom:234.927000px;}
.y15_c00163{bottom:251.365500px;}
.y14_c00163{bottom:267.804000px;}
.y13_c00163{bottom:284.242500px;}
.y12_c00163{bottom:300.681000px;}
.y11_c00163{bottom:333.558000px;}
.y10_c00163{bottom:349.996500px;}
.yf_c00163{bottom:366.435000px;}
.ye_c00163{bottom:399.310500px;}
.yd_c00163{bottom:432.187500px;}
.yc_c00163{bottom:448.252500px;}
.yb_c00163{bottom:495.994500px;}
.ya_c00163{bottom:513.927000px;}
.y9_c00163{bottom:531.859500px;}
.y8_c00163{bottom:549.793500px;}
.y7_c00163{bottom:576.615000px;}
.y6_c00163{bottom:594.547500px;}
.y5_c00163{bottom:621.369000px;}
.y4_c00163{bottom:639.301500px;}
.y3_c00163{bottom:666.123000px;}
.y2_c00163{bottom:692.944500px;}
.y1_c00163{bottom:735.139500px;}
.h5_c00163{height:35.190766px;}
.h6_c00163{height:36.007158px;}
.h3_c00163{height:40.511979px;}
.h4_c00163{height:52.332837px;}
.h2_c00163{height:58.337477px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w0_c00163{width:892.920000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:127.558500px;}
.x2_c00163{left:137.122500px;}
.x3_c00163{left:143.770500px;}
.x4_c00163{left:435.249000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls3_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.078221pt;}
.ls2_c00163{letter-spacing:0.087539pt;}
.ls1_c00163{letter-spacing:0.092873pt;}
.ws2_c00163{word-spacing:-23.622682pt;}
.wsf_c00163{word-spacing:-23.544461pt;}
.wsc_c00163{word-spacing:-17.002837pt;}
.ws6_c00163{word-spacing:-16.684034pt;}
.wsd_c00163{word-spacing:-13.177199pt;}
.ws8_c00163{word-spacing:-12.911530pt;}
.wsb_c00163{word-spacing:-10.594562pt;}
.ws5_c00163{word-spacing:-10.095435pt;}
.ws7_c00163{word-spacing:-9.510962pt;}
.ws1_c00163{word-spacing:-8.878599pt;}
.ws3_c00163{word-spacing:-8.877777pt;}
.ws4_c00163{word-spacing:-6.694867pt;}
.ws12_c00163{word-spacing:0.000000pt;}
.ws10_c00163{word-spacing:0.039110pt;}
.ws14_c00163{word-spacing:0.041141pt;}
.ws13_c00163{word-spacing:0.050460pt;}
.ws16_c00163{word-spacing:0.065111pt;}
.ws15_c00163{word-spacing:0.065600pt;}
.wse_c00163{word-spacing:0.156442pt;}
.ws11_c00163{word-spacing:0.195063pt;}
.wsa_c00163{word-spacing:12.061388pt;}
.ws0_c00163{word-spacing:38.256533pt;}
.ws9_c00163{word-spacing:48.666539pt;}
._0_c00163{margin-left:-5.661967pt;}
._4_c00163{margin-left:-3.188032pt;}
._2_c00163{margin-left:-1.062677pt;}
._7_c00163{width:0.893988pt;}
._3_c00163{width:25.319495pt;}
._6_c00163{width:28.373485pt;}
._1_c00163{width:30.892126pt;}
._9_c00163{width:47.362694pt;}
._8_c00163{width:70.985376pt;}
._a_c00163{width:94.568947pt;}
._5_c00163{width:103.236148pt;}
.fs2_c00163{font-size:39.110400pt;}
.fs1_c00163{font-size:53.133867pt;}
.fs0_c00163{font-size:76.513067pt;}
.y0_c00163{bottom:0.000000pt;}
.y1f_c00163{bottom:39.333333pt;}
.y1e_c00163{bottom:77.317333pt;}
.y1d_c00163{bottom:106.541333pt;}
.y1c_c00163{bottom:121.153333pt;}
.y1b_c00163{bottom:135.765333pt;}
.y1a_c00163{bottom:150.377333pt;}
.y19_c00163{bottom:164.989333pt;}
.y18_c00163{bottom:179.601333pt;}
.y17_c00163{bottom:194.213333pt;}
.y16_c00163{bottom:208.824000pt;}
.y15_c00163{bottom:223.436000pt;}
.y14_c00163{bottom:238.048000pt;}
.y13_c00163{bottom:252.660000pt;}
.y12_c00163{bottom:267.272000pt;}
.y11_c00163{bottom:296.496000pt;}
.y10_c00163{bottom:311.108000pt;}
.yf_c00163{bottom:325.720000pt;}
.ye_c00163{bottom:354.942667pt;}
.yd_c00163{bottom:384.166667pt;}
.yc_c00163{bottom:398.446667pt;}
.yb_c00163{bottom:440.884000pt;}
.ya_c00163{bottom:456.824000pt;}
.y9_c00163{bottom:472.764000pt;}
.y8_c00163{bottom:488.705333pt;}
.y7_c00163{bottom:512.546667pt;}
.y6_c00163{bottom:528.486667pt;}
.y5_c00163{bottom:552.328000pt;}
.y4_c00163{bottom:568.268000pt;}
.y3_c00163{bottom:592.109333pt;}
.y2_c00163{bottom:615.950667pt;}
.y1_c00163{bottom:653.457333pt;}
.h5_c00163{height:31.280681pt;}
.h6_c00163{height:32.006363pt;}
.h3_c00163{height:36.010648pt;}
.h4_c00163{height:46.518078pt;}
.h2_c00163{height:51.855535pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w0_c00163{width:793.706667pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:113.385333pt;}
.x2_c00163{left:121.886667pt;}
.x3_c00163{left:127.796000pt;}
.x4_c00163{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.048828;font-style:normal;font-weight:normal;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_b92711c9af9c4a42a1b522be.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.083496;font-style:normal;font-weight:normal;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_d537281f5137b0f5382ad140.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.893555;font-style:normal;font-weight:normal;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_3a9e95bbcbbd7d659c78d924.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.014648;font-style: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;}
.ls3_c00164{letter-spacing:0.000000px;}
.ls1_c00164{letter-spacing:0.087998px;}
.ls2_c00164{letter-spacing:0.098482px;}
.ls0_c00164{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00164{word-spacing:-26.487518px;}
.wsd_c00164{word-spacing:-19.128192px;}
.ws9_c00164{word-spacing:-18.769538px;}
.ws8_c00164{word-spacing:-18.709763px;}
.ws7_c00164{word-spacing:-14.943900px;}
.wse_c00164{word-spacing:-14.824349px;}
.wsc_c00164{word-spacing:-11.918882px;}
.ws5_c00164{word-spacing:-9.988424px;}
.ws6_c00164{word-spacing:-9.987499px;}
.ws11_c00164{word-spacing:0.000000px;}
.ws2_c00164{word-spacing:0.043999px;}
.wsf_c00164{word-spacing:0.175997px;}
.ws3_c00164{word-spacing:0.213446px;}
.ws10_c00164{word-spacing:0.219446px;}
.wsb_c00164{word-spacing:13.569061px;}
.ws4_c00164{word-spacing:43.038600px;}
.wsa_c00164{word-spacing:54.749856px;}
._1_c00164{margin-left:-6.369713px;}
._4_c00164{margin-left:-3.741852px;}
._3_c00164{margin-left:-1.195512px;}
._0_c00164{width:1.041538px;}
._2_c00164{width:20.085816px;}
._6_c00164{width:31.920170px;}
._5_c00164{width:116.140667px;}
.fc5_c00164{color:rgb(0,0,207);}
.fc4_c00164{color:rgb(143,89,3);}
.fc3_c00164{color:rgb(79,153,5);}
.fc6_c00164{color:rgb(6,69,173);}
.fc2_c00164{color:rgb(207,92,0);}
.fc1_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(33,74,135);}
.fs0_c00164{font-size:43.999200px;}
.fs2_c00164{font-size:59.775600px;}
.fs1_c00164{font-size:86.077200px;}
.y0_c00164{bottom:0.000000px;}
.y1e_c00164{bottom:44.250000px;}
.y1d_c00164{bottom:98.490000px;}
.y1c_c00164{bottom:114.927000px;}
.y1b_c00164{bottom:131.365500px;}
.y1a_c00164{bottom:164.242500px;}
.y19_c00164{bottom:197.119500px;}
.y18_c00164{bottom:213.184500px;}
.y17_c00164{bottom:260.539500px;}
.y16_c00164{bottom:278.472000px;}
.y15_c00164{bottom:296.406000px;}
.y14_c00164{bottom:314.338500px;}
.y13_c00164{bottom:341.095500px;}
.y12_c00164{bottom:367.852500px;}
.y11_c00164{bottom:385.785000px;}
.y10_c00164{bottom:412.543500px;}
.yf_c00164{bottom:439.300500px;}
.ye_c00164{bottom:481.431000px;}
.yd_c00164{bottom:946.164000px;}
.yc_c00164{bottom:962.602500px;}
.yb_c00164{bottom:979.041000px;}
.ya_c00164{bottom:995.479500px;}
.y9_c00164{bottom:1011.918000px;}
.y8_c00164{bottom:1028.356500px;}
.y7_c00164{bottom:1044.795000px;}
.y6_c00164{bottom:1061.232000px;}
.y5_c00164{bottom:1077.670500px;}
.y4_c00164{bottom:1094.109000px;}
.y3_c00164{bottom:1110.547500px;}
.y2_c00164{bottom:1143.424500px;}
.y1_c00164{bottom:1159.863000px;}
.h6_c00164{height:35.190766px;}
.h2_c00164{height:36.007158px;}
.h4_c00164{height:40.511979px;}
.h5_c00164{height:52.332837px;}
.h3_c00164{height:58.337477px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w0_c00164{width:892.920000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x3_c00164{left:127.558500px;}
.x1_c00164{left:137.122500px;}
.x2_c00164{left:177.007500px;}
.x4_c00164{left:435.249000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls3_c00164{letter-spacing:0.000000pt;}
.ls1_c00164{letter-spacing:0.078221pt;}
.ls2_c00164{letter-spacing:0.087539pt;}
.ls0_c00164{letter-spacing:0.092873pt;}
.ws1_c00164{word-spacing:-23.622682pt;}
.ws0_c00164{word-spacing:-23.544461pt;}
.wsd_c00164{word-spacing:-17.002837pt;}
.ws9_c00164{word-spacing:-16.684034pt;}
.ws8_c00164{word-spacing:-16.630900pt;}
.ws7_c00164{word-spacing:-13.283467pt;}
.wse_c00164{word-spacing:-13.177199pt;}
.wsc_c00164{word-spacing:-10.594562pt;}
.ws5_c00164{word-spacing:-8.878599pt;}
.ws6_c00164{word-spacing:-8.877777pt;}
.ws11_c00164{word-spacing:0.000000pt;}
.ws2_c00164{word-spacing:0.039110pt;}
.wsf_c00164{word-spacing:0.156442pt;}
.ws3_c00164{word-spacing:0.189730pt;}
.ws10_c00164{word-spacing:0.195063pt;}
.wsb_c00164{word-spacing:12.061388pt;}
.ws4_c00164{word-spacing:38.256533pt;}
.wsa_c00164{word-spacing:48.666539pt;}
._1_c00164{margin-left:-5.661967pt;}
._4_c00164{margin-left:-3.326091pt;}
._3_c00164{margin-left:-1.062677pt;}
._0_c00164{width:0.925811pt;}
._2_c00164{width:17.854059pt;}
._6_c00164{width:28.373485pt;}
._5_c00164{width:103.236148pt;}
.fs0_c00164{font-size:39.110400pt;}
.fs2_c00164{font-size:53.133867pt;}
.fs1_c00164{font-size:76.513067pt;}
.y0_c00164{bottom:0.000000pt;}
.y1e_c00164{bottom:39.333333pt;}
.y1d_c00164{bottom:87.546667pt;}
.y1c_c00164{bottom:102.157333pt;}
.y1b_c00164{bottom:116.769333pt;}
.y1a_c00164{bottom:145.993333pt;}
.y19_c00164{bottom:175.217333pt;}
.y18_c00164{bottom:189.497333pt;}
.y17_c00164{bottom:231.590667pt;}
.y16_c00164{bottom:247.530667pt;}
.y15_c00164{bottom:263.472000pt;}
.y14_c00164{bottom:279.412000pt;}
.y13_c00164{bottom:303.196000pt;}
.y12_c00164{bottom:326.980000pt;}
.y11_c00164{bottom:342.920000pt;}
.y10_c00164{bottom:366.705333pt;}
.yf_c00164{bottom:390.489333pt;}
.ye_c00164{bottom:427.938667pt;}
.yd_c00164{bottom:841.034667pt;}
.yc_c00164{bottom:855.646667pt;}
.yb_c00164{bottom:870.258667pt;}
.ya_c00164{bottom:884.870667pt;}
.y9_c00164{bottom:899.482667pt;}
.y8_c00164{bottom:914.094667pt;}
.y7_c00164{bottom:928.706667pt;}
.y6_c00164{bottom:943.317333pt;}
.y5_c00164{bottom:957.929333pt;}
.y4_c00164{bottom:972.541333pt;}
.y3_c00164{bottom:987.153333pt;}
.y2_c00164{bottom:1016.377333pt;}
.y1_c00164{bottom:1030.989333pt;}
.h6_c00164{height:31.280681pt;}
.h2_c00164{height:32.006363pt;}
.h4_c00164{height:36.010648pt;}
.h5_c00164{height:46.518078pt;}
.h3_c00164{height:51.855535pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w0_c00164{width:793.706667pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x3_c00164{left:113.385333pt;}
.x1_c00164{left:121.886667pt;}
.x2_c00164{left:157.340000pt;}
.x4_c00164{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b67bec6c90882749ec081485.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.014648;font-style:normal;font-weight:normal;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_32d69be0ad28a6f9e398c1b8.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_7894a19b2f043dbcb8c849ac.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls3_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.087998px;}
.ls1_c00165{letter-spacing:0.098482px;}
.ls2_c00165{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws8_c00165{word-spacing:-26.487518px;}
.wsf_c00165{word-spacing:-18.769538px;}
.ws10_c00165{word-spacing:-14.943900px;}
.wse_c00165{word-spacing:-14.465695px;}
.wsd_c00165{word-spacing:-10.640057px;}
.wsb_c00165{word-spacing:-9.988424px;}
.wsc_c00165{word-spacing:-9.987499px;}
.ws2_c00165{word-spacing:0.000000px;}
.ws4_c00165{word-spacing:0.043999px;}
.ws5_c00165{word-spacing:0.046284px;}
.ws3_c00165{word-spacing:0.056767px;}
.ws7_c00165{word-spacing:0.073250px;}
.ws6_c00165{word-spacing:0.073800px;}
.ws9_c00165{word-spacing:0.213446px;}
.ws0_c00165{word-spacing:0.219446px;}
.wsa_c00165{word-spacing:43.038600px;}
._4_c00165{margin-left:-6.369713px;}
._6_c00165{margin-left:-1.075961px;}
._3_c00165{width:1.041538px;}
._7_c00165{width:19.930500px;}
._5_c00165{width:28.615973px;}
._1_c00165{width:53.283031px;}
._0_c00165{width:79.858548px;}
._2_c00165{width:106.390066px;}
.fc5_c00165{color:rgb(207,92,0);}
.fc4_c00165{color:rgb(0,0,207);}
.fc3_c00165{color:rgb(79,153,5);}
.fc2_c00165{color:rgb(33,74,135);}
.fc1_c00165{color:rgb(143,89,3);}
.fc0_c00165{color:rgb(0,0,0);}
.fs0_c00165{font-size:43.999200px;}
.fs2_c00165{font-size:59.775600px;}
.fs1_c00165{font-size:86.077200px;}
.y0_c00165{bottom:0.000000px;}
.y21_c00165{bottom:44.250000px;}
.y20_c00165{bottom:82.051500px;}
.y1f_c00165{bottom:112.167000px;}
.y1e_c00165{bottom:130.099500px;}
.y1d_c00165{bottom:160.215000px;}
.y1c_c00165{bottom:190.330500px;}
.y1b_c00165{bottom:237.258000px;}
.y1a_c00165{bottom:716.028000px;}
.y19_c00165{bottom:732.465000px;}
.y18_c00165{bottom:748.903500px;}
.y17_c00165{bottom:765.342000px;}
.y16_c00165{bottom:781.780500px;}
.y15_c00165{bottom:798.219000px;}
.y14_c00165{bottom:814.657500px;}
.y13_c00165{bottom:831.096000px;}
.y12_c00165{bottom:847.534500px;}
.y11_c00165{bottom:863.973000px;}
.y10_c00165{bottom:880.411500px;}
.yf_c00165{bottom:913.287000px;}
.ye_c00165{bottom:929.725500px;}
.yd_c00165{bottom:946.164000px;}
.yc_c00165{bottom:979.041000px;}
.yb_c00165{bottom:995.479500px;}
.ya_c00165{bottom:1011.918000px;}
.y9_c00165{bottom:1028.356500px;}
.y8_c00165{bottom:1044.795000px;}
.y7_c00165{bottom:1061.232000px;}
.y6_c00165{bottom:1077.670500px;}
.y5_c00165{bottom:1094.109000px;}
.y4_c00165{bottom:1110.547500px;}
.y3_c00165{bottom:1126.986000px;}
.y2_c00165{bottom:1143.424500px;}
.y1_c00165{bottom:1159.863000px;}
.h3_c00165{height:35.190766px;}
.h2_c00165{height:36.007158px;}
.h5_c00165{height:40.511979px;}
.h6_c00165{height:52.332837px;}
.h4_c00165{height:58.337477px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w0_c00165{width:892.920000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x4_c00165{left:127.558500px;}
.x1_c00165{left:137.122500px;}
.x2_c00165{left:143.770500px;}
.x3_c00165{left:177.007500px;}
.x5_c00165{left:435.249000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls3_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.078221pt;}
.ls1_c00165{letter-spacing:0.087539pt;}
.ls2_c00165{letter-spacing:0.092873pt;}
.ws1_c00165{word-spacing:-23.622682pt;}
.ws8_c00165{word-spacing:-23.544461pt;}
.wsf_c00165{word-spacing:-16.684034pt;}
.ws10_c00165{word-spacing:-13.283467pt;}
.wse_c00165{word-spacing:-12.858396pt;}
.wsd_c00165{word-spacing:-9.457828pt;}
.wsb_c00165{word-spacing:-8.878599pt;}
.wsc_c00165{word-spacing:-8.877777pt;}
.ws2_c00165{word-spacing:0.000000pt;}
.ws4_c00165{word-spacing:0.039110pt;}
.ws5_c00165{word-spacing:0.041141pt;}
.ws3_c00165{word-spacing:0.050460pt;}
.ws7_c00165{word-spacing:0.065111pt;}
.ws6_c00165{word-spacing:0.065600pt;}
.ws9_c00165{word-spacing:0.189730pt;}
.ws0_c00165{word-spacing:0.195063pt;}
.wsa_c00165{word-spacing:38.256533pt;}
._4_c00165{margin-left:-5.661967pt;}
._6_c00165{margin-left:-0.956410pt;}
._3_c00165{width:0.925811pt;}
._7_c00165{width:17.716000pt;}
._5_c00165{width:25.436420pt;}
._1_c00165{width:47.362694pt;}
._0_c00165{width:70.985376pt;}
._2_c00165{width:94.568947pt;}
.fs0_c00165{font-size:39.110400pt;}
.fs2_c00165{font-size:53.133867pt;}
.fs1_c00165{font-size:76.513067pt;}
.y0_c00165{bottom:0.000000pt;}
.y21_c00165{bottom:39.333333pt;}
.y20_c00165{bottom:72.934667pt;}
.y1f_c00165{bottom:99.704000pt;}
.y1e_c00165{bottom:115.644000pt;}
.y1d_c00165{bottom:142.413333pt;}
.y1c_c00165{bottom:169.182667pt;}
.y1b_c00165{bottom:210.896000pt;}
.y1a_c00165{bottom:636.469333pt;}
.y19_c00165{bottom:651.080000pt;}
.y18_c00165{bottom:665.692000pt;}
.y17_c00165{bottom:680.304000pt;}
.y16_c00165{bottom:694.916000pt;}
.y15_c00165{bottom:709.528000pt;}
.y14_c00165{bottom:724.140000pt;}
.y13_c00165{bottom:738.752000pt;}
.y12_c00165{bottom:753.364000pt;}
.y11_c00165{bottom:767.976000pt;}
.y10_c00165{bottom:782.588000pt;}
.yf_c00165{bottom:811.810667pt;}
.ye_c00165{bottom:826.422667pt;}
.yd_c00165{bottom:841.034667pt;}
.yc_c00165{bottom:870.258667pt;}
.yb_c00165{bottom:884.870667pt;}
.ya_c00165{bottom:899.482667pt;}
.y9_c00165{bottom:914.094667pt;}
.y8_c00165{bottom:928.706667pt;}
.y7_c00165{bottom:943.317333pt;}
.y6_c00165{bottom:957.929333pt;}
.y5_c00165{bottom:972.541333pt;}
.y4_c00165{bottom:987.153333pt;}
.y3_c00165{bottom:1001.765333pt;}
.y2_c00165{bottom:1016.377333pt;}
.y1_c00165{bottom:1030.989333pt;}
.h3_c00165{height:31.280681pt;}
.h2_c00165{height:32.006363pt;}
.h5_c00165{height:36.010648pt;}
.h6_c00165{height:46.518078pt;}
.h4_c00165{height:51.855535pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w0_c00165{width:793.706667pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x4_c00165{left:113.385333pt;}
.x1_c00165{left:121.886667pt;}
.x2_c00165{left:127.796000pt;}
.x3_c00165{left:157.340000pt;}
.x5_c00165{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:0.893555;font-style:normal;font-weight:normal;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_3724078fcd31edbe39f86b0b.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_214faec062c83124f5c8eda4.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:1.048828;font-style: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;}
.ls3_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.087998px;}
.ls2_c00166{letter-spacing:0.098482px;}
.ls1_c00166{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00166{word-spacing:-26.575517px;}
.ws8_c00166{word-spacing:-26.487518px;}
.ws4_c00166{word-spacing:-19.128192px;}
.ws6_c00166{word-spacing:-18.769538px;}
.ws5_c00166{word-spacing:-14.824349px;}
.ws3_c00166{word-spacing:-11.918882px;}
.wsb_c00166{word-spacing:0.000000px;}
.ws9_c00166{word-spacing:0.043999px;}
.wsd_c00166{word-spacing:0.046284px;}
.wsc_c00166{word-spacing:0.056767px;}
.wsf_c00166{word-spacing:0.073250px;}
.wse_c00166{word-spacing:0.073800px;}
.ws7_c00166{word-spacing:0.175997px;}
.ws10_c00166{word-spacing:0.213446px;}
.wsa_c00166{word-spacing:0.219446px;}
.ws1_c00166{word-spacing:13.569061px;}
.ws0_c00166{word-spacing:54.749856px;}
._3_c00166{margin-left:-3.825638px;}
._0_c00166{margin-left:-1.075961px;}
._5_c00166{width:1.005737px;}
._4_c00166{width:19.905275px;}
._2_c00166{width:31.920170px;}
._7_c00166{width:53.283031px;}
._6_c00166{width:79.858548px;}
._8_c00166{width:106.390066px;}
._1_c00166{width:117.097076px;}
.fc6_c00166{color:rgb(0,0,207);}
.fc5_c00166{color:rgb(79,153,5);}
.fc3_c00166{color:rgb(33,74,135);}
.fc2_c00166{color:rgb(143,89,3);}
.fc4_c00166{color:rgb(207,92,0);}
.fc1_c00166{color:rgb(6,69,173);}
.fc0_c00166{color:rgb(0,0,0);}
.fs1_c00166{font-size:43.999200px;}
.fs0_c00166{font-size:59.775600px;}
.y0_c00166{bottom:0.000000px;}
.y25_c00166{bottom:44.250000px;}
.y24_c00166{bottom:96.919500px;}
.y23_c00166{bottom:113.358000px;}
.y22_c00166{bottom:129.796500px;}
.y21_c00166{bottom:146.235000px;}
.y20_c00166{bottom:162.673500px;}
.y1f_c00166{bottom:179.112000px;}
.y1e_c00166{bottom:195.550500px;}
.y1d_c00166{bottom:211.989000px;}
.y1c_c00166{bottom:228.427500px;}
.y1b_c00166{bottom:244.866000px;}
.y1a_c00166{bottom:261.304500px;}
.y19_c00166{bottom:294.180000px;}
.y18_c00166{bottom:310.618500px;}
.y17_c00166{bottom:327.057000px;}
.y16_c00166{bottom:359.934000px;}
.y15_c00166{bottom:376.372500px;}
.y14_c00166{bottom:392.811000px;}
.y13_c00166{bottom:409.249500px;}
.y12_c00166{bottom:425.688000px;}
.y11_c00166{bottom:442.125000px;}
.y10_c00166{bottom:458.563500px;}
.yf_c00166{bottom:475.002000px;}
.ye_c00166{bottom:491.440500px;}
.yd_c00166{bottom:507.879000px;}
.yc_c00166{bottom:524.317500px;}
.yb_c00166{bottom:540.756000px;}
.ya_c00166{bottom:573.633000px;}
.y9_c00166{bottom:590.071500px;}
.y8_c00166{bottom:606.508500px;}
.y7_c00166{bottom:639.385500px;}
.y6_c00166{bottom:672.262500px;}
.y5_c00166{bottom:688.327500px;}
.y4_c00166{bottom:1106.064000px;}
.y3_c00166{bottom:1123.998000px;}
.y2_c00166{bottom:1141.930500px;}
.y1_c00166{bottom:1159.863000px;}
.h3_c00166{height:35.190766px;}
.h4_c00166{height:36.007158px;}
.h2_c00166{height:52.332837px;}
.h0_c00166{height:1262.835000px;}
.h1_c00166{height:1263.000000px;}
.w0_c00166{width:892.920000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:127.558500px;}
.x2_c00166{left:137.122500px;}
.x3_c00166{left:143.770500px;}
.x4_c00166{left:177.007500px;}
.x5_c00166{left:435.249000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls3_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.078221pt;}
.ls2_c00166{letter-spacing:0.087539pt;}
.ls1_c00166{letter-spacing:0.092873pt;}
.ws2_c00166{word-spacing:-23.622682pt;}
.ws8_c00166{word-spacing:-23.544461pt;}
.ws4_c00166{word-spacing:-17.002837pt;}
.ws6_c00166{word-spacing:-16.684034pt;}
.ws5_c00166{word-spacing:-13.177199pt;}
.ws3_c00166{word-spacing:-10.594562pt;}
.wsb_c00166{word-spacing:0.000000pt;}
.ws9_c00166{word-spacing:0.039110pt;}
.wsd_c00166{word-spacing:0.041141pt;}
.wsc_c00166{word-spacing:0.050460pt;}
.wsf_c00166{word-spacing:0.065111pt;}
.wse_c00166{word-spacing:0.065600pt;}
.ws7_c00166{word-spacing:0.156442pt;}
.ws10_c00166{word-spacing:0.189730pt;}
.wsa_c00166{word-spacing:0.195063pt;}
.ws1_c00166{word-spacing:12.061388pt;}
.ws0_c00166{word-spacing:48.666539pt;}
._3_c00166{margin-left:-3.400567pt;}
._0_c00166{margin-left:-0.956410pt;}
._5_c00166{width:0.893988pt;}
._4_c00166{width:17.693578pt;}
._2_c00166{width:28.373485pt;}
._7_c00166{width:47.362694pt;}
._6_c00166{width:70.985376pt;}
._8_c00166{width:94.568947pt;}
._1_c00166{width:104.086290pt;}
.fs1_c00166{font-size:39.110400pt;}
.fs0_c00166{font-size:53.133867pt;}
.y0_c00166{bottom:0.000000pt;}
.y25_c00166{bottom:39.333333pt;}
.y24_c00166{bottom:86.150667pt;}
.y23_c00166{bottom:100.762667pt;}
.y22_c00166{bottom:115.374667pt;}
.y21_c00166{bottom:129.986667pt;}
.y20_c00166{bottom:144.598667pt;}
.y1f_c00166{bottom:159.210667pt;}
.y1e_c00166{bottom:173.822667pt;}
.y1d_c00166{bottom:188.434667pt;}
.y1c_c00166{bottom:203.046667pt;}
.y1b_c00166{bottom:217.658667pt;}
.y1a_c00166{bottom:232.270667pt;}
.y19_c00166{bottom:261.493333pt;}
.y18_c00166{bottom:276.105333pt;}
.y17_c00166{bottom:290.717333pt;}
.y16_c00166{bottom:319.941333pt;}
.y15_c00166{bottom:334.553333pt;}
.y14_c00166{bottom:349.165333pt;}
.y13_c00166{bottom:363.777333pt;}
.y12_c00166{bottom:378.389333pt;}
.y11_c00166{bottom:393.000000pt;}
.y10_c00166{bottom:407.612000pt;}
.yf_c00166{bottom:422.224000pt;}
.ye_c00166{bottom:436.836000pt;}
.yd_c00166{bottom:451.448000pt;}
.yc_c00166{bottom:466.060000pt;}
.yb_c00166{bottom:480.672000pt;}
.ya_c00166{bottom:509.896000pt;}
.y9_c00166{bottom:524.508000pt;}
.y8_c00166{bottom:539.118667pt;}
.y7_c00166{bottom:568.342667pt;}
.y6_c00166{bottom:597.566667pt;}
.y5_c00166{bottom:611.846667pt;}
.y4_c00166{bottom:983.168000pt;}
.y3_c00166{bottom:999.109333pt;}
.y2_c00166{bottom:1015.049333pt;}
.y1_c00166{bottom:1030.989333pt;}
.h3_c00166{height:31.280681pt;}
.h4_c00166{height:32.006363pt;}
.h2_c00166{height:46.518078pt;}
.h0_c00166{height:1122.520000pt;}
.h1_c00166{height:1122.666667pt;}
.w0_c00166{width:793.706667pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:113.385333pt;}
.x2_c00166{left:121.886667pt;}
.x3_c00166{left:127.796000pt;}
.x4_c00166{left:157.340000pt;}
.x5_c00166{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d537281f5137b0f5382ad140.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:0.893555;font-style:normal;font-weight:normal;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_0c99eb46c7240ca3457f086b.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.083496;font-style:normal;font-weight:normal;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_890217130bea4168066eff3e.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00167;src:url('chunks/assets/font_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.048828;font-style: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;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.087998px;}
.ls2_c00167{letter-spacing:0.098482px;}
.ls1_c00167{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00167{word-spacing:-26.575517px;}
.wse_c00167{word-spacing:-26.487518px;}
.ws5_c00167{word-spacing:-20.204153px;}
.wsb_c00167{word-spacing:-19.128192px;}
.ws7_c00167{word-spacing:-18.769538px;}
.ws4_c00167{word-spacing:-16.378514px;}
.ws6_c00167{word-spacing:-14.943900px;}
.wsc_c00167{word-spacing:-14.824349px;}
.wsa_c00167{word-spacing:-11.918882px;}
.ws1_c00167{word-spacing:-9.988424px;}
.ws3_c00167{word-spacing:-9.987499px;}
.ws11_c00167{word-spacing:0.000000px;}
.wsf_c00167{word-spacing:0.043999px;}
.ws13_c00167{word-spacing:0.046284px;}
.ws12_c00167{word-spacing:0.056767px;}
.ws15_c00167{word-spacing:0.073250px;}
.ws14_c00167{word-spacing:0.073800px;}
.wsd_c00167{word-spacing:0.175997px;}
.ws16_c00167{word-spacing:0.213446px;}
.ws10_c00167{word-spacing:0.219446px;}
.ws9_c00167{word-spacing:13.569061px;}
.ws0_c00167{word-spacing:43.038600px;}
.ws8_c00167{word-spacing:54.749856px;}
._0_c00167{margin-left:-6.369713px;}
._5_c00167{margin-left:-3.825638px;}
._2_c00167{margin-left:-1.075961px;}
._6_c00167{width:1.005737px;}
._1_c00167{width:19.234430px;}
._4_c00167{width:31.920170px;}
._8_c00167{width:53.283031px;}
._7_c00167{width:79.858548px;}
._9_c00167{width:106.390066px;}
._3_c00167{width:117.097076px;}
.fc6_c00167{color:rgb(0,0,207);}
.fc5_c00167{color:rgb(79,153,5);}
.fc3_c00167{color:rgb(33,74,135);}
.fc2_c00167{color:rgb(143,89,3);}
.fc4_c00167{color:rgb(207,92,0);}
.fc1_c00167{color:rgb(6,69,173);}
.fc0_c00167{color:rgb(0,0,0);}
.fs2_c00167{font-size:43.999200px;}
.fs1_c00167{font-size:59.775600px;}
.fs0_c00167{font-size:86.077200px;}
.y0_c00167{bottom:0.000000px;}
.y1f_c00167{bottom:44.250000px;}
.y1e_c00167{bottom:86.982000px;}
.y1d_c00167{bottom:103.420500px;}
.y1c_c00167{bottom:119.859000px;}
.y1b_c00167{bottom:152.736000px;}
.y1a_c00167{bottom:169.174500px;}
.y19_c00167{bottom:185.613000px;}
.y18_c00167{bottom:202.051500px;}
.y17_c00167{bottom:218.490000px;}
.y16_c00167{bottom:234.927000px;}
.y15_c00167{bottom:251.365500px;}
.y14_c00167{bottom:267.804000px;}
.y13_c00167{bottom:284.242500px;}
.y12_c00167{bottom:300.681000px;}
.y11_c00167{bottom:317.119500px;}
.y10_c00167{bottom:333.558000px;}
.yf_c00167{bottom:366.435000px;}
.ye_c00167{bottom:382.873500px;}
.yd_c00167{bottom:399.310500px;}
.yc_c00167{bottom:432.187500px;}
.yb_c00167{bottom:465.064500px;}
.ya_c00167{bottom:481.129500px;}
.y9_c00167{bottom:529.780500px;}
.y8_c00167{bottom:547.713000px;}
.y7_c00167{bottom:565.647000px;}
.y6_c00167{bottom:583.579500px;}
.y5_c00167{bottom:610.656000px;}
.y4_c00167{bottom:637.732500px;}
.y3_c00167{bottom:664.810500px;}
.y2_c00167{bottom:691.887000px;}
.y1_c00167{bottom:734.416500px;}
.h5_c00167{height:35.190766px;}
.h6_c00167{height:36.007158px;}
.h3_c00167{height:40.511979px;}
.h4_c00167{height:52.332837px;}
.h2_c00167{height:58.337477px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w0_c00167{width:892.920000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:127.558500px;}
.x2_c00167{left:137.122500px;}
.x3_c00167{left:143.770500px;}
.x4_c00167{left:435.249000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.078221pt;}
.ls2_c00167{letter-spacing:0.087539pt;}
.ls1_c00167{letter-spacing:0.092873pt;}
.ws2_c00167{word-spacing:-23.622682pt;}
.wse_c00167{word-spacing:-23.544461pt;}
.ws5_c00167{word-spacing:-17.959247pt;}
.wsb_c00167{word-spacing:-17.002837pt;}
.ws7_c00167{word-spacing:-16.684034pt;}
.ws4_c00167{word-spacing:-14.558679pt;}
.ws6_c00167{word-spacing:-13.283467pt;}
.wsc_c00167{word-spacing:-13.177199pt;}
.wsa_c00167{word-spacing:-10.594562pt;}
.ws1_c00167{word-spacing:-8.878599pt;}
.ws3_c00167{word-spacing:-8.877777pt;}
.ws11_c00167{word-spacing:0.000000pt;}
.wsf_c00167{word-spacing:0.039110pt;}
.ws13_c00167{word-spacing:0.041141pt;}
.ws12_c00167{word-spacing:0.050460pt;}
.ws15_c00167{word-spacing:0.065111pt;}
.ws14_c00167{word-spacing:0.065600pt;}
.wsd_c00167{word-spacing:0.156442pt;}
.ws16_c00167{word-spacing:0.189730pt;}
.ws10_c00167{word-spacing:0.195063pt;}
.ws9_c00167{word-spacing:12.061388pt;}
.ws0_c00167{word-spacing:38.256533pt;}
.ws8_c00167{word-spacing:48.666539pt;}
._0_c00167{margin-left:-5.661967pt;}
._5_c00167{margin-left:-3.400567pt;}
._2_c00167{margin-left:-0.956410pt;}
._6_c00167{width:0.893988pt;}
._1_c00167{width:17.097271pt;}
._4_c00167{width:28.373485pt;}
._8_c00167{width:47.362694pt;}
._7_c00167{width:70.985376pt;}
._9_c00167{width:94.568947pt;}
._3_c00167{width:104.086290pt;}
.fs2_c00167{font-size:39.110400pt;}
.fs1_c00167{font-size:53.133867pt;}
.fs0_c00167{font-size:76.513067pt;}
.y0_c00167{bottom:0.000000pt;}
.y1f_c00167{bottom:39.333333pt;}
.y1e_c00167{bottom:77.317333pt;}
.y1d_c00167{bottom:91.929333pt;}
.y1c_c00167{bottom:106.541333pt;}
.y1b_c00167{bottom:135.765333pt;}
.y1a_c00167{bottom:150.377333pt;}
.y19_c00167{bottom:164.989333pt;}
.y18_c00167{bottom:179.601333pt;}
.y17_c00167{bottom:194.213333pt;}
.y16_c00167{bottom:208.824000pt;}
.y15_c00167{bottom:223.436000pt;}
.y14_c00167{bottom:238.048000pt;}
.y13_c00167{bottom:252.660000pt;}
.y12_c00167{bottom:267.272000pt;}
.y11_c00167{bottom:281.884000pt;}
.y10_c00167{bottom:296.496000pt;}
.yf_c00167{bottom:325.720000pt;}
.ye_c00167{bottom:340.332000pt;}
.yd_c00167{bottom:354.942667pt;}
.yc_c00167{bottom:384.166667pt;}
.yb_c00167{bottom:413.390667pt;}
.ya_c00167{bottom:427.670667pt;}
.y9_c00167{bottom:470.916000pt;}
.y8_c00167{bottom:486.856000pt;}
.y7_c00167{bottom:502.797333pt;}
.y6_c00167{bottom:518.737333pt;}
.y5_c00167{bottom:542.805333pt;}
.y4_c00167{bottom:566.873333pt;}
.y3_c00167{bottom:590.942667pt;}
.y2_c00167{bottom:615.010667pt;}
.y1_c00167{bottom:652.814667pt;}
.h5_c00167{height:31.280681pt;}
.h6_c00167{height:32.006363pt;}
.h3_c00167{height:36.010648pt;}
.h4_c00167{height:46.518078pt;}
.h2_c00167{height:51.855535pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w0_c00167{width:793.706667pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:113.385333pt;}
.x2_c00167{left:121.886667pt;}
.x3_c00167{left:127.796000pt;}
.x4_c00167{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c99bfaf7c71fbcc7f8f69ab6.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.083496;font-style:normal;font-weight:normal;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_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_4e3a1435e9196f32d1fa9500.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_8f52511aaac9635f7a3a726a.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.014648;font-style: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;}
.ls3_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.087998px;}
.ls2_c00168{letter-spacing:0.098482px;}
.ls1_c00168{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws1_c00168{word-spacing:-26.487518px;}
.ws6_c00168{word-spacing:-22.475626px;}
.ws9_c00168{word-spacing:-21.100787px;}
.wsd_c00168{word-spacing:-19.128192px;}
.ws7_c00168{word-spacing:-18.769538px;}
.ws5_c00168{word-spacing:-18.649987px;}
.ws8_c00168{word-spacing:-17.275148px;}
.wse_c00168{word-spacing:-14.824349px;}
.wsc_c00168{word-spacing:-11.918882px;}
.ws3_c00168{word-spacing:-9.988424px;}
.ws4_c00168{word-spacing:-9.987499px;}
.ws12_c00168{word-spacing:0.000000px;}
.ws10_c00168{word-spacing:0.043999px;}
.wsf_c00168{word-spacing:0.175997px;}
.ws11_c00168{word-spacing:0.219446px;}
.wsb_c00168{word-spacing:13.569061px;}
.ws2_c00168{word-spacing:43.038600px;}
.wsa_c00168{word-spacing:54.749856px;}
._0_c00168{margin-left:-6.369713px;}
._6_c00168{margin-left:-3.825638px;}
._3_c00168{margin-left:-1.075961px;}
._8_c00168{width:1.005737px;}
._2_c00168{width:13.756702px;}
._1_c00168{width:18.115903px;}
._7_c00168{width:19.905275px;}
._5_c00168{width:31.920170px;}
._4_c00168{width:117.097076px;}
.fc5_c00168{color:rgb(0,0,207);}
.fc6_c00168{color:rgb(6,69,173);}
.fc4_c00168{color:rgb(207,92,0);}
.fc3_c00168{color:rgb(33,74,135);}
.fc2_c00168{color:rgb(79,153,5);}
.fc1_c00168{color:rgb(143,89,3);}
.fc0_c00168{color:rgb(0,0,0);}
.fs0_c00168{font-size:43.999200px;}
.fs2_c00168{font-size:59.775600px;}
.fs1_c00168{font-size:86.077200px;}
.y0_c00168{bottom:0.000000px;}
.y1e_c00168{bottom:44.250000px;}
.y1d_c00168{bottom:82.051500px;}
.y1c_c00168{bottom:114.927000px;}
.y1b_c00168{bottom:131.365500px;}
.y1a_c00168{bottom:147.804000px;}
.y19_c00168{bottom:180.681000px;}
.y18_c00168{bottom:213.558000px;}
.y17_c00168{bottom:229.623000px;}
.y16_c00168{bottom:276.333000px;}
.y15_c00168{bottom:294.265500px;}
.y14_c00168{bottom:312.198000px;}
.y13_c00168{bottom:330.132000px;}
.y12_c00168{bottom:356.781000px;}
.y11_c00168{bottom:374.713500px;}
.y10_c00168{bottom:401.364000px;}
.yf_c00168{bottom:419.296500px;}
.ye_c00168{bottom:445.945500px;}
.yd_c00168{bottom:472.596000px;}
.yc_c00168{bottom:514.618500px;}
.yb_c00168{bottom:979.041000px;}
.ya_c00168{bottom:995.479500px;}
.y9_c00168{bottom:1011.918000px;}
.y8_c00168{bottom:1028.356500px;}
.y7_c00168{bottom:1044.795000px;}
.y6_c00168{bottom:1061.232000px;}
.y5_c00168{bottom:1077.670500px;}
.y4_c00168{bottom:1094.109000px;}
.y3_c00168{bottom:1110.547500px;}
.y2_c00168{bottom:1126.986000px;}
.y1_c00168{bottom:1143.424500px;}
.h6_c00168{height:35.190766px;}
.h2_c00168{height:36.007158px;}
.h4_c00168{height:40.511979px;}
.h5_c00168{height:52.332837px;}
.h3_c00168{height:58.337477px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w0_c00168{width:892.920000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:127.558500px;}
.x1_c00168{left:137.122500px;}
.x2_c00168{left:177.007500px;}
.x4_c00168{left:435.249000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls3_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.078221pt;}
.ls2_c00168{letter-spacing:0.087539pt;}
.ls1_c00168{letter-spacing:0.092873pt;}
.ws0_c00168{word-spacing:-23.622682pt;}
.ws1_c00168{word-spacing:-23.544461pt;}
.ws6_c00168{word-spacing:-19.978334pt;}
.ws9_c00168{word-spacing:-18.756255pt;}
.wsd_c00168{word-spacing:-17.002837pt;}
.ws7_c00168{word-spacing:-16.684034pt;}
.ws5_c00168{word-spacing:-16.577766pt;}
.ws8_c00168{word-spacing:-15.355687pt;}
.wse_c00168{word-spacing:-13.177199pt;}
.wsc_c00168{word-spacing:-10.594562pt;}
.ws3_c00168{word-spacing:-8.878599pt;}
.ws4_c00168{word-spacing:-8.877777pt;}
.ws12_c00168{word-spacing:0.000000pt;}
.ws10_c00168{word-spacing:0.039110pt;}
.wsf_c00168{word-spacing:0.156442pt;}
.ws11_c00168{word-spacing:0.195063pt;}
.wsb_c00168{word-spacing:12.061388pt;}
.ws2_c00168{word-spacing:38.256533pt;}
.wsa_c00168{word-spacing:48.666539pt;}
._0_c00168{margin-left:-5.661967pt;}
._6_c00168{margin-left:-3.400567pt;}
._3_c00168{margin-left:-0.956410pt;}
._8_c00168{width:0.893988pt;}
._2_c00168{width:12.228179pt;}
._1_c00168{width:16.103025pt;}
._7_c00168{width:17.693578pt;}
._5_c00168{width:28.373485pt;}
._4_c00168{width:104.086290pt;}
.fs0_c00168{font-size:39.110400pt;}
.fs2_c00168{font-size:53.133867pt;}
.fs1_c00168{font-size:76.513067pt;}
.y0_c00168{bottom:0.000000pt;}
.y1e_c00168{bottom:39.333333pt;}
.y1d_c00168{bottom:72.934667pt;}
.y1c_c00168{bottom:102.157333pt;}
.y1b_c00168{bottom:116.769333pt;}
.y1a_c00168{bottom:131.381333pt;}
.y19_c00168{bottom:160.605333pt;}
.y18_c00168{bottom:189.829333pt;}
.y17_c00168{bottom:204.109333pt;}
.y16_c00168{bottom:245.629333pt;}
.y15_c00168{bottom:261.569333pt;}
.y14_c00168{bottom:277.509333pt;}
.y13_c00168{bottom:293.450667pt;}
.y12_c00168{bottom:317.138667pt;}
.y11_c00168{bottom:333.078667pt;}
.y10_c00168{bottom:356.768000pt;}
.yf_c00168{bottom:372.708000pt;}
.ye_c00168{bottom:396.396000pt;}
.yd_c00168{bottom:420.085333pt;}
.yc_c00168{bottom:457.438667pt;}
.yb_c00168{bottom:870.258667pt;}
.ya_c00168{bottom:884.870667pt;}
.y9_c00168{bottom:899.482667pt;}
.y8_c00168{bottom:914.094667pt;}
.y7_c00168{bottom:928.706667pt;}
.y6_c00168{bottom:943.317333pt;}
.y5_c00168{bottom:957.929333pt;}
.y4_c00168{bottom:972.541333pt;}
.y3_c00168{bottom:987.153333pt;}
.y2_c00168{bottom:1001.765333pt;}
.y1_c00168{bottom:1016.377333pt;}
.h6_c00168{height:31.280681pt;}
.h2_c00168{height:32.006363pt;}
.h4_c00168{height:36.010648pt;}
.h5_c00168{height:46.518078pt;}
.h3_c00168{height:51.855535pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w0_c00168{width:793.706667pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:113.385333pt;}
.x1_c00168{left:121.886667pt;}
.x2_c00168{left:157.340000pt;}
.x4_c00168{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1585f384cf7bfb7eba4b2914.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.014648;font-style:normal;font-weight:normal;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_5cde1a03d333bcbd9071294c.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:0.893555;font-style:normal;font-weight:normal;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_b003db7324303aacfbf4e546.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls3_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.087998px;}
.ls1_c00169{letter-spacing:0.098482px;}
.ls2_c00169{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws7_c00169{word-spacing:-26.487518px;}
.ws10_c00169{word-spacing:-23.312484px;}
.wsf_c00169{word-spacing:-19.546621px;}
.wse_c00169{word-spacing:-18.769538px;}
.wsd_c00169{word-spacing:-13.031081px;}
.wsa_c00169{word-spacing:-9.988424px;}
.wsb_c00169{word-spacing:-9.987499px;}
.wsc_c00169{word-spacing:-9.205442px;}
.ws0_c00169{word-spacing:0.000000px;}
.ws3_c00169{word-spacing:0.043999px;}
.ws4_c00169{word-spacing:0.046284px;}
.ws2_c00169{word-spacing:0.056767px;}
.ws6_c00169{word-spacing:0.073250px;}
.ws5_c00169{word-spacing:0.073800px;}
.ws8_c00169{word-spacing:0.213446px;}
.ws9_c00169{word-spacing:43.038600px;}
._4_c00169{margin-left:-6.369713px;}
._3_c00169{width:1.041538px;}
._6_c00169{width:17.681221px;}
._5_c00169{width:31.489358px;}
._1_c00169{width:53.283031px;}
._0_c00169{width:79.858548px;}
._2_c00169{width:106.390066px;}
.fc5_c00169{color:rgb(207,92,0);}
.fc4_c00169{color:rgb(0,0,207);}
.fc3_c00169{color:rgb(143,89,3);}
.fc2_c00169{color:rgb(0,0,0);}
.fc1_c00169{color:rgb(79,153,5);}
.fc0_c00169{color:rgb(33,74,135);}
.fs0_c00169{font-size:43.999200px;}
.fs2_c00169{font-size:59.775600px;}
.fs1_c00169{font-size:86.077200px;}
.y0_c00169{bottom:0.000000px;}
.y21_c00169{bottom:44.250000px;}
.y20_c00169{bottom:82.051500px;}
.y1f_c00169{bottom:99.984000px;}
.y1e_c00169{bottom:129.927000px;}
.y1d_c00169{bottom:147.859500px;}
.y1c_c00169{bottom:177.804000px;}
.y1b_c00169{bottom:207.747000px;}
.y1a_c00169{bottom:254.425500px;}
.y19_c00169{bottom:732.465000px;}
.y18_c00169{bottom:748.903500px;}
.y17_c00169{bottom:765.342000px;}
.y16_c00169{bottom:781.780500px;}
.y15_c00169{bottom:798.219000px;}
.y14_c00169{bottom:814.657500px;}
.y13_c00169{bottom:831.096000px;}
.y12_c00169{bottom:847.534500px;}
.y11_c00169{bottom:863.973000px;}
.y10_c00169{bottom:880.411500px;}
.yf_c00169{bottom:896.848500px;}
.ye_c00169{bottom:929.725500px;}
.yd_c00169{bottom:946.164000px;}
.yc_c00169{bottom:962.602500px;}
.yb_c00169{bottom:995.479500px;}
.ya_c00169{bottom:1011.918000px;}
.y9_c00169{bottom:1028.356500px;}
.y8_c00169{bottom:1044.795000px;}
.y7_c00169{bottom:1061.232000px;}
.y6_c00169{bottom:1077.670500px;}
.y5_c00169{bottom:1094.109000px;}
.y4_c00169{bottom:1110.547500px;}
.y3_c00169{bottom:1126.986000px;}
.y2_c00169{bottom:1143.424500px;}
.y1_c00169{bottom:1159.863000px;}
.h3_c00169{height:35.190766px;}
.h2_c00169{height:36.007158px;}
.h5_c00169{height:40.511979px;}
.h6_c00169{height:52.332837px;}
.h4_c00169{height:58.337477px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w0_c00169{width:892.920000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x4_c00169{left:127.558500px;}
.x2_c00169{left:137.122500px;}
.x1_c00169{left:143.770500px;}
.x3_c00169{left:177.007500px;}
.x5_c00169{left:435.249000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.078221pt;}
.ls1_c00169{letter-spacing:0.087539pt;}
.ls2_c00169{letter-spacing:0.092873pt;}
.ws1_c00169{word-spacing:-23.622682pt;}
.ws7_c00169{word-spacing:-23.544461pt;}
.ws10_c00169{word-spacing:-20.722208pt;}
.wsf_c00169{word-spacing:-17.374774pt;}
.wse_c00169{word-spacing:-16.684034pt;}
.wsd_c00169{word-spacing:-11.583183pt;}
.wsa_c00169{word-spacing:-8.878599pt;}
.wsb_c00169{word-spacing:-8.877777pt;}
.wsc_c00169{word-spacing:-8.182615pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.ws3_c00169{word-spacing:0.039110pt;}
.ws4_c00169{word-spacing:0.041141pt;}
.ws2_c00169{word-spacing:0.050460pt;}
.ws6_c00169{word-spacing:0.065111pt;}
.ws5_c00169{word-spacing:0.065600pt;}
.ws8_c00169{word-spacing:0.189730pt;}
.ws9_c00169{word-spacing:38.256533pt;}
._4_c00169{margin-left:-5.661967pt;}
._3_c00169{width:0.925811pt;}
._6_c00169{width:15.716641pt;}
._5_c00169{width:27.990541pt;}
._1_c00169{width:47.362694pt;}
._0_c00169{width:70.985376pt;}
._2_c00169{width:94.568947pt;}
.fs0_c00169{font-size:39.110400pt;}
.fs2_c00169{font-size:53.133867pt;}
.fs1_c00169{font-size:76.513067pt;}
.y0_c00169{bottom:0.000000pt;}
.y21_c00169{bottom:39.333333pt;}
.y20_c00169{bottom:72.934667pt;}
.y1f_c00169{bottom:88.874667pt;}
.y1e_c00169{bottom:115.490667pt;}
.y1d_c00169{bottom:131.430667pt;}
.y1c_c00169{bottom:158.048000pt;}
.y1b_c00169{bottom:184.664000pt;}
.y1a_c00169{bottom:226.156000pt;}
.y19_c00169{bottom:651.080000pt;}
.y18_c00169{bottom:665.692000pt;}
.y17_c00169{bottom:680.304000pt;}
.y16_c00169{bottom:694.916000pt;}
.y15_c00169{bottom:709.528000pt;}
.y14_c00169{bottom:724.140000pt;}
.y13_c00169{bottom:738.752000pt;}
.y12_c00169{bottom:753.364000pt;}
.y11_c00169{bottom:767.976000pt;}
.y10_c00169{bottom:782.588000pt;}
.yf_c00169{bottom:797.198667pt;}
.ye_c00169{bottom:826.422667pt;}
.yd_c00169{bottom:841.034667pt;}
.yc_c00169{bottom:855.646667pt;}
.yb_c00169{bottom:884.870667pt;}
.ya_c00169{bottom:899.482667pt;}
.y9_c00169{bottom:914.094667pt;}
.y8_c00169{bottom:928.706667pt;}
.y7_c00169{bottom:943.317333pt;}
.y6_c00169{bottom:957.929333pt;}
.y5_c00169{bottom:972.541333pt;}
.y4_c00169{bottom:987.153333pt;}
.y3_c00169{bottom:1001.765333pt;}
.y2_c00169{bottom:1016.377333pt;}
.y1_c00169{bottom:1030.989333pt;}
.h3_c00169{height:31.280681pt;}
.h2_c00169{height:32.006363pt;}
.h5_c00169{height:36.010648pt;}
.h6_c00169{height:46.518078pt;}
.h4_c00169{height:51.855535pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w0_c00169{width:793.706667pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x4_c00169{left:113.385333pt;}
.x2_c00169{left:121.886667pt;}
.x1_c00169{left:127.796000pt;}
.x3_c00169{left:157.340000pt;}
.x5_c00169{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:0.893555;font-style:normal;font-weight:normal;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_81f5303bd57da5134312dceb.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.102051;font-style:normal;font-weight:normal;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_7afddba41fdc71a78b2f7bee.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.048828;font-style: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;}
.ls3_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.087998px;}
.ls2_c00170{letter-spacing:0.098482px;}
.ls1_c00170{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00170{word-spacing:-26.575517px;}
.ws8_c00170{word-spacing:-26.487518px;}
.ws4_c00170{word-spacing:-19.128192px;}
.ws6_c00170{word-spacing:-18.769538px;}
.ws5_c00170{word-spacing:-14.824349px;}
.ws3_c00170{word-spacing:-11.918882px;}
.wsb_c00170{word-spacing:0.000000px;}
.ws9_c00170{word-spacing:0.043999px;}
.wsd_c00170{word-spacing:0.046284px;}
.wsc_c00170{word-spacing:0.056767px;}
.wsf_c00170{word-spacing:0.073250px;}
.wse_c00170{word-spacing:0.073800px;}
.ws7_c00170{word-spacing:0.175997px;}
.ws10_c00170{word-spacing:0.213446px;}
.wsa_c00170{word-spacing:0.219446px;}
.ws1_c00170{word-spacing:13.569061px;}
.ws0_c00170{word-spacing:54.749856px;}
._3_c00170{margin-left:-3.825638px;}
._0_c00170{margin-left:-1.075961px;}
._5_c00170{width:1.005737px;}
._4_c00170{width:19.905275px;}
._2_c00170{width:31.920170px;}
._7_c00170{width:53.283031px;}
._6_c00170{width:79.858548px;}
._8_c00170{width:106.390066px;}
._1_c00170{width:117.097076px;}
.fc6_c00170{color:rgb(0,0,207);}
.fc5_c00170{color:rgb(79,153,5);}
.fc3_c00170{color:rgb(33,74,135);}
.fc2_c00170{color:rgb(143,89,3);}
.fc4_c00170{color:rgb(207,92,0);}
.fc1_c00170{color:rgb(6,69,173);}
.fc0_c00170{color:rgb(0,0,0);}
.fs1_c00170{font-size:43.999200px;}
.fs0_c00170{font-size:59.775600px;}
.y0_c00170{bottom:0.000000px;}
.y25_c00170{bottom:44.250000px;}
.y24_c00170{bottom:96.919500px;}
.y23_c00170{bottom:113.358000px;}
.y22_c00170{bottom:129.796500px;}
.y21_c00170{bottom:146.235000px;}
.y20_c00170{bottom:162.673500px;}
.y1f_c00170{bottom:179.112000px;}
.y1e_c00170{bottom:195.550500px;}
.y1d_c00170{bottom:211.989000px;}
.y1c_c00170{bottom:228.427500px;}
.y1b_c00170{bottom:244.866000px;}
.y1a_c00170{bottom:261.304500px;}
.y19_c00170{bottom:294.180000px;}
.y18_c00170{bottom:310.618500px;}
.y17_c00170{bottom:327.057000px;}
.y16_c00170{bottom:359.934000px;}
.y15_c00170{bottom:376.372500px;}
.y14_c00170{bottom:392.811000px;}
.y13_c00170{bottom:409.249500px;}
.y12_c00170{bottom:425.688000px;}
.y11_c00170{bottom:442.125000px;}
.y10_c00170{bottom:458.563500px;}
.yf_c00170{bottom:475.002000px;}
.ye_c00170{bottom:491.440500px;}
.yd_c00170{bottom:507.879000px;}
.yc_c00170{bottom:524.317500px;}
.yb_c00170{bottom:540.756000px;}
.ya_c00170{bottom:573.633000px;}
.y9_c00170{bottom:590.071500px;}
.y8_c00170{bottom:606.508500px;}
.y7_c00170{bottom:639.385500px;}
.y6_c00170{bottom:672.262500px;}
.y5_c00170{bottom:688.327500px;}
.y4_c00170{bottom:1106.064000px;}
.y3_c00170{bottom:1123.998000px;}
.y2_c00170{bottom:1141.930500px;}
.y1_c00170{bottom:1159.863000px;}
.h3_c00170{height:35.190766px;}
.h4_c00170{height:36.007158px;}
.h2_c00170{height:52.332837px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w0_c00170{width:892.920000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:127.558500px;}
.x2_c00170{left:137.122500px;}
.x3_c00170{left:143.770500px;}
.x4_c00170{left:177.007500px;}
.x5_c00170{left:435.249000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls3_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.078221pt;}
.ls2_c00170{letter-spacing:0.087539pt;}
.ls1_c00170{letter-spacing:0.092873pt;}
.ws2_c00170{word-spacing:-23.622682pt;}
.ws8_c00170{word-spacing:-23.544461pt;}
.ws4_c00170{word-spacing:-17.002837pt;}
.ws6_c00170{word-spacing:-16.684034pt;}
.ws5_c00170{word-spacing:-13.177199pt;}
.ws3_c00170{word-spacing:-10.594562pt;}
.wsb_c00170{word-spacing:0.000000pt;}
.ws9_c00170{word-spacing:0.039110pt;}
.wsd_c00170{word-spacing:0.041141pt;}
.wsc_c00170{word-spacing:0.050460pt;}
.wsf_c00170{word-spacing:0.065111pt;}
.wse_c00170{word-spacing:0.065600pt;}
.ws7_c00170{word-spacing:0.156442pt;}
.ws10_c00170{word-spacing:0.189730pt;}
.wsa_c00170{word-spacing:0.195063pt;}
.ws1_c00170{word-spacing:12.061388pt;}
.ws0_c00170{word-spacing:48.666539pt;}
._3_c00170{margin-left:-3.400567pt;}
._0_c00170{margin-left:-0.956410pt;}
._5_c00170{width:0.893988pt;}
._4_c00170{width:17.693578pt;}
._2_c00170{width:28.373485pt;}
._7_c00170{width:47.362694pt;}
._6_c00170{width:70.985376pt;}
._8_c00170{width:94.568947pt;}
._1_c00170{width:104.086290pt;}
.fs1_c00170{font-size:39.110400pt;}
.fs0_c00170{font-size:53.133867pt;}
.y0_c00170{bottom:0.000000pt;}
.y25_c00170{bottom:39.333333pt;}
.y24_c00170{bottom:86.150667pt;}
.y23_c00170{bottom:100.762667pt;}
.y22_c00170{bottom:115.374667pt;}
.y21_c00170{bottom:129.986667pt;}
.y20_c00170{bottom:144.598667pt;}
.y1f_c00170{bottom:159.210667pt;}
.y1e_c00170{bottom:173.822667pt;}
.y1d_c00170{bottom:188.434667pt;}
.y1c_c00170{bottom:203.046667pt;}
.y1b_c00170{bottom:217.658667pt;}
.y1a_c00170{bottom:232.270667pt;}
.y19_c00170{bottom:261.493333pt;}
.y18_c00170{bottom:276.105333pt;}
.y17_c00170{bottom:290.717333pt;}
.y16_c00170{bottom:319.941333pt;}
.y15_c00170{bottom:334.553333pt;}
.y14_c00170{bottom:349.165333pt;}
.y13_c00170{bottom:363.777333pt;}
.y12_c00170{bottom:378.389333pt;}
.y11_c00170{bottom:393.000000pt;}
.y10_c00170{bottom:407.612000pt;}
.yf_c00170{bottom:422.224000pt;}
.ye_c00170{bottom:436.836000pt;}
.yd_c00170{bottom:451.448000pt;}
.yc_c00170{bottom:466.060000pt;}
.yb_c00170{bottom:480.672000pt;}
.ya_c00170{bottom:509.896000pt;}
.y9_c00170{bottom:524.508000pt;}
.y8_c00170{bottom:539.118667pt;}
.y7_c00170{bottom:568.342667pt;}
.y6_c00170{bottom:597.566667pt;}
.y5_c00170{bottom:611.846667pt;}
.y4_c00170{bottom:983.168000pt;}
.y3_c00170{bottom:999.109333pt;}
.y2_c00170{bottom:1015.049333pt;}
.y1_c00170{bottom:1030.989333pt;}
.h3_c00170{height:31.280681pt;}
.h4_c00170{height:32.006363pt;}
.h2_c00170{height:46.518078pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w0_c00170{width:793.706667pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:113.385333pt;}
.x2_c00170{left:121.886667pt;}
.x3_c00170{left:127.796000pt;}
.x4_c00170{left:157.340000pt;}
.x5_c00170{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5788c7cae9f3b9c2a5d4b294.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:0.893555;font-style:normal;font-weight:normal;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_76736106e07a3d221bef62eb.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_0ed625bbe15578fef5e6591d.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.048828;font-style: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;}
.ls3_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:0.087998px;}
.ls2_c00171{letter-spacing:0.098482px;}
.ls1_c00171{letter-spacing:0.104482px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-26.575517px;}
.wsf_c00171{word-spacing:-26.487518px;}
.ws5_c00171{word-spacing:-22.475626px;}
.ws8_c00171{word-spacing:-21.100787px;}
.wsc_c00171{word-spacing:-19.128192px;}
.ws6_c00171{word-spacing:-18.769538px;}
.ws4_c00171{word-spacing:-18.649987px;}
.ws7_c00171{word-spacing:-17.275148px;}
.wsd_c00171{word-spacing:-14.824349px;}
.wsb_c00171{word-spacing:-11.918882px;}
.ws1_c00171{word-spacing:-9.988424px;}
.ws3_c00171{word-spacing:-9.987499px;}
.ws12_c00171{word-spacing:0.000000px;}
.ws10_c00171{word-spacing:0.043999px;}
.ws14_c00171{word-spacing:0.046284px;}
.ws13_c00171{word-spacing:0.056767px;}
.ws16_c00171{word-spacing:0.073250px;}
.ws15_c00171{word-spacing:0.073800px;}
.wse_c00171{word-spacing:0.175997px;}
.ws11_c00171{word-spacing:0.219446px;}
.wsa_c00171{word-spacing:13.569061px;}
.ws0_c00171{word-spacing:43.038600px;}
.ws9_c00171{word-spacing:54.749856px;}
._0_c00171{margin-left:-6.369713px;}
._6_c00171{margin-left:-3.825638px;}
._3_c00171{margin-left:-1.075961px;}
._8_c00171{width:1.005737px;}
._2_c00171{width:13.756702px;}
._1_c00171{width:18.115903px;}
._7_c00171{width:19.905275px;}
._5_c00171{width:31.920170px;}
._a_c00171{width:53.283031px;}
._9_c00171{width:79.858548px;}
._b_c00171{width:106.390066px;}
._4_c00171{width:117.097076px;}
.fc6_c00171{color:rgb(0,0,207);}
.fc5_c00171{color:rgb(79,153,5);}
.fc3_c00171{color:rgb(33,74,135);}
.fc2_c00171{color:rgb(143,89,3);}
.fc4_c00171{color:rgb(207,92,0);}
.fc1_c00171{color:rgb(6,69,173);}
.fc0_c00171{color:rgb(0,0,0);}
.fs2_c00171{font-size:43.999200px;}
.fs1_c00171{font-size:59.775600px;}
.fs0_c00171{font-size:86.077200px;}
.y0_c00171{bottom:0.000000px;}
.y1f_c00171{bottom:44.250000px;}
.y1e_c00171{bottom:86.982000px;}
.y1d_c00171{bottom:119.859000px;}
.y1c_c00171{bottom:136.297500px;}
.y1b_c00171{bottom:152.736000px;}
.y1a_c00171{bottom:169.174500px;}
.y19_c00171{bottom:185.613000px;}
.y18_c00171{bottom:202.051500px;}
.y17_c00171{bottom:218.490000px;}
.y16_c00171{bottom:234.927000px;}
.y15_c00171{bottom:251.365500px;}
.y14_c00171{bottom:267.804000px;}
.y13_c00171{bottom:284.242500px;}
.y12_c00171{bottom:300.681000px;}
.y11_c00171{bottom:333.558000px;}
.y10_c00171{bottom:349.996500px;}
.yf_c00171{bottom:366.435000px;}
.ye_c00171{bottom:399.310500px;}
.yd_c00171{bottom:432.187500px;}
.yc_c00171{bottom:448.252500px;}
.yb_c00171{bottom:495.994500px;}
.ya_c00171{bottom:513.927000px;}
.y9_c00171{bottom:531.859500px;}
.y8_c00171{bottom:549.793500px;}
.y7_c00171{bottom:576.615000px;}
.y6_c00171{bottom:594.547500px;}
.y5_c00171{bottom:621.369000px;}
.y4_c00171{bottom:639.301500px;}
.y3_c00171{bottom:666.123000px;}
.y2_c00171{bottom:692.944500px;}
.y1_c00171{bottom:735.139500px;}
.h5_c00171{height:35.190766px;}
.h6_c00171{height:36.007158px;}
.h3_c00171{height:40.511979px;}
.h4_c00171{height:52.332837px;}
.h2_c00171{height:58.337477px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w0_c00171{width:892.920000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:127.558500px;}
.x2_c00171{left:137.122500px;}
.x3_c00171{left:143.770500px;}
.x4_c00171{left:435.249000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls3_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:0.078221pt;}
.ls2_c00171{letter-spacing:0.087539pt;}
.ls1_c00171{letter-spacing:0.092873pt;}
.ws2_c00171{word-spacing:-23.622682pt;}
.wsf_c00171{word-spacing:-23.544461pt;}
.ws5_c00171{word-spacing:-19.978334pt;}
.ws8_c00171{word-spacing:-18.756255pt;}
.wsc_c00171{word-spacing:-17.002837pt;}
.ws6_c00171{word-spacing:-16.684034pt;}
.ws4_c00171{word-spacing:-16.577766pt;}
.ws7_c00171{word-spacing:-15.355687pt;}
.wsd_c00171{word-spacing:-13.177199pt;}
.wsb_c00171{word-spacing:-10.594562pt;}
.ws1_c00171{word-spacing:-8.878599pt;}
.ws3_c00171{word-spacing:-8.877777pt;}
.ws12_c00171{word-spacing:0.000000pt;}
.ws10_c00171{word-spacing:0.039110pt;}
.ws14_c00171{word-spacing:0.041141pt;}
.ws13_c00171{word-spacing:0.050460pt;}
.ws16_c00171{word-spacing:0.065111pt;}
.ws15_c00171{word-spacing:0.065600pt;}
.wse_c00171{word-spacing:0.156442pt;}
.ws11_c00171{word-spacing:0.195063pt;}
.wsa_c00171{word-spacing:12.061388pt;}
.ws0_c00171{word-spacing:38.256533pt;}
.ws9_c00171{word-spacing:48.666539pt;}
._0_c00171{margin-left:-5.661967pt;}
._6_c00171{margin-left:-3.400567pt;}
._3_c00171{margin-left:-0.956410pt;}
._8_c00171{width:0.893988pt;}
._2_c00171{width:12.228179pt;}
._1_c00171{width:16.103025pt;}
._7_c00171{width:17.693578pt;}
._5_c00171{width:28.373485pt;}
._a_c00171{width:47.362694pt;}
._9_c00171{width:70.985376pt;}
._b_c00171{width:94.568947pt;}
._4_c00171{width:104.086290pt;}
.fs2_c00171{font-size:39.110400pt;}
.fs1_c00171{font-size:53.133867pt;}
.fs0_c00171{font-size:76.513067pt;}
.y0_c00171{bottom:0.000000pt;}
.y1f_c00171{bottom:39.333333pt;}
.y1e_c00171{bottom:77.317333pt;}
.y1d_c00171{bottom:106.541333pt;}
.y1c_c00171{bottom:121.153333pt;}
.y1b_c00171{bottom:135.765333pt;}
.y1a_c00171{bottom:150.377333pt;}
.y19_c00171{bottom:164.989333pt;}
.y18_c00171{bottom:179.601333pt;}
.y17_c00171{bottom:194.213333pt;}
.y16_c00171{bottom:208.824000pt;}
.y15_c00171{bottom:223.436000pt;}
.y14_c00171{bottom:238.048000pt;}
.y13_c00171{bottom:252.660000pt;}
.y12_c00171{bottom:267.272000pt;}
.y11_c00171{bottom:296.496000pt;}
.y10_c00171{bottom:311.108000pt;}
.yf_c00171{bottom:325.720000pt;}
.ye_c00171{bottom:354.942667pt;}
.yd_c00171{bottom:384.166667pt;}
.yc_c00171{bottom:398.446667pt;}
.yb_c00171{bottom:440.884000pt;}
.ya_c00171{bottom:456.824000pt;}
.y9_c00171{bottom:472.764000pt;}
.y8_c00171{bottom:488.705333pt;}
.y7_c00171{bottom:512.546667pt;}
.y6_c00171{bottom:528.486667pt;}
.y5_c00171{bottom:552.328000pt;}
.y4_c00171{bottom:568.268000pt;}
.y3_c00171{bottom:592.109333pt;}
.y2_c00171{bottom:615.950667pt;}
.y1_c00171{bottom:653.457333pt;}
.h5_c00171{height:31.280681pt;}
.h6_c00171{height:32.006363pt;}
.h3_c00171{height:36.010648pt;}
.h4_c00171{height:46.518078pt;}
.h2_c00171{height:51.855535pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w0_c00171{width:793.706667pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:113.385333pt;}
.x2_c00171{left:121.886667pt;}
.x3_c00171{left:127.796000pt;}
.x4_c00171{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.048828;font-style:normal;font-weight:normal;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_e908b837c049e836348ad7d8.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.083496;font-style:normal;font-weight:normal;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_463926e93a651785168ff08d.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.893555;font-style:normal;font-weight:normal;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_21c83fd3e1dd93fa55a52bcf.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.014648;font-style: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;}
.v1_c00172{vertical-align:22.518000px;}
.ls3_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:0.087998px;}
.ls2_c00172{letter-spacing:0.098482px;}
.ls0_c00172{letter-spacing:0.104482px;}
.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;}
}
.wsa_c00172{word-spacing:-33.713438px;}
.ws1_c00172{word-spacing:-26.575517px;}
.ws0_c00172{word-spacing:-26.487518px;}
.wsb_c00172{word-spacing:-23.599339px;}
.wsf_c00172{word-spacing:-19.128192px;}
.ws8_c00172{word-spacing:-18.769538px;}
.ws7_c00172{word-spacing:-14.943900px;}
.ws10_c00172{word-spacing:-14.824349px;}
.wse_c00172{word-spacing:-11.918882px;}
.ws5_c00172{word-spacing:-9.988424px;}
.ws6_c00172{word-spacing:-9.987499px;}
.ws9_c00172{word-spacing:-5.649230px;}
.ws13_c00172{word-spacing:0.000000px;}
.ws2_c00172{word-spacing:0.043999px;}
.ws11_c00172{word-spacing:0.175997px;}
.ws3_c00172{word-spacing:0.213446px;}
.ws12_c00172{word-spacing:0.219446px;}
.wsd_c00172{word-spacing:13.569061px;}
.ws4_c00172{word-spacing:43.038600px;}
.wsc_c00172{word-spacing:54.749856px;}
._1_c00172{margin-left:-6.369713px;}
._7_c00172{margin-left:-3.825638px;}
._4_c00172{margin-left:-1.075961px;}
._0_c00172{width:1.041538px;}
._3_c00172{width:2.882098px;}
._2_c00172{width:19.935816px;}
._6_c00172{width:31.920170px;}
._5_c00172{width:117.097076px;}
.fc5_c00172{color:rgb(0,0,207);}
.fc4_c00172{color:rgb(143,89,3);}
.fc3_c00172{color:rgb(79,153,5);}
.fc6_c00172{color:rgb(6,69,173);}
.fc2_c00172{color:rgb(207,92,0);}
.fc1_c00172{color:rgb(0,0,0);}
.fc0_c00172{color:rgb(33,74,135);}
.fs3_c00172{font-size:41.842800px;}
.fs0_c00172{font-size:43.999200px;}
.fs2_c00172{font-size:59.775600px;}
.fs1_c00172{font-size:86.077200px;}
.y0_c00172{bottom:0.000000px;}
.y1e_c00172{bottom:44.250000px;}
.y1d_c00172{bottom:82.051500px;}
.y1c_c00172{bottom:114.927000px;}
.y1b_c00172{bottom:131.365500px;}
.y1a_c00172{bottom:147.804000px;}
.y19_c00172{bottom:180.681000px;}
.y18_c00172{bottom:213.558000px;}
.y17_c00172{bottom:229.623000px;}
.y16_c00172{bottom:277.623000px;}
.y15_c00172{bottom:295.557000px;}
.y14_c00172{bottom:313.489500px;}
.y13_c00172{bottom:331.422000px;}
.y12_c00172{bottom:358.287000px;}
.y11_c00172{bottom:385.152000px;}
.y10_c00172{bottom:412.017000px;}
.yf_c00172{bottom:438.882000px;}
.ye_c00172{bottom:481.119000px;}
.yd_c00172{bottom:946.164000px;}
.yc_c00172{bottom:962.602500px;}
.yb_c00172{bottom:979.041000px;}
.ya_c00172{bottom:995.479500px;}
.y9_c00172{bottom:1011.918000px;}
.y8_c00172{bottom:1028.356500px;}
.y7_c00172{bottom:1044.795000px;}
.y6_c00172{bottom:1061.232000px;}
.y5_c00172{bottom:1077.670500px;}
.y4_c00172{bottom:1094.109000px;}
.y3_c00172{bottom:1110.547500px;}
.y2_c00172{bottom:1143.424500px;}
.y1_c00172{bottom:1159.863000px;}
.h7_c00172{height:35.190766px;}
.h2_c00172{height:36.007158px;}
.h4_c00172{height:40.511979px;}
.h6_c00172{height:52.332837px;}
.h3_c00172{height:58.337477px;}
.h5_c00172{height:59.150881px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w0_c00172{width:892.920000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x3_c00172{left:127.558500px;}
.x1_c00172{left:137.122500px;}
.x2_c00172{left:177.007500px;}
.x4_c00172{left:435.249000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:20.016000pt;}
.ls3_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:0.078221pt;}
.ls2_c00172{letter-spacing:0.087539pt;}
.ls0_c00172{letter-spacing:0.092873pt;}
.wsa_c00172{word-spacing:-29.967501pt;}
.ws1_c00172{word-spacing:-23.622682pt;}
.ws0_c00172{word-spacing:-23.544461pt;}
.wsb_c00172{word-spacing:-20.977190pt;}
.wsf_c00172{word-spacing:-17.002837pt;}
.ws8_c00172{word-spacing:-16.684034pt;}
.ws7_c00172{word-spacing:-13.283467pt;}
.ws10_c00172{word-spacing:-13.177199pt;}
.wse_c00172{word-spacing:-10.594562pt;}
.ws5_c00172{word-spacing:-8.878599pt;}
.ws6_c00172{word-spacing:-8.877777pt;}
.ws9_c00172{word-spacing:-5.021538pt;}
.ws13_c00172{word-spacing:0.000000pt;}
.ws2_c00172{word-spacing:0.039110pt;}
.ws11_c00172{word-spacing:0.156442pt;}
.ws3_c00172{word-spacing:0.189730pt;}
.ws12_c00172{word-spacing:0.195063pt;}
.wsd_c00172{word-spacing:12.061388pt;}
.ws4_c00172{word-spacing:38.256533pt;}
.wsc_c00172{word-spacing:48.666539pt;}
._1_c00172{margin-left:-5.661967pt;}
._7_c00172{margin-left:-3.400567pt;}
._4_c00172{margin-left:-0.956410pt;}
._0_c00172{width:0.925811pt;}
._3_c00172{width:2.561865pt;}
._2_c00172{width:17.720725pt;}
._6_c00172{width:28.373485pt;}
._5_c00172{width:104.086290pt;}
.fs3_c00172{font-size:37.193600pt;}
.fs0_c00172{font-size:39.110400pt;}
.fs2_c00172{font-size:53.133867pt;}
.fs1_c00172{font-size:76.513067pt;}
.y0_c00172{bottom:0.000000pt;}
.y1e_c00172{bottom:39.333333pt;}
.y1d_c00172{bottom:72.934667pt;}
.y1c_c00172{bottom:102.157333pt;}
.y1b_c00172{bottom:116.769333pt;}
.y1a_c00172{bottom:131.381333pt;}
.y19_c00172{bottom:160.605333pt;}
.y18_c00172{bottom:189.829333pt;}
.y17_c00172{bottom:204.109333pt;}
.y16_c00172{bottom:246.776000pt;}
.y15_c00172{bottom:262.717333pt;}
.y14_c00172{bottom:278.657333pt;}
.y13_c00172{bottom:294.597333pt;}
.y12_c00172{bottom:318.477333pt;}
.y11_c00172{bottom:342.357333pt;}
.y10_c00172{bottom:366.237333pt;}
.yf_c00172{bottom:390.117333pt;}
.ye_c00172{bottom:427.661333pt;}
.yd_c00172{bottom:841.034667pt;}
.yc_c00172{bottom:855.646667pt;}
.yb_c00172{bottom:870.258667pt;}
.ya_c00172{bottom:884.870667pt;}
.y9_c00172{bottom:899.482667pt;}
.y8_c00172{bottom:914.094667pt;}
.y7_c00172{bottom:928.706667pt;}
.y6_c00172{bottom:943.317333pt;}
.y5_c00172{bottom:957.929333pt;}
.y4_c00172{bottom:972.541333pt;}
.y3_c00172{bottom:987.153333pt;}
.y2_c00172{bottom:1016.377333pt;}
.y1_c00172{bottom:1030.989333pt;}
.h7_c00172{height:31.280681pt;}
.h2_c00172{height:32.006363pt;}
.h4_c00172{height:36.010648pt;}
.h6_c00172{height:46.518078pt;}
.h3_c00172{height:51.855535pt;}
.h5_c00172{height:52.578561pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w0_c00172{width:793.706667pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x3_c00172{left:113.385333pt;}
.x1_c00172{left:121.886667pt;}
.x2_c00172{left:157.340000pt;}
.x4_c00172{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3232c82121591785b5dcfbf.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_8945719e184c1ec8f021cc8b.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_ff82d5122da8267e48b6cdf8.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.v1_c00173{vertical-align:22.524000px;}
.ls3_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.087998px;}
.ls1_c00173{letter-spacing:0.098482px;}
.ls2_c00173{letter-spacing:0.104482px;}
.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;}
}
.wsf_c00173{word-spacing:-33.713438px;}
.ws1_c00173{word-spacing:-26.575517px;}
.ws7_c00173{word-spacing:-26.487518px;}
.ws10_c00173{word-spacing:-23.599339px;}
.ws11_c00173{word-spacing:-20.921460px;}
.wsd_c00173{word-spacing:-20.861684px;}
.ws12_c00173{word-spacing:-18.769538px;}
.wsc_c00173{word-spacing:-17.095822px;}
.ws14_c00173{word-spacing:-13.270183px;}
.wsa_c00173{word-spacing:-9.988424px;}
.wsb_c00173{word-spacing:-9.987499px;}
.ws13_c00173{word-spacing:-9.444545px;}
.wse_c00173{word-spacing:-7.749230px;}
.ws15_c00173{word-spacing:-0.141230px;}
.ws0_c00173{word-spacing:0.000000px;}
.ws3_c00173{word-spacing:0.043999px;}
.ws4_c00173{word-spacing:0.046284px;}
.ws2_c00173{word-spacing:0.056767px;}
.ws6_c00173{word-spacing:0.073250px;}
.ws5_c00173{word-spacing:0.073800px;}
.ws8_c00173{word-spacing:0.213446px;}
.ws9_c00173{word-spacing:43.038600px;}
._4_c00173{margin-left:-6.369713px;}
._8_c00173{margin-left:-3.586536px;}
._3_c00173{width:1.041538px;}
._6_c00173{width:2.678078px;}
._5_c00173{width:18.931738px;}
._7_c00173{width:30.949145px;}
._1_c00173{width:53.283031px;}
._0_c00173{width:79.858548px;}
._2_c00173{width:106.390066px;}
.fc5_c00173{color:rgb(207,92,0);}
.fc4_c00173{color:rgb(0,0,207);}
.fc3_c00173{color:rgb(143,89,3);}
.fc2_c00173{color:rgb(0,0,0);}
.fc1_c00173{color:rgb(79,153,5);}
.fc0_c00173{color:rgb(33,74,135);}
.fs3_c00173{font-size:41.842800px;}
.fs0_c00173{font-size:43.999200px;}
.fs2_c00173{font-size:59.775600px;}
.fs1_c00173{font-size:86.077200px;}
.y0_c00173{bottom:0.000000px;}
.y21_c00173{bottom:44.250000px;}
.y20_c00173{bottom:82.051500px;}
.y1f_c00173{bottom:99.984000px;}
.y1e_c00173{bottom:129.927000px;}
.y1d_c00173{bottom:147.859500px;}
.y1c_c00173{bottom:177.804000px;}
.y1b_c00173{bottom:207.747000px;}
.y1a_c00173{bottom:254.425500px;}
.y19_c00173{bottom:732.465000px;}
.y18_c00173{bottom:748.903500px;}
.y17_c00173{bottom:765.342000px;}
.y16_c00173{bottom:781.780500px;}
.y15_c00173{bottom:798.219000px;}
.y14_c00173{bottom:814.657500px;}
.y13_c00173{bottom:831.096000px;}
.y12_c00173{bottom:847.534500px;}
.y11_c00173{bottom:863.973000px;}
.y10_c00173{bottom:880.411500px;}
.yf_c00173{bottom:896.848500px;}
.ye_c00173{bottom:929.725500px;}
.yd_c00173{bottom:946.164000px;}
.yc_c00173{bottom:962.602500px;}
.yb_c00173{bottom:995.479500px;}
.ya_c00173{bottom:1011.918000px;}
.y9_c00173{bottom:1028.356500px;}
.y8_c00173{bottom:1044.795000px;}
.y7_c00173{bottom:1061.232000px;}
.y6_c00173{bottom:1077.670500px;}
.y5_c00173{bottom:1094.109000px;}
.y4_c00173{bottom:1110.547500px;}
.y3_c00173{bottom:1126.986000px;}
.y2_c00173{bottom:1143.424500px;}
.y1_c00173{bottom:1159.863000px;}
.h3_c00173{height:35.190766px;}
.h2_c00173{height:36.007158px;}
.h5_c00173{height:40.511979px;}
.h7_c00173{height:52.332837px;}
.h4_c00173{height:58.337477px;}
.h8_c00173{height:59.150881px;}
.h6_c00173{height:59.156881px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w0_c00173{width:892.920000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x4_c00173{left:127.558500px;}
.x2_c00173{left:137.122500px;}
.x1_c00173{left:143.770500px;}
.x3_c00173{left:177.007500px;}
.x5_c00173{left:435.249000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:20.021333pt;}
.ls3_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.078221pt;}
.ls1_c00173{letter-spacing:0.087539pt;}
.ls2_c00173{letter-spacing:0.092873pt;}
.wsf_c00173{word-spacing:-29.967501pt;}
.ws1_c00173{word-spacing:-23.622682pt;}
.ws7_c00173{word-spacing:-23.544461pt;}
.ws10_c00173{word-spacing:-20.977190pt;}
.ws11_c00173{word-spacing:-18.596853pt;}
.wsd_c00173{word-spacing:-18.543719pt;}
.ws12_c00173{word-spacing:-16.684034pt;}
.wsc_c00173{word-spacing:-15.196286pt;}
.ws14_c00173{word-spacing:-11.795718pt;}
.wsa_c00173{word-spacing:-8.878599pt;}
.wsb_c00173{word-spacing:-8.877777pt;}
.ws13_c00173{word-spacing:-8.395151pt;}
.wse_c00173{word-spacing:-6.888205pt;}
.ws15_c00173{word-spacing:-0.125538pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.ws3_c00173{word-spacing:0.039110pt;}
.ws4_c00173{word-spacing:0.041141pt;}
.ws2_c00173{word-spacing:0.050460pt;}
.ws6_c00173{word-spacing:0.065111pt;}
.ws5_c00173{word-spacing:0.065600pt;}
.ws8_c00173{word-spacing:0.189730pt;}
.ws9_c00173{word-spacing:38.256533pt;}
._4_c00173{margin-left:-5.661967pt;}
._8_c00173{margin-left:-3.188032pt;}
._3_c00173{width:0.925811pt;}
._6_c00173{width:2.380514pt;}
._5_c00173{width:16.828211pt;}
._7_c00173{width:27.510351pt;}
._1_c00173{width:47.362694pt;}
._0_c00173{width:70.985376pt;}
._2_c00173{width:94.568947pt;}
.fs3_c00173{font-size:37.193600pt;}
.fs0_c00173{font-size:39.110400pt;}
.fs2_c00173{font-size:53.133867pt;}
.fs1_c00173{font-size:76.513067pt;}
.y0_c00173{bottom:0.000000pt;}
.y21_c00173{bottom:39.333333pt;}
.y20_c00173{bottom:72.934667pt;}
.y1f_c00173{bottom:88.874667pt;}
.y1e_c00173{bottom:115.490667pt;}
.y1d_c00173{bottom:131.430667pt;}
.y1c_c00173{bottom:158.048000pt;}
.y1b_c00173{bottom:184.664000pt;}
.y1a_c00173{bottom:226.156000pt;}
.y19_c00173{bottom:651.080000pt;}
.y18_c00173{bottom:665.692000pt;}
.y17_c00173{bottom:680.304000pt;}
.y16_c00173{bottom:694.916000pt;}
.y15_c00173{bottom:709.528000pt;}
.y14_c00173{bottom:724.140000pt;}
.y13_c00173{bottom:738.752000pt;}
.y12_c00173{bottom:753.364000pt;}
.y11_c00173{bottom:767.976000pt;}
.y10_c00173{bottom:782.588000pt;}
.yf_c00173{bottom:797.198667pt;}
.ye_c00173{bottom:826.422667pt;}
.yd_c00173{bottom:841.034667pt;}
.yc_c00173{bottom:855.646667pt;}
.yb_c00173{bottom:884.870667pt;}
.ya_c00173{bottom:899.482667pt;}
.y9_c00173{bottom:914.094667pt;}
.y8_c00173{bottom:928.706667pt;}
.y7_c00173{bottom:943.317333pt;}
.y6_c00173{bottom:957.929333pt;}
.y5_c00173{bottom:972.541333pt;}
.y4_c00173{bottom:987.153333pt;}
.y3_c00173{bottom:1001.765333pt;}
.y2_c00173{bottom:1016.377333pt;}
.y1_c00173{bottom:1030.989333pt;}
.h3_c00173{height:31.280681pt;}
.h2_c00173{height:32.006363pt;}
.h5_c00173{height:36.010648pt;}
.h7_c00173{height:46.518078pt;}
.h4_c00173{height:51.855535pt;}
.h8_c00173{height:52.578561pt;}
.h6_c00173{height:52.583894pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w0_c00173{width:793.706667pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x4_c00173{left:113.385333pt;}
.x2_c00173{left:121.886667pt;}
.x1_c00173{left:127.796000pt;}
.x3_c00173{left:157.340000pt;}
.x5_c00173{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:0.893555;font-style:normal;font-weight:normal;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_81f5303bd57da5134312dceb.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.102051;font-style:normal;font-weight:normal;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_84a0a6d345dfc6ade51d98f2.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.048828;font-style: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;}
.ls3_c00174{letter-spacing:0.000000px;}
.ls0_c00174{letter-spacing:0.087998px;}
.ls2_c00174{letter-spacing:0.098482px;}
.ls1_c00174{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00174{word-spacing:-26.575517px;}
.ws8_c00174{word-spacing:-26.487518px;}
.ws4_c00174{word-spacing:-19.128192px;}
.ws6_c00174{word-spacing:-18.769538px;}
.ws5_c00174{word-spacing:-14.824349px;}
.ws3_c00174{word-spacing:-11.918882px;}
.wsb_c00174{word-spacing:0.000000px;}
.ws9_c00174{word-spacing:0.043999px;}
.wsd_c00174{word-spacing:0.046284px;}
.wsc_c00174{word-spacing:0.056767px;}
.wsf_c00174{word-spacing:0.073250px;}
.wse_c00174{word-spacing:0.073800px;}
.ws7_c00174{word-spacing:0.175997px;}
.ws10_c00174{word-spacing:0.213446px;}
.wsa_c00174{word-spacing:0.219446px;}
.ws1_c00174{word-spacing:13.569061px;}
.ws0_c00174{word-spacing:54.749856px;}
._3_c00174{margin-left:-3.825638px;}
._0_c00174{margin-left:-1.075961px;}
._5_c00174{width:1.005737px;}
._4_c00174{width:19.905275px;}
._2_c00174{width:31.920170px;}
._7_c00174{width:53.283031px;}
._6_c00174{width:79.858548px;}
._8_c00174{width:106.390066px;}
._1_c00174{width:117.097076px;}
.fc6_c00174{color:rgb(0,0,207);}
.fc5_c00174{color:rgb(79,153,5);}
.fc3_c00174{color:rgb(33,74,135);}
.fc2_c00174{color:rgb(143,89,3);}
.fc4_c00174{color:rgb(207,92,0);}
.fc1_c00174{color:rgb(6,69,173);}
.fc0_c00174{color:rgb(0,0,0);}
.fs1_c00174{font-size:43.999200px;}
.fs0_c00174{font-size:59.775600px;}
.y0_c00174{bottom:0.000000px;}
.y25_c00174{bottom:44.250000px;}
.y24_c00174{bottom:96.919500px;}
.y23_c00174{bottom:113.358000px;}
.y22_c00174{bottom:129.796500px;}
.y21_c00174{bottom:146.235000px;}
.y20_c00174{bottom:162.673500px;}
.y1f_c00174{bottom:179.112000px;}
.y1e_c00174{bottom:195.550500px;}
.y1d_c00174{bottom:211.989000px;}
.y1c_c00174{bottom:228.427500px;}
.y1b_c00174{bottom:244.866000px;}
.y1a_c00174{bottom:261.304500px;}
.y19_c00174{bottom:294.180000px;}
.y18_c00174{bottom:310.618500px;}
.y17_c00174{bottom:327.057000px;}
.y16_c00174{bottom:359.934000px;}
.y15_c00174{bottom:376.372500px;}
.y14_c00174{bottom:392.811000px;}
.y13_c00174{bottom:409.249500px;}
.y12_c00174{bottom:425.688000px;}
.y11_c00174{bottom:442.125000px;}
.y10_c00174{bottom:458.563500px;}
.yf_c00174{bottom:475.002000px;}
.ye_c00174{bottom:491.440500px;}
.yd_c00174{bottom:507.879000px;}
.yc_c00174{bottom:524.317500px;}
.yb_c00174{bottom:540.756000px;}
.ya_c00174{bottom:573.633000px;}
.y9_c00174{bottom:590.071500px;}
.y8_c00174{bottom:606.508500px;}
.y7_c00174{bottom:639.385500px;}
.y6_c00174{bottom:672.262500px;}
.y5_c00174{bottom:688.327500px;}
.y4_c00174{bottom:1106.064000px;}
.y3_c00174{bottom:1123.998000px;}
.y2_c00174{bottom:1141.930500px;}
.y1_c00174{bottom:1159.863000px;}
.h3_c00174{height:35.190766px;}
.h4_c00174{height:36.007158px;}
.h2_c00174{height:52.332837px;}
.h0_c00174{height:1262.835000px;}
.h1_c00174{height:1263.000000px;}
.w0_c00174{width:892.920000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:127.558500px;}
.x2_c00174{left:137.122500px;}
.x3_c00174{left:143.770500px;}
.x4_c00174{left:177.007500px;}
.x5_c00174{left:435.249000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls3_c00174{letter-spacing:0.000000pt;}
.ls0_c00174{letter-spacing:0.078221pt;}
.ls2_c00174{letter-spacing:0.087539pt;}
.ls1_c00174{letter-spacing:0.092873pt;}
.ws2_c00174{word-spacing:-23.622682pt;}
.ws8_c00174{word-spacing:-23.544461pt;}
.ws4_c00174{word-spacing:-17.002837pt;}
.ws6_c00174{word-spacing:-16.684034pt;}
.ws5_c00174{word-spacing:-13.177199pt;}
.ws3_c00174{word-spacing:-10.594562pt;}
.wsb_c00174{word-spacing:0.000000pt;}
.ws9_c00174{word-spacing:0.039110pt;}
.wsd_c00174{word-spacing:0.041141pt;}
.wsc_c00174{word-spacing:0.050460pt;}
.wsf_c00174{word-spacing:0.065111pt;}
.wse_c00174{word-spacing:0.065600pt;}
.ws7_c00174{word-spacing:0.156442pt;}
.ws10_c00174{word-spacing:0.189730pt;}
.wsa_c00174{word-spacing:0.195063pt;}
.ws1_c00174{word-spacing:12.061388pt;}
.ws0_c00174{word-spacing:48.666539pt;}
._3_c00174{margin-left:-3.400567pt;}
._0_c00174{margin-left:-0.956410pt;}
._5_c00174{width:0.893988pt;}
._4_c00174{width:17.693578pt;}
._2_c00174{width:28.373485pt;}
._7_c00174{width:47.362694pt;}
._6_c00174{width:70.985376pt;}
._8_c00174{width:94.568947pt;}
._1_c00174{width:104.086290pt;}
.fs1_c00174{font-size:39.110400pt;}
.fs0_c00174{font-size:53.133867pt;}
.y0_c00174{bottom:0.000000pt;}
.y25_c00174{bottom:39.333333pt;}
.y24_c00174{bottom:86.150667pt;}
.y23_c00174{bottom:100.762667pt;}
.y22_c00174{bottom:115.374667pt;}
.y21_c00174{bottom:129.986667pt;}
.y20_c00174{bottom:144.598667pt;}
.y1f_c00174{bottom:159.210667pt;}
.y1e_c00174{bottom:173.822667pt;}
.y1d_c00174{bottom:188.434667pt;}
.y1c_c00174{bottom:203.046667pt;}
.y1b_c00174{bottom:217.658667pt;}
.y1a_c00174{bottom:232.270667pt;}
.y19_c00174{bottom:261.493333pt;}
.y18_c00174{bottom:276.105333pt;}
.y17_c00174{bottom:290.717333pt;}
.y16_c00174{bottom:319.941333pt;}
.y15_c00174{bottom:334.553333pt;}
.y14_c00174{bottom:349.165333pt;}
.y13_c00174{bottom:363.777333pt;}
.y12_c00174{bottom:378.389333pt;}
.y11_c00174{bottom:393.000000pt;}
.y10_c00174{bottom:407.612000pt;}
.yf_c00174{bottom:422.224000pt;}
.ye_c00174{bottom:436.836000pt;}
.yd_c00174{bottom:451.448000pt;}
.yc_c00174{bottom:466.060000pt;}
.yb_c00174{bottom:480.672000pt;}
.ya_c00174{bottom:509.896000pt;}
.y9_c00174{bottom:524.508000pt;}
.y8_c00174{bottom:539.118667pt;}
.y7_c00174{bottom:568.342667pt;}
.y6_c00174{bottom:597.566667pt;}
.y5_c00174{bottom:611.846667pt;}
.y4_c00174{bottom:983.168000pt;}
.y3_c00174{bottom:999.109333pt;}
.y2_c00174{bottom:1015.049333pt;}
.y1_c00174{bottom:1030.989333pt;}
.h3_c00174{height:31.280681pt;}
.h4_c00174{height:32.006363pt;}
.h2_c00174{height:46.518078pt;}
.h0_c00174{height:1122.520000pt;}
.h1_c00174{height:1122.666667pt;}
.w0_c00174{width:793.706667pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:113.385333pt;}
.x2_c00174{left:121.886667pt;}
.x3_c00174{left:127.796000pt;}
.x4_c00174{left:157.340000pt;}
.x5_c00174{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f21c52572f771997b601ec37.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:0.893555;font-style:normal;font-weight:normal;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_5cb27e80fd6d98293480a4e1.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.083496;font-style:normal;font-weight:normal;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_86d1d77d3debe73f9994fc94.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.014648;font-style:normal;font-weight:normal;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_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.048828;font-style: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;}
.v1_c00175{vertical-align:22.518000px;}
.ls3_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.087998px;}
.ls2_c00175{letter-spacing:0.098482px;}
.ls1_c00175{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00175{word-spacing:-33.713438px;}
.ws2_c00175{word-spacing:-26.575517px;}
.ws13_c00175{word-spacing:-26.487518px;}
.ws8_c00175{word-spacing:-23.599339px;}
.ws10_c00175{word-spacing:-19.128192px;}
.ws9_c00175{word-spacing:-18.769538px;}
.wsc_c00175{word-spacing:-15.780758px;}
.wsa_c00175{word-spacing:-15.720983px;}
.ws11_c00175{word-spacing:-14.824349px;}
.ws5_c00175{word-spacing:-11.955120px;}
.wsf_c00175{word-spacing:-11.918882px;}
.ws1_c00175{word-spacing:-9.988424px;}
.ws3_c00175{word-spacing:-9.987499px;}
.ws4_c00175{word-spacing:-8.129482px;}
.wsb_c00175{word-spacing:-2.607230px;}
.ws16_c00175{word-spacing:0.000000px;}
.ws14_c00175{word-spacing:0.043999px;}
.ws18_c00175{word-spacing:0.046284px;}
.ws17_c00175{word-spacing:0.056767px;}
.ws1a_c00175{word-spacing:0.073250px;}
.ws19_c00175{word-spacing:0.073800px;}
.ws12_c00175{word-spacing:0.175997px;}
.ws15_c00175{word-spacing:0.219446px;}
.ws6_c00175{word-spacing:1.178770px;}
.wse_c00175{word-spacing:13.569061px;}
.ws0_c00175{word-spacing:43.038600px;}
.wsd_c00175{word-spacing:54.749856px;}
._0_c00175{margin-left:-6.369713px;}
._4_c00175{margin-left:-3.586536px;}
._5_c00175{margin-left:-1.075961px;}
._8_c00175{width:1.005737px;}
._2_c00175{width:2.872012px;}
._3_c00175{width:26.061720px;}
._7_c00175{width:31.920170px;}
._1_c00175{width:33.611398px;}
._a_c00175{width:53.283031px;}
._9_c00175{width:79.858548px;}
._b_c00175{width:106.390066px;}
._6_c00175{width:117.097076px;}
.fc6_c00175{color:rgb(0,0,207);}
.fc5_c00175{color:rgb(79,153,5);}
.fc3_c00175{color:rgb(33,74,135);}
.fc2_c00175{color:rgb(143,89,3);}
.fc4_c00175{color:rgb(207,92,0);}
.fc1_c00175{color:rgb(6,69,173);}
.fc0_c00175{color:rgb(0,0,0);}
.fs3_c00175{font-size:41.842800px;}
.fs2_c00175{font-size:43.999200px;}
.fs1_c00175{font-size:59.775600px;}
.fs0_c00175{font-size:86.077200px;}
.y0_c00175{bottom:0.000000px;}
.y1f_c00175{bottom:44.250000px;}
.y1e_c00175{bottom:86.982000px;}
.y1d_c00175{bottom:119.859000px;}
.y1c_c00175{bottom:136.297500px;}
.y1b_c00175{bottom:152.736000px;}
.y1a_c00175{bottom:169.174500px;}
.y19_c00175{bottom:185.613000px;}
.y18_c00175{bottom:202.051500px;}
.y17_c00175{bottom:218.490000px;}
.y16_c00175{bottom:234.927000px;}
.y15_c00175{bottom:251.365500px;}
.y14_c00175{bottom:267.804000px;}
.y13_c00175{bottom:284.242500px;}
.y12_c00175{bottom:300.681000px;}
.y11_c00175{bottom:333.558000px;}
.y10_c00175{bottom:349.996500px;}
.yf_c00175{bottom:366.435000px;}
.ye_c00175{bottom:399.310500px;}
.yd_c00175{bottom:432.187500px;}
.yc_c00175{bottom:448.252500px;}
.yb_c00175{bottom:495.994500px;}
.ya_c00175{bottom:513.927000px;}
.y9_c00175{bottom:531.859500px;}
.y8_c00175{bottom:549.793500px;}
.y7_c00175{bottom:576.615000px;}
.y6_c00175{bottom:594.547500px;}
.y5_c00175{bottom:621.369000px;}
.y4_c00175{bottom:639.301500px;}
.y3_c00175{bottom:666.123000px;}
.y2_c00175{bottom:692.944500px;}
.y1_c00175{bottom:735.139500px;}
.h6_c00175{height:35.190766px;}
.h7_c00175{height:36.007158px;}
.h3_c00175{height:40.511979px;}
.h5_c00175{height:52.332837px;}
.h2_c00175{height:58.337477px;}
.h4_c00175{height:59.150881px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w0_c00175{width:892.920000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:127.558500px;}
.x2_c00175{left:137.122500px;}
.x3_c00175{left:143.770500px;}
.x4_c00175{left:435.249000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:20.016000pt;}
.ls3_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.078221pt;}
.ls2_c00175{letter-spacing:0.087539pt;}
.ls1_c00175{letter-spacing:0.092873pt;}
.ws7_c00175{word-spacing:-29.967501pt;}
.ws2_c00175{word-spacing:-23.622682pt;}
.ws13_c00175{word-spacing:-23.544461pt;}
.ws8_c00175{word-spacing:-20.977190pt;}
.ws10_c00175{word-spacing:-17.002837pt;}
.ws9_c00175{word-spacing:-16.684034pt;}
.wsc_c00175{word-spacing:-14.027341pt;}
.wsa_c00175{word-spacing:-13.974207pt;}
.ws11_c00175{word-spacing:-13.177199pt;}
.ws5_c00175{word-spacing:-10.626773pt;}
.wsf_c00175{word-spacing:-10.594562pt;}
.ws1_c00175{word-spacing:-8.878599pt;}
.ws3_c00175{word-spacing:-8.877777pt;}
.ws4_c00175{word-spacing:-7.226206pt;}
.wsb_c00175{word-spacing:-2.317538pt;}
.ws16_c00175{word-spacing:0.000000pt;}
.ws14_c00175{word-spacing:0.039110pt;}
.ws18_c00175{word-spacing:0.041141pt;}
.ws17_c00175{word-spacing:0.050460pt;}
.ws1a_c00175{word-spacing:0.065111pt;}
.ws19_c00175{word-spacing:0.065600pt;}
.ws12_c00175{word-spacing:0.156442pt;}
.ws15_c00175{word-spacing:0.195063pt;}
.ws6_c00175{word-spacing:1.047795pt;}
.wse_c00175{word-spacing:12.061388pt;}
.ws0_c00175{word-spacing:38.256533pt;}
.wsd_c00175{word-spacing:48.666539pt;}
._0_c00175{margin-left:-5.661967pt;}
._4_c00175{margin-left:-3.188032pt;}
._5_c00175{margin-left:-0.956410pt;}
._8_c00175{width:0.893988pt;}
._2_c00175{width:2.552899pt;}
._3_c00175{width:23.165973pt;}
._7_c00175{width:28.373485pt;}
._1_c00175{width:29.876798pt;}
._a_c00175{width:47.362694pt;}
._9_c00175{width:70.985376pt;}
._b_c00175{width:94.568947pt;}
._6_c00175{width:104.086290pt;}
.fs3_c00175{font-size:37.193600pt;}
.fs2_c00175{font-size:39.110400pt;}
.fs1_c00175{font-size:53.133867pt;}
.fs0_c00175{font-size:76.513067pt;}
.y0_c00175{bottom:0.000000pt;}
.y1f_c00175{bottom:39.333333pt;}
.y1e_c00175{bottom:77.317333pt;}
.y1d_c00175{bottom:106.541333pt;}
.y1c_c00175{bottom:121.153333pt;}
.y1b_c00175{bottom:135.765333pt;}
.y1a_c00175{bottom:150.377333pt;}
.y19_c00175{bottom:164.989333pt;}
.y18_c00175{bottom:179.601333pt;}
.y17_c00175{bottom:194.213333pt;}
.y16_c00175{bottom:208.824000pt;}
.y15_c00175{bottom:223.436000pt;}
.y14_c00175{bottom:238.048000pt;}
.y13_c00175{bottom:252.660000pt;}
.y12_c00175{bottom:267.272000pt;}
.y11_c00175{bottom:296.496000pt;}
.y10_c00175{bottom:311.108000pt;}
.yf_c00175{bottom:325.720000pt;}
.ye_c00175{bottom:354.942667pt;}
.yd_c00175{bottom:384.166667pt;}
.yc_c00175{bottom:398.446667pt;}
.yb_c00175{bottom:440.884000pt;}
.ya_c00175{bottom:456.824000pt;}
.y9_c00175{bottom:472.764000pt;}
.y8_c00175{bottom:488.705333pt;}
.y7_c00175{bottom:512.546667pt;}
.y6_c00175{bottom:528.486667pt;}
.y5_c00175{bottom:552.328000pt;}
.y4_c00175{bottom:568.268000pt;}
.y3_c00175{bottom:592.109333pt;}
.y2_c00175{bottom:615.950667pt;}
.y1_c00175{bottom:653.457333pt;}
.h6_c00175{height:31.280681pt;}
.h7_c00175{height:32.006363pt;}
.h3_c00175{height:36.010648pt;}
.h5_c00175{height:46.518078pt;}
.h2_c00175{height:51.855535pt;}
.h4_c00175{height:52.578561pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w0_c00175{width:793.706667pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:113.385333pt;}
.x2_c00175{left:121.886667pt;}
.x3_c00175{left:127.796000pt;}
.x4_c00175{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.048828;font-style:normal;font-weight:normal;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_6e9a4cf043ba1a12dd98229f.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.083496;font-style:normal;font-weight:normal;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_7474267ae234d9556c0a022e.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.893555;font-style:normal;font-weight:normal;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_a4c24973f756fd97087b5155.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.102051;font-style:normal;font-weight:normal;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_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.014648;font-style: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;}
.v1_c00176{vertical-align:22.518000px;}
.ls3_c00176{letter-spacing:0.000000px;}
.ls1_c00176{letter-spacing:0.087998px;}
.ls2_c00176{letter-spacing:0.098482px;}
.ls0_c00176{letter-spacing:0.104482px;}
.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;}
}
.wsa_c00176{word-spacing:-33.713438px;}
.ws1_c00176{word-spacing:-26.575517px;}
.ws0_c00176{word-spacing:-26.487518px;}
.wsb_c00176{word-spacing:-23.599339px;}
.wse_c00176{word-spacing:-22.296299px;}
.ws8_c00176{word-spacing:-20.024826px;}
.ws13_c00176{word-spacing:-19.128192px;}
.wsc_c00176{word-spacing:-18.769538px;}
.wsd_c00176{word-spacing:-18.470660px;}
.ws7_c00176{word-spacing:-16.199188px;}
.ws14_c00176{word-spacing:-14.824349px;}
.ws12_c00176{word-spacing:-11.918882px;}
.ws5_c00176{word-spacing:-9.988424px;}
.ws6_c00176{word-spacing:-9.987499px;}
.wsf_c00176{word-spacing:-9.141230px;}
.ws9_c00176{word-spacing:-6.891230px;}
.ws17_c00176{word-spacing:0.000000px;}
.ws2_c00176{word-spacing:0.043999px;}
.ws15_c00176{word-spacing:0.175997px;}
.ws3_c00176{word-spacing:0.213446px;}
.ws16_c00176{word-spacing:0.219446px;}
.ws11_c00176{word-spacing:13.569061px;}
.ws4_c00176{word-spacing:43.038600px;}
.ws10_c00176{word-spacing:54.749856px;}
._1_c00176{margin-left:-6.369713px;}
._5_c00176{margin-left:-3.586536px;}
._6_c00176{margin-left:-1.075961px;}
._0_c00176{width:1.041538px;}
._3_c00176{width:2.860819px;}
._4_c00176{width:18.213260px;}
._2_c00176{width:19.331104px;}
._8_c00176{width:31.920170px;}
._7_c00176{width:117.097076px;}
.fc5_c00176{color:rgb(0,0,207);}
.fc4_c00176{color:rgb(143,89,3);}
.fc3_c00176{color:rgb(79,153,5);}
.fc6_c00176{color:rgb(6,69,173);}
.fc2_c00176{color:rgb(207,92,0);}
.fc1_c00176{color:rgb(0,0,0);}
.fc0_c00176{color:rgb(33,74,135);}
.fs3_c00176{font-size:41.842800px;}
.fs0_c00176{font-size:43.999200px;}
.fs2_c00176{font-size:59.775600px;}
.fs1_c00176{font-size:86.077200px;}
.y0_c00176{bottom:0.000000px;}
.y1f_c00176{bottom:44.250000px;}
.y1e_c00176{bottom:82.051500px;}
.y1d_c00176{bottom:98.490000px;}
.y1c_c00176{bottom:114.927000px;}
.y1b_c00176{bottom:147.804000px;}
.y1a_c00176{bottom:180.681000px;}
.y19_c00176{bottom:196.746000px;}
.y18_c00176{bottom:243.456000px;}
.y17_c00176{bottom:261.388500px;}
.y16_c00176{bottom:279.322500px;}
.y15_c00176{bottom:297.255000px;}
.y14_c00176{bottom:323.904000px;}
.y13_c00176{bottom:341.836500px;}
.y12_c00176{bottom:368.487000px;}
.y11_c00176{bottom:386.419500px;}
.y10_c00176{bottom:413.070000px;}
.yf_c00176{bottom:439.719000px;}
.ye_c00176{bottom:481.741500px;}
.yd_c00176{bottom:946.164000px;}
.yc_c00176{bottom:962.602500px;}
.yb_c00176{bottom:979.041000px;}
.ya_c00176{bottom:995.479500px;}
.y9_c00176{bottom:1011.918000px;}
.y8_c00176{bottom:1028.356500px;}
.y7_c00176{bottom:1044.795000px;}
.y6_c00176{bottom:1061.232000px;}
.y5_c00176{bottom:1077.670500px;}
.y4_c00176{bottom:1094.109000px;}
.y3_c00176{bottom:1110.547500px;}
.y2_c00176{bottom:1143.424500px;}
.y1_c00176{bottom:1159.863000px;}
.h8_c00176{height:35.190766px;}
.h2_c00176{height:36.007158px;}
.h4_c00176{height:40.511979px;}
.h6_c00176{height:52.332837px;}
.h3_c00176{height:58.337477px;}
.h5_c00176{height:59.150881px;}
.h7_c00176{height:59.156881px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w0_c00176{width:892.920000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x3_c00176{left:127.558500px;}
.x1_c00176{left:137.122500px;}
.x2_c00176{left:177.007500px;}
.x4_c00176{left:435.249000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.v1_c00176{vertical-align:20.016000pt;}
.ls3_c00176{letter-spacing:0.000000pt;}
.ls1_c00176{letter-spacing:0.078221pt;}
.ls2_c00176{letter-spacing:0.087539pt;}
.ls0_c00176{letter-spacing:0.092873pt;}
.wsa_c00176{word-spacing:-29.967501pt;}
.ws1_c00176{word-spacing:-23.622682pt;}
.ws0_c00176{word-spacing:-23.544461pt;}
.wsb_c00176{word-spacing:-20.977190pt;}
.wse_c00176{word-spacing:-19.818932pt;}
.ws8_c00176{word-spacing:-17.799845pt;}
.ws13_c00176{word-spacing:-17.002837pt;}
.wsc_c00176{word-spacing:-16.684034pt;}
.wsd_c00176{word-spacing:-16.418365pt;}
.ws7_c00176{word-spacing:-14.399278pt;}
.ws14_c00176{word-spacing:-13.177199pt;}
.ws12_c00176{word-spacing:-10.594562pt;}
.ws5_c00176{word-spacing:-8.878599pt;}
.ws6_c00176{word-spacing:-8.877777pt;}
.wsf_c00176{word-spacing:-8.125538pt;}
.ws9_c00176{word-spacing:-6.125538pt;}
.ws17_c00176{word-spacing:0.000000pt;}
.ws2_c00176{word-spacing:0.039110pt;}
.ws15_c00176{word-spacing:0.156442pt;}
.ws3_c00176{word-spacing:0.189730pt;}
.ws16_c00176{word-spacing:0.195063pt;}
.ws11_c00176{word-spacing:12.061388pt;}
.ws4_c00176{word-spacing:38.256533pt;}
.ws10_c00176{word-spacing:48.666539pt;}
._1_c00176{margin-left:-5.661967pt;}
._5_c00176{margin-left:-3.188032pt;}
._6_c00176{margin-left:-0.956410pt;}
._0_c00176{width:0.925811pt;}
._3_c00176{width:2.542950pt;}
._4_c00176{width:16.189565pt;}
._2_c00176{width:17.183203pt;}
._8_c00176{width:28.373485pt;}
._7_c00176{width:104.086290pt;}
.fs3_c00176{font-size:37.193600pt;}
.fs0_c00176{font-size:39.110400pt;}
.fs2_c00176{font-size:53.133867pt;}
.fs1_c00176{font-size:76.513067pt;}
.y0_c00176{bottom:0.000000pt;}
.y1f_c00176{bottom:39.333333pt;}
.y1e_c00176{bottom:72.934667pt;}
.y1d_c00176{bottom:87.546667pt;}
.y1c_c00176{bottom:102.157333pt;}
.y1b_c00176{bottom:131.381333pt;}
.y1a_c00176{bottom:160.605333pt;}
.y19_c00176{bottom:174.885333pt;}
.y18_c00176{bottom:216.405333pt;}
.y17_c00176{bottom:232.345333pt;}
.y16_c00176{bottom:248.286667pt;}
.y15_c00176{bottom:264.226667pt;}
.y14_c00176{bottom:287.914667pt;}
.y13_c00176{bottom:303.854667pt;}
.y12_c00176{bottom:327.544000pt;}
.y11_c00176{bottom:343.484000pt;}
.y10_c00176{bottom:367.173333pt;}
.yf_c00176{bottom:390.861333pt;}
.ye_c00176{bottom:428.214667pt;}
.yd_c00176{bottom:841.034667pt;}
.yc_c00176{bottom:855.646667pt;}
.yb_c00176{bottom:870.258667pt;}
.ya_c00176{bottom:884.870667pt;}
.y9_c00176{bottom:899.482667pt;}
.y8_c00176{bottom:914.094667pt;}
.y7_c00176{bottom:928.706667pt;}
.y6_c00176{bottom:943.317333pt;}
.y5_c00176{bottom:957.929333pt;}
.y4_c00176{bottom:972.541333pt;}
.y3_c00176{bottom:987.153333pt;}
.y2_c00176{bottom:1016.377333pt;}
.y1_c00176{bottom:1030.989333pt;}
.h8_c00176{height:31.280681pt;}
.h2_c00176{height:32.006363pt;}
.h4_c00176{height:36.010648pt;}
.h6_c00176{height:46.518078pt;}
.h3_c00176{height:51.855535pt;}
.h5_c00176{height:52.578561pt;}
.h7_c00176{height:52.583894pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w0_c00176{width:793.706667pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x3_c00176{left:113.385333pt;}
.x1_c00176{left:121.886667pt;}
.x2_c00176{left:157.340000pt;}
.x4_c00176{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b67bec6c90882749ec081485.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.014648;font-style:normal;font-weight:normal;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_7e1d2e53d61598267ef70333.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:0.893555;font-style:normal;font-weight:normal;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_fae63b8bde6d516c2adbacc9.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.v1_c00177{vertical-align:22.518000px;}
.ls3_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.087998px;}
.ls1_c00177{letter-spacing:0.098482px;}
.ls2_c00177{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00177{word-spacing:-33.713438px;}
.ws1_c00177{word-spacing:-26.575517px;}
.ws8_c00177{word-spacing:-26.487518px;}
.ws11_c00177{word-spacing:-23.599339px;}
.ws17_c00177{word-spacing:-20.921460px;}
.ws15_c00177{word-spacing:-20.861684px;}
.ws13_c00177{word-spacing:-18.769538px;}
.ws14_c00177{word-spacing:-17.095822px;}
.ws12_c00177{word-spacing:-15.302554px;}
.wse_c00177{word-spacing:-15.242778px;}
.wsd_c00177{word-spacing:-11.476915px;}
.wsb_c00177{word-spacing:-9.988424px;}
.wsc_c00177{word-spacing:-9.987499px;}
.ws16_c00177{word-spacing:-7.761230px;}
.wsf_c00177{word-spacing:-2.139230px;}
.ws2_c00177{word-spacing:0.000000px;}
.ws4_c00177{word-spacing:0.043999px;}
.ws5_c00177{word-spacing:0.046284px;}
.ws3_c00177{word-spacing:0.056767px;}
.ws7_c00177{word-spacing:0.073250px;}
.ws6_c00177{word-spacing:0.073800px;}
.ws9_c00177{word-spacing:0.213446px;}
.ws0_c00177{word-spacing:0.219446px;}
.wsa_c00177{word-spacing:43.038600px;}
._4_c00177{margin-left:-6.369713px;}
._3_c00177{width:1.041538px;}
._6_c00177{width:2.653634px;}
._7_c00177{width:18.914422px;}
._5_c00177{width:26.992831px;}
._1_c00177{width:53.283031px;}
._0_c00177{width:79.858548px;}
._2_c00177{width:106.390066px;}
.fc5_c00177{color:rgb(207,92,0);}
.fc4_c00177{color:rgb(0,0,207);}
.fc3_c00177{color:rgb(79,153,5);}
.fc2_c00177{color:rgb(33,74,135);}
.fc1_c00177{color:rgb(143,89,3);}
.fc0_c00177{color:rgb(0,0,0);}
.fs3_c00177{font-size:41.842800px;}
.fs0_c00177{font-size:43.999200px;}
.fs2_c00177{font-size:59.775600px;}
.fs1_c00177{font-size:86.077200px;}
.y0_c00177{bottom:0.000000px;}
.y22_c00177{bottom:44.250000px;}
.y21_c00177{bottom:82.051500px;}
.y20_c00177{bottom:99.984000px;}
.y1f_c00177{bottom:125.949000px;}
.y1e_c00177{bottom:143.881500px;}
.y1d_c00177{bottom:169.846500px;}
.y1c_c00177{bottom:195.811500px;}
.y1b_c00177{bottom:237.148500px;}
.y1a_c00177{bottom:699.589500px;}
.y19_c00177{bottom:716.028000px;}
.y18_c00177{bottom:732.465000px;}
.y17_c00177{bottom:748.903500px;}
.y16_c00177{bottom:765.342000px;}
.y15_c00177{bottom:781.780500px;}
.y14_c00177{bottom:798.219000px;}
.y13_c00177{bottom:814.657500px;}
.y12_c00177{bottom:831.096000px;}
.y11_c00177{bottom:847.534500px;}
.y10_c00177{bottom:863.973000px;}
.yf_c00177{bottom:896.848500px;}
.ye_c00177{bottom:913.287000px;}
.yd_c00177{bottom:929.725500px;}
.yc_c00177{bottom:962.602500px;}
.yb_c00177{bottom:979.041000px;}
.ya_c00177{bottom:995.479500px;}
.y9_c00177{bottom:1011.918000px;}
.y8_c00177{bottom:1028.356500px;}
.y7_c00177{bottom:1044.795000px;}
.y6_c00177{bottom:1061.232000px;}
.y5_c00177{bottom:1077.670500px;}
.y4_c00177{bottom:1094.109000px;}
.y3_c00177{bottom:1110.547500px;}
.y2_c00177{bottom:1126.986000px;}
.y1_c00177{bottom:1143.424500px;}
.h3_c00177{height:35.190766px;}
.h2_c00177{height:36.007158px;}
.h5_c00177{height:40.511979px;}
.h7_c00177{height:52.332837px;}
.h4_c00177{height:58.337477px;}
.h6_c00177{height:59.150881px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w0_c00177{width:892.920000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x4_c00177{left:127.558500px;}
.x1_c00177{left:137.122500px;}
.x2_c00177{left:143.770500px;}
.x3_c00177{left:177.007500px;}
.x5_c00177{left:435.249000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:20.016000pt;}
.ls3_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.078221pt;}
.ls1_c00177{letter-spacing:0.087539pt;}
.ls2_c00177{letter-spacing:0.092873pt;}
.ws10_c00177{word-spacing:-29.967501pt;}
.ws1_c00177{word-spacing:-23.622682pt;}
.ws8_c00177{word-spacing:-23.544461pt;}
.ws11_c00177{word-spacing:-20.977190pt;}
.ws17_c00177{word-spacing:-18.596853pt;}
.ws15_c00177{word-spacing:-18.543719pt;}
.ws13_c00177{word-spacing:-16.684034pt;}
.ws14_c00177{word-spacing:-15.196286pt;}
.ws12_c00177{word-spacing:-13.602270pt;}
.wse_c00177{word-spacing:-13.549136pt;}
.wsd_c00177{word-spacing:-10.201702pt;}
.wsb_c00177{word-spacing:-8.878599pt;}
.wsc_c00177{word-spacing:-8.877777pt;}
.ws16_c00177{word-spacing:-6.898871pt;}
.wsf_c00177{word-spacing:-1.901538pt;}
.ws2_c00177{word-spacing:0.000000pt;}
.ws4_c00177{word-spacing:0.039110pt;}
.ws5_c00177{word-spacing:0.041141pt;}
.ws3_c00177{word-spacing:0.050460pt;}
.ws7_c00177{word-spacing:0.065111pt;}
.ws6_c00177{word-spacing:0.065600pt;}
.ws9_c00177{word-spacing:0.189730pt;}
.ws0_c00177{word-spacing:0.195063pt;}
.wsa_c00177{word-spacing:38.256533pt;}
._4_c00177{margin-left:-5.661967pt;}
._3_c00177{width:0.925811pt;}
._6_c00177{width:2.358786pt;}
._7_c00177{width:16.812819pt;}
._5_c00177{width:23.993628pt;}
._1_c00177{width:47.362694pt;}
._0_c00177{width:70.985376pt;}
._2_c00177{width:94.568947pt;}
.fs3_c00177{font-size:37.193600pt;}
.fs0_c00177{font-size:39.110400pt;}
.fs2_c00177{font-size:53.133867pt;}
.fs1_c00177{font-size:76.513067pt;}
.y0_c00177{bottom:0.000000pt;}
.y22_c00177{bottom:39.333333pt;}
.y21_c00177{bottom:72.934667pt;}
.y20_c00177{bottom:88.874667pt;}
.y1f_c00177{bottom:111.954667pt;}
.y1e_c00177{bottom:127.894667pt;}
.y1d_c00177{bottom:150.974667pt;}
.y1c_c00177{bottom:174.054667pt;}
.y1b_c00177{bottom:210.798667pt;}
.y1a_c00177{bottom:621.857333pt;}
.y19_c00177{bottom:636.469333pt;}
.y18_c00177{bottom:651.080000pt;}
.y17_c00177{bottom:665.692000pt;}
.y16_c00177{bottom:680.304000pt;}
.y15_c00177{bottom:694.916000pt;}
.y14_c00177{bottom:709.528000pt;}
.y13_c00177{bottom:724.140000pt;}
.y12_c00177{bottom:738.752000pt;}
.y11_c00177{bottom:753.364000pt;}
.y10_c00177{bottom:767.976000pt;}
.yf_c00177{bottom:797.198667pt;}
.ye_c00177{bottom:811.810667pt;}
.yd_c00177{bottom:826.422667pt;}
.yc_c00177{bottom:855.646667pt;}
.yb_c00177{bottom:870.258667pt;}
.ya_c00177{bottom:884.870667pt;}
.y9_c00177{bottom:899.482667pt;}
.y8_c00177{bottom:914.094667pt;}
.y7_c00177{bottom:928.706667pt;}
.y6_c00177{bottom:943.317333pt;}
.y5_c00177{bottom:957.929333pt;}
.y4_c00177{bottom:972.541333pt;}
.y3_c00177{bottom:987.153333pt;}
.y2_c00177{bottom:1001.765333pt;}
.y1_c00177{bottom:1016.377333pt;}
.h3_c00177{height:31.280681pt;}
.h2_c00177{height:32.006363pt;}
.h5_c00177{height:36.010648pt;}
.h7_c00177{height:46.518078pt;}
.h4_c00177{height:51.855535pt;}
.h6_c00177{height:52.578561pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w0_c00177{width:793.706667pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x4_c00177{left:113.385333pt;}
.x1_c00177{left:121.886667pt;}
.x2_c00177{left:127.796000pt;}
.x3_c00177{left:157.340000pt;}
.x5_c00177{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:0.893555;font-style:normal;font-weight:normal;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_e732637b0a8ff5459a245702.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.102051;font-style:normal;font-weight:normal;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_214faec062c83124f5c8eda4.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.048828;font-style: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;}
.ls3_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.087998px;}
.ls2_c00178{letter-spacing:0.098482px;}
.ls1_c00178{letter-spacing:0.104482px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00178{word-spacing:-26.575517px;}
.ws8_c00178{word-spacing:-26.487518px;}
.ws4_c00178{word-spacing:-19.128192px;}
.ws6_c00178{word-spacing:-18.769538px;}
.ws5_c00178{word-spacing:-14.824349px;}
.ws3_c00178{word-spacing:-11.918882px;}
.wsb_c00178{word-spacing:0.000000px;}
.ws9_c00178{word-spacing:0.043999px;}
.wsd_c00178{word-spacing:0.046284px;}
.wsc_c00178{word-spacing:0.056767px;}
.wsf_c00178{word-spacing:0.073250px;}
.wse_c00178{word-spacing:0.073800px;}
.ws7_c00178{word-spacing:0.175997px;}
.ws10_c00178{word-spacing:0.213446px;}
.wsa_c00178{word-spacing:0.219446px;}
.ws1_c00178{word-spacing:13.569061px;}
.ws0_c00178{word-spacing:54.749856px;}
._3_c00178{margin-left:-3.825638px;}
._0_c00178{margin-left:-1.075961px;}
._5_c00178{width:1.005737px;}
._4_c00178{width:19.905275px;}
._2_c00178{width:31.920170px;}
._7_c00178{width:53.283031px;}
._6_c00178{width:79.858548px;}
._8_c00178{width:106.390066px;}
._1_c00178{width:117.097076px;}
.fc6_c00178{color:rgb(0,0,207);}
.fc5_c00178{color:rgb(79,153,5);}
.fc3_c00178{color:rgb(33,74,135);}
.fc2_c00178{color:rgb(143,89,3);}
.fc4_c00178{color:rgb(207,92,0);}
.fc1_c00178{color:rgb(6,69,173);}
.fc0_c00178{color:rgb(0,0,0);}
.fs1_c00178{font-size:43.999200px;}
.fs0_c00178{font-size:59.775600px;}
.y0_c00178{bottom:0.000000px;}
.y25_c00178{bottom:44.250000px;}
.y24_c00178{bottom:96.919500px;}
.y23_c00178{bottom:113.358000px;}
.y22_c00178{bottom:129.796500px;}
.y21_c00178{bottom:146.235000px;}
.y20_c00178{bottom:162.673500px;}
.y1f_c00178{bottom:179.112000px;}
.y1e_c00178{bottom:195.550500px;}
.y1d_c00178{bottom:211.989000px;}
.y1c_c00178{bottom:228.427500px;}
.y1b_c00178{bottom:244.866000px;}
.y1a_c00178{bottom:261.304500px;}
.y19_c00178{bottom:294.180000px;}
.y18_c00178{bottom:310.618500px;}
.y17_c00178{bottom:327.057000px;}
.y16_c00178{bottom:359.934000px;}
.y15_c00178{bottom:376.372500px;}
.y14_c00178{bottom:392.811000px;}
.y13_c00178{bottom:409.249500px;}
.y12_c00178{bottom:425.688000px;}
.y11_c00178{bottom:442.125000px;}
.y10_c00178{bottom:458.563500px;}
.yf_c00178{bottom:475.002000px;}
.ye_c00178{bottom:491.440500px;}
.yd_c00178{bottom:507.879000px;}
.yc_c00178{bottom:524.317500px;}
.yb_c00178{bottom:540.756000px;}
.ya_c00178{bottom:573.633000px;}
.y9_c00178{bottom:590.071500px;}
.y8_c00178{bottom:606.508500px;}
.y7_c00178{bottom:639.385500px;}
.y6_c00178{bottom:672.262500px;}
.y5_c00178{bottom:688.327500px;}
.y4_c00178{bottom:1106.064000px;}
.y3_c00178{bottom:1123.998000px;}
.y2_c00178{bottom:1141.930500px;}
.y1_c00178{bottom:1159.863000px;}
.h3_c00178{height:35.190766px;}
.h4_c00178{height:36.007158px;}
.h2_c00178{height:52.332837px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w0_c00178{width:892.920000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:127.558500px;}
.x2_c00178{left:137.122500px;}
.x3_c00178{left:143.770500px;}
.x4_c00178{left:177.007500px;}
.x5_c00178{left:435.249000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls3_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.078221pt;}
.ls2_c00178{letter-spacing:0.087539pt;}
.ls1_c00178{letter-spacing:0.092873pt;}
.ws2_c00178{word-spacing:-23.622682pt;}
.ws8_c00178{word-spacing:-23.544461pt;}
.ws4_c00178{word-spacing:-17.002837pt;}
.ws6_c00178{word-spacing:-16.684034pt;}
.ws5_c00178{word-spacing:-13.177199pt;}
.ws3_c00178{word-spacing:-10.594562pt;}
.wsb_c00178{word-spacing:0.000000pt;}
.ws9_c00178{word-spacing:0.039110pt;}
.wsd_c00178{word-spacing:0.041141pt;}
.wsc_c00178{word-spacing:0.050460pt;}
.wsf_c00178{word-spacing:0.065111pt;}
.wse_c00178{word-spacing:0.065600pt;}
.ws7_c00178{word-spacing:0.156442pt;}
.ws10_c00178{word-spacing:0.189730pt;}
.wsa_c00178{word-spacing:0.195063pt;}
.ws1_c00178{word-spacing:12.061388pt;}
.ws0_c00178{word-spacing:48.666539pt;}
._3_c00178{margin-left:-3.400567pt;}
._0_c00178{margin-left:-0.956410pt;}
._5_c00178{width:0.893988pt;}
._4_c00178{width:17.693578pt;}
._2_c00178{width:28.373485pt;}
._7_c00178{width:47.362694pt;}
._6_c00178{width:70.985376pt;}
._8_c00178{width:94.568947pt;}
._1_c00178{width:104.086290pt;}
.fs1_c00178{font-size:39.110400pt;}
.fs0_c00178{font-size:53.133867pt;}
.y0_c00178{bottom:0.000000pt;}
.y25_c00178{bottom:39.333333pt;}
.y24_c00178{bottom:86.150667pt;}
.y23_c00178{bottom:100.762667pt;}
.y22_c00178{bottom:115.374667pt;}
.y21_c00178{bottom:129.986667pt;}
.y20_c00178{bottom:144.598667pt;}
.y1f_c00178{bottom:159.210667pt;}
.y1e_c00178{bottom:173.822667pt;}
.y1d_c00178{bottom:188.434667pt;}
.y1c_c00178{bottom:203.046667pt;}
.y1b_c00178{bottom:217.658667pt;}
.y1a_c00178{bottom:232.270667pt;}
.y19_c00178{bottom:261.493333pt;}
.y18_c00178{bottom:276.105333pt;}
.y17_c00178{bottom:290.717333pt;}
.y16_c00178{bottom:319.941333pt;}
.y15_c00178{bottom:334.553333pt;}
.y14_c00178{bottom:349.165333pt;}
.y13_c00178{bottom:363.777333pt;}
.y12_c00178{bottom:378.389333pt;}
.y11_c00178{bottom:393.000000pt;}
.y10_c00178{bottom:407.612000pt;}
.yf_c00178{bottom:422.224000pt;}
.ye_c00178{bottom:436.836000pt;}
.yd_c00178{bottom:451.448000pt;}
.yc_c00178{bottom:466.060000pt;}
.yb_c00178{bottom:480.672000pt;}
.ya_c00178{bottom:509.896000pt;}
.y9_c00178{bottom:524.508000pt;}
.y8_c00178{bottom:539.118667pt;}
.y7_c00178{bottom:568.342667pt;}
.y6_c00178{bottom:597.566667pt;}
.y5_c00178{bottom:611.846667pt;}
.y4_c00178{bottom:983.168000pt;}
.y3_c00178{bottom:999.109333pt;}
.y2_c00178{bottom:1015.049333pt;}
.y1_c00178{bottom:1030.989333pt;}
.h3_c00178{height:31.280681pt;}
.h4_c00178{height:32.006363pt;}
.h2_c00178{height:46.518078pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w0_c00178{width:793.706667pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:113.385333pt;}
.x2_c00178{left:121.886667pt;}
.x3_c00178{left:127.796000pt;}
.x4_c00178{left:157.340000pt;}
.x5_c00178{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ac68d5a00c35a480e19aa27.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:0.893555;font-style:normal;font-weight:normal;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_c928633834d7e26abcbd740f.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_cfd8b09cbfe3ee6928d189ef.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.048828;font-style: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;}
.v1_c00179{vertical-align:22.518000px;}
.ls3_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.087998px;}
.ls2_c00179{letter-spacing:0.098482px;}
.ls1_c00179{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00179{word-spacing:-33.713438px;}
.ws2_c00179{word-spacing:-26.575517px;}
.ws13_c00179{word-spacing:-26.487518px;}
.ws8_c00179{word-spacing:-23.599339px;}
.ws10_c00179{word-spacing:-19.128192px;}
.ws9_c00179{word-spacing:-18.769538px;}
.ws11_c00179{word-spacing:-14.824349px;}
.wsf_c00179{word-spacing:-11.918882px;}
.wsb_c00179{word-spacing:-10.281403px;}
.ws1_c00179{word-spacing:-9.988424px;}
.ws3_c00179{word-spacing:-9.987499px;}
.ws5_c00179{word-spacing:-8.966340px;}
.wsa_c00179{word-spacing:-6.455765px;}
.ws4_c00179{word-spacing:-5.200477px;}
.ws16_c00179{word-spacing:0.000000px;}
.ws14_c00179{word-spacing:0.043999px;}
.ws18_c00179{word-spacing:0.046284px;}
.ws17_c00179{word-spacing:0.056767px;}
.ws1a_c00179{word-spacing:0.073250px;}
.ws19_c00179{word-spacing:0.073800px;}
.ws12_c00179{word-spacing:0.175997px;}
.ws15_c00179{word-spacing:0.219446px;}
.wsc_c00179{word-spacing:2.864770px;}
.ws6_c00179{word-spacing:4.148770px;}
.wse_c00179{word-spacing:13.569061px;}
.ws0_c00179{word-spacing:43.038600px;}
.wsd_c00179{word-spacing:54.749856px;}
._0_c00179{margin-left:-6.369713px;}
._4_c00179{margin-left:-3.586536px;}
._5_c00179{margin-left:-1.075961px;}
._8_c00179{width:1.005737px;}
._2_c00179{width:2.689825px;}
._7_c00179{width:31.920170px;}
._3_c00179{width:36.978365px;}
._1_c00179{width:39.568393px;}
._a_c00179{width:53.283031px;}
._9_c00179{width:79.858548px;}
._b_c00179{width:106.390066px;}
._6_c00179{width:117.097076px;}
.fc6_c00179{color:rgb(0,0,207);}
.fc5_c00179{color:rgb(79,153,5);}
.fc3_c00179{color:rgb(33,74,135);}
.fc2_c00179{color:rgb(143,89,3);}
.fc4_c00179{color:rgb(207,92,0);}
.fc1_c00179{color:rgb(6,69,173);}
.fc0_c00179{color:rgb(0,0,0);}
.fs3_c00179{font-size:41.842800px;}
.fs2_c00179{font-size:43.999200px;}
.fs1_c00179{font-size:59.775600px;}
.fs0_c00179{font-size:86.077200px;}
.y0_c00179{bottom:0.000000px;}
.y1f_c00179{bottom:44.250000px;}
.y1e_c00179{bottom:86.982000px;}
.y1d_c00179{bottom:119.859000px;}
.y1c_c00179{bottom:136.297500px;}
.y1b_c00179{bottom:152.736000px;}
.y1a_c00179{bottom:169.174500px;}
.y19_c00179{bottom:185.613000px;}
.y18_c00179{bottom:202.051500px;}
.y17_c00179{bottom:218.490000px;}
.y16_c00179{bottom:234.927000px;}
.y15_c00179{bottom:251.365500px;}
.y14_c00179{bottom:267.804000px;}
.y13_c00179{bottom:284.242500px;}
.y12_c00179{bottom:300.681000px;}
.y11_c00179{bottom:333.558000px;}
.y10_c00179{bottom:349.996500px;}
.yf_c00179{bottom:366.435000px;}
.ye_c00179{bottom:399.310500px;}
.yd_c00179{bottom:432.187500px;}
.yc_c00179{bottom:448.252500px;}
.yb_c00179{bottom:495.994500px;}
.ya_c00179{bottom:513.927000px;}
.y9_c00179{bottom:531.859500px;}
.y8_c00179{bottom:549.793500px;}
.y7_c00179{bottom:576.615000px;}
.y6_c00179{bottom:594.547500px;}
.y5_c00179{bottom:621.369000px;}
.y4_c00179{bottom:639.301500px;}
.y3_c00179{bottom:666.123000px;}
.y2_c00179{bottom:692.944500px;}
.y1_c00179{bottom:735.139500px;}
.h6_c00179{height:35.190766px;}
.h7_c00179{height:36.007158px;}
.h3_c00179{height:40.511979px;}
.h5_c00179{height:52.332837px;}
.h2_c00179{height:58.337477px;}
.h4_c00179{height:59.150881px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w0_c00179{width:892.920000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:127.558500px;}
.x2_c00179{left:137.122500px;}
.x3_c00179{left:143.770500px;}
.x4_c00179{left:435.249000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:20.016000pt;}
.ls3_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.078221pt;}
.ls2_c00179{letter-spacing:0.087539pt;}
.ls1_c00179{letter-spacing:0.092873pt;}
.ws7_c00179{word-spacing:-29.967501pt;}
.ws2_c00179{word-spacing:-23.622682pt;}
.ws13_c00179{word-spacing:-23.544461pt;}
.ws8_c00179{word-spacing:-20.977190pt;}
.ws10_c00179{word-spacing:-17.002837pt;}
.ws9_c00179{word-spacing:-16.684034pt;}
.ws11_c00179{word-spacing:-13.177199pt;}
.wsf_c00179{word-spacing:-10.594562pt;}
.wsb_c00179{word-spacing:-9.139025pt;}
.ws1_c00179{word-spacing:-8.878599pt;}
.ws3_c00179{word-spacing:-8.877777pt;}
.ws5_c00179{word-spacing:-7.970080pt;}
.wsa_c00179{word-spacing:-5.738458pt;}
.ws4_c00179{word-spacing:-4.622646pt;}
.ws16_c00179{word-spacing:0.000000pt;}
.ws14_c00179{word-spacing:0.039110pt;}
.ws18_c00179{word-spacing:0.041141pt;}
.ws17_c00179{word-spacing:0.050460pt;}
.ws1a_c00179{word-spacing:0.065111pt;}
.ws19_c00179{word-spacing:0.065600pt;}
.ws12_c00179{word-spacing:0.156442pt;}
.ws15_c00179{word-spacing:0.195063pt;}
.wsc_c00179{word-spacing:2.546462pt;}
.ws6_c00179{word-spacing:3.687795pt;}
.wse_c00179{word-spacing:12.061388pt;}
.ws0_c00179{word-spacing:38.256533pt;}
.wsd_c00179{word-spacing:48.666539pt;}
._0_c00179{margin-left:-5.661967pt;}
._4_c00179{margin-left:-3.188032pt;}
._5_c00179{margin-left:-0.956410pt;}
._8_c00179{width:0.893988pt;}
._2_c00179{width:2.390956pt;}
._7_c00179{width:28.373485pt;}
._3_c00179{width:32.869658pt;}
._1_c00179{width:35.171905pt;}
._a_c00179{width:47.362694pt;}
._9_c00179{width:70.985376pt;}
._b_c00179{width:94.568947pt;}
._6_c00179{width:104.086290pt;}
.fs3_c00179{font-size:37.193600pt;}
.fs2_c00179{font-size:39.110400pt;}
.fs1_c00179{font-size:53.133867pt;}
.fs0_c00179{font-size:76.513067pt;}
.y0_c00179{bottom:0.000000pt;}
.y1f_c00179{bottom:39.333333pt;}
.y1e_c00179{bottom:77.317333pt;}
.y1d_c00179{bottom:106.541333pt;}
.y1c_c00179{bottom:121.153333pt;}
.y1b_c00179{bottom:135.765333pt;}
.y1a_c00179{bottom:150.377333pt;}
.y19_c00179{bottom:164.989333pt;}
.y18_c00179{bottom:179.601333pt;}
.y17_c00179{bottom:194.213333pt;}
.y16_c00179{bottom:208.824000pt;}
.y15_c00179{bottom:223.436000pt;}
.y14_c00179{bottom:238.048000pt;}
.y13_c00179{bottom:252.660000pt;}
.y12_c00179{bottom:267.272000pt;}
.y11_c00179{bottom:296.496000pt;}
.y10_c00179{bottom:311.108000pt;}
.yf_c00179{bottom:325.720000pt;}
.ye_c00179{bottom:354.942667pt;}
.yd_c00179{bottom:384.166667pt;}
.yc_c00179{bottom:398.446667pt;}
.yb_c00179{bottom:440.884000pt;}
.ya_c00179{bottom:456.824000pt;}
.y9_c00179{bottom:472.764000pt;}
.y8_c00179{bottom:488.705333pt;}
.y7_c00179{bottom:512.546667pt;}
.y6_c00179{bottom:528.486667pt;}
.y5_c00179{bottom:552.328000pt;}
.y4_c00179{bottom:568.268000pt;}
.y3_c00179{bottom:592.109333pt;}
.y2_c00179{bottom:615.950667pt;}
.y1_c00179{bottom:653.457333pt;}
.h6_c00179{height:31.280681pt;}
.h7_c00179{height:32.006363pt;}
.h3_c00179{height:36.010648pt;}
.h5_c00179{height:46.518078pt;}
.h2_c00179{height:51.855535pt;}
.h4_c00179{height:52.578561pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w0_c00179{width:793.706667pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:113.385333pt;}
.x2_c00179{left:121.886667pt;}
.x3_c00179{left:127.796000pt;}
.x4_c00179{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.048828;font-style:normal;font-weight:normal;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_1eea0635178a8ec6cce128e2.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.083496;font-style:normal;font-weight:normal;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_8f91b1f36b679f5ce11b6089.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.893555;font-style:normal;font-weight:normal;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_cfd8b09cbfe3ee6928d189ef.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.014648;font-style: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;}
.v1_c00180{vertical-align:22.518000px;}
.ls4_c00180{letter-spacing:0.000000px;}
.ls3_c00180{letter-spacing:0.004200px;}
.ls1_c00180{letter-spacing:0.087998px;}
.ls2_c00180{letter-spacing:0.098482px;}
.ls0_c00180{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00180{word-spacing:-26.487518px;}
.wsa_c00180{word-spacing:-23.599339px;}
.wsd_c00180{word-spacing:-21.399665px;}
.ws8_c00180{word-spacing:-19.307519px;}
.ws12_c00180{word-spacing:-19.128192px;}
.wsb_c00180{word-spacing:-18.769538px;}
.wsc_c00180{word-spacing:-17.574026px;}
.ws7_c00180{word-spacing:-15.481880px;}
.ws13_c00180{word-spacing:-14.824349px;}
.ws11_c00180{word-spacing:-11.918882px;}
.ws5_c00180{word-spacing:-9.988424px;}
.ws6_c00180{word-spacing:-9.987499px;}
.wse_c00180{word-spacing:-8.259230px;}
.ws9_c00180{word-spacing:-6.165230px;}
.ws16_c00180{word-spacing:0.000000px;}
.ws2_c00180{word-spacing:0.043999px;}
.ws14_c00180{word-spacing:0.175997px;}
.ws3_c00180{word-spacing:0.213446px;}
.ws15_c00180{word-spacing:0.219446px;}
.ws10_c00180{word-spacing:13.569061px;}
.ws4_c00180{word-spacing:43.038600px;}
.wsf_c00180{word-spacing:54.749856px;}
._1_c00180{margin-left:-6.369713px;}
._5_c00180{margin-left:-3.586536px;}
._6_c00180{margin-left:-1.075961px;}
._0_c00180{width:1.041538px;}
._3_c00180{width:3.068676px;}
._4_c00180{width:18.642626px;}
._2_c00180{width:19.699796px;}
._8_c00180{width:31.920170px;}
._7_c00180{width:117.097076px;}
.fc5_c00180{color:rgb(0,0,207);}
.fc4_c00180{color:rgb(143,89,3);}
.fc3_c00180{color:rgb(79,153,5);}
.fc6_c00180{color:rgb(6,69,173);}
.fc2_c00180{color:rgb(207,92,0);}
.fc1_c00180{color:rgb(0,0,0);}
.fc0_c00180{color:rgb(33,74,135);}
.fs3_c00180{font-size:41.842800px;}
.fs0_c00180{font-size:43.999200px;}
.fs2_c00180{font-size:59.775600px;}
.fs1_c00180{font-size:86.077200px;}
.y0_c00180{bottom:0.000000px;}
.y1f_c00180{bottom:44.250000px;}
.y1e_c00180{bottom:82.051500px;}
.y1d_c00180{bottom:98.490000px;}
.y1c_c00180{bottom:114.927000px;}
.y1b_c00180{bottom:147.804000px;}
.y1a_c00180{bottom:180.681000px;}
.y19_c00180{bottom:196.746000px;}
.y18_c00180{bottom:243.456000px;}
.y17_c00180{bottom:261.388500px;}
.y16_c00180{bottom:279.322500px;}
.y15_c00180{bottom:297.255000px;}
.y14_c00180{bottom:323.904000px;}
.y13_c00180{bottom:341.836500px;}
.y12_c00180{bottom:368.487000px;}
.y11_c00180{bottom:386.419500px;}
.y10_c00180{bottom:413.070000px;}
.yf_c00180{bottom:439.719000px;}
.ye_c00180{bottom:481.741500px;}
.yd_c00180{bottom:946.164000px;}
.yc_c00180{bottom:962.602500px;}
.yb_c00180{bottom:979.041000px;}
.ya_c00180{bottom:995.479500px;}
.y9_c00180{bottom:1011.918000px;}
.y8_c00180{bottom:1028.356500px;}
.y7_c00180{bottom:1044.795000px;}
.y6_c00180{bottom:1061.232000px;}
.y5_c00180{bottom:1077.670500px;}
.y4_c00180{bottom:1094.109000px;}
.y3_c00180{bottom:1110.547500px;}
.y2_c00180{bottom:1143.424500px;}
.y1_c00180{bottom:1159.863000px;}
.h8_c00180{height:35.190766px;}
.h2_c00180{height:36.007158px;}
.h4_c00180{height:40.511979px;}
.h6_c00180{height:52.332837px;}
.h3_c00180{height:58.337477px;}
.h5_c00180{height:59.150881px;}
.h7_c00180{height:59.156881px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w0_c00180{width:892.920000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x3_c00180{left:127.558500px;}
.x1_c00180{left:137.122500px;}
.x2_c00180{left:177.007500px;}
.x4_c00180{left:435.249000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:20.016000pt;}
.ls4_c00180{letter-spacing:0.000000pt;}
.ls3_c00180{letter-spacing:0.003733pt;}
.ls1_c00180{letter-spacing:0.078221pt;}
.ls2_c00180{letter-spacing:0.087539pt;}
.ls0_c00180{letter-spacing:0.092873pt;}
.ws1_c00180{word-spacing:-23.622682pt;}
.ws0_c00180{word-spacing:-23.544461pt;}
.wsa_c00180{word-spacing:-20.977190pt;}
.wsd_c00180{word-spacing:-19.021924pt;}
.ws8_c00180{word-spacing:-17.162239pt;}
.ws12_c00180{word-spacing:-17.002837pt;}
.wsb_c00180{word-spacing:-16.684034pt;}
.wsc_c00180{word-spacing:-15.621357pt;}
.ws7_c00180{word-spacing:-13.761671pt;}
.ws13_c00180{word-spacing:-13.177199pt;}
.ws11_c00180{word-spacing:-10.594562pt;}
.ws5_c00180{word-spacing:-8.878599pt;}
.ws6_c00180{word-spacing:-8.877777pt;}
.wse_c00180{word-spacing:-7.341538pt;}
.ws9_c00180{word-spacing:-5.480205pt;}
.ws16_c00180{word-spacing:0.000000pt;}
.ws2_c00180{word-spacing:0.039110pt;}
.ws14_c00180{word-spacing:0.156442pt;}
.ws3_c00180{word-spacing:0.189730pt;}
.ws15_c00180{word-spacing:0.195063pt;}
.ws10_c00180{word-spacing:12.061388pt;}
.ws4_c00180{word-spacing:38.256533pt;}
.wsf_c00180{word-spacing:48.666539pt;}
._1_c00180{margin-left:-5.661967pt;}
._5_c00180{margin-left:-3.188032pt;}
._6_c00180{margin-left:-0.956410pt;}
._0_c00180{width:0.925811pt;}
._3_c00180{width:2.727712pt;}
._4_c00180{width:16.571223pt;}
._2_c00180{width:17.510930pt;}
._8_c00180{width:28.373485pt;}
._7_c00180{width:104.086290pt;}
.fs3_c00180{font-size:37.193600pt;}
.fs0_c00180{font-size:39.110400pt;}
.fs2_c00180{font-size:53.133867pt;}
.fs1_c00180{font-size:76.513067pt;}
.y0_c00180{bottom:0.000000pt;}
.y1f_c00180{bottom:39.333333pt;}
.y1e_c00180{bottom:72.934667pt;}
.y1d_c00180{bottom:87.546667pt;}
.y1c_c00180{bottom:102.157333pt;}
.y1b_c00180{bottom:131.381333pt;}
.y1a_c00180{bottom:160.605333pt;}
.y19_c00180{bottom:174.885333pt;}
.y18_c00180{bottom:216.405333pt;}
.y17_c00180{bottom:232.345333pt;}
.y16_c00180{bottom:248.286667pt;}
.y15_c00180{bottom:264.226667pt;}
.y14_c00180{bottom:287.914667pt;}
.y13_c00180{bottom:303.854667pt;}
.y12_c00180{bottom:327.544000pt;}
.y11_c00180{bottom:343.484000pt;}
.y10_c00180{bottom:367.173333pt;}
.yf_c00180{bottom:390.861333pt;}
.ye_c00180{bottom:428.214667pt;}
.yd_c00180{bottom:841.034667pt;}
.yc_c00180{bottom:855.646667pt;}
.yb_c00180{bottom:870.258667pt;}
.ya_c00180{bottom:884.870667pt;}
.y9_c00180{bottom:899.482667pt;}
.y8_c00180{bottom:914.094667pt;}
.y7_c00180{bottom:928.706667pt;}
.y6_c00180{bottom:943.317333pt;}
.y5_c00180{bottom:957.929333pt;}
.y4_c00180{bottom:972.541333pt;}
.y3_c00180{bottom:987.153333pt;}
.y2_c00180{bottom:1016.377333pt;}
.y1_c00180{bottom:1030.989333pt;}
.h8_c00180{height:31.280681pt;}
.h2_c00180{height:32.006363pt;}
.h4_c00180{height:36.010648pt;}
.h6_c00180{height:46.518078pt;}
.h3_c00180{height:51.855535pt;}
.h5_c00180{height:52.578561pt;}
.h7_c00180{height:52.583894pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w0_c00180{width:793.706667pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x3_c00180{left:113.385333pt;}
.x1_c00180{left:121.886667pt;}
.x2_c00180{left:157.340000pt;}
.x4_c00180{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c336393844b8ea1d39f434d8.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_aaf58645ddd9220cacdf356b.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_f17d35947bc0759f6e5ff342.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:22.518000px;}
.ls3_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.087998px;}
.ls1_c00181{letter-spacing:0.098482px;}
.ls2_c00181{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00181{word-spacing:-33.713438px;}
.ws1_c00181{word-spacing:-26.575517px;}
.ws8_c00181{word-spacing:-26.487518px;}
.ws11_c00181{word-spacing:-23.599339px;}
.ws13_c00181{word-spacing:-18.769538px;}
.ws12_c00181{word-spacing:-13.987490px;}
.wse_c00181{word-spacing:-13.927715px;}
.wsd_c00181{word-spacing:-10.161852px;}
.wsb_c00181{word-spacing:-9.988424px;}
.wsc_c00181{word-spacing:-9.987499px;}
.ws15_c00181{word-spacing:-7.890379px;}
.ws14_c00181{word-spacing:-4.064741px;}
.wsf_c00181{word-spacing:-0.825230px;}
.ws2_c00181{word-spacing:0.000000px;}
.ws4_c00181{word-spacing:0.043999px;}
.ws5_c00181{word-spacing:0.046284px;}
.ws3_c00181{word-spacing:0.056767px;}
.ws7_c00181{word-spacing:0.073250px;}
.ws6_c00181{word-spacing:0.073800px;}
.ws9_c00181{word-spacing:0.213446px;}
.ws0_c00181{word-spacing:0.219446px;}
.ws16_c00181{word-spacing:5.234770px;}
.wsa_c00181{word-spacing:43.038600px;}
._4_c00181{margin-left:-6.369713px;}
._8_c00181{margin-left:-3.586536px;}
._3_c00181{width:1.041538px;}
._6_c00181{width:2.593604px;}
._5_c00181{width:29.613768px;}
._7_c00181{width:41.703341px;}
._1_c00181{width:53.283031px;}
._0_c00181{width:79.858548px;}
._2_c00181{width:106.390066px;}
.fc5_c00181{color:rgb(207,92,0);}
.fc4_c00181{color:rgb(0,0,207);}
.fc3_c00181{color:rgb(79,153,5);}
.fc2_c00181{color:rgb(33,74,135);}
.fc1_c00181{color:rgb(143,89,3);}
.fc0_c00181{color:rgb(0,0,0);}
.fs3_c00181{font-size:41.842800px;}
.fs0_c00181{font-size:43.999200px;}
.fs2_c00181{font-size:59.775600px;}
.fs1_c00181{font-size:86.077200px;}
.y0_c00181{bottom:0.000000px;}
.y22_c00181{bottom:44.250000px;}
.y21_c00181{bottom:82.051500px;}
.y20_c00181{bottom:99.984000px;}
.y1f_c00181{bottom:125.949000px;}
.y1e_c00181{bottom:143.881500px;}
.y1d_c00181{bottom:169.846500px;}
.y1c_c00181{bottom:195.811500px;}
.y1b_c00181{bottom:237.148500px;}
.y1a_c00181{bottom:699.589500px;}
.y19_c00181{bottom:716.028000px;}
.y18_c00181{bottom:732.465000px;}
.y17_c00181{bottom:748.903500px;}
.y16_c00181{bottom:765.342000px;}
.y15_c00181{bottom:781.780500px;}
.y14_c00181{bottom:798.219000px;}
.y13_c00181{bottom:814.657500px;}
.y12_c00181{bottom:831.096000px;}
.y11_c00181{bottom:847.534500px;}
.y10_c00181{bottom:863.973000px;}
.yf_c00181{bottom:896.848500px;}
.ye_c00181{bottom:913.287000px;}
.yd_c00181{bottom:929.725500px;}
.yc_c00181{bottom:962.602500px;}
.yb_c00181{bottom:979.041000px;}
.ya_c00181{bottom:995.479500px;}
.y9_c00181{bottom:1011.918000px;}
.y8_c00181{bottom:1028.356500px;}
.y7_c00181{bottom:1044.795000px;}
.y6_c00181{bottom:1061.232000px;}
.y5_c00181{bottom:1077.670500px;}
.y4_c00181{bottom:1094.109000px;}
.y3_c00181{bottom:1110.547500px;}
.y2_c00181{bottom:1126.986000px;}
.y1_c00181{bottom:1143.424500px;}
.h3_c00181{height:35.190766px;}
.h2_c00181{height:36.007158px;}
.h5_c00181{height:40.511979px;}
.h7_c00181{height:52.332837px;}
.h4_c00181{height:58.337477px;}
.h6_c00181{height:59.150881px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w0_c00181{width:892.920000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x4_c00181{left:127.558500px;}
.x1_c00181{left:137.122500px;}
.x2_c00181{left:143.770500px;}
.x3_c00181{left:177.007500px;}
.x5_c00181{left:435.249000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:20.016000pt;}
.ls3_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.078221pt;}
.ls1_c00181{letter-spacing:0.087539pt;}
.ls2_c00181{letter-spacing:0.092873pt;}
.ws10_c00181{word-spacing:-29.967501pt;}
.ws1_c00181{word-spacing:-23.622682pt;}
.ws8_c00181{word-spacing:-23.544461pt;}
.ws11_c00181{word-spacing:-20.977190pt;}
.ws13_c00181{word-spacing:-16.684034pt;}
.ws12_c00181{word-spacing:-12.433325pt;}
.wse_c00181{word-spacing:-12.380191pt;}
.wsd_c00181{word-spacing:-9.032757pt;}
.wsb_c00181{word-spacing:-8.878599pt;}
.wsc_c00181{word-spacing:-8.877777pt;}
.ws15_c00181{word-spacing:-7.013670pt;}
.ws14_c00181{word-spacing:-3.613103pt;}
.wsf_c00181{word-spacing:-0.733538pt;}
.ws2_c00181{word-spacing:0.000000pt;}
.ws4_c00181{word-spacing:0.039110pt;}
.ws5_c00181{word-spacing:0.041141pt;}
.ws3_c00181{word-spacing:0.050460pt;}
.ws7_c00181{word-spacing:0.065111pt;}
.ws6_c00181{word-spacing:0.065600pt;}
.ws9_c00181{word-spacing:0.189730pt;}
.ws0_c00181{word-spacing:0.195063pt;}
.ws16_c00181{word-spacing:4.653129pt;}
.wsa_c00181{word-spacing:38.256533pt;}
._4_c00181{margin-left:-5.661967pt;}
._8_c00181{margin-left:-3.188032pt;}
._3_c00181{width:0.925811pt;}
._6_c00181{width:2.305426pt;}
._5_c00181{width:26.323349pt;}
._7_c00181{width:37.069636pt;}
._1_c00181{width:47.362694pt;}
._0_c00181{width:70.985376pt;}
._2_c00181{width:94.568947pt;}
.fs3_c00181{font-size:37.193600pt;}
.fs0_c00181{font-size:39.110400pt;}
.fs2_c00181{font-size:53.133867pt;}
.fs1_c00181{font-size:76.513067pt;}
.y0_c00181{bottom:0.000000pt;}
.y22_c00181{bottom:39.333333pt;}
.y21_c00181{bottom:72.934667pt;}
.y20_c00181{bottom:88.874667pt;}
.y1f_c00181{bottom:111.954667pt;}
.y1e_c00181{bottom:127.894667pt;}
.y1d_c00181{bottom:150.974667pt;}
.y1c_c00181{bottom:174.054667pt;}
.y1b_c00181{bottom:210.798667pt;}
.y1a_c00181{bottom:621.857333pt;}
.y19_c00181{bottom:636.469333pt;}
.y18_c00181{bottom:651.080000pt;}
.y17_c00181{bottom:665.692000pt;}
.y16_c00181{bottom:680.304000pt;}
.y15_c00181{bottom:694.916000pt;}
.y14_c00181{bottom:709.528000pt;}
.y13_c00181{bottom:724.140000pt;}
.y12_c00181{bottom:738.752000pt;}
.y11_c00181{bottom:753.364000pt;}
.y10_c00181{bottom:767.976000pt;}
.yf_c00181{bottom:797.198667pt;}
.ye_c00181{bottom:811.810667pt;}
.yd_c00181{bottom:826.422667pt;}
.yc_c00181{bottom:855.646667pt;}
.yb_c00181{bottom:870.258667pt;}
.ya_c00181{bottom:884.870667pt;}
.y9_c00181{bottom:899.482667pt;}
.y8_c00181{bottom:914.094667pt;}
.y7_c00181{bottom:928.706667pt;}
.y6_c00181{bottom:943.317333pt;}
.y5_c00181{bottom:957.929333pt;}
.y4_c00181{bottom:972.541333pt;}
.y3_c00181{bottom:987.153333pt;}
.y2_c00181{bottom:1001.765333pt;}
.y1_c00181{bottom:1016.377333pt;}
.h3_c00181{height:31.280681pt;}
.h2_c00181{height:32.006363pt;}
.h5_c00181{height:36.010648pt;}
.h7_c00181{height:46.518078pt;}
.h4_c00181{height:51.855535pt;}
.h6_c00181{height:52.578561pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w0_c00181{width:793.706667pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x4_c00181{left:113.385333pt;}
.x1_c00181{left:121.886667pt;}
.x2_c00181{left:127.796000pt;}
.x3_c00181{left:157.340000pt;}
.x5_c00181{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:0.893555;font-style:normal;font-weight:normal;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_fae9d1bdcfbd1162a1a0b03e.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.102051;font-style:normal;font-weight:normal;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_e7841681ab9f4611ef928492.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.048828;font-style: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;}
.ls3_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.087998px;}
.ls2_c00182{letter-spacing:0.098482px;}
.ls1_c00182{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00182{word-spacing:-26.575517px;}
.ws8_c00182{word-spacing:-26.487518px;}
.ws4_c00182{word-spacing:-19.128192px;}
.ws6_c00182{word-spacing:-18.769538px;}
.ws5_c00182{word-spacing:-14.824349px;}
.ws3_c00182{word-spacing:-11.918882px;}
.wsb_c00182{word-spacing:0.000000px;}
.ws9_c00182{word-spacing:0.043999px;}
.wsd_c00182{word-spacing:0.046284px;}
.wsc_c00182{word-spacing:0.056767px;}
.wsf_c00182{word-spacing:0.073250px;}
.wse_c00182{word-spacing:0.073800px;}
.ws7_c00182{word-spacing:0.175997px;}
.ws10_c00182{word-spacing:0.213446px;}
.wsa_c00182{word-spacing:0.219446px;}
.ws1_c00182{word-spacing:13.569061px;}
.ws0_c00182{word-spacing:54.749856px;}
._3_c00182{margin-left:-3.825638px;}
._0_c00182{margin-left:-1.075961px;}
._5_c00182{width:1.005737px;}
._4_c00182{width:19.905275px;}
._2_c00182{width:31.920170px;}
._7_c00182{width:53.283031px;}
._6_c00182{width:79.858548px;}
._8_c00182{width:106.390066px;}
._1_c00182{width:117.097076px;}
.fc6_c00182{color:rgb(0,0,207);}
.fc5_c00182{color:rgb(79,153,5);}
.fc3_c00182{color:rgb(33,74,135);}
.fc2_c00182{color:rgb(143,89,3);}
.fc4_c00182{color:rgb(207,92,0);}
.fc1_c00182{color:rgb(6,69,173);}
.fc0_c00182{color:rgb(0,0,0);}
.fs1_c00182{font-size:43.999200px;}
.fs0_c00182{font-size:59.775600px;}
.y0_c00182{bottom:0.000000px;}
.y25_c00182{bottom:44.250000px;}
.y24_c00182{bottom:96.919500px;}
.y23_c00182{bottom:113.358000px;}
.y22_c00182{bottom:129.796500px;}
.y21_c00182{bottom:146.235000px;}
.y20_c00182{bottom:162.673500px;}
.y1f_c00182{bottom:179.112000px;}
.y1e_c00182{bottom:195.550500px;}
.y1d_c00182{bottom:211.989000px;}
.y1c_c00182{bottom:228.427500px;}
.y1b_c00182{bottom:244.866000px;}
.y1a_c00182{bottom:261.304500px;}
.y19_c00182{bottom:294.180000px;}
.y18_c00182{bottom:310.618500px;}
.y17_c00182{bottom:327.057000px;}
.y16_c00182{bottom:359.934000px;}
.y15_c00182{bottom:376.372500px;}
.y14_c00182{bottom:392.811000px;}
.y13_c00182{bottom:409.249500px;}
.y12_c00182{bottom:425.688000px;}
.y11_c00182{bottom:442.125000px;}
.y10_c00182{bottom:458.563500px;}
.yf_c00182{bottom:475.002000px;}
.ye_c00182{bottom:491.440500px;}
.yd_c00182{bottom:507.879000px;}
.yc_c00182{bottom:524.317500px;}
.yb_c00182{bottom:540.756000px;}
.ya_c00182{bottom:573.633000px;}
.y9_c00182{bottom:590.071500px;}
.y8_c00182{bottom:606.508500px;}
.y7_c00182{bottom:639.385500px;}
.y6_c00182{bottom:672.262500px;}
.y5_c00182{bottom:688.327500px;}
.y4_c00182{bottom:1106.064000px;}
.y3_c00182{bottom:1123.998000px;}
.y2_c00182{bottom:1141.930500px;}
.y1_c00182{bottom:1159.863000px;}
.h3_c00182{height:35.190766px;}
.h4_c00182{height:36.007158px;}
.h2_c00182{height:52.332837px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w0_c00182{width:892.920000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:127.558500px;}
.x2_c00182{left:137.122500px;}
.x3_c00182{left:143.770500px;}
.x4_c00182{left:177.007500px;}
.x5_c00182{left:435.249000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls3_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.078221pt;}
.ls2_c00182{letter-spacing:0.087539pt;}
.ls1_c00182{letter-spacing:0.092873pt;}
.ws2_c00182{word-spacing:-23.622682pt;}
.ws8_c00182{word-spacing:-23.544461pt;}
.ws4_c00182{word-spacing:-17.002837pt;}
.ws6_c00182{word-spacing:-16.684034pt;}
.ws5_c00182{word-spacing:-13.177199pt;}
.ws3_c00182{word-spacing:-10.594562pt;}
.wsb_c00182{word-spacing:0.000000pt;}
.ws9_c00182{word-spacing:0.039110pt;}
.wsd_c00182{word-spacing:0.041141pt;}
.wsc_c00182{word-spacing:0.050460pt;}
.wsf_c00182{word-spacing:0.065111pt;}
.wse_c00182{word-spacing:0.065600pt;}
.ws7_c00182{word-spacing:0.156442pt;}
.ws10_c00182{word-spacing:0.189730pt;}
.wsa_c00182{word-spacing:0.195063pt;}
.ws1_c00182{word-spacing:12.061388pt;}
.ws0_c00182{word-spacing:48.666539pt;}
._3_c00182{margin-left:-3.400567pt;}
._0_c00182{margin-left:-0.956410pt;}
._5_c00182{width:0.893988pt;}
._4_c00182{width:17.693578pt;}
._2_c00182{width:28.373485pt;}
._7_c00182{width:47.362694pt;}
._6_c00182{width:70.985376pt;}
._8_c00182{width:94.568947pt;}
._1_c00182{width:104.086290pt;}
.fs1_c00182{font-size:39.110400pt;}
.fs0_c00182{font-size:53.133867pt;}
.y0_c00182{bottom:0.000000pt;}
.y25_c00182{bottom:39.333333pt;}
.y24_c00182{bottom:86.150667pt;}
.y23_c00182{bottom:100.762667pt;}
.y22_c00182{bottom:115.374667pt;}
.y21_c00182{bottom:129.986667pt;}
.y20_c00182{bottom:144.598667pt;}
.y1f_c00182{bottom:159.210667pt;}
.y1e_c00182{bottom:173.822667pt;}
.y1d_c00182{bottom:188.434667pt;}
.y1c_c00182{bottom:203.046667pt;}
.y1b_c00182{bottom:217.658667pt;}
.y1a_c00182{bottom:232.270667pt;}
.y19_c00182{bottom:261.493333pt;}
.y18_c00182{bottom:276.105333pt;}
.y17_c00182{bottom:290.717333pt;}
.y16_c00182{bottom:319.941333pt;}
.y15_c00182{bottom:334.553333pt;}
.y14_c00182{bottom:349.165333pt;}
.y13_c00182{bottom:363.777333pt;}
.y12_c00182{bottom:378.389333pt;}
.y11_c00182{bottom:393.000000pt;}
.y10_c00182{bottom:407.612000pt;}
.yf_c00182{bottom:422.224000pt;}
.ye_c00182{bottom:436.836000pt;}
.yd_c00182{bottom:451.448000pt;}
.yc_c00182{bottom:466.060000pt;}
.yb_c00182{bottom:480.672000pt;}
.ya_c00182{bottom:509.896000pt;}
.y9_c00182{bottom:524.508000pt;}
.y8_c00182{bottom:539.118667pt;}
.y7_c00182{bottom:568.342667pt;}
.y6_c00182{bottom:597.566667pt;}
.y5_c00182{bottom:611.846667pt;}
.y4_c00182{bottom:983.168000pt;}
.y3_c00182{bottom:999.109333pt;}
.y2_c00182{bottom:1015.049333pt;}
.y1_c00182{bottom:1030.989333pt;}
.h3_c00182{height:31.280681pt;}
.h4_c00182{height:32.006363pt;}
.h2_c00182{height:46.518078pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w0_c00182{width:793.706667pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:113.385333pt;}
.x2_c00182{left:121.886667pt;}
.x3_c00182{left:127.796000pt;}
.x4_c00182{left:157.340000pt;}
.x5_c00182{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d9f4f15d4c5b8aaa9aa277a.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:0.893555;font-style:normal;font-weight:normal;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_b2f6e580e65b56b142dd63a7.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.083496;font-style:normal;font-weight:normal;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_095a4784fe508b339d29ce0f.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.048828;font-style: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;}
.v1_c00183{vertical-align:22.518000px;}
.ls4_c00183{letter-spacing:0.000000px;}
.ls1_c00183{letter-spacing:0.004200px;}
.ls0_c00183{letter-spacing:0.087998px;}
.ls3_c00183{letter-spacing:0.098482px;}
.ls2_c00183{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00183{word-spacing:-33.713438px;}
.ws2_c00183{word-spacing:-26.575517px;}
.ws12_c00183{word-spacing:-26.487518px;}
.ws8_c00183{word-spacing:-23.599339px;}
.wsf_c00183{word-spacing:-19.128192px;}
.ws9_c00183{word-spacing:-18.769538px;}
.wsb_c00183{word-spacing:-15.422105px;}
.ws10_c00183{word-spacing:-14.824349px;}
.wse_c00183{word-spacing:-11.918882px;}
.wsa_c00183{word-spacing:-11.596466px;}
.ws1_c00183{word-spacing:-9.988424px;}
.ws3_c00183{word-spacing:-9.987499px;}
.ws5_c00183{word-spacing:-9.265218px;}
.ws4_c00183{word-spacing:-5.499355px;}
.ws15_c00183{word-spacing:0.000000px;}
.ws13_c00183{word-spacing:0.043999px;}
.ws17_c00183{word-spacing:0.046284px;}
.ws16_c00183{word-spacing:0.056767px;}
.ws19_c00183{word-spacing:0.073250px;}
.ws18_c00183{word-spacing:0.073800px;}
.ws11_c00183{word-spacing:0.175997px;}
.ws14_c00183{word-spacing:0.219446px;}
.ws6_c00183{word-spacing:3.854770px;}
.wsd_c00183{word-spacing:13.569061px;}
.ws0_c00183{word-spacing:43.038600px;}
.wsc_c00183{word-spacing:54.749856px;}
._0_c00183{margin-left:-6.369713px;}
._7_c00183{margin-left:-3.825638px;}
._4_c00183{margin-left:-1.075961px;}
._9_c00183{width:1.005737px;}
._2_c00183{width:2.777864px;}
._8_c00183{width:19.905275px;}
._3_c00183{width:26.621066px;}
._6_c00183{width:31.920170px;}
._1_c00183{width:38.997271px;}
._b_c00183{width:53.283031px;}
._a_c00183{width:79.858548px;}
._c_c00183{width:106.390066px;}
._5_c00183{width:117.097076px;}
.fc6_c00183{color:rgb(0,0,207);}
.fc5_c00183{color:rgb(79,153,5);}
.fc3_c00183{color:rgb(33,74,135);}
.fc2_c00183{color:rgb(143,89,3);}
.fc4_c00183{color:rgb(207,92,0);}
.fc1_c00183{color:rgb(6,69,173);}
.fc0_c00183{color:rgb(0,0,0);}
.fs3_c00183{font-size:41.842800px;}
.fs2_c00183{font-size:43.999200px;}
.fs1_c00183{font-size:59.775600px;}
.fs0_c00183{font-size:86.077200px;}
.y0_c00183{bottom:0.000000px;}
.y1f_c00183{bottom:44.250000px;}
.y1e_c00183{bottom:86.982000px;}
.y1d_c00183{bottom:119.859000px;}
.y1c_c00183{bottom:136.297500px;}
.y1b_c00183{bottom:152.736000px;}
.y1a_c00183{bottom:169.174500px;}
.y19_c00183{bottom:185.613000px;}
.y18_c00183{bottom:202.051500px;}
.y17_c00183{bottom:218.490000px;}
.y16_c00183{bottom:234.927000px;}
.y15_c00183{bottom:251.365500px;}
.y14_c00183{bottom:267.804000px;}
.y13_c00183{bottom:284.242500px;}
.y12_c00183{bottom:300.681000px;}
.y11_c00183{bottom:333.558000px;}
.y10_c00183{bottom:349.996500px;}
.yf_c00183{bottom:366.435000px;}
.ye_c00183{bottom:399.310500px;}
.yd_c00183{bottom:432.187500px;}
.yc_c00183{bottom:448.252500px;}
.yb_c00183{bottom:495.994500px;}
.ya_c00183{bottom:513.927000px;}
.y9_c00183{bottom:531.859500px;}
.y8_c00183{bottom:549.793500px;}
.y7_c00183{bottom:576.615000px;}
.y6_c00183{bottom:594.547500px;}
.y5_c00183{bottom:621.369000px;}
.y4_c00183{bottom:639.301500px;}
.y3_c00183{bottom:666.123000px;}
.y2_c00183{bottom:692.944500px;}
.y1_c00183{bottom:735.139500px;}
.h6_c00183{height:35.190766px;}
.h7_c00183{height:36.007158px;}
.h3_c00183{height:40.511979px;}
.h5_c00183{height:52.332837px;}
.h2_c00183{height:58.337477px;}
.h4_c00183{height:59.150881px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w0_c00183{width:892.920000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:127.558500px;}
.x2_c00183{left:137.122500px;}
.x3_c00183{left:143.770500px;}
.x4_c00183{left:435.249000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:20.016000pt;}
.ls4_c00183{letter-spacing:0.000000pt;}
.ls1_c00183{letter-spacing:0.003733pt;}
.ls0_c00183{letter-spacing:0.078221pt;}
.ls3_c00183{letter-spacing:0.087539pt;}
.ls2_c00183{letter-spacing:0.092873pt;}
.ws7_c00183{word-spacing:-29.967501pt;}
.ws2_c00183{word-spacing:-23.622682pt;}
.ws12_c00183{word-spacing:-23.544461pt;}
.ws8_c00183{word-spacing:-20.977190pt;}
.wsf_c00183{word-spacing:-17.002837pt;}
.ws9_c00183{word-spacing:-16.684034pt;}
.wsb_c00183{word-spacing:-13.708538pt;}
.ws10_c00183{word-spacing:-13.177199pt;}
.wse_c00183{word-spacing:-10.594562pt;}
.wsa_c00183{word-spacing:-10.307970pt;}
.ws1_c00183{word-spacing:-8.878599pt;}
.ws3_c00183{word-spacing:-8.877777pt;}
.ws5_c00183{word-spacing:-8.235749pt;}
.ws4_c00183{word-spacing:-4.888316pt;}
.ws15_c00183{word-spacing:0.000000pt;}
.ws13_c00183{word-spacing:0.039110pt;}
.ws17_c00183{word-spacing:0.041141pt;}
.ws16_c00183{word-spacing:0.050460pt;}
.ws19_c00183{word-spacing:0.065111pt;}
.ws18_c00183{word-spacing:0.065600pt;}
.ws11_c00183{word-spacing:0.156442pt;}
.ws14_c00183{word-spacing:0.195063pt;}
.ws6_c00183{word-spacing:3.426462pt;}
.wsd_c00183{word-spacing:12.061388pt;}
.ws0_c00183{word-spacing:38.256533pt;}
.wsc_c00183{word-spacing:48.666539pt;}
._0_c00183{margin-left:-5.661967pt;}
._7_c00183{margin-left:-3.400567pt;}
._4_c00183{margin-left:-0.956410pt;}
._9_c00183{width:0.893988pt;}
._2_c00183{width:2.469213pt;}
._8_c00183{width:17.693578pt;}
._3_c00183{width:23.663170pt;}
._6_c00183{width:28.373485pt;}
._1_c00183{width:34.664241pt;}
._b_c00183{width:47.362694pt;}
._a_c00183{width:70.985376pt;}
._c_c00183{width:94.568947pt;}
._5_c00183{width:104.086290pt;}
.fs3_c00183{font-size:37.193600pt;}
.fs2_c00183{font-size:39.110400pt;}
.fs1_c00183{font-size:53.133867pt;}
.fs0_c00183{font-size:76.513067pt;}
.y0_c00183{bottom:0.000000pt;}
.y1f_c00183{bottom:39.333333pt;}
.y1e_c00183{bottom:77.317333pt;}
.y1d_c00183{bottom:106.541333pt;}
.y1c_c00183{bottom:121.153333pt;}
.y1b_c00183{bottom:135.765333pt;}
.y1a_c00183{bottom:150.377333pt;}
.y19_c00183{bottom:164.989333pt;}
.y18_c00183{bottom:179.601333pt;}
.y17_c00183{bottom:194.213333pt;}
.y16_c00183{bottom:208.824000pt;}
.y15_c00183{bottom:223.436000pt;}
.y14_c00183{bottom:238.048000pt;}
.y13_c00183{bottom:252.660000pt;}
.y12_c00183{bottom:267.272000pt;}
.y11_c00183{bottom:296.496000pt;}
.y10_c00183{bottom:311.108000pt;}
.yf_c00183{bottom:325.720000pt;}
.ye_c00183{bottom:354.942667pt;}
.yd_c00183{bottom:384.166667pt;}
.yc_c00183{bottom:398.446667pt;}
.yb_c00183{bottom:440.884000pt;}
.ya_c00183{bottom:456.824000pt;}
.y9_c00183{bottom:472.764000pt;}
.y8_c00183{bottom:488.705333pt;}
.y7_c00183{bottom:512.546667pt;}
.y6_c00183{bottom:528.486667pt;}
.y5_c00183{bottom:552.328000pt;}
.y4_c00183{bottom:568.268000pt;}
.y3_c00183{bottom:592.109333pt;}
.y2_c00183{bottom:615.950667pt;}
.y1_c00183{bottom:653.457333pt;}
.h6_c00183{height:31.280681pt;}
.h7_c00183{height:32.006363pt;}
.h3_c00183{height:36.010648pt;}
.h5_c00183{height:46.518078pt;}
.h2_c00183{height:51.855535pt;}
.h4_c00183{height:52.578561pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w0_c00183{width:793.706667pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:113.385333pt;}
.x2_c00183{left:121.886667pt;}
.x3_c00183{left:127.796000pt;}
.x4_c00183{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.048828;font-style:normal;font-weight:normal;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_949656aa0a1b6d8728322d67.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.083496;font-style:normal;font-weight:normal;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_7cd8f7f1a1010d09b5c47c21.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_4de506f66970f64fbef2febe.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.014648;font-style: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;}
.ls3_c00184{letter-spacing:0.000000px;}
.ls1_c00184{letter-spacing:0.087998px;}
.ls2_c00184{letter-spacing:0.098482px;}
.ls0_c00184{letter-spacing:0.104482px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00184{word-spacing:-26.575517px;}
.ws0_c00184{word-spacing:-26.487518px;}
.wse_c00184{word-spacing:-19.128192px;}
.wsa_c00184{word-spacing:-18.769538px;}
.ws8_c00184{word-spacing:-17.574026px;}
.ws9_c00184{word-spacing:-14.943900px;}
.wsf_c00184{word-spacing:-14.824349px;}
.ws7_c00184{word-spacing:-13.748388px;}
.wsd_c00184{word-spacing:-11.918882px;}
.ws5_c00184{word-spacing:-9.988424px;}
.ws6_c00184{word-spacing:-9.987499px;}
.ws12_c00184{word-spacing:0.000000px;}
.ws2_c00184{word-spacing:0.043999px;}
.ws10_c00184{word-spacing:0.175997px;}
.ws3_c00184{word-spacing:0.213446px;}
.ws11_c00184{word-spacing:0.219446px;}
.wsc_c00184{word-spacing:13.569061px;}
.ws4_c00184{word-spacing:43.038600px;}
.wsb_c00184{word-spacing:54.749856px;}
._1_c00184{margin-left:-6.369713px;}
._7_c00184{margin-left:-3.825638px;}
._4_c00184{margin-left:-1.075961px;}
._0_c00184{width:1.041538px;}
._3_c00184{width:19.930500px;}
._2_c00184{width:22.370304px;}
._6_c00184{width:31.920170px;}
._5_c00184{width:117.097076px;}
.fc5_c00184{color:rgb(0,0,207);}
.fc4_c00184{color:rgb(143,89,3);}
.fc3_c00184{color:rgb(79,153,5);}
.fc6_c00184{color:rgb(6,69,173);}
.fc2_c00184{color:rgb(207,92,0);}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(33,74,135);}
.fs0_c00184{font-size:43.999200px;}
.fs2_c00184{font-size:59.775600px;}
.fs1_c00184{font-size:86.077200px;}
.y0_c00184{bottom:0.000000px;}
.y1e_c00184{bottom:44.250000px;}
.y1d_c00184{bottom:98.490000px;}
.y1c_c00184{bottom:114.927000px;}
.y1b_c00184{bottom:131.365500px;}
.y1a_c00184{bottom:164.242500px;}
.y19_c00184{bottom:197.119500px;}
.y18_c00184{bottom:213.184500px;}
.y17_c00184{bottom:260.539500px;}
.y16_c00184{bottom:278.472000px;}
.y15_c00184{bottom:296.406000px;}
.y14_c00184{bottom:314.338500px;}
.y13_c00184{bottom:341.095500px;}
.y12_c00184{bottom:367.852500px;}
.y11_c00184{bottom:385.785000px;}
.y10_c00184{bottom:412.543500px;}
.yf_c00184{bottom:439.300500px;}
.ye_c00184{bottom:481.431000px;}
.yd_c00184{bottom:946.164000px;}
.yc_c00184{bottom:962.602500px;}
.yb_c00184{bottom:979.041000px;}
.ya_c00184{bottom:995.479500px;}
.y9_c00184{bottom:1011.918000px;}
.y8_c00184{bottom:1028.356500px;}
.y7_c00184{bottom:1044.795000px;}
.y6_c00184{bottom:1061.232000px;}
.y5_c00184{bottom:1077.670500px;}
.y4_c00184{bottom:1094.109000px;}
.y3_c00184{bottom:1110.547500px;}
.y2_c00184{bottom:1143.424500px;}
.y1_c00184{bottom:1159.863000px;}
.h6_c00184{height:35.190766px;}
.h2_c00184{height:36.007158px;}
.h4_c00184{height:40.511979px;}
.h5_c00184{height:52.332837px;}
.h3_c00184{height:58.337477px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w0_c00184{width:892.920000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x3_c00184{left:127.558500px;}
.x1_c00184{left:137.122500px;}
.x2_c00184{left:177.007500px;}
.x4_c00184{left:435.249000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls3_c00184{letter-spacing:0.000000pt;}
.ls1_c00184{letter-spacing:0.078221pt;}
.ls2_c00184{letter-spacing:0.087539pt;}
.ls0_c00184{letter-spacing:0.092873pt;}
.ws1_c00184{word-spacing:-23.622682pt;}
.ws0_c00184{word-spacing:-23.544461pt;}
.wse_c00184{word-spacing:-17.002837pt;}
.wsa_c00184{word-spacing:-16.684034pt;}
.ws8_c00184{word-spacing:-15.621357pt;}
.ws9_c00184{word-spacing:-13.283467pt;}
.wsf_c00184{word-spacing:-13.177199pt;}
.ws7_c00184{word-spacing:-12.220789pt;}
.wsd_c00184{word-spacing:-10.594562pt;}
.ws5_c00184{word-spacing:-8.878599pt;}
.ws6_c00184{word-spacing:-8.877777pt;}
.ws12_c00184{word-spacing:0.000000pt;}
.ws2_c00184{word-spacing:0.039110pt;}
.ws10_c00184{word-spacing:0.156442pt;}
.ws3_c00184{word-spacing:0.189730pt;}
.ws11_c00184{word-spacing:0.195063pt;}
.wsc_c00184{word-spacing:12.061388pt;}
.ws4_c00184{word-spacing:38.256533pt;}
.wsb_c00184{word-spacing:48.666539pt;}
._1_c00184{margin-left:-5.661967pt;}
._7_c00184{margin-left:-3.400567pt;}
._4_c00184{margin-left:-0.956410pt;}
._0_c00184{width:0.925811pt;}
._3_c00184{width:17.716000pt;}
._2_c00184{width:19.884715pt;}
._6_c00184{width:28.373485pt;}
._5_c00184{width:104.086290pt;}
.fs0_c00184{font-size:39.110400pt;}
.fs2_c00184{font-size:53.133867pt;}
.fs1_c00184{font-size:76.513067pt;}
.y0_c00184{bottom:0.000000pt;}
.y1e_c00184{bottom:39.333333pt;}
.y1d_c00184{bottom:87.546667pt;}
.y1c_c00184{bottom:102.157333pt;}
.y1b_c00184{bottom:116.769333pt;}
.y1a_c00184{bottom:145.993333pt;}
.y19_c00184{bottom:175.217333pt;}
.y18_c00184{bottom:189.497333pt;}
.y17_c00184{bottom:231.590667pt;}
.y16_c00184{bottom:247.530667pt;}
.y15_c00184{bottom:263.472000pt;}
.y14_c00184{bottom:279.412000pt;}
.y13_c00184{bottom:303.196000pt;}
.y12_c00184{bottom:326.980000pt;}
.y11_c00184{bottom:342.920000pt;}
.y10_c00184{bottom:366.705333pt;}
.yf_c00184{bottom:390.489333pt;}
.ye_c00184{bottom:427.938667pt;}
.yd_c00184{bottom:841.034667pt;}
.yc_c00184{bottom:855.646667pt;}
.yb_c00184{bottom:870.258667pt;}
.ya_c00184{bottom:884.870667pt;}
.y9_c00184{bottom:899.482667pt;}
.y8_c00184{bottom:914.094667pt;}
.y7_c00184{bottom:928.706667pt;}
.y6_c00184{bottom:943.317333pt;}
.y5_c00184{bottom:957.929333pt;}
.y4_c00184{bottom:972.541333pt;}
.y3_c00184{bottom:987.153333pt;}
.y2_c00184{bottom:1016.377333pt;}
.y1_c00184{bottom:1030.989333pt;}
.h6_c00184{height:31.280681pt;}
.h2_c00184{height:32.006363pt;}
.h4_c00184{height:36.010648pt;}
.h5_c00184{height:46.518078pt;}
.h3_c00184{height:51.855535pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w0_c00184{width:793.706667pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x3_c00184{left:113.385333pt;}
.x1_c00184{left:121.886667pt;}
.x2_c00184{left:157.340000pt;}
.x4_c00184{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2df692ba73d0d26fc694bae.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.014648;font-style:normal;font-weight:normal;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_31b17e95021c4cf65523d128.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_5eba897648790d935e3abc7e.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.v1_c00185{vertical-align:22.524000px;}
.ls3_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.087998px;}
.ls1_c00185{letter-spacing:0.098482px;}
.ls2_c00185{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws8_c00185{word-spacing:-26.487518px;}
.wsf_c00185{word-spacing:-23.599339px;}
.ws11_c00185{word-spacing:-18.769538px;}
.ws10_c00185{word-spacing:-15.183002px;}
.wse_c00185{word-spacing:-15.123227px;}
.wsd_c00185{word-spacing:-11.357364px;}
.wsb_c00185{word-spacing:-9.988424px;}
.wsc_c00185{word-spacing:-9.987499px;}
.ws13_c00185{word-spacing:-8.906564px;}
.ws12_c00185{word-spacing:-5.080926px;}
.ws2_c00185{word-spacing:0.000000px;}
.ws4_c00185{word-spacing:0.043999px;}
.ws5_c00185{word-spacing:0.046284px;}
.ws3_c00185{word-spacing:0.056767px;}
.ws7_c00185{word-spacing:0.073250px;}
.ws6_c00185{word-spacing:0.073800px;}
.ws9_c00185{word-spacing:0.213446px;}
.ws0_c00185{word-spacing:0.219446px;}
.wsa_c00185{word-spacing:43.038600px;}
._4_c00185{margin-left:-6.369713px;}
._9_c00185{margin-left:-3.586536px;}
._5_c00185{margin-left:-1.549390px;}
._3_c00185{width:1.041538px;}
._7_c00185{width:3.077855px;}
._6_c00185{width:27.245280px;}
._8_c00185{width:39.713526px;}
._1_c00185{width:53.283031px;}
._0_c00185{width:79.858548px;}
._2_c00185{width:106.390066px;}
.fc5_c00185{color:rgb(207,92,0);}
.fc4_c00185{color:rgb(0,0,207);}
.fc3_c00185{color:rgb(79,153,5);}
.fc2_c00185{color:rgb(33,74,135);}
.fc1_c00185{color:rgb(143,89,3);}
.fc0_c00185{color:rgb(0,0,0);}
.fs3_c00185{font-size:41.842800px;}
.fs0_c00185{font-size:43.999200px;}
.fs2_c00185{font-size:59.775600px;}
.fs1_c00185{font-size:86.077200px;}
.y0_c00185{bottom:0.000000px;}
.y22_c00185{bottom:44.250000px;}
.y21_c00185{bottom:82.051500px;}
.y20_c00185{bottom:99.984000px;}
.y1f_c00185{bottom:128.034000px;}
.y1e_c00185{bottom:145.966500px;}
.y1d_c00185{bottom:174.018000px;}
.y1c_c00185{bottom:202.068000px;}
.y1b_c00185{bottom:246.006000px;}
.y1a_c00185{bottom:716.028000px;}
.y19_c00185{bottom:732.465000px;}
.y18_c00185{bottom:748.903500px;}
.y17_c00185{bottom:765.342000px;}
.y16_c00185{bottom:781.780500px;}
.y15_c00185{bottom:798.219000px;}
.y14_c00185{bottom:814.657500px;}
.y13_c00185{bottom:831.096000px;}
.y12_c00185{bottom:847.534500px;}
.y11_c00185{bottom:863.973000px;}
.y10_c00185{bottom:880.411500px;}
.yf_c00185{bottom:913.287000px;}
.ye_c00185{bottom:929.725500px;}
.yd_c00185{bottom:946.164000px;}
.yc_c00185{bottom:979.041000px;}
.yb_c00185{bottom:995.479500px;}
.ya_c00185{bottom:1011.918000px;}
.y9_c00185{bottom:1028.356500px;}
.y8_c00185{bottom:1044.795000px;}
.y7_c00185{bottom:1061.232000px;}
.y6_c00185{bottom:1077.670500px;}
.y5_c00185{bottom:1094.109000px;}
.y4_c00185{bottom:1110.547500px;}
.y3_c00185{bottom:1126.986000px;}
.y2_c00185{bottom:1143.424500px;}
.y1_c00185{bottom:1159.863000px;}
.h3_c00185{height:35.190766px;}
.h2_c00185{height:36.007158px;}
.h5_c00185{height:40.511979px;}
.h7_c00185{height:52.332837px;}
.h4_c00185{height:58.337477px;}
.h8_c00185{height:59.150881px;}
.h6_c00185{height:59.156881px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w0_c00185{width:892.920000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x4_c00185{left:127.558500px;}
.x1_c00185{left:137.122500px;}
.x2_c00185{left:143.770500px;}
.x3_c00185{left:177.007500px;}
.x5_c00185{left:435.249000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.v1_c00185{vertical-align:20.021333pt;}
.ls3_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.078221pt;}
.ls1_c00185{letter-spacing:0.087539pt;}
.ls2_c00185{letter-spacing:0.092873pt;}
.ws1_c00185{word-spacing:-23.622682pt;}
.ws8_c00185{word-spacing:-23.544461pt;}
.wsf_c00185{word-spacing:-20.977190pt;}
.ws11_c00185{word-spacing:-16.684034pt;}
.ws10_c00185{word-spacing:-13.496002pt;}
.wse_c00185{word-spacing:-13.442868pt;}
.wsd_c00185{word-spacing:-10.095435pt;}
.wsb_c00185{word-spacing:-8.878599pt;}
.wsc_c00185{word-spacing:-8.877777pt;}
.ws13_c00185{word-spacing:-7.916946pt;}
.ws12_c00185{word-spacing:-4.516379pt;}
.ws2_c00185{word-spacing:0.000000pt;}
.ws4_c00185{word-spacing:0.039110pt;}
.ws5_c00185{word-spacing:0.041141pt;}
.ws3_c00185{word-spacing:0.050460pt;}
.ws7_c00185{word-spacing:0.065111pt;}
.ws6_c00185{word-spacing:0.065600pt;}
.ws9_c00185{word-spacing:0.189730pt;}
.ws0_c00185{word-spacing:0.195063pt;}
.wsa_c00185{word-spacing:38.256533pt;}
._4_c00185{margin-left:-5.661967pt;}
._9_c00185{margin-left:-3.188032pt;}
._5_c00185{margin-left:-1.377235pt;}
._3_c00185{width:0.925811pt;}
._7_c00185{width:2.735871pt;}
._6_c00185{width:24.218027pt;}
._8_c00185{width:35.300912pt;}
._1_c00185{width:47.362694pt;}
._0_c00185{width:70.985376pt;}
._2_c00185{width:94.568947pt;}
.fs3_c00185{font-size:37.193600pt;}
.fs0_c00185{font-size:39.110400pt;}
.fs2_c00185{font-size:53.133867pt;}
.fs1_c00185{font-size:76.513067pt;}
.y0_c00185{bottom:0.000000pt;}
.y22_c00185{bottom:39.333333pt;}
.y21_c00185{bottom:72.934667pt;}
.y20_c00185{bottom:88.874667pt;}
.y1f_c00185{bottom:113.808000pt;}
.y1e_c00185{bottom:129.748000pt;}
.y1d_c00185{bottom:154.682667pt;}
.y1c_c00185{bottom:179.616000pt;}
.y1b_c00185{bottom:218.672000pt;}
.y1a_c00185{bottom:636.469333pt;}
.y19_c00185{bottom:651.080000pt;}
.y18_c00185{bottom:665.692000pt;}
.y17_c00185{bottom:680.304000pt;}
.y16_c00185{bottom:694.916000pt;}
.y15_c00185{bottom:709.528000pt;}
.y14_c00185{bottom:724.140000pt;}
.y13_c00185{bottom:738.752000pt;}
.y12_c00185{bottom:753.364000pt;}
.y11_c00185{bottom:767.976000pt;}
.y10_c00185{bottom:782.588000pt;}
.yf_c00185{bottom:811.810667pt;}
.ye_c00185{bottom:826.422667pt;}
.yd_c00185{bottom:841.034667pt;}
.yc_c00185{bottom:870.258667pt;}
.yb_c00185{bottom:884.870667pt;}
.ya_c00185{bottom:899.482667pt;}
.y9_c00185{bottom:914.094667pt;}
.y8_c00185{bottom:928.706667pt;}
.y7_c00185{bottom:943.317333pt;}
.y6_c00185{bottom:957.929333pt;}
.y5_c00185{bottom:972.541333pt;}
.y4_c00185{bottom:987.153333pt;}
.y3_c00185{bottom:1001.765333pt;}
.y2_c00185{bottom:1016.377333pt;}
.y1_c00185{bottom:1030.989333pt;}
.h3_c00185{height:31.280681pt;}
.h2_c00185{height:32.006363pt;}
.h5_c00185{height:36.010648pt;}
.h7_c00185{height:46.518078pt;}
.h4_c00185{height:51.855535pt;}
.h8_c00185{height:52.578561pt;}
.h6_c00185{height:52.583894pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w0_c00185{width:793.706667pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x4_c00185{left:113.385333pt;}
.x1_c00185{left:121.886667pt;}
.x2_c00185{left:127.796000pt;}
.x3_c00185{left:157.340000pt;}
.x5_c00185{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:0.893555;font-style:normal;font-weight:normal;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_fe57a9d428278066a7228a07.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_88efeec4453204e817a08dde.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.048828;font-style: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;}
.ls3_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.087998px;}
.ls2_c00186{letter-spacing:0.098482px;}
.ls1_c00186{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00186{word-spacing:-26.575517px;}
.ws8_c00186{word-spacing:-26.487518px;}
.ws4_c00186{word-spacing:-19.128192px;}
.ws6_c00186{word-spacing:-18.769538px;}
.ws5_c00186{word-spacing:-14.824349px;}
.ws3_c00186{word-spacing:-11.918882px;}
.wsb_c00186{word-spacing:0.000000px;}
.ws9_c00186{word-spacing:0.043999px;}
.wsd_c00186{word-spacing:0.046284px;}
.wsc_c00186{word-spacing:0.056767px;}
.wsf_c00186{word-spacing:0.073250px;}
.wse_c00186{word-spacing:0.073800px;}
.ws7_c00186{word-spacing:0.175997px;}
.ws10_c00186{word-spacing:0.213446px;}
.wsa_c00186{word-spacing:0.219446px;}
.ws1_c00186{word-spacing:13.569061px;}
.ws0_c00186{word-spacing:54.749856px;}
._3_c00186{margin-left:-3.825638px;}
._0_c00186{margin-left:-1.075961px;}
._5_c00186{width:1.005737px;}
._4_c00186{width:19.905275px;}
._2_c00186{width:31.920170px;}
._7_c00186{width:53.283031px;}
._6_c00186{width:79.858548px;}
._8_c00186{width:106.390066px;}
._1_c00186{width:117.097076px;}
.fc6_c00186{color:rgb(0,0,207);}
.fc5_c00186{color:rgb(79,153,5);}
.fc3_c00186{color:rgb(33,74,135);}
.fc2_c00186{color:rgb(143,89,3);}
.fc4_c00186{color:rgb(207,92,0);}
.fc1_c00186{color:rgb(6,69,173);}
.fc0_c00186{color:rgb(0,0,0);}
.fs1_c00186{font-size:43.999200px;}
.fs0_c00186{font-size:59.775600px;}
.y0_c00186{bottom:0.000000px;}
.y25_c00186{bottom:44.250000px;}
.y24_c00186{bottom:96.919500px;}
.y23_c00186{bottom:113.358000px;}
.y22_c00186{bottom:129.796500px;}
.y21_c00186{bottom:146.235000px;}
.y20_c00186{bottom:162.673500px;}
.y1f_c00186{bottom:179.112000px;}
.y1e_c00186{bottom:195.550500px;}
.y1d_c00186{bottom:211.989000px;}
.y1c_c00186{bottom:228.427500px;}
.y1b_c00186{bottom:244.866000px;}
.y1a_c00186{bottom:261.304500px;}
.y19_c00186{bottom:294.180000px;}
.y18_c00186{bottom:310.618500px;}
.y17_c00186{bottom:327.057000px;}
.y16_c00186{bottom:359.934000px;}
.y15_c00186{bottom:376.372500px;}
.y14_c00186{bottom:392.811000px;}
.y13_c00186{bottom:409.249500px;}
.y12_c00186{bottom:425.688000px;}
.y11_c00186{bottom:442.125000px;}
.y10_c00186{bottom:458.563500px;}
.yf_c00186{bottom:475.002000px;}
.ye_c00186{bottom:491.440500px;}
.yd_c00186{bottom:507.879000px;}
.yc_c00186{bottom:524.317500px;}
.yb_c00186{bottom:540.756000px;}
.ya_c00186{bottom:573.633000px;}
.y9_c00186{bottom:590.071500px;}
.y8_c00186{bottom:606.508500px;}
.y7_c00186{bottom:639.385500px;}
.y6_c00186{bottom:672.262500px;}
.y5_c00186{bottom:688.327500px;}
.y4_c00186{bottom:1106.064000px;}
.y3_c00186{bottom:1123.998000px;}
.y2_c00186{bottom:1141.930500px;}
.y1_c00186{bottom:1159.863000px;}
.h3_c00186{height:35.190766px;}
.h4_c00186{height:36.007158px;}
.h2_c00186{height:52.332837px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w0_c00186{width:892.920000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:127.558500px;}
.x2_c00186{left:137.122500px;}
.x3_c00186{left:143.770500px;}
.x4_c00186{left:177.007500px;}
.x5_c00186{left:435.249000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls3_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.078221pt;}
.ls2_c00186{letter-spacing:0.087539pt;}
.ls1_c00186{letter-spacing:0.092873pt;}
.ws2_c00186{word-spacing:-23.622682pt;}
.ws8_c00186{word-spacing:-23.544461pt;}
.ws4_c00186{word-spacing:-17.002837pt;}
.ws6_c00186{word-spacing:-16.684034pt;}
.ws5_c00186{word-spacing:-13.177199pt;}
.ws3_c00186{word-spacing:-10.594562pt;}
.wsb_c00186{word-spacing:0.000000pt;}
.ws9_c00186{word-spacing:0.039110pt;}
.wsd_c00186{word-spacing:0.041141pt;}
.wsc_c00186{word-spacing:0.050460pt;}
.wsf_c00186{word-spacing:0.065111pt;}
.wse_c00186{word-spacing:0.065600pt;}
.ws7_c00186{word-spacing:0.156442pt;}
.ws10_c00186{word-spacing:0.189730pt;}
.wsa_c00186{word-spacing:0.195063pt;}
.ws1_c00186{word-spacing:12.061388pt;}
.ws0_c00186{word-spacing:48.666539pt;}
._3_c00186{margin-left:-3.400567pt;}
._0_c00186{margin-left:-0.956410pt;}
._5_c00186{width:0.893988pt;}
._4_c00186{width:17.693578pt;}
._2_c00186{width:28.373485pt;}
._7_c00186{width:47.362694pt;}
._6_c00186{width:70.985376pt;}
._8_c00186{width:94.568947pt;}
._1_c00186{width:104.086290pt;}
.fs1_c00186{font-size:39.110400pt;}
.fs0_c00186{font-size:53.133867pt;}
.y0_c00186{bottom:0.000000pt;}
.y25_c00186{bottom:39.333333pt;}
.y24_c00186{bottom:86.150667pt;}
.y23_c00186{bottom:100.762667pt;}
.y22_c00186{bottom:115.374667pt;}
.y21_c00186{bottom:129.986667pt;}
.y20_c00186{bottom:144.598667pt;}
.y1f_c00186{bottom:159.210667pt;}
.y1e_c00186{bottom:173.822667pt;}
.y1d_c00186{bottom:188.434667pt;}
.y1c_c00186{bottom:203.046667pt;}
.y1b_c00186{bottom:217.658667pt;}
.y1a_c00186{bottom:232.270667pt;}
.y19_c00186{bottom:261.493333pt;}
.y18_c00186{bottom:276.105333pt;}
.y17_c00186{bottom:290.717333pt;}
.y16_c00186{bottom:319.941333pt;}
.y15_c00186{bottom:334.553333pt;}
.y14_c00186{bottom:349.165333pt;}
.y13_c00186{bottom:363.777333pt;}
.y12_c00186{bottom:378.389333pt;}
.y11_c00186{bottom:393.000000pt;}
.y10_c00186{bottom:407.612000pt;}
.yf_c00186{bottom:422.224000pt;}
.ye_c00186{bottom:436.836000pt;}
.yd_c00186{bottom:451.448000pt;}
.yc_c00186{bottom:466.060000pt;}
.yb_c00186{bottom:480.672000pt;}
.ya_c00186{bottom:509.896000pt;}
.y9_c00186{bottom:524.508000pt;}
.y8_c00186{bottom:539.118667pt;}
.y7_c00186{bottom:568.342667pt;}
.y6_c00186{bottom:597.566667pt;}
.y5_c00186{bottom:611.846667pt;}
.y4_c00186{bottom:983.168000pt;}
.y3_c00186{bottom:999.109333pt;}
.y2_c00186{bottom:1015.049333pt;}
.y1_c00186{bottom:1030.989333pt;}
.h3_c00186{height:31.280681pt;}
.h4_c00186{height:32.006363pt;}
.h2_c00186{height:46.518078pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w0_c00186{width:793.706667pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:113.385333pt;}
.x2_c00186{left:121.886667pt;}
.x3_c00186{left:127.796000pt;}
.x4_c00186{left:157.340000pt;}
.x5_c00186{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_809146cb029d5bfb7359f7a7.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:0.893555;font-style:normal;font-weight:normal;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_0c99eb46c7240ca3457f086b.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.083496;font-style:normal;font-weight:normal;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_ddad2e5da3cec4156651fb85.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.014648;font-style:normal;font-weight:normal;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_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.048828;font-style: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;}
.v1_c00187{vertical-align:22.518000px;}
.ls3_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.087998px;}
.ls2_c00187{letter-spacing:0.098482px;}
.ls1_c00187{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00187{word-spacing:-26.575517px;}
.ws11_c00187{word-spacing:-26.487518px;}
.ws6_c00187{word-spacing:-23.599339px;}
.ws5_c00187{word-spacing:-21.578992px;}
.ws7_c00187{word-spacing:-21.519216px;}
.wse_c00187{word-spacing:-19.128192px;}
.ws8_c00187{word-spacing:-18.769538px;}
.ws4_c00187{word-spacing:-17.753353px;}
.wsa_c00187{word-spacing:-15.840534px;}
.wsf_c00187{word-spacing:-14.824349px;}
.ws9_c00187{word-spacing:-12.074671px;}
.wsd_c00187{word-spacing:-11.918882px;}
.ws1_c00187{word-spacing:-9.988424px;}
.ws3_c00187{word-spacing:-9.987499px;}
.ws14_c00187{word-spacing:0.000000px;}
.ws12_c00187{word-spacing:0.043999px;}
.ws16_c00187{word-spacing:0.046284px;}
.ws15_c00187{word-spacing:0.056767px;}
.ws18_c00187{word-spacing:0.073250px;}
.ws17_c00187{word-spacing:0.073800px;}
.ws10_c00187{word-spacing:0.175997px;}
.ws13_c00187{word-spacing:0.219446px;}
.wsc_c00187{word-spacing:13.569061px;}
.ws0_c00187{word-spacing:43.038600px;}
.wsb_c00187{word-spacing:54.749856px;}
._0_c00187{margin-left:-6.369713px;}
._5_c00187{margin-left:-3.586536px;}
._1_c00187{margin-left:-1.549390px;}
._9_c00187{width:1.005737px;}
._6_c00187{width:2.116481px;}
._3_c00187{width:3.575857px;}
._2_c00187{width:18.599269px;}
._4_c00187{width:25.821271px;}
._8_c00187{width:31.920170px;}
._b_c00187{width:53.283031px;}
._a_c00187{width:79.858548px;}
._c_c00187{width:106.390066px;}
._7_c00187{width:116.494544px;}
.fc6_c00187{color:rgb(0,0,207);}
.fc5_c00187{color:rgb(79,153,5);}
.fc3_c00187{color:rgb(33,74,135);}
.fc2_c00187{color:rgb(143,89,3);}
.fc4_c00187{color:rgb(207,92,0);}
.fc1_c00187{color:rgb(6,69,173);}
.fc0_c00187{color:rgb(0,0,0);}
.fs3_c00187{font-size:41.842800px;}
.fs2_c00187{font-size:43.999200px;}
.fs1_c00187{font-size:59.775600px;}
.fs0_c00187{font-size:86.077200px;}
.y0_c00187{bottom:0.000000px;}
.y1f_c00187{bottom:44.250000px;}
.y1e_c00187{bottom:86.982000px;}
.y1d_c00187{bottom:119.859000px;}
.y1c_c00187{bottom:136.297500px;}
.y1b_c00187{bottom:152.736000px;}
.y1a_c00187{bottom:169.174500px;}
.y19_c00187{bottom:185.613000px;}
.y18_c00187{bottom:202.051500px;}
.y17_c00187{bottom:218.490000px;}
.y16_c00187{bottom:234.927000px;}
.y15_c00187{bottom:251.365500px;}
.y14_c00187{bottom:267.804000px;}
.y13_c00187{bottom:284.242500px;}
.y12_c00187{bottom:300.681000px;}
.y11_c00187{bottom:333.558000px;}
.y10_c00187{bottom:349.996500px;}
.yf_c00187{bottom:366.435000px;}
.ye_c00187{bottom:399.310500px;}
.yd_c00187{bottom:432.187500px;}
.yc_c00187{bottom:448.252500px;}
.yb_c00187{bottom:495.994500px;}
.ya_c00187{bottom:513.927000px;}
.y9_c00187{bottom:531.859500px;}
.y8_c00187{bottom:549.793500px;}
.y7_c00187{bottom:576.615000px;}
.y6_c00187{bottom:594.547500px;}
.y5_c00187{bottom:621.369000px;}
.y4_c00187{bottom:639.301500px;}
.y3_c00187{bottom:666.123000px;}
.y2_c00187{bottom:692.944500px;}
.y1_c00187{bottom:735.139500px;}
.h6_c00187{height:35.190766px;}
.h7_c00187{height:36.007158px;}
.h3_c00187{height:40.511979px;}
.h5_c00187{height:52.332837px;}
.h2_c00187{height:58.337477px;}
.h4_c00187{height:59.150881px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w0_c00187{width:892.920000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:127.558500px;}
.x2_c00187{left:137.122500px;}
.x3_c00187{left:143.770500px;}
.x4_c00187{left:435.249000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:20.016000pt;}
.ls3_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.078221pt;}
.ls2_c00187{letter-spacing:0.087539pt;}
.ls1_c00187{letter-spacing:0.092873pt;}
.ws2_c00187{word-spacing:-23.622682pt;}
.ws11_c00187{word-spacing:-23.544461pt;}
.ws6_c00187{word-spacing:-20.977190pt;}
.ws5_c00187{word-spacing:-19.181326pt;}
.ws7_c00187{word-spacing:-19.128192pt;}
.wse_c00187{word-spacing:-17.002837pt;}
.ws8_c00187{word-spacing:-16.684034pt;}
.ws4_c00187{word-spacing:-15.780758pt;}
.wsa_c00187{word-spacing:-14.080475pt;}
.wsf_c00187{word-spacing:-13.177199pt;}
.ws9_c00187{word-spacing:-10.733041pt;}
.wsd_c00187{word-spacing:-10.594562pt;}
.ws1_c00187{word-spacing:-8.878599pt;}
.ws3_c00187{word-spacing:-8.877777pt;}
.ws14_c00187{word-spacing:0.000000pt;}
.ws12_c00187{word-spacing:0.039110pt;}
.ws16_c00187{word-spacing:0.041141pt;}
.ws15_c00187{word-spacing:0.050460pt;}
.ws18_c00187{word-spacing:0.065111pt;}
.ws17_c00187{word-spacing:0.065600pt;}
.ws10_c00187{word-spacing:0.156442pt;}
.ws13_c00187{word-spacing:0.195063pt;}
.wsc_c00187{word-spacing:12.061388pt;}
.ws0_c00187{word-spacing:38.256533pt;}
.wsb_c00187{word-spacing:48.666539pt;}
._0_c00187{margin-left:-5.661967pt;}
._5_c00187{margin-left:-3.188032pt;}
._1_c00187{margin-left:-1.377235pt;}
._9_c00187{width:0.893988pt;}
._6_c00187{width:1.881316pt;}
._3_c00187{width:3.178540pt;}
._2_c00187{width:16.532684pt;}
._4_c00187{width:22.952241pt;}
._8_c00187{width:28.373485pt;}
._b_c00187{width:47.362694pt;}
._a_c00187{width:70.985376pt;}
._c_c00187{width:94.568947pt;}
._7_c00187{width:103.550706pt;}
.fs3_c00187{font-size:37.193600pt;}
.fs2_c00187{font-size:39.110400pt;}
.fs1_c00187{font-size:53.133867pt;}
.fs0_c00187{font-size:76.513067pt;}
.y0_c00187{bottom:0.000000pt;}
.y1f_c00187{bottom:39.333333pt;}
.y1e_c00187{bottom:77.317333pt;}
.y1d_c00187{bottom:106.541333pt;}
.y1c_c00187{bottom:121.153333pt;}
.y1b_c00187{bottom:135.765333pt;}
.y1a_c00187{bottom:150.377333pt;}
.y19_c00187{bottom:164.989333pt;}
.y18_c00187{bottom:179.601333pt;}
.y17_c00187{bottom:194.213333pt;}
.y16_c00187{bottom:208.824000pt;}
.y15_c00187{bottom:223.436000pt;}
.y14_c00187{bottom:238.048000pt;}
.y13_c00187{bottom:252.660000pt;}
.y12_c00187{bottom:267.272000pt;}
.y11_c00187{bottom:296.496000pt;}
.y10_c00187{bottom:311.108000pt;}
.yf_c00187{bottom:325.720000pt;}
.ye_c00187{bottom:354.942667pt;}
.yd_c00187{bottom:384.166667pt;}
.yc_c00187{bottom:398.446667pt;}
.yb_c00187{bottom:440.884000pt;}
.ya_c00187{bottom:456.824000pt;}
.y9_c00187{bottom:472.764000pt;}
.y8_c00187{bottom:488.705333pt;}
.y7_c00187{bottom:512.546667pt;}
.y6_c00187{bottom:528.486667pt;}
.y5_c00187{bottom:552.328000pt;}
.y4_c00187{bottom:568.268000pt;}
.y3_c00187{bottom:592.109333pt;}
.y2_c00187{bottom:615.950667pt;}
.y1_c00187{bottom:653.457333pt;}
.h6_c00187{height:31.280681pt;}
.h7_c00187{height:32.006363pt;}
.h3_c00187{height:36.010648pt;}
.h5_c00187{height:46.518078pt;}
.h2_c00187{height:51.855535pt;}
.h4_c00187{height:52.578561pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w0_c00187{width:793.706667pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:113.385333pt;}
.x2_c00187{left:121.886667pt;}
.x3_c00187{left:127.796000pt;}
.x4_c00187{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.048828;font-style:normal;font-weight:normal;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_0f45e98f8835380916198bbc.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.083496;font-style:normal;font-weight:normal;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_809146cb029d5bfb7359f7a7.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.893555;font-style:normal;font-weight:normal;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_3e34bd5e01f1cbdc05bb5657.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.014648;font-style: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;}
.v1_c00188{vertical-align:22.518000px;}
.ls3_c00188{letter-spacing:0.000000px;}
.ls1_c00188{letter-spacing:0.087998px;}
.ls2_c00188{letter-spacing:0.098482px;}
.ls0_c00188{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00188{word-spacing:-26.487518px;}
.ws9_c00188{word-spacing:-23.599339px;}
.wsc_c00188{word-spacing:-21.459440px;}
.ws10_c00188{word-spacing:-19.128192px;}
.wsa_c00188{word-spacing:-18.769538px;}
.wsb_c00188{word-spacing:-17.633802px;}
.ws11_c00188{word-spacing:-14.824349px;}
.ws8_c00188{word-spacing:-14.465695px;}
.wsf_c00188{word-spacing:-11.918882px;}
.ws7_c00188{word-spacing:-10.699832px;}
.ws5_c00188{word-spacing:-9.988424px;}
.ws6_c00188{word-spacing:-9.987499px;}
.ws14_c00188{word-spacing:0.000000px;}
.ws2_c00188{word-spacing:0.043999px;}
.ws12_c00188{word-spacing:0.175997px;}
.ws3_c00188{word-spacing:0.213446px;}
.ws13_c00188{word-spacing:0.219446px;}
.wse_c00188{word-spacing:13.569061px;}
.ws4_c00188{word-spacing:43.038600px;}
.wsd_c00188{word-spacing:54.749856px;}
._1_c00188{margin-left:-6.369713px;}
._6_c00188{margin-left:-3.586536px;}
._2_c00188{margin-left:-1.549390px;}
._0_c00188{width:1.041538px;}
._4_c00188{width:3.114352px;}
._5_c00188{width:18.630402px;}
._3_c00188{width:28.573748px;}
._8_c00188{width:31.920170px;}
._7_c00188{width:116.494544px;}
.fc5_c00188{color:rgb(0,0,207);}
.fc4_c00188{color:rgb(143,89,3);}
.fc3_c00188{color:rgb(79,153,5);}
.fc6_c00188{color:rgb(6,69,173);}
.fc2_c00188{color:rgb(207,92,0);}
.fc1_c00188{color:rgb(0,0,0);}
.fc0_c00188{color:rgb(33,74,135);}
.fs3_c00188{font-size:41.842800px;}
.fs0_c00188{font-size:43.999200px;}
.fs2_c00188{font-size:59.775600px;}
.fs1_c00188{font-size:86.077200px;}
.y0_c00188{bottom:0.000000px;}
.y1f_c00188{bottom:44.250000px;}
.y1e_c00188{bottom:82.051500px;}
.y1d_c00188{bottom:98.490000px;}
.y1c_c00188{bottom:114.927000px;}
.y1b_c00188{bottom:147.804000px;}
.y1a_c00188{bottom:180.681000px;}
.y19_c00188{bottom:196.746000px;}
.y18_c00188{bottom:243.456000px;}
.y17_c00188{bottom:261.388500px;}
.y16_c00188{bottom:279.322500px;}
.y15_c00188{bottom:297.255000px;}
.y14_c00188{bottom:323.904000px;}
.y13_c00188{bottom:341.836500px;}
.y12_c00188{bottom:368.487000px;}
.y11_c00188{bottom:386.419500px;}
.y10_c00188{bottom:413.070000px;}
.yf_c00188{bottom:439.719000px;}
.ye_c00188{bottom:481.741500px;}
.yd_c00188{bottom:946.164000px;}
.yc_c00188{bottom:962.602500px;}
.yb_c00188{bottom:979.041000px;}
.ya_c00188{bottom:995.479500px;}
.y9_c00188{bottom:1011.918000px;}
.y8_c00188{bottom:1028.356500px;}
.y7_c00188{bottom:1044.795000px;}
.y6_c00188{bottom:1061.232000px;}
.y5_c00188{bottom:1077.670500px;}
.y4_c00188{bottom:1094.109000px;}
.y3_c00188{bottom:1110.547500px;}
.y2_c00188{bottom:1143.424500px;}
.y1_c00188{bottom:1159.863000px;}
.h8_c00188{height:35.190766px;}
.h2_c00188{height:36.007158px;}
.h4_c00188{height:40.511979px;}
.h6_c00188{height:52.332837px;}
.h3_c00188{height:58.337477px;}
.h5_c00188{height:59.150881px;}
.h7_c00188{height:59.156881px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w0_c00188{width:892.920000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x3_c00188{left:127.558500px;}
.x1_c00188{left:137.122500px;}
.x2_c00188{left:177.007500px;}
.x4_c00188{left:435.249000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:20.016000pt;}
.ls3_c00188{letter-spacing:0.000000pt;}
.ls1_c00188{letter-spacing:0.078221pt;}
.ls2_c00188{letter-spacing:0.087539pt;}
.ls0_c00188{letter-spacing:0.092873pt;}
.ws1_c00188{word-spacing:-23.622682pt;}
.ws0_c00188{word-spacing:-23.544461pt;}
.ws9_c00188{word-spacing:-20.977190pt;}
.wsc_c00188{word-spacing:-19.075058pt;}
.ws10_c00188{word-spacing:-17.002837pt;}
.wsa_c00188{word-spacing:-16.684034pt;}
.wsb_c00188{word-spacing:-15.674491pt;}
.ws11_c00188{word-spacing:-13.177199pt;}
.ws8_c00188{word-spacing:-12.858396pt;}
.wsf_c00188{word-spacing:-10.594562pt;}
.ws7_c00188{word-spacing:-9.510962pt;}
.ws5_c00188{word-spacing:-8.878599pt;}
.ws6_c00188{word-spacing:-8.877777pt;}
.ws14_c00188{word-spacing:0.000000pt;}
.ws2_c00188{word-spacing:0.039110pt;}
.ws12_c00188{word-spacing:0.156442pt;}
.ws3_c00188{word-spacing:0.189730pt;}
.ws13_c00188{word-spacing:0.195063pt;}
.wse_c00188{word-spacing:12.061388pt;}
.ws4_c00188{word-spacing:38.256533pt;}
.wsd_c00188{word-spacing:48.666539pt;}
._1_c00188{margin-left:-5.661967pt;}
._6_c00188{margin-left:-3.188032pt;}
._2_c00188{margin-left:-1.377235pt;}
._0_c00188{width:0.925811pt;}
._4_c00188{width:2.768313pt;}
._5_c00188{width:16.560357pt;}
._3_c00188{width:25.398887pt;}
._8_c00188{width:28.373485pt;}
._7_c00188{width:103.550706pt;}
.fs3_c00188{font-size:37.193600pt;}
.fs0_c00188{font-size:39.110400pt;}
.fs2_c00188{font-size:53.133867pt;}
.fs1_c00188{font-size:76.513067pt;}
.y0_c00188{bottom:0.000000pt;}
.y1f_c00188{bottom:39.333333pt;}
.y1e_c00188{bottom:72.934667pt;}
.y1d_c00188{bottom:87.546667pt;}
.y1c_c00188{bottom:102.157333pt;}
.y1b_c00188{bottom:131.381333pt;}
.y1a_c00188{bottom:160.605333pt;}
.y19_c00188{bottom:174.885333pt;}
.y18_c00188{bottom:216.405333pt;}
.y17_c00188{bottom:232.345333pt;}
.y16_c00188{bottom:248.286667pt;}
.y15_c00188{bottom:264.226667pt;}
.y14_c00188{bottom:287.914667pt;}
.y13_c00188{bottom:303.854667pt;}
.y12_c00188{bottom:327.544000pt;}
.y11_c00188{bottom:343.484000pt;}
.y10_c00188{bottom:367.173333pt;}
.yf_c00188{bottom:390.861333pt;}
.ye_c00188{bottom:428.214667pt;}
.yd_c00188{bottom:841.034667pt;}
.yc_c00188{bottom:855.646667pt;}
.yb_c00188{bottom:870.258667pt;}
.ya_c00188{bottom:884.870667pt;}
.y9_c00188{bottom:899.482667pt;}
.y8_c00188{bottom:914.094667pt;}
.y7_c00188{bottom:928.706667pt;}
.y6_c00188{bottom:943.317333pt;}
.y5_c00188{bottom:957.929333pt;}
.y4_c00188{bottom:972.541333pt;}
.y3_c00188{bottom:987.153333pt;}
.y2_c00188{bottom:1016.377333pt;}
.y1_c00188{bottom:1030.989333pt;}
.h8_c00188{height:31.280681pt;}
.h2_c00188{height:32.006363pt;}
.h4_c00188{height:36.010648pt;}
.h6_c00188{height:46.518078pt;}
.h3_c00188{height:51.855535pt;}
.h5_c00188{height:52.578561pt;}
.h7_c00188{height:52.583894pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w0_c00188{width:793.706667pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x3_c00188{left:113.385333pt;}
.x1_c00188{left:121.886667pt;}
.x2_c00188{left:157.340000pt;}
.x4_c00188{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b4f9424eaff570ee6e4d84.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.014648;font-style:normal;font-weight:normal;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_549bbdac755d797110b48fe9.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_565e329a165d806685c1b527.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.v1_c00189{vertical-align:22.518000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls0_c00189{letter-spacing:0.087998px;}
.ls1_c00189{letter-spacing:0.098482px;}
.ls2_c00189{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws8_c00189{word-spacing:-26.487518px;}
.wsf_c00189{word-spacing:-23.599339px;}
.wse_c00189{word-spacing:-20.144377px;}
.ws10_c00189{word-spacing:-18.769538px;}
.ws12_c00189{word-spacing:-18.112007px;}
.wsd_c00189{word-spacing:-16.378514px;}
.ws11_c00189{word-spacing:-14.286368px;}
.wsb_c00189{word-spacing:-9.988424px;}
.wsc_c00189{word-spacing:-9.987499px;}
.ws2_c00189{word-spacing:0.000000px;}
.ws4_c00189{word-spacing:0.043999px;}
.ws5_c00189{word-spacing:0.046284px;}
.ws3_c00189{word-spacing:0.056767px;}
.ws7_c00189{word-spacing:0.073250px;}
.ws6_c00189{word-spacing:0.073800px;}
.ws9_c00189{word-spacing:0.213446px;}
.ws0_c00189{word-spacing:0.219446px;}
.wsa_c00189{word-spacing:43.038600px;}
._4_c00189{margin-left:-6.369713px;}
._5_c00189{margin-left:-1.549390px;}
._3_c00189{width:1.041538px;}
._7_c00189{width:3.081948px;}
._6_c00189{width:19.288430px;}
._8_c00189{width:21.342968px;}
._1_c00189{width:53.283031px;}
._0_c00189{width:79.858548px;}
._2_c00189{width:106.390066px;}
.fc5_c00189{color:rgb(207,92,0);}
.fc4_c00189{color:rgb(0,0,207);}
.fc3_c00189{color:rgb(79,153,5);}
.fc2_c00189{color:rgb(33,74,135);}
.fc1_c00189{color:rgb(143,89,3);}
.fc0_c00189{color:rgb(0,0,0);}
.fs3_c00189{font-size:41.842800px;}
.fs0_c00189{font-size:43.999200px;}
.fs2_c00189{font-size:59.775600px;}
.fs1_c00189{font-size:86.077200px;}
.y0_c00189{bottom:0.000000px;}
.y22_c00189{bottom:44.250000px;}
.y21_c00189{bottom:82.051500px;}
.y20_c00189{bottom:99.984000px;}
.y1f_c00189{bottom:125.949000px;}
.y1e_c00189{bottom:143.881500px;}
.y1d_c00189{bottom:169.846500px;}
.y1c_c00189{bottom:195.811500px;}
.y1b_c00189{bottom:237.148500px;}
.y1a_c00189{bottom:699.589500px;}
.y19_c00189{bottom:716.028000px;}
.y18_c00189{bottom:732.465000px;}
.y17_c00189{bottom:748.903500px;}
.y16_c00189{bottom:765.342000px;}
.y15_c00189{bottom:781.780500px;}
.y14_c00189{bottom:798.219000px;}
.y13_c00189{bottom:814.657500px;}
.y12_c00189{bottom:831.096000px;}
.y11_c00189{bottom:847.534500px;}
.y10_c00189{bottom:863.973000px;}
.yf_c00189{bottom:896.848500px;}
.ye_c00189{bottom:913.287000px;}
.yd_c00189{bottom:929.725500px;}
.yc_c00189{bottom:962.602500px;}
.yb_c00189{bottom:979.041000px;}
.ya_c00189{bottom:995.479500px;}
.y9_c00189{bottom:1011.918000px;}
.y8_c00189{bottom:1028.356500px;}
.y7_c00189{bottom:1044.795000px;}
.y6_c00189{bottom:1061.232000px;}
.y5_c00189{bottom:1077.670500px;}
.y4_c00189{bottom:1094.109000px;}
.y3_c00189{bottom:1110.547500px;}
.y2_c00189{bottom:1126.986000px;}
.y1_c00189{bottom:1143.424500px;}
.h3_c00189{height:35.190766px;}
.h2_c00189{height:36.007158px;}
.h5_c00189{height:40.511979px;}
.h7_c00189{height:52.332837px;}
.h4_c00189{height:58.337477px;}
.h6_c00189{height:59.150881px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w0_c00189{width:892.920000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x4_c00189{left:127.558500px;}
.x1_c00189{left:137.122500px;}
.x2_c00189{left:143.770500px;}
.x3_c00189{left:177.007500px;}
.x5_c00189{left:435.249000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:20.016000pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls0_c00189{letter-spacing:0.078221pt;}
.ls1_c00189{letter-spacing:0.087539pt;}
.ls2_c00189{letter-spacing:0.092873pt;}
.ws1_c00189{word-spacing:-23.622682pt;}
.ws8_c00189{word-spacing:-23.544461pt;}
.wsf_c00189{word-spacing:-20.977190pt;}
.wse_c00189{word-spacing:-17.906113pt;}
.ws10_c00189{word-spacing:-16.684034pt;}
.ws12_c00189{word-spacing:-16.099562pt;}
.wsd_c00189{word-spacing:-14.558679pt;}
.ws11_c00189{word-spacing:-12.698994pt;}
.wsb_c00189{word-spacing:-8.878599pt;}
.wsc_c00189{word-spacing:-8.877777pt;}
.ws2_c00189{word-spacing:0.000000pt;}
.ws4_c00189{word-spacing:0.039110pt;}
.ws5_c00189{word-spacing:0.041141pt;}
.ws3_c00189{word-spacing:0.050460pt;}
.ws7_c00189{word-spacing:0.065111pt;}
.ws6_c00189{word-spacing:0.065600pt;}
.ws9_c00189{word-spacing:0.189730pt;}
.ws0_c00189{word-spacing:0.195063pt;}
.wsa_c00189{word-spacing:38.256533pt;}
._4_c00189{margin-left:-5.661967pt;}
._5_c00189{margin-left:-1.377235pt;}
._3_c00189{width:0.925811pt;}
._7_c00189{width:2.739509pt;}
._6_c00189{width:17.145271pt;}
._8_c00189{width:18.971527pt;}
._1_c00189{width:47.362694pt;}
._0_c00189{width:70.985376pt;}
._2_c00189{width:94.568947pt;}
.fs3_c00189{font-size:37.193600pt;}
.fs0_c00189{font-size:39.110400pt;}
.fs2_c00189{font-size:53.133867pt;}
.fs1_c00189{font-size:76.513067pt;}
.y0_c00189{bottom:0.000000pt;}
.y22_c00189{bottom:39.333333pt;}
.y21_c00189{bottom:72.934667pt;}
.y20_c00189{bottom:88.874667pt;}
.y1f_c00189{bottom:111.954667pt;}
.y1e_c00189{bottom:127.894667pt;}
.y1d_c00189{bottom:150.974667pt;}
.y1c_c00189{bottom:174.054667pt;}
.y1b_c00189{bottom:210.798667pt;}
.y1a_c00189{bottom:621.857333pt;}
.y19_c00189{bottom:636.469333pt;}
.y18_c00189{bottom:651.080000pt;}
.y17_c00189{bottom:665.692000pt;}
.y16_c00189{bottom:680.304000pt;}
.y15_c00189{bottom:694.916000pt;}
.y14_c00189{bottom:709.528000pt;}
.y13_c00189{bottom:724.140000pt;}
.y12_c00189{bottom:738.752000pt;}
.y11_c00189{bottom:753.364000pt;}
.y10_c00189{bottom:767.976000pt;}
.yf_c00189{bottom:797.198667pt;}
.ye_c00189{bottom:811.810667pt;}
.yd_c00189{bottom:826.422667pt;}
.yc_c00189{bottom:855.646667pt;}
.yb_c00189{bottom:870.258667pt;}
.ya_c00189{bottom:884.870667pt;}
.y9_c00189{bottom:899.482667pt;}
.y8_c00189{bottom:914.094667pt;}
.y7_c00189{bottom:928.706667pt;}
.y6_c00189{bottom:943.317333pt;}
.y5_c00189{bottom:957.929333pt;}
.y4_c00189{bottom:972.541333pt;}
.y3_c00189{bottom:987.153333pt;}
.y2_c00189{bottom:1001.765333pt;}
.y1_c00189{bottom:1016.377333pt;}
.h3_c00189{height:31.280681pt;}
.h2_c00189{height:32.006363pt;}
.h5_c00189{height:36.010648pt;}
.h7_c00189{height:46.518078pt;}
.h4_c00189{height:51.855535pt;}
.h6_c00189{height:52.578561pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w0_c00189{width:793.706667pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x4_c00189{left:113.385333pt;}
.x1_c00189{left:121.886667pt;}
.x2_c00189{left:127.796000pt;}
.x3_c00189{left:157.340000pt;}
.x5_c00189{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:0.893555;font-style:normal;font-weight:normal;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_390e706068d245daa2f0fd91.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.102051;font-style:normal;font-weight:normal;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_d7be6e7aa41174a9f3899dc4.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.083496;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.048828;font-style: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.000000px;}
.ls0_c00190{letter-spacing:0.087998px;}
.ls2_c00190{letter-spacing:0.098482px;}
.ls1_c00190{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00190{word-spacing:-26.575517px;}
.ws8_c00190{word-spacing:-26.487518px;}
.ws4_c00190{word-spacing:-19.128192px;}
.ws6_c00190{word-spacing:-18.769538px;}
.ws5_c00190{word-spacing:-14.824349px;}
.ws3_c00190{word-spacing:-11.918882px;}
.wsb_c00190{word-spacing:0.000000px;}
.ws9_c00190{word-spacing:0.043999px;}
.wsd_c00190{word-spacing:0.046284px;}
.wsc_c00190{word-spacing:0.056767px;}
.wsf_c00190{word-spacing:0.073250px;}
.wse_c00190{word-spacing:0.073800px;}
.ws7_c00190{word-spacing:0.175997px;}
.ws10_c00190{word-spacing:0.213446px;}
.wsa_c00190{word-spacing:0.219446px;}
.ws1_c00190{word-spacing:13.569061px;}
.ws0_c00190{word-spacing:54.749856px;}
._3_c00190{margin-left:-3.825638px;}
._0_c00190{margin-left:-1.075961px;}
._5_c00190{width:1.005737px;}
._4_c00190{width:19.905275px;}
._2_c00190{width:31.920170px;}
._7_c00190{width:53.283031px;}
._6_c00190{width:79.858548px;}
._8_c00190{width:106.390066px;}
._1_c00190{width:117.097076px;}
.fc6_c00190{color:rgb(0,0,207);}
.fc5_c00190{color:rgb(79,153,5);}
.fc3_c00190{color:rgb(33,74,135);}
.fc2_c00190{color:rgb(143,89,3);}
.fc4_c00190{color:rgb(207,92,0);}
.fc1_c00190{color:rgb(6,69,173);}
.fc0_c00190{color:rgb(0,0,0);}
.fs1_c00190{font-size:43.999200px;}
.fs0_c00190{font-size:59.775600px;}
.y0_c00190{bottom:0.000000px;}
.y25_c00190{bottom:44.250000px;}
.y24_c00190{bottom:96.919500px;}
.y23_c00190{bottom:113.358000px;}
.y22_c00190{bottom:129.796500px;}
.y21_c00190{bottom:146.235000px;}
.y20_c00190{bottom:162.673500px;}
.y1f_c00190{bottom:179.112000px;}
.y1e_c00190{bottom:195.550500px;}
.y1d_c00190{bottom:211.989000px;}
.y1c_c00190{bottom:228.427500px;}
.y1b_c00190{bottom:244.866000px;}
.y1a_c00190{bottom:261.304500px;}
.y19_c00190{bottom:294.180000px;}
.y18_c00190{bottom:310.618500px;}
.y17_c00190{bottom:327.057000px;}
.y16_c00190{bottom:359.934000px;}
.y15_c00190{bottom:376.372500px;}
.y14_c00190{bottom:392.811000px;}
.y13_c00190{bottom:409.249500px;}
.y12_c00190{bottom:425.688000px;}
.y11_c00190{bottom:442.125000px;}
.y10_c00190{bottom:458.563500px;}
.yf_c00190{bottom:475.002000px;}
.ye_c00190{bottom:491.440500px;}
.yd_c00190{bottom:507.879000px;}
.yc_c00190{bottom:524.317500px;}
.yb_c00190{bottom:540.756000px;}
.ya_c00190{bottom:573.633000px;}
.y9_c00190{bottom:590.071500px;}
.y8_c00190{bottom:606.508500px;}
.y7_c00190{bottom:639.385500px;}
.y6_c00190{bottom:672.262500px;}
.y5_c00190{bottom:688.327500px;}
.y4_c00190{bottom:1106.064000px;}
.y3_c00190{bottom:1123.998000px;}
.y2_c00190{bottom:1141.930500px;}
.y1_c00190{bottom:1159.863000px;}
.h3_c00190{height:35.190766px;}
.h4_c00190{height:36.007158px;}
.h2_c00190{height:52.332837px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w0_c00190{width:892.920000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:127.558500px;}
.x2_c00190{left:137.122500px;}
.x3_c00190{left:143.770500px;}
.x4_c00190{left:177.007500px;}
.x5_c00190{left:435.249000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls3_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.078221pt;}
.ls2_c00190{letter-spacing:0.087539pt;}
.ls1_c00190{letter-spacing:0.092873pt;}
.ws2_c00190{word-spacing:-23.622682pt;}
.ws8_c00190{word-spacing:-23.544461pt;}
.ws4_c00190{word-spacing:-17.002837pt;}
.ws6_c00190{word-spacing:-16.684034pt;}
.ws5_c00190{word-spacing:-13.177199pt;}
.ws3_c00190{word-spacing:-10.594562pt;}
.wsb_c00190{word-spacing:0.000000pt;}
.ws9_c00190{word-spacing:0.039110pt;}
.wsd_c00190{word-spacing:0.041141pt;}
.wsc_c00190{word-spacing:0.050460pt;}
.wsf_c00190{word-spacing:0.065111pt;}
.wse_c00190{word-spacing:0.065600pt;}
.ws7_c00190{word-spacing:0.156442pt;}
.ws10_c00190{word-spacing:0.189730pt;}
.wsa_c00190{word-spacing:0.195063pt;}
.ws1_c00190{word-spacing:12.061388pt;}
.ws0_c00190{word-spacing:48.666539pt;}
._3_c00190{margin-left:-3.400567pt;}
._0_c00190{margin-left:-0.956410pt;}
._5_c00190{width:0.893988pt;}
._4_c00190{width:17.693578pt;}
._2_c00190{width:28.373485pt;}
._7_c00190{width:47.362694pt;}
._6_c00190{width:70.985376pt;}
._8_c00190{width:94.568947pt;}
._1_c00190{width:104.086290pt;}
.fs1_c00190{font-size:39.110400pt;}
.fs0_c00190{font-size:53.133867pt;}
.y0_c00190{bottom:0.000000pt;}
.y25_c00190{bottom:39.333333pt;}
.y24_c00190{bottom:86.150667pt;}
.y23_c00190{bottom:100.762667pt;}
.y22_c00190{bottom:115.374667pt;}
.y21_c00190{bottom:129.986667pt;}
.y20_c00190{bottom:144.598667pt;}
.y1f_c00190{bottom:159.210667pt;}
.y1e_c00190{bottom:173.822667pt;}
.y1d_c00190{bottom:188.434667pt;}
.y1c_c00190{bottom:203.046667pt;}
.y1b_c00190{bottom:217.658667pt;}
.y1a_c00190{bottom:232.270667pt;}
.y19_c00190{bottom:261.493333pt;}
.y18_c00190{bottom:276.105333pt;}
.y17_c00190{bottom:290.717333pt;}
.y16_c00190{bottom:319.941333pt;}
.y15_c00190{bottom:334.553333pt;}
.y14_c00190{bottom:349.165333pt;}
.y13_c00190{bottom:363.777333pt;}
.y12_c00190{bottom:378.389333pt;}
.y11_c00190{bottom:393.000000pt;}
.y10_c00190{bottom:407.612000pt;}
.yf_c00190{bottom:422.224000pt;}
.ye_c00190{bottom:436.836000pt;}
.yd_c00190{bottom:451.448000pt;}
.yc_c00190{bottom:466.060000pt;}
.yb_c00190{bottom:480.672000pt;}
.ya_c00190{bottom:509.896000pt;}
.y9_c00190{bottom:524.508000pt;}
.y8_c00190{bottom:539.118667pt;}
.y7_c00190{bottom:568.342667pt;}
.y6_c00190{bottom:597.566667pt;}
.y5_c00190{bottom:611.846667pt;}
.y4_c00190{bottom:983.168000pt;}
.y3_c00190{bottom:999.109333pt;}
.y2_c00190{bottom:1015.049333pt;}
.y1_c00190{bottom:1030.989333pt;}
.h3_c00190{height:31.280681pt;}
.h4_c00190{height:32.006363pt;}
.h2_c00190{height:46.518078pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w0_c00190{width:793.706667pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:113.385333pt;}
.x2_c00190{left:121.886667pt;}
.x3_c00190{left:127.796000pt;}
.x4_c00190{left:157.340000pt;}
.x5_c00190{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dc18cea6ad080fab6f675b3.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:0.893555;font-style:normal;font-weight:normal;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_809ebc79073dc93fdaf265cb.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.083496;font-style:normal;font-weight:normal;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_34769086b0d11374159bbedb.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.048828;font-style: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;}
.v1_c00191{vertical-align:22.524000px;}
.ls3_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:0.087998px;}
.ls2_c00191{letter-spacing:0.098482px;}
.ls1_c00191{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00191{word-spacing:-33.713438px;}
.ws2_c00191{word-spacing:-26.575517px;}
.wsf_c00191{word-spacing:-26.487518px;}
.ws8_c00191{word-spacing:-23.599339px;}
.wsc_c00191{word-spacing:-19.128192px;}
.ws5_c00191{word-spacing:-18.769538px;}
.ws4_c00191{word-spacing:-14.943900px;}
.wsd_c00191{word-spacing:-14.824349px;}
.wsb_c00191{word-spacing:-11.918882px;}
.ws1_c00191{word-spacing:-9.988424px;}
.ws3_c00191{word-spacing:-9.987499px;}
.ws6_c00191{word-spacing:-5.649230px;}
.ws12_c00191{word-spacing:0.000000px;}
.ws10_c00191{word-spacing:0.043999px;}
.ws14_c00191{word-spacing:0.046284px;}
.ws13_c00191{word-spacing:0.056767px;}
.ws16_c00191{word-spacing:0.073250px;}
.ws15_c00191{word-spacing:0.073800px;}
.wse_c00191{word-spacing:0.175997px;}
.ws17_c00191{word-spacing:0.213446px;}
.ws11_c00191{word-spacing:0.219446px;}
.wsa_c00191{word-spacing:13.569061px;}
.ws0_c00191{word-spacing:43.038600px;}
.ws9_c00191{word-spacing:54.749856px;}
._0_c00191{margin-left:-6.369713px;}
._6_c00191{margin-left:-3.825638px;}
._3_c00191{margin-left:-1.075961px;}
._7_c00191{width:1.005737px;}
._2_c00191{width:2.879824px;}
._1_c00191{width:19.935816px;}
._5_c00191{width:31.920170px;}
._9_c00191{width:53.283031px;}
._8_c00191{width:79.858548px;}
._a_c00191{width:106.390066px;}
._4_c00191{width:117.097076px;}
.fc6_c00191{color:rgb(0,0,207);}
.fc5_c00191{color:rgb(79,153,5);}
.fc3_c00191{color:rgb(33,74,135);}
.fc2_c00191{color:rgb(143,89,3);}
.fc4_c00191{color:rgb(207,92,0);}
.fc1_c00191{color:rgb(6,69,173);}
.fc0_c00191{color:rgb(0,0,0);}
.fs3_c00191{font-size:41.842800px;}
.fs2_c00191{font-size:43.999200px;}
.fs1_c00191{font-size:59.775600px;}
.fs0_c00191{font-size:86.077200px;}
.y0_c00191{bottom:0.000000px;}
.y1f_c00191{bottom:44.250000px;}
.y1e_c00191{bottom:86.982000px;}
.y1d_c00191{bottom:103.420500px;}
.y1c_c00191{bottom:119.859000px;}
.y1b_c00191{bottom:152.736000px;}
.y1a_c00191{bottom:169.174500px;}
.y19_c00191{bottom:185.613000px;}
.y18_c00191{bottom:202.051500px;}
.y17_c00191{bottom:218.490000px;}
.y16_c00191{bottom:234.927000px;}
.y15_c00191{bottom:251.365500px;}
.y14_c00191{bottom:267.804000px;}
.y13_c00191{bottom:284.242500px;}
.y12_c00191{bottom:300.681000px;}
.y11_c00191{bottom:317.119500px;}
.y10_c00191{bottom:333.558000px;}
.yf_c00191{bottom:366.435000px;}
.ye_c00191{bottom:382.873500px;}
.yd_c00191{bottom:399.310500px;}
.yc_c00191{bottom:432.187500px;}
.yb_c00191{bottom:465.064500px;}
.ya_c00191{bottom:481.129500px;}
.y9_c00191{bottom:529.780500px;}
.y8_c00191{bottom:547.713000px;}
.y7_c00191{bottom:565.647000px;}
.y6_c00191{bottom:583.579500px;}
.y5_c00191{bottom:610.656000px;}
.y4_c00191{bottom:637.732500px;}
.y3_c00191{bottom:664.810500px;}
.y2_c00191{bottom:691.887000px;}
.y1_c00191{bottom:734.416500px;}
.h7_c00191{height:35.190766px;}
.h8_c00191{height:36.007158px;}
.h3_c00191{height:40.511979px;}
.h6_c00191{height:52.332837px;}
.h2_c00191{height:58.337477px;}
.h5_c00191{height:59.150881px;}
.h4_c00191{height:59.156881px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w0_c00191{width:892.920000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:127.558500px;}
.x2_c00191{left:137.122500px;}
.x3_c00191{left:143.770500px;}
.x4_c00191{left:435.249000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:20.021333pt;}
.ls3_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:0.078221pt;}
.ls2_c00191{letter-spacing:0.087539pt;}
.ls1_c00191{letter-spacing:0.092873pt;}
.ws7_c00191{word-spacing:-29.967501pt;}
.ws2_c00191{word-spacing:-23.622682pt;}
.wsf_c00191{word-spacing:-23.544461pt;}
.ws8_c00191{word-spacing:-20.977190pt;}
.wsc_c00191{word-spacing:-17.002837pt;}
.ws5_c00191{word-spacing:-16.684034pt;}
.ws4_c00191{word-spacing:-13.283467pt;}
.wsd_c00191{word-spacing:-13.177199pt;}
.wsb_c00191{word-spacing:-10.594562pt;}
.ws1_c00191{word-spacing:-8.878599pt;}
.ws3_c00191{word-spacing:-8.877777pt;}
.ws6_c00191{word-spacing:-5.021538pt;}
.ws12_c00191{word-spacing:0.000000pt;}
.ws10_c00191{word-spacing:0.039110pt;}
.ws14_c00191{word-spacing:0.041141pt;}
.ws13_c00191{word-spacing:0.050460pt;}
.ws16_c00191{word-spacing:0.065111pt;}
.ws15_c00191{word-spacing:0.065600pt;}
.wse_c00191{word-spacing:0.156442pt;}
.ws17_c00191{word-spacing:0.189730pt;}
.ws11_c00191{word-spacing:0.195063pt;}
.wsa_c00191{word-spacing:12.061388pt;}
.ws0_c00191{word-spacing:38.256533pt;}
.ws9_c00191{word-spacing:48.666539pt;}
._0_c00191{margin-left:-5.661967pt;}
._6_c00191{margin-left:-3.400567pt;}
._3_c00191{margin-left:-0.956410pt;}
._7_c00191{width:0.893988pt;}
._2_c00191{width:2.559843pt;}
._1_c00191{width:17.720725pt;}
._5_c00191{width:28.373485pt;}
._9_c00191{width:47.362694pt;}
._8_c00191{width:70.985376pt;}
._a_c00191{width:94.568947pt;}
._4_c00191{width:104.086290pt;}
.fs3_c00191{font-size:37.193600pt;}
.fs2_c00191{font-size:39.110400pt;}
.fs1_c00191{font-size:53.133867pt;}
.fs0_c00191{font-size:76.513067pt;}
.y0_c00191{bottom:0.000000pt;}
.y1f_c00191{bottom:39.333333pt;}
.y1e_c00191{bottom:77.317333pt;}
.y1d_c00191{bottom:91.929333pt;}
.y1c_c00191{bottom:106.541333pt;}
.y1b_c00191{bottom:135.765333pt;}
.y1a_c00191{bottom:150.377333pt;}
.y19_c00191{bottom:164.989333pt;}
.y18_c00191{bottom:179.601333pt;}
.y17_c00191{bottom:194.213333pt;}
.y16_c00191{bottom:208.824000pt;}
.y15_c00191{bottom:223.436000pt;}
.y14_c00191{bottom:238.048000pt;}
.y13_c00191{bottom:252.660000pt;}
.y12_c00191{bottom:267.272000pt;}
.y11_c00191{bottom:281.884000pt;}
.y10_c00191{bottom:296.496000pt;}
.yf_c00191{bottom:325.720000pt;}
.ye_c00191{bottom:340.332000pt;}
.yd_c00191{bottom:354.942667pt;}
.yc_c00191{bottom:384.166667pt;}
.yb_c00191{bottom:413.390667pt;}
.ya_c00191{bottom:427.670667pt;}
.y9_c00191{bottom:470.916000pt;}
.y8_c00191{bottom:486.856000pt;}
.y7_c00191{bottom:502.797333pt;}
.y6_c00191{bottom:518.737333pt;}
.y5_c00191{bottom:542.805333pt;}
.y4_c00191{bottom:566.873333pt;}
.y3_c00191{bottom:590.942667pt;}
.y2_c00191{bottom:615.010667pt;}
.y1_c00191{bottom:652.814667pt;}
.h7_c00191{height:31.280681pt;}
.h8_c00191{height:32.006363pt;}
.h3_c00191{height:36.010648pt;}
.h6_c00191{height:46.518078pt;}
.h2_c00191{height:51.855535pt;}
.h5_c00191{height:52.578561pt;}
.h4_c00191{height:52.583894pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w0_c00191{width:793.706667pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:113.385333pt;}
.x2_c00191{left:121.886667pt;}
.x3_c00191{left:127.796000pt;}
.x4_c00191{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d37f4527eb081375891635a1.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.083496;font-style:normal;font-weight:normal;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_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.048828;font-style:normal;font-weight:normal;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_98caaa6e46c2737efffcb1ae.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_37cd4412fa4cb05a66a2fc44.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.014648;font-style: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;}
.v1_c00192{vertical-align:22.518000px;}
.ls3_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.087998px;}
.ls2_c00192{letter-spacing:0.098482px;}
.ls1_c00192{letter-spacing:0.104482px;}
.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;}
}
.ws8_c00192{word-spacing:-33.713438px;}
.ws0_c00192{word-spacing:-26.575517px;}
.ws1_c00192{word-spacing:-26.487518px;}
.ws9_c00192{word-spacing:-23.599339px;}
.wse_c00192{word-spacing:-19.128192px;}
.ws6_c00192{word-spacing:-18.769538px;}
.ws5_c00192{word-spacing:-14.943900px;}
.wsf_c00192{word-spacing:-14.824349px;}
.wsd_c00192{word-spacing:-11.918882px;}
.ws3_c00192{word-spacing:-9.988424px;}
.ws4_c00192{word-spacing:-9.987499px;}
.wsa_c00192{word-spacing:-5.649230px;}
.ws7_c00192{word-spacing:-5.643230px;}
.ws13_c00192{word-spacing:0.000000px;}
.ws11_c00192{word-spacing:0.043999px;}
.ws14_c00192{word-spacing:0.056767px;}
.ws10_c00192{word-spacing:0.175997px;}
.ws12_c00192{word-spacing:0.219446px;}
.wsc_c00192{word-spacing:13.569061px;}
.ws2_c00192{word-spacing:43.038600px;}
.wsb_c00192{word-spacing:54.749856px;}
._0_c00192{margin-left:-6.369713px;}
._6_c00192{margin-left:-3.825638px;}
._3_c00192{margin-left:-1.075961px;}
._7_c00192{width:1.005737px;}
._2_c00192{width:2.907373px;}
._1_c00192{width:19.935816px;}
._5_c00192{width:31.920170px;}
._8_c00192{width:79.858548px;}
._4_c00192{width:117.097076px;}
.fc5_c00192{color:rgb(0,0,207);}
.fc6_c00192{color:rgb(6,69,173);}
.fc4_c00192{color:rgb(207,92,0);}
.fc3_c00192{color:rgb(33,74,135);}
.fc2_c00192{color:rgb(79,153,5);}
.fc1_c00192{color:rgb(143,89,3);}
.fc0_c00192{color:rgb(0,0,0);}
.fs3_c00192{font-size:41.842800px;}
.fs0_c00192{font-size:43.999200px;}
.fs2_c00192{font-size:59.775600px;}
.fs1_c00192{font-size:86.077200px;}
.y0_c00192{bottom:0.000000px;}
.y1e_c00192{bottom:44.250000px;}
.y1d_c00192{bottom:82.051500px;}
.y1c_c00192{bottom:98.490000px;}
.y1b_c00192{bottom:114.927000px;}
.y1a_c00192{bottom:147.804000px;}
.y19_c00192{bottom:164.242500px;}
.y18_c00192{bottom:180.681000px;}
.y17_c00192{bottom:213.558000px;}
.y16_c00192{bottom:246.435000px;}
.y15_c00192{bottom:262.498500px;}
.y14_c00192{bottom:310.500000px;}
.y13_c00192{bottom:328.432500px;}
.y12_c00192{bottom:346.366500px;}
.y11_c00192{bottom:364.299000px;}
.y10_c00192{bottom:391.164000px;}
.yf_c00192{bottom:418.029000px;}
.ye_c00192{bottom:444.894000px;}
.yd_c00192{bottom:471.757500px;}
.yc_c00192{bottom:513.996000px;}
.yb_c00192{bottom:979.041000px;}
.ya_c00192{bottom:995.479500px;}
.y9_c00192{bottom:1011.918000px;}
.y8_c00192{bottom:1028.356500px;}
.y7_c00192{bottom:1044.795000px;}
.y6_c00192{bottom:1061.232000px;}
.y5_c00192{bottom:1077.670500px;}
.y4_c00192{bottom:1094.109000px;}
.y3_c00192{bottom:1110.547500px;}
.y2_c00192{bottom:1126.986000px;}
.y1_c00192{bottom:1143.424500px;}
.h7_c00192{height:35.190766px;}
.h2_c00192{height:36.007158px;}
.h4_c00192{height:40.511979px;}
.h6_c00192{height:52.332837px;}
.h3_c00192{height:58.337477px;}
.h5_c00192{height:59.150881px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w0_c00192{width:892.920000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:127.558500px;}
.x1_c00192{left:137.122500px;}
.x4_c00192{left:143.770500px;}
.x2_c00192{left:177.007500px;}
.x5_c00192{left:435.249000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:20.016000pt;}
.ls3_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.078221pt;}
.ls2_c00192{letter-spacing:0.087539pt;}
.ls1_c00192{letter-spacing:0.092873pt;}
.ws8_c00192{word-spacing:-29.967501pt;}
.ws0_c00192{word-spacing:-23.622682pt;}
.ws1_c00192{word-spacing:-23.544461pt;}
.ws9_c00192{word-spacing:-20.977190pt;}
.wse_c00192{word-spacing:-17.002837pt;}
.ws6_c00192{word-spacing:-16.684034pt;}
.ws5_c00192{word-spacing:-13.283467pt;}
.wsf_c00192{word-spacing:-13.177199pt;}
.wsd_c00192{word-spacing:-10.594562pt;}
.ws3_c00192{word-spacing:-8.878599pt;}
.ws4_c00192{word-spacing:-8.877777pt;}
.wsa_c00192{word-spacing:-5.021538pt;}
.ws7_c00192{word-spacing:-5.016205pt;}
.ws13_c00192{word-spacing:0.000000pt;}
.ws11_c00192{word-spacing:0.039110pt;}
.ws14_c00192{word-spacing:0.050460pt;}
.ws10_c00192{word-spacing:0.156442pt;}
.ws12_c00192{word-spacing:0.195063pt;}
.wsc_c00192{word-spacing:12.061388pt;}
.ws2_c00192{word-spacing:38.256533pt;}
.wsb_c00192{word-spacing:48.666539pt;}
._0_c00192{margin-left:-5.661967pt;}
._6_c00192{margin-left:-3.400567pt;}
._3_c00192{margin-left:-0.956410pt;}
._7_c00192{width:0.893988pt;}
._2_c00192{width:2.584332pt;}
._1_c00192{width:17.720725pt;}
._5_c00192{width:28.373485pt;}
._8_c00192{width:70.985376pt;}
._4_c00192{width:104.086290pt;}
.fs3_c00192{font-size:37.193600pt;}
.fs0_c00192{font-size:39.110400pt;}
.fs2_c00192{font-size:53.133867pt;}
.fs1_c00192{font-size:76.513067pt;}
.y0_c00192{bottom:0.000000pt;}
.y1e_c00192{bottom:39.333333pt;}
.y1d_c00192{bottom:72.934667pt;}
.y1c_c00192{bottom:87.546667pt;}
.y1b_c00192{bottom:102.157333pt;}
.y1a_c00192{bottom:131.381333pt;}
.y19_c00192{bottom:145.993333pt;}
.y18_c00192{bottom:160.605333pt;}
.y17_c00192{bottom:189.829333pt;}
.y16_c00192{bottom:219.053333pt;}
.y15_c00192{bottom:233.332000pt;}
.y14_c00192{bottom:276.000000pt;}
.y13_c00192{bottom:291.940000pt;}
.y12_c00192{bottom:307.881333pt;}
.y11_c00192{bottom:323.821333pt;}
.y10_c00192{bottom:347.701333pt;}
.yf_c00192{bottom:371.581333pt;}
.ye_c00192{bottom:395.461333pt;}
.yd_c00192{bottom:419.340000pt;}
.yc_c00192{bottom:456.885333pt;}
.yb_c00192{bottom:870.258667pt;}
.ya_c00192{bottom:884.870667pt;}
.y9_c00192{bottom:899.482667pt;}
.y8_c00192{bottom:914.094667pt;}
.y7_c00192{bottom:928.706667pt;}
.y6_c00192{bottom:943.317333pt;}
.y5_c00192{bottom:957.929333pt;}
.y4_c00192{bottom:972.541333pt;}
.y3_c00192{bottom:987.153333pt;}
.y2_c00192{bottom:1001.765333pt;}
.y1_c00192{bottom:1016.377333pt;}
.h7_c00192{height:31.280681pt;}
.h2_c00192{height:32.006363pt;}
.h4_c00192{height:36.010648pt;}
.h6_c00192{height:46.518078pt;}
.h3_c00192{height:51.855535pt;}
.h5_c00192{height:52.578561pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w0_c00192{width:793.706667pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:113.385333pt;}
.x1_c00192{left:121.886667pt;}
.x4_c00192{left:127.796000pt;}
.x2_c00192{left:157.340000pt;}
.x5_c00192{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_756b381f6a88e3b3d72185ac.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.083496;font-style:normal;font-weight:normal;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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.014648;font-style:normal;font-weight:normal;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_0f0888c1f25b7f9233925fe2.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_316c68dc3fa765ed40490397.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.102051;font-style: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;}
.ls3_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.087998px;}
.ls1_c00193{letter-spacing:0.098482px;}
.ls2_c00193{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws7_c00193{word-spacing:-26.487518px;}
.wsd_c00193{word-spacing:-20.682358px;}
.ws14_c00193{word-spacing:-19.128192px;}
.wse_c00193{word-spacing:-18.769538px;}
.wsc_c00193{word-spacing:-16.856719px;}
.ws13_c00193{word-spacing:-11.918882px;}
.ws10_c00193{word-spacing:-10.221628px;}
.wsa_c00193{word-spacing:-9.988424px;}
.wsb_c00193{word-spacing:-9.987499px;}
.wsf_c00193{word-spacing:-6.395989px;}
.ws6_c00193{word-spacing:0.000000px;}
.ws0_c00193{word-spacing:0.043999px;}
.ws2_c00193{word-spacing:0.046284px;}
.ws3_c00193{word-spacing:0.056767px;}
.ws5_c00193{word-spacing:0.073250px;}
.ws4_c00193{word-spacing:0.073800px;}
.ws8_c00193{word-spacing:0.213446px;}
.ws12_c00193{word-spacing:13.569061px;}
.ws9_c00193{word-spacing:43.038600px;}
.ws11_c00193{word-spacing:54.749856px;}
._4_c00193{margin-left:-6.369713px;}
._7_c00193{margin-left:-3.586536px;}
._8_c00193{margin-left:-1.075961px;}
._3_c00193{width:1.041538px;}
._5_c00193{width:19.022635px;}
._6_c00193{width:37.086589px;}
._1_c00193{width:53.283031px;}
._0_c00193{width:79.858548px;}
._2_c00193{width:106.390066px;}
._9_c00193{width:117.097076px;}
.fc6_c00193{color:rgb(6,69,173);}
.fc5_c00193{color:rgb(207,92,0);}
.fc4_c00193{color:rgb(0,0,207);}
.fc3_c00193{color:rgb(143,89,3);}
.fc2_c00193{color:rgb(79,153,5);}
.fc1_c00193{color:rgb(0,0,0);}
.fc0_c00193{color:rgb(33,74,135);}
.fs0_c00193{font-size:43.999200px;}
.fs2_c00193{font-size:59.775600px;}
.fs1_c00193{font-size:86.077200px;}
.y0_c00193{bottom:0.000000px;}
.y21_c00193{bottom:44.250000px;}
.y20_c00193{bottom:82.051500px;}
.y1f_c00193{bottom:99.984000px;}
.y1e_c00193{bottom:128.377500px;}
.y1d_c00193{bottom:146.311500px;}
.y1c_c00193{bottom:174.705000px;}
.y1b_c00193{bottom:192.637500px;}
.y1a_c00193{bottom:221.032500px;}
.y19_c00193{bottom:249.427500px;}
.y18_c00193{bottom:293.863500px;}
.y17_c00193{bottom:765.342000px;}
.y16_c00193{bottom:781.780500px;}
.y15_c00193{bottom:798.219000px;}
.y14_c00193{bottom:814.657500px;}
.y13_c00193{bottom:831.096000px;}
.y12_c00193{bottom:847.534500px;}
.y11_c00193{bottom:863.973000px;}
.y10_c00193{bottom:880.411500px;}
.yf_c00193{bottom:896.848500px;}
.ye_c00193{bottom:913.287000px;}
.yd_c00193{bottom:929.725500px;}
.yc_c00193{bottom:962.602500px;}
.yb_c00193{bottom:979.041000px;}
.ya_c00193{bottom:995.479500px;}
.y9_c00193{bottom:1028.356500px;}
.y8_c00193{bottom:1044.795000px;}
.y7_c00193{bottom:1061.232000px;}
.y6_c00193{bottom:1077.670500px;}
.y5_c00193{bottom:1094.109000px;}
.y4_c00193{bottom:1110.547500px;}
.y3_c00193{bottom:1126.986000px;}
.y2_c00193{bottom:1143.424500px;}
.y1_c00193{bottom:1159.863000px;}
.h3_c00193{height:35.190766px;}
.h2_c00193{height:36.007158px;}
.h5_c00193{height:40.511979px;}
.h6_c00193{height:52.332837px;}
.h4_c00193{height:58.337477px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w0_c00193{width:892.920000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x4_c00193{left:127.558500px;}
.x2_c00193{left:137.122500px;}
.x1_c00193{left:143.770500px;}
.x3_c00193{left:177.007500px;}
.x5_c00193{left:435.249000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls3_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.078221pt;}
.ls1_c00193{letter-spacing:0.087539pt;}
.ls2_c00193{letter-spacing:0.092873pt;}
.ws1_c00193{word-spacing:-23.622682pt;}
.ws7_c00193{word-spacing:-23.544461pt;}
.wsd_c00193{word-spacing:-18.384318pt;}
.ws14_c00193{word-spacing:-17.002837pt;}
.wse_c00193{word-spacing:-16.684034pt;}
.wsc_c00193{word-spacing:-14.983750pt;}
.ws13_c00193{word-spacing:-10.594562pt;}
.ws10_c00193{word-spacing:-9.085891pt;}
.wsa_c00193{word-spacing:-8.878599pt;}
.wsb_c00193{word-spacing:-8.877777pt;}
.wsf_c00193{word-spacing:-5.685324pt;}
.ws6_c00193{word-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.039110pt;}
.ws2_c00193{word-spacing:0.041141pt;}
.ws3_c00193{word-spacing:0.050460pt;}
.ws5_c00193{word-spacing:0.065111pt;}
.ws4_c00193{word-spacing:0.065600pt;}
.ws8_c00193{word-spacing:0.189730pt;}
.ws12_c00193{word-spacing:12.061388pt;}
.ws9_c00193{word-spacing:38.256533pt;}
.ws11_c00193{word-spacing:48.666539pt;}
._4_c00193{margin-left:-5.661967pt;}
._7_c00193{margin-left:-3.188032pt;}
._8_c00193{margin-left:-0.956410pt;}
._3_c00193{width:0.925811pt;}
._5_c00193{width:16.909009pt;}
._6_c00193{width:32.965857pt;}
._1_c00193{width:47.362694pt;}
._0_c00193{width:70.985376pt;}
._2_c00193{width:94.568947pt;}
._9_c00193{width:104.086290pt;}
.fs0_c00193{font-size:39.110400pt;}
.fs2_c00193{font-size:53.133867pt;}
.fs1_c00193{font-size:76.513067pt;}
.y0_c00193{bottom:0.000000pt;}
.y21_c00193{bottom:39.333333pt;}
.y20_c00193{bottom:72.934667pt;}
.y1f_c00193{bottom:88.874667pt;}
.y1e_c00193{bottom:114.113333pt;}
.y1d_c00193{bottom:130.054667pt;}
.y1c_c00193{bottom:155.293333pt;}
.y1b_c00193{bottom:171.233333pt;}
.y1a_c00193{bottom:196.473333pt;}
.y19_c00193{bottom:221.713333pt;}
.y18_c00193{bottom:261.212000pt;}
.y17_c00193{bottom:680.304000pt;}
.y16_c00193{bottom:694.916000pt;}
.y15_c00193{bottom:709.528000pt;}
.y14_c00193{bottom:724.140000pt;}
.y13_c00193{bottom:738.752000pt;}
.y12_c00193{bottom:753.364000pt;}
.y11_c00193{bottom:767.976000pt;}
.y10_c00193{bottom:782.588000pt;}
.yf_c00193{bottom:797.198667pt;}
.ye_c00193{bottom:811.810667pt;}
.yd_c00193{bottom:826.422667pt;}
.yc_c00193{bottom:855.646667pt;}
.yb_c00193{bottom:870.258667pt;}
.ya_c00193{bottom:884.870667pt;}
.y9_c00193{bottom:914.094667pt;}
.y8_c00193{bottom:928.706667pt;}
.y7_c00193{bottom:943.317333pt;}
.y6_c00193{bottom:957.929333pt;}
.y5_c00193{bottom:972.541333pt;}
.y4_c00193{bottom:987.153333pt;}
.y3_c00193{bottom:1001.765333pt;}
.y2_c00193{bottom:1016.377333pt;}
.y1_c00193{bottom:1030.989333pt;}
.h3_c00193{height:31.280681pt;}
.h2_c00193{height:32.006363pt;}
.h5_c00193{height:36.010648pt;}
.h6_c00193{height:46.518078pt;}
.h4_c00193{height:51.855535pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w0_c00193{width:793.706667pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x4_c00193{left:113.385333pt;}
.x2_c00193{left:121.886667pt;}
.x1_c00193{left:127.796000pt;}
.x3_c00193{left:157.340000pt;}
.x5_c00193{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1c8c62533a7fc8b6810b76d.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_d2df692ba73d0d26fc694bae.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls3_c00194{letter-spacing:0.000000px;}
.ls1_c00194{letter-spacing:0.087998px;}
.ls2_c00194{letter-spacing:0.098482px;}
.ls0_c00194{letter-spacing:0.104482px;}
.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;}
}
.ws4_c00194{word-spacing:-26.575517px;}
.ws3_c00194{word-spacing:-26.487518px;}
.ws1_c00194{word-spacing:-18.769538px;}
.ws0_c00194{word-spacing:-14.824349px;}
.ws7_c00194{word-spacing:0.000000px;}
.ws5_c00194{word-spacing:0.043999px;}
.ws9_c00194{word-spacing:0.046284px;}
.ws8_c00194{word-spacing:0.056767px;}
.wsb_c00194{word-spacing:0.073250px;}
.wsa_c00194{word-spacing:0.073800px;}
.ws2_c00194{word-spacing:0.175997px;}
.wsc_c00194{word-spacing:0.213446px;}
.ws6_c00194{word-spacing:0.219446px;}
._1_c00194{margin-left:-3.825638px;}
._3_c00194{width:1.005737px;}
._2_c00194{width:19.905275px;}
._0_c00194{width:31.920170px;}
._5_c00194{width:53.283031px;}
._4_c00194{width:79.858548px;}
._6_c00194{width:106.390066px;}
.fc5_c00194{color:rgb(0,0,207);}
.fc4_c00194{color:rgb(79,153,5);}
.fc3_c00194{color:rgb(207,92,0);}
.fc2_c00194{color:rgb(33,74,135);}
.fc1_c00194{color:rgb(143,89,3);}
.fc0_c00194{color:rgb(0,0,0);}
.fs1_c00194{font-size:43.999200px;}
.fs0_c00194{font-size:59.775600px;}
.y0_c00194{bottom:0.000000px;}
.y23_c00194{bottom:44.250000px;}
.y22_c00194{bottom:492.045000px;}
.y21_c00194{bottom:508.483500px;}
.y20_c00194{bottom:524.920500px;}
.y1f_c00194{bottom:541.359000px;}
.y1e_c00194{bottom:557.797500px;}
.y1d_c00194{bottom:574.236000px;}
.y1c_c00194{bottom:590.674500px;}
.y1b_c00194{bottom:607.113000px;}
.y1a_c00194{bottom:623.551500px;}
.y19_c00194{bottom:639.990000px;}
.y18_c00194{bottom:656.428500px;}
.y17_c00194{bottom:689.304000px;}
.y16_c00194{bottom:705.742500px;}
.y15_c00194{bottom:722.181000px;}
.y14_c00194{bottom:755.058000px;}
.y13_c00194{bottom:771.496500px;}
.y12_c00194{bottom:787.935000px;}
.y11_c00194{bottom:804.373500px;}
.y10_c00194{bottom:820.812000px;}
.yf_c00194{bottom:837.250500px;}
.ye_c00194{bottom:853.689000px;}
.yd_c00194{bottom:870.126000px;}
.yc_c00194{bottom:886.564500px;}
.yb_c00194{bottom:903.003000px;}
.ya_c00194{bottom:919.441500px;}
.y9_c00194{bottom:935.880000px;}
.y8_c00194{bottom:968.757000px;}
.y7_c00194{bottom:985.195500px;}
.y6_c00194{bottom:1001.634000px;}
.y5_c00194{bottom:1034.509500px;}
.y4_c00194{bottom:1067.386500px;}
.y3_c00194{bottom:1083.451500px;}
.y2_c00194{bottom:1141.930500px;}
.y1_c00194{bottom:1159.863000px;}
.h3_c00194{height:35.190766px;}
.h4_c00194{height:36.007158px;}
.h2_c00194{height:52.332837px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w0_c00194{width:892.920000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:127.558500px;}
.x2_c00194{left:137.122500px;}
.x3_c00194{left:143.770500px;}
.x4_c00194{left:177.007500px;}
.x5_c00194{left:435.249000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls3_c00194{letter-spacing:0.000000pt;}
.ls1_c00194{letter-spacing:0.078221pt;}
.ls2_c00194{letter-spacing:0.087539pt;}
.ls0_c00194{letter-spacing:0.092873pt;}
.ws4_c00194{word-spacing:-23.622682pt;}
.ws3_c00194{word-spacing:-23.544461pt;}
.ws1_c00194{word-spacing:-16.684034pt;}
.ws0_c00194{word-spacing:-13.177199pt;}
.ws7_c00194{word-spacing:0.000000pt;}
.ws5_c00194{word-spacing:0.039110pt;}
.ws9_c00194{word-spacing:0.041141pt;}
.ws8_c00194{word-spacing:0.050460pt;}
.wsb_c00194{word-spacing:0.065111pt;}
.wsa_c00194{word-spacing:0.065600pt;}
.ws2_c00194{word-spacing:0.156442pt;}
.wsc_c00194{word-spacing:0.189730pt;}
.ws6_c00194{word-spacing:0.195063pt;}
._1_c00194{margin-left:-3.400567pt;}
._3_c00194{width:0.893988pt;}
._2_c00194{width:17.693578pt;}
._0_c00194{width:28.373485pt;}
._5_c00194{width:47.362694pt;}
._4_c00194{width:70.985376pt;}
._6_c00194{width:94.568947pt;}
.fs1_c00194{font-size:39.110400pt;}
.fs0_c00194{font-size:53.133867pt;}
.y0_c00194{bottom:0.000000pt;}
.y23_c00194{bottom:39.333333pt;}
.y22_c00194{bottom:437.373333pt;}
.y21_c00194{bottom:451.985333pt;}
.y20_c00194{bottom:466.596000pt;}
.y1f_c00194{bottom:481.208000pt;}
.y1e_c00194{bottom:495.820000pt;}
.y1d_c00194{bottom:510.432000pt;}
.y1c_c00194{bottom:525.044000pt;}
.y1b_c00194{bottom:539.656000pt;}
.y1a_c00194{bottom:554.268000pt;}
.y19_c00194{bottom:568.880000pt;}
.y18_c00194{bottom:583.492000pt;}
.y17_c00194{bottom:612.714667pt;}
.y16_c00194{bottom:627.326667pt;}
.y15_c00194{bottom:641.938667pt;}
.y14_c00194{bottom:671.162667pt;}
.y13_c00194{bottom:685.774667pt;}
.y12_c00194{bottom:700.386667pt;}
.y11_c00194{bottom:714.998667pt;}
.y10_c00194{bottom:729.610667pt;}
.yf_c00194{bottom:744.222667pt;}
.ye_c00194{bottom:758.834667pt;}
.yd_c00194{bottom:773.445333pt;}
.yc_c00194{bottom:788.057333pt;}
.yb_c00194{bottom:802.669333pt;}
.ya_c00194{bottom:817.281333pt;}
.y9_c00194{bottom:831.893333pt;}
.y8_c00194{bottom:861.117333pt;}
.y7_c00194{bottom:875.729333pt;}
.y6_c00194{bottom:890.341333pt;}
.y5_c00194{bottom:919.564000pt;}
.y4_c00194{bottom:948.788000pt;}
.y3_c00194{bottom:963.068000pt;}
.y2_c00194{bottom:1015.049333pt;}
.y1_c00194{bottom:1030.989333pt;}
.h3_c00194{height:31.280681pt;}
.h4_c00194{height:32.006363pt;}
.h2_c00194{height:46.518078pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w0_c00194{width:793.706667pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:113.385333pt;}
.x2_c00194{left:121.886667pt;}
.x3_c00194{left:127.796000pt;}
.x4_c00194{left:157.340000pt;}
.x5_c00194{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31edd5a7d76f5cac32fcc4f8.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:0.893555;font-style:normal;font-weight:normal;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_a377513e2ff540085d964b0d.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.083496;font-style:normal;font-weight:normal;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_ecbca5fbeab0c75164049980.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.014648;font-style:normal;font-weight:normal;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_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.048828;font-style: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.000000px;}
.ls0_c00195{letter-spacing:0.087998px;}
.ls2_c00195{letter-spacing:0.098482px;}
.ls1_c00195{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00195{word-spacing:-26.575517px;}
.wsf_c00195{word-spacing:-26.487518px;}
.ws5_c00195{word-spacing:-19.725948px;}
.wsc_c00195{word-spacing:-19.128192px;}
.ws6_c00195{word-spacing:-18.769538px;}
.ws8_c00195{word-spacing:-18.112007px;}
.ws4_c00195{word-spacing:-15.900310px;}
.wsd_c00195{word-spacing:-14.824349px;}
.ws7_c00195{word-spacing:-14.346144px;}
.wsb_c00195{word-spacing:-11.918882px;}
.ws1_c00195{word-spacing:-9.988424px;}
.ws3_c00195{word-spacing:-9.987499px;}
.ws12_c00195{word-spacing:0.000000px;}
.ws10_c00195{word-spacing:0.043999px;}
.ws14_c00195{word-spacing:0.046284px;}
.ws13_c00195{word-spacing:0.056767px;}
.ws16_c00195{word-spacing:0.073250px;}
.ws15_c00195{word-spacing:0.073800px;}
.wse_c00195{word-spacing:0.175997px;}
.ws17_c00195{word-spacing:0.213446px;}
.ws11_c00195{word-spacing:0.219446px;}
.wsa_c00195{word-spacing:13.569061px;}
.ws0_c00195{word-spacing:43.038600px;}
.ws9_c00195{word-spacing:54.749856px;}
._0_c00195{margin-left:-6.369713px;}
._3_c00195{margin-left:-3.586536px;}
._4_c00195{margin-left:-1.075961px;}
._7_c00195{width:1.005737px;}
._1_c00195{width:19.470226px;}
._2_c00195{width:21.240744px;}
._6_c00195{width:31.920170px;}
._9_c00195{width:53.283031px;}
._8_c00195{width:79.858548px;}
._a_c00195{width:106.390066px;}
._5_c00195{width:117.097076px;}
.fc6_c00195{color:rgb(0,0,207);}
.fc5_c00195{color:rgb(79,153,5);}
.fc3_c00195{color:rgb(33,74,135);}
.fc2_c00195{color:rgb(143,89,3);}
.fc4_c00195{color:rgb(207,92,0);}
.fc1_c00195{color:rgb(6,69,173);}
.fc0_c00195{color:rgb(0,0,0);}
.fs2_c00195{font-size:43.999200px;}
.fs1_c00195{font-size:59.775600px;}
.fs0_c00195{font-size:86.077200px;}
.y0_c00195{bottom:0.000000px;}
.y2c_c00195{bottom:44.250000px;}
.y2b_c00195{bottom:96.919500px;}
.y2a_c00195{bottom:113.358000px;}
.y29_c00195{bottom:129.796500px;}
.y28_c00195{bottom:146.235000px;}
.y27_c00195{bottom:162.673500px;}
.y26_c00195{bottom:179.112000px;}
.y25_c00195{bottom:195.550500px;}
.y24_c00195{bottom:211.989000px;}
.y23_c00195{bottom:228.427500px;}
.y22_c00195{bottom:244.866000px;}
.y21_c00195{bottom:261.304500px;}
.y20_c00195{bottom:294.180000px;}
.y1f_c00195{bottom:310.618500px;}
.y1e_c00195{bottom:327.057000px;}
.y1d_c00195{bottom:359.934000px;}
.y1c_c00195{bottom:376.372500px;}
.y1b_c00195{bottom:392.811000px;}
.y1a_c00195{bottom:409.249500px;}
.y19_c00195{bottom:425.688000px;}
.y18_c00195{bottom:442.125000px;}
.y17_c00195{bottom:458.563500px;}
.y16_c00195{bottom:475.002000px;}
.y15_c00195{bottom:491.440500px;}
.y14_c00195{bottom:507.879000px;}
.y13_c00195{bottom:524.317500px;}
.y12_c00195{bottom:540.756000px;}
.y11_c00195{bottom:573.633000px;}
.y10_c00195{bottom:590.071500px;}
.yf_c00195{bottom:606.508500px;}
.ye_c00195{bottom:639.385500px;}
.yd_c00195{bottom:672.262500px;}
.yc_c00195{bottom:688.327500px;}
.yb_c00195{bottom:794.352000px;}
.ya_c00195{bottom:812.284500px;}
.y9_c00195{bottom:830.217000px;}
.y8_c00195{bottom:848.149500px;}
.y7_c00195{bottom:898.176000px;}
.y6_c00195{bottom:916.108500px;}
.y5_c00195{bottom:966.135000px;}
.y4_c00195{bottom:984.067500px;}
.y3_c00195{bottom:1034.094000px;}
.y2_c00195{bottom:1084.120500px;}
.y1_c00195{bottom:1159.863000px;}
.h5_c00195{height:35.190766px;}
.h6_c00195{height:36.007158px;}
.h3_c00195{height:40.511979px;}
.h4_c00195{height:52.332837px;}
.h2_c00195{height:58.337477px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w0_c00195{width:892.920000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:127.558500px;}
.x2_c00195{left:137.122500px;}
.x3_c00195{left:143.770500px;}
.x4_c00195{left:177.007500px;}
.x5_c00195{left:435.249000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls3_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.078221pt;}
.ls2_c00195{letter-spacing:0.087539pt;}
.ls1_c00195{letter-spacing:0.092873pt;}
.ws2_c00195{word-spacing:-23.622682pt;}
.wsf_c00195{word-spacing:-23.544461pt;}
.ws5_c00195{word-spacing:-17.534176pt;}
.wsc_c00195{word-spacing:-17.002837pt;}
.ws6_c00195{word-spacing:-16.684034pt;}
.ws8_c00195{word-spacing:-16.099562pt;}
.ws4_c00195{word-spacing:-14.133609pt;}
.wsd_c00195{word-spacing:-13.177199pt;}
.ws7_c00195{word-spacing:-12.752128pt;}
.wsb_c00195{word-spacing:-10.594562pt;}
.ws1_c00195{word-spacing:-8.878599pt;}
.ws3_c00195{word-spacing:-8.877777pt;}
.ws12_c00195{word-spacing:0.000000pt;}
.ws10_c00195{word-spacing:0.039110pt;}
.ws14_c00195{word-spacing:0.041141pt;}
.ws13_c00195{word-spacing:0.050460pt;}
.ws16_c00195{word-spacing:0.065111pt;}
.ws15_c00195{word-spacing:0.065600pt;}
.wse_c00195{word-spacing:0.156442pt;}
.ws17_c00195{word-spacing:0.189730pt;}
.ws11_c00195{word-spacing:0.195063pt;}
.wsa_c00195{word-spacing:12.061388pt;}
.ws0_c00195{word-spacing:38.256533pt;}
.ws9_c00195{word-spacing:48.666539pt;}
._0_c00195{margin-left:-5.661967pt;}
._3_c00195{margin-left:-3.188032pt;}
._4_c00195{margin-left:-0.956410pt;}
._7_c00195{width:0.893988pt;}
._1_c00195{width:17.306867pt;}
._2_c00195{width:18.880661pt;}
._6_c00195{width:28.373485pt;}
._9_c00195{width:47.362694pt;}
._8_c00195{width:70.985376pt;}
._a_c00195{width:94.568947pt;}
._5_c00195{width:104.086290pt;}
.fs2_c00195{font-size:39.110400pt;}
.fs1_c00195{font-size:53.133867pt;}
.fs0_c00195{font-size:76.513067pt;}
.y0_c00195{bottom:0.000000pt;}
.y2c_c00195{bottom:39.333333pt;}
.y2b_c00195{bottom:86.150667pt;}
.y2a_c00195{bottom:100.762667pt;}
.y29_c00195{bottom:115.374667pt;}
.y28_c00195{bottom:129.986667pt;}
.y27_c00195{bottom:144.598667pt;}
.y26_c00195{bottom:159.210667pt;}
.y25_c00195{bottom:173.822667pt;}
.y24_c00195{bottom:188.434667pt;}
.y23_c00195{bottom:203.046667pt;}
.y22_c00195{bottom:217.658667pt;}
.y21_c00195{bottom:232.270667pt;}
.y20_c00195{bottom:261.493333pt;}
.y1f_c00195{bottom:276.105333pt;}
.y1e_c00195{bottom:290.717333pt;}
.y1d_c00195{bottom:319.941333pt;}
.y1c_c00195{bottom:334.553333pt;}
.y1b_c00195{bottom:349.165333pt;}
.y1a_c00195{bottom:363.777333pt;}
.y19_c00195{bottom:378.389333pt;}
.y18_c00195{bottom:393.000000pt;}
.y17_c00195{bottom:407.612000pt;}
.y16_c00195{bottom:422.224000pt;}
.y15_c00195{bottom:436.836000pt;}
.y14_c00195{bottom:451.448000pt;}
.y13_c00195{bottom:466.060000pt;}
.y12_c00195{bottom:480.672000pt;}
.y11_c00195{bottom:509.896000pt;}
.y10_c00195{bottom:524.508000pt;}
.yf_c00195{bottom:539.118667pt;}
.ye_c00195{bottom:568.342667pt;}
.yd_c00195{bottom:597.566667pt;}
.yc_c00195{bottom:611.846667pt;}
.yb_c00195{bottom:706.090667pt;}
.ya_c00195{bottom:722.030667pt;}
.y9_c00195{bottom:737.970667pt;}
.y8_c00195{bottom:753.910667pt;}
.y7_c00195{bottom:798.378667pt;}
.y6_c00195{bottom:814.318667pt;}
.y5_c00195{bottom:858.786667pt;}
.y4_c00195{bottom:874.726667pt;}
.y3_c00195{bottom:919.194667pt;}
.y2_c00195{bottom:963.662667pt;}
.y1_c00195{bottom:1030.989333pt;}
.h5_c00195{height:31.280681pt;}
.h6_c00195{height:32.006363pt;}
.h3_c00195{height:36.010648pt;}
.h4_c00195{height:46.518078pt;}
.h2_c00195{height:51.855535pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w0_c00195{width:793.706667pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:113.385333pt;}
.x2_c00195{left:121.886667pt;}
.x3_c00195{left:127.796000pt;}
.x4_c00195{left:157.340000pt;}
.x5_c00195{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56a462913681fcd3fbd2c7b4.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:0.893555;font-style:normal;font-weight:normal;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_c9ac345e3df714a1acf9ca8a.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.083496;font-style:normal;font-weight:normal;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_94081670def7738ce71ef597.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.102051;font-style:normal;font-weight:normal;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_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_a8ad9a15a82cb51dc2fd0a5a.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.048828;font-style: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;}
.ls3_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.087998px;}
.ls2_c00196{letter-spacing:0.098482px;}
.ls1_c00196{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00196{word-spacing:-26.575517px;}
.wsf_c00196{word-spacing:-26.487518px;}
.ws5_c00196{word-spacing:-19.905275px;}
.wsc_c00196{word-spacing:-19.128192px;}
.ws6_c00196{word-spacing:-18.769538px;}
.ws4_c00196{word-spacing:-16.139412px;}
.wsd_c00196{word-spacing:-14.824349px;}
.wsb_c00196{word-spacing:-11.918882px;}
.ws1_c00196{word-spacing:-9.988424px;}
.ws3_c00196{word-spacing:-9.987499px;}
.ws8_c00196{word-spacing:-7.412174px;}
.ws7_c00196{word-spacing:-3.646312px;}
.ws12_c00196{word-spacing:0.000000px;}
.ws10_c00196{word-spacing:0.043999px;}
.ws14_c00196{word-spacing:0.046284px;}
.ws13_c00196{word-spacing:0.056767px;}
.ws16_c00196{word-spacing:0.073250px;}
.ws15_c00196{word-spacing:0.073800px;}
.wse_c00196{word-spacing:0.175997px;}
.ws11_c00196{word-spacing:0.219446px;}
.wsa_c00196{word-spacing:13.569061px;}
.ws0_c00196{word-spacing:43.038600px;}
.ws9_c00196{word-spacing:54.749856px;}
._0_c00196{margin-left:-6.369713px;}
._3_c00196{margin-left:-3.586536px;}
._4_c00196{margin-left:-1.075961px;}
._7_c00196{width:1.005737px;}
._1_c00196{width:19.403328px;}
._6_c00196{width:31.920170px;}
._2_c00196{width:42.628912px;}
._9_c00196{width:53.283031px;}
._8_c00196{width:79.858548px;}
._a_c00196{width:106.390066px;}
._5_c00196{width:117.097076px;}
.fc6_c00196{color:rgb(0,0,207);}
.fc5_c00196{color:rgb(79,153,5);}
.fc3_c00196{color:rgb(33,74,135);}
.fc2_c00196{color:rgb(143,89,3);}
.fc4_c00196{color:rgb(207,92,0);}
.fc1_c00196{color:rgb(6,69,173);}
.fc0_c00196{color:rgb(0,0,0);}
.fs2_c00196{font-size:43.999200px;}
.fs1_c00196{font-size:59.775600px;}
.fs0_c00196{font-size:86.077200px;}
.y0_c00196{bottom:0.000000px;}
.y1f_c00196{bottom:44.250000px;}
.y1e_c00196{bottom:86.982000px;}
.y1d_c00196{bottom:119.859000px;}
.y1c_c00196{bottom:136.297500px;}
.y1b_c00196{bottom:152.736000px;}
.y1a_c00196{bottom:169.174500px;}
.y19_c00196{bottom:185.613000px;}
.y18_c00196{bottom:202.051500px;}
.y17_c00196{bottom:218.490000px;}
.y16_c00196{bottom:234.927000px;}
.y15_c00196{bottom:251.365500px;}
.y14_c00196{bottom:267.804000px;}
.y13_c00196{bottom:284.242500px;}
.y12_c00196{bottom:300.681000px;}
.y11_c00196{bottom:333.558000px;}
.y10_c00196{bottom:349.996500px;}
.yf_c00196{bottom:366.435000px;}
.ye_c00196{bottom:399.310500px;}
.yd_c00196{bottom:432.187500px;}
.yc_c00196{bottom:448.252500px;}
.yb_c00196{bottom:495.994500px;}
.ya_c00196{bottom:513.927000px;}
.y9_c00196{bottom:531.859500px;}
.y8_c00196{bottom:549.793500px;}
.y7_c00196{bottom:576.615000px;}
.y6_c00196{bottom:594.547500px;}
.y5_c00196{bottom:621.369000px;}
.y4_c00196{bottom:639.301500px;}
.y3_c00196{bottom:666.123000px;}
.y2_c00196{bottom:692.944500px;}
.y1_c00196{bottom:735.139500px;}
.h5_c00196{height:35.190766px;}
.h6_c00196{height:36.007158px;}
.h3_c00196{height:40.511979px;}
.h4_c00196{height:52.332837px;}
.h2_c00196{height:58.337477px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w0_c00196{width:892.920000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:127.558500px;}
.x2_c00196{left:137.122500px;}
.x3_c00196{left:143.770500px;}
.x4_c00196{left:435.249000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls3_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.078221pt;}
.ls2_c00196{letter-spacing:0.087539pt;}
.ls1_c00196{letter-spacing:0.092873pt;}
.ws2_c00196{word-spacing:-23.622682pt;}
.wsf_c00196{word-spacing:-23.544461pt;}
.ws5_c00196{word-spacing:-17.693578pt;}
.wsc_c00196{word-spacing:-17.002837pt;}
.ws6_c00196{word-spacing:-16.684034pt;}
.ws4_c00196{word-spacing:-14.346144pt;}
.wsd_c00196{word-spacing:-13.177199pt;}
.wsb_c00196{word-spacing:-10.594562pt;}
.ws1_c00196{word-spacing:-8.878599pt;}
.ws3_c00196{word-spacing:-8.877777pt;}
.ws8_c00196{word-spacing:-6.588599pt;}
.ws7_c00196{word-spacing:-3.241166pt;}
.ws12_c00196{word-spacing:0.000000pt;}
.ws10_c00196{word-spacing:0.039110pt;}
.ws14_c00196{word-spacing:0.041141pt;}
.ws13_c00196{word-spacing:0.050460pt;}
.ws16_c00196{word-spacing:0.065111pt;}
.ws15_c00196{word-spacing:0.065600pt;}
.wse_c00196{word-spacing:0.156442pt;}
.ws11_c00196{word-spacing:0.195063pt;}
.wsa_c00196{word-spacing:12.061388pt;}
.ws0_c00196{word-spacing:38.256533pt;}
.ws9_c00196{word-spacing:48.666539pt;}
._0_c00196{margin-left:-5.661967pt;}
._3_c00196{margin-left:-3.188032pt;}
._4_c00196{margin-left:-0.956410pt;}
._7_c00196{width:0.893988pt;}
._1_c00196{width:17.247403pt;}
._6_c00196{width:28.373485pt;}
._2_c00196{width:37.892366pt;}
._9_c00196{width:47.362694pt;}
._8_c00196{width:70.985376pt;}
._a_c00196{width:94.568947pt;}
._5_c00196{width:104.086290pt;}
.fs2_c00196{font-size:39.110400pt;}
.fs1_c00196{font-size:53.133867pt;}
.fs0_c00196{font-size:76.513067pt;}
.y0_c00196{bottom:0.000000pt;}
.y1f_c00196{bottom:39.333333pt;}
.y1e_c00196{bottom:77.317333pt;}
.y1d_c00196{bottom:106.541333pt;}
.y1c_c00196{bottom:121.153333pt;}
.y1b_c00196{bottom:135.765333pt;}
.y1a_c00196{bottom:150.377333pt;}
.y19_c00196{bottom:164.989333pt;}
.y18_c00196{bottom:179.601333pt;}
.y17_c00196{bottom:194.213333pt;}
.y16_c00196{bottom:208.824000pt;}
.y15_c00196{bottom:223.436000pt;}
.y14_c00196{bottom:238.048000pt;}
.y13_c00196{bottom:252.660000pt;}
.y12_c00196{bottom:267.272000pt;}
.y11_c00196{bottom:296.496000pt;}
.y10_c00196{bottom:311.108000pt;}
.yf_c00196{bottom:325.720000pt;}
.ye_c00196{bottom:354.942667pt;}
.yd_c00196{bottom:384.166667pt;}
.yc_c00196{bottom:398.446667pt;}
.yb_c00196{bottom:440.884000pt;}
.ya_c00196{bottom:456.824000pt;}
.y9_c00196{bottom:472.764000pt;}
.y8_c00196{bottom:488.705333pt;}
.y7_c00196{bottom:512.546667pt;}
.y6_c00196{bottom:528.486667pt;}
.y5_c00196{bottom:552.328000pt;}
.y4_c00196{bottom:568.268000pt;}
.y3_c00196{bottom:592.109333pt;}
.y2_c00196{bottom:615.950667pt;}
.y1_c00196{bottom:653.457333pt;}
.h5_c00196{height:31.280681pt;}
.h6_c00196{height:32.006363pt;}
.h3_c00196{height:36.010648pt;}
.h4_c00196{height:46.518078pt;}
.h2_c00196{height:51.855535pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w0_c00196{width:793.706667pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:113.385333pt;}
.x2_c00196{left:121.886667pt;}
.x3_c00196{left:127.796000pt;}
.x4_c00196{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.048828;font-style:normal;font-weight:normal;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_b90c1ac5b7877751c63fb1b8.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_d3aaf44383331e64dc9612b0.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_92635d89fcdf1093c22a65c0.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_fb7faca115e8e3e20c893e4d.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:1.014648;font-style: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;}
.ls3_c00197{letter-spacing:0.000000px;}
.ls1_c00197{letter-spacing:0.087998px;}
.ls2_c00197{letter-spacing:0.098482px;}
.ls0_c00197{letter-spacing:0.104482px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-26.575517px;}
.ws0_c00197{word-spacing:-26.487518px;}
.wsf_c00197{word-spacing:-19.128192px;}
.ws9_c00197{word-spacing:-18.769538px;}
.ws10_c00197{word-spacing:-14.824349px;}
.wsb_c00197{word-spacing:-13.808164px;}
.wse_c00197{word-spacing:-11.918882px;}
.ws8_c00197{word-spacing:-11.596466px;}
.wsa_c00197{word-spacing:-10.042301px;}
.ws5_c00197{word-spacing:-9.988424px;}
.ws6_c00197{word-spacing:-9.987499px;}
.ws7_c00197{word-spacing:-7.830604px;}
.ws13_c00197{word-spacing:0.000000px;}
.ws2_c00197{word-spacing:0.043999px;}
.ws11_c00197{word-spacing:0.175997px;}
.ws3_c00197{word-spacing:0.213446px;}
.ws12_c00197{word-spacing:0.219446px;}
.wsd_c00197{word-spacing:13.569061px;}
.ws4_c00197{word-spacing:43.038600px;}
.wsc_c00197{word-spacing:54.749856px;}
._1_c00197{margin-left:-6.369713px;}
._7_c00197{margin-left:-3.825638px;}
._4_c00197{margin-left:-1.075961px;}
._0_c00197{width:1.041538px;}
._8_c00197{width:19.905275px;}
._3_c00197{width:29.902901px;}
._6_c00197{width:31.920170px;}
._2_c00197{width:34.314520px;}
._5_c00197{width:117.097076px;}
.fc5_c00197{color:rgb(0,0,207);}
.fc4_c00197{color:rgb(143,89,3);}
.fc3_c00197{color:rgb(79,153,5);}
.fc6_c00197{color:rgb(6,69,173);}
.fc2_c00197{color:rgb(207,92,0);}
.fc1_c00197{color:rgb(0,0,0);}
.fc0_c00197{color:rgb(33,74,135);}
.fs0_c00197{font-size:43.999200px;}
.fs2_c00197{font-size:59.775600px;}
.fs1_c00197{font-size:86.077200px;}
.y0_c00197{bottom:0.000000px;}
.y1f_c00197{bottom:44.250000px;}
.y1e_c00197{bottom:82.051500px;}
.y1d_c00197{bottom:98.490000px;}
.y1c_c00197{bottom:114.927000px;}
.y1b_c00197{bottom:147.804000px;}
.y1a_c00197{bottom:180.681000px;}
.y19_c00197{bottom:196.746000px;}
.y18_c00197{bottom:243.456000px;}
.y17_c00197{bottom:261.388500px;}
.y16_c00197{bottom:279.322500px;}
.y15_c00197{bottom:297.255000px;}
.y14_c00197{bottom:323.904000px;}
.y13_c00197{bottom:341.836500px;}
.y12_c00197{bottom:368.487000px;}
.y11_c00197{bottom:386.419500px;}
.y10_c00197{bottom:413.070000px;}
.yf_c00197{bottom:439.719000px;}
.ye_c00197{bottom:481.741500px;}
.yd_c00197{bottom:946.164000px;}
.yc_c00197{bottom:962.602500px;}
.yb_c00197{bottom:979.041000px;}
.ya_c00197{bottom:995.479500px;}
.y9_c00197{bottom:1011.918000px;}
.y8_c00197{bottom:1028.356500px;}
.y7_c00197{bottom:1044.795000px;}
.y6_c00197{bottom:1061.232000px;}
.y5_c00197{bottom:1077.670500px;}
.y4_c00197{bottom:1094.109000px;}
.y3_c00197{bottom:1110.547500px;}
.y2_c00197{bottom:1143.424500px;}
.y1_c00197{bottom:1159.863000px;}
.h6_c00197{height:35.190766px;}
.h2_c00197{height:36.007158px;}
.h4_c00197{height:40.511979px;}
.h5_c00197{height:52.332837px;}
.h3_c00197{height:58.337477px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w0_c00197{width:892.920000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x3_c00197{left:127.558500px;}
.x1_c00197{left:137.122500px;}
.x2_c00197{left:177.007500px;}
.x4_c00197{left:435.249000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls3_c00197{letter-spacing:0.000000pt;}
.ls1_c00197{letter-spacing:0.078221pt;}
.ls2_c00197{letter-spacing:0.087539pt;}
.ls0_c00197{letter-spacing:0.092873pt;}
.ws1_c00197{word-spacing:-23.622682pt;}
.ws0_c00197{word-spacing:-23.544461pt;}
.wsf_c00197{word-spacing:-17.002837pt;}
.ws9_c00197{word-spacing:-16.684034pt;}
.ws10_c00197{word-spacing:-13.177199pt;}
.wsb_c00197{word-spacing:-12.273923pt;}
.wse_c00197{word-spacing:-10.594562pt;}
.ws8_c00197{word-spacing:-10.307970pt;}
.wsa_c00197{word-spacing:-8.926490pt;}
.ws5_c00197{word-spacing:-8.878599pt;}
.ws6_c00197{word-spacing:-8.877777pt;}
.ws7_c00197{word-spacing:-6.960537pt;}
.ws13_c00197{word-spacing:0.000000pt;}
.ws2_c00197{word-spacing:0.039110pt;}
.ws11_c00197{word-spacing:0.156442pt;}
.ws3_c00197{word-spacing:0.189730pt;}
.ws12_c00197{word-spacing:0.195063pt;}
.wsd_c00197{word-spacing:12.061388pt;}
.ws4_c00197{word-spacing:38.256533pt;}
.wsc_c00197{word-spacing:48.666539pt;}
._1_c00197{margin-left:-5.661967pt;}
._7_c00197{margin-left:-3.400567pt;}
._4_c00197{margin-left:-0.956410pt;}
._0_c00197{width:0.925811pt;}
._8_c00197{width:17.693578pt;}
._3_c00197{width:26.580356pt;}
._6_c00197{width:28.373485pt;}
._2_c00197{width:30.501795pt;}
._5_c00197{width:104.086290pt;}
.fs0_c00197{font-size:39.110400pt;}
.fs2_c00197{font-size:53.133867pt;}
.fs1_c00197{font-size:76.513067pt;}
.y0_c00197{bottom:0.000000pt;}
.y1f_c00197{bottom:39.333333pt;}
.y1e_c00197{bottom:72.934667pt;}
.y1d_c00197{bottom:87.546667pt;}
.y1c_c00197{bottom:102.157333pt;}
.y1b_c00197{bottom:131.381333pt;}
.y1a_c00197{bottom:160.605333pt;}
.y19_c00197{bottom:174.885333pt;}
.y18_c00197{bottom:216.405333pt;}
.y17_c00197{bottom:232.345333pt;}
.y16_c00197{bottom:248.286667pt;}
.y15_c00197{bottom:264.226667pt;}
.y14_c00197{bottom:287.914667pt;}
.y13_c00197{bottom:303.854667pt;}
.y12_c00197{bottom:327.544000pt;}
.y11_c00197{bottom:343.484000pt;}
.y10_c00197{bottom:367.173333pt;}
.yf_c00197{bottom:390.861333pt;}
.ye_c00197{bottom:428.214667pt;}
.yd_c00197{bottom:841.034667pt;}
.yc_c00197{bottom:855.646667pt;}
.yb_c00197{bottom:870.258667pt;}
.ya_c00197{bottom:884.870667pt;}
.y9_c00197{bottom:899.482667pt;}
.y8_c00197{bottom:914.094667pt;}
.y7_c00197{bottom:928.706667pt;}
.y6_c00197{bottom:943.317333pt;}
.y5_c00197{bottom:957.929333pt;}
.y4_c00197{bottom:972.541333pt;}
.y3_c00197{bottom:987.153333pt;}
.y2_c00197{bottom:1016.377333pt;}
.y1_c00197{bottom:1030.989333pt;}
.h6_c00197{height:31.280681pt;}
.h2_c00197{height:32.006363pt;}
.h4_c00197{height:36.010648pt;}
.h5_c00197{height:46.518078pt;}
.h3_c00197{height:51.855535pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w0_c00197{width:793.706667pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x3_c00197{left:113.385333pt;}
.x1_c00197{left:121.886667pt;}
.x2_c00197{left:157.340000pt;}
.x4_c00197{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ee0420166223a0955ce9b12.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.083496;font-style:normal;font-weight:normal;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_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.014648;font-style:normal;font-weight:normal;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_c3c14ceefaf3e8deab562b1a.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_b20c36ddbb82849197425532.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls3_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.087998px;}
.ls1_c00198{letter-spacing:0.098482px;}
.ls2_c00198{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws8_c00198{word-spacing:-26.487518px;}
.wsf_c00198{word-spacing:-18.769538px;}
.wse_c00198{word-spacing:-10.161852px;}
.wsb_c00198{word-spacing:-9.988424px;}
.wsc_c00198{word-spacing:-9.987499px;}
.ws11_c00198{word-spacing:-8.906564px;}
.wsd_c00198{word-spacing:-6.336214px;}
.ws10_c00198{word-spacing:-5.080926px;}
.ws2_c00198{word-spacing:0.000000px;}
.ws4_c00198{word-spacing:0.043999px;}
.ws5_c00198{word-spacing:0.046284px;}
.ws3_c00198{word-spacing:0.056767px;}
.ws7_c00198{word-spacing:0.073250px;}
.ws6_c00198{word-spacing:0.073800px;}
.ws9_c00198{word-spacing:0.213446px;}
.ws0_c00198{word-spacing:0.219446px;}
.wsa_c00198{word-spacing:43.038600px;}
._4_c00198{margin-left:-1.549390px;}
._3_c00198{width:1.041538px;}
._5_c00198{width:37.236130px;}
._6_c00198{width:39.737526px;}
._1_c00198{width:53.283031px;}
._0_c00198{width:79.858548px;}
._2_c00198{width:106.390066px;}
.fc5_c00198{color:rgb(207,92,0);}
.fc4_c00198{color:rgb(0,0,207);}
.fc3_c00198{color:rgb(79,153,5);}
.fc2_c00198{color:rgb(33,74,135);}
.fc1_c00198{color:rgb(143,89,3);}
.fc0_c00198{color:rgb(0,0,0);}
.fs0_c00198{font-size:43.999200px;}
.fs2_c00198{font-size:59.775600px;}
.fs1_c00198{font-size:86.077200px;}
.y0_c00198{bottom:0.000000px;}
.y22_c00198{bottom:44.250000px;}
.y21_c00198{bottom:82.051500px;}
.y20_c00198{bottom:99.984000px;}
.y1f_c00198{bottom:125.949000px;}
.y1e_c00198{bottom:143.881500px;}
.y1d_c00198{bottom:169.846500px;}
.y1c_c00198{bottom:195.811500px;}
.y1b_c00198{bottom:237.148500px;}
.y1a_c00198{bottom:699.589500px;}
.y19_c00198{bottom:716.028000px;}
.y18_c00198{bottom:732.465000px;}
.y17_c00198{bottom:748.903500px;}
.y16_c00198{bottom:765.342000px;}
.y15_c00198{bottom:781.780500px;}
.y14_c00198{bottom:798.219000px;}
.y13_c00198{bottom:814.657500px;}
.y12_c00198{bottom:831.096000px;}
.y11_c00198{bottom:847.534500px;}
.y10_c00198{bottom:863.973000px;}
.yf_c00198{bottom:896.848500px;}
.ye_c00198{bottom:913.287000px;}
.yd_c00198{bottom:929.725500px;}
.yc_c00198{bottom:962.602500px;}
.yb_c00198{bottom:979.041000px;}
.ya_c00198{bottom:995.479500px;}
.y9_c00198{bottom:1011.918000px;}
.y8_c00198{bottom:1028.356500px;}
.y7_c00198{bottom:1044.795000px;}
.y6_c00198{bottom:1061.232000px;}
.y5_c00198{bottom:1077.670500px;}
.y4_c00198{bottom:1094.109000px;}
.y3_c00198{bottom:1110.547500px;}
.y2_c00198{bottom:1126.986000px;}
.y1_c00198{bottom:1143.424500px;}
.h3_c00198{height:35.190766px;}
.h2_c00198{height:36.007158px;}
.h5_c00198{height:40.511979px;}
.h6_c00198{height:52.332837px;}
.h4_c00198{height:58.337477px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w0_c00198{width:892.920000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x4_c00198{left:127.558500px;}
.x1_c00198{left:137.122500px;}
.x2_c00198{left:143.770500px;}
.x3_c00198{left:177.007500px;}
.x5_c00198{left:435.249000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls3_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.078221pt;}
.ls1_c00198{letter-spacing:0.087539pt;}
.ls2_c00198{letter-spacing:0.092873pt;}
.ws1_c00198{word-spacing:-23.622682pt;}
.ws8_c00198{word-spacing:-23.544461pt;}
.wsf_c00198{word-spacing:-16.684034pt;}
.wse_c00198{word-spacing:-9.032757pt;}
.wsb_c00198{word-spacing:-8.878599pt;}
.wsc_c00198{word-spacing:-8.877777pt;}
.ws11_c00198{word-spacing:-7.916946pt;}
.wsd_c00198{word-spacing:-5.632190pt;}
.ws10_c00198{word-spacing:-4.516379pt;}
.ws2_c00198{word-spacing:0.000000pt;}
.ws4_c00198{word-spacing:0.039110pt;}
.ws5_c00198{word-spacing:0.041141pt;}
.ws3_c00198{word-spacing:0.050460pt;}
.ws7_c00198{word-spacing:0.065111pt;}
.ws6_c00198{word-spacing:0.065600pt;}
.ws9_c00198{word-spacing:0.189730pt;}
.ws0_c00198{word-spacing:0.195063pt;}
.wsa_c00198{word-spacing:38.256533pt;}
._4_c00198{margin-left:-1.377235pt;}
._3_c00198{width:0.925811pt;}
._5_c00198{width:33.098782pt;}
._6_c00198{width:35.322245pt;}
._1_c00198{width:47.362694pt;}
._0_c00198{width:70.985376pt;}
._2_c00198{width:94.568947pt;}
.fs0_c00198{font-size:39.110400pt;}
.fs2_c00198{font-size:53.133867pt;}
.fs1_c00198{font-size:76.513067pt;}
.y0_c00198{bottom:0.000000pt;}
.y22_c00198{bottom:39.333333pt;}
.y21_c00198{bottom:72.934667pt;}
.y20_c00198{bottom:88.874667pt;}
.y1f_c00198{bottom:111.954667pt;}
.y1e_c00198{bottom:127.894667pt;}
.y1d_c00198{bottom:150.974667pt;}
.y1c_c00198{bottom:174.054667pt;}
.y1b_c00198{bottom:210.798667pt;}
.y1a_c00198{bottom:621.857333pt;}
.y19_c00198{bottom:636.469333pt;}
.y18_c00198{bottom:651.080000pt;}
.y17_c00198{bottom:665.692000pt;}
.y16_c00198{bottom:680.304000pt;}
.y15_c00198{bottom:694.916000pt;}
.y14_c00198{bottom:709.528000pt;}
.y13_c00198{bottom:724.140000pt;}
.y12_c00198{bottom:738.752000pt;}
.y11_c00198{bottom:753.364000pt;}
.y10_c00198{bottom:767.976000pt;}
.yf_c00198{bottom:797.198667pt;}
.ye_c00198{bottom:811.810667pt;}
.yd_c00198{bottom:826.422667pt;}
.yc_c00198{bottom:855.646667pt;}
.yb_c00198{bottom:870.258667pt;}
.ya_c00198{bottom:884.870667pt;}
.y9_c00198{bottom:899.482667pt;}
.y8_c00198{bottom:914.094667pt;}
.y7_c00198{bottom:928.706667pt;}
.y6_c00198{bottom:943.317333pt;}
.y5_c00198{bottom:957.929333pt;}
.y4_c00198{bottom:972.541333pt;}
.y3_c00198{bottom:987.153333pt;}
.y2_c00198{bottom:1001.765333pt;}
.y1_c00198{bottom:1016.377333pt;}
.h3_c00198{height:31.280681pt;}
.h2_c00198{height:32.006363pt;}
.h5_c00198{height:36.010648pt;}
.h6_c00198{height:46.518078pt;}
.h4_c00198{height:51.855535pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w0_c00198{width:793.706667pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x4_c00198{left:113.385333pt;}
.x1_c00198{left:121.886667pt;}
.x2_c00198{left:127.796000pt;}
.x3_c00198{left:157.340000pt;}
.x5_c00198{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:0.893555;font-style:normal;font-weight:normal;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_4f1c394dae86623bd30d6e58.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_5c89869011c1c6ec3c9f8232.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_cb6bc38369b114fa4672fbe2.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_023af3f4596643c82f3cd794.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_3de14761809725843bb3773c.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.000000;font-style: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;}
.ls3_c00199{letter-spacing:0.000000px;}
.ls0_c00199{letter-spacing:0.087998px;}
.ls2_c00199{letter-spacing:0.098482px;}
.ls1_c00199{letter-spacing:0.104482px;}
.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;}
}
.ws6_c00199{word-spacing:-26.575517px;}
.wsd_c00199{word-spacing:-26.487518px;}
.ws5_c00199{word-spacing:-19.427070px;}
.wsb_c00199{word-spacing:-18.769538px;}
.ws4_c00199{word-spacing:-18.112007px;}
.ws1_c00199{word-spacing:-17.589629px;}
.ws2_c00199{word-spacing:-17.574026px;}
.ws3_c00199{word-spacing:-17.514251px;}
.ws8_c00199{word-spacing:-15.601432px;}
.ws7_c00199{word-spacing:-15.560971px;}
.wsa_c00199{word-spacing:-14.764573px;}
.ws9_c00199{word-spacing:-12.433325px;}
.ws0_c00199{word-spacing:-7.536144px;}
.ws11_c00199{word-spacing:0.000000px;}
.wse_c00199{word-spacing:0.043999px;}
.ws12_c00199{word-spacing:0.056767px;}
.wsc_c00199{word-spacing:0.175997px;}
.ws10_c00199{word-spacing:0.213446px;}
.wsf_c00199{word-spacing:0.219446px;}
._a_c00199{margin-left:-1040.732606px;}
._6_c00199{margin-left:-4.124516px;}
._8_c00199{margin-left:-2.869229px;}
._0_c00199{margin-left:-1.075961px;}
._9_c00199{width:1.005737px;}
._4_c00199{width:19.128192px;}
._2_c00199{width:21.758318px;}
._1_c00199{width:23.492633px;}
._3_c00199{width:29.809451px;}
._7_c00199{width:31.979946px;}
._5_c00199{width:39.140287px;}
.fc6_c00199{color:rgb(0,0,207);}
.fc5_c00199{color:rgb(79,153,5);}
.fc3_c00199{color:rgb(33,74,135);}
.fc2_c00199{color:rgb(143,89,3);}
.fc4_c00199{color:rgb(207,92,0);}
.fc1_c00199{color:rgb(6,69,173);}
.fc0_c00199{color:rgb(0,0,0);}
.fs2_c00199{font-size:31.015800px;}
.fs1_c00199{font-size:43.999200px;}
.fs0_c00199{font-size:59.775600px;}
.y0_c00199{bottom:0.000000px;}
.y38_c00199{bottom:44.250000px;}
.y37_c00199{bottom:86.982000px;}
.y36_c00199{bottom:103.420500px;}
.y35_c00199{bottom:136.297500px;}
.y34_c00199{bottom:169.174500px;}
.y33_c00199{bottom:185.613000px;}
.y32_c00199{bottom:202.051500px;}
.y31_c00199{bottom:218.490000px;}
.y30_c00199{bottom:234.927000px;}
.y2f_c00199{bottom:251.365500px;}
.y2e_c00199{bottom:267.804000px;}
.y2d_c00199{bottom:284.242500px;}
.y2c_c00199{bottom:300.681000px;}
.y2b_c00199{bottom:317.119500px;}
.y2a_c00199{bottom:333.558000px;}
.y29_c00199{bottom:366.435000px;}
.y28_c00199{bottom:382.873500px;}
.y27_c00199{bottom:399.310500px;}
.y26_c00199{bottom:415.749000px;}
.y25_c00199{bottom:432.187500px;}
.y24_c00199{bottom:448.626000px;}
.y23_c00199{bottom:465.064500px;}
.y22_c00199{bottom:481.503000px;}
.y21_c00199{bottom:497.941500px;}
.y20_c00199{bottom:514.380000px;}
.y1f_c00199{bottom:530.818500px;}
.y1e_c00199{bottom:547.257000px;}
.y1d_c00199{bottom:563.695500px;}
.y1c_c00199{bottom:596.571000px;}
.y1b_c00199{bottom:613.009500px;}
.y1a_c00199{bottom:645.886500px;}
.y19_c00199{bottom:662.325000px;}
.y18_c00199{bottom:678.763500px;}
.y17_c00199{bottom:711.640500px;}
.y16_c00199{bottom:744.516000px;}
.y15_c00199{bottom:777.393000px;}
.y14_c00199{bottom:793.831500px;}
.y13_c00199{bottom:810.270000px;}
.y12_c00199{bottom:826.708500px;}
.y11_c00199{bottom:842.773500px;}
.y10_c00199{bottom:859.212000px;}
.yf_c00199{bottom:875.650500px;}
.ye_c00199{bottom:908.526000px;}
.yd_c00199{bottom:924.964500px;}
.yc_c00199{bottom:941.403000px;}
.yb_c00199{bottom:957.841500px;}
.ya_c00199{bottom:974.280000px;}
.y9_c00199{bottom:990.718500px;}
.y8_c00199{bottom:1006.783500px;}
.y7_c00199{bottom:1052.266500px;}
.y6_c00199{bottom:1070.199000px;}
.y5_c00199{bottom:1088.131500px;}
.y4_c00199{bottom:1106.064000px;}
.y3_c00199{bottom:1123.998000px;}
.y2_c00199{bottom:1141.930500px;}
.y1_c00199{bottom:1159.863000px;}
.h3_c00199{height:35.190766px;}
.h4_c00199{height:36.007158px;}
.h2_c00199{height:52.332837px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w0_c00199{width:892.920000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:127.558500px;}
.x2_c00199{left:137.122500px;}
.x3_c00199{left:163.713000px;}
.x4_c00199{left:183.654000px;}
.x5_c00199{left:196.948500px;}
.x6_c00199{left:435.249000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls3_c00199{letter-spacing:0.000000pt;}
.ls0_c00199{letter-spacing:0.078221pt;}
.ls2_c00199{letter-spacing:0.087539pt;}
.ls1_c00199{letter-spacing:0.092873pt;}
.ws6_c00199{word-spacing:-23.622682pt;}
.wsd_c00199{word-spacing:-23.544461pt;}
.ws5_c00199{word-spacing:-17.268507pt;}
.wsb_c00199{word-spacing:-16.684034pt;}
.ws4_c00199{word-spacing:-16.099562pt;}
.ws1_c00199{word-spacing:-15.635226pt;}
.ws2_c00199{word-spacing:-15.621357pt;}
.ws3_c00199{word-spacing:-15.568223pt;}
.ws8_c00199{word-spacing:-13.867939pt;}
.ws7_c00199{word-spacing:-13.831974pt;}
.wsa_c00199{word-spacing:-13.124065pt;}
.ws9_c00199{word-spacing:-11.051844pt;}
.ws0_c00199{word-spacing:-6.698795pt;}
.ws11_c00199{word-spacing:0.000000pt;}
.wse_c00199{word-spacing:0.039110pt;}
.ws12_c00199{word-spacing:0.050460pt;}
.wsc_c00199{word-spacing:0.156442pt;}
.ws10_c00199{word-spacing:0.189730pt;}
.wsf_c00199{word-spacing:0.195063pt;}
._a_c00199{margin-left:-925.095650pt;}
._6_c00199{margin-left:-3.666237pt;}
._8_c00199{margin-left:-2.550426pt;}
._0_c00199{margin-left:-0.956410pt;}
._9_c00199{width:0.893988pt;}
._4_c00199{width:17.002837pt;}
._2_c00199{width:19.340727pt;}
._1_c00199{width:20.882340pt;}
._3_c00199{width:26.497290pt;}
._7_c00199{width:28.426619pt;}
._5_c00199{width:34.791366pt;}
.fs2_c00199{font-size:27.569600pt;}
.fs1_c00199{font-size:39.110400pt;}
.fs0_c00199{font-size:53.133867pt;}
.y0_c00199{bottom:0.000000pt;}
.y38_c00199{bottom:39.333333pt;}
.y37_c00199{bottom:77.317333pt;}
.y36_c00199{bottom:91.929333pt;}
.y35_c00199{bottom:121.153333pt;}
.y34_c00199{bottom:150.377333pt;}
.y33_c00199{bottom:164.989333pt;}
.y32_c00199{bottom:179.601333pt;}
.y31_c00199{bottom:194.213333pt;}
.y30_c00199{bottom:208.824000pt;}
.y2f_c00199{bottom:223.436000pt;}
.y2e_c00199{bottom:238.048000pt;}
.y2d_c00199{bottom:252.660000pt;}
.y2c_c00199{bottom:267.272000pt;}
.y2b_c00199{bottom:281.884000pt;}
.y2a_c00199{bottom:296.496000pt;}
.y29_c00199{bottom:325.720000pt;}
.y28_c00199{bottom:340.332000pt;}
.y27_c00199{bottom:354.942667pt;}
.y26_c00199{bottom:369.554667pt;}
.y25_c00199{bottom:384.166667pt;}
.y24_c00199{bottom:398.778667pt;}
.y23_c00199{bottom:413.390667pt;}
.y22_c00199{bottom:428.002667pt;}
.y21_c00199{bottom:442.614667pt;}
.y20_c00199{bottom:457.226667pt;}
.y1f_c00199{bottom:471.838667pt;}
.y1e_c00199{bottom:486.450667pt;}
.y1d_c00199{bottom:501.062667pt;}
.y1c_c00199{bottom:530.285333pt;}
.y1b_c00199{bottom:544.897333pt;}
.y1a_c00199{bottom:574.121333pt;}
.y19_c00199{bottom:588.733333pt;}
.y18_c00199{bottom:603.345333pt;}
.y17_c00199{bottom:632.569333pt;}
.y16_c00199{bottom:661.792000pt;}
.y15_c00199{bottom:691.016000pt;}
.y14_c00199{bottom:705.628000pt;}
.y13_c00199{bottom:720.240000pt;}
.y12_c00199{bottom:734.852000pt;}
.y11_c00199{bottom:749.132000pt;}
.y10_c00199{bottom:763.744000pt;}
.yf_c00199{bottom:778.356000pt;}
.ye_c00199{bottom:807.578667pt;}
.yd_c00199{bottom:822.190667pt;}
.yc_c00199{bottom:836.802667pt;}
.yb_c00199{bottom:851.414667pt;}
.ya_c00199{bottom:866.026667pt;}
.y9_c00199{bottom:880.638667pt;}
.y8_c00199{bottom:894.918667pt;}
.y7_c00199{bottom:935.348000pt;}
.y6_c00199{bottom:951.288000pt;}
.y5_c00199{bottom:967.228000pt;}
.y4_c00199{bottom:983.168000pt;}
.y3_c00199{bottom:999.109333pt;}
.y2_c00199{bottom:1015.049333pt;}
.y1_c00199{bottom:1030.989333pt;}
.h3_c00199{height:31.280681pt;}
.h4_c00199{height:32.006363pt;}
.h2_c00199{height:46.518078pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w0_c00199{width:793.706667pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:113.385333pt;}
.x2_c00199{left:121.886667pt;}
.x3_c00199{left:145.522667pt;}
.x4_c00199{left:163.248000pt;}
.x5_c00199{left:175.065333pt;}
.x6_c00199{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.048828;font-style:normal;font-weight:normal;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_cf370b64796c0908bb34e66d.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.083496;font-style:normal;font-weight:normal;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_500a7ae89a99e97912bc20a4.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.893555;font-style:normal;font-weight:normal;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_5a92b37422fce090b02f4f10.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.102051;font-style:normal;font-weight:normal;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_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.014648;font-style: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;}
.ls3_c00200{letter-spacing:0.000000px;}
.ls1_c00200{letter-spacing:0.087998px;}
.ls2_c00200{letter-spacing:0.098482px;}
.ls0_c00200{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00200{word-spacing:-26.487518px;}
.ws8_c00200{word-spacing:-23.491811px;}
.ws7_c00200{word-spacing:-19.666172px;}
.ws11_c00200{word-spacing:-19.427070px;}
.ws9_c00200{word-spacing:-18.769538px;}
.ws10_c00200{word-spacing:-18.112007px;}
.wsd_c00200{word-spacing:-17.589629px;}
.wse_c00200{word-spacing:-17.574026px;}
.wsf_c00200{word-spacing:-17.514251px;}
.ws13_c00200{word-spacing:-15.601432px;}
.ws12_c00200{word-spacing:-15.560971px;}
.ws15_c00200{word-spacing:-14.764573px;}
.ws14_c00200{word-spacing:-12.433325px;}
.wsb_c00200{word-spacing:-11.895344px;}
.ws5_c00200{word-spacing:-9.988424px;}
.ws6_c00200{word-spacing:-9.987499px;}
.wsa_c00200{word-spacing:-8.129482px;}
.wsc_c00200{word-spacing:-7.536144px;}
.ws18_c00200{word-spacing:0.000000px;}
.ws2_c00200{word-spacing:0.043999px;}
.ws16_c00200{word-spacing:0.175997px;}
.ws3_c00200{word-spacing:0.213446px;}
.ws17_c00200{word-spacing:0.219446px;}
.ws4_c00200{word-spacing:43.038600px;}
._9_c00200{margin-left:-4.124516px;}
._b_c00200{margin-left:-2.869229px;}
._1_c00200{margin-left:-1.549390px;}
._0_c00200{width:1.041538px;}
._2_c00200{width:17.608088px;}
._7_c00200{width:19.128192px;}
._5_c00200{width:21.758318px;}
._4_c00200{width:22.890101px;}
._6_c00200{width:29.809451px;}
._a_c00200{width:31.979946px;}
._3_c00200{width:33.726082px;}
._8_c00200{width:39.140287px;}
.fc5_c00200{color:rgb(0,0,207);}
.fc4_c00200{color:rgb(143,89,3);}
.fc3_c00200{color:rgb(79,153,5);}
.fc6_c00200{color:rgb(6,69,173);}
.fc2_c00200{color:rgb(207,92,0);}
.fc1_c00200{color:rgb(0,0,0);}
.fc0_c00200{color:rgb(33,74,135);}
.fs0_c00200{font-size:43.999200px;}
.fs2_c00200{font-size:59.775600px;}
.fs1_c00200{font-size:86.077200px;}
.y0_c00200{bottom:0.000000px;}
.y20_c00200{bottom:44.250000px;}
.y1f_c00200{bottom:86.982000px;}
.y1e_c00200{bottom:103.420500px;}
.y1d_c00200{bottom:119.859000px;}
.y1c_c00200{bottom:136.297500px;}
.y1b_c00200{bottom:152.362500px;}
.y1a_c00200{bottom:201.298500px;}
.y19_c00200{bottom:219.232500px;}
.y18_c00200{bottom:237.165000px;}
.y17_c00200{bottom:255.097500px;}
.y16_c00200{bottom:273.030000px;}
.y15_c00200{bottom:290.962500px;}
.y14_c00200{bottom:308.895000px;}
.y13_c00200{bottom:336.087000px;}
.y12_c00200{bottom:354.019500px;}
.y11_c00200{bottom:381.211500px;}
.y10_c00200{bottom:399.144000px;}
.yf_c00200{bottom:426.334500px;}
.ye_c00200{bottom:453.526500px;}
.yd_c00200{bottom:496.221000px;}
.yc_c00200{bottom:962.602500px;}
.yb_c00200{bottom:979.041000px;}
.ya_c00200{bottom:995.479500px;}
.y9_c00200{bottom:1011.918000px;}
.y8_c00200{bottom:1028.356500px;}
.y7_c00200{bottom:1044.795000px;}
.y6_c00200{bottom:1061.232000px;}
.y5_c00200{bottom:1077.670500px;}
.y4_c00200{bottom:1094.109000px;}
.y3_c00200{bottom:1110.547500px;}
.y2_c00200{bottom:1126.986000px;}
.y1_c00200{bottom:1159.863000px;}
.h6_c00200{height:35.190766px;}
.h2_c00200{height:36.007158px;}
.h4_c00200{height:40.511979px;}
.h5_c00200{height:52.332837px;}
.h3_c00200{height:58.337477px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w0_c00200{width:892.920000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x3_c00200{left:127.558500px;}
.x1_c00200{left:137.122500px;}
.x2_c00200{left:177.007500px;}
.x4_c00200{left:435.249000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls3_c00200{letter-spacing:0.000000pt;}
.ls1_c00200{letter-spacing:0.078221pt;}
.ls2_c00200{letter-spacing:0.087539pt;}
.ls0_c00200{letter-spacing:0.092873pt;}
.ws1_c00200{word-spacing:-23.622682pt;}
.ws0_c00200{word-spacing:-23.544461pt;}
.ws8_c00200{word-spacing:-20.881610pt;}
.ws7_c00200{word-spacing:-17.481042pt;}
.ws11_c00200{word-spacing:-17.268507pt;}
.ws9_c00200{word-spacing:-16.684034pt;}
.ws10_c00200{word-spacing:-16.099562pt;}
.wsd_c00200{word-spacing:-15.635226pt;}
.wse_c00200{word-spacing:-15.621357pt;}
.wsf_c00200{word-spacing:-15.568223pt;}
.ws13_c00200{word-spacing:-13.867939pt;}
.ws12_c00200{word-spacing:-13.831974pt;}
.ws15_c00200{word-spacing:-13.124065pt;}
.ws14_c00200{word-spacing:-11.051844pt;}
.wsb_c00200{word-spacing:-10.573639pt;}
.ws5_c00200{word-spacing:-8.878599pt;}
.ws6_c00200{word-spacing:-8.877777pt;}
.wsa_c00200{word-spacing:-7.226206pt;}
.wsc_c00200{word-spacing:-6.698795pt;}
.ws18_c00200{word-spacing:0.000000pt;}
.ws2_c00200{word-spacing:0.039110pt;}
.ws16_c00200{word-spacing:0.156442pt;}
.ws3_c00200{word-spacing:0.189730pt;}
.ws17_c00200{word-spacing:0.195063pt;}
.ws4_c00200{word-spacing:38.256533pt;}
._9_c00200{margin-left:-3.666237pt;}
._b_c00200{margin-left:-2.550426pt;}
._1_c00200{margin-left:-1.377235pt;}
._0_c00200{width:0.925811pt;}
._2_c00200{width:15.651634pt;}
._7_c00200{width:17.002837pt;}
._5_c00200{width:19.340727pt;}
._4_c00200{width:20.346756pt;}
._6_c00200{width:26.497290pt;}
._a_c00200{width:28.426619pt;}
._3_c00200{width:29.978739pt;}
._8_c00200{width:34.791366pt;}
.fs0_c00200{font-size:39.110400pt;}
.fs2_c00200{font-size:53.133867pt;}
.fs1_c00200{font-size:76.513067pt;}
.y0_c00200{bottom:0.000000pt;}
.y20_c00200{bottom:39.333333pt;}
.y1f_c00200{bottom:77.317333pt;}
.y1e_c00200{bottom:91.929333pt;}
.y1d_c00200{bottom:106.541333pt;}
.y1c_c00200{bottom:121.153333pt;}
.y1b_c00200{bottom:135.433333pt;}
.y1a_c00200{bottom:178.932000pt;}
.y19_c00200{bottom:194.873333pt;}
.y18_c00200{bottom:210.813333pt;}
.y17_c00200{bottom:226.753333pt;}
.y16_c00200{bottom:242.693333pt;}
.y15_c00200{bottom:258.633333pt;}
.y14_c00200{bottom:274.573333pt;}
.y13_c00200{bottom:298.744000pt;}
.y12_c00200{bottom:314.684000pt;}
.y11_c00200{bottom:338.854667pt;}
.y10_c00200{bottom:354.794667pt;}
.yf_c00200{bottom:378.964000pt;}
.ye_c00200{bottom:403.134667pt;}
.yd_c00200{bottom:441.085333pt;}
.yc_c00200{bottom:855.646667pt;}
.yb_c00200{bottom:870.258667pt;}
.ya_c00200{bottom:884.870667pt;}
.y9_c00200{bottom:899.482667pt;}
.y8_c00200{bottom:914.094667pt;}
.y7_c00200{bottom:928.706667pt;}
.y6_c00200{bottom:943.317333pt;}
.y5_c00200{bottom:957.929333pt;}
.y4_c00200{bottom:972.541333pt;}
.y3_c00200{bottom:987.153333pt;}
.y2_c00200{bottom:1001.765333pt;}
.y1_c00200{bottom:1030.989333pt;}
.h6_c00200{height:31.280681pt;}
.h2_c00200{height:32.006363pt;}
.h4_c00200{height:36.010648pt;}
.h5_c00200{height:46.518078pt;}
.h3_c00200{height:51.855535pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w0_c00200{width:793.706667pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x3_c00200{left:113.385333pt;}
.x1_c00200{left:121.886667pt;}
.x2_c00200{left:157.340000pt;}
.x4_c00200{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2484c8a7ce413069e4f3ffe.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.048828;font-style:normal;font-weight:normal;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_c78e979c6d9761b7076f07d8.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.083496;font-style:normal;font-weight:normal;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_c2864fb1401fa08a27575fb5.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.014648;font-style:normal;font-weight:normal;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_08dbecf3deb9a5fea7e71b88.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00201;src:url('chunks/assets/font_ec404d0ff1fff7823a76f5a1.woff2')format("woff");}.ff5_c00201{font-family:ff5_c00201;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls3_c00201{letter-spacing:0.000000px;}
.ls1_c00201{letter-spacing:0.087998px;}
.ls2_c00201{letter-spacing:0.098482px;}
.ls0_c00201{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00201{word-spacing:-26.487518px;}
.ws2_c00201{word-spacing:0.000000px;}
.ws4_c00201{word-spacing:0.043999px;}
.ws7_c00201{word-spacing:0.056767px;}
.ws6_c00201{word-spacing:0.175997px;}
.ws3_c00201{word-spacing:0.213446px;}
.ws5_c00201{word-spacing:0.219446px;}
._1_c00201{margin-left:-1040.732606px;}
._0_c00201{width:1.031604px;}
.fc5_c00201{color:rgb(0,0,207);}
.fc4_c00201{color:rgb(143,89,3);}
.fc3_c00201{color:rgb(79,153,5);}
.fc2_c00201{color:rgb(207,92,0);}
.fc1_c00201{color:rgb(0,0,0);}
.fc0_c00201{color:rgb(33,74,135);}
.fs1_c00201{font-size:31.015800px;}
.fs0_c00201{font-size:43.999200px;}
.fs2_c00201{font-size:59.775600px;}
.y0_c00201{bottom:0.000000px;}
.y38_c00201{bottom:44.250000px;}
.y37_c00201{bottom:108.181500px;}
.y36_c00201{bottom:124.620000px;}
.y35_c00201{bottom:141.058500px;}
.y34_c00201{bottom:157.497000px;}
.y33_c00201{bottom:173.935500px;}
.y32_c00201{bottom:190.374000px;}
.y31_c00201{bottom:206.812500px;}
.y30_c00201{bottom:223.249500px;}
.y2f_c00201{bottom:239.688000px;}
.y2e_c00201{bottom:256.126500px;}
.y2d_c00201{bottom:272.565000px;}
.y2c_c00201{bottom:305.442000px;}
.y2b_c00201{bottom:321.880500px;}
.y2a_c00201{bottom:338.319000px;}
.y29_c00201{bottom:371.196000px;}
.y28_c00201{bottom:404.071500px;}
.y27_c00201{bottom:420.510000px;}
.y26_c00201{bottom:436.948500px;}
.y25_c00201{bottom:453.387000px;}
.y24_c00201{bottom:469.825500px;}
.y23_c00201{bottom:486.264000px;}
.y22_c00201{bottom:502.702500px;}
.y21_c00201{bottom:519.141000px;}
.y20_c00201{bottom:535.579500px;}
.y1f_c00201{bottom:552.018000px;}
.y1e_c00201{bottom:568.455000px;}
.y1d_c00201{bottom:601.332000px;}
.y1c_c00201{bottom:617.770500px;}
.y1b_c00201{bottom:634.209000px;}
.y1a_c00201{bottom:650.647500px;}
.y19_c00201{bottom:667.086000px;}
.y18_c00201{bottom:683.524500px;}
.y17_c00201{bottom:699.963000px;}
.y16_c00201{bottom:716.401500px;}
.y15_c00201{bottom:732.838500px;}
.y14_c00201{bottom:749.277000px;}
.y13_c00201{bottom:765.715500px;}
.y12_c00201{bottom:782.154000px;}
.y11_c00201{bottom:798.592500px;}
.y10_c00201{bottom:831.469500px;}
.yf_c00201{bottom:847.908000px;}
.ye_c00201{bottom:880.785000px;}
.yd_c00201{bottom:897.223500px;}
.yc_c00201{bottom:913.660500px;}
.yb_c00201{bottom:946.537500px;}
.ya_c00201{bottom:979.414500px;}
.y9_c00201{bottom:1012.291500px;}
.y8_c00201{bottom:1028.730000px;}
.y7_c00201{bottom:1045.168500px;}
.y6_c00201{bottom:1061.607000px;}
.y5_c00201{bottom:1077.670500px;}
.y4_c00201{bottom:1094.109000px;}
.y3_c00201{bottom:1110.547500px;}
.y2_c00201{bottom:1143.424500px;}
.y1_c00201{bottom:1159.863000px;}
.h3_c00201{height:35.190766px;}
.h2_c00201{height:36.007158px;}
.h4_c00201{height:52.332837px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w0_c00201{width:892.920000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:137.122500px;}
.x2_c00201{left:163.713000px;}
.x5_c00201{left:177.007500px;}
.x3_c00201{left:183.654000px;}
.x4_c00201{left:196.948500px;}
.x6_c00201{left:435.249000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls3_c00201{letter-spacing:0.000000pt;}
.ls1_c00201{letter-spacing:0.078221pt;}
.ls2_c00201{letter-spacing:0.087539pt;}
.ls0_c00201{letter-spacing:0.092873pt;}
.ws1_c00201{word-spacing:-23.622682pt;}
.ws0_c00201{word-spacing:-23.544461pt;}
.ws2_c00201{word-spacing:0.000000pt;}
.ws4_c00201{word-spacing:0.039110pt;}
.ws7_c00201{word-spacing:0.050460pt;}
.ws6_c00201{word-spacing:0.156442pt;}
.ws3_c00201{word-spacing:0.189730pt;}
.ws5_c00201{word-spacing:0.195063pt;}
._1_c00201{margin-left:-925.095650pt;}
._0_c00201{width:0.916981pt;}
.fs1_c00201{font-size:27.569600pt;}
.fs0_c00201{font-size:39.110400pt;}
.fs2_c00201{font-size:53.133867pt;}
.y0_c00201{bottom:0.000000pt;}
.y38_c00201{bottom:39.333333pt;}
.y37_c00201{bottom:96.161333pt;}
.y36_c00201{bottom:110.773333pt;}
.y35_c00201{bottom:125.385333pt;}
.y34_c00201{bottom:139.997333pt;}
.y33_c00201{bottom:154.609333pt;}
.y32_c00201{bottom:169.221333pt;}
.y31_c00201{bottom:183.833333pt;}
.y30_c00201{bottom:198.444000pt;}
.y2f_c00201{bottom:213.056000pt;}
.y2e_c00201{bottom:227.668000pt;}
.y2d_c00201{bottom:242.280000pt;}
.y2c_c00201{bottom:271.504000pt;}
.y2b_c00201{bottom:286.116000pt;}
.y2a_c00201{bottom:300.728000pt;}
.y29_c00201{bottom:329.952000pt;}
.y28_c00201{bottom:359.174667pt;}
.y27_c00201{bottom:373.786667pt;}
.y26_c00201{bottom:388.398667pt;}
.y25_c00201{bottom:403.010667pt;}
.y24_c00201{bottom:417.622667pt;}
.y23_c00201{bottom:432.234667pt;}
.y22_c00201{bottom:446.846667pt;}
.y21_c00201{bottom:461.458667pt;}
.y20_c00201{bottom:476.070667pt;}
.y1f_c00201{bottom:490.682667pt;}
.y1e_c00201{bottom:505.293333pt;}
.y1d_c00201{bottom:534.517333pt;}
.y1c_c00201{bottom:549.129333pt;}
.y1b_c00201{bottom:563.741333pt;}
.y1a_c00201{bottom:578.353333pt;}
.y19_c00201{bottom:592.965333pt;}
.y18_c00201{bottom:607.577333pt;}
.y17_c00201{bottom:622.189333pt;}
.y16_c00201{bottom:636.801333pt;}
.y15_c00201{bottom:651.412000pt;}
.y14_c00201{bottom:666.024000pt;}
.y13_c00201{bottom:680.636000pt;}
.y12_c00201{bottom:695.248000pt;}
.y11_c00201{bottom:709.860000pt;}
.y10_c00201{bottom:739.084000pt;}
.yf_c00201{bottom:753.696000pt;}
.ye_c00201{bottom:782.920000pt;}
.yd_c00201{bottom:797.532000pt;}
.yc_c00201{bottom:812.142667pt;}
.yb_c00201{bottom:841.366667pt;}
.ya_c00201{bottom:870.590667pt;}
.y9_c00201{bottom:899.814667pt;}
.y8_c00201{bottom:914.426667pt;}
.y7_c00201{bottom:929.038667pt;}
.y6_c00201{bottom:943.650667pt;}
.y5_c00201{bottom:957.929333pt;}
.y4_c00201{bottom:972.541333pt;}
.y3_c00201{bottom:987.153333pt;}
.y2_c00201{bottom:1016.377333pt;}
.y1_c00201{bottom:1030.989333pt;}
.h3_c00201{height:31.280681pt;}
.h2_c00201{height:32.006363pt;}
.h4_c00201{height:46.518078pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w0_c00201{width:793.706667pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:121.886667pt;}
.x2_c00201{left:145.522667pt;}
.x5_c00201{left:157.340000pt;}
.x3_c00201{left:163.248000pt;}
.x4_c00201{left:175.065333pt;}
.x6_c00201{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9831a0ddc73b8fe470483f08.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:0.893555;font-style:normal;font-weight:normal;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_46956a387a953f7a398c2bf1.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_5a92b37422fce090b02f4f10.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_0d570b04893671d6e824d2b5.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.000000;font-style: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;}
.ls3_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.087998px;}
.ls2_c00202{letter-spacing:0.098482px;}
.ls1_c00202{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00202{word-spacing:-26.575517px;}
.ws14_c00202{word-spacing:-26.487518px;}
.wse_c00202{word-spacing:-19.427070px;}
.ws6_c00202{word-spacing:-18.769538px;}
.wsd_c00202{word-spacing:-18.112007px;}
.wsa_c00202{word-spacing:-17.589629px;}
.wsb_c00202{word-spacing:-17.574026px;}
.wsc_c00202{word-spacing:-17.514251px;}
.ws10_c00202{word-spacing:-15.601432px;}
.wsf_c00202{word-spacing:-15.560971px;}
.ws8_c00202{word-spacing:-14.884124px;}
.ws12_c00202{word-spacing:-14.764573px;}
.ws5_c00202{word-spacing:-14.226593px;}
.ws11_c00202{word-spacing:-12.433325px;}
.ws7_c00202{word-spacing:-11.058486px;}
.ws4_c00202{word-spacing:-10.400954px;}
.ws1_c00202{word-spacing:-9.988424px;}
.ws3_c00202{word-spacing:-9.987499px;}
.ws9_c00202{word-spacing:-7.536144px;}
.ws18_c00202{word-spacing:0.000000px;}
.ws15_c00202{word-spacing:0.043999px;}
.ws13_c00202{word-spacing:0.175997px;}
.ws17_c00202{word-spacing:0.213446px;}
.ws16_c00202{word-spacing:0.219446px;}
.ws0_c00202{word-spacing:43.038600px;}
._a_c00202{margin-left:-1040.732606px;}
._7_c00202{margin-left:-4.124516px;}
._0_c00202{margin-left:-1.549390px;}
._9_c00202{width:1.005737px;}
._5_c00202{width:19.780997px;}
._4_c00202{width:21.758318px;}
._3_c00202{width:22.890101px;}
._2_c00202{width:27.805086px;}
._1_c00202{width:29.096870px;}
._8_c00202{width:31.979946px;}
._6_c00202{width:39.140287px;}
.fc6_c00202{color:rgb(0,0,207);}
.fc5_c00202{color:rgb(79,153,5);}
.fc3_c00202{color:rgb(33,74,135);}
.fc2_c00202{color:rgb(143,89,3);}
.fc4_c00202{color:rgb(207,92,0);}
.fc1_c00202{color:rgb(6,69,173);}
.fc0_c00202{color:rgb(0,0,0);}
.fs3_c00202{font-size:31.015800px;}
.fs2_c00202{font-size:43.999200px;}
.fs1_c00202{font-size:59.775600px;}
.fs0_c00202{font-size:86.077200px;}
.y0_c00202{bottom:0.000000px;}
.y1f_c00202{bottom:44.250000px;}
.y1e_c00202{bottom:98.490000px;}
.y1d_c00202{bottom:131.365500px;}
.y1c_c00202{bottom:164.242500px;}
.y1b_c00202{bottom:180.681000px;}
.y1a_c00202{bottom:197.119500px;}
.y19_c00202{bottom:213.558000px;}
.y18_c00202{bottom:229.623000px;}
.y17_c00202{bottom:246.061500px;}
.y16_c00202{bottom:262.498500px;}
.y15_c00202{bottom:295.375500px;}
.y14_c00202{bottom:311.814000px;}
.y13_c00202{bottom:328.252500px;}
.y12_c00202{bottom:344.691000px;}
.y11_c00202{bottom:361.129500px;}
.y10_c00202{bottom:377.568000px;}
.yf_c00202{bottom:393.633000px;}
.ye_c00202{bottom:441.757500px;}
.yd_c00202{bottom:459.690000px;}
.yc_c00202{bottom:477.622500px;}
.yb_c00202{bottom:495.555000px;}
.ya_c00202{bottom:513.487500px;}
.y9_c00202{bottom:531.420000px;}
.y8_c00202{bottom:549.352500px;}
.y7_c00202{bottom:576.238500px;}
.y6_c00202{bottom:594.171000px;}
.y5_c00202{bottom:621.057000px;}
.y4_c00202{bottom:638.989500px;}
.y3_c00202{bottom:665.875500px;}
.y2_c00202{bottom:692.760000px;}
.y1_c00202{bottom:735.019500px;}
.h6_c00202{height:35.190766px;}
.h7_c00202{height:36.007158px;}
.h3_c00202{height:40.511979px;}
.h4_c00202{height:52.332837px;}
.h5_c00202{height:52.338837px;}
.h2_c00202{height:58.337477px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w0_c00202{width:892.920000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:127.558500px;}
.x2_c00202{left:137.122500px;}
.x3_c00202{left:163.713000px;}
.x4_c00202{left:435.249000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls3_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.078221pt;}
.ls2_c00202{letter-spacing:0.087539pt;}
.ls1_c00202{letter-spacing:0.092873pt;}
.ws2_c00202{word-spacing:-23.622682pt;}
.ws14_c00202{word-spacing:-23.544461pt;}
.wse_c00202{word-spacing:-17.268507pt;}
.ws6_c00202{word-spacing:-16.684034pt;}
.wsd_c00202{word-spacing:-16.099562pt;}
.wsa_c00202{word-spacing:-15.635226pt;}
.wsb_c00202{word-spacing:-15.621357pt;}
.wsc_c00202{word-spacing:-15.568223pt;}
.ws10_c00202{word-spacing:-13.867939pt;}
.wsf_c00202{word-spacing:-13.831974pt;}
.ws8_c00202{word-spacing:-13.230333pt;}
.ws12_c00202{word-spacing:-13.124065pt;}
.ws5_c00202{word-spacing:-12.645860pt;}
.ws11_c00202{word-spacing:-11.051844pt;}
.ws7_c00202{word-spacing:-9.829765pt;}
.ws4_c00202{word-spacing:-9.245293pt;}
.ws1_c00202{word-spacing:-8.878599pt;}
.ws3_c00202{word-spacing:-8.877777pt;}
.ws9_c00202{word-spacing:-6.698795pt;}
.ws18_c00202{word-spacing:0.000000pt;}
.ws15_c00202{word-spacing:0.039110pt;}
.ws13_c00202{word-spacing:0.156442pt;}
.ws17_c00202{word-spacing:0.189730pt;}
.ws16_c00202{word-spacing:0.195063pt;}
.ws0_c00202{word-spacing:38.256533pt;}
._a_c00202{margin-left:-925.095650pt;}
._7_c00202{margin-left:-3.666237pt;}
._0_c00202{margin-left:-1.377235pt;}
._9_c00202{width:0.893988pt;}
._5_c00202{width:17.583108pt;}
._4_c00202{width:19.340727pt;}
._3_c00202{width:20.346756pt;}
._2_c00202{width:24.715632pt;}
._1_c00202{width:25.863885pt;}
._8_c00202{width:28.426619pt;}
._6_c00202{width:34.791366pt;}
.fs3_c00202{font-size:27.569600pt;}
.fs2_c00202{font-size:39.110400pt;}
.fs1_c00202{font-size:53.133867pt;}
.fs0_c00202{font-size:76.513067pt;}
.y0_c00202{bottom:0.000000pt;}
.y1f_c00202{bottom:39.333333pt;}
.y1e_c00202{bottom:87.546667pt;}
.y1d_c00202{bottom:116.769333pt;}
.y1c_c00202{bottom:145.993333pt;}
.y1b_c00202{bottom:160.605333pt;}
.y1a_c00202{bottom:175.217333pt;}
.y19_c00202{bottom:189.829333pt;}
.y18_c00202{bottom:204.109333pt;}
.y17_c00202{bottom:218.721333pt;}
.y16_c00202{bottom:233.332000pt;}
.y15_c00202{bottom:262.556000pt;}
.y14_c00202{bottom:277.168000pt;}
.y13_c00202{bottom:291.780000pt;}
.y12_c00202{bottom:306.392000pt;}
.y11_c00202{bottom:321.004000pt;}
.y10_c00202{bottom:335.616000pt;}
.yf_c00202{bottom:349.896000pt;}
.ye_c00202{bottom:392.673333pt;}
.yd_c00202{bottom:408.613333pt;}
.yc_c00202{bottom:424.553333pt;}
.yb_c00202{bottom:440.493333pt;}
.ya_c00202{bottom:456.433333pt;}
.y9_c00202{bottom:472.373333pt;}
.y8_c00202{bottom:488.313333pt;}
.y7_c00202{bottom:512.212000pt;}
.y6_c00202{bottom:528.152000pt;}
.y5_c00202{bottom:552.050667pt;}
.y4_c00202{bottom:567.990667pt;}
.y3_c00202{bottom:591.889333pt;}
.y2_c00202{bottom:615.786667pt;}
.y1_c00202{bottom:653.350667pt;}
.h6_c00202{height:31.280681pt;}
.h7_c00202{height:32.006363pt;}
.h3_c00202{height:36.010648pt;}
.h4_c00202{height:46.518078pt;}
.h5_c00202{height:46.523411pt;}
.h2_c00202{height:51.855535pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w0_c00202{width:793.706667pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:113.385333pt;}
.x2_c00202{left:121.886667pt;}
.x3_c00202{left:145.522667pt;}
.x4_c00202{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65967c1b9fa6e4ff7a87883d.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.014648;font-style:normal;font-weight:normal;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_d432bd9750e1e21a713265e5.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls3_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.087998px;}
.ls2_c00203{letter-spacing:0.098482px;}
.ls1_c00203{letter-spacing:0.104482px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-26.575517px;}
.ws4_c00203{word-spacing:-26.487518px;}
.ws2_c00203{word-spacing:0.000000px;}
.ws1_c00203{word-spacing:0.043999px;}
.ws3_c00203{word-spacing:0.056767px;}
.ws5_c00203{word-spacing:0.213446px;}
._0_c00203{width:1.041538px;}
.fc5_c00203{color:rgb(0,0,207);}
.fc4_c00203{color:rgb(207,92,0);}
.fc3_c00203{color:rgb(33,74,135);}
.fc2_c00203{color:rgb(79,153,5);}
.fc1_c00203{color:rgb(143,89,3);}
.fc0_c00203{color:rgb(0,0,0);}
.fs0_c00203{font-size:43.999200px;}
.fs1_c00203{font-size:59.775600px;}
.y0_c00203{bottom:0.000000px;}
.y2d_c00203{bottom:44.250000px;}
.y2c_c00203{bottom:354.384000px;}
.y2b_c00203{bottom:370.822500px;}
.y2a_c00203{bottom:387.259500px;}
.y29_c00203{bottom:403.698000px;}
.y28_c00203{bottom:420.136500px;}
.y27_c00203{bottom:436.575000px;}
.y26_c00203{bottom:453.013500px;}
.y25_c00203{bottom:469.452000px;}
.y24_c00203{bottom:485.890500px;}
.y23_c00203{bottom:502.329000px;}
.y22_c00203{bottom:518.767500px;}
.y21_c00203{bottom:551.643000px;}
.y20_c00203{bottom:568.081500px;}
.y1f_c00203{bottom:584.520000px;}
.y1e_c00203{bottom:617.397000px;}
.y1d_c00203{bottom:650.274000px;}
.y1c_c00203{bottom:666.712500px;}
.y1b_c00203{bottom:683.151000px;}
.y1a_c00203{bottom:699.589500px;}
.y19_c00203{bottom:716.028000px;}
.y18_c00203{bottom:732.465000px;}
.y17_c00203{bottom:748.903500px;}
.y16_c00203{bottom:765.342000px;}
.y15_c00203{bottom:781.780500px;}
.y14_c00203{bottom:798.219000px;}
.y13_c00203{bottom:814.657500px;}
.y12_c00203{bottom:847.534500px;}
.y11_c00203{bottom:863.973000px;}
.y10_c00203{bottom:880.411500px;}
.yf_c00203{bottom:896.848500px;}
.ye_c00203{bottom:913.287000px;}
.yd_c00203{bottom:929.725500px;}
.yc_c00203{bottom:946.164000px;}
.yb_c00203{bottom:962.602500px;}
.ya_c00203{bottom:979.041000px;}
.y9_c00203{bottom:995.479500px;}
.y8_c00203{bottom:1011.918000px;}
.y7_c00203{bottom:1028.356500px;}
.y6_c00203{bottom:1044.795000px;}
.y5_c00203{bottom:1077.670500px;}
.y4_c00203{bottom:1094.109000px;}
.y3_c00203{bottom:1126.986000px;}
.y2_c00203{bottom:1143.424500px;}
.y1_c00203{bottom:1159.863000px;}
.h3_c00203{height:35.190766px;}
.h2_c00203{height:36.007158px;}
.h4_c00203{height:52.332837px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w0_c00203{width:892.920000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:137.122500px;}
.x4_c00203{left:177.007500px;}
.x2_c00203{left:183.654000px;}
.x3_c00203{left:196.948500px;}
.x5_c00203{left:435.249000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls3_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.078221pt;}
.ls2_c00203{letter-spacing:0.087539pt;}
.ls1_c00203{letter-spacing:0.092873pt;}
.ws0_c00203{word-spacing:-23.622682pt;}
.ws4_c00203{word-spacing:-23.544461pt;}
.ws2_c00203{word-spacing:0.000000pt;}
.ws1_c00203{word-spacing:0.039110pt;}
.ws3_c00203{word-spacing:0.050460pt;}
.ws5_c00203{word-spacing:0.189730pt;}
._0_c00203{width:0.925811pt;}
.fs0_c00203{font-size:39.110400pt;}
.fs1_c00203{font-size:53.133867pt;}
.y0_c00203{bottom:0.000000pt;}
.y2d_c00203{bottom:39.333333pt;}
.y2c_c00203{bottom:315.008000pt;}
.y2b_c00203{bottom:329.620000pt;}
.y2a_c00203{bottom:344.230667pt;}
.y29_c00203{bottom:358.842667pt;}
.y28_c00203{bottom:373.454667pt;}
.y27_c00203{bottom:388.066667pt;}
.y26_c00203{bottom:402.678667pt;}
.y25_c00203{bottom:417.290667pt;}
.y24_c00203{bottom:431.902667pt;}
.y23_c00203{bottom:446.514667pt;}
.y22_c00203{bottom:461.126667pt;}
.y21_c00203{bottom:490.349333pt;}
.y20_c00203{bottom:504.961333pt;}
.y1f_c00203{bottom:519.573333pt;}
.y1e_c00203{bottom:548.797333pt;}
.y1d_c00203{bottom:578.021333pt;}
.y1c_c00203{bottom:592.633333pt;}
.y1b_c00203{bottom:607.245333pt;}
.y1a_c00203{bottom:621.857333pt;}
.y19_c00203{bottom:636.469333pt;}
.y18_c00203{bottom:651.080000pt;}
.y17_c00203{bottom:665.692000pt;}
.y16_c00203{bottom:680.304000pt;}
.y15_c00203{bottom:694.916000pt;}
.y14_c00203{bottom:709.528000pt;}
.y13_c00203{bottom:724.140000pt;}
.y12_c00203{bottom:753.364000pt;}
.y11_c00203{bottom:767.976000pt;}
.y10_c00203{bottom:782.588000pt;}
.yf_c00203{bottom:797.198667pt;}
.ye_c00203{bottom:811.810667pt;}
.yd_c00203{bottom:826.422667pt;}
.yc_c00203{bottom:841.034667pt;}
.yb_c00203{bottom:855.646667pt;}
.ya_c00203{bottom:870.258667pt;}
.y9_c00203{bottom:884.870667pt;}
.y8_c00203{bottom:899.482667pt;}
.y7_c00203{bottom:914.094667pt;}
.y6_c00203{bottom:928.706667pt;}
.y5_c00203{bottom:957.929333pt;}
.y4_c00203{bottom:972.541333pt;}
.y3_c00203{bottom:1001.765333pt;}
.y2_c00203{bottom:1016.377333pt;}
.y1_c00203{bottom:1030.989333pt;}
.h3_c00203{height:31.280681pt;}
.h2_c00203{height:32.006363pt;}
.h4_c00203{height:46.518078pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w0_c00203{width:793.706667pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:121.886667pt;}
.x4_c00203{left:157.340000pt;}
.x2_c00203{left:163.248000pt;}
.x3_c00203{left:175.065333pt;}
.x5_c00203{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b137c7d29b45bc9c4cb2497.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:0.893555;font-style:normal;font-weight:normal;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_46956a387a953f7a398c2bf1.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_6f36820a4248811a37eeb46c.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_c592cc6b52e468a9db944755.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.000000;font-style: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;}
.ls3_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.087998px;}
.ls2_c00204{letter-spacing:0.098482px;}
.ls1_c00204{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00204{word-spacing:-26.575517px;}
.ws13_c00204{word-spacing:-26.487518px;}
.wse_c00204{word-spacing:-19.427070px;}
.ws6_c00204{word-spacing:-18.769538px;}
.wsd_c00204{word-spacing:-18.112007px;}
.wsa_c00204{word-spacing:-17.589629px;}
.wsb_c00204{word-spacing:-17.574026px;}
.wsc_c00204{word-spacing:-17.514251px;}
.ws5_c00204{word-spacing:-15.601432px;}
.wsf_c00204{word-spacing:-15.560971px;}
.ws11_c00204{word-spacing:-14.764573px;}
.ws10_c00204{word-spacing:-12.433325px;}
.ws4_c00204{word-spacing:-11.835569px;}
.ws8_c00204{word-spacing:-11.656242px;}
.ws1_c00204{word-spacing:-9.988424px;}
.ws3_c00204{word-spacing:-9.987499px;}
.ws7_c00204{word-spacing:-7.830604px;}
.ws9_c00204{word-spacing:-7.536144px;}
.ws17_c00204{word-spacing:0.000000px;}
.ws14_c00204{word-spacing:0.043999px;}
.ws12_c00204{word-spacing:0.175997px;}
.ws16_c00204{word-spacing:0.213446px;}
.ws15_c00204{word-spacing:0.219446px;}
.ws0_c00204{word-spacing:43.038600px;}
._c_c00204{margin-left:-1040.732606px;}
._8_c00204{margin-left:-4.124516px;}
._a_c00204{margin-left:-2.869229px;}
._0_c00204{margin-left:-1.549390px;}
._b_c00204{width:1.005737px;}
._6_c00204{width:19.128192px;}
._4_c00204{width:21.758318px;}
._3_c00204{width:22.890101px;}
._1_c00204{width:26.301485px;}
._5_c00204{width:29.809451px;}
._9_c00204{width:31.979946px;}
._2_c00204{width:34.225204px;}
._7_c00204{width:39.140287px;}
.fc6_c00204{color:rgb(0,0,207);}
.fc5_c00204{color:rgb(79,153,5);}
.fc3_c00204{color:rgb(33,74,135);}
.fc2_c00204{color:rgb(143,89,3);}
.fc4_c00204{color:rgb(207,92,0);}
.fc1_c00204{color:rgb(6,69,173);}
.fc0_c00204{color:rgb(0,0,0);}
.fs3_c00204{font-size:31.015800px;}
.fs2_c00204{font-size:43.999200px;}
.fs1_c00204{font-size:59.775600px;}
.fs0_c00204{font-size:86.077200px;}
.y0_c00204{bottom:0.000000px;}
.y1f_c00204{bottom:44.250000px;}
.y1e_c00204{bottom:98.490000px;}
.y1d_c00204{bottom:131.365500px;}
.y1c_c00204{bottom:164.242500px;}
.y1b_c00204{bottom:180.681000px;}
.y1a_c00204{bottom:197.119500px;}
.y19_c00204{bottom:213.558000px;}
.y18_c00204{bottom:229.623000px;}
.y17_c00204{bottom:246.061500px;}
.y16_c00204{bottom:262.498500px;}
.y15_c00204{bottom:295.375500px;}
.y14_c00204{bottom:311.814000px;}
.y13_c00204{bottom:328.252500px;}
.y12_c00204{bottom:344.691000px;}
.y11_c00204{bottom:361.129500px;}
.y10_c00204{bottom:377.568000px;}
.yf_c00204{bottom:393.633000px;}
.ye_c00204{bottom:441.757500px;}
.yd_c00204{bottom:459.690000px;}
.yc_c00204{bottom:477.622500px;}
.yb_c00204{bottom:495.555000px;}
.ya_c00204{bottom:513.487500px;}
.y9_c00204{bottom:531.420000px;}
.y8_c00204{bottom:549.352500px;}
.y7_c00204{bottom:576.238500px;}
.y6_c00204{bottom:594.171000px;}
.y5_c00204{bottom:621.057000px;}
.y4_c00204{bottom:638.989500px;}
.y3_c00204{bottom:665.875500px;}
.y2_c00204{bottom:692.760000px;}
.y1_c00204{bottom:735.019500px;}
.h6_c00204{height:35.190766px;}
.h7_c00204{height:36.007158px;}
.h3_c00204{height:40.511979px;}
.h4_c00204{height:52.332837px;}
.h5_c00204{height:52.338837px;}
.h2_c00204{height:58.337477px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w0_c00204{width:892.920000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:127.558500px;}
.x2_c00204{left:137.122500px;}
.x3_c00204{left:163.713000px;}
.x4_c00204{left:435.249000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls3_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.078221pt;}
.ls2_c00204{letter-spacing:0.087539pt;}
.ls1_c00204{letter-spacing:0.092873pt;}
.ws2_c00204{word-spacing:-23.622682pt;}
.ws13_c00204{word-spacing:-23.544461pt;}
.wse_c00204{word-spacing:-17.268507pt;}
.ws6_c00204{word-spacing:-16.684034pt;}
.wsd_c00204{word-spacing:-16.099562pt;}
.wsa_c00204{word-spacing:-15.635226pt;}
.wsb_c00204{word-spacing:-15.621357pt;}
.wsc_c00204{word-spacing:-15.568223pt;}
.ws5_c00204{word-spacing:-13.867939pt;}
.wsf_c00204{word-spacing:-13.831974pt;}
.ws11_c00204{word-spacing:-13.124065pt;}
.ws10_c00204{word-spacing:-11.051844pt;}
.ws4_c00204{word-spacing:-10.520506pt;}
.ws8_c00204{word-spacing:-10.361104pt;}
.ws1_c00204{word-spacing:-8.878599pt;}
.ws3_c00204{word-spacing:-8.877777pt;}
.ws7_c00204{word-spacing:-6.960537pt;}
.ws9_c00204{word-spacing:-6.698795pt;}
.ws17_c00204{word-spacing:0.000000pt;}
.ws14_c00204{word-spacing:0.039110pt;}
.ws12_c00204{word-spacing:0.156442pt;}
.ws16_c00204{word-spacing:0.189730pt;}
.ws15_c00204{word-spacing:0.195063pt;}
.ws0_c00204{word-spacing:38.256533pt;}
._c_c00204{margin-left:-925.095650pt;}
._8_c00204{margin-left:-3.666237pt;}
._a_c00204{margin-left:-2.550426pt;}
._0_c00204{margin-left:-1.377235pt;}
._b_c00204{width:0.893988pt;}
._6_c00204{width:17.002837pt;}
._4_c00204{width:19.340727pt;}
._3_c00204{width:20.346756pt;}
._1_c00204{width:23.379098pt;}
._5_c00204{width:26.497290pt;}
._9_c00204{width:28.426619pt;}
._2_c00204{width:30.422403pt;}
._7_c00204{width:34.791366pt;}
.fs3_c00204{font-size:27.569600pt;}
.fs2_c00204{font-size:39.110400pt;}
.fs1_c00204{font-size:53.133867pt;}
.fs0_c00204{font-size:76.513067pt;}
.y0_c00204{bottom:0.000000pt;}
.y1f_c00204{bottom:39.333333pt;}
.y1e_c00204{bottom:87.546667pt;}
.y1d_c00204{bottom:116.769333pt;}
.y1c_c00204{bottom:145.993333pt;}
.y1b_c00204{bottom:160.605333pt;}
.y1a_c00204{bottom:175.217333pt;}
.y19_c00204{bottom:189.829333pt;}
.y18_c00204{bottom:204.109333pt;}
.y17_c00204{bottom:218.721333pt;}
.y16_c00204{bottom:233.332000pt;}
.y15_c00204{bottom:262.556000pt;}
.y14_c00204{bottom:277.168000pt;}
.y13_c00204{bottom:291.780000pt;}
.y12_c00204{bottom:306.392000pt;}
.y11_c00204{bottom:321.004000pt;}
.y10_c00204{bottom:335.616000pt;}
.yf_c00204{bottom:349.896000pt;}
.ye_c00204{bottom:392.673333pt;}
.yd_c00204{bottom:408.613333pt;}
.yc_c00204{bottom:424.553333pt;}
.yb_c00204{bottom:440.493333pt;}
.ya_c00204{bottom:456.433333pt;}
.y9_c00204{bottom:472.373333pt;}
.y8_c00204{bottom:488.313333pt;}
.y7_c00204{bottom:512.212000pt;}
.y6_c00204{bottom:528.152000pt;}
.y5_c00204{bottom:552.050667pt;}
.y4_c00204{bottom:567.990667pt;}
.y3_c00204{bottom:591.889333pt;}
.y2_c00204{bottom:615.786667pt;}
.y1_c00204{bottom:653.350667pt;}
.h6_c00204{height:31.280681pt;}
.h7_c00204{height:32.006363pt;}
.h3_c00204{height:36.010648pt;}
.h4_c00204{height:46.518078pt;}
.h5_c00204{height:46.523411pt;}
.h2_c00204{height:51.855535pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w0_c00204{width:793.706667pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:113.385333pt;}
.x2_c00204{left:121.886667pt;}
.x3_c00204{left:145.522667pt;}
.x4_c00204{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65967c1b9fa6e4ff7a87883d.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.014648;font-style:normal;font-weight:normal;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_d45db280ff5492e697849e0f.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls3_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.087998px;}
.ls2_c00205{letter-spacing:0.098482px;}
.ls1_c00205{letter-spacing:0.104482px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-26.575517px;}
.ws4_c00205{word-spacing:-26.487518px;}
.ws2_c00205{word-spacing:0.000000px;}
.ws1_c00205{word-spacing:0.043999px;}
.ws3_c00205{word-spacing:0.056767px;}
.ws5_c00205{word-spacing:0.213446px;}
._0_c00205{width:1.041538px;}
.fc5_c00205{color:rgb(0,0,207);}
.fc4_c00205{color:rgb(207,92,0);}
.fc3_c00205{color:rgb(33,74,135);}
.fc2_c00205{color:rgb(79,153,5);}
.fc1_c00205{color:rgb(143,89,3);}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:43.999200px;}
.fs1_c00205{font-size:59.775600px;}
.y0_c00205{bottom:0.000000px;}
.y2d_c00205{bottom:44.250000px;}
.y2c_c00205{bottom:354.384000px;}
.y2b_c00205{bottom:370.822500px;}
.y2a_c00205{bottom:387.259500px;}
.y29_c00205{bottom:403.698000px;}
.y28_c00205{bottom:420.136500px;}
.y27_c00205{bottom:436.575000px;}
.y26_c00205{bottom:453.013500px;}
.y25_c00205{bottom:469.452000px;}
.y24_c00205{bottom:485.890500px;}
.y23_c00205{bottom:502.329000px;}
.y22_c00205{bottom:518.767500px;}
.y21_c00205{bottom:551.643000px;}
.y20_c00205{bottom:568.081500px;}
.y1f_c00205{bottom:584.520000px;}
.y1e_c00205{bottom:617.397000px;}
.y1d_c00205{bottom:650.274000px;}
.y1c_c00205{bottom:666.712500px;}
.y1b_c00205{bottom:683.151000px;}
.y1a_c00205{bottom:699.589500px;}
.y19_c00205{bottom:716.028000px;}
.y18_c00205{bottom:732.465000px;}
.y17_c00205{bottom:748.903500px;}
.y16_c00205{bottom:765.342000px;}
.y15_c00205{bottom:781.780500px;}
.y14_c00205{bottom:798.219000px;}
.y13_c00205{bottom:814.657500px;}
.y12_c00205{bottom:847.534500px;}
.y11_c00205{bottom:863.973000px;}
.y10_c00205{bottom:880.411500px;}
.yf_c00205{bottom:896.848500px;}
.ye_c00205{bottom:913.287000px;}
.yd_c00205{bottom:929.725500px;}
.yc_c00205{bottom:946.164000px;}
.yb_c00205{bottom:962.602500px;}
.ya_c00205{bottom:979.041000px;}
.y9_c00205{bottom:995.479500px;}
.y8_c00205{bottom:1011.918000px;}
.y7_c00205{bottom:1028.356500px;}
.y6_c00205{bottom:1044.795000px;}
.y5_c00205{bottom:1077.670500px;}
.y4_c00205{bottom:1094.109000px;}
.y3_c00205{bottom:1126.986000px;}
.y2_c00205{bottom:1143.424500px;}
.y1_c00205{bottom:1159.863000px;}
.h3_c00205{height:35.190766px;}
.h2_c00205{height:36.007158px;}
.h4_c00205{height:52.332837px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w0_c00205{width:892.920000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:137.122500px;}
.x4_c00205{left:177.007500px;}
.x2_c00205{left:183.654000px;}
.x3_c00205{left:196.948500px;}
.x5_c00205{left:435.249000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls3_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.078221pt;}
.ls2_c00205{letter-spacing:0.087539pt;}
.ls1_c00205{letter-spacing:0.092873pt;}
.ws0_c00205{word-spacing:-23.622682pt;}
.ws4_c00205{word-spacing:-23.544461pt;}
.ws2_c00205{word-spacing:0.000000pt;}
.ws1_c00205{word-spacing:0.039110pt;}
.ws3_c00205{word-spacing:0.050460pt;}
.ws5_c00205{word-spacing:0.189730pt;}
._0_c00205{width:0.925811pt;}
.fs0_c00205{font-size:39.110400pt;}
.fs1_c00205{font-size:53.133867pt;}
.y0_c00205{bottom:0.000000pt;}
.y2d_c00205{bottom:39.333333pt;}
.y2c_c00205{bottom:315.008000pt;}
.y2b_c00205{bottom:329.620000pt;}
.y2a_c00205{bottom:344.230667pt;}
.y29_c00205{bottom:358.842667pt;}
.y28_c00205{bottom:373.454667pt;}
.y27_c00205{bottom:388.066667pt;}
.y26_c00205{bottom:402.678667pt;}
.y25_c00205{bottom:417.290667pt;}
.y24_c00205{bottom:431.902667pt;}
.y23_c00205{bottom:446.514667pt;}
.y22_c00205{bottom:461.126667pt;}
.y21_c00205{bottom:490.349333pt;}
.y20_c00205{bottom:504.961333pt;}
.y1f_c00205{bottom:519.573333pt;}
.y1e_c00205{bottom:548.797333pt;}
.y1d_c00205{bottom:578.021333pt;}
.y1c_c00205{bottom:592.633333pt;}
.y1b_c00205{bottom:607.245333pt;}
.y1a_c00205{bottom:621.857333pt;}
.y19_c00205{bottom:636.469333pt;}
.y18_c00205{bottom:651.080000pt;}
.y17_c00205{bottom:665.692000pt;}
.y16_c00205{bottom:680.304000pt;}
.y15_c00205{bottom:694.916000pt;}
.y14_c00205{bottom:709.528000pt;}
.y13_c00205{bottom:724.140000pt;}
.y12_c00205{bottom:753.364000pt;}
.y11_c00205{bottom:767.976000pt;}
.y10_c00205{bottom:782.588000pt;}
.yf_c00205{bottom:797.198667pt;}
.ye_c00205{bottom:811.810667pt;}
.yd_c00205{bottom:826.422667pt;}
.yc_c00205{bottom:841.034667pt;}
.yb_c00205{bottom:855.646667pt;}
.ya_c00205{bottom:870.258667pt;}
.y9_c00205{bottom:884.870667pt;}
.y8_c00205{bottom:899.482667pt;}
.y7_c00205{bottom:914.094667pt;}
.y6_c00205{bottom:928.706667pt;}
.y5_c00205{bottom:957.929333pt;}
.y4_c00205{bottom:972.541333pt;}
.y3_c00205{bottom:1001.765333pt;}
.y2_c00205{bottom:1016.377333pt;}
.y1_c00205{bottom:1030.989333pt;}
.h3_c00205{height:31.280681pt;}
.h2_c00205{height:32.006363pt;}
.h4_c00205{height:46.518078pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w0_c00205{width:793.706667pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:121.886667pt;}
.x4_c00205{left:157.340000pt;}
.x2_c00205{left:163.248000pt;}
.x3_c00205{left:175.065333pt;}
.x5_c00205{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ed2fd1e139c7d7fdd0a0315.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:0.893555;font-style:normal;font-weight:normal;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_46956a387a953f7a398c2bf1.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.083496;font-style:normal;font-weight:normal;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_de4048232c41813bdda6e812.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_e8df97e5637ea7e3c5239af6.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.000000;font-style: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;}
.ls3_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.087998px;}
.ls2_c00206{letter-spacing:0.098482px;}
.ls1_c00206{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00206{word-spacing:-26.575517px;}
.ws14_c00206{word-spacing:-26.487518px;}
.ws8_c00206{word-spacing:-20.801909px;}
.wse_c00206{word-spacing:-19.427070px;}
.ws6_c00206{word-spacing:-18.769538px;}
.wsd_c00206{word-spacing:-18.112007px;}
.wsa_c00206{word-spacing:-17.589629px;}
.wsb_c00206{word-spacing:-17.574026px;}
.wsc_c00206{word-spacing:-17.514251px;}
.ws7_c00206{word-spacing:-17.036046px;}
.ws10_c00206{word-spacing:-15.601432px;}
.wsf_c00206{word-spacing:-15.560971px;}
.ws12_c00206{word-spacing:-14.764573px;}
.ws5_c00206{word-spacing:-14.465695px;}
.ws11_c00206{word-spacing:-12.433325px;}
.ws4_c00206{word-spacing:-10.640057px;}
.ws1_c00206{word-spacing:-9.988424px;}
.ws3_c00206{word-spacing:-9.987499px;}
.ws9_c00206{word-spacing:-7.536144px;}
.ws18_c00206{word-spacing:0.000000px;}
.ws15_c00206{word-spacing:0.043999px;}
.ws13_c00206{word-spacing:0.175997px;}
.ws17_c00206{word-spacing:0.213446px;}
.ws16_c00206{word-spacing:0.219446px;}
.ws0_c00206{word-spacing:43.038600px;}
._b_c00206{margin-left:-1040.732606px;}
._7_c00206{margin-left:-4.124516px;}
._0_c00206{margin-left:-1.549390px;}
._a_c00206{width:1.005737px;}
._2_c00206{width:18.938646px;}
._9_c00206{width:19.965050px;}
._4_c00206{width:21.758318px;}
._3_c00206{width:22.890101px;}
._1_c00206{width:28.585973px;}
._5_c00206{width:29.809451px;}
._8_c00206{width:31.979946px;}
._6_c00206{width:39.140287px;}
.fc6_c00206{color:rgb(0,0,207);}
.fc5_c00206{color:rgb(79,153,5);}
.fc3_c00206{color:rgb(33,74,135);}
.fc2_c00206{color:rgb(143,89,3);}
.fc4_c00206{color:rgb(207,92,0);}
.fc1_c00206{color:rgb(6,69,173);}
.fc0_c00206{color:rgb(0,0,0);}
.fs3_c00206{font-size:31.015800px;}
.fs2_c00206{font-size:43.999200px;}
.fs1_c00206{font-size:59.775600px;}
.fs0_c00206{font-size:86.077200px;}
.y0_c00206{bottom:0.000000px;}
.y1f_c00206{bottom:44.250000px;}
.y1e_c00206{bottom:98.490000px;}
.y1d_c00206{bottom:131.365500px;}
.y1c_c00206{bottom:164.242500px;}
.y1b_c00206{bottom:180.681000px;}
.y1a_c00206{bottom:197.119500px;}
.y19_c00206{bottom:213.558000px;}
.y18_c00206{bottom:229.623000px;}
.y17_c00206{bottom:246.061500px;}
.y16_c00206{bottom:262.498500px;}
.y15_c00206{bottom:295.375500px;}
.y14_c00206{bottom:311.814000px;}
.y13_c00206{bottom:328.252500px;}
.y12_c00206{bottom:344.691000px;}
.y11_c00206{bottom:361.129500px;}
.y10_c00206{bottom:377.568000px;}
.yf_c00206{bottom:393.633000px;}
.ye_c00206{bottom:441.757500px;}
.yd_c00206{bottom:459.690000px;}
.yc_c00206{bottom:477.622500px;}
.yb_c00206{bottom:495.555000px;}
.ya_c00206{bottom:513.487500px;}
.y9_c00206{bottom:531.420000px;}
.y8_c00206{bottom:549.352500px;}
.y7_c00206{bottom:576.238500px;}
.y6_c00206{bottom:594.171000px;}
.y5_c00206{bottom:621.057000px;}
.y4_c00206{bottom:638.989500px;}
.y3_c00206{bottom:665.875500px;}
.y2_c00206{bottom:692.760000px;}
.y1_c00206{bottom:735.019500px;}
.h6_c00206{height:35.190766px;}
.h7_c00206{height:36.007158px;}
.h3_c00206{height:40.511979px;}
.h4_c00206{height:52.332837px;}
.h5_c00206{height:52.338837px;}
.h2_c00206{height:58.337477px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w0_c00206{width:892.920000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:127.558500px;}
.x2_c00206{left:137.122500px;}
.x3_c00206{left:163.713000px;}
.x4_c00206{left:435.249000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls3_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.078221pt;}
.ls2_c00206{letter-spacing:0.087539pt;}
.ls1_c00206{letter-spacing:0.092873pt;}
.ws2_c00206{word-spacing:-23.622682pt;}
.ws14_c00206{word-spacing:-23.544461pt;}
.ws8_c00206{word-spacing:-18.490586pt;}
.wse_c00206{word-spacing:-17.268507pt;}
.ws6_c00206{word-spacing:-16.684034pt;}
.wsd_c00206{word-spacing:-16.099562pt;}
.wsa_c00206{word-spacing:-15.635226pt;}
.wsb_c00206{word-spacing:-15.621357pt;}
.wsc_c00206{word-spacing:-15.568223pt;}
.ws7_c00206{word-spacing:-15.143152pt;}
.ws10_c00206{word-spacing:-13.867939pt;}
.wsf_c00206{word-spacing:-13.831974pt;}
.ws12_c00206{word-spacing:-13.124065pt;}
.ws5_c00206{word-spacing:-12.858396pt;}
.ws11_c00206{word-spacing:-11.051844pt;}
.ws4_c00206{word-spacing:-9.457828pt;}
.ws1_c00206{word-spacing:-8.878599pt;}
.ws3_c00206{word-spacing:-8.877777pt;}
.ws9_c00206{word-spacing:-6.698795pt;}
.ws18_c00206{word-spacing:0.000000pt;}
.ws15_c00206{word-spacing:0.039110pt;}
.ws13_c00206{word-spacing:0.156442pt;}
.ws17_c00206{word-spacing:0.189730pt;}
.ws16_c00206{word-spacing:0.195063pt;}
.ws0_c00206{word-spacing:38.256533pt;}
._b_c00206{margin-left:-925.095650pt;}
._7_c00206{margin-left:-3.666237pt;}
._0_c00206{margin-left:-1.377235pt;}
._a_c00206{width:0.893988pt;}
._2_c00206{width:16.834352pt;}
._9_c00206{width:17.746711pt;}
._4_c00206{width:19.340727pt;}
._3_c00206{width:20.346756pt;}
._1_c00206{width:25.409754pt;}
._5_c00206{width:26.497290pt;}
._8_c00206{width:28.426619pt;}
._6_c00206{width:34.791366pt;}
.fs3_c00206{font-size:27.569600pt;}
.fs2_c00206{font-size:39.110400pt;}
.fs1_c00206{font-size:53.133867pt;}
.fs0_c00206{font-size:76.513067pt;}
.y0_c00206{bottom:0.000000pt;}
.y1f_c00206{bottom:39.333333pt;}
.y1e_c00206{bottom:87.546667pt;}
.y1d_c00206{bottom:116.769333pt;}
.y1c_c00206{bottom:145.993333pt;}
.y1b_c00206{bottom:160.605333pt;}
.y1a_c00206{bottom:175.217333pt;}
.y19_c00206{bottom:189.829333pt;}
.y18_c00206{bottom:204.109333pt;}
.y17_c00206{bottom:218.721333pt;}
.y16_c00206{bottom:233.332000pt;}
.y15_c00206{bottom:262.556000pt;}
.y14_c00206{bottom:277.168000pt;}
.y13_c00206{bottom:291.780000pt;}
.y12_c00206{bottom:306.392000pt;}
.y11_c00206{bottom:321.004000pt;}
.y10_c00206{bottom:335.616000pt;}
.yf_c00206{bottom:349.896000pt;}
.ye_c00206{bottom:392.673333pt;}
.yd_c00206{bottom:408.613333pt;}
.yc_c00206{bottom:424.553333pt;}
.yb_c00206{bottom:440.493333pt;}
.ya_c00206{bottom:456.433333pt;}
.y9_c00206{bottom:472.373333pt;}
.y8_c00206{bottom:488.313333pt;}
.y7_c00206{bottom:512.212000pt;}
.y6_c00206{bottom:528.152000pt;}
.y5_c00206{bottom:552.050667pt;}
.y4_c00206{bottom:567.990667pt;}
.y3_c00206{bottom:591.889333pt;}
.y2_c00206{bottom:615.786667pt;}
.y1_c00206{bottom:653.350667pt;}
.h6_c00206{height:31.280681pt;}
.h7_c00206{height:32.006363pt;}
.h3_c00206{height:36.010648pt;}
.h4_c00206{height:46.518078pt;}
.h5_c00206{height:46.523411pt;}
.h2_c00206{height:51.855535pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w0_c00206{width:793.706667pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:113.385333pt;}
.x2_c00206{left:121.886667pt;}
.x3_c00206{left:145.522667pt;}
.x4_c00206{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_927fbe17f9574a37bba8ad49.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_d75be9ae54f3cfeddab1f113.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls3_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.087998px;}
.ls2_c00207{letter-spacing:0.098482px;}
.ls1_c00207{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00207{word-spacing:-26.487518px;}
.ws2_c00207{word-spacing:0.000000px;}
.ws1_c00207{word-spacing:0.043999px;}
.ws3_c00207{word-spacing:0.056767px;}
.ws5_c00207{word-spacing:0.213446px;}
._0_c00207{width:1.041538px;}
.fc5_c00207{color:rgb(0,0,207);}
.fc4_c00207{color:rgb(207,92,0);}
.fc3_c00207{color:rgb(33,74,135);}
.fc2_c00207{color:rgb(79,153,5);}
.fc1_c00207{color:rgb(143,89,3);}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:43.999200px;}
.fs1_c00207{font-size:59.775600px;}
.y0_c00207{bottom:0.000000px;}
.y2d_c00207{bottom:44.250000px;}
.y2c_c00207{bottom:354.384000px;}
.y2b_c00207{bottom:370.822500px;}
.y2a_c00207{bottom:387.259500px;}
.y29_c00207{bottom:403.698000px;}
.y28_c00207{bottom:420.136500px;}
.y27_c00207{bottom:436.575000px;}
.y26_c00207{bottom:453.013500px;}
.y25_c00207{bottom:469.452000px;}
.y24_c00207{bottom:485.890500px;}
.y23_c00207{bottom:502.329000px;}
.y22_c00207{bottom:518.767500px;}
.y21_c00207{bottom:551.643000px;}
.y20_c00207{bottom:568.081500px;}
.y1f_c00207{bottom:584.520000px;}
.y1e_c00207{bottom:617.397000px;}
.y1d_c00207{bottom:650.274000px;}
.y1c_c00207{bottom:666.712500px;}
.y1b_c00207{bottom:683.151000px;}
.y1a_c00207{bottom:699.589500px;}
.y19_c00207{bottom:716.028000px;}
.y18_c00207{bottom:732.465000px;}
.y17_c00207{bottom:748.903500px;}
.y16_c00207{bottom:765.342000px;}
.y15_c00207{bottom:781.780500px;}
.y14_c00207{bottom:798.219000px;}
.y13_c00207{bottom:814.657500px;}
.y12_c00207{bottom:847.534500px;}
.y11_c00207{bottom:863.973000px;}
.y10_c00207{bottom:880.411500px;}
.yf_c00207{bottom:896.848500px;}
.ye_c00207{bottom:913.287000px;}
.yd_c00207{bottom:929.725500px;}
.yc_c00207{bottom:946.164000px;}
.yb_c00207{bottom:962.602500px;}
.ya_c00207{bottom:979.041000px;}
.y9_c00207{bottom:995.479500px;}
.y8_c00207{bottom:1011.918000px;}
.y7_c00207{bottom:1028.356500px;}
.y6_c00207{bottom:1044.795000px;}
.y5_c00207{bottom:1077.670500px;}
.y4_c00207{bottom:1094.109000px;}
.y3_c00207{bottom:1126.986000px;}
.y2_c00207{bottom:1143.424500px;}
.y1_c00207{bottom:1159.863000px;}
.h3_c00207{height:35.190766px;}
.h2_c00207{height:36.007158px;}
.h4_c00207{height:52.332837px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w0_c00207{width:892.920000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:137.122500px;}
.x4_c00207{left:177.007500px;}
.x2_c00207{left:183.654000px;}
.x3_c00207{left:196.948500px;}
.x5_c00207{left:435.249000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls3_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.078221pt;}
.ls2_c00207{letter-spacing:0.087539pt;}
.ls1_c00207{letter-spacing:0.092873pt;}
.ws0_c00207{word-spacing:-23.622682pt;}
.ws4_c00207{word-spacing:-23.544461pt;}
.ws2_c00207{word-spacing:0.000000pt;}
.ws1_c00207{word-spacing:0.039110pt;}
.ws3_c00207{word-spacing:0.050460pt;}
.ws5_c00207{word-spacing:0.189730pt;}
._0_c00207{width:0.925811pt;}
.fs0_c00207{font-size:39.110400pt;}
.fs1_c00207{font-size:53.133867pt;}
.y0_c00207{bottom:0.000000pt;}
.y2d_c00207{bottom:39.333333pt;}
.y2c_c00207{bottom:315.008000pt;}
.y2b_c00207{bottom:329.620000pt;}
.y2a_c00207{bottom:344.230667pt;}
.y29_c00207{bottom:358.842667pt;}
.y28_c00207{bottom:373.454667pt;}
.y27_c00207{bottom:388.066667pt;}
.y26_c00207{bottom:402.678667pt;}
.y25_c00207{bottom:417.290667pt;}
.y24_c00207{bottom:431.902667pt;}
.y23_c00207{bottom:446.514667pt;}
.y22_c00207{bottom:461.126667pt;}
.y21_c00207{bottom:490.349333pt;}
.y20_c00207{bottom:504.961333pt;}
.y1f_c00207{bottom:519.573333pt;}
.y1e_c00207{bottom:548.797333pt;}
.y1d_c00207{bottom:578.021333pt;}
.y1c_c00207{bottom:592.633333pt;}
.y1b_c00207{bottom:607.245333pt;}
.y1a_c00207{bottom:621.857333pt;}
.y19_c00207{bottom:636.469333pt;}
.y18_c00207{bottom:651.080000pt;}
.y17_c00207{bottom:665.692000pt;}
.y16_c00207{bottom:680.304000pt;}
.y15_c00207{bottom:694.916000pt;}
.y14_c00207{bottom:709.528000pt;}
.y13_c00207{bottom:724.140000pt;}
.y12_c00207{bottom:753.364000pt;}
.y11_c00207{bottom:767.976000pt;}
.y10_c00207{bottom:782.588000pt;}
.yf_c00207{bottom:797.198667pt;}
.ye_c00207{bottom:811.810667pt;}
.yd_c00207{bottom:826.422667pt;}
.yc_c00207{bottom:841.034667pt;}
.yb_c00207{bottom:855.646667pt;}
.ya_c00207{bottom:870.258667pt;}
.y9_c00207{bottom:884.870667pt;}
.y8_c00207{bottom:899.482667pt;}
.y7_c00207{bottom:914.094667pt;}
.y6_c00207{bottom:928.706667pt;}
.y5_c00207{bottom:957.929333pt;}
.y4_c00207{bottom:972.541333pt;}
.y3_c00207{bottom:1001.765333pt;}
.y2_c00207{bottom:1016.377333pt;}
.y1_c00207{bottom:1030.989333pt;}
.h3_c00207{height:31.280681pt;}
.h2_c00207{height:32.006363pt;}
.h4_c00207{height:46.518078pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w0_c00207{width:793.706667pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:121.886667pt;}
.x4_c00207{left:157.340000pt;}
.x2_c00207{left:163.248000pt;}
.x3_c00207{left:175.065333pt;}
.x5_c00207{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68584f0149084c4f84bf589a.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:0.893555;font-style:normal;font-weight:normal;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_385304da6ff743e6d3f45e9d.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.083496;font-style:normal;font-weight:normal;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_09991f7de5a14389960bb974.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_603d8ad5221612826f03c2d3.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.000000;font-style: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;}
.ls3_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.087998px;}
.ls2_c00208{letter-spacing:0.098482px;}
.ls1_c00208{letter-spacing:0.104482px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00208{word-spacing:-26.575517px;}
.ws14_c00208{word-spacing:-26.487518px;}
.ws8_c00208{word-spacing:-23.013606px;}
.ws7_c00208{word-spacing:-19.247743px;}
.ws6_c00208{word-spacing:-18.769538px;}
.wse_c00208{word-spacing:-18.590212px;}
.wsd_c00208{word-spacing:-18.112007px;}
.wsa_c00208{word-spacing:-17.589629px;}
.wsb_c00208{word-spacing:-17.574026px;}
.wsc_c00208{word-spacing:-17.514251px;}
.ws10_c00208{word-spacing:-15.601432px;}
.wsf_c00208{word-spacing:-15.560971px;}
.ws12_c00208{word-spacing:-14.764573px;}
.ws5_c00208{word-spacing:-13.031081px;}
.ws11_c00208{word-spacing:-12.433325px;}
.ws1_c00208{word-spacing:-9.988424px;}
.ws3_c00208{word-spacing:-9.987499px;}
.ws4_c00208{word-spacing:-9.265218px;}
.ws9_c00208{word-spacing:-7.536144px;}
.ws18_c00208{word-spacing:0.000000px;}
.ws15_c00208{word-spacing:0.043999px;}
.ws13_c00208{word-spacing:0.175997px;}
.ws17_c00208{word-spacing:0.213446px;}
.ws16_c00208{word-spacing:0.219446px;}
.ws0_c00208{word-spacing:43.038600px;}
._b_c00208{margin-left:-1040.732606px;}
._8_c00208{margin-left:-4.124516px;}
._0_c00208{margin-left:-1.549390px;}
._a_c00208{width:1.005737px;}
._2_c00208{width:17.838343px;}
._6_c00208{width:19.128192px;}
._9_c00208{width:20.479862px;}
._4_c00208{width:21.758318px;}
._3_c00208{width:22.890101px;}
._5_c00208{width:29.809451px;}
._1_c00208{width:31.465134px;}
._7_c00208{width:39.140287px;}
.fc6_c00208{color:rgb(0,0,207);}
.fc5_c00208{color:rgb(79,153,5);}
.fc3_c00208{color:rgb(33,74,135);}
.fc2_c00208{color:rgb(143,89,3);}
.fc4_c00208{color:rgb(207,92,0);}
.fc1_c00208{color:rgb(6,69,173);}
.fc0_c00208{color:rgb(0,0,0);}
.fs3_c00208{font-size:31.015800px;}
.fs2_c00208{font-size:43.999200px;}
.fs1_c00208{font-size:59.775600px;}
.fs0_c00208{font-size:86.077200px;}
.y0_c00208{bottom:0.000000px;}
.y1f_c00208{bottom:44.250000px;}
.y1e_c00208{bottom:98.490000px;}
.y1d_c00208{bottom:131.365500px;}
.y1c_c00208{bottom:164.242500px;}
.y1b_c00208{bottom:180.681000px;}
.y1a_c00208{bottom:197.119500px;}
.y19_c00208{bottom:213.558000px;}
.y18_c00208{bottom:229.623000px;}
.y17_c00208{bottom:246.061500px;}
.y16_c00208{bottom:262.498500px;}
.y15_c00208{bottom:295.375500px;}
.y14_c00208{bottom:311.814000px;}
.y13_c00208{bottom:328.252500px;}
.y12_c00208{bottom:344.691000px;}
.y11_c00208{bottom:361.129500px;}
.y10_c00208{bottom:377.568000px;}
.yf_c00208{bottom:393.633000px;}
.ye_c00208{bottom:441.757500px;}
.yd_c00208{bottom:459.690000px;}
.yc_c00208{bottom:477.622500px;}
.yb_c00208{bottom:495.555000px;}
.ya_c00208{bottom:513.487500px;}
.y9_c00208{bottom:531.420000px;}
.y8_c00208{bottom:549.352500px;}
.y7_c00208{bottom:576.238500px;}
.y6_c00208{bottom:594.171000px;}
.y5_c00208{bottom:621.057000px;}
.y4_c00208{bottom:638.989500px;}
.y3_c00208{bottom:665.875500px;}
.y2_c00208{bottom:692.760000px;}
.y1_c00208{bottom:735.019500px;}
.h6_c00208{height:35.190766px;}
.h7_c00208{height:36.007158px;}
.h3_c00208{height:40.511979px;}
.h4_c00208{height:52.332837px;}
.h5_c00208{height:52.338837px;}
.h2_c00208{height:58.337477px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w0_c00208{width:892.920000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:127.558500px;}
.x2_c00208{left:137.122500px;}
.x3_c00208{left:163.713000px;}
.x4_c00208{left:435.249000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls3_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.078221pt;}
.ls2_c00208{letter-spacing:0.087539pt;}
.ls1_c00208{letter-spacing:0.092873pt;}
.ws2_c00208{word-spacing:-23.622682pt;}
.ws14_c00208{word-spacing:-23.544461pt;}
.ws8_c00208{word-spacing:-20.456539pt;}
.ws7_c00208{word-spacing:-17.109105pt;}
.ws6_c00208{word-spacing:-16.684034pt;}
.wse_c00208{word-spacing:-16.524633pt;}
.wsd_c00208{word-spacing:-16.099562pt;}
.wsa_c00208{word-spacing:-15.635226pt;}
.wsb_c00208{word-spacing:-15.621357pt;}
.wsc_c00208{word-spacing:-15.568223pt;}
.ws10_c00208{word-spacing:-13.867939pt;}
.wsf_c00208{word-spacing:-13.831974pt;}
.ws12_c00208{word-spacing:-13.124065pt;}
.ws5_c00208{word-spacing:-11.583183pt;}
.ws11_c00208{word-spacing:-11.051844pt;}
.ws1_c00208{word-spacing:-8.878599pt;}
.ws3_c00208{word-spacing:-8.877777pt;}
.ws4_c00208{word-spacing:-8.235749pt;}
.ws9_c00208{word-spacing:-6.698795pt;}
.ws18_c00208{word-spacing:0.000000pt;}
.ws15_c00208{word-spacing:0.039110pt;}
.ws13_c00208{word-spacing:0.156442pt;}
.ws17_c00208{word-spacing:0.189730pt;}
.ws16_c00208{word-spacing:0.195063pt;}
.ws0_c00208{word-spacing:38.256533pt;}
._b_c00208{margin-left:-925.095650pt;}
._8_c00208{margin-left:-3.666237pt;}
._0_c00208{margin-left:-1.377235pt;}
._a_c00208{width:0.893988pt;}
._2_c00208{width:15.856305pt;}
._6_c00208{width:17.002837pt;}
._9_c00208{width:18.204322pt;}
._4_c00208{width:19.340727pt;}
._3_c00208{width:20.346756pt;}
._5_c00208{width:26.497290pt;}
._1_c00208{width:27.969008pt;}
._7_c00208{width:34.791366pt;}
.fs3_c00208{font-size:27.569600pt;}
.fs2_c00208{font-size:39.110400pt;}
.fs1_c00208{font-size:53.133867pt;}
.fs0_c00208{font-size:76.513067pt;}
.y0_c00208{bottom:0.000000pt;}
.y1f_c00208{bottom:39.333333pt;}
.y1e_c00208{bottom:87.546667pt;}
.y1d_c00208{bottom:116.769333pt;}
.y1c_c00208{bottom:145.993333pt;}
.y1b_c00208{bottom:160.605333pt;}
.y1a_c00208{bottom:175.217333pt;}
.y19_c00208{bottom:189.829333pt;}
.y18_c00208{bottom:204.109333pt;}
.y17_c00208{bottom:218.721333pt;}
.y16_c00208{bottom:233.332000pt;}
.y15_c00208{bottom:262.556000pt;}
.y14_c00208{bottom:277.168000pt;}
.y13_c00208{bottom:291.780000pt;}
.y12_c00208{bottom:306.392000pt;}
.y11_c00208{bottom:321.004000pt;}
.y10_c00208{bottom:335.616000pt;}
.yf_c00208{bottom:349.896000pt;}
.ye_c00208{bottom:392.673333pt;}
.yd_c00208{bottom:408.613333pt;}
.yc_c00208{bottom:424.553333pt;}
.yb_c00208{bottom:440.493333pt;}
.ya_c00208{bottom:456.433333pt;}
.y9_c00208{bottom:472.373333pt;}
.y8_c00208{bottom:488.313333pt;}
.y7_c00208{bottom:512.212000pt;}
.y6_c00208{bottom:528.152000pt;}
.y5_c00208{bottom:552.050667pt;}
.y4_c00208{bottom:567.990667pt;}
.y3_c00208{bottom:591.889333pt;}
.y2_c00208{bottom:615.786667pt;}
.y1_c00208{bottom:653.350667pt;}
.h6_c00208{height:31.280681pt;}
.h7_c00208{height:32.006363pt;}
.h3_c00208{height:36.010648pt;}
.h4_c00208{height:46.518078pt;}
.h5_c00208{height:46.523411pt;}
.h2_c00208{height:51.855535pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w0_c00208{width:793.706667pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:113.385333pt;}
.x2_c00208{left:121.886667pt;}
.x3_c00208{left:145.522667pt;}
.x4_c00208{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f161184fc3b92e5d69b88cd.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_1f6a3dca6c1f7b62c224e19e.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls3_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:0.087998px;}
.ls2_c00209{letter-spacing:0.098482px;}
.ls1_c00209{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00209{word-spacing:-26.487518px;}
.ws2_c00209{word-spacing:0.000000px;}
.ws1_c00209{word-spacing:0.043999px;}
.ws3_c00209{word-spacing:0.056767px;}
.ws5_c00209{word-spacing:0.213446px;}
._0_c00209{width:1.041538px;}
.fc5_c00209{color:rgb(0,0,207);}
.fc4_c00209{color:rgb(207,92,0);}
.fc3_c00209{color:rgb(33,74,135);}
.fc2_c00209{color:rgb(79,153,5);}
.fc1_c00209{color:rgb(143,89,3);}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:43.999200px;}
.fs1_c00209{font-size:59.775600px;}
.y0_c00209{bottom:0.000000px;}
.y2d_c00209{bottom:44.250000px;}
.y2c_c00209{bottom:354.384000px;}
.y2b_c00209{bottom:370.822500px;}
.y2a_c00209{bottom:387.259500px;}
.y29_c00209{bottom:403.698000px;}
.y28_c00209{bottom:420.136500px;}
.y27_c00209{bottom:436.575000px;}
.y26_c00209{bottom:453.013500px;}
.y25_c00209{bottom:469.452000px;}
.y24_c00209{bottom:485.890500px;}
.y23_c00209{bottom:502.329000px;}
.y22_c00209{bottom:518.767500px;}
.y21_c00209{bottom:551.643000px;}
.y20_c00209{bottom:568.081500px;}
.y1f_c00209{bottom:584.520000px;}
.y1e_c00209{bottom:617.397000px;}
.y1d_c00209{bottom:650.274000px;}
.y1c_c00209{bottom:666.712500px;}
.y1b_c00209{bottom:683.151000px;}
.y1a_c00209{bottom:699.589500px;}
.y19_c00209{bottom:716.028000px;}
.y18_c00209{bottom:732.465000px;}
.y17_c00209{bottom:748.903500px;}
.y16_c00209{bottom:765.342000px;}
.y15_c00209{bottom:781.780500px;}
.y14_c00209{bottom:798.219000px;}
.y13_c00209{bottom:814.657500px;}
.y12_c00209{bottom:847.534500px;}
.y11_c00209{bottom:863.973000px;}
.y10_c00209{bottom:880.411500px;}
.yf_c00209{bottom:896.848500px;}
.ye_c00209{bottom:913.287000px;}
.yd_c00209{bottom:929.725500px;}
.yc_c00209{bottom:946.164000px;}
.yb_c00209{bottom:962.602500px;}
.ya_c00209{bottom:979.041000px;}
.y9_c00209{bottom:995.479500px;}
.y8_c00209{bottom:1011.918000px;}
.y7_c00209{bottom:1028.356500px;}
.y6_c00209{bottom:1044.795000px;}
.y5_c00209{bottom:1077.670500px;}
.y4_c00209{bottom:1094.109000px;}
.y3_c00209{bottom:1126.986000px;}
.y2_c00209{bottom:1143.424500px;}
.y1_c00209{bottom:1159.863000px;}
.h3_c00209{height:35.190766px;}
.h2_c00209{height:36.007158px;}
.h4_c00209{height:52.332837px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w0_c00209{width:892.920000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:137.122500px;}
.x4_c00209{left:177.007500px;}
.x2_c00209{left:183.654000px;}
.x3_c00209{left:196.948500px;}
.x5_c00209{left:435.249000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls3_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:0.078221pt;}
.ls2_c00209{letter-spacing:0.087539pt;}
.ls1_c00209{letter-spacing:0.092873pt;}
.ws0_c00209{word-spacing:-23.622682pt;}
.ws4_c00209{word-spacing:-23.544461pt;}
.ws2_c00209{word-spacing:0.000000pt;}
.ws1_c00209{word-spacing:0.039110pt;}
.ws3_c00209{word-spacing:0.050460pt;}
.ws5_c00209{word-spacing:0.189730pt;}
._0_c00209{width:0.925811pt;}
.fs0_c00209{font-size:39.110400pt;}
.fs1_c00209{font-size:53.133867pt;}
.y0_c00209{bottom:0.000000pt;}
.y2d_c00209{bottom:39.333333pt;}
.y2c_c00209{bottom:315.008000pt;}
.y2b_c00209{bottom:329.620000pt;}
.y2a_c00209{bottom:344.230667pt;}
.y29_c00209{bottom:358.842667pt;}
.y28_c00209{bottom:373.454667pt;}
.y27_c00209{bottom:388.066667pt;}
.y26_c00209{bottom:402.678667pt;}
.y25_c00209{bottom:417.290667pt;}
.y24_c00209{bottom:431.902667pt;}
.y23_c00209{bottom:446.514667pt;}
.y22_c00209{bottom:461.126667pt;}
.y21_c00209{bottom:490.349333pt;}
.y20_c00209{bottom:504.961333pt;}
.y1f_c00209{bottom:519.573333pt;}
.y1e_c00209{bottom:548.797333pt;}
.y1d_c00209{bottom:578.021333pt;}
.y1c_c00209{bottom:592.633333pt;}
.y1b_c00209{bottom:607.245333pt;}
.y1a_c00209{bottom:621.857333pt;}
.y19_c00209{bottom:636.469333pt;}
.y18_c00209{bottom:651.080000pt;}
.y17_c00209{bottom:665.692000pt;}
.y16_c00209{bottom:680.304000pt;}
.y15_c00209{bottom:694.916000pt;}
.y14_c00209{bottom:709.528000pt;}
.y13_c00209{bottom:724.140000pt;}
.y12_c00209{bottom:753.364000pt;}
.y11_c00209{bottom:767.976000pt;}
.y10_c00209{bottom:782.588000pt;}
.yf_c00209{bottom:797.198667pt;}
.ye_c00209{bottom:811.810667pt;}
.yd_c00209{bottom:826.422667pt;}
.yc_c00209{bottom:841.034667pt;}
.yb_c00209{bottom:855.646667pt;}
.ya_c00209{bottom:870.258667pt;}
.y9_c00209{bottom:884.870667pt;}
.y8_c00209{bottom:899.482667pt;}
.y7_c00209{bottom:914.094667pt;}
.y6_c00209{bottom:928.706667pt;}
.y5_c00209{bottom:957.929333pt;}
.y4_c00209{bottom:972.541333pt;}
.y3_c00209{bottom:1001.765333pt;}
.y2_c00209{bottom:1016.377333pt;}
.y1_c00209{bottom:1030.989333pt;}
.h3_c00209{height:31.280681pt;}
.h2_c00209{height:32.006363pt;}
.h4_c00209{height:46.518078pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w0_c00209{width:793.706667pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:121.886667pt;}
.x4_c00209{left:157.340000pt;}
.x2_c00209{left:163.248000pt;}
.x3_c00209{left:175.065333pt;}
.x5_c00209{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_405e222ad92b90899647406e.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:0.893555;font-style:normal;font-weight:normal;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_385304da6ff743e6d3f45e9d.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.083496;font-style:normal;font-weight:normal;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_67e654a6679bc61aae4b70f4.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.014648;font-style:normal;font-weight:normal;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_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_9b963582b28e673b2dd7fa38.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.000000;font-style: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.000000px;}
.ls0_c00210{letter-spacing:0.087998px;}
.ls2_c00210{letter-spacing:0.098482px;}
.ls1_c00210{letter-spacing:0.104482px;}
.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;}
}
.ws19_c00210{word-spacing:-33.713438px;}
.ws2_c00210{word-spacing:-26.575517px;}
.ws14_c00210{word-spacing:-26.487518px;}
.ws8_c00210{word-spacing:-20.562806px;}
.wse_c00210{word-spacing:-19.427070px;}
.ws6_c00210{word-spacing:-18.769538px;}
.wsd_c00210{word-spacing:-18.112007px;}
.wsa_c00210{word-spacing:-17.589629px;}
.wsb_c00210{word-spacing:-17.574026px;}
.wsc_c00210{word-spacing:-17.514251px;}
.ws7_c00210{word-spacing:-16.796944px;}
.ws5_c00210{word-spacing:-16.019861px;}
.ws10_c00210{word-spacing:-15.601432px;}
.wsf_c00210{word-spacing:-15.560971px;}
.ws12_c00210{word-spacing:-14.764573px;}
.ws11_c00210{word-spacing:-12.433325px;}
.ws4_c00210{word-spacing:-12.253998px;}
.ws1_c00210{word-spacing:-9.988424px;}
.ws3_c00210{word-spacing:-9.987499px;}
.ws9_c00210{word-spacing:-7.536144px;}
.ws18_c00210{word-spacing:0.000000px;}
.ws15_c00210{word-spacing:0.043999px;}
.ws13_c00210{word-spacing:0.175997px;}
.ws17_c00210{word-spacing:0.213446px;}
.ws16_c00210{word-spacing:0.219446px;}
.ws0_c00210{word-spacing:43.038600px;}
._b_c00210{margin-left:-1040.732606px;}
._7_c00210{margin-left:-4.124516px;}
._9_c00210{margin-left:-2.923259px;}
._0_c00210{margin-left:-1.549390px;}
._a_c00210{width:1.005737px;}
._2_c00210{width:19.065544px;}
._4_c00210{width:21.758318px;}
._3_c00210{width:22.890101px;}
._1_c00210{width:25.459914px;}
._5_c00210{width:29.809451px;}
._8_c00210{width:31.979946px;}
._6_c00210{width:39.140287px;}
.fc6_c00210{color:rgb(0,0,207);}
.fc5_c00210{color:rgb(79,153,5);}
.fc3_c00210{color:rgb(33,74,135);}
.fc2_c00210{color:rgb(143,89,3);}
.fc4_c00210{color:rgb(207,92,0);}
.fc1_c00210{color:rgb(6,69,173);}
.fc0_c00210{color:rgb(0,0,0);}
.fs3_c00210{font-size:31.015800px;}
.fs2_c00210{font-size:43.999200px;}
.fs1_c00210{font-size:59.775600px;}
.fs0_c00210{font-size:86.077200px;}
.y0_c00210{bottom:0.000000px;}
.y1f_c00210{bottom:44.250000px;}
.y1e_c00210{bottom:98.490000px;}
.y1d_c00210{bottom:131.365500px;}
.y1c_c00210{bottom:164.242500px;}
.y1b_c00210{bottom:180.681000px;}
.y1a_c00210{bottom:197.119500px;}
.y19_c00210{bottom:213.558000px;}
.y18_c00210{bottom:229.623000px;}
.y17_c00210{bottom:246.061500px;}
.y16_c00210{bottom:262.498500px;}
.y15_c00210{bottom:295.375500px;}
.y14_c00210{bottom:311.814000px;}
.y13_c00210{bottom:328.252500px;}
.y12_c00210{bottom:344.691000px;}
.y11_c00210{bottom:361.129500px;}
.y10_c00210{bottom:377.568000px;}
.yf_c00210{bottom:393.633000px;}
.ye_c00210{bottom:441.757500px;}
.yd_c00210{bottom:459.690000px;}
.yc_c00210{bottom:477.622500px;}
.yb_c00210{bottom:495.555000px;}
.ya_c00210{bottom:513.487500px;}
.y9_c00210{bottom:531.420000px;}
.y8_c00210{bottom:549.352500px;}
.y7_c00210{bottom:576.238500px;}
.y6_c00210{bottom:594.171000px;}
.y5_c00210{bottom:621.057000px;}
.y4_c00210{bottom:638.989500px;}
.y3_c00210{bottom:665.875500px;}
.y2_c00210{bottom:692.760000px;}
.y1_c00210{bottom:735.019500px;}
.h6_c00210{height:35.190766px;}
.h7_c00210{height:36.007158px;}
.h3_c00210{height:40.511979px;}
.h4_c00210{height:52.332837px;}
.h5_c00210{height:52.338837px;}
.h2_c00210{height:58.337477px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w0_c00210{width:892.920000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:127.558500px;}
.x2_c00210{left:137.122500px;}
.x3_c00210{left:163.713000px;}
.x4_c00210{left:435.526500px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls3_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.078221pt;}
.ls2_c00210{letter-spacing:0.087539pt;}
.ls1_c00210{letter-spacing:0.092873pt;}
.ws19_c00210{word-spacing:-29.967501pt;}
.ws2_c00210{word-spacing:-23.622682pt;}
.ws14_c00210{word-spacing:-23.544461pt;}
.ws8_c00210{word-spacing:-18.278050pt;}
.wse_c00210{word-spacing:-17.268507pt;}
.ws6_c00210{word-spacing:-16.684034pt;}
.wsd_c00210{word-spacing:-16.099562pt;}
.wsa_c00210{word-spacing:-15.635226pt;}
.wsb_c00210{word-spacing:-15.621357pt;}
.wsc_c00210{word-spacing:-15.568223pt;}
.ws7_c00210{word-spacing:-14.930617pt;}
.ws5_c00210{word-spacing:-14.239876pt;}
.ws10_c00210{word-spacing:-13.867939pt;}
.wsf_c00210{word-spacing:-13.831974pt;}
.ws12_c00210{word-spacing:-13.124065pt;}
.ws11_c00210{word-spacing:-11.051844pt;}
.ws4_c00210{word-spacing:-10.892443pt;}
.ws1_c00210{word-spacing:-8.878599pt;}
.ws3_c00210{word-spacing:-8.877777pt;}
.ws9_c00210{word-spacing:-6.698795pt;}
.ws18_c00210{word-spacing:0.000000pt;}
.ws15_c00210{word-spacing:0.039110pt;}
.ws13_c00210{word-spacing:0.156442pt;}
.ws17_c00210{word-spacing:0.189730pt;}
.ws16_c00210{word-spacing:0.195063pt;}
.ws0_c00210{word-spacing:38.256533pt;}
._b_c00210{margin-left:-925.095650pt;}
._7_c00210{margin-left:-3.666237pt;}
._9_c00210{margin-left:-2.598452pt;}
._0_c00210{margin-left:-1.377235pt;}
._a_c00210{width:0.893988pt;}
._2_c00210{width:16.947150pt;}
._4_c00210{width:19.340727pt;}
._3_c00210{width:20.346756pt;}
._1_c00210{width:22.631035pt;}
._5_c00210{width:26.497290pt;}
._8_c00210{width:28.426619pt;}
._6_c00210{width:34.791366pt;}
.fs3_c00210{font-size:27.569600pt;}
.fs2_c00210{font-size:39.110400pt;}
.fs1_c00210{font-size:53.133867pt;}
.fs0_c00210{font-size:76.513067pt;}
.y0_c00210{bottom:0.000000pt;}
.y1f_c00210{bottom:39.333333pt;}
.y1e_c00210{bottom:87.546667pt;}
.y1d_c00210{bottom:116.769333pt;}
.y1c_c00210{bottom:145.993333pt;}
.y1b_c00210{bottom:160.605333pt;}
.y1a_c00210{bottom:175.217333pt;}
.y19_c00210{bottom:189.829333pt;}
.y18_c00210{bottom:204.109333pt;}
.y17_c00210{bottom:218.721333pt;}
.y16_c00210{bottom:233.332000pt;}
.y15_c00210{bottom:262.556000pt;}
.y14_c00210{bottom:277.168000pt;}
.y13_c00210{bottom:291.780000pt;}
.y12_c00210{bottom:306.392000pt;}
.y11_c00210{bottom:321.004000pt;}
.y10_c00210{bottom:335.616000pt;}
.yf_c00210{bottom:349.896000pt;}
.ye_c00210{bottom:392.673333pt;}
.yd_c00210{bottom:408.613333pt;}
.yc_c00210{bottom:424.553333pt;}
.yb_c00210{bottom:440.493333pt;}
.ya_c00210{bottom:456.433333pt;}
.y9_c00210{bottom:472.373333pt;}
.y8_c00210{bottom:488.313333pt;}
.y7_c00210{bottom:512.212000pt;}
.y6_c00210{bottom:528.152000pt;}
.y5_c00210{bottom:552.050667pt;}
.y4_c00210{bottom:567.990667pt;}
.y3_c00210{bottom:591.889333pt;}
.y2_c00210{bottom:615.786667pt;}
.y1_c00210{bottom:653.350667pt;}
.h6_c00210{height:31.280681pt;}
.h7_c00210{height:32.006363pt;}
.h3_c00210{height:36.010648pt;}
.h4_c00210{height:46.518078pt;}
.h5_c00210{height:46.523411pt;}
.h2_c00210{height:51.855535pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w0_c00210{width:793.706667pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:113.385333pt;}
.x2_c00210{left:121.886667pt;}
.x3_c00210{left:145.522667pt;}
.x4_c00210{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9eb4952d949433a260920873.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.014648;font-style:normal;font-weight:normal;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_960aca3c8bd13f4b6ae79754.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls3_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.087998px;}
.ls2_c00211{letter-spacing:0.098482px;}
.ls1_c00211{letter-spacing:0.104482px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-26.575517px;}
.ws4_c00211{word-spacing:-26.487518px;}
.ws2_c00211{word-spacing:0.000000px;}
.ws1_c00211{word-spacing:0.043999px;}
.ws3_c00211{word-spacing:0.056767px;}
.ws5_c00211{word-spacing:0.213446px;}
._0_c00211{width:1.041538px;}
.fc5_c00211{color:rgb(0,0,207);}
.fc4_c00211{color:rgb(207,92,0);}
.fc3_c00211{color:rgb(33,74,135);}
.fc2_c00211{color:rgb(79,153,5);}
.fc1_c00211{color:rgb(143,89,3);}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:43.999200px;}
.fs1_c00211{font-size:59.775600px;}
.y0_c00211{bottom:0.000000px;}
.y2d_c00211{bottom:44.250000px;}
.y2c_c00211{bottom:354.384000px;}
.y2b_c00211{bottom:370.822500px;}
.y2a_c00211{bottom:387.259500px;}
.y29_c00211{bottom:403.698000px;}
.y28_c00211{bottom:420.136500px;}
.y27_c00211{bottom:436.575000px;}
.y26_c00211{bottom:453.013500px;}
.y25_c00211{bottom:469.452000px;}
.y24_c00211{bottom:485.890500px;}
.y23_c00211{bottom:502.329000px;}
.y22_c00211{bottom:518.767500px;}
.y21_c00211{bottom:551.643000px;}
.y20_c00211{bottom:568.081500px;}
.y1f_c00211{bottom:584.520000px;}
.y1e_c00211{bottom:617.397000px;}
.y1d_c00211{bottom:650.274000px;}
.y1c_c00211{bottom:666.712500px;}
.y1b_c00211{bottom:683.151000px;}
.y1a_c00211{bottom:699.589500px;}
.y19_c00211{bottom:716.028000px;}
.y18_c00211{bottom:732.465000px;}
.y17_c00211{bottom:748.903500px;}
.y16_c00211{bottom:765.342000px;}
.y15_c00211{bottom:781.780500px;}
.y14_c00211{bottom:798.219000px;}
.y13_c00211{bottom:814.657500px;}
.y12_c00211{bottom:847.534500px;}
.y11_c00211{bottom:863.973000px;}
.y10_c00211{bottom:880.411500px;}
.yf_c00211{bottom:896.848500px;}
.ye_c00211{bottom:913.287000px;}
.yd_c00211{bottom:929.725500px;}
.yc_c00211{bottom:946.164000px;}
.yb_c00211{bottom:962.602500px;}
.ya_c00211{bottom:979.041000px;}
.y9_c00211{bottom:995.479500px;}
.y8_c00211{bottom:1011.918000px;}
.y7_c00211{bottom:1028.356500px;}
.y6_c00211{bottom:1044.795000px;}
.y5_c00211{bottom:1077.670500px;}
.y4_c00211{bottom:1094.109000px;}
.y3_c00211{bottom:1126.986000px;}
.y2_c00211{bottom:1143.424500px;}
.y1_c00211{bottom:1159.863000px;}
.h3_c00211{height:35.190766px;}
.h2_c00211{height:36.007158px;}
.h4_c00211{height:52.332837px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w0_c00211{width:892.920000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:137.122500px;}
.x4_c00211{left:177.007500px;}
.x2_c00211{left:183.654000px;}
.x3_c00211{left:196.948500px;}
.x5_c00211{left:435.249000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls3_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.078221pt;}
.ls2_c00211{letter-spacing:0.087539pt;}
.ls1_c00211{letter-spacing:0.092873pt;}
.ws0_c00211{word-spacing:-23.622682pt;}
.ws4_c00211{word-spacing:-23.544461pt;}
.ws2_c00211{word-spacing:0.000000pt;}
.ws1_c00211{word-spacing:0.039110pt;}
.ws3_c00211{word-spacing:0.050460pt;}
.ws5_c00211{word-spacing:0.189730pt;}
._0_c00211{width:0.925811pt;}
.fs0_c00211{font-size:39.110400pt;}
.fs1_c00211{font-size:53.133867pt;}
.y0_c00211{bottom:0.000000pt;}
.y2d_c00211{bottom:39.333333pt;}
.y2c_c00211{bottom:315.008000pt;}
.y2b_c00211{bottom:329.620000pt;}
.y2a_c00211{bottom:344.230667pt;}
.y29_c00211{bottom:358.842667pt;}
.y28_c00211{bottom:373.454667pt;}
.y27_c00211{bottom:388.066667pt;}
.y26_c00211{bottom:402.678667pt;}
.y25_c00211{bottom:417.290667pt;}
.y24_c00211{bottom:431.902667pt;}
.y23_c00211{bottom:446.514667pt;}
.y22_c00211{bottom:461.126667pt;}
.y21_c00211{bottom:490.349333pt;}
.y20_c00211{bottom:504.961333pt;}
.y1f_c00211{bottom:519.573333pt;}
.y1e_c00211{bottom:548.797333pt;}
.y1d_c00211{bottom:578.021333pt;}
.y1c_c00211{bottom:592.633333pt;}
.y1b_c00211{bottom:607.245333pt;}
.y1a_c00211{bottom:621.857333pt;}
.y19_c00211{bottom:636.469333pt;}
.y18_c00211{bottom:651.080000pt;}
.y17_c00211{bottom:665.692000pt;}
.y16_c00211{bottom:680.304000pt;}
.y15_c00211{bottom:694.916000pt;}
.y14_c00211{bottom:709.528000pt;}
.y13_c00211{bottom:724.140000pt;}
.y12_c00211{bottom:753.364000pt;}
.y11_c00211{bottom:767.976000pt;}
.y10_c00211{bottom:782.588000pt;}
.yf_c00211{bottom:797.198667pt;}
.ye_c00211{bottom:811.810667pt;}
.yd_c00211{bottom:826.422667pt;}
.yc_c00211{bottom:841.034667pt;}
.yb_c00211{bottom:855.646667pt;}
.ya_c00211{bottom:870.258667pt;}
.y9_c00211{bottom:884.870667pt;}
.y8_c00211{bottom:899.482667pt;}
.y7_c00211{bottom:914.094667pt;}
.y6_c00211{bottom:928.706667pt;}
.y5_c00211{bottom:957.929333pt;}
.y4_c00211{bottom:972.541333pt;}
.y3_c00211{bottom:1001.765333pt;}
.y2_c00211{bottom:1016.377333pt;}
.y1_c00211{bottom:1030.989333pt;}
.h3_c00211{height:31.280681pt;}
.h2_c00211{height:32.006363pt;}
.h4_c00211{height:46.518078pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w0_c00211{width:793.706667pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:121.886667pt;}
.x4_c00211{left:157.340000pt;}
.x2_c00211{left:163.248000pt;}
.x3_c00211{left:175.065333pt;}
.x5_c00211{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9f1157c3149f2a7f84ae4d6.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:0.893555;font-style:normal;font-weight:normal;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_d1318a69efec9566f76e3468.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_a49e013453ff251f2230a368.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_0e7484355129c26d65543172.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.000000;font-style: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;}
.ls3_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.087998px;}
.ls2_c00212{letter-spacing:0.098482px;}
.ls1_c00212{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00212{word-spacing:-26.575517px;}
.ws13_c00212{word-spacing:-26.487518px;}
.ws5_c00212{word-spacing:-21.280114px;}
.wsd_c00212{word-spacing:-19.427070px;}
.ws6_c00212{word-spacing:-18.769538px;}
.wsc_c00212{word-spacing:-18.112007px;}
.wsa_c00212{word-spacing:-17.589629px;}
.wsb_c00212{word-spacing:-17.574026px;}
.ws4_c00212{word-spacing:-17.514251px;}
.ws8_c00212{word-spacing:-15.840534px;}
.wsf_c00212{word-spacing:-15.601432px;}
.wse_c00212{word-spacing:-15.560971px;}
.ws11_c00212{word-spacing:-14.764573px;}
.ws10_c00212{word-spacing:-12.433325px;}
.ws7_c00212{word-spacing:-12.074671px;}
.ws1_c00212{word-spacing:-9.988424px;}
.ws3_c00212{word-spacing:-9.987499px;}
.ws9_c00212{word-spacing:-7.536144px;}
.ws17_c00212{word-spacing:0.000000px;}
.ws14_c00212{word-spacing:0.043999px;}
.ws12_c00212{word-spacing:0.175997px;}
.ws16_c00212{word-spacing:0.213446px;}
.ws15_c00212{word-spacing:0.219446px;}
.ws0_c00212{word-spacing:43.038600px;}
._b_c00212{margin-left:-1040.732606px;}
._7_c00212{margin-left:-4.124516px;}
._0_c00212{margin-left:-1.549390px;}
._a_c00212{width:1.005737px;}
._1_c00212{width:18.720167px;}
._9_c00212{width:19.965050px;}
._4_c00212{width:21.758318px;}
._3_c00212{width:22.890101px;}
._2_c00212{width:25.791271px;}
._5_c00212{width:29.809451px;}
._8_c00212{width:31.979946px;}
._6_c00212{width:39.140287px;}
.fc6_c00212{color:rgb(0,0,207);}
.fc5_c00212{color:rgb(79,153,5);}
.fc3_c00212{color:rgb(33,74,135);}
.fc2_c00212{color:rgb(143,89,3);}
.fc4_c00212{color:rgb(207,92,0);}
.fc1_c00212{color:rgb(6,69,173);}
.fc0_c00212{color:rgb(0,0,0);}
.fs3_c00212{font-size:31.015800px;}
.fs2_c00212{font-size:43.999200px;}
.fs1_c00212{font-size:59.775600px;}
.fs0_c00212{font-size:86.077200px;}
.y0_c00212{bottom:0.000000px;}
.y1f_c00212{bottom:44.250000px;}
.y1e_c00212{bottom:98.490000px;}
.y1d_c00212{bottom:131.365500px;}
.y1c_c00212{bottom:164.242500px;}
.y1b_c00212{bottom:180.681000px;}
.y1a_c00212{bottom:197.119500px;}
.y19_c00212{bottom:213.558000px;}
.y18_c00212{bottom:229.623000px;}
.y17_c00212{bottom:246.061500px;}
.y16_c00212{bottom:262.498500px;}
.y15_c00212{bottom:295.375500px;}
.y14_c00212{bottom:311.814000px;}
.y13_c00212{bottom:328.252500px;}
.y12_c00212{bottom:344.691000px;}
.y11_c00212{bottom:361.129500px;}
.y10_c00212{bottom:377.568000px;}
.yf_c00212{bottom:393.633000px;}
.ye_c00212{bottom:441.757500px;}
.yd_c00212{bottom:459.690000px;}
.yc_c00212{bottom:477.622500px;}
.yb_c00212{bottom:495.555000px;}
.ya_c00212{bottom:513.487500px;}
.y9_c00212{bottom:531.420000px;}
.y8_c00212{bottom:549.352500px;}
.y7_c00212{bottom:576.238500px;}
.y6_c00212{bottom:594.171000px;}
.y5_c00212{bottom:621.057000px;}
.y4_c00212{bottom:638.989500px;}
.y3_c00212{bottom:665.875500px;}
.y2_c00212{bottom:692.760000px;}
.y1_c00212{bottom:735.019500px;}
.h6_c00212{height:35.190766px;}
.h7_c00212{height:36.007158px;}
.h3_c00212{height:40.511979px;}
.h4_c00212{height:52.332837px;}
.h5_c00212{height:52.338837px;}
.h2_c00212{height:58.337477px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w0_c00212{width:892.920000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:127.558500px;}
.x2_c00212{left:137.122500px;}
.x3_c00212{left:163.713000px;}
.x4_c00212{left:435.249000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls3_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.078221pt;}
.ls2_c00212{letter-spacing:0.087539pt;}
.ls1_c00212{letter-spacing:0.092873pt;}
.ws2_c00212{word-spacing:-23.622682pt;}
.ws13_c00212{word-spacing:-23.544461pt;}
.ws5_c00212{word-spacing:-18.915657pt;}
.wsd_c00212{word-spacing:-17.268507pt;}
.ws6_c00212{word-spacing:-16.684034pt;}
.wsc_c00212{word-spacing:-16.099562pt;}
.wsa_c00212{word-spacing:-15.635226pt;}
.wsb_c00212{word-spacing:-15.621357pt;}
.ws4_c00212{word-spacing:-15.568223pt;}
.ws8_c00212{word-spacing:-14.080475pt;}
.wsf_c00212{word-spacing:-13.867939pt;}
.wse_c00212{word-spacing:-13.831974pt;}
.ws11_c00212{word-spacing:-13.124065pt;}
.ws10_c00212{word-spacing:-11.051844pt;}
.ws7_c00212{word-spacing:-10.733041pt;}
.ws1_c00212{word-spacing:-8.878599pt;}
.ws3_c00212{word-spacing:-8.877777pt;}
.ws9_c00212{word-spacing:-6.698795pt;}
.ws17_c00212{word-spacing:0.000000pt;}
.ws14_c00212{word-spacing:0.039110pt;}
.ws12_c00212{word-spacing:0.156442pt;}
.ws16_c00212{word-spacing:0.189730pt;}
.ws15_c00212{word-spacing:0.195063pt;}
.ws0_c00212{word-spacing:38.256533pt;}
._b_c00212{margin-left:-925.095650pt;}
._7_c00212{margin-left:-3.666237pt;}
._0_c00212{margin-left:-1.377235pt;}
._a_c00212{width:0.893988pt;}
._1_c00212{width:16.640148pt;}
._9_c00212{width:17.746711pt;}
._4_c00212{width:19.340727pt;}
._3_c00212{width:20.346756pt;}
._2_c00212{width:22.925574pt;}
._5_c00212{width:26.497290pt;}
._8_c00212{width:28.426619pt;}
._6_c00212{width:34.791366pt;}
.fs3_c00212{font-size:27.569600pt;}
.fs2_c00212{font-size:39.110400pt;}
.fs1_c00212{font-size:53.133867pt;}
.fs0_c00212{font-size:76.513067pt;}
.y0_c00212{bottom:0.000000pt;}
.y1f_c00212{bottom:39.333333pt;}
.y1e_c00212{bottom:87.546667pt;}
.y1d_c00212{bottom:116.769333pt;}
.y1c_c00212{bottom:145.993333pt;}
.y1b_c00212{bottom:160.605333pt;}
.y1a_c00212{bottom:175.217333pt;}
.y19_c00212{bottom:189.829333pt;}
.y18_c00212{bottom:204.109333pt;}
.y17_c00212{bottom:218.721333pt;}
.y16_c00212{bottom:233.332000pt;}
.y15_c00212{bottom:262.556000pt;}
.y14_c00212{bottom:277.168000pt;}
.y13_c00212{bottom:291.780000pt;}
.y12_c00212{bottom:306.392000pt;}
.y11_c00212{bottom:321.004000pt;}
.y10_c00212{bottom:335.616000pt;}
.yf_c00212{bottom:349.896000pt;}
.ye_c00212{bottom:392.673333pt;}
.yd_c00212{bottom:408.613333pt;}
.yc_c00212{bottom:424.553333pt;}
.yb_c00212{bottom:440.493333pt;}
.ya_c00212{bottom:456.433333pt;}
.y9_c00212{bottom:472.373333pt;}
.y8_c00212{bottom:488.313333pt;}
.y7_c00212{bottom:512.212000pt;}
.y6_c00212{bottom:528.152000pt;}
.y5_c00212{bottom:552.050667pt;}
.y4_c00212{bottom:567.990667pt;}
.y3_c00212{bottom:591.889333pt;}
.y2_c00212{bottom:615.786667pt;}
.y1_c00212{bottom:653.350667pt;}
.h6_c00212{height:31.280681pt;}
.h7_c00212{height:32.006363pt;}
.h3_c00212{height:36.010648pt;}
.h4_c00212{height:46.518078pt;}
.h5_c00212{height:46.523411pt;}
.h2_c00212{height:51.855535pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w0_c00212{width:793.706667pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:113.385333pt;}
.x2_c00212{left:121.886667pt;}
.x3_c00212{left:145.522667pt;}
.x4_c00212{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53745fddd73051821e77f977.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.014648;font-style:normal;font-weight:normal;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_7520d89225b33a88a7731f61.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls3_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:0.087998px;}
.ls2_c00213{letter-spacing:0.098482px;}
.ls1_c00213{letter-spacing:0.104482px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-26.575517px;}
.ws4_c00213{word-spacing:-26.487518px;}
.ws2_c00213{word-spacing:0.000000px;}
.ws1_c00213{word-spacing:0.043999px;}
.ws3_c00213{word-spacing:0.056767px;}
.ws5_c00213{word-spacing:0.213446px;}
._0_c00213{width:1.041538px;}
.fc5_c00213{color:rgb(0,0,207);}
.fc4_c00213{color:rgb(207,92,0);}
.fc3_c00213{color:rgb(33,74,135);}
.fc2_c00213{color:rgb(79,153,5);}
.fc1_c00213{color:rgb(143,89,3);}
.fc0_c00213{color:rgb(0,0,0);}
.fs0_c00213{font-size:43.999200px;}
.fs1_c00213{font-size:59.775600px;}
.y0_c00213{bottom:0.000000px;}
.y2d_c00213{bottom:44.250000px;}
.y2c_c00213{bottom:354.384000px;}
.y2b_c00213{bottom:370.822500px;}
.y2a_c00213{bottom:387.259500px;}
.y29_c00213{bottom:403.698000px;}
.y28_c00213{bottom:420.136500px;}
.y27_c00213{bottom:436.575000px;}
.y26_c00213{bottom:453.013500px;}
.y25_c00213{bottom:469.452000px;}
.y24_c00213{bottom:485.890500px;}
.y23_c00213{bottom:502.329000px;}
.y22_c00213{bottom:518.767500px;}
.y21_c00213{bottom:551.643000px;}
.y20_c00213{bottom:568.081500px;}
.y1f_c00213{bottom:584.520000px;}
.y1e_c00213{bottom:617.397000px;}
.y1d_c00213{bottom:650.274000px;}
.y1c_c00213{bottom:666.712500px;}
.y1b_c00213{bottom:683.151000px;}
.y1a_c00213{bottom:699.589500px;}
.y19_c00213{bottom:716.028000px;}
.y18_c00213{bottom:732.465000px;}
.y17_c00213{bottom:748.903500px;}
.y16_c00213{bottom:765.342000px;}
.y15_c00213{bottom:781.780500px;}
.y14_c00213{bottom:798.219000px;}
.y13_c00213{bottom:814.657500px;}
.y12_c00213{bottom:847.534500px;}
.y11_c00213{bottom:863.973000px;}
.y10_c00213{bottom:880.411500px;}
.yf_c00213{bottom:896.848500px;}
.ye_c00213{bottom:913.287000px;}
.yd_c00213{bottom:929.725500px;}
.yc_c00213{bottom:946.164000px;}
.yb_c00213{bottom:962.602500px;}
.ya_c00213{bottom:979.041000px;}
.y9_c00213{bottom:995.479500px;}
.y8_c00213{bottom:1011.918000px;}
.y7_c00213{bottom:1028.356500px;}
.y6_c00213{bottom:1044.795000px;}
.y5_c00213{bottom:1077.670500px;}
.y4_c00213{bottom:1094.109000px;}
.y3_c00213{bottom:1126.986000px;}
.y2_c00213{bottom:1143.424500px;}
.y1_c00213{bottom:1159.863000px;}
.h3_c00213{height:35.190766px;}
.h2_c00213{height:36.007158px;}
.h4_c00213{height:52.332837px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w0_c00213{width:892.920000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:137.122500px;}
.x4_c00213{left:177.007500px;}
.x2_c00213{left:183.654000px;}
.x3_c00213{left:196.948500px;}
.x5_c00213{left:435.249000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:0.078221pt;}
.ls2_c00213{letter-spacing:0.087539pt;}
.ls1_c00213{letter-spacing:0.092873pt;}
.ws0_c00213{word-spacing:-23.622682pt;}
.ws4_c00213{word-spacing:-23.544461pt;}
.ws2_c00213{word-spacing:0.000000pt;}
.ws1_c00213{word-spacing:0.039110pt;}
.ws3_c00213{word-spacing:0.050460pt;}
.ws5_c00213{word-spacing:0.189730pt;}
._0_c00213{width:0.925811pt;}
.fs0_c00213{font-size:39.110400pt;}
.fs1_c00213{font-size:53.133867pt;}
.y0_c00213{bottom:0.000000pt;}
.y2d_c00213{bottom:39.333333pt;}
.y2c_c00213{bottom:315.008000pt;}
.y2b_c00213{bottom:329.620000pt;}
.y2a_c00213{bottom:344.230667pt;}
.y29_c00213{bottom:358.842667pt;}
.y28_c00213{bottom:373.454667pt;}
.y27_c00213{bottom:388.066667pt;}
.y26_c00213{bottom:402.678667pt;}
.y25_c00213{bottom:417.290667pt;}
.y24_c00213{bottom:431.902667pt;}
.y23_c00213{bottom:446.514667pt;}
.y22_c00213{bottom:461.126667pt;}
.y21_c00213{bottom:490.349333pt;}
.y20_c00213{bottom:504.961333pt;}
.y1f_c00213{bottom:519.573333pt;}
.y1e_c00213{bottom:548.797333pt;}
.y1d_c00213{bottom:578.021333pt;}
.y1c_c00213{bottom:592.633333pt;}
.y1b_c00213{bottom:607.245333pt;}
.y1a_c00213{bottom:621.857333pt;}
.y19_c00213{bottom:636.469333pt;}
.y18_c00213{bottom:651.080000pt;}
.y17_c00213{bottom:665.692000pt;}
.y16_c00213{bottom:680.304000pt;}
.y15_c00213{bottom:694.916000pt;}
.y14_c00213{bottom:709.528000pt;}
.y13_c00213{bottom:724.140000pt;}
.y12_c00213{bottom:753.364000pt;}
.y11_c00213{bottom:767.976000pt;}
.y10_c00213{bottom:782.588000pt;}
.yf_c00213{bottom:797.198667pt;}
.ye_c00213{bottom:811.810667pt;}
.yd_c00213{bottom:826.422667pt;}
.yc_c00213{bottom:841.034667pt;}
.yb_c00213{bottom:855.646667pt;}
.ya_c00213{bottom:870.258667pt;}
.y9_c00213{bottom:884.870667pt;}
.y8_c00213{bottom:899.482667pt;}
.y7_c00213{bottom:914.094667pt;}
.y6_c00213{bottom:928.706667pt;}
.y5_c00213{bottom:957.929333pt;}
.y4_c00213{bottom:972.541333pt;}
.y3_c00213{bottom:1001.765333pt;}
.y2_c00213{bottom:1016.377333pt;}
.y1_c00213{bottom:1030.989333pt;}
.h3_c00213{height:31.280681pt;}
.h2_c00213{height:32.006363pt;}
.h4_c00213{height:46.518078pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w0_c00213{width:793.706667pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:121.886667pt;}
.x4_c00213{left:157.340000pt;}
.x2_c00213{left:163.248000pt;}
.x3_c00213{left:175.065333pt;}
.x5_c00213{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ab0f683979498466d9b60bf.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:0.893555;font-style:normal;font-weight:normal;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_d1318a69efec9566f76e3468.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_09991f7de5a14389960bb974.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_064455df823c974ae513d2cf.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:1.000000;font-style: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;}
.ls3_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.087998px;}
.ls2_c00214{letter-spacing:0.098482px;}
.ls1_c00214{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00214{word-spacing:-26.575517px;}
.ws14_c00214{word-spacing:-26.487518px;}
.ws8_c00214{word-spacing:-21.758318px;}
.ws6_c00214{word-spacing:-18.769538px;}
.wse_c00214{word-spacing:-18.590212px;}
.wsd_c00214{word-spacing:-18.112007px;}
.ws7_c00214{word-spacing:-17.992456px;}
.ws5_c00214{word-spacing:-17.932680px;}
.wsa_c00214{word-spacing:-17.589629px;}
.wsb_c00214{word-spacing:-17.574026px;}
.wsc_c00214{word-spacing:-17.514251px;}
.ws10_c00214{word-spacing:-15.601432px;}
.wsf_c00214{word-spacing:-15.560971px;}
.ws12_c00214{word-spacing:-14.764573px;}
.ws4_c00214{word-spacing:-14.166817px;}
.ws11_c00214{word-spacing:-12.433325px;}
.ws1_c00214{word-spacing:-9.988424px;}
.ws3_c00214{word-spacing:-9.987499px;}
.ws9_c00214{word-spacing:-7.536144px;}
.ws18_c00214{word-spacing:0.000000px;}
.ws15_c00214{word-spacing:0.043999px;}
.ws13_c00214{word-spacing:0.175997px;}
.ws17_c00214{word-spacing:0.213446px;}
.ws16_c00214{word-spacing:0.219446px;}
.ws0_c00214{word-spacing:43.038600px;}
._a_c00214{margin-left:-1040.732606px;}
._6_c00214{margin-left:-4.124516px;}
._0_c00214{margin-left:-1.549390px;}
._9_c00214{width:1.005737px;}
._2_c00214{width:18.473056px;}
._8_c00214{width:19.965050px;}
._1_c00214{width:21.624733px;}
._3_c00214{width:22.890101px;}
._4_c00214{width:29.809451px;}
._7_c00214{width:31.979946px;}
._5_c00214{width:39.140287px;}
.fc6_c00214{color:rgb(0,0,207);}
.fc5_c00214{color:rgb(79,153,5);}
.fc3_c00214{color:rgb(33,74,135);}
.fc2_c00214{color:rgb(143,89,3);}
.fc4_c00214{color:rgb(207,92,0);}
.fc1_c00214{color:rgb(6,69,173);}
.fc0_c00214{color:rgb(0,0,0);}
.fs3_c00214{font-size:31.015800px;}
.fs2_c00214{font-size:43.999200px;}
.fs1_c00214{font-size:59.775600px;}
.fs0_c00214{font-size:86.077200px;}
.y0_c00214{bottom:0.000000px;}
.y1f_c00214{bottom:44.250000px;}
.y1e_c00214{bottom:98.490000px;}
.y1d_c00214{bottom:131.365500px;}
.y1c_c00214{bottom:164.242500px;}
.y1b_c00214{bottom:180.681000px;}
.y1a_c00214{bottom:197.119500px;}
.y19_c00214{bottom:213.558000px;}
.y18_c00214{bottom:229.623000px;}
.y17_c00214{bottom:246.061500px;}
.y16_c00214{bottom:262.498500px;}
.y15_c00214{bottom:295.375500px;}
.y14_c00214{bottom:311.814000px;}
.y13_c00214{bottom:328.252500px;}
.y12_c00214{bottom:344.691000px;}
.y11_c00214{bottom:361.129500px;}
.y10_c00214{bottom:377.568000px;}
.yf_c00214{bottom:393.633000px;}
.ye_c00214{bottom:441.757500px;}
.yd_c00214{bottom:459.690000px;}
.yc_c00214{bottom:477.622500px;}
.yb_c00214{bottom:495.555000px;}
.ya_c00214{bottom:513.487500px;}
.y9_c00214{bottom:531.420000px;}
.y8_c00214{bottom:549.352500px;}
.y7_c00214{bottom:576.238500px;}
.y6_c00214{bottom:594.171000px;}
.y5_c00214{bottom:621.057000px;}
.y4_c00214{bottom:638.989500px;}
.y3_c00214{bottom:665.875500px;}
.y2_c00214{bottom:692.760000px;}
.y1_c00214{bottom:735.019500px;}
.h6_c00214{height:35.190766px;}
.h7_c00214{height:36.007158px;}
.h3_c00214{height:40.511979px;}
.h4_c00214{height:52.332837px;}
.h5_c00214{height:52.338837px;}
.h2_c00214{height:58.337477px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w0_c00214{width:892.920000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:127.558500px;}
.x2_c00214{left:137.122500px;}
.x3_c00214{left:163.713000px;}
.x4_c00214{left:435.249000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls3_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.078221pt;}
.ls2_c00214{letter-spacing:0.087539pt;}
.ls1_c00214{letter-spacing:0.092873pt;}
.ws2_c00214{word-spacing:-23.622682pt;}
.ws14_c00214{word-spacing:-23.544461pt;}
.ws8_c00214{word-spacing:-19.340727pt;}
.ws6_c00214{word-spacing:-16.684034pt;}
.wse_c00214{word-spacing:-16.524633pt;}
.wsd_c00214{word-spacing:-16.099562pt;}
.ws7_c00214{word-spacing:-15.993294pt;}
.ws5_c00214{word-spacing:-15.940160pt;}
.wsa_c00214{word-spacing:-15.635226pt;}
.wsb_c00214{word-spacing:-15.621357pt;}
.wsc_c00214{word-spacing:-15.568223pt;}
.ws10_c00214{word-spacing:-13.867939pt;}
.wsf_c00214{word-spacing:-13.831974pt;}
.ws12_c00214{word-spacing:-13.124065pt;}
.ws4_c00214{word-spacing:-12.592726pt;}
.ws11_c00214{word-spacing:-11.051844pt;}
.ws1_c00214{word-spacing:-8.878599pt;}
.ws3_c00214{word-spacing:-8.877777pt;}
.ws9_c00214{word-spacing:-6.698795pt;}
.ws18_c00214{word-spacing:0.000000pt;}
.ws15_c00214{word-spacing:0.039110pt;}
.ws13_c00214{word-spacing:0.156442pt;}
.ws17_c00214{word-spacing:0.189730pt;}
.ws16_c00214{word-spacing:0.195063pt;}
.ws0_c00214{word-spacing:38.256533pt;}
._a_c00214{margin-left:-925.095650pt;}
._6_c00214{margin-left:-3.666237pt;}
._0_c00214{margin-left:-1.377235pt;}
._9_c00214{width:0.893988pt;}
._2_c00214{width:16.420494pt;}
._8_c00214{width:17.746711pt;}
._1_c00214{width:19.221985pt;}
._3_c00214{width:20.346756pt;}
._4_c00214{width:26.497290pt;}
._7_c00214{width:28.426619pt;}
._5_c00214{width:34.791366pt;}
.fs3_c00214{font-size:27.569600pt;}
.fs2_c00214{font-size:39.110400pt;}
.fs1_c00214{font-size:53.133867pt;}
.fs0_c00214{font-size:76.513067pt;}
.y0_c00214{bottom:0.000000pt;}
.y1f_c00214{bottom:39.333333pt;}
.y1e_c00214{bottom:87.546667pt;}
.y1d_c00214{bottom:116.769333pt;}
.y1c_c00214{bottom:145.993333pt;}
.y1b_c00214{bottom:160.605333pt;}
.y1a_c00214{bottom:175.217333pt;}
.y19_c00214{bottom:189.829333pt;}
.y18_c00214{bottom:204.109333pt;}
.y17_c00214{bottom:218.721333pt;}
.y16_c00214{bottom:233.332000pt;}
.y15_c00214{bottom:262.556000pt;}
.y14_c00214{bottom:277.168000pt;}
.y13_c00214{bottom:291.780000pt;}
.y12_c00214{bottom:306.392000pt;}
.y11_c00214{bottom:321.004000pt;}
.y10_c00214{bottom:335.616000pt;}
.yf_c00214{bottom:349.896000pt;}
.ye_c00214{bottom:392.673333pt;}
.yd_c00214{bottom:408.613333pt;}
.yc_c00214{bottom:424.553333pt;}
.yb_c00214{bottom:440.493333pt;}
.ya_c00214{bottom:456.433333pt;}
.y9_c00214{bottom:472.373333pt;}
.y8_c00214{bottom:488.313333pt;}
.y7_c00214{bottom:512.212000pt;}
.y6_c00214{bottom:528.152000pt;}
.y5_c00214{bottom:552.050667pt;}
.y4_c00214{bottom:567.990667pt;}
.y3_c00214{bottom:591.889333pt;}
.y2_c00214{bottom:615.786667pt;}
.y1_c00214{bottom:653.350667pt;}
.h6_c00214{height:31.280681pt;}
.h7_c00214{height:32.006363pt;}
.h3_c00214{height:36.010648pt;}
.h4_c00214{height:46.518078pt;}
.h5_c00214{height:46.523411pt;}
.h2_c00214{height:51.855535pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w0_c00214{width:793.706667pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:113.385333pt;}
.x2_c00214{left:121.886667pt;}
.x3_c00214{left:145.522667pt;}
.x4_c00214{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_654dfff71c58485e512b7fe1.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.014648;font-style:normal;font-weight:normal;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_0967a53f68d4e7d5750c4da4.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.087998px;}
.ls2_c00215{letter-spacing:0.098482px;}
.ls1_c00215{letter-spacing:0.104482px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-26.575517px;}
.ws4_c00215{word-spacing:-26.487518px;}
.ws2_c00215{word-spacing:0.000000px;}
.ws1_c00215{word-spacing:0.043999px;}
.ws3_c00215{word-spacing:0.056767px;}
.ws5_c00215{word-spacing:0.213446px;}
._0_c00215{width:1.041538px;}
.fc5_c00215{color:rgb(0,0,207);}
.fc4_c00215{color:rgb(207,92,0);}
.fc3_c00215{color:rgb(33,74,135);}
.fc2_c00215{color:rgb(79,153,5);}
.fc1_c00215{color:rgb(143,89,3);}
.fc0_c00215{color:rgb(0,0,0);}
.fs0_c00215{font-size:43.999200px;}
.fs1_c00215{font-size:59.775600px;}
.y0_c00215{bottom:0.000000px;}
.y2d_c00215{bottom:44.250000px;}
.y2c_c00215{bottom:354.384000px;}
.y2b_c00215{bottom:370.822500px;}
.y2a_c00215{bottom:387.259500px;}
.y29_c00215{bottom:403.698000px;}
.y28_c00215{bottom:420.136500px;}
.y27_c00215{bottom:436.575000px;}
.y26_c00215{bottom:453.013500px;}
.y25_c00215{bottom:469.452000px;}
.y24_c00215{bottom:485.890500px;}
.y23_c00215{bottom:502.329000px;}
.y22_c00215{bottom:518.767500px;}
.y21_c00215{bottom:551.643000px;}
.y20_c00215{bottom:568.081500px;}
.y1f_c00215{bottom:584.520000px;}
.y1e_c00215{bottom:617.397000px;}
.y1d_c00215{bottom:650.274000px;}
.y1c_c00215{bottom:666.712500px;}
.y1b_c00215{bottom:683.151000px;}
.y1a_c00215{bottom:699.589500px;}
.y19_c00215{bottom:716.028000px;}
.y18_c00215{bottom:732.465000px;}
.y17_c00215{bottom:748.903500px;}
.y16_c00215{bottom:765.342000px;}
.y15_c00215{bottom:781.780500px;}
.y14_c00215{bottom:798.219000px;}
.y13_c00215{bottom:814.657500px;}
.y12_c00215{bottom:847.534500px;}
.y11_c00215{bottom:863.973000px;}
.y10_c00215{bottom:880.411500px;}
.yf_c00215{bottom:896.848500px;}
.ye_c00215{bottom:913.287000px;}
.yd_c00215{bottom:929.725500px;}
.yc_c00215{bottom:946.164000px;}
.yb_c00215{bottom:962.602500px;}
.ya_c00215{bottom:979.041000px;}
.y9_c00215{bottom:995.479500px;}
.y8_c00215{bottom:1011.918000px;}
.y7_c00215{bottom:1028.356500px;}
.y6_c00215{bottom:1044.795000px;}
.y5_c00215{bottom:1077.670500px;}
.y4_c00215{bottom:1094.109000px;}
.y3_c00215{bottom:1126.986000px;}
.y2_c00215{bottom:1143.424500px;}
.y1_c00215{bottom:1159.863000px;}
.h3_c00215{height:35.190766px;}
.h2_c00215{height:36.007158px;}
.h4_c00215{height:52.332837px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w0_c00215{width:892.920000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:137.122500px;}
.x4_c00215{left:177.007500px;}
.x2_c00215{left:183.654000px;}
.x3_c00215{left:196.948500px;}
.x5_c00215{left:435.249000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.078221pt;}
.ls2_c00215{letter-spacing:0.087539pt;}
.ls1_c00215{letter-spacing:0.092873pt;}
.ws0_c00215{word-spacing:-23.622682pt;}
.ws4_c00215{word-spacing:-23.544461pt;}
.ws2_c00215{word-spacing:0.000000pt;}
.ws1_c00215{word-spacing:0.039110pt;}
.ws3_c00215{word-spacing:0.050460pt;}
.ws5_c00215{word-spacing:0.189730pt;}
._0_c00215{width:0.925811pt;}
.fs0_c00215{font-size:39.110400pt;}
.fs1_c00215{font-size:53.133867pt;}
.y0_c00215{bottom:0.000000pt;}
.y2d_c00215{bottom:39.333333pt;}
.y2c_c00215{bottom:315.008000pt;}
.y2b_c00215{bottom:329.620000pt;}
.y2a_c00215{bottom:344.230667pt;}
.y29_c00215{bottom:358.842667pt;}
.y28_c00215{bottom:373.454667pt;}
.y27_c00215{bottom:388.066667pt;}
.y26_c00215{bottom:402.678667pt;}
.y25_c00215{bottom:417.290667pt;}
.y24_c00215{bottom:431.902667pt;}
.y23_c00215{bottom:446.514667pt;}
.y22_c00215{bottom:461.126667pt;}
.y21_c00215{bottom:490.349333pt;}
.y20_c00215{bottom:504.961333pt;}
.y1f_c00215{bottom:519.573333pt;}
.y1e_c00215{bottom:548.797333pt;}
.y1d_c00215{bottom:578.021333pt;}
.y1c_c00215{bottom:592.633333pt;}
.y1b_c00215{bottom:607.245333pt;}
.y1a_c00215{bottom:621.857333pt;}
.y19_c00215{bottom:636.469333pt;}
.y18_c00215{bottom:651.080000pt;}
.y17_c00215{bottom:665.692000pt;}
.y16_c00215{bottom:680.304000pt;}
.y15_c00215{bottom:694.916000pt;}
.y14_c00215{bottom:709.528000pt;}
.y13_c00215{bottom:724.140000pt;}
.y12_c00215{bottom:753.364000pt;}
.y11_c00215{bottom:767.976000pt;}
.y10_c00215{bottom:782.588000pt;}
.yf_c00215{bottom:797.198667pt;}
.ye_c00215{bottom:811.810667pt;}
.yd_c00215{bottom:826.422667pt;}
.yc_c00215{bottom:841.034667pt;}
.yb_c00215{bottom:855.646667pt;}
.ya_c00215{bottom:870.258667pt;}
.y9_c00215{bottom:884.870667pt;}
.y8_c00215{bottom:899.482667pt;}
.y7_c00215{bottom:914.094667pt;}
.y6_c00215{bottom:928.706667pt;}
.y5_c00215{bottom:957.929333pt;}
.y4_c00215{bottom:972.541333pt;}
.y3_c00215{bottom:1001.765333pt;}
.y2_c00215{bottom:1016.377333pt;}
.y1_c00215{bottom:1030.989333pt;}
.h3_c00215{height:31.280681pt;}
.h2_c00215{height:32.006363pt;}
.h4_c00215{height:46.518078pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w0_c00215{width:793.706667pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:121.886667pt;}
.x4_c00215{left:157.340000pt;}
.x2_c00215{left:163.248000pt;}
.x3_c00215{left:175.065333pt;}
.x5_c00215{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_545e0bd227d625772344e614.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:0.893555;font-style:normal;font-weight:normal;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_46956a387a953f7a398c2bf1.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.083496;font-style:normal;font-weight:normal;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_de4048232c41813bdda6e812.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_cb5d88ad358246fcfaebf50a.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.000000;font-style: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.000000px;}
.ls0_c00216{letter-spacing:0.087998px;}
.ls2_c00216{letter-spacing:0.098482px;}
.ls1_c00216{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00216{word-spacing:-26.575517px;}
.ws14_c00216{word-spacing:-26.487518px;}
.ws8_c00216{word-spacing:-22.116972px;}
.wse_c00216{word-spacing:-19.427070px;}
.ws6_c00216{word-spacing:-18.769538px;}
.ws7_c00216{word-spacing:-18.291334px;}
.wsd_c00216{word-spacing:-18.112007px;}
.wsa_c00216{word-spacing:-17.589629px;}
.wsb_c00216{word-spacing:-17.574026px;}
.wsc_c00216{word-spacing:-17.514251px;}
.ws10_c00216{word-spacing:-15.601432px;}
.wsf_c00216{word-spacing:-15.560971px;}
.ws12_c00216{word-spacing:-14.764573px;}
.ws11_c00216{word-spacing:-12.433325px;}
.ws1_c00216{word-spacing:-9.988424px;}
.ws3_c00216{word-spacing:-9.987499px;}
.ws5_c00216{word-spacing:-8.069706px;}
.ws9_c00216{word-spacing:-7.536144px;}
.ws4_c00216{word-spacing:-4.244068px;}
.ws18_c00216{word-spacing:0.000000px;}
.ws15_c00216{word-spacing:0.043999px;}
.ws13_c00216{word-spacing:0.175997px;}
.ws17_c00216{word-spacing:0.213446px;}
.ws16_c00216{word-spacing:0.219446px;}
.ws0_c00216{word-spacing:43.038600px;}
._b_c00216{margin-left:-1040.732606px;}
._7_c00216{margin-left:-4.124516px;}
._0_c00216{margin-left:-1.549390px;}
._a_c00216{width:1.005737px;}
._2_c00216{width:18.297934px;}
._9_c00216{width:19.965050px;}
._4_c00216{width:21.758318px;}
._3_c00216{width:22.890101px;}
._5_c00216{width:29.809451px;}
._8_c00216{width:31.979946px;}
._6_c00216{width:39.140287px;}
._1_c00216{width:41.413984px;}
.fc6_c00216{color:rgb(0,0,207);}
.fc5_c00216{color:rgb(79,153,5);}
.fc3_c00216{color:rgb(33,74,135);}
.fc2_c00216{color:rgb(143,89,3);}
.fc4_c00216{color:rgb(207,92,0);}
.fc1_c00216{color:rgb(6,69,173);}
.fc0_c00216{color:rgb(0,0,0);}
.fs3_c00216{font-size:31.015800px;}
.fs2_c00216{font-size:43.999200px;}
.fs1_c00216{font-size:59.775600px;}
.fs0_c00216{font-size:86.077200px;}
.y0_c00216{bottom:0.000000px;}
.y1f_c00216{bottom:44.250000px;}
.y1e_c00216{bottom:98.490000px;}
.y1d_c00216{bottom:131.365500px;}
.y1c_c00216{bottom:164.242500px;}
.y1b_c00216{bottom:180.681000px;}
.y1a_c00216{bottom:197.119500px;}
.y19_c00216{bottom:213.558000px;}
.y18_c00216{bottom:229.623000px;}
.y17_c00216{bottom:246.061500px;}
.y16_c00216{bottom:262.498500px;}
.y15_c00216{bottom:295.375500px;}
.y14_c00216{bottom:311.814000px;}
.y13_c00216{bottom:328.252500px;}
.y12_c00216{bottom:344.691000px;}
.y11_c00216{bottom:361.129500px;}
.y10_c00216{bottom:377.568000px;}
.yf_c00216{bottom:393.633000px;}
.ye_c00216{bottom:441.757500px;}
.yd_c00216{bottom:459.690000px;}
.yc_c00216{bottom:477.622500px;}
.yb_c00216{bottom:495.555000px;}
.ya_c00216{bottom:513.487500px;}
.y9_c00216{bottom:531.420000px;}
.y8_c00216{bottom:549.352500px;}
.y7_c00216{bottom:576.238500px;}
.y6_c00216{bottom:594.171000px;}
.y5_c00216{bottom:621.057000px;}
.y4_c00216{bottom:638.989500px;}
.y3_c00216{bottom:665.875500px;}
.y2_c00216{bottom:692.760000px;}
.y1_c00216{bottom:735.019500px;}
.h6_c00216{height:35.190766px;}
.h7_c00216{height:36.007158px;}
.h3_c00216{height:40.511979px;}
.h4_c00216{height:52.332837px;}
.h5_c00216{height:52.338837px;}
.h2_c00216{height:58.337477px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w0_c00216{width:892.920000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:127.558500px;}
.x2_c00216{left:137.122500px;}
.x3_c00216{left:163.713000px;}
.x4_c00216{left:435.249000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls3_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.078221pt;}
.ls2_c00216{letter-spacing:0.087539pt;}
.ls1_c00216{letter-spacing:0.092873pt;}
.ws2_c00216{word-spacing:-23.622682pt;}
.ws14_c00216{word-spacing:-23.544461pt;}
.ws8_c00216{word-spacing:-19.659531pt;}
.wse_c00216{word-spacing:-17.268507pt;}
.ws6_c00216{word-spacing:-16.684034pt;}
.ws7_c00216{word-spacing:-16.258963pt;}
.wsd_c00216{word-spacing:-16.099562pt;}
.wsa_c00216{word-spacing:-15.635226pt;}
.wsb_c00216{word-spacing:-15.621357pt;}
.wsc_c00216{word-spacing:-15.568223pt;}
.ws10_c00216{word-spacing:-13.867939pt;}
.wsf_c00216{word-spacing:-13.831974pt;}
.ws12_c00216{word-spacing:-13.124065pt;}
.ws11_c00216{word-spacing:-11.051844pt;}
.ws1_c00216{word-spacing:-8.878599pt;}
.ws3_c00216{word-spacing:-8.877777pt;}
.ws5_c00216{word-spacing:-7.173072pt;}
.ws9_c00216{word-spacing:-6.698795pt;}
.ws4_c00216{word-spacing:-3.772505pt;}
.ws18_c00216{word-spacing:0.000000pt;}
.ws15_c00216{word-spacing:0.039110pt;}
.ws13_c00216{word-spacing:0.156442pt;}
.ws17_c00216{word-spacing:0.189730pt;}
.ws16_c00216{word-spacing:0.195063pt;}
.ws0_c00216{word-spacing:38.256533pt;}
._b_c00216{margin-left:-925.095650pt;}
._7_c00216{margin-left:-3.666237pt;}
._0_c00216{margin-left:-1.377235pt;}
._a_c00216{width:0.893988pt;}
._2_c00216{width:16.264830pt;}
._9_c00216{width:17.746711pt;}
._4_c00216{width:19.340727pt;}
._3_c00216{width:20.346756pt;}
._5_c00216{width:26.497290pt;}
._8_c00216{width:28.426619pt;}
._6_c00216{width:34.791366pt;}
._1_c00216{width:36.812430pt;}
.fs3_c00216{font-size:27.569600pt;}
.fs2_c00216{font-size:39.110400pt;}
.fs1_c00216{font-size:53.133867pt;}
.fs0_c00216{font-size:76.513067pt;}
.y0_c00216{bottom:0.000000pt;}
.y1f_c00216{bottom:39.333333pt;}
.y1e_c00216{bottom:87.546667pt;}
.y1d_c00216{bottom:116.769333pt;}
.y1c_c00216{bottom:145.993333pt;}
.y1b_c00216{bottom:160.605333pt;}
.y1a_c00216{bottom:175.217333pt;}
.y19_c00216{bottom:189.829333pt;}
.y18_c00216{bottom:204.109333pt;}
.y17_c00216{bottom:218.721333pt;}
.y16_c00216{bottom:233.332000pt;}
.y15_c00216{bottom:262.556000pt;}
.y14_c00216{bottom:277.168000pt;}
.y13_c00216{bottom:291.780000pt;}
.y12_c00216{bottom:306.392000pt;}
.y11_c00216{bottom:321.004000pt;}
.y10_c00216{bottom:335.616000pt;}
.yf_c00216{bottom:349.896000pt;}
.ye_c00216{bottom:392.673333pt;}
.yd_c00216{bottom:408.613333pt;}
.yc_c00216{bottom:424.553333pt;}
.yb_c00216{bottom:440.493333pt;}
.ya_c00216{bottom:456.433333pt;}
.y9_c00216{bottom:472.373333pt;}
.y8_c00216{bottom:488.313333pt;}
.y7_c00216{bottom:512.212000pt;}
.y6_c00216{bottom:528.152000pt;}
.y5_c00216{bottom:552.050667pt;}
.y4_c00216{bottom:567.990667pt;}
.y3_c00216{bottom:591.889333pt;}
.y2_c00216{bottom:615.786667pt;}
.y1_c00216{bottom:653.350667pt;}
.h6_c00216{height:31.280681pt;}
.h7_c00216{height:32.006363pt;}
.h3_c00216{height:36.010648pt;}
.h4_c00216{height:46.518078pt;}
.h5_c00216{height:46.523411pt;}
.h2_c00216{height:51.855535pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w0_c00216{width:793.706667pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:113.385333pt;}
.x2_c00216{left:121.886667pt;}
.x3_c00216{left:145.522667pt;}
.x4_c00216{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb933b203fcaa270a3224187.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.014648;font-style:normal;font-weight:normal;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_849ac782cedb8f23a654cb1c.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.087998px;}
.ls2_c00217{letter-spacing:0.098482px;}
.ls1_c00217{letter-spacing:0.104482px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:-26.575517px;}
.ws4_c00217{word-spacing:-26.487518px;}
.ws2_c00217{word-spacing:0.000000px;}
.ws1_c00217{word-spacing:0.043999px;}
.ws3_c00217{word-spacing:0.056767px;}
.ws5_c00217{word-spacing:0.213446px;}
._0_c00217{width:1.041538px;}
.fc5_c00217{color:rgb(0,0,207);}
.fc4_c00217{color:rgb(207,92,0);}
.fc3_c00217{color:rgb(33,74,135);}
.fc2_c00217{color:rgb(79,153,5);}
.fc1_c00217{color:rgb(143,89,3);}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:43.999200px;}
.fs1_c00217{font-size:59.775600px;}
.y0_c00217{bottom:0.000000px;}
.y2d_c00217{bottom:44.250000px;}
.y2c_c00217{bottom:354.384000px;}
.y2b_c00217{bottom:370.822500px;}
.y2a_c00217{bottom:387.259500px;}
.y29_c00217{bottom:403.698000px;}
.y28_c00217{bottom:420.136500px;}
.y27_c00217{bottom:436.575000px;}
.y26_c00217{bottom:453.013500px;}
.y25_c00217{bottom:469.452000px;}
.y24_c00217{bottom:485.890500px;}
.y23_c00217{bottom:502.329000px;}
.y22_c00217{bottom:518.767500px;}
.y21_c00217{bottom:551.643000px;}
.y20_c00217{bottom:568.081500px;}
.y1f_c00217{bottom:584.520000px;}
.y1e_c00217{bottom:617.397000px;}
.y1d_c00217{bottom:650.274000px;}
.y1c_c00217{bottom:666.712500px;}
.y1b_c00217{bottom:683.151000px;}
.y1a_c00217{bottom:699.589500px;}
.y19_c00217{bottom:716.028000px;}
.y18_c00217{bottom:732.465000px;}
.y17_c00217{bottom:748.903500px;}
.y16_c00217{bottom:765.342000px;}
.y15_c00217{bottom:781.780500px;}
.y14_c00217{bottom:798.219000px;}
.y13_c00217{bottom:814.657500px;}
.y12_c00217{bottom:847.534500px;}
.y11_c00217{bottom:863.973000px;}
.y10_c00217{bottom:880.411500px;}
.yf_c00217{bottom:896.848500px;}
.ye_c00217{bottom:913.287000px;}
.yd_c00217{bottom:929.725500px;}
.yc_c00217{bottom:946.164000px;}
.yb_c00217{bottom:962.602500px;}
.ya_c00217{bottom:979.041000px;}
.y9_c00217{bottom:995.479500px;}
.y8_c00217{bottom:1011.918000px;}
.y7_c00217{bottom:1028.356500px;}
.y6_c00217{bottom:1044.795000px;}
.y5_c00217{bottom:1077.670500px;}
.y4_c00217{bottom:1094.109000px;}
.y3_c00217{bottom:1126.986000px;}
.y2_c00217{bottom:1143.424500px;}
.y1_c00217{bottom:1159.863000px;}
.h3_c00217{height:35.190766px;}
.h2_c00217{height:36.007158px;}
.h4_c00217{height:52.332837px;}
.h0_c00217{height:1262.835000px;}
.h1_c00217{height:1263.000000px;}
.w0_c00217{width:892.920000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:137.122500px;}
.x4_c00217{left:177.007500px;}
.x2_c00217{left:183.654000px;}
.x3_c00217{left:196.948500px;}
.x5_c00217{left:435.249000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.078221pt;}
.ls2_c00217{letter-spacing:0.087539pt;}
.ls1_c00217{letter-spacing:0.092873pt;}
.ws0_c00217{word-spacing:-23.622682pt;}
.ws4_c00217{word-spacing:-23.544461pt;}
.ws2_c00217{word-spacing:0.000000pt;}
.ws1_c00217{word-spacing:0.039110pt;}
.ws3_c00217{word-spacing:0.050460pt;}
.ws5_c00217{word-spacing:0.189730pt;}
._0_c00217{width:0.925811pt;}
.fs0_c00217{font-size:39.110400pt;}
.fs1_c00217{font-size:53.133867pt;}
.y0_c00217{bottom:0.000000pt;}
.y2d_c00217{bottom:39.333333pt;}
.y2c_c00217{bottom:315.008000pt;}
.y2b_c00217{bottom:329.620000pt;}
.y2a_c00217{bottom:344.230667pt;}
.y29_c00217{bottom:358.842667pt;}
.y28_c00217{bottom:373.454667pt;}
.y27_c00217{bottom:388.066667pt;}
.y26_c00217{bottom:402.678667pt;}
.y25_c00217{bottom:417.290667pt;}
.y24_c00217{bottom:431.902667pt;}
.y23_c00217{bottom:446.514667pt;}
.y22_c00217{bottom:461.126667pt;}
.y21_c00217{bottom:490.349333pt;}
.y20_c00217{bottom:504.961333pt;}
.y1f_c00217{bottom:519.573333pt;}
.y1e_c00217{bottom:548.797333pt;}
.y1d_c00217{bottom:578.021333pt;}
.y1c_c00217{bottom:592.633333pt;}
.y1b_c00217{bottom:607.245333pt;}
.y1a_c00217{bottom:621.857333pt;}
.y19_c00217{bottom:636.469333pt;}
.y18_c00217{bottom:651.080000pt;}
.y17_c00217{bottom:665.692000pt;}
.y16_c00217{bottom:680.304000pt;}
.y15_c00217{bottom:694.916000pt;}
.y14_c00217{bottom:709.528000pt;}
.y13_c00217{bottom:724.140000pt;}
.y12_c00217{bottom:753.364000pt;}
.y11_c00217{bottom:767.976000pt;}
.y10_c00217{bottom:782.588000pt;}
.yf_c00217{bottom:797.198667pt;}
.ye_c00217{bottom:811.810667pt;}
.yd_c00217{bottom:826.422667pt;}
.yc_c00217{bottom:841.034667pt;}
.yb_c00217{bottom:855.646667pt;}
.ya_c00217{bottom:870.258667pt;}
.y9_c00217{bottom:884.870667pt;}
.y8_c00217{bottom:899.482667pt;}
.y7_c00217{bottom:914.094667pt;}
.y6_c00217{bottom:928.706667pt;}
.y5_c00217{bottom:957.929333pt;}
.y4_c00217{bottom:972.541333pt;}
.y3_c00217{bottom:1001.765333pt;}
.y2_c00217{bottom:1016.377333pt;}
.y1_c00217{bottom:1030.989333pt;}
.h3_c00217{height:31.280681pt;}
.h2_c00217{height:32.006363pt;}
.h4_c00217{height:46.518078pt;}
.h0_c00217{height:1122.520000pt;}
.h1_c00217{height:1122.666667pt;}
.w0_c00217{width:793.706667pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:121.886667pt;}
.x4_c00217{left:157.340000pt;}
.x2_c00217{left:163.248000pt;}
.x3_c00217{left:175.065333pt;}
.x5_c00217{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ba05d32ee717347f7cf13eb.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.083496;font-style:normal;font-weight:normal;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_09991f7de5a14389960bb974.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.014648;font-style:normal;font-weight:normal;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_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_b4c5a9c750158e8f944169ef.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:1.000000;font-style: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;}
.ls3_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:0.087998px;}
.ls2_c00218{letter-spacing:0.098482px;}
.ls1_c00218{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00218{word-spacing:-26.575517px;}
.ws14_c00218{word-spacing:-26.487518px;}
.ws5_c00218{word-spacing:-20.562806px;}
.ws8_c00218{word-spacing:-19.546621px;}
.ws6_c00218{word-spacing:-18.769538px;}
.wse_c00218{word-spacing:-18.590212px;}
.wsd_c00218{word-spacing:-18.112007px;}
.wsa_c00218{word-spacing:-17.589629px;}
.wsb_c00218{word-spacing:-17.574026px;}
.wsc_c00218{word-spacing:-17.514251px;}
.ws4_c00218{word-spacing:-16.737168px;}
.ws7_c00218{word-spacing:-15.780758px;}
.ws10_c00218{word-spacing:-15.601432px;}
.wsf_c00218{word-spacing:-15.560971px;}
.ws12_c00218{word-spacing:-14.764573px;}
.ws11_c00218{word-spacing:-12.433325px;}
.ws1_c00218{word-spacing:-9.988424px;}
.ws3_c00218{word-spacing:-9.987499px;}
.ws9_c00218{word-spacing:-7.536144px;}
.ws18_c00218{word-spacing:0.000000px;}
.ws15_c00218{word-spacing:0.043999px;}
.ws13_c00218{word-spacing:0.175997px;}
.ws17_c00218{word-spacing:0.213446px;}
.ws16_c00218{word-spacing:0.219446px;}
.ws0_c00218{word-spacing:43.038600px;}
._b_c00218{margin-left:-1040.732606px;}
._1_c00218{margin-left:-4.734246px;}
._9_c00218{margin-left:-3.706087px;}
._0_c00218{margin-left:-1.549390px;}
._a_c00218{width:1.005737px;}
._2_c00218{width:19.041084px;}
._8_c00218{width:20.574780px;}
._4_c00218{width:21.758318px;}
._3_c00218{width:22.890101px;}
._5_c00218{width:29.809451px;}
._7_c00218{width:31.979946px;}
._6_c00218{width:39.140287px;}
.fc6_c00218{color:rgb(0,0,207);}
.fc5_c00218{color:rgb(79,153,5);}
.fc3_c00218{color:rgb(33,74,135);}
.fc2_c00218{color:rgb(143,89,3);}
.fc4_c00218{color:rgb(207,92,0);}
.fc1_c00218{color:rgb(6,69,173);}
.fc0_c00218{color:rgb(0,0,0);}
.fs3_c00218{font-size:31.015800px;}
.fs2_c00218{font-size:43.999200px;}
.fs1_c00218{font-size:59.775600px;}
.fs0_c00218{font-size:86.077200px;}
.y0_c00218{bottom:0.000000px;}
.y1f_c00218{bottom:44.250000px;}
.y1e_c00218{bottom:98.490000px;}
.y1d_c00218{bottom:131.365500px;}
.y1c_c00218{bottom:164.242500px;}
.y1b_c00218{bottom:180.681000px;}
.y1a_c00218{bottom:197.119500px;}
.y19_c00218{bottom:213.558000px;}
.y18_c00218{bottom:229.623000px;}
.y17_c00218{bottom:246.061500px;}
.y16_c00218{bottom:262.498500px;}
.y15_c00218{bottom:295.375500px;}
.y14_c00218{bottom:311.814000px;}
.y13_c00218{bottom:328.252500px;}
.y12_c00218{bottom:344.691000px;}
.y11_c00218{bottom:361.129500px;}
.y10_c00218{bottom:377.568000px;}
.yf_c00218{bottom:393.633000px;}
.ye_c00218{bottom:441.757500px;}
.yd_c00218{bottom:459.690000px;}
.yc_c00218{bottom:477.622500px;}
.yb_c00218{bottom:495.555000px;}
.ya_c00218{bottom:513.487500px;}
.y9_c00218{bottom:531.420000px;}
.y8_c00218{bottom:549.352500px;}
.y7_c00218{bottom:576.238500px;}
.y6_c00218{bottom:594.171000px;}
.y5_c00218{bottom:621.057000px;}
.y4_c00218{bottom:638.989500px;}
.y3_c00218{bottom:665.875500px;}
.y2_c00218{bottom:692.760000px;}
.y1_c00218{bottom:735.019500px;}
.h6_c00218{height:35.190766px;}
.h7_c00218{height:36.007158px;}
.h3_c00218{height:40.511979px;}
.h4_c00218{height:52.332837px;}
.h5_c00218{height:52.338837px;}
.h2_c00218{height:58.337477px;}
.h0_c00218{height:1262.835000px;}
.h1_c00218{height:1263.000000px;}
.w0_c00218{width:892.920000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:127.558500px;}
.x2_c00218{left:137.122500px;}
.x3_c00218{left:163.713000px;}
.x4_c00218{left:435.249000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls3_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:0.078221pt;}
.ls2_c00218{letter-spacing:0.087539pt;}
.ls1_c00218{letter-spacing:0.092873pt;}
.ws2_c00218{word-spacing:-23.622682pt;}
.ws14_c00218{word-spacing:-23.544461pt;}
.ws5_c00218{word-spacing:-18.278050pt;}
.ws8_c00218{word-spacing:-17.374774pt;}
.ws6_c00218{word-spacing:-16.684034pt;}
.wse_c00218{word-spacing:-16.524633pt;}
.wsd_c00218{word-spacing:-16.099562pt;}
.wsa_c00218{word-spacing:-15.635226pt;}
.wsb_c00218{word-spacing:-15.621357pt;}
.wsc_c00218{word-spacing:-15.568223pt;}
.ws4_c00218{word-spacing:-14.877483pt;}
.ws7_c00218{word-spacing:-14.027341pt;}
.ws10_c00218{word-spacing:-13.867939pt;}
.wsf_c00218{word-spacing:-13.831974pt;}
.ws12_c00218{word-spacing:-13.124065pt;}
.ws11_c00218{word-spacing:-11.051844pt;}
.ws1_c00218{word-spacing:-8.878599pt;}
.ws3_c00218{word-spacing:-8.877777pt;}
.ws9_c00218{word-spacing:-6.698795pt;}
.ws18_c00218{word-spacing:0.000000pt;}
.ws15_c00218{word-spacing:0.039110pt;}
.ws13_c00218{word-spacing:0.156442pt;}
.ws17_c00218{word-spacing:0.189730pt;}
.ws16_c00218{word-spacing:0.195063pt;}
.ws0_c00218{word-spacing:38.256533pt;}
._b_c00218{margin-left:-925.095650pt;}
._1_c00218{margin-left:-4.208219pt;}
._9_c00218{margin-left:-3.294300pt;}
._0_c00218{margin-left:-1.377235pt;}
._a_c00218{width:0.893988pt;}
._2_c00218{width:16.925408pt;}
._8_c00218{width:18.288693pt;}
._4_c00218{width:19.340727pt;}
._3_c00218{width:20.346756pt;}
._5_c00218{width:26.497290pt;}
._7_c00218{width:28.426619pt;}
._6_c00218{width:34.791366pt;}
.fs3_c00218{font-size:27.569600pt;}
.fs2_c00218{font-size:39.110400pt;}
.fs1_c00218{font-size:53.133867pt;}
.fs0_c00218{font-size:76.513067pt;}
.y0_c00218{bottom:0.000000pt;}
.y1f_c00218{bottom:39.333333pt;}
.y1e_c00218{bottom:87.546667pt;}
.y1d_c00218{bottom:116.769333pt;}
.y1c_c00218{bottom:145.993333pt;}
.y1b_c00218{bottom:160.605333pt;}
.y1a_c00218{bottom:175.217333pt;}
.y19_c00218{bottom:189.829333pt;}
.y18_c00218{bottom:204.109333pt;}
.y17_c00218{bottom:218.721333pt;}
.y16_c00218{bottom:233.332000pt;}
.y15_c00218{bottom:262.556000pt;}
.y14_c00218{bottom:277.168000pt;}
.y13_c00218{bottom:291.780000pt;}
.y12_c00218{bottom:306.392000pt;}
.y11_c00218{bottom:321.004000pt;}
.y10_c00218{bottom:335.616000pt;}
.yf_c00218{bottom:349.896000pt;}
.ye_c00218{bottom:392.673333pt;}
.yd_c00218{bottom:408.613333pt;}
.yc_c00218{bottom:424.553333pt;}
.yb_c00218{bottom:440.493333pt;}
.ya_c00218{bottom:456.433333pt;}
.y9_c00218{bottom:472.373333pt;}
.y8_c00218{bottom:488.313333pt;}
.y7_c00218{bottom:512.212000pt;}
.y6_c00218{bottom:528.152000pt;}
.y5_c00218{bottom:552.050667pt;}
.y4_c00218{bottom:567.990667pt;}
.y3_c00218{bottom:591.889333pt;}
.y2_c00218{bottom:615.786667pt;}
.y1_c00218{bottom:653.350667pt;}
.h6_c00218{height:31.280681pt;}
.h7_c00218{height:32.006363pt;}
.h3_c00218{height:36.010648pt;}
.h4_c00218{height:46.518078pt;}
.h5_c00218{height:46.523411pt;}
.h2_c00218{height:51.855535pt;}
.h0_c00218{height:1122.520000pt;}
.h1_c00218{height:1122.666667pt;}
.w0_c00218{width:793.706667pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:113.385333pt;}
.x2_c00218{left:121.886667pt;}
.x3_c00218{left:145.522667pt;}
.x4_c00218{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef7bcf12db451ab957cacfd0.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.014648;font-style:normal;font-weight:normal;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_ec404d0ff1fff7823a76f5a1.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls3_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.087998px;}
.ls2_c00219{letter-spacing:0.098482px;}
.ls1_c00219{letter-spacing:0.104482px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-26.575517px;}
.ws4_c00219{word-spacing:-26.487518px;}
.ws2_c00219{word-spacing:0.000000px;}
.ws1_c00219{word-spacing:0.043999px;}
.ws3_c00219{word-spacing:0.056767px;}
.ws5_c00219{word-spacing:0.213446px;}
._0_c00219{width:1.041538px;}
.fc5_c00219{color:rgb(0,0,207);}
.fc4_c00219{color:rgb(207,92,0);}
.fc3_c00219{color:rgb(33,74,135);}
.fc2_c00219{color:rgb(79,153,5);}
.fc1_c00219{color:rgb(143,89,3);}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:43.999200px;}
.fs1_c00219{font-size:59.775600px;}
.y0_c00219{bottom:0.000000px;}
.y2d_c00219{bottom:44.250000px;}
.y2c_c00219{bottom:354.384000px;}
.y2b_c00219{bottom:370.822500px;}
.y2a_c00219{bottom:387.259500px;}
.y29_c00219{bottom:403.698000px;}
.y28_c00219{bottom:420.136500px;}
.y27_c00219{bottom:436.575000px;}
.y26_c00219{bottom:453.013500px;}
.y25_c00219{bottom:469.452000px;}
.y24_c00219{bottom:485.890500px;}
.y23_c00219{bottom:502.329000px;}
.y22_c00219{bottom:518.767500px;}
.y21_c00219{bottom:551.643000px;}
.y20_c00219{bottom:568.081500px;}
.y1f_c00219{bottom:584.520000px;}
.y1e_c00219{bottom:617.397000px;}
.y1d_c00219{bottom:650.274000px;}
.y1c_c00219{bottom:666.712500px;}
.y1b_c00219{bottom:683.151000px;}
.y1a_c00219{bottom:699.589500px;}
.y19_c00219{bottom:716.028000px;}
.y18_c00219{bottom:732.465000px;}
.y17_c00219{bottom:748.903500px;}
.y16_c00219{bottom:765.342000px;}
.y15_c00219{bottom:781.780500px;}
.y14_c00219{bottom:798.219000px;}
.y13_c00219{bottom:814.657500px;}
.y12_c00219{bottom:847.534500px;}
.y11_c00219{bottom:863.973000px;}
.y10_c00219{bottom:880.411500px;}
.yf_c00219{bottom:896.848500px;}
.ye_c00219{bottom:913.287000px;}
.yd_c00219{bottom:929.725500px;}
.yc_c00219{bottom:946.164000px;}
.yb_c00219{bottom:962.602500px;}
.ya_c00219{bottom:979.041000px;}
.y9_c00219{bottom:995.479500px;}
.y8_c00219{bottom:1011.918000px;}
.y7_c00219{bottom:1028.356500px;}
.y6_c00219{bottom:1044.795000px;}
.y5_c00219{bottom:1077.670500px;}
.y4_c00219{bottom:1094.109000px;}
.y3_c00219{bottom:1126.986000px;}
.y2_c00219{bottom:1143.424500px;}
.y1_c00219{bottom:1159.863000px;}
.h3_c00219{height:35.190766px;}
.h2_c00219{height:36.007158px;}
.h4_c00219{height:52.332837px;}
.h0_c00219{height:1262.835000px;}
.h1_c00219{height:1263.000000px;}
.w0_c00219{width:892.920000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:137.122500px;}
.x4_c00219{left:177.007500px;}
.x2_c00219{left:183.654000px;}
.x3_c00219{left:196.948500px;}
.x5_c00219{left:435.249000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls3_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.078221pt;}
.ls2_c00219{letter-spacing:0.087539pt;}
.ls1_c00219{letter-spacing:0.092873pt;}
.ws0_c00219{word-spacing:-23.622682pt;}
.ws4_c00219{word-spacing:-23.544461pt;}
.ws2_c00219{word-spacing:0.000000pt;}
.ws1_c00219{word-spacing:0.039110pt;}
.ws3_c00219{word-spacing:0.050460pt;}
.ws5_c00219{word-spacing:0.189730pt;}
._0_c00219{width:0.925811pt;}
.fs0_c00219{font-size:39.110400pt;}
.fs1_c00219{font-size:53.133867pt;}
.y0_c00219{bottom:0.000000pt;}
.y2d_c00219{bottom:39.333333pt;}
.y2c_c00219{bottom:315.008000pt;}
.y2b_c00219{bottom:329.620000pt;}
.y2a_c00219{bottom:344.230667pt;}
.y29_c00219{bottom:358.842667pt;}
.y28_c00219{bottom:373.454667pt;}
.y27_c00219{bottom:388.066667pt;}
.y26_c00219{bottom:402.678667pt;}
.y25_c00219{bottom:417.290667pt;}
.y24_c00219{bottom:431.902667pt;}
.y23_c00219{bottom:446.514667pt;}
.y22_c00219{bottom:461.126667pt;}
.y21_c00219{bottom:490.349333pt;}
.y20_c00219{bottom:504.961333pt;}
.y1f_c00219{bottom:519.573333pt;}
.y1e_c00219{bottom:548.797333pt;}
.y1d_c00219{bottom:578.021333pt;}
.y1c_c00219{bottom:592.633333pt;}
.y1b_c00219{bottom:607.245333pt;}
.y1a_c00219{bottom:621.857333pt;}
.y19_c00219{bottom:636.469333pt;}
.y18_c00219{bottom:651.080000pt;}
.y17_c00219{bottom:665.692000pt;}
.y16_c00219{bottom:680.304000pt;}
.y15_c00219{bottom:694.916000pt;}
.y14_c00219{bottom:709.528000pt;}
.y13_c00219{bottom:724.140000pt;}
.y12_c00219{bottom:753.364000pt;}
.y11_c00219{bottom:767.976000pt;}
.y10_c00219{bottom:782.588000pt;}
.yf_c00219{bottom:797.198667pt;}
.ye_c00219{bottom:811.810667pt;}
.yd_c00219{bottom:826.422667pt;}
.yc_c00219{bottom:841.034667pt;}
.yb_c00219{bottom:855.646667pt;}
.ya_c00219{bottom:870.258667pt;}
.y9_c00219{bottom:884.870667pt;}
.y8_c00219{bottom:899.482667pt;}
.y7_c00219{bottom:914.094667pt;}
.y6_c00219{bottom:928.706667pt;}
.y5_c00219{bottom:957.929333pt;}
.y4_c00219{bottom:972.541333pt;}
.y3_c00219{bottom:1001.765333pt;}
.y2_c00219{bottom:1016.377333pt;}
.y1_c00219{bottom:1030.989333pt;}
.h3_c00219{height:31.280681pt;}
.h2_c00219{height:32.006363pt;}
.h4_c00219{height:46.518078pt;}
.h0_c00219{height:1122.520000pt;}
.h1_c00219{height:1122.666667pt;}
.w0_c00219{width:793.706667pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:121.886667pt;}
.x4_c00219{left:157.340000pt;}
.x2_c00219{left:163.248000pt;}
.x3_c00219{left:175.065333pt;}
.x5_c00219{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14fe1f6fdad0ac8ea0e9dde9.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.083496;font-style:normal;font-weight:normal;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_33b55f9daca341ee0ef827ff.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.014648;font-style:normal;font-weight:normal;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_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_7c7a93d30758652b6a5a232e.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.000000;font-style: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;}
.v1_c00220{vertical-align:22.518000px;}
.ls3_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.087998px;}
.ls2_c00220{letter-spacing:0.098482px;}
.ls1_c00220{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00220{word-spacing:-33.713438px;}
.ws2_c00220{word-spacing:-26.575517px;}
.ws17_c00220{word-spacing:-26.487518px;}
.ws8_c00220{word-spacing:-23.599339px;}
.ws9_c00220{word-spacing:-20.742133px;}
.ws5_c00220{word-spacing:-20.682358px;}
.ws11_c00220{word-spacing:-19.427070px;}
.wsa_c00220{word-spacing:-18.769538px;}
.ws10_c00220{word-spacing:-18.112007px;}
.wsd_c00220{word-spacing:-17.589629px;}
.wse_c00220{word-spacing:-17.574026px;}
.wsf_c00220{word-spacing:-17.514251px;}
.ws4_c00220{word-spacing:-16.916495px;}
.ws13_c00220{word-spacing:-15.601432px;}
.ws12_c00220{word-spacing:-15.560971px;}
.ws15_c00220{word-spacing:-14.764573px;}
.ws14_c00220{word-spacing:-12.433325px;}
.ws1_c00220{word-spacing:-9.988424px;}
.ws3_c00220{word-spacing:-9.987499px;}
.ws6_c00220{word-spacing:-7.581230px;}
.wsb_c00220{word-spacing:-7.569230px;}
.wsc_c00220{word-spacing:-7.536144px;}
.ws1b_c00220{word-spacing:0.000000px;}
.ws18_c00220{word-spacing:0.043999px;}
.ws16_c00220{word-spacing:0.175997px;}
.ws1a_c00220{word-spacing:0.213446px;}
.ws19_c00220{word-spacing:0.219446px;}
.ws0_c00220{word-spacing:43.038600px;}
._c_c00220{margin-left:-1040.732606px;}
._8_c00220{margin-left:-4.124516px;}
._a_c00220{margin-left:-2.874539px;}
._0_c00220{margin-left:-1.549390px;}
._b_c00220{width:1.005737px;}
._2_c00220{width:2.541953px;}
._3_c00220{width:3.577639px;}
._1_c00220{width:19.010411px;}
._5_c00220{width:21.758318px;}
._4_c00220{width:22.890101px;}
._6_c00220{width:29.809451px;}
._9_c00220{width:31.979946px;}
._7_c00220{width:39.140287px;}
.fc6_c00220{color:rgb(0,0,207);}
.fc5_c00220{color:rgb(79,153,5);}
.fc3_c00220{color:rgb(33,74,135);}
.fc2_c00220{color:rgb(143,89,3);}
.fc4_c00220{color:rgb(207,92,0);}
.fc1_c00220{color:rgb(6,69,173);}
.fc0_c00220{color:rgb(0,0,0);}
.fs4_c00220{font-size:31.015800px;}
.fs3_c00220{font-size:41.842800px;}
.fs2_c00220{font-size:43.999200px;}
.fs1_c00220{font-size:59.775600px;}
.fs0_c00220{font-size:86.077200px;}
.y0_c00220{bottom:0.000000px;}
.y1f_c00220{bottom:44.250000px;}
.y1e_c00220{bottom:98.490000px;}
.y1d_c00220{bottom:131.365500px;}
.y1c_c00220{bottom:164.242500px;}
.y1b_c00220{bottom:180.681000px;}
.y1a_c00220{bottom:197.119500px;}
.y19_c00220{bottom:213.558000px;}
.y18_c00220{bottom:229.623000px;}
.y17_c00220{bottom:246.061500px;}
.y16_c00220{bottom:262.498500px;}
.y15_c00220{bottom:295.375500px;}
.y14_c00220{bottom:311.814000px;}
.y13_c00220{bottom:328.252500px;}
.y12_c00220{bottom:344.691000px;}
.y11_c00220{bottom:361.129500px;}
.y10_c00220{bottom:377.568000px;}
.yf_c00220{bottom:393.633000px;}
.ye_c00220{bottom:441.757500px;}
.yd_c00220{bottom:459.690000px;}
.yc_c00220{bottom:477.622500px;}
.yb_c00220{bottom:495.555000px;}
.ya_c00220{bottom:513.487500px;}
.y9_c00220{bottom:531.420000px;}
.y8_c00220{bottom:549.352500px;}
.y7_c00220{bottom:576.238500px;}
.y6_c00220{bottom:594.171000px;}
.y5_c00220{bottom:621.057000px;}
.y4_c00220{bottom:638.989500px;}
.y3_c00220{bottom:665.875500px;}
.y2_c00220{bottom:692.760000px;}
.y1_c00220{bottom:735.019500px;}
.h8_c00220{height:35.190766px;}
.h9_c00220{height:36.007158px;}
.h3_c00220{height:40.511979px;}
.h5_c00220{height:52.332837px;}
.h7_c00220{height:52.338837px;}
.h2_c00220{height:58.337477px;}
.h4_c00220{height:59.150881px;}
.h6_c00220{height:59.156881px;}
.h0_c00220{height:1262.835000px;}
.h1_c00220{height:1263.000000px;}
.w0_c00220{width:892.920000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:127.558500px;}
.x2_c00220{left:137.122500px;}
.x3_c00220{left:163.713000px;}
.x4_c00220{left:435.249000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.v1_c00220{vertical-align:20.016000pt;}
.ls3_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.078221pt;}
.ls2_c00220{letter-spacing:0.087539pt;}
.ls1_c00220{letter-spacing:0.092873pt;}
.ws7_c00220{word-spacing:-29.967501pt;}
.ws2_c00220{word-spacing:-23.622682pt;}
.ws17_c00220{word-spacing:-23.544461pt;}
.ws8_c00220{word-spacing:-20.977190pt;}
.ws9_c00220{word-spacing:-18.437452pt;}
.ws5_c00220{word-spacing:-18.384318pt;}
.ws11_c00220{word-spacing:-17.268507pt;}
.wsa_c00220{word-spacing:-16.684034pt;}
.ws10_c00220{word-spacing:-16.099562pt;}
.wsd_c00220{word-spacing:-15.635226pt;}
.wse_c00220{word-spacing:-15.621357pt;}
.wsf_c00220{word-spacing:-15.568223pt;}
.ws4_c00220{word-spacing:-15.036884pt;}
.ws13_c00220{word-spacing:-13.867939pt;}
.ws12_c00220{word-spacing:-13.831974pt;}
.ws15_c00220{word-spacing:-13.124065pt;}
.ws14_c00220{word-spacing:-11.051844pt;}
.ws1_c00220{word-spacing:-8.878599pt;}
.ws3_c00220{word-spacing:-8.877777pt;}
.ws6_c00220{word-spacing:-6.738871pt;}
.wsb_c00220{word-spacing:-6.728205pt;}
.wsc_c00220{word-spacing:-6.698795pt;}
.ws1b_c00220{word-spacing:0.000000pt;}
.ws18_c00220{word-spacing:0.039110pt;}
.ws16_c00220{word-spacing:0.156442pt;}
.ws1a_c00220{word-spacing:0.189730pt;}
.ws19_c00220{word-spacing:0.195063pt;}
.ws0_c00220{word-spacing:38.256533pt;}
._c_c00220{margin-left:-925.095650pt;}
._8_c00220{margin-left:-3.666237pt;}
._a_c00220{margin-left:-2.555146pt;}
._0_c00220{margin-left:-1.377235pt;}
._b_c00220{width:0.893988pt;}
._2_c00220{width:2.259514pt;}
._3_c00220{width:3.180124pt;}
._1_c00220{width:16.898143pt;}
._5_c00220{width:19.340727pt;}
._4_c00220{width:20.346756pt;}
._6_c00220{width:26.497290pt;}
._9_c00220{width:28.426619pt;}
._7_c00220{width:34.791366pt;}
.fs4_c00220{font-size:27.569600pt;}
.fs3_c00220{font-size:37.193600pt;}
.fs2_c00220{font-size:39.110400pt;}
.fs1_c00220{font-size:53.133867pt;}
.fs0_c00220{font-size:76.513067pt;}
.y0_c00220{bottom:0.000000pt;}
.y1f_c00220{bottom:39.333333pt;}
.y1e_c00220{bottom:87.546667pt;}
.y1d_c00220{bottom:116.769333pt;}
.y1c_c00220{bottom:145.993333pt;}
.y1b_c00220{bottom:160.605333pt;}
.y1a_c00220{bottom:175.217333pt;}
.y19_c00220{bottom:189.829333pt;}
.y18_c00220{bottom:204.109333pt;}
.y17_c00220{bottom:218.721333pt;}
.y16_c00220{bottom:233.332000pt;}
.y15_c00220{bottom:262.556000pt;}
.y14_c00220{bottom:277.168000pt;}
.y13_c00220{bottom:291.780000pt;}
.y12_c00220{bottom:306.392000pt;}
.y11_c00220{bottom:321.004000pt;}
.y10_c00220{bottom:335.616000pt;}
.yf_c00220{bottom:349.896000pt;}
.ye_c00220{bottom:392.673333pt;}
.yd_c00220{bottom:408.613333pt;}
.yc_c00220{bottom:424.553333pt;}
.yb_c00220{bottom:440.493333pt;}
.ya_c00220{bottom:456.433333pt;}
.y9_c00220{bottom:472.373333pt;}
.y8_c00220{bottom:488.313333pt;}
.y7_c00220{bottom:512.212000pt;}
.y6_c00220{bottom:528.152000pt;}
.y5_c00220{bottom:552.050667pt;}
.y4_c00220{bottom:567.990667pt;}
.y3_c00220{bottom:591.889333pt;}
.y2_c00220{bottom:615.786667pt;}
.y1_c00220{bottom:653.350667pt;}
.h8_c00220{height:31.280681pt;}
.h9_c00220{height:32.006363pt;}
.h3_c00220{height:36.010648pt;}
.h5_c00220{height:46.518078pt;}
.h7_c00220{height:46.523411pt;}
.h2_c00220{height:51.855535pt;}
.h4_c00220{height:52.578561pt;}
.h6_c00220{height:52.583894pt;}
.h0_c00220{height:1122.520000pt;}
.h1_c00220{height:1122.666667pt;}
.w0_c00220{width:793.706667pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:113.385333pt;}
.x2_c00220{left:121.886667pt;}
.x3_c00220{left:145.522667pt;}
.x4_c00220{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_048077e4709be2bbad1836c6.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.014648;font-style:normal;font-weight:normal;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_39d97ad67eeb808c2a09920f.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls3_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:0.087998px;}
.ls2_c00221{letter-spacing:0.098482px;}
.ls1_c00221{letter-spacing:0.104482px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-26.575517px;}
.ws4_c00221{word-spacing:-26.487518px;}
.ws2_c00221{word-spacing:0.000000px;}
.ws1_c00221{word-spacing:0.043999px;}
.ws3_c00221{word-spacing:0.056767px;}
.ws5_c00221{word-spacing:0.213446px;}
._0_c00221{width:1.041538px;}
.fc5_c00221{color:rgb(0,0,207);}
.fc4_c00221{color:rgb(207,92,0);}
.fc3_c00221{color:rgb(33,74,135);}
.fc2_c00221{color:rgb(79,153,5);}
.fc1_c00221{color:rgb(143,89,3);}
.fc0_c00221{color:rgb(0,0,0);}
.fs0_c00221{font-size:43.999200px;}
.fs1_c00221{font-size:59.775600px;}
.y0_c00221{bottom:0.000000px;}
.y2d_c00221{bottom:44.250000px;}
.y2c_c00221{bottom:354.384000px;}
.y2b_c00221{bottom:370.822500px;}
.y2a_c00221{bottom:387.259500px;}
.y29_c00221{bottom:403.698000px;}
.y28_c00221{bottom:420.136500px;}
.y27_c00221{bottom:436.575000px;}
.y26_c00221{bottom:453.013500px;}
.y25_c00221{bottom:469.452000px;}
.y24_c00221{bottom:485.890500px;}
.y23_c00221{bottom:502.329000px;}
.y22_c00221{bottom:518.767500px;}
.y21_c00221{bottom:551.643000px;}
.y20_c00221{bottom:568.081500px;}
.y1f_c00221{bottom:584.520000px;}
.y1e_c00221{bottom:617.397000px;}
.y1d_c00221{bottom:650.274000px;}
.y1c_c00221{bottom:666.712500px;}
.y1b_c00221{bottom:683.151000px;}
.y1a_c00221{bottom:699.589500px;}
.y19_c00221{bottom:716.028000px;}
.y18_c00221{bottom:732.465000px;}
.y17_c00221{bottom:748.903500px;}
.y16_c00221{bottom:765.342000px;}
.y15_c00221{bottom:781.780500px;}
.y14_c00221{bottom:798.219000px;}
.y13_c00221{bottom:814.657500px;}
.y12_c00221{bottom:847.534500px;}
.y11_c00221{bottom:863.973000px;}
.y10_c00221{bottom:880.411500px;}
.yf_c00221{bottom:896.848500px;}
.ye_c00221{bottom:913.287000px;}
.yd_c00221{bottom:929.725500px;}
.yc_c00221{bottom:946.164000px;}
.yb_c00221{bottom:962.602500px;}
.ya_c00221{bottom:979.041000px;}
.y9_c00221{bottom:995.479500px;}
.y8_c00221{bottom:1011.918000px;}
.y7_c00221{bottom:1028.356500px;}
.y6_c00221{bottom:1044.795000px;}
.y5_c00221{bottom:1077.670500px;}
.y4_c00221{bottom:1094.109000px;}
.y3_c00221{bottom:1126.986000px;}
.y2_c00221{bottom:1143.424500px;}
.y1_c00221{bottom:1159.863000px;}
.h3_c00221{height:35.190766px;}
.h2_c00221{height:36.007158px;}
.h4_c00221{height:52.332837px;}
.h0_c00221{height:1262.835000px;}
.h1_c00221{height:1263.000000px;}
.w0_c00221{width:892.920000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:137.122500px;}
.x4_c00221{left:177.007500px;}
.x2_c00221{left:183.654000px;}
.x3_c00221{left:196.948500px;}
.x5_c00221{left:435.249000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls3_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:0.078221pt;}
.ls2_c00221{letter-spacing:0.087539pt;}
.ls1_c00221{letter-spacing:0.092873pt;}
.ws0_c00221{word-spacing:-23.622682pt;}
.ws4_c00221{word-spacing:-23.544461pt;}
.ws2_c00221{word-spacing:0.000000pt;}
.ws1_c00221{word-spacing:0.039110pt;}
.ws3_c00221{word-spacing:0.050460pt;}
.ws5_c00221{word-spacing:0.189730pt;}
._0_c00221{width:0.925811pt;}
.fs0_c00221{font-size:39.110400pt;}
.fs1_c00221{font-size:53.133867pt;}
.y0_c00221{bottom:0.000000pt;}
.y2d_c00221{bottom:39.333333pt;}
.y2c_c00221{bottom:315.008000pt;}
.y2b_c00221{bottom:329.620000pt;}
.y2a_c00221{bottom:344.230667pt;}
.y29_c00221{bottom:358.842667pt;}
.y28_c00221{bottom:373.454667pt;}
.y27_c00221{bottom:388.066667pt;}
.y26_c00221{bottom:402.678667pt;}
.y25_c00221{bottom:417.290667pt;}
.y24_c00221{bottom:431.902667pt;}
.y23_c00221{bottom:446.514667pt;}
.y22_c00221{bottom:461.126667pt;}
.y21_c00221{bottom:490.349333pt;}
.y20_c00221{bottom:504.961333pt;}
.y1f_c00221{bottom:519.573333pt;}
.y1e_c00221{bottom:548.797333pt;}
.y1d_c00221{bottom:578.021333pt;}
.y1c_c00221{bottom:592.633333pt;}
.y1b_c00221{bottom:607.245333pt;}
.y1a_c00221{bottom:621.857333pt;}
.y19_c00221{bottom:636.469333pt;}
.y18_c00221{bottom:651.080000pt;}
.y17_c00221{bottom:665.692000pt;}
.y16_c00221{bottom:680.304000pt;}
.y15_c00221{bottom:694.916000pt;}
.y14_c00221{bottom:709.528000pt;}
.y13_c00221{bottom:724.140000pt;}
.y12_c00221{bottom:753.364000pt;}
.y11_c00221{bottom:767.976000pt;}
.y10_c00221{bottom:782.588000pt;}
.yf_c00221{bottom:797.198667pt;}
.ye_c00221{bottom:811.810667pt;}
.yd_c00221{bottom:826.422667pt;}
.yc_c00221{bottom:841.034667pt;}
.yb_c00221{bottom:855.646667pt;}
.ya_c00221{bottom:870.258667pt;}
.y9_c00221{bottom:884.870667pt;}
.y8_c00221{bottom:899.482667pt;}
.y7_c00221{bottom:914.094667pt;}
.y6_c00221{bottom:928.706667pt;}
.y5_c00221{bottom:957.929333pt;}
.y4_c00221{bottom:972.541333pt;}
.y3_c00221{bottom:1001.765333pt;}
.y2_c00221{bottom:1016.377333pt;}
.y1_c00221{bottom:1030.989333pt;}
.h3_c00221{height:31.280681pt;}
.h2_c00221{height:32.006363pt;}
.h4_c00221{height:46.518078pt;}
.h0_c00221{height:1122.520000pt;}
.h1_c00221{height:1122.666667pt;}
.w0_c00221{width:793.706667pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:121.886667pt;}
.x4_c00221{left:157.340000pt;}
.x2_c00221{left:163.248000pt;}
.x3_c00221{left:175.065333pt;}
.x5_c00221{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_922739a27e3e3be454f564f4.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.083496;font-style:normal;font-weight:normal;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_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_6242c17901c04fe23e756c79.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.000000;font-style: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;}
.v1_c00222{vertical-align:22.518000px;}
.ls3_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.087998px;}
.ls2_c00222{letter-spacing:0.098482px;}
.ls1_c00222{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00222{word-spacing:-33.713438px;}
.ws2_c00222{word-spacing:-26.575517px;}
.ws17_c00222{word-spacing:-26.487518px;}
.ws8_c00222{word-spacing:-23.599339px;}
.wsb_c00222{word-spacing:-20.024826px;}
.ws11_c00222{word-spacing:-19.427070px;}
.ws9_c00222{word-spacing:-18.769538px;}
.ws10_c00222{word-spacing:-18.112007px;}
.wsd_c00222{word-spacing:-17.589629px;}
.wse_c00222{word-spacing:-17.574026px;}
.wsf_c00222{word-spacing:-17.514251px;}
.ws5_c00222{word-spacing:-17.155597px;}
.wsa_c00222{word-spacing:-16.199188px;}
.ws13_c00222{word-spacing:-15.601432px;}
.ws12_c00222{word-spacing:-15.560971px;}
.ws15_c00222{word-spacing:-14.764573px;}
.ws4_c00222{word-spacing:-13.329959px;}
.ws14_c00222{word-spacing:-12.433325px;}
.ws1_c00222{word-spacing:-9.988424px;}
.ws3_c00222{word-spacing:-9.987499px;}
.wsc_c00222{word-spacing:-7.536144px;}
.ws6_c00222{word-spacing:-4.035230px;}
.ws1b_c00222{word-spacing:0.000000px;}
.ws18_c00222{word-spacing:0.043999px;}
.ws16_c00222{word-spacing:0.175997px;}
.ws1a_c00222{word-spacing:0.213446px;}
.ws19_c00222{word-spacing:0.219446px;}
.ws0_c00222{word-spacing:43.038600px;}
._b_c00222{margin-left:-1040.732606px;}
._7_c00222{margin-left:-4.124516px;}
._9_c00222{margin-left:-3.084824px;}
._0_c00222{margin-left:-1.549390px;}
._a_c00222{width:1.005737px;}
._2_c00222{width:2.725460px;}
._3_c00222{width:19.343788px;}
._4_c00222{width:21.758318px;}
._1_c00222{width:23.157875px;}
._5_c00222{width:29.809451px;}
._8_c00222{width:31.979946px;}
._6_c00222{width:39.140287px;}
.fc6_c00222{color:rgb(0,0,207);}
.fc5_c00222{color:rgb(79,153,5);}
.fc3_c00222{color:rgb(33,74,135);}
.fc2_c00222{color:rgb(143,89,3);}
.fc4_c00222{color:rgb(207,92,0);}
.fc1_c00222{color:rgb(6,69,173);}
.fc0_c00222{color:rgb(0,0,0);}
.fs4_c00222{font-size:31.015800px;}
.fs3_c00222{font-size:41.842800px;}
.fs2_c00222{font-size:43.999200px;}
.fs1_c00222{font-size:59.775600px;}
.fs0_c00222{font-size:86.077200px;}
.y0_c00222{bottom:0.000000px;}
.y1f_c00222{bottom:44.250000px;}
.y1e_c00222{bottom:98.490000px;}
.y1d_c00222{bottom:131.365500px;}
.y1c_c00222{bottom:164.242500px;}
.y1b_c00222{bottom:180.681000px;}
.y1a_c00222{bottom:197.119500px;}
.y19_c00222{bottom:213.558000px;}
.y18_c00222{bottom:229.623000px;}
.y17_c00222{bottom:246.061500px;}
.y16_c00222{bottom:262.498500px;}
.y15_c00222{bottom:295.375500px;}
.y14_c00222{bottom:311.814000px;}
.y13_c00222{bottom:328.252500px;}
.y12_c00222{bottom:344.691000px;}
.y11_c00222{bottom:361.129500px;}
.y10_c00222{bottom:377.568000px;}
.yf_c00222{bottom:393.633000px;}
.ye_c00222{bottom:441.757500px;}
.yd_c00222{bottom:459.690000px;}
.yc_c00222{bottom:477.622500px;}
.yb_c00222{bottom:495.555000px;}
.ya_c00222{bottom:513.487500px;}
.y9_c00222{bottom:531.420000px;}
.y8_c00222{bottom:549.352500px;}
.y7_c00222{bottom:576.238500px;}
.y6_c00222{bottom:594.171000px;}
.y5_c00222{bottom:621.057000px;}
.y4_c00222{bottom:638.989500px;}
.y3_c00222{bottom:665.875500px;}
.y2_c00222{bottom:692.760000px;}
.y1_c00222{bottom:735.019500px;}
.h8_c00222{height:35.190766px;}
.h9_c00222{height:36.007158px;}
.h3_c00222{height:40.511979px;}
.h5_c00222{height:52.332837px;}
.h7_c00222{height:52.338837px;}
.h2_c00222{height:58.337477px;}
.h4_c00222{height:59.150881px;}
.h6_c00222{height:59.156881px;}
.h0_c00222{height:1262.835000px;}
.h1_c00222{height:1263.000000px;}
.w0_c00222{width:892.920000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:127.558500px;}
.x2_c00222{left:137.122500px;}
.x3_c00222{left:163.713000px;}
.x4_c00222{left:435.249000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.v1_c00222{vertical-align:20.016000pt;}
.ls3_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.078221pt;}
.ls2_c00222{letter-spacing:0.087539pt;}
.ls1_c00222{letter-spacing:0.092873pt;}
.ws7_c00222{word-spacing:-29.967501pt;}
.ws2_c00222{word-spacing:-23.622682pt;}
.ws17_c00222{word-spacing:-23.544461pt;}
.ws8_c00222{word-spacing:-20.977190pt;}
.wsb_c00222{word-spacing:-17.799845pt;}
.ws11_c00222{word-spacing:-17.268507pt;}
.ws9_c00222{word-spacing:-16.684034pt;}
.ws10_c00222{word-spacing:-16.099562pt;}
.wsd_c00222{word-spacing:-15.635226pt;}
.wse_c00222{word-spacing:-15.621357pt;}
.wsf_c00222{word-spacing:-15.568223pt;}
.ws5_c00222{word-spacing:-15.249420pt;}
.wsa_c00222{word-spacing:-14.399278pt;}
.ws13_c00222{word-spacing:-13.867939pt;}
.ws12_c00222{word-spacing:-13.831974pt;}
.ws15_c00222{word-spacing:-13.124065pt;}
.ws4_c00222{word-spacing:-11.848852pt;}
.ws14_c00222{word-spacing:-11.051844pt;}
.ws1_c00222{word-spacing:-8.878599pt;}
.ws3_c00222{word-spacing:-8.877777pt;}
.wsc_c00222{word-spacing:-6.698795pt;}
.ws6_c00222{word-spacing:-3.586871pt;}
.ws1b_c00222{word-spacing:0.000000pt;}
.ws18_c00222{word-spacing:0.039110pt;}
.ws16_c00222{word-spacing:0.156442pt;}
.ws1a_c00222{word-spacing:0.189730pt;}
.ws19_c00222{word-spacing:0.195063pt;}
.ws0_c00222{word-spacing:38.256533pt;}
._b_c00222{margin-left:-925.095650pt;}
._7_c00222{margin-left:-3.666237pt;}
._9_c00222{margin-left:-2.742066pt;}
._0_c00222{margin-left:-1.377235pt;}
._a_c00222{width:0.893988pt;}
._2_c00222{width:2.422631pt;}
._3_c00222{width:17.194478pt;}
._4_c00222{width:19.340727pt;}
._1_c00222{width:20.584778pt;}
._5_c00222{width:26.497290pt;}
._8_c00222{width:28.426619pt;}
._6_c00222{width:34.791366pt;}
.fs4_c00222{font-size:27.569600pt;}
.fs3_c00222{font-size:37.193600pt;}
.fs2_c00222{font-size:39.110400pt;}
.fs1_c00222{font-size:53.133867pt;}
.fs0_c00222{font-size:76.513067pt;}
.y0_c00222{bottom:0.000000pt;}
.y1f_c00222{bottom:39.333333pt;}
.y1e_c00222{bottom:87.546667pt;}
.y1d_c00222{bottom:116.769333pt;}
.y1c_c00222{bottom:145.993333pt;}
.y1b_c00222{bottom:160.605333pt;}
.y1a_c00222{bottom:175.217333pt;}
.y19_c00222{bottom:189.829333pt;}
.y18_c00222{bottom:204.109333pt;}
.y17_c00222{bottom:218.721333pt;}
.y16_c00222{bottom:233.332000pt;}
.y15_c00222{bottom:262.556000pt;}
.y14_c00222{bottom:277.168000pt;}
.y13_c00222{bottom:291.780000pt;}
.y12_c00222{bottom:306.392000pt;}
.y11_c00222{bottom:321.004000pt;}
.y10_c00222{bottom:335.616000pt;}
.yf_c00222{bottom:349.896000pt;}
.ye_c00222{bottom:392.673333pt;}
.yd_c00222{bottom:408.613333pt;}
.yc_c00222{bottom:424.553333pt;}
.yb_c00222{bottom:440.493333pt;}
.ya_c00222{bottom:456.433333pt;}
.y9_c00222{bottom:472.373333pt;}
.y8_c00222{bottom:488.313333pt;}
.y7_c00222{bottom:512.212000pt;}
.y6_c00222{bottom:528.152000pt;}
.y5_c00222{bottom:552.050667pt;}
.y4_c00222{bottom:567.990667pt;}
.y3_c00222{bottom:591.889333pt;}
.y2_c00222{bottom:615.786667pt;}
.y1_c00222{bottom:653.350667pt;}
.h8_c00222{height:31.280681pt;}
.h9_c00222{height:32.006363pt;}
.h3_c00222{height:36.010648pt;}
.h5_c00222{height:46.518078pt;}
.h7_c00222{height:46.523411pt;}
.h2_c00222{height:51.855535pt;}
.h4_c00222{height:52.578561pt;}
.h6_c00222{height:52.583894pt;}
.h0_c00222{height:1122.520000pt;}
.h1_c00222{height:1122.666667pt;}
.w0_c00222{width:793.706667pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:113.385333pt;}
.x2_c00222{left:121.886667pt;}
.x3_c00222{left:145.522667pt;}
.x4_c00222{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74ac281834b64d8f4b80efda.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_08886daa5ef433dabfcd5d3d.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls3_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.087998px;}
.ls2_c00223{letter-spacing:0.098482px;}
.ls1_c00223{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00223{word-spacing:-26.487518px;}
.ws2_c00223{word-spacing:0.000000px;}
.ws1_c00223{word-spacing:0.043999px;}
.ws3_c00223{word-spacing:0.056767px;}
.ws5_c00223{word-spacing:0.213446px;}
._0_c00223{width:1.041538px;}
.fc5_c00223{color:rgb(0,0,207);}
.fc4_c00223{color:rgb(207,92,0);}
.fc3_c00223{color:rgb(33,74,135);}
.fc2_c00223{color:rgb(79,153,5);}
.fc1_c00223{color:rgb(143,89,3);}
.fc0_c00223{color:rgb(0,0,0);}
.fs0_c00223{font-size:43.999200px;}
.fs1_c00223{font-size:59.775600px;}
.y0_c00223{bottom:0.000000px;}
.y2d_c00223{bottom:44.250000px;}
.y2c_c00223{bottom:354.384000px;}
.y2b_c00223{bottom:370.822500px;}
.y2a_c00223{bottom:387.259500px;}
.y29_c00223{bottom:403.698000px;}
.y28_c00223{bottom:420.136500px;}
.y27_c00223{bottom:436.575000px;}
.y26_c00223{bottom:453.013500px;}
.y25_c00223{bottom:469.452000px;}
.y24_c00223{bottom:485.890500px;}
.y23_c00223{bottom:502.329000px;}
.y22_c00223{bottom:518.767500px;}
.y21_c00223{bottom:551.643000px;}
.y20_c00223{bottom:568.081500px;}
.y1f_c00223{bottom:584.520000px;}
.y1e_c00223{bottom:617.397000px;}
.y1d_c00223{bottom:650.274000px;}
.y1c_c00223{bottom:666.712500px;}
.y1b_c00223{bottom:683.151000px;}
.y1a_c00223{bottom:699.589500px;}
.y19_c00223{bottom:716.028000px;}
.y18_c00223{bottom:732.465000px;}
.y17_c00223{bottom:748.903500px;}
.y16_c00223{bottom:765.342000px;}
.y15_c00223{bottom:781.780500px;}
.y14_c00223{bottom:798.219000px;}
.y13_c00223{bottom:814.657500px;}
.y12_c00223{bottom:847.534500px;}
.y11_c00223{bottom:863.973000px;}
.y10_c00223{bottom:880.411500px;}
.yf_c00223{bottom:896.848500px;}
.ye_c00223{bottom:913.287000px;}
.yd_c00223{bottom:929.725500px;}
.yc_c00223{bottom:946.164000px;}
.yb_c00223{bottom:962.602500px;}
.ya_c00223{bottom:979.041000px;}
.y9_c00223{bottom:995.479500px;}
.y8_c00223{bottom:1011.918000px;}
.y7_c00223{bottom:1028.356500px;}
.y6_c00223{bottom:1044.795000px;}
.y5_c00223{bottom:1077.670500px;}
.y4_c00223{bottom:1094.109000px;}
.y3_c00223{bottom:1126.986000px;}
.y2_c00223{bottom:1143.424500px;}
.y1_c00223{bottom:1159.863000px;}
.h3_c00223{height:35.190766px;}
.h2_c00223{height:36.007158px;}
.h4_c00223{height:52.332837px;}
.h0_c00223{height:1262.835000px;}
.h1_c00223{height:1263.000000px;}
.w0_c00223{width:892.920000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:137.122500px;}
.x4_c00223{left:177.007500px;}
.x2_c00223{left:183.654000px;}
.x3_c00223{left:196.948500px;}
.x5_c00223{left:435.249000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls3_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.078221pt;}
.ls2_c00223{letter-spacing:0.087539pt;}
.ls1_c00223{letter-spacing:0.092873pt;}
.ws0_c00223{word-spacing:-23.622682pt;}
.ws4_c00223{word-spacing:-23.544461pt;}
.ws2_c00223{word-spacing:0.000000pt;}
.ws1_c00223{word-spacing:0.039110pt;}
.ws3_c00223{word-spacing:0.050460pt;}
.ws5_c00223{word-spacing:0.189730pt;}
._0_c00223{width:0.925811pt;}
.fs0_c00223{font-size:39.110400pt;}
.fs1_c00223{font-size:53.133867pt;}
.y0_c00223{bottom:0.000000pt;}
.y2d_c00223{bottom:39.333333pt;}
.y2c_c00223{bottom:315.008000pt;}
.y2b_c00223{bottom:329.620000pt;}
.y2a_c00223{bottom:344.230667pt;}
.y29_c00223{bottom:358.842667pt;}
.y28_c00223{bottom:373.454667pt;}
.y27_c00223{bottom:388.066667pt;}
.y26_c00223{bottom:402.678667pt;}
.y25_c00223{bottom:417.290667pt;}
.y24_c00223{bottom:431.902667pt;}
.y23_c00223{bottom:446.514667pt;}
.y22_c00223{bottom:461.126667pt;}
.y21_c00223{bottom:490.349333pt;}
.y20_c00223{bottom:504.961333pt;}
.y1f_c00223{bottom:519.573333pt;}
.y1e_c00223{bottom:548.797333pt;}
.y1d_c00223{bottom:578.021333pt;}
.y1c_c00223{bottom:592.633333pt;}
.y1b_c00223{bottom:607.245333pt;}
.y1a_c00223{bottom:621.857333pt;}
.y19_c00223{bottom:636.469333pt;}
.y18_c00223{bottom:651.080000pt;}
.y17_c00223{bottom:665.692000pt;}
.y16_c00223{bottom:680.304000pt;}
.y15_c00223{bottom:694.916000pt;}
.y14_c00223{bottom:709.528000pt;}
.y13_c00223{bottom:724.140000pt;}
.y12_c00223{bottom:753.364000pt;}
.y11_c00223{bottom:767.976000pt;}
.y10_c00223{bottom:782.588000pt;}
.yf_c00223{bottom:797.198667pt;}
.ye_c00223{bottom:811.810667pt;}
.yd_c00223{bottom:826.422667pt;}
.yc_c00223{bottom:841.034667pt;}
.yb_c00223{bottom:855.646667pt;}
.ya_c00223{bottom:870.258667pt;}
.y9_c00223{bottom:884.870667pt;}
.y8_c00223{bottom:899.482667pt;}
.y7_c00223{bottom:914.094667pt;}
.y6_c00223{bottom:928.706667pt;}
.y5_c00223{bottom:957.929333pt;}
.y4_c00223{bottom:972.541333pt;}
.y3_c00223{bottom:1001.765333pt;}
.y2_c00223{bottom:1016.377333pt;}
.y1_c00223{bottom:1030.989333pt;}
.h3_c00223{height:31.280681pt;}
.h2_c00223{height:32.006363pt;}
.h4_c00223{height:46.518078pt;}
.h0_c00223{height:1122.520000pt;}
.h1_c00223{height:1122.666667pt;}
.w0_c00223{width:793.706667pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:121.886667pt;}
.x4_c00223{left:157.340000pt;}
.x2_c00223{left:163.248000pt;}
.x3_c00223{left:175.065333pt;}
.x5_c00223{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6a7e349aef70726db55c372.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.083496;font-style:normal;font-weight:normal;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_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00224;src:url('chunks/assets/font_23878726b53a78d30b8665c2.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:1.000000;font-style: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;}
.v1_c00224{vertical-align:22.518000px;}
.ls3_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.087998px;}
.ls2_c00224{letter-spacing:0.098482px;}
.ls1_c00224{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00224{word-spacing:-33.713438px;}
.ws2_c00224{word-spacing:-26.575517px;}
.ws18_c00224{word-spacing:-26.487518px;}
.ws8_c00224{word-spacing:-23.599339px;}
.wsc_c00224{word-spacing:-20.323704px;}
.ws12_c00224{word-spacing:-19.427070px;}
.wsa_c00224{word-spacing:-18.769538px;}
.ws11_c00224{word-spacing:-18.112007px;}
.wse_c00224{word-spacing:-17.589629px;}
.wsf_c00224{word-spacing:-17.574026px;}
.ws10_c00224{word-spacing:-17.514251px;}
.wsb_c00224{word-spacing:-16.498066px;}
.ws14_c00224{word-spacing:-15.601432px;}
.ws13_c00224{word-spacing:-15.560971px;}
.ws16_c00224{word-spacing:-14.764573px;}
.ws9_c00224{word-spacing:-14.585246px;}
.ws5_c00224{word-spacing:-14.525471px;}
.ws15_c00224{word-spacing:-12.433325px;}
.ws4_c00224{word-spacing:-10.759608px;}
.ws1_c00224{word-spacing:-9.988424px;}
.ws3_c00224{word-spacing:-9.987499px;}
.wsd_c00224{word-spacing:-7.536144px;}
.ws6_c00224{word-spacing:-1.431230px;}
.ws1c_c00224{word-spacing:0.000000px;}
.ws19_c00224{word-spacing:0.043999px;}
.ws17_c00224{word-spacing:0.175997px;}
.ws1b_c00224{word-spacing:0.213446px;}
.ws1a_c00224{word-spacing:0.219446px;}
.ws0_c00224{word-spacing:43.038600px;}
._c_c00224{margin-left:-1040.732606px;}
._8_c00224{margin-left:-4.124516px;}
._a_c00224{margin-left:-2.903702px;}
._0_c00224{margin-left:-1.549390px;}
._b_c00224{width:1.005737px;}
._2_c00224{width:2.572576px;}
._3_c00224{width:19.162666px;}
._5_c00224{width:21.758318px;}
._4_c00224{width:22.890101px;}
._1_c00224{width:28.411524px;}
._6_c00224{width:29.809451px;}
._9_c00224{width:31.979946px;}
._7_c00224{width:39.140287px;}
.fc6_c00224{color:rgb(0,0,207);}
.fc5_c00224{color:rgb(79,153,5);}
.fc3_c00224{color:rgb(33,74,135);}
.fc2_c00224{color:rgb(143,89,3);}
.fc4_c00224{color:rgb(207,92,0);}
.fc1_c00224{color:rgb(6,69,173);}
.fc0_c00224{color:rgb(0,0,0);}
.fs4_c00224{font-size:31.015800px;}
.fs3_c00224{font-size:41.842800px;}
.fs2_c00224{font-size:43.999200px;}
.fs1_c00224{font-size:59.775600px;}
.fs0_c00224{font-size:86.077200px;}
.y0_c00224{bottom:0.000000px;}
.y1f_c00224{bottom:44.250000px;}
.y1e_c00224{bottom:98.490000px;}
.y1d_c00224{bottom:131.365500px;}
.y1c_c00224{bottom:164.242500px;}
.y1b_c00224{bottom:180.681000px;}
.y1a_c00224{bottom:197.119500px;}
.y19_c00224{bottom:213.558000px;}
.y18_c00224{bottom:229.623000px;}
.y17_c00224{bottom:246.061500px;}
.y16_c00224{bottom:262.498500px;}
.y15_c00224{bottom:295.375500px;}
.y14_c00224{bottom:311.814000px;}
.y13_c00224{bottom:328.252500px;}
.y12_c00224{bottom:344.691000px;}
.y11_c00224{bottom:361.129500px;}
.y10_c00224{bottom:377.568000px;}
.yf_c00224{bottom:393.633000px;}
.ye_c00224{bottom:441.757500px;}
.yd_c00224{bottom:459.690000px;}
.yc_c00224{bottom:477.622500px;}
.yb_c00224{bottom:495.555000px;}
.ya_c00224{bottom:513.487500px;}
.y9_c00224{bottom:531.420000px;}
.y8_c00224{bottom:549.352500px;}
.y7_c00224{bottom:576.238500px;}
.y6_c00224{bottom:594.171000px;}
.y5_c00224{bottom:621.057000px;}
.y4_c00224{bottom:638.989500px;}
.y3_c00224{bottom:665.875500px;}
.y2_c00224{bottom:692.760000px;}
.y1_c00224{bottom:735.019500px;}
.h8_c00224{height:35.190766px;}
.h9_c00224{height:36.007158px;}
.h3_c00224{height:40.511979px;}
.h5_c00224{height:52.332837px;}
.h7_c00224{height:52.338837px;}
.h2_c00224{height:58.337477px;}
.h4_c00224{height:59.150881px;}
.h6_c00224{height:59.156881px;}
.h0_c00224{height:1262.835000px;}
.h1_c00224{height:1263.000000px;}
.w0_c00224{width:892.920000px;}
.w1_c00224{width:893.250000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:127.558500px;}
.x2_c00224{left:137.122500px;}
.x3_c00224{left:163.713000px;}
.x4_c00224{left:435.249000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:20.016000pt;}
.ls3_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.078221pt;}
.ls2_c00224{letter-spacing:0.087539pt;}
.ls1_c00224{letter-spacing:0.092873pt;}
.ws7_c00224{word-spacing:-29.967501pt;}
.ws2_c00224{word-spacing:-23.622682pt;}
.ws18_c00224{word-spacing:-23.544461pt;}
.ws8_c00224{word-spacing:-20.977190pt;}
.wsc_c00224{word-spacing:-18.065515pt;}
.ws12_c00224{word-spacing:-17.268507pt;}
.wsa_c00224{word-spacing:-16.684034pt;}
.ws11_c00224{word-spacing:-16.099562pt;}
.wse_c00224{word-spacing:-15.635226pt;}
.wsf_c00224{word-spacing:-15.621357pt;}
.ws10_c00224{word-spacing:-15.568223pt;}
.wsb_c00224{word-spacing:-14.664947pt;}
.ws14_c00224{word-spacing:-13.867939pt;}
.ws13_c00224{word-spacing:-13.831974pt;}
.ws16_c00224{word-spacing:-13.124065pt;}
.ws9_c00224{word-spacing:-12.964663pt;}
.ws5_c00224{word-spacing:-12.911530pt;}
.ws15_c00224{word-spacing:-11.051844pt;}
.ws4_c00224{word-spacing:-9.564096pt;}
.ws1_c00224{word-spacing:-8.878599pt;}
.ws3_c00224{word-spacing:-8.877777pt;}
.wsd_c00224{word-spacing:-6.698795pt;}
.ws6_c00224{word-spacing:-1.272205pt;}
.ws1c_c00224{word-spacing:0.000000pt;}
.ws19_c00224{word-spacing:0.039110pt;}
.ws17_c00224{word-spacing:0.156442pt;}
.ws1b_c00224{word-spacing:0.189730pt;}
.ws1a_c00224{word-spacing:0.195063pt;}
.ws0_c00224{word-spacing:38.256533pt;}
._c_c00224{margin-left:-925.095650pt;}
._8_c00224{margin-left:-3.666237pt;}
._a_c00224{margin-left:-2.581069pt;}
._0_c00224{margin-left:-1.377235pt;}
._b_c00224{width:0.893988pt;}
._2_c00224{width:2.286734pt;}
._3_c00224{width:17.033481pt;}
._5_c00224{width:19.340727pt;}
._4_c00224{width:20.346756pt;}
._1_c00224{width:25.254688pt;}
._6_c00224{width:26.497290pt;}
._9_c00224{width:28.426619pt;}
._7_c00224{width:34.791366pt;}
.fs4_c00224{font-size:27.569600pt;}
.fs3_c00224{font-size:37.193600pt;}
.fs2_c00224{font-size:39.110400pt;}
.fs1_c00224{font-size:53.133867pt;}
.fs0_c00224{font-size:76.513067pt;}
.y0_c00224{bottom:0.000000pt;}
.y1f_c00224{bottom:39.333333pt;}
.y1e_c00224{bottom:87.546667pt;}
.y1d_c00224{bottom:116.769333pt;}
.y1c_c00224{bottom:145.993333pt;}
.y1b_c00224{bottom:160.605333pt;}
.y1a_c00224{bottom:175.217333pt;}
.y19_c00224{bottom:189.829333pt;}
.y18_c00224{bottom:204.109333pt;}
.y17_c00224{bottom:218.721333pt;}
.y16_c00224{bottom:233.332000pt;}
.y15_c00224{bottom:262.556000pt;}
.y14_c00224{bottom:277.168000pt;}
.y13_c00224{bottom:291.780000pt;}
.y12_c00224{bottom:306.392000pt;}
.y11_c00224{bottom:321.004000pt;}
.y10_c00224{bottom:335.616000pt;}
.yf_c00224{bottom:349.896000pt;}
.ye_c00224{bottom:392.673333pt;}
.yd_c00224{bottom:408.613333pt;}
.yc_c00224{bottom:424.553333pt;}
.yb_c00224{bottom:440.493333pt;}
.ya_c00224{bottom:456.433333pt;}
.y9_c00224{bottom:472.373333pt;}
.y8_c00224{bottom:488.313333pt;}
.y7_c00224{bottom:512.212000pt;}
.y6_c00224{bottom:528.152000pt;}
.y5_c00224{bottom:552.050667pt;}
.y4_c00224{bottom:567.990667pt;}
.y3_c00224{bottom:591.889333pt;}
.y2_c00224{bottom:615.786667pt;}
.y1_c00224{bottom:653.350667pt;}
.h8_c00224{height:31.280681pt;}
.h9_c00224{height:32.006363pt;}
.h3_c00224{height:36.010648pt;}
.h5_c00224{height:46.518078pt;}
.h7_c00224{height:46.523411pt;}
.h2_c00224{height:51.855535pt;}
.h4_c00224{height:52.578561pt;}
.h6_c00224{height:52.583894pt;}
.h0_c00224{height:1122.520000pt;}
.h1_c00224{height:1122.666667pt;}
.w0_c00224{width:793.706667pt;}
.w1_c00224{width:794.000000pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:113.385333pt;}
.x2_c00224{left:121.886667pt;}
.x3_c00224{left:145.522667pt;}
.x4_c00224{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74ac281834b64d8f4b80efda.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_9aeac06f5f15ee41f5682d1c.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls3_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:0.087998px;}
.ls2_c00225{letter-spacing:0.098482px;}
.ls1_c00225{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00225{word-spacing:-26.487518px;}
.ws2_c00225{word-spacing:0.000000px;}
.ws1_c00225{word-spacing:0.043999px;}
.ws3_c00225{word-spacing:0.056767px;}
.ws5_c00225{word-spacing:0.213446px;}
._0_c00225{width:1.041538px;}
.fc5_c00225{color:rgb(0,0,207);}
.fc4_c00225{color:rgb(207,92,0);}
.fc3_c00225{color:rgb(33,74,135);}
.fc2_c00225{color:rgb(79,153,5);}
.fc1_c00225{color:rgb(143,89,3);}
.fc0_c00225{color:rgb(0,0,0);}
.fs0_c00225{font-size:43.999200px;}
.fs1_c00225{font-size:59.775600px;}
.y0_c00225{bottom:0.000000px;}
.y2d_c00225{bottom:44.250000px;}
.y2c_c00225{bottom:354.384000px;}
.y2b_c00225{bottom:370.822500px;}
.y2a_c00225{bottom:387.259500px;}
.y29_c00225{bottom:403.698000px;}
.y28_c00225{bottom:420.136500px;}
.y27_c00225{bottom:436.575000px;}
.y26_c00225{bottom:453.013500px;}
.y25_c00225{bottom:469.452000px;}
.y24_c00225{bottom:485.890500px;}
.y23_c00225{bottom:502.329000px;}
.y22_c00225{bottom:518.767500px;}
.y21_c00225{bottom:551.643000px;}
.y20_c00225{bottom:568.081500px;}
.y1f_c00225{bottom:584.520000px;}
.y1e_c00225{bottom:617.397000px;}
.y1d_c00225{bottom:650.274000px;}
.y1c_c00225{bottom:666.712500px;}
.y1b_c00225{bottom:683.151000px;}
.y1a_c00225{bottom:699.589500px;}
.y19_c00225{bottom:716.028000px;}
.y18_c00225{bottom:732.465000px;}
.y17_c00225{bottom:748.903500px;}
.y16_c00225{bottom:765.342000px;}
.y15_c00225{bottom:781.780500px;}
.y14_c00225{bottom:798.219000px;}
.y13_c00225{bottom:814.657500px;}
.y12_c00225{bottom:847.534500px;}
.y11_c00225{bottom:863.973000px;}
.y10_c00225{bottom:880.411500px;}
.yf_c00225{bottom:896.848500px;}
.ye_c00225{bottom:913.287000px;}
.yd_c00225{bottom:929.725500px;}
.yc_c00225{bottom:946.164000px;}
.yb_c00225{bottom:962.602500px;}
.ya_c00225{bottom:979.041000px;}
.y9_c00225{bottom:995.479500px;}
.y8_c00225{bottom:1011.918000px;}
.y7_c00225{bottom:1028.356500px;}
.y6_c00225{bottom:1044.795000px;}
.y5_c00225{bottom:1077.670500px;}
.y4_c00225{bottom:1094.109000px;}
.y3_c00225{bottom:1126.986000px;}
.y2_c00225{bottom:1143.424500px;}
.y1_c00225{bottom:1159.863000px;}
.h3_c00225{height:35.190766px;}
.h2_c00225{height:36.007158px;}
.h4_c00225{height:52.332837px;}
.h0_c00225{height:1262.835000px;}
.h1_c00225{height:1263.000000px;}
.w0_c00225{width:892.920000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:137.122500px;}
.x4_c00225{left:177.007500px;}
.x2_c00225{left:183.654000px;}
.x3_c00225{left:196.948500px;}
.x5_c00225{left:435.249000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls3_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:0.078221pt;}
.ls2_c00225{letter-spacing:0.087539pt;}
.ls1_c00225{letter-spacing:0.092873pt;}
.ws0_c00225{word-spacing:-23.622682pt;}
.ws4_c00225{word-spacing:-23.544461pt;}
.ws2_c00225{word-spacing:0.000000pt;}
.ws1_c00225{word-spacing:0.039110pt;}
.ws3_c00225{word-spacing:0.050460pt;}
.ws5_c00225{word-spacing:0.189730pt;}
._0_c00225{width:0.925811pt;}
.fs0_c00225{font-size:39.110400pt;}
.fs1_c00225{font-size:53.133867pt;}
.y0_c00225{bottom:0.000000pt;}
.y2d_c00225{bottom:39.333333pt;}
.y2c_c00225{bottom:315.008000pt;}
.y2b_c00225{bottom:329.620000pt;}
.y2a_c00225{bottom:344.230667pt;}
.y29_c00225{bottom:358.842667pt;}
.y28_c00225{bottom:373.454667pt;}
.y27_c00225{bottom:388.066667pt;}
.y26_c00225{bottom:402.678667pt;}
.y25_c00225{bottom:417.290667pt;}
.y24_c00225{bottom:431.902667pt;}
.y23_c00225{bottom:446.514667pt;}
.y22_c00225{bottom:461.126667pt;}
.y21_c00225{bottom:490.349333pt;}
.y20_c00225{bottom:504.961333pt;}
.y1f_c00225{bottom:519.573333pt;}
.y1e_c00225{bottom:548.797333pt;}
.y1d_c00225{bottom:578.021333pt;}
.y1c_c00225{bottom:592.633333pt;}
.y1b_c00225{bottom:607.245333pt;}
.y1a_c00225{bottom:621.857333pt;}
.y19_c00225{bottom:636.469333pt;}
.y18_c00225{bottom:651.080000pt;}
.y17_c00225{bottom:665.692000pt;}
.y16_c00225{bottom:680.304000pt;}
.y15_c00225{bottom:694.916000pt;}
.y14_c00225{bottom:709.528000pt;}
.y13_c00225{bottom:724.140000pt;}
.y12_c00225{bottom:753.364000pt;}
.y11_c00225{bottom:767.976000pt;}
.y10_c00225{bottom:782.588000pt;}
.yf_c00225{bottom:797.198667pt;}
.ye_c00225{bottom:811.810667pt;}
.yd_c00225{bottom:826.422667pt;}
.yc_c00225{bottom:841.034667pt;}
.yb_c00225{bottom:855.646667pt;}
.ya_c00225{bottom:870.258667pt;}
.y9_c00225{bottom:884.870667pt;}
.y8_c00225{bottom:899.482667pt;}
.y7_c00225{bottom:914.094667pt;}
.y6_c00225{bottom:928.706667pt;}
.y5_c00225{bottom:957.929333pt;}
.y4_c00225{bottom:972.541333pt;}
.y3_c00225{bottom:1001.765333pt;}
.y2_c00225{bottom:1016.377333pt;}
.y1_c00225{bottom:1030.989333pt;}
.h3_c00225{height:31.280681pt;}
.h2_c00225{height:32.006363pt;}
.h4_c00225{height:46.518078pt;}
.h0_c00225{height:1122.520000pt;}
.h1_c00225{height:1122.666667pt;}
.w0_c00225{width:793.706667pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:121.886667pt;}
.x4_c00225{left:157.340000pt;}
.x2_c00225{left:163.248000pt;}
.x3_c00225{left:175.065333pt;}
.x5_c00225{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a729e5869d85aaaa49702c2.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.083496;font-style:normal;font-weight:normal;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_b04d1bf08d079a6eea60b8a6.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.014648;font-style:normal;font-weight:normal;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_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_fd36a561efeb0b3f2e1e9588.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:1.000000;font-style: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;}
.v1_c00226{vertical-align:22.518000px;}
.ls3_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.087998px;}
.ls2_c00226{letter-spacing:0.098482px;}
.ls1_c00226{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00226{word-spacing:-26.575517px;}
.ws15_c00226{word-spacing:-26.487518px;}
.ws6_c00226{word-spacing:-23.599339px;}
.ws9_c00226{word-spacing:-22.236523px;}
.wsf_c00226{word-spacing:-19.427070px;}
.ws7_c00226{word-spacing:-18.769538px;}
.ws8_c00226{word-spacing:-18.410885px;}
.wse_c00226{word-spacing:-18.112007px;}
.wsb_c00226{word-spacing:-17.589629px;}
.wsc_c00226{word-spacing:-17.574026px;}
.wsd_c00226{word-spacing:-17.514251px;}
.ws11_c00226{word-spacing:-15.601432px;}
.ws10_c00226{word-spacing:-15.560971px;}
.ws13_c00226{word-spacing:-14.764573px;}
.ws12_c00226{word-spacing:-12.433325px;}
.ws1_c00226{word-spacing:-9.988424px;}
.ws3_c00226{word-spacing:-9.987499px;}
.ws5_c00226{word-spacing:-9.265218px;}
.wsa_c00226{word-spacing:-7.536144px;}
.ws4_c00226{word-spacing:-5.439580px;}
.ws19_c00226{word-spacing:0.000000px;}
.ws16_c00226{word-spacing:0.043999px;}
.ws14_c00226{word-spacing:0.175997px;}
.ws18_c00226{word-spacing:0.213446px;}
.ws17_c00226{word-spacing:0.219446px;}
.ws0_c00226{word-spacing:43.038600px;}
._b_c00226{margin-left:-1040.732606px;}
._7_c00226{margin-left:-3.993725px;}
._0_c00226{margin-left:-1.549390px;}
._a_c00226{width:1.005737px;}
._2_c00226{width:2.884840px;}
._3_c00226{width:18.249485px;}
._9_c00226{width:19.953810px;}
._5_c00226{width:21.758318px;}
._4_c00226{width:22.890101px;}
._6_c00226{width:29.809451px;}
._8_c00226{width:31.979946px;}
._1_c00226{width:39.009496px;}
.fc6_c00226{color:rgb(0,0,207);}
.fc5_c00226{color:rgb(79,153,5);}
.fc3_c00226{color:rgb(33,74,135);}
.fc2_c00226{color:rgb(143,89,3);}
.fc4_c00226{color:rgb(207,92,0);}
.fc1_c00226{color:rgb(6,69,173);}
.fc0_c00226{color:rgb(0,0,0);}
.fs4_c00226{font-size:31.015800px;}
.fs3_c00226{font-size:41.842800px;}
.fs2_c00226{font-size:43.999200px;}
.fs1_c00226{font-size:59.775600px;}
.fs0_c00226{font-size:86.077200px;}
.y0_c00226{bottom:0.000000px;}
.y1f_c00226{bottom:44.250000px;}
.y1e_c00226{bottom:98.490000px;}
.y1d_c00226{bottom:131.365500px;}
.y1c_c00226{bottom:164.242500px;}
.y1b_c00226{bottom:180.681000px;}
.y1a_c00226{bottom:197.119500px;}
.y19_c00226{bottom:213.558000px;}
.y18_c00226{bottom:229.623000px;}
.y17_c00226{bottom:246.061500px;}
.y16_c00226{bottom:262.498500px;}
.y15_c00226{bottom:295.375500px;}
.y14_c00226{bottom:311.814000px;}
.y13_c00226{bottom:328.252500px;}
.y12_c00226{bottom:344.691000px;}
.y11_c00226{bottom:361.129500px;}
.y10_c00226{bottom:377.568000px;}
.yf_c00226{bottom:393.633000px;}
.ye_c00226{bottom:441.757500px;}
.yd_c00226{bottom:459.690000px;}
.yc_c00226{bottom:477.622500px;}
.yb_c00226{bottom:495.555000px;}
.ya_c00226{bottom:513.487500px;}
.y9_c00226{bottom:531.420000px;}
.y8_c00226{bottom:549.352500px;}
.y7_c00226{bottom:576.238500px;}
.y6_c00226{bottom:594.171000px;}
.y5_c00226{bottom:621.057000px;}
.y4_c00226{bottom:638.989500px;}
.y3_c00226{bottom:665.875500px;}
.y2_c00226{bottom:692.760000px;}
.y1_c00226{bottom:735.019500px;}
.h8_c00226{height:35.190766px;}
.h9_c00226{height:36.007158px;}
.h3_c00226{height:40.511979px;}
.h5_c00226{height:52.332837px;}
.h7_c00226{height:52.338837px;}
.h2_c00226{height:58.337477px;}
.h4_c00226{height:59.150881px;}
.h6_c00226{height:59.156881px;}
.h0_c00226{height:1262.835000px;}
.h1_c00226{height:1263.000000px;}
.w0_c00226{width:892.920000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:127.558500px;}
.x2_c00226{left:137.122500px;}
.x3_c00226{left:163.713000px;}
.x4_c00226{left:435.249000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:20.016000pt;}
.ls3_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.078221pt;}
.ls2_c00226{letter-spacing:0.087539pt;}
.ls1_c00226{letter-spacing:0.092873pt;}
.ws2_c00226{word-spacing:-23.622682pt;}
.ws15_c00226{word-spacing:-23.544461pt;}
.ws6_c00226{word-spacing:-20.977190pt;}
.ws9_c00226{word-spacing:-19.765798pt;}
.wsf_c00226{word-spacing:-17.268507pt;}
.ws7_c00226{word-spacing:-16.684034pt;}
.ws8_c00226{word-spacing:-16.365231pt;}
.wse_c00226{word-spacing:-16.099562pt;}
.wsb_c00226{word-spacing:-15.635226pt;}
.wsc_c00226{word-spacing:-15.621357pt;}
.wsd_c00226{word-spacing:-15.568223pt;}
.ws11_c00226{word-spacing:-13.867939pt;}
.ws10_c00226{word-spacing:-13.831974pt;}
.ws13_c00226{word-spacing:-13.124065pt;}
.ws12_c00226{word-spacing:-11.051844pt;}
.ws1_c00226{word-spacing:-8.878599pt;}
.ws3_c00226{word-spacing:-8.877777pt;}
.ws5_c00226{word-spacing:-8.235749pt;}
.wsa_c00226{word-spacing:-6.698795pt;}
.ws4_c00226{word-spacing:-4.835182pt;}
.ws19_c00226{word-spacing:0.000000pt;}
.ws16_c00226{word-spacing:0.039110pt;}
.ws14_c00226{word-spacing:0.156442pt;}
.ws18_c00226{word-spacing:0.189730pt;}
.ws17_c00226{word-spacing:0.195063pt;}
.ws0_c00226{word-spacing:38.256533pt;}
._b_c00226{margin-left:-925.095650pt;}
._7_c00226{margin-left:-3.549978pt;}
._0_c00226{margin-left:-1.377235pt;}
._a_c00226{width:0.893988pt;}
._2_c00226{width:2.564302pt;}
._3_c00226{width:16.221764pt;}
._9_c00226{width:17.736720pt;}
._5_c00226{width:19.340727pt;}
._4_c00226{width:20.346756pt;}
._6_c00226{width:26.497290pt;}
._8_c00226{width:28.426619pt;}
._1_c00226{width:34.675107pt;}
.fs4_c00226{font-size:27.569600pt;}
.fs3_c00226{font-size:37.193600pt;}
.fs2_c00226{font-size:39.110400pt;}
.fs1_c00226{font-size:53.133867pt;}
.fs0_c00226{font-size:76.513067pt;}
.y0_c00226{bottom:0.000000pt;}
.y1f_c00226{bottom:39.333333pt;}
.y1e_c00226{bottom:87.546667pt;}
.y1d_c00226{bottom:116.769333pt;}
.y1c_c00226{bottom:145.993333pt;}
.y1b_c00226{bottom:160.605333pt;}
.y1a_c00226{bottom:175.217333pt;}
.y19_c00226{bottom:189.829333pt;}
.y18_c00226{bottom:204.109333pt;}
.y17_c00226{bottom:218.721333pt;}
.y16_c00226{bottom:233.332000pt;}
.y15_c00226{bottom:262.556000pt;}
.y14_c00226{bottom:277.168000pt;}
.y13_c00226{bottom:291.780000pt;}
.y12_c00226{bottom:306.392000pt;}
.y11_c00226{bottom:321.004000pt;}
.y10_c00226{bottom:335.616000pt;}
.yf_c00226{bottom:349.896000pt;}
.ye_c00226{bottom:392.673333pt;}
.yd_c00226{bottom:408.613333pt;}
.yc_c00226{bottom:424.553333pt;}
.yb_c00226{bottom:440.493333pt;}
.ya_c00226{bottom:456.433333pt;}
.y9_c00226{bottom:472.373333pt;}
.y8_c00226{bottom:488.313333pt;}
.y7_c00226{bottom:512.212000pt;}
.y6_c00226{bottom:528.152000pt;}
.y5_c00226{bottom:552.050667pt;}
.y4_c00226{bottom:567.990667pt;}
.y3_c00226{bottom:591.889333pt;}
.y2_c00226{bottom:615.786667pt;}
.y1_c00226{bottom:653.350667pt;}
.h8_c00226{height:31.280681pt;}
.h9_c00226{height:32.006363pt;}
.h3_c00226{height:36.010648pt;}
.h5_c00226{height:46.518078pt;}
.h7_c00226{height:46.523411pt;}
.h2_c00226{height:51.855535pt;}
.h4_c00226{height:52.578561pt;}
.h6_c00226{height:52.583894pt;}
.h0_c00226{height:1122.520000pt;}
.h1_c00226{height:1122.666667pt;}
.w0_c00226{width:793.706667pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:113.385333pt;}
.x2_c00226{left:121.886667pt;}
.x3_c00226{left:145.522667pt;}
.x4_c00226{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a35cd0f9ca2db918cd673090.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.014648;font-style:normal;font-weight:normal;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_bf0ff148e57f069e4a85ed68.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls3_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:0.087998px;}
.ls2_c00227{letter-spacing:0.098482px;}
.ls1_c00227{letter-spacing:0.104482px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-26.575517px;}
.ws4_c00227{word-spacing:-26.487518px;}
.ws2_c00227{word-spacing:0.000000px;}
.ws1_c00227{word-spacing:0.043999px;}
.ws3_c00227{word-spacing:0.056767px;}
.ws5_c00227{word-spacing:0.213446px;}
._0_c00227{width:1.041538px;}
.fc5_c00227{color:rgb(0,0,207);}
.fc4_c00227{color:rgb(207,92,0);}
.fc3_c00227{color:rgb(33,74,135);}
.fc2_c00227{color:rgb(79,153,5);}
.fc1_c00227{color:rgb(143,89,3);}
.fc0_c00227{color:rgb(0,0,0);}
.fs0_c00227{font-size:43.999200px;}
.fs1_c00227{font-size:59.775600px;}
.y0_c00227{bottom:0.000000px;}
.y2d_c00227{bottom:44.250000px;}
.y2c_c00227{bottom:354.384000px;}
.y2b_c00227{bottom:370.822500px;}
.y2a_c00227{bottom:387.259500px;}
.y29_c00227{bottom:403.698000px;}
.y28_c00227{bottom:420.136500px;}
.y27_c00227{bottom:436.575000px;}
.y26_c00227{bottom:453.013500px;}
.y25_c00227{bottom:469.452000px;}
.y24_c00227{bottom:485.890500px;}
.y23_c00227{bottom:502.329000px;}
.y22_c00227{bottom:518.767500px;}
.y21_c00227{bottom:551.643000px;}
.y20_c00227{bottom:568.081500px;}
.y1f_c00227{bottom:584.520000px;}
.y1e_c00227{bottom:617.397000px;}
.y1d_c00227{bottom:650.274000px;}
.y1c_c00227{bottom:666.712500px;}
.y1b_c00227{bottom:683.151000px;}
.y1a_c00227{bottom:699.589500px;}
.y19_c00227{bottom:716.028000px;}
.y18_c00227{bottom:732.465000px;}
.y17_c00227{bottom:748.903500px;}
.y16_c00227{bottom:765.342000px;}
.y15_c00227{bottom:781.780500px;}
.y14_c00227{bottom:798.219000px;}
.y13_c00227{bottom:814.657500px;}
.y12_c00227{bottom:847.534500px;}
.y11_c00227{bottom:863.973000px;}
.y10_c00227{bottom:880.411500px;}
.yf_c00227{bottom:896.848500px;}
.ye_c00227{bottom:913.287000px;}
.yd_c00227{bottom:929.725500px;}
.yc_c00227{bottom:946.164000px;}
.yb_c00227{bottom:962.602500px;}
.ya_c00227{bottom:979.041000px;}
.y9_c00227{bottom:995.479500px;}
.y8_c00227{bottom:1011.918000px;}
.y7_c00227{bottom:1028.356500px;}
.y6_c00227{bottom:1044.795000px;}
.y5_c00227{bottom:1077.670500px;}
.y4_c00227{bottom:1094.109000px;}
.y3_c00227{bottom:1126.986000px;}
.y2_c00227{bottom:1143.424500px;}
.y1_c00227{bottom:1159.863000px;}
.h3_c00227{height:35.190766px;}
.h2_c00227{height:36.007158px;}
.h4_c00227{height:52.332837px;}
.h0_c00227{height:1262.835000px;}
.h1_c00227{height:1263.000000px;}
.w0_c00227{width:892.920000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:137.122500px;}
.x4_c00227{left:177.007500px;}
.x2_c00227{left:183.654000px;}
.x3_c00227{left:196.948500px;}
.x5_c00227{left:435.249000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls3_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:0.078221pt;}
.ls2_c00227{letter-spacing:0.087539pt;}
.ls1_c00227{letter-spacing:0.092873pt;}
.ws0_c00227{word-spacing:-23.622682pt;}
.ws4_c00227{word-spacing:-23.544461pt;}
.ws2_c00227{word-spacing:0.000000pt;}
.ws1_c00227{word-spacing:0.039110pt;}
.ws3_c00227{word-spacing:0.050460pt;}
.ws5_c00227{word-spacing:0.189730pt;}
._0_c00227{width:0.925811pt;}
.fs0_c00227{font-size:39.110400pt;}
.fs1_c00227{font-size:53.133867pt;}
.y0_c00227{bottom:0.000000pt;}
.y2d_c00227{bottom:39.333333pt;}
.y2c_c00227{bottom:315.008000pt;}
.y2b_c00227{bottom:329.620000pt;}
.y2a_c00227{bottom:344.230667pt;}
.y29_c00227{bottom:358.842667pt;}
.y28_c00227{bottom:373.454667pt;}
.y27_c00227{bottom:388.066667pt;}
.y26_c00227{bottom:402.678667pt;}
.y25_c00227{bottom:417.290667pt;}
.y24_c00227{bottom:431.902667pt;}
.y23_c00227{bottom:446.514667pt;}
.y22_c00227{bottom:461.126667pt;}
.y21_c00227{bottom:490.349333pt;}
.y20_c00227{bottom:504.961333pt;}
.y1f_c00227{bottom:519.573333pt;}
.y1e_c00227{bottom:548.797333pt;}
.y1d_c00227{bottom:578.021333pt;}
.y1c_c00227{bottom:592.633333pt;}
.y1b_c00227{bottom:607.245333pt;}
.y1a_c00227{bottom:621.857333pt;}
.y19_c00227{bottom:636.469333pt;}
.y18_c00227{bottom:651.080000pt;}
.y17_c00227{bottom:665.692000pt;}
.y16_c00227{bottom:680.304000pt;}
.y15_c00227{bottom:694.916000pt;}
.y14_c00227{bottom:709.528000pt;}
.y13_c00227{bottom:724.140000pt;}
.y12_c00227{bottom:753.364000pt;}
.y11_c00227{bottom:767.976000pt;}
.y10_c00227{bottom:782.588000pt;}
.yf_c00227{bottom:797.198667pt;}
.ye_c00227{bottom:811.810667pt;}
.yd_c00227{bottom:826.422667pt;}
.yc_c00227{bottom:841.034667pt;}
.yb_c00227{bottom:855.646667pt;}
.ya_c00227{bottom:870.258667pt;}
.y9_c00227{bottom:884.870667pt;}
.y8_c00227{bottom:899.482667pt;}
.y7_c00227{bottom:914.094667pt;}
.y6_c00227{bottom:928.706667pt;}
.y5_c00227{bottom:957.929333pt;}
.y4_c00227{bottom:972.541333pt;}
.y3_c00227{bottom:1001.765333pt;}
.y2_c00227{bottom:1016.377333pt;}
.y1_c00227{bottom:1030.989333pt;}
.h3_c00227{height:31.280681pt;}
.h2_c00227{height:32.006363pt;}
.h4_c00227{height:46.518078pt;}
.h0_c00227{height:1122.520000pt;}
.h1_c00227{height:1122.666667pt;}
.w0_c00227{width:793.706667pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:121.886667pt;}
.x4_c00227{left:157.340000pt;}
.x2_c00227{left:163.248000pt;}
.x3_c00227{left:175.065333pt;}
.x5_c00227{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6be7a8799e5e7c0c1d460d2.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:0.893555;font-style:normal;font-weight:normal;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_37775d25348dd43543bdc385.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00228;src:url('chunks/assets/font_bea47c7d9904c20f9d1bce03.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:1.000000;font-style: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;}
.v1_c00228{vertical-align:22.518000px;}
.ls3_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.087998px;}
.ls2_c00228{letter-spacing:0.098482px;}
.ls1_c00228{letter-spacing:0.104482px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00228{word-spacing:-33.713438px;}
.ws2_c00228{word-spacing:-26.575517px;}
.ws18_c00228{word-spacing:-26.487518px;}
.ws8_c00228{word-spacing:-23.599339px;}
.wsb_c00228{word-spacing:-21.578992px;}
.ws12_c00228{word-spacing:-19.427070px;}
.ws9_c00228{word-spacing:-18.769538px;}
.ws5_c00228{word-spacing:-18.709763px;}
.ws11_c00228{word-spacing:-18.112007px;}
.wsa_c00228{word-spacing:-17.813129px;}
.wse_c00228{word-spacing:-17.589629px;}
.wsf_c00228{word-spacing:-17.574026px;}
.ws10_c00228{word-spacing:-17.514251px;}
.ws14_c00228{word-spacing:-15.601432px;}
.ws13_c00228{word-spacing:-15.560971px;}
.ws4_c00228{word-spacing:-14.884124px;}
.ws16_c00228{word-spacing:-14.764573px;}
.ws15_c00228{word-spacing:-12.433325px;}
.ws1_c00228{word-spacing:-9.988424px;}
.ws3_c00228{word-spacing:-9.987499px;}
.wsd_c00228{word-spacing:-7.536144px;}
.wsc_c00228{word-spacing:-5.649230px;}
.ws6_c00228{word-spacing:-5.577230px;}
.ws1c_c00228{word-spacing:0.000000px;}
.ws19_c00228{word-spacing:0.043999px;}
.ws17_c00228{word-spacing:0.175997px;}
.ws1b_c00228{word-spacing:0.213446px;}
.ws1a_c00228{word-spacing:0.219446px;}
.ws0_c00228{word-spacing:43.038600px;}
._b_c00228{margin-left:-1040.732606px;}
._8_c00228{margin-left:-4.124516px;}
._0_c00228{margin-left:-1.549390px;}
._a_c00228{width:1.005737px;}
._2_c00228{width:2.795468px;}
._3_c00228{width:18.569729px;}
._1_c00228{width:20.092040px;}
._5_c00228{width:21.758318px;}
._4_c00228{width:22.890101px;}
._6_c00228{width:29.809451px;}
._9_c00228{width:31.979946px;}
._7_c00228{width:39.140287px;}
.fc6_c00228{color:rgb(0,0,207);}
.fc5_c00228{color:rgb(79,153,5);}
.fc3_c00228{color:rgb(33,74,135);}
.fc2_c00228{color:rgb(143,89,3);}
.fc4_c00228{color:rgb(207,92,0);}
.fc1_c00228{color:rgb(6,69,173);}
.fc0_c00228{color:rgb(0,0,0);}
.fs4_c00228{font-size:31.015800px;}
.fs3_c00228{font-size:41.842800px;}
.fs2_c00228{font-size:43.999200px;}
.fs1_c00228{font-size:59.775600px;}
.fs0_c00228{font-size:86.077200px;}
.y0_c00228{bottom:0.000000px;}
.y1f_c00228{bottom:44.250000px;}
.y1e_c00228{bottom:98.490000px;}
.y1d_c00228{bottom:131.365500px;}
.y1c_c00228{bottom:164.242500px;}
.y1b_c00228{bottom:180.681000px;}
.y1a_c00228{bottom:197.119500px;}
.y19_c00228{bottom:213.558000px;}
.y18_c00228{bottom:229.623000px;}
.y17_c00228{bottom:246.061500px;}
.y16_c00228{bottom:262.498500px;}
.y15_c00228{bottom:295.375500px;}
.y14_c00228{bottom:311.814000px;}
.y13_c00228{bottom:328.252500px;}
.y12_c00228{bottom:344.691000px;}
.y11_c00228{bottom:361.129500px;}
.y10_c00228{bottom:377.568000px;}
.yf_c00228{bottom:393.633000px;}
.ye_c00228{bottom:441.757500px;}
.yd_c00228{bottom:459.690000px;}
.yc_c00228{bottom:477.622500px;}
.yb_c00228{bottom:495.555000px;}
.ya_c00228{bottom:513.487500px;}
.y9_c00228{bottom:531.420000px;}
.y8_c00228{bottom:549.352500px;}
.y7_c00228{bottom:576.238500px;}
.y6_c00228{bottom:594.171000px;}
.y5_c00228{bottom:621.057000px;}
.y4_c00228{bottom:638.989500px;}
.y3_c00228{bottom:665.875500px;}
.y2_c00228{bottom:692.760000px;}
.y1_c00228{bottom:735.019500px;}
.h7_c00228{height:35.190766px;}
.h8_c00228{height:36.007158px;}
.h3_c00228{height:40.511979px;}
.h5_c00228{height:52.332837px;}
.h6_c00228{height:52.338837px;}
.h2_c00228{height:58.337477px;}
.h4_c00228{height:59.150881px;}
.h0_c00228{height:1262.835000px;}
.h1_c00228{height:1263.000000px;}
.w0_c00228{width:892.920000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:127.558500px;}
.x2_c00228{left:137.122500px;}
.x3_c00228{left:163.713000px;}
.x4_c00228{left:435.249000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:20.016000pt;}
.ls3_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.078221pt;}
.ls2_c00228{letter-spacing:0.087539pt;}
.ls1_c00228{letter-spacing:0.092873pt;}
.ws7_c00228{word-spacing:-29.967501pt;}
.ws2_c00228{word-spacing:-23.622682pt;}
.ws18_c00228{word-spacing:-23.544461pt;}
.ws8_c00228{word-spacing:-20.977190pt;}
.wsb_c00228{word-spacing:-19.181326pt;}
.ws12_c00228{word-spacing:-17.268507pt;}
.ws9_c00228{word-spacing:-16.684034pt;}
.ws5_c00228{word-spacing:-16.630900pt;}
.ws11_c00228{word-spacing:-16.099562pt;}
.wsa_c00228{word-spacing:-15.833892pt;}
.wse_c00228{word-spacing:-15.635226pt;}
.wsf_c00228{word-spacing:-15.621357pt;}
.ws10_c00228{word-spacing:-15.568223pt;}
.ws14_c00228{word-spacing:-13.867939pt;}
.ws13_c00228{word-spacing:-13.831974pt;}
.ws4_c00228{word-spacing:-13.230333pt;}
.ws16_c00228{word-spacing:-13.124065pt;}
.ws15_c00228{word-spacing:-11.051844pt;}
.ws1_c00228{word-spacing:-8.878599pt;}
.ws3_c00228{word-spacing:-8.877777pt;}
.wsd_c00228{word-spacing:-6.698795pt;}
.wsc_c00228{word-spacing:-5.021538pt;}
.ws6_c00228{word-spacing:-4.957538pt;}
.ws1c_c00228{word-spacing:0.000000pt;}
.ws19_c00228{word-spacing:0.039110pt;}
.ws17_c00228{word-spacing:0.156442pt;}
.ws1b_c00228{word-spacing:0.189730pt;}
.ws1a_c00228{word-spacing:0.195063pt;}
.ws0_c00228{word-spacing:38.256533pt;}
._b_c00228{margin-left:-925.095650pt;}
._8_c00228{margin-left:-3.666237pt;}
._0_c00228{margin-left:-1.377235pt;}
._a_c00228{width:0.893988pt;}
._2_c00228{width:2.484861pt;}
._3_c00228{width:16.506426pt;}
._1_c00228{width:17.859591pt;}
._5_c00228{width:19.340727pt;}
._4_c00228{width:20.346756pt;}
._6_c00228{width:26.497290pt;}
._9_c00228{width:28.426619pt;}
._7_c00228{width:34.791366pt;}
.fs4_c00228{font-size:27.569600pt;}
.fs3_c00228{font-size:37.193600pt;}
.fs2_c00228{font-size:39.110400pt;}
.fs1_c00228{font-size:53.133867pt;}
.fs0_c00228{font-size:76.513067pt;}
.y0_c00228{bottom:0.000000pt;}
.y1f_c00228{bottom:39.333333pt;}
.y1e_c00228{bottom:87.546667pt;}
.y1d_c00228{bottom:116.769333pt;}
.y1c_c00228{bottom:145.993333pt;}
.y1b_c00228{bottom:160.605333pt;}
.y1a_c00228{bottom:175.217333pt;}
.y19_c00228{bottom:189.829333pt;}
.y18_c00228{bottom:204.109333pt;}
.y17_c00228{bottom:218.721333pt;}
.y16_c00228{bottom:233.332000pt;}
.y15_c00228{bottom:262.556000pt;}
.y14_c00228{bottom:277.168000pt;}
.y13_c00228{bottom:291.780000pt;}
.y12_c00228{bottom:306.392000pt;}
.y11_c00228{bottom:321.004000pt;}
.y10_c00228{bottom:335.616000pt;}
.yf_c00228{bottom:349.896000pt;}
.ye_c00228{bottom:392.673333pt;}
.yd_c00228{bottom:408.613333pt;}
.yc_c00228{bottom:424.553333pt;}
.yb_c00228{bottom:440.493333pt;}
.ya_c00228{bottom:456.433333pt;}
.y9_c00228{bottom:472.373333pt;}
.y8_c00228{bottom:488.313333pt;}
.y7_c00228{bottom:512.212000pt;}
.y6_c00228{bottom:528.152000pt;}
.y5_c00228{bottom:552.050667pt;}
.y4_c00228{bottom:567.990667pt;}
.y3_c00228{bottom:591.889333pt;}
.y2_c00228{bottom:615.786667pt;}
.y1_c00228{bottom:653.350667pt;}
.h7_c00228{height:31.280681pt;}
.h8_c00228{height:32.006363pt;}
.h3_c00228{height:36.010648pt;}
.h5_c00228{height:46.518078pt;}
.h6_c00228{height:46.523411pt;}
.h2_c00228{height:51.855535pt;}
.h4_c00228{height:52.578561pt;}
.h0_c00228{height:1122.520000pt;}
.h1_c00228{height:1122.666667pt;}
.w0_c00228{width:793.706667pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:113.385333pt;}
.x2_c00228{left:121.886667pt;}
.x3_c00228{left:145.522667pt;}
.x4_c00228{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef45350dfdc926287e7287e3.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.014648;font-style:normal;font-weight:normal;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_36c3c1715384afbf03020c52.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls3_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.087998px;}
.ls2_c00229{letter-spacing:0.098482px;}
.ls1_c00229{letter-spacing:0.104482px;}
.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;}
}
.ws0_c00229{word-spacing:-26.575517px;}
.ws4_c00229{word-spacing:-26.487518px;}
.ws2_c00229{word-spacing:0.000000px;}
.ws1_c00229{word-spacing:0.043999px;}
.ws3_c00229{word-spacing:0.056767px;}
.ws5_c00229{word-spacing:0.213446px;}
._0_c00229{width:1.041538px;}
.fc5_c00229{color:rgb(0,0,207);}
.fc4_c00229{color:rgb(207,92,0);}
.fc3_c00229{color:rgb(33,74,135);}
.fc2_c00229{color:rgb(79,153,5);}
.fc1_c00229{color:rgb(143,89,3);}
.fc0_c00229{color:rgb(0,0,0);}
.fs0_c00229{font-size:43.999200px;}
.fs1_c00229{font-size:59.775600px;}
.y0_c00229{bottom:0.000000px;}
.y2d_c00229{bottom:44.250000px;}
.y2c_c00229{bottom:354.384000px;}
.y2b_c00229{bottom:370.822500px;}
.y2a_c00229{bottom:387.259500px;}
.y29_c00229{bottom:403.698000px;}
.y28_c00229{bottom:420.136500px;}
.y27_c00229{bottom:436.575000px;}
.y26_c00229{bottom:453.013500px;}
.y25_c00229{bottom:469.452000px;}
.y24_c00229{bottom:485.890500px;}
.y23_c00229{bottom:502.329000px;}
.y22_c00229{bottom:518.767500px;}
.y21_c00229{bottom:551.643000px;}
.y20_c00229{bottom:568.081500px;}
.y1f_c00229{bottom:584.520000px;}
.y1e_c00229{bottom:617.397000px;}
.y1d_c00229{bottom:650.274000px;}
.y1c_c00229{bottom:666.712500px;}
.y1b_c00229{bottom:683.151000px;}
.y1a_c00229{bottom:699.589500px;}
.y19_c00229{bottom:716.028000px;}
.y18_c00229{bottom:732.465000px;}
.y17_c00229{bottom:748.903500px;}
.y16_c00229{bottom:765.342000px;}
.y15_c00229{bottom:781.780500px;}
.y14_c00229{bottom:798.219000px;}
.y13_c00229{bottom:814.657500px;}
.y12_c00229{bottom:847.534500px;}
.y11_c00229{bottom:863.973000px;}
.y10_c00229{bottom:880.411500px;}
.yf_c00229{bottom:896.848500px;}
.ye_c00229{bottom:913.287000px;}
.yd_c00229{bottom:929.725500px;}
.yc_c00229{bottom:946.164000px;}
.yb_c00229{bottom:962.602500px;}
.ya_c00229{bottom:979.041000px;}
.y9_c00229{bottom:995.479500px;}
.y8_c00229{bottom:1011.918000px;}
.y7_c00229{bottom:1028.356500px;}
.y6_c00229{bottom:1044.795000px;}
.y5_c00229{bottom:1077.670500px;}
.y4_c00229{bottom:1094.109000px;}
.y3_c00229{bottom:1126.986000px;}
.y2_c00229{bottom:1143.424500px;}
.y1_c00229{bottom:1159.863000px;}
.h3_c00229{height:35.190766px;}
.h2_c00229{height:36.007158px;}
.h4_c00229{height:52.332837px;}
.h0_c00229{height:1262.835000px;}
.h1_c00229{height:1263.000000px;}
.w0_c00229{width:892.920000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:137.122500px;}
.x4_c00229{left:177.007500px;}
.x2_c00229{left:183.654000px;}
.x3_c00229{left:196.948500px;}
.x5_c00229{left:435.249000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls3_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.078221pt;}
.ls2_c00229{letter-spacing:0.087539pt;}
.ls1_c00229{letter-spacing:0.092873pt;}
.ws0_c00229{word-spacing:-23.622682pt;}
.ws4_c00229{word-spacing:-23.544461pt;}
.ws2_c00229{word-spacing:0.000000pt;}
.ws1_c00229{word-spacing:0.039110pt;}
.ws3_c00229{word-spacing:0.050460pt;}
.ws5_c00229{word-spacing:0.189730pt;}
._0_c00229{width:0.925811pt;}
.fs0_c00229{font-size:39.110400pt;}
.fs1_c00229{font-size:53.133867pt;}
.y0_c00229{bottom:0.000000pt;}
.y2d_c00229{bottom:39.333333pt;}
.y2c_c00229{bottom:315.008000pt;}
.y2b_c00229{bottom:329.620000pt;}
.y2a_c00229{bottom:344.230667pt;}
.y29_c00229{bottom:358.842667pt;}
.y28_c00229{bottom:373.454667pt;}
.y27_c00229{bottom:388.066667pt;}
.y26_c00229{bottom:402.678667pt;}
.y25_c00229{bottom:417.290667pt;}
.y24_c00229{bottom:431.902667pt;}
.y23_c00229{bottom:446.514667pt;}
.y22_c00229{bottom:461.126667pt;}
.y21_c00229{bottom:490.349333pt;}
.y20_c00229{bottom:504.961333pt;}
.y1f_c00229{bottom:519.573333pt;}
.y1e_c00229{bottom:548.797333pt;}
.y1d_c00229{bottom:578.021333pt;}
.y1c_c00229{bottom:592.633333pt;}
.y1b_c00229{bottom:607.245333pt;}
.y1a_c00229{bottom:621.857333pt;}
.y19_c00229{bottom:636.469333pt;}
.y18_c00229{bottom:651.080000pt;}
.y17_c00229{bottom:665.692000pt;}
.y16_c00229{bottom:680.304000pt;}
.y15_c00229{bottom:694.916000pt;}
.y14_c00229{bottom:709.528000pt;}
.y13_c00229{bottom:724.140000pt;}
.y12_c00229{bottom:753.364000pt;}
.y11_c00229{bottom:767.976000pt;}
.y10_c00229{bottom:782.588000pt;}
.yf_c00229{bottom:797.198667pt;}
.ye_c00229{bottom:811.810667pt;}
.yd_c00229{bottom:826.422667pt;}
.yc_c00229{bottom:841.034667pt;}
.yb_c00229{bottom:855.646667pt;}
.ya_c00229{bottom:870.258667pt;}
.y9_c00229{bottom:884.870667pt;}
.y8_c00229{bottom:899.482667pt;}
.y7_c00229{bottom:914.094667pt;}
.y6_c00229{bottom:928.706667pt;}
.y5_c00229{bottom:957.929333pt;}
.y4_c00229{bottom:972.541333pt;}
.y3_c00229{bottom:1001.765333pt;}
.y2_c00229{bottom:1016.377333pt;}
.y1_c00229{bottom:1030.989333pt;}
.h3_c00229{height:31.280681pt;}
.h2_c00229{height:32.006363pt;}
.h4_c00229{height:46.518078pt;}
.h0_c00229{height:1122.520000pt;}
.h1_c00229{height:1122.666667pt;}
.w0_c00229{width:793.706667pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:121.886667pt;}
.x4_c00229{left:157.340000pt;}
.x2_c00229{left:163.248000pt;}
.x3_c00229{left:175.065333pt;}
.x5_c00229{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fef06ef19a99f12bdbf5d35.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:0.893555;font-style:normal;font-weight:normal;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_897a473515d1804633f80b74.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00230;src:url('chunks/assets/font_9098fc4d66411319382905ec.woff2')format("woff");}.ff6_c00230{font-family:ff6_c00230;line-height:1.000000;font-style: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;}
.v1_c00230{vertical-align:22.518000px;}
.ls3_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:0.087998px;}
.ls2_c00230{letter-spacing:0.098482px;}
.ls1_c00230{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00230{word-spacing:-33.713438px;}
.ws2_c00230{word-spacing:-26.575517px;}
.ws17_c00230{word-spacing:-26.487518px;}
.ws8_c00230{word-spacing:-23.599339px;}
.wsb_c00230{word-spacing:-21.937645px;}
.ws11_c00230{word-spacing:-19.427070px;}
.ws9_c00230{word-spacing:-18.769538px;}
.ws5_c00230{word-spacing:-18.709763px;}
.wsa_c00230{word-spacing:-18.112007px;}
.wse_c00230{word-spacing:-17.589629px;}
.wsf_c00230{word-spacing:-17.574026px;}
.ws10_c00230{word-spacing:-17.514251px;}
.ws13_c00230{word-spacing:-15.601432px;}
.ws12_c00230{word-spacing:-15.560971px;}
.ws4_c00230{word-spacing:-14.884124px;}
.ws15_c00230{word-spacing:-14.764573px;}
.ws14_c00230{word-spacing:-12.433325px;}
.ws1_c00230{word-spacing:-9.988424px;}
.ws3_c00230{word-spacing:-9.987499px;}
.wsd_c00230{word-spacing:-7.536144px;}
.wsc_c00230{word-spacing:-5.649230px;}
.ws6_c00230{word-spacing:-5.577230px;}
.ws1b_c00230{word-spacing:0.000000px;}
.ws18_c00230{word-spacing:0.043999px;}
.ws16_c00230{word-spacing:0.175997px;}
.ws1a_c00230{word-spacing:0.213446px;}
.ws19_c00230{word-spacing:0.219446px;}
.ws0_c00230{word-spacing:43.038600px;}
._b_c00230{margin-left:-1040.732606px;}
._8_c00230{margin-left:-4.124516px;}
._0_c00230{margin-left:-1.549390px;}
._a_c00230{width:1.005737px;}
._2_c00230{width:2.795468px;}
._3_c00230{width:18.340607px;}
._1_c00230{width:20.092040px;}
._5_c00230{width:21.758318px;}
._4_c00230{width:22.890101px;}
._6_c00230{width:29.809451px;}
._9_c00230{width:31.979946px;}
._7_c00230{width:39.140287px;}
.fc6_c00230{color:rgb(0,0,207);}
.fc5_c00230{color:rgb(79,153,5);}
.fc3_c00230{color:rgb(33,74,135);}
.fc2_c00230{color:rgb(143,89,3);}
.fc4_c00230{color:rgb(207,92,0);}
.fc1_c00230{color:rgb(6,69,173);}
.fc0_c00230{color:rgb(0,0,0);}
.fs4_c00230{font-size:31.015800px;}
.fs3_c00230{font-size:41.842800px;}
.fs2_c00230{font-size:43.999200px;}
.fs1_c00230{font-size:59.775600px;}
.fs0_c00230{font-size:86.077200px;}
.y0_c00230{bottom:0.000000px;}
.y1f_c00230{bottom:44.250000px;}
.y1e_c00230{bottom:98.490000px;}
.y1d_c00230{bottom:131.365500px;}
.y1c_c00230{bottom:164.242500px;}
.y1b_c00230{bottom:180.681000px;}
.y1a_c00230{bottom:197.119500px;}
.y19_c00230{bottom:213.558000px;}
.y18_c00230{bottom:229.623000px;}
.y17_c00230{bottom:246.061500px;}
.y16_c00230{bottom:262.498500px;}
.y15_c00230{bottom:295.375500px;}
.y14_c00230{bottom:311.814000px;}
.y13_c00230{bottom:328.252500px;}
.y12_c00230{bottom:344.691000px;}
.y11_c00230{bottom:361.129500px;}
.y10_c00230{bottom:377.568000px;}
.yf_c00230{bottom:393.633000px;}
.ye_c00230{bottom:441.757500px;}
.yd_c00230{bottom:459.690000px;}
.yc_c00230{bottom:477.622500px;}
.yb_c00230{bottom:495.555000px;}
.ya_c00230{bottom:513.487500px;}
.y9_c00230{bottom:531.420000px;}
.y8_c00230{bottom:549.352500px;}
.y7_c00230{bottom:576.238500px;}
.y6_c00230{bottom:594.171000px;}
.y5_c00230{bottom:621.057000px;}
.y4_c00230{bottom:638.989500px;}
.y3_c00230{bottom:665.875500px;}
.y2_c00230{bottom:692.760000px;}
.y1_c00230{bottom:735.019500px;}
.h7_c00230{height:35.190766px;}
.h8_c00230{height:36.007158px;}
.h3_c00230{height:40.511979px;}
.h5_c00230{height:52.332837px;}
.h6_c00230{height:52.338837px;}
.h2_c00230{height:58.337477px;}
.h4_c00230{height:59.150881px;}
.h0_c00230{height:1262.835000px;}
.h1_c00230{height:1263.000000px;}
.w0_c00230{width:892.920000px;}
.w1_c00230{width:893.250000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:127.558500px;}
.x2_c00230{left:137.122500px;}
.x3_c00230{left:163.713000px;}
.x4_c00230{left:435.249000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:20.016000pt;}
.ls3_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:0.078221pt;}
.ls2_c00230{letter-spacing:0.087539pt;}
.ls1_c00230{letter-spacing:0.092873pt;}
.ws7_c00230{word-spacing:-29.967501pt;}
.ws2_c00230{word-spacing:-23.622682pt;}
.ws17_c00230{word-spacing:-23.544461pt;}
.ws8_c00230{word-spacing:-20.977190pt;}
.wsb_c00230{word-spacing:-19.500129pt;}
.ws11_c00230{word-spacing:-17.268507pt;}
.ws9_c00230{word-spacing:-16.684034pt;}
.ws5_c00230{word-spacing:-16.630900pt;}
.wsa_c00230{word-spacing:-16.099562pt;}
.wse_c00230{word-spacing:-15.635226pt;}
.wsf_c00230{word-spacing:-15.621357pt;}
.ws10_c00230{word-spacing:-15.568223pt;}
.ws13_c00230{word-spacing:-13.867939pt;}
.ws12_c00230{word-spacing:-13.831974pt;}
.ws4_c00230{word-spacing:-13.230333pt;}
.ws15_c00230{word-spacing:-13.124065pt;}
.ws14_c00230{word-spacing:-11.051844pt;}
.ws1_c00230{word-spacing:-8.878599pt;}
.ws3_c00230{word-spacing:-8.877777pt;}
.wsd_c00230{word-spacing:-6.698795pt;}
.wsc_c00230{word-spacing:-5.021538pt;}
.ws6_c00230{word-spacing:-4.957538pt;}
.ws1b_c00230{word-spacing:0.000000pt;}
.ws18_c00230{word-spacing:0.039110pt;}
.ws16_c00230{word-spacing:0.156442pt;}
.ws1a_c00230{word-spacing:0.189730pt;}
.ws19_c00230{word-spacing:0.195063pt;}
.ws0_c00230{word-spacing:38.256533pt;}
._b_c00230{margin-left:-925.095650pt;}
._8_c00230{margin-left:-3.666237pt;}
._0_c00230{margin-left:-1.377235pt;}
._a_c00230{width:0.893988pt;}
._2_c00230{width:2.484861pt;}
._3_c00230{width:16.302762pt;}
._1_c00230{width:17.859591pt;}
._5_c00230{width:19.340727pt;}
._4_c00230{width:20.346756pt;}
._6_c00230{width:26.497290pt;}
._9_c00230{width:28.426619pt;}
._7_c00230{width:34.791366pt;}
.fs4_c00230{font-size:27.569600pt;}
.fs3_c00230{font-size:37.193600pt;}
.fs2_c00230{font-size:39.110400pt;}
.fs1_c00230{font-size:53.133867pt;}
.fs0_c00230{font-size:76.513067pt;}
.y0_c00230{bottom:0.000000pt;}
.y1f_c00230{bottom:39.333333pt;}
.y1e_c00230{bottom:87.546667pt;}
.y1d_c00230{bottom:116.769333pt;}
.y1c_c00230{bottom:145.993333pt;}
.y1b_c00230{bottom:160.605333pt;}
.y1a_c00230{bottom:175.217333pt;}
.y19_c00230{bottom:189.829333pt;}
.y18_c00230{bottom:204.109333pt;}
.y17_c00230{bottom:218.721333pt;}
.y16_c00230{bottom:233.332000pt;}
.y15_c00230{bottom:262.556000pt;}
.y14_c00230{bottom:277.168000pt;}
.y13_c00230{bottom:291.780000pt;}
.y12_c00230{bottom:306.392000pt;}
.y11_c00230{bottom:321.004000pt;}
.y10_c00230{bottom:335.616000pt;}
.yf_c00230{bottom:349.896000pt;}
.ye_c00230{bottom:392.673333pt;}
.yd_c00230{bottom:408.613333pt;}
.yc_c00230{bottom:424.553333pt;}
.yb_c00230{bottom:440.493333pt;}
.ya_c00230{bottom:456.433333pt;}
.y9_c00230{bottom:472.373333pt;}
.y8_c00230{bottom:488.313333pt;}
.y7_c00230{bottom:512.212000pt;}
.y6_c00230{bottom:528.152000pt;}
.y5_c00230{bottom:552.050667pt;}
.y4_c00230{bottom:567.990667pt;}
.y3_c00230{bottom:591.889333pt;}
.y2_c00230{bottom:615.786667pt;}
.y1_c00230{bottom:653.350667pt;}
.h7_c00230{height:31.280681pt;}
.h8_c00230{height:32.006363pt;}
.h3_c00230{height:36.010648pt;}
.h5_c00230{height:46.518078pt;}
.h6_c00230{height:46.523411pt;}
.h2_c00230{height:51.855535pt;}
.h4_c00230{height:52.578561pt;}
.h0_c00230{height:1122.520000pt;}
.h1_c00230{height:1122.666667pt;}
.w0_c00230{width:793.706667pt;}
.w1_c00230{width:794.000000pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:113.385333pt;}
.x2_c00230{left:121.886667pt;}
.x3_c00230{left:145.522667pt;}
.x4_c00230{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e31d521991665b78007a801.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.014648;font-style:normal;font-weight:normal;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_1a87b7675d8b7e6cd7a8d706.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls3_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:0.087998px;}
.ls2_c00231{letter-spacing:0.098482px;}
.ls1_c00231{letter-spacing:0.104482px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-26.575517px;}
.ws4_c00231{word-spacing:-26.487518px;}
.ws2_c00231{word-spacing:0.000000px;}
.ws1_c00231{word-spacing:0.043999px;}
.ws3_c00231{word-spacing:0.056767px;}
.ws5_c00231{word-spacing:0.213446px;}
._0_c00231{width:1.041538px;}
.fc5_c00231{color:rgb(0,0,207);}
.fc4_c00231{color:rgb(207,92,0);}
.fc3_c00231{color:rgb(33,74,135);}
.fc2_c00231{color:rgb(79,153,5);}
.fc1_c00231{color:rgb(143,89,3);}
.fc0_c00231{color:rgb(0,0,0);}
.fs0_c00231{font-size:43.999200px;}
.fs1_c00231{font-size:59.775600px;}
.y0_c00231{bottom:0.000000px;}
.y2d_c00231{bottom:44.250000px;}
.y2c_c00231{bottom:354.384000px;}
.y2b_c00231{bottom:370.822500px;}
.y2a_c00231{bottom:387.259500px;}
.y29_c00231{bottom:403.698000px;}
.y28_c00231{bottom:420.136500px;}
.y27_c00231{bottom:436.575000px;}
.y26_c00231{bottom:453.013500px;}
.y25_c00231{bottom:469.452000px;}
.y24_c00231{bottom:485.890500px;}
.y23_c00231{bottom:502.329000px;}
.y22_c00231{bottom:518.767500px;}
.y21_c00231{bottom:551.643000px;}
.y20_c00231{bottom:568.081500px;}
.y1f_c00231{bottom:584.520000px;}
.y1e_c00231{bottom:617.397000px;}
.y1d_c00231{bottom:650.274000px;}
.y1c_c00231{bottom:666.712500px;}
.y1b_c00231{bottom:683.151000px;}
.y1a_c00231{bottom:699.589500px;}
.y19_c00231{bottom:716.028000px;}
.y18_c00231{bottom:732.465000px;}
.y17_c00231{bottom:748.903500px;}
.y16_c00231{bottom:765.342000px;}
.y15_c00231{bottom:781.780500px;}
.y14_c00231{bottom:798.219000px;}
.y13_c00231{bottom:814.657500px;}
.y12_c00231{bottom:847.534500px;}
.y11_c00231{bottom:863.973000px;}
.y10_c00231{bottom:880.411500px;}
.yf_c00231{bottom:896.848500px;}
.ye_c00231{bottom:913.287000px;}
.yd_c00231{bottom:929.725500px;}
.yc_c00231{bottom:946.164000px;}
.yb_c00231{bottom:962.602500px;}
.ya_c00231{bottom:979.041000px;}
.y9_c00231{bottom:995.479500px;}
.y8_c00231{bottom:1011.918000px;}
.y7_c00231{bottom:1028.356500px;}
.y6_c00231{bottom:1044.795000px;}
.y5_c00231{bottom:1077.670500px;}
.y4_c00231{bottom:1094.109000px;}
.y3_c00231{bottom:1126.986000px;}
.y2_c00231{bottom:1143.424500px;}
.y1_c00231{bottom:1159.863000px;}
.h3_c00231{height:35.190766px;}
.h2_c00231{height:36.007158px;}
.h4_c00231{height:52.332837px;}
.h0_c00231{height:1262.835000px;}
.h1_c00231{height:1263.000000px;}
.w0_c00231{width:892.920000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:137.122500px;}
.x4_c00231{left:177.007500px;}
.x2_c00231{left:183.654000px;}
.x3_c00231{left:196.948500px;}
.x5_c00231{left:435.249000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls3_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:0.078221pt;}
.ls2_c00231{letter-spacing:0.087539pt;}
.ls1_c00231{letter-spacing:0.092873pt;}
.ws0_c00231{word-spacing:-23.622682pt;}
.ws4_c00231{word-spacing:-23.544461pt;}
.ws2_c00231{word-spacing:0.000000pt;}
.ws1_c00231{word-spacing:0.039110pt;}
.ws3_c00231{word-spacing:0.050460pt;}
.ws5_c00231{word-spacing:0.189730pt;}
._0_c00231{width:0.925811pt;}
.fs0_c00231{font-size:39.110400pt;}
.fs1_c00231{font-size:53.133867pt;}
.y0_c00231{bottom:0.000000pt;}
.y2d_c00231{bottom:39.333333pt;}
.y2c_c00231{bottom:315.008000pt;}
.y2b_c00231{bottom:329.620000pt;}
.y2a_c00231{bottom:344.230667pt;}
.y29_c00231{bottom:358.842667pt;}
.y28_c00231{bottom:373.454667pt;}
.y27_c00231{bottom:388.066667pt;}
.y26_c00231{bottom:402.678667pt;}
.y25_c00231{bottom:417.290667pt;}
.y24_c00231{bottom:431.902667pt;}
.y23_c00231{bottom:446.514667pt;}
.y22_c00231{bottom:461.126667pt;}
.y21_c00231{bottom:490.349333pt;}
.y20_c00231{bottom:504.961333pt;}
.y1f_c00231{bottom:519.573333pt;}
.y1e_c00231{bottom:548.797333pt;}
.y1d_c00231{bottom:578.021333pt;}
.y1c_c00231{bottom:592.633333pt;}
.y1b_c00231{bottom:607.245333pt;}
.y1a_c00231{bottom:621.857333pt;}
.y19_c00231{bottom:636.469333pt;}
.y18_c00231{bottom:651.080000pt;}
.y17_c00231{bottom:665.692000pt;}
.y16_c00231{bottom:680.304000pt;}
.y15_c00231{bottom:694.916000pt;}
.y14_c00231{bottom:709.528000pt;}
.y13_c00231{bottom:724.140000pt;}
.y12_c00231{bottom:753.364000pt;}
.y11_c00231{bottom:767.976000pt;}
.y10_c00231{bottom:782.588000pt;}
.yf_c00231{bottom:797.198667pt;}
.ye_c00231{bottom:811.810667pt;}
.yd_c00231{bottom:826.422667pt;}
.yc_c00231{bottom:841.034667pt;}
.yb_c00231{bottom:855.646667pt;}
.ya_c00231{bottom:870.258667pt;}
.y9_c00231{bottom:884.870667pt;}
.y8_c00231{bottom:899.482667pt;}
.y7_c00231{bottom:914.094667pt;}
.y6_c00231{bottom:928.706667pt;}
.y5_c00231{bottom:957.929333pt;}
.y4_c00231{bottom:972.541333pt;}
.y3_c00231{bottom:1001.765333pt;}
.y2_c00231{bottom:1016.377333pt;}
.y1_c00231{bottom:1030.989333pt;}
.h3_c00231{height:31.280681pt;}
.h2_c00231{height:32.006363pt;}
.h4_c00231{height:46.518078pt;}
.h0_c00231{height:1122.520000pt;}
.h1_c00231{height:1122.666667pt;}
.w0_c00231{width:793.706667pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:121.886667pt;}
.x4_c00231{left:157.340000pt;}
.x2_c00231{left:163.248000pt;}
.x3_c00231{left:175.065333pt;}
.x5_c00231{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fef06ef19a99f12bdbf5d35.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:0.893555;font-style:normal;font-weight:normal;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_d1318a69efec9566f76e3468.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.083496;font-style:normal;font-weight:normal;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_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_e3040890b0701b1f3c365814.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.000000;font-style: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;}
.v1_c00232{vertical-align:22.518000px;}
.ls3_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.087998px;}
.ls2_c00232{letter-spacing:0.098482px;}
.ls1_c00232{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00232{word-spacing:-33.713438px;}
.ws2_c00232{word-spacing:-26.575517px;}
.ws18_c00232{word-spacing:-26.487518px;}
.ws8_c00232{word-spacing:-23.599339px;}
.ws12_c00232{word-spacing:-19.427070px;}
.wsb_c00232{word-spacing:-18.829314px;}
.ws9_c00232{word-spacing:-18.769538px;}
.ws5_c00232{word-spacing:-18.709763px;}
.ws11_c00232{word-spacing:-18.112007px;}
.wse_c00232{word-spacing:-17.589629px;}
.wsf_c00232{word-spacing:-17.574026px;}
.ws10_c00232{word-spacing:-17.514251px;}
.ws14_c00232{word-spacing:-15.601432px;}
.ws13_c00232{word-spacing:-15.560971px;}
.wsa_c00232{word-spacing:-15.003676px;}
.ws4_c00232{word-spacing:-14.884124px;}
.ws16_c00232{word-spacing:-14.764573px;}
.ws15_c00232{word-spacing:-12.433325px;}
.ws1_c00232{word-spacing:-9.988424px;}
.ws3_c00232{word-spacing:-9.987499px;}
.wsd_c00232{word-spacing:-7.536144px;}
.wsc_c00232{word-spacing:-5.649230px;}
.ws6_c00232{word-spacing:-5.577230px;}
.ws1c_c00232{word-spacing:0.000000px;}
.ws19_c00232{word-spacing:0.043999px;}
.ws17_c00232{word-spacing:0.175997px;}
.ws1b_c00232{word-spacing:0.213446px;}
.ws1a_c00232{word-spacing:0.219446px;}
.ws0_c00232{word-spacing:43.038600px;}
._a_c00232{margin-left:-1040.732606px;}
._7_c00232{margin-left:-4.124516px;}
._0_c00232{margin-left:-1.549390px;}
._9_c00232{width:1.005737px;}
._2_c00232{width:2.795468px;}
._1_c00232{width:20.092040px;}
._4_c00232{width:21.758318px;}
._3_c00232{width:22.890101px;}
._5_c00232{width:29.809451px;}
._8_c00232{width:31.979946px;}
._6_c00232{width:39.140287px;}
.fc6_c00232{color:rgb(0,0,207);}
.fc5_c00232{color:rgb(79,153,5);}
.fc3_c00232{color:rgb(33,74,135);}
.fc2_c00232{color:rgb(143,89,3);}
.fc4_c00232{color:rgb(207,92,0);}
.fc1_c00232{color:rgb(6,69,173);}
.fc0_c00232{color:rgb(0,0,0);}
.fs4_c00232{font-size:31.015800px;}
.fs3_c00232{font-size:41.842800px;}
.fs2_c00232{font-size:43.999200px;}
.fs1_c00232{font-size:59.775600px;}
.fs0_c00232{font-size:86.077200px;}
.y0_c00232{bottom:0.000000px;}
.y1f_c00232{bottom:44.250000px;}
.y1e_c00232{bottom:98.490000px;}
.y1d_c00232{bottom:131.365500px;}
.y1c_c00232{bottom:164.242500px;}
.y1b_c00232{bottom:180.681000px;}
.y1a_c00232{bottom:197.119500px;}
.y19_c00232{bottom:213.558000px;}
.y18_c00232{bottom:229.623000px;}
.y17_c00232{bottom:246.061500px;}
.y16_c00232{bottom:262.498500px;}
.y15_c00232{bottom:295.375500px;}
.y14_c00232{bottom:311.814000px;}
.y13_c00232{bottom:328.252500px;}
.y12_c00232{bottom:344.691000px;}
.y11_c00232{bottom:361.129500px;}
.y10_c00232{bottom:377.568000px;}
.yf_c00232{bottom:393.633000px;}
.ye_c00232{bottom:441.757500px;}
.yd_c00232{bottom:459.690000px;}
.yc_c00232{bottom:477.622500px;}
.yb_c00232{bottom:495.555000px;}
.ya_c00232{bottom:513.487500px;}
.y9_c00232{bottom:531.420000px;}
.y8_c00232{bottom:549.352500px;}
.y7_c00232{bottom:576.238500px;}
.y6_c00232{bottom:594.171000px;}
.y5_c00232{bottom:621.057000px;}
.y4_c00232{bottom:638.989500px;}
.y3_c00232{bottom:665.875500px;}
.y2_c00232{bottom:692.760000px;}
.y1_c00232{bottom:735.019500px;}
.h7_c00232{height:35.190766px;}
.h8_c00232{height:36.007158px;}
.h3_c00232{height:40.511979px;}
.h5_c00232{height:52.332837px;}
.h6_c00232{height:52.338837px;}
.h2_c00232{height:58.337477px;}
.h4_c00232{height:59.150881px;}
.h0_c00232{height:1262.835000px;}
.h1_c00232{height:1263.000000px;}
.w0_c00232{width:892.920000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:127.558500px;}
.x2_c00232{left:137.122500px;}
.x3_c00232{left:163.713000px;}
.x4_c00232{left:435.249000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:20.016000pt;}
.ls3_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.078221pt;}
.ls2_c00232{letter-spacing:0.087539pt;}
.ls1_c00232{letter-spacing:0.092873pt;}
.ws7_c00232{word-spacing:-29.967501pt;}
.ws2_c00232{word-spacing:-23.622682pt;}
.ws18_c00232{word-spacing:-23.544461pt;}
.ws8_c00232{word-spacing:-20.977190pt;}
.ws12_c00232{word-spacing:-17.268507pt;}
.wsb_c00232{word-spacing:-16.737168pt;}
.ws9_c00232{word-spacing:-16.684034pt;}
.ws5_c00232{word-spacing:-16.630900pt;}
.ws11_c00232{word-spacing:-16.099562pt;}
.wse_c00232{word-spacing:-15.635226pt;}
.wsf_c00232{word-spacing:-15.621357pt;}
.ws10_c00232{word-spacing:-15.568223pt;}
.ws14_c00232{word-spacing:-13.867939pt;}
.ws13_c00232{word-spacing:-13.831974pt;}
.wsa_c00232{word-spacing:-13.336601pt;}
.ws4_c00232{word-spacing:-13.230333pt;}
.ws16_c00232{word-spacing:-13.124065pt;}
.ws15_c00232{word-spacing:-11.051844pt;}
.ws1_c00232{word-spacing:-8.878599pt;}
.ws3_c00232{word-spacing:-8.877777pt;}
.wsd_c00232{word-spacing:-6.698795pt;}
.wsc_c00232{word-spacing:-5.021538pt;}
.ws6_c00232{word-spacing:-4.957538pt;}
.ws1c_c00232{word-spacing:0.000000pt;}
.ws19_c00232{word-spacing:0.039110pt;}
.ws17_c00232{word-spacing:0.156442pt;}
.ws1b_c00232{word-spacing:0.189730pt;}
.ws1a_c00232{word-spacing:0.195063pt;}
.ws0_c00232{word-spacing:38.256533pt;}
._a_c00232{margin-left:-925.095650pt;}
._7_c00232{margin-left:-3.666237pt;}
._0_c00232{margin-left:-1.377235pt;}
._9_c00232{width:0.893988pt;}
._2_c00232{width:2.484861pt;}
._1_c00232{width:17.859591pt;}
._4_c00232{width:19.340727pt;}
._3_c00232{width:20.346756pt;}
._5_c00232{width:26.497290pt;}
._8_c00232{width:28.426619pt;}
._6_c00232{width:34.791366pt;}
.fs4_c00232{font-size:27.569600pt;}
.fs3_c00232{font-size:37.193600pt;}
.fs2_c00232{font-size:39.110400pt;}
.fs1_c00232{font-size:53.133867pt;}
.fs0_c00232{font-size:76.513067pt;}
.y0_c00232{bottom:0.000000pt;}
.y1f_c00232{bottom:39.333333pt;}
.y1e_c00232{bottom:87.546667pt;}
.y1d_c00232{bottom:116.769333pt;}
.y1c_c00232{bottom:145.993333pt;}
.y1b_c00232{bottom:160.605333pt;}
.y1a_c00232{bottom:175.217333pt;}
.y19_c00232{bottom:189.829333pt;}
.y18_c00232{bottom:204.109333pt;}
.y17_c00232{bottom:218.721333pt;}
.y16_c00232{bottom:233.332000pt;}
.y15_c00232{bottom:262.556000pt;}
.y14_c00232{bottom:277.168000pt;}
.y13_c00232{bottom:291.780000pt;}
.y12_c00232{bottom:306.392000pt;}
.y11_c00232{bottom:321.004000pt;}
.y10_c00232{bottom:335.616000pt;}
.yf_c00232{bottom:349.896000pt;}
.ye_c00232{bottom:392.673333pt;}
.yd_c00232{bottom:408.613333pt;}
.yc_c00232{bottom:424.553333pt;}
.yb_c00232{bottom:440.493333pt;}
.ya_c00232{bottom:456.433333pt;}
.y9_c00232{bottom:472.373333pt;}
.y8_c00232{bottom:488.313333pt;}
.y7_c00232{bottom:512.212000pt;}
.y6_c00232{bottom:528.152000pt;}
.y5_c00232{bottom:552.050667pt;}
.y4_c00232{bottom:567.990667pt;}
.y3_c00232{bottom:591.889333pt;}
.y2_c00232{bottom:615.786667pt;}
.y1_c00232{bottom:653.350667pt;}
.h7_c00232{height:31.280681pt;}
.h8_c00232{height:32.006363pt;}
.h3_c00232{height:36.010648pt;}
.h5_c00232{height:46.518078pt;}
.h6_c00232{height:46.523411pt;}
.h2_c00232{height:51.855535pt;}
.h4_c00232{height:52.578561pt;}
.h0_c00232{height:1122.520000pt;}
.h1_c00232{height:1122.666667pt;}
.w0_c00232{width:793.706667pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:113.385333pt;}
.x2_c00232{left:121.886667pt;}
.x3_c00232{left:145.522667pt;}
.x4_c00232{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53745fddd73051821e77f977.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.048828;font-style:normal;font-weight:normal;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_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_7fa16ae98b3bd8fcd0fb8029.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:0.087998px;}
.ls2_c00233{letter-spacing:0.098482px;}
.ls1_c00233{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00233{word-spacing:-26.487518px;}
.ws2_c00233{word-spacing:0.000000px;}
.ws1_c00233{word-spacing:0.043999px;}
.ws3_c00233{word-spacing:0.056767px;}
.ws5_c00233{word-spacing:0.213446px;}
._0_c00233{width:1.041538px;}
.fc5_c00233{color:rgb(0,0,207);}
.fc4_c00233{color:rgb(207,92,0);}
.fc3_c00233{color:rgb(33,74,135);}
.fc2_c00233{color:rgb(79,153,5);}
.fc1_c00233{color:rgb(143,89,3);}
.fc0_c00233{color:rgb(0,0,0);}
.fs0_c00233{font-size:43.999200px;}
.fs1_c00233{font-size:59.775600px;}
.y0_c00233{bottom:0.000000px;}
.y2d_c00233{bottom:44.250000px;}
.y2c_c00233{bottom:354.384000px;}
.y2b_c00233{bottom:370.822500px;}
.y2a_c00233{bottom:387.259500px;}
.y29_c00233{bottom:403.698000px;}
.y28_c00233{bottom:420.136500px;}
.y27_c00233{bottom:436.575000px;}
.y26_c00233{bottom:453.013500px;}
.y25_c00233{bottom:469.452000px;}
.y24_c00233{bottom:485.890500px;}
.y23_c00233{bottom:502.329000px;}
.y22_c00233{bottom:518.767500px;}
.y21_c00233{bottom:551.643000px;}
.y20_c00233{bottom:568.081500px;}
.y1f_c00233{bottom:584.520000px;}
.y1e_c00233{bottom:617.397000px;}
.y1d_c00233{bottom:650.274000px;}
.y1c_c00233{bottom:666.712500px;}
.y1b_c00233{bottom:683.151000px;}
.y1a_c00233{bottom:699.589500px;}
.y19_c00233{bottom:716.028000px;}
.y18_c00233{bottom:732.465000px;}
.y17_c00233{bottom:748.903500px;}
.y16_c00233{bottom:765.342000px;}
.y15_c00233{bottom:781.780500px;}
.y14_c00233{bottom:798.219000px;}
.y13_c00233{bottom:814.657500px;}
.y12_c00233{bottom:847.534500px;}
.y11_c00233{bottom:863.973000px;}
.y10_c00233{bottom:880.411500px;}
.yf_c00233{bottom:896.848500px;}
.ye_c00233{bottom:913.287000px;}
.yd_c00233{bottom:929.725500px;}
.yc_c00233{bottom:946.164000px;}
.yb_c00233{bottom:962.602500px;}
.ya_c00233{bottom:979.041000px;}
.y9_c00233{bottom:995.479500px;}
.y8_c00233{bottom:1011.918000px;}
.y7_c00233{bottom:1028.356500px;}
.y6_c00233{bottom:1044.795000px;}
.y5_c00233{bottom:1077.670500px;}
.y4_c00233{bottom:1094.109000px;}
.y3_c00233{bottom:1126.986000px;}
.y2_c00233{bottom:1143.424500px;}
.y1_c00233{bottom:1159.863000px;}
.h3_c00233{height:35.190766px;}
.h2_c00233{height:36.007158px;}
.h4_c00233{height:52.332837px;}
.h0_c00233{height:1262.835000px;}
.h1_c00233{height:1263.000000px;}
.w0_c00233{width:892.920000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:137.122500px;}
.x4_c00233{left:177.007500px;}
.x2_c00233{left:183.654000px;}
.x3_c00233{left:196.948500px;}
.x5_c00233{left:435.249000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:0.078221pt;}
.ls2_c00233{letter-spacing:0.087539pt;}
.ls1_c00233{letter-spacing:0.092873pt;}
.ws0_c00233{word-spacing:-23.622682pt;}
.ws4_c00233{word-spacing:-23.544461pt;}
.ws2_c00233{word-spacing:0.000000pt;}
.ws1_c00233{word-spacing:0.039110pt;}
.ws3_c00233{word-spacing:0.050460pt;}
.ws5_c00233{word-spacing:0.189730pt;}
._0_c00233{width:0.925811pt;}
.fs0_c00233{font-size:39.110400pt;}
.fs1_c00233{font-size:53.133867pt;}
.y0_c00233{bottom:0.000000pt;}
.y2d_c00233{bottom:39.333333pt;}
.y2c_c00233{bottom:315.008000pt;}
.y2b_c00233{bottom:329.620000pt;}
.y2a_c00233{bottom:344.230667pt;}
.y29_c00233{bottom:358.842667pt;}
.y28_c00233{bottom:373.454667pt;}
.y27_c00233{bottom:388.066667pt;}
.y26_c00233{bottom:402.678667pt;}
.y25_c00233{bottom:417.290667pt;}
.y24_c00233{bottom:431.902667pt;}
.y23_c00233{bottom:446.514667pt;}
.y22_c00233{bottom:461.126667pt;}
.y21_c00233{bottom:490.349333pt;}
.y20_c00233{bottom:504.961333pt;}
.y1f_c00233{bottom:519.573333pt;}
.y1e_c00233{bottom:548.797333pt;}
.y1d_c00233{bottom:578.021333pt;}
.y1c_c00233{bottom:592.633333pt;}
.y1b_c00233{bottom:607.245333pt;}
.y1a_c00233{bottom:621.857333pt;}
.y19_c00233{bottom:636.469333pt;}
.y18_c00233{bottom:651.080000pt;}
.y17_c00233{bottom:665.692000pt;}
.y16_c00233{bottom:680.304000pt;}
.y15_c00233{bottom:694.916000pt;}
.y14_c00233{bottom:709.528000pt;}
.y13_c00233{bottom:724.140000pt;}
.y12_c00233{bottom:753.364000pt;}
.y11_c00233{bottom:767.976000pt;}
.y10_c00233{bottom:782.588000pt;}
.yf_c00233{bottom:797.198667pt;}
.ye_c00233{bottom:811.810667pt;}
.yd_c00233{bottom:826.422667pt;}
.yc_c00233{bottom:841.034667pt;}
.yb_c00233{bottom:855.646667pt;}
.ya_c00233{bottom:870.258667pt;}
.y9_c00233{bottom:884.870667pt;}
.y8_c00233{bottom:899.482667pt;}
.y7_c00233{bottom:914.094667pt;}
.y6_c00233{bottom:928.706667pt;}
.y5_c00233{bottom:957.929333pt;}
.y4_c00233{bottom:972.541333pt;}
.y3_c00233{bottom:1001.765333pt;}
.y2_c00233{bottom:1016.377333pt;}
.y1_c00233{bottom:1030.989333pt;}
.h3_c00233{height:31.280681pt;}
.h2_c00233{height:32.006363pt;}
.h4_c00233{height:46.518078pt;}
.h0_c00233{height:1122.520000pt;}
.h1_c00233{height:1122.666667pt;}
.w0_c00233{width:793.706667pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:121.886667pt;}
.x4_c00233{left:157.340000pt;}
.x2_c00233{left:163.248000pt;}
.x3_c00233{left:175.065333pt;}
.x5_c00233{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64cff4c1e1238413e9df13b1.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:0.893555;font-style:normal;font-weight:normal;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_842dda9d9b1078d6643f4253.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.083496;font-style:normal;font-weight:normal;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_a7c3ea65641472d6e872d8a4.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.102051;font-style:normal;font-weight:normal;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_36f2297f5793410b293db0af.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_ebf250ff5bc7688c22e3097b.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_556ccf79776d267efc32fdb7.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.000000;font-style: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;}
.v1_c00234{vertical-align:22.518000px;}
.ls3_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.087998px;}
.ls2_c00234{letter-spacing:0.098482px;}
.ls1_c00234{letter-spacing:0.104482px;}
.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;}
}
.ws7_c00234{word-spacing:-33.713438px;}
.ws2_c00234{word-spacing:-26.575517px;}
.ws18_c00234{word-spacing:-26.487518px;}
.ws8_c00234{word-spacing:-23.599339px;}
.wsb_c00234{word-spacing:-19.486846px;}
.ws12_c00234{word-spacing:-19.427070px;}
.ws9_c00234{word-spacing:-18.769538px;}
.ws5_c00234{word-spacing:-18.709763px;}
.ws11_c00234{word-spacing:-18.112007px;}
.wse_c00234{word-spacing:-17.589629px;}
.wsf_c00234{word-spacing:-17.574026px;}
.ws10_c00234{word-spacing:-17.514251px;}
.wsa_c00234{word-spacing:-15.720983px;}
.ws14_c00234{word-spacing:-15.601432px;}
.ws13_c00234{word-spacing:-15.560971px;}
.ws4_c00234{word-spacing:-14.884124px;}
.ws16_c00234{word-spacing:-14.764573px;}
.ws15_c00234{word-spacing:-12.433325px;}
.ws1_c00234{word-spacing:-9.988424px;}
.ws3_c00234{word-spacing:-9.987499px;}
.wsd_c00234{word-spacing:-7.536144px;}
.wsc_c00234{word-spacing:-5.649230px;}
.ws6_c00234{word-spacing:-5.577230px;}
.ws1c_c00234{word-spacing:0.000000px;}
.ws19_c00234{word-spacing:0.043999px;}
.ws17_c00234{word-spacing:0.175997px;}
.ws1b_c00234{word-spacing:0.213446px;}
.ws1a_c00234{word-spacing:0.219446px;}
.ws0_c00234{word-spacing:43.038600px;}
._a_c00234{margin-left:-1040.732606px;}
._7_c00234{margin-left:-4.124516px;}
._0_c00234{margin-left:-1.549390px;}
._9_c00234{width:1.005737px;}
._2_c00234{width:2.795468px;}
._1_c00234{width:20.092040px;}
._4_c00234{width:21.758318px;}
._3_c00234{width:22.890101px;}
._5_c00234{width:29.809451px;}
._8_c00234{width:31.979946px;}
._6_c00234{width:39.140287px;}
.fc6_c00234{color:rgb(0,0,207);}
.fc5_c00234{color:rgb(79,153,5);}
.fc3_c00234{color:rgb(33,74,135);}
.fc2_c00234{color:rgb(143,89,3);}
.fc4_c00234{color:rgb(207,92,0);}
.fc1_c00234{color:rgb(6,69,173);}
.fc0_c00234{color:rgb(0,0,0);}
.fs4_c00234{font-size:31.015800px;}
.fs3_c00234{font-size:41.842800px;}
.fs2_c00234{font-size:43.999200px;}
.fs1_c00234{font-size:59.775600px;}
.fs0_c00234{font-size:86.077200px;}
.y0_c00234{bottom:0.000000px;}
.y1f_c00234{bottom:44.250000px;}
.y1e_c00234{bottom:98.490000px;}
.y1d_c00234{bottom:131.365500px;}
.y1c_c00234{bottom:164.242500px;}
.y1b_c00234{bottom:180.681000px;}
.y1a_c00234{bottom:197.119500px;}
.y19_c00234{bottom:213.558000px;}
.y18_c00234{bottom:229.623000px;}
.y17_c00234{bottom:246.061500px;}
.y16_c00234{bottom:262.498500px;}
.y15_c00234{bottom:295.375500px;}
.y14_c00234{bottom:311.814000px;}
.y13_c00234{bottom:328.252500px;}
.y12_c00234{bottom:344.691000px;}
.y11_c00234{bottom:361.129500px;}
.y10_c00234{bottom:377.568000px;}
.yf_c00234{bottom:393.633000px;}
.ye_c00234{bottom:441.757500px;}
.yd_c00234{bottom:459.690000px;}
.yc_c00234{bottom:477.622500px;}
.yb_c00234{bottom:495.555000px;}
.ya_c00234{bottom:513.487500px;}
.y9_c00234{bottom:531.420000px;}
.y8_c00234{bottom:549.352500px;}
.y7_c00234{bottom:576.238500px;}
.y6_c00234{bottom:594.171000px;}
.y5_c00234{bottom:621.057000px;}
.y4_c00234{bottom:638.989500px;}
.y3_c00234{bottom:665.875500px;}
.y2_c00234{bottom:692.760000px;}
.y1_c00234{bottom:735.019500px;}
.h7_c00234{height:35.190766px;}
.h8_c00234{height:36.007158px;}
.h3_c00234{height:40.511979px;}
.h5_c00234{height:52.332837px;}
.h6_c00234{height:52.338837px;}
.h2_c00234{height:58.337477px;}
.h4_c00234{height:59.150881px;}
.h0_c00234{height:1262.835000px;}
.h1_c00234{height:1263.000000px;}
.w0_c00234{width:892.920000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:127.558500px;}
.x2_c00234{left:137.122500px;}
.x3_c00234{left:163.713000px;}
.x4_c00234{left:435.249000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:20.016000pt;}
.ls3_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.078221pt;}
.ls2_c00234{letter-spacing:0.087539pt;}
.ls1_c00234{letter-spacing:0.092873pt;}
.ws7_c00234{word-spacing:-29.967501pt;}
.ws2_c00234{word-spacing:-23.622682pt;}
.ws18_c00234{word-spacing:-23.544461pt;}
.ws8_c00234{word-spacing:-20.977190pt;}
.wsb_c00234{word-spacing:-17.321641pt;}
.ws12_c00234{word-spacing:-17.268507pt;}
.ws9_c00234{word-spacing:-16.684034pt;}
.ws5_c00234{word-spacing:-16.630900pt;}
.ws11_c00234{word-spacing:-16.099562pt;}
.wse_c00234{word-spacing:-15.635226pt;}
.wsf_c00234{word-spacing:-15.621357pt;}
.ws10_c00234{word-spacing:-15.568223pt;}
.wsa_c00234{word-spacing:-13.974207pt;}
.ws14_c00234{word-spacing:-13.867939pt;}
.ws13_c00234{word-spacing:-13.831974pt;}
.ws4_c00234{word-spacing:-13.230333pt;}
.ws16_c00234{word-spacing:-13.124065pt;}
.ws15_c00234{word-spacing:-11.051844pt;}
.ws1_c00234{word-spacing:-8.878599pt;}
.ws3_c00234{word-spacing:-8.877777pt;}
.wsd_c00234{word-spacing:-6.698795pt;}
.wsc_c00234{word-spacing:-5.021538pt;}
.ws6_c00234{word-spacing:-4.957538pt;}
.ws1c_c00234{word-spacing:0.000000pt;}
.ws19_c00234{word-spacing:0.039110pt;}
.ws17_c00234{word-spacing:0.156442pt;}
.ws1b_c00234{word-spacing:0.189730pt;}
.ws1a_c00234{word-spacing:0.195063pt;}
.ws0_c00234{word-spacing:38.256533pt;}
._a_c00234{margin-left:-925.095650pt;}
._7_c00234{margin-left:-3.666237pt;}
._0_c00234{margin-left:-1.377235pt;}
._9_c00234{width:0.893988pt;}
._2_c00234{width:2.484861pt;}
._1_c00234{width:17.859591pt;}
._4_c00234{width:19.340727pt;}
._3_c00234{width:20.346756pt;}
._5_c00234{width:26.497290pt;}
._8_c00234{width:28.426619pt;}
._6_c00234{width:34.791366pt;}
.fs4_c00234{font-size:27.569600pt;}
.fs3_c00234{font-size:37.193600pt;}
.fs2_c00234{font-size:39.110400pt;}
.fs1_c00234{font-size:53.133867pt;}
.fs0_c00234{font-size:76.513067pt;}
.y0_c00234{bottom:0.000000pt;}
.y1f_c00234{bottom:39.333333pt;}
.y1e_c00234{bottom:87.546667pt;}
.y1d_c00234{bottom:116.769333pt;}
.y1c_c00234{bottom:145.993333pt;}
.y1b_c00234{bottom:160.605333pt;}
.y1a_c00234{bottom:175.217333pt;}
.y19_c00234{bottom:189.829333pt;}
.y18_c00234{bottom:204.109333pt;}
.y17_c00234{bottom:218.721333pt;}
.y16_c00234{bottom:233.332000pt;}
.y15_c00234{bottom:262.556000pt;}
.y14_c00234{bottom:277.168000pt;}
.y13_c00234{bottom:291.780000pt;}
.y12_c00234{bottom:306.392000pt;}
.y11_c00234{bottom:321.004000pt;}
.y10_c00234{bottom:335.616000pt;}
.yf_c00234{bottom:349.896000pt;}
.ye_c00234{bottom:392.673333pt;}
.yd_c00234{bottom:408.613333pt;}
.yc_c00234{bottom:424.553333pt;}
.yb_c00234{bottom:440.493333pt;}
.ya_c00234{bottom:456.433333pt;}
.y9_c00234{bottom:472.373333pt;}
.y8_c00234{bottom:488.313333pt;}
.y7_c00234{bottom:512.212000pt;}
.y6_c00234{bottom:528.152000pt;}
.y5_c00234{bottom:552.050667pt;}
.y4_c00234{bottom:567.990667pt;}
.y3_c00234{bottom:591.889333pt;}
.y2_c00234{bottom:615.786667pt;}
.y1_c00234{bottom:653.350667pt;}
.h7_c00234{height:31.280681pt;}
.h8_c00234{height:32.006363pt;}
.h3_c00234{height:36.010648pt;}
.h5_c00234{height:46.518078pt;}
.h6_c00234{height:46.523411pt;}
.h2_c00234{height:51.855535pt;}
.h4_c00234{height:52.578561pt;}
.h0_c00234{height:1122.520000pt;}
.h1_c00234{height:1122.666667pt;}
.w0_c00234{width:793.706667pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:113.385333pt;}
.x2_c00234{left:121.886667pt;}
.x3_c00234{left:145.522667pt;}
.x4_c00234{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdae964933dc041ee1c58b83.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.083496;font-style:normal;font-weight:normal;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_83baeecf580468d2c04774e2.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_6a31f644d5a9d1807ef436f0.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls3_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:0.087998px;}
.ls2_c00235{letter-spacing:0.098482px;}
.ls1_c00235{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws4_c00235{word-spacing:-26.487518px;}
.ws2_c00235{word-spacing:0.000000px;}
.ws1_c00235{word-spacing:0.043999px;}
.ws3_c00235{word-spacing:0.056767px;}
.ws5_c00235{word-spacing:0.213446px;}
._0_c00235{width:1.041538px;}
.fc5_c00235{color:rgb(0,0,207);}
.fc4_c00235{color:rgb(207,92,0);}
.fc3_c00235{color:rgb(33,74,135);}
.fc2_c00235{color:rgb(79,153,5);}
.fc1_c00235{color:rgb(143,89,3);}
.fc0_c00235{color:rgb(0,0,0);}
.fs0_c00235{font-size:43.999200px;}
.fs1_c00235{font-size:59.775600px;}
.y0_c00235{bottom:0.000000px;}
.y2d_c00235{bottom:44.250000px;}
.y2c_c00235{bottom:354.384000px;}
.y2b_c00235{bottom:370.822500px;}
.y2a_c00235{bottom:387.259500px;}
.y29_c00235{bottom:403.698000px;}
.y28_c00235{bottom:420.136500px;}
.y27_c00235{bottom:436.575000px;}
.y26_c00235{bottom:453.013500px;}
.y25_c00235{bottom:469.452000px;}
.y24_c00235{bottom:485.890500px;}
.y23_c00235{bottom:502.329000px;}
.y22_c00235{bottom:518.767500px;}
.y21_c00235{bottom:551.643000px;}
.y20_c00235{bottom:568.081500px;}
.y1f_c00235{bottom:584.520000px;}
.y1e_c00235{bottom:617.397000px;}
.y1d_c00235{bottom:650.274000px;}
.y1c_c00235{bottom:666.712500px;}
.y1b_c00235{bottom:683.151000px;}
.y1a_c00235{bottom:699.589500px;}
.y19_c00235{bottom:716.028000px;}
.y18_c00235{bottom:732.465000px;}
.y17_c00235{bottom:748.903500px;}
.y16_c00235{bottom:765.342000px;}
.y15_c00235{bottom:781.780500px;}
.y14_c00235{bottom:798.219000px;}
.y13_c00235{bottom:814.657500px;}
.y12_c00235{bottom:847.534500px;}
.y11_c00235{bottom:863.973000px;}
.y10_c00235{bottom:880.411500px;}
.yf_c00235{bottom:896.848500px;}
.ye_c00235{bottom:913.287000px;}
.yd_c00235{bottom:929.725500px;}
.yc_c00235{bottom:946.164000px;}
.yb_c00235{bottom:962.602500px;}
.ya_c00235{bottom:979.041000px;}
.y9_c00235{bottom:995.479500px;}
.y8_c00235{bottom:1011.918000px;}
.y7_c00235{bottom:1028.356500px;}
.y6_c00235{bottom:1044.795000px;}
.y5_c00235{bottom:1077.670500px;}
.y4_c00235{bottom:1094.109000px;}
.y3_c00235{bottom:1126.986000px;}
.y2_c00235{bottom:1143.424500px;}
.y1_c00235{bottom:1159.863000px;}
.h3_c00235{height:35.190766px;}
.h2_c00235{height:36.007158px;}
.h4_c00235{height:52.332837px;}
.h0_c00235{height:1262.835000px;}
.h1_c00235{height:1263.000000px;}
.w0_c00235{width:892.920000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:137.122500px;}
.x4_c00235{left:177.007500px;}
.x2_c00235{left:183.654000px;}
.x3_c00235{left:196.948500px;}
.x5_c00235{left:435.249000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls3_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:0.078221pt;}
.ls2_c00235{letter-spacing:0.087539pt;}
.ls1_c00235{letter-spacing:0.092873pt;}
.ws0_c00235{word-spacing:-23.622682pt;}
.ws4_c00235{word-spacing:-23.544461pt;}
.ws2_c00235{word-spacing:0.000000pt;}
.ws1_c00235{word-spacing:0.039110pt;}
.ws3_c00235{word-spacing:0.050460pt;}
.ws5_c00235{word-spacing:0.189730pt;}
._0_c00235{width:0.925811pt;}
.fs0_c00235{font-size:39.110400pt;}
.fs1_c00235{font-size:53.133867pt;}
.y0_c00235{bottom:0.000000pt;}
.y2d_c00235{bottom:39.333333pt;}
.y2c_c00235{bottom:315.008000pt;}
.y2b_c00235{bottom:329.620000pt;}
.y2a_c00235{bottom:344.230667pt;}
.y29_c00235{bottom:358.842667pt;}
.y28_c00235{bottom:373.454667pt;}
.y27_c00235{bottom:388.066667pt;}
.y26_c00235{bottom:402.678667pt;}
.y25_c00235{bottom:417.290667pt;}
.y24_c00235{bottom:431.902667pt;}
.y23_c00235{bottom:446.514667pt;}
.y22_c00235{bottom:461.126667pt;}
.y21_c00235{bottom:490.349333pt;}
.y20_c00235{bottom:504.961333pt;}
.y1f_c00235{bottom:519.573333pt;}
.y1e_c00235{bottom:548.797333pt;}
.y1d_c00235{bottom:578.021333pt;}
.y1c_c00235{bottom:592.633333pt;}
.y1b_c00235{bottom:607.245333pt;}
.y1a_c00235{bottom:621.857333pt;}
.y19_c00235{bottom:636.469333pt;}
.y18_c00235{bottom:651.080000pt;}
.y17_c00235{bottom:665.692000pt;}
.y16_c00235{bottom:680.304000pt;}
.y15_c00235{bottom:694.916000pt;}
.y14_c00235{bottom:709.528000pt;}
.y13_c00235{bottom:724.140000pt;}
.y12_c00235{bottom:753.364000pt;}
.y11_c00235{bottom:767.976000pt;}
.y10_c00235{bottom:782.588000pt;}
.yf_c00235{bottom:797.198667pt;}
.ye_c00235{bottom:811.810667pt;}
.yd_c00235{bottom:826.422667pt;}
.yc_c00235{bottom:841.034667pt;}
.yb_c00235{bottom:855.646667pt;}
.ya_c00235{bottom:870.258667pt;}
.y9_c00235{bottom:884.870667pt;}
.y8_c00235{bottom:899.482667pt;}
.y7_c00235{bottom:914.094667pt;}
.y6_c00235{bottom:928.706667pt;}
.y5_c00235{bottom:957.929333pt;}
.y4_c00235{bottom:972.541333pt;}
.y3_c00235{bottom:1001.765333pt;}
.y2_c00235{bottom:1016.377333pt;}
.y1_c00235{bottom:1030.989333pt;}
.h3_c00235{height:31.280681pt;}
.h2_c00235{height:32.006363pt;}
.h4_c00235{height:46.518078pt;}
.h0_c00235{height:1122.520000pt;}
.h1_c00235{height:1122.666667pt;}
.w0_c00235{width:793.706667pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:121.886667pt;}
.x4_c00235{left:157.340000pt;}
.x2_c00235{left:163.248000pt;}
.x3_c00235{left:175.065333pt;}
.x5_c00235{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eab82cedbc4664f5f3e2cca1.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:0.893555;font-style:normal;font-weight:normal;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_7159f92f28ca0c5a2a4b2ae8.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.083496;font-style:normal;font-weight:normal;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_e39a56e7a77fc4316c8d8f52.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.102051;font-style:normal;font-weight:normal;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_0e1c4d10b6e66398a59ebacb.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.014648;font-style:normal;font-weight:normal;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_4bac4738ccad2b9ddcc4e05f.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.048828;font-style: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;}
.ls4_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.087998px;}
.ls2_c00236{letter-spacing:0.098482px;}
.ls1_c00236{letter-spacing:0.104482px;}
.ls3_c00236{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00236{word-spacing:-26.575517px;}
.wsb_c00236{word-spacing:-26.487518px;}
.ws7_c00236{word-spacing:-21.698543px;}
.ws5_c00236{word-spacing:-18.769538px;}
.ws8_c00236{word-spacing:-17.992456px;}
.ws9_c00236{word-spacing:-17.753353px;}
.ws4_c00236{word-spacing:-14.943900px;}
.ws6_c00236{word-spacing:-11.466144px;}
.ws1_c00236{word-spacing:-9.988424px;}
.ws3_c00236{word-spacing:-9.987499px;}
.wsf_c00236{word-spacing:0.000000px;}
.wsc_c00236{word-spacing:0.043999px;}
.wsa_c00236{word-spacing:0.175997px;}
.wsd_c00236{word-spacing:0.213446px;}
.wse_c00236{word-spacing:0.219446px;}
.ws0_c00236{word-spacing:43.038600px;}
._3_c00236{margin-left:-4.124516px;}
._4_c00236{margin-left:-2.989986px;}
._1_c00236{margin-left:-1.075961px;}
._5_c00236{width:1.005737px;}
._0_c00236{width:19.935816px;}
._2_c00236{width:22.417056px;}
.fc6_c00236{color:rgb(0,0,207);}
.fc5_c00236{color:rgb(79,153,5);}
.fc3_c00236{color:rgb(33,74,135);}
.fc2_c00236{color:rgb(143,89,3);}
.fc4_c00236{color:rgb(207,92,0);}
.fc1_c00236{color:rgb(6,69,173);}
.fc0_c00236{color:rgb(0,0,0);}
.fs2_c00236{font-size:43.999200px;}
.fs1_c00236{font-size:59.775600px;}
.fs0_c00236{font-size:86.077200px;}
.y0_c00236{bottom:0.000000px;}
.y20_c00236{bottom:44.250000px;}
.y1f_c00236{bottom:86.982000px;}
.y1e_c00236{bottom:119.859000px;}
.y1d_c00236{bottom:136.297500px;}
.y1c_c00236{bottom:152.736000px;}
.y1b_c00236{bottom:185.613000px;}
.y1a_c00236{bottom:202.051500px;}
.y19_c00236{bottom:218.490000px;}
.y18_c00236{bottom:234.927000px;}
.y17_c00236{bottom:251.365500px;}
.y16_c00236{bottom:267.804000px;}
.y15_c00236{bottom:284.242500px;}
.y14_c00236{bottom:300.681000px;}
.y13_c00236{bottom:317.119500px;}
.y12_c00236{bottom:333.558000px;}
.y11_c00236{bottom:349.996500px;}
.y10_c00236{bottom:366.435000px;}
.yf_c00236{bottom:382.873500px;}
.ye_c00236{bottom:399.310500px;}
.yd_c00236{bottom:415.749000px;}
.yc_c00236{bottom:448.626000px;}
.yb_c00236{bottom:465.064500px;}
.ya_c00236{bottom:481.129500px;}
.y9_c00236{bottom:529.780500px;}
.y8_c00236{bottom:547.713000px;}
.y7_c00236{bottom:565.647000px;}
.y6_c00236{bottom:583.579500px;}
.y5_c00236{bottom:610.656000px;}
.y4_c00236{bottom:637.732500px;}
.y3_c00236{bottom:664.810500px;}
.y2_c00236{bottom:691.887000px;}
.y1_c00236{bottom:734.416500px;}
.h5_c00236{height:35.190766px;}
.h6_c00236{height:36.007158px;}
.h3_c00236{height:40.511979px;}
.h4_c00236{height:52.332837px;}
.h2_c00236{height:58.337477px;}
.h0_c00236{height:1262.835000px;}
.h1_c00236{height:1263.000000px;}
.w0_c00236{width:892.920000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:127.558500px;}
.x2_c00236{left:137.122500px;}
.x3_c00236{left:210.243000px;}
.x4_c00236{left:435.249000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls4_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.078221pt;}
.ls2_c00236{letter-spacing:0.087539pt;}
.ls1_c00236{letter-spacing:0.092873pt;}
.ls3_c00236{letter-spacing:23.724873pt;}
.ws2_c00236{word-spacing:-23.622682pt;}
.wsb_c00236{word-spacing:-23.544461pt;}
.ws7_c00236{word-spacing:-19.287594pt;}
.ws5_c00236{word-spacing:-16.684034pt;}
.ws8_c00236{word-spacing:-15.993294pt;}
.ws9_c00236{word-spacing:-15.780758pt;}
.ws4_c00236{word-spacing:-13.283467pt;}
.ws6_c00236{word-spacing:-10.192128pt;}
.ws1_c00236{word-spacing:-8.878599pt;}
.ws3_c00236{word-spacing:-8.877777pt;}
.wsf_c00236{word-spacing:0.000000pt;}
.wsc_c00236{word-spacing:0.039110pt;}
.wsa_c00236{word-spacing:0.156442pt;}
.wsd_c00236{word-spacing:0.189730pt;}
.wse_c00236{word-spacing:0.195063pt;}
.ws0_c00236{word-spacing:38.256533pt;}
._3_c00236{margin-left:-3.666237pt;}
._4_c00236{margin-left:-2.657765pt;}
._1_c00236{margin-left:-0.956410pt;}
._5_c00236{width:0.893988pt;}
._0_c00236{width:17.720725pt;}
._2_c00236{width:19.926272pt;}
.fs2_c00236{font-size:39.110400pt;}
.fs1_c00236{font-size:53.133867pt;}
.fs0_c00236{font-size:76.513067pt;}
.y0_c00236{bottom:0.000000pt;}
.y20_c00236{bottom:39.333333pt;}
.y1f_c00236{bottom:77.317333pt;}
.y1e_c00236{bottom:106.541333pt;}
.y1d_c00236{bottom:121.153333pt;}
.y1c_c00236{bottom:135.765333pt;}
.y1b_c00236{bottom:164.989333pt;}
.y1a_c00236{bottom:179.601333pt;}
.y19_c00236{bottom:194.213333pt;}
.y18_c00236{bottom:208.824000pt;}
.y17_c00236{bottom:223.436000pt;}
.y16_c00236{bottom:238.048000pt;}
.y15_c00236{bottom:252.660000pt;}
.y14_c00236{bottom:267.272000pt;}
.y13_c00236{bottom:281.884000pt;}
.y12_c00236{bottom:296.496000pt;}
.y11_c00236{bottom:311.108000pt;}
.y10_c00236{bottom:325.720000pt;}
.yf_c00236{bottom:340.332000pt;}
.ye_c00236{bottom:354.942667pt;}
.yd_c00236{bottom:369.554667pt;}
.yc_c00236{bottom:398.778667pt;}
.yb_c00236{bottom:413.390667pt;}
.ya_c00236{bottom:427.670667pt;}
.y9_c00236{bottom:470.916000pt;}
.y8_c00236{bottom:486.856000pt;}
.y7_c00236{bottom:502.797333pt;}
.y6_c00236{bottom:518.737333pt;}
.y5_c00236{bottom:542.805333pt;}
.y4_c00236{bottom:566.873333pt;}
.y3_c00236{bottom:590.942667pt;}
.y2_c00236{bottom:615.010667pt;}
.y1_c00236{bottom:652.814667pt;}
.h5_c00236{height:31.280681pt;}
.h6_c00236{height:32.006363pt;}
.h3_c00236{height:36.010648pt;}
.h4_c00236{height:46.518078pt;}
.h2_c00236{height:51.855535pt;}
.h0_c00236{height:1122.520000pt;}
.h1_c00236{height:1122.666667pt;}
.w0_c00236{width:793.706667pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:113.385333pt;}
.x2_c00236{left:121.886667pt;}
.x3_c00236{left:186.882667pt;}
.x4_c00236{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b44a8dac483f33eefd0225a3.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.083496;font-style:normal;font-weight:normal;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_280b0eb2b5b5efc6691de3e2.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.048828;font-style:normal;font-weight:normal;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_ab661e668335d8057501d297.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.893555;font-style:normal;font-weight:normal;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_3540ca9437a30e053705a8d7.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_afc9cc400e3a3dca095f819e.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.014648;font-style: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.000000px;}
.ls0_c00237{letter-spacing:0.087998px;}
.ls1_c00237{letter-spacing:0.098482px;}
.ls2_c00237{letter-spacing:0.104482px;}
.ls3_c00237{letter-spacing:0.140482px;}
.ls4_c00237{letter-spacing:26.690482px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-26.575517px;}
.ws1_c00237{word-spacing:-26.487518px;}
.ws8_c00237{word-spacing:-19.367294px;}
.ws9_c00237{word-spacing:-19.307519px;}
.ws6_c00237{word-spacing:-18.769538px;}
.wsb_c00237{word-spacing:-16.139412px;}
.wsa_c00237{word-spacing:-16.079636px;}
.wsc_c00237{word-spacing:-15.362329px;}
.ws5_c00237{word-spacing:-14.943900px;}
.ws7_c00237{word-spacing:-10.278144px;}
.ws3_c00237{word-spacing:-9.988424px;}
.ws4_c00237{word-spacing:-9.987499px;}
.ws11_c00237{word-spacing:0.000000px;}
.wse_c00237{word-spacing:0.043999px;}
.wsd_c00237{word-spacing:0.175997px;}
.wsf_c00237{word-spacing:0.213446px;}
.ws10_c00237{word-spacing:0.219446px;}
.ws2_c00237{word-spacing:43.038600px;}
._3_c00237{margin-left:-3.766088px;}
._0_c00237{margin-left:-1.549390px;}
._5_c00237{width:1.005737px;}
._1_c00237{width:19.935816px;}
._2_c00237{width:27.795654px;}
._4_c00237{width:30.784434px;}
._6_c00237{width:106.698060px;}
.fc5_c00237{color:rgb(0,0,207);}
.fc6_c00237{color:rgb(6,69,173);}
.fc4_c00237{color:rgb(207,92,0);}
.fc3_c00237{color:rgb(79,153,5);}
.fc2_c00237{color:rgb(33,74,135);}
.fc1_c00237{color:rgb(143,89,3);}
.fc0_c00237{color:rgb(0,0,0);}
.fs0_c00237{font-size:43.999200px;}
.fs2_c00237{font-size:59.775600px;}
.fs1_c00237{font-size:86.077200px;}
.y0_c00237{bottom:0.000000px;}
.y21_c00237{bottom:44.250000px;}
.y20_c00237{bottom:82.051500px;}
.y1f_c00237{bottom:98.490000px;}
.y1e_c00237{bottom:114.927000px;}
.y1d_c00237{bottom:131.365500px;}
.y1c_c00237{bottom:147.804000px;}
.y1b_c00237{bottom:164.242500px;}
.y1a_c00237{bottom:180.681000px;}
.y19_c00237{bottom:197.119500px;}
.y18_c00237{bottom:213.558000px;}
.y17_c00237{bottom:229.996500px;}
.y16_c00237{bottom:262.873500px;}
.y15_c00237{bottom:279.310500px;}
.y14_c00237{bottom:295.375500px;}
.y13_c00237{bottom:343.377000px;}
.y12_c00237{bottom:361.309500px;}
.y11_c00237{bottom:379.242000px;}
.y10_c00237{bottom:397.176000px;}
.yf_c00237{bottom:424.039500px;}
.ye_c00237{bottom:450.904500px;}
.yd_c00237{bottom:477.769500px;}
.yc_c00237{bottom:504.634500px;}
.yb_c00237{bottom:546.873000px;}
.ya_c00237{bottom:1011.918000px;}
.y9_c00237{bottom:1028.356500px;}
.y8_c00237{bottom:1044.795000px;}
.y7_c00237{bottom:1061.232000px;}
.y6_c00237{bottom:1077.670500px;}
.y5_c00237{bottom:1094.109000px;}
.y4_c00237{bottom:1110.547500px;}
.y3_c00237{bottom:1126.986000px;}
.y2_c00237{bottom:1143.424500px;}
.y1_c00237{bottom:1159.863000px;}
.h6_c00237{height:35.190766px;}
.h2_c00237{height:36.007158px;}
.h4_c00237{height:40.511979px;}
.h5_c00237{height:52.332837px;}
.h3_c00237{height:58.337477px;}
.h0_c00237{height:1262.835000px;}
.h1_c00237{height:1263.000000px;}
.w0_c00237{width:892.920000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x3_c00237{left:127.558500px;}
.x1_c00237{left:137.122500px;}
.x2_c00237{left:177.007500px;}
.x4_c00237{left:210.243000px;}
.x5_c00237{left:435.249000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls5_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.078221pt;}
.ls1_c00237{letter-spacing:0.087539pt;}
.ls2_c00237{letter-spacing:0.092873pt;}
.ls3_c00237{letter-spacing:0.124873pt;}
.ls4_c00237{letter-spacing:23.724873pt;}
.ws0_c00237{word-spacing:-23.622682pt;}
.ws1_c00237{word-spacing:-23.544461pt;}
.ws8_c00237{word-spacing:-17.215373pt;}
.ws9_c00237{word-spacing:-17.162239pt;}
.ws6_c00237{word-spacing:-16.684034pt;}
.wsb_c00237{word-spacing:-14.346144pt;}
.wsa_c00237{word-spacing:-14.293010pt;}
.wsc_c00237{word-spacing:-13.655404pt;}
.ws5_c00237{word-spacing:-13.283467pt;}
.ws7_c00237{word-spacing:-9.136128pt;}
.ws3_c00237{word-spacing:-8.878599pt;}
.ws4_c00237{word-spacing:-8.877777pt;}
.ws11_c00237{word-spacing:0.000000pt;}
.wse_c00237{word-spacing:0.039110pt;}
.wsd_c00237{word-spacing:0.156442pt;}
.wsf_c00237{word-spacing:0.189730pt;}
.ws10_c00237{word-spacing:0.195063pt;}
.ws2_c00237{word-spacing:38.256533pt;}
._3_c00237{margin-left:-3.347634pt;}
._0_c00237{margin-left:-1.377235pt;}
._5_c00237{width:0.893988pt;}
._1_c00237{width:17.720725pt;}
._2_c00237{width:24.707248pt;}
._4_c00237{width:27.363941pt;}
._6_c00237{width:94.842720pt;}
.fs0_c00237{font-size:39.110400pt;}
.fs2_c00237{font-size:53.133867pt;}
.fs1_c00237{font-size:76.513067pt;}
.y0_c00237{bottom:0.000000pt;}
.y21_c00237{bottom:39.333333pt;}
.y20_c00237{bottom:72.934667pt;}
.y1f_c00237{bottom:87.546667pt;}
.y1e_c00237{bottom:102.157333pt;}
.y1d_c00237{bottom:116.769333pt;}
.y1c_c00237{bottom:131.381333pt;}
.y1b_c00237{bottom:145.993333pt;}
.y1a_c00237{bottom:160.605333pt;}
.y19_c00237{bottom:175.217333pt;}
.y18_c00237{bottom:189.829333pt;}
.y17_c00237{bottom:204.441333pt;}
.y16_c00237{bottom:233.665333pt;}
.y15_c00237{bottom:248.276000pt;}
.y14_c00237{bottom:262.556000pt;}
.y13_c00237{bottom:305.224000pt;}
.y12_c00237{bottom:321.164000pt;}
.y11_c00237{bottom:337.104000pt;}
.y10_c00237{bottom:353.045333pt;}
.yf_c00237{bottom:376.924000pt;}
.ye_c00237{bottom:400.804000pt;}
.yd_c00237{bottom:424.684000pt;}
.yc_c00237{bottom:448.564000pt;}
.yb_c00237{bottom:486.109333pt;}
.ya_c00237{bottom:899.482667pt;}
.y9_c00237{bottom:914.094667pt;}
.y8_c00237{bottom:928.706667pt;}
.y7_c00237{bottom:943.317333pt;}
.y6_c00237{bottom:957.929333pt;}
.y5_c00237{bottom:972.541333pt;}
.y4_c00237{bottom:987.153333pt;}
.y3_c00237{bottom:1001.765333pt;}
.y2_c00237{bottom:1016.377333pt;}
.y1_c00237{bottom:1030.989333pt;}
.h6_c00237{height:31.280681pt;}
.h2_c00237{height:32.006363pt;}
.h4_c00237{height:36.010648pt;}
.h5_c00237{height:46.518078pt;}
.h3_c00237{height:51.855535pt;}
.h0_c00237{height:1122.520000pt;}
.h1_c00237{height:1122.666667pt;}
.w0_c00237{width:793.706667pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x3_c00237{left:113.385333pt;}
.x1_c00237{left:121.886667pt;}
.x2_c00237{left:157.340000pt;}
.x4_c00237{left:186.882667pt;}
.x5_c00237{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99965f08c361b49d54340b3a.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.083496;font-style:normal;font-weight:normal;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_f9f000fe66948448c6f02409.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_67cd476fc2abe24fb1b571ef.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_d084426259da73886e2e355d.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.102051;font-style: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;}
.ls3_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.087998px;}
.ls1_c00238{letter-spacing:0.098482px;}
.ls2_c00238{letter-spacing:0.104482px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-26.575517px;}
.ws2_c00238{word-spacing:-26.487518px;}
.ws9_c00238{word-spacing:-18.769538px;}
.ws8_c00238{word-spacing:-14.943900px;}
.wsf_c00238{word-spacing:-14.585246px;}
.ws10_c00238{word-spacing:-12.672427px;}
.ws6_c00238{word-spacing:-9.988424px;}
.ws7_c00238{word-spacing:-9.987499px;}
.wse_c00238{word-spacing:-8.966340px;}
.wsc_c00238{word-spacing:-3.051229px;}
.wsb_c00238{word-spacing:-3.048556px;}
.wsd_c00238{word-spacing:-1.734266px;}
.ws0_c00238{word-spacing:0.000000px;}
.ws3_c00238{word-spacing:0.043999px;}
.ws11_c00238{word-spacing:0.175997px;}
.ws4_c00238{word-spacing:0.213446px;}
.wsa_c00238{word-spacing:21.449856px;}
.ws5_c00238{word-spacing:43.038600px;}
._3_c00238{margin-left:-3.261288px;}
._2_c00238{margin-left:-1.075961px;}
._0_c00238{width:1.041538px;}
._1_c00238{width:19.935816px;}
._5_c00238{width:32.863849px;}
._6_c00238{width:38.077057px;}
._4_c00238{width:49.685970px;}
.fc5_c00238{color:rgb(0,0,207);}
.fc6_c00238{color:rgb(6,69,173);}
.fc4_c00238{color:rgb(207,92,0);}
.fc3_c00238{color:rgb(143,89,3);}
.fc2_c00238{color:rgb(0,0,0);}
.fc1_c00238{color:rgb(79,153,5);}
.fc0_c00238{color:rgb(33,74,135);}
.fs0_c00238{font-size:43.999200px;}
.fs2_c00238{font-size:59.775600px;}
.fs1_c00238{font-size:86.077200px;}
.y0_c00238{bottom:0.000000px;}
.y20_c00238{bottom:44.250000px;}
.y1f_c00238{bottom:82.051500px;}
.y1e_c00238{bottom:98.115000px;}
.y1d_c00238{bottom:145.471500px;}
.y1c_c00238{bottom:163.404000px;}
.y1b_c00238{bottom:181.336500px;}
.y1a_c00238{bottom:199.269000px;}
.y19_c00238{bottom:217.203000px;}
.y18_c00238{bottom:243.960000px;}
.y17_c00238{bottom:270.717000px;}
.y16_c00238{bottom:297.474000px;}
.y15_c00238{bottom:324.232500px;}
.y14_c00238{bottom:366.361500px;}
.y13_c00238{bottom:831.096000px;}
.y12_c00238{bottom:847.534500px;}
.y11_c00238{bottom:863.973000px;}
.y10_c00238{bottom:880.411500px;}
.yf_c00238{bottom:896.848500px;}
.ye_c00238{bottom:913.287000px;}
.yd_c00238{bottom:929.725500px;}
.yc_c00238{bottom:946.164000px;}
.yb_c00238{bottom:962.602500px;}
.ya_c00238{bottom:979.041000px;}
.y9_c00238{bottom:995.479500px;}
.y8_c00238{bottom:1028.356500px;}
.y7_c00238{bottom:1044.795000px;}
.y6_c00238{bottom:1061.232000px;}
.y5_c00238{bottom:1094.109000px;}
.y4_c00238{bottom:1110.547500px;}
.y3_c00238{bottom:1126.986000px;}
.y2_c00238{bottom:1143.424500px;}
.y1_c00238{bottom:1159.863000px;}
.h3_c00238{height:35.190766px;}
.h2_c00238{height:36.007158px;}
.h5_c00238{height:40.511979px;}
.h6_c00238{height:52.332837px;}
.h4_c00238{height:58.337477px;}
.h0_c00238{height:1262.835000px;}
.h1_c00238{height:1263.000000px;}
.w0_c00238{width:892.920000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x4_c00238{left:127.558500px;}
.x2_c00238{left:137.122500px;}
.x3_c00238{left:177.007500px;}
.x1_c00238{left:210.243000px;}
.x5_c00238{left:435.249000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls3_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.078221pt;}
.ls1_c00238{letter-spacing:0.087539pt;}
.ls2_c00238{letter-spacing:0.092873pt;}
.ws1_c00238{word-spacing:-23.622682pt;}
.ws2_c00238{word-spacing:-23.544461pt;}
.ws9_c00238{word-spacing:-16.684034pt;}
.ws8_c00238{word-spacing:-13.283467pt;}
.wsf_c00238{word-spacing:-12.964663pt;}
.ws10_c00238{word-spacing:-11.264380pt;}
.ws6_c00238{word-spacing:-8.878599pt;}
.ws7_c00238{word-spacing:-8.877777pt;}
.wse_c00238{word-spacing:-7.970080pt;}
.wsc_c00238{word-spacing:-2.712204pt;}
.wsb_c00238{word-spacing:-2.709827pt;}
.wsd_c00238{word-spacing:-1.541570pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.ws3_c00238{word-spacing:0.039110pt;}
.ws11_c00238{word-spacing:0.156442pt;}
.ws4_c00238{word-spacing:0.189730pt;}
.wsa_c00238{word-spacing:19.066539pt;}
.ws5_c00238{word-spacing:38.256533pt;}
._3_c00238{margin-left:-2.898923pt;}
._2_c00238{margin-left:-0.956410pt;}
._0_c00238{width:0.925811pt;}
._1_c00238{width:17.720725pt;}
._5_c00238{width:29.212310pt;}
._6_c00238{width:33.846273pt;}
._4_c00238{width:44.165307pt;}
.fs0_c00238{font-size:39.110400pt;}
.fs2_c00238{font-size:53.133867pt;}
.fs1_c00238{font-size:76.513067pt;}
.y0_c00238{bottom:0.000000pt;}
.y20_c00238{bottom:39.333333pt;}
.y1f_c00238{bottom:72.934667pt;}
.y1e_c00238{bottom:87.213333pt;}
.y1d_c00238{bottom:129.308000pt;}
.y1c_c00238{bottom:145.248000pt;}
.y1b_c00238{bottom:161.188000pt;}
.y1a_c00238{bottom:177.128000pt;}
.y19_c00238{bottom:193.069333pt;}
.y18_c00238{bottom:216.853333pt;}
.y17_c00238{bottom:240.637333pt;}
.y16_c00238{bottom:264.421333pt;}
.y15_c00238{bottom:288.206667pt;}
.y14_c00238{bottom:325.654667pt;}
.y13_c00238{bottom:738.752000pt;}
.y12_c00238{bottom:753.364000pt;}
.y11_c00238{bottom:767.976000pt;}
.y10_c00238{bottom:782.588000pt;}
.yf_c00238{bottom:797.198667pt;}
.ye_c00238{bottom:811.810667pt;}
.yd_c00238{bottom:826.422667pt;}
.yc_c00238{bottom:841.034667pt;}
.yb_c00238{bottom:855.646667pt;}
.ya_c00238{bottom:870.258667pt;}
.y9_c00238{bottom:884.870667pt;}
.y8_c00238{bottom:914.094667pt;}
.y7_c00238{bottom:928.706667pt;}
.y6_c00238{bottom:943.317333pt;}
.y5_c00238{bottom:972.541333pt;}
.y4_c00238{bottom:987.153333pt;}
.y3_c00238{bottom:1001.765333pt;}
.y2_c00238{bottom:1016.377333pt;}
.y1_c00238{bottom:1030.989333pt;}
.h3_c00238{height:31.280681pt;}
.h2_c00238{height:32.006363pt;}
.h5_c00238{height:36.010648pt;}
.h6_c00238{height:46.518078pt;}
.h4_c00238{height:51.855535pt;}
.h0_c00238{height:1122.520000pt;}
.h1_c00238{height:1122.666667pt;}
.w0_c00238{width:793.706667pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x4_c00238{left:113.385333pt;}
.x2_c00238{left:121.886667pt;}
.x3_c00238{left:157.340000pt;}
.x1_c00238{left:186.882667pt;}
.x5_c00238{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0264ad9605085a35da250269.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.048828;font-style:normal;font-weight:normal;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_047b574d60f0ab1f64bcfc10.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.083496;font-style:normal;font-weight:normal;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_2335befe2c69c23d926885d0.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.014648;font-style:normal;font-weight:normal;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_d432bd9750e1e21a713265e5.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls4_c00239{letter-spacing:0.000000px;}
.ls1_c00239{letter-spacing:0.087998px;}
.ls2_c00239{letter-spacing:0.098482px;}
.ls0_c00239{letter-spacing:0.104482px;}
.ls3_c00239{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws0_c00239{word-spacing:-26.487518px;}
.ws4_c00239{word-spacing:0.000000px;}
.ws5_c00239{word-spacing:0.043999px;}
.ws7_c00239{word-spacing:0.053933px;}
.ws2_c00239{word-spacing:0.175997px;}
.ws3_c00239{word-spacing:0.213446px;}
.ws6_c00239{word-spacing:0.219446px;}
._0_c00239{width:1.047451px;}
._1_c00239{width:53.591026px;}
.fc5_c00239{color:rgb(0,0,207);}
.fc4_c00239{color:rgb(143,89,3);}
.fc3_c00239{color:rgb(79,153,5);}
.fc2_c00239{color:rgb(207,92,0);}
.fc1_c00239{color:rgb(0,0,0);}
.fc0_c00239{color:rgb(33,74,135);}
.fs0_c00239{font-size:43.999200px;}
.fs1_c00239{font-size:59.775600px;}
.y0_c00239{bottom:0.000000px;}
.y34_c00239{bottom:44.250000px;}
.y33_c00239{bottom:255.753000px;}
.y32_c00239{bottom:272.191500px;}
.y31_c00239{bottom:288.630000px;}
.y30_c00239{bottom:305.068500px;}
.y2f_c00239{bottom:321.507000px;}
.y2e_c00239{bottom:337.945500px;}
.y2d_c00239{bottom:354.384000px;}
.y2c_c00239{bottom:370.822500px;}
.y2b_c00239{bottom:387.259500px;}
.y2a_c00239{bottom:403.698000px;}
.y29_c00239{bottom:420.136500px;}
.y28_c00239{bottom:453.013500px;}
.y27_c00239{bottom:469.452000px;}
.y26_c00239{bottom:485.890500px;}
.y25_c00239{bottom:518.767500px;}
.y24_c00239{bottom:535.206000px;}
.y23_c00239{bottom:551.643000px;}
.y22_c00239{bottom:568.081500px;}
.y21_c00239{bottom:584.520000px;}
.y20_c00239{bottom:600.958500px;}
.y1f_c00239{bottom:617.397000px;}
.y1e_c00239{bottom:633.835500px;}
.y1d_c00239{bottom:650.274000px;}
.y1c_c00239{bottom:666.712500px;}
.y1b_c00239{bottom:683.151000px;}
.y1a_c00239{bottom:699.589500px;}
.y19_c00239{bottom:716.028000px;}
.y18_c00239{bottom:732.465000px;}
.y17_c00239{bottom:748.903500px;}
.y16_c00239{bottom:765.342000px;}
.y15_c00239{bottom:781.780500px;}
.y14_c00239{bottom:798.219000px;}
.y13_c00239{bottom:814.657500px;}
.y12_c00239{bottom:831.096000px;}
.y11_c00239{bottom:847.534500px;}
.y10_c00239{bottom:863.973000px;}
.yf_c00239{bottom:880.411500px;}
.ye_c00239{bottom:896.848500px;}
.yd_c00239{bottom:913.287000px;}
.yc_c00239{bottom:929.725500px;}
.yb_c00239{bottom:962.602500px;}
.ya_c00239{bottom:995.479500px;}
.y9_c00239{bottom:1011.918000px;}
.y8_c00239{bottom:1028.356500px;}
.y7_c00239{bottom:1061.232000px;}
.y6_c00239{bottom:1077.670500px;}
.y5_c00239{bottom:1094.109000px;}
.y4_c00239{bottom:1110.547500px;}
.y3_c00239{bottom:1126.986000px;}
.y2_c00239{bottom:1143.424500px;}
.y1_c00239{bottom:1159.863000px;}
.h3_c00239{height:35.190766px;}
.h2_c00239{height:36.007158px;}
.h4_c00239{height:52.332837px;}
.h0_c00239{height:1262.835000px;}
.h1_c00239{height:1263.000000px;}
.w0_c00239{width:892.920000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:137.122500px;}
.x2_c00239{left:143.770500px;}
.x4_c00239{left:177.007500px;}
.x3_c00239{left:210.243000px;}
.x5_c00239{left:435.249000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls4_c00239{letter-spacing:0.000000pt;}
.ls1_c00239{letter-spacing:0.078221pt;}
.ls2_c00239{letter-spacing:0.087539pt;}
.ls0_c00239{letter-spacing:0.092873pt;}
.ls3_c00239{letter-spacing:23.724873pt;}
.ws1_c00239{word-spacing:-23.622682pt;}
.ws0_c00239{word-spacing:-23.544461pt;}
.ws4_c00239{word-spacing:0.000000pt;}
.ws5_c00239{word-spacing:0.039110pt;}
.ws7_c00239{word-spacing:0.047940pt;}
.ws2_c00239{word-spacing:0.156442pt;}
.ws3_c00239{word-spacing:0.189730pt;}
.ws6_c00239{word-spacing:0.195063pt;}
._0_c00239{width:0.931068pt;}
._1_c00239{width:47.636467pt;}
.fs0_c00239{font-size:39.110400pt;}
.fs1_c00239{font-size:53.133867pt;}
.y0_c00239{bottom:0.000000pt;}
.y34_c00239{bottom:39.333333pt;}
.y33_c00239{bottom:227.336000pt;}
.y32_c00239{bottom:241.948000pt;}
.y31_c00239{bottom:256.560000pt;}
.y30_c00239{bottom:271.172000pt;}
.y2f_c00239{bottom:285.784000pt;}
.y2e_c00239{bottom:300.396000pt;}
.y2d_c00239{bottom:315.008000pt;}
.y2c_c00239{bottom:329.620000pt;}
.y2b_c00239{bottom:344.230667pt;}
.y2a_c00239{bottom:358.842667pt;}
.y29_c00239{bottom:373.454667pt;}
.y28_c00239{bottom:402.678667pt;}
.y27_c00239{bottom:417.290667pt;}
.y26_c00239{bottom:431.902667pt;}
.y25_c00239{bottom:461.126667pt;}
.y24_c00239{bottom:475.738667pt;}
.y23_c00239{bottom:490.349333pt;}
.y22_c00239{bottom:504.961333pt;}
.y21_c00239{bottom:519.573333pt;}
.y20_c00239{bottom:534.185333pt;}
.y1f_c00239{bottom:548.797333pt;}
.y1e_c00239{bottom:563.409333pt;}
.y1d_c00239{bottom:578.021333pt;}
.y1c_c00239{bottom:592.633333pt;}
.y1b_c00239{bottom:607.245333pt;}
.y1a_c00239{bottom:621.857333pt;}
.y19_c00239{bottom:636.469333pt;}
.y18_c00239{bottom:651.080000pt;}
.y17_c00239{bottom:665.692000pt;}
.y16_c00239{bottom:680.304000pt;}
.y15_c00239{bottom:694.916000pt;}
.y14_c00239{bottom:709.528000pt;}
.y13_c00239{bottom:724.140000pt;}
.y12_c00239{bottom:738.752000pt;}
.y11_c00239{bottom:753.364000pt;}
.y10_c00239{bottom:767.976000pt;}
.yf_c00239{bottom:782.588000pt;}
.ye_c00239{bottom:797.198667pt;}
.yd_c00239{bottom:811.810667pt;}
.yc_c00239{bottom:826.422667pt;}
.yb_c00239{bottom:855.646667pt;}
.ya_c00239{bottom:884.870667pt;}
.y9_c00239{bottom:899.482667pt;}
.y8_c00239{bottom:914.094667pt;}
.y7_c00239{bottom:943.317333pt;}
.y6_c00239{bottom:957.929333pt;}
.y5_c00239{bottom:972.541333pt;}
.y4_c00239{bottom:987.153333pt;}
.y3_c00239{bottom:1001.765333pt;}
.y2_c00239{bottom:1016.377333pt;}
.y1_c00239{bottom:1030.989333pt;}
.h3_c00239{height:31.280681pt;}
.h2_c00239{height:32.006363pt;}
.h4_c00239{height:46.518078pt;}
.h0_c00239{height:1122.520000pt;}
.h1_c00239{height:1122.666667pt;}
.w0_c00239{width:793.706667pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:121.886667pt;}
.x2_c00239{left:127.796000pt;}
.x4_c00239{left:157.340000pt;}
.x3_c00239{left:186.882667pt;}
.x5_c00239{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4fe3a500b0fb2c8118aa0dc.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:0.893555;font-style:normal;font-weight:normal;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_45e68bffe3cc5c3e80a8a0b8.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_e167aba834514dc27e00c2b6.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_da30de3eef6b1176b2f74a81.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_06ef5eb6b481fe5f05584240.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.048828;font-style: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;}
.ls3_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.087998px;}
.ls2_c00240{letter-spacing:0.098482px;}
.ls1_c00240{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00240{word-spacing:-26.575517px;}
.ws10_c00240{word-spacing:-26.487518px;}
.wsa_c00240{word-spacing:-19.845499px;}
.wse_c00240{word-spacing:-19.367294px;}
.ws8_c00240{word-spacing:-18.832104px;}
.ws7_c00240{word-spacing:-18.829314px;}
.ws5_c00240{word-spacing:-18.769538px;}
.wsd_c00240{word-spacing:-16.916495px;}
.ws4_c00240{word-spacing:-14.943900px;}
.wsb_c00240{word-spacing:-14.764573px;}
.ws9_c00240{word-spacing:-11.432554px;}
.ws6_c00240{word-spacing:-10.002144px;}
.ws1_c00240{word-spacing:-9.988424px;}
.ws3_c00240{word-spacing:-9.987499px;}
.wsc_c00240{word-spacing:-7.499916px;}
.ws13_c00240{word-spacing:0.000000px;}
.ws11_c00240{word-spacing:0.043999px;}
.wsf_c00240{word-spacing:0.175997px;}
.ws12_c00240{word-spacing:0.213446px;}
.ws14_c00240{word-spacing:0.219446px;}
.ws0_c00240{word-spacing:43.038600px;}
._2_c00240{margin-left:-4.701738px;}
._7_c00240{margin-left:-3.287658px;}
._1_c00240{margin-left:-1.075961px;}
._8_c00240{width:1.047451px;}
._6_c00240{width:17.852370px;}
._0_c00240{width:19.935816px;}
._5_c00240{width:25.583957px;}
._3_c00240{width:29.886300px;}
._4_c00240{width:32.039722px;}
.fc5_c00240{color:rgb(79,153,5);}
.fc3_c00240{color:rgb(33,74,135);}
.fc2_c00240{color:rgb(143,89,3);}
.fc4_c00240{color:rgb(207,92,0);}
.fc1_c00240{color:rgb(6,69,173);}
.fc0_c00240{color:rgb(0,0,0);}
.fs2_c00240{font-size:43.999200px;}
.fs1_c00240{font-size:59.775600px;}
.fs0_c00240{font-size:86.077200px;}
.y0_c00240{bottom:0.000000px;}
.y1c_c00240{bottom:44.250000px;}
.y1b_c00240{bottom:86.982000px;}
.y1a_c00240{bottom:103.420500px;}
.y19_c00240{bottom:119.859000px;}
.y18_c00240{bottom:152.736000px;}
.y17_c00240{bottom:185.613000px;}
.y16_c00240{bottom:202.051500px;}
.y15_c00240{bottom:218.490000px;}
.y14_c00240{bottom:251.365500px;}
.y13_c00240{bottom:267.804000px;}
.y12_c00240{bottom:284.242500px;}
.y11_c00240{bottom:300.681000px;}
.y10_c00240{bottom:317.119500px;}
.yf_c00240{bottom:333.184500px;}
.ye_c00240{bottom:381.453000px;}
.yd_c00240{bottom:399.387000px;}
.yc_c00240{bottom:417.319500px;}
.yb_c00240{bottom:435.252000px;}
.ya_c00240{bottom:453.184500px;}
.y9_c00240{bottom:483.123000px;}
.y8_c00240{bottom:513.061500px;}
.y7_c00240{bottom:543.000000px;}
.y6_c00240{bottom:584.905500px;}
.y5_c00240{bottom:611.830500px;}
.y4_c00240{bottom:638.754000px;}
.y3_c00240{bottom:665.679000px;}
.y2_c00240{bottom:692.602500px;}
.y1_c00240{bottom:734.911500px;}
.h5_c00240{height:35.190766px;}
.h6_c00240{height:36.007158px;}
.h3_c00240{height:40.511979px;}
.h4_c00240{height:52.332837px;}
.h2_c00240{height:58.337477px;}
.h0_c00240{height:1262.835000px;}
.h1_c00240{height:1263.000000px;}
.w0_c00240{width:892.920000px;}
.w1_c00240{width:893.250000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:127.558500px;}
.x4_c00240{left:137.122500px;}
.x2_c00240{left:146.239500px;}
.x3_c00240{left:164.919000px;}
.x5_c00240{left:435.249000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls3_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.078221pt;}
.ls2_c00240{letter-spacing:0.087539pt;}
.ls1_c00240{letter-spacing:0.092873pt;}
.ws2_c00240{word-spacing:-23.622682pt;}
.ws10_c00240{word-spacing:-23.544461pt;}
.wsa_c00240{word-spacing:-17.640444pt;}
.wse_c00240{word-spacing:-17.215373pt;}
.ws8_c00240{word-spacing:-16.739648pt;}
.ws7_c00240{word-spacing:-16.737168pt;}
.ws5_c00240{word-spacing:-16.684034pt;}
.wsd_c00240{word-spacing:-15.036884pt;}
.ws4_c00240{word-spacing:-13.283467pt;}
.wsb_c00240{word-spacing:-13.124065pt;}
.ws9_c00240{word-spacing:-10.162270pt;}
.ws6_c00240{word-spacing:-8.890795pt;}
.ws1_c00240{word-spacing:-8.878599pt;}
.ws3_c00240{word-spacing:-8.877777pt;}
.wsc_c00240{word-spacing:-6.666592pt;}
.ws13_c00240{word-spacing:0.000000pt;}
.ws11_c00240{word-spacing:0.039110pt;}
.wsf_c00240{word-spacing:0.156442pt;}
.ws12_c00240{word-spacing:0.189730pt;}
.ws14_c00240{word-spacing:0.195063pt;}
.ws0_c00240{word-spacing:38.256533pt;}
._2_c00240{margin-left:-4.179323pt;}
._7_c00240{margin-left:-2.922363pt;}
._1_c00240{margin-left:-0.956410pt;}
._8_c00240{width:0.931068pt;}
._6_c00240{width:15.868773pt;}
._0_c00240{width:17.720725pt;}
._5_c00240{width:22.741295pt;}
._3_c00240{width:26.565600pt;}
._4_c00240{width:28.479753pt;}
.fs2_c00240{font-size:39.110400pt;}
.fs1_c00240{font-size:53.133867pt;}
.fs0_c00240{font-size:76.513067pt;}
.y0_c00240{bottom:0.000000pt;}
.y1c_c00240{bottom:39.333333pt;}
.y1b_c00240{bottom:77.317333pt;}
.y1a_c00240{bottom:91.929333pt;}
.y19_c00240{bottom:106.541333pt;}
.y18_c00240{bottom:135.765333pt;}
.y17_c00240{bottom:164.989333pt;}
.y16_c00240{bottom:179.601333pt;}
.y15_c00240{bottom:194.213333pt;}
.y14_c00240{bottom:223.436000pt;}
.y13_c00240{bottom:238.048000pt;}
.y12_c00240{bottom:252.660000pt;}
.y11_c00240{bottom:267.272000pt;}
.y10_c00240{bottom:281.884000pt;}
.yf_c00240{bottom:296.164000pt;}
.ye_c00240{bottom:339.069333pt;}
.yd_c00240{bottom:355.010667pt;}
.yc_c00240{bottom:370.950667pt;}
.yb_c00240{bottom:386.890667pt;}
.ya_c00240{bottom:402.830667pt;}
.y9_c00240{bottom:429.442667pt;}
.y8_c00240{bottom:456.054667pt;}
.y7_c00240{bottom:482.666667pt;}
.y6_c00240{bottom:519.916000pt;}
.y5_c00240{bottom:543.849333pt;}
.y4_c00240{bottom:567.781333pt;}
.y3_c00240{bottom:591.714667pt;}
.y2_c00240{bottom:615.646667pt;}
.y1_c00240{bottom:653.254667pt;}
.h5_c00240{height:31.280681pt;}
.h6_c00240{height:32.006363pt;}
.h3_c00240{height:36.010648pt;}
.h4_c00240{height:46.518078pt;}
.h2_c00240{height:51.855535pt;}
.h0_c00240{height:1122.520000pt;}
.h1_c00240{height:1122.666667pt;}
.w0_c00240{width:793.706667pt;}
.w1_c00240{width:794.000000pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:113.385333pt;}
.x4_c00240{left:121.886667pt;}
.x2_c00240{left:129.990667pt;}
.x3_c00240{left:146.594667pt;}
.x5_c00240{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d89ef0ce7c597c9f5ddc4600.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.083496;font-style:normal;font-weight:normal;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_216ded212a9e1fd24dc93918.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.048828;font-style:normal;font-weight:normal;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_ea616173af1d23414aff1f52.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.014648;font-style:normal;font-weight:normal;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_50e67ee22be0b43d30b93ccb.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:0.893555;font-style:normal;font-weight:normal;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_d435f75caad415c180a8d07e.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls4_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:0.087998px;}
.ls1_c00241{letter-spacing:0.098482px;}
.ls2_c00241{letter-spacing:0.104482px;}
.ls3_c00241{letter-spacing:26.690482px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-26.575517px;}
.ws1_c00241{word-spacing:-26.487518px;}
.wsa_c00241{word-spacing:-18.769538px;}
.ws9_c00241{word-spacing:-14.943900px;}
.ws7_c00241{word-spacing:-9.988424px;}
.ws8_c00241{word-spacing:-9.987499px;}
.ws2_c00241{word-spacing:0.000000px;}
.ws3_c00241{word-spacing:0.043999px;}
.ws4_c00241{word-spacing:0.175997px;}
.ws5_c00241{word-spacing:0.213446px;}
.ws6_c00241{word-spacing:43.038600px;}
._0_c00241{width:1.041538px;}
._1_c00241{width:19.935816px;}
.fc5_c00241{color:rgb(207,92,0);}
.fc4_c00241{color:rgb(0,0,207);}
.fc3_c00241{color:rgb(79,153,5);}
.fc2_c00241{color:rgb(33,74,135);}
.fc1_c00241{color:rgb(143,89,3);}
.fc0_c00241{color:rgb(0,0,0);}
.fs0_c00241{font-size:43.999200px;}
.fs2_c00241{font-size:59.775600px;}
.fs1_c00241{font-size:86.077200px;}
.y0_c00241{bottom:0.000000px;}
.y22_c00241{bottom:44.250000px;}
.y21_c00241{bottom:82.051500px;}
.y20_c00241{bottom:108.450000px;}
.y1f_c00241{bottom:134.847000px;}
.y1e_c00241{bottom:161.245500px;}
.y1d_c00241{bottom:203.017500px;}
.y1c_c00241{bottom:666.712500px;}
.y1b_c00241{bottom:683.151000px;}
.y1a_c00241{bottom:699.589500px;}
.y19_c00241{bottom:716.028000px;}
.y18_c00241{bottom:732.465000px;}
.y17_c00241{bottom:748.903500px;}
.y16_c00241{bottom:765.342000px;}
.y15_c00241{bottom:781.780500px;}
.y14_c00241{bottom:798.219000px;}
.y13_c00241{bottom:814.657500px;}
.y12_c00241{bottom:831.096000px;}
.y11_c00241{bottom:863.973000px;}
.y10_c00241{bottom:880.411500px;}
.yf_c00241{bottom:896.848500px;}
.ye_c00241{bottom:929.725500px;}
.yd_c00241{bottom:946.164000px;}
.yc_c00241{bottom:962.602500px;}
.yb_c00241{bottom:979.041000px;}
.ya_c00241{bottom:995.479500px;}
.y9_c00241{bottom:1011.918000px;}
.y8_c00241{bottom:1028.356500px;}
.y7_c00241{bottom:1044.795000px;}
.y6_c00241{bottom:1061.232000px;}
.y5_c00241{bottom:1094.109000px;}
.y4_c00241{bottom:1110.547500px;}
.y3_c00241{bottom:1126.986000px;}
.y2_c00241{bottom:1143.424500px;}
.y1_c00241{bottom:1159.863000px;}
.h3_c00241{height:35.190766px;}
.h2_c00241{height:36.007158px;}
.h5_c00241{height:40.511979px;}
.h6_c00241{height:52.332837px;}
.h4_c00241{height:58.337477px;}
.h0_c00241{height:1262.835000px;}
.h1_c00241{height:1263.000000px;}
.w0_c00241{width:892.920000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x4_c00241{left:127.558500px;}
.x1_c00241{left:137.122500px;}
.x3_c00241{left:177.007500px;}
.x2_c00241{left:183.654000px;}
.x5_c00241{left:435.249000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls4_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:0.078221pt;}
.ls1_c00241{letter-spacing:0.087539pt;}
.ls2_c00241{letter-spacing:0.092873pt;}
.ls3_c00241{letter-spacing:23.724873pt;}
.ws0_c00241{word-spacing:-23.622682pt;}
.ws1_c00241{word-spacing:-23.544461pt;}
.wsa_c00241{word-spacing:-16.684034pt;}
.ws9_c00241{word-spacing:-13.283467pt;}
.ws7_c00241{word-spacing:-8.878599pt;}
.ws8_c00241{word-spacing:-8.877777pt;}
.ws2_c00241{word-spacing:0.000000pt;}
.ws3_c00241{word-spacing:0.039110pt;}
.ws4_c00241{word-spacing:0.156442pt;}
.ws5_c00241{word-spacing:0.189730pt;}
.ws6_c00241{word-spacing:38.256533pt;}
._0_c00241{width:0.925811pt;}
._1_c00241{width:17.720725pt;}
.fs0_c00241{font-size:39.110400pt;}
.fs2_c00241{font-size:53.133867pt;}
.fs1_c00241{font-size:76.513067pt;}
.y0_c00241{bottom:0.000000pt;}
.y22_c00241{bottom:39.333333pt;}
.y21_c00241{bottom:72.934667pt;}
.y20_c00241{bottom:96.400000pt;}
.y1f_c00241{bottom:119.864000pt;}
.y1e_c00241{bottom:143.329333pt;}
.y1d_c00241{bottom:180.460000pt;}
.y1c_c00241{bottom:592.633333pt;}
.y1b_c00241{bottom:607.245333pt;}
.y1a_c00241{bottom:621.857333pt;}
.y19_c00241{bottom:636.469333pt;}
.y18_c00241{bottom:651.080000pt;}
.y17_c00241{bottom:665.692000pt;}
.y16_c00241{bottom:680.304000pt;}
.y15_c00241{bottom:694.916000pt;}
.y14_c00241{bottom:709.528000pt;}
.y13_c00241{bottom:724.140000pt;}
.y12_c00241{bottom:738.752000pt;}
.y11_c00241{bottom:767.976000pt;}
.y10_c00241{bottom:782.588000pt;}
.yf_c00241{bottom:797.198667pt;}
.ye_c00241{bottom:826.422667pt;}
.yd_c00241{bottom:841.034667pt;}
.yc_c00241{bottom:855.646667pt;}
.yb_c00241{bottom:870.258667pt;}
.ya_c00241{bottom:884.870667pt;}
.y9_c00241{bottom:899.482667pt;}
.y8_c00241{bottom:914.094667pt;}
.y7_c00241{bottom:928.706667pt;}
.y6_c00241{bottom:943.317333pt;}
.y5_c00241{bottom:972.541333pt;}
.y4_c00241{bottom:987.153333pt;}
.y3_c00241{bottom:1001.765333pt;}
.y2_c00241{bottom:1016.377333pt;}
.y1_c00241{bottom:1030.989333pt;}
.h3_c00241{height:31.280681pt;}
.h2_c00241{height:32.006363pt;}
.h5_c00241{height:36.010648pt;}
.h6_c00241{height:46.518078pt;}
.h4_c00241{height:51.855535pt;}
.h0_c00241{height:1122.520000pt;}
.h1_c00241{height:1122.666667pt;}
.w0_c00241{width:793.706667pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x4_c00241{left:113.385333pt;}
.x1_c00241{left:121.886667pt;}
.x3_c00241{left:157.340000pt;}
.x2_c00241{left:163.248000pt;}
.x5_c00241{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:0.893555;font-style:normal;font-weight:normal;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_5efef2dc7b34567a7d6b4d46.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.102051;font-style:normal;font-weight:normal;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_303fbb898259ef8d7ffa83ce.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.083496;font-style:normal;font-weight:normal;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_d440547a830edb90985df099.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_e8405acab353b41b42dc9ed6.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.048828;font-style: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;}
.ls4_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.087998px;}
.ls2_c00242{letter-spacing:0.098482px;}
.ls1_c00242{letter-spacing:0.104482px;}
.ls3_c00242{letter-spacing:26.690482px;}
.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;}
}
.ws5_c00242{word-spacing:-26.575517px;}
.wse_c00242{word-spacing:-26.487518px;}
.wsc_c00242{word-spacing:-20.682358px;}
.wsb_c00242{word-spacing:-20.323704px;}
.ws4_c00242{word-spacing:-19.068416px;}
.ws1_c00242{word-spacing:-18.829314px;}
.ws2_c00242{word-spacing:-18.769538px;}
.wsa_c00242{word-spacing:-17.992456px;}
.ws9_c00242{word-spacing:-16.318739px;}
.ws6_c00242{word-spacing:-14.764573px;}
.ws8_c00242{word-spacing:-14.704798px;}
.ws3_c00242{word-spacing:-11.432554px;}
.ws0_c00242{word-spacing:-10.002144px;}
.ws7_c00242{word-spacing:-7.542067px;}
.ws12_c00242{word-spacing:0.000000px;}
.wsf_c00242{word-spacing:0.043999px;}
.wsd_c00242{word-spacing:0.175997px;}
.ws10_c00242{word-spacing:0.213446px;}
.ws11_c00242{word-spacing:0.219446px;}
._6_c00242{margin-left:-4.988956px;}
._5_c00242{margin-left:-2.331248px;}
._0_c00242{margin-left:-1.075961px;}
._8_c00242{width:1.047451px;}
._7_c00242{width:14.226593px;}
._2_c00242{width:20.052407px;}
._3_c00242{width:21.076604px;}
._4_c00242{width:27.317449px;}
._1_c00242{width:29.886300px;}
.fc6_c00242{color:rgb(0,0,207);}
.fc5_c00242{color:rgb(79,153,5);}
.fc3_c00242{color:rgb(33,74,135);}
.fc2_c00242{color:rgb(143,89,3);}
.fc4_c00242{color:rgb(207,92,0);}
.fc1_c00242{color:rgb(6,69,173);}
.fc0_c00242{color:rgb(0,0,0);}
.fs1_c00242{font-size:43.999200px;}
.fs0_c00242{font-size:59.775600px;}
.y0_c00242{bottom:0.000000px;}
.y34_c00242{bottom:44.250000px;}
.y33_c00242{bottom:82.051500px;}
.y32_c00242{bottom:98.490000px;}
.y31_c00242{bottom:114.927000px;}
.y30_c00242{bottom:131.365500px;}
.y2f_c00242{bottom:147.804000px;}
.y2e_c00242{bottom:164.242500px;}
.y2d_c00242{bottom:180.681000px;}
.y2c_c00242{bottom:197.119500px;}
.y2b_c00242{bottom:213.558000px;}
.y2a_c00242{bottom:246.435000px;}
.y29_c00242{bottom:262.873500px;}
.y28_c00242{bottom:279.310500px;}
.y27_c00242{bottom:312.187500px;}
.y26_c00242{bottom:328.626000px;}
.y25_c00242{bottom:345.064500px;}
.y24_c00242{bottom:361.503000px;}
.y23_c00242{bottom:377.941500px;}
.y22_c00242{bottom:394.380000px;}
.y21_c00242{bottom:410.818500px;}
.y20_c00242{bottom:427.257000px;}
.y1f_c00242{bottom:443.694000px;}
.y1e_c00242{bottom:460.132500px;}
.y1d_c00242{bottom:476.571000px;}
.y1c_c00242{bottom:509.448000px;}
.y1b_c00242{bottom:525.886500px;}
.y1a_c00242{bottom:558.763500px;}
.y19_c00242{bottom:575.202000px;}
.y18_c00242{bottom:591.640500px;}
.y17_c00242{bottom:624.516000px;}
.y16_c00242{bottom:640.954500px;}
.y15_c00242{bottom:673.831500px;}
.y14_c00242{bottom:723.147000px;}
.y13_c00242{bottom:739.585500px;}
.y12_c00242{bottom:756.024000px;}
.y11_c00242{bottom:772.462500px;}
.y10_c00242{bottom:821.776500px;}
.yf_c00242{bottom:838.215000px;}
.ye_c00242{bottom:854.653500px;}
.yd_c00242{bottom:871.092000px;}
.yc_c00242{bottom:887.530500px;}
.yb_c00242{bottom:903.595500px;}
.ya_c00242{bottom:951.369000px;}
.y9_c00242{bottom:969.301500px;}
.y8_c00242{bottom:987.234000px;}
.y7_c00242{bottom:1005.166500px;}
.y6_c00242{bottom:1023.100500px;}
.y5_c00242{bottom:1041.033000px;}
.y4_c00242{bottom:1058.965500px;}
.y3_c00242{bottom:1088.709000px;}
.y2_c00242{bottom:1118.452500px;}
.y1_c00242{bottom:1159.863000px;}
.h3_c00242{height:35.190766px;}
.h4_c00242{height:36.007158px;}
.h2_c00242{height:52.332837px;}
.h0_c00242{height:1262.835000px;}
.h1_c00242{height:1263.000000px;}
.w0_c00242{width:892.920000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:127.558500px;}
.x4_c00242{left:137.122500px;}
.x2_c00242{left:146.239500px;}
.x3_c00242{left:164.919000px;}
.x5_c00242{left:210.243000px;}
.x6_c00242{left:435.249000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls4_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.078221pt;}
.ls2_c00242{letter-spacing:0.087539pt;}
.ls1_c00242{letter-spacing:0.092873pt;}
.ls3_c00242{letter-spacing:23.724873pt;}
.ws5_c00242{word-spacing:-23.622682pt;}
.wse_c00242{word-spacing:-23.544461pt;}
.wsc_c00242{word-spacing:-18.384318pt;}
.wsb_c00242{word-spacing:-18.065515pt;}
.ws4_c00242{word-spacing:-16.949703pt;}
.ws1_c00242{word-spacing:-16.737168pt;}
.ws2_c00242{word-spacing:-16.684034pt;}
.wsa_c00242{word-spacing:-15.993294pt;}
.ws9_c00242{word-spacing:-14.505546pt;}
.ws6_c00242{word-spacing:-13.124065pt;}
.ws8_c00242{word-spacing:-13.070931pt;}
.ws3_c00242{word-spacing:-10.162270pt;}
.ws0_c00242{word-spacing:-8.890795pt;}
.ws7_c00242{word-spacing:-6.704060pt;}
.ws12_c00242{word-spacing:0.000000pt;}
.wsf_c00242{word-spacing:0.039110pt;}
.wsd_c00242{word-spacing:0.156442pt;}
.ws10_c00242{word-spacing:0.189730pt;}
.ws11_c00242{word-spacing:0.195063pt;}
._6_c00242{margin-left:-4.434627pt;}
._5_c00242{margin-left:-2.072221pt;}
._0_c00242{margin-left:-0.956410pt;}
._8_c00242{width:0.931068pt;}
._7_c00242{width:12.645860pt;}
._2_c00242{width:17.824362pt;}
._3_c00242{width:18.734759pt;}
._4_c00242{width:24.282177pt;}
._1_c00242{width:26.565600pt;}
.fs1_c00242{font-size:39.110400pt;}
.fs0_c00242{font-size:53.133867pt;}
.y0_c00242{bottom:0.000000pt;}
.y34_c00242{bottom:39.333333pt;}
.y33_c00242{bottom:72.934667pt;}
.y32_c00242{bottom:87.546667pt;}
.y31_c00242{bottom:102.157333pt;}
.y30_c00242{bottom:116.769333pt;}
.y2f_c00242{bottom:131.381333pt;}
.y2e_c00242{bottom:145.993333pt;}
.y2d_c00242{bottom:160.605333pt;}
.y2c_c00242{bottom:175.217333pt;}
.y2b_c00242{bottom:189.829333pt;}
.y2a_c00242{bottom:219.053333pt;}
.y29_c00242{bottom:233.665333pt;}
.y28_c00242{bottom:248.276000pt;}
.y27_c00242{bottom:277.500000pt;}
.y26_c00242{bottom:292.112000pt;}
.y25_c00242{bottom:306.724000pt;}
.y24_c00242{bottom:321.336000pt;}
.y23_c00242{bottom:335.948000pt;}
.y22_c00242{bottom:350.560000pt;}
.y21_c00242{bottom:365.172000pt;}
.y20_c00242{bottom:379.784000pt;}
.y1f_c00242{bottom:394.394667pt;}
.y1e_c00242{bottom:409.006667pt;}
.y1d_c00242{bottom:423.618667pt;}
.y1c_c00242{bottom:452.842667pt;}
.y1b_c00242{bottom:467.454667pt;}
.y1a_c00242{bottom:496.678667pt;}
.y19_c00242{bottom:511.290667pt;}
.y18_c00242{bottom:525.902667pt;}
.y17_c00242{bottom:555.125333pt;}
.y16_c00242{bottom:569.737333pt;}
.y15_c00242{bottom:598.961333pt;}
.y14_c00242{bottom:642.797333pt;}
.y13_c00242{bottom:657.409333pt;}
.y12_c00242{bottom:672.021333pt;}
.y11_c00242{bottom:686.633333pt;}
.y10_c00242{bottom:730.468000pt;}
.yf_c00242{bottom:745.080000pt;}
.ye_c00242{bottom:759.692000pt;}
.yd_c00242{bottom:774.304000pt;}
.yc_c00242{bottom:788.916000pt;}
.yb_c00242{bottom:803.196000pt;}
.ya_c00242{bottom:845.661333pt;}
.y9_c00242{bottom:861.601333pt;}
.y8_c00242{bottom:877.541333pt;}
.y7_c00242{bottom:893.481333pt;}
.y6_c00242{bottom:909.422667pt;}
.y5_c00242{bottom:925.362667pt;}
.y4_c00242{bottom:941.302667pt;}
.y3_c00242{bottom:967.741333pt;}
.y2_c00242{bottom:994.180000pt;}
.y1_c00242{bottom:1030.989333pt;}
.h3_c00242{height:31.280681pt;}
.h4_c00242{height:32.006363pt;}
.h2_c00242{height:46.518078pt;}
.h0_c00242{height:1122.520000pt;}
.h1_c00242{height:1122.666667pt;}
.w0_c00242{width:793.706667pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:113.385333pt;}
.x4_c00242{left:121.886667pt;}
.x2_c00242{left:129.990667pt;}
.x3_c00242{left:146.594667pt;}
.x5_c00242{left:186.882667pt;}
.x6_c00242{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dc03589793b50c46c1ba36e.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.083496;font-style:normal;font-weight:normal;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_59ee1d68cd3fd980af1fb7c0.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:0.893555;font-style:normal;font-weight:normal;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_39bbc3a5d420cbf61a62bdb4.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_dc78893615f02bf40503cbe2.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_578e788bc96e75c4ec6b1af2.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.048828;font-style: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;}
.ls5_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:0.087998px;}
.ls2_c00243{letter-spacing:0.098482px;}
.ls1_c00243{letter-spacing:0.104482px;}
.ls3_c00243{letter-spacing:0.146482px;}
.ls4_c00243{letter-spacing:26.690482px;}
.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:-26.575517px;}
.wsd_c00243{word-spacing:-26.487518px;}
.wsa_c00243{word-spacing:-19.845499px;}
.ws9_c00243{word-spacing:-19.785724px;}
.ws7_c00243{word-spacing:-19.367294px;}
.ws8_c00243{word-spacing:-19.307519px;}
.ws5_c00243{word-spacing:-18.769538px;}
.wsb_c00243{word-spacing:-15.362329px;}
.ws4_c00243{word-spacing:-14.943900px;}
.ws6_c00243{word-spacing:-10.278144px;}
.ws2_c00243{word-spacing:-9.988424px;}
.ws3_c00243{word-spacing:-9.987499px;}
.ws11_c00243{word-spacing:0.000000px;}
.wse_c00243{word-spacing:0.043999px;}
.wsc_c00243{word-spacing:0.175997px;}
.wsf_c00243{word-spacing:0.213446px;}
.ws10_c00243{word-spacing:0.219446px;}
.ws1_c00243{word-spacing:43.038600px;}
._0_c00243{margin-left:-6.369713px;}
._3_c00243{margin-left:-4.195751px;}
._1_c00243{margin-left:-1.549390px;}
._5_c00243{width:1.005737px;}
._2_c00243{width:19.935816px;}
._4_c00243{width:30.784434px;}
._6_c00243{width:80.034545px;}
.fc6_c00243{color:rgb(0,0,207);}
.fc5_c00243{color:rgb(79,153,5);}
.fc4_c00243{color:rgb(207,92,0);}
.fc3_c00243{color:rgb(6,69,173);}
.fc2_c00243{color:rgb(143,89,3);}
.fc1_c00243{color:rgb(0,0,0);}
.fc0_c00243{color:rgb(33,74,135);}
.fs0_c00243{font-size:43.999200px;}
.fs2_c00243{font-size:59.775600px;}
.fs1_c00243{font-size:86.077200px;}
.y0_c00243{bottom:0.000000px;}
.y20_c00243{bottom:44.250000px;}
.y1f_c00243{bottom:82.051500px;}
.y1e_c00243{bottom:98.490000px;}
.y1d_c00243{bottom:131.365500px;}
.y1c_c00243{bottom:147.804000px;}
.y1b_c00243{bottom:164.242500px;}
.y1a_c00243{bottom:180.681000px;}
.y19_c00243{bottom:197.119500px;}
.y18_c00243{bottom:213.558000px;}
.y17_c00243{bottom:229.996500px;}
.y16_c00243{bottom:246.435000px;}
.y15_c00243{bottom:262.873500px;}
.y14_c00243{bottom:279.310500px;}
.y13_c00243{bottom:295.749000px;}
.y12_c00243{bottom:312.187500px;}
.y11_c00243{bottom:328.626000px;}
.y10_c00243{bottom:345.064500px;}
.yf_c00243{bottom:361.503000px;}
.ye_c00243{bottom:394.380000px;}
.yd_c00243{bottom:410.818500px;}
.yc_c00243{bottom:426.883500px;}
.yb_c00243{bottom:474.883500px;}
.ya_c00243{bottom:492.816000px;}
.y9_c00243{bottom:510.750000px;}
.y8_c00243{bottom:528.682500px;}
.y7_c00243{bottom:555.547500px;}
.y6_c00243{bottom:582.412500px;}
.y5_c00243{bottom:609.277500px;}
.y4_c00243{bottom:636.141000px;}
.y3_c00243{bottom:678.379500px;}
.y2_c00243{bottom:1143.424500px;}
.y1_c00243{bottom:1159.863000px;}
.h6_c00243{height:35.190766px;}
.h2_c00243{height:36.007158px;}
.h4_c00243{height:40.511979px;}
.h5_c00243{height:52.332837px;}
.h3_c00243{height:58.337477px;}
.h0_c00243{height:1262.835000px;}
.h1_c00243{height:1263.000000px;}
.w0_c00243{width:892.920000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:127.558500px;}
.x3_c00243{left:137.122500px;}
.x1_c00243{left:177.007500px;}
.x4_c00243{left:210.243000px;}
.x5_c00243{left:435.249000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls5_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:0.078221pt;}
.ls2_c00243{letter-spacing:0.087539pt;}
.ls1_c00243{letter-spacing:0.092873pt;}
.ls3_c00243{letter-spacing:0.130206pt;}
.ls4_c00243{letter-spacing:23.724873pt;}
.ws0_c00243{word-spacing:-23.622682pt;}
.wsd_c00243{word-spacing:-23.544461pt;}
.wsa_c00243{word-spacing:-17.640444pt;}
.ws9_c00243{word-spacing:-17.587310pt;}
.ws7_c00243{word-spacing:-17.215373pt;}
.ws8_c00243{word-spacing:-17.162239pt;}
.ws5_c00243{word-spacing:-16.684034pt;}
.wsb_c00243{word-spacing:-13.655404pt;}
.ws4_c00243{word-spacing:-13.283467pt;}
.ws6_c00243{word-spacing:-9.136128pt;}
.ws2_c00243{word-spacing:-8.878599pt;}
.ws3_c00243{word-spacing:-8.877777pt;}
.ws11_c00243{word-spacing:0.000000pt;}
.wse_c00243{word-spacing:0.039110pt;}
.wsc_c00243{word-spacing:0.156442pt;}
.wsf_c00243{word-spacing:0.189730pt;}
.ws10_c00243{word-spacing:0.195063pt;}
.ws1_c00243{word-spacing:38.256533pt;}
._0_c00243{margin-left:-5.661967pt;}
._3_c00243{margin-left:-3.729556pt;}
._1_c00243{margin-left:-1.377235pt;}
._5_c00243{width:0.893988pt;}
._2_c00243{width:17.720725pt;}
._4_c00243{width:27.363941pt;}
._6_c00243{width:71.141818pt;}
.fs0_c00243{font-size:39.110400pt;}
.fs2_c00243{font-size:53.133867pt;}
.fs1_c00243{font-size:76.513067pt;}
.y0_c00243{bottom:0.000000pt;}
.y20_c00243{bottom:39.333333pt;}
.y1f_c00243{bottom:72.934667pt;}
.y1e_c00243{bottom:87.546667pt;}
.y1d_c00243{bottom:116.769333pt;}
.y1c_c00243{bottom:131.381333pt;}
.y1b_c00243{bottom:145.993333pt;}
.y1a_c00243{bottom:160.605333pt;}
.y19_c00243{bottom:175.217333pt;}
.y18_c00243{bottom:189.829333pt;}
.y17_c00243{bottom:204.441333pt;}
.y16_c00243{bottom:219.053333pt;}
.y15_c00243{bottom:233.665333pt;}
.y14_c00243{bottom:248.276000pt;}
.y13_c00243{bottom:262.888000pt;}
.y12_c00243{bottom:277.500000pt;}
.y11_c00243{bottom:292.112000pt;}
.y10_c00243{bottom:306.724000pt;}
.yf_c00243{bottom:321.336000pt;}
.ye_c00243{bottom:350.560000pt;}
.yd_c00243{bottom:365.172000pt;}
.yc_c00243{bottom:379.452000pt;}
.yb_c00243{bottom:422.118667pt;}
.ya_c00243{bottom:438.058667pt;}
.y9_c00243{bottom:454.000000pt;}
.y8_c00243{bottom:469.940000pt;}
.y7_c00243{bottom:493.820000pt;}
.y6_c00243{bottom:517.700000pt;}
.y5_c00243{bottom:541.580000pt;}
.y4_c00243{bottom:565.458667pt;}
.y3_c00243{bottom:603.004000pt;}
.y2_c00243{bottom:1016.377333pt;}
.y1_c00243{bottom:1030.989333pt;}
.h6_c00243{height:31.280681pt;}
.h2_c00243{height:32.006363pt;}
.h4_c00243{height:36.010648pt;}
.h5_c00243{height:46.518078pt;}
.h3_c00243{height:51.855535pt;}
.h0_c00243{height:1122.520000pt;}
.h1_c00243{height:1122.666667pt;}
.w0_c00243{width:793.706667pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:113.385333pt;}
.x3_c00243{left:121.886667pt;}
.x1_c00243{left:157.340000pt;}
.x4_c00243{left:186.882667pt;}
.x5_c00243{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.048828;font-style:normal;font-weight:normal;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_fdfb310bd16f041f6ee2df84.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.083496;font-style:normal;font-weight:normal;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_cf18e23be0adfb86b5acf747.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.893555;font-style:normal;font-weight:normal;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_eb66313af4b76ffbe22d3043.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.102051;font-style: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;}
.ls3_c00244{letter-spacing:0.000000px;}
.ls1_c00244{letter-spacing:0.087998px;}
.ls2_c00244{letter-spacing:0.098482px;}
.ls0_c00244{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws0_c00244{word-spacing:-26.487518px;}
.wse_c00244{word-spacing:-20.742133px;}
.wsd_c00244{word-spacing:-19.845499px;}
.wsb_c00244{word-spacing:-18.832104px;}
.wsa_c00244{word-spacing:-18.829314px;}
.ws8_c00244{word-spacing:-18.769538px;}
.ws10_c00244{word-spacing:-16.677392px;}
.ws11_c00244{word-spacing:-15.362329px;}
.ws7_c00244{word-spacing:-14.943900px;}
.wsf_c00244{word-spacing:-13.543915px;}
.wsc_c00244{word-spacing:-11.432554px;}
.ws9_c00244{word-spacing:-10.002144px;}
.ws5_c00244{word-spacing:-9.988424px;}
.ws6_c00244{word-spacing:-9.987499px;}
.ws12_c00244{word-spacing:0.000000px;}
.ws2_c00244{word-spacing:0.043999px;}
.ws3_c00244{word-spacing:0.213446px;}
.ws4_c00244{word-spacing:43.038600px;}
._1_c00244{margin-left:-4.734246px;}
._5_c00244{margin-left:-3.519168px;}
._3_c00244{margin-left:-1.075961px;}
._0_c00244{width:1.041538px;}
._2_c00244{width:19.935816px;}
._6_c00244{width:26.121937px;}
._4_c00244{width:29.886300px;}
.fc5_c00244{color:rgb(0,0,207);}
.fc4_c00244{color:rgb(143,89,3);}
.fc3_c00244{color:rgb(79,153,5);}
.fc6_c00244{color:rgb(6,69,173);}
.fc2_c00244{color:rgb(207,92,0);}
.fc1_c00244{color:rgb(0,0,0);}
.fc0_c00244{color:rgb(33,74,135);}
.fs0_c00244{font-size:43.999200px;}
.fs2_c00244{font-size:59.775600px;}
.fs1_c00244{font-size:86.077200px;}
.y0_c00244{bottom:0.000000px;}
.y1d_c00244{bottom:44.250000px;}
.y1c_c00244{bottom:82.051500px;}
.y1b_c00244{bottom:99.984000px;}
.y1a_c00244{bottom:130.099500px;}
.y19_c00244{bottom:148.032000px;}
.y18_c00244{bottom:165.964500px;}
.y17_c00244{bottom:183.897000px;}
.y16_c00244{bottom:214.012500px;}
.y15_c00244{bottom:244.128000px;}
.y14_c00244{bottom:274.245000px;}
.y13_c00244{bottom:304.360500px;}
.y12_c00244{bottom:346.488000px;}
.y11_c00244{bottom:373.500000px;}
.y10_c00244{bottom:400.513500px;}
.yf_c00244{bottom:427.527000px;}
.ye_c00244{bottom:454.539000px;}
.yd_c00244{bottom:496.977000px;}
.yc_c00244{bottom:962.602500px;}
.yb_c00244{bottom:979.041000px;}
.ya_c00244{bottom:995.479500px;}
.y9_c00244{bottom:1011.918000px;}
.y8_c00244{bottom:1028.356500px;}
.y7_c00244{bottom:1044.795000px;}
.y6_c00244{bottom:1061.232000px;}
.y5_c00244{bottom:1077.670500px;}
.y4_c00244{bottom:1094.109000px;}
.y3_c00244{bottom:1110.547500px;}
.y2_c00244{bottom:1126.986000px;}
.y1_c00244{bottom:1159.863000px;}
.h2_c00244{height:36.007158px;}
.h4_c00244{height:40.511979px;}
.h5_c00244{height:52.332837px;}
.h3_c00244{height:58.337477px;}
.h0_c00244{height:1262.835000px;}
.h1_c00244{height:1263.000000px;}
.w0_c00244{width:892.920000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x3_c00244{left:127.558500px;}
.x1_c00244{left:137.122500px;}
.x4_c00244{left:146.239500px;}
.x5_c00244{left:164.919000px;}
.x2_c00244{left:177.007500px;}
.x6_c00244{left:435.249000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls3_c00244{letter-spacing:0.000000pt;}
.ls1_c00244{letter-spacing:0.078221pt;}
.ls2_c00244{letter-spacing:0.087539pt;}
.ls0_c00244{letter-spacing:0.092873pt;}
.ws1_c00244{word-spacing:-23.622682pt;}
.ws0_c00244{word-spacing:-23.544461pt;}
.wse_c00244{word-spacing:-18.437452pt;}
.wsd_c00244{word-spacing:-17.640444pt;}
.wsb_c00244{word-spacing:-16.739648pt;}
.wsa_c00244{word-spacing:-16.737168pt;}
.ws8_c00244{word-spacing:-16.684034pt;}
.ws10_c00244{word-spacing:-14.824349pt;}
.ws11_c00244{word-spacing:-13.655404pt;}
.ws7_c00244{word-spacing:-13.283467pt;}
.wsf_c00244{word-spacing:-12.039036pt;}
.wsc_c00244{word-spacing:-10.162270pt;}
.ws9_c00244{word-spacing:-8.890795pt;}
.ws5_c00244{word-spacing:-8.878599pt;}
.ws6_c00244{word-spacing:-8.877777pt;}
.ws12_c00244{word-spacing:0.000000pt;}
.ws2_c00244{word-spacing:0.039110pt;}
.ws3_c00244{word-spacing:0.189730pt;}
.ws4_c00244{word-spacing:38.256533pt;}
._1_c00244{margin-left:-4.208219pt;}
._5_c00244{margin-left:-3.128149pt;}
._3_c00244{margin-left:-0.956410pt;}
._0_c00244{width:0.925811pt;}
._2_c00244{width:17.720725pt;}
._6_c00244{width:23.219500pt;}
._4_c00244{width:26.565600pt;}
.fs0_c00244{font-size:39.110400pt;}
.fs2_c00244{font-size:53.133867pt;}
.fs1_c00244{font-size:76.513067pt;}
.y0_c00244{bottom:0.000000pt;}
.y1d_c00244{bottom:39.333333pt;}
.y1c_c00244{bottom:72.934667pt;}
.y1b_c00244{bottom:88.874667pt;}
.y1a_c00244{bottom:115.644000pt;}
.y19_c00244{bottom:131.584000pt;}
.y18_c00244{bottom:147.524000pt;}
.y17_c00244{bottom:163.464000pt;}
.y16_c00244{bottom:190.233333pt;}
.y15_c00244{bottom:217.002667pt;}
.y14_c00244{bottom:243.773333pt;}
.y13_c00244{bottom:270.542667pt;}
.y12_c00244{bottom:307.989333pt;}
.y11_c00244{bottom:332.000000pt;}
.y10_c00244{bottom:356.012000pt;}
.yf_c00244{bottom:380.024000pt;}
.ye_c00244{bottom:404.034667pt;}
.yd_c00244{bottom:441.757333pt;}
.yc_c00244{bottom:855.646667pt;}
.yb_c00244{bottom:870.258667pt;}
.ya_c00244{bottom:884.870667pt;}
.y9_c00244{bottom:899.482667pt;}
.y8_c00244{bottom:914.094667pt;}
.y7_c00244{bottom:928.706667pt;}
.y6_c00244{bottom:943.317333pt;}
.y5_c00244{bottom:957.929333pt;}
.y4_c00244{bottom:972.541333pt;}
.y3_c00244{bottom:987.153333pt;}
.y2_c00244{bottom:1001.765333pt;}
.y1_c00244{bottom:1030.989333pt;}
.h2_c00244{height:32.006363pt;}
.h4_c00244{height:36.010648pt;}
.h5_c00244{height:46.518078pt;}
.h3_c00244{height:51.855535pt;}
.h0_c00244{height:1122.520000pt;}
.h1_c00244{height:1122.666667pt;}
.w0_c00244{width:793.706667pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x3_c00244{left:113.385333pt;}
.x1_c00244{left:121.886667pt;}
.x4_c00244{left:129.990667pt;}
.x5_c00244{left:146.594667pt;}
.x2_c00244{left:157.340000pt;}
.x6_c00244{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a0946c7c37f53a0c7c02be4.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.014648;font-style:normal;font-weight:normal;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_85563f4e79383a4a63cf1d8c.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_23ae57840dcffbad223a2d75.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_d8d8e23aee23e581b9aa501b.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_f1cfadf91a428106c4937eb9.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.102051;font-style: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);}
.v1_c00245{vertical-align:-12.258000px;}
.v0_c00245{vertical-align:0.000000px;}
.ls4_c00245{letter-spacing:0.000000px;}
.ls1_c00245{letter-spacing:0.087998px;}
.ls2_c00245{letter-spacing:0.098482px;}
.ls0_c00245{letter-spacing:0.104482px;}
.ls3_c00245{letter-spacing:26.690482px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00245{word-spacing:-26.575517px;}
.ws1_c00245{word-spacing:-26.487518px;}
.ws7_c00245{word-spacing:-19.176617px;}
.ws5_c00245{word-spacing:0.000000px;}
.ws3_c00245{word-spacing:0.043999px;}
.ws8_c00245{word-spacing:0.074350px;}
.ws0_c00245{word-spacing:0.175997px;}
.ws4_c00245{word-spacing:0.213446px;}
.ws6_c00245{word-spacing:0.219446px;}
._1_c00245{margin-left:-562.373304px;}
._0_c00245{width:1.047451px;}
.fc5_c00245{color:rgb(0,0,207);}
.fc4_c00245{color:rgb(79,153,5);}
.fc3_c00245{color:rgb(207,92,0);}
.fc2_c00245{color:rgb(0,0,0);}
.fc1_c00245{color:rgb(33,74,135);}
.fc0_c00245{color:rgb(143,89,3);}
.fs2_c00245{font-size:31.015800px;}
.fs1_c00245{font-size:37.218600px;}
.fs0_c00245{font-size:43.999200px;}
.fs3_c00245{font-size:59.775600px;}
.y0_c00245{bottom:0.000000px;}
.y31_c00245{bottom:44.250000px;}
.y30_c00245{bottom:250.512000px;}
.y2f_c00245{bottom:266.950500px;}
.y2e_c00245{bottom:283.389000px;}
.y2d_c00245{bottom:299.827500px;}
.y2c_c00245{bottom:316.266000px;}
.y2b_c00245{bottom:332.703000px;}
.y2a_c00245{bottom:349.141500px;}
.y29_c00245{bottom:365.580000px;}
.y28_c00245{bottom:382.018500px;}
.y27_c00245{bottom:398.457000px;}
.y26_c00245{bottom:414.895500px;}
.y25_c00245{bottom:447.772500px;}
.y24_c00245{bottom:464.211000px;}
.y23_c00245{bottom:480.649500px;}
.y22_c00245{bottom:513.525000px;}
.y21_c00245{bottom:529.963500px;}
.y20_c00245{bottom:546.402000px;}
.y1f_c00245{bottom:562.840500px;}
.y1e_c00245{bottom:579.279000px;}
.y1d_c00245{bottom:595.717500px;}
.y1c_c00245{bottom:612.156000px;}
.y1b_c00245{bottom:628.594500px;}
.y1a_c00245{bottom:645.033000px;}
.y19_c00245{bottom:677.908500px;}
.y18_c00245{bottom:694.347000px;}
.y17_c00245{bottom:710.785500px;}
.y16_c00245{bottom:727.224000px;}
.y15_c00245{bottom:743.662500px;}
.y14_c00245{bottom:760.101000px;}
.y13_c00245{bottom:776.539500px;}
.y12_c00245{bottom:792.978000px;}
.y11_c00245{bottom:809.416500px;}
.y10_c00245{bottom:825.855000px;}
.yf_c00245{bottom:842.293500px;}
.ye_c00245{bottom:858.730500px;}
.yd_c00245{bottom:874.795500px;}
.yc_c00245{bottom:893.188500px;}
.yb_c00245{bottom:909.627000px;}
.ya_c00245{bottom:942.502500px;}
.y9_c00245{bottom:991.818000px;}
.y8_c00245{bottom:1008.256500px;}
.y7_c00245{bottom:1024.695000px;}
.y6_c00245{bottom:1057.572000px;}
.y5_c00245{bottom:1074.010500px;}
.y4_c00245{bottom:1090.447500px;}
.y3_c00245{bottom:1106.886000px;}
.y2_c00245{bottom:1123.324500px;}
.y1_c00245{bottom:1139.389500px;}
.h2_c00245{height:35.190766px;}
.h3_c00245{height:36.007158px;}
.h4_c00245{height:52.332837px;}
.h0_c00245{height:1262.835000px;}
.h1_c00245{height:1263.000000px;}
.w0_c00245{width:892.920000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:137.122500px;}
.x3_c00245{left:143.770500px;}
.x2_c00245{left:163.713000px;}
.x5_c00245{left:177.007500px;}
.x4_c00245{left:210.243000px;}
.x6_c00245{left:435.249000px;}
@media print{
.v1_c00245{vertical-align:-10.896000pt;}
.v0_c00245{vertical-align:0.000000pt;}
.ls4_c00245{letter-spacing:0.000000pt;}
.ls1_c00245{letter-spacing:0.078221pt;}
.ls2_c00245{letter-spacing:0.087539pt;}
.ls0_c00245{letter-spacing:0.092873pt;}
.ls3_c00245{letter-spacing:23.724873pt;}
.ws2_c00245{word-spacing:-23.622682pt;}
.ws1_c00245{word-spacing:-23.544461pt;}
.ws7_c00245{word-spacing:-17.045882pt;}
.ws5_c00245{word-spacing:0.000000pt;}
.ws3_c00245{word-spacing:0.039110pt;}
.ws8_c00245{word-spacing:0.066089pt;}
.ws0_c00245{word-spacing:0.156442pt;}
.ws4_c00245{word-spacing:0.189730pt;}
.ws6_c00245{word-spacing:0.195063pt;}
._1_c00245{margin-left:-499.887381pt;}
._0_c00245{width:0.931068pt;}
.fs2_c00245{font-size:27.569600pt;}
.fs1_c00245{font-size:33.083200pt;}
.fs0_c00245{font-size:39.110400pt;}
.fs3_c00245{font-size:53.133867pt;}
.y0_c00245{bottom:0.000000pt;}
.y31_c00245{bottom:39.333333pt;}
.y30_c00245{bottom:222.677333pt;}
.y2f_c00245{bottom:237.289333pt;}
.y2e_c00245{bottom:251.901333pt;}
.y2d_c00245{bottom:266.513333pt;}
.y2c_c00245{bottom:281.125333pt;}
.y2b_c00245{bottom:295.736000pt;}
.y2a_c00245{bottom:310.348000pt;}
.y29_c00245{bottom:324.960000pt;}
.y28_c00245{bottom:339.572000pt;}
.y27_c00245{bottom:354.184000pt;}
.y26_c00245{bottom:368.796000pt;}
.y25_c00245{bottom:398.020000pt;}
.y24_c00245{bottom:412.632000pt;}
.y23_c00245{bottom:427.244000pt;}
.y22_c00245{bottom:456.466667pt;}
.y21_c00245{bottom:471.078667pt;}
.y20_c00245{bottom:485.690667pt;}
.y1f_c00245{bottom:500.302667pt;}
.y1e_c00245{bottom:514.914667pt;}
.y1d_c00245{bottom:529.526667pt;}
.y1c_c00245{bottom:544.138667pt;}
.y1b_c00245{bottom:558.750667pt;}
.y1a_c00245{bottom:573.362667pt;}
.y19_c00245{bottom:602.585333pt;}
.y18_c00245{bottom:617.197333pt;}
.y17_c00245{bottom:631.809333pt;}
.y16_c00245{bottom:646.421333pt;}
.y15_c00245{bottom:661.033333pt;}
.y14_c00245{bottom:675.645333pt;}
.y13_c00245{bottom:690.257333pt;}
.y12_c00245{bottom:704.869333pt;}
.y11_c00245{bottom:719.481333pt;}
.y10_c00245{bottom:734.093333pt;}
.yf_c00245{bottom:748.705333pt;}
.ye_c00245{bottom:763.316000pt;}
.yd_c00245{bottom:777.596000pt;}
.yc_c00245{bottom:793.945333pt;}
.yb_c00245{bottom:808.557333pt;}
.ya_c00245{bottom:837.780000pt;}
.y9_c00245{bottom:881.616000pt;}
.y8_c00245{bottom:896.228000pt;}
.y7_c00245{bottom:910.840000pt;}
.y6_c00245{bottom:940.064000pt;}
.y5_c00245{bottom:954.676000pt;}
.y4_c00245{bottom:969.286667pt;}
.y3_c00245{bottom:983.898667pt;}
.y2_c00245{bottom:998.510667pt;}
.y1_c00245{bottom:1012.790667pt;}
.h2_c00245{height:31.280681pt;}
.h3_c00245{height:32.006363pt;}
.h4_c00245{height:46.518078pt;}
.h0_c00245{height:1122.520000pt;}
.h1_c00245{height:1122.666667pt;}
.w0_c00245{width:793.706667pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:121.886667pt;}
.x3_c00245{left:127.796000pt;}
.x2_c00245{left:145.522667pt;}
.x5_c00245{left:157.340000pt;}
.x4_c00245{left:186.882667pt;}
.x6_c00245{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d32a7fd6e4c240ec7036b60.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:0.893555;font-style:normal;font-weight:normal;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_fd699e1818707336e28fe243.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.083496;font-style:normal;font-weight:normal;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_b845108a099c0cd7b7df8cec.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.102051;font-style:normal;font-weight:normal;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_be128d3c6dae350b2dd9e545.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.014648;font-style:normal;font-weight:normal;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_4bac4738ccad2b9ddcc4e05f.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.048828;font-style: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;}
.ls4_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.087998px;}
.ls2_c00246{letter-spacing:0.098482px;}
.ls1_c00246{letter-spacing:0.104482px;}
.ls3_c00246{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00246{word-spacing:-26.575517px;}
.wsb_c00246{word-spacing:-26.487518px;}
.ws5_c00246{word-spacing:-18.769538px;}
.ws8_c00246{word-spacing:-15.003676px;}
.ws4_c00246{word-spacing:-14.943900px;}
.ws7_c00246{word-spacing:-14.764573px;}
.ws9_c00246{word-spacing:-12.313774px;}
.ws1_c00246{word-spacing:-9.988424px;}
.ws3_c00246{word-spacing:-9.987499px;}
.ws6_c00246{word-spacing:-1.980144px;}
.wsf_c00246{word-spacing:0.000000px;}
.wsc_c00246{word-spacing:0.043999px;}
.wsa_c00246{word-spacing:0.175997px;}
.wsd_c00246{word-spacing:0.213446px;}
.wse_c00246{word-spacing:0.219446px;}
.ws0_c00246{word-spacing:43.038600px;}
._0_c00246{margin-left:-4.734246px;}
._6_c00246{margin-left:-3.287658px;}
._2_c00246{margin-left:-1.075961px;}
._7_c00246{width:1.005737px;}
._1_c00246{width:19.935816px;}
._5_c00246{width:23.802662px;}
._3_c00246{width:31.262639px;}
._4_c00246{width:39.033467px;}
._8_c00246{width:80.034545px;}
.fc6_c00246{color:rgb(0,0,207);}
.fc5_c00246{color:rgb(79,153,5);}
.fc3_c00246{color:rgb(33,74,135);}
.fc2_c00246{color:rgb(143,89,3);}
.fc4_c00246{color:rgb(207,92,0);}
.fc1_c00246{color:rgb(6,69,173);}
.fc0_c00246{color:rgb(0,0,0);}
.fs2_c00246{font-size:43.999200px;}
.fs1_c00246{font-size:59.775600px;}
.fs0_c00246{font-size:86.077200px;}
.y0_c00246{bottom:0.000000px;}
.y20_c00246{bottom:44.250000px;}
.y1f_c00246{bottom:86.982000px;}
.y1e_c00246{bottom:119.859000px;}
.y1d_c00246{bottom:136.297500px;}
.y1c_c00246{bottom:152.736000px;}
.y1b_c00246{bottom:185.613000px;}
.y1a_c00246{bottom:202.051500px;}
.y19_c00246{bottom:218.490000px;}
.y18_c00246{bottom:234.927000px;}
.y17_c00246{bottom:251.365500px;}
.y16_c00246{bottom:267.804000px;}
.y15_c00246{bottom:284.242500px;}
.y14_c00246{bottom:300.681000px;}
.y13_c00246{bottom:317.119500px;}
.y12_c00246{bottom:333.558000px;}
.y11_c00246{bottom:349.996500px;}
.y10_c00246{bottom:366.435000px;}
.yf_c00246{bottom:382.873500px;}
.ye_c00246{bottom:399.310500px;}
.yd_c00246{bottom:415.749000px;}
.yc_c00246{bottom:448.626000px;}
.yb_c00246{bottom:465.064500px;}
.ya_c00246{bottom:481.129500px;}
.y9_c00246{bottom:529.780500px;}
.y8_c00246{bottom:547.713000px;}
.y7_c00246{bottom:565.647000px;}
.y6_c00246{bottom:583.579500px;}
.y5_c00246{bottom:610.656000px;}
.y4_c00246{bottom:637.732500px;}
.y3_c00246{bottom:664.810500px;}
.y2_c00246{bottom:691.887000px;}
.y1_c00246{bottom:734.416500px;}
.h5_c00246{height:35.190766px;}
.h6_c00246{height:36.007158px;}
.h3_c00246{height:40.511979px;}
.h4_c00246{height:52.332837px;}
.h2_c00246{height:58.337477px;}
.h0_c00246{height:1262.835000px;}
.h1_c00246{height:1263.000000px;}
.w0_c00246{width:892.920000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:127.558500px;}
.x2_c00246{left:137.122500px;}
.x3_c00246{left:210.243000px;}
.x4_c00246{left:435.249000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls4_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.078221pt;}
.ls2_c00246{letter-spacing:0.087539pt;}
.ls1_c00246{letter-spacing:0.092873pt;}
.ls3_c00246{letter-spacing:23.724873pt;}
.ws2_c00246{word-spacing:-23.622682pt;}
.wsb_c00246{word-spacing:-23.544461pt;}
.ws5_c00246{word-spacing:-16.684034pt;}
.ws8_c00246{word-spacing:-13.336601pt;}
.ws4_c00246{word-spacing:-13.283467pt;}
.ws7_c00246{word-spacing:-13.124065pt;}
.ws9_c00246{word-spacing:-10.945577pt;}
.ws1_c00246{word-spacing:-8.878599pt;}
.ws3_c00246{word-spacing:-8.877777pt;}
.ws6_c00246{word-spacing:-1.760128pt;}
.wsf_c00246{word-spacing:0.000000pt;}
.wsc_c00246{word-spacing:0.039110pt;}
.wsa_c00246{word-spacing:0.156442pt;}
.wsd_c00246{word-spacing:0.189730pt;}
.wse_c00246{word-spacing:0.195063pt;}
.ws0_c00246{word-spacing:38.256533pt;}
._0_c00246{margin-left:-4.208219pt;}
._6_c00246{margin-left:-2.922363pt;}
._2_c00246{margin-left:-0.956410pt;}
._7_c00246{width:0.893988pt;}
._1_c00246{width:17.720725pt;}
._5_c00246{width:21.157922pt;}
._3_c00246{width:27.789012pt;}
._4_c00246{width:34.696415pt;}
._8_c00246{width:71.141818pt;}
.fs2_c00246{font-size:39.110400pt;}
.fs1_c00246{font-size:53.133867pt;}
.fs0_c00246{font-size:76.513067pt;}
.y0_c00246{bottom:0.000000pt;}
.y20_c00246{bottom:39.333333pt;}
.y1f_c00246{bottom:77.317333pt;}
.y1e_c00246{bottom:106.541333pt;}
.y1d_c00246{bottom:121.153333pt;}
.y1c_c00246{bottom:135.765333pt;}
.y1b_c00246{bottom:164.989333pt;}
.y1a_c00246{bottom:179.601333pt;}
.y19_c00246{bottom:194.213333pt;}
.y18_c00246{bottom:208.824000pt;}
.y17_c00246{bottom:223.436000pt;}
.y16_c00246{bottom:238.048000pt;}
.y15_c00246{bottom:252.660000pt;}
.y14_c00246{bottom:267.272000pt;}
.y13_c00246{bottom:281.884000pt;}
.y12_c00246{bottom:296.496000pt;}
.y11_c00246{bottom:311.108000pt;}
.y10_c00246{bottom:325.720000pt;}
.yf_c00246{bottom:340.332000pt;}
.ye_c00246{bottom:354.942667pt;}
.yd_c00246{bottom:369.554667pt;}
.yc_c00246{bottom:398.778667pt;}
.yb_c00246{bottom:413.390667pt;}
.ya_c00246{bottom:427.670667pt;}
.y9_c00246{bottom:470.916000pt;}
.y8_c00246{bottom:486.856000pt;}
.y7_c00246{bottom:502.797333pt;}
.y6_c00246{bottom:518.737333pt;}
.y5_c00246{bottom:542.805333pt;}
.y4_c00246{bottom:566.873333pt;}
.y3_c00246{bottom:590.942667pt;}
.y2_c00246{bottom:615.010667pt;}
.y1_c00246{bottom:652.814667pt;}
.h5_c00246{height:31.280681pt;}
.h6_c00246{height:32.006363pt;}
.h3_c00246{height:36.010648pt;}
.h4_c00246{height:46.518078pt;}
.h2_c00246{height:51.855535pt;}
.h0_c00246{height:1122.520000pt;}
.h1_c00246{height:1122.666667pt;}
.w0_c00246{width:793.706667pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:113.385333pt;}
.x2_c00246{left:121.886667pt;}
.x3_c00246{left:186.882667pt;}
.x4_c00246{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4df07e8bd9499cd3b54eae4a.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.083496;font-style:normal;font-weight:normal;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_356f6fc89b2b856ea31f27d2.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.048828;font-style:normal;font-weight:normal;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_151268b925a354de0586bd93.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:0.893555;font-style:normal;font-weight:normal;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_854a5cefd14d759a50ee6c64.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_71787b83df9264f8f549f9a5.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.014648;font-style: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;}
.ls4_c00247{letter-spacing:0.000000px;}
.ls0_c00247{letter-spacing:0.087998px;}
.ls1_c00247{letter-spacing:0.098482px;}
.ls2_c00247{letter-spacing:0.104482px;}
.ls3_c00247{letter-spacing:26.690482px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-26.575517px;}
.ws1_c00247{word-spacing:-26.487518px;}
.ws6_c00247{word-spacing:-18.769538px;}
.ws9_c00247{word-spacing:-15.003676px;}
.ws5_c00247{word-spacing:-14.943900px;}
.ws8_c00247{word-spacing:-14.764573px;}
.wsa_c00247{word-spacing:-12.313774px;}
.ws3_c00247{word-spacing:-9.988424px;}
.ws4_c00247{word-spacing:-9.987499px;}
.ws7_c00247{word-spacing:-1.980144px;}
.wsf_c00247{word-spacing:0.000000px;}
.wsc_c00247{word-spacing:0.043999px;}
.wsb_c00247{word-spacing:0.175997px;}
.wsd_c00247{word-spacing:0.213446px;}
.wse_c00247{word-spacing:0.219446px;}
.ws2_c00247{word-spacing:43.038600px;}
._0_c00247{margin-left:-4.734246px;}
._6_c00247{margin-left:-3.287658px;}
._2_c00247{margin-left:-1.075961px;}
._7_c00247{width:1.005737px;}
._1_c00247{width:19.935816px;}
._5_c00247{width:23.802662px;}
._3_c00247{width:31.262639px;}
._4_c00247{width:39.033467px;}
.fc5_c00247{color:rgb(0,0,207);}
.fc6_c00247{color:rgb(6,69,173);}
.fc4_c00247{color:rgb(207,92,0);}
.fc3_c00247{color:rgb(79,153,5);}
.fc2_c00247{color:rgb(33,74,135);}
.fc1_c00247{color:rgb(143,89,3);}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:43.999200px;}
.fs2_c00247{font-size:59.775600px;}
.fs1_c00247{font-size:86.077200px;}
.y0_c00247{bottom:0.000000px;}
.y21_c00247{bottom:44.250000px;}
.y20_c00247{bottom:82.051500px;}
.y1f_c00247{bottom:98.490000px;}
.y1e_c00247{bottom:114.927000px;}
.y1d_c00247{bottom:131.365500px;}
.y1c_c00247{bottom:147.804000px;}
.y1b_c00247{bottom:164.242500px;}
.y1a_c00247{bottom:180.681000px;}
.y19_c00247{bottom:197.119500px;}
.y18_c00247{bottom:213.558000px;}
.y17_c00247{bottom:229.996500px;}
.y16_c00247{bottom:262.873500px;}
.y15_c00247{bottom:279.310500px;}
.y14_c00247{bottom:295.375500px;}
.y13_c00247{bottom:343.377000px;}
.y12_c00247{bottom:361.309500px;}
.y11_c00247{bottom:379.242000px;}
.y10_c00247{bottom:397.176000px;}
.yf_c00247{bottom:424.039500px;}
.ye_c00247{bottom:450.904500px;}
.yd_c00247{bottom:477.769500px;}
.yc_c00247{bottom:504.634500px;}
.yb_c00247{bottom:546.873000px;}
.ya_c00247{bottom:1011.918000px;}
.y9_c00247{bottom:1028.356500px;}
.y8_c00247{bottom:1044.795000px;}
.y7_c00247{bottom:1061.232000px;}
.y6_c00247{bottom:1077.670500px;}
.y5_c00247{bottom:1094.109000px;}
.y4_c00247{bottom:1110.547500px;}
.y3_c00247{bottom:1126.986000px;}
.y2_c00247{bottom:1143.424500px;}
.y1_c00247{bottom:1159.863000px;}
.h6_c00247{height:35.190766px;}
.h2_c00247{height:36.007158px;}
.h4_c00247{height:40.511979px;}
.h5_c00247{height:52.332837px;}
.h3_c00247{height:58.337477px;}
.h0_c00247{height:1262.835000px;}
.h1_c00247{height:1263.000000px;}
.w0_c00247{width:892.920000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:127.558500px;}
.x1_c00247{left:137.122500px;}
.x2_c00247{left:177.007500px;}
.x4_c00247{left:210.243000px;}
.x5_c00247{left:435.249000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls4_c00247{letter-spacing:0.000000pt;}
.ls0_c00247{letter-spacing:0.078221pt;}
.ls1_c00247{letter-spacing:0.087539pt;}
.ls2_c00247{letter-spacing:0.092873pt;}
.ls3_c00247{letter-spacing:23.724873pt;}
.ws0_c00247{word-spacing:-23.622682pt;}
.ws1_c00247{word-spacing:-23.544461pt;}
.ws6_c00247{word-spacing:-16.684034pt;}
.ws9_c00247{word-spacing:-13.336601pt;}
.ws5_c00247{word-spacing:-13.283467pt;}
.ws8_c00247{word-spacing:-13.124065pt;}
.wsa_c00247{word-spacing:-10.945577pt;}
.ws3_c00247{word-spacing:-8.878599pt;}
.ws4_c00247{word-spacing:-8.877777pt;}
.ws7_c00247{word-spacing:-1.760128pt;}
.wsf_c00247{word-spacing:0.000000pt;}
.wsc_c00247{word-spacing:0.039110pt;}
.wsb_c00247{word-spacing:0.156442pt;}
.wsd_c00247{word-spacing:0.189730pt;}
.wse_c00247{word-spacing:0.195063pt;}
.ws2_c00247{word-spacing:38.256533pt;}
._0_c00247{margin-left:-4.208219pt;}
._6_c00247{margin-left:-2.922363pt;}
._2_c00247{margin-left:-0.956410pt;}
._7_c00247{width:0.893988pt;}
._1_c00247{width:17.720725pt;}
._5_c00247{width:21.157922pt;}
._3_c00247{width:27.789012pt;}
._4_c00247{width:34.696415pt;}
.fs0_c00247{font-size:39.110400pt;}
.fs2_c00247{font-size:53.133867pt;}
.fs1_c00247{font-size:76.513067pt;}
.y0_c00247{bottom:0.000000pt;}
.y21_c00247{bottom:39.333333pt;}
.y20_c00247{bottom:72.934667pt;}
.y1f_c00247{bottom:87.546667pt;}
.y1e_c00247{bottom:102.157333pt;}
.y1d_c00247{bottom:116.769333pt;}
.y1c_c00247{bottom:131.381333pt;}
.y1b_c00247{bottom:145.993333pt;}
.y1a_c00247{bottom:160.605333pt;}
.y19_c00247{bottom:175.217333pt;}
.y18_c00247{bottom:189.829333pt;}
.y17_c00247{bottom:204.441333pt;}
.y16_c00247{bottom:233.665333pt;}
.y15_c00247{bottom:248.276000pt;}
.y14_c00247{bottom:262.556000pt;}
.y13_c00247{bottom:305.224000pt;}
.y12_c00247{bottom:321.164000pt;}
.y11_c00247{bottom:337.104000pt;}
.y10_c00247{bottom:353.045333pt;}
.yf_c00247{bottom:376.924000pt;}
.ye_c00247{bottom:400.804000pt;}
.yd_c00247{bottom:424.684000pt;}
.yc_c00247{bottom:448.564000pt;}
.yb_c00247{bottom:486.109333pt;}
.ya_c00247{bottom:899.482667pt;}
.y9_c00247{bottom:914.094667pt;}
.y8_c00247{bottom:928.706667pt;}
.y7_c00247{bottom:943.317333pt;}
.y6_c00247{bottom:957.929333pt;}
.y5_c00247{bottom:972.541333pt;}
.y4_c00247{bottom:987.153333pt;}
.y3_c00247{bottom:1001.765333pt;}
.y2_c00247{bottom:1016.377333pt;}
.y1_c00247{bottom:1030.989333pt;}
.h6_c00247{height:31.280681pt;}
.h2_c00247{height:32.006363pt;}
.h4_c00247{height:36.010648pt;}
.h5_c00247{height:46.518078pt;}
.h3_c00247{height:51.855535pt;}
.h0_c00247{height:1122.520000pt;}
.h1_c00247{height:1122.666667pt;}
.w0_c00247{width:793.706667pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:113.385333pt;}
.x1_c00247{left:121.886667pt;}
.x2_c00247{left:157.340000pt;}
.x4_c00247{left:186.882667pt;}
.x5_c00247{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_295e64e895b8d55a3e9e6022.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.083496;font-style:normal;font-weight:normal;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_9b06171ccc09f816e800c490.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_cab2dcf00515c8394e1c7723.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_aab3d8a4eb8c10fad956dc30.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.102051;font-style: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;}
.ls3_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.087998px;}
.ls1_c00248{letter-spacing:0.098482px;}
.ls2_c00248{letter-spacing:0.104482px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00248{word-spacing:-26.575517px;}
.ws2_c00248{word-spacing:-26.487518px;}
.ws9_c00248{word-spacing:-18.769538px;}
.wsb_c00248{word-spacing:-17.693578px;}
.wsc_c00248{word-spacing:-17.672488px;}
.wsd_c00248{word-spacing:-17.633802px;}
.ws10_c00248{word-spacing:-17.275148px;}
.ws11_c00248{word-spacing:-15.541656px;}
.ws8_c00248{word-spacing:-14.943900px;}
.wse_c00248{word-spacing:-14.166817px;}
.ws6_c00248{word-spacing:-9.988424px;}
.ws7_c00248{word-spacing:-9.987499px;}
.wsa_c00248{word-spacing:-7.752144px;}
.ws0_c00248{word-spacing:0.000000px;}
.ws3_c00248{word-spacing:0.043999px;}
.wsf_c00248{word-spacing:0.059776px;}
.ws12_c00248{word-spacing:0.175997px;}
.ws4_c00248{word-spacing:0.213446px;}
.ws13_c00248{word-spacing:0.219446px;}
.ws5_c00248{word-spacing:43.038600px;}
._2_c00248{margin-left:-4.423394px;}
._6_c00248{margin-left:-3.287658px;}
._3_c00248{margin-left:-1.075961px;}
._0_c00248{width:1.041538px;}
._1_c00248{width:19.935816px;}
._4_c00248{width:23.659580px;}
._5_c00248{width:30.545332px;}
.fc5_c00248{color:rgb(0,0,207);}
.fc6_c00248{color:rgb(6,69,173);}
.fc4_c00248{color:rgb(207,92,0);}
.fc3_c00248{color:rgb(143,89,3);}
.fc2_c00248{color:rgb(0,0,0);}
.fc1_c00248{color:rgb(79,153,5);}
.fc0_c00248{color:rgb(33,74,135);}
.fs0_c00248{font-size:43.999200px;}
.fs2_c00248{font-size:59.775600px;}
.fs1_c00248{font-size:86.077200px;}
.y0_c00248{bottom:0.000000px;}
.y20_c00248{bottom:44.250000px;}
.y1f_c00248{bottom:82.051500px;}
.y1e_c00248{bottom:98.115000px;}
.y1d_c00248{bottom:145.471500px;}
.y1c_c00248{bottom:163.404000px;}
.y1b_c00248{bottom:181.336500px;}
.y1a_c00248{bottom:199.269000px;}
.y19_c00248{bottom:217.203000px;}
.y18_c00248{bottom:243.960000px;}
.y17_c00248{bottom:270.717000px;}
.y16_c00248{bottom:297.474000px;}
.y15_c00248{bottom:324.232500px;}
.y14_c00248{bottom:366.361500px;}
.y13_c00248{bottom:831.096000px;}
.y12_c00248{bottom:847.534500px;}
.y11_c00248{bottom:863.973000px;}
.y10_c00248{bottom:880.411500px;}
.yf_c00248{bottom:896.848500px;}
.ye_c00248{bottom:913.287000px;}
.yd_c00248{bottom:929.725500px;}
.yc_c00248{bottom:946.164000px;}
.yb_c00248{bottom:962.602500px;}
.ya_c00248{bottom:979.041000px;}
.y9_c00248{bottom:995.479500px;}
.y8_c00248{bottom:1028.356500px;}
.y7_c00248{bottom:1044.795000px;}
.y6_c00248{bottom:1061.232000px;}
.y5_c00248{bottom:1094.109000px;}
.y4_c00248{bottom:1110.547500px;}
.y3_c00248{bottom:1126.986000px;}
.y2_c00248{bottom:1143.424500px;}
.y1_c00248{bottom:1159.863000px;}
.h3_c00248{height:35.190766px;}
.h2_c00248{height:36.007158px;}
.h5_c00248{height:40.511979px;}
.h6_c00248{height:52.332837px;}
.h4_c00248{height:58.337477px;}
.h0_c00248{height:1262.835000px;}
.h1_c00248{height:1263.000000px;}
.w0_c00248{width:892.920000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x4_c00248{left:127.558500px;}
.x2_c00248{left:137.122500px;}
.x3_c00248{left:177.007500px;}
.x1_c00248{left:210.243000px;}
.x5_c00248{left:435.249000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls3_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.078221pt;}
.ls1_c00248{letter-spacing:0.087539pt;}
.ls2_c00248{letter-spacing:0.092873pt;}
.ws1_c00248{word-spacing:-23.622682pt;}
.ws2_c00248{word-spacing:-23.544461pt;}
.ws9_c00248{word-spacing:-16.684034pt;}
.wsb_c00248{word-spacing:-15.727625pt;}
.wsc_c00248{word-spacing:-15.708878pt;}
.wsd_c00248{word-spacing:-15.674491pt;}
.ws10_c00248{word-spacing:-15.355687pt;}
.ws11_c00248{word-spacing:-13.814805pt;}
.ws8_c00248{word-spacing:-13.283467pt;}
.wse_c00248{word-spacing:-12.592726pt;}
.ws6_c00248{word-spacing:-8.878599pt;}
.ws7_c00248{word-spacing:-8.877777pt;}
.wsa_c00248{word-spacing:-6.890795pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.ws3_c00248{word-spacing:0.039110pt;}
.wsf_c00248{word-spacing:0.053134pt;}
.ws12_c00248{word-spacing:0.156442pt;}
.ws4_c00248{word-spacing:0.189730pt;}
.ws13_c00248{word-spacing:0.195063pt;}
.ws5_c00248{word-spacing:38.256533pt;}
._2_c00248{margin-left:-3.931906pt;}
._6_c00248{margin-left:-2.922363pt;}
._3_c00248{margin-left:-0.956410pt;}
._0_c00248{width:0.925811pt;}
._1_c00248{width:17.720725pt;}
._4_c00248{width:21.030738pt;}
._5_c00248{width:27.151406pt;}
.fs0_c00248{font-size:39.110400pt;}
.fs2_c00248{font-size:53.133867pt;}
.fs1_c00248{font-size:76.513067pt;}
.y0_c00248{bottom:0.000000pt;}
.y20_c00248{bottom:39.333333pt;}
.y1f_c00248{bottom:72.934667pt;}
.y1e_c00248{bottom:87.213333pt;}
.y1d_c00248{bottom:129.308000pt;}
.y1c_c00248{bottom:145.248000pt;}
.y1b_c00248{bottom:161.188000pt;}
.y1a_c00248{bottom:177.128000pt;}
.y19_c00248{bottom:193.069333pt;}
.y18_c00248{bottom:216.853333pt;}
.y17_c00248{bottom:240.637333pt;}
.y16_c00248{bottom:264.421333pt;}
.y15_c00248{bottom:288.206667pt;}
.y14_c00248{bottom:325.654667pt;}
.y13_c00248{bottom:738.752000pt;}
.y12_c00248{bottom:753.364000pt;}
.y11_c00248{bottom:767.976000pt;}
.y10_c00248{bottom:782.588000pt;}
.yf_c00248{bottom:797.198667pt;}
.ye_c00248{bottom:811.810667pt;}
.yd_c00248{bottom:826.422667pt;}
.yc_c00248{bottom:841.034667pt;}
.yb_c00248{bottom:855.646667pt;}
.ya_c00248{bottom:870.258667pt;}
.y9_c00248{bottom:884.870667pt;}
.y8_c00248{bottom:914.094667pt;}
.y7_c00248{bottom:928.706667pt;}
.y6_c00248{bottom:943.317333pt;}
.y5_c00248{bottom:972.541333pt;}
.y4_c00248{bottom:987.153333pt;}
.y3_c00248{bottom:1001.765333pt;}
.y2_c00248{bottom:1016.377333pt;}
.y1_c00248{bottom:1030.989333pt;}
.h3_c00248{height:31.280681pt;}
.h2_c00248{height:32.006363pt;}
.h5_c00248{height:36.010648pt;}
.h6_c00248{height:46.518078pt;}
.h4_c00248{height:51.855535pt;}
.h0_c00248{height:1122.520000pt;}
.h1_c00248{height:1122.666667pt;}
.w0_c00248{width:793.706667pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x4_c00248{left:113.385333pt;}
.x2_c00248{left:121.886667pt;}
.x3_c00248{left:157.340000pt;}
.x1_c00248{left:186.882667pt;}
.x5_c00248{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.048828;font-style:normal;font-weight:normal;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_f878819e3c330a245d62cee6.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.083496;font-style:normal;font-weight:normal;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_8612cc9b38a2b7869ef552c4.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.014648;font-style:normal;font-weight:normal;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_c0b37e5b4c36cae1be0385fb.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls4_c00249{letter-spacing:0.000000px;}
.ls1_c00249{letter-spacing:0.087998px;}
.ls2_c00249{letter-spacing:0.098482px;}
.ls0_c00249{letter-spacing:0.104482px;}
.ls3_c00249{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws0_c00249{word-spacing:-26.487518px;}
.ws4_c00249{word-spacing:0.000000px;}
.ws2_c00249{word-spacing:0.043999px;}
.ws8_c00249{word-spacing:0.056767px;}
.ws6_c00249{word-spacing:0.073250px;}
.ws7_c00249{word-spacing:0.083734px;}
.ws5_c00249{word-spacing:0.175997px;}
.ws9_c00249{word-spacing:0.202963px;}
.ws3_c00249{word-spacing:0.213446px;}
._3_c00249{width:1.041538px;}
._1_c00249{width:53.283031px;}
._0_c00249{width:79.858548px;}
._2_c00249{width:133.452408px;}
.fc5_c00249{color:rgb(0,0,207);}
.fc4_c00249{color:rgb(143,89,3);}
.fc3_c00249{color:rgb(79,153,5);}
.fc2_c00249{color:rgb(207,92,0);}
.fc1_c00249{color:rgb(0,0,0);}
.fc0_c00249{color:rgb(33,74,135);}
.fs0_c00249{font-size:43.999200px;}
.fs1_c00249{font-size:59.775600px;}
.y0_c00249{bottom:0.000000px;}
.y29_c00249{bottom:44.250000px;}
.y28_c00249{bottom:436.575000px;}
.y27_c00249{bottom:453.013500px;}
.y26_c00249{bottom:469.452000px;}
.y25_c00249{bottom:485.890500px;}
.y24_c00249{bottom:502.329000px;}
.y23_c00249{bottom:518.767500px;}
.y22_c00249{bottom:535.206000px;}
.y21_c00249{bottom:551.643000px;}
.y20_c00249{bottom:568.081500px;}
.y1f_c00249{bottom:584.520000px;}
.y1e_c00249{bottom:600.958500px;}
.y1d_c00249{bottom:633.835500px;}
.y1c_c00249{bottom:650.274000px;}
.y1b_c00249{bottom:666.712500px;}
.y1a_c00249{bottom:699.589500px;}
.y19_c00249{bottom:716.028000px;}
.y18_c00249{bottom:732.465000px;}
.y17_c00249{bottom:748.903500px;}
.y16_c00249{bottom:765.342000px;}
.y15_c00249{bottom:781.780500px;}
.y14_c00249{bottom:798.219000px;}
.y13_c00249{bottom:831.096000px;}
.y12_c00249{bottom:847.534500px;}
.y11_c00249{bottom:863.973000px;}
.y10_c00249{bottom:880.411500px;}
.yf_c00249{bottom:896.848500px;}
.ye_c00249{bottom:913.287000px;}
.yd_c00249{bottom:929.725500px;}
.yc_c00249{bottom:946.164000px;}
.yb_c00249{bottom:962.602500px;}
.ya_c00249{bottom:979.041000px;}
.y9_c00249{bottom:995.479500px;}
.y8_c00249{bottom:1011.918000px;}
.y7_c00249{bottom:1028.356500px;}
.y6_c00249{bottom:1044.795000px;}
.y5_c00249{bottom:1061.232000px;}
.y4_c00249{bottom:1077.670500px;}
.y3_c00249{bottom:1110.547500px;}
.y2_c00249{bottom:1126.986000px;}
.y1_c00249{bottom:1159.863000px;}
.h3_c00249{height:35.190766px;}
.h2_c00249{height:36.007158px;}
.h4_c00249{height:52.332837px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w0_c00249{width:892.920000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:137.122500px;}
.x2_c00249{left:143.770500px;}
.x3_c00249{left:177.007500px;}
.x4_c00249{left:435.249000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls4_c00249{letter-spacing:0.000000pt;}
.ls1_c00249{letter-spacing:0.078221pt;}
.ls2_c00249{letter-spacing:0.087539pt;}
.ls0_c00249{letter-spacing:0.092873pt;}
.ls3_c00249{letter-spacing:23.724873pt;}
.ws1_c00249{word-spacing:-23.622682pt;}
.ws0_c00249{word-spacing:-23.544461pt;}
.ws4_c00249{word-spacing:0.000000pt;}
.ws2_c00249{word-spacing:0.039110pt;}
.ws8_c00249{word-spacing:0.050460pt;}
.ws6_c00249{word-spacing:0.065111pt;}
.ws7_c00249{word-spacing:0.074430pt;}
.ws5_c00249{word-spacing:0.156442pt;}
.ws9_c00249{word-spacing:0.180412pt;}
.ws3_c00249{word-spacing:0.189730pt;}
._3_c00249{width:0.925811pt;}
._1_c00249{width:47.362694pt;}
._0_c00249{width:70.985376pt;}
._2_c00249{width:118.624363pt;}
.fs0_c00249{font-size:39.110400pt;}
.fs1_c00249{font-size:53.133867pt;}
.y0_c00249{bottom:0.000000pt;}
.y29_c00249{bottom:39.333333pt;}
.y28_c00249{bottom:388.066667pt;}
.y27_c00249{bottom:402.678667pt;}
.y26_c00249{bottom:417.290667pt;}
.y25_c00249{bottom:431.902667pt;}
.y24_c00249{bottom:446.514667pt;}
.y23_c00249{bottom:461.126667pt;}
.y22_c00249{bottom:475.738667pt;}
.y21_c00249{bottom:490.349333pt;}
.y20_c00249{bottom:504.961333pt;}
.y1f_c00249{bottom:519.573333pt;}
.y1e_c00249{bottom:534.185333pt;}
.y1d_c00249{bottom:563.409333pt;}
.y1c_c00249{bottom:578.021333pt;}
.y1b_c00249{bottom:592.633333pt;}
.y1a_c00249{bottom:621.857333pt;}
.y19_c00249{bottom:636.469333pt;}
.y18_c00249{bottom:651.080000pt;}
.y17_c00249{bottom:665.692000pt;}
.y16_c00249{bottom:680.304000pt;}
.y15_c00249{bottom:694.916000pt;}
.y14_c00249{bottom:709.528000pt;}
.y13_c00249{bottom:738.752000pt;}
.y12_c00249{bottom:753.364000pt;}
.y11_c00249{bottom:767.976000pt;}
.y10_c00249{bottom:782.588000pt;}
.yf_c00249{bottom:797.198667pt;}
.ye_c00249{bottom:811.810667pt;}
.yd_c00249{bottom:826.422667pt;}
.yc_c00249{bottom:841.034667pt;}
.yb_c00249{bottom:855.646667pt;}
.ya_c00249{bottom:870.258667pt;}
.y9_c00249{bottom:884.870667pt;}
.y8_c00249{bottom:899.482667pt;}
.y7_c00249{bottom:914.094667pt;}
.y6_c00249{bottom:928.706667pt;}
.y5_c00249{bottom:943.317333pt;}
.y4_c00249{bottom:957.929333pt;}
.y3_c00249{bottom:987.153333pt;}
.y2_c00249{bottom:1001.765333pt;}
.y1_c00249{bottom:1030.989333pt;}
.h3_c00249{height:31.280681pt;}
.h2_c00249{height:32.006363pt;}
.h4_c00249{height:46.518078pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w0_c00249{width:793.706667pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:121.886667pt;}
.x2_c00249{left:127.796000pt;}
.x3_c00249{left:157.340000pt;}
.x4_c00249{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e82b8aeb3b2e2132cfd7649b.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:0.893555;font-style:normal;font-weight:normal;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_fa770efd9120568f8facb962.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_75b2ea8f026af6b96f1ba0f8.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.048828;font-style: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;}
.ls4_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.087998px;}
.ls2_c00250{letter-spacing:0.098482px;}
.ls1_c00250{letter-spacing:0.104482px;}
.ls3_c00250{letter-spacing:26.690482px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00250{word-spacing:-26.575517px;}
.wsf_c00250{word-spacing:-26.487518px;}
.ws5_c00250{word-spacing:-18.769538px;}
.ws7_c00250{word-spacing:-17.693578px;}
.ws8_c00250{word-spacing:-17.672488px;}
.ws9_c00250{word-spacing:-17.633802px;}
.wsc_c00250{word-spacing:-17.275148px;}
.wsd_c00250{word-spacing:-15.541656px;}
.ws4_c00250{word-spacing:-14.943900px;}
.wsa_c00250{word-spacing:-14.166817px;}
.ws1_c00250{word-spacing:-9.988424px;}
.ws3_c00250{word-spacing:-9.987499px;}
.ws6_c00250{word-spacing:-7.752144px;}
.ws13_c00250{word-spacing:0.000000px;}
.ws10_c00250{word-spacing:0.043999px;}
.ws16_c00250{word-spacing:0.056767px;}
.wsb_c00250{word-spacing:0.059776px;}
.ws14_c00250{word-spacing:0.073250px;}
.ws15_c00250{word-spacing:0.083734px;}
.wse_c00250{word-spacing:0.175997px;}
.ws17_c00250{word-spacing:0.202963px;}
.ws12_c00250{word-spacing:0.213446px;}
.ws11_c00250{word-spacing:0.219446px;}
.ws0_c00250{word-spacing:43.038600px;}
._1_c00250{margin-left:-4.423394px;}
._5_c00250{margin-left:-3.287658px;}
._2_c00250{margin-left:-1.075961px;}
._6_c00250{width:1.005737px;}
._0_c00250{width:19.935816px;}
._3_c00250{width:23.659580px;}
._4_c00250{width:30.545332px;}
._8_c00250{width:53.283031px;}
._7_c00250{width:79.858548px;}
._9_c00250{width:133.452408px;}
.fc6_c00250{color:rgb(0,0,207);}
.fc5_c00250{color:rgb(79,153,5);}
.fc3_c00250{color:rgb(33,74,135);}
.fc2_c00250{color:rgb(143,89,3);}
.fc4_c00250{color:rgb(207,92,0);}
.fc1_c00250{color:rgb(6,69,173);}
.fc0_c00250{color:rgb(0,0,0);}
.fs2_c00250{font-size:43.999200px;}
.fs1_c00250{font-size:59.775600px;}
.fs0_c00250{font-size:86.077200px;}
.y0_c00250{bottom:0.000000px;}
.y20_c00250{bottom:44.250000px;}
.y1f_c00250{bottom:103.420500px;}
.y1e_c00250{bottom:119.859000px;}
.y1d_c00250{bottom:136.297500px;}
.y1c_c00250{bottom:152.736000px;}
.y1b_c00250{bottom:169.174500px;}
.y1a_c00250{bottom:185.613000px;}
.y19_c00250{bottom:202.051500px;}
.y18_c00250{bottom:218.490000px;}
.y17_c00250{bottom:234.927000px;}
.y16_c00250{bottom:251.365500px;}
.y15_c00250{bottom:267.804000px;}
.y14_c00250{bottom:284.242500px;}
.y13_c00250{bottom:300.681000px;}
.y12_c00250{bottom:317.119500px;}
.y11_c00250{bottom:333.558000px;}
.y10_c00250{bottom:349.996500px;}
.yf_c00250{bottom:382.873500px;}
.ye_c00250{bottom:399.310500px;}
.yd_c00250{bottom:432.187500px;}
.yc_c00250{bottom:448.626000px;}
.yb_c00250{bottom:464.691000px;}
.ya_c00250{bottom:513.009000px;}
.y9_c00250{bottom:530.941500px;}
.y8_c00250{bottom:548.874000px;}
.y7_c00250{bottom:566.806500px;}
.y6_c00250{bottom:584.739000px;}
.y5_c00250{bottom:611.683500px;}
.y4_c00250{bottom:638.626500px;}
.y3_c00250{bottom:665.569500px;}
.y2_c00250{bottom:692.512500px;}
.y1_c00250{bottom:734.850000px;}
.h5_c00250{height:35.190766px;}
.h6_c00250{height:36.007158px;}
.h3_c00250{height:40.511979px;}
.h4_c00250{height:52.332837px;}
.h2_c00250{height:58.337477px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w0_c00250{width:892.920000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:127.558500px;}
.x2_c00250{left:137.122500px;}
.x3_c00250{left:143.770500px;}
.x4_c00250{left:435.249000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls4_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.078221pt;}
.ls2_c00250{letter-spacing:0.087539pt;}
.ls1_c00250{letter-spacing:0.092873pt;}
.ls3_c00250{letter-spacing:23.724873pt;}
.ws2_c00250{word-spacing:-23.622682pt;}
.wsf_c00250{word-spacing:-23.544461pt;}
.ws5_c00250{word-spacing:-16.684034pt;}
.ws7_c00250{word-spacing:-15.727625pt;}
.ws8_c00250{word-spacing:-15.708878pt;}
.ws9_c00250{word-spacing:-15.674491pt;}
.wsc_c00250{word-spacing:-15.355687pt;}
.wsd_c00250{word-spacing:-13.814805pt;}
.ws4_c00250{word-spacing:-13.283467pt;}
.wsa_c00250{word-spacing:-12.592726pt;}
.ws1_c00250{word-spacing:-8.878599pt;}
.ws3_c00250{word-spacing:-8.877777pt;}
.ws6_c00250{word-spacing:-6.890795pt;}
.ws13_c00250{word-spacing:0.000000pt;}
.ws10_c00250{word-spacing:0.039110pt;}
.ws16_c00250{word-spacing:0.050460pt;}
.wsb_c00250{word-spacing:0.053134pt;}
.ws14_c00250{word-spacing:0.065111pt;}
.ws15_c00250{word-spacing:0.074430pt;}
.wse_c00250{word-spacing:0.156442pt;}
.ws17_c00250{word-spacing:0.180412pt;}
.ws12_c00250{word-spacing:0.189730pt;}
.ws11_c00250{word-spacing:0.195063pt;}
.ws0_c00250{word-spacing:38.256533pt;}
._1_c00250{margin-left:-3.931906pt;}
._5_c00250{margin-left:-2.922363pt;}
._2_c00250{margin-left:-0.956410pt;}
._6_c00250{width:0.893988pt;}
._0_c00250{width:17.720725pt;}
._3_c00250{width:21.030738pt;}
._4_c00250{width:27.151406pt;}
._8_c00250{width:47.362694pt;}
._7_c00250{width:70.985376pt;}
._9_c00250{width:118.624363pt;}
.fs2_c00250{font-size:39.110400pt;}
.fs1_c00250{font-size:53.133867pt;}
.fs0_c00250{font-size:76.513067pt;}
.y0_c00250{bottom:0.000000pt;}
.y20_c00250{bottom:39.333333pt;}
.y1f_c00250{bottom:91.929333pt;}
.y1e_c00250{bottom:106.541333pt;}
.y1d_c00250{bottom:121.153333pt;}
.y1c_c00250{bottom:135.765333pt;}
.y1b_c00250{bottom:150.377333pt;}
.y1a_c00250{bottom:164.989333pt;}
.y19_c00250{bottom:179.601333pt;}
.y18_c00250{bottom:194.213333pt;}
.y17_c00250{bottom:208.824000pt;}
.y16_c00250{bottom:223.436000pt;}
.y15_c00250{bottom:238.048000pt;}
.y14_c00250{bottom:252.660000pt;}
.y13_c00250{bottom:267.272000pt;}
.y12_c00250{bottom:281.884000pt;}
.y11_c00250{bottom:296.496000pt;}
.y10_c00250{bottom:311.108000pt;}
.yf_c00250{bottom:340.332000pt;}
.ye_c00250{bottom:354.942667pt;}
.yd_c00250{bottom:384.166667pt;}
.yc_c00250{bottom:398.778667pt;}
.yb_c00250{bottom:413.058667pt;}
.ya_c00250{bottom:456.008000pt;}
.y9_c00250{bottom:471.948000pt;}
.y8_c00250{bottom:487.888000pt;}
.y7_c00250{bottom:503.828000pt;}
.y6_c00250{bottom:519.768000pt;}
.y5_c00250{bottom:543.718667pt;}
.y4_c00250{bottom:567.668000pt;}
.y3_c00250{bottom:591.617333pt;}
.y2_c00250{bottom:615.566667pt;}
.y1_c00250{bottom:653.200000pt;}
.h5_c00250{height:31.280681pt;}
.h6_c00250{height:32.006363pt;}
.h3_c00250{height:36.010648pt;}
.h4_c00250{height:46.518078pt;}
.h2_c00250{height:51.855535pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w0_c00250{width:793.706667pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:113.385333pt;}
.x2_c00250{left:121.886667pt;}
.x3_c00250{left:127.796000pt;}
.x4_c00250{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38a3c60b8bb7ce24f4eca80c.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.014648;font-style:normal;font-weight:normal;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_2481fccd34dce9a7adf8fda8.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.083496;font-style:normal;font-weight:normal;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_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.048828;font-style:normal;font-weight:normal;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_a4204f559ccc62c3ab7fc8dc.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:0.893555;font-style:normal;font-weight:normal;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_abcd92e4554fddd93e3d8cd4.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.102051;font-style: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;}
.ls3_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.087998px;}
.ls1_c00251{letter-spacing:0.098482px;}
.ls2_c00251{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00251{word-spacing:-26.487518px;}
.ws9_c00251{word-spacing:-18.769538px;}
.wsb_c00251{word-spacing:-17.693578px;}
.wsc_c00251{word-spacing:-17.672488px;}
.wsd_c00251{word-spacing:-17.633802px;}
.ws10_c00251{word-spacing:-17.275148px;}
.ws11_c00251{word-spacing:-15.541656px;}
.ws8_c00251{word-spacing:-14.943900px;}
.wse_c00251{word-spacing:-14.166817px;}
.ws6_c00251{word-spacing:-9.988424px;}
.ws7_c00251{word-spacing:-9.987499px;}
.wsa_c00251{word-spacing:-7.752144px;}
.ws0_c00251{word-spacing:0.000000px;}
.ws3_c00251{word-spacing:0.043999px;}
.wsf_c00251{word-spacing:0.059776px;}
.ws4_c00251{word-spacing:0.213446px;}
.ws5_c00251{word-spacing:43.038600px;}
._3_c00251{margin-left:-4.423394px;}
._7_c00251{margin-left:-3.287658px;}
._4_c00251{margin-left:-1.075961px;}
._1_c00251{width:1.041538px;}
._2_c00251{width:19.935816px;}
._5_c00251{width:23.659580px;}
._6_c00251{width:30.545332px;}
._0_c00251{width:53.503027px;}
.fc5_c00251{color:rgb(0,0,207);}
.fc6_c00251{color:rgb(6,69,173);}
.fc4_c00251{color:rgb(207,92,0);}
.fc3_c00251{color:rgb(79,153,5);}
.fc2_c00251{color:rgb(33,74,135);}
.fc1_c00251{color:rgb(0,0,0);}
.fc0_c00251{color:rgb(143,89,3);}
.fs0_c00251{font-size:43.999200px;}
.fs2_c00251{font-size:59.775600px;}
.fs1_c00251{font-size:86.077200px;}
.y0_c00251{bottom:0.000000px;}
.y20_c00251{bottom:44.250000px;}
.y1f_c00251{bottom:82.051500px;}
.y1e_c00251{bottom:99.984000px;}
.y1d_c00251{bottom:117.916500px;}
.y1c_c00251{bottom:135.849000px;}
.y1b_c00251{bottom:153.781500px;}
.y1a_c00251{bottom:183.720000px;}
.y19_c00251{bottom:213.657000px;}
.y18_c00251{bottom:243.595500px;}
.y17_c00251{bottom:273.532500px;}
.y16_c00251{bottom:320.202000px;}
.y15_c00251{bottom:798.219000px;}
.y14_c00251{bottom:814.657500px;}
.y13_c00251{bottom:831.096000px;}
.y12_c00251{bottom:847.534500px;}
.y11_c00251{bottom:863.973000px;}
.y10_c00251{bottom:880.411500px;}
.yf_c00251{bottom:896.848500px;}
.ye_c00251{bottom:913.287000px;}
.yd_c00251{bottom:929.725500px;}
.yc_c00251{bottom:946.164000px;}
.yb_c00251{bottom:962.602500px;}
.ya_c00251{bottom:995.479500px;}
.y9_c00251{bottom:1011.918000px;}
.y8_c00251{bottom:1028.356500px;}
.y7_c00251{bottom:1061.232000px;}
.y6_c00251{bottom:1077.670500px;}
.y5_c00251{bottom:1094.109000px;}
.y4_c00251{bottom:1110.547500px;}
.y3_c00251{bottom:1126.986000px;}
.y2_c00251{bottom:1143.424500px;}
.y1_c00251{bottom:1159.863000px;}
.h2_c00251{height:35.190766px;}
.h3_c00251{height:36.007158px;}
.h5_c00251{height:40.511979px;}
.h6_c00251{height:52.332837px;}
.h4_c00251{height:58.337477px;}
.h0_c00251{height:1262.835000px;}
.h1_c00251{height:1263.000000px;}
.w0_c00251{width:892.920000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x3_c00251{left:127.558500px;}
.x1_c00251{left:137.122500px;}
.x2_c00251{left:177.007500px;}
.x4_c00251{left:435.249000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls3_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.078221pt;}
.ls1_c00251{letter-spacing:0.087539pt;}
.ls2_c00251{letter-spacing:0.092873pt;}
.ws1_c00251{word-spacing:-23.622682pt;}
.ws2_c00251{word-spacing:-23.544461pt;}
.ws9_c00251{word-spacing:-16.684034pt;}
.wsb_c00251{word-spacing:-15.727625pt;}
.wsc_c00251{word-spacing:-15.708878pt;}
.wsd_c00251{word-spacing:-15.674491pt;}
.ws10_c00251{word-spacing:-15.355687pt;}
.ws11_c00251{word-spacing:-13.814805pt;}
.ws8_c00251{word-spacing:-13.283467pt;}
.wse_c00251{word-spacing:-12.592726pt;}
.ws6_c00251{word-spacing:-8.878599pt;}
.ws7_c00251{word-spacing:-8.877777pt;}
.wsa_c00251{word-spacing:-6.890795pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.ws3_c00251{word-spacing:0.039110pt;}
.wsf_c00251{word-spacing:0.053134pt;}
.ws4_c00251{word-spacing:0.189730pt;}
.ws5_c00251{word-spacing:38.256533pt;}
._3_c00251{margin-left:-3.931906pt;}
._7_c00251{margin-left:-2.922363pt;}
._4_c00251{margin-left:-0.956410pt;}
._1_c00251{width:0.925811pt;}
._2_c00251{width:17.720725pt;}
._5_c00251{width:21.030738pt;}
._6_c00251{width:27.151406pt;}
._0_c00251{width:47.558246pt;}
.fs0_c00251{font-size:39.110400pt;}
.fs2_c00251{font-size:53.133867pt;}
.fs1_c00251{font-size:76.513067pt;}
.y0_c00251{bottom:0.000000pt;}
.y20_c00251{bottom:39.333333pt;}
.y1f_c00251{bottom:72.934667pt;}
.y1e_c00251{bottom:88.874667pt;}
.y1d_c00251{bottom:104.814667pt;}
.y1c_c00251{bottom:120.754667pt;}
.y1b_c00251{bottom:136.694667pt;}
.y1a_c00251{bottom:163.306667pt;}
.y19_c00251{bottom:189.917333pt;}
.y18_c00251{bottom:216.529333pt;}
.y17_c00251{bottom:243.140000pt;}
.y16_c00251{bottom:284.624000pt;}
.y15_c00251{bottom:709.528000pt;}
.y14_c00251{bottom:724.140000pt;}
.y13_c00251{bottom:738.752000pt;}
.y12_c00251{bottom:753.364000pt;}
.y11_c00251{bottom:767.976000pt;}
.y10_c00251{bottom:782.588000pt;}
.yf_c00251{bottom:797.198667pt;}
.ye_c00251{bottom:811.810667pt;}
.yd_c00251{bottom:826.422667pt;}
.yc_c00251{bottom:841.034667pt;}
.yb_c00251{bottom:855.646667pt;}
.ya_c00251{bottom:884.870667pt;}
.y9_c00251{bottom:899.482667pt;}
.y8_c00251{bottom:914.094667pt;}
.y7_c00251{bottom:943.317333pt;}
.y6_c00251{bottom:957.929333pt;}
.y5_c00251{bottom:972.541333pt;}
.y4_c00251{bottom:987.153333pt;}
.y3_c00251{bottom:1001.765333pt;}
.y2_c00251{bottom:1016.377333pt;}
.y1_c00251{bottom:1030.989333pt;}
.h2_c00251{height:31.280681pt;}
.h3_c00251{height:32.006363pt;}
.h5_c00251{height:36.010648pt;}
.h6_c00251{height:46.518078pt;}
.h4_c00251{height:51.855535pt;}
.h0_c00251{height:1122.520000pt;}
.h1_c00251{height:1122.666667pt;}
.w0_c00251{width:793.706667pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x3_c00251{left:113.385333pt;}
.x1_c00251{left:121.886667pt;}
.x2_c00251{left:157.340000pt;}
.x4_c00251{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60ac94d751d057768bd6a737.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.048828;font-style:normal;font-weight:normal;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_2ffb8386f7f96d728f5136fd.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.083496;font-style:normal;font-weight:normal;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_410fe46a354c0ced6c8b5f46.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls4_c00252{letter-spacing:0.000000px;}
.ls1_c00252{letter-spacing:0.087998px;}
.ls2_c00252{letter-spacing:0.098482px;}
.ls0_c00252{letter-spacing:0.104482px;}
.ls3_c00252{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00252{word-spacing:-26.575517px;}
.ws1_c00252{word-spacing:-26.487518px;}
.ws6_c00252{word-spacing:0.000000px;}
.ws3_c00252{word-spacing:0.043999px;}
.ws9_c00252{word-spacing:0.056767px;}
.ws7_c00252{word-spacing:0.073250px;}
.ws8_c00252{word-spacing:0.083734px;}
.ws0_c00252{word-spacing:0.175997px;}
.wsa_c00252{word-spacing:0.202963px;}
.ws5_c00252{word-spacing:0.213446px;}
.ws4_c00252{word-spacing:0.219446px;}
._0_c00252{width:1.005737px;}
._2_c00252{width:53.283031px;}
._1_c00252{width:79.858548px;}
._3_c00252{width:133.452408px;}
.fc5_c00252{color:rgb(0,0,207);}
.fc4_c00252{color:rgb(79,153,5);}
.fc3_c00252{color:rgb(207,92,0);}
.fc2_c00252{color:rgb(0,0,0);}
.fc1_c00252{color:rgb(33,74,135);}
.fc0_c00252{color:rgb(143,89,3);}
.fs0_c00252{font-size:43.999200px;}
.fs1_c00252{font-size:59.775600px;}
.y0_c00252{bottom:0.000000px;}
.y2b_c00252{bottom:44.250000px;}
.y2a_c00252{bottom:383.599500px;}
.y29_c00252{bottom:400.038000px;}
.y28_c00252{bottom:416.475000px;}
.y27_c00252{bottom:432.913500px;}
.y26_c00252{bottom:449.352000px;}
.y25_c00252{bottom:465.790500px;}
.y24_c00252{bottom:482.229000px;}
.y23_c00252{bottom:498.667500px;}
.y22_c00252{bottom:515.106000px;}
.y21_c00252{bottom:531.544500px;}
.y20_c00252{bottom:547.983000px;}
.y1f_c00252{bottom:580.858500px;}
.y1e_c00252{bottom:597.297000px;}
.y1d_c00252{bottom:613.735500px;}
.y1c_c00252{bottom:646.612500px;}
.y1b_c00252{bottom:663.051000px;}
.y1a_c00252{bottom:679.489500px;}
.y19_c00252{bottom:695.928000px;}
.y18_c00252{bottom:712.366500px;}
.y17_c00252{bottom:728.805000px;}
.y16_c00252{bottom:745.243500px;}
.y15_c00252{bottom:778.119000px;}
.y14_c00252{bottom:794.557500px;}
.y13_c00252{bottom:810.996000px;}
.y12_c00252{bottom:827.434500px;}
.y11_c00252{bottom:843.873000px;}
.y10_c00252{bottom:860.311500px;}
.yf_c00252{bottom:876.750000px;}
.ye_c00252{bottom:893.188500px;}
.yd_c00252{bottom:909.627000px;}
.yc_c00252{bottom:926.064000px;}
.yb_c00252{bottom:942.502500px;}
.ya_c00252{bottom:958.941000px;}
.y9_c00252{bottom:975.379500px;}
.y8_c00252{bottom:991.818000px;}
.y7_c00252{bottom:1008.256500px;}
.y6_c00252{bottom:1024.695000px;}
.y5_c00252{bottom:1057.572000px;}
.y4_c00252{bottom:1074.010500px;}
.y3_c00252{bottom:1106.886000px;}
.y2_c00252{bottom:1123.324500px;}
.y1_c00252{bottom:1139.389500px;}
.h2_c00252{height:35.190766px;}
.h3_c00252{height:36.007158px;}
.h4_c00252{height:52.332837px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w0_c00252{width:892.920000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:137.122500px;}
.x2_c00252{left:143.770500px;}
.x3_c00252{left:177.007500px;}
.x4_c00252{left:435.249000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls4_c00252{letter-spacing:0.000000pt;}
.ls1_c00252{letter-spacing:0.078221pt;}
.ls2_c00252{letter-spacing:0.087539pt;}
.ls0_c00252{letter-spacing:0.092873pt;}
.ls3_c00252{letter-spacing:23.724873pt;}
.ws2_c00252{word-spacing:-23.622682pt;}
.ws1_c00252{word-spacing:-23.544461pt;}
.ws6_c00252{word-spacing:0.000000pt;}
.ws3_c00252{word-spacing:0.039110pt;}
.ws9_c00252{word-spacing:0.050460pt;}
.ws7_c00252{word-spacing:0.065111pt;}
.ws8_c00252{word-spacing:0.074430pt;}
.ws0_c00252{word-spacing:0.156442pt;}
.wsa_c00252{word-spacing:0.180412pt;}
.ws5_c00252{word-spacing:0.189730pt;}
.ws4_c00252{word-spacing:0.195063pt;}
._0_c00252{width:0.893988pt;}
._2_c00252{width:47.362694pt;}
._1_c00252{width:70.985376pt;}
._3_c00252{width:118.624363pt;}
.fs0_c00252{font-size:39.110400pt;}
.fs1_c00252{font-size:53.133867pt;}
.y0_c00252{bottom:0.000000pt;}
.y2b_c00252{bottom:39.333333pt;}
.y2a_c00252{bottom:340.977333pt;}
.y29_c00252{bottom:355.589333pt;}
.y28_c00252{bottom:370.200000pt;}
.y27_c00252{bottom:384.812000pt;}
.y26_c00252{bottom:399.424000pt;}
.y25_c00252{bottom:414.036000pt;}
.y24_c00252{bottom:428.648000pt;}
.y23_c00252{bottom:443.260000pt;}
.y22_c00252{bottom:457.872000pt;}
.y21_c00252{bottom:472.484000pt;}
.y20_c00252{bottom:487.096000pt;}
.y1f_c00252{bottom:516.318667pt;}
.y1e_c00252{bottom:530.930667pt;}
.y1d_c00252{bottom:545.542667pt;}
.y1c_c00252{bottom:574.766667pt;}
.y1b_c00252{bottom:589.378667pt;}
.y1a_c00252{bottom:603.990667pt;}
.y19_c00252{bottom:618.602667pt;}
.y18_c00252{bottom:633.214667pt;}
.y17_c00252{bottom:647.826667pt;}
.y16_c00252{bottom:662.438667pt;}
.y15_c00252{bottom:691.661333pt;}
.y14_c00252{bottom:706.273333pt;}
.y13_c00252{bottom:720.885333pt;}
.y12_c00252{bottom:735.497333pt;}
.y11_c00252{bottom:750.109333pt;}
.y10_c00252{bottom:764.721333pt;}
.yf_c00252{bottom:779.333333pt;}
.ye_c00252{bottom:793.945333pt;}
.yd_c00252{bottom:808.557333pt;}
.yc_c00252{bottom:823.168000pt;}
.yb_c00252{bottom:837.780000pt;}
.ya_c00252{bottom:852.392000pt;}
.y9_c00252{bottom:867.004000pt;}
.y8_c00252{bottom:881.616000pt;}
.y7_c00252{bottom:896.228000pt;}
.y6_c00252{bottom:910.840000pt;}
.y5_c00252{bottom:940.064000pt;}
.y4_c00252{bottom:954.676000pt;}
.y3_c00252{bottom:983.898667pt;}
.y2_c00252{bottom:998.510667pt;}
.y1_c00252{bottom:1012.790667pt;}
.h2_c00252{height:31.280681pt;}
.h3_c00252{height:32.006363pt;}
.h4_c00252{height:46.518078pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w0_c00252{width:793.706667pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:121.886667pt;}
.x2_c00252{left:127.796000pt;}
.x3_c00252{left:157.340000pt;}
.x4_c00252{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77e640506756af81cd1de92b.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:0.893555;font-style:normal;font-weight:normal;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_ee5104e21c6e9ea19371ddc2.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_e1fc6bc6f9f704f17e9655c9.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.048828;font-style: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;}
.ls4_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.087998px;}
.ls2_c00253{letter-spacing:0.098482px;}
.ls1_c00253{letter-spacing:0.104482px;}
.ls3_c00253{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00253{word-spacing:-26.575517px;}
.wsf_c00253{word-spacing:-26.487518px;}
.ws5_c00253{word-spacing:-18.769538px;}
.ws7_c00253{word-spacing:-17.693578px;}
.ws8_c00253{word-spacing:-17.672488px;}
.ws9_c00253{word-spacing:-17.633802px;}
.wsc_c00253{word-spacing:-17.275148px;}
.wsd_c00253{word-spacing:-15.541656px;}
.ws4_c00253{word-spacing:-14.943900px;}
.wsa_c00253{word-spacing:-14.166817px;}
.ws1_c00253{word-spacing:-9.988424px;}
.ws3_c00253{word-spacing:-9.987499px;}
.ws6_c00253{word-spacing:-7.752144px;}
.ws13_c00253{word-spacing:0.000000px;}
.ws10_c00253{word-spacing:0.043999px;}
.ws16_c00253{word-spacing:0.056767px;}
.wsb_c00253{word-spacing:0.059776px;}
.ws14_c00253{word-spacing:0.073250px;}
.ws15_c00253{word-spacing:0.083734px;}
.wse_c00253{word-spacing:0.175997px;}
.ws17_c00253{word-spacing:0.202963px;}
.ws12_c00253{word-spacing:0.213446px;}
.ws11_c00253{word-spacing:0.219446px;}
.ws0_c00253{word-spacing:43.038600px;}
._1_c00253{margin-left:-4.423394px;}
._5_c00253{margin-left:-3.287658px;}
._2_c00253{margin-left:-1.075961px;}
._6_c00253{width:1.005737px;}
._0_c00253{width:19.935816px;}
._3_c00253{width:23.659580px;}
._4_c00253{width:30.545332px;}
._8_c00253{width:53.283031px;}
._7_c00253{width:79.858548px;}
._9_c00253{width:133.452408px;}
.fc6_c00253{color:rgb(0,0,207);}
.fc5_c00253{color:rgb(79,153,5);}
.fc3_c00253{color:rgb(33,74,135);}
.fc2_c00253{color:rgb(143,89,3);}
.fc4_c00253{color:rgb(207,92,0);}
.fc1_c00253{color:rgb(6,69,173);}
.fc0_c00253{color:rgb(0,0,0);}
.fs2_c00253{font-size:43.999200px;}
.fs1_c00253{font-size:59.775600px;}
.fs0_c00253{font-size:86.077200px;}
.y0_c00253{bottom:0.000000px;}
.y20_c00253{bottom:44.250000px;}
.y1f_c00253{bottom:103.420500px;}
.y1e_c00253{bottom:119.859000px;}
.y1d_c00253{bottom:136.297500px;}
.y1c_c00253{bottom:152.736000px;}
.y1b_c00253{bottom:169.174500px;}
.y1a_c00253{bottom:185.613000px;}
.y19_c00253{bottom:202.051500px;}
.y18_c00253{bottom:218.490000px;}
.y17_c00253{bottom:234.927000px;}
.y16_c00253{bottom:251.365500px;}
.y15_c00253{bottom:267.804000px;}
.y14_c00253{bottom:284.242500px;}
.y13_c00253{bottom:300.681000px;}
.y12_c00253{bottom:317.119500px;}
.y11_c00253{bottom:333.558000px;}
.y10_c00253{bottom:349.996500px;}
.yf_c00253{bottom:382.873500px;}
.ye_c00253{bottom:399.310500px;}
.yd_c00253{bottom:432.187500px;}
.yc_c00253{bottom:448.626000px;}
.yb_c00253{bottom:464.691000px;}
.ya_c00253{bottom:513.009000px;}
.y9_c00253{bottom:530.941500px;}
.y8_c00253{bottom:548.874000px;}
.y7_c00253{bottom:566.806500px;}
.y6_c00253{bottom:584.739000px;}
.y5_c00253{bottom:611.683500px;}
.y4_c00253{bottom:638.626500px;}
.y3_c00253{bottom:665.569500px;}
.y2_c00253{bottom:692.512500px;}
.y1_c00253{bottom:734.850000px;}
.h5_c00253{height:35.190766px;}
.h6_c00253{height:36.007158px;}
.h3_c00253{height:40.511979px;}
.h4_c00253{height:52.332837px;}
.h2_c00253{height:58.337477px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w0_c00253{width:892.920000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:127.558500px;}
.x2_c00253{left:137.122500px;}
.x3_c00253{left:143.770500px;}
.x4_c00253{left:435.249000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls4_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.078221pt;}
.ls2_c00253{letter-spacing:0.087539pt;}
.ls1_c00253{letter-spacing:0.092873pt;}
.ls3_c00253{letter-spacing:23.724873pt;}
.ws2_c00253{word-spacing:-23.622682pt;}
.wsf_c00253{word-spacing:-23.544461pt;}
.ws5_c00253{word-spacing:-16.684034pt;}
.ws7_c00253{word-spacing:-15.727625pt;}
.ws8_c00253{word-spacing:-15.708878pt;}
.ws9_c00253{word-spacing:-15.674491pt;}
.wsc_c00253{word-spacing:-15.355687pt;}
.wsd_c00253{word-spacing:-13.814805pt;}
.ws4_c00253{word-spacing:-13.283467pt;}
.wsa_c00253{word-spacing:-12.592726pt;}
.ws1_c00253{word-spacing:-8.878599pt;}
.ws3_c00253{word-spacing:-8.877777pt;}
.ws6_c00253{word-spacing:-6.890795pt;}
.ws13_c00253{word-spacing:0.000000pt;}
.ws10_c00253{word-spacing:0.039110pt;}
.ws16_c00253{word-spacing:0.050460pt;}
.wsb_c00253{word-spacing:0.053134pt;}
.ws14_c00253{word-spacing:0.065111pt;}
.ws15_c00253{word-spacing:0.074430pt;}
.wse_c00253{word-spacing:0.156442pt;}
.ws17_c00253{word-spacing:0.180412pt;}
.ws12_c00253{word-spacing:0.189730pt;}
.ws11_c00253{word-spacing:0.195063pt;}
.ws0_c00253{word-spacing:38.256533pt;}
._1_c00253{margin-left:-3.931906pt;}
._5_c00253{margin-left:-2.922363pt;}
._2_c00253{margin-left:-0.956410pt;}
._6_c00253{width:0.893988pt;}
._0_c00253{width:17.720725pt;}
._3_c00253{width:21.030738pt;}
._4_c00253{width:27.151406pt;}
._8_c00253{width:47.362694pt;}
._7_c00253{width:70.985376pt;}
._9_c00253{width:118.624363pt;}
.fs2_c00253{font-size:39.110400pt;}
.fs1_c00253{font-size:53.133867pt;}
.fs0_c00253{font-size:76.513067pt;}
.y0_c00253{bottom:0.000000pt;}
.y20_c00253{bottom:39.333333pt;}
.y1f_c00253{bottom:91.929333pt;}
.y1e_c00253{bottom:106.541333pt;}
.y1d_c00253{bottom:121.153333pt;}
.y1c_c00253{bottom:135.765333pt;}
.y1b_c00253{bottom:150.377333pt;}
.y1a_c00253{bottom:164.989333pt;}
.y19_c00253{bottom:179.601333pt;}
.y18_c00253{bottom:194.213333pt;}
.y17_c00253{bottom:208.824000pt;}
.y16_c00253{bottom:223.436000pt;}
.y15_c00253{bottom:238.048000pt;}
.y14_c00253{bottom:252.660000pt;}
.y13_c00253{bottom:267.272000pt;}
.y12_c00253{bottom:281.884000pt;}
.y11_c00253{bottom:296.496000pt;}
.y10_c00253{bottom:311.108000pt;}
.yf_c00253{bottom:340.332000pt;}
.ye_c00253{bottom:354.942667pt;}
.yd_c00253{bottom:384.166667pt;}
.yc_c00253{bottom:398.778667pt;}
.yb_c00253{bottom:413.058667pt;}
.ya_c00253{bottom:456.008000pt;}
.y9_c00253{bottom:471.948000pt;}
.y8_c00253{bottom:487.888000pt;}
.y7_c00253{bottom:503.828000pt;}
.y6_c00253{bottom:519.768000pt;}
.y5_c00253{bottom:543.718667pt;}
.y4_c00253{bottom:567.668000pt;}
.y3_c00253{bottom:591.617333pt;}
.y2_c00253{bottom:615.566667pt;}
.y1_c00253{bottom:653.200000pt;}
.h5_c00253{height:31.280681pt;}
.h6_c00253{height:32.006363pt;}
.h3_c00253{height:36.010648pt;}
.h4_c00253{height:46.518078pt;}
.h2_c00253{height:51.855535pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w0_c00253{width:793.706667pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:113.385333pt;}
.x2_c00253{left:121.886667pt;}
.x3_c00253{left:127.796000pt;}
.x4_c00253{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8435bdbe19e6ab77fcd1eec9.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.014648;font-style:normal;font-weight:normal;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_763d42f66703e5eb6a37610a.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.083496;font-style:normal;font-weight:normal;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_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.048828;font-style:normal;font-weight:normal;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_215669ba3e9dfce5fa70eda3.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_9ee72287b247c1f82f91d504.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.102051;font-style: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;}
.ls3_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.087998px;}
.ls1_c00254{letter-spacing:0.098482px;}
.ls2_c00254{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00254{word-spacing:-26.487518px;}
.wsb_c00254{word-spacing:-22.185353px;}
.wsc_c00254{word-spacing:-22.176748px;}
.wsd_c00254{word-spacing:-22.174801px;}
.ws11_c00254{word-spacing:-20.622582px;}
.ws9_c00254{word-spacing:-18.769538px;}
.wsf_c00254{word-spacing:-17.753353px;}
.wse_c00254{word-spacing:-17.693578px;}
.ws10_c00254{word-spacing:-16.139412px;}
.ws8_c00254{word-spacing:-14.943900px;}
.wsa_c00254{word-spacing:-11.688144px;}
.ws6_c00254{word-spacing:-9.988424px;}
.ws7_c00254{word-spacing:-9.987499px;}
.ws0_c00254{word-spacing:0.000000px;}
.ws3_c00254{word-spacing:0.043999px;}
.ws4_c00254{word-spacing:0.213446px;}
.ws5_c00254{word-spacing:43.038600px;}
._3_c00254{margin-left:-4.423394px;}
._7_c00254{margin-left:-3.210377px;}
._1_c00254{margin-left:-1.549390px;}
._0_c00254{width:1.041538px;}
._4_c00254{width:18.931360px;}
._2_c00254{width:19.935816px;}
._5_c00254{width:23.064689px;}
._6_c00254{width:28.453186px;}
.fc5_c00254{color:rgb(0,0,207);}
.fc6_c00254{color:rgb(6,69,173);}
.fc4_c00254{color:rgb(207,92,0);}
.fc3_c00254{color:rgb(79,153,5);}
.fc2_c00254{color:rgb(33,74,135);}
.fc1_c00254{color:rgb(0,0,0);}
.fc0_c00254{color:rgb(143,89,3);}
.fs0_c00254{font-size:43.999200px;}
.fs2_c00254{font-size:59.775600px;}
.fs1_c00254{font-size:86.077200px;}
.y0_c00254{bottom:0.000000px;}
.y20_c00254{bottom:44.250000px;}
.y1f_c00254{bottom:82.051500px;}
.y1e_c00254{bottom:99.984000px;}
.y1d_c00254{bottom:117.916500px;}
.y1c_c00254{bottom:135.849000px;}
.y1b_c00254{bottom:153.781500px;}
.y1a_c00254{bottom:183.720000px;}
.y19_c00254{bottom:213.657000px;}
.y18_c00254{bottom:243.595500px;}
.y17_c00254{bottom:273.532500px;}
.y16_c00254{bottom:320.202000px;}
.y15_c00254{bottom:798.219000px;}
.y14_c00254{bottom:814.657500px;}
.y13_c00254{bottom:831.096000px;}
.y12_c00254{bottom:847.534500px;}
.y11_c00254{bottom:863.973000px;}
.y10_c00254{bottom:880.411500px;}
.yf_c00254{bottom:896.848500px;}
.ye_c00254{bottom:913.287000px;}
.yd_c00254{bottom:929.725500px;}
.yc_c00254{bottom:946.164000px;}
.yb_c00254{bottom:962.602500px;}
.ya_c00254{bottom:995.479500px;}
.y9_c00254{bottom:1011.918000px;}
.y8_c00254{bottom:1028.356500px;}
.y7_c00254{bottom:1061.232000px;}
.y6_c00254{bottom:1077.670500px;}
.y5_c00254{bottom:1094.109000px;}
.y4_c00254{bottom:1110.547500px;}
.y3_c00254{bottom:1126.986000px;}
.y2_c00254{bottom:1143.424500px;}
.y1_c00254{bottom:1159.863000px;}
.h2_c00254{height:35.190766px;}
.h3_c00254{height:36.007158px;}
.h5_c00254{height:40.511979px;}
.h6_c00254{height:52.332837px;}
.h4_c00254{height:58.337477px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w0_c00254{width:892.920000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x3_c00254{left:127.558500px;}
.x1_c00254{left:137.122500px;}
.x2_c00254{left:177.007500px;}
.x4_c00254{left:435.249000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls3_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.078221pt;}
.ls1_c00254{letter-spacing:0.087539pt;}
.ls2_c00254{letter-spacing:0.092873pt;}
.ws1_c00254{word-spacing:-23.622682pt;}
.ws2_c00254{word-spacing:-23.544461pt;}
.wsb_c00254{word-spacing:-19.720314pt;}
.wsc_c00254{word-spacing:-19.712665pt;}
.wsd_c00254{word-spacing:-19.710934pt;}
.ws11_c00254{word-spacing:-18.331184pt;}
.ws9_c00254{word-spacing:-16.684034pt;}
.wsf_c00254{word-spacing:-15.780758pt;}
.wse_c00254{word-spacing:-15.727625pt;}
.ws10_c00254{word-spacing:-14.346144pt;}
.ws8_c00254{word-spacing:-13.283467pt;}
.wsa_c00254{word-spacing:-10.389461pt;}
.ws6_c00254{word-spacing:-8.878599pt;}
.ws7_c00254{word-spacing:-8.877777pt;}
.ws0_c00254{word-spacing:0.000000pt;}
.ws3_c00254{word-spacing:0.039110pt;}
.ws4_c00254{word-spacing:0.189730pt;}
.ws5_c00254{word-spacing:38.256533pt;}
._3_c00254{margin-left:-3.931906pt;}
._7_c00254{margin-left:-2.853668pt;}
._1_c00254{margin-left:-1.377235pt;}
._0_c00254{width:0.925811pt;}
._4_c00254{width:16.827875pt;}
._2_c00254{width:17.720725pt;}
._5_c00254{width:20.501946pt;}
._6_c00254{width:25.291721pt;}
.fs0_c00254{font-size:39.110400pt;}
.fs2_c00254{font-size:53.133867pt;}
.fs1_c00254{font-size:76.513067pt;}
.y0_c00254{bottom:0.000000pt;}
.y20_c00254{bottom:39.333333pt;}
.y1f_c00254{bottom:72.934667pt;}
.y1e_c00254{bottom:88.874667pt;}
.y1d_c00254{bottom:104.814667pt;}
.y1c_c00254{bottom:120.754667pt;}
.y1b_c00254{bottom:136.694667pt;}
.y1a_c00254{bottom:163.306667pt;}
.y19_c00254{bottom:189.917333pt;}
.y18_c00254{bottom:216.529333pt;}
.y17_c00254{bottom:243.140000pt;}
.y16_c00254{bottom:284.624000pt;}
.y15_c00254{bottom:709.528000pt;}
.y14_c00254{bottom:724.140000pt;}
.y13_c00254{bottom:738.752000pt;}
.y12_c00254{bottom:753.364000pt;}
.y11_c00254{bottom:767.976000pt;}
.y10_c00254{bottom:782.588000pt;}
.yf_c00254{bottom:797.198667pt;}
.ye_c00254{bottom:811.810667pt;}
.yd_c00254{bottom:826.422667pt;}
.yc_c00254{bottom:841.034667pt;}
.yb_c00254{bottom:855.646667pt;}
.ya_c00254{bottom:884.870667pt;}
.y9_c00254{bottom:899.482667pt;}
.y8_c00254{bottom:914.094667pt;}
.y7_c00254{bottom:943.317333pt;}
.y6_c00254{bottom:957.929333pt;}
.y5_c00254{bottom:972.541333pt;}
.y4_c00254{bottom:987.153333pt;}
.y3_c00254{bottom:1001.765333pt;}
.y2_c00254{bottom:1016.377333pt;}
.y1_c00254{bottom:1030.989333pt;}
.h2_c00254{height:31.280681pt;}
.h3_c00254{height:32.006363pt;}
.h5_c00254{height:36.010648pt;}
.h6_c00254{height:46.518078pt;}
.h4_c00254{height:51.855535pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w0_c00254{width:793.706667pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x3_c00254{left:113.385333pt;}
.x1_c00254{left:121.886667pt;}
.x2_c00254{left:157.340000pt;}
.x4_c00254{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f58e372d4a11f99a5cda8d5.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_2ffb8386f7f96d728f5136fd.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_05c5059b288765ce5cc6bad8.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls4_c00255{letter-spacing:0.000000px;}
.ls1_c00255{letter-spacing:0.087998px;}
.ls2_c00255{letter-spacing:0.098482px;}
.ls0_c00255{letter-spacing:0.104482px;}
.ls3_c00255{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00255{word-spacing:-26.575517px;}
.ws1_c00255{word-spacing:-26.487518px;}
.ws6_c00255{word-spacing:0.000000px;}
.ws3_c00255{word-spacing:0.043999px;}
.ws9_c00255{word-spacing:0.056767px;}
.ws7_c00255{word-spacing:0.073250px;}
.ws8_c00255{word-spacing:0.083734px;}
.ws0_c00255{word-spacing:0.175997px;}
.wsa_c00255{word-spacing:0.202963px;}
.ws5_c00255{word-spacing:0.213446px;}
.ws4_c00255{word-spacing:0.219446px;}
._0_c00255{width:1.005737px;}
._2_c00255{width:53.283031px;}
._1_c00255{width:79.858548px;}
._3_c00255{width:133.452408px;}
.fc5_c00255{color:rgb(0,0,207);}
.fc4_c00255{color:rgb(79,153,5);}
.fc3_c00255{color:rgb(207,92,0);}
.fc2_c00255{color:rgb(0,0,0);}
.fc1_c00255{color:rgb(33,74,135);}
.fc0_c00255{color:rgb(143,89,3);}
.fs0_c00255{font-size:43.999200px;}
.fs1_c00255{font-size:59.775600px;}
.y0_c00255{bottom:0.000000px;}
.y2b_c00255{bottom:44.250000px;}
.y2a_c00255{bottom:383.599500px;}
.y29_c00255{bottom:400.038000px;}
.y28_c00255{bottom:416.475000px;}
.y27_c00255{bottom:432.913500px;}
.y26_c00255{bottom:449.352000px;}
.y25_c00255{bottom:465.790500px;}
.y24_c00255{bottom:482.229000px;}
.y23_c00255{bottom:498.667500px;}
.y22_c00255{bottom:515.106000px;}
.y21_c00255{bottom:531.544500px;}
.y20_c00255{bottom:547.983000px;}
.y1f_c00255{bottom:580.858500px;}
.y1e_c00255{bottom:597.297000px;}
.y1d_c00255{bottom:613.735500px;}
.y1c_c00255{bottom:646.612500px;}
.y1b_c00255{bottom:663.051000px;}
.y1a_c00255{bottom:679.489500px;}
.y19_c00255{bottom:695.928000px;}
.y18_c00255{bottom:712.366500px;}
.y17_c00255{bottom:728.805000px;}
.y16_c00255{bottom:745.243500px;}
.y15_c00255{bottom:778.119000px;}
.y14_c00255{bottom:794.557500px;}
.y13_c00255{bottom:810.996000px;}
.y12_c00255{bottom:827.434500px;}
.y11_c00255{bottom:843.873000px;}
.y10_c00255{bottom:860.311500px;}
.yf_c00255{bottom:876.750000px;}
.ye_c00255{bottom:893.188500px;}
.yd_c00255{bottom:909.627000px;}
.yc_c00255{bottom:926.064000px;}
.yb_c00255{bottom:942.502500px;}
.ya_c00255{bottom:958.941000px;}
.y9_c00255{bottom:975.379500px;}
.y8_c00255{bottom:991.818000px;}
.y7_c00255{bottom:1008.256500px;}
.y6_c00255{bottom:1024.695000px;}
.y5_c00255{bottom:1057.572000px;}
.y4_c00255{bottom:1074.010500px;}
.y3_c00255{bottom:1106.886000px;}
.y2_c00255{bottom:1123.324500px;}
.y1_c00255{bottom:1139.389500px;}
.h2_c00255{height:35.190766px;}
.h3_c00255{height:36.007158px;}
.h4_c00255{height:52.332837px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w0_c00255{width:892.920000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:137.122500px;}
.x2_c00255{left:143.770500px;}
.x3_c00255{left:177.007500px;}
.x4_c00255{left:435.249000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls4_c00255{letter-spacing:0.000000pt;}
.ls1_c00255{letter-spacing:0.078221pt;}
.ls2_c00255{letter-spacing:0.087539pt;}
.ls0_c00255{letter-spacing:0.092873pt;}
.ls3_c00255{letter-spacing:23.724873pt;}
.ws2_c00255{word-spacing:-23.622682pt;}
.ws1_c00255{word-spacing:-23.544461pt;}
.ws6_c00255{word-spacing:0.000000pt;}
.ws3_c00255{word-spacing:0.039110pt;}
.ws9_c00255{word-spacing:0.050460pt;}
.ws7_c00255{word-spacing:0.065111pt;}
.ws8_c00255{word-spacing:0.074430pt;}
.ws0_c00255{word-spacing:0.156442pt;}
.wsa_c00255{word-spacing:0.180412pt;}
.ws5_c00255{word-spacing:0.189730pt;}
.ws4_c00255{word-spacing:0.195063pt;}
._0_c00255{width:0.893988pt;}
._2_c00255{width:47.362694pt;}
._1_c00255{width:70.985376pt;}
._3_c00255{width:118.624363pt;}
.fs0_c00255{font-size:39.110400pt;}
.fs1_c00255{font-size:53.133867pt;}
.y0_c00255{bottom:0.000000pt;}
.y2b_c00255{bottom:39.333333pt;}
.y2a_c00255{bottom:340.977333pt;}
.y29_c00255{bottom:355.589333pt;}
.y28_c00255{bottom:370.200000pt;}
.y27_c00255{bottom:384.812000pt;}
.y26_c00255{bottom:399.424000pt;}
.y25_c00255{bottom:414.036000pt;}
.y24_c00255{bottom:428.648000pt;}
.y23_c00255{bottom:443.260000pt;}
.y22_c00255{bottom:457.872000pt;}
.y21_c00255{bottom:472.484000pt;}
.y20_c00255{bottom:487.096000pt;}
.y1f_c00255{bottom:516.318667pt;}
.y1e_c00255{bottom:530.930667pt;}
.y1d_c00255{bottom:545.542667pt;}
.y1c_c00255{bottom:574.766667pt;}
.y1b_c00255{bottom:589.378667pt;}
.y1a_c00255{bottom:603.990667pt;}
.y19_c00255{bottom:618.602667pt;}
.y18_c00255{bottom:633.214667pt;}
.y17_c00255{bottom:647.826667pt;}
.y16_c00255{bottom:662.438667pt;}
.y15_c00255{bottom:691.661333pt;}
.y14_c00255{bottom:706.273333pt;}
.y13_c00255{bottom:720.885333pt;}
.y12_c00255{bottom:735.497333pt;}
.y11_c00255{bottom:750.109333pt;}
.y10_c00255{bottom:764.721333pt;}
.yf_c00255{bottom:779.333333pt;}
.ye_c00255{bottom:793.945333pt;}
.yd_c00255{bottom:808.557333pt;}
.yc_c00255{bottom:823.168000pt;}
.yb_c00255{bottom:837.780000pt;}
.ya_c00255{bottom:852.392000pt;}
.y9_c00255{bottom:867.004000pt;}
.y8_c00255{bottom:881.616000pt;}
.y7_c00255{bottom:896.228000pt;}
.y6_c00255{bottom:910.840000pt;}
.y5_c00255{bottom:940.064000pt;}
.y4_c00255{bottom:954.676000pt;}
.y3_c00255{bottom:983.898667pt;}
.y2_c00255{bottom:998.510667pt;}
.y1_c00255{bottom:1012.790667pt;}
.h2_c00255{height:31.280681pt;}
.h3_c00255{height:32.006363pt;}
.h4_c00255{height:46.518078pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w0_c00255{width:793.706667pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:121.886667pt;}
.x2_c00255{left:127.796000pt;}
.x3_c00255{left:157.340000pt;}
.x4_c00255{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a10a748fc4b04371c79b4ea2.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:0.893555;font-style:normal;font-weight:normal;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_ee5104e21c6e9ea19371ddc2.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.083496;font-style:normal;font-weight:normal;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_1f4009ac2de2a540bce0366c.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.102051;font-style:normal;font-weight:normal;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_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.014648;font-style:normal;font-weight:normal;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_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.048828;font-style: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;}
.ls4_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:0.087998px;}
.ls2_c00256{letter-spacing:0.098482px;}
.ls1_c00256{letter-spacing:0.104482px;}
.ls3_c00256{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00256{word-spacing:-26.575517px;}
.wsf_c00256{word-spacing:-26.487518px;}
.ws7_c00256{word-spacing:-22.185353px;}
.ws8_c00256{word-spacing:-22.176748px;}
.ws9_c00256{word-spacing:-22.174801px;}
.wsd_c00256{word-spacing:-20.622582px;}
.ws5_c00256{word-spacing:-18.769538px;}
.wsb_c00256{word-spacing:-17.753353px;}
.wsa_c00256{word-spacing:-17.693578px;}
.wsc_c00256{word-spacing:-16.139412px;}
.ws4_c00256{word-spacing:-14.943900px;}
.ws6_c00256{word-spacing:-11.688144px;}
.ws1_c00256{word-spacing:-9.988424px;}
.ws3_c00256{word-spacing:-9.987499px;}
.ws13_c00256{word-spacing:0.000000px;}
.ws10_c00256{word-spacing:0.043999px;}
.ws16_c00256{word-spacing:0.056767px;}
.ws14_c00256{word-spacing:0.073250px;}
.ws15_c00256{word-spacing:0.083734px;}
.wse_c00256{word-spacing:0.175997px;}
.ws17_c00256{word-spacing:0.202963px;}
.ws12_c00256{word-spacing:0.213446px;}
.ws11_c00256{word-spacing:0.219446px;}
.ws0_c00256{word-spacing:43.038600px;}
._2_c00256{margin-left:-4.423394px;}
._6_c00256{margin-left:-3.210377px;}
._0_c00256{margin-left:-1.549390px;}
._7_c00256{width:1.005737px;}
._3_c00256{width:18.931360px;}
._1_c00256{width:19.935816px;}
._4_c00256{width:23.064689px;}
._5_c00256{width:28.453186px;}
._9_c00256{width:53.283031px;}
._8_c00256{width:79.858548px;}
._a_c00256{width:133.452408px;}
.fc6_c00256{color:rgb(0,0,207);}
.fc5_c00256{color:rgb(79,153,5);}
.fc3_c00256{color:rgb(33,74,135);}
.fc2_c00256{color:rgb(143,89,3);}
.fc4_c00256{color:rgb(207,92,0);}
.fc1_c00256{color:rgb(6,69,173);}
.fc0_c00256{color:rgb(0,0,0);}
.fs2_c00256{font-size:43.999200px;}
.fs1_c00256{font-size:59.775600px;}
.fs0_c00256{font-size:86.077200px;}
.y0_c00256{bottom:0.000000px;}
.y20_c00256{bottom:44.250000px;}
.y1f_c00256{bottom:103.420500px;}
.y1e_c00256{bottom:119.859000px;}
.y1d_c00256{bottom:136.297500px;}
.y1c_c00256{bottom:152.736000px;}
.y1b_c00256{bottom:169.174500px;}
.y1a_c00256{bottom:185.613000px;}
.y19_c00256{bottom:202.051500px;}
.y18_c00256{bottom:218.490000px;}
.y17_c00256{bottom:234.927000px;}
.y16_c00256{bottom:251.365500px;}
.y15_c00256{bottom:267.804000px;}
.y14_c00256{bottom:284.242500px;}
.y13_c00256{bottom:300.681000px;}
.y12_c00256{bottom:317.119500px;}
.y11_c00256{bottom:333.558000px;}
.y10_c00256{bottom:349.996500px;}
.yf_c00256{bottom:382.873500px;}
.ye_c00256{bottom:399.310500px;}
.yd_c00256{bottom:432.187500px;}
.yc_c00256{bottom:448.626000px;}
.yb_c00256{bottom:464.691000px;}
.ya_c00256{bottom:513.009000px;}
.y9_c00256{bottom:530.941500px;}
.y8_c00256{bottom:548.874000px;}
.y7_c00256{bottom:566.806500px;}
.y6_c00256{bottom:584.739000px;}
.y5_c00256{bottom:611.683500px;}
.y4_c00256{bottom:638.626500px;}
.y3_c00256{bottom:665.569500px;}
.y2_c00256{bottom:692.512500px;}
.y1_c00256{bottom:734.850000px;}
.h5_c00256{height:35.190766px;}
.h6_c00256{height:36.007158px;}
.h3_c00256{height:40.511979px;}
.h4_c00256{height:52.332837px;}
.h2_c00256{height:58.337477px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w0_c00256{width:892.920000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:127.558500px;}
.x2_c00256{left:137.122500px;}
.x3_c00256{left:143.770500px;}
.x4_c00256{left:435.249000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls4_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:0.078221pt;}
.ls2_c00256{letter-spacing:0.087539pt;}
.ls1_c00256{letter-spacing:0.092873pt;}
.ls3_c00256{letter-spacing:23.724873pt;}
.ws2_c00256{word-spacing:-23.622682pt;}
.wsf_c00256{word-spacing:-23.544461pt;}
.ws7_c00256{word-spacing:-19.720314pt;}
.ws8_c00256{word-spacing:-19.712665pt;}
.ws9_c00256{word-spacing:-19.710934pt;}
.wsd_c00256{word-spacing:-18.331184pt;}
.ws5_c00256{word-spacing:-16.684034pt;}
.wsb_c00256{word-spacing:-15.780758pt;}
.wsa_c00256{word-spacing:-15.727625pt;}
.wsc_c00256{word-spacing:-14.346144pt;}
.ws4_c00256{word-spacing:-13.283467pt;}
.ws6_c00256{word-spacing:-10.389461pt;}
.ws1_c00256{word-spacing:-8.878599pt;}
.ws3_c00256{word-spacing:-8.877777pt;}
.ws13_c00256{word-spacing:0.000000pt;}
.ws10_c00256{word-spacing:0.039110pt;}
.ws16_c00256{word-spacing:0.050460pt;}
.ws14_c00256{word-spacing:0.065111pt;}
.ws15_c00256{word-spacing:0.074430pt;}
.wse_c00256{word-spacing:0.156442pt;}
.ws17_c00256{word-spacing:0.180412pt;}
.ws12_c00256{word-spacing:0.189730pt;}
.ws11_c00256{word-spacing:0.195063pt;}
.ws0_c00256{word-spacing:38.256533pt;}
._2_c00256{margin-left:-3.931906pt;}
._6_c00256{margin-left:-2.853668pt;}
._0_c00256{margin-left:-1.377235pt;}
._7_c00256{width:0.893988pt;}
._3_c00256{width:16.827875pt;}
._1_c00256{width:17.720725pt;}
._4_c00256{width:20.501946pt;}
._5_c00256{width:25.291721pt;}
._9_c00256{width:47.362694pt;}
._8_c00256{width:70.985376pt;}
._a_c00256{width:118.624363pt;}
.fs2_c00256{font-size:39.110400pt;}
.fs1_c00256{font-size:53.133867pt;}
.fs0_c00256{font-size:76.513067pt;}
.y0_c00256{bottom:0.000000pt;}
.y20_c00256{bottom:39.333333pt;}
.y1f_c00256{bottom:91.929333pt;}
.y1e_c00256{bottom:106.541333pt;}
.y1d_c00256{bottom:121.153333pt;}
.y1c_c00256{bottom:135.765333pt;}
.y1b_c00256{bottom:150.377333pt;}
.y1a_c00256{bottom:164.989333pt;}
.y19_c00256{bottom:179.601333pt;}
.y18_c00256{bottom:194.213333pt;}
.y17_c00256{bottom:208.824000pt;}
.y16_c00256{bottom:223.436000pt;}
.y15_c00256{bottom:238.048000pt;}
.y14_c00256{bottom:252.660000pt;}
.y13_c00256{bottom:267.272000pt;}
.y12_c00256{bottom:281.884000pt;}
.y11_c00256{bottom:296.496000pt;}
.y10_c00256{bottom:311.108000pt;}
.yf_c00256{bottom:340.332000pt;}
.ye_c00256{bottom:354.942667pt;}
.yd_c00256{bottom:384.166667pt;}
.yc_c00256{bottom:398.778667pt;}
.yb_c00256{bottom:413.058667pt;}
.ya_c00256{bottom:456.008000pt;}
.y9_c00256{bottom:471.948000pt;}
.y8_c00256{bottom:487.888000pt;}
.y7_c00256{bottom:503.828000pt;}
.y6_c00256{bottom:519.768000pt;}
.y5_c00256{bottom:543.718667pt;}
.y4_c00256{bottom:567.668000pt;}
.y3_c00256{bottom:591.617333pt;}
.y2_c00256{bottom:615.566667pt;}
.y1_c00256{bottom:653.200000pt;}
.h5_c00256{height:31.280681pt;}
.h6_c00256{height:32.006363pt;}
.h3_c00256{height:36.010648pt;}
.h4_c00256{height:46.518078pt;}
.h2_c00256{height:51.855535pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w0_c00256{width:793.706667pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:113.385333pt;}
.x2_c00256{left:121.886667pt;}
.x3_c00256{left:127.796000pt;}
.x4_c00256{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9be399f1913a714f5229881f.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.014648;font-style:normal;font-weight:normal;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_d09d959f3ab747419326696f.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.083496;font-style:normal;font-weight:normal;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_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.048828;font-style:normal;font-weight:normal;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_0e164d116b15f96a0c247e5e.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_3ed2ea803460d05259990432.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.102051;font-style: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;}
.ls3_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.087998px;}
.ls1_c00257{letter-spacing:0.098482px;}
.ls2_c00257{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00257{word-spacing:-26.487518px;}
.wsb_c00257{word-spacing:-22.185353px;}
.wsc_c00257{word-spacing:-22.176748px;}
.wsd_c00257{word-spacing:-22.174801px;}
.ws11_c00257{word-spacing:-20.622582px;}
.ws9_c00257{word-spacing:-18.769538px;}
.wsf_c00257{word-spacing:-17.753353px;}
.wse_c00257{word-spacing:-17.693578px;}
.ws10_c00257{word-spacing:-16.139412px;}
.ws8_c00257{word-spacing:-14.943900px;}
.wsa_c00257{word-spacing:-11.688144px;}
.ws6_c00257{word-spacing:-9.988424px;}
.ws7_c00257{word-spacing:-9.987499px;}
.ws0_c00257{word-spacing:0.000000px;}
.ws3_c00257{word-spacing:0.043999px;}
.ws4_c00257{word-spacing:0.213446px;}
.ws5_c00257{word-spacing:43.038600px;}
._4_c00257{margin-left:-4.423394px;}
._8_c00257{margin-left:-3.210377px;}
._2_c00257{margin-left:-1.549390px;}
._1_c00257{width:1.041538px;}
._5_c00257{width:18.931360px;}
._3_c00257{width:19.935816px;}
._6_c00257{width:23.064689px;}
._7_c00257{width:28.453186px;}
._0_c00257{width:106.654061px;}
.fc5_c00257{color:rgb(0,0,207);}
.fc6_c00257{color:rgb(6,69,173);}
.fc4_c00257{color:rgb(207,92,0);}
.fc3_c00257{color:rgb(79,153,5);}
.fc2_c00257{color:rgb(33,74,135);}
.fc1_c00257{color:rgb(0,0,0);}
.fc0_c00257{color:rgb(143,89,3);}
.fs0_c00257{font-size:43.999200px;}
.fs2_c00257{font-size:59.775600px;}
.fs1_c00257{font-size:86.077200px;}
.y0_c00257{bottom:0.000000px;}
.y20_c00257{bottom:44.250000px;}
.y1f_c00257{bottom:82.051500px;}
.y1e_c00257{bottom:99.984000px;}
.y1d_c00257{bottom:117.916500px;}
.y1c_c00257{bottom:135.849000px;}
.y1b_c00257{bottom:153.781500px;}
.y1a_c00257{bottom:183.720000px;}
.y19_c00257{bottom:213.657000px;}
.y18_c00257{bottom:243.595500px;}
.y17_c00257{bottom:273.532500px;}
.y16_c00257{bottom:320.202000px;}
.y15_c00257{bottom:798.219000px;}
.y14_c00257{bottom:814.657500px;}
.y13_c00257{bottom:831.096000px;}
.y12_c00257{bottom:847.534500px;}
.y11_c00257{bottom:863.973000px;}
.y10_c00257{bottom:880.411500px;}
.yf_c00257{bottom:896.848500px;}
.ye_c00257{bottom:913.287000px;}
.yd_c00257{bottom:929.725500px;}
.yc_c00257{bottom:946.164000px;}
.yb_c00257{bottom:962.602500px;}
.ya_c00257{bottom:995.479500px;}
.y9_c00257{bottom:1011.918000px;}
.y8_c00257{bottom:1028.356500px;}
.y7_c00257{bottom:1061.232000px;}
.y6_c00257{bottom:1077.670500px;}
.y5_c00257{bottom:1094.109000px;}
.y4_c00257{bottom:1110.547500px;}
.y3_c00257{bottom:1126.986000px;}
.y2_c00257{bottom:1143.424500px;}
.y1_c00257{bottom:1159.863000px;}
.h2_c00257{height:35.190766px;}
.h3_c00257{height:36.007158px;}
.h5_c00257{height:40.511979px;}
.h6_c00257{height:52.332837px;}
.h4_c00257{height:58.337477px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w0_c00257{width:892.920000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x3_c00257{left:127.558500px;}
.x1_c00257{left:137.122500px;}
.x2_c00257{left:177.007500px;}
.x4_c00257{left:435.249000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls3_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.078221pt;}
.ls1_c00257{letter-spacing:0.087539pt;}
.ls2_c00257{letter-spacing:0.092873pt;}
.ws1_c00257{word-spacing:-23.622682pt;}
.ws2_c00257{word-spacing:-23.544461pt;}
.wsb_c00257{word-spacing:-19.720314pt;}
.wsc_c00257{word-spacing:-19.712665pt;}
.wsd_c00257{word-spacing:-19.710934pt;}
.ws11_c00257{word-spacing:-18.331184pt;}
.ws9_c00257{word-spacing:-16.684034pt;}
.wsf_c00257{word-spacing:-15.780758pt;}
.wse_c00257{word-spacing:-15.727625pt;}
.ws10_c00257{word-spacing:-14.346144pt;}
.ws8_c00257{word-spacing:-13.283467pt;}
.wsa_c00257{word-spacing:-10.389461pt;}
.ws6_c00257{word-spacing:-8.878599pt;}
.ws7_c00257{word-spacing:-8.877777pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.ws3_c00257{word-spacing:0.039110pt;}
.ws4_c00257{word-spacing:0.189730pt;}
.ws5_c00257{word-spacing:38.256533pt;}
._4_c00257{margin-left:-3.931906pt;}
._8_c00257{margin-left:-2.853668pt;}
._2_c00257{margin-left:-1.377235pt;}
._1_c00257{width:0.925811pt;}
._5_c00257{width:16.827875pt;}
._3_c00257{width:17.720725pt;}
._6_c00257{width:20.501946pt;}
._7_c00257{width:25.291721pt;}
._0_c00257{width:94.803610pt;}
.fs0_c00257{font-size:39.110400pt;}
.fs2_c00257{font-size:53.133867pt;}
.fs1_c00257{font-size:76.513067pt;}
.y0_c00257{bottom:0.000000pt;}
.y20_c00257{bottom:39.333333pt;}
.y1f_c00257{bottom:72.934667pt;}
.y1e_c00257{bottom:88.874667pt;}
.y1d_c00257{bottom:104.814667pt;}
.y1c_c00257{bottom:120.754667pt;}
.y1b_c00257{bottom:136.694667pt;}
.y1a_c00257{bottom:163.306667pt;}
.y19_c00257{bottom:189.917333pt;}
.y18_c00257{bottom:216.529333pt;}
.y17_c00257{bottom:243.140000pt;}
.y16_c00257{bottom:284.624000pt;}
.y15_c00257{bottom:709.528000pt;}
.y14_c00257{bottom:724.140000pt;}
.y13_c00257{bottom:738.752000pt;}
.y12_c00257{bottom:753.364000pt;}
.y11_c00257{bottom:767.976000pt;}
.y10_c00257{bottom:782.588000pt;}
.yf_c00257{bottom:797.198667pt;}
.ye_c00257{bottom:811.810667pt;}
.yd_c00257{bottom:826.422667pt;}
.yc_c00257{bottom:841.034667pt;}
.yb_c00257{bottom:855.646667pt;}
.ya_c00257{bottom:884.870667pt;}
.y9_c00257{bottom:899.482667pt;}
.y8_c00257{bottom:914.094667pt;}
.y7_c00257{bottom:943.317333pt;}
.y6_c00257{bottom:957.929333pt;}
.y5_c00257{bottom:972.541333pt;}
.y4_c00257{bottom:987.153333pt;}
.y3_c00257{bottom:1001.765333pt;}
.y2_c00257{bottom:1016.377333pt;}
.y1_c00257{bottom:1030.989333pt;}
.h2_c00257{height:31.280681pt;}
.h3_c00257{height:32.006363pt;}
.h5_c00257{height:36.010648pt;}
.h6_c00257{height:46.518078pt;}
.h4_c00257{height:51.855535pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w0_c00257{width:793.706667pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x3_c00257{left:113.385333pt;}
.x1_c00257{left:121.886667pt;}
.x2_c00257{left:157.340000pt;}
.x4_c00257{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_968eafd7a7268d5df64141bb.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_2ffb8386f7f96d728f5136fd.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_05226c4291198e5adb66b77d.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls4_c00258{letter-spacing:0.000000px;}
.ls1_c00258{letter-spacing:0.087998px;}
.ls2_c00258{letter-spacing:0.098482px;}
.ls0_c00258{letter-spacing:0.104482px;}
.ls3_c00258{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00258{word-spacing:-26.575517px;}
.ws1_c00258{word-spacing:-26.487518px;}
.ws6_c00258{word-spacing:0.000000px;}
.ws3_c00258{word-spacing:0.043999px;}
.ws9_c00258{word-spacing:0.056767px;}
.ws7_c00258{word-spacing:0.073250px;}
.ws8_c00258{word-spacing:0.083734px;}
.ws0_c00258{word-spacing:0.175997px;}
.wsa_c00258{word-spacing:0.202963px;}
.ws5_c00258{word-spacing:0.213446px;}
.ws4_c00258{word-spacing:0.219446px;}
._0_c00258{width:1.005737px;}
._2_c00258{width:53.283031px;}
._1_c00258{width:79.858548px;}
._4_c00258{width:106.654061px;}
._3_c00258{width:133.452408px;}
.fc5_c00258{color:rgb(0,0,207);}
.fc4_c00258{color:rgb(79,153,5);}
.fc3_c00258{color:rgb(207,92,0);}
.fc2_c00258{color:rgb(0,0,0);}
.fc1_c00258{color:rgb(33,74,135);}
.fc0_c00258{color:rgb(143,89,3);}
.fs0_c00258{font-size:43.999200px;}
.fs1_c00258{font-size:59.775600px;}
.y0_c00258{bottom:0.000000px;}
.y2b_c00258{bottom:44.250000px;}
.y2a_c00258{bottom:383.599500px;}
.y29_c00258{bottom:400.038000px;}
.y28_c00258{bottom:416.475000px;}
.y27_c00258{bottom:432.913500px;}
.y26_c00258{bottom:449.352000px;}
.y25_c00258{bottom:465.790500px;}
.y24_c00258{bottom:482.229000px;}
.y23_c00258{bottom:498.667500px;}
.y22_c00258{bottom:515.106000px;}
.y21_c00258{bottom:531.544500px;}
.y20_c00258{bottom:547.983000px;}
.y1f_c00258{bottom:580.858500px;}
.y1e_c00258{bottom:597.297000px;}
.y1d_c00258{bottom:613.735500px;}
.y1c_c00258{bottom:646.612500px;}
.y1b_c00258{bottom:663.051000px;}
.y1a_c00258{bottom:679.489500px;}
.y19_c00258{bottom:695.928000px;}
.y18_c00258{bottom:712.366500px;}
.y17_c00258{bottom:728.805000px;}
.y16_c00258{bottom:745.243500px;}
.y15_c00258{bottom:778.119000px;}
.y14_c00258{bottom:794.557500px;}
.y13_c00258{bottom:810.996000px;}
.y12_c00258{bottom:827.434500px;}
.y11_c00258{bottom:843.873000px;}
.y10_c00258{bottom:860.311500px;}
.yf_c00258{bottom:876.750000px;}
.ye_c00258{bottom:893.188500px;}
.yd_c00258{bottom:909.627000px;}
.yc_c00258{bottom:926.064000px;}
.yb_c00258{bottom:942.502500px;}
.ya_c00258{bottom:958.941000px;}
.y9_c00258{bottom:975.379500px;}
.y8_c00258{bottom:991.818000px;}
.y7_c00258{bottom:1008.256500px;}
.y6_c00258{bottom:1024.695000px;}
.y5_c00258{bottom:1057.572000px;}
.y4_c00258{bottom:1074.010500px;}
.y3_c00258{bottom:1106.886000px;}
.y2_c00258{bottom:1123.324500px;}
.y1_c00258{bottom:1139.389500px;}
.h2_c00258{height:35.190766px;}
.h3_c00258{height:36.007158px;}
.h4_c00258{height:52.332837px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w0_c00258{width:892.920000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:137.122500px;}
.x2_c00258{left:143.770500px;}
.x3_c00258{left:177.007500px;}
.x4_c00258{left:435.249000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls4_c00258{letter-spacing:0.000000pt;}
.ls1_c00258{letter-spacing:0.078221pt;}
.ls2_c00258{letter-spacing:0.087539pt;}
.ls0_c00258{letter-spacing:0.092873pt;}
.ls3_c00258{letter-spacing:23.724873pt;}
.ws2_c00258{word-spacing:-23.622682pt;}
.ws1_c00258{word-spacing:-23.544461pt;}
.ws6_c00258{word-spacing:0.000000pt;}
.ws3_c00258{word-spacing:0.039110pt;}
.ws9_c00258{word-spacing:0.050460pt;}
.ws7_c00258{word-spacing:0.065111pt;}
.ws8_c00258{word-spacing:0.074430pt;}
.ws0_c00258{word-spacing:0.156442pt;}
.wsa_c00258{word-spacing:0.180412pt;}
.ws5_c00258{word-spacing:0.189730pt;}
.ws4_c00258{word-spacing:0.195063pt;}
._0_c00258{width:0.893988pt;}
._2_c00258{width:47.362694pt;}
._1_c00258{width:70.985376pt;}
._4_c00258{width:94.803610pt;}
._3_c00258{width:118.624363pt;}
.fs0_c00258{font-size:39.110400pt;}
.fs1_c00258{font-size:53.133867pt;}
.y0_c00258{bottom:0.000000pt;}
.y2b_c00258{bottom:39.333333pt;}
.y2a_c00258{bottom:340.977333pt;}
.y29_c00258{bottom:355.589333pt;}
.y28_c00258{bottom:370.200000pt;}
.y27_c00258{bottom:384.812000pt;}
.y26_c00258{bottom:399.424000pt;}
.y25_c00258{bottom:414.036000pt;}
.y24_c00258{bottom:428.648000pt;}
.y23_c00258{bottom:443.260000pt;}
.y22_c00258{bottom:457.872000pt;}
.y21_c00258{bottom:472.484000pt;}
.y20_c00258{bottom:487.096000pt;}
.y1f_c00258{bottom:516.318667pt;}
.y1e_c00258{bottom:530.930667pt;}
.y1d_c00258{bottom:545.542667pt;}
.y1c_c00258{bottom:574.766667pt;}
.y1b_c00258{bottom:589.378667pt;}
.y1a_c00258{bottom:603.990667pt;}
.y19_c00258{bottom:618.602667pt;}
.y18_c00258{bottom:633.214667pt;}
.y17_c00258{bottom:647.826667pt;}
.y16_c00258{bottom:662.438667pt;}
.y15_c00258{bottom:691.661333pt;}
.y14_c00258{bottom:706.273333pt;}
.y13_c00258{bottom:720.885333pt;}
.y12_c00258{bottom:735.497333pt;}
.y11_c00258{bottom:750.109333pt;}
.y10_c00258{bottom:764.721333pt;}
.yf_c00258{bottom:779.333333pt;}
.ye_c00258{bottom:793.945333pt;}
.yd_c00258{bottom:808.557333pt;}
.yc_c00258{bottom:823.168000pt;}
.yb_c00258{bottom:837.780000pt;}
.ya_c00258{bottom:852.392000pt;}
.y9_c00258{bottom:867.004000pt;}
.y8_c00258{bottom:881.616000pt;}
.y7_c00258{bottom:896.228000pt;}
.y6_c00258{bottom:910.840000pt;}
.y5_c00258{bottom:940.064000pt;}
.y4_c00258{bottom:954.676000pt;}
.y3_c00258{bottom:983.898667pt;}
.y2_c00258{bottom:998.510667pt;}
.y1_c00258{bottom:1012.790667pt;}
.h2_c00258{height:31.280681pt;}
.h3_c00258{height:32.006363pt;}
.h4_c00258{height:46.518078pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w0_c00258{width:793.706667pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:121.886667pt;}
.x2_c00258{left:127.796000pt;}
.x3_c00258{left:157.340000pt;}
.x4_c00258{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95504ff515f4869f547b73c4.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:0.893555;font-style:normal;font-weight:normal;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_ee5104e21c6e9ea19371ddc2.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.083496;font-style:normal;font-weight:normal;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_5734c826410c0fa43a03ad5b.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.102051;font-style:normal;font-weight:normal;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_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00259;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.048828;font-style: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;}
.ls4_c00259{letter-spacing:0.000000px;}
.ls0_c00259{letter-spacing:0.087998px;}
.ls2_c00259{letter-spacing:0.098482px;}
.ls1_c00259{letter-spacing:0.104482px;}
.ls3_c00259{letter-spacing:26.690482px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00259{word-spacing:-26.575517px;}
.wsf_c00259{word-spacing:-26.487518px;}
.ws7_c00259{word-spacing:-22.185353px;}
.ws8_c00259{word-spacing:-22.176748px;}
.ws9_c00259{word-spacing:-22.174801px;}
.wsd_c00259{word-spacing:-20.622582px;}
.ws5_c00259{word-spacing:-18.769538px;}
.wsb_c00259{word-spacing:-17.753353px;}
.wsa_c00259{word-spacing:-17.693578px;}
.wsc_c00259{word-spacing:-16.139412px;}
.ws4_c00259{word-spacing:-14.943900px;}
.ws6_c00259{word-spacing:-11.688144px;}
.ws1_c00259{word-spacing:-9.988424px;}
.ws3_c00259{word-spacing:-9.987499px;}
.ws13_c00259{word-spacing:0.000000px;}
.ws10_c00259{word-spacing:0.043999px;}
.ws16_c00259{word-spacing:0.056767px;}
.ws14_c00259{word-spacing:0.073250px;}
.ws15_c00259{word-spacing:0.083734px;}
.wse_c00259{word-spacing:0.175997px;}
.ws17_c00259{word-spacing:0.202963px;}
.ws12_c00259{word-spacing:0.213446px;}
.ws11_c00259{word-spacing:0.219446px;}
.ws0_c00259{word-spacing:43.038600px;}
._2_c00259{margin-left:-4.423394px;}
._6_c00259{margin-left:-3.210377px;}
._0_c00259{margin-left:-1.549390px;}
._7_c00259{width:1.005737px;}
._3_c00259{width:18.931360px;}
._1_c00259{width:19.935816px;}
._4_c00259{width:23.064689px;}
._5_c00259{width:28.453186px;}
._9_c00259{width:53.283031px;}
._8_c00259{width:79.858548px;}
._a_c00259{width:133.452408px;}
.fc6_c00259{color:rgb(0,0,207);}
.fc5_c00259{color:rgb(79,153,5);}
.fc3_c00259{color:rgb(33,74,135);}
.fc2_c00259{color:rgb(143,89,3);}
.fc4_c00259{color:rgb(207,92,0);}
.fc1_c00259{color:rgb(6,69,173);}
.fc0_c00259{color:rgb(0,0,0);}
.fs2_c00259{font-size:43.999200px;}
.fs1_c00259{font-size:59.775600px;}
.fs0_c00259{font-size:86.077200px;}
.y0_c00259{bottom:0.000000px;}
.y20_c00259{bottom:44.250000px;}
.y1f_c00259{bottom:103.420500px;}
.y1e_c00259{bottom:119.859000px;}
.y1d_c00259{bottom:136.297500px;}
.y1c_c00259{bottom:152.736000px;}
.y1b_c00259{bottom:169.174500px;}
.y1a_c00259{bottom:185.613000px;}
.y19_c00259{bottom:202.051500px;}
.y18_c00259{bottom:218.490000px;}
.y17_c00259{bottom:234.927000px;}
.y16_c00259{bottom:251.365500px;}
.y15_c00259{bottom:267.804000px;}
.y14_c00259{bottom:284.242500px;}
.y13_c00259{bottom:300.681000px;}
.y12_c00259{bottom:317.119500px;}
.y11_c00259{bottom:333.558000px;}
.y10_c00259{bottom:349.996500px;}
.yf_c00259{bottom:382.873500px;}
.ye_c00259{bottom:399.310500px;}
.yd_c00259{bottom:432.187500px;}
.yc_c00259{bottom:448.626000px;}
.yb_c00259{bottom:464.691000px;}
.ya_c00259{bottom:513.009000px;}
.y9_c00259{bottom:530.941500px;}
.y8_c00259{bottom:548.874000px;}
.y7_c00259{bottom:566.806500px;}
.y6_c00259{bottom:584.739000px;}
.y5_c00259{bottom:611.683500px;}
.y4_c00259{bottom:638.626500px;}
.y3_c00259{bottom:665.569500px;}
.y2_c00259{bottom:692.512500px;}
.y1_c00259{bottom:734.850000px;}
.h5_c00259{height:35.190766px;}
.h6_c00259{height:36.007158px;}
.h3_c00259{height:40.511979px;}
.h4_c00259{height:52.332837px;}
.h2_c00259{height:58.337477px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w0_c00259{width:892.920000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:127.558500px;}
.x2_c00259{left:137.122500px;}
.x3_c00259{left:143.770500px;}
.x4_c00259{left:435.249000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls4_c00259{letter-spacing:0.000000pt;}
.ls0_c00259{letter-spacing:0.078221pt;}
.ls2_c00259{letter-spacing:0.087539pt;}
.ls1_c00259{letter-spacing:0.092873pt;}
.ls3_c00259{letter-spacing:23.724873pt;}
.ws2_c00259{word-spacing:-23.622682pt;}
.wsf_c00259{word-spacing:-23.544461pt;}
.ws7_c00259{word-spacing:-19.720314pt;}
.ws8_c00259{word-spacing:-19.712665pt;}
.ws9_c00259{word-spacing:-19.710934pt;}
.wsd_c00259{word-spacing:-18.331184pt;}
.ws5_c00259{word-spacing:-16.684034pt;}
.wsb_c00259{word-spacing:-15.780758pt;}
.wsa_c00259{word-spacing:-15.727625pt;}
.wsc_c00259{word-spacing:-14.346144pt;}
.ws4_c00259{word-spacing:-13.283467pt;}
.ws6_c00259{word-spacing:-10.389461pt;}
.ws1_c00259{word-spacing:-8.878599pt;}
.ws3_c00259{word-spacing:-8.877777pt;}
.ws13_c00259{word-spacing:0.000000pt;}
.ws10_c00259{word-spacing:0.039110pt;}
.ws16_c00259{word-spacing:0.050460pt;}
.ws14_c00259{word-spacing:0.065111pt;}
.ws15_c00259{word-spacing:0.074430pt;}
.wse_c00259{word-spacing:0.156442pt;}
.ws17_c00259{word-spacing:0.180412pt;}
.ws12_c00259{word-spacing:0.189730pt;}
.ws11_c00259{word-spacing:0.195063pt;}
.ws0_c00259{word-spacing:38.256533pt;}
._2_c00259{margin-left:-3.931906pt;}
._6_c00259{margin-left:-2.853668pt;}
._0_c00259{margin-left:-1.377235pt;}
._7_c00259{width:0.893988pt;}
._3_c00259{width:16.827875pt;}
._1_c00259{width:17.720725pt;}
._4_c00259{width:20.501946pt;}
._5_c00259{width:25.291721pt;}
._9_c00259{width:47.362694pt;}
._8_c00259{width:70.985376pt;}
._a_c00259{width:118.624363pt;}
.fs2_c00259{font-size:39.110400pt;}
.fs1_c00259{font-size:53.133867pt;}
.fs0_c00259{font-size:76.513067pt;}
.y0_c00259{bottom:0.000000pt;}
.y20_c00259{bottom:39.333333pt;}
.y1f_c00259{bottom:91.929333pt;}
.y1e_c00259{bottom:106.541333pt;}
.y1d_c00259{bottom:121.153333pt;}
.y1c_c00259{bottom:135.765333pt;}
.y1b_c00259{bottom:150.377333pt;}
.y1a_c00259{bottom:164.989333pt;}
.y19_c00259{bottom:179.601333pt;}
.y18_c00259{bottom:194.213333pt;}
.y17_c00259{bottom:208.824000pt;}
.y16_c00259{bottom:223.436000pt;}
.y15_c00259{bottom:238.048000pt;}
.y14_c00259{bottom:252.660000pt;}
.y13_c00259{bottom:267.272000pt;}
.y12_c00259{bottom:281.884000pt;}
.y11_c00259{bottom:296.496000pt;}
.y10_c00259{bottom:311.108000pt;}
.yf_c00259{bottom:340.332000pt;}
.ye_c00259{bottom:354.942667pt;}
.yd_c00259{bottom:384.166667pt;}
.yc_c00259{bottom:398.778667pt;}
.yb_c00259{bottom:413.058667pt;}
.ya_c00259{bottom:456.008000pt;}
.y9_c00259{bottom:471.948000pt;}
.y8_c00259{bottom:487.888000pt;}
.y7_c00259{bottom:503.828000pt;}
.y6_c00259{bottom:519.768000pt;}
.y5_c00259{bottom:543.718667pt;}
.y4_c00259{bottom:567.668000pt;}
.y3_c00259{bottom:591.617333pt;}
.y2_c00259{bottom:615.566667pt;}
.y1_c00259{bottom:653.200000pt;}
.h5_c00259{height:31.280681pt;}
.h6_c00259{height:32.006363pt;}
.h3_c00259{height:36.010648pt;}
.h4_c00259{height:46.518078pt;}
.h2_c00259{height:51.855535pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w0_c00259{width:793.706667pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:113.385333pt;}
.x2_c00259{left:121.886667pt;}
.x3_c00259{left:127.796000pt;}
.x4_c00259{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42d55e2189bbdfaa4450eb7d.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.014648;font-style:normal;font-weight:normal;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_8c4973cc02666f3d45288937.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_1a130bc5b23c88a339fca37a.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_c936bae06acee933e4107715.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.102051;font-style: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;}
.ls3_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.087998px;}
.ls1_c00260{letter-spacing:0.098482px;}
.ls2_c00260{letter-spacing:0.104482px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00260{word-spacing:-26.575517px;}
.ws2_c00260{word-spacing:-26.487518px;}
.wsc_c00260{word-spacing:-22.506821px;}
.wsb_c00260{word-spacing:-22.475626px;}
.wsd_c00260{word-spacing:-22.415850px;}
.wsf_c00260{word-spacing:-21.937645px;}
.ws9_c00260{word-spacing:-18.769538px;}
.wse_c00260{word-spacing:-18.231558px;}
.ws10_c00260{word-spacing:-15.541656px;}
.ws8_c00260{word-spacing:-14.943900px;}
.wsa_c00260{word-spacing:-11.844144px;}
.ws6_c00260{word-spacing:-9.988424px;}
.ws7_c00260{word-spacing:-9.987499px;}
.ws0_c00260{word-spacing:0.000000px;}
.ws3_c00260{word-spacing:0.043999px;}
.ws4_c00260{word-spacing:0.213446px;}
.ws5_c00260{word-spacing:43.038600px;}
._2_c00260{margin-left:-7.833025px;}
._4_c00260{margin-left:-4.423394px;}
._8_c00260{margin-left:-3.287658px;}
._5_c00260{margin-left:-1.075961px;}
._1_c00260{width:1.041538px;}
._6_c00260{width:12.791978px;}
._3_c00260{width:19.935816px;}
._7_c00260{width:30.545332px;}
._0_c00260{width:80.078544px;}
.fc5_c00260{color:rgb(0,0,207);}
.fc6_c00260{color:rgb(6,69,173);}
.fc4_c00260{color:rgb(207,92,0);}
.fc3_c00260{color:rgb(79,153,5);}
.fc2_c00260{color:rgb(33,74,135);}
.fc1_c00260{color:rgb(0,0,0);}
.fc0_c00260{color:rgb(143,89,3);}
.fs0_c00260{font-size:43.999200px;}
.fs2_c00260{font-size:59.775600px;}
.fs1_c00260{font-size:86.077200px;}
.y0_c00260{bottom:0.000000px;}
.y20_c00260{bottom:44.250000px;}
.y1f_c00260{bottom:82.051500px;}
.y1e_c00260{bottom:99.984000px;}
.y1d_c00260{bottom:117.916500px;}
.y1c_c00260{bottom:135.849000px;}
.y1b_c00260{bottom:153.781500px;}
.y1a_c00260{bottom:183.720000px;}
.y19_c00260{bottom:213.657000px;}
.y18_c00260{bottom:243.595500px;}
.y17_c00260{bottom:273.532500px;}
.y16_c00260{bottom:320.202000px;}
.y15_c00260{bottom:798.219000px;}
.y14_c00260{bottom:814.657500px;}
.y13_c00260{bottom:831.096000px;}
.y12_c00260{bottom:847.534500px;}
.y11_c00260{bottom:863.973000px;}
.y10_c00260{bottom:880.411500px;}
.yf_c00260{bottom:896.848500px;}
.ye_c00260{bottom:913.287000px;}
.yd_c00260{bottom:929.725500px;}
.yc_c00260{bottom:946.164000px;}
.yb_c00260{bottom:962.602500px;}
.ya_c00260{bottom:995.479500px;}
.y9_c00260{bottom:1011.918000px;}
.y8_c00260{bottom:1028.356500px;}
.y7_c00260{bottom:1061.232000px;}
.y6_c00260{bottom:1077.670500px;}
.y5_c00260{bottom:1094.109000px;}
.y4_c00260{bottom:1110.547500px;}
.y3_c00260{bottom:1126.986000px;}
.y2_c00260{bottom:1143.424500px;}
.y1_c00260{bottom:1159.863000px;}
.h2_c00260{height:35.190766px;}
.h3_c00260{height:36.007158px;}
.h5_c00260{height:40.511979px;}
.h6_c00260{height:52.332837px;}
.h4_c00260{height:58.337477px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w0_c00260{width:892.920000px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x3_c00260{left:127.558500px;}
.x1_c00260{left:137.122500px;}
.x2_c00260{left:177.007500px;}
.x4_c00260{left:435.249000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls3_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.078221pt;}
.ls1_c00260{letter-spacing:0.087539pt;}
.ls2_c00260{letter-spacing:0.092873pt;}
.ws1_c00260{word-spacing:-23.622682pt;}
.ws2_c00260{word-spacing:-23.544461pt;}
.wsc_c00260{word-spacing:-20.006063pt;}
.wsb_c00260{word-spacing:-19.978334pt;}
.wsd_c00260{word-spacing:-19.925200pt;}
.wsf_c00260{word-spacing:-19.500129pt;}
.ws9_c00260{word-spacing:-16.684034pt;}
.wse_c00260{word-spacing:-16.205829pt;}
.ws10_c00260{word-spacing:-13.814805pt;}
.ws8_c00260{word-spacing:-13.283467pt;}
.wsa_c00260{word-spacing:-10.528128pt;}
.ws6_c00260{word-spacing:-8.878599pt;}
.ws7_c00260{word-spacing:-8.877777pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.ws3_c00260{word-spacing:0.039110pt;}
.ws4_c00260{word-spacing:0.189730pt;}
.ws5_c00260{word-spacing:38.256533pt;}
._2_c00260{margin-left:-6.962689pt;}
._4_c00260{margin-left:-3.931906pt;}
._8_c00260{margin-left:-2.922363pt;}
._5_c00260{margin-left:-0.956410pt;}
._1_c00260{width:0.925811pt;}
._6_c00260{width:11.370647pt;}
._3_c00260{width:17.720725pt;}
._7_c00260{width:27.151406pt;}
._0_c00260{width:71.180928pt;}
.fs0_c00260{font-size:39.110400pt;}
.fs2_c00260{font-size:53.133867pt;}
.fs1_c00260{font-size:76.513067pt;}
.y0_c00260{bottom:0.000000pt;}
.y20_c00260{bottom:39.333333pt;}
.y1f_c00260{bottom:72.934667pt;}
.y1e_c00260{bottom:88.874667pt;}
.y1d_c00260{bottom:104.814667pt;}
.y1c_c00260{bottom:120.754667pt;}
.y1b_c00260{bottom:136.694667pt;}
.y1a_c00260{bottom:163.306667pt;}
.y19_c00260{bottom:189.917333pt;}
.y18_c00260{bottom:216.529333pt;}
.y17_c00260{bottom:243.140000pt;}
.y16_c00260{bottom:284.624000pt;}
.y15_c00260{bottom:709.528000pt;}
.y14_c00260{bottom:724.140000pt;}
.y13_c00260{bottom:738.752000pt;}
.y12_c00260{bottom:753.364000pt;}
.y11_c00260{bottom:767.976000pt;}
.y10_c00260{bottom:782.588000pt;}
.yf_c00260{bottom:797.198667pt;}
.ye_c00260{bottom:811.810667pt;}
.yd_c00260{bottom:826.422667pt;}
.yc_c00260{bottom:841.034667pt;}
.yb_c00260{bottom:855.646667pt;}
.ya_c00260{bottom:884.870667pt;}
.y9_c00260{bottom:899.482667pt;}
.y8_c00260{bottom:914.094667pt;}
.y7_c00260{bottom:943.317333pt;}
.y6_c00260{bottom:957.929333pt;}
.y5_c00260{bottom:972.541333pt;}
.y4_c00260{bottom:987.153333pt;}
.y3_c00260{bottom:1001.765333pt;}
.y2_c00260{bottom:1016.377333pt;}
.y1_c00260{bottom:1030.989333pt;}
.h2_c00260{height:31.280681pt;}
.h3_c00260{height:32.006363pt;}
.h5_c00260{height:36.010648pt;}
.h6_c00260{height:46.518078pt;}
.h4_c00260{height:51.855535pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w0_c00260{width:793.706667pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x3_c00260{left:113.385333pt;}
.x1_c00260{left:121.886667pt;}
.x2_c00260{left:157.340000pt;}
.x4_c00260{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3289a6cfd6c7b97f5b02749f.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.048828;font-style:normal;font-weight:normal;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_f06494874afad7e0153c500a.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.083496;font-style:normal;font-weight:normal;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_9aeac06f5f15ee41f5682d1c.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls4_c00261{letter-spacing:0.000000px;}
.ls1_c00261{letter-spacing:0.087998px;}
.ls2_c00261{letter-spacing:0.098482px;}
.ls0_c00261{letter-spacing:0.104482px;}
.ls3_c00261{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00261{word-spacing:-26.575517px;}
.ws1_c00261{word-spacing:-26.487518px;}
.ws6_c00261{word-spacing:0.000000px;}
.ws3_c00261{word-spacing:0.043999px;}
.ws9_c00261{word-spacing:0.056767px;}
.ws7_c00261{word-spacing:0.073250px;}
.ws8_c00261{word-spacing:0.083734px;}
.ws0_c00261{word-spacing:0.175997px;}
.wsa_c00261{word-spacing:0.202963px;}
.ws5_c00261{word-spacing:0.213446px;}
.ws4_c00261{word-spacing:0.219446px;}
._0_c00261{width:1.005737px;}
._2_c00261{width:53.283031px;}
._1_c00261{width:79.858548px;}
._3_c00261{width:133.452408px;}
.fc5_c00261{color:rgb(0,0,207);}
.fc4_c00261{color:rgb(79,153,5);}
.fc3_c00261{color:rgb(207,92,0);}
.fc2_c00261{color:rgb(0,0,0);}
.fc1_c00261{color:rgb(33,74,135);}
.fc0_c00261{color:rgb(143,89,3);}
.fs0_c00261{font-size:43.999200px;}
.fs1_c00261{font-size:59.775600px;}
.y0_c00261{bottom:0.000000px;}
.y2b_c00261{bottom:44.250000px;}
.y2a_c00261{bottom:383.599500px;}
.y29_c00261{bottom:400.038000px;}
.y28_c00261{bottom:416.475000px;}
.y27_c00261{bottom:432.913500px;}
.y26_c00261{bottom:449.352000px;}
.y25_c00261{bottom:465.790500px;}
.y24_c00261{bottom:482.229000px;}
.y23_c00261{bottom:498.667500px;}
.y22_c00261{bottom:515.106000px;}
.y21_c00261{bottom:531.544500px;}
.y20_c00261{bottom:547.983000px;}
.y1f_c00261{bottom:580.858500px;}
.y1e_c00261{bottom:597.297000px;}
.y1d_c00261{bottom:613.735500px;}
.y1c_c00261{bottom:646.612500px;}
.y1b_c00261{bottom:663.051000px;}
.y1a_c00261{bottom:679.489500px;}
.y19_c00261{bottom:695.928000px;}
.y18_c00261{bottom:712.366500px;}
.y17_c00261{bottom:728.805000px;}
.y16_c00261{bottom:745.243500px;}
.y15_c00261{bottom:778.119000px;}
.y14_c00261{bottom:794.557500px;}
.y13_c00261{bottom:810.996000px;}
.y12_c00261{bottom:827.434500px;}
.y11_c00261{bottom:843.873000px;}
.y10_c00261{bottom:860.311500px;}
.yf_c00261{bottom:876.750000px;}
.ye_c00261{bottom:893.188500px;}
.yd_c00261{bottom:909.627000px;}
.yc_c00261{bottom:926.064000px;}
.yb_c00261{bottom:942.502500px;}
.ya_c00261{bottom:958.941000px;}
.y9_c00261{bottom:975.379500px;}
.y8_c00261{bottom:991.818000px;}
.y7_c00261{bottom:1008.256500px;}
.y6_c00261{bottom:1024.695000px;}
.y5_c00261{bottom:1057.572000px;}
.y4_c00261{bottom:1074.010500px;}
.y3_c00261{bottom:1106.886000px;}
.y2_c00261{bottom:1123.324500px;}
.y1_c00261{bottom:1139.389500px;}
.h2_c00261{height:35.190766px;}
.h3_c00261{height:36.007158px;}
.h4_c00261{height:52.332837px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w0_c00261{width:892.920000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:137.122500px;}
.x2_c00261{left:143.770500px;}
.x3_c00261{left:177.007500px;}
.x4_c00261{left:435.249000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls4_c00261{letter-spacing:0.000000pt;}
.ls1_c00261{letter-spacing:0.078221pt;}
.ls2_c00261{letter-spacing:0.087539pt;}
.ls0_c00261{letter-spacing:0.092873pt;}
.ls3_c00261{letter-spacing:23.724873pt;}
.ws2_c00261{word-spacing:-23.622682pt;}
.ws1_c00261{word-spacing:-23.544461pt;}
.ws6_c00261{word-spacing:0.000000pt;}
.ws3_c00261{word-spacing:0.039110pt;}
.ws9_c00261{word-spacing:0.050460pt;}
.ws7_c00261{word-spacing:0.065111pt;}
.ws8_c00261{word-spacing:0.074430pt;}
.ws0_c00261{word-spacing:0.156442pt;}
.wsa_c00261{word-spacing:0.180412pt;}
.ws5_c00261{word-spacing:0.189730pt;}
.ws4_c00261{word-spacing:0.195063pt;}
._0_c00261{width:0.893988pt;}
._2_c00261{width:47.362694pt;}
._1_c00261{width:70.985376pt;}
._3_c00261{width:118.624363pt;}
.fs0_c00261{font-size:39.110400pt;}
.fs1_c00261{font-size:53.133867pt;}
.y0_c00261{bottom:0.000000pt;}
.y2b_c00261{bottom:39.333333pt;}
.y2a_c00261{bottom:340.977333pt;}
.y29_c00261{bottom:355.589333pt;}
.y28_c00261{bottom:370.200000pt;}
.y27_c00261{bottom:384.812000pt;}
.y26_c00261{bottom:399.424000pt;}
.y25_c00261{bottom:414.036000pt;}
.y24_c00261{bottom:428.648000pt;}
.y23_c00261{bottom:443.260000pt;}
.y22_c00261{bottom:457.872000pt;}
.y21_c00261{bottom:472.484000pt;}
.y20_c00261{bottom:487.096000pt;}
.y1f_c00261{bottom:516.318667pt;}
.y1e_c00261{bottom:530.930667pt;}
.y1d_c00261{bottom:545.542667pt;}
.y1c_c00261{bottom:574.766667pt;}
.y1b_c00261{bottom:589.378667pt;}
.y1a_c00261{bottom:603.990667pt;}
.y19_c00261{bottom:618.602667pt;}
.y18_c00261{bottom:633.214667pt;}
.y17_c00261{bottom:647.826667pt;}
.y16_c00261{bottom:662.438667pt;}
.y15_c00261{bottom:691.661333pt;}
.y14_c00261{bottom:706.273333pt;}
.y13_c00261{bottom:720.885333pt;}
.y12_c00261{bottom:735.497333pt;}
.y11_c00261{bottom:750.109333pt;}
.y10_c00261{bottom:764.721333pt;}
.yf_c00261{bottom:779.333333pt;}
.ye_c00261{bottom:793.945333pt;}
.yd_c00261{bottom:808.557333pt;}
.yc_c00261{bottom:823.168000pt;}
.yb_c00261{bottom:837.780000pt;}
.ya_c00261{bottom:852.392000pt;}
.y9_c00261{bottom:867.004000pt;}
.y8_c00261{bottom:881.616000pt;}
.y7_c00261{bottom:896.228000pt;}
.y6_c00261{bottom:910.840000pt;}
.y5_c00261{bottom:940.064000pt;}
.y4_c00261{bottom:954.676000pt;}
.y3_c00261{bottom:983.898667pt;}
.y2_c00261{bottom:998.510667pt;}
.y1_c00261{bottom:1012.790667pt;}
.h2_c00261{height:31.280681pt;}
.h3_c00261{height:32.006363pt;}
.h4_c00261{height:46.518078pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w0_c00261{width:793.706667pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:121.886667pt;}
.x2_c00261{left:127.796000pt;}
.x3_c00261{left:157.340000pt;}
.x4_c00261{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5d106345a21480d2750dfbc.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:0.893555;font-style:normal;font-weight:normal;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_0b88ce8075cdc32c208fb575.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.083496;font-style:normal;font-weight:normal;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_89e629c454da67a3219be8b5.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.102051;font-style:normal;font-weight:normal;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_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.048828;font-style: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;}
.ls4_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.087998px;}
.ls2_c00262{letter-spacing:0.098482px;}
.ls1_c00262{letter-spacing:0.104482px;}
.ls3_c00262{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00262{word-spacing:-26.575517px;}
.wse_c00262{word-spacing:-26.487518px;}
.ws8_c00262{word-spacing:-22.506821px;}
.ws7_c00262{word-spacing:-22.475626px;}
.ws9_c00262{word-spacing:-22.415850px;}
.wsb_c00262{word-spacing:-21.937645px;}
.ws5_c00262{word-spacing:-18.769538px;}
.wsa_c00262{word-spacing:-18.231558px;}
.wsc_c00262{word-spacing:-15.541656px;}
.ws4_c00262{word-spacing:-14.943900px;}
.ws6_c00262{word-spacing:-11.844144px;}
.ws1_c00262{word-spacing:-9.988424px;}
.ws3_c00262{word-spacing:-9.987499px;}
.ws12_c00262{word-spacing:0.000000px;}
.wsf_c00262{word-spacing:0.043999px;}
.ws15_c00262{word-spacing:0.056767px;}
.ws13_c00262{word-spacing:0.073250px;}
.ws14_c00262{word-spacing:0.083734px;}
.wsd_c00262{word-spacing:0.175997px;}
.ws16_c00262{word-spacing:0.202963px;}
.ws11_c00262{word-spacing:0.213446px;}
.ws10_c00262{word-spacing:0.219446px;}
.ws0_c00262{word-spacing:43.038600px;}
._0_c00262{margin-left:-7.833025px;}
._2_c00262{margin-left:-4.423394px;}
._6_c00262{margin-left:-3.287658px;}
._3_c00262{margin-left:-1.075961px;}
._7_c00262{width:1.005737px;}
._4_c00262{width:12.791978px;}
._1_c00262{width:19.935816px;}
._5_c00262{width:30.545332px;}
._9_c00262{width:53.283031px;}
._8_c00262{width:79.858548px;}
._a_c00262{width:133.452408px;}
.fc6_c00262{color:rgb(0,0,207);}
.fc5_c00262{color:rgb(79,153,5);}
.fc3_c00262{color:rgb(33,74,135);}
.fc2_c00262{color:rgb(143,89,3);}
.fc4_c00262{color:rgb(207,92,0);}
.fc1_c00262{color:rgb(6,69,173);}
.fc0_c00262{color:rgb(0,0,0);}
.fs2_c00262{font-size:43.999200px;}
.fs1_c00262{font-size:59.775600px;}
.fs0_c00262{font-size:86.077200px;}
.y0_c00262{bottom:0.000000px;}
.y20_c00262{bottom:44.250000px;}
.y1f_c00262{bottom:103.420500px;}
.y1e_c00262{bottom:119.859000px;}
.y1d_c00262{bottom:136.297500px;}
.y1c_c00262{bottom:152.736000px;}
.y1b_c00262{bottom:169.174500px;}
.y1a_c00262{bottom:185.613000px;}
.y19_c00262{bottom:202.051500px;}
.y18_c00262{bottom:218.490000px;}
.y17_c00262{bottom:234.927000px;}
.y16_c00262{bottom:251.365500px;}
.y15_c00262{bottom:267.804000px;}
.y14_c00262{bottom:284.242500px;}
.y13_c00262{bottom:300.681000px;}
.y12_c00262{bottom:317.119500px;}
.y11_c00262{bottom:333.558000px;}
.y10_c00262{bottom:349.996500px;}
.yf_c00262{bottom:382.873500px;}
.ye_c00262{bottom:399.310500px;}
.yd_c00262{bottom:432.187500px;}
.yc_c00262{bottom:448.626000px;}
.yb_c00262{bottom:464.691000px;}
.ya_c00262{bottom:513.009000px;}
.y9_c00262{bottom:530.941500px;}
.y8_c00262{bottom:548.874000px;}
.y7_c00262{bottom:566.806500px;}
.y6_c00262{bottom:584.739000px;}
.y5_c00262{bottom:611.683500px;}
.y4_c00262{bottom:638.626500px;}
.y3_c00262{bottom:665.569500px;}
.y2_c00262{bottom:692.512500px;}
.y1_c00262{bottom:734.850000px;}
.h5_c00262{height:35.190766px;}
.h6_c00262{height:36.007158px;}
.h3_c00262{height:40.511979px;}
.h4_c00262{height:52.332837px;}
.h2_c00262{height:58.337477px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w0_c00262{width:892.920000px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:127.558500px;}
.x2_c00262{left:137.122500px;}
.x3_c00262{left:143.770500px;}
.x4_c00262{left:435.249000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls4_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.078221pt;}
.ls2_c00262{letter-spacing:0.087539pt;}
.ls1_c00262{letter-spacing:0.092873pt;}
.ls3_c00262{letter-spacing:23.724873pt;}
.ws2_c00262{word-spacing:-23.622682pt;}
.wse_c00262{word-spacing:-23.544461pt;}
.ws8_c00262{word-spacing:-20.006063pt;}
.ws7_c00262{word-spacing:-19.978334pt;}
.ws9_c00262{word-spacing:-19.925200pt;}
.wsb_c00262{word-spacing:-19.500129pt;}
.ws5_c00262{word-spacing:-16.684034pt;}
.wsa_c00262{word-spacing:-16.205829pt;}
.wsc_c00262{word-spacing:-13.814805pt;}
.ws4_c00262{word-spacing:-13.283467pt;}
.ws6_c00262{word-spacing:-10.528128pt;}
.ws1_c00262{word-spacing:-8.878599pt;}
.ws3_c00262{word-spacing:-8.877777pt;}
.ws12_c00262{word-spacing:0.000000pt;}
.wsf_c00262{word-spacing:0.039110pt;}
.ws15_c00262{word-spacing:0.050460pt;}
.ws13_c00262{word-spacing:0.065111pt;}
.ws14_c00262{word-spacing:0.074430pt;}
.wsd_c00262{word-spacing:0.156442pt;}
.ws16_c00262{word-spacing:0.180412pt;}
.ws11_c00262{word-spacing:0.189730pt;}
.ws10_c00262{word-spacing:0.195063pt;}
.ws0_c00262{word-spacing:38.256533pt;}
._0_c00262{margin-left:-6.962689pt;}
._2_c00262{margin-left:-3.931906pt;}
._6_c00262{margin-left:-2.922363pt;}
._3_c00262{margin-left:-0.956410pt;}
._7_c00262{width:0.893988pt;}
._4_c00262{width:11.370647pt;}
._1_c00262{width:17.720725pt;}
._5_c00262{width:27.151406pt;}
._9_c00262{width:47.362694pt;}
._8_c00262{width:70.985376pt;}
._a_c00262{width:118.624363pt;}
.fs2_c00262{font-size:39.110400pt;}
.fs1_c00262{font-size:53.133867pt;}
.fs0_c00262{font-size:76.513067pt;}
.y0_c00262{bottom:0.000000pt;}
.y20_c00262{bottom:39.333333pt;}
.y1f_c00262{bottom:91.929333pt;}
.y1e_c00262{bottom:106.541333pt;}
.y1d_c00262{bottom:121.153333pt;}
.y1c_c00262{bottom:135.765333pt;}
.y1b_c00262{bottom:150.377333pt;}
.y1a_c00262{bottom:164.989333pt;}
.y19_c00262{bottom:179.601333pt;}
.y18_c00262{bottom:194.213333pt;}
.y17_c00262{bottom:208.824000pt;}
.y16_c00262{bottom:223.436000pt;}
.y15_c00262{bottom:238.048000pt;}
.y14_c00262{bottom:252.660000pt;}
.y13_c00262{bottom:267.272000pt;}
.y12_c00262{bottom:281.884000pt;}
.y11_c00262{bottom:296.496000pt;}
.y10_c00262{bottom:311.108000pt;}
.yf_c00262{bottom:340.332000pt;}
.ye_c00262{bottom:354.942667pt;}
.yd_c00262{bottom:384.166667pt;}
.yc_c00262{bottom:398.778667pt;}
.yb_c00262{bottom:413.058667pt;}
.ya_c00262{bottom:456.008000pt;}
.y9_c00262{bottom:471.948000pt;}
.y8_c00262{bottom:487.888000pt;}
.y7_c00262{bottom:503.828000pt;}
.y6_c00262{bottom:519.768000pt;}
.y5_c00262{bottom:543.718667pt;}
.y4_c00262{bottom:567.668000pt;}
.y3_c00262{bottom:591.617333pt;}
.y2_c00262{bottom:615.566667pt;}
.y1_c00262{bottom:653.200000pt;}
.h5_c00262{height:31.280681pt;}
.h6_c00262{height:32.006363pt;}
.h3_c00262{height:36.010648pt;}
.h4_c00262{height:46.518078pt;}
.h2_c00262{height:51.855535pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w0_c00262{width:793.706667pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:113.385333pt;}
.x2_c00262{left:121.886667pt;}
.x3_c00262{left:127.796000pt;}
.x4_c00262{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37db9ee7c75407bcbb2ad658.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.014648;font-style:normal;font-weight:normal;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_41e1c698947f29b6d6a5b1d1.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_3369b7cb7576dea3a1e18ddd.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_fca38b063018fe9ccda03ad1.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.102051;font-style: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;}
.ls3_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.087998px;}
.ls1_c00263{letter-spacing:0.098482px;}
.ls2_c00263{letter-spacing:0.104482px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00263{word-spacing:-26.575517px;}
.ws2_c00263{word-spacing:-26.487518px;}
.wsc_c00263{word-spacing:-22.506821px;}
.wsb_c00263{word-spacing:-22.475626px;}
.wsd_c00263{word-spacing:-22.415850px;}
.wsf_c00263{word-spacing:-21.937645px;}
.ws9_c00263{word-spacing:-18.769538px;}
.wse_c00263{word-spacing:-18.231558px;}
.ws10_c00263{word-spacing:-15.541656px;}
.ws8_c00263{word-spacing:-14.943900px;}
.wsa_c00263{word-spacing:-11.844144px;}
.ws6_c00263{word-spacing:-9.988424px;}
.ws7_c00263{word-spacing:-9.987499px;}
.ws0_c00263{word-spacing:0.000000px;}
.ws3_c00263{word-spacing:0.043999px;}
.ws4_c00263{word-spacing:0.213446px;}
.ws5_c00263{word-spacing:43.038600px;}
._1_c00263{margin-left:-7.833025px;}
._3_c00263{margin-left:-4.423394px;}
._7_c00263{margin-left:-3.287658px;}
._4_c00263{margin-left:-1.075961px;}
._0_c00263{width:1.041538px;}
._5_c00263{width:12.791978px;}
._2_c00263{width:19.935816px;}
._6_c00263{width:30.545332px;}
.fc5_c00263{color:rgb(0,0,207);}
.fc6_c00263{color:rgb(6,69,173);}
.fc4_c00263{color:rgb(207,92,0);}
.fc3_c00263{color:rgb(79,153,5);}
.fc2_c00263{color:rgb(33,74,135);}
.fc1_c00263{color:rgb(0,0,0);}
.fc0_c00263{color:rgb(143,89,3);}
.fs0_c00263{font-size:43.999200px;}
.fs2_c00263{font-size:59.775600px;}
.fs1_c00263{font-size:86.077200px;}
.y0_c00263{bottom:0.000000px;}
.y20_c00263{bottom:44.250000px;}
.y1f_c00263{bottom:82.051500px;}
.y1e_c00263{bottom:99.984000px;}
.y1d_c00263{bottom:117.916500px;}
.y1c_c00263{bottom:135.849000px;}
.y1b_c00263{bottom:153.781500px;}
.y1a_c00263{bottom:183.720000px;}
.y19_c00263{bottom:213.657000px;}
.y18_c00263{bottom:243.595500px;}
.y17_c00263{bottom:273.532500px;}
.y16_c00263{bottom:320.202000px;}
.y15_c00263{bottom:798.219000px;}
.y14_c00263{bottom:814.657500px;}
.y13_c00263{bottom:831.096000px;}
.y12_c00263{bottom:847.534500px;}
.y11_c00263{bottom:863.973000px;}
.y10_c00263{bottom:880.411500px;}
.yf_c00263{bottom:896.848500px;}
.ye_c00263{bottom:913.287000px;}
.yd_c00263{bottom:929.725500px;}
.yc_c00263{bottom:946.164000px;}
.yb_c00263{bottom:962.602500px;}
.ya_c00263{bottom:995.479500px;}
.y9_c00263{bottom:1011.918000px;}
.y8_c00263{bottom:1028.356500px;}
.y7_c00263{bottom:1061.232000px;}
.y6_c00263{bottom:1077.670500px;}
.y5_c00263{bottom:1094.109000px;}
.y4_c00263{bottom:1110.547500px;}
.y3_c00263{bottom:1126.986000px;}
.y2_c00263{bottom:1143.424500px;}
.y1_c00263{bottom:1159.863000px;}
.h2_c00263{height:35.190766px;}
.h3_c00263{height:36.007158px;}
.h5_c00263{height:40.511979px;}
.h6_c00263{height:52.332837px;}
.h4_c00263{height:58.337477px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w0_c00263{width:892.920000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x3_c00263{left:127.558500px;}
.x1_c00263{left:137.122500px;}
.x2_c00263{left:177.007500px;}
.x4_c00263{left:435.249000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls3_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.078221pt;}
.ls1_c00263{letter-spacing:0.087539pt;}
.ls2_c00263{letter-spacing:0.092873pt;}
.ws1_c00263{word-spacing:-23.622682pt;}
.ws2_c00263{word-spacing:-23.544461pt;}
.wsc_c00263{word-spacing:-20.006063pt;}
.wsb_c00263{word-spacing:-19.978334pt;}
.wsd_c00263{word-spacing:-19.925200pt;}
.wsf_c00263{word-spacing:-19.500129pt;}
.ws9_c00263{word-spacing:-16.684034pt;}
.wse_c00263{word-spacing:-16.205829pt;}
.ws10_c00263{word-spacing:-13.814805pt;}
.ws8_c00263{word-spacing:-13.283467pt;}
.wsa_c00263{word-spacing:-10.528128pt;}
.ws6_c00263{word-spacing:-8.878599pt;}
.ws7_c00263{word-spacing:-8.877777pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.ws3_c00263{word-spacing:0.039110pt;}
.ws4_c00263{word-spacing:0.189730pt;}
.ws5_c00263{word-spacing:38.256533pt;}
._1_c00263{margin-left:-6.962689pt;}
._3_c00263{margin-left:-3.931906pt;}
._7_c00263{margin-left:-2.922363pt;}
._4_c00263{margin-left:-0.956410pt;}
._0_c00263{width:0.925811pt;}
._5_c00263{width:11.370647pt;}
._2_c00263{width:17.720725pt;}
._6_c00263{width:27.151406pt;}
.fs0_c00263{font-size:39.110400pt;}
.fs2_c00263{font-size:53.133867pt;}
.fs1_c00263{font-size:76.513067pt;}
.y0_c00263{bottom:0.000000pt;}
.y20_c00263{bottom:39.333333pt;}
.y1f_c00263{bottom:72.934667pt;}
.y1e_c00263{bottom:88.874667pt;}
.y1d_c00263{bottom:104.814667pt;}
.y1c_c00263{bottom:120.754667pt;}
.y1b_c00263{bottom:136.694667pt;}
.y1a_c00263{bottom:163.306667pt;}
.y19_c00263{bottom:189.917333pt;}
.y18_c00263{bottom:216.529333pt;}
.y17_c00263{bottom:243.140000pt;}
.y16_c00263{bottom:284.624000pt;}
.y15_c00263{bottom:709.528000pt;}
.y14_c00263{bottom:724.140000pt;}
.y13_c00263{bottom:738.752000pt;}
.y12_c00263{bottom:753.364000pt;}
.y11_c00263{bottom:767.976000pt;}
.y10_c00263{bottom:782.588000pt;}
.yf_c00263{bottom:797.198667pt;}
.ye_c00263{bottom:811.810667pt;}
.yd_c00263{bottom:826.422667pt;}
.yc_c00263{bottom:841.034667pt;}
.yb_c00263{bottom:855.646667pt;}
.ya_c00263{bottom:884.870667pt;}
.y9_c00263{bottom:899.482667pt;}
.y8_c00263{bottom:914.094667pt;}
.y7_c00263{bottom:943.317333pt;}
.y6_c00263{bottom:957.929333pt;}
.y5_c00263{bottom:972.541333pt;}
.y4_c00263{bottom:987.153333pt;}
.y3_c00263{bottom:1001.765333pt;}
.y2_c00263{bottom:1016.377333pt;}
.y1_c00263{bottom:1030.989333pt;}
.h2_c00263{height:31.280681pt;}
.h3_c00263{height:32.006363pt;}
.h5_c00263{height:36.010648pt;}
.h6_c00263{height:46.518078pt;}
.h4_c00263{height:51.855535pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w0_c00263{width:793.706667pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x3_c00263{left:113.385333pt;}
.x1_c00263{left:121.886667pt;}
.x2_c00263{left:157.340000pt;}
.x4_c00263{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86cd0fb9728b7de7efdc9707.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.048828;font-style:normal;font-weight:normal;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_fa7e2da395db82ce2c0ebb34.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.083496;font-style:normal;font-weight:normal;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_05c5059b288765ce5cc6bad8.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls4_c00264{letter-spacing:0.000000px;}
.ls1_c00264{letter-spacing:0.087998px;}
.ls2_c00264{letter-spacing:0.098482px;}
.ls0_c00264{letter-spacing:0.104482px;}
.ls3_c00264{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00264{word-spacing:-26.575517px;}
.ws1_c00264{word-spacing:-26.487518px;}
.ws6_c00264{word-spacing:0.000000px;}
.ws3_c00264{word-spacing:0.043999px;}
.ws9_c00264{word-spacing:0.056767px;}
.ws7_c00264{word-spacing:0.073250px;}
.ws8_c00264{word-spacing:0.083734px;}
.ws0_c00264{word-spacing:0.175997px;}
.wsa_c00264{word-spacing:0.202963px;}
.ws5_c00264{word-spacing:0.213446px;}
.ws4_c00264{word-spacing:0.219446px;}
._0_c00264{width:1.005737px;}
._2_c00264{width:53.283031px;}
._1_c00264{width:79.858548px;}
._3_c00264{width:133.452408px;}
.fc5_c00264{color:rgb(0,0,207);}
.fc4_c00264{color:rgb(79,153,5);}
.fc3_c00264{color:rgb(207,92,0);}
.fc2_c00264{color:rgb(0,0,0);}
.fc1_c00264{color:rgb(33,74,135);}
.fc0_c00264{color:rgb(143,89,3);}
.fs0_c00264{font-size:43.999200px;}
.fs1_c00264{font-size:59.775600px;}
.y0_c00264{bottom:0.000000px;}
.y2b_c00264{bottom:44.250000px;}
.y2a_c00264{bottom:383.599500px;}
.y29_c00264{bottom:400.038000px;}
.y28_c00264{bottom:416.475000px;}
.y27_c00264{bottom:432.913500px;}
.y26_c00264{bottom:449.352000px;}
.y25_c00264{bottom:465.790500px;}
.y24_c00264{bottom:482.229000px;}
.y23_c00264{bottom:498.667500px;}
.y22_c00264{bottom:515.106000px;}
.y21_c00264{bottom:531.544500px;}
.y20_c00264{bottom:547.983000px;}
.y1f_c00264{bottom:580.858500px;}
.y1e_c00264{bottom:597.297000px;}
.y1d_c00264{bottom:613.735500px;}
.y1c_c00264{bottom:646.612500px;}
.y1b_c00264{bottom:663.051000px;}
.y1a_c00264{bottom:679.489500px;}
.y19_c00264{bottom:695.928000px;}
.y18_c00264{bottom:712.366500px;}
.y17_c00264{bottom:728.805000px;}
.y16_c00264{bottom:745.243500px;}
.y15_c00264{bottom:778.119000px;}
.y14_c00264{bottom:794.557500px;}
.y13_c00264{bottom:810.996000px;}
.y12_c00264{bottom:827.434500px;}
.y11_c00264{bottom:843.873000px;}
.y10_c00264{bottom:860.311500px;}
.yf_c00264{bottom:876.750000px;}
.ye_c00264{bottom:893.188500px;}
.yd_c00264{bottom:909.627000px;}
.yc_c00264{bottom:926.064000px;}
.yb_c00264{bottom:942.502500px;}
.ya_c00264{bottom:958.941000px;}
.y9_c00264{bottom:975.379500px;}
.y8_c00264{bottom:991.818000px;}
.y7_c00264{bottom:1008.256500px;}
.y6_c00264{bottom:1024.695000px;}
.y5_c00264{bottom:1057.572000px;}
.y4_c00264{bottom:1074.010500px;}
.y3_c00264{bottom:1106.886000px;}
.y2_c00264{bottom:1123.324500px;}
.y1_c00264{bottom:1139.389500px;}
.h2_c00264{height:35.190766px;}
.h3_c00264{height:36.007158px;}
.h4_c00264{height:52.332837px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w0_c00264{width:892.920000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:137.122500px;}
.x2_c00264{left:143.770500px;}
.x3_c00264{left:177.007500px;}
.x4_c00264{left:435.249000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls4_c00264{letter-spacing:0.000000pt;}
.ls1_c00264{letter-spacing:0.078221pt;}
.ls2_c00264{letter-spacing:0.087539pt;}
.ls0_c00264{letter-spacing:0.092873pt;}
.ls3_c00264{letter-spacing:23.724873pt;}
.ws2_c00264{word-spacing:-23.622682pt;}
.ws1_c00264{word-spacing:-23.544461pt;}
.ws6_c00264{word-spacing:0.000000pt;}
.ws3_c00264{word-spacing:0.039110pt;}
.ws9_c00264{word-spacing:0.050460pt;}
.ws7_c00264{word-spacing:0.065111pt;}
.ws8_c00264{word-spacing:0.074430pt;}
.ws0_c00264{word-spacing:0.156442pt;}
.wsa_c00264{word-spacing:0.180412pt;}
.ws5_c00264{word-spacing:0.189730pt;}
.ws4_c00264{word-spacing:0.195063pt;}
._0_c00264{width:0.893988pt;}
._2_c00264{width:47.362694pt;}
._1_c00264{width:70.985376pt;}
._3_c00264{width:118.624363pt;}
.fs0_c00264{font-size:39.110400pt;}
.fs1_c00264{font-size:53.133867pt;}
.y0_c00264{bottom:0.000000pt;}
.y2b_c00264{bottom:39.333333pt;}
.y2a_c00264{bottom:340.977333pt;}
.y29_c00264{bottom:355.589333pt;}
.y28_c00264{bottom:370.200000pt;}
.y27_c00264{bottom:384.812000pt;}
.y26_c00264{bottom:399.424000pt;}
.y25_c00264{bottom:414.036000pt;}
.y24_c00264{bottom:428.648000pt;}
.y23_c00264{bottom:443.260000pt;}
.y22_c00264{bottom:457.872000pt;}
.y21_c00264{bottom:472.484000pt;}
.y20_c00264{bottom:487.096000pt;}
.y1f_c00264{bottom:516.318667pt;}
.y1e_c00264{bottom:530.930667pt;}
.y1d_c00264{bottom:545.542667pt;}
.y1c_c00264{bottom:574.766667pt;}
.y1b_c00264{bottom:589.378667pt;}
.y1a_c00264{bottom:603.990667pt;}
.y19_c00264{bottom:618.602667pt;}
.y18_c00264{bottom:633.214667pt;}
.y17_c00264{bottom:647.826667pt;}
.y16_c00264{bottom:662.438667pt;}
.y15_c00264{bottom:691.661333pt;}
.y14_c00264{bottom:706.273333pt;}
.y13_c00264{bottom:720.885333pt;}
.y12_c00264{bottom:735.497333pt;}
.y11_c00264{bottom:750.109333pt;}
.y10_c00264{bottom:764.721333pt;}
.yf_c00264{bottom:779.333333pt;}
.ye_c00264{bottom:793.945333pt;}
.yd_c00264{bottom:808.557333pt;}
.yc_c00264{bottom:823.168000pt;}
.yb_c00264{bottom:837.780000pt;}
.ya_c00264{bottom:852.392000pt;}
.y9_c00264{bottom:867.004000pt;}
.y8_c00264{bottom:881.616000pt;}
.y7_c00264{bottom:896.228000pt;}
.y6_c00264{bottom:910.840000pt;}
.y5_c00264{bottom:940.064000pt;}
.y4_c00264{bottom:954.676000pt;}
.y3_c00264{bottom:983.898667pt;}
.y2_c00264{bottom:998.510667pt;}
.y1_c00264{bottom:1012.790667pt;}
.h2_c00264{height:31.280681pt;}
.h3_c00264{height:32.006363pt;}
.h4_c00264{height:46.518078pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w0_c00264{width:793.706667pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:121.886667pt;}
.x2_c00264{left:127.796000pt;}
.x3_c00264{left:157.340000pt;}
.x4_c00264{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e83f85b443dccbd6a5eb190.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:0.893555;font-style:normal;font-weight:normal;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_02c4a21c9e727598afaa0b32.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_c936bae06acee933e4107715.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:1.048828;font-style: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;}
.ls4_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.087998px;}
.ls2_c00265{letter-spacing:0.098482px;}
.ls1_c00265{letter-spacing:0.104482px;}
.ls3_c00265{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00265{word-spacing:-26.575517px;}
.wse_c00265{word-spacing:-26.487518px;}
.ws8_c00265{word-spacing:-22.506821px;}
.ws7_c00265{word-spacing:-22.475626px;}
.ws9_c00265{word-spacing:-22.415850px;}
.wsb_c00265{word-spacing:-21.937645px;}
.ws5_c00265{word-spacing:-18.769538px;}
.wsa_c00265{word-spacing:-18.231558px;}
.wsc_c00265{word-spacing:-15.541656px;}
.ws4_c00265{word-spacing:-14.943900px;}
.ws6_c00265{word-spacing:-11.844144px;}
.ws1_c00265{word-spacing:-9.988424px;}
.ws3_c00265{word-spacing:-9.987499px;}
.ws12_c00265{word-spacing:0.000000px;}
.wsf_c00265{word-spacing:0.043999px;}
.ws15_c00265{word-spacing:0.056767px;}
.ws13_c00265{word-spacing:0.073250px;}
.ws14_c00265{word-spacing:0.083734px;}
.wsd_c00265{word-spacing:0.175997px;}
.ws16_c00265{word-spacing:0.202963px;}
.ws11_c00265{word-spacing:0.213446px;}
.ws10_c00265{word-spacing:0.219446px;}
.ws0_c00265{word-spacing:43.038600px;}
._0_c00265{margin-left:-7.833025px;}
._2_c00265{margin-left:-4.423394px;}
._6_c00265{margin-left:-3.287658px;}
._3_c00265{margin-left:-1.075961px;}
._7_c00265{width:1.005737px;}
._4_c00265{width:12.791978px;}
._1_c00265{width:19.935816px;}
._5_c00265{width:30.545332px;}
._9_c00265{width:53.283031px;}
._8_c00265{width:79.858548px;}
._a_c00265{width:133.452408px;}
.fc6_c00265{color:rgb(0,0,207);}
.fc5_c00265{color:rgb(79,153,5);}
.fc3_c00265{color:rgb(33,74,135);}
.fc2_c00265{color:rgb(143,89,3);}
.fc4_c00265{color:rgb(207,92,0);}
.fc1_c00265{color:rgb(6,69,173);}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:43.999200px;}
.fs1_c00265{font-size:59.775600px;}
.fs0_c00265{font-size:86.077200px;}
.y0_c00265{bottom:0.000000px;}
.y20_c00265{bottom:44.250000px;}
.y1f_c00265{bottom:103.420500px;}
.y1e_c00265{bottom:119.859000px;}
.y1d_c00265{bottom:136.297500px;}
.y1c_c00265{bottom:152.736000px;}
.y1b_c00265{bottom:169.174500px;}
.y1a_c00265{bottom:185.613000px;}
.y19_c00265{bottom:202.051500px;}
.y18_c00265{bottom:218.490000px;}
.y17_c00265{bottom:234.927000px;}
.y16_c00265{bottom:251.365500px;}
.y15_c00265{bottom:267.804000px;}
.y14_c00265{bottom:284.242500px;}
.y13_c00265{bottom:300.681000px;}
.y12_c00265{bottom:317.119500px;}
.y11_c00265{bottom:333.558000px;}
.y10_c00265{bottom:349.996500px;}
.yf_c00265{bottom:382.873500px;}
.ye_c00265{bottom:399.310500px;}
.yd_c00265{bottom:432.187500px;}
.yc_c00265{bottom:448.626000px;}
.yb_c00265{bottom:464.691000px;}
.ya_c00265{bottom:513.009000px;}
.y9_c00265{bottom:530.941500px;}
.y8_c00265{bottom:548.874000px;}
.y7_c00265{bottom:566.806500px;}
.y6_c00265{bottom:584.739000px;}
.y5_c00265{bottom:611.683500px;}
.y4_c00265{bottom:638.626500px;}
.y3_c00265{bottom:665.569500px;}
.y2_c00265{bottom:692.512500px;}
.y1_c00265{bottom:734.850000px;}
.h5_c00265{height:35.190766px;}
.h6_c00265{height:36.007158px;}
.h3_c00265{height:40.511979px;}
.h4_c00265{height:52.332837px;}
.h2_c00265{height:58.337477px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w0_c00265{width:892.920000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:127.558500px;}
.x2_c00265{left:137.122500px;}
.x3_c00265{left:143.770500px;}
.x4_c00265{left:435.249000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls4_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.078221pt;}
.ls2_c00265{letter-spacing:0.087539pt;}
.ls1_c00265{letter-spacing:0.092873pt;}
.ls3_c00265{letter-spacing:23.724873pt;}
.ws2_c00265{word-spacing:-23.622682pt;}
.wse_c00265{word-spacing:-23.544461pt;}
.ws8_c00265{word-spacing:-20.006063pt;}
.ws7_c00265{word-spacing:-19.978334pt;}
.ws9_c00265{word-spacing:-19.925200pt;}
.wsb_c00265{word-spacing:-19.500129pt;}
.ws5_c00265{word-spacing:-16.684034pt;}
.wsa_c00265{word-spacing:-16.205829pt;}
.wsc_c00265{word-spacing:-13.814805pt;}
.ws4_c00265{word-spacing:-13.283467pt;}
.ws6_c00265{word-spacing:-10.528128pt;}
.ws1_c00265{word-spacing:-8.878599pt;}
.ws3_c00265{word-spacing:-8.877777pt;}
.ws12_c00265{word-spacing:0.000000pt;}
.wsf_c00265{word-spacing:0.039110pt;}
.ws15_c00265{word-spacing:0.050460pt;}
.ws13_c00265{word-spacing:0.065111pt;}
.ws14_c00265{word-spacing:0.074430pt;}
.wsd_c00265{word-spacing:0.156442pt;}
.ws16_c00265{word-spacing:0.180412pt;}
.ws11_c00265{word-spacing:0.189730pt;}
.ws10_c00265{word-spacing:0.195063pt;}
.ws0_c00265{word-spacing:38.256533pt;}
._0_c00265{margin-left:-6.962689pt;}
._2_c00265{margin-left:-3.931906pt;}
._6_c00265{margin-left:-2.922363pt;}
._3_c00265{margin-left:-0.956410pt;}
._7_c00265{width:0.893988pt;}
._4_c00265{width:11.370647pt;}
._1_c00265{width:17.720725pt;}
._5_c00265{width:27.151406pt;}
._9_c00265{width:47.362694pt;}
._8_c00265{width:70.985376pt;}
._a_c00265{width:118.624363pt;}
.fs2_c00265{font-size:39.110400pt;}
.fs1_c00265{font-size:53.133867pt;}
.fs0_c00265{font-size:76.513067pt;}
.y0_c00265{bottom:0.000000pt;}
.y20_c00265{bottom:39.333333pt;}
.y1f_c00265{bottom:91.929333pt;}
.y1e_c00265{bottom:106.541333pt;}
.y1d_c00265{bottom:121.153333pt;}
.y1c_c00265{bottom:135.765333pt;}
.y1b_c00265{bottom:150.377333pt;}
.y1a_c00265{bottom:164.989333pt;}
.y19_c00265{bottom:179.601333pt;}
.y18_c00265{bottom:194.213333pt;}
.y17_c00265{bottom:208.824000pt;}
.y16_c00265{bottom:223.436000pt;}
.y15_c00265{bottom:238.048000pt;}
.y14_c00265{bottom:252.660000pt;}
.y13_c00265{bottom:267.272000pt;}
.y12_c00265{bottom:281.884000pt;}
.y11_c00265{bottom:296.496000pt;}
.y10_c00265{bottom:311.108000pt;}
.yf_c00265{bottom:340.332000pt;}
.ye_c00265{bottom:354.942667pt;}
.yd_c00265{bottom:384.166667pt;}
.yc_c00265{bottom:398.778667pt;}
.yb_c00265{bottom:413.058667pt;}
.ya_c00265{bottom:456.008000pt;}
.y9_c00265{bottom:471.948000pt;}
.y8_c00265{bottom:487.888000pt;}
.y7_c00265{bottom:503.828000pt;}
.y6_c00265{bottom:519.768000pt;}
.y5_c00265{bottom:543.718667pt;}
.y4_c00265{bottom:567.668000pt;}
.y3_c00265{bottom:591.617333pt;}
.y2_c00265{bottom:615.566667pt;}
.y1_c00265{bottom:653.200000pt;}
.h5_c00265{height:31.280681pt;}
.h6_c00265{height:32.006363pt;}
.h3_c00265{height:36.010648pt;}
.h4_c00265{height:46.518078pt;}
.h2_c00265{height:51.855535pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w0_c00265{width:793.706667pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:113.385333pt;}
.x2_c00265{left:121.886667pt;}
.x3_c00265{left:127.796000pt;}
.x4_c00265{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa4d84fbbfde48d138a2c9dc.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.014648;font-style:normal;font-weight:normal;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_12eb8472d02d74512623e337.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.083496;font-style:normal;font-weight:normal;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_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.048828;font-style:normal;font-weight:normal;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_58e7d403f8cefd93b94eda5e.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:0.893555;font-style:normal;font-weight:normal;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_074561a65640271d32c23f89.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.102051;font-style: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.000000px;}
.ls0_c00266{letter-spacing:0.087998px;}
.ls1_c00266{letter-spacing:0.098482px;}
.ls2_c00266{letter-spacing:0.104482px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-26.575517px;}
.ws2_c00266{word-spacing:-26.487518px;}
.wsf_c00266{word-spacing:-21.997421px;}
.wsd_c00266{word-spacing:-21.220338px;}
.wse_c00266{word-spacing:-21.207588px;}
.ws9_c00266{word-spacing:-18.769538px;}
.ws10_c00266{word-spacing:-18.649987px;}
.ws13_c00266{word-spacing:-17.872904px;}
.wsc_c00266{word-spacing:-16.131547px;}
.wsb_c00266{word-spacing:-16.079636px;}
.ws8_c00266{word-spacing:-14.943900px;}
.ws12_c00266{word-spacing:-13.031081px;}
.ws11_c00266{word-spacing:-11.377015px;}
.ws6_c00266{word-spacing:-9.988424px;}
.ws7_c00266{word-spacing:-9.987499px;}
.wsa_c00266{word-spacing:-4.578144px;}
.ws0_c00266{word-spacing:0.000000px;}
.ws3_c00266{word-spacing:0.043999px;}
.ws4_c00266{word-spacing:0.213446px;}
.ws5_c00266{word-spacing:42.952523px;}
._3_c00266{margin-left:-6.283636px;}
._2_c00266{margin-left:-4.734246px;}
._a_c00266{margin-left:-3.526760px;}
._4_c00266{margin-left:-1.549390px;}
._1_c00266{width:1.041538px;}
._7_c00266{width:16.082764px;}
._6_c00266{width:18.671306px;}
._5_c00266{width:19.935816px;}
._9_c00266{width:21.997421px;}
._8_c00266{width:37.001096px;}
._0_c00266{width:106.654061px;}
.fc5_c00266{color:rgb(0,0,207);}
.fc6_c00266{color:rgb(6,69,173);}
.fc4_c00266{color:rgb(207,92,0);}
.fc3_c00266{color:rgb(79,153,5);}
.fc2_c00266{color:rgb(33,74,135);}
.fc1_c00266{color:rgb(0,0,0);}
.fc0_c00266{color:rgb(143,89,3);}
.fs0_c00266{font-size:43.999200px;}
.fs2_c00266{font-size:59.775600px;}
.fs1_c00266{font-size:86.077200px;}
.y0_c00266{bottom:0.000000px;}
.y22_c00266{bottom:44.250000px;}
.y21_c00266{bottom:82.051500px;}
.y20_c00266{bottom:99.984000px;}
.y1f_c00266{bottom:117.916500px;}
.y1e_c00266{bottom:135.849000px;}
.y1d_c00266{bottom:153.781500px;}
.y1c_c00266{bottom:171.714000px;}
.y1b_c00266{bottom:189.648000px;}
.y1a_c00266{bottom:215.730000px;}
.y19_c00266{bottom:241.813500px;}
.y18_c00266{bottom:267.897000px;}
.y17_c00266{bottom:293.980500px;}
.y16_c00266{bottom:335.436000px;}
.y15_c00266{bottom:798.219000px;}
.y14_c00266{bottom:814.657500px;}
.y13_c00266{bottom:831.096000px;}
.y12_c00266{bottom:847.534500px;}
.y11_c00266{bottom:863.973000px;}
.y10_c00266{bottom:880.411500px;}
.yf_c00266{bottom:896.848500px;}
.ye_c00266{bottom:913.287000px;}
.yd_c00266{bottom:929.725500px;}
.yc_c00266{bottom:946.164000px;}
.yb_c00266{bottom:962.602500px;}
.ya_c00266{bottom:995.479500px;}
.y9_c00266{bottom:1011.918000px;}
.y8_c00266{bottom:1028.356500px;}
.y7_c00266{bottom:1061.232000px;}
.y6_c00266{bottom:1077.670500px;}
.y5_c00266{bottom:1094.109000px;}
.y4_c00266{bottom:1110.547500px;}
.y3_c00266{bottom:1126.986000px;}
.y2_c00266{bottom:1143.424500px;}
.y1_c00266{bottom:1159.863000px;}
.h2_c00266{height:35.190766px;}
.h3_c00266{height:36.007158px;}
.h5_c00266{height:40.511979px;}
.h6_c00266{height:52.332837px;}
.h4_c00266{height:58.337477px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w0_c00266{width:892.920000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x3_c00266{left:127.558500px;}
.x1_c00266{left:137.122500px;}
.x2_c00266{left:177.007500px;}
.x4_c00266{left:435.249000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls3_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.078221pt;}
.ls1_c00266{letter-spacing:0.087539pt;}
.ls2_c00266{letter-spacing:0.092873pt;}
.ws1_c00266{word-spacing:-23.622682pt;}
.ws2_c00266{word-spacing:-23.544461pt;}
.wsf_c00266{word-spacing:-19.553263pt;}
.wsd_c00266{word-spacing:-18.862523pt;}
.wse_c00266{word-spacing:-18.851189pt;}
.ws9_c00266{word-spacing:-16.684034pt;}
.ws10_c00266{word-spacing:-16.577766pt;}
.ws13_c00266{word-spacing:-15.887026pt;}
.wsc_c00266{word-spacing:-14.339153pt;}
.wsb_c00266{word-spacing:-14.293010pt;}
.ws8_c00266{word-spacing:-13.283467pt;}
.ws12_c00266{word-spacing:-11.583183pt;}
.ws11_c00266{word-spacing:-10.112902pt;}
.ws6_c00266{word-spacing:-8.878599pt;}
.ws7_c00266{word-spacing:-8.877777pt;}
.wsa_c00266{word-spacing:-4.069461pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.ws3_c00266{word-spacing:0.039110pt;}
.ws4_c00266{word-spacing:0.189730pt;}
.ws5_c00266{word-spacing:38.180020pt;}
._3_c00266{margin-left:-5.585454pt;}
._2_c00266{margin-left:-4.208219pt;}
._a_c00266{margin-left:-3.134898pt;}
._4_c00266{margin-left:-1.377235pt;}
._1_c00266{width:0.925811pt;}
._7_c00266{width:14.295790pt;}
._6_c00266{width:16.596717pt;}
._5_c00266{width:17.720725pt;}
._9_c00266{width:19.553263pt;}
._8_c00266{width:32.889863pt;}
._0_c00266{width:94.803610pt;}
.fs0_c00266{font-size:39.110400pt;}
.fs2_c00266{font-size:53.133867pt;}
.fs1_c00266{font-size:76.513067pt;}
.y0_c00266{bottom:0.000000pt;}
.y22_c00266{bottom:39.333333pt;}
.y21_c00266{bottom:72.934667pt;}
.y20_c00266{bottom:88.874667pt;}
.y1f_c00266{bottom:104.814667pt;}
.y1e_c00266{bottom:120.754667pt;}
.y1d_c00266{bottom:136.694667pt;}
.y1c_c00266{bottom:152.634667pt;}
.y1b_c00266{bottom:168.576000pt;}
.y1a_c00266{bottom:191.760000pt;}
.y19_c00266{bottom:214.945333pt;}
.y18_c00266{bottom:238.130667pt;}
.y17_c00266{bottom:261.316000pt;}
.y16_c00266{bottom:298.165333pt;}
.y15_c00266{bottom:709.528000pt;}
.y14_c00266{bottom:724.140000pt;}
.y13_c00266{bottom:738.752000pt;}
.y12_c00266{bottom:753.364000pt;}
.y11_c00266{bottom:767.976000pt;}
.y10_c00266{bottom:782.588000pt;}
.yf_c00266{bottom:797.198667pt;}
.ye_c00266{bottom:811.810667pt;}
.yd_c00266{bottom:826.422667pt;}
.yc_c00266{bottom:841.034667pt;}
.yb_c00266{bottom:855.646667pt;}
.ya_c00266{bottom:884.870667pt;}
.y9_c00266{bottom:899.482667pt;}
.y8_c00266{bottom:914.094667pt;}
.y7_c00266{bottom:943.317333pt;}
.y6_c00266{bottom:957.929333pt;}
.y5_c00266{bottom:972.541333pt;}
.y4_c00266{bottom:987.153333pt;}
.y3_c00266{bottom:1001.765333pt;}
.y2_c00266{bottom:1016.377333pt;}
.y1_c00266{bottom:1030.989333pt;}
.h2_c00266{height:31.280681pt;}
.h3_c00266{height:32.006363pt;}
.h5_c00266{height:36.010648pt;}
.h6_c00266{height:46.518078pt;}
.h4_c00266{height:51.855535pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w0_c00266{width:793.706667pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x3_c00266{left:113.385333pt;}
.x1_c00266{left:121.886667pt;}
.x2_c00266{left:157.340000pt;}
.x4_c00266{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f25f447d3f7d7ee7a8250ee.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.014648;font-style:normal;font-weight:normal;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_ca24e661b87cfe7bed0d1df8.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.048828;font-style:normal;font-weight:normal;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_1005d1a54824ab7c47434479.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.083496;font-style:normal;font-weight:normal;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_01099d2263079e3435e1772c.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls5_c00267{letter-spacing:0.000000px;}
.ls1_c00267{letter-spacing:0.087998px;}
.ls2_c00267{letter-spacing:0.098482px;}
.ls0_c00267{letter-spacing:0.104482px;}
.ls4_c00267{letter-spacing:26.690482px;}
.ls3_c00267{letter-spacing:26.732482px;}
.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;}
}
.ws2_c00267{word-spacing:-26.575517px;}
.ws1_c00267{word-spacing:-26.487518px;}
.ws6_c00267{word-spacing:0.000000px;}
.wsd_c00267{word-spacing:0.026966px;}
.ws3_c00267{word-spacing:0.043999px;}
.wsb_c00267{word-spacing:0.046284px;}
.ws7_c00267{word-spacing:0.053933px;}
.ws8_c00267{word-spacing:0.056767px;}
.wsa_c00267{word-spacing:0.073250px;}
.wsc_c00267{word-spacing:0.083734px;}
.ws0_c00267{word-spacing:0.175997px;}
.ws9_c00267{word-spacing:0.202963px;}
.ws4_c00267{word-spacing:0.213446px;}
.ws5_c00267{word-spacing:0.219446px;}
._0_c00267{width:1.005737px;}
._4_c00267{width:53.283031px;}
._1_c00267{width:79.858548px;}
._3_c00267{width:106.434065px;}
._2_c00267{width:133.452408px;}
._5_c00267{width:186.179933px;}
.fc5_c00267{color:rgb(0,0,207);}
.fc4_c00267{color:rgb(79,153,5);}
.fc3_c00267{color:rgb(207,92,0);}
.fc2_c00267{color:rgb(0,0,0);}
.fc1_c00267{color:rgb(33,74,135);}
.fc0_c00267{color:rgb(143,89,3);}
.fs0_c00267{font-size:43.999200px;}
.fs1_c00267{font-size:59.775600px;}
.y0_c00267{bottom:0.000000px;}
.y35_c00267{bottom:44.250000px;}
.y34_c00267{bottom:87.708000px;}
.y33_c00267{bottom:104.146500px;}
.y32_c00267{bottom:137.023500px;}
.y31_c00267{bottom:153.462000px;}
.y30_c00267{bottom:169.900500px;}
.y2f_c00267{bottom:186.339000px;}
.y2e_c00267{bottom:202.777500px;}
.y2d_c00267{bottom:219.216000px;}
.y2c_c00267{bottom:235.653000px;}
.y2b_c00267{bottom:252.091500px;}
.y2a_c00267{bottom:268.530000px;}
.y29_c00267{bottom:284.968500px;}
.y28_c00267{bottom:301.407000px;}
.y27_c00267{bottom:317.845500px;}
.y26_c00267{bottom:334.284000px;}
.y25_c00267{bottom:350.722500px;}
.y24_c00267{bottom:367.161000px;}
.y23_c00267{bottom:383.599500px;}
.y22_c00267{bottom:400.038000px;}
.y21_c00267{bottom:416.475000px;}
.y20_c00267{bottom:449.352000px;}
.y1f_c00267{bottom:482.229000px;}
.y1e_c00267{bottom:498.667500px;}
.y1d_c00267{bottom:531.544500px;}
.y1c_c00267{bottom:547.983000px;}
.y1b_c00267{bottom:564.421500px;}
.y1a_c00267{bottom:597.297000px;}
.y19_c00267{bottom:613.735500px;}
.y18_c00267{bottom:646.612500px;}
.y17_c00267{bottom:663.051000px;}
.y16_c00267{bottom:679.489500px;}
.y15_c00267{bottom:695.928000px;}
.y14_c00267{bottom:712.366500px;}
.y13_c00267{bottom:728.805000px;}
.y12_c00267{bottom:745.243500px;}
.y11_c00267{bottom:761.680500px;}
.y10_c00267{bottom:794.557500px;}
.yf_c00267{bottom:810.996000px;}
.ye_c00267{bottom:843.873000px;}
.yd_c00267{bottom:876.750000px;}
.yc_c00267{bottom:893.188500px;}
.yb_c00267{bottom:926.064000px;}
.ya_c00267{bottom:942.502500px;}
.y9_c00267{bottom:958.941000px;}
.y8_c00267{bottom:1008.256500px;}
.y7_c00267{bottom:1024.695000px;}
.y6_c00267{bottom:1041.133500px;}
.y5_c00267{bottom:1057.572000px;}
.y4_c00267{bottom:1074.010500px;}
.y3_c00267{bottom:1106.886000px;}
.y2_c00267{bottom:1123.324500px;}
.y1_c00267{bottom:1139.389500px;}
.h2_c00267{height:35.190766px;}
.h3_c00267{height:36.007158px;}
.h4_c00267{height:52.332837px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w0_c00267{width:892.920000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:137.122500px;}
.x3_c00267{left:143.770500px;}
.x2_c00267{left:210.243000px;}
.x4_c00267{left:435.249000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls5_c00267{letter-spacing:0.000000pt;}
.ls1_c00267{letter-spacing:0.078221pt;}
.ls2_c00267{letter-spacing:0.087539pt;}
.ls0_c00267{letter-spacing:0.092873pt;}
.ls4_c00267{letter-spacing:23.724873pt;}
.ls3_c00267{letter-spacing:23.762206pt;}
.ws2_c00267{word-spacing:-23.622682pt;}
.ws1_c00267{word-spacing:-23.544461pt;}
.ws6_c00267{word-spacing:0.000000pt;}
.wsd_c00267{word-spacing:0.023970pt;}
.ws3_c00267{word-spacing:0.039110pt;}
.wsb_c00267{word-spacing:0.041141pt;}
.ws7_c00267{word-spacing:0.047940pt;}
.ws8_c00267{word-spacing:0.050460pt;}
.wsa_c00267{word-spacing:0.065111pt;}
.wsc_c00267{word-spacing:0.074430pt;}
.ws0_c00267{word-spacing:0.156442pt;}
.ws9_c00267{word-spacing:0.180412pt;}
.ws4_c00267{word-spacing:0.189730pt;}
.ws5_c00267{word-spacing:0.195063pt;}
._0_c00267{width:0.893988pt;}
._4_c00267{width:47.362694pt;}
._1_c00267{width:70.985376pt;}
._3_c00267{width:94.608058pt;}
._2_c00267{width:118.624363pt;}
._5_c00267{width:165.493274pt;}
.fs0_c00267{font-size:39.110400pt;}
.fs1_c00267{font-size:53.133867pt;}
.y0_c00267{bottom:0.000000pt;}
.y35_c00267{bottom:39.333333pt;}
.y34_c00267{bottom:77.962667pt;}
.y33_c00267{bottom:92.574667pt;}
.y32_c00267{bottom:121.798667pt;}
.y31_c00267{bottom:136.410667pt;}
.y30_c00267{bottom:151.022667pt;}
.y2f_c00267{bottom:165.634667pt;}
.y2e_c00267{bottom:180.246667pt;}
.y2d_c00267{bottom:194.858667pt;}
.y2c_c00267{bottom:209.469333pt;}
.y2b_c00267{bottom:224.081333pt;}
.y2a_c00267{bottom:238.693333pt;}
.y29_c00267{bottom:253.305333pt;}
.y28_c00267{bottom:267.917333pt;}
.y27_c00267{bottom:282.529333pt;}
.y26_c00267{bottom:297.141333pt;}
.y25_c00267{bottom:311.753333pt;}
.y24_c00267{bottom:326.365333pt;}
.y23_c00267{bottom:340.977333pt;}
.y22_c00267{bottom:355.589333pt;}
.y21_c00267{bottom:370.200000pt;}
.y20_c00267{bottom:399.424000pt;}
.y1f_c00267{bottom:428.648000pt;}
.y1e_c00267{bottom:443.260000pt;}
.y1d_c00267{bottom:472.484000pt;}
.y1c_c00267{bottom:487.096000pt;}
.y1b_c00267{bottom:501.708000pt;}
.y1a_c00267{bottom:530.930667pt;}
.y19_c00267{bottom:545.542667pt;}
.y18_c00267{bottom:574.766667pt;}
.y17_c00267{bottom:589.378667pt;}
.y16_c00267{bottom:603.990667pt;}
.y15_c00267{bottom:618.602667pt;}
.y14_c00267{bottom:633.214667pt;}
.y13_c00267{bottom:647.826667pt;}
.y12_c00267{bottom:662.438667pt;}
.y11_c00267{bottom:677.049333pt;}
.y10_c00267{bottom:706.273333pt;}
.yf_c00267{bottom:720.885333pt;}
.ye_c00267{bottom:750.109333pt;}
.yd_c00267{bottom:779.333333pt;}
.yc_c00267{bottom:793.945333pt;}
.yb_c00267{bottom:823.168000pt;}
.ya_c00267{bottom:837.780000pt;}
.y9_c00267{bottom:852.392000pt;}
.y8_c00267{bottom:896.228000pt;}
.y7_c00267{bottom:910.840000pt;}
.y6_c00267{bottom:925.452000pt;}
.y5_c00267{bottom:940.064000pt;}
.y4_c00267{bottom:954.676000pt;}
.y3_c00267{bottom:983.898667pt;}
.y2_c00267{bottom:998.510667pt;}
.y1_c00267{bottom:1012.790667pt;}
.h2_c00267{height:31.280681pt;}
.h3_c00267{height:32.006363pt;}
.h4_c00267{height:46.518078pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w0_c00267{width:793.706667pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:121.886667pt;}
.x3_c00267{left:127.796000pt;}
.x2_c00267{left:186.882667pt;}
.x4_c00267{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.048828;font-style:normal;font-weight:normal;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_66450eb3bbb7e5ab611504f3.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_06e87be6c758052d278d63b2.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_03889d38e0d7728c419ed697.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.014648;font-style: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;}
.ls3_c00268{letter-spacing:0.000000px;}
.ls1_c00268{letter-spacing:0.087998px;}
.ls2_c00268{letter-spacing:0.098482px;}
.ls0_c00268{letter-spacing:0.104482px;}
.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;}
}
.wsf_c00268{word-spacing:-33.713438px;}
.ws1_c00268{word-spacing:-26.575517px;}
.ws0_c00268{word-spacing:-26.487518px;}
.ws8_c00268{word-spacing:-18.769538px;}
.ws7_c00268{word-spacing:-14.943900px;}
.wsa_c00268{word-spacing:-14.465695px;}
.wsd_c00268{word-spacing:-14.107042px;}
.wse_c00268{word-spacing:-12.074671px;}
.wsc_c00268{word-spacing:-11.716018px;}
.wsb_c00268{word-spacing:-11.656242px;}
.ws5_c00268{word-spacing:-9.988424px;}
.ws6_c00268{word-spacing:-9.987499px;}
.ws9_c00268{word-spacing:-1.386144px;}
.ws12_c00268{word-spacing:0.000000px;}
.ws2_c00268{word-spacing:0.043999px;}
.ws10_c00268{word-spacing:0.175997px;}
.ws3_c00268{word-spacing:0.213446px;}
.ws11_c00268{word-spacing:0.219446px;}
.ws4_c00268{word-spacing:42.952523px;}
._2_c00268{margin-left:-6.283636px;}
._1_c00268{margin-left:-4.734246px;}
._5_c00268{margin-left:-3.376852px;}
._3_c00268{margin-left:-1.549390px;}
._0_c00268{width:1.041538px;}
._8_c00268{width:15.972059px;}
._4_c00268{width:19.935816px;}
._6_c00268{width:23.790689px;}
._7_c00268{width:40.109428px;}
.fc5_c00268{color:rgb(0,0,207);}
.fc4_c00268{color:rgb(143,89,3);}
.fc3_c00268{color:rgb(79,153,5);}
.fc6_c00268{color:rgb(6,69,173);}
.fc2_c00268{color:rgb(207,92,0);}
.fc1_c00268{color:rgb(0,0,0);}
.fc0_c00268{color:rgb(33,74,135);}
.fs0_c00268{font-size:43.999200px;}
.fs2_c00268{font-size:59.775600px;}
.fs1_c00268{font-size:86.077200px;}
.y0_c00268{bottom:0.000000px;}
.y1e_c00268{bottom:44.250000px;}
.y1d_c00268{bottom:82.051500px;}
.y1c_c00268{bottom:114.927000px;}
.y1b_c00268{bottom:131.365500px;}
.y1a_c00268{bottom:180.681000px;}
.y19_c00268{bottom:197.119500px;}
.y18_c00268{bottom:213.184500px;}
.y17_c00268{bottom:258.178500px;}
.y16_c00268{bottom:276.111000px;}
.y15_c00268{bottom:294.043500px;}
.y14_c00268{bottom:311.976000px;}
.y13_c00268{bottom:329.908500px;}
.y12_c00268{bottom:347.842500px;}
.y11_c00268{bottom:374.709000px;}
.y10_c00268{bottom:401.577000px;}
.yf_c00268{bottom:428.443500px;}
.ye_c00268{bottom:455.311500px;}
.yd_c00268{bottom:497.551500px;}
.yc_c00268{bottom:962.602500px;}
.yb_c00268{bottom:979.041000px;}
.ya_c00268{bottom:995.479500px;}
.y9_c00268{bottom:1011.918000px;}
.y8_c00268{bottom:1028.356500px;}
.y7_c00268{bottom:1044.795000px;}
.y6_c00268{bottom:1061.232000px;}
.y5_c00268{bottom:1077.670500px;}
.y4_c00268{bottom:1094.109000px;}
.y3_c00268{bottom:1110.547500px;}
.y2_c00268{bottom:1126.986000px;}
.y1_c00268{bottom:1159.863000px;}
.h6_c00268{height:35.190766px;}
.h2_c00268{height:36.007158px;}
.h4_c00268{height:40.511979px;}
.h5_c00268{height:52.332837px;}
.h3_c00268{height:58.337477px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w0_c00268{width:892.920000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:127.558500px;}
.x1_c00268{left:137.122500px;}
.x2_c00268{left:177.007500px;}
.x4_c00268{left:435.249000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls3_c00268{letter-spacing:0.000000pt;}
.ls1_c00268{letter-spacing:0.078221pt;}
.ls2_c00268{letter-spacing:0.087539pt;}
.ls0_c00268{letter-spacing:0.092873pt;}
.wsf_c00268{word-spacing:-29.967501pt;}
.ws1_c00268{word-spacing:-23.622682pt;}
.ws0_c00268{word-spacing:-23.544461pt;}
.ws8_c00268{word-spacing:-16.684034pt;}
.ws7_c00268{word-spacing:-13.283467pt;}
.wsa_c00268{word-spacing:-12.858396pt;}
.wsd_c00268{word-spacing:-12.539593pt;}
.wse_c00268{word-spacing:-10.733041pt;}
.wsc_c00268{word-spacing:-10.414238pt;}
.wsb_c00268{word-spacing:-10.361104pt;}
.ws5_c00268{word-spacing:-8.878599pt;}
.ws6_c00268{word-spacing:-8.877777pt;}
.ws9_c00268{word-spacing:-1.232128pt;}
.ws12_c00268{word-spacing:0.000000pt;}
.ws2_c00268{word-spacing:0.039110pt;}
.ws10_c00268{word-spacing:0.156442pt;}
.ws3_c00268{word-spacing:0.189730pt;}
.ws11_c00268{word-spacing:0.195063pt;}
.ws4_c00268{word-spacing:38.180020pt;}
._2_c00268{margin-left:-5.585454pt;}
._1_c00268{margin-left:-4.208219pt;}
._5_c00268{margin-left:-3.001646pt;}
._3_c00268{margin-left:-1.377235pt;}
._0_c00268{width:0.925811pt;}
._8_c00268{width:14.197386pt;}
._4_c00268{width:17.720725pt;}
._6_c00268{width:21.147279pt;}
._7_c00268{width:35.652825pt;}
.fs0_c00268{font-size:39.110400pt;}
.fs2_c00268{font-size:53.133867pt;}
.fs1_c00268{font-size:76.513067pt;}
.y0_c00268{bottom:0.000000pt;}
.y1e_c00268{bottom:39.333333pt;}
.y1d_c00268{bottom:72.934667pt;}
.y1c_c00268{bottom:102.157333pt;}
.y1b_c00268{bottom:116.769333pt;}
.y1a_c00268{bottom:160.605333pt;}
.y19_c00268{bottom:175.217333pt;}
.y18_c00268{bottom:189.497333pt;}
.y17_c00268{bottom:229.492000pt;}
.y16_c00268{bottom:245.432000pt;}
.y15_c00268{bottom:261.372000pt;}
.y14_c00268{bottom:277.312000pt;}
.y13_c00268{bottom:293.252000pt;}
.y12_c00268{bottom:309.193333pt;}
.y11_c00268{bottom:333.074667pt;}
.y10_c00268{bottom:356.957333pt;}
.yf_c00268{bottom:380.838667pt;}
.ye_c00268{bottom:404.721333pt;}
.yd_c00268{bottom:442.268000pt;}
.yc_c00268{bottom:855.646667pt;}
.yb_c00268{bottom:870.258667pt;}
.ya_c00268{bottom:884.870667pt;}
.y9_c00268{bottom:899.482667pt;}
.y8_c00268{bottom:914.094667pt;}
.y7_c00268{bottom:928.706667pt;}
.y6_c00268{bottom:943.317333pt;}
.y5_c00268{bottom:957.929333pt;}
.y4_c00268{bottom:972.541333pt;}
.y3_c00268{bottom:987.153333pt;}
.y2_c00268{bottom:1001.765333pt;}
.y1_c00268{bottom:1030.989333pt;}
.h6_c00268{height:31.280681pt;}
.h2_c00268{height:32.006363pt;}
.h4_c00268{height:36.010648pt;}
.h5_c00268{height:46.518078pt;}
.h3_c00268{height:51.855535pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w0_c00268{width:793.706667pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:113.385333pt;}
.x1_c00268{left:121.886667pt;}
.x2_c00268{left:157.340000pt;}
.x4_c00268{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.048828;font-style:normal;font-weight:normal;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_3fe63e66bd2d6a7ed5d8b06d.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.083496;font-style:normal;font-weight:normal;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_44349f7fdb094d1cd17dcec5.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.014648;font-style:normal;font-weight:normal;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_c593754661007acf6fe0da6a.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls4_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.087998px;}
.ls2_c00269{letter-spacing:0.098482px;}
.ls1_c00269{letter-spacing:0.104482px;}
.ls3_c00269{letter-spacing:26.690482px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-26.575517px;}
.ws4_c00269{word-spacing:-26.487518px;}
.ws1_c00269{word-spacing:0.000000px;}
.ws7_c00269{word-spacing:0.043999px;}
.ws5_c00269{word-spacing:0.056767px;}
.ws2_c00269{word-spacing:0.073250px;}
.ws3_c00269{word-spacing:0.083734px;}
.ws6_c00269{word-spacing:0.202963px;}
.ws9_c00269{word-spacing:0.213446px;}
.ws8_c00269{word-spacing:0.219446px;}
._3_c00269{width:1.041538px;}
._1_c00269{width:53.283031px;}
._0_c00269{width:79.858548px;}
._2_c00269{width:133.452408px;}
.fc5_c00269{color:rgb(207,92,0);}
.fc4_c00269{color:rgb(143,89,3);}
.fc3_c00269{color:rgb(0,0,207);}
.fc2_c00269{color:rgb(79,153,5);}
.fc1_c00269{color:rgb(0,0,0);}
.fc0_c00269{color:rgb(33,74,135);}
.fs0_c00269{font-size:43.999200px;}
.fs1_c00269{font-size:59.775600px;}
.y0_c00269{bottom:0.000000px;}
.y25_c00269{bottom:44.250000px;}
.y24_c00269{bottom:535.206000px;}
.y23_c00269{bottom:551.643000px;}
.y22_c00269{bottom:568.081500px;}
.y21_c00269{bottom:584.520000px;}
.y20_c00269{bottom:600.958500px;}
.y1f_c00269{bottom:617.397000px;}
.y1e_c00269{bottom:633.835500px;}
.y1d_c00269{bottom:650.274000px;}
.y1c_c00269{bottom:666.712500px;}
.y1b_c00269{bottom:683.151000px;}
.y1a_c00269{bottom:699.589500px;}
.y19_c00269{bottom:732.465000px;}
.y18_c00269{bottom:748.903500px;}
.y17_c00269{bottom:765.342000px;}
.y16_c00269{bottom:798.219000px;}
.y15_c00269{bottom:814.657500px;}
.y14_c00269{bottom:831.096000px;}
.y13_c00269{bottom:847.534500px;}
.y12_c00269{bottom:863.973000px;}
.y11_c00269{bottom:880.411500px;}
.y10_c00269{bottom:896.848500px;}
.yf_c00269{bottom:929.725500px;}
.ye_c00269{bottom:946.164000px;}
.yd_c00269{bottom:962.602500px;}
.yc_c00269{bottom:979.041000px;}
.yb_c00269{bottom:995.479500px;}
.ya_c00269{bottom:1011.918000px;}
.y9_c00269{bottom:1028.356500px;}
.y8_c00269{bottom:1044.795000px;}
.y7_c00269{bottom:1061.232000px;}
.y6_c00269{bottom:1077.670500px;}
.y5_c00269{bottom:1094.109000px;}
.y4_c00269{bottom:1110.547500px;}
.y3_c00269{bottom:1126.986000px;}
.y2_c00269{bottom:1143.424500px;}
.y1_c00269{bottom:1159.863000px;}
.h3_c00269{height:35.190766px;}
.h2_c00269{height:36.007158px;}
.h4_c00269{height:52.332837px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w0_c00269{width:892.920000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:137.122500px;}
.x2_c00269{left:143.770500px;}
.x3_c00269{left:177.007500px;}
.x4_c00269{left:435.249000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls4_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.078221pt;}
.ls2_c00269{letter-spacing:0.087539pt;}
.ls1_c00269{letter-spacing:0.092873pt;}
.ls3_c00269{letter-spacing:23.724873pt;}
.ws0_c00269{word-spacing:-23.622682pt;}
.ws4_c00269{word-spacing:-23.544461pt;}
.ws1_c00269{word-spacing:0.000000pt;}
.ws7_c00269{word-spacing:0.039110pt;}
.ws5_c00269{word-spacing:0.050460pt;}
.ws2_c00269{word-spacing:0.065111pt;}
.ws3_c00269{word-spacing:0.074430pt;}
.ws6_c00269{word-spacing:0.180412pt;}
.ws9_c00269{word-spacing:0.189730pt;}
.ws8_c00269{word-spacing:0.195063pt;}
._3_c00269{width:0.925811pt;}
._1_c00269{width:47.362694pt;}
._0_c00269{width:70.985376pt;}
._2_c00269{width:118.624363pt;}
.fs0_c00269{font-size:39.110400pt;}
.fs1_c00269{font-size:53.133867pt;}
.y0_c00269{bottom:0.000000pt;}
.y25_c00269{bottom:39.333333pt;}
.y24_c00269{bottom:475.738667pt;}
.y23_c00269{bottom:490.349333pt;}
.y22_c00269{bottom:504.961333pt;}
.y21_c00269{bottom:519.573333pt;}
.y20_c00269{bottom:534.185333pt;}
.y1f_c00269{bottom:548.797333pt;}
.y1e_c00269{bottom:563.409333pt;}
.y1d_c00269{bottom:578.021333pt;}
.y1c_c00269{bottom:592.633333pt;}
.y1b_c00269{bottom:607.245333pt;}
.y1a_c00269{bottom:621.857333pt;}
.y19_c00269{bottom:651.080000pt;}
.y18_c00269{bottom:665.692000pt;}
.y17_c00269{bottom:680.304000pt;}
.y16_c00269{bottom:709.528000pt;}
.y15_c00269{bottom:724.140000pt;}
.y14_c00269{bottom:738.752000pt;}
.y13_c00269{bottom:753.364000pt;}
.y12_c00269{bottom:767.976000pt;}
.y11_c00269{bottom:782.588000pt;}
.y10_c00269{bottom:797.198667pt;}
.yf_c00269{bottom:826.422667pt;}
.ye_c00269{bottom:841.034667pt;}
.yd_c00269{bottom:855.646667pt;}
.yc_c00269{bottom:870.258667pt;}
.yb_c00269{bottom:884.870667pt;}
.ya_c00269{bottom:899.482667pt;}
.y9_c00269{bottom:914.094667pt;}
.y8_c00269{bottom:928.706667pt;}
.y7_c00269{bottom:943.317333pt;}
.y6_c00269{bottom:957.929333pt;}
.y5_c00269{bottom:972.541333pt;}
.y4_c00269{bottom:987.153333pt;}
.y3_c00269{bottom:1001.765333pt;}
.y2_c00269{bottom:1016.377333pt;}
.y1_c00269{bottom:1030.989333pt;}
.h3_c00269{height:31.280681pt;}
.h2_c00269{height:32.006363pt;}
.h4_c00269{height:46.518078pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w0_c00269{width:793.706667pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:121.886667pt;}
.x2_c00269{left:127.796000pt;}
.x3_c00269{left:157.340000pt;}
.x4_c00269{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4492516808b547ecc5029c79.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:0.893555;font-style:normal;font-weight:normal;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_7aa1127e3e3cbf311c227aaa.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_e793bc5e57b7e5a25c1b7f33.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_4ae2be95b05922fa617ae2e8.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.048828;font-style: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;}
.ls4_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.087998px;}
.ls2_c00270{letter-spacing:0.098482px;}
.ls1_c00270{letter-spacing:0.104482px;}
.ls3_c00270{letter-spacing:26.690482px;}
.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;}
}
.wsc_c00270{word-spacing:-33.713438px;}
.ws2_c00270{word-spacing:-26.575517px;}
.wse_c00270{word-spacing:-26.487518px;}
.ws5_c00270{word-spacing:-18.769538px;}
.ws7_c00270{word-spacing:-16.019861px;}
.ws4_c00270{word-spacing:-14.943900px;}
.wsa_c00270{word-spacing:-14.107042px;}
.wsb_c00270{word-spacing:-12.074671px;}
.ws9_c00270{word-spacing:-11.716018px;}
.ws8_c00270{word-spacing:-11.656242px;}
.ws1_c00270{word-spacing:-9.988424px;}
.ws3_c00270{word-spacing:-9.987499px;}
.ws6_c00270{word-spacing:-4.536144px;}
.ws12_c00270{word-spacing:0.000000px;}
.wsf_c00270{word-spacing:0.043999px;}
.ws15_c00270{word-spacing:0.056767px;}
.ws13_c00270{word-spacing:0.073250px;}
.ws14_c00270{word-spacing:0.083734px;}
.wsd_c00270{word-spacing:0.175997px;}
.ws16_c00270{word-spacing:0.202963px;}
.ws10_c00270{word-spacing:0.213446px;}
.ws11_c00270{word-spacing:0.219446px;}
.ws0_c00270{word-spacing:42.952523px;}
._1_c00270{margin-left:-6.283636px;}
._0_c00270{margin-left:-4.734246px;}
._4_c00270{margin-left:-3.376852px;}
._2_c00270{margin-left:-1.549390px;}
._8_c00270{width:1.005737px;}
._7_c00270{width:15.972059px;}
._3_c00270{width:19.935816px;}
._5_c00270{width:23.790689px;}
._6_c00270{width:40.109428px;}
._a_c00270{width:53.283031px;}
._9_c00270{width:79.858548px;}
._c_c00270{width:106.654061px;}
._b_c00270{width:133.452408px;}
.fc6_c00270{color:rgb(0,0,207);}
.fc5_c00270{color:rgb(79,153,5);}
.fc3_c00270{color:rgb(33,74,135);}
.fc2_c00270{color:rgb(143,89,3);}
.fc4_c00270{color:rgb(207,92,0);}
.fc1_c00270{color:rgb(6,69,173);}
.fc0_c00270{color:rgb(0,0,0);}
.fs2_c00270{font-size:43.999200px;}
.fs1_c00270{font-size:59.775600px;}
.fs0_c00270{font-size:86.077200px;}
.y0_c00270{bottom:0.000000px;}
.y36_c00270{bottom:44.250000px;}
.y35_c00270{bottom:96.919500px;}
.y34_c00270{bottom:113.358000px;}
.y33_c00270{bottom:129.796500px;}
.y32_c00270{bottom:146.235000px;}
.y31_c00270{bottom:162.673500px;}
.y30_c00270{bottom:179.112000px;}
.y2f_c00270{bottom:195.550500px;}
.y2e_c00270{bottom:211.989000px;}
.y2d_c00270{bottom:228.427500px;}
.y2c_c00270{bottom:244.866000px;}
.y2b_c00270{bottom:261.304500px;}
.y2a_c00270{bottom:294.180000px;}
.y29_c00270{bottom:310.618500px;}
.y28_c00270{bottom:327.057000px;}
.y27_c00270{bottom:359.934000px;}
.y26_c00270{bottom:376.372500px;}
.y25_c00270{bottom:392.811000px;}
.y24_c00270{bottom:409.249500px;}
.y23_c00270{bottom:425.688000px;}
.y22_c00270{bottom:442.125000px;}
.y21_c00270{bottom:458.563500px;}
.y20_c00270{bottom:491.440500px;}
.y1f_c00270{bottom:507.879000px;}
.y1e_c00270{bottom:524.317500px;}
.y1d_c00270{bottom:540.756000px;}
.y1c_c00270{bottom:557.194500px;}
.y1b_c00270{bottom:573.633000px;}
.y1a_c00270{bottom:590.071500px;}
.y19_c00270{bottom:606.508500px;}
.y18_c00270{bottom:622.947000px;}
.y17_c00270{bottom:639.385500px;}
.y16_c00270{bottom:655.824000px;}
.y15_c00270{bottom:672.262500px;}
.y14_c00270{bottom:688.701000px;}
.y13_c00270{bottom:705.139500px;}
.y12_c00270{bottom:721.578000px;}
.y11_c00270{bottom:738.016500px;}
.y10_c00270{bottom:770.893500px;}
.yf_c00270{bottom:787.330500px;}
.ye_c00270{bottom:836.646000px;}
.yd_c00270{bottom:853.084500px;}
.yc_c00270{bottom:869.149500px;}
.yb_c00270{bottom:916.221000px;}
.ya_c00270{bottom:934.153500px;}
.y9_c00270{bottom:952.086000px;}
.y8_c00270{bottom:970.018500px;}
.y7_c00270{bottom:987.952500px;}
.y6_c00270{bottom:1005.885000px;}
.y5_c00270{bottom:1033.539000px;}
.y4_c00270{bottom:1061.191500px;}
.y3_c00270{bottom:1088.845500px;}
.y2_c00270{bottom:1116.499500px;}
.y1_c00270{bottom:1159.863000px;}
.h5_c00270{height:35.190766px;}
.h6_c00270{height:36.007158px;}
.h3_c00270{height:40.511979px;}
.h4_c00270{height:52.332837px;}
.h2_c00270{height:58.337477px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w0_c00270{width:892.920000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:127.558500px;}
.x2_c00270{left:137.122500px;}
.x3_c00270{left:143.770500px;}
.x4_c00270{left:177.007500px;}
.x5_c00270{left:435.249000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls4_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.078221pt;}
.ls2_c00270{letter-spacing:0.087539pt;}
.ls1_c00270{letter-spacing:0.092873pt;}
.ls3_c00270{letter-spacing:23.724873pt;}
.wsc_c00270{word-spacing:-29.967501pt;}
.ws2_c00270{word-spacing:-23.622682pt;}
.wse_c00270{word-spacing:-23.544461pt;}
.ws5_c00270{word-spacing:-16.684034pt;}
.ws7_c00270{word-spacing:-14.239876pt;}
.ws4_c00270{word-spacing:-13.283467pt;}
.wsa_c00270{word-spacing:-12.539593pt;}
.wsb_c00270{word-spacing:-10.733041pt;}
.ws9_c00270{word-spacing:-10.414238pt;}
.ws8_c00270{word-spacing:-10.361104pt;}
.ws1_c00270{word-spacing:-8.878599pt;}
.ws3_c00270{word-spacing:-8.877777pt;}
.ws6_c00270{word-spacing:-4.032128pt;}
.ws12_c00270{word-spacing:0.000000pt;}
.wsf_c00270{word-spacing:0.039110pt;}
.ws15_c00270{word-spacing:0.050460pt;}
.ws13_c00270{word-spacing:0.065111pt;}
.ws14_c00270{word-spacing:0.074430pt;}
.wsd_c00270{word-spacing:0.156442pt;}
.ws16_c00270{word-spacing:0.180412pt;}
.ws10_c00270{word-spacing:0.189730pt;}
.ws11_c00270{word-spacing:0.195063pt;}
.ws0_c00270{word-spacing:38.180020pt;}
._1_c00270{margin-left:-5.585454pt;}
._0_c00270{margin-left:-4.208219pt;}
._4_c00270{margin-left:-3.001646pt;}
._2_c00270{margin-left:-1.377235pt;}
._8_c00270{width:0.893988pt;}
._7_c00270{width:14.197386pt;}
._3_c00270{width:17.720725pt;}
._5_c00270{width:21.147279pt;}
._6_c00270{width:35.652825pt;}
._a_c00270{width:47.362694pt;}
._9_c00270{width:70.985376pt;}
._c_c00270{width:94.803610pt;}
._b_c00270{width:118.624363pt;}
.fs2_c00270{font-size:39.110400pt;}
.fs1_c00270{font-size:53.133867pt;}
.fs0_c00270{font-size:76.513067pt;}
.y0_c00270{bottom:0.000000pt;}
.y36_c00270{bottom:39.333333pt;}
.y35_c00270{bottom:86.150667pt;}
.y34_c00270{bottom:100.762667pt;}
.y33_c00270{bottom:115.374667pt;}
.y32_c00270{bottom:129.986667pt;}
.y31_c00270{bottom:144.598667pt;}
.y30_c00270{bottom:159.210667pt;}
.y2f_c00270{bottom:173.822667pt;}
.y2e_c00270{bottom:188.434667pt;}
.y2d_c00270{bottom:203.046667pt;}
.y2c_c00270{bottom:217.658667pt;}
.y2b_c00270{bottom:232.270667pt;}
.y2a_c00270{bottom:261.493333pt;}
.y29_c00270{bottom:276.105333pt;}
.y28_c00270{bottom:290.717333pt;}
.y27_c00270{bottom:319.941333pt;}
.y26_c00270{bottom:334.553333pt;}
.y25_c00270{bottom:349.165333pt;}
.y24_c00270{bottom:363.777333pt;}
.y23_c00270{bottom:378.389333pt;}
.y22_c00270{bottom:393.000000pt;}
.y21_c00270{bottom:407.612000pt;}
.y20_c00270{bottom:436.836000pt;}
.y1f_c00270{bottom:451.448000pt;}
.y1e_c00270{bottom:466.060000pt;}
.y1d_c00270{bottom:480.672000pt;}
.y1c_c00270{bottom:495.284000pt;}
.y1b_c00270{bottom:509.896000pt;}
.y1a_c00270{bottom:524.508000pt;}
.y19_c00270{bottom:539.118667pt;}
.y18_c00270{bottom:553.730667pt;}
.y17_c00270{bottom:568.342667pt;}
.y16_c00270{bottom:582.954667pt;}
.y15_c00270{bottom:597.566667pt;}
.y14_c00270{bottom:612.178667pt;}
.y13_c00270{bottom:626.790667pt;}
.y12_c00270{bottom:641.402667pt;}
.y11_c00270{bottom:656.014667pt;}
.y10_c00270{bottom:685.238667pt;}
.yf_c00270{bottom:699.849333pt;}
.ye_c00270{bottom:743.685333pt;}
.yd_c00270{bottom:758.297333pt;}
.yc_c00270{bottom:772.577333pt;}
.yb_c00270{bottom:814.418667pt;}
.ya_c00270{bottom:830.358667pt;}
.y9_c00270{bottom:846.298667pt;}
.y8_c00270{bottom:862.238667pt;}
.y7_c00270{bottom:878.180000pt;}
.y6_c00270{bottom:894.120000pt;}
.y5_c00270{bottom:918.701333pt;}
.y4_c00270{bottom:943.281333pt;}
.y3_c00270{bottom:967.862667pt;}
.y2_c00270{bottom:992.444000pt;}
.y1_c00270{bottom:1030.989333pt;}
.h5_c00270{height:31.280681pt;}
.h6_c00270{height:32.006363pt;}
.h3_c00270{height:36.010648pt;}
.h4_c00270{height:46.518078pt;}
.h2_c00270{height:51.855535pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w0_c00270{width:793.706667pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:113.385333pt;}
.x2_c00270{left:121.886667pt;}
.x3_c00270{left:127.796000pt;}
.x4_c00270{left:157.340000pt;}
.x5_c00270{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08a785b4c0e326d63470a9f2.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:0.893555;font-style:normal;font-weight:normal;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_c271ea6e0bb0f01ddecb04e7.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.083496;font-style:normal;font-weight:normal;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_5d0a3930e009dfce3312ec82.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;line-height:1.014648;font-style:normal;font-weight:normal;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_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.048828;font-style: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;}
.ls4_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:0.087998px;}
.ls2_c00271{letter-spacing:0.098482px;}
.ls1_c00271{letter-spacing:0.104482px;}
.ls3_c00271{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00271{word-spacing:-26.575517px;}
.wsd_c00271{word-spacing:-26.487518px;}
.ws7_c00271{word-spacing:-23.312484px;}
.wsa_c00271{word-spacing:-22.654952px;}
.ws5_c00271{word-spacing:-18.769538px;}
.ws9_c00271{word-spacing:-15.934225px;}
.ws8_c00271{word-spacing:-15.900310px;}
.wsb_c00271{word-spacing:-15.601432px;}
.ws4_c00271{word-spacing:-14.943900px;}
.ws6_c00271{word-spacing:-12.276144px;}
.ws1_c00271{word-spacing:-9.988424px;}
.ws3_c00271{word-spacing:-9.987499px;}
.ws11_c00271{word-spacing:0.000000px;}
.wse_c00271{word-spacing:0.043999px;}
.ws14_c00271{word-spacing:0.056767px;}
.ws12_c00271{word-spacing:0.073250px;}
.ws13_c00271{word-spacing:0.083734px;}
.wsc_c00271{word-spacing:0.175997px;}
.ws15_c00271{word-spacing:0.202963px;}
.wsf_c00271{word-spacing:0.213446px;}
.ws10_c00271{word-spacing:0.219446px;}
.ws0_c00271{word-spacing:42.952523px;}
._1_c00271{margin-left:-6.283636px;}
._0_c00271{margin-left:-4.734246px;}
._4_c00271{margin-left:-3.375463px;}
._2_c00271{margin-left:-1.549390px;}
._6_c00271{width:1.005737px;}
._3_c00271{width:19.935816px;}
._5_c00271{width:29.508020px;}
._8_c00271{width:53.283031px;}
._7_c00271{width:79.858548px;}
._9_c00271{width:133.452408px;}
.fc6_c00271{color:rgb(0,0,207);}
.fc5_c00271{color:rgb(79,153,5);}
.fc3_c00271{color:rgb(33,74,135);}
.fc2_c00271{color:rgb(143,89,3);}
.fc4_c00271{color:rgb(207,92,0);}
.fc1_c00271{color:rgb(6,69,173);}
.fc0_c00271{color:rgb(0,0,0);}
.fs2_c00271{font-size:43.999200px;}
.fs1_c00271{font-size:59.775600px;}
.fs0_c00271{font-size:86.077200px;}
.y0_c00271{bottom:0.000000px;}
.y20_c00271{bottom:44.250000px;}
.y1f_c00271{bottom:86.982000px;}
.y1e_c00271{bottom:103.420500px;}
.y1d_c00271{bottom:119.859000px;}
.y1c_c00271{bottom:136.297500px;}
.y1b_c00271{bottom:152.736000px;}
.y1a_c00271{bottom:169.174500px;}
.y19_c00271{bottom:185.613000px;}
.y18_c00271{bottom:202.051500px;}
.y17_c00271{bottom:218.490000px;}
.y16_c00271{bottom:234.927000px;}
.y15_c00271{bottom:251.365500px;}
.y14_c00271{bottom:267.804000px;}
.y13_c00271{bottom:284.242500px;}
.y12_c00271{bottom:300.681000px;}
.y11_c00271{bottom:317.119500px;}
.y10_c00271{bottom:333.558000px;}
.yf_c00271{bottom:366.435000px;}
.ye_c00271{bottom:382.873500px;}
.yd_c00271{bottom:432.187500px;}
.yc_c00271{bottom:448.626000px;}
.yb_c00271{bottom:464.691000px;}
.ya_c00271{bottom:513.009000px;}
.y9_c00271{bottom:530.941500px;}
.y8_c00271{bottom:548.874000px;}
.y7_c00271{bottom:566.806500px;}
.y6_c00271{bottom:584.739000px;}
.y5_c00271{bottom:611.683500px;}
.y4_c00271{bottom:638.626500px;}
.y3_c00271{bottom:665.569500px;}
.y2_c00271{bottom:692.512500px;}
.y1_c00271{bottom:734.850000px;}
.h5_c00271{height:35.190766px;}
.h6_c00271{height:36.007158px;}
.h3_c00271{height:40.511979px;}
.h4_c00271{height:52.332837px;}
.h2_c00271{height:58.337477px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w0_c00271{width:892.920000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:127.558500px;}
.x2_c00271{left:137.122500px;}
.x3_c00271{left:143.770500px;}
.x4_c00271{left:435.249000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls4_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:0.078221pt;}
.ls2_c00271{letter-spacing:0.087539pt;}
.ls1_c00271{letter-spacing:0.092873pt;}
.ls3_c00271{letter-spacing:23.724873pt;}
.ws2_c00271{word-spacing:-23.622682pt;}
.wsd_c00271{word-spacing:-23.544461pt;}
.ws7_c00271{word-spacing:-20.722208pt;}
.wsa_c00271{word-spacing:-20.137735pt;}
.ws5_c00271{word-spacing:-16.684034pt;}
.ws9_c00271{word-spacing:-14.163756pt;}
.ws8_c00271{word-spacing:-14.133609pt;}
.wsb_c00271{word-spacing:-13.867939pt;}
.ws4_c00271{word-spacing:-13.283467pt;}
.ws6_c00271{word-spacing:-10.912128pt;}
.ws1_c00271{word-spacing:-8.878599pt;}
.ws3_c00271{word-spacing:-8.877777pt;}
.ws11_c00271{word-spacing:0.000000pt;}
.wse_c00271{word-spacing:0.039110pt;}
.ws14_c00271{word-spacing:0.050460pt;}
.ws12_c00271{word-spacing:0.065111pt;}
.ws13_c00271{word-spacing:0.074430pt;}
.wsc_c00271{word-spacing:0.156442pt;}
.ws15_c00271{word-spacing:0.180412pt;}
.wsf_c00271{word-spacing:0.189730pt;}
.ws10_c00271{word-spacing:0.195063pt;}
.ws0_c00271{word-spacing:38.180020pt;}
._1_c00271{margin-left:-5.585454pt;}
._0_c00271{margin-left:-4.208219pt;}
._4_c00271{margin-left:-3.000412pt;}
._2_c00271{margin-left:-1.377235pt;}
._6_c00271{width:0.893988pt;}
._3_c00271{width:17.720725pt;}
._5_c00271{width:26.229351pt;}
._8_c00271{width:47.362694pt;}
._7_c00271{width:70.985376pt;}
._9_c00271{width:118.624363pt;}
.fs2_c00271{font-size:39.110400pt;}
.fs1_c00271{font-size:53.133867pt;}
.fs0_c00271{font-size:76.513067pt;}
.y0_c00271{bottom:0.000000pt;}
.y20_c00271{bottom:39.333333pt;}
.y1f_c00271{bottom:77.317333pt;}
.y1e_c00271{bottom:91.929333pt;}
.y1d_c00271{bottom:106.541333pt;}
.y1c_c00271{bottom:121.153333pt;}
.y1b_c00271{bottom:135.765333pt;}
.y1a_c00271{bottom:150.377333pt;}
.y19_c00271{bottom:164.989333pt;}
.y18_c00271{bottom:179.601333pt;}
.y17_c00271{bottom:194.213333pt;}
.y16_c00271{bottom:208.824000pt;}
.y15_c00271{bottom:223.436000pt;}
.y14_c00271{bottom:238.048000pt;}
.y13_c00271{bottom:252.660000pt;}
.y12_c00271{bottom:267.272000pt;}
.y11_c00271{bottom:281.884000pt;}
.y10_c00271{bottom:296.496000pt;}
.yf_c00271{bottom:325.720000pt;}
.ye_c00271{bottom:340.332000pt;}
.yd_c00271{bottom:384.166667pt;}
.yc_c00271{bottom:398.778667pt;}
.yb_c00271{bottom:413.058667pt;}
.ya_c00271{bottom:456.008000pt;}
.y9_c00271{bottom:471.948000pt;}
.y8_c00271{bottom:487.888000pt;}
.y7_c00271{bottom:503.828000pt;}
.y6_c00271{bottom:519.768000pt;}
.y5_c00271{bottom:543.718667pt;}
.y4_c00271{bottom:567.668000pt;}
.y3_c00271{bottom:591.617333pt;}
.y2_c00271{bottom:615.566667pt;}
.y1_c00271{bottom:653.200000pt;}
.h5_c00271{height:31.280681pt;}
.h6_c00271{height:32.006363pt;}
.h3_c00271{height:36.010648pt;}
.h4_c00271{height:46.518078pt;}
.h2_c00271{height:51.855535pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w0_c00271{width:793.706667pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:113.385333pt;}
.x2_c00271{left:121.886667pt;}
.x3_c00271{left:127.796000pt;}
.x4_c00271{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f84d9f2facfd7970112696ca.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.014648;font-style:normal;font-weight:normal;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_d770196c8ec696cb21c83d21.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.083496;font-style:normal;font-weight:normal;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_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.048828;font-style:normal;font-weight:normal;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_42f0c79b2dbe05724234bd62.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_e3224b41524d62c638432729.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.102051;font-style: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;}
.ls3_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.087998px;}
.ls1_c00272{letter-spacing:0.098482px;}
.ls2_c00272{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00272{word-spacing:-33.713438px;}
.ws1_c00272{word-spacing:-26.575517px;}
.ws2_c00272{word-spacing:-26.487518px;}
.ws9_c00272{word-spacing:-18.769538px;}
.wsb_c00272{word-spacing:-17.633802px;}
.ws8_c00272{word-spacing:-14.943900px;}
.wse_c00272{word-spacing:-14.107042px;}
.wsf_c00272{word-spacing:-12.074671px;}
.wsd_c00272{word-spacing:-11.716018px;}
.wsc_c00272{word-spacing:-11.656242px;}
.ws6_c00272{word-spacing:-9.988424px;}
.ws7_c00272{word-spacing:-9.987499px;}
.wsa_c00272{word-spacing:-7.680144px;}
.ws0_c00272{word-spacing:0.000000px;}
.ws3_c00272{word-spacing:0.043999px;}
.ws4_c00272{word-spacing:0.213446px;}
.ws5_c00272{word-spacing:42.952523px;}
._3_c00272{margin-left:-6.283636px;}
._2_c00272{margin-left:-4.734246px;}
._6_c00272{margin-left:-3.376852px;}
._4_c00272{margin-left:-1.549390px;}
._1_c00272{width:1.041538px;}
._9_c00272{width:15.972059px;}
._5_c00272{width:19.935816px;}
._7_c00272{width:23.790689px;}
._8_c00272{width:40.109428px;}
._0_c00272{width:106.654061px;}
.fc5_c00272{color:rgb(0,0,207);}
.fc6_c00272{color:rgb(6,69,173);}
.fc4_c00272{color:rgb(207,92,0);}
.fc3_c00272{color:rgb(79,153,5);}
.fc2_c00272{color:rgb(33,74,135);}
.fc1_c00272{color:rgb(0,0,0);}
.fc0_c00272{color:rgb(143,89,3);}
.fs0_c00272{font-size:43.999200px;}
.fs2_c00272{font-size:59.775600px;}
.fs1_c00272{font-size:86.077200px;}
.y0_c00272{bottom:0.000000px;}
.y21_c00272{bottom:44.250000px;}
.y20_c00272{bottom:82.051500px;}
.y1f_c00272{bottom:99.984000px;}
.y1e_c00272{bottom:117.916500px;}
.y1d_c00272{bottom:135.849000px;}
.y1c_c00272{bottom:153.781500px;}
.y1b_c00272{bottom:171.714000px;}
.y1a_c00272{bottom:197.988000px;}
.y19_c00272{bottom:224.260500px;}
.y18_c00272{bottom:250.533000px;}
.y17_c00272{bottom:276.805500px;}
.y16_c00272{bottom:318.450000px;}
.y15_c00272{bottom:781.780500px;}
.y14_c00272{bottom:798.219000px;}
.y13_c00272{bottom:814.657500px;}
.y12_c00272{bottom:831.096000px;}
.y11_c00272{bottom:847.534500px;}
.y10_c00272{bottom:863.973000px;}
.yf_c00272{bottom:880.411500px;}
.ye_c00272{bottom:896.848500px;}
.yd_c00272{bottom:913.287000px;}
.yc_c00272{bottom:929.725500px;}
.yb_c00272{bottom:946.164000px;}
.ya_c00272{bottom:979.041000px;}
.y9_c00272{bottom:995.479500px;}
.y8_c00272{bottom:1011.918000px;}
.y7_c00272{bottom:1044.795000px;}
.y6_c00272{bottom:1061.232000px;}
.y5_c00272{bottom:1077.670500px;}
.y4_c00272{bottom:1094.109000px;}
.y3_c00272{bottom:1110.547500px;}
.y2_c00272{bottom:1126.986000px;}
.y1_c00272{bottom:1143.424500px;}
.h2_c00272{height:35.190766px;}
.h3_c00272{height:36.007158px;}
.h5_c00272{height:40.511979px;}
.h6_c00272{height:52.332837px;}
.h4_c00272{height:58.337477px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w0_c00272{width:892.920000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x3_c00272{left:127.558500px;}
.x1_c00272{left:137.122500px;}
.x2_c00272{left:177.007500px;}
.x4_c00272{left:435.249000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls3_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.078221pt;}
.ls1_c00272{letter-spacing:0.087539pt;}
.ls2_c00272{letter-spacing:0.092873pt;}
.ws10_c00272{word-spacing:-29.967501pt;}
.ws1_c00272{word-spacing:-23.622682pt;}
.ws2_c00272{word-spacing:-23.544461pt;}
.ws9_c00272{word-spacing:-16.684034pt;}
.wsb_c00272{word-spacing:-15.674491pt;}
.ws8_c00272{word-spacing:-13.283467pt;}
.wse_c00272{word-spacing:-12.539593pt;}
.wsf_c00272{word-spacing:-10.733041pt;}
.wsd_c00272{word-spacing:-10.414238pt;}
.wsc_c00272{word-spacing:-10.361104pt;}
.ws6_c00272{word-spacing:-8.878599pt;}
.ws7_c00272{word-spacing:-8.877777pt;}
.wsa_c00272{word-spacing:-6.826795pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.ws3_c00272{word-spacing:0.039110pt;}
.ws4_c00272{word-spacing:0.189730pt;}
.ws5_c00272{word-spacing:38.180020pt;}
._3_c00272{margin-left:-5.585454pt;}
._2_c00272{margin-left:-4.208219pt;}
._6_c00272{margin-left:-3.001646pt;}
._4_c00272{margin-left:-1.377235pt;}
._1_c00272{width:0.925811pt;}
._9_c00272{width:14.197386pt;}
._5_c00272{width:17.720725pt;}
._7_c00272{width:21.147279pt;}
._8_c00272{width:35.652825pt;}
._0_c00272{width:94.803610pt;}
.fs0_c00272{font-size:39.110400pt;}
.fs2_c00272{font-size:53.133867pt;}
.fs1_c00272{font-size:76.513067pt;}
.y0_c00272{bottom:0.000000pt;}
.y21_c00272{bottom:39.333333pt;}
.y20_c00272{bottom:72.934667pt;}
.y1f_c00272{bottom:88.874667pt;}
.y1e_c00272{bottom:104.814667pt;}
.y1d_c00272{bottom:120.754667pt;}
.y1c_c00272{bottom:136.694667pt;}
.y1b_c00272{bottom:152.634667pt;}
.y1a_c00272{bottom:175.989333pt;}
.y19_c00272{bottom:199.342667pt;}
.y18_c00272{bottom:222.696000pt;}
.y17_c00272{bottom:246.049333pt;}
.y16_c00272{bottom:283.066667pt;}
.y15_c00272{bottom:694.916000pt;}
.y14_c00272{bottom:709.528000pt;}
.y13_c00272{bottom:724.140000pt;}
.y12_c00272{bottom:738.752000pt;}
.y11_c00272{bottom:753.364000pt;}
.y10_c00272{bottom:767.976000pt;}
.yf_c00272{bottom:782.588000pt;}
.ye_c00272{bottom:797.198667pt;}
.yd_c00272{bottom:811.810667pt;}
.yc_c00272{bottom:826.422667pt;}
.yb_c00272{bottom:841.034667pt;}
.ya_c00272{bottom:870.258667pt;}
.y9_c00272{bottom:884.870667pt;}
.y8_c00272{bottom:899.482667pt;}
.y7_c00272{bottom:928.706667pt;}
.y6_c00272{bottom:943.317333pt;}
.y5_c00272{bottom:957.929333pt;}
.y4_c00272{bottom:972.541333pt;}
.y3_c00272{bottom:987.153333pt;}
.y2_c00272{bottom:1001.765333pt;}
.y1_c00272{bottom:1016.377333pt;}
.h2_c00272{height:31.280681pt;}
.h3_c00272{height:32.006363pt;}
.h5_c00272{height:36.010648pt;}
.h6_c00272{height:46.518078pt;}
.h4_c00272{height:51.855535pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w0_c00272{width:793.706667pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x3_c00272{left:113.385333pt;}
.x1_c00272{left:121.886667pt;}
.x2_c00272{left:157.340000pt;}
.x4_c00272{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcdf5c3a96b50108ff30fcc9.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_8a6b36f7ae2e48055ce7ffb9.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_e9a13211046fc08d87ec865a.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls4_c00273{letter-spacing:0.000000px;}
.ls1_c00273{letter-spacing:0.087998px;}
.ls2_c00273{letter-spacing:0.098482px;}
.ls0_c00273{letter-spacing:0.104482px;}
.ls3_c00273{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00273{word-spacing:-26.575517px;}
.ws1_c00273{word-spacing:-26.487518px;}
.ws6_c00273{word-spacing:0.000000px;}
.ws3_c00273{word-spacing:0.043999px;}
.ws9_c00273{word-spacing:0.056767px;}
.ws7_c00273{word-spacing:0.073250px;}
.ws8_c00273{word-spacing:0.083734px;}
.ws0_c00273{word-spacing:0.175997px;}
.wsa_c00273{word-spacing:0.202963px;}
.ws4_c00273{word-spacing:0.213446px;}
.ws5_c00273{word-spacing:0.219446px;}
._0_c00273{width:1.005737px;}
._2_c00273{width:53.283031px;}
._1_c00273{width:79.858548px;}
._3_c00273{width:133.452408px;}
.fc5_c00273{color:rgb(0,0,207);}
.fc4_c00273{color:rgb(79,153,5);}
.fc3_c00273{color:rgb(207,92,0);}
.fc2_c00273{color:rgb(0,0,0);}
.fc1_c00273{color:rgb(33,74,135);}
.fc0_c00273{color:rgb(143,89,3);}
.fs0_c00273{font-size:43.999200px;}
.fs1_c00273{font-size:59.775600px;}
.y0_c00273{bottom:0.000000px;}
.y2b_c00273{bottom:44.250000px;}
.y2a_c00273{bottom:367.161000px;}
.y29_c00273{bottom:383.599500px;}
.y28_c00273{bottom:400.038000px;}
.y27_c00273{bottom:416.475000px;}
.y26_c00273{bottom:432.913500px;}
.y25_c00273{bottom:449.352000px;}
.y24_c00273{bottom:465.790500px;}
.y23_c00273{bottom:482.229000px;}
.y22_c00273{bottom:498.667500px;}
.y21_c00273{bottom:515.106000px;}
.y20_c00273{bottom:531.544500px;}
.y1f_c00273{bottom:564.421500px;}
.y1e_c00273{bottom:580.858500px;}
.y1d_c00273{bottom:597.297000px;}
.y1c_c00273{bottom:630.174000px;}
.y1b_c00273{bottom:646.612500px;}
.y1a_c00273{bottom:663.051000px;}
.y19_c00273{bottom:679.489500px;}
.y18_c00273{bottom:695.928000px;}
.y17_c00273{bottom:712.366500px;}
.y16_c00273{bottom:728.805000px;}
.y15_c00273{bottom:761.680500px;}
.y14_c00273{bottom:778.119000px;}
.y13_c00273{bottom:794.557500px;}
.y12_c00273{bottom:810.996000px;}
.y11_c00273{bottom:827.434500px;}
.y10_c00273{bottom:843.873000px;}
.yf_c00273{bottom:860.311500px;}
.ye_c00273{bottom:876.750000px;}
.yd_c00273{bottom:893.188500px;}
.yc_c00273{bottom:909.627000px;}
.yb_c00273{bottom:926.064000px;}
.ya_c00273{bottom:942.502500px;}
.y9_c00273{bottom:958.941000px;}
.y8_c00273{bottom:975.379500px;}
.y7_c00273{bottom:991.818000px;}
.y6_c00273{bottom:1008.256500px;}
.y5_c00273{bottom:1041.133500px;}
.y4_c00273{bottom:1057.572000px;}
.y3_c00273{bottom:1106.886000px;}
.y2_c00273{bottom:1123.324500px;}
.y1_c00273{bottom:1139.389500px;}
.h2_c00273{height:35.190766px;}
.h3_c00273{height:36.007158px;}
.h4_c00273{height:52.332837px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w0_c00273{width:892.920000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:137.122500px;}
.x2_c00273{left:143.770500px;}
.x3_c00273{left:177.007500px;}
.x4_c00273{left:435.249000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls4_c00273{letter-spacing:0.000000pt;}
.ls1_c00273{letter-spacing:0.078221pt;}
.ls2_c00273{letter-spacing:0.087539pt;}
.ls0_c00273{letter-spacing:0.092873pt;}
.ls3_c00273{letter-spacing:23.724873pt;}
.ws2_c00273{word-spacing:-23.622682pt;}
.ws1_c00273{word-spacing:-23.544461pt;}
.ws6_c00273{word-spacing:0.000000pt;}
.ws3_c00273{word-spacing:0.039110pt;}
.ws9_c00273{word-spacing:0.050460pt;}
.ws7_c00273{word-spacing:0.065111pt;}
.ws8_c00273{word-spacing:0.074430pt;}
.ws0_c00273{word-spacing:0.156442pt;}
.wsa_c00273{word-spacing:0.180412pt;}
.ws4_c00273{word-spacing:0.189730pt;}
.ws5_c00273{word-spacing:0.195063pt;}
._0_c00273{width:0.893988pt;}
._2_c00273{width:47.362694pt;}
._1_c00273{width:70.985376pt;}
._3_c00273{width:118.624363pt;}
.fs0_c00273{font-size:39.110400pt;}
.fs1_c00273{font-size:53.133867pt;}
.y0_c00273{bottom:0.000000pt;}
.y2b_c00273{bottom:39.333333pt;}
.y2a_c00273{bottom:326.365333pt;}
.y29_c00273{bottom:340.977333pt;}
.y28_c00273{bottom:355.589333pt;}
.y27_c00273{bottom:370.200000pt;}
.y26_c00273{bottom:384.812000pt;}
.y25_c00273{bottom:399.424000pt;}
.y24_c00273{bottom:414.036000pt;}
.y23_c00273{bottom:428.648000pt;}
.y22_c00273{bottom:443.260000pt;}
.y21_c00273{bottom:457.872000pt;}
.y20_c00273{bottom:472.484000pt;}
.y1f_c00273{bottom:501.708000pt;}
.y1e_c00273{bottom:516.318667pt;}
.y1d_c00273{bottom:530.930667pt;}
.y1c_c00273{bottom:560.154667pt;}
.y1b_c00273{bottom:574.766667pt;}
.y1a_c00273{bottom:589.378667pt;}
.y19_c00273{bottom:603.990667pt;}
.y18_c00273{bottom:618.602667pt;}
.y17_c00273{bottom:633.214667pt;}
.y16_c00273{bottom:647.826667pt;}
.y15_c00273{bottom:677.049333pt;}
.y14_c00273{bottom:691.661333pt;}
.y13_c00273{bottom:706.273333pt;}
.y12_c00273{bottom:720.885333pt;}
.y11_c00273{bottom:735.497333pt;}
.y10_c00273{bottom:750.109333pt;}
.yf_c00273{bottom:764.721333pt;}
.ye_c00273{bottom:779.333333pt;}
.yd_c00273{bottom:793.945333pt;}
.yc_c00273{bottom:808.557333pt;}
.yb_c00273{bottom:823.168000pt;}
.ya_c00273{bottom:837.780000pt;}
.y9_c00273{bottom:852.392000pt;}
.y8_c00273{bottom:867.004000pt;}
.y7_c00273{bottom:881.616000pt;}
.y6_c00273{bottom:896.228000pt;}
.y5_c00273{bottom:925.452000pt;}
.y4_c00273{bottom:940.064000pt;}
.y3_c00273{bottom:983.898667pt;}
.y2_c00273{bottom:998.510667pt;}
.y1_c00273{bottom:1012.790667pt;}
.h2_c00273{height:31.280681pt;}
.h3_c00273{height:32.006363pt;}
.h4_c00273{height:46.518078pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w0_c00273{width:793.706667pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:121.886667pt;}
.x2_c00273{left:127.796000pt;}
.x3_c00273{left:157.340000pt;}
.x4_c00273{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce2c61a66324469268a1c22e.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.893555;font-style:normal;font-weight:normal;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_bf1c5424054528e3ac59aefe.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.083496;font-style:normal;font-weight:normal;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_1ae179c167c24029bcf11c75.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.102051;font-style:normal;font-weight:normal;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_de64a4d25c9b31f4cd7cbe9e.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_988dcba9106b5d52f42f00fa.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.048828;font-style: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;}
.ls3_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.087998px;}
.ls2_c00274{letter-spacing:0.098482px;}
.ls1_c00274{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00274{word-spacing:-26.575517px;}
.ws11_c00274{word-spacing:-26.487518px;}
.wse_c00274{word-spacing:-19.008641px;}
.ws8_c00274{word-spacing:-18.908094px;}
.ws7_c00274{word-spacing:-18.829314px;}
.ws5_c00274{word-spacing:-18.769538px;}
.ws9_c00274{word-spacing:-16.916495px;}
.wsa_c00274{word-spacing:-16.881588px;}
.wsc_c00274{word-spacing:-15.242778px;}
.ws4_c00274{word-spacing:-14.943900px;}
.wsf_c00274{word-spacing:-12.074671px;}
.wsb_c00274{word-spacing:-11.775793px;}
.ws6_c00274{word-spacing:-10.044144px;}
.ws1_c00274{word-spacing:-9.988424px;}
.ws3_c00274{word-spacing:-9.987499px;}
.wsd_c00274{word-spacing:-7.981015px;}
.ws15_c00274{word-spacing:0.000000px;}
.ws12_c00274{word-spacing:0.043999px;}
.ws10_c00274{word-spacing:0.175997px;}
.ws13_c00274{word-spacing:0.213446px;}
.ws14_c00274{word-spacing:0.219446px;}
.ws0_c00274{word-spacing:42.952523px;}
._0_c00274{margin-left:-4.734246px;}
._7_c00274{margin-left:-3.287658px;}
._2_c00274{margin-left:-1.075961px;}
._5_c00274{width:1.025479px;}
._1_c00274{width:19.935816px;}
._3_c00274{width:23.611362px;}
._4_c00274{width:30.605107px;}
._6_c00274{width:40.049652px;}
.fc6_c00274{color:rgb(0,0,207);}
.fc5_c00274{color:rgb(79,153,5);}
.fc3_c00274{color:rgb(33,74,135);}
.fc2_c00274{color:rgb(143,89,3);}
.fc4_c00274{color:rgb(207,92,0);}
.fc1_c00274{color:rgb(6,69,173);}
.fc0_c00274{color:rgb(0,0,0);}
.fs2_c00274{font-size:43.999200px;}
.fs1_c00274{font-size:59.775600px;}
.fs0_c00274{font-size:86.077200px;}
.y0_c00274{bottom:0.000000px;}
.y1e_c00274{bottom:44.250000px;}
.y1d_c00274{bottom:86.982000px;}
.y1c_c00274{bottom:103.420500px;}
.y1b_c00274{bottom:119.859000px;}
.y1a_c00274{bottom:136.297500px;}
.y19_c00274{bottom:169.174500px;}
.y18_c00274{bottom:185.613000px;}
.y17_c00274{bottom:218.490000px;}
.y16_c00274{bottom:234.927000px;}
.y15_c00274{bottom:251.365500px;}
.y14_c00274{bottom:300.681000px;}
.y13_c00274{bottom:317.119500px;}
.y12_c00274{bottom:333.558000px;}
.y11_c00274{bottom:349.996500px;}
.y10_c00274{bottom:366.435000px;}
.yf_c00274{bottom:399.310500px;}
.ye_c00274{bottom:415.749000px;}
.yd_c00274{bottom:431.814000px;}
.yc_c00274{bottom:478.861500px;}
.yb_c00274{bottom:496.794000px;}
.ya_c00274{bottom:514.726500px;}
.y9_c00274{bottom:532.659000px;}
.y8_c00274{bottom:550.591500px;}
.y7_c00274{bottom:568.524000px;}
.y6_c00274{bottom:586.458000px;}
.y5_c00274{bottom:613.162500px;}
.y4_c00274{bottom:639.868500px;}
.y3_c00274{bottom:666.574500px;}
.y2_c00274{bottom:693.280500px;}
.y1_c00274{bottom:735.360000px;}
.h5_c00274{height:35.190766px;}
.h6_c00274{height:36.007158px;}
.h3_c00274{height:40.511979px;}
.h4_c00274{height:52.332837px;}
.h2_c00274{height:58.337477px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w0_c00274{width:892.920000px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:127.558500px;}
.x2_c00274{left:137.122500px;}
.x3_c00274{left:435.249000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls3_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.078221pt;}
.ls2_c00274{letter-spacing:0.087539pt;}
.ls1_c00274{letter-spacing:0.092873pt;}
.ws2_c00274{word-spacing:-23.622682pt;}
.ws11_c00274{word-spacing:-23.544461pt;}
.wse_c00274{word-spacing:-16.896570pt;}
.ws8_c00274{word-spacing:-16.807195pt;}
.ws7_c00274{word-spacing:-16.737168pt;}
.ws5_c00274{word-spacing:-16.684034pt;}
.ws9_c00274{word-spacing:-15.036884pt;}
.wsa_c00274{word-spacing:-15.005856pt;}
.wsc_c00274{word-spacing:-13.549136pt;}
.ws4_c00274{word-spacing:-13.283467pt;}
.wsf_c00274{word-spacing:-10.733041pt;}
.wsb_c00274{word-spacing:-10.467372pt;}
.ws6_c00274{word-spacing:-8.928128pt;}
.ws1_c00274{word-spacing:-8.878599pt;}
.ws3_c00274{word-spacing:-8.877777pt;}
.wsd_c00274{word-spacing:-7.094236pt;}
.ws15_c00274{word-spacing:0.000000pt;}
.ws12_c00274{word-spacing:0.039110pt;}
.ws10_c00274{word-spacing:0.156442pt;}
.ws13_c00274{word-spacing:0.189730pt;}
.ws14_c00274{word-spacing:0.195063pt;}
.ws0_c00274{word-spacing:38.180020pt;}
._0_c00274{margin-left:-4.208219pt;}
._7_c00274{margin-left:-2.922363pt;}
._2_c00274{margin-left:-0.956410pt;}
._5_c00274{width:0.911537pt;}
._1_c00274{width:17.720725pt;}
._3_c00274{width:20.987877pt;}
._4_c00274{width:27.204540pt;}
._6_c00274{width:35.599691pt;}
.fs2_c00274{font-size:39.110400pt;}
.fs1_c00274{font-size:53.133867pt;}
.fs0_c00274{font-size:76.513067pt;}
.y0_c00274{bottom:0.000000pt;}
.y1e_c00274{bottom:39.333333pt;}
.y1d_c00274{bottom:77.317333pt;}
.y1c_c00274{bottom:91.929333pt;}
.y1b_c00274{bottom:106.541333pt;}
.y1a_c00274{bottom:121.153333pt;}
.y19_c00274{bottom:150.377333pt;}
.y18_c00274{bottom:164.989333pt;}
.y17_c00274{bottom:194.213333pt;}
.y16_c00274{bottom:208.824000pt;}
.y15_c00274{bottom:223.436000pt;}
.y14_c00274{bottom:267.272000pt;}
.y13_c00274{bottom:281.884000pt;}
.y12_c00274{bottom:296.496000pt;}
.y11_c00274{bottom:311.108000pt;}
.y10_c00274{bottom:325.720000pt;}
.yf_c00274{bottom:354.942667pt;}
.ye_c00274{bottom:369.554667pt;}
.yd_c00274{bottom:383.834667pt;}
.yc_c00274{bottom:425.654667pt;}
.yb_c00274{bottom:441.594667pt;}
.ya_c00274{bottom:457.534667pt;}
.y9_c00274{bottom:473.474667pt;}
.y8_c00274{bottom:489.414667pt;}
.y7_c00274{bottom:505.354667pt;}
.y6_c00274{bottom:521.296000pt;}
.y5_c00274{bottom:545.033333pt;}
.y4_c00274{bottom:568.772000pt;}
.y3_c00274{bottom:592.510667pt;}
.y2_c00274{bottom:616.249333pt;}
.y1_c00274{bottom:653.653333pt;}
.h5_c00274{height:31.280681pt;}
.h6_c00274{height:32.006363pt;}
.h3_c00274{height:36.010648pt;}
.h4_c00274{height:46.518078pt;}
.h2_c00274{height:51.855535pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w0_c00274{width:793.706667pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:113.385333pt;}
.x2_c00274{left:121.886667pt;}
.x3_c00274{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09d39307a4b66e052715fd9c.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.083496;font-style:normal;font-weight:normal;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_31aef807469d14ff6ecff391.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_0694a77f458d36ce00289995.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_3c6124f86359ff43ee96d4ee.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls4_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:0.087998px;}
.ls2_c00275{letter-spacing:0.098482px;}
.ls1_c00275{letter-spacing:0.104482px;}
.ls3_c00275{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws1_c00275{word-spacing:-26.487518px;}
.ws2_c00275{word-spacing:0.000000px;}
.ws8_c00275{word-spacing:0.026966px;}
.ws9_c00275{word-spacing:0.043999px;}
.ws6_c00275{word-spacing:0.046284px;}
.ws3_c00275{word-spacing:0.056767px;}
.ws5_c00275{word-spacing:0.073250px;}
.ws7_c00275{word-spacing:0.083734px;}
.ws4_c00275{word-spacing:0.202963px;}
.wsb_c00275{word-spacing:0.213446px;}
.wsa_c00275{word-spacing:0.219446px;}
._5_c00275{width:1.041538px;}
._3_c00275{width:53.283031px;}
._0_c00275{width:79.858548px;}
._2_c00275{width:106.434065px;}
._1_c00275{width:133.452408px;}
._4_c00275{width:186.179933px;}
.fc5_c00275{color:rgb(207,92,0);}
.fc4_c00275{color:rgb(0,0,207);}
.fc3_c00275{color:rgb(79,153,5);}
.fc2_c00275{color:rgb(33,74,135);}
.fc1_c00275{color:rgb(143,89,3);}
.fc0_c00275{color:rgb(0,0,0);}
.fs0_c00275{font-size:43.999200px;}
.fs1_c00275{font-size:59.775600px;}
.y0_c00275{bottom:0.000000px;}
.y30_c00275{bottom:44.250000px;}
.y2f_c00275{bottom:288.630000px;}
.y2e_c00275{bottom:305.068500px;}
.y2d_c00275{bottom:321.507000px;}
.y2c_c00275{bottom:337.945500px;}
.y2b_c00275{bottom:354.384000px;}
.y2a_c00275{bottom:370.822500px;}
.y29_c00275{bottom:387.259500px;}
.y28_c00275{bottom:403.698000px;}
.y27_c00275{bottom:420.136500px;}
.y26_c00275{bottom:436.575000px;}
.y25_c00275{bottom:453.013500px;}
.y24_c00275{bottom:485.890500px;}
.y23_c00275{bottom:502.329000px;}
.y22_c00275{bottom:518.767500px;}
.y21_c00275{bottom:551.643000px;}
.y20_c00275{bottom:568.081500px;}
.y1f_c00275{bottom:584.520000px;}
.y1e_c00275{bottom:600.958500px;}
.y1d_c00275{bottom:617.397000px;}
.y1c_c00275{bottom:633.835500px;}
.y1b_c00275{bottom:650.274000px;}
.y1a_c00275{bottom:666.712500px;}
.y19_c00275{bottom:683.151000px;}
.y18_c00275{bottom:699.589500px;}
.y17_c00275{bottom:716.028000px;}
.y16_c00275{bottom:732.465000px;}
.y15_c00275{bottom:748.903500px;}
.y14_c00275{bottom:765.342000px;}
.y13_c00275{bottom:781.780500px;}
.y12_c00275{bottom:798.219000px;}
.y11_c00275{bottom:814.657500px;}
.y10_c00275{bottom:831.096000px;}
.yf_c00275{bottom:847.534500px;}
.ye_c00275{bottom:896.848500px;}
.yd_c00275{bottom:913.287000px;}
.yc_c00275{bottom:929.725500px;}
.yb_c00275{bottom:946.164000px;}
.ya_c00275{bottom:962.602500px;}
.y9_c00275{bottom:995.479500px;}
.y8_c00275{bottom:1011.918000px;}
.y7_c00275{bottom:1044.795000px;}
.y6_c00275{bottom:1061.232000px;}
.y5_c00275{bottom:1094.109000px;}
.y4_c00275{bottom:1110.547500px;}
.y3_c00275{bottom:1126.986000px;}
.y2_c00275{bottom:1143.424500px;}
.y1_c00275{bottom:1159.863000px;}
.h3_c00275{height:35.190766px;}
.h2_c00275{height:36.007158px;}
.h4_c00275{height:52.332837px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w0_c00275{width:892.920000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:137.122500px;}
.x3_c00275{left:143.770500px;}
.x4_c00275{left:177.007500px;}
.x2_c00275{left:210.243000px;}
.x5_c00275{left:435.249000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls4_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:0.078221pt;}
.ls2_c00275{letter-spacing:0.087539pt;}
.ls1_c00275{letter-spacing:0.092873pt;}
.ls3_c00275{letter-spacing:23.724873pt;}
.ws0_c00275{word-spacing:-23.622682pt;}
.ws1_c00275{word-spacing:-23.544461pt;}
.ws2_c00275{word-spacing:0.000000pt;}
.ws8_c00275{word-spacing:0.023970pt;}
.ws9_c00275{word-spacing:0.039110pt;}
.ws6_c00275{word-spacing:0.041141pt;}
.ws3_c00275{word-spacing:0.050460pt;}
.ws5_c00275{word-spacing:0.065111pt;}
.ws7_c00275{word-spacing:0.074430pt;}
.ws4_c00275{word-spacing:0.180412pt;}
.wsb_c00275{word-spacing:0.189730pt;}
.wsa_c00275{word-spacing:0.195063pt;}
._5_c00275{width:0.925811pt;}
._3_c00275{width:47.362694pt;}
._0_c00275{width:70.985376pt;}
._2_c00275{width:94.608058pt;}
._1_c00275{width:118.624363pt;}
._4_c00275{width:165.493274pt;}
.fs0_c00275{font-size:39.110400pt;}
.fs1_c00275{font-size:53.133867pt;}
.y0_c00275{bottom:0.000000pt;}
.y30_c00275{bottom:39.333333pt;}
.y2f_c00275{bottom:256.560000pt;}
.y2e_c00275{bottom:271.172000pt;}
.y2d_c00275{bottom:285.784000pt;}
.y2c_c00275{bottom:300.396000pt;}
.y2b_c00275{bottom:315.008000pt;}
.y2a_c00275{bottom:329.620000pt;}
.y29_c00275{bottom:344.230667pt;}
.y28_c00275{bottom:358.842667pt;}
.y27_c00275{bottom:373.454667pt;}
.y26_c00275{bottom:388.066667pt;}
.y25_c00275{bottom:402.678667pt;}
.y24_c00275{bottom:431.902667pt;}
.y23_c00275{bottom:446.514667pt;}
.y22_c00275{bottom:461.126667pt;}
.y21_c00275{bottom:490.349333pt;}
.y20_c00275{bottom:504.961333pt;}
.y1f_c00275{bottom:519.573333pt;}
.y1e_c00275{bottom:534.185333pt;}
.y1d_c00275{bottom:548.797333pt;}
.y1c_c00275{bottom:563.409333pt;}
.y1b_c00275{bottom:578.021333pt;}
.y1a_c00275{bottom:592.633333pt;}
.y19_c00275{bottom:607.245333pt;}
.y18_c00275{bottom:621.857333pt;}
.y17_c00275{bottom:636.469333pt;}
.y16_c00275{bottom:651.080000pt;}
.y15_c00275{bottom:665.692000pt;}
.y14_c00275{bottom:680.304000pt;}
.y13_c00275{bottom:694.916000pt;}
.y12_c00275{bottom:709.528000pt;}
.y11_c00275{bottom:724.140000pt;}
.y10_c00275{bottom:738.752000pt;}
.yf_c00275{bottom:753.364000pt;}
.ye_c00275{bottom:797.198667pt;}
.yd_c00275{bottom:811.810667pt;}
.yc_c00275{bottom:826.422667pt;}
.yb_c00275{bottom:841.034667pt;}
.ya_c00275{bottom:855.646667pt;}
.y9_c00275{bottom:884.870667pt;}
.y8_c00275{bottom:899.482667pt;}
.y7_c00275{bottom:928.706667pt;}
.y6_c00275{bottom:943.317333pt;}
.y5_c00275{bottom:972.541333pt;}
.y4_c00275{bottom:987.153333pt;}
.y3_c00275{bottom:1001.765333pt;}
.y2_c00275{bottom:1016.377333pt;}
.y1_c00275{bottom:1030.989333pt;}
.h3_c00275{height:31.280681pt;}
.h2_c00275{height:32.006363pt;}
.h4_c00275{height:46.518078pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w0_c00275{width:793.706667pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:121.886667pt;}
.x3_c00275{left:127.796000pt;}
.x4_c00275{left:157.340000pt;}
.x2_c00275{left:186.882667pt;}
.x5_c00275{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2946b907306fafb924c476c.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.893555;font-style:normal;font-weight:normal;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_aee3d76df46a68130614e217.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.083496;font-style:normal;font-weight:normal;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_032c6bcddd8136260b9e9ee1.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.048828;font-style: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;}
.ls3_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.087998px;}
.ls2_c00276{letter-spacing:0.098482px;}
.ls1_c00276{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00276{word-spacing:-33.713438px;}
.ws2_c00276{word-spacing:-26.575517px;}
.wse_c00276{word-spacing:-26.487518px;}
.ws5_c00276{word-spacing:-18.769538px;}
.ws4_c00276{word-spacing:-14.943900px;}
.ws7_c00276{word-spacing:-14.465695px;}
.wsa_c00276{word-spacing:-14.107042px;}
.wsb_c00276{word-spacing:-12.074671px;}
.ws9_c00276{word-spacing:-11.716018px;}
.ws8_c00276{word-spacing:-11.656242px;}
.ws1_c00276{word-spacing:-9.988424px;}
.ws3_c00276{word-spacing:-9.987499px;}
.ws6_c00276{word-spacing:-1.386144px;}
.ws12_c00276{word-spacing:0.000000px;}
.wsf_c00276{word-spacing:0.043999px;}
.ws15_c00276{word-spacing:0.056767px;}
.ws13_c00276{word-spacing:0.073250px;}
.ws14_c00276{word-spacing:0.083734px;}
.wsd_c00276{word-spacing:0.175997px;}
.ws16_c00276{word-spacing:0.202963px;}
.ws10_c00276{word-spacing:0.213446px;}
.ws11_c00276{word-spacing:0.219446px;}
.ws0_c00276{word-spacing:42.952523px;}
._0_c00276{margin-left:-4.734246px;}
._3_c00276{margin-left:-3.376852px;}
._2_c00276{margin-left:-1.075961px;}
._7_c00276{width:1.005737px;}
._6_c00276{width:15.972059px;}
._1_c00276{width:19.935816px;}
._4_c00276{width:23.790689px;}
._5_c00276{width:40.109428px;}
._9_c00276{width:53.283031px;}
._8_c00276{width:79.858548px;}
._a_c00276{width:133.452408px;}
.fc6_c00276{color:rgb(0,0,207);}
.fc5_c00276{color:rgb(79,153,5);}
.fc3_c00276{color:rgb(33,74,135);}
.fc2_c00276{color:rgb(143,89,3);}
.fc4_c00276{color:rgb(207,92,0);}
.fc1_c00276{color:rgb(6,69,173);}
.fc0_c00276{color:rgb(0,0,0);}
.fs2_c00276{font-size:43.999200px;}
.fs1_c00276{font-size:59.775600px;}
.fs0_c00276{font-size:86.077200px;}
.y0_c00276{bottom:0.000000px;}
.y20_c00276{bottom:44.250000px;}
.y1f_c00276{bottom:86.982000px;}
.y1e_c00276{bottom:103.420500px;}
.y1d_c00276{bottom:119.859000px;}
.y1c_c00276{bottom:136.297500px;}
.y1b_c00276{bottom:152.736000px;}
.y1a_c00276{bottom:169.174500px;}
.y19_c00276{bottom:185.613000px;}
.y18_c00276{bottom:202.051500px;}
.y17_c00276{bottom:218.490000px;}
.y16_c00276{bottom:234.927000px;}
.y15_c00276{bottom:251.365500px;}
.y14_c00276{bottom:267.804000px;}
.y13_c00276{bottom:284.242500px;}
.y12_c00276{bottom:300.681000px;}
.y11_c00276{bottom:317.119500px;}
.y10_c00276{bottom:349.996500px;}
.yf_c00276{bottom:366.435000px;}
.ye_c00276{bottom:415.749000px;}
.yd_c00276{bottom:432.187500px;}
.yc_c00276{bottom:448.252500px;}
.yb_c00276{bottom:493.890000px;}
.ya_c00276{bottom:511.822500px;}
.y9_c00276{bottom:529.756500px;}
.y8_c00276{bottom:547.689000px;}
.y7_c00276{bottom:565.621500px;}
.y6_c00276{bottom:583.554000px;}
.y5_c00276{bottom:610.633500px;}
.y4_c00276{bottom:637.714500px;}
.y3_c00276{bottom:664.794000px;}
.y2_c00276{bottom:691.873500px;}
.y1_c00276{bottom:734.407500px;}
.h5_c00276{height:35.190766px;}
.h6_c00276{height:36.007158px;}
.h3_c00276{height:40.511979px;}
.h4_c00276{height:52.332837px;}
.h2_c00276{height:58.337477px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w0_c00276{width:892.920000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:127.558500px;}
.x2_c00276{left:137.122500px;}
.x3_c00276{left:143.770500px;}
.x4_c00276{left:435.249000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls3_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.078221pt;}
.ls2_c00276{letter-spacing:0.087539pt;}
.ls1_c00276{letter-spacing:0.092873pt;}
.wsc_c00276{word-spacing:-29.967501pt;}
.ws2_c00276{word-spacing:-23.622682pt;}
.wse_c00276{word-spacing:-23.544461pt;}
.ws5_c00276{word-spacing:-16.684034pt;}
.ws4_c00276{word-spacing:-13.283467pt;}
.ws7_c00276{word-spacing:-12.858396pt;}
.wsa_c00276{word-spacing:-12.539593pt;}
.wsb_c00276{word-spacing:-10.733041pt;}
.ws9_c00276{word-spacing:-10.414238pt;}
.ws8_c00276{word-spacing:-10.361104pt;}
.ws1_c00276{word-spacing:-8.878599pt;}
.ws3_c00276{word-spacing:-8.877777pt;}
.ws6_c00276{word-spacing:-1.232128pt;}
.ws12_c00276{word-spacing:0.000000pt;}
.wsf_c00276{word-spacing:0.039110pt;}
.ws15_c00276{word-spacing:0.050460pt;}
.ws13_c00276{word-spacing:0.065111pt;}
.ws14_c00276{word-spacing:0.074430pt;}
.wsd_c00276{word-spacing:0.156442pt;}
.ws16_c00276{word-spacing:0.180412pt;}
.ws10_c00276{word-spacing:0.189730pt;}
.ws11_c00276{word-spacing:0.195063pt;}
.ws0_c00276{word-spacing:38.180020pt;}
._0_c00276{margin-left:-4.208219pt;}
._3_c00276{margin-left:-3.001646pt;}
._2_c00276{margin-left:-0.956410pt;}
._7_c00276{width:0.893988pt;}
._6_c00276{width:14.197386pt;}
._1_c00276{width:17.720725pt;}
._4_c00276{width:21.147279pt;}
._5_c00276{width:35.652825pt;}
._9_c00276{width:47.362694pt;}
._8_c00276{width:70.985376pt;}
._a_c00276{width:118.624363pt;}
.fs2_c00276{font-size:39.110400pt;}
.fs1_c00276{font-size:53.133867pt;}
.fs0_c00276{font-size:76.513067pt;}
.y0_c00276{bottom:0.000000pt;}
.y20_c00276{bottom:39.333333pt;}
.y1f_c00276{bottom:77.317333pt;}
.y1e_c00276{bottom:91.929333pt;}
.y1d_c00276{bottom:106.541333pt;}
.y1c_c00276{bottom:121.153333pt;}
.y1b_c00276{bottom:135.765333pt;}
.y1a_c00276{bottom:150.377333pt;}
.y19_c00276{bottom:164.989333pt;}
.y18_c00276{bottom:179.601333pt;}
.y17_c00276{bottom:194.213333pt;}
.y16_c00276{bottom:208.824000pt;}
.y15_c00276{bottom:223.436000pt;}
.y14_c00276{bottom:238.048000pt;}
.y13_c00276{bottom:252.660000pt;}
.y12_c00276{bottom:267.272000pt;}
.y11_c00276{bottom:281.884000pt;}
.y10_c00276{bottom:311.108000pt;}
.yf_c00276{bottom:325.720000pt;}
.ye_c00276{bottom:369.554667pt;}
.yd_c00276{bottom:384.166667pt;}
.yc_c00276{bottom:398.446667pt;}
.yb_c00276{bottom:439.013333pt;}
.ya_c00276{bottom:454.953333pt;}
.y9_c00276{bottom:470.894667pt;}
.y8_c00276{bottom:486.834667pt;}
.y7_c00276{bottom:502.774667pt;}
.y6_c00276{bottom:518.714667pt;}
.y5_c00276{bottom:542.785333pt;}
.y4_c00276{bottom:566.857333pt;}
.y3_c00276{bottom:590.928000pt;}
.y2_c00276{bottom:614.998667pt;}
.y1_c00276{bottom:652.806667pt;}
.h5_c00276{height:31.280681pt;}
.h6_c00276{height:32.006363pt;}
.h3_c00276{height:36.010648pt;}
.h4_c00276{height:46.518078pt;}
.h2_c00276{height:51.855535pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w0_c00276{width:793.706667pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:113.385333pt;}
.x2_c00276{left:121.886667pt;}
.x3_c00276{left:127.796000pt;}
.x4_c00276{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_603ca1e2180fd0a6807116d6.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.048828;font-style:normal;font-weight:normal;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_4e72dcb42f0d6adc69bf83a9.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.014648;font-style:normal;font-weight:normal;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_15853839f7399f431d1db17c.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_71bb5bf058d75e157d551d84.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:1.102051;font-style: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;}
.ls4_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.087998px;}
.ls2_c00277{letter-spacing:0.098482px;}
.ls3_c00277{letter-spacing:0.104482px;}
.ls1_c00277{letter-spacing:26.690482px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00277{word-spacing:-26.575517px;}
.ws4_c00277{word-spacing:-26.487518px;}
.wsa_c00277{word-spacing:-18.769538px;}
.wsc_c00277{word-spacing:-16.019861px;}
.ws9_c00277{word-spacing:-14.943900px;}
.wsf_c00277{word-spacing:-14.107042px;}
.ws10_c00277{word-spacing:-12.074671px;}
.wse_c00277{word-spacing:-11.716018px;}
.wsd_c00277{word-spacing:-11.656242px;}
.ws7_c00277{word-spacing:-9.988424px;}
.ws8_c00277{word-spacing:-9.987499px;}
.wsb_c00277{word-spacing:-4.536144px;}
.ws3_c00277{word-spacing:0.000000px;}
.ws0_c00277{word-spacing:0.043999px;}
.ws5_c00277{word-spacing:0.213446px;}
.ws1_c00277{word-spacing:0.219446px;}
.ws6_c00277{word-spacing:42.952523px;}
._1_c00277{margin-left:-4.734246px;}
._4_c00277{margin-left:-3.376852px;}
._3_c00277{margin-left:-1.075961px;}
._0_c00277{width:1.041538px;}
._2_c00277{width:19.935816px;}
._5_c00277{width:23.790689px;}
._6_c00277{width:40.109428px;}
.fc5_c00277{color:rgb(79,153,5);}
.fc4_c00277{color:rgb(143,89,3);}
.fc3_c00277{color:rgb(0,0,0);}
.fc6_c00277{color:rgb(6,69,173);}
.fc2_c00277{color:rgb(207,92,0);}
.fc1_c00277{color:rgb(0,0,207);}
.fc0_c00277{color:rgb(33,74,135);}
.fs0_c00277{font-size:43.999200px;}
.fs2_c00277{font-size:59.775600px;}
.fs1_c00277{font-size:86.077200px;}
.y0_c00277{bottom:0.000000px;}
.y20_c00277{bottom:44.250000px;}
.y1f_c00277{bottom:82.051500px;}
.y1e_c00277{bottom:99.984000px;}
.y1d_c00277{bottom:117.916500px;}
.y1c_c00277{bottom:135.849000px;}
.y1b_c00277{bottom:164.244000px;}
.y1a_c00277{bottom:192.637500px;}
.y19_c00277{bottom:221.032500px;}
.y18_c00277{bottom:249.427500px;}
.y17_c00277{bottom:293.863500px;}
.y16_c00277{bottom:765.342000px;}
.y15_c00277{bottom:781.780500px;}
.y14_c00277{bottom:798.219000px;}
.y13_c00277{bottom:814.657500px;}
.y12_c00277{bottom:831.096000px;}
.y11_c00277{bottom:847.534500px;}
.y10_c00277{bottom:863.973000px;}
.yf_c00277{bottom:880.411500px;}
.ye_c00277{bottom:896.848500px;}
.yd_c00277{bottom:913.287000px;}
.yc_c00277{bottom:929.725500px;}
.yb_c00277{bottom:962.602500px;}
.ya_c00277{bottom:979.041000px;}
.y9_c00277{bottom:995.479500px;}
.y8_c00277{bottom:1028.356500px;}
.y7_c00277{bottom:1044.795000px;}
.y6_c00277{bottom:1061.232000px;}
.y5_c00277{bottom:1077.670500px;}
.y4_c00277{bottom:1094.109000px;}
.y3_c00277{bottom:1110.547500px;}
.y2_c00277{bottom:1126.986000px;}
.y1_c00277{bottom:1159.863000px;}
.h3_c00277{height:35.190766px;}
.h2_c00277{height:36.007158px;}
.h5_c00277{height:40.511979px;}
.h6_c00277{height:52.332837px;}
.h4_c00277{height:58.337477px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w0_c00277{width:892.920000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x4_c00277{left:127.558500px;}
.x2_c00277{left:137.122500px;}
.x1_c00277{left:143.770500px;}
.x3_c00277{left:177.007500px;}
.x5_c00277{left:435.249000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls4_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.078221pt;}
.ls2_c00277{letter-spacing:0.087539pt;}
.ls3_c00277{letter-spacing:0.092873pt;}
.ls1_c00277{letter-spacing:23.724873pt;}
.ws2_c00277{word-spacing:-23.622682pt;}
.ws4_c00277{word-spacing:-23.544461pt;}
.wsa_c00277{word-spacing:-16.684034pt;}
.wsc_c00277{word-spacing:-14.239876pt;}
.ws9_c00277{word-spacing:-13.283467pt;}
.wsf_c00277{word-spacing:-12.539593pt;}
.ws10_c00277{word-spacing:-10.733041pt;}
.wse_c00277{word-spacing:-10.414238pt;}
.wsd_c00277{word-spacing:-10.361104pt;}
.ws7_c00277{word-spacing:-8.878599pt;}
.ws8_c00277{word-spacing:-8.877777pt;}
.wsb_c00277{word-spacing:-4.032128pt;}
.ws3_c00277{word-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.039110pt;}
.ws5_c00277{word-spacing:0.189730pt;}
.ws1_c00277{word-spacing:0.195063pt;}
.ws6_c00277{word-spacing:38.180020pt;}
._1_c00277{margin-left:-4.208219pt;}
._4_c00277{margin-left:-3.001646pt;}
._3_c00277{margin-left:-0.956410pt;}
._0_c00277{width:0.925811pt;}
._2_c00277{width:17.720725pt;}
._5_c00277{width:21.147279pt;}
._6_c00277{width:35.652825pt;}
.fs0_c00277{font-size:39.110400pt;}
.fs2_c00277{font-size:53.133867pt;}
.fs1_c00277{font-size:76.513067pt;}
.y0_c00277{bottom:0.000000pt;}
.y20_c00277{bottom:39.333333pt;}
.y1f_c00277{bottom:72.934667pt;}
.y1e_c00277{bottom:88.874667pt;}
.y1d_c00277{bottom:104.814667pt;}
.y1c_c00277{bottom:120.754667pt;}
.y1b_c00277{bottom:145.994667pt;}
.y1a_c00277{bottom:171.233333pt;}
.y19_c00277{bottom:196.473333pt;}
.y18_c00277{bottom:221.713333pt;}
.y17_c00277{bottom:261.212000pt;}
.y16_c00277{bottom:680.304000pt;}
.y15_c00277{bottom:694.916000pt;}
.y14_c00277{bottom:709.528000pt;}
.y13_c00277{bottom:724.140000pt;}
.y12_c00277{bottom:738.752000pt;}
.y11_c00277{bottom:753.364000pt;}
.y10_c00277{bottom:767.976000pt;}
.yf_c00277{bottom:782.588000pt;}
.ye_c00277{bottom:797.198667pt;}
.yd_c00277{bottom:811.810667pt;}
.yc_c00277{bottom:826.422667pt;}
.yb_c00277{bottom:855.646667pt;}
.ya_c00277{bottom:870.258667pt;}
.y9_c00277{bottom:884.870667pt;}
.y8_c00277{bottom:914.094667pt;}
.y7_c00277{bottom:928.706667pt;}
.y6_c00277{bottom:943.317333pt;}
.y5_c00277{bottom:957.929333pt;}
.y4_c00277{bottom:972.541333pt;}
.y3_c00277{bottom:987.153333pt;}
.y2_c00277{bottom:1001.765333pt;}
.y1_c00277{bottom:1030.989333pt;}
.h3_c00277{height:31.280681pt;}
.h2_c00277{height:32.006363pt;}
.h5_c00277{height:36.010648pt;}
.h6_c00277{height:46.518078pt;}
.h4_c00277{height:51.855535pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w0_c00277{width:793.706667pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x4_c00277{left:113.385333pt;}
.x2_c00277{left:121.886667pt;}
.x1_c00277{left:127.796000pt;}
.x3_c00277{left:157.340000pt;}
.x5_c00277{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_421302c519844bdcb6c9fc7b.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.102051;font-style:normal;font-weight:normal;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_e08b8c8b607c56b6a119b56a.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_90d5001cec61ae798c719474.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls4_c00278{letter-spacing:0.000000px;}
.ls1_c00278{letter-spacing:0.087998px;}
.ls2_c00278{letter-spacing:0.098482px;}
.ls0_c00278{letter-spacing:0.104482px;}
.ls3_c00278{letter-spacing:26.690482px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00278{word-spacing:-33.713438px;}
.ws4_c00278{word-spacing:-26.575517px;}
.ws3_c00278{word-spacing:-26.487518px;}
.ws0_c00278{word-spacing:-18.769538px;}
.ws8_c00278{word-spacing:0.000000px;}
.ws5_c00278{word-spacing:0.043999px;}
.wsb_c00278{word-spacing:0.056767px;}
.ws9_c00278{word-spacing:0.073250px;}
.wsa_c00278{word-spacing:0.083734px;}
.ws2_c00278{word-spacing:0.175997px;}
.wsc_c00278{word-spacing:0.202963px;}
.ws6_c00278{word-spacing:0.213446px;}
.ws7_c00278{word-spacing:0.219446px;}
._0_c00278{margin-left:-3.825638px;}
._1_c00278{width:1.005737px;}
._3_c00278{width:53.283031px;}
._2_c00278{width:79.858548px;}
._5_c00278{width:106.654061px;}
._4_c00278{width:133.452408px;}
.fc5_c00278{color:rgb(0,0,207);}
.fc4_c00278{color:rgb(79,153,5);}
.fc3_c00278{color:rgb(207,92,0);}
.fc2_c00278{color:rgb(33,74,135);}
.fc1_c00278{color:rgb(143,89,3);}
.fc0_c00278{color:rgb(0,0,0);}
.fs1_c00278{font-size:43.999200px;}
.fs0_c00278{font-size:59.775600px;}
.y0_c00278{bottom:0.000000px;}
.y2d_c00278{bottom:44.250000px;}
.y2c_c00278{bottom:96.919500px;}
.y2b_c00278{bottom:113.358000px;}
.y2a_c00278{bottom:129.796500px;}
.y29_c00278{bottom:146.235000px;}
.y28_c00278{bottom:162.673500px;}
.y27_c00278{bottom:179.112000px;}
.y26_c00278{bottom:195.550500px;}
.y25_c00278{bottom:211.989000px;}
.y24_c00278{bottom:228.427500px;}
.y23_c00278{bottom:244.866000px;}
.y22_c00278{bottom:261.304500px;}
.y21_c00278{bottom:294.180000px;}
.y20_c00278{bottom:310.618500px;}
.y1f_c00278{bottom:327.057000px;}
.y1e_c00278{bottom:359.934000px;}
.y1d_c00278{bottom:376.372500px;}
.y1c_c00278{bottom:392.811000px;}
.y1b_c00278{bottom:409.249500px;}
.y1a_c00278{bottom:425.688000px;}
.y19_c00278{bottom:442.125000px;}
.y18_c00278{bottom:458.563500px;}
.y17_c00278{bottom:491.440500px;}
.y16_c00278{bottom:507.879000px;}
.y15_c00278{bottom:524.317500px;}
.y14_c00278{bottom:540.756000px;}
.y13_c00278{bottom:557.194500px;}
.y12_c00278{bottom:573.633000px;}
.y11_c00278{bottom:590.071500px;}
.y10_c00278{bottom:606.508500px;}
.yf_c00278{bottom:622.947000px;}
.ye_c00278{bottom:639.385500px;}
.yd_c00278{bottom:655.824000px;}
.yc_c00278{bottom:672.262500px;}
.yb_c00278{bottom:688.701000px;}
.ya_c00278{bottom:705.139500px;}
.y9_c00278{bottom:721.578000px;}
.y8_c00278{bottom:738.016500px;}
.y7_c00278{bottom:770.893500px;}
.y6_c00278{bottom:787.330500px;}
.y5_c00278{bottom:836.646000px;}
.y4_c00278{bottom:853.084500px;}
.y3_c00278{bottom:869.149500px;}
.y2_c00278{bottom:1141.930500px;}
.y1_c00278{bottom:1159.863000px;}
.h3_c00278{height:35.190766px;}
.h4_c00278{height:36.007158px;}
.h2_c00278{height:52.332837px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w0_c00278{width:892.920000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:127.558500px;}
.x2_c00278{left:137.122500px;}
.x3_c00278{left:143.770500px;}
.x4_c00278{left:177.007500px;}
.x5_c00278{left:435.249000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls4_c00278{letter-spacing:0.000000pt;}
.ls1_c00278{letter-spacing:0.078221pt;}
.ls2_c00278{letter-spacing:0.087539pt;}
.ls0_c00278{letter-spacing:0.092873pt;}
.ls3_c00278{letter-spacing:23.724873pt;}
.ws1_c00278{word-spacing:-29.967501pt;}
.ws4_c00278{word-spacing:-23.622682pt;}
.ws3_c00278{word-spacing:-23.544461pt;}
.ws0_c00278{word-spacing:-16.684034pt;}
.ws8_c00278{word-spacing:0.000000pt;}
.ws5_c00278{word-spacing:0.039110pt;}
.wsb_c00278{word-spacing:0.050460pt;}
.ws9_c00278{word-spacing:0.065111pt;}
.wsa_c00278{word-spacing:0.074430pt;}
.ws2_c00278{word-spacing:0.156442pt;}
.wsc_c00278{word-spacing:0.180412pt;}
.ws6_c00278{word-spacing:0.189730pt;}
.ws7_c00278{word-spacing:0.195063pt;}
._0_c00278{margin-left:-3.400567pt;}
._1_c00278{width:0.893988pt;}
._3_c00278{width:47.362694pt;}
._2_c00278{width:70.985376pt;}
._5_c00278{width:94.803610pt;}
._4_c00278{width:118.624363pt;}
.fs1_c00278{font-size:39.110400pt;}
.fs0_c00278{font-size:53.133867pt;}
.y0_c00278{bottom:0.000000pt;}
.y2d_c00278{bottom:39.333333pt;}
.y2c_c00278{bottom:86.150667pt;}
.y2b_c00278{bottom:100.762667pt;}
.y2a_c00278{bottom:115.374667pt;}
.y29_c00278{bottom:129.986667pt;}
.y28_c00278{bottom:144.598667pt;}
.y27_c00278{bottom:159.210667pt;}
.y26_c00278{bottom:173.822667pt;}
.y25_c00278{bottom:188.434667pt;}
.y24_c00278{bottom:203.046667pt;}
.y23_c00278{bottom:217.658667pt;}
.y22_c00278{bottom:232.270667pt;}
.y21_c00278{bottom:261.493333pt;}
.y20_c00278{bottom:276.105333pt;}
.y1f_c00278{bottom:290.717333pt;}
.y1e_c00278{bottom:319.941333pt;}
.y1d_c00278{bottom:334.553333pt;}
.y1c_c00278{bottom:349.165333pt;}
.y1b_c00278{bottom:363.777333pt;}
.y1a_c00278{bottom:378.389333pt;}
.y19_c00278{bottom:393.000000pt;}
.y18_c00278{bottom:407.612000pt;}
.y17_c00278{bottom:436.836000pt;}
.y16_c00278{bottom:451.448000pt;}
.y15_c00278{bottom:466.060000pt;}
.y14_c00278{bottom:480.672000pt;}
.y13_c00278{bottom:495.284000pt;}
.y12_c00278{bottom:509.896000pt;}
.y11_c00278{bottom:524.508000pt;}
.y10_c00278{bottom:539.118667pt;}
.yf_c00278{bottom:553.730667pt;}
.ye_c00278{bottom:568.342667pt;}
.yd_c00278{bottom:582.954667pt;}
.yc_c00278{bottom:597.566667pt;}
.yb_c00278{bottom:612.178667pt;}
.ya_c00278{bottom:626.790667pt;}
.y9_c00278{bottom:641.402667pt;}
.y8_c00278{bottom:656.014667pt;}
.y7_c00278{bottom:685.238667pt;}
.y6_c00278{bottom:699.849333pt;}
.y5_c00278{bottom:743.685333pt;}
.y4_c00278{bottom:758.297333pt;}
.y3_c00278{bottom:772.577333pt;}
.y2_c00278{bottom:1015.049333pt;}
.y1_c00278{bottom:1030.989333pt;}
.h3_c00278{height:31.280681pt;}
.h4_c00278{height:32.006363pt;}
.h2_c00278{height:46.518078pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w0_c00278{width:793.706667pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:113.385333pt;}
.x2_c00278{left:121.886667pt;}
.x3_c00278{left:127.796000pt;}
.x4_c00278{left:157.340000pt;}
.x5_c00278{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_124f052c9d1681801fdecb5a.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:0.893555;font-style:normal;font-weight:normal;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_dafbf13ba002b2f6c8120984.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.083496;font-style:normal;font-weight:normal;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_f8ca84b8d8ee5e6f24229749.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.048828;font-style: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;}
.ls3_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.087998px;}
.ls2_c00279{letter-spacing:0.098482px;}
.ls1_c00279{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00279{word-spacing:-33.713438px;}
.ws2_c00279{word-spacing:-26.575517px;}
.wse_c00279{word-spacing:-26.487518px;}
.ws5_c00279{word-spacing:-18.769538px;}
.ws7_c00279{word-spacing:-16.019861px;}
.ws4_c00279{word-spacing:-14.943900px;}
.wsa_c00279{word-spacing:-14.107042px;}
.wsb_c00279{word-spacing:-12.074671px;}
.ws9_c00279{word-spacing:-11.716018px;}
.ws8_c00279{word-spacing:-11.656242px;}
.ws1_c00279{word-spacing:-9.988424px;}
.ws3_c00279{word-spacing:-9.987499px;}
.ws6_c00279{word-spacing:-4.536144px;}
.ws12_c00279{word-spacing:0.000000px;}
.wsf_c00279{word-spacing:0.043999px;}
.ws15_c00279{word-spacing:0.056767px;}
.ws13_c00279{word-spacing:0.073250px;}
.ws14_c00279{word-spacing:0.083734px;}
.wsd_c00279{word-spacing:0.175997px;}
.ws16_c00279{word-spacing:0.202963px;}
.ws10_c00279{word-spacing:0.213446px;}
.ws11_c00279{word-spacing:0.219446px;}
.ws0_c00279{word-spacing:42.952523px;}
._0_c00279{margin-left:-4.734246px;}
._3_c00279{margin-left:-3.376852px;}
._2_c00279{margin-left:-1.075961px;}
._7_c00279{width:1.005737px;}
._6_c00279{width:15.972059px;}
._1_c00279{width:19.935816px;}
._4_c00279{width:23.790689px;}
._5_c00279{width:40.109428px;}
._9_c00279{width:53.283031px;}
._8_c00279{width:79.858548px;}
._a_c00279{width:133.452408px;}
.fc6_c00279{color:rgb(0,0,207);}
.fc5_c00279{color:rgb(79,153,5);}
.fc3_c00279{color:rgb(33,74,135);}
.fc2_c00279{color:rgb(143,89,3);}
.fc4_c00279{color:rgb(207,92,0);}
.fc1_c00279{color:rgb(6,69,173);}
.fc0_c00279{color:rgb(0,0,0);}
.fs2_c00279{font-size:43.999200px;}
.fs1_c00279{font-size:59.775600px;}
.fs0_c00279{font-size:86.077200px;}
.y0_c00279{bottom:0.000000px;}
.y20_c00279{bottom:44.250000px;}
.y1f_c00279{bottom:86.982000px;}
.y1e_c00279{bottom:103.420500px;}
.y1d_c00279{bottom:119.859000px;}
.y1c_c00279{bottom:136.297500px;}
.y1b_c00279{bottom:152.736000px;}
.y1a_c00279{bottom:169.174500px;}
.y19_c00279{bottom:185.613000px;}
.y18_c00279{bottom:202.051500px;}
.y17_c00279{bottom:218.490000px;}
.y16_c00279{bottom:234.927000px;}
.y15_c00279{bottom:251.365500px;}
.y14_c00279{bottom:267.804000px;}
.y13_c00279{bottom:284.242500px;}
.y12_c00279{bottom:300.681000px;}
.y11_c00279{bottom:317.119500px;}
.y10_c00279{bottom:349.996500px;}
.yf_c00279{bottom:366.435000px;}
.ye_c00279{bottom:415.749000px;}
.yd_c00279{bottom:432.187500px;}
.yc_c00279{bottom:448.252500px;}
.yb_c00279{bottom:493.890000px;}
.ya_c00279{bottom:511.822500px;}
.y9_c00279{bottom:529.756500px;}
.y8_c00279{bottom:547.689000px;}
.y7_c00279{bottom:565.621500px;}
.y6_c00279{bottom:583.554000px;}
.y5_c00279{bottom:610.633500px;}
.y4_c00279{bottom:637.714500px;}
.y3_c00279{bottom:664.794000px;}
.y2_c00279{bottom:691.873500px;}
.y1_c00279{bottom:734.407500px;}
.h5_c00279{height:35.190766px;}
.h6_c00279{height:36.007158px;}
.h3_c00279{height:40.511979px;}
.h4_c00279{height:52.332837px;}
.h2_c00279{height:58.337477px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w0_c00279{width:892.920000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:127.558500px;}
.x2_c00279{left:137.122500px;}
.x3_c00279{left:143.770500px;}
.x4_c00279{left:435.249000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls3_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.078221pt;}
.ls2_c00279{letter-spacing:0.087539pt;}
.ls1_c00279{letter-spacing:0.092873pt;}
.wsc_c00279{word-spacing:-29.967501pt;}
.ws2_c00279{word-spacing:-23.622682pt;}
.wse_c00279{word-spacing:-23.544461pt;}
.ws5_c00279{word-spacing:-16.684034pt;}
.ws7_c00279{word-spacing:-14.239876pt;}
.ws4_c00279{word-spacing:-13.283467pt;}
.wsa_c00279{word-spacing:-12.539593pt;}
.wsb_c00279{word-spacing:-10.733041pt;}
.ws9_c00279{word-spacing:-10.414238pt;}
.ws8_c00279{word-spacing:-10.361104pt;}
.ws1_c00279{word-spacing:-8.878599pt;}
.ws3_c00279{word-spacing:-8.877777pt;}
.ws6_c00279{word-spacing:-4.032128pt;}
.ws12_c00279{word-spacing:0.000000pt;}
.wsf_c00279{word-spacing:0.039110pt;}
.ws15_c00279{word-spacing:0.050460pt;}
.ws13_c00279{word-spacing:0.065111pt;}
.ws14_c00279{word-spacing:0.074430pt;}
.wsd_c00279{word-spacing:0.156442pt;}
.ws16_c00279{word-spacing:0.180412pt;}
.ws10_c00279{word-spacing:0.189730pt;}
.ws11_c00279{word-spacing:0.195063pt;}
.ws0_c00279{word-spacing:38.180020pt;}
._0_c00279{margin-left:-4.208219pt;}
._3_c00279{margin-left:-3.001646pt;}
._2_c00279{margin-left:-0.956410pt;}
._7_c00279{width:0.893988pt;}
._6_c00279{width:14.197386pt;}
._1_c00279{width:17.720725pt;}
._4_c00279{width:21.147279pt;}
._5_c00279{width:35.652825pt;}
._9_c00279{width:47.362694pt;}
._8_c00279{width:70.985376pt;}
._a_c00279{width:118.624363pt;}
.fs2_c00279{font-size:39.110400pt;}
.fs1_c00279{font-size:53.133867pt;}
.fs0_c00279{font-size:76.513067pt;}
.y0_c00279{bottom:0.000000pt;}
.y20_c00279{bottom:39.333333pt;}
.y1f_c00279{bottom:77.317333pt;}
.y1e_c00279{bottom:91.929333pt;}
.y1d_c00279{bottom:106.541333pt;}
.y1c_c00279{bottom:121.153333pt;}
.y1b_c00279{bottom:135.765333pt;}
.y1a_c00279{bottom:150.377333pt;}
.y19_c00279{bottom:164.989333pt;}
.y18_c00279{bottom:179.601333pt;}
.y17_c00279{bottom:194.213333pt;}
.y16_c00279{bottom:208.824000pt;}
.y15_c00279{bottom:223.436000pt;}
.y14_c00279{bottom:238.048000pt;}
.y13_c00279{bottom:252.660000pt;}
.y12_c00279{bottom:267.272000pt;}
.y11_c00279{bottom:281.884000pt;}
.y10_c00279{bottom:311.108000pt;}
.yf_c00279{bottom:325.720000pt;}
.ye_c00279{bottom:369.554667pt;}
.yd_c00279{bottom:384.166667pt;}
.yc_c00279{bottom:398.446667pt;}
.yb_c00279{bottom:439.013333pt;}
.ya_c00279{bottom:454.953333pt;}
.y9_c00279{bottom:470.894667pt;}
.y8_c00279{bottom:486.834667pt;}
.y7_c00279{bottom:502.774667pt;}
.y6_c00279{bottom:518.714667pt;}
.y5_c00279{bottom:542.785333pt;}
.y4_c00279{bottom:566.857333pt;}
.y3_c00279{bottom:590.928000pt;}
.y2_c00279{bottom:614.998667pt;}
.y1_c00279{bottom:652.806667pt;}
.h5_c00279{height:31.280681pt;}
.h6_c00279{height:32.006363pt;}
.h3_c00279{height:36.010648pt;}
.h4_c00279{height:46.518078pt;}
.h2_c00279{height:51.855535pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w0_c00279{width:793.706667pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:113.385333pt;}
.x2_c00279{left:121.886667pt;}
.x3_c00279{left:127.796000pt;}
.x4_c00279{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_840feb401409be887c9625aa.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_aad0b9f701565960d856ac47.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_fc143c9b6efdfd8fec9579d7.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_4814f17c5baff7aa943adf69.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.102051;font-style: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;}
.ls4_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.087998px;}
.ls2_c00280{letter-spacing:0.098482px;}
.ls3_c00280{letter-spacing:0.104482px;}
.ls1_c00280{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00280{word-spacing:-26.575517px;}
.ws4_c00280{word-spacing:-26.487518px;}
.wsa_c00280{word-spacing:-18.769538px;}
.wsc_c00280{word-spacing:-17.633802px;}
.ws9_c00280{word-spacing:-14.943900px;}
.wsf_c00280{word-spacing:-14.107042px;}
.ws10_c00280{word-spacing:-12.074671px;}
.wse_c00280{word-spacing:-11.716018px;}
.wsd_c00280{word-spacing:-11.656242px;}
.ws7_c00280{word-spacing:-9.988424px;}
.ws8_c00280{word-spacing:-9.987499px;}
.wsb_c00280{word-spacing:-7.680144px;}
.ws3_c00280{word-spacing:0.000000px;}
.ws0_c00280{word-spacing:0.043999px;}
.ws5_c00280{word-spacing:0.213446px;}
.ws1_c00280{word-spacing:0.219446px;}
.ws6_c00280{word-spacing:42.952523px;}
._2_c00280{margin-left:-4.734246px;}
._5_c00280{margin-left:-3.376852px;}
._4_c00280{margin-left:-1.075961px;}
._1_c00280{width:1.041538px;}
._3_c00280{width:19.935816px;}
._6_c00280{width:23.790689px;}
._7_c00280{width:40.109428px;}
._0_c00280{width:106.654061px;}
.fc5_c00280{color:rgb(79,153,5);}
.fc4_c00280{color:rgb(143,89,3);}
.fc3_c00280{color:rgb(0,0,0);}
.fc6_c00280{color:rgb(6,69,173);}
.fc2_c00280{color:rgb(207,92,0);}
.fc1_c00280{color:rgb(0,0,207);}
.fc0_c00280{color:rgb(33,74,135);}
.fs0_c00280{font-size:43.999200px;}
.fs2_c00280{font-size:59.775600px;}
.fs1_c00280{font-size:86.077200px;}
.y0_c00280{bottom:0.000000px;}
.y20_c00280{bottom:44.250000px;}
.y1f_c00280{bottom:82.051500px;}
.y1e_c00280{bottom:99.984000px;}
.y1d_c00280{bottom:117.916500px;}
.y1c_c00280{bottom:135.849000px;}
.y1b_c00280{bottom:164.244000px;}
.y1a_c00280{bottom:192.637500px;}
.y19_c00280{bottom:221.032500px;}
.y18_c00280{bottom:249.427500px;}
.y17_c00280{bottom:293.863500px;}
.y16_c00280{bottom:765.342000px;}
.y15_c00280{bottom:781.780500px;}
.y14_c00280{bottom:798.219000px;}
.y13_c00280{bottom:814.657500px;}
.y12_c00280{bottom:831.096000px;}
.y11_c00280{bottom:847.534500px;}
.y10_c00280{bottom:863.973000px;}
.yf_c00280{bottom:880.411500px;}
.ye_c00280{bottom:896.848500px;}
.yd_c00280{bottom:913.287000px;}
.yc_c00280{bottom:929.725500px;}
.yb_c00280{bottom:962.602500px;}
.ya_c00280{bottom:979.041000px;}
.y9_c00280{bottom:995.479500px;}
.y8_c00280{bottom:1028.356500px;}
.y7_c00280{bottom:1044.795000px;}
.y6_c00280{bottom:1061.232000px;}
.y5_c00280{bottom:1077.670500px;}
.y4_c00280{bottom:1094.109000px;}
.y3_c00280{bottom:1110.547500px;}
.y2_c00280{bottom:1126.986000px;}
.y1_c00280{bottom:1159.863000px;}
.h3_c00280{height:35.190766px;}
.h2_c00280{height:36.007158px;}
.h5_c00280{height:40.511979px;}
.h6_c00280{height:52.332837px;}
.h4_c00280{height:58.337477px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w0_c00280{width:892.920000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x4_c00280{left:127.558500px;}
.x2_c00280{left:137.122500px;}
.x1_c00280{left:143.770500px;}
.x3_c00280{left:177.007500px;}
.x5_c00280{left:435.249000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls4_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.078221pt;}
.ls2_c00280{letter-spacing:0.087539pt;}
.ls3_c00280{letter-spacing:0.092873pt;}
.ls1_c00280{letter-spacing:23.724873pt;}
.ws2_c00280{word-spacing:-23.622682pt;}
.ws4_c00280{word-spacing:-23.544461pt;}
.wsa_c00280{word-spacing:-16.684034pt;}
.wsc_c00280{word-spacing:-15.674491pt;}
.ws9_c00280{word-spacing:-13.283467pt;}
.wsf_c00280{word-spacing:-12.539593pt;}
.ws10_c00280{word-spacing:-10.733041pt;}
.wse_c00280{word-spacing:-10.414238pt;}
.wsd_c00280{word-spacing:-10.361104pt;}
.ws7_c00280{word-spacing:-8.878599pt;}
.ws8_c00280{word-spacing:-8.877777pt;}
.wsb_c00280{word-spacing:-6.826795pt;}
.ws3_c00280{word-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.039110pt;}
.ws5_c00280{word-spacing:0.189730pt;}
.ws1_c00280{word-spacing:0.195063pt;}
.ws6_c00280{word-spacing:38.180020pt;}
._2_c00280{margin-left:-4.208219pt;}
._5_c00280{margin-left:-3.001646pt;}
._4_c00280{margin-left:-0.956410pt;}
._1_c00280{width:0.925811pt;}
._3_c00280{width:17.720725pt;}
._6_c00280{width:21.147279pt;}
._7_c00280{width:35.652825pt;}
._0_c00280{width:94.803610pt;}
.fs0_c00280{font-size:39.110400pt;}
.fs2_c00280{font-size:53.133867pt;}
.fs1_c00280{font-size:76.513067pt;}
.y0_c00280{bottom:0.000000pt;}
.y20_c00280{bottom:39.333333pt;}
.y1f_c00280{bottom:72.934667pt;}
.y1e_c00280{bottom:88.874667pt;}
.y1d_c00280{bottom:104.814667pt;}
.y1c_c00280{bottom:120.754667pt;}
.y1b_c00280{bottom:145.994667pt;}
.y1a_c00280{bottom:171.233333pt;}
.y19_c00280{bottom:196.473333pt;}
.y18_c00280{bottom:221.713333pt;}
.y17_c00280{bottom:261.212000pt;}
.y16_c00280{bottom:680.304000pt;}
.y15_c00280{bottom:694.916000pt;}
.y14_c00280{bottom:709.528000pt;}
.y13_c00280{bottom:724.140000pt;}
.y12_c00280{bottom:738.752000pt;}
.y11_c00280{bottom:753.364000pt;}
.y10_c00280{bottom:767.976000pt;}
.yf_c00280{bottom:782.588000pt;}
.ye_c00280{bottom:797.198667pt;}
.yd_c00280{bottom:811.810667pt;}
.yc_c00280{bottom:826.422667pt;}
.yb_c00280{bottom:855.646667pt;}
.ya_c00280{bottom:870.258667pt;}
.y9_c00280{bottom:884.870667pt;}
.y8_c00280{bottom:914.094667pt;}
.y7_c00280{bottom:928.706667pt;}
.y6_c00280{bottom:943.317333pt;}
.y5_c00280{bottom:957.929333pt;}
.y4_c00280{bottom:972.541333pt;}
.y3_c00280{bottom:987.153333pt;}
.y2_c00280{bottom:1001.765333pt;}
.y1_c00280{bottom:1030.989333pt;}
.h3_c00280{height:31.280681pt;}
.h2_c00280{height:32.006363pt;}
.h5_c00280{height:36.010648pt;}
.h6_c00280{height:46.518078pt;}
.h4_c00280{height:51.855535pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w0_c00280{width:793.706667pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x4_c00280{left:113.385333pt;}
.x2_c00280{left:121.886667pt;}
.x1_c00280{left:127.796000pt;}
.x3_c00280{left:157.340000pt;}
.x5_c00280{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0711219234a84625e4576d5.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.102051;font-style:normal;font-weight:normal;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_95bb5fc4dfd7335a56c73b0e.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.048828;font-style:normal;font-weight:normal;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_c82bfcdb2644adb2aa952763.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls4_c00281{letter-spacing:0.000000px;}
.ls1_c00281{letter-spacing:0.087998px;}
.ls2_c00281{letter-spacing:0.098482px;}
.ls0_c00281{letter-spacing:0.104482px;}
.ls3_c00281{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00281{word-spacing:-26.575517px;}
.ws3_c00281{word-spacing:-26.487518px;}
.ws0_c00281{word-spacing:-18.769538px;}
.ws8_c00281{word-spacing:0.000000px;}
.ws5_c00281{word-spacing:0.043999px;}
.wsb_c00281{word-spacing:0.056767px;}
.ws9_c00281{word-spacing:0.073250px;}
.wsa_c00281{word-spacing:0.083734px;}
.ws2_c00281{word-spacing:0.175997px;}
.wsc_c00281{word-spacing:0.202963px;}
.ws6_c00281{word-spacing:0.213446px;}
.ws7_c00281{word-spacing:0.219446px;}
._0_c00281{margin-left:-3.825638px;}
._1_c00281{width:1.005737px;}
._3_c00281{width:53.283031px;}
._2_c00281{width:79.858548px;}
._4_c00281{width:133.452408px;}
.fc5_c00281{color:rgb(0,0,207);}
.fc4_c00281{color:rgb(79,153,5);}
.fc3_c00281{color:rgb(207,92,0);}
.fc2_c00281{color:rgb(33,74,135);}
.fc1_c00281{color:rgb(143,89,3);}
.fc0_c00281{color:rgb(0,0,0);}
.fs1_c00281{font-size:43.999200px;}
.fs0_c00281{font-size:59.775600px;}
.y0_c00281{bottom:0.000000px;}
.y2d_c00281{bottom:44.250000px;}
.y2c_c00281{bottom:96.919500px;}
.y2b_c00281{bottom:113.358000px;}
.y2a_c00281{bottom:129.796500px;}
.y29_c00281{bottom:146.235000px;}
.y28_c00281{bottom:162.673500px;}
.y27_c00281{bottom:179.112000px;}
.y26_c00281{bottom:195.550500px;}
.y25_c00281{bottom:211.989000px;}
.y24_c00281{bottom:228.427500px;}
.y23_c00281{bottom:244.866000px;}
.y22_c00281{bottom:261.304500px;}
.y21_c00281{bottom:294.180000px;}
.y20_c00281{bottom:310.618500px;}
.y1f_c00281{bottom:327.057000px;}
.y1e_c00281{bottom:359.934000px;}
.y1d_c00281{bottom:376.372500px;}
.y1c_c00281{bottom:392.811000px;}
.y1b_c00281{bottom:409.249500px;}
.y1a_c00281{bottom:425.688000px;}
.y19_c00281{bottom:442.125000px;}
.y18_c00281{bottom:458.563500px;}
.y17_c00281{bottom:491.440500px;}
.y16_c00281{bottom:507.879000px;}
.y15_c00281{bottom:524.317500px;}
.y14_c00281{bottom:540.756000px;}
.y13_c00281{bottom:557.194500px;}
.y12_c00281{bottom:573.633000px;}
.y11_c00281{bottom:590.071500px;}
.y10_c00281{bottom:606.508500px;}
.yf_c00281{bottom:622.947000px;}
.ye_c00281{bottom:639.385500px;}
.yd_c00281{bottom:655.824000px;}
.yc_c00281{bottom:672.262500px;}
.yb_c00281{bottom:688.701000px;}
.ya_c00281{bottom:705.139500px;}
.y9_c00281{bottom:721.578000px;}
.y8_c00281{bottom:738.016500px;}
.y7_c00281{bottom:770.893500px;}
.y6_c00281{bottom:787.330500px;}
.y5_c00281{bottom:836.646000px;}
.y4_c00281{bottom:853.084500px;}
.y3_c00281{bottom:869.149500px;}
.y2_c00281{bottom:1141.930500px;}
.y1_c00281{bottom:1159.863000px;}
.h3_c00281{height:35.190766px;}
.h4_c00281{height:36.007158px;}
.h2_c00281{height:52.332837px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w0_c00281{width:892.920000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:127.558500px;}
.x2_c00281{left:137.122500px;}
.x3_c00281{left:143.770500px;}
.x4_c00281{left:177.007500px;}
.x5_c00281{left:435.249000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls4_c00281{letter-spacing:0.000000pt;}
.ls1_c00281{letter-spacing:0.078221pt;}
.ls2_c00281{letter-spacing:0.087539pt;}
.ls0_c00281{letter-spacing:0.092873pt;}
.ls3_c00281{letter-spacing:23.724873pt;}
.ws1_c00281{word-spacing:-29.967501pt;}
.ws4_c00281{word-spacing:-23.622682pt;}
.ws3_c00281{word-spacing:-23.544461pt;}
.ws0_c00281{word-spacing:-16.684034pt;}
.ws8_c00281{word-spacing:0.000000pt;}
.ws5_c00281{word-spacing:0.039110pt;}
.wsb_c00281{word-spacing:0.050460pt;}
.ws9_c00281{word-spacing:0.065111pt;}
.wsa_c00281{word-spacing:0.074430pt;}
.ws2_c00281{word-spacing:0.156442pt;}
.wsc_c00281{word-spacing:0.180412pt;}
.ws6_c00281{word-spacing:0.189730pt;}
.ws7_c00281{word-spacing:0.195063pt;}
._0_c00281{margin-left:-3.400567pt;}
._1_c00281{width:0.893988pt;}
._3_c00281{width:47.362694pt;}
._2_c00281{width:70.985376pt;}
._4_c00281{width:118.624363pt;}
.fs1_c00281{font-size:39.110400pt;}
.fs0_c00281{font-size:53.133867pt;}
.y0_c00281{bottom:0.000000pt;}
.y2d_c00281{bottom:39.333333pt;}
.y2c_c00281{bottom:86.150667pt;}
.y2b_c00281{bottom:100.762667pt;}
.y2a_c00281{bottom:115.374667pt;}
.y29_c00281{bottom:129.986667pt;}
.y28_c00281{bottom:144.598667pt;}
.y27_c00281{bottom:159.210667pt;}
.y26_c00281{bottom:173.822667pt;}
.y25_c00281{bottom:188.434667pt;}
.y24_c00281{bottom:203.046667pt;}
.y23_c00281{bottom:217.658667pt;}
.y22_c00281{bottom:232.270667pt;}
.y21_c00281{bottom:261.493333pt;}
.y20_c00281{bottom:276.105333pt;}
.y1f_c00281{bottom:290.717333pt;}
.y1e_c00281{bottom:319.941333pt;}
.y1d_c00281{bottom:334.553333pt;}
.y1c_c00281{bottom:349.165333pt;}
.y1b_c00281{bottom:363.777333pt;}
.y1a_c00281{bottom:378.389333pt;}
.y19_c00281{bottom:393.000000pt;}
.y18_c00281{bottom:407.612000pt;}
.y17_c00281{bottom:436.836000pt;}
.y16_c00281{bottom:451.448000pt;}
.y15_c00281{bottom:466.060000pt;}
.y14_c00281{bottom:480.672000pt;}
.y13_c00281{bottom:495.284000pt;}
.y12_c00281{bottom:509.896000pt;}
.y11_c00281{bottom:524.508000pt;}
.y10_c00281{bottom:539.118667pt;}
.yf_c00281{bottom:553.730667pt;}
.ye_c00281{bottom:568.342667pt;}
.yd_c00281{bottom:582.954667pt;}
.yc_c00281{bottom:597.566667pt;}
.yb_c00281{bottom:612.178667pt;}
.ya_c00281{bottom:626.790667pt;}
.y9_c00281{bottom:641.402667pt;}
.y8_c00281{bottom:656.014667pt;}
.y7_c00281{bottom:685.238667pt;}
.y6_c00281{bottom:699.849333pt;}
.y5_c00281{bottom:743.685333pt;}
.y4_c00281{bottom:758.297333pt;}
.y3_c00281{bottom:772.577333pt;}
.y2_c00281{bottom:1015.049333pt;}
.y1_c00281{bottom:1030.989333pt;}
.h3_c00281{height:31.280681pt;}
.h4_c00281{height:32.006363pt;}
.h2_c00281{height:46.518078pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w0_c00281{width:793.706667pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:113.385333pt;}
.x2_c00281{left:121.886667pt;}
.x3_c00281{left:127.796000pt;}
.x4_c00281{left:157.340000pt;}
.x5_c00281{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d4b2b8ea6bd957539359543.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:0.893555;font-style:normal;font-weight:normal;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_2b9ce0da1b84c6ede2730676.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.083496;font-style:normal;font-weight:normal;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_e7a22c914ca32155132a4273.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.102051;font-style:normal;font-weight:normal;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_14aa90d080bc8aecb205f1ab.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_0ee209d641ae54804b0965d0.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.048828;font-style: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;}
.ls4_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.087998px;}
.ls2_c00282{letter-spacing:0.098482px;}
.ls1_c00282{letter-spacing:0.104482px;}
.ls3_c00282{letter-spacing:26.732482px;}
.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;}
}
.ws2_c00282{word-spacing:-26.575517px;}
.ws12_c00282{word-spacing:-26.487518px;}
.wsf_c00282{word-spacing:-19.845499px;}
.ws5_c00282{word-spacing:-18.769538px;}
.ws10_c00282{word-spacing:-18.410885px;}
.ws8_c00282{word-spacing:-17.396484px;}
.ws9_c00282{word-spacing:-17.394700px;}
.ws7_c00282{word-spacing:-17.334924px;}
.wsd_c00282{word-spacing:-15.840534px;}
.wsb_c00282{word-spacing:-15.360630px;}
.wsa_c00282{word-spacing:-15.302554px;}
.ws4_c00282{word-spacing:-14.943900px;}
.wsc_c00282{word-spacing:-13.808164px;}
.ws1_c00282{word-spacing:-9.988424px;}
.ws3_c00282{word-spacing:-9.987499px;}
.wse_c00282{word-spacing:-8.587015px;}
.ws6_c00282{word-spacing:-7.152144px;}
.ws16_c00282{word-spacing:0.000000px;}
.ws13_c00282{word-spacing:0.043999px;}
.ws17_c00282{word-spacing:0.059933px;}
.ws11_c00282{word-spacing:0.175997px;}
.ws14_c00282{word-spacing:0.213446px;}
.ws15_c00282{word-spacing:0.219446px;}
.ws0_c00282{word-spacing:43.038600px;}
._4_c00282{margin-left:-3.586536px;}
._1_c00282{margin-left:-1.075961px;}
._5_c00282{width:1.005737px;}
._0_c00282{width:19.935816px;}
._2_c00282{width:21.100787px;}
._3_c00282{width:28.811839px;}
.fc6_c00282{color:rgb(0,0,207);}
.fc5_c00282{color:rgb(79,153,5);}
.fc3_c00282{color:rgb(33,74,135);}
.fc2_c00282{color:rgb(143,89,3);}
.fc4_c00282{color:rgb(207,92,0);}
.fc1_c00282{color:rgb(6,69,173);}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:43.999200px;}
.fs1_c00282{font-size:59.775600px;}
.fs0_c00282{font-size:86.077200px;}
.y0_c00282{bottom:0.000000px;}
.y1d_c00282{bottom:44.250000px;}
.y1c_c00282{bottom:103.420500px;}
.y1b_c00282{bottom:119.859000px;}
.y1a_c00282{bottom:136.297500px;}
.y19_c00282{bottom:169.174500px;}
.y18_c00282{bottom:185.613000px;}
.y17_c00282{bottom:218.490000px;}
.y16_c00282{bottom:234.927000px;}
.y15_c00282{bottom:251.365500px;}
.y14_c00282{bottom:300.681000px;}
.y13_c00282{bottom:317.119500px;}
.y12_c00282{bottom:333.558000px;}
.y11_c00282{bottom:349.996500px;}
.y10_c00282{bottom:366.435000px;}
.yf_c00282{bottom:399.310500px;}
.ye_c00282{bottom:415.749000px;}
.yd_c00282{bottom:431.814000px;}
.yc_c00282{bottom:478.861500px;}
.yb_c00282{bottom:496.794000px;}
.ya_c00282{bottom:514.726500px;}
.y9_c00282{bottom:532.659000px;}
.y8_c00282{bottom:550.591500px;}
.y7_c00282{bottom:568.524000px;}
.y6_c00282{bottom:586.458000px;}
.y5_c00282{bottom:613.162500px;}
.y4_c00282{bottom:639.868500px;}
.y3_c00282{bottom:666.574500px;}
.y2_c00282{bottom:693.280500px;}
.y1_c00282{bottom:735.360000px;}
.h5_c00282{height:35.190766px;}
.h6_c00282{height:36.007158px;}
.h3_c00282{height:40.511979px;}
.h4_c00282{height:52.332837px;}
.h2_c00282{height:58.337477px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w0_c00282{width:892.920000px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:127.558500px;}
.x2_c00282{left:137.122500px;}
.x3_c00282{left:435.249000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls4_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.078221pt;}
.ls2_c00282{letter-spacing:0.087539pt;}
.ls1_c00282{letter-spacing:0.092873pt;}
.ls3_c00282{letter-spacing:23.762206pt;}
.ws2_c00282{word-spacing:-23.622682pt;}
.ws12_c00282{word-spacing:-23.544461pt;}
.wsf_c00282{word-spacing:-17.640444pt;}
.ws5_c00282{word-spacing:-16.684034pt;}
.ws10_c00282{word-spacing:-16.365231pt;}
.ws8_c00282{word-spacing:-15.463541pt;}
.ws9_c00282{word-spacing:-15.461955pt;}
.ws7_c00282{word-spacing:-15.408821pt;}
.wsd_c00282{word-spacing:-14.080475pt;}
.wsb_c00282{word-spacing:-13.653893pt;}
.wsa_c00282{word-spacing:-13.602270pt;}
.ws4_c00282{word-spacing:-13.283467pt;}
.wsc_c00282{word-spacing:-12.273923pt;}
.ws1_c00282{word-spacing:-8.878599pt;}
.ws3_c00282{word-spacing:-8.877777pt;}
.wse_c00282{word-spacing:-7.632902pt;}
.ws6_c00282{word-spacing:-6.357461pt;}
.ws16_c00282{word-spacing:0.000000pt;}
.ws13_c00282{word-spacing:0.039110pt;}
.ws17_c00282{word-spacing:0.053274pt;}
.ws11_c00282{word-spacing:0.156442pt;}
.ws14_c00282{word-spacing:0.189730pt;}
.ws15_c00282{word-spacing:0.195063pt;}
.ws0_c00282{word-spacing:38.256533pt;}
._4_c00282{margin-left:-3.188032pt;}
._1_c00282{margin-left:-0.956410pt;}
._5_c00282{width:0.893988pt;}
._0_c00282{width:17.720725pt;}
._2_c00282{width:18.756255pt;}
._3_c00282{width:25.610524pt;}
.fs2_c00282{font-size:39.110400pt;}
.fs1_c00282{font-size:53.133867pt;}
.fs0_c00282{font-size:76.513067pt;}
.y0_c00282{bottom:0.000000pt;}
.y1d_c00282{bottom:39.333333pt;}
.y1c_c00282{bottom:91.929333pt;}
.y1b_c00282{bottom:106.541333pt;}
.y1a_c00282{bottom:121.153333pt;}
.y19_c00282{bottom:150.377333pt;}
.y18_c00282{bottom:164.989333pt;}
.y17_c00282{bottom:194.213333pt;}
.y16_c00282{bottom:208.824000pt;}
.y15_c00282{bottom:223.436000pt;}
.y14_c00282{bottom:267.272000pt;}
.y13_c00282{bottom:281.884000pt;}
.y12_c00282{bottom:296.496000pt;}
.y11_c00282{bottom:311.108000pt;}
.y10_c00282{bottom:325.720000pt;}
.yf_c00282{bottom:354.942667pt;}
.ye_c00282{bottom:369.554667pt;}
.yd_c00282{bottom:383.834667pt;}
.yc_c00282{bottom:425.654667pt;}
.yb_c00282{bottom:441.594667pt;}
.ya_c00282{bottom:457.534667pt;}
.y9_c00282{bottom:473.474667pt;}
.y8_c00282{bottom:489.414667pt;}
.y7_c00282{bottom:505.354667pt;}
.y6_c00282{bottom:521.296000pt;}
.y5_c00282{bottom:545.033333pt;}
.y4_c00282{bottom:568.772000pt;}
.y3_c00282{bottom:592.510667pt;}
.y2_c00282{bottom:616.249333pt;}
.y1_c00282{bottom:653.653333pt;}
.h5_c00282{height:31.280681pt;}
.h6_c00282{height:32.006363pt;}
.h3_c00282{height:36.010648pt;}
.h4_c00282{height:46.518078pt;}
.h2_c00282{height:51.855535pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w0_c00282{width:793.706667pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:113.385333pt;}
.x2_c00282{left:121.886667pt;}
.x3_c00282{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db64b9aa0277b1b45c1088f1.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.083496;font-style:normal;font-weight:normal;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_31aef807469d14ff6ecff391.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_4d173e3794c17afece4e1c05.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_b5986832f29173eb2addb4fa.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls4_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.087998px;}
.ls2_c00283{letter-spacing:0.098482px;}
.ls1_c00283{letter-spacing:0.104482px;}
.ls3_c00283{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws1_c00283{word-spacing:-26.487518px;}
.ws2_c00283{word-spacing:0.000000px;}
.ws8_c00283{word-spacing:0.026966px;}
.ws9_c00283{word-spacing:0.043999px;}
.ws6_c00283{word-spacing:0.046284px;}
.ws3_c00283{word-spacing:0.056767px;}
.ws5_c00283{word-spacing:0.073250px;}
.ws7_c00283{word-spacing:0.083734px;}
.ws4_c00283{word-spacing:0.202963px;}
.wsb_c00283{word-spacing:0.213446px;}
.wsa_c00283{word-spacing:0.219446px;}
._5_c00283{width:1.041538px;}
._3_c00283{width:53.283031px;}
._0_c00283{width:80.122543px;}
._2_c00283{width:106.434065px;}
._1_c00283{width:133.452408px;}
._4_c00283{width:186.179933px;}
.fc5_c00283{color:rgb(79,153,5);}
.fc4_c00283{color:rgb(0,0,207);}
.fc3_c00283{color:rgb(207,92,0);}
.fc2_c00283{color:rgb(33,74,135);}
.fc1_c00283{color:rgb(143,89,3);}
.fc0_c00283{color:rgb(0,0,0);}
.fs0_c00283{font-size:43.999200px;}
.fs1_c00283{font-size:59.775600px;}
.y0_c00283{bottom:0.000000px;}
.y2b_c00283{bottom:44.250000px;}
.y2a_c00283{bottom:387.259500px;}
.y29_c00283{bottom:403.698000px;}
.y28_c00283{bottom:420.136500px;}
.y27_c00283{bottom:436.575000px;}
.y26_c00283{bottom:453.013500px;}
.y25_c00283{bottom:469.452000px;}
.y24_c00283{bottom:485.890500px;}
.y23_c00283{bottom:502.329000px;}
.y22_c00283{bottom:518.767500px;}
.y21_c00283{bottom:535.206000px;}
.y20_c00283{bottom:551.643000px;}
.y1f_c00283{bottom:584.520000px;}
.y1e_c00283{bottom:600.958500px;}
.y1d_c00283{bottom:617.397000px;}
.y1c_c00283{bottom:650.274000px;}
.y1b_c00283{bottom:666.712500px;}
.y1a_c00283{bottom:683.151000px;}
.y19_c00283{bottom:699.589500px;}
.y18_c00283{bottom:716.028000px;}
.y17_c00283{bottom:732.465000px;}
.y16_c00283{bottom:748.903500px;}
.y15_c00283{bottom:765.342000px;}
.y14_c00283{bottom:781.780500px;}
.y13_c00283{bottom:798.219000px;}
.y12_c00283{bottom:814.657500px;}
.y11_c00283{bottom:831.096000px;}
.y10_c00283{bottom:847.534500px;}
.yf_c00283{bottom:863.973000px;}
.ye_c00283{bottom:880.411500px;}
.yd_c00283{bottom:896.848500px;}
.yc_c00283{bottom:913.287000px;}
.yb_c00283{bottom:929.725500px;}
.ya_c00283{bottom:946.164000px;}
.y9_c00283{bottom:995.479500px;}
.y8_c00283{bottom:1011.918000px;}
.y7_c00283{bottom:1028.356500px;}
.y6_c00283{bottom:1044.795000px;}
.y5_c00283{bottom:1061.232000px;}
.y4_c00283{bottom:1094.109000px;}
.y3_c00283{bottom:1110.547500px;}
.y2_c00283{bottom:1143.424500px;}
.y1_c00283{bottom:1159.863000px;}
.h3_c00283{height:35.190766px;}
.h2_c00283{height:36.007158px;}
.h4_c00283{height:52.332837px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w0_c00283{width:892.920000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:137.122500px;}
.x3_c00283{left:143.770500px;}
.x4_c00283{left:177.007500px;}
.x2_c00283{left:210.243000px;}
.x5_c00283{left:435.249000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls4_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.078221pt;}
.ls2_c00283{letter-spacing:0.087539pt;}
.ls1_c00283{letter-spacing:0.092873pt;}
.ls3_c00283{letter-spacing:23.724873pt;}
.ws0_c00283{word-spacing:-23.622682pt;}
.ws1_c00283{word-spacing:-23.544461pt;}
.ws2_c00283{word-spacing:0.000000pt;}
.ws8_c00283{word-spacing:0.023970pt;}
.ws9_c00283{word-spacing:0.039110pt;}
.ws6_c00283{word-spacing:0.041141pt;}
.ws3_c00283{word-spacing:0.050460pt;}
.ws5_c00283{word-spacing:0.065111pt;}
.ws7_c00283{word-spacing:0.074430pt;}
.ws4_c00283{word-spacing:0.180412pt;}
.wsb_c00283{word-spacing:0.189730pt;}
.wsa_c00283{word-spacing:0.195063pt;}
._5_c00283{width:0.925811pt;}
._3_c00283{width:47.362694pt;}
._0_c00283{width:71.220038pt;}
._2_c00283{width:94.608058pt;}
._1_c00283{width:118.624363pt;}
._4_c00283{width:165.493274pt;}
.fs0_c00283{font-size:39.110400pt;}
.fs1_c00283{font-size:53.133867pt;}
.y0_c00283{bottom:0.000000pt;}
.y2b_c00283{bottom:39.333333pt;}
.y2a_c00283{bottom:344.230667pt;}
.y29_c00283{bottom:358.842667pt;}
.y28_c00283{bottom:373.454667pt;}
.y27_c00283{bottom:388.066667pt;}
.y26_c00283{bottom:402.678667pt;}
.y25_c00283{bottom:417.290667pt;}
.y24_c00283{bottom:431.902667pt;}
.y23_c00283{bottom:446.514667pt;}
.y22_c00283{bottom:461.126667pt;}
.y21_c00283{bottom:475.738667pt;}
.y20_c00283{bottom:490.349333pt;}
.y1f_c00283{bottom:519.573333pt;}
.y1e_c00283{bottom:534.185333pt;}
.y1d_c00283{bottom:548.797333pt;}
.y1c_c00283{bottom:578.021333pt;}
.y1b_c00283{bottom:592.633333pt;}
.y1a_c00283{bottom:607.245333pt;}
.y19_c00283{bottom:621.857333pt;}
.y18_c00283{bottom:636.469333pt;}
.y17_c00283{bottom:651.080000pt;}
.y16_c00283{bottom:665.692000pt;}
.y15_c00283{bottom:680.304000pt;}
.y14_c00283{bottom:694.916000pt;}
.y13_c00283{bottom:709.528000pt;}
.y12_c00283{bottom:724.140000pt;}
.y11_c00283{bottom:738.752000pt;}
.y10_c00283{bottom:753.364000pt;}
.yf_c00283{bottom:767.976000pt;}
.ye_c00283{bottom:782.588000pt;}
.yd_c00283{bottom:797.198667pt;}
.yc_c00283{bottom:811.810667pt;}
.yb_c00283{bottom:826.422667pt;}
.ya_c00283{bottom:841.034667pt;}
.y9_c00283{bottom:884.870667pt;}
.y8_c00283{bottom:899.482667pt;}
.y7_c00283{bottom:914.094667pt;}
.y6_c00283{bottom:928.706667pt;}
.y5_c00283{bottom:943.317333pt;}
.y4_c00283{bottom:972.541333pt;}
.y3_c00283{bottom:987.153333pt;}
.y2_c00283{bottom:1016.377333pt;}
.y1_c00283{bottom:1030.989333pt;}
.h3_c00283{height:31.280681pt;}
.h2_c00283{height:32.006363pt;}
.h4_c00283{height:46.518078pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w0_c00283{width:793.706667pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:121.886667pt;}
.x3_c00283{left:127.796000pt;}
.x4_c00283{left:157.340000pt;}
.x2_c00283{left:186.882667pt;}
.x5_c00283{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd101efbe05ade3ab4355577.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:0.893555;font-style:normal;font-weight:normal;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_8bfc07a0a252d170eda3b8f2.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.083496;font-style:normal;font-weight:normal;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_6960d15cf727ff6b8a3efea1.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.048828;font-style: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;}
.ls3_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.087998px;}
.ls2_c00284{letter-spacing:0.098482px;}
.ls1_c00284{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00284{word-spacing:-33.713438px;}
.ws2_c00284{word-spacing:-26.575517px;}
.wse_c00284{word-spacing:-26.487518px;}
.ws5_c00284{word-spacing:-18.769538px;}
.ws4_c00284{word-spacing:-14.943900px;}
.ws7_c00284{word-spacing:-14.465695px;}
.wsa_c00284{word-spacing:-14.107042px;}
.wsb_c00284{word-spacing:-12.074671px;}
.ws9_c00284{word-spacing:-11.716018px;}
.ws8_c00284{word-spacing:-11.656242px;}
.ws1_c00284{word-spacing:-9.988424px;}
.ws3_c00284{word-spacing:-9.987499px;}
.ws6_c00284{word-spacing:-1.386144px;}
.ws12_c00284{word-spacing:0.000000px;}
.wsf_c00284{word-spacing:0.043999px;}
.ws15_c00284{word-spacing:0.056767px;}
.ws13_c00284{word-spacing:0.073250px;}
.ws14_c00284{word-spacing:0.083734px;}
.wsd_c00284{word-spacing:0.175997px;}
.ws16_c00284{word-spacing:0.202963px;}
.ws10_c00284{word-spacing:0.213446px;}
.ws11_c00284{word-spacing:0.219446px;}
.ws0_c00284{word-spacing:43.038600px;}
._2_c00284{margin-left:-3.376852px;}
._1_c00284{margin-left:-1.075961px;}
._5_c00284{width:1.005737px;}
._0_c00284{width:19.935816px;}
._3_c00284{width:23.790689px;}
._4_c00284{width:40.109428px;}
._7_c00284{width:53.283031px;}
._6_c00284{width:79.858548px;}
._8_c00284{width:133.452408px;}
.fc6_c00284{color:rgb(0,0,207);}
.fc5_c00284{color:rgb(79,153,5);}
.fc3_c00284{color:rgb(33,74,135);}
.fc2_c00284{color:rgb(143,89,3);}
.fc4_c00284{color:rgb(207,92,0);}
.fc1_c00284{color:rgb(6,69,173);}
.fc0_c00284{color:rgb(0,0,0);}
.fs2_c00284{font-size:43.999200px;}
.fs1_c00284{font-size:59.775600px;}
.fs0_c00284{font-size:86.077200px;}
.y0_c00284{bottom:0.000000px;}
.y20_c00284{bottom:44.250000px;}
.y1f_c00284{bottom:86.982000px;}
.y1e_c00284{bottom:103.420500px;}
.y1d_c00284{bottom:119.859000px;}
.y1c_c00284{bottom:136.297500px;}
.y1b_c00284{bottom:152.736000px;}
.y1a_c00284{bottom:169.174500px;}
.y19_c00284{bottom:185.613000px;}
.y18_c00284{bottom:202.051500px;}
.y17_c00284{bottom:218.490000px;}
.y16_c00284{bottom:234.927000px;}
.y15_c00284{bottom:251.365500px;}
.y14_c00284{bottom:267.804000px;}
.y13_c00284{bottom:284.242500px;}
.y12_c00284{bottom:300.681000px;}
.y11_c00284{bottom:317.119500px;}
.y10_c00284{bottom:349.996500px;}
.yf_c00284{bottom:366.435000px;}
.ye_c00284{bottom:415.749000px;}
.yd_c00284{bottom:432.187500px;}
.yc_c00284{bottom:448.252500px;}
.yb_c00284{bottom:493.890000px;}
.ya_c00284{bottom:511.822500px;}
.y9_c00284{bottom:529.756500px;}
.y8_c00284{bottom:547.689000px;}
.y7_c00284{bottom:565.621500px;}
.y6_c00284{bottom:583.554000px;}
.y5_c00284{bottom:610.633500px;}
.y4_c00284{bottom:637.714500px;}
.y3_c00284{bottom:664.794000px;}
.y2_c00284{bottom:691.873500px;}
.y1_c00284{bottom:734.407500px;}
.h5_c00284{height:35.190766px;}
.h6_c00284{height:36.007158px;}
.h3_c00284{height:40.511979px;}
.h4_c00284{height:52.332837px;}
.h2_c00284{height:58.337477px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.w0_c00284{width:892.920000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:127.558500px;}
.x2_c00284{left:137.122500px;}
.x3_c00284{left:143.770500px;}
.x4_c00284{left:435.249000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls3_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.078221pt;}
.ls2_c00284{letter-spacing:0.087539pt;}
.ls1_c00284{letter-spacing:0.092873pt;}
.wsc_c00284{word-spacing:-29.967501pt;}
.ws2_c00284{word-spacing:-23.622682pt;}
.wse_c00284{word-spacing:-23.544461pt;}
.ws5_c00284{word-spacing:-16.684034pt;}
.ws4_c00284{word-spacing:-13.283467pt;}
.ws7_c00284{word-spacing:-12.858396pt;}
.wsa_c00284{word-spacing:-12.539593pt;}
.wsb_c00284{word-spacing:-10.733041pt;}
.ws9_c00284{word-spacing:-10.414238pt;}
.ws8_c00284{word-spacing:-10.361104pt;}
.ws1_c00284{word-spacing:-8.878599pt;}
.ws3_c00284{word-spacing:-8.877777pt;}
.ws6_c00284{word-spacing:-1.232128pt;}
.ws12_c00284{word-spacing:0.000000pt;}
.wsf_c00284{word-spacing:0.039110pt;}
.ws15_c00284{word-spacing:0.050460pt;}
.ws13_c00284{word-spacing:0.065111pt;}
.ws14_c00284{word-spacing:0.074430pt;}
.wsd_c00284{word-spacing:0.156442pt;}
.ws16_c00284{word-spacing:0.180412pt;}
.ws10_c00284{word-spacing:0.189730pt;}
.ws11_c00284{word-spacing:0.195063pt;}
.ws0_c00284{word-spacing:38.256533pt;}
._2_c00284{margin-left:-3.001646pt;}
._1_c00284{margin-left:-0.956410pt;}
._5_c00284{width:0.893988pt;}
._0_c00284{width:17.720725pt;}
._3_c00284{width:21.147279pt;}
._4_c00284{width:35.652825pt;}
._7_c00284{width:47.362694pt;}
._6_c00284{width:70.985376pt;}
._8_c00284{width:118.624363pt;}
.fs2_c00284{font-size:39.110400pt;}
.fs1_c00284{font-size:53.133867pt;}
.fs0_c00284{font-size:76.513067pt;}
.y0_c00284{bottom:0.000000pt;}
.y20_c00284{bottom:39.333333pt;}
.y1f_c00284{bottom:77.317333pt;}
.y1e_c00284{bottom:91.929333pt;}
.y1d_c00284{bottom:106.541333pt;}
.y1c_c00284{bottom:121.153333pt;}
.y1b_c00284{bottom:135.765333pt;}
.y1a_c00284{bottom:150.377333pt;}
.y19_c00284{bottom:164.989333pt;}
.y18_c00284{bottom:179.601333pt;}
.y17_c00284{bottom:194.213333pt;}
.y16_c00284{bottom:208.824000pt;}
.y15_c00284{bottom:223.436000pt;}
.y14_c00284{bottom:238.048000pt;}
.y13_c00284{bottom:252.660000pt;}
.y12_c00284{bottom:267.272000pt;}
.y11_c00284{bottom:281.884000pt;}
.y10_c00284{bottom:311.108000pt;}
.yf_c00284{bottom:325.720000pt;}
.ye_c00284{bottom:369.554667pt;}
.yd_c00284{bottom:384.166667pt;}
.yc_c00284{bottom:398.446667pt;}
.yb_c00284{bottom:439.013333pt;}
.ya_c00284{bottom:454.953333pt;}
.y9_c00284{bottom:470.894667pt;}
.y8_c00284{bottom:486.834667pt;}
.y7_c00284{bottom:502.774667pt;}
.y6_c00284{bottom:518.714667pt;}
.y5_c00284{bottom:542.785333pt;}
.y4_c00284{bottom:566.857333pt;}
.y3_c00284{bottom:590.928000pt;}
.y2_c00284{bottom:614.998667pt;}
.y1_c00284{bottom:652.806667pt;}
.h5_c00284{height:31.280681pt;}
.h6_c00284{height:32.006363pt;}
.h3_c00284{height:36.010648pt;}
.h4_c00284{height:46.518078pt;}
.h2_c00284{height:51.855535pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.w0_c00284{width:793.706667pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:113.385333pt;}
.x2_c00284{left:121.886667pt;}
.x3_c00284{left:127.796000pt;}
.x4_c00284{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fce5389a74eab7043a67d082.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_2e4aa459163de1c8f5e6df5d.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_bd101efbe05ade3ab4355577.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_c05923225854557ec4266ad9.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;line-height:1.102051;font-style: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;}
.ls4_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.087998px;}
.ls2_c00285{letter-spacing:0.098482px;}
.ls3_c00285{letter-spacing:0.104482px;}
.ls1_c00285{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00285{word-spacing:-26.575517px;}
.ws4_c00285{word-spacing:-26.487518px;}
.wsa_c00285{word-spacing:-18.769538px;}
.wsc_c00285{word-spacing:-16.019861px;}
.ws9_c00285{word-spacing:-14.943900px;}
.wsf_c00285{word-spacing:-14.107042px;}
.ws10_c00285{word-spacing:-12.074671px;}
.wse_c00285{word-spacing:-11.716018px;}
.wsd_c00285{word-spacing:-11.656242px;}
.ws7_c00285{word-spacing:-9.988424px;}
.ws8_c00285{word-spacing:-9.987499px;}
.wsb_c00285{word-spacing:-4.536144px;}
.ws3_c00285{word-spacing:0.000000px;}
.ws0_c00285{word-spacing:0.043999px;}
.ws5_c00285{word-spacing:0.213446px;}
.ws1_c00285{word-spacing:0.219446px;}
.ws6_c00285{word-spacing:43.038600px;}
._4_c00285{margin-left:-3.376852px;}
._3_c00285{margin-left:-1.075961px;}
._1_c00285{width:1.041538px;}
._2_c00285{width:19.935816px;}
._5_c00285{width:23.790689px;}
._6_c00285{width:40.109428px;}
._0_c00285{width:80.122543px;}
.fc5_c00285{color:rgb(79,153,5);}
.fc4_c00285{color:rgb(143,89,3);}
.fc3_c00285{color:rgb(0,0,0);}
.fc6_c00285{color:rgb(6,69,173);}
.fc2_c00285{color:rgb(207,92,0);}
.fc1_c00285{color:rgb(0,0,207);}
.fc0_c00285{color:rgb(33,74,135);}
.fs0_c00285{font-size:43.999200px;}
.fs2_c00285{font-size:59.775600px;}
.fs1_c00285{font-size:86.077200px;}
.y0_c00285{bottom:0.000000px;}
.y20_c00285{bottom:44.250000px;}
.y1f_c00285{bottom:82.051500px;}
.y1e_c00285{bottom:99.984000px;}
.y1d_c00285{bottom:117.916500px;}
.y1c_c00285{bottom:135.849000px;}
.y1b_c00285{bottom:162.501000px;}
.y1a_c00285{bottom:189.151500px;}
.y19_c00285{bottom:215.802000px;}
.y18_c00285{bottom:242.454000px;}
.y17_c00285{bottom:284.478000px;}
.y16_c00285{bottom:748.903500px;}
.y15_c00285{bottom:765.342000px;}
.y14_c00285{bottom:781.780500px;}
.y13_c00285{bottom:798.219000px;}
.y12_c00285{bottom:814.657500px;}
.y11_c00285{bottom:831.096000px;}
.y10_c00285{bottom:847.534500px;}
.yf_c00285{bottom:863.973000px;}
.ye_c00285{bottom:880.411500px;}
.yd_c00285{bottom:896.848500px;}
.yc_c00285{bottom:913.287000px;}
.yb_c00285{bottom:946.164000px;}
.ya_c00285{bottom:962.602500px;}
.y9_c00285{bottom:979.041000px;}
.y8_c00285{bottom:1011.918000px;}
.y7_c00285{bottom:1028.356500px;}
.y6_c00285{bottom:1044.795000px;}
.y5_c00285{bottom:1061.232000px;}
.y4_c00285{bottom:1077.670500px;}
.y3_c00285{bottom:1094.109000px;}
.y2_c00285{bottom:1110.547500px;}
.y1_c00285{bottom:1159.863000px;}
.h3_c00285{height:35.190766px;}
.h2_c00285{height:36.007158px;}
.h5_c00285{height:40.511979px;}
.h6_c00285{height:52.332837px;}
.h4_c00285{height:58.337477px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w0_c00285{width:892.920000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x4_c00285{left:127.558500px;}
.x2_c00285{left:137.122500px;}
.x1_c00285{left:143.770500px;}
.x3_c00285{left:177.007500px;}
.x5_c00285{left:435.249000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls4_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.078221pt;}
.ls2_c00285{letter-spacing:0.087539pt;}
.ls3_c00285{letter-spacing:0.092873pt;}
.ls1_c00285{letter-spacing:23.724873pt;}
.ws2_c00285{word-spacing:-23.622682pt;}
.ws4_c00285{word-spacing:-23.544461pt;}
.wsa_c00285{word-spacing:-16.684034pt;}
.wsc_c00285{word-spacing:-14.239876pt;}
.ws9_c00285{word-spacing:-13.283467pt;}
.wsf_c00285{word-spacing:-12.539593pt;}
.ws10_c00285{word-spacing:-10.733041pt;}
.wse_c00285{word-spacing:-10.414238pt;}
.wsd_c00285{word-spacing:-10.361104pt;}
.ws7_c00285{word-spacing:-8.878599pt;}
.ws8_c00285{word-spacing:-8.877777pt;}
.wsb_c00285{word-spacing:-4.032128pt;}
.ws3_c00285{word-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.039110pt;}
.ws5_c00285{word-spacing:0.189730pt;}
.ws1_c00285{word-spacing:0.195063pt;}
.ws6_c00285{word-spacing:38.256533pt;}
._4_c00285{margin-left:-3.001646pt;}
._3_c00285{margin-left:-0.956410pt;}
._1_c00285{width:0.925811pt;}
._2_c00285{width:17.720725pt;}
._5_c00285{width:21.147279pt;}
._6_c00285{width:35.652825pt;}
._0_c00285{width:71.220038pt;}
.fs0_c00285{font-size:39.110400pt;}
.fs2_c00285{font-size:53.133867pt;}
.fs1_c00285{font-size:76.513067pt;}
.y0_c00285{bottom:0.000000pt;}
.y20_c00285{bottom:39.333333pt;}
.y1f_c00285{bottom:72.934667pt;}
.y1e_c00285{bottom:88.874667pt;}
.y1d_c00285{bottom:104.814667pt;}
.y1c_c00285{bottom:120.754667pt;}
.y1b_c00285{bottom:144.445333pt;}
.y1a_c00285{bottom:168.134667pt;}
.y19_c00285{bottom:191.824000pt;}
.y18_c00285{bottom:215.514667pt;}
.y17_c00285{bottom:252.869333pt;}
.y16_c00285{bottom:665.692000pt;}
.y15_c00285{bottom:680.304000pt;}
.y14_c00285{bottom:694.916000pt;}
.y13_c00285{bottom:709.528000pt;}
.y12_c00285{bottom:724.140000pt;}
.y11_c00285{bottom:738.752000pt;}
.y10_c00285{bottom:753.364000pt;}
.yf_c00285{bottom:767.976000pt;}
.ye_c00285{bottom:782.588000pt;}
.yd_c00285{bottom:797.198667pt;}
.yc_c00285{bottom:811.810667pt;}
.yb_c00285{bottom:841.034667pt;}
.ya_c00285{bottom:855.646667pt;}
.y9_c00285{bottom:870.258667pt;}
.y8_c00285{bottom:899.482667pt;}
.y7_c00285{bottom:914.094667pt;}
.y6_c00285{bottom:928.706667pt;}
.y5_c00285{bottom:943.317333pt;}
.y4_c00285{bottom:957.929333pt;}
.y3_c00285{bottom:972.541333pt;}
.y2_c00285{bottom:987.153333pt;}
.y1_c00285{bottom:1030.989333pt;}
.h3_c00285{height:31.280681pt;}
.h2_c00285{height:32.006363pt;}
.h5_c00285{height:36.010648pt;}
.h6_c00285{height:46.518078pt;}
.h4_c00285{height:51.855535pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w0_c00285{width:793.706667pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x4_c00285{left:113.385333pt;}
.x2_c00285{left:121.886667pt;}
.x1_c00285{left:127.796000pt;}
.x3_c00285{left:157.340000pt;}
.x5_c00285{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8fc1d85f390bcab8a84b9e6.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.102051;font-style:normal;font-weight:normal;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_fa13dd68610e38c30c383e59.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.048828;font-style:normal;font-weight:normal;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_203222776ca74be6724bc9d7.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls4_c00286{letter-spacing:0.000000px;}
.ls1_c00286{letter-spacing:0.087998px;}
.ls2_c00286{letter-spacing:0.098482px;}
.ls0_c00286{letter-spacing:0.104482px;}
.ls3_c00286{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00286{word-spacing:-26.575517px;}
.ws3_c00286{word-spacing:-26.487518px;}
.ws0_c00286{word-spacing:-18.769538px;}
.ws8_c00286{word-spacing:0.000000px;}
.ws5_c00286{word-spacing:0.043999px;}
.wsb_c00286{word-spacing:0.056767px;}
.ws9_c00286{word-spacing:0.073250px;}
.wsa_c00286{word-spacing:0.083734px;}
.ws2_c00286{word-spacing:0.175997px;}
.wsc_c00286{word-spacing:0.202963px;}
.ws6_c00286{word-spacing:0.213446px;}
.ws7_c00286{word-spacing:0.219446px;}
._0_c00286{margin-left:-3.825638px;}
._1_c00286{width:1.005737px;}
._3_c00286{width:53.283031px;}
._2_c00286{width:79.858548px;}
._4_c00286{width:133.452408px;}
.fc5_c00286{color:rgb(0,0,207);}
.fc4_c00286{color:rgb(79,153,5);}
.fc3_c00286{color:rgb(207,92,0);}
.fc2_c00286{color:rgb(33,74,135);}
.fc1_c00286{color:rgb(143,89,3);}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:43.999200px;}
.fs0_c00286{font-size:59.775600px;}
.y0_c00286{bottom:0.000000px;}
.y2d_c00286{bottom:44.250000px;}
.y2c_c00286{bottom:96.919500px;}
.y2b_c00286{bottom:113.358000px;}
.y2a_c00286{bottom:129.796500px;}
.y29_c00286{bottom:146.235000px;}
.y28_c00286{bottom:162.673500px;}
.y27_c00286{bottom:179.112000px;}
.y26_c00286{bottom:195.550500px;}
.y25_c00286{bottom:211.989000px;}
.y24_c00286{bottom:228.427500px;}
.y23_c00286{bottom:244.866000px;}
.y22_c00286{bottom:261.304500px;}
.y21_c00286{bottom:294.180000px;}
.y20_c00286{bottom:310.618500px;}
.y1f_c00286{bottom:327.057000px;}
.y1e_c00286{bottom:359.934000px;}
.y1d_c00286{bottom:376.372500px;}
.y1c_c00286{bottom:392.811000px;}
.y1b_c00286{bottom:409.249500px;}
.y1a_c00286{bottom:425.688000px;}
.y19_c00286{bottom:442.125000px;}
.y18_c00286{bottom:458.563500px;}
.y17_c00286{bottom:507.879000px;}
.y16_c00286{bottom:524.317500px;}
.y15_c00286{bottom:540.756000px;}
.y14_c00286{bottom:557.194500px;}
.y13_c00286{bottom:573.633000px;}
.y12_c00286{bottom:590.071500px;}
.y11_c00286{bottom:606.508500px;}
.y10_c00286{bottom:622.947000px;}
.yf_c00286{bottom:639.385500px;}
.ye_c00286{bottom:655.824000px;}
.yd_c00286{bottom:672.262500px;}
.yc_c00286{bottom:688.701000px;}
.yb_c00286{bottom:705.139500px;}
.ya_c00286{bottom:721.578000px;}
.y9_c00286{bottom:738.016500px;}
.y8_c00286{bottom:754.455000px;}
.y7_c00286{bottom:787.330500px;}
.y6_c00286{bottom:803.769000px;}
.y5_c00286{bottom:853.084500px;}
.y4_c00286{bottom:869.523000px;}
.y3_c00286{bottom:885.588000px;}
.y2_c00286{bottom:1141.930500px;}
.y1_c00286{bottom:1159.863000px;}
.h3_c00286{height:35.190766px;}
.h4_c00286{height:36.007158px;}
.h2_c00286{height:52.332837px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w0_c00286{width:892.920000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:127.558500px;}
.x2_c00286{left:137.122500px;}
.x3_c00286{left:143.770500px;}
.x4_c00286{left:177.007500px;}
.x5_c00286{left:435.249000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls4_c00286{letter-spacing:0.000000pt;}
.ls1_c00286{letter-spacing:0.078221pt;}
.ls2_c00286{letter-spacing:0.087539pt;}
.ls0_c00286{letter-spacing:0.092873pt;}
.ls3_c00286{letter-spacing:23.724873pt;}
.ws1_c00286{word-spacing:-29.967501pt;}
.ws4_c00286{word-spacing:-23.622682pt;}
.ws3_c00286{word-spacing:-23.544461pt;}
.ws0_c00286{word-spacing:-16.684034pt;}
.ws8_c00286{word-spacing:0.000000pt;}
.ws5_c00286{word-spacing:0.039110pt;}
.wsb_c00286{word-spacing:0.050460pt;}
.ws9_c00286{word-spacing:0.065111pt;}
.wsa_c00286{word-spacing:0.074430pt;}
.ws2_c00286{word-spacing:0.156442pt;}
.wsc_c00286{word-spacing:0.180412pt;}
.ws6_c00286{word-spacing:0.189730pt;}
.ws7_c00286{word-spacing:0.195063pt;}
._0_c00286{margin-left:-3.400567pt;}
._1_c00286{width:0.893988pt;}
._3_c00286{width:47.362694pt;}
._2_c00286{width:70.985376pt;}
._4_c00286{width:118.624363pt;}
.fs1_c00286{font-size:39.110400pt;}
.fs0_c00286{font-size:53.133867pt;}
.y0_c00286{bottom:0.000000pt;}
.y2d_c00286{bottom:39.333333pt;}
.y2c_c00286{bottom:86.150667pt;}
.y2b_c00286{bottom:100.762667pt;}
.y2a_c00286{bottom:115.374667pt;}
.y29_c00286{bottom:129.986667pt;}
.y28_c00286{bottom:144.598667pt;}
.y27_c00286{bottom:159.210667pt;}
.y26_c00286{bottom:173.822667pt;}
.y25_c00286{bottom:188.434667pt;}
.y24_c00286{bottom:203.046667pt;}
.y23_c00286{bottom:217.658667pt;}
.y22_c00286{bottom:232.270667pt;}
.y21_c00286{bottom:261.493333pt;}
.y20_c00286{bottom:276.105333pt;}
.y1f_c00286{bottom:290.717333pt;}
.y1e_c00286{bottom:319.941333pt;}
.y1d_c00286{bottom:334.553333pt;}
.y1c_c00286{bottom:349.165333pt;}
.y1b_c00286{bottom:363.777333pt;}
.y1a_c00286{bottom:378.389333pt;}
.y19_c00286{bottom:393.000000pt;}
.y18_c00286{bottom:407.612000pt;}
.y17_c00286{bottom:451.448000pt;}
.y16_c00286{bottom:466.060000pt;}
.y15_c00286{bottom:480.672000pt;}
.y14_c00286{bottom:495.284000pt;}
.y13_c00286{bottom:509.896000pt;}
.y12_c00286{bottom:524.508000pt;}
.y11_c00286{bottom:539.118667pt;}
.y10_c00286{bottom:553.730667pt;}
.yf_c00286{bottom:568.342667pt;}
.ye_c00286{bottom:582.954667pt;}
.yd_c00286{bottom:597.566667pt;}
.yc_c00286{bottom:612.178667pt;}
.yb_c00286{bottom:626.790667pt;}
.ya_c00286{bottom:641.402667pt;}
.y9_c00286{bottom:656.014667pt;}
.y8_c00286{bottom:670.626667pt;}
.y7_c00286{bottom:699.849333pt;}
.y6_c00286{bottom:714.461333pt;}
.y5_c00286{bottom:758.297333pt;}
.y4_c00286{bottom:772.909333pt;}
.y3_c00286{bottom:787.189333pt;}
.y2_c00286{bottom:1015.049333pt;}
.y1_c00286{bottom:1030.989333pt;}
.h3_c00286{height:31.280681pt;}
.h4_c00286{height:32.006363pt;}
.h2_c00286{height:46.518078pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w0_c00286{width:793.706667pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:113.385333pt;}
.x2_c00286{left:121.886667pt;}
.x3_c00286{left:127.796000pt;}
.x4_c00286{left:157.340000pt;}
.x5_c00286{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2580d4a5e6dc48d1b63b9748.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.893555;font-style:normal;font-weight:normal;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_0a65a921b80f7e5d8325aecc.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.083496;font-style:normal;font-weight:normal;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_d16ffc599ee0aafcc67d6622.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;line-height:1.048828;font-style: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;}
.ls3_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:0.087998px;}
.ls2_c00287{letter-spacing:0.098482px;}
.ls1_c00287{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00287{word-spacing:-33.713438px;}
.ws2_c00287{word-spacing:-26.575517px;}
.wse_c00287{word-spacing:-26.487518px;}
.ws5_c00287{word-spacing:-18.769538px;}
.ws7_c00287{word-spacing:-16.019861px;}
.ws4_c00287{word-spacing:-14.943900px;}
.wsa_c00287{word-spacing:-14.107042px;}
.wsb_c00287{word-spacing:-12.074671px;}
.ws9_c00287{word-spacing:-11.716018px;}
.ws8_c00287{word-spacing:-11.656242px;}
.ws1_c00287{word-spacing:-9.988424px;}
.ws3_c00287{word-spacing:-9.987499px;}
.ws6_c00287{word-spacing:-4.536144px;}
.ws12_c00287{word-spacing:0.000000px;}
.wsf_c00287{word-spacing:0.043999px;}
.ws15_c00287{word-spacing:0.056767px;}
.ws13_c00287{word-spacing:0.073250px;}
.ws14_c00287{word-spacing:0.083734px;}
.wsd_c00287{word-spacing:0.175997px;}
.ws16_c00287{word-spacing:0.202963px;}
.ws10_c00287{word-spacing:0.213446px;}
.ws11_c00287{word-spacing:0.219446px;}
.ws0_c00287{word-spacing:43.038600px;}
._2_c00287{margin-left:-3.376852px;}
._1_c00287{margin-left:-1.075961px;}
._5_c00287{width:1.005737px;}
._0_c00287{width:19.935816px;}
._3_c00287{width:23.790689px;}
._4_c00287{width:40.109428px;}
._7_c00287{width:53.283031px;}
._6_c00287{width:79.858548px;}
._8_c00287{width:133.452408px;}
.fc6_c00287{color:rgb(0,0,207);}
.fc5_c00287{color:rgb(79,153,5);}
.fc3_c00287{color:rgb(33,74,135);}
.fc2_c00287{color:rgb(143,89,3);}
.fc4_c00287{color:rgb(207,92,0);}
.fc1_c00287{color:rgb(6,69,173);}
.fc0_c00287{color:rgb(0,0,0);}
.fs2_c00287{font-size:43.999200px;}
.fs1_c00287{font-size:59.775600px;}
.fs0_c00287{font-size:86.077200px;}
.y0_c00287{bottom:0.000000px;}
.y20_c00287{bottom:44.250000px;}
.y1f_c00287{bottom:86.982000px;}
.y1e_c00287{bottom:103.420500px;}
.y1d_c00287{bottom:119.859000px;}
.y1c_c00287{bottom:136.297500px;}
.y1b_c00287{bottom:152.736000px;}
.y1a_c00287{bottom:169.174500px;}
.y19_c00287{bottom:185.613000px;}
.y18_c00287{bottom:202.051500px;}
.y17_c00287{bottom:218.490000px;}
.y16_c00287{bottom:234.927000px;}
.y15_c00287{bottom:251.365500px;}
.y14_c00287{bottom:267.804000px;}
.y13_c00287{bottom:284.242500px;}
.y12_c00287{bottom:300.681000px;}
.y11_c00287{bottom:317.119500px;}
.y10_c00287{bottom:349.996500px;}
.yf_c00287{bottom:366.435000px;}
.ye_c00287{bottom:415.749000px;}
.yd_c00287{bottom:432.187500px;}
.yc_c00287{bottom:448.252500px;}
.yb_c00287{bottom:493.890000px;}
.ya_c00287{bottom:511.822500px;}
.y9_c00287{bottom:529.756500px;}
.y8_c00287{bottom:547.689000px;}
.y7_c00287{bottom:565.621500px;}
.y6_c00287{bottom:583.554000px;}
.y5_c00287{bottom:610.633500px;}
.y4_c00287{bottom:637.714500px;}
.y3_c00287{bottom:664.794000px;}
.y2_c00287{bottom:691.873500px;}
.y1_c00287{bottom:734.407500px;}
.h5_c00287{height:35.190766px;}
.h6_c00287{height:36.007158px;}
.h3_c00287{height:40.511979px;}
.h4_c00287{height:52.332837px;}
.h2_c00287{height:58.337477px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w0_c00287{width:892.920000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:127.558500px;}
.x2_c00287{left:137.122500px;}
.x3_c00287{left:143.770500px;}
.x4_c00287{left:435.249000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls3_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:0.078221pt;}
.ls2_c00287{letter-spacing:0.087539pt;}
.ls1_c00287{letter-spacing:0.092873pt;}
.wsc_c00287{word-spacing:-29.967501pt;}
.ws2_c00287{word-spacing:-23.622682pt;}
.wse_c00287{word-spacing:-23.544461pt;}
.ws5_c00287{word-spacing:-16.684034pt;}
.ws7_c00287{word-spacing:-14.239876pt;}
.ws4_c00287{word-spacing:-13.283467pt;}
.wsa_c00287{word-spacing:-12.539593pt;}
.wsb_c00287{word-spacing:-10.733041pt;}
.ws9_c00287{word-spacing:-10.414238pt;}
.ws8_c00287{word-spacing:-10.361104pt;}
.ws1_c00287{word-spacing:-8.878599pt;}
.ws3_c00287{word-spacing:-8.877777pt;}
.ws6_c00287{word-spacing:-4.032128pt;}
.ws12_c00287{word-spacing:0.000000pt;}
.wsf_c00287{word-spacing:0.039110pt;}
.ws15_c00287{word-spacing:0.050460pt;}
.ws13_c00287{word-spacing:0.065111pt;}
.ws14_c00287{word-spacing:0.074430pt;}
.wsd_c00287{word-spacing:0.156442pt;}
.ws16_c00287{word-spacing:0.180412pt;}
.ws10_c00287{word-spacing:0.189730pt;}
.ws11_c00287{word-spacing:0.195063pt;}
.ws0_c00287{word-spacing:38.256533pt;}
._2_c00287{margin-left:-3.001646pt;}
._1_c00287{margin-left:-0.956410pt;}
._5_c00287{width:0.893988pt;}
._0_c00287{width:17.720725pt;}
._3_c00287{width:21.147279pt;}
._4_c00287{width:35.652825pt;}
._7_c00287{width:47.362694pt;}
._6_c00287{width:70.985376pt;}
._8_c00287{width:118.624363pt;}
.fs2_c00287{font-size:39.110400pt;}
.fs1_c00287{font-size:53.133867pt;}
.fs0_c00287{font-size:76.513067pt;}
.y0_c00287{bottom:0.000000pt;}
.y20_c00287{bottom:39.333333pt;}
.y1f_c00287{bottom:77.317333pt;}
.y1e_c00287{bottom:91.929333pt;}
.y1d_c00287{bottom:106.541333pt;}
.y1c_c00287{bottom:121.153333pt;}
.y1b_c00287{bottom:135.765333pt;}
.y1a_c00287{bottom:150.377333pt;}
.y19_c00287{bottom:164.989333pt;}
.y18_c00287{bottom:179.601333pt;}
.y17_c00287{bottom:194.213333pt;}
.y16_c00287{bottom:208.824000pt;}
.y15_c00287{bottom:223.436000pt;}
.y14_c00287{bottom:238.048000pt;}
.y13_c00287{bottom:252.660000pt;}
.y12_c00287{bottom:267.272000pt;}
.y11_c00287{bottom:281.884000pt;}
.y10_c00287{bottom:311.108000pt;}
.yf_c00287{bottom:325.720000pt;}
.ye_c00287{bottom:369.554667pt;}
.yd_c00287{bottom:384.166667pt;}
.yc_c00287{bottom:398.446667pt;}
.yb_c00287{bottom:439.013333pt;}
.ya_c00287{bottom:454.953333pt;}
.y9_c00287{bottom:470.894667pt;}
.y8_c00287{bottom:486.834667pt;}
.y7_c00287{bottom:502.774667pt;}
.y6_c00287{bottom:518.714667pt;}
.y5_c00287{bottom:542.785333pt;}
.y4_c00287{bottom:566.857333pt;}
.y3_c00287{bottom:590.928000pt;}
.y2_c00287{bottom:614.998667pt;}
.y1_c00287{bottom:652.806667pt;}
.h5_c00287{height:31.280681pt;}
.h6_c00287{height:32.006363pt;}
.h3_c00287{height:36.010648pt;}
.h4_c00287{height:46.518078pt;}
.h2_c00287{height:51.855535pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w0_c00287{width:793.706667pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:113.385333pt;}
.x2_c00287{left:121.886667pt;}
.x3_c00287{left:127.796000pt;}
.x4_c00287{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b4e0924cdd0f059de0ffa58.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.048828;font-style:normal;font-weight:normal;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_58b41e19e0bbb0ced79df439.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_caef5b2b335bb7da799f78cd.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_a7840b89746f07dd22c15a4b.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:1.102051;font-style: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;}
.ls4_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.087998px;}
.ls2_c00288{letter-spacing:0.098482px;}
.ls3_c00288{letter-spacing:0.104482px;}
.ls1_c00288{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00288{word-spacing:-26.575517px;}
.ws4_c00288{word-spacing:-26.487518px;}
.wsa_c00288{word-spacing:-18.769538px;}
.wsc_c00288{word-spacing:-17.633802px;}
.ws9_c00288{word-spacing:-14.943900px;}
.wsf_c00288{word-spacing:-14.107042px;}
.ws10_c00288{word-spacing:-12.074671px;}
.wse_c00288{word-spacing:-11.716018px;}
.wsd_c00288{word-spacing:-11.656242px;}
.ws7_c00288{word-spacing:-9.988424px;}
.ws8_c00288{word-spacing:-9.987499px;}
.wsb_c00288{word-spacing:-7.680144px;}
.ws3_c00288{word-spacing:0.000000px;}
.ws0_c00288{word-spacing:0.043999px;}
.ws5_c00288{word-spacing:0.213446px;}
.ws1_c00288{word-spacing:0.219446px;}
.ws6_c00288{word-spacing:43.038600px;}
._4_c00288{margin-left:-3.376852px;}
._3_c00288{margin-left:-1.075961px;}
._1_c00288{width:1.041538px;}
._2_c00288{width:19.935816px;}
._5_c00288{width:23.790689px;}
._6_c00288{width:40.109428px;}
._0_c00288{width:53.547026px;}
.fc5_c00288{color:rgb(79,153,5);}
.fc4_c00288{color:rgb(143,89,3);}
.fc3_c00288{color:rgb(0,0,0);}
.fc6_c00288{color:rgb(6,69,173);}
.fc2_c00288{color:rgb(207,92,0);}
.fc1_c00288{color:rgb(0,0,207);}
.fc0_c00288{color:rgb(33,74,135);}
.fs0_c00288{font-size:43.999200px;}
.fs2_c00288{font-size:59.775600px;}
.fs1_c00288{font-size:86.077200px;}
.y0_c00288{bottom:0.000000px;}
.y20_c00288{bottom:44.250000px;}
.y1f_c00288{bottom:82.051500px;}
.y1e_c00288{bottom:99.984000px;}
.y1d_c00288{bottom:117.916500px;}
.y1c_c00288{bottom:135.849000px;}
.y1b_c00288{bottom:162.501000px;}
.y1a_c00288{bottom:189.151500px;}
.y19_c00288{bottom:215.802000px;}
.y18_c00288{bottom:242.454000px;}
.y17_c00288{bottom:284.478000px;}
.y16_c00288{bottom:748.903500px;}
.y15_c00288{bottom:765.342000px;}
.y14_c00288{bottom:781.780500px;}
.y13_c00288{bottom:798.219000px;}
.y12_c00288{bottom:814.657500px;}
.y11_c00288{bottom:831.096000px;}
.y10_c00288{bottom:847.534500px;}
.yf_c00288{bottom:863.973000px;}
.ye_c00288{bottom:880.411500px;}
.yd_c00288{bottom:896.848500px;}
.yc_c00288{bottom:913.287000px;}
.yb_c00288{bottom:946.164000px;}
.ya_c00288{bottom:962.602500px;}
.y9_c00288{bottom:979.041000px;}
.y8_c00288{bottom:1011.918000px;}
.y7_c00288{bottom:1028.356500px;}
.y6_c00288{bottom:1044.795000px;}
.y5_c00288{bottom:1061.232000px;}
.y4_c00288{bottom:1077.670500px;}
.y3_c00288{bottom:1094.109000px;}
.y2_c00288{bottom:1110.547500px;}
.y1_c00288{bottom:1159.863000px;}
.h3_c00288{height:35.190766px;}
.h2_c00288{height:36.007158px;}
.h5_c00288{height:40.511979px;}
.h6_c00288{height:52.332837px;}
.h4_c00288{height:58.337477px;}
.h0_c00288{height:1262.835000px;}
.h1_c00288{height:1263.000000px;}
.w0_c00288{width:892.920000px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x4_c00288{left:127.558500px;}
.x2_c00288{left:137.122500px;}
.x1_c00288{left:143.770500px;}
.x3_c00288{left:177.007500px;}
.x5_c00288{left:435.249000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls4_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.078221pt;}
.ls2_c00288{letter-spacing:0.087539pt;}
.ls3_c00288{letter-spacing:0.092873pt;}
.ls1_c00288{letter-spacing:23.724873pt;}
.ws2_c00288{word-spacing:-23.622682pt;}
.ws4_c00288{word-spacing:-23.544461pt;}
.wsa_c00288{word-spacing:-16.684034pt;}
.wsc_c00288{word-spacing:-15.674491pt;}
.ws9_c00288{word-spacing:-13.283467pt;}
.wsf_c00288{word-spacing:-12.539593pt;}
.ws10_c00288{word-spacing:-10.733041pt;}
.wse_c00288{word-spacing:-10.414238pt;}
.wsd_c00288{word-spacing:-10.361104pt;}
.ws7_c00288{word-spacing:-8.878599pt;}
.ws8_c00288{word-spacing:-8.877777pt;}
.wsb_c00288{word-spacing:-6.826795pt;}
.ws3_c00288{word-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.039110pt;}
.ws5_c00288{word-spacing:0.189730pt;}
.ws1_c00288{word-spacing:0.195063pt;}
.ws6_c00288{word-spacing:38.256533pt;}
._4_c00288{margin-left:-3.001646pt;}
._3_c00288{margin-left:-0.956410pt;}
._1_c00288{width:0.925811pt;}
._2_c00288{width:17.720725pt;}
._5_c00288{width:21.147279pt;}
._6_c00288{width:35.652825pt;}
._0_c00288{width:47.597357pt;}
.fs0_c00288{font-size:39.110400pt;}
.fs2_c00288{font-size:53.133867pt;}
.fs1_c00288{font-size:76.513067pt;}
.y0_c00288{bottom:0.000000pt;}
.y20_c00288{bottom:39.333333pt;}
.y1f_c00288{bottom:72.934667pt;}
.y1e_c00288{bottom:88.874667pt;}
.y1d_c00288{bottom:104.814667pt;}
.y1c_c00288{bottom:120.754667pt;}
.y1b_c00288{bottom:144.445333pt;}
.y1a_c00288{bottom:168.134667pt;}
.y19_c00288{bottom:191.824000pt;}
.y18_c00288{bottom:215.514667pt;}
.y17_c00288{bottom:252.869333pt;}
.y16_c00288{bottom:665.692000pt;}
.y15_c00288{bottom:680.304000pt;}
.y14_c00288{bottom:694.916000pt;}
.y13_c00288{bottom:709.528000pt;}
.y12_c00288{bottom:724.140000pt;}
.y11_c00288{bottom:738.752000pt;}
.y10_c00288{bottom:753.364000pt;}
.yf_c00288{bottom:767.976000pt;}
.ye_c00288{bottom:782.588000pt;}
.yd_c00288{bottom:797.198667pt;}
.yc_c00288{bottom:811.810667pt;}
.yb_c00288{bottom:841.034667pt;}
.ya_c00288{bottom:855.646667pt;}
.y9_c00288{bottom:870.258667pt;}
.y8_c00288{bottom:899.482667pt;}
.y7_c00288{bottom:914.094667pt;}
.y6_c00288{bottom:928.706667pt;}
.y5_c00288{bottom:943.317333pt;}
.y4_c00288{bottom:957.929333pt;}
.y3_c00288{bottom:972.541333pt;}
.y2_c00288{bottom:987.153333pt;}
.y1_c00288{bottom:1030.989333pt;}
.h3_c00288{height:31.280681pt;}
.h2_c00288{height:32.006363pt;}
.h5_c00288{height:36.010648pt;}
.h6_c00288{height:46.518078pt;}
.h4_c00288{height:51.855535pt;}
.h0_c00288{height:1122.520000pt;}
.h1_c00288{height:1122.666667pt;}
.w0_c00288{width:793.706667pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x4_c00288{left:113.385333pt;}
.x2_c00288{left:121.886667pt;}
.x1_c00288{left:127.796000pt;}
.x3_c00288{left:157.340000pt;}
.x5_c00288{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_467fc97f6ff204efdf4fb937.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.102051;font-style:normal;font-weight:normal;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_74689d55b25631cc8e5b2815.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_5e5a0ef21e6e82da7d919e75.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls4_c00289{letter-spacing:0.000000px;}
.ls1_c00289{letter-spacing:0.087998px;}
.ls2_c00289{letter-spacing:0.098482px;}
.ls0_c00289{letter-spacing:0.104482px;}
.ls3_c00289{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00289{word-spacing:-26.575517px;}
.ws3_c00289{word-spacing:-26.487518px;}
.ws0_c00289{word-spacing:-18.769538px;}
.ws8_c00289{word-spacing:0.000000px;}
.ws5_c00289{word-spacing:0.043999px;}
.wsb_c00289{word-spacing:0.056767px;}
.ws9_c00289{word-spacing:0.073250px;}
.wsa_c00289{word-spacing:0.083734px;}
.ws2_c00289{word-spacing:0.175997px;}
.wsc_c00289{word-spacing:0.202963px;}
.ws6_c00289{word-spacing:0.213446px;}
.ws7_c00289{word-spacing:0.219446px;}
._0_c00289{margin-left:-3.825638px;}
._1_c00289{width:1.005737px;}
._3_c00289{width:53.283031px;}
._2_c00289{width:79.858548px;}
._4_c00289{width:133.452408px;}
.fc5_c00289{color:rgb(0,0,207);}
.fc4_c00289{color:rgb(79,153,5);}
.fc3_c00289{color:rgb(207,92,0);}
.fc2_c00289{color:rgb(33,74,135);}
.fc1_c00289{color:rgb(143,89,3);}
.fc0_c00289{color:rgb(0,0,0);}
.fs1_c00289{font-size:43.999200px;}
.fs0_c00289{font-size:59.775600px;}
.y0_c00289{bottom:0.000000px;}
.y2d_c00289{bottom:44.250000px;}
.y2c_c00289{bottom:96.919500px;}
.y2b_c00289{bottom:113.358000px;}
.y2a_c00289{bottom:129.796500px;}
.y29_c00289{bottom:146.235000px;}
.y28_c00289{bottom:162.673500px;}
.y27_c00289{bottom:179.112000px;}
.y26_c00289{bottom:195.550500px;}
.y25_c00289{bottom:211.989000px;}
.y24_c00289{bottom:228.427500px;}
.y23_c00289{bottom:244.866000px;}
.y22_c00289{bottom:261.304500px;}
.y21_c00289{bottom:294.180000px;}
.y20_c00289{bottom:310.618500px;}
.y1f_c00289{bottom:327.057000px;}
.y1e_c00289{bottom:359.934000px;}
.y1d_c00289{bottom:376.372500px;}
.y1c_c00289{bottom:392.811000px;}
.y1b_c00289{bottom:409.249500px;}
.y1a_c00289{bottom:425.688000px;}
.y19_c00289{bottom:442.125000px;}
.y18_c00289{bottom:458.563500px;}
.y17_c00289{bottom:507.879000px;}
.y16_c00289{bottom:524.317500px;}
.y15_c00289{bottom:540.756000px;}
.y14_c00289{bottom:557.194500px;}
.y13_c00289{bottom:573.633000px;}
.y12_c00289{bottom:590.071500px;}
.y11_c00289{bottom:606.508500px;}
.y10_c00289{bottom:622.947000px;}
.yf_c00289{bottom:639.385500px;}
.ye_c00289{bottom:655.824000px;}
.yd_c00289{bottom:672.262500px;}
.yc_c00289{bottom:688.701000px;}
.yb_c00289{bottom:705.139500px;}
.ya_c00289{bottom:721.578000px;}
.y9_c00289{bottom:738.016500px;}
.y8_c00289{bottom:754.455000px;}
.y7_c00289{bottom:787.330500px;}
.y6_c00289{bottom:803.769000px;}
.y5_c00289{bottom:853.084500px;}
.y4_c00289{bottom:869.523000px;}
.y3_c00289{bottom:885.588000px;}
.y2_c00289{bottom:1141.930500px;}
.y1_c00289{bottom:1159.863000px;}
.h3_c00289{height:35.190766px;}
.h4_c00289{height:36.007158px;}
.h2_c00289{height:52.332837px;}
.h0_c00289{height:1262.835000px;}
.h1_c00289{height:1263.000000px;}
.w0_c00289{width:892.920000px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:127.558500px;}
.x2_c00289{left:137.122500px;}
.x3_c00289{left:143.770500px;}
.x4_c00289{left:177.007500px;}
.x5_c00289{left:435.249000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls4_c00289{letter-spacing:0.000000pt;}
.ls1_c00289{letter-spacing:0.078221pt;}
.ls2_c00289{letter-spacing:0.087539pt;}
.ls0_c00289{letter-spacing:0.092873pt;}
.ls3_c00289{letter-spacing:23.724873pt;}
.ws1_c00289{word-spacing:-29.967501pt;}
.ws4_c00289{word-spacing:-23.622682pt;}
.ws3_c00289{word-spacing:-23.544461pt;}
.ws0_c00289{word-spacing:-16.684034pt;}
.ws8_c00289{word-spacing:0.000000pt;}
.ws5_c00289{word-spacing:0.039110pt;}
.wsb_c00289{word-spacing:0.050460pt;}
.ws9_c00289{word-spacing:0.065111pt;}
.wsa_c00289{word-spacing:0.074430pt;}
.ws2_c00289{word-spacing:0.156442pt;}
.wsc_c00289{word-spacing:0.180412pt;}
.ws6_c00289{word-spacing:0.189730pt;}
.ws7_c00289{word-spacing:0.195063pt;}
._0_c00289{margin-left:-3.400567pt;}
._1_c00289{width:0.893988pt;}
._3_c00289{width:47.362694pt;}
._2_c00289{width:70.985376pt;}
._4_c00289{width:118.624363pt;}
.fs1_c00289{font-size:39.110400pt;}
.fs0_c00289{font-size:53.133867pt;}
.y0_c00289{bottom:0.000000pt;}
.y2d_c00289{bottom:39.333333pt;}
.y2c_c00289{bottom:86.150667pt;}
.y2b_c00289{bottom:100.762667pt;}
.y2a_c00289{bottom:115.374667pt;}
.y29_c00289{bottom:129.986667pt;}
.y28_c00289{bottom:144.598667pt;}
.y27_c00289{bottom:159.210667pt;}
.y26_c00289{bottom:173.822667pt;}
.y25_c00289{bottom:188.434667pt;}
.y24_c00289{bottom:203.046667pt;}
.y23_c00289{bottom:217.658667pt;}
.y22_c00289{bottom:232.270667pt;}
.y21_c00289{bottom:261.493333pt;}
.y20_c00289{bottom:276.105333pt;}
.y1f_c00289{bottom:290.717333pt;}
.y1e_c00289{bottom:319.941333pt;}
.y1d_c00289{bottom:334.553333pt;}
.y1c_c00289{bottom:349.165333pt;}
.y1b_c00289{bottom:363.777333pt;}
.y1a_c00289{bottom:378.389333pt;}
.y19_c00289{bottom:393.000000pt;}
.y18_c00289{bottom:407.612000pt;}
.y17_c00289{bottom:451.448000pt;}
.y16_c00289{bottom:466.060000pt;}
.y15_c00289{bottom:480.672000pt;}
.y14_c00289{bottom:495.284000pt;}
.y13_c00289{bottom:509.896000pt;}
.y12_c00289{bottom:524.508000pt;}
.y11_c00289{bottom:539.118667pt;}
.y10_c00289{bottom:553.730667pt;}
.yf_c00289{bottom:568.342667pt;}
.ye_c00289{bottom:582.954667pt;}
.yd_c00289{bottom:597.566667pt;}
.yc_c00289{bottom:612.178667pt;}
.yb_c00289{bottom:626.790667pt;}
.ya_c00289{bottom:641.402667pt;}
.y9_c00289{bottom:656.014667pt;}
.y8_c00289{bottom:670.626667pt;}
.y7_c00289{bottom:699.849333pt;}
.y6_c00289{bottom:714.461333pt;}
.y5_c00289{bottom:758.297333pt;}
.y4_c00289{bottom:772.909333pt;}
.y3_c00289{bottom:787.189333pt;}
.y2_c00289{bottom:1015.049333pt;}
.y1_c00289{bottom:1030.989333pt;}
.h3_c00289{height:31.280681pt;}
.h4_c00289{height:32.006363pt;}
.h2_c00289{height:46.518078pt;}
.h0_c00289{height:1122.520000pt;}
.h1_c00289{height:1122.666667pt;}
.w0_c00289{width:793.706667pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:113.385333pt;}
.x2_c00289{left:121.886667pt;}
.x3_c00289{left:127.796000pt;}
.x4_c00289{left:157.340000pt;}
.x5_c00289{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6ca90fb2beb84fe18e1bd84.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.893555;font-style:normal;font-weight:normal;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_17e9c7e9c61ade5855868d45.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.083496;font-style:normal;font-weight:normal;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_866db1254469ae2c198ec6b5.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.102051;font-style:normal;font-weight:normal;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_4feac1755a0c015ec376ab7d.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_2cf4562a3d8cd20a5b902fb7.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.048828;font-style: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;}
.ls4_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.087998px;}
.ls2_c00290{letter-spacing:0.098482px;}
.ls1_c00290{letter-spacing:0.104482px;}
.ls3_c00290{letter-spacing:26.732482px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00290{word-spacing:-26.575517px;}
.ws11_c00290{word-spacing:-26.487518px;}
.ws8_c00290{word-spacing:-21.220338px;}
.ws7_c00290{word-spacing:-21.160562px;}
.wsa_c00290{word-spacing:-20.431704px;}
.ws9_c00290{word-spacing:-20.383480px;}
.ws5_c00290{word-spacing:-18.769538px;}
.wsf_c00290{word-spacing:-17.872904px;}
.wsb_c00290{word-spacing:-16.079636px;}
.wsc_c00290{word-spacing:-15.242778px;}
.ws4_c00290{word-spacing:-14.943900px;}
.wse_c00290{word-spacing:-13.031081px;}
.ws6_c00290{word-spacing:-11.202144px;}
.ws1_c00290{word-spacing:-9.988424px;}
.ws3_c00290{word-spacing:-9.987499px;}
.wsd_c00290{word-spacing:-7.981015px;}
.ws15_c00290{word-spacing:0.000000px;}
.ws12_c00290{word-spacing:0.043999px;}
.ws16_c00290{word-spacing:0.053933px;}
.ws10_c00290{word-spacing:0.175997px;}
.ws13_c00290{word-spacing:0.213446px;}
.ws14_c00290{word-spacing:0.219446px;}
.ws0_c00290{word-spacing:43.038600px;}
._0_c00290{margin-left:-6.369713px;}
._7_c00290{margin-left:-3.526760px;}
._1_c00290{margin-left:-1.549390px;}
._4_c00290{width:1.033036px;}
._2_c00290{width:19.935816px;}
._6_c00290{width:21.997421px;}
._3_c00290{width:30.605107px;}
._5_c00290{width:37.001096px;}
.fc6_c00290{color:rgb(0,0,207);}
.fc5_c00290{color:rgb(79,153,5);}
.fc3_c00290{color:rgb(33,74,135);}
.fc2_c00290{color:rgb(143,89,3);}
.fc4_c00290{color:rgb(207,92,0);}
.fc1_c00290{color:rgb(6,69,173);}
.fc0_c00290{color:rgb(0,0,0);}
.fs2_c00290{font-size:43.999200px;}
.fs1_c00290{font-size:59.775600px;}
.fs0_c00290{font-size:86.077200px;}
.y0_c00290{bottom:0.000000px;}
.y1d_c00290{bottom:44.250000px;}
.y1c_c00290{bottom:103.420500px;}
.y1b_c00290{bottom:119.859000px;}
.y1a_c00290{bottom:136.297500px;}
.y19_c00290{bottom:169.174500px;}
.y18_c00290{bottom:185.613000px;}
.y17_c00290{bottom:218.490000px;}
.y16_c00290{bottom:234.927000px;}
.y15_c00290{bottom:251.365500px;}
.y14_c00290{bottom:300.681000px;}
.y13_c00290{bottom:317.119500px;}
.y12_c00290{bottom:333.558000px;}
.y11_c00290{bottom:349.996500px;}
.y10_c00290{bottom:366.435000px;}
.yf_c00290{bottom:399.310500px;}
.ye_c00290{bottom:415.749000px;}
.yd_c00290{bottom:431.814000px;}
.yc_c00290{bottom:478.861500px;}
.yb_c00290{bottom:496.794000px;}
.ya_c00290{bottom:514.726500px;}
.y9_c00290{bottom:532.659000px;}
.y8_c00290{bottom:550.591500px;}
.y7_c00290{bottom:568.524000px;}
.y6_c00290{bottom:586.458000px;}
.y5_c00290{bottom:613.162500px;}
.y4_c00290{bottom:639.868500px;}
.y3_c00290{bottom:666.574500px;}
.y2_c00290{bottom:693.280500px;}
.y1_c00290{bottom:735.360000px;}
.h5_c00290{height:35.190766px;}
.h6_c00290{height:36.007158px;}
.h3_c00290{height:40.511979px;}
.h4_c00290{height:52.332837px;}
.h2_c00290{height:58.337477px;}
.h0_c00290{height:1262.835000px;}
.h1_c00290{height:1263.000000px;}
.w0_c00290{width:892.920000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:127.558500px;}
.x2_c00290{left:137.122500px;}
.x3_c00290{left:435.249000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls4_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.078221pt;}
.ls2_c00290{letter-spacing:0.087539pt;}
.ls1_c00290{letter-spacing:0.092873pt;}
.ls3_c00290{letter-spacing:23.762206pt;}
.ws2_c00290{word-spacing:-23.622682pt;}
.ws11_c00290{word-spacing:-23.544461pt;}
.ws8_c00290{word-spacing:-18.862523pt;}
.ws7_c00290{word-spacing:-18.809389pt;}
.wsa_c00290{word-spacing:-18.161515pt;}
.ws9_c00290{word-spacing:-18.118649pt;}
.ws5_c00290{word-spacing:-16.684034pt;}
.wsf_c00290{word-spacing:-15.887026pt;}
.wsb_c00290{word-spacing:-14.293010pt;}
.wsc_c00290{word-spacing:-13.549136pt;}
.ws4_c00290{word-spacing:-13.283467pt;}
.wse_c00290{word-spacing:-11.583183pt;}
.ws6_c00290{word-spacing:-9.957461pt;}
.ws1_c00290{word-spacing:-8.878599pt;}
.ws3_c00290{word-spacing:-8.877777pt;}
.wsd_c00290{word-spacing:-7.094236pt;}
.ws15_c00290{word-spacing:0.000000pt;}
.ws12_c00290{word-spacing:0.039110pt;}
.ws16_c00290{word-spacing:0.047940pt;}
.ws10_c00290{word-spacing:0.156442pt;}
.ws13_c00290{word-spacing:0.189730pt;}
.ws14_c00290{word-spacing:0.195063pt;}
.ws0_c00290{word-spacing:38.256533pt;}
._0_c00290{margin-left:-5.661967pt;}
._7_c00290{margin-left:-3.134898pt;}
._1_c00290{margin-left:-1.377235pt;}
._4_c00290{width:0.918254pt;}
._2_c00290{width:17.720725pt;}
._6_c00290{width:19.553263pt;}
._3_c00290{width:27.204540pt;}
._5_c00290{width:32.889863pt;}
.fs2_c00290{font-size:39.110400pt;}
.fs1_c00290{font-size:53.133867pt;}
.fs0_c00290{font-size:76.513067pt;}
.y0_c00290{bottom:0.000000pt;}
.y1d_c00290{bottom:39.333333pt;}
.y1c_c00290{bottom:91.929333pt;}
.y1b_c00290{bottom:106.541333pt;}
.y1a_c00290{bottom:121.153333pt;}
.y19_c00290{bottom:150.377333pt;}
.y18_c00290{bottom:164.989333pt;}
.y17_c00290{bottom:194.213333pt;}
.y16_c00290{bottom:208.824000pt;}
.y15_c00290{bottom:223.436000pt;}
.y14_c00290{bottom:267.272000pt;}
.y13_c00290{bottom:281.884000pt;}
.y12_c00290{bottom:296.496000pt;}
.y11_c00290{bottom:311.108000pt;}
.y10_c00290{bottom:325.720000pt;}
.yf_c00290{bottom:354.942667pt;}
.ye_c00290{bottom:369.554667pt;}
.yd_c00290{bottom:383.834667pt;}
.yc_c00290{bottom:425.654667pt;}
.yb_c00290{bottom:441.594667pt;}
.ya_c00290{bottom:457.534667pt;}
.y9_c00290{bottom:473.474667pt;}
.y8_c00290{bottom:489.414667pt;}
.y7_c00290{bottom:505.354667pt;}
.y6_c00290{bottom:521.296000pt;}
.y5_c00290{bottom:545.033333pt;}
.y4_c00290{bottom:568.772000pt;}
.y3_c00290{bottom:592.510667pt;}
.y2_c00290{bottom:616.249333pt;}
.y1_c00290{bottom:653.653333pt;}
.h5_c00290{height:31.280681pt;}
.h6_c00290{height:32.006363pt;}
.h3_c00290{height:36.010648pt;}
.h4_c00290{height:46.518078pt;}
.h2_c00290{height:51.855535pt;}
.h0_c00290{height:1122.520000pt;}
.h1_c00290{height:1122.666667pt;}
.w0_c00290{width:793.706667pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:113.385333pt;}
.x2_c00290{left:121.886667pt;}
.x3_c00290{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96719b733130d9d53ba13613.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.083496;font-style:normal;font-weight:normal;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_31aef807469d14ff6ecff391.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_66fb8b8232561928728e81c4.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00291;src:url('chunks/assets/font_fd689017a87c2924f77eec77.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls4_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:0.087998px;}
.ls2_c00291{letter-spacing:0.098482px;}
.ls1_c00291{letter-spacing:0.104482px;}
.ls3_c00291{letter-spacing:26.690482px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-26.575517px;}
.ws1_c00291{word-spacing:-26.487518px;}
.ws2_c00291{word-spacing:0.000000px;}
.ws8_c00291{word-spacing:0.026966px;}
.ws9_c00291{word-spacing:0.043999px;}
.ws6_c00291{word-spacing:0.046284px;}
.ws3_c00291{word-spacing:0.056767px;}
.ws5_c00291{word-spacing:0.073250px;}
.ws7_c00291{word-spacing:0.083734px;}
.ws4_c00291{word-spacing:0.202963px;}
.wsb_c00291{word-spacing:0.213446px;}
.wsa_c00291{word-spacing:0.219446px;}
._5_c00291{width:1.041538px;}
._0_c00291{width:53.503027px;}
._1_c00291{width:79.858548px;}
._3_c00291{width:106.434065px;}
._2_c00291{width:133.452408px;}
._4_c00291{width:186.179933px;}
.fc5_c00291{color:rgb(79,153,5);}
.fc4_c00291{color:rgb(0,0,207);}
.fc3_c00291{color:rgb(207,92,0);}
.fc2_c00291{color:rgb(33,74,135);}
.fc1_c00291{color:rgb(143,89,3);}
.fc0_c00291{color:rgb(0,0,0);}
.fs0_c00291{font-size:43.999200px;}
.fs1_c00291{font-size:59.775600px;}
.y0_c00291{bottom:0.000000px;}
.y2b_c00291{bottom:44.250000px;}
.y2a_c00291{bottom:387.259500px;}
.y29_c00291{bottom:403.698000px;}
.y28_c00291{bottom:420.136500px;}
.y27_c00291{bottom:436.575000px;}
.y26_c00291{bottom:453.013500px;}
.y25_c00291{bottom:469.452000px;}
.y24_c00291{bottom:485.890500px;}
.y23_c00291{bottom:502.329000px;}
.y22_c00291{bottom:518.767500px;}
.y21_c00291{bottom:535.206000px;}
.y20_c00291{bottom:551.643000px;}
.y1f_c00291{bottom:584.520000px;}
.y1e_c00291{bottom:600.958500px;}
.y1d_c00291{bottom:617.397000px;}
.y1c_c00291{bottom:650.274000px;}
.y1b_c00291{bottom:666.712500px;}
.y1a_c00291{bottom:683.151000px;}
.y19_c00291{bottom:699.589500px;}
.y18_c00291{bottom:716.028000px;}
.y17_c00291{bottom:732.465000px;}
.y16_c00291{bottom:748.903500px;}
.y15_c00291{bottom:765.342000px;}
.y14_c00291{bottom:781.780500px;}
.y13_c00291{bottom:798.219000px;}
.y12_c00291{bottom:814.657500px;}
.y11_c00291{bottom:831.096000px;}
.y10_c00291{bottom:847.534500px;}
.yf_c00291{bottom:863.973000px;}
.ye_c00291{bottom:880.411500px;}
.yd_c00291{bottom:896.848500px;}
.yc_c00291{bottom:913.287000px;}
.yb_c00291{bottom:929.725500px;}
.ya_c00291{bottom:946.164000px;}
.y9_c00291{bottom:995.479500px;}
.y8_c00291{bottom:1011.918000px;}
.y7_c00291{bottom:1028.356500px;}
.y6_c00291{bottom:1044.795000px;}
.y5_c00291{bottom:1061.232000px;}
.y4_c00291{bottom:1094.109000px;}
.y3_c00291{bottom:1110.547500px;}
.y2_c00291{bottom:1143.424500px;}
.y1_c00291{bottom:1159.863000px;}
.h3_c00291{height:35.190766px;}
.h2_c00291{height:36.007158px;}
.h4_c00291{height:52.332837px;}
.h0_c00291{height:1262.835000px;}
.h1_c00291{height:1263.000000px;}
.w0_c00291{width:892.920000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:137.122500px;}
.x3_c00291{left:143.770500px;}
.x4_c00291{left:177.007500px;}
.x2_c00291{left:236.832000px;}
.x5_c00291{left:435.249000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls4_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:0.078221pt;}
.ls2_c00291{letter-spacing:0.087539pt;}
.ls1_c00291{letter-spacing:0.092873pt;}
.ls3_c00291{letter-spacing:23.724873pt;}
.ws0_c00291{word-spacing:-23.622682pt;}
.ws1_c00291{word-spacing:-23.544461pt;}
.ws2_c00291{word-spacing:0.000000pt;}
.ws8_c00291{word-spacing:0.023970pt;}
.ws9_c00291{word-spacing:0.039110pt;}
.ws6_c00291{word-spacing:0.041141pt;}
.ws3_c00291{word-spacing:0.050460pt;}
.ws5_c00291{word-spacing:0.065111pt;}
.ws7_c00291{word-spacing:0.074430pt;}
.ws4_c00291{word-spacing:0.180412pt;}
.wsb_c00291{word-spacing:0.189730pt;}
.wsa_c00291{word-spacing:0.195063pt;}
._5_c00291{width:0.925811pt;}
._0_c00291{width:47.558246pt;}
._1_c00291{width:70.985376pt;}
._3_c00291{width:94.608058pt;}
._2_c00291{width:118.624363pt;}
._4_c00291{width:165.493274pt;}
.fs0_c00291{font-size:39.110400pt;}
.fs1_c00291{font-size:53.133867pt;}
.y0_c00291{bottom:0.000000pt;}
.y2b_c00291{bottom:39.333333pt;}
.y2a_c00291{bottom:344.230667pt;}
.y29_c00291{bottom:358.842667pt;}
.y28_c00291{bottom:373.454667pt;}
.y27_c00291{bottom:388.066667pt;}
.y26_c00291{bottom:402.678667pt;}
.y25_c00291{bottom:417.290667pt;}
.y24_c00291{bottom:431.902667pt;}
.y23_c00291{bottom:446.514667pt;}
.y22_c00291{bottom:461.126667pt;}
.y21_c00291{bottom:475.738667pt;}
.y20_c00291{bottom:490.349333pt;}
.y1f_c00291{bottom:519.573333pt;}
.y1e_c00291{bottom:534.185333pt;}
.y1d_c00291{bottom:548.797333pt;}
.y1c_c00291{bottom:578.021333pt;}
.y1b_c00291{bottom:592.633333pt;}
.y1a_c00291{bottom:607.245333pt;}
.y19_c00291{bottom:621.857333pt;}
.y18_c00291{bottom:636.469333pt;}
.y17_c00291{bottom:651.080000pt;}
.y16_c00291{bottom:665.692000pt;}
.y15_c00291{bottom:680.304000pt;}
.y14_c00291{bottom:694.916000pt;}
.y13_c00291{bottom:709.528000pt;}
.y12_c00291{bottom:724.140000pt;}
.y11_c00291{bottom:738.752000pt;}
.y10_c00291{bottom:753.364000pt;}
.yf_c00291{bottom:767.976000pt;}
.ye_c00291{bottom:782.588000pt;}
.yd_c00291{bottom:797.198667pt;}
.yc_c00291{bottom:811.810667pt;}
.yb_c00291{bottom:826.422667pt;}
.ya_c00291{bottom:841.034667pt;}
.y9_c00291{bottom:884.870667pt;}
.y8_c00291{bottom:899.482667pt;}
.y7_c00291{bottom:914.094667pt;}
.y6_c00291{bottom:928.706667pt;}
.y5_c00291{bottom:943.317333pt;}
.y4_c00291{bottom:972.541333pt;}
.y3_c00291{bottom:987.153333pt;}
.y2_c00291{bottom:1016.377333pt;}
.y1_c00291{bottom:1030.989333pt;}
.h3_c00291{height:31.280681pt;}
.h2_c00291{height:32.006363pt;}
.h4_c00291{height:46.518078pt;}
.h0_c00291{height:1122.520000pt;}
.h1_c00291{height:1122.666667pt;}
.w0_c00291{width:793.706667pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:121.886667pt;}
.x3_c00291{left:127.796000pt;}
.x4_c00291{left:157.340000pt;}
.x2_c00291{left:210.517333pt;}
.x5_c00291{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6decea8cbddf9fd2ac6c565.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:0.893555;font-style:normal;font-weight:normal;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_aee3d76df46a68130614e217.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.083496;font-style:normal;font-weight:normal;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_f2538f0eddbc710afebf5df8.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.048828;font-style: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;}
.ls3_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.087998px;}
.ls2_c00292{letter-spacing:0.098482px;}
.ls1_c00292{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00292{word-spacing:-33.713438px;}
.ws2_c00292{word-spacing:-26.575517px;}
.wse_c00292{word-spacing:-26.487518px;}
.ws5_c00292{word-spacing:-18.769538px;}
.ws4_c00292{word-spacing:-14.943900px;}
.ws7_c00292{word-spacing:-14.465695px;}
.wsa_c00292{word-spacing:-14.107042px;}
.wsb_c00292{word-spacing:-12.074671px;}
.ws9_c00292{word-spacing:-11.716018px;}
.ws8_c00292{word-spacing:-11.656242px;}
.ws1_c00292{word-spacing:-9.988424px;}
.ws3_c00292{word-spacing:-9.987499px;}
.ws6_c00292{word-spacing:-1.386144px;}
.ws12_c00292{word-spacing:0.000000px;}
.wsf_c00292{word-spacing:0.043999px;}
.ws15_c00292{word-spacing:0.056767px;}
.ws13_c00292{word-spacing:0.073250px;}
.ws14_c00292{word-spacing:0.083734px;}
.wsd_c00292{word-spacing:0.175997px;}
.ws16_c00292{word-spacing:0.202963px;}
.ws10_c00292{word-spacing:0.213446px;}
.ws11_c00292{word-spacing:0.219446px;}
.ws0_c00292{word-spacing:43.038600px;}
._0_c00292{margin-left:-6.369713px;}
._3_c00292{margin-left:-3.376852px;}
._1_c00292{margin-left:-1.549390px;}
._6_c00292{width:1.005737px;}
._2_c00292{width:19.935816px;}
._4_c00292{width:23.790689px;}
._5_c00292{width:40.109428px;}
._8_c00292{width:53.283031px;}
._7_c00292{width:79.858548px;}
._9_c00292{width:133.452408px;}
.fc6_c00292{color:rgb(0,0,207);}
.fc5_c00292{color:rgb(79,153,5);}
.fc3_c00292{color:rgb(33,74,135);}
.fc2_c00292{color:rgb(143,89,3);}
.fc4_c00292{color:rgb(207,92,0);}
.fc1_c00292{color:rgb(6,69,173);}
.fc0_c00292{color:rgb(0,0,0);}
.fs2_c00292{font-size:43.999200px;}
.fs1_c00292{font-size:59.775600px;}
.fs0_c00292{font-size:86.077200px;}
.y0_c00292{bottom:0.000000px;}
.y20_c00292{bottom:44.250000px;}
.y1f_c00292{bottom:86.982000px;}
.y1e_c00292{bottom:103.420500px;}
.y1d_c00292{bottom:119.859000px;}
.y1c_c00292{bottom:136.297500px;}
.y1b_c00292{bottom:152.736000px;}
.y1a_c00292{bottom:169.174500px;}
.y19_c00292{bottom:185.613000px;}
.y18_c00292{bottom:202.051500px;}
.y17_c00292{bottom:218.490000px;}
.y16_c00292{bottom:234.927000px;}
.y15_c00292{bottom:251.365500px;}
.y14_c00292{bottom:267.804000px;}
.y13_c00292{bottom:284.242500px;}
.y12_c00292{bottom:300.681000px;}
.y11_c00292{bottom:317.119500px;}
.y10_c00292{bottom:349.996500px;}
.yf_c00292{bottom:366.435000px;}
.ye_c00292{bottom:415.749000px;}
.yd_c00292{bottom:432.187500px;}
.yc_c00292{bottom:448.252500px;}
.yb_c00292{bottom:493.890000px;}
.ya_c00292{bottom:511.822500px;}
.y9_c00292{bottom:529.756500px;}
.y8_c00292{bottom:547.689000px;}
.y7_c00292{bottom:565.621500px;}
.y6_c00292{bottom:583.554000px;}
.y5_c00292{bottom:610.633500px;}
.y4_c00292{bottom:637.714500px;}
.y3_c00292{bottom:664.794000px;}
.y2_c00292{bottom:691.873500px;}
.y1_c00292{bottom:734.407500px;}
.h5_c00292{height:35.190766px;}
.h6_c00292{height:36.007158px;}
.h3_c00292{height:40.511979px;}
.h4_c00292{height:52.332837px;}
.h2_c00292{height:58.337477px;}
.h0_c00292{height:1262.835000px;}
.h1_c00292{height:1263.000000px;}
.w0_c00292{width:892.920000px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:127.558500px;}
.x2_c00292{left:137.122500px;}
.x3_c00292{left:143.770500px;}
.x4_c00292{left:435.249000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls3_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.078221pt;}
.ls2_c00292{letter-spacing:0.087539pt;}
.ls1_c00292{letter-spacing:0.092873pt;}
.wsc_c00292{word-spacing:-29.967501pt;}
.ws2_c00292{word-spacing:-23.622682pt;}
.wse_c00292{word-spacing:-23.544461pt;}
.ws5_c00292{word-spacing:-16.684034pt;}
.ws4_c00292{word-spacing:-13.283467pt;}
.ws7_c00292{word-spacing:-12.858396pt;}
.wsa_c00292{word-spacing:-12.539593pt;}
.wsb_c00292{word-spacing:-10.733041pt;}
.ws9_c00292{word-spacing:-10.414238pt;}
.ws8_c00292{word-spacing:-10.361104pt;}
.ws1_c00292{word-spacing:-8.878599pt;}
.ws3_c00292{word-spacing:-8.877777pt;}
.ws6_c00292{word-spacing:-1.232128pt;}
.ws12_c00292{word-spacing:0.000000pt;}
.wsf_c00292{word-spacing:0.039110pt;}
.ws15_c00292{word-spacing:0.050460pt;}
.ws13_c00292{word-spacing:0.065111pt;}
.ws14_c00292{word-spacing:0.074430pt;}
.wsd_c00292{word-spacing:0.156442pt;}
.ws16_c00292{word-spacing:0.180412pt;}
.ws10_c00292{word-spacing:0.189730pt;}
.ws11_c00292{word-spacing:0.195063pt;}
.ws0_c00292{word-spacing:38.256533pt;}
._0_c00292{margin-left:-5.661967pt;}
._3_c00292{margin-left:-3.001646pt;}
._1_c00292{margin-left:-1.377235pt;}
._6_c00292{width:0.893988pt;}
._2_c00292{width:17.720725pt;}
._4_c00292{width:21.147279pt;}
._5_c00292{width:35.652825pt;}
._8_c00292{width:47.362694pt;}
._7_c00292{width:70.985376pt;}
._9_c00292{width:118.624363pt;}
.fs2_c00292{font-size:39.110400pt;}
.fs1_c00292{font-size:53.133867pt;}
.fs0_c00292{font-size:76.513067pt;}
.y0_c00292{bottom:0.000000pt;}
.y20_c00292{bottom:39.333333pt;}
.y1f_c00292{bottom:77.317333pt;}
.y1e_c00292{bottom:91.929333pt;}
.y1d_c00292{bottom:106.541333pt;}
.y1c_c00292{bottom:121.153333pt;}
.y1b_c00292{bottom:135.765333pt;}
.y1a_c00292{bottom:150.377333pt;}
.y19_c00292{bottom:164.989333pt;}
.y18_c00292{bottom:179.601333pt;}
.y17_c00292{bottom:194.213333pt;}
.y16_c00292{bottom:208.824000pt;}
.y15_c00292{bottom:223.436000pt;}
.y14_c00292{bottom:238.048000pt;}
.y13_c00292{bottom:252.660000pt;}
.y12_c00292{bottom:267.272000pt;}
.y11_c00292{bottom:281.884000pt;}
.y10_c00292{bottom:311.108000pt;}
.yf_c00292{bottom:325.720000pt;}
.ye_c00292{bottom:369.554667pt;}
.yd_c00292{bottom:384.166667pt;}
.yc_c00292{bottom:398.446667pt;}
.yb_c00292{bottom:439.013333pt;}
.ya_c00292{bottom:454.953333pt;}
.y9_c00292{bottom:470.894667pt;}
.y8_c00292{bottom:486.834667pt;}
.y7_c00292{bottom:502.774667pt;}
.y6_c00292{bottom:518.714667pt;}
.y5_c00292{bottom:542.785333pt;}
.y4_c00292{bottom:566.857333pt;}
.y3_c00292{bottom:590.928000pt;}
.y2_c00292{bottom:614.998667pt;}
.y1_c00292{bottom:652.806667pt;}
.h5_c00292{height:31.280681pt;}
.h6_c00292{height:32.006363pt;}
.h3_c00292{height:36.010648pt;}
.h4_c00292{height:46.518078pt;}
.h2_c00292{height:51.855535pt;}
.h0_c00292{height:1122.520000pt;}
.h1_c00292{height:1122.666667pt;}
.w0_c00292{width:793.706667pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:113.385333pt;}
.x2_c00292{left:121.886667pt;}
.x3_c00292{left:127.796000pt;}
.x4_c00292{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_603ca1e2180fd0a6807116d6.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.048828;font-style:normal;font-weight:normal;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_fb3868e4103a3fa852ada77b.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.014648;font-style:normal;font-weight:normal;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_a0510894a480a415eef428b8.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:0.893555;font-style:normal;font-weight:normal;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_884b4e87d2e92e2703e08c55.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.102051;font-style: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;}
.ls4_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.087998px;}
.ls2_c00293{letter-spacing:0.098482px;}
.ls3_c00293{letter-spacing:0.104482px;}
.ls1_c00293{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00293{word-spacing:-26.575517px;}
.ws4_c00293{word-spacing:-26.487518px;}
.wsa_c00293{word-spacing:-18.769538px;}
.wsc_c00293{word-spacing:-16.019861px;}
.ws9_c00293{word-spacing:-14.943900px;}
.wsf_c00293{word-spacing:-14.107042px;}
.ws10_c00293{word-spacing:-12.074671px;}
.wse_c00293{word-spacing:-11.716018px;}
.wsd_c00293{word-spacing:-11.656242px;}
.ws7_c00293{word-spacing:-9.988424px;}
.ws8_c00293{word-spacing:-9.987499px;}
.wsb_c00293{word-spacing:-4.536144px;}
.ws3_c00293{word-spacing:0.000000px;}
.ws0_c00293{word-spacing:0.043999px;}
.ws5_c00293{word-spacing:0.213446px;}
.ws1_c00293{word-spacing:0.219446px;}
.ws6_c00293{word-spacing:43.038600px;}
._2_c00293{margin-left:-6.369713px;}
._5_c00293{margin-left:-3.376852px;}
._3_c00293{margin-left:-1.549390px;}
._1_c00293{width:1.041538px;}
._4_c00293{width:19.935816px;}
._6_c00293{width:23.790689px;}
._7_c00293{width:40.109428px;}
._0_c00293{width:53.503027px;}
.fc5_c00293{color:rgb(79,153,5);}
.fc4_c00293{color:rgb(143,89,3);}
.fc3_c00293{color:rgb(0,0,0);}
.fc6_c00293{color:rgb(6,69,173);}
.fc2_c00293{color:rgb(207,92,0);}
.fc1_c00293{color:rgb(0,0,207);}
.fc0_c00293{color:rgb(33,74,135);}
.fs0_c00293{font-size:43.999200px;}
.fs2_c00293{font-size:59.775600px;}
.fs1_c00293{font-size:86.077200px;}
.y0_c00293{bottom:0.000000px;}
.y20_c00293{bottom:44.250000px;}
.y1f_c00293{bottom:82.051500px;}
.y1e_c00293{bottom:99.984000px;}
.y1d_c00293{bottom:117.916500px;}
.y1c_c00293{bottom:135.849000px;}
.y1b_c00293{bottom:162.501000px;}
.y1a_c00293{bottom:189.151500px;}
.y19_c00293{bottom:215.802000px;}
.y18_c00293{bottom:242.454000px;}
.y17_c00293{bottom:284.478000px;}
.y16_c00293{bottom:748.903500px;}
.y15_c00293{bottom:765.342000px;}
.y14_c00293{bottom:781.780500px;}
.y13_c00293{bottom:798.219000px;}
.y12_c00293{bottom:814.657500px;}
.y11_c00293{bottom:831.096000px;}
.y10_c00293{bottom:847.534500px;}
.yf_c00293{bottom:863.973000px;}
.ye_c00293{bottom:880.411500px;}
.yd_c00293{bottom:896.848500px;}
.yc_c00293{bottom:913.287000px;}
.yb_c00293{bottom:946.164000px;}
.ya_c00293{bottom:962.602500px;}
.y9_c00293{bottom:979.041000px;}
.y8_c00293{bottom:1011.918000px;}
.y7_c00293{bottom:1028.356500px;}
.y6_c00293{bottom:1044.795000px;}
.y5_c00293{bottom:1061.232000px;}
.y4_c00293{bottom:1077.670500px;}
.y3_c00293{bottom:1094.109000px;}
.y2_c00293{bottom:1110.547500px;}
.y1_c00293{bottom:1159.863000px;}
.h3_c00293{height:35.190766px;}
.h2_c00293{height:36.007158px;}
.h5_c00293{height:40.511979px;}
.h6_c00293{height:52.332837px;}
.h4_c00293{height:58.337477px;}
.h0_c00293{height:1262.835000px;}
.h1_c00293{height:1263.000000px;}
.w0_c00293{width:892.920000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x4_c00293{left:127.558500px;}
.x2_c00293{left:137.122500px;}
.x1_c00293{left:143.770500px;}
.x3_c00293{left:177.007500px;}
.x5_c00293{left:435.249000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls4_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.078221pt;}
.ls2_c00293{letter-spacing:0.087539pt;}
.ls3_c00293{letter-spacing:0.092873pt;}
.ls1_c00293{letter-spacing:23.724873pt;}
.ws2_c00293{word-spacing:-23.622682pt;}
.ws4_c00293{word-spacing:-23.544461pt;}
.wsa_c00293{word-spacing:-16.684034pt;}
.wsc_c00293{word-spacing:-14.239876pt;}
.ws9_c00293{word-spacing:-13.283467pt;}
.wsf_c00293{word-spacing:-12.539593pt;}
.ws10_c00293{word-spacing:-10.733041pt;}
.wse_c00293{word-spacing:-10.414238pt;}
.wsd_c00293{word-spacing:-10.361104pt;}
.ws7_c00293{word-spacing:-8.878599pt;}
.ws8_c00293{word-spacing:-8.877777pt;}
.wsb_c00293{word-spacing:-4.032128pt;}
.ws3_c00293{word-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.039110pt;}
.ws5_c00293{word-spacing:0.189730pt;}
.ws1_c00293{word-spacing:0.195063pt;}
.ws6_c00293{word-spacing:38.256533pt;}
._2_c00293{margin-left:-5.661967pt;}
._5_c00293{margin-left:-3.001646pt;}
._3_c00293{margin-left:-1.377235pt;}
._1_c00293{width:0.925811pt;}
._4_c00293{width:17.720725pt;}
._6_c00293{width:21.147279pt;}
._7_c00293{width:35.652825pt;}
._0_c00293{width:47.558246pt;}
.fs0_c00293{font-size:39.110400pt;}
.fs2_c00293{font-size:53.133867pt;}
.fs1_c00293{font-size:76.513067pt;}
.y0_c00293{bottom:0.000000pt;}
.y20_c00293{bottom:39.333333pt;}
.y1f_c00293{bottom:72.934667pt;}
.y1e_c00293{bottom:88.874667pt;}
.y1d_c00293{bottom:104.814667pt;}
.y1c_c00293{bottom:120.754667pt;}
.y1b_c00293{bottom:144.445333pt;}
.y1a_c00293{bottom:168.134667pt;}
.y19_c00293{bottom:191.824000pt;}
.y18_c00293{bottom:215.514667pt;}
.y17_c00293{bottom:252.869333pt;}
.y16_c00293{bottom:665.692000pt;}
.y15_c00293{bottom:680.304000pt;}
.y14_c00293{bottom:694.916000pt;}
.y13_c00293{bottom:709.528000pt;}
.y12_c00293{bottom:724.140000pt;}
.y11_c00293{bottom:738.752000pt;}
.y10_c00293{bottom:753.364000pt;}
.yf_c00293{bottom:767.976000pt;}
.ye_c00293{bottom:782.588000pt;}
.yd_c00293{bottom:797.198667pt;}
.yc_c00293{bottom:811.810667pt;}
.yb_c00293{bottom:841.034667pt;}
.ya_c00293{bottom:855.646667pt;}
.y9_c00293{bottom:870.258667pt;}
.y8_c00293{bottom:899.482667pt;}
.y7_c00293{bottom:914.094667pt;}
.y6_c00293{bottom:928.706667pt;}
.y5_c00293{bottom:943.317333pt;}
.y4_c00293{bottom:957.929333pt;}
.y3_c00293{bottom:972.541333pt;}
.y2_c00293{bottom:987.153333pt;}
.y1_c00293{bottom:1030.989333pt;}
.h3_c00293{height:31.280681pt;}
.h2_c00293{height:32.006363pt;}
.h5_c00293{height:36.010648pt;}
.h6_c00293{height:46.518078pt;}
.h4_c00293{height:51.855535pt;}
.h0_c00293{height:1122.520000pt;}
.h1_c00293{height:1122.666667pt;}
.w0_c00293{width:793.706667pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x4_c00293{left:113.385333pt;}
.x2_c00293{left:121.886667pt;}
.x1_c00293{left:127.796000pt;}
.x3_c00293{left:157.340000pt;}
.x5_c00293{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_296055eb4926b2cce85b5004.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.102051;font-style:normal;font-weight:normal;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_7fe3663282dec26943629179.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.048828;font-style:normal;font-weight:normal;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_90d5001cec61ae798c719474.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls4_c00294{letter-spacing:0.000000px;}
.ls1_c00294{letter-spacing:0.087998px;}
.ls2_c00294{letter-spacing:0.098482px;}
.ls0_c00294{letter-spacing:0.104482px;}
.ls3_c00294{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00294{word-spacing:-26.575517px;}
.ws3_c00294{word-spacing:-26.487518px;}
.ws0_c00294{word-spacing:-18.769538px;}
.ws8_c00294{word-spacing:0.000000px;}
.ws5_c00294{word-spacing:0.043999px;}
.wsb_c00294{word-spacing:0.056767px;}
.ws9_c00294{word-spacing:0.073250px;}
.wsa_c00294{word-spacing:0.083734px;}
.ws2_c00294{word-spacing:0.175997px;}
.wsc_c00294{word-spacing:0.202963px;}
.ws6_c00294{word-spacing:0.213446px;}
.ws7_c00294{word-spacing:0.219446px;}
._0_c00294{margin-left:-3.825638px;}
._1_c00294{width:1.005737px;}
._3_c00294{width:53.283031px;}
._2_c00294{width:79.858548px;}
._4_c00294{width:133.452408px;}
.fc5_c00294{color:rgb(0,0,207);}
.fc4_c00294{color:rgb(79,153,5);}
.fc3_c00294{color:rgb(207,92,0);}
.fc2_c00294{color:rgb(33,74,135);}
.fc1_c00294{color:rgb(143,89,3);}
.fc0_c00294{color:rgb(0,0,0);}
.fs1_c00294{font-size:43.999200px;}
.fs0_c00294{font-size:59.775600px;}
.y0_c00294{bottom:0.000000px;}
.y2d_c00294{bottom:44.250000px;}
.y2c_c00294{bottom:96.919500px;}
.y2b_c00294{bottom:113.358000px;}
.y2a_c00294{bottom:129.796500px;}
.y29_c00294{bottom:146.235000px;}
.y28_c00294{bottom:162.673500px;}
.y27_c00294{bottom:179.112000px;}
.y26_c00294{bottom:195.550500px;}
.y25_c00294{bottom:211.989000px;}
.y24_c00294{bottom:228.427500px;}
.y23_c00294{bottom:244.866000px;}
.y22_c00294{bottom:261.304500px;}
.y21_c00294{bottom:294.180000px;}
.y20_c00294{bottom:310.618500px;}
.y1f_c00294{bottom:327.057000px;}
.y1e_c00294{bottom:359.934000px;}
.y1d_c00294{bottom:376.372500px;}
.y1c_c00294{bottom:392.811000px;}
.y1b_c00294{bottom:409.249500px;}
.y1a_c00294{bottom:425.688000px;}
.y19_c00294{bottom:442.125000px;}
.y18_c00294{bottom:458.563500px;}
.y17_c00294{bottom:507.879000px;}
.y16_c00294{bottom:524.317500px;}
.y15_c00294{bottom:540.756000px;}
.y14_c00294{bottom:557.194500px;}
.y13_c00294{bottom:573.633000px;}
.y12_c00294{bottom:590.071500px;}
.y11_c00294{bottom:606.508500px;}
.y10_c00294{bottom:622.947000px;}
.yf_c00294{bottom:639.385500px;}
.ye_c00294{bottom:655.824000px;}
.yd_c00294{bottom:672.262500px;}
.yc_c00294{bottom:688.701000px;}
.yb_c00294{bottom:705.139500px;}
.ya_c00294{bottom:721.578000px;}
.y9_c00294{bottom:738.016500px;}
.y8_c00294{bottom:754.455000px;}
.y7_c00294{bottom:787.330500px;}
.y6_c00294{bottom:803.769000px;}
.y5_c00294{bottom:853.084500px;}
.y4_c00294{bottom:869.523000px;}
.y3_c00294{bottom:885.588000px;}
.y2_c00294{bottom:1141.930500px;}
.y1_c00294{bottom:1159.863000px;}
.h3_c00294{height:35.190766px;}
.h4_c00294{height:36.007158px;}
.h2_c00294{height:52.332837px;}
.h0_c00294{height:1262.835000px;}
.h1_c00294{height:1263.000000px;}
.w0_c00294{width:892.920000px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:127.558500px;}
.x2_c00294{left:137.122500px;}
.x3_c00294{left:143.770500px;}
.x4_c00294{left:177.007500px;}
.x5_c00294{left:435.249000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls4_c00294{letter-spacing:0.000000pt;}
.ls1_c00294{letter-spacing:0.078221pt;}
.ls2_c00294{letter-spacing:0.087539pt;}
.ls0_c00294{letter-spacing:0.092873pt;}
.ls3_c00294{letter-spacing:23.724873pt;}
.ws1_c00294{word-spacing:-29.967501pt;}
.ws4_c00294{word-spacing:-23.622682pt;}
.ws3_c00294{word-spacing:-23.544461pt;}
.ws0_c00294{word-spacing:-16.684034pt;}
.ws8_c00294{word-spacing:0.000000pt;}
.ws5_c00294{word-spacing:0.039110pt;}
.wsb_c00294{word-spacing:0.050460pt;}
.ws9_c00294{word-spacing:0.065111pt;}
.wsa_c00294{word-spacing:0.074430pt;}
.ws2_c00294{word-spacing:0.156442pt;}
.wsc_c00294{word-spacing:0.180412pt;}
.ws6_c00294{word-spacing:0.189730pt;}
.ws7_c00294{word-spacing:0.195063pt;}
._0_c00294{margin-left:-3.400567pt;}
._1_c00294{width:0.893988pt;}
._3_c00294{width:47.362694pt;}
._2_c00294{width:70.985376pt;}
._4_c00294{width:118.624363pt;}
.fs1_c00294{font-size:39.110400pt;}
.fs0_c00294{font-size:53.133867pt;}
.y0_c00294{bottom:0.000000pt;}
.y2d_c00294{bottom:39.333333pt;}
.y2c_c00294{bottom:86.150667pt;}
.y2b_c00294{bottom:100.762667pt;}
.y2a_c00294{bottom:115.374667pt;}
.y29_c00294{bottom:129.986667pt;}
.y28_c00294{bottom:144.598667pt;}
.y27_c00294{bottom:159.210667pt;}
.y26_c00294{bottom:173.822667pt;}
.y25_c00294{bottom:188.434667pt;}
.y24_c00294{bottom:203.046667pt;}
.y23_c00294{bottom:217.658667pt;}
.y22_c00294{bottom:232.270667pt;}
.y21_c00294{bottom:261.493333pt;}
.y20_c00294{bottom:276.105333pt;}
.y1f_c00294{bottom:290.717333pt;}
.y1e_c00294{bottom:319.941333pt;}
.y1d_c00294{bottom:334.553333pt;}
.y1c_c00294{bottom:349.165333pt;}
.y1b_c00294{bottom:363.777333pt;}
.y1a_c00294{bottom:378.389333pt;}
.y19_c00294{bottom:393.000000pt;}
.y18_c00294{bottom:407.612000pt;}
.y17_c00294{bottom:451.448000pt;}
.y16_c00294{bottom:466.060000pt;}
.y15_c00294{bottom:480.672000pt;}
.y14_c00294{bottom:495.284000pt;}
.y13_c00294{bottom:509.896000pt;}
.y12_c00294{bottom:524.508000pt;}
.y11_c00294{bottom:539.118667pt;}
.y10_c00294{bottom:553.730667pt;}
.yf_c00294{bottom:568.342667pt;}
.ye_c00294{bottom:582.954667pt;}
.yd_c00294{bottom:597.566667pt;}
.yc_c00294{bottom:612.178667pt;}
.yb_c00294{bottom:626.790667pt;}
.ya_c00294{bottom:641.402667pt;}
.y9_c00294{bottom:656.014667pt;}
.y8_c00294{bottom:670.626667pt;}
.y7_c00294{bottom:699.849333pt;}
.y6_c00294{bottom:714.461333pt;}
.y5_c00294{bottom:758.297333pt;}
.y4_c00294{bottom:772.909333pt;}
.y3_c00294{bottom:787.189333pt;}
.y2_c00294{bottom:1015.049333pt;}
.y1_c00294{bottom:1030.989333pt;}
.h3_c00294{height:31.280681pt;}
.h4_c00294{height:32.006363pt;}
.h2_c00294{height:46.518078pt;}
.h0_c00294{height:1122.520000pt;}
.h1_c00294{height:1122.666667pt;}
.w0_c00294{width:793.706667pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:113.385333pt;}
.x2_c00294{left:121.886667pt;}
.x3_c00294{left:127.796000pt;}
.x4_c00294{left:157.340000pt;}
.x5_c00294{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08517d81a299bcc8ff229cb2.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:0.893555;font-style:normal;font-weight:normal;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_dafbf13ba002b2f6c8120984.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.083496;font-style:normal;font-weight:normal;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_e9624f03c9b38037822e8c70.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00295;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.048828;font-style: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;}
.ls3_c00295{letter-spacing:0.000000px;}
.ls0_c00295{letter-spacing:0.087998px;}
.ls2_c00295{letter-spacing:0.098482px;}
.ls1_c00295{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00295{word-spacing:-33.713438px;}
.ws2_c00295{word-spacing:-26.575517px;}
.wse_c00295{word-spacing:-26.487518px;}
.ws5_c00295{word-spacing:-18.769538px;}
.ws7_c00295{word-spacing:-16.019861px;}
.ws4_c00295{word-spacing:-14.943900px;}
.wsa_c00295{word-spacing:-14.107042px;}
.wsb_c00295{word-spacing:-12.074671px;}
.ws9_c00295{word-spacing:-11.716018px;}
.ws8_c00295{word-spacing:-11.656242px;}
.ws1_c00295{word-spacing:-9.988424px;}
.ws3_c00295{word-spacing:-9.987499px;}
.ws6_c00295{word-spacing:-4.536144px;}
.ws12_c00295{word-spacing:0.000000px;}
.wsf_c00295{word-spacing:0.043999px;}
.ws15_c00295{word-spacing:0.056767px;}
.ws13_c00295{word-spacing:0.073250px;}
.ws14_c00295{word-spacing:0.083734px;}
.wsd_c00295{word-spacing:0.175997px;}
.ws16_c00295{word-spacing:0.202963px;}
.ws10_c00295{word-spacing:0.213446px;}
.ws11_c00295{word-spacing:0.219446px;}
.ws0_c00295{word-spacing:43.038600px;}
._0_c00295{margin-left:-6.369713px;}
._3_c00295{margin-left:-3.376852px;}
._1_c00295{margin-left:-1.549390px;}
._6_c00295{width:1.005737px;}
._2_c00295{width:19.935816px;}
._4_c00295{width:23.790689px;}
._5_c00295{width:40.109428px;}
._8_c00295{width:53.283031px;}
._7_c00295{width:79.858548px;}
._9_c00295{width:133.452408px;}
.fc6_c00295{color:rgb(0,0,207);}
.fc5_c00295{color:rgb(79,153,5);}
.fc3_c00295{color:rgb(33,74,135);}
.fc2_c00295{color:rgb(143,89,3);}
.fc4_c00295{color:rgb(207,92,0);}
.fc1_c00295{color:rgb(6,69,173);}
.fc0_c00295{color:rgb(0,0,0);}
.fs2_c00295{font-size:43.999200px;}
.fs1_c00295{font-size:59.775600px;}
.fs0_c00295{font-size:86.077200px;}
.y0_c00295{bottom:0.000000px;}
.y20_c00295{bottom:44.250000px;}
.y1f_c00295{bottom:86.982000px;}
.y1e_c00295{bottom:103.420500px;}
.y1d_c00295{bottom:119.859000px;}
.y1c_c00295{bottom:136.297500px;}
.y1b_c00295{bottom:152.736000px;}
.y1a_c00295{bottom:169.174500px;}
.y19_c00295{bottom:185.613000px;}
.y18_c00295{bottom:202.051500px;}
.y17_c00295{bottom:218.490000px;}
.y16_c00295{bottom:234.927000px;}
.y15_c00295{bottom:251.365500px;}
.y14_c00295{bottom:267.804000px;}
.y13_c00295{bottom:284.242500px;}
.y12_c00295{bottom:300.681000px;}
.y11_c00295{bottom:317.119500px;}
.y10_c00295{bottom:349.996500px;}
.yf_c00295{bottom:366.435000px;}
.ye_c00295{bottom:415.749000px;}
.yd_c00295{bottom:432.187500px;}
.yc_c00295{bottom:448.252500px;}
.yb_c00295{bottom:493.890000px;}
.ya_c00295{bottom:511.822500px;}
.y9_c00295{bottom:529.756500px;}
.y8_c00295{bottom:547.689000px;}
.y7_c00295{bottom:565.621500px;}
.y6_c00295{bottom:583.554000px;}
.y5_c00295{bottom:610.633500px;}
.y4_c00295{bottom:637.714500px;}
.y3_c00295{bottom:664.794000px;}
.y2_c00295{bottom:691.873500px;}
.y1_c00295{bottom:734.407500px;}
.h5_c00295{height:35.190766px;}
.h6_c00295{height:36.007158px;}
.h3_c00295{height:40.511979px;}
.h4_c00295{height:52.332837px;}
.h2_c00295{height:58.337477px;}
.h0_c00295{height:1262.835000px;}
.h1_c00295{height:1263.000000px;}
.w0_c00295{width:892.920000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:127.558500px;}
.x2_c00295{left:137.122500px;}
.x3_c00295{left:143.770500px;}
.x4_c00295{left:435.249000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls3_c00295{letter-spacing:0.000000pt;}
.ls0_c00295{letter-spacing:0.078221pt;}
.ls2_c00295{letter-spacing:0.087539pt;}
.ls1_c00295{letter-spacing:0.092873pt;}
.wsc_c00295{word-spacing:-29.967501pt;}
.ws2_c00295{word-spacing:-23.622682pt;}
.wse_c00295{word-spacing:-23.544461pt;}
.ws5_c00295{word-spacing:-16.684034pt;}
.ws7_c00295{word-spacing:-14.239876pt;}
.ws4_c00295{word-spacing:-13.283467pt;}
.wsa_c00295{word-spacing:-12.539593pt;}
.wsb_c00295{word-spacing:-10.733041pt;}
.ws9_c00295{word-spacing:-10.414238pt;}
.ws8_c00295{word-spacing:-10.361104pt;}
.ws1_c00295{word-spacing:-8.878599pt;}
.ws3_c00295{word-spacing:-8.877777pt;}
.ws6_c00295{word-spacing:-4.032128pt;}
.ws12_c00295{word-spacing:0.000000pt;}
.wsf_c00295{word-spacing:0.039110pt;}
.ws15_c00295{word-spacing:0.050460pt;}
.ws13_c00295{word-spacing:0.065111pt;}
.ws14_c00295{word-spacing:0.074430pt;}
.wsd_c00295{word-spacing:0.156442pt;}
.ws16_c00295{word-spacing:0.180412pt;}
.ws10_c00295{word-spacing:0.189730pt;}
.ws11_c00295{word-spacing:0.195063pt;}
.ws0_c00295{word-spacing:38.256533pt;}
._0_c00295{margin-left:-5.661967pt;}
._3_c00295{margin-left:-3.001646pt;}
._1_c00295{margin-left:-1.377235pt;}
._6_c00295{width:0.893988pt;}
._2_c00295{width:17.720725pt;}
._4_c00295{width:21.147279pt;}
._5_c00295{width:35.652825pt;}
._8_c00295{width:47.362694pt;}
._7_c00295{width:70.985376pt;}
._9_c00295{width:118.624363pt;}
.fs2_c00295{font-size:39.110400pt;}
.fs1_c00295{font-size:53.133867pt;}
.fs0_c00295{font-size:76.513067pt;}
.y0_c00295{bottom:0.000000pt;}
.y20_c00295{bottom:39.333333pt;}
.y1f_c00295{bottom:77.317333pt;}
.y1e_c00295{bottom:91.929333pt;}
.y1d_c00295{bottom:106.541333pt;}
.y1c_c00295{bottom:121.153333pt;}
.y1b_c00295{bottom:135.765333pt;}
.y1a_c00295{bottom:150.377333pt;}
.y19_c00295{bottom:164.989333pt;}
.y18_c00295{bottom:179.601333pt;}
.y17_c00295{bottom:194.213333pt;}
.y16_c00295{bottom:208.824000pt;}
.y15_c00295{bottom:223.436000pt;}
.y14_c00295{bottom:238.048000pt;}
.y13_c00295{bottom:252.660000pt;}
.y12_c00295{bottom:267.272000pt;}
.y11_c00295{bottom:281.884000pt;}
.y10_c00295{bottom:311.108000pt;}
.yf_c00295{bottom:325.720000pt;}
.ye_c00295{bottom:369.554667pt;}
.yd_c00295{bottom:384.166667pt;}
.yc_c00295{bottom:398.446667pt;}
.yb_c00295{bottom:439.013333pt;}
.ya_c00295{bottom:454.953333pt;}
.y9_c00295{bottom:470.894667pt;}
.y8_c00295{bottom:486.834667pt;}
.y7_c00295{bottom:502.774667pt;}
.y6_c00295{bottom:518.714667pt;}
.y5_c00295{bottom:542.785333pt;}
.y4_c00295{bottom:566.857333pt;}
.y3_c00295{bottom:590.928000pt;}
.y2_c00295{bottom:614.998667pt;}
.y1_c00295{bottom:652.806667pt;}
.h5_c00295{height:31.280681pt;}
.h6_c00295{height:32.006363pt;}
.h3_c00295{height:36.010648pt;}
.h4_c00295{height:46.518078pt;}
.h2_c00295{height:51.855535pt;}
.h0_c00295{height:1122.520000pt;}
.h1_c00295{height:1122.666667pt;}
.w0_c00295{width:793.706667pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:113.385333pt;}
.x2_c00295{left:121.886667pt;}
.x3_c00295{left:127.796000pt;}
.x4_c00295{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_840feb401409be887c9625aa.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.048828;font-style:normal;font-weight:normal;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_8356c0980dab836093b5e3e8.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.014648;font-style:normal;font-weight:normal;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_db0f75963d7df5fddc58291f.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:0.893555;font-style:normal;font-weight:normal;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_69b4fa00f84c11b00a5537a6.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.102051;font-style: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;}
.ls4_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.087998px;}
.ls2_c00296{letter-spacing:0.098482px;}
.ls3_c00296{letter-spacing:0.104482px;}
.ls1_c00296{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00296{word-spacing:-26.575517px;}
.ws4_c00296{word-spacing:-26.487518px;}
.wsa_c00296{word-spacing:-18.769538px;}
.wsc_c00296{word-spacing:-17.633802px;}
.ws9_c00296{word-spacing:-14.943900px;}
.wsf_c00296{word-spacing:-14.107042px;}
.ws10_c00296{word-spacing:-12.074671px;}
.wse_c00296{word-spacing:-11.716018px;}
.wsd_c00296{word-spacing:-11.656242px;}
.ws7_c00296{word-spacing:-9.988424px;}
.ws8_c00296{word-spacing:-9.987499px;}
.wsb_c00296{word-spacing:-7.680144px;}
.ws3_c00296{word-spacing:0.000000px;}
.ws0_c00296{word-spacing:0.043999px;}
.ws5_c00296{word-spacing:0.213446px;}
.ws1_c00296{word-spacing:0.219446px;}
.ws6_c00296{word-spacing:43.038600px;}
._1_c00296{margin-left:-6.369713px;}
._4_c00296{margin-left:-3.376852px;}
._2_c00296{margin-left:-1.549390px;}
._0_c00296{width:1.041538px;}
._3_c00296{width:19.935816px;}
._5_c00296{width:23.790689px;}
._6_c00296{width:40.109428px;}
.fc5_c00296{color:rgb(79,153,5);}
.fc4_c00296{color:rgb(143,89,3);}
.fc3_c00296{color:rgb(0,0,0);}
.fc6_c00296{color:rgb(6,69,173);}
.fc2_c00296{color:rgb(207,92,0);}
.fc1_c00296{color:rgb(0,0,207);}
.fc0_c00296{color:rgb(33,74,135);}
.fs0_c00296{font-size:43.999200px;}
.fs2_c00296{font-size:59.775600px;}
.fs1_c00296{font-size:86.077200px;}
.y0_c00296{bottom:0.000000px;}
.y20_c00296{bottom:44.250000px;}
.y1f_c00296{bottom:82.051500px;}
.y1e_c00296{bottom:99.984000px;}
.y1d_c00296{bottom:117.916500px;}
.y1c_c00296{bottom:135.849000px;}
.y1b_c00296{bottom:162.501000px;}
.y1a_c00296{bottom:189.151500px;}
.y19_c00296{bottom:215.802000px;}
.y18_c00296{bottom:242.454000px;}
.y17_c00296{bottom:284.478000px;}
.y16_c00296{bottom:748.903500px;}
.y15_c00296{bottom:765.342000px;}
.y14_c00296{bottom:781.780500px;}
.y13_c00296{bottom:798.219000px;}
.y12_c00296{bottom:814.657500px;}
.y11_c00296{bottom:831.096000px;}
.y10_c00296{bottom:847.534500px;}
.yf_c00296{bottom:863.973000px;}
.ye_c00296{bottom:880.411500px;}
.yd_c00296{bottom:896.848500px;}
.yc_c00296{bottom:913.287000px;}
.yb_c00296{bottom:946.164000px;}
.ya_c00296{bottom:962.602500px;}
.y9_c00296{bottom:979.041000px;}
.y8_c00296{bottom:1011.918000px;}
.y7_c00296{bottom:1028.356500px;}
.y6_c00296{bottom:1044.795000px;}
.y5_c00296{bottom:1061.232000px;}
.y4_c00296{bottom:1077.670500px;}
.y3_c00296{bottom:1094.109000px;}
.y2_c00296{bottom:1110.547500px;}
.y1_c00296{bottom:1159.863000px;}
.h3_c00296{height:35.190766px;}
.h2_c00296{height:36.007158px;}
.h5_c00296{height:40.511979px;}
.h6_c00296{height:52.332837px;}
.h4_c00296{height:58.337477px;}
.h0_c00296{height:1262.835000px;}
.h1_c00296{height:1263.000000px;}
.w0_c00296{width:892.920000px;}
.w1_c00296{width:893.250000px;}
.x0_c00296{left:0.000000px;}
.x4_c00296{left:127.558500px;}
.x2_c00296{left:137.122500px;}
.x1_c00296{left:143.770500px;}
.x3_c00296{left:177.007500px;}
.x5_c00296{left:435.249000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls4_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.078221pt;}
.ls2_c00296{letter-spacing:0.087539pt;}
.ls3_c00296{letter-spacing:0.092873pt;}
.ls1_c00296{letter-spacing:23.724873pt;}
.ws2_c00296{word-spacing:-23.622682pt;}
.ws4_c00296{word-spacing:-23.544461pt;}
.wsa_c00296{word-spacing:-16.684034pt;}
.wsc_c00296{word-spacing:-15.674491pt;}
.ws9_c00296{word-spacing:-13.283467pt;}
.wsf_c00296{word-spacing:-12.539593pt;}
.ws10_c00296{word-spacing:-10.733041pt;}
.wse_c00296{word-spacing:-10.414238pt;}
.wsd_c00296{word-spacing:-10.361104pt;}
.ws7_c00296{word-spacing:-8.878599pt;}
.ws8_c00296{word-spacing:-8.877777pt;}
.wsb_c00296{word-spacing:-6.826795pt;}
.ws3_c00296{word-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.039110pt;}
.ws5_c00296{word-spacing:0.189730pt;}
.ws1_c00296{word-spacing:0.195063pt;}
.ws6_c00296{word-spacing:38.256533pt;}
._1_c00296{margin-left:-5.661967pt;}
._4_c00296{margin-left:-3.001646pt;}
._2_c00296{margin-left:-1.377235pt;}
._0_c00296{width:0.925811pt;}
._3_c00296{width:17.720725pt;}
._5_c00296{width:21.147279pt;}
._6_c00296{width:35.652825pt;}
.fs0_c00296{font-size:39.110400pt;}
.fs2_c00296{font-size:53.133867pt;}
.fs1_c00296{font-size:76.513067pt;}
.y0_c00296{bottom:0.000000pt;}
.y20_c00296{bottom:39.333333pt;}
.y1f_c00296{bottom:72.934667pt;}
.y1e_c00296{bottom:88.874667pt;}
.y1d_c00296{bottom:104.814667pt;}
.y1c_c00296{bottom:120.754667pt;}
.y1b_c00296{bottom:144.445333pt;}
.y1a_c00296{bottom:168.134667pt;}
.y19_c00296{bottom:191.824000pt;}
.y18_c00296{bottom:215.514667pt;}
.y17_c00296{bottom:252.869333pt;}
.y16_c00296{bottom:665.692000pt;}
.y15_c00296{bottom:680.304000pt;}
.y14_c00296{bottom:694.916000pt;}
.y13_c00296{bottom:709.528000pt;}
.y12_c00296{bottom:724.140000pt;}
.y11_c00296{bottom:738.752000pt;}
.y10_c00296{bottom:753.364000pt;}
.yf_c00296{bottom:767.976000pt;}
.ye_c00296{bottom:782.588000pt;}
.yd_c00296{bottom:797.198667pt;}
.yc_c00296{bottom:811.810667pt;}
.yb_c00296{bottom:841.034667pt;}
.ya_c00296{bottom:855.646667pt;}
.y9_c00296{bottom:870.258667pt;}
.y8_c00296{bottom:899.482667pt;}
.y7_c00296{bottom:914.094667pt;}
.y6_c00296{bottom:928.706667pt;}
.y5_c00296{bottom:943.317333pt;}
.y4_c00296{bottom:957.929333pt;}
.y3_c00296{bottom:972.541333pt;}
.y2_c00296{bottom:987.153333pt;}
.y1_c00296{bottom:1030.989333pt;}
.h3_c00296{height:31.280681pt;}
.h2_c00296{height:32.006363pt;}
.h5_c00296{height:36.010648pt;}
.h6_c00296{height:46.518078pt;}
.h4_c00296{height:51.855535pt;}
.h0_c00296{height:1122.520000pt;}
.h1_c00296{height:1122.666667pt;}
.w0_c00296{width:793.706667pt;}
.w1_c00296{width:794.000000pt;}
.x0_c00296{left:0.000000pt;}
.x4_c00296{left:113.385333pt;}
.x2_c00296{left:121.886667pt;}
.x1_c00296{left:127.796000pt;}
.x3_c00296{left:157.340000pt;}
.x5_c00296{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6dcb323829f260ec7aca316.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.102051;font-style:normal;font-weight:normal;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_249722490f4cb6ddacd0c402.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.048828;font-style:normal;font-weight:normal;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_c82bfcdb2644adb2aa952763.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls4_c00297{letter-spacing:0.000000px;}
.ls1_c00297{letter-spacing:0.087998px;}
.ls2_c00297{letter-spacing:0.098482px;}
.ls0_c00297{letter-spacing:0.104482px;}
.ls3_c00297{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00297{word-spacing:-26.575517px;}
.ws3_c00297{word-spacing:-26.487518px;}
.ws0_c00297{word-spacing:-18.769538px;}
.ws8_c00297{word-spacing:0.000000px;}
.ws5_c00297{word-spacing:0.043999px;}
.wsb_c00297{word-spacing:0.056767px;}
.ws9_c00297{word-spacing:0.073250px;}
.wsa_c00297{word-spacing:0.083734px;}
.ws2_c00297{word-spacing:0.175997px;}
.wsc_c00297{word-spacing:0.202963px;}
.ws6_c00297{word-spacing:0.213446px;}
.ws7_c00297{word-spacing:0.219446px;}
._0_c00297{margin-left:-3.825638px;}
._1_c00297{width:1.005737px;}
._3_c00297{width:53.283031px;}
._2_c00297{width:79.858548px;}
._5_c00297{width:106.698060px;}
._4_c00297{width:133.452408px;}
.fc5_c00297{color:rgb(0,0,207);}
.fc4_c00297{color:rgb(79,153,5);}
.fc3_c00297{color:rgb(207,92,0);}
.fc2_c00297{color:rgb(33,74,135);}
.fc1_c00297{color:rgb(143,89,3);}
.fc0_c00297{color:rgb(0,0,0);}
.fs1_c00297{font-size:43.999200px;}
.fs0_c00297{font-size:59.775600px;}
.y0_c00297{bottom:0.000000px;}
.y2d_c00297{bottom:44.250000px;}
.y2c_c00297{bottom:96.919500px;}
.y2b_c00297{bottom:113.358000px;}
.y2a_c00297{bottom:129.796500px;}
.y29_c00297{bottom:146.235000px;}
.y28_c00297{bottom:162.673500px;}
.y27_c00297{bottom:179.112000px;}
.y26_c00297{bottom:195.550500px;}
.y25_c00297{bottom:211.989000px;}
.y24_c00297{bottom:228.427500px;}
.y23_c00297{bottom:244.866000px;}
.y22_c00297{bottom:261.304500px;}
.y21_c00297{bottom:294.180000px;}
.y20_c00297{bottom:310.618500px;}
.y1f_c00297{bottom:327.057000px;}
.y1e_c00297{bottom:359.934000px;}
.y1d_c00297{bottom:376.372500px;}
.y1c_c00297{bottom:392.811000px;}
.y1b_c00297{bottom:409.249500px;}
.y1a_c00297{bottom:425.688000px;}
.y19_c00297{bottom:442.125000px;}
.y18_c00297{bottom:458.563500px;}
.y17_c00297{bottom:507.879000px;}
.y16_c00297{bottom:524.317500px;}
.y15_c00297{bottom:540.756000px;}
.y14_c00297{bottom:557.194500px;}
.y13_c00297{bottom:573.633000px;}
.y12_c00297{bottom:590.071500px;}
.y11_c00297{bottom:606.508500px;}
.y10_c00297{bottom:622.947000px;}
.yf_c00297{bottom:639.385500px;}
.ye_c00297{bottom:655.824000px;}
.yd_c00297{bottom:672.262500px;}
.yc_c00297{bottom:688.701000px;}
.yb_c00297{bottom:705.139500px;}
.ya_c00297{bottom:721.578000px;}
.y9_c00297{bottom:738.016500px;}
.y8_c00297{bottom:754.455000px;}
.y7_c00297{bottom:787.330500px;}
.y6_c00297{bottom:803.769000px;}
.y5_c00297{bottom:853.084500px;}
.y4_c00297{bottom:869.523000px;}
.y3_c00297{bottom:885.588000px;}
.y2_c00297{bottom:1141.930500px;}
.y1_c00297{bottom:1159.863000px;}
.h3_c00297{height:35.190766px;}
.h4_c00297{height:36.007158px;}
.h2_c00297{height:52.332837px;}
.h0_c00297{height:1262.835000px;}
.h1_c00297{height:1263.000000px;}
.w0_c00297{width:892.920000px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:127.558500px;}
.x2_c00297{left:137.122500px;}
.x3_c00297{left:143.770500px;}
.x4_c00297{left:177.007500px;}
.x5_c00297{left:435.249000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls4_c00297{letter-spacing:0.000000pt;}
.ls1_c00297{letter-spacing:0.078221pt;}
.ls2_c00297{letter-spacing:0.087539pt;}
.ls0_c00297{letter-spacing:0.092873pt;}
.ls3_c00297{letter-spacing:23.724873pt;}
.ws1_c00297{word-spacing:-29.967501pt;}
.ws4_c00297{word-spacing:-23.622682pt;}
.ws3_c00297{word-spacing:-23.544461pt;}
.ws0_c00297{word-spacing:-16.684034pt;}
.ws8_c00297{word-spacing:0.000000pt;}
.ws5_c00297{word-spacing:0.039110pt;}
.wsb_c00297{word-spacing:0.050460pt;}
.ws9_c00297{word-spacing:0.065111pt;}
.wsa_c00297{word-spacing:0.074430pt;}
.ws2_c00297{word-spacing:0.156442pt;}
.wsc_c00297{word-spacing:0.180412pt;}
.ws6_c00297{word-spacing:0.189730pt;}
.ws7_c00297{word-spacing:0.195063pt;}
._0_c00297{margin-left:-3.400567pt;}
._1_c00297{width:0.893988pt;}
._3_c00297{width:47.362694pt;}
._2_c00297{width:70.985376pt;}
._5_c00297{width:94.842720pt;}
._4_c00297{width:118.624363pt;}
.fs1_c00297{font-size:39.110400pt;}
.fs0_c00297{font-size:53.133867pt;}
.y0_c00297{bottom:0.000000pt;}
.y2d_c00297{bottom:39.333333pt;}
.y2c_c00297{bottom:86.150667pt;}
.y2b_c00297{bottom:100.762667pt;}
.y2a_c00297{bottom:115.374667pt;}
.y29_c00297{bottom:129.986667pt;}
.y28_c00297{bottom:144.598667pt;}
.y27_c00297{bottom:159.210667pt;}
.y26_c00297{bottom:173.822667pt;}
.y25_c00297{bottom:188.434667pt;}
.y24_c00297{bottom:203.046667pt;}
.y23_c00297{bottom:217.658667pt;}
.y22_c00297{bottom:232.270667pt;}
.y21_c00297{bottom:261.493333pt;}
.y20_c00297{bottom:276.105333pt;}
.y1f_c00297{bottom:290.717333pt;}
.y1e_c00297{bottom:319.941333pt;}
.y1d_c00297{bottom:334.553333pt;}
.y1c_c00297{bottom:349.165333pt;}
.y1b_c00297{bottom:363.777333pt;}
.y1a_c00297{bottom:378.389333pt;}
.y19_c00297{bottom:393.000000pt;}
.y18_c00297{bottom:407.612000pt;}
.y17_c00297{bottom:451.448000pt;}
.y16_c00297{bottom:466.060000pt;}
.y15_c00297{bottom:480.672000pt;}
.y14_c00297{bottom:495.284000pt;}
.y13_c00297{bottom:509.896000pt;}
.y12_c00297{bottom:524.508000pt;}
.y11_c00297{bottom:539.118667pt;}
.y10_c00297{bottom:553.730667pt;}
.yf_c00297{bottom:568.342667pt;}
.ye_c00297{bottom:582.954667pt;}
.yd_c00297{bottom:597.566667pt;}
.yc_c00297{bottom:612.178667pt;}
.yb_c00297{bottom:626.790667pt;}
.ya_c00297{bottom:641.402667pt;}
.y9_c00297{bottom:656.014667pt;}
.y8_c00297{bottom:670.626667pt;}
.y7_c00297{bottom:699.849333pt;}
.y6_c00297{bottom:714.461333pt;}
.y5_c00297{bottom:758.297333pt;}
.y4_c00297{bottom:772.909333pt;}
.y3_c00297{bottom:787.189333pt;}
.y2_c00297{bottom:1015.049333pt;}
.y1_c00297{bottom:1030.989333pt;}
.h3_c00297{height:31.280681pt;}
.h4_c00297{height:32.006363pt;}
.h2_c00297{height:46.518078pt;}
.h0_c00297{height:1122.520000pt;}
.h1_c00297{height:1122.666667pt;}
.w0_c00297{width:793.706667pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:113.385333pt;}
.x2_c00297{left:121.886667pt;}
.x3_c00297{left:127.796000pt;}
.x4_c00297{left:157.340000pt;}
.x5_c00297{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eec7e1a2114b66956761cbd8.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.893555;font-style:normal;font-weight:normal;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_9e987837ea3c13dff28b0ccd.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.083496;font-style:normal;font-weight:normal;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_589d68191fd7013fc87d05cf.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_a656a61e651ed76a4bdf2eeb.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_a695750565455f29f83e21b4.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.048828;font-style: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;}
.ls4_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.087998px;}
.ls2_c00298{letter-spacing:0.098482px;}
.ls1_c00298{letter-spacing:0.104482px;}
.ls3_c00298{letter-spacing:26.732482px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00298{word-spacing:-26.575517px;}
.ws10_c00298{word-spacing:-26.487518px;}
.ws5_c00298{word-spacing:-18.769538px;}
.wsd_c00298{word-spacing:-16.199188px;}
.wsc_c00298{word-spacing:-15.183002px;}
.ws4_c00298{word-spacing:-14.943900px;}
.wse_c00298{word-spacing:-14.764573px;}
.wsa_c00298{word-spacing:-11.297588px;}
.ws1_c00298{word-spacing:-9.988424px;}
.ws3_c00298{word-spacing:-9.987499px;}
.ws8_c00298{word-spacing:-9.388222px;}
.ws9_c00298{word-spacing:-9.324994px;}
.ws7_c00298{word-spacing:-8.488135px;}
.wsb_c00298{word-spacing:-7.914466px;}
.ws14_c00298{word-spacing:0.000000px;}
.ws11_c00298{word-spacing:0.043999px;}
.ws15_c00298{word-spacing:0.053933px;}
.wsf_c00298{word-spacing:0.175997px;}
.ws12_c00298{word-spacing:0.213446px;}
.ws13_c00298{word-spacing:0.219446px;}
.ws6_c00298{word-spacing:10.571856px;}
.ws0_c00298{word-spacing:43.038600px;}
._7_c00298{margin-left:-3.013673px;}
._0_c00298{margin-left:-1.549390px;}
._8_c00298{width:1.005737px;}
._1_c00298{width:19.935816px;}
._5_c00298{width:24.268894px;}
._3_c00298{width:26.066938px;}
._2_c00298{width:27.193122px;}
._6_c00298{width:31.227756px;}
._4_c00298{width:42.141798px;}
.fc6_c00298{color:rgb(0,0,207);}
.fc5_c00298{color:rgb(79,153,5);}
.fc3_c00298{color:rgb(33,74,135);}
.fc2_c00298{color:rgb(143,89,3);}
.fc4_c00298{color:rgb(207,92,0);}
.fc1_c00298{color:rgb(6,69,173);}
.fc0_c00298{color:rgb(0,0,0);}
.fs2_c00298{font-size:43.999200px;}
.fs1_c00298{font-size:59.775600px;}
.fs0_c00298{font-size:86.077200px;}
.y0_c00298{bottom:0.000000px;}
.y1e_c00298{bottom:44.250000px;}
.y1d_c00298{bottom:86.982000px;}
.y1c_c00298{bottom:103.420500px;}
.y1b_c00298{bottom:119.859000px;}
.y1a_c00298{bottom:136.297500px;}
.y19_c00298{bottom:169.174500px;}
.y18_c00298{bottom:185.613000px;}
.y17_c00298{bottom:218.490000px;}
.y16_c00298{bottom:234.927000px;}
.y15_c00298{bottom:251.365500px;}
.y14_c00298{bottom:300.681000px;}
.y13_c00298{bottom:317.119500px;}
.y12_c00298{bottom:333.558000px;}
.y11_c00298{bottom:349.996500px;}
.y10_c00298{bottom:366.435000px;}
.yf_c00298{bottom:399.310500px;}
.ye_c00298{bottom:415.749000px;}
.yd_c00298{bottom:431.814000px;}
.yc_c00298{bottom:478.861500px;}
.yb_c00298{bottom:496.794000px;}
.ya_c00298{bottom:514.726500px;}
.y9_c00298{bottom:532.659000px;}
.y8_c00298{bottom:550.591500px;}
.y7_c00298{bottom:568.524000px;}
.y6_c00298{bottom:586.458000px;}
.y5_c00298{bottom:613.162500px;}
.y4_c00298{bottom:639.868500px;}
.y3_c00298{bottom:666.574500px;}
.y2_c00298{bottom:693.280500px;}
.y1_c00298{bottom:735.360000px;}
.h5_c00298{height:35.190766px;}
.h6_c00298{height:36.007158px;}
.h3_c00298{height:40.511979px;}
.h4_c00298{height:52.332837px;}
.h2_c00298{height:58.337477px;}
.h0_c00298{height:1262.835000px;}
.h1_c00298{height:1263.000000px;}
.w0_c00298{width:892.920000px;}
.w1_c00298{width:893.250000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:127.558500px;}
.x2_c00298{left:137.122500px;}
.x3_c00298{left:435.249000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls4_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.078221pt;}
.ls2_c00298{letter-spacing:0.087539pt;}
.ls1_c00298{letter-spacing:0.092873pt;}
.ls3_c00298{letter-spacing:23.762206pt;}
.ws2_c00298{word-spacing:-23.622682pt;}
.ws10_c00298{word-spacing:-23.544461pt;}
.ws5_c00298{word-spacing:-16.684034pt;}
.wsd_c00298{word-spacing:-14.399278pt;}
.wsc_c00298{word-spacing:-13.496002pt;}
.ws4_c00298{word-spacing:-13.283467pt;}
.wse_c00298{word-spacing:-13.124065pt;}
.wsa_c00298{word-spacing:-10.042301pt;}
.ws1_c00298{word-spacing:-8.878599pt;}
.ws3_c00298{word-spacing:-8.877777pt;}
.ws8_c00298{word-spacing:-8.345086pt;}
.ws9_c00298{word-spacing:-8.288883pt;}
.ws7_c00298{word-spacing:-7.545009pt;}
.wsb_c00298{word-spacing:-7.035081pt;}
.ws14_c00298{word-spacing:0.000000pt;}
.ws11_c00298{word-spacing:0.039110pt;}
.ws15_c00298{word-spacing:0.047940pt;}
.wsf_c00298{word-spacing:0.156442pt;}
.ws12_c00298{word-spacing:0.189730pt;}
.ws13_c00298{word-spacing:0.195063pt;}
.ws6_c00298{word-spacing:9.397205pt;}
.ws0_c00298{word-spacing:38.256533pt;}
._7_c00298{margin-left:-2.678820pt;}
._0_c00298{margin-left:-1.377235pt;}
._8_c00298{width:0.893988pt;}
._1_c00298{width:17.720725pt;}
._5_c00298{width:21.572350pt;}
._3_c00298{width:23.170611pt;}
._2_c00298{width:24.171664pt;}
._6_c00298{width:27.758005pt;}
._4_c00298{width:37.459376pt;}
.fs2_c00298{font-size:39.110400pt;}
.fs1_c00298{font-size:53.133867pt;}
.fs0_c00298{font-size:76.513067pt;}
.y0_c00298{bottom:0.000000pt;}
.y1e_c00298{bottom:39.333333pt;}
.y1d_c00298{bottom:77.317333pt;}
.y1c_c00298{bottom:91.929333pt;}
.y1b_c00298{bottom:106.541333pt;}
.y1a_c00298{bottom:121.153333pt;}
.y19_c00298{bottom:150.377333pt;}
.y18_c00298{bottom:164.989333pt;}
.y17_c00298{bottom:194.213333pt;}
.y16_c00298{bottom:208.824000pt;}
.y15_c00298{bottom:223.436000pt;}
.y14_c00298{bottom:267.272000pt;}
.y13_c00298{bottom:281.884000pt;}
.y12_c00298{bottom:296.496000pt;}
.y11_c00298{bottom:311.108000pt;}
.y10_c00298{bottom:325.720000pt;}
.yf_c00298{bottom:354.942667pt;}
.ye_c00298{bottom:369.554667pt;}
.yd_c00298{bottom:383.834667pt;}
.yc_c00298{bottom:425.654667pt;}
.yb_c00298{bottom:441.594667pt;}
.ya_c00298{bottom:457.534667pt;}
.y9_c00298{bottom:473.474667pt;}
.y8_c00298{bottom:489.414667pt;}
.y7_c00298{bottom:505.354667pt;}
.y6_c00298{bottom:521.296000pt;}
.y5_c00298{bottom:545.033333pt;}
.y4_c00298{bottom:568.772000pt;}
.y3_c00298{bottom:592.510667pt;}
.y2_c00298{bottom:616.249333pt;}
.y1_c00298{bottom:653.653333pt;}
.h5_c00298{height:31.280681pt;}
.h6_c00298{height:32.006363pt;}
.h3_c00298{height:36.010648pt;}
.h4_c00298{height:46.518078pt;}
.h2_c00298{height:51.855535pt;}
.h0_c00298{height:1122.520000pt;}
.h1_c00298{height:1122.666667pt;}
.w0_c00298{width:793.706667pt;}
.w1_c00298{width:794.000000pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:113.385333pt;}
.x2_c00298{left:121.886667pt;}
.x3_c00298{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.048828;font-style:normal;font-weight:normal;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_f67373f34c20a3f52be4202a.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.083496;font-style:normal;font-weight:normal;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_50aa6edbd0385ba8b8cecf68.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.014648;font-style:normal;font-weight:normal;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_a6be9e2bc2b518e4118b2d0d.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls4_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:0.087998px;}
.ls1_c00299{letter-spacing:0.098482px;}
.ls2_c00299{letter-spacing:0.104482px;}
.ls3_c00299{letter-spacing:26.690482px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:-26.575517px;}
.ws1_c00299{word-spacing:-26.487518px;}
.ws2_c00299{word-spacing:0.000000px;}
.ws8_c00299{word-spacing:0.026966px;}
.ws9_c00299{word-spacing:0.043999px;}
.ws6_c00299{word-spacing:0.046284px;}
.ws3_c00299{word-spacing:0.056767px;}
.ws5_c00299{word-spacing:0.073250px;}
.ws7_c00299{word-spacing:0.083734px;}
.ws4_c00299{word-spacing:0.202963px;}
.wsb_c00299{word-spacing:0.213446px;}
.wsa_c00299{word-spacing:0.219446px;}
._5_c00299{width:1.041538px;}
._3_c00299{width:53.283031px;}
._1_c00299{width:79.858548px;}
._0_c00299{width:106.654061px;}
._2_c00299{width:133.452408px;}
._4_c00299{width:186.179933px;}
.fc5_c00299{color:rgb(207,92,0);}
.fc4_c00299{color:rgb(0,0,207);}
.fc3_c00299{color:rgb(79,153,5);}
.fc2_c00299{color:rgb(143,89,3);}
.fc1_c00299{color:rgb(0,0,0);}
.fc0_c00299{color:rgb(33,74,135);}
.fs0_c00299{font-size:43.999200px;}
.fs1_c00299{font-size:59.775600px;}
.y0_c00299{bottom:0.000000px;}
.y27_c00299{bottom:44.250000px;}
.y26_c00299{bottom:469.452000px;}
.y25_c00299{bottom:485.890500px;}
.y24_c00299{bottom:502.329000px;}
.y23_c00299{bottom:518.767500px;}
.y22_c00299{bottom:535.206000px;}
.y21_c00299{bottom:551.643000px;}
.y20_c00299{bottom:568.081500px;}
.y1f_c00299{bottom:584.520000px;}
.y1e_c00299{bottom:600.958500px;}
.y1d_c00299{bottom:617.397000px;}
.y1c_c00299{bottom:633.835500px;}
.y1b_c00299{bottom:666.712500px;}
.y1a_c00299{bottom:683.151000px;}
.y19_c00299{bottom:699.589500px;}
.y18_c00299{bottom:732.465000px;}
.y17_c00299{bottom:748.903500px;}
.y16_c00299{bottom:765.342000px;}
.y15_c00299{bottom:781.780500px;}
.y14_c00299{bottom:798.219000px;}
.y13_c00299{bottom:814.657500px;}
.y12_c00299{bottom:831.096000px;}
.y11_c00299{bottom:847.534500px;}
.y10_c00299{bottom:863.973000px;}
.yf_c00299{bottom:880.411500px;}
.ye_c00299{bottom:896.848500px;}
.yd_c00299{bottom:913.287000px;}
.yc_c00299{bottom:929.725500px;}
.yb_c00299{bottom:946.164000px;}
.ya_c00299{bottom:962.602500px;}
.y9_c00299{bottom:979.041000px;}
.y8_c00299{bottom:995.479500px;}
.y7_c00299{bottom:1011.918000px;}
.y6_c00299{bottom:1028.356500px;}
.y5_c00299{bottom:1077.670500px;}
.y4_c00299{bottom:1094.109000px;}
.y3_c00299{bottom:1110.547500px;}
.y2_c00299{bottom:1126.986000px;}
.y1_c00299{bottom:1159.863000px;}
.h3_c00299{height:35.190766px;}
.h2_c00299{height:36.007158px;}
.h4_c00299{height:52.332837px;}
.h0_c00299{height:1262.835000px;}
.h1_c00299{height:1263.000000px;}
.w0_c00299{width:892.920000px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:137.122500px;}
.x3_c00299{left:143.770500px;}
.x4_c00299{left:177.007500px;}
.x2_c00299{left:216.891000px;}
.x5_c00299{left:435.249000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls4_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:0.078221pt;}
.ls1_c00299{letter-spacing:0.087539pt;}
.ls2_c00299{letter-spacing:0.092873pt;}
.ls3_c00299{letter-spacing:23.724873pt;}
.ws0_c00299{word-spacing:-23.622682pt;}
.ws1_c00299{word-spacing:-23.544461pt;}
.ws2_c00299{word-spacing:0.000000pt;}
.ws8_c00299{word-spacing:0.023970pt;}
.ws9_c00299{word-spacing:0.039110pt;}
.ws6_c00299{word-spacing:0.041141pt;}
.ws3_c00299{word-spacing:0.050460pt;}
.ws5_c00299{word-spacing:0.065111pt;}
.ws7_c00299{word-spacing:0.074430pt;}
.ws4_c00299{word-spacing:0.180412pt;}
.wsb_c00299{word-spacing:0.189730pt;}
.wsa_c00299{word-spacing:0.195063pt;}
._5_c00299{width:0.925811pt;}
._3_c00299{width:47.362694pt;}
._1_c00299{width:70.985376pt;}
._0_c00299{width:94.803610pt;}
._2_c00299{width:118.624363pt;}
._4_c00299{width:165.493274pt;}
.fs0_c00299{font-size:39.110400pt;}
.fs1_c00299{font-size:53.133867pt;}
.y0_c00299{bottom:0.000000pt;}
.y27_c00299{bottom:39.333333pt;}
.y26_c00299{bottom:417.290667pt;}
.y25_c00299{bottom:431.902667pt;}
.y24_c00299{bottom:446.514667pt;}
.y23_c00299{bottom:461.126667pt;}
.y22_c00299{bottom:475.738667pt;}
.y21_c00299{bottom:490.349333pt;}
.y20_c00299{bottom:504.961333pt;}
.y1f_c00299{bottom:519.573333pt;}
.y1e_c00299{bottom:534.185333pt;}
.y1d_c00299{bottom:548.797333pt;}
.y1c_c00299{bottom:563.409333pt;}
.y1b_c00299{bottom:592.633333pt;}
.y1a_c00299{bottom:607.245333pt;}
.y19_c00299{bottom:621.857333pt;}
.y18_c00299{bottom:651.080000pt;}
.y17_c00299{bottom:665.692000pt;}
.y16_c00299{bottom:680.304000pt;}
.y15_c00299{bottom:694.916000pt;}
.y14_c00299{bottom:709.528000pt;}
.y13_c00299{bottom:724.140000pt;}
.y12_c00299{bottom:738.752000pt;}
.y11_c00299{bottom:753.364000pt;}
.y10_c00299{bottom:767.976000pt;}
.yf_c00299{bottom:782.588000pt;}
.ye_c00299{bottom:797.198667pt;}
.yd_c00299{bottom:811.810667pt;}
.yc_c00299{bottom:826.422667pt;}
.yb_c00299{bottom:841.034667pt;}
.ya_c00299{bottom:855.646667pt;}
.y9_c00299{bottom:870.258667pt;}
.y8_c00299{bottom:884.870667pt;}
.y7_c00299{bottom:899.482667pt;}
.y6_c00299{bottom:914.094667pt;}
.y5_c00299{bottom:957.929333pt;}
.y4_c00299{bottom:972.541333pt;}
.y3_c00299{bottom:987.153333pt;}
.y2_c00299{bottom:1001.765333pt;}
.y1_c00299{bottom:1030.989333pt;}
.h3_c00299{height:31.280681pt;}
.h2_c00299{height:32.006363pt;}
.h4_c00299{height:46.518078pt;}
.h0_c00299{height:1122.520000pt;}
.h1_c00299{height:1122.666667pt;}
.w0_c00299{width:793.706667pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:121.886667pt;}
.x3_c00299{left:127.796000pt;}
.x4_c00299{left:157.340000pt;}
.x2_c00299{left:192.792000pt;}
.x5_c00299{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30a7bfc61c870c347bbdea91.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.893555;font-style:normal;font-weight:normal;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_71f12ca05d806c6bcc678b59.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.083496;font-style:normal;font-weight:normal;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_a5359bf68d4422c03e4475bc.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.048828;font-style: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;}
.ls3_c00300{letter-spacing:0.000000px;}
.ls0_c00300{letter-spacing:0.087998px;}
.ls2_c00300{letter-spacing:0.098482px;}
.ls1_c00300{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00300{word-spacing:-33.713438px;}
.ws2_c00300{word-spacing:-26.575517px;}
.wse_c00300{word-spacing:-26.487518px;}
.ws5_c00300{word-spacing:-18.769538px;}
.ws4_c00300{word-spacing:-14.943900px;}
.ws7_c00300{word-spacing:-14.465695px;}
.wsa_c00300{word-spacing:-14.107042px;}
.wsb_c00300{word-spacing:-12.074671px;}
.ws9_c00300{word-spacing:-11.716018px;}
.ws8_c00300{word-spacing:-11.656242px;}
.ws1_c00300{word-spacing:-9.988424px;}
.ws3_c00300{word-spacing:-9.987499px;}
.ws6_c00300{word-spacing:-1.386144px;}
.ws12_c00300{word-spacing:0.000000px;}
.wsf_c00300{word-spacing:0.043999px;}
.ws15_c00300{word-spacing:0.056767px;}
.ws13_c00300{word-spacing:0.073250px;}
.ws14_c00300{word-spacing:0.083734px;}
.wsd_c00300{word-spacing:0.175997px;}
.ws16_c00300{word-spacing:0.202963px;}
.ws10_c00300{word-spacing:0.213446px;}
.ws11_c00300{word-spacing:0.219446px;}
.ws0_c00300{word-spacing:43.038600px;}
._2_c00300{margin-left:-3.376852px;}
._0_c00300{margin-left:-1.549390px;}
._5_c00300{width:1.005737px;}
._1_c00300{width:19.935816px;}
._3_c00300{width:23.790689px;}
._4_c00300{width:40.109428px;}
._7_c00300{width:53.283031px;}
._6_c00300{width:79.858548px;}
._8_c00300{width:133.452408px;}
.fc6_c00300{color:rgb(0,0,207);}
.fc5_c00300{color:rgb(79,153,5);}
.fc3_c00300{color:rgb(33,74,135);}
.fc2_c00300{color:rgb(143,89,3);}
.fc4_c00300{color:rgb(207,92,0);}
.fc1_c00300{color:rgb(6,69,173);}
.fc0_c00300{color:rgb(0,0,0);}
.fs2_c00300{font-size:43.999200px;}
.fs1_c00300{font-size:59.775600px;}
.fs0_c00300{font-size:86.077200px;}
.y0_c00300{bottom:0.000000px;}
.y20_c00300{bottom:44.250000px;}
.y1f_c00300{bottom:86.982000px;}
.y1e_c00300{bottom:103.420500px;}
.y1d_c00300{bottom:119.859000px;}
.y1c_c00300{bottom:136.297500px;}
.y1b_c00300{bottom:152.736000px;}
.y1a_c00300{bottom:169.174500px;}
.y19_c00300{bottom:185.613000px;}
.y18_c00300{bottom:202.051500px;}
.y17_c00300{bottom:218.490000px;}
.y16_c00300{bottom:234.927000px;}
.y15_c00300{bottom:251.365500px;}
.y14_c00300{bottom:267.804000px;}
.y13_c00300{bottom:284.242500px;}
.y12_c00300{bottom:300.681000px;}
.y11_c00300{bottom:317.119500px;}
.y10_c00300{bottom:349.996500px;}
.yf_c00300{bottom:366.435000px;}
.ye_c00300{bottom:415.749000px;}
.yd_c00300{bottom:432.187500px;}
.yc_c00300{bottom:448.252500px;}
.yb_c00300{bottom:493.890000px;}
.ya_c00300{bottom:511.822500px;}
.y9_c00300{bottom:529.756500px;}
.y8_c00300{bottom:547.689000px;}
.y7_c00300{bottom:565.621500px;}
.y6_c00300{bottom:583.554000px;}
.y5_c00300{bottom:610.633500px;}
.y4_c00300{bottom:637.714500px;}
.y3_c00300{bottom:664.794000px;}
.y2_c00300{bottom:691.873500px;}
.y1_c00300{bottom:734.407500px;}
.h5_c00300{height:35.190766px;}
.h6_c00300{height:36.007158px;}
.h3_c00300{height:40.511979px;}
.h4_c00300{height:52.332837px;}
.h2_c00300{height:58.337477px;}
.h0_c00300{height:1262.835000px;}
.h1_c00300{height:1263.000000px;}
.w0_c00300{width:892.920000px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:127.558500px;}
.x2_c00300{left:137.122500px;}
.x3_c00300{left:143.770500px;}
.x4_c00300{left:435.249000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls3_c00300{letter-spacing:0.000000pt;}
.ls0_c00300{letter-spacing:0.078221pt;}
.ls2_c00300{letter-spacing:0.087539pt;}
.ls1_c00300{letter-spacing:0.092873pt;}
.wsc_c00300{word-spacing:-29.967501pt;}
.ws2_c00300{word-spacing:-23.622682pt;}
.wse_c00300{word-spacing:-23.544461pt;}
.ws5_c00300{word-spacing:-16.684034pt;}
.ws4_c00300{word-spacing:-13.283467pt;}
.ws7_c00300{word-spacing:-12.858396pt;}
.wsa_c00300{word-spacing:-12.539593pt;}
.wsb_c00300{word-spacing:-10.733041pt;}
.ws9_c00300{word-spacing:-10.414238pt;}
.ws8_c00300{word-spacing:-10.361104pt;}
.ws1_c00300{word-spacing:-8.878599pt;}
.ws3_c00300{word-spacing:-8.877777pt;}
.ws6_c00300{word-spacing:-1.232128pt;}
.ws12_c00300{word-spacing:0.000000pt;}
.wsf_c00300{word-spacing:0.039110pt;}
.ws15_c00300{word-spacing:0.050460pt;}
.ws13_c00300{word-spacing:0.065111pt;}
.ws14_c00300{word-spacing:0.074430pt;}
.wsd_c00300{word-spacing:0.156442pt;}
.ws16_c00300{word-spacing:0.180412pt;}
.ws10_c00300{word-spacing:0.189730pt;}
.ws11_c00300{word-spacing:0.195063pt;}
.ws0_c00300{word-spacing:38.256533pt;}
._2_c00300{margin-left:-3.001646pt;}
._0_c00300{margin-left:-1.377235pt;}
._5_c00300{width:0.893988pt;}
._1_c00300{width:17.720725pt;}
._3_c00300{width:21.147279pt;}
._4_c00300{width:35.652825pt;}
._7_c00300{width:47.362694pt;}
._6_c00300{width:70.985376pt;}
._8_c00300{width:118.624363pt;}
.fs2_c00300{font-size:39.110400pt;}
.fs1_c00300{font-size:53.133867pt;}
.fs0_c00300{font-size:76.513067pt;}
.y0_c00300{bottom:0.000000pt;}
.y20_c00300{bottom:39.333333pt;}
.y1f_c00300{bottom:77.317333pt;}
.y1e_c00300{bottom:91.929333pt;}
.y1d_c00300{bottom:106.541333pt;}
.y1c_c00300{bottom:121.153333pt;}
.y1b_c00300{bottom:135.765333pt;}
.y1a_c00300{bottom:150.377333pt;}
.y19_c00300{bottom:164.989333pt;}
.y18_c00300{bottom:179.601333pt;}
.y17_c00300{bottom:194.213333pt;}
.y16_c00300{bottom:208.824000pt;}
.y15_c00300{bottom:223.436000pt;}
.y14_c00300{bottom:238.048000pt;}
.y13_c00300{bottom:252.660000pt;}
.y12_c00300{bottom:267.272000pt;}
.y11_c00300{bottom:281.884000pt;}
.y10_c00300{bottom:311.108000pt;}
.yf_c00300{bottom:325.720000pt;}
.ye_c00300{bottom:369.554667pt;}
.yd_c00300{bottom:384.166667pt;}
.yc_c00300{bottom:398.446667pt;}
.yb_c00300{bottom:439.013333pt;}
.ya_c00300{bottom:454.953333pt;}
.y9_c00300{bottom:470.894667pt;}
.y8_c00300{bottom:486.834667pt;}
.y7_c00300{bottom:502.774667pt;}
.y6_c00300{bottom:518.714667pt;}
.y5_c00300{bottom:542.785333pt;}
.y4_c00300{bottom:566.857333pt;}
.y3_c00300{bottom:590.928000pt;}
.y2_c00300{bottom:614.998667pt;}
.y1_c00300{bottom:652.806667pt;}
.h5_c00300{height:31.280681pt;}
.h6_c00300{height:32.006363pt;}
.h3_c00300{height:36.010648pt;}
.h4_c00300{height:46.518078pt;}
.h2_c00300{height:51.855535pt;}
.h0_c00300{height:1122.520000pt;}
.h1_c00300{height:1122.666667pt;}
.w0_c00300{width:793.706667pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:113.385333pt;}
.x2_c00300{left:121.886667pt;}
.x3_c00300{left:127.796000pt;}
.x4_c00300{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe287fbb49e52aea844f03b0.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.048828;font-style:normal;font-weight:normal;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_64c7c1443a1c39adc3d7b958.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.014648;font-style:normal;font-weight:normal;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_297d26cd424c6ae0b14a00c0.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.893555;font-style:normal;font-weight:normal;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_15ade67053a89abb1d5627e7.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.102051;font-style: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;}
.ls4_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:0.087998px;}
.ls2_c00301{letter-spacing:0.098482px;}
.ls3_c00301{letter-spacing:0.104482px;}
.ls1_c00301{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00301{word-spacing:-26.575517px;}
.ws4_c00301{word-spacing:-26.487518px;}
.wsa_c00301{word-spacing:-18.769538px;}
.wsc_c00301{word-spacing:-16.019861px;}
.ws9_c00301{word-spacing:-14.943900px;}
.wsf_c00301{word-spacing:-14.107042px;}
.ws10_c00301{word-spacing:-12.074671px;}
.wse_c00301{word-spacing:-11.716018px;}
.wsd_c00301{word-spacing:-11.656242px;}
.ws7_c00301{word-spacing:-9.988424px;}
.ws8_c00301{word-spacing:-9.987499px;}
.wsb_c00301{word-spacing:-4.536144px;}
.ws3_c00301{word-spacing:0.000000px;}
.ws0_c00301{word-spacing:0.043999px;}
.ws5_c00301{word-spacing:0.213446px;}
.ws1_c00301{word-spacing:0.219446px;}
.ws6_c00301{word-spacing:43.038600px;}
._4_c00301{margin-left:-3.376852px;}
._2_c00301{margin-left:-1.549390px;}
._1_c00301{width:1.041538px;}
._3_c00301{width:19.935816px;}
._5_c00301{width:23.790689px;}
._6_c00301{width:40.109428px;}
._0_c00301{width:106.654061px;}
.fc5_c00301{color:rgb(79,153,5);}
.fc4_c00301{color:rgb(143,89,3);}
.fc3_c00301{color:rgb(0,0,0);}
.fc6_c00301{color:rgb(6,69,173);}
.fc2_c00301{color:rgb(207,92,0);}
.fc1_c00301{color:rgb(0,0,207);}
.fc0_c00301{color:rgb(33,74,135);}
.fs0_c00301{font-size:43.999200px;}
.fs2_c00301{font-size:59.775600px;}
.fs1_c00301{font-size:86.077200px;}
.y0_c00301{bottom:0.000000px;}
.y20_c00301{bottom:44.250000px;}
.y1f_c00301{bottom:82.051500px;}
.y1e_c00301{bottom:99.984000px;}
.y1d_c00301{bottom:117.916500px;}
.y1c_c00301{bottom:135.849000px;}
.y1b_c00301{bottom:162.501000px;}
.y1a_c00301{bottom:189.151500px;}
.y19_c00301{bottom:215.802000px;}
.y18_c00301{bottom:242.454000px;}
.y17_c00301{bottom:284.478000px;}
.y16_c00301{bottom:748.903500px;}
.y15_c00301{bottom:765.342000px;}
.y14_c00301{bottom:781.780500px;}
.y13_c00301{bottom:798.219000px;}
.y12_c00301{bottom:814.657500px;}
.y11_c00301{bottom:831.096000px;}
.y10_c00301{bottom:847.534500px;}
.yf_c00301{bottom:863.973000px;}
.ye_c00301{bottom:880.411500px;}
.yd_c00301{bottom:896.848500px;}
.yc_c00301{bottom:913.287000px;}
.yb_c00301{bottom:946.164000px;}
.ya_c00301{bottom:962.602500px;}
.y9_c00301{bottom:979.041000px;}
.y8_c00301{bottom:1011.918000px;}
.y7_c00301{bottom:1028.356500px;}
.y6_c00301{bottom:1044.795000px;}
.y5_c00301{bottom:1061.232000px;}
.y4_c00301{bottom:1077.670500px;}
.y3_c00301{bottom:1094.109000px;}
.y2_c00301{bottom:1110.547500px;}
.y1_c00301{bottom:1159.863000px;}
.h3_c00301{height:35.190766px;}
.h2_c00301{height:36.007158px;}
.h5_c00301{height:40.511979px;}
.h6_c00301{height:52.332837px;}
.h4_c00301{height:58.337477px;}
.h0_c00301{height:1262.835000px;}
.h1_c00301{height:1263.000000px;}
.w0_c00301{width:892.920000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x4_c00301{left:127.558500px;}
.x2_c00301{left:137.122500px;}
.x1_c00301{left:143.770500px;}
.x3_c00301{left:177.007500px;}
.x5_c00301{left:435.249000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls4_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:0.078221pt;}
.ls2_c00301{letter-spacing:0.087539pt;}
.ls3_c00301{letter-spacing:0.092873pt;}
.ls1_c00301{letter-spacing:23.724873pt;}
.ws2_c00301{word-spacing:-23.622682pt;}
.ws4_c00301{word-spacing:-23.544461pt;}
.wsa_c00301{word-spacing:-16.684034pt;}
.wsc_c00301{word-spacing:-14.239876pt;}
.ws9_c00301{word-spacing:-13.283467pt;}
.wsf_c00301{word-spacing:-12.539593pt;}
.ws10_c00301{word-spacing:-10.733041pt;}
.wse_c00301{word-spacing:-10.414238pt;}
.wsd_c00301{word-spacing:-10.361104pt;}
.ws7_c00301{word-spacing:-8.878599pt;}
.ws8_c00301{word-spacing:-8.877777pt;}
.wsb_c00301{word-spacing:-4.032128pt;}
.ws3_c00301{word-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.039110pt;}
.ws5_c00301{word-spacing:0.189730pt;}
.ws1_c00301{word-spacing:0.195063pt;}
.ws6_c00301{word-spacing:38.256533pt;}
._4_c00301{margin-left:-3.001646pt;}
._2_c00301{margin-left:-1.377235pt;}
._1_c00301{width:0.925811pt;}
._3_c00301{width:17.720725pt;}
._5_c00301{width:21.147279pt;}
._6_c00301{width:35.652825pt;}
._0_c00301{width:94.803610pt;}
.fs0_c00301{font-size:39.110400pt;}
.fs2_c00301{font-size:53.133867pt;}
.fs1_c00301{font-size:76.513067pt;}
.y0_c00301{bottom:0.000000pt;}
.y20_c00301{bottom:39.333333pt;}
.y1f_c00301{bottom:72.934667pt;}
.y1e_c00301{bottom:88.874667pt;}
.y1d_c00301{bottom:104.814667pt;}
.y1c_c00301{bottom:120.754667pt;}
.y1b_c00301{bottom:144.445333pt;}
.y1a_c00301{bottom:168.134667pt;}
.y19_c00301{bottom:191.824000pt;}
.y18_c00301{bottom:215.514667pt;}
.y17_c00301{bottom:252.869333pt;}
.y16_c00301{bottom:665.692000pt;}
.y15_c00301{bottom:680.304000pt;}
.y14_c00301{bottom:694.916000pt;}
.y13_c00301{bottom:709.528000pt;}
.y12_c00301{bottom:724.140000pt;}
.y11_c00301{bottom:738.752000pt;}
.y10_c00301{bottom:753.364000pt;}
.yf_c00301{bottom:767.976000pt;}
.ye_c00301{bottom:782.588000pt;}
.yd_c00301{bottom:797.198667pt;}
.yc_c00301{bottom:811.810667pt;}
.yb_c00301{bottom:841.034667pt;}
.ya_c00301{bottom:855.646667pt;}
.y9_c00301{bottom:870.258667pt;}
.y8_c00301{bottom:899.482667pt;}
.y7_c00301{bottom:914.094667pt;}
.y6_c00301{bottom:928.706667pt;}
.y5_c00301{bottom:943.317333pt;}
.y4_c00301{bottom:957.929333pt;}
.y3_c00301{bottom:972.541333pt;}
.y2_c00301{bottom:987.153333pt;}
.y1_c00301{bottom:1030.989333pt;}
.h3_c00301{height:31.280681pt;}
.h2_c00301{height:32.006363pt;}
.h5_c00301{height:36.010648pt;}
.h6_c00301{height:46.518078pt;}
.h4_c00301{height:51.855535pt;}
.h0_c00301{height:1122.520000pt;}
.h1_c00301{height:1122.666667pt;}
.w0_c00301{width:793.706667pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x4_c00301{left:113.385333pt;}
.x2_c00301{left:121.886667pt;}
.x1_c00301{left:127.796000pt;}
.x3_c00301{left:157.340000pt;}
.x5_c00301{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4b356c65c2353286ed83c34.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.102051;font-style:normal;font-weight:normal;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_718f0ae65daeabb81fe5d8f5.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.048828;font-style:normal;font-weight:normal;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_cf94fab35c93a690e1da9cbb.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls4_c00302{letter-spacing:0.000000px;}
.ls1_c00302{letter-spacing:0.087998px;}
.ls2_c00302{letter-spacing:0.098482px;}
.ls0_c00302{letter-spacing:0.104482px;}
.ls3_c00302{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00302{word-spacing:-26.575517px;}
.ws3_c00302{word-spacing:-26.487518px;}
.ws0_c00302{word-spacing:-18.769538px;}
.ws8_c00302{word-spacing:0.000000px;}
.ws5_c00302{word-spacing:0.043999px;}
.wsb_c00302{word-spacing:0.056767px;}
.ws9_c00302{word-spacing:0.073250px;}
.wsa_c00302{word-spacing:0.083734px;}
.ws2_c00302{word-spacing:0.175997px;}
.wsc_c00302{word-spacing:0.202963px;}
.ws6_c00302{word-spacing:0.213446px;}
.ws7_c00302{word-spacing:0.219446px;}
._0_c00302{margin-left:-3.825638px;}
._1_c00302{width:1.005737px;}
._3_c00302{width:53.283031px;}
._2_c00302{width:79.858548px;}
._4_c00302{width:133.452408px;}
.fc5_c00302{color:rgb(0,0,207);}
.fc4_c00302{color:rgb(79,153,5);}
.fc3_c00302{color:rgb(207,92,0);}
.fc2_c00302{color:rgb(33,74,135);}
.fc1_c00302{color:rgb(143,89,3);}
.fc0_c00302{color:rgb(0,0,0);}
.fs1_c00302{font-size:43.999200px;}
.fs0_c00302{font-size:59.775600px;}
.y0_c00302{bottom:0.000000px;}
.y2d_c00302{bottom:44.250000px;}
.y2c_c00302{bottom:96.919500px;}
.y2b_c00302{bottom:113.358000px;}
.y2a_c00302{bottom:129.796500px;}
.y29_c00302{bottom:146.235000px;}
.y28_c00302{bottom:162.673500px;}
.y27_c00302{bottom:179.112000px;}
.y26_c00302{bottom:195.550500px;}
.y25_c00302{bottom:211.989000px;}
.y24_c00302{bottom:228.427500px;}
.y23_c00302{bottom:244.866000px;}
.y22_c00302{bottom:261.304500px;}
.y21_c00302{bottom:294.180000px;}
.y20_c00302{bottom:310.618500px;}
.y1f_c00302{bottom:327.057000px;}
.y1e_c00302{bottom:359.934000px;}
.y1d_c00302{bottom:376.372500px;}
.y1c_c00302{bottom:392.811000px;}
.y1b_c00302{bottom:409.249500px;}
.y1a_c00302{bottom:425.688000px;}
.y19_c00302{bottom:442.125000px;}
.y18_c00302{bottom:458.563500px;}
.y17_c00302{bottom:507.879000px;}
.y16_c00302{bottom:524.317500px;}
.y15_c00302{bottom:540.756000px;}
.y14_c00302{bottom:557.194500px;}
.y13_c00302{bottom:573.633000px;}
.y12_c00302{bottom:590.071500px;}
.y11_c00302{bottom:606.508500px;}
.y10_c00302{bottom:622.947000px;}
.yf_c00302{bottom:639.385500px;}
.ye_c00302{bottom:655.824000px;}
.yd_c00302{bottom:672.262500px;}
.yc_c00302{bottom:688.701000px;}
.yb_c00302{bottom:705.139500px;}
.ya_c00302{bottom:721.578000px;}
.y9_c00302{bottom:738.016500px;}
.y8_c00302{bottom:754.455000px;}
.y7_c00302{bottom:787.330500px;}
.y6_c00302{bottom:803.769000px;}
.y5_c00302{bottom:853.084500px;}
.y4_c00302{bottom:869.523000px;}
.y3_c00302{bottom:885.588000px;}
.y2_c00302{bottom:1141.930500px;}
.y1_c00302{bottom:1159.863000px;}
.h3_c00302{height:35.190766px;}
.h4_c00302{height:36.007158px;}
.h2_c00302{height:52.332837px;}
.h0_c00302{height:1262.835000px;}
.h1_c00302{height:1263.000000px;}
.w0_c00302{width:892.920000px;}
.w1_c00302{width:893.250000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:127.558500px;}
.x2_c00302{left:137.122500px;}
.x3_c00302{left:143.770500px;}
.x4_c00302{left:177.007500px;}
.x5_c00302{left:435.249000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls4_c00302{letter-spacing:0.000000pt;}
.ls1_c00302{letter-spacing:0.078221pt;}
.ls2_c00302{letter-spacing:0.087539pt;}
.ls0_c00302{letter-spacing:0.092873pt;}
.ls3_c00302{letter-spacing:23.724873pt;}
.ws1_c00302{word-spacing:-29.967501pt;}
.ws4_c00302{word-spacing:-23.622682pt;}
.ws3_c00302{word-spacing:-23.544461pt;}
.ws0_c00302{word-spacing:-16.684034pt;}
.ws8_c00302{word-spacing:0.000000pt;}
.ws5_c00302{word-spacing:0.039110pt;}
.wsb_c00302{word-spacing:0.050460pt;}
.ws9_c00302{word-spacing:0.065111pt;}
.wsa_c00302{word-spacing:0.074430pt;}
.ws2_c00302{word-spacing:0.156442pt;}
.wsc_c00302{word-spacing:0.180412pt;}
.ws6_c00302{word-spacing:0.189730pt;}
.ws7_c00302{word-spacing:0.195063pt;}
._0_c00302{margin-left:-3.400567pt;}
._1_c00302{width:0.893988pt;}
._3_c00302{width:47.362694pt;}
._2_c00302{width:70.985376pt;}
._4_c00302{width:118.624363pt;}
.fs1_c00302{font-size:39.110400pt;}
.fs0_c00302{font-size:53.133867pt;}
.y0_c00302{bottom:0.000000pt;}
.y2d_c00302{bottom:39.333333pt;}
.y2c_c00302{bottom:86.150667pt;}
.y2b_c00302{bottom:100.762667pt;}
.y2a_c00302{bottom:115.374667pt;}
.y29_c00302{bottom:129.986667pt;}
.y28_c00302{bottom:144.598667pt;}
.y27_c00302{bottom:159.210667pt;}
.y26_c00302{bottom:173.822667pt;}
.y25_c00302{bottom:188.434667pt;}
.y24_c00302{bottom:203.046667pt;}
.y23_c00302{bottom:217.658667pt;}
.y22_c00302{bottom:232.270667pt;}
.y21_c00302{bottom:261.493333pt;}
.y20_c00302{bottom:276.105333pt;}
.y1f_c00302{bottom:290.717333pt;}
.y1e_c00302{bottom:319.941333pt;}
.y1d_c00302{bottom:334.553333pt;}
.y1c_c00302{bottom:349.165333pt;}
.y1b_c00302{bottom:363.777333pt;}
.y1a_c00302{bottom:378.389333pt;}
.y19_c00302{bottom:393.000000pt;}
.y18_c00302{bottom:407.612000pt;}
.y17_c00302{bottom:451.448000pt;}
.y16_c00302{bottom:466.060000pt;}
.y15_c00302{bottom:480.672000pt;}
.y14_c00302{bottom:495.284000pt;}
.y13_c00302{bottom:509.896000pt;}
.y12_c00302{bottom:524.508000pt;}
.y11_c00302{bottom:539.118667pt;}
.y10_c00302{bottom:553.730667pt;}
.yf_c00302{bottom:568.342667pt;}
.ye_c00302{bottom:582.954667pt;}
.yd_c00302{bottom:597.566667pt;}
.yc_c00302{bottom:612.178667pt;}
.yb_c00302{bottom:626.790667pt;}
.ya_c00302{bottom:641.402667pt;}
.y9_c00302{bottom:656.014667pt;}
.y8_c00302{bottom:670.626667pt;}
.y7_c00302{bottom:699.849333pt;}
.y6_c00302{bottom:714.461333pt;}
.y5_c00302{bottom:758.297333pt;}
.y4_c00302{bottom:772.909333pt;}
.y3_c00302{bottom:787.189333pt;}
.y2_c00302{bottom:1015.049333pt;}
.y1_c00302{bottom:1030.989333pt;}
.h3_c00302{height:31.280681pt;}
.h4_c00302{height:32.006363pt;}
.h2_c00302{height:46.518078pt;}
.h0_c00302{height:1122.520000pt;}
.h1_c00302{height:1122.666667pt;}
.w0_c00302{width:793.706667pt;}
.w1_c00302{width:794.000000pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:113.385333pt;}
.x2_c00302{left:121.886667pt;}
.x3_c00302{left:127.796000pt;}
.x4_c00302{left:157.340000pt;}
.x5_c00302{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eec7e1a2114b66956761cbd8.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.893555;font-style:normal;font-weight:normal;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_598146fdb30707f076372b8d.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_73237446d209fef8d73335e6.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;line-height:1.048828;font-style: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;}
.ls3_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.087998px;}
.ls2_c00303{letter-spacing:0.098482px;}
.ls1_c00303{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00303{word-spacing:-33.713438px;}
.ws2_c00303{word-spacing:-26.575517px;}
.wse_c00303{word-spacing:-26.487518px;}
.ws5_c00303{word-spacing:-18.769538px;}
.ws7_c00303{word-spacing:-16.019861px;}
.ws4_c00303{word-spacing:-14.943900px;}
.wsa_c00303{word-spacing:-14.107042px;}
.wsb_c00303{word-spacing:-12.074671px;}
.ws9_c00303{word-spacing:-11.716018px;}
.ws8_c00303{word-spacing:-11.656242px;}
.ws1_c00303{word-spacing:-9.988424px;}
.ws3_c00303{word-spacing:-9.987499px;}
.ws6_c00303{word-spacing:-4.536144px;}
.ws12_c00303{word-spacing:0.000000px;}
.wsf_c00303{word-spacing:0.043999px;}
.ws15_c00303{word-spacing:0.056767px;}
.ws13_c00303{word-spacing:0.073250px;}
.ws14_c00303{word-spacing:0.083734px;}
.wsd_c00303{word-spacing:0.175997px;}
.ws16_c00303{word-spacing:0.202963px;}
.ws10_c00303{word-spacing:0.213446px;}
.ws11_c00303{word-spacing:0.219446px;}
.ws0_c00303{word-spacing:43.038600px;}
._2_c00303{margin-left:-3.376852px;}
._0_c00303{margin-left:-1.549390px;}
._5_c00303{width:1.005737px;}
._1_c00303{width:19.935816px;}
._3_c00303{width:23.790689px;}
._4_c00303{width:40.109428px;}
._7_c00303{width:53.283031px;}
._6_c00303{width:79.858548px;}
._8_c00303{width:133.452408px;}
.fc6_c00303{color:rgb(0,0,207);}
.fc5_c00303{color:rgb(79,153,5);}
.fc3_c00303{color:rgb(33,74,135);}
.fc2_c00303{color:rgb(143,89,3);}
.fc4_c00303{color:rgb(207,92,0);}
.fc1_c00303{color:rgb(6,69,173);}
.fc0_c00303{color:rgb(0,0,0);}
.fs2_c00303{font-size:43.999200px;}
.fs1_c00303{font-size:59.775600px;}
.fs0_c00303{font-size:86.077200px;}
.y0_c00303{bottom:0.000000px;}
.y20_c00303{bottom:44.250000px;}
.y1f_c00303{bottom:86.982000px;}
.y1e_c00303{bottom:103.420500px;}
.y1d_c00303{bottom:119.859000px;}
.y1c_c00303{bottom:136.297500px;}
.y1b_c00303{bottom:152.736000px;}
.y1a_c00303{bottom:169.174500px;}
.y19_c00303{bottom:185.613000px;}
.y18_c00303{bottom:202.051500px;}
.y17_c00303{bottom:218.490000px;}
.y16_c00303{bottom:234.927000px;}
.y15_c00303{bottom:251.365500px;}
.y14_c00303{bottom:267.804000px;}
.y13_c00303{bottom:284.242500px;}
.y12_c00303{bottom:300.681000px;}
.y11_c00303{bottom:317.119500px;}
.y10_c00303{bottom:349.996500px;}
.yf_c00303{bottom:366.435000px;}
.ye_c00303{bottom:415.749000px;}
.yd_c00303{bottom:432.187500px;}
.yc_c00303{bottom:448.252500px;}
.yb_c00303{bottom:493.890000px;}
.ya_c00303{bottom:511.822500px;}
.y9_c00303{bottom:529.756500px;}
.y8_c00303{bottom:547.689000px;}
.y7_c00303{bottom:565.621500px;}
.y6_c00303{bottom:583.554000px;}
.y5_c00303{bottom:610.633500px;}
.y4_c00303{bottom:637.714500px;}
.y3_c00303{bottom:664.794000px;}
.y2_c00303{bottom:691.873500px;}
.y1_c00303{bottom:734.407500px;}
.h5_c00303{height:35.190766px;}
.h6_c00303{height:36.007158px;}
.h3_c00303{height:40.511979px;}
.h4_c00303{height:52.332837px;}
.h2_c00303{height:58.337477px;}
.h0_c00303{height:1262.835000px;}
.h1_c00303{height:1263.000000px;}
.w0_c00303{width:892.920000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:127.558500px;}
.x2_c00303{left:137.122500px;}
.x3_c00303{left:143.770500px;}
.x4_c00303{left:435.249000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls3_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.078221pt;}
.ls2_c00303{letter-spacing:0.087539pt;}
.ls1_c00303{letter-spacing:0.092873pt;}
.wsc_c00303{word-spacing:-29.967501pt;}
.ws2_c00303{word-spacing:-23.622682pt;}
.wse_c00303{word-spacing:-23.544461pt;}
.ws5_c00303{word-spacing:-16.684034pt;}
.ws7_c00303{word-spacing:-14.239876pt;}
.ws4_c00303{word-spacing:-13.283467pt;}
.wsa_c00303{word-spacing:-12.539593pt;}
.wsb_c00303{word-spacing:-10.733041pt;}
.ws9_c00303{word-spacing:-10.414238pt;}
.ws8_c00303{word-spacing:-10.361104pt;}
.ws1_c00303{word-spacing:-8.878599pt;}
.ws3_c00303{word-spacing:-8.877777pt;}
.ws6_c00303{word-spacing:-4.032128pt;}
.ws12_c00303{word-spacing:0.000000pt;}
.wsf_c00303{word-spacing:0.039110pt;}
.ws15_c00303{word-spacing:0.050460pt;}
.ws13_c00303{word-spacing:0.065111pt;}
.ws14_c00303{word-spacing:0.074430pt;}
.wsd_c00303{word-spacing:0.156442pt;}
.ws16_c00303{word-spacing:0.180412pt;}
.ws10_c00303{word-spacing:0.189730pt;}
.ws11_c00303{word-spacing:0.195063pt;}
.ws0_c00303{word-spacing:38.256533pt;}
._2_c00303{margin-left:-3.001646pt;}
._0_c00303{margin-left:-1.377235pt;}
._5_c00303{width:0.893988pt;}
._1_c00303{width:17.720725pt;}
._3_c00303{width:21.147279pt;}
._4_c00303{width:35.652825pt;}
._7_c00303{width:47.362694pt;}
._6_c00303{width:70.985376pt;}
._8_c00303{width:118.624363pt;}
.fs2_c00303{font-size:39.110400pt;}
.fs1_c00303{font-size:53.133867pt;}
.fs0_c00303{font-size:76.513067pt;}
.y0_c00303{bottom:0.000000pt;}
.y20_c00303{bottom:39.333333pt;}
.y1f_c00303{bottom:77.317333pt;}
.y1e_c00303{bottom:91.929333pt;}
.y1d_c00303{bottom:106.541333pt;}
.y1c_c00303{bottom:121.153333pt;}
.y1b_c00303{bottom:135.765333pt;}
.y1a_c00303{bottom:150.377333pt;}
.y19_c00303{bottom:164.989333pt;}
.y18_c00303{bottom:179.601333pt;}
.y17_c00303{bottom:194.213333pt;}
.y16_c00303{bottom:208.824000pt;}
.y15_c00303{bottom:223.436000pt;}
.y14_c00303{bottom:238.048000pt;}
.y13_c00303{bottom:252.660000pt;}
.y12_c00303{bottom:267.272000pt;}
.y11_c00303{bottom:281.884000pt;}
.y10_c00303{bottom:311.108000pt;}
.yf_c00303{bottom:325.720000pt;}
.ye_c00303{bottom:369.554667pt;}
.yd_c00303{bottom:384.166667pt;}
.yc_c00303{bottom:398.446667pt;}
.yb_c00303{bottom:439.013333pt;}
.ya_c00303{bottom:454.953333pt;}
.y9_c00303{bottom:470.894667pt;}
.y8_c00303{bottom:486.834667pt;}
.y7_c00303{bottom:502.774667pt;}
.y6_c00303{bottom:518.714667pt;}
.y5_c00303{bottom:542.785333pt;}
.y4_c00303{bottom:566.857333pt;}
.y3_c00303{bottom:590.928000pt;}
.y2_c00303{bottom:614.998667pt;}
.y1_c00303{bottom:652.806667pt;}
.h5_c00303{height:31.280681pt;}
.h6_c00303{height:32.006363pt;}
.h3_c00303{height:36.010648pt;}
.h4_c00303{height:46.518078pt;}
.h2_c00303{height:51.855535pt;}
.h0_c00303{height:1122.520000pt;}
.h1_c00303{height:1122.666667pt;}
.w0_c00303{width:793.706667pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:113.385333pt;}
.x2_c00303{left:121.886667pt;}
.x3_c00303{left:127.796000pt;}
.x4_c00303{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6aa547f22180c4ec7eb4af8.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.048828;font-style:normal;font-weight:normal;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_fef457193173329e71720a43.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.014648;font-style:normal;font-weight:normal;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_58b3237b83e1c0f30630fbfc.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_15ade67053a89abb1d5627e7.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.102051;font-style: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;}
.ls4_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.087998px;}
.ls2_c00304{letter-spacing:0.098482px;}
.ls3_c00304{letter-spacing:0.104482px;}
.ls1_c00304{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00304{word-spacing:-26.575517px;}
.ws4_c00304{word-spacing:-26.487518px;}
.wsa_c00304{word-spacing:-18.769538px;}
.wsc_c00304{word-spacing:-17.633802px;}
.ws9_c00304{word-spacing:-14.943900px;}
.wsf_c00304{word-spacing:-14.107042px;}
.ws10_c00304{word-spacing:-12.074671px;}
.wse_c00304{word-spacing:-11.716018px;}
.wsd_c00304{word-spacing:-11.656242px;}
.ws7_c00304{word-spacing:-9.988424px;}
.ws8_c00304{word-spacing:-9.987499px;}
.wsb_c00304{word-spacing:-7.680144px;}
.ws3_c00304{word-spacing:0.000000px;}
.ws0_c00304{word-spacing:0.043999px;}
.ws5_c00304{word-spacing:0.213446px;}
.ws1_c00304{word-spacing:0.219446px;}
.ws6_c00304{word-spacing:43.038600px;}
._4_c00304{margin-left:-3.376852px;}
._2_c00304{margin-left:-1.549390px;}
._1_c00304{width:1.041538px;}
._3_c00304{width:19.935816px;}
._5_c00304{width:23.790689px;}
._6_c00304{width:40.109428px;}
._0_c00304{width:80.078544px;}
.fc5_c00304{color:rgb(79,153,5);}
.fc4_c00304{color:rgb(143,89,3);}
.fc3_c00304{color:rgb(0,0,0);}
.fc6_c00304{color:rgb(6,69,173);}
.fc2_c00304{color:rgb(207,92,0);}
.fc1_c00304{color:rgb(0,0,207);}
.fc0_c00304{color:rgb(33,74,135);}
.fs0_c00304{font-size:43.999200px;}
.fs2_c00304{font-size:59.775600px;}
.fs1_c00304{font-size:86.077200px;}
.y0_c00304{bottom:0.000000px;}
.y20_c00304{bottom:44.250000px;}
.y1f_c00304{bottom:82.051500px;}
.y1e_c00304{bottom:99.984000px;}
.y1d_c00304{bottom:117.916500px;}
.y1c_c00304{bottom:135.849000px;}
.y1b_c00304{bottom:162.501000px;}
.y1a_c00304{bottom:189.151500px;}
.y19_c00304{bottom:215.802000px;}
.y18_c00304{bottom:242.454000px;}
.y17_c00304{bottom:284.478000px;}
.y16_c00304{bottom:748.903500px;}
.y15_c00304{bottom:765.342000px;}
.y14_c00304{bottom:781.780500px;}
.y13_c00304{bottom:798.219000px;}
.y12_c00304{bottom:814.657500px;}
.y11_c00304{bottom:831.096000px;}
.y10_c00304{bottom:847.534500px;}
.yf_c00304{bottom:863.973000px;}
.ye_c00304{bottom:880.411500px;}
.yd_c00304{bottom:896.848500px;}
.yc_c00304{bottom:913.287000px;}
.yb_c00304{bottom:946.164000px;}
.ya_c00304{bottom:962.602500px;}
.y9_c00304{bottom:979.041000px;}
.y8_c00304{bottom:1011.918000px;}
.y7_c00304{bottom:1028.356500px;}
.y6_c00304{bottom:1044.795000px;}
.y5_c00304{bottom:1061.232000px;}
.y4_c00304{bottom:1077.670500px;}
.y3_c00304{bottom:1094.109000px;}
.y2_c00304{bottom:1110.547500px;}
.y1_c00304{bottom:1159.863000px;}
.h3_c00304{height:35.190766px;}
.h2_c00304{height:36.007158px;}
.h5_c00304{height:40.511979px;}
.h6_c00304{height:52.332837px;}
.h4_c00304{height:58.337477px;}
.h0_c00304{height:1262.835000px;}
.h1_c00304{height:1263.000000px;}
.w0_c00304{width:892.920000px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x4_c00304{left:127.558500px;}
.x2_c00304{left:137.122500px;}
.x1_c00304{left:143.770500px;}
.x3_c00304{left:177.007500px;}
.x5_c00304{left:435.249000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls4_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.078221pt;}
.ls2_c00304{letter-spacing:0.087539pt;}
.ls3_c00304{letter-spacing:0.092873pt;}
.ls1_c00304{letter-spacing:23.724873pt;}
.ws2_c00304{word-spacing:-23.622682pt;}
.ws4_c00304{word-spacing:-23.544461pt;}
.wsa_c00304{word-spacing:-16.684034pt;}
.wsc_c00304{word-spacing:-15.674491pt;}
.ws9_c00304{word-spacing:-13.283467pt;}
.wsf_c00304{word-spacing:-12.539593pt;}
.ws10_c00304{word-spacing:-10.733041pt;}
.wse_c00304{word-spacing:-10.414238pt;}
.wsd_c00304{word-spacing:-10.361104pt;}
.ws7_c00304{word-spacing:-8.878599pt;}
.ws8_c00304{word-spacing:-8.877777pt;}
.wsb_c00304{word-spacing:-6.826795pt;}
.ws3_c00304{word-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.039110pt;}
.ws5_c00304{word-spacing:0.189730pt;}
.ws1_c00304{word-spacing:0.195063pt;}
.ws6_c00304{word-spacing:38.256533pt;}
._4_c00304{margin-left:-3.001646pt;}
._2_c00304{margin-left:-1.377235pt;}
._1_c00304{width:0.925811pt;}
._3_c00304{width:17.720725pt;}
._5_c00304{width:21.147279pt;}
._6_c00304{width:35.652825pt;}
._0_c00304{width:71.180928pt;}
.fs0_c00304{font-size:39.110400pt;}
.fs2_c00304{font-size:53.133867pt;}
.fs1_c00304{font-size:76.513067pt;}
.y0_c00304{bottom:0.000000pt;}
.y20_c00304{bottom:39.333333pt;}
.y1f_c00304{bottom:72.934667pt;}
.y1e_c00304{bottom:88.874667pt;}
.y1d_c00304{bottom:104.814667pt;}
.y1c_c00304{bottom:120.754667pt;}
.y1b_c00304{bottom:144.445333pt;}
.y1a_c00304{bottom:168.134667pt;}
.y19_c00304{bottom:191.824000pt;}
.y18_c00304{bottom:215.514667pt;}
.y17_c00304{bottom:252.869333pt;}
.y16_c00304{bottom:665.692000pt;}
.y15_c00304{bottom:680.304000pt;}
.y14_c00304{bottom:694.916000pt;}
.y13_c00304{bottom:709.528000pt;}
.y12_c00304{bottom:724.140000pt;}
.y11_c00304{bottom:738.752000pt;}
.y10_c00304{bottom:753.364000pt;}
.yf_c00304{bottom:767.976000pt;}
.ye_c00304{bottom:782.588000pt;}
.yd_c00304{bottom:797.198667pt;}
.yc_c00304{bottom:811.810667pt;}
.yb_c00304{bottom:841.034667pt;}
.ya_c00304{bottom:855.646667pt;}
.y9_c00304{bottom:870.258667pt;}
.y8_c00304{bottom:899.482667pt;}
.y7_c00304{bottom:914.094667pt;}
.y6_c00304{bottom:928.706667pt;}
.y5_c00304{bottom:943.317333pt;}
.y4_c00304{bottom:957.929333pt;}
.y3_c00304{bottom:972.541333pt;}
.y2_c00304{bottom:987.153333pt;}
.y1_c00304{bottom:1030.989333pt;}
.h3_c00304{height:31.280681pt;}
.h2_c00304{height:32.006363pt;}
.h5_c00304{height:36.010648pt;}
.h6_c00304{height:46.518078pt;}
.h4_c00304{height:51.855535pt;}
.h0_c00304{height:1122.520000pt;}
.h1_c00304{height:1122.666667pt;}
.w0_c00304{width:793.706667pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x4_c00304{left:113.385333pt;}
.x2_c00304{left:121.886667pt;}
.x1_c00304{left:127.796000pt;}
.x3_c00304{left:157.340000pt;}
.x5_c00304{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4a1153f1a1400e4ab21cb20.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.102051;font-style:normal;font-weight:normal;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_1150fac927302240e8279b4f.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_035fb3b4408ebe50577b8625.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls4_c00305{letter-spacing:0.000000px;}
.ls1_c00305{letter-spacing:0.087998px;}
.ls2_c00305{letter-spacing:0.098482px;}
.ls0_c00305{letter-spacing:0.104482px;}
.ls3_c00305{letter-spacing:26.690482px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00305{word-spacing:-33.713438px;}
.ws4_c00305{word-spacing:-26.575517px;}
.ws3_c00305{word-spacing:-26.487518px;}
.ws0_c00305{word-spacing:-18.769538px;}
.ws8_c00305{word-spacing:0.000000px;}
.ws5_c00305{word-spacing:0.043999px;}
.wsb_c00305{word-spacing:0.056767px;}
.ws9_c00305{word-spacing:0.073250px;}
.wsa_c00305{word-spacing:0.083734px;}
.ws2_c00305{word-spacing:0.175997px;}
.wsc_c00305{word-spacing:0.202963px;}
.ws6_c00305{word-spacing:0.213446px;}
.ws7_c00305{word-spacing:0.219446px;}
._0_c00305{margin-left:-3.825638px;}
._1_c00305{width:1.005737px;}
._3_c00305{width:53.283031px;}
._2_c00305{width:79.858548px;}
._4_c00305{width:133.452408px;}
.fc5_c00305{color:rgb(0,0,207);}
.fc4_c00305{color:rgb(79,153,5);}
.fc3_c00305{color:rgb(207,92,0);}
.fc2_c00305{color:rgb(33,74,135);}
.fc1_c00305{color:rgb(143,89,3);}
.fc0_c00305{color:rgb(0,0,0);}
.fs1_c00305{font-size:43.999200px;}
.fs0_c00305{font-size:59.775600px;}
.y0_c00305{bottom:0.000000px;}
.y2d_c00305{bottom:44.250000px;}
.y2c_c00305{bottom:96.919500px;}
.y2b_c00305{bottom:113.358000px;}
.y2a_c00305{bottom:129.796500px;}
.y29_c00305{bottom:146.235000px;}
.y28_c00305{bottom:162.673500px;}
.y27_c00305{bottom:179.112000px;}
.y26_c00305{bottom:195.550500px;}
.y25_c00305{bottom:211.989000px;}
.y24_c00305{bottom:228.427500px;}
.y23_c00305{bottom:244.866000px;}
.y22_c00305{bottom:261.304500px;}
.y21_c00305{bottom:294.180000px;}
.y20_c00305{bottom:310.618500px;}
.y1f_c00305{bottom:327.057000px;}
.y1e_c00305{bottom:359.934000px;}
.y1d_c00305{bottom:376.372500px;}
.y1c_c00305{bottom:392.811000px;}
.y1b_c00305{bottom:409.249500px;}
.y1a_c00305{bottom:425.688000px;}
.y19_c00305{bottom:442.125000px;}
.y18_c00305{bottom:458.563500px;}
.y17_c00305{bottom:507.879000px;}
.y16_c00305{bottom:524.317500px;}
.y15_c00305{bottom:540.756000px;}
.y14_c00305{bottom:557.194500px;}
.y13_c00305{bottom:573.633000px;}
.y12_c00305{bottom:590.071500px;}
.y11_c00305{bottom:606.508500px;}
.y10_c00305{bottom:622.947000px;}
.yf_c00305{bottom:639.385500px;}
.ye_c00305{bottom:655.824000px;}
.yd_c00305{bottom:672.262500px;}
.yc_c00305{bottom:688.701000px;}
.yb_c00305{bottom:705.139500px;}
.ya_c00305{bottom:721.578000px;}
.y9_c00305{bottom:738.016500px;}
.y8_c00305{bottom:754.455000px;}
.y7_c00305{bottom:787.330500px;}
.y6_c00305{bottom:803.769000px;}
.y5_c00305{bottom:853.084500px;}
.y4_c00305{bottom:869.523000px;}
.y3_c00305{bottom:885.588000px;}
.y2_c00305{bottom:1141.930500px;}
.y1_c00305{bottom:1159.863000px;}
.h3_c00305{height:35.190766px;}
.h4_c00305{height:36.007158px;}
.h2_c00305{height:52.332837px;}
.h0_c00305{height:1262.835000px;}
.h1_c00305{height:1263.000000px;}
.w0_c00305{width:892.920000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:127.558500px;}
.x2_c00305{left:137.122500px;}
.x3_c00305{left:143.770500px;}
.x4_c00305{left:177.007500px;}
.x5_c00305{left:435.249000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls4_c00305{letter-spacing:0.000000pt;}
.ls1_c00305{letter-spacing:0.078221pt;}
.ls2_c00305{letter-spacing:0.087539pt;}
.ls0_c00305{letter-spacing:0.092873pt;}
.ls3_c00305{letter-spacing:23.724873pt;}
.ws1_c00305{word-spacing:-29.967501pt;}
.ws4_c00305{word-spacing:-23.622682pt;}
.ws3_c00305{word-spacing:-23.544461pt;}
.ws0_c00305{word-spacing:-16.684034pt;}
.ws8_c00305{word-spacing:0.000000pt;}
.ws5_c00305{word-spacing:0.039110pt;}
.wsb_c00305{word-spacing:0.050460pt;}
.ws9_c00305{word-spacing:0.065111pt;}
.wsa_c00305{word-spacing:0.074430pt;}
.ws2_c00305{word-spacing:0.156442pt;}
.wsc_c00305{word-spacing:0.180412pt;}
.ws6_c00305{word-spacing:0.189730pt;}
.ws7_c00305{word-spacing:0.195063pt;}
._0_c00305{margin-left:-3.400567pt;}
._1_c00305{width:0.893988pt;}
._3_c00305{width:47.362694pt;}
._2_c00305{width:70.985376pt;}
._4_c00305{width:118.624363pt;}
.fs1_c00305{font-size:39.110400pt;}
.fs0_c00305{font-size:53.133867pt;}
.y0_c00305{bottom:0.000000pt;}
.y2d_c00305{bottom:39.333333pt;}
.y2c_c00305{bottom:86.150667pt;}
.y2b_c00305{bottom:100.762667pt;}
.y2a_c00305{bottom:115.374667pt;}
.y29_c00305{bottom:129.986667pt;}
.y28_c00305{bottom:144.598667pt;}
.y27_c00305{bottom:159.210667pt;}
.y26_c00305{bottom:173.822667pt;}
.y25_c00305{bottom:188.434667pt;}
.y24_c00305{bottom:203.046667pt;}
.y23_c00305{bottom:217.658667pt;}
.y22_c00305{bottom:232.270667pt;}
.y21_c00305{bottom:261.493333pt;}
.y20_c00305{bottom:276.105333pt;}
.y1f_c00305{bottom:290.717333pt;}
.y1e_c00305{bottom:319.941333pt;}
.y1d_c00305{bottom:334.553333pt;}
.y1c_c00305{bottom:349.165333pt;}
.y1b_c00305{bottom:363.777333pt;}
.y1a_c00305{bottom:378.389333pt;}
.y19_c00305{bottom:393.000000pt;}
.y18_c00305{bottom:407.612000pt;}
.y17_c00305{bottom:451.448000pt;}
.y16_c00305{bottom:466.060000pt;}
.y15_c00305{bottom:480.672000pt;}
.y14_c00305{bottom:495.284000pt;}
.y13_c00305{bottom:509.896000pt;}
.y12_c00305{bottom:524.508000pt;}
.y11_c00305{bottom:539.118667pt;}
.y10_c00305{bottom:553.730667pt;}
.yf_c00305{bottom:568.342667pt;}
.ye_c00305{bottom:582.954667pt;}
.yd_c00305{bottom:597.566667pt;}
.yc_c00305{bottom:612.178667pt;}
.yb_c00305{bottom:626.790667pt;}
.ya_c00305{bottom:641.402667pt;}
.y9_c00305{bottom:656.014667pt;}
.y8_c00305{bottom:670.626667pt;}
.y7_c00305{bottom:699.849333pt;}
.y6_c00305{bottom:714.461333pt;}
.y5_c00305{bottom:758.297333pt;}
.y4_c00305{bottom:772.909333pt;}
.y3_c00305{bottom:787.189333pt;}
.y2_c00305{bottom:1015.049333pt;}
.y1_c00305{bottom:1030.989333pt;}
.h3_c00305{height:31.280681pt;}
.h4_c00305{height:32.006363pt;}
.h2_c00305{height:46.518078pt;}
.h0_c00305{height:1122.520000pt;}
.h1_c00305{height:1122.666667pt;}
.w0_c00305{width:793.706667pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:113.385333pt;}
.x2_c00305{left:121.886667pt;}
.x3_c00305{left:127.796000pt;}
.x4_c00305{left:157.340000pt;}
.x5_c00305{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c27ef0d2feb3fa44c420ba3a.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:0.893555;font-style:normal;font-weight:normal;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_6a6e4df62699f6e622f7ca65.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.083496;font-style:normal;font-weight:normal;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_c423b8ed38c10ce96cdec4b5.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.102051;font-style:normal;font-weight:normal;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_ddf88653779b63a83caa9617.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:1.014648;font-style:normal;font-weight:normal;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_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.048828;font-style: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;}
.ls3_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.087998px;}
.ls2_c00306{letter-spacing:0.098482px;}
.ls1_c00306{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws17_c00306{word-spacing:-26.487518px;}
.ws14_c00306{word-spacing:-22.654952px;}
.ws15_c00306{word-spacing:-22.356074px;}
.wsb_c00306{word-spacing:-19.845499px;}
.wsa_c00306{word-spacing:-19.785724px;}
.ws8_c00306{word-spacing:-19.187968px;}
.wse_c00306{word-spacing:-18.799421px;}
.ws6_c00306{word-spacing:-18.769538px;}
.wsd_c00306{word-spacing:-18.721222px;}
.wsf_c00306{word-spacing:-18.709763px;}
.ws5_c00306{word-spacing:-17.932680px;}
.wsc_c00306{word-spacing:-17.155597px;}
.ws7_c00306{word-spacing:-15.422105px;}
.ws10_c00306{word-spacing:-14.704798px;}
.ws4_c00306{word-spacing:-14.166817px;}
.ws13_c00306{word-spacing:-13.748388px;}
.ws11_c00306{word-spacing:-13.724971px;}
.ws9_c00306{word-spacing:-10.512144px;}
.ws1_c00306{word-spacing:-9.988424px;}
.ws3_c00306{word-spacing:-9.987499px;}
.ws12_c00306{word-spacing:-6.505015px;}
.ws1b_c00306{word-spacing:0.000000px;}
.ws18_c00306{word-spacing:0.043999px;}
.ws16_c00306{word-spacing:0.175997px;}
.ws19_c00306{word-spacing:0.213446px;}
.ws1a_c00306{word-spacing:0.219446px;}
.ws0_c00306{word-spacing:43.038600px;}
._0_c00306{margin-left:-6.369713px;}
._7_c00306{margin-left:-3.825638px;}
._1_c00306{margin-left:-1.549390px;}
._8_c00306{width:1.005737px;}
._6_c00306{width:18.709763px;}
._3_c00306{width:19.748705px;}
._2_c00306{width:21.618733px;}
._4_c00306{width:32.219048px;}
._5_c00306{width:35.336496px;}
.fc5_c00306{color:rgb(79,153,5);}
.fc3_c00306{color:rgb(33,74,135);}
.fc2_c00306{color:rgb(143,89,3);}
.fc4_c00306{color:rgb(207,92,0);}
.fc1_c00306{color:rgb(6,69,173);}
.fc0_c00306{color:rgb(0,0,0);}
.fs2_c00306{font-size:43.999200px;}
.fs1_c00306{font-size:59.775600px;}
.fs0_c00306{font-size:86.077200px;}
.y0_c00306{bottom:0.000000px;}
.y1e_c00306{bottom:44.250000px;}
.y1d_c00306{bottom:82.051500px;}
.y1c_c00306{bottom:114.927000px;}
.y1b_c00306{bottom:131.365500px;}
.y1a_c00306{bottom:164.242500px;}
.y19_c00306{bottom:180.681000px;}
.y18_c00306{bottom:197.119500px;}
.y17_c00306{bottom:246.435000px;}
.y16_c00306{bottom:262.873500px;}
.y15_c00306{bottom:279.310500px;}
.y14_c00306{bottom:295.749000px;}
.y13_c00306{bottom:312.187500px;}
.y12_c00306{bottom:345.064500px;}
.y11_c00306{bottom:361.503000px;}
.y10_c00306{bottom:377.568000px;}
.yf_c00306{bottom:424.822500px;}
.ye_c00306{bottom:442.755000px;}
.yd_c00306{bottom:460.689000px;}
.yc_c00306{bottom:478.621500px;}
.yb_c00306{bottom:496.554000px;}
.ya_c00306{bottom:514.486500px;}
.y9_c00306{bottom:532.419000px;}
.y8_c00306{bottom:550.351500px;}
.y7_c00306{bottom:577.092000px;}
.y6_c00306{bottom:595.026000px;}
.y5_c00306{bottom:621.766500px;}
.y4_c00306{bottom:639.699000px;}
.y3_c00306{bottom:666.439500px;}
.y2_c00306{bottom:693.180000px;}
.y1_c00306{bottom:735.294000px;}
.h5_c00306{height:35.190766px;}
.h6_c00306{height:36.007158px;}
.h3_c00306{height:40.511979px;}
.h4_c00306{height:52.332837px;}
.h2_c00306{height:58.337477px;}
.h0_c00306{height:1262.835000px;}
.h1_c00306{height:1263.000000px;}
.w0_c00306{width:892.920000px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:127.558500px;}
.x2_c00306{left:137.122500px;}
.x3_c00306{left:435.249000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls3_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.078221pt;}
.ls2_c00306{letter-spacing:0.087539pt;}
.ls1_c00306{letter-spacing:0.092873pt;}
.ws2_c00306{word-spacing:-23.622682pt;}
.ws17_c00306{word-spacing:-23.544461pt;}
.ws14_c00306{word-spacing:-20.137735pt;}
.ws15_c00306{word-spacing:-19.872066pt;}
.wsb_c00306{word-spacing:-17.640444pt;}
.wsa_c00306{word-spacing:-17.587310pt;}
.ws8_c00306{word-spacing:-17.055971pt;}
.wse_c00306{word-spacing:-16.710596pt;}
.ws6_c00306{word-spacing:-16.684034pt;}
.wsd_c00306{word-spacing:-16.641086pt;}
.wsf_c00306{word-spacing:-16.630900pt;}
.ws5_c00306{word-spacing:-15.940160pt;}
.wsc_c00306{word-spacing:-15.249420pt;}
.ws7_c00306{word-spacing:-13.708538pt;}
.ws10_c00306{word-spacing:-13.070931pt;}
.ws4_c00306{word-spacing:-12.592726pt;}
.ws13_c00306{word-spacing:-12.220789pt;}
.ws11_c00306{word-spacing:-12.199974pt;}
.ws9_c00306{word-spacing:-9.344128pt;}
.ws1_c00306{word-spacing:-8.878599pt;}
.ws3_c00306{word-spacing:-8.877777pt;}
.ws12_c00306{word-spacing:-5.782236pt;}
.ws1b_c00306{word-spacing:0.000000pt;}
.ws18_c00306{word-spacing:0.039110pt;}
.ws16_c00306{word-spacing:0.156442pt;}
.ws19_c00306{word-spacing:0.189730pt;}
.ws1a_c00306{word-spacing:0.195063pt;}
.ws0_c00306{word-spacing:38.256533pt;}
._0_c00306{margin-left:-5.661967pt;}
._7_c00306{margin-left:-3.400567pt;}
._1_c00306{margin-left:-1.377235pt;}
._8_c00306{width:0.893988pt;}
._6_c00306{width:16.630900pt;}
._3_c00306{width:17.554404pt;}
._2_c00306{width:19.216652pt;}
._4_c00306{width:28.639154pt;}
._5_c00306{width:31.410219pt;}
.fs2_c00306{font-size:39.110400pt;}
.fs1_c00306{font-size:53.133867pt;}
.fs0_c00306{font-size:76.513067pt;}
.y0_c00306{bottom:0.000000pt;}
.y1e_c00306{bottom:39.333333pt;}
.y1d_c00306{bottom:72.934667pt;}
.y1c_c00306{bottom:102.157333pt;}
.y1b_c00306{bottom:116.769333pt;}
.y1a_c00306{bottom:145.993333pt;}
.y19_c00306{bottom:160.605333pt;}
.y18_c00306{bottom:175.217333pt;}
.y17_c00306{bottom:219.053333pt;}
.y16_c00306{bottom:233.665333pt;}
.y15_c00306{bottom:248.276000pt;}
.y14_c00306{bottom:262.888000pt;}
.y13_c00306{bottom:277.500000pt;}
.y12_c00306{bottom:306.724000pt;}
.y11_c00306{bottom:321.336000pt;}
.y10_c00306{bottom:335.616000pt;}
.yf_c00306{bottom:377.620000pt;}
.ye_c00306{bottom:393.560000pt;}
.yd_c00306{bottom:409.501333pt;}
.yc_c00306{bottom:425.441333pt;}
.yb_c00306{bottom:441.381333pt;}
.ya_c00306{bottom:457.321333pt;}
.y9_c00306{bottom:473.261333pt;}
.y8_c00306{bottom:489.201333pt;}
.y7_c00306{bottom:512.970667pt;}
.y6_c00306{bottom:528.912000pt;}
.y5_c00306{bottom:552.681333pt;}
.y4_c00306{bottom:568.621333pt;}
.y3_c00306{bottom:592.390667pt;}
.y2_c00306{bottom:616.160000pt;}
.y1_c00306{bottom:653.594667pt;}
.h5_c00306{height:31.280681pt;}
.h6_c00306{height:32.006363pt;}
.h3_c00306{height:36.010648pt;}
.h4_c00306{height:46.518078pt;}
.h2_c00306{height:51.855535pt;}
.h0_c00306{height:1122.520000pt;}
.h1_c00306{height:1122.666667pt;}
.w0_c00306{width:793.706667pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:113.385333pt;}
.x2_c00306{left:121.886667pt;}
.x3_c00306{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54f8ca76e66034321504c7fc.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.083496;font-style:normal;font-weight:normal;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_ce180377b76cedbc5e5bbdeb.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.048828;font-style:normal;font-weight:normal;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_67b8847435992f67dce319b9.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.014648;font-style:normal;font-weight:normal;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_d3a202d13651fa903e8040eb.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls6_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:0.087998px;}
.ls3_c00307{letter-spacing:0.098482px;}
.ls1_c00307{letter-spacing:0.104482px;}
.ls5_c00307{letter-spacing:26.690482px;}
.ls2_c00307{letter-spacing:26.732482px;}
.ls4_c00307{letter-spacing:26.738482px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:-26.575517px;}
.ws2_c00307{word-spacing:-26.487518px;}
.ws3_c00307{word-spacing:0.000000px;}
.ws9_c00307{word-spacing:0.026966px;}
.wsa_c00307{word-spacing:0.043999px;}
.ws7_c00307{word-spacing:0.046284px;}
.ws1_c00307{word-spacing:0.053933px;}
.ws4_c00307{word-spacing:0.056767px;}
.ws6_c00307{word-spacing:0.073250px;}
.ws8_c00307{word-spacing:0.083734px;}
.ws5_c00307{word-spacing:0.202963px;}
.wsc_c00307{word-spacing:0.213446px;}
.wsb_c00307{word-spacing:0.219446px;}
._0_c00307{width:1.008571px;}
._4_c00307{width:53.283031px;}
._1_c00307{width:80.166542px;}
._3_c00307{width:106.434065px;}
._2_c00307{width:133.452408px;}
._5_c00307{width:186.179933px;}
.fc5_c00307{color:rgb(79,153,5);}
.fc4_c00307{color:rgb(0,0,207);}
.fc3_c00307{color:rgb(207,92,0);}
.fc2_c00307{color:rgb(33,74,135);}
.fc1_c00307{color:rgb(143,89,3);}
.fc0_c00307{color:rgb(0,0,0);}
.fs0_c00307{font-size:43.999200px;}
.fs1_c00307{font-size:59.775600px;}
.y0_c00307{bottom:0.000000px;}
.y2d_c00307{bottom:44.250000px;}
.y2c_c00307{bottom:337.945500px;}
.y2b_c00307{bottom:354.384000px;}
.y2a_c00307{bottom:370.822500px;}
.y29_c00307{bottom:387.259500px;}
.y28_c00307{bottom:403.698000px;}
.y27_c00307{bottom:420.136500px;}
.y26_c00307{bottom:436.575000px;}
.y25_c00307{bottom:453.013500px;}
.y24_c00307{bottom:469.452000px;}
.y23_c00307{bottom:485.890500px;}
.y22_c00307{bottom:502.329000px;}
.y21_c00307{bottom:535.206000px;}
.y20_c00307{bottom:551.643000px;}
.y1f_c00307{bottom:568.081500px;}
.y1e_c00307{bottom:600.958500px;}
.y1d_c00307{bottom:617.397000px;}
.y1c_c00307{bottom:633.835500px;}
.y1b_c00307{bottom:650.274000px;}
.y1a_c00307{bottom:666.712500px;}
.y19_c00307{bottom:683.151000px;}
.y18_c00307{bottom:699.589500px;}
.y17_c00307{bottom:716.028000px;}
.y16_c00307{bottom:732.465000px;}
.y15_c00307{bottom:748.903500px;}
.y14_c00307{bottom:765.342000px;}
.y13_c00307{bottom:781.780500px;}
.y12_c00307{bottom:798.219000px;}
.y11_c00307{bottom:814.657500px;}
.y10_c00307{bottom:831.096000px;}
.yf_c00307{bottom:847.534500px;}
.ye_c00307{bottom:863.973000px;}
.yd_c00307{bottom:880.411500px;}
.yc_c00307{bottom:896.848500px;}
.yb_c00307{bottom:946.164000px;}
.ya_c00307{bottom:962.602500px;}
.y9_c00307{bottom:979.041000px;}
.y8_c00307{bottom:995.479500px;}
.y7_c00307{bottom:1011.918000px;}
.y6_c00307{bottom:1044.795000px;}
.y5_c00307{bottom:1061.232000px;}
.y4_c00307{bottom:1094.109000px;}
.y3_c00307{bottom:1110.547500px;}
.y2_c00307{bottom:1143.424500px;}
.y1_c00307{bottom:1159.863000px;}
.h3_c00307{height:35.190766px;}
.h2_c00307{height:36.007158px;}
.h4_c00307{height:52.332837px;}
.h0_c00307{height:1262.835000px;}
.h1_c00307{height:1263.000000px;}
.w0_c00307{width:892.920000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:137.122500px;}
.x4_c00307{left:143.770500px;}
.x5_c00307{left:177.007500px;}
.x2_c00307{left:196.948500px;}
.x3_c00307{left:236.832000px;}
.x6_c00307{left:435.249000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls6_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:0.078221pt;}
.ls3_c00307{letter-spacing:0.087539pt;}
.ls1_c00307{letter-spacing:0.092873pt;}
.ls5_c00307{letter-spacing:23.724873pt;}
.ls2_c00307{letter-spacing:23.762206pt;}
.ls4_c00307{letter-spacing:23.767539pt;}
.ws0_c00307{word-spacing:-23.622682pt;}
.ws2_c00307{word-spacing:-23.544461pt;}
.ws3_c00307{word-spacing:0.000000pt;}
.ws9_c00307{word-spacing:0.023970pt;}
.wsa_c00307{word-spacing:0.039110pt;}
.ws7_c00307{word-spacing:0.041141pt;}
.ws1_c00307{word-spacing:0.047940pt;}
.ws4_c00307{word-spacing:0.050460pt;}
.ws6_c00307{word-spacing:0.065111pt;}
.ws8_c00307{word-spacing:0.074430pt;}
.ws5_c00307{word-spacing:0.180412pt;}
.wsc_c00307{word-spacing:0.189730pt;}
.wsb_c00307{word-spacing:0.195063pt;}
._0_c00307{width:0.896508pt;}
._4_c00307{width:47.362694pt;}
._1_c00307{width:71.259149pt;}
._3_c00307{width:94.608058pt;}
._2_c00307{width:118.624363pt;}
._5_c00307{width:165.493274pt;}
.fs0_c00307{font-size:39.110400pt;}
.fs1_c00307{font-size:53.133867pt;}
.y0_c00307{bottom:0.000000pt;}
.y2d_c00307{bottom:39.333333pt;}
.y2c_c00307{bottom:300.396000pt;}
.y2b_c00307{bottom:315.008000pt;}
.y2a_c00307{bottom:329.620000pt;}
.y29_c00307{bottom:344.230667pt;}
.y28_c00307{bottom:358.842667pt;}
.y27_c00307{bottom:373.454667pt;}
.y26_c00307{bottom:388.066667pt;}
.y25_c00307{bottom:402.678667pt;}
.y24_c00307{bottom:417.290667pt;}
.y23_c00307{bottom:431.902667pt;}
.y22_c00307{bottom:446.514667pt;}
.y21_c00307{bottom:475.738667pt;}
.y20_c00307{bottom:490.349333pt;}
.y1f_c00307{bottom:504.961333pt;}
.y1e_c00307{bottom:534.185333pt;}
.y1d_c00307{bottom:548.797333pt;}
.y1c_c00307{bottom:563.409333pt;}
.y1b_c00307{bottom:578.021333pt;}
.y1a_c00307{bottom:592.633333pt;}
.y19_c00307{bottom:607.245333pt;}
.y18_c00307{bottom:621.857333pt;}
.y17_c00307{bottom:636.469333pt;}
.y16_c00307{bottom:651.080000pt;}
.y15_c00307{bottom:665.692000pt;}
.y14_c00307{bottom:680.304000pt;}
.y13_c00307{bottom:694.916000pt;}
.y12_c00307{bottom:709.528000pt;}
.y11_c00307{bottom:724.140000pt;}
.y10_c00307{bottom:738.752000pt;}
.yf_c00307{bottom:753.364000pt;}
.ye_c00307{bottom:767.976000pt;}
.yd_c00307{bottom:782.588000pt;}
.yc_c00307{bottom:797.198667pt;}
.yb_c00307{bottom:841.034667pt;}
.ya_c00307{bottom:855.646667pt;}
.y9_c00307{bottom:870.258667pt;}
.y8_c00307{bottom:884.870667pt;}
.y7_c00307{bottom:899.482667pt;}
.y6_c00307{bottom:928.706667pt;}
.y5_c00307{bottom:943.317333pt;}
.y4_c00307{bottom:972.541333pt;}
.y3_c00307{bottom:987.153333pt;}
.y2_c00307{bottom:1016.377333pt;}
.y1_c00307{bottom:1030.989333pt;}
.h3_c00307{height:31.280681pt;}
.h2_c00307{height:32.006363pt;}
.h4_c00307{height:46.518078pt;}
.h0_c00307{height:1122.520000pt;}
.h1_c00307{height:1122.666667pt;}
.w0_c00307{width:793.706667pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:121.886667pt;}
.x4_c00307{left:127.796000pt;}
.x5_c00307{left:157.340000pt;}
.x2_c00307{left:175.065333pt;}
.x3_c00307{left:210.517333pt;}
.x6_c00307{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16c1754f1abfab4f1f2a4443.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:0.893555;font-style:normal;font-weight:normal;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_a12242f55ea9aeda7a823810.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_c8eb1b578823fa9e60b41779.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:1.048828;font-style: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;}
.ls3_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.087998px;}
.ls2_c00308{letter-spacing:0.098482px;}
.ls1_c00308{letter-spacing:0.104482px;}
.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;}
}
.wse_c00308{word-spacing:-33.713438px;}
.ws2_c00308{word-spacing:-26.575517px;}
.ws10_c00308{word-spacing:-26.487518px;}
.ws7_c00308{word-spacing:-18.769538px;}
.ws5_c00308{word-spacing:-18.590212px;}
.ws6_c00308{word-spacing:-14.943900px;}
.ws4_c00308{word-spacing:-14.824349px;}
.ws9_c00308{word-spacing:-14.465695px;}
.wsc_c00308{word-spacing:-14.107042px;}
.wsd_c00308{word-spacing:-12.074671px;}
.wsb_c00308{word-spacing:-11.716018px;}
.wsa_c00308{word-spacing:-11.656242px;}
.ws1_c00308{word-spacing:-9.988424px;}
.ws3_c00308{word-spacing:-9.987499px;}
.ws8_c00308{word-spacing:-1.386144px;}
.ws14_c00308{word-spacing:0.000000px;}
.ws11_c00308{word-spacing:0.043999px;}
.ws17_c00308{word-spacing:0.056767px;}
.ws15_c00308{word-spacing:0.073250px;}
.ws16_c00308{word-spacing:0.083734px;}
.wsf_c00308{word-spacing:0.175997px;}
.ws18_c00308{word-spacing:0.202963px;}
.ws12_c00308{word-spacing:0.213446px;}
.ws13_c00308{word-spacing:0.219446px;}
.ws0_c00308{word-spacing:43.038600px;}
._0_c00308{margin-left:-6.369713px;}
._3_c00308{margin-left:-3.376852px;}
._1_c00308{margin-left:-1.549390px;}
._6_c00308{width:1.005737px;}
._2_c00308{width:20.308265px;}
._4_c00308{width:23.790689px;}
._5_c00308{width:40.109428px;}
._8_c00308{width:53.283031px;}
._7_c00308{width:79.858548px;}
._9_c00308{width:133.452408px;}
.fc6_c00308{color:rgb(0,0,207);}
.fc5_c00308{color:rgb(79,153,5);}
.fc3_c00308{color:rgb(33,74,135);}
.fc2_c00308{color:rgb(143,89,3);}
.fc4_c00308{color:rgb(207,92,0);}
.fc1_c00308{color:rgb(6,69,173);}
.fc0_c00308{color:rgb(0,0,0);}
.fs2_c00308{font-size:43.999200px;}
.fs1_c00308{font-size:59.775600px;}
.fs0_c00308{font-size:86.077200px;}
.y0_c00308{bottom:0.000000px;}
.y20_c00308{bottom:44.250000px;}
.y1f_c00308{bottom:86.982000px;}
.y1e_c00308{bottom:103.420500px;}
.y1d_c00308{bottom:119.859000px;}
.y1c_c00308{bottom:136.297500px;}
.y1b_c00308{bottom:152.736000px;}
.y1a_c00308{bottom:169.174500px;}
.y19_c00308{bottom:185.613000px;}
.y18_c00308{bottom:202.051500px;}
.y17_c00308{bottom:218.490000px;}
.y16_c00308{bottom:234.927000px;}
.y15_c00308{bottom:251.365500px;}
.y14_c00308{bottom:267.804000px;}
.y13_c00308{bottom:284.242500px;}
.y12_c00308{bottom:300.681000px;}
.y11_c00308{bottom:333.558000px;}
.y10_c00308{bottom:349.996500px;}
.yf_c00308{bottom:399.310500px;}
.ye_c00308{bottom:415.749000px;}
.yd_c00308{bottom:431.814000px;}
.yc_c00308{bottom:477.118500px;}
.yb_c00308{bottom:495.051000px;}
.ya_c00308{bottom:512.983500px;}
.y9_c00308{bottom:530.916000px;}
.y8_c00308{bottom:548.848500px;}
.y7_c00308{bottom:566.781000px;}
.y6_c00308{bottom:593.728500px;}
.y5_c00308{bottom:620.674500px;}
.y4_c00308{bottom:638.607000px;}
.y3_c00308{bottom:665.553000px;}
.y2_c00308{bottom:692.500500px;}
.y1_c00308{bottom:734.839500px;}
.h5_c00308{height:35.190766px;}
.h6_c00308{height:36.007158px;}
.h3_c00308{height:40.511979px;}
.h4_c00308{height:52.332837px;}
.h2_c00308{height:58.337477px;}
.h0_c00308{height:1262.835000px;}
.h1_c00308{height:1263.000000px;}
.w0_c00308{width:892.920000px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:127.558500px;}
.x2_c00308{left:137.122500px;}
.x3_c00308{left:143.770500px;}
.x4_c00308{left:435.249000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls3_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.078221pt;}
.ls2_c00308{letter-spacing:0.087539pt;}
.ls1_c00308{letter-spacing:0.092873pt;}
.wse_c00308{word-spacing:-29.967501pt;}
.ws2_c00308{word-spacing:-23.622682pt;}
.ws10_c00308{word-spacing:-23.544461pt;}
.ws7_c00308{word-spacing:-16.684034pt;}
.ws5_c00308{word-spacing:-16.524633pt;}
.ws6_c00308{word-spacing:-13.283467pt;}
.ws4_c00308{word-spacing:-13.177199pt;}
.ws9_c00308{word-spacing:-12.858396pt;}
.wsc_c00308{word-spacing:-12.539593pt;}
.wsd_c00308{word-spacing:-10.733041pt;}
.wsb_c00308{word-spacing:-10.414238pt;}
.wsa_c00308{word-spacing:-10.361104pt;}
.ws1_c00308{word-spacing:-8.878599pt;}
.ws3_c00308{word-spacing:-8.877777pt;}
.ws8_c00308{word-spacing:-1.232128pt;}
.ws14_c00308{word-spacing:0.000000pt;}
.ws11_c00308{word-spacing:0.039110pt;}
.ws17_c00308{word-spacing:0.050460pt;}
.ws15_c00308{word-spacing:0.065111pt;}
.ws16_c00308{word-spacing:0.074430pt;}
.wsf_c00308{word-spacing:0.156442pt;}
.ws18_c00308{word-spacing:0.180412pt;}
.ws12_c00308{word-spacing:0.189730pt;}
.ws13_c00308{word-spacing:0.195063pt;}
.ws0_c00308{word-spacing:38.256533pt;}
._0_c00308{margin-left:-5.661967pt;}
._3_c00308{margin-left:-3.001646pt;}
._1_c00308{margin-left:-1.377235pt;}
._6_c00308{width:0.893988pt;}
._2_c00308{width:18.051791pt;}
._4_c00308{width:21.147279pt;}
._5_c00308{width:35.652825pt;}
._8_c00308{width:47.362694pt;}
._7_c00308{width:70.985376pt;}
._9_c00308{width:118.624363pt;}
.fs2_c00308{font-size:39.110400pt;}
.fs1_c00308{font-size:53.133867pt;}
.fs0_c00308{font-size:76.513067pt;}
.y0_c00308{bottom:0.000000pt;}
.y20_c00308{bottom:39.333333pt;}
.y1f_c00308{bottom:77.317333pt;}
.y1e_c00308{bottom:91.929333pt;}
.y1d_c00308{bottom:106.541333pt;}
.y1c_c00308{bottom:121.153333pt;}
.y1b_c00308{bottom:135.765333pt;}
.y1a_c00308{bottom:150.377333pt;}
.y19_c00308{bottom:164.989333pt;}
.y18_c00308{bottom:179.601333pt;}
.y17_c00308{bottom:194.213333pt;}
.y16_c00308{bottom:208.824000pt;}
.y15_c00308{bottom:223.436000pt;}
.y14_c00308{bottom:238.048000pt;}
.y13_c00308{bottom:252.660000pt;}
.y12_c00308{bottom:267.272000pt;}
.y11_c00308{bottom:296.496000pt;}
.y10_c00308{bottom:311.108000pt;}
.yf_c00308{bottom:354.942667pt;}
.ye_c00308{bottom:369.554667pt;}
.yd_c00308{bottom:383.834667pt;}
.yc_c00308{bottom:424.105333pt;}
.yb_c00308{bottom:440.045333pt;}
.ya_c00308{bottom:455.985333pt;}
.y9_c00308{bottom:471.925333pt;}
.y8_c00308{bottom:487.865333pt;}
.y7_c00308{bottom:503.805333pt;}
.y6_c00308{bottom:527.758667pt;}
.y5_c00308{bottom:551.710667pt;}
.y4_c00308{bottom:567.650667pt;}
.y3_c00308{bottom:591.602667pt;}
.y2_c00308{bottom:615.556000pt;}
.y1_c00308{bottom:653.190667pt;}
.h5_c00308{height:31.280681pt;}
.h6_c00308{height:32.006363pt;}
.h3_c00308{height:36.010648pt;}
.h4_c00308{height:46.518078pt;}
.h2_c00308{height:51.855535pt;}
.h0_c00308{height:1122.520000pt;}
.h1_c00308{height:1122.666667pt;}
.w0_c00308{width:793.706667pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:113.385333pt;}
.x2_c00308{left:121.886667pt;}
.x3_c00308{left:127.796000pt;}
.x4_c00308{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a975080fa30d5e46535f3e6.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.048828;font-style:normal;font-weight:normal;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_ed5b032cb613cb39f4df7e6e.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.014648;font-style:normal;font-weight:normal;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_54518b8697b580e3575c23b3.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_572642f1d5a9d0b8367dc600.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.102051;font-style: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;}
.ls4_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.087998px;}
.ls1_c00309{letter-spacing:0.098482px;}
.ls3_c00309{letter-spacing:0.104482px;}
.ls2_c00309{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00309{word-spacing:-26.575517px;}
.ws5_c00309{word-spacing:-26.487518px;}
.wsd_c00309{word-spacing:-18.769538px;}
.wsf_c00309{word-spacing:-16.019861px;}
.wsc_c00309{word-spacing:-14.943900px;}
.ws10_c00309{word-spacing:-11.716018px;}
.wsb_c00309{word-spacing:-11.656242px;}
.ws8_c00309{word-spacing:-9.988424px;}
.ws9_c00309{word-spacing:-9.987499px;}
.wsa_c00309{word-spacing:-7.830604px;}
.wse_c00309{word-spacing:-4.536144px;}
.ws4_c00309{word-spacing:0.000000px;}
.ws1_c00309{word-spacing:0.043999px;}
.ws0_c00309{word-spacing:0.073250px;}
.ws6_c00309{word-spacing:0.213446px;}
.ws2_c00309{word-spacing:0.219446px;}
.ws7_c00309{word-spacing:43.038600px;}
._2_c00309{margin-left:-6.369713px;}
._7_c00309{margin-left:-3.376852px;}
._3_c00309{margin-left:-1.549390px;}
._1_c00309{width:1.020240px;}
._6_c00309{width:19.930500px;}
._5_c00309{width:23.910240px;}
._4_c00309{width:34.224520px;}
._0_c00309{width:79.858548px;}
.fc5_c00309{color:rgb(79,153,5);}
.fc4_c00309{color:rgb(143,89,3);}
.fc6_c00309{color:rgb(6,69,173);}
.fc3_c00309{color:rgb(207,92,0);}
.fc2_c00309{color:rgb(0,0,0);}
.fc1_c00309{color:rgb(0,0,207);}
.fc0_c00309{color:rgb(33,74,135);}
.fs0_c00309{font-size:43.999200px;}
.fs2_c00309{font-size:59.775600px;}
.fs1_c00309{font-size:86.077200px;}
.y0_c00309{bottom:0.000000px;}
.y20_c00309{bottom:44.250000px;}
.y1f_c00309{bottom:82.051500px;}
.y1e_c00309{bottom:99.984000px;}
.y1d_c00309{bottom:126.823500px;}
.y1c_c00309{bottom:153.664500px;}
.y1b_c00309{bottom:171.597000px;}
.y1a_c00309{bottom:198.438000px;}
.y19_c00309{bottom:225.277500px;}
.y18_c00309{bottom:267.492000px;}
.y17_c00309{bottom:732.465000px;}
.y16_c00309{bottom:748.903500px;}
.y15_c00309{bottom:765.342000px;}
.y14_c00309{bottom:781.780500px;}
.y13_c00309{bottom:798.219000px;}
.y12_c00309{bottom:814.657500px;}
.y11_c00309{bottom:831.096000px;}
.y10_c00309{bottom:847.534500px;}
.yf_c00309{bottom:863.973000px;}
.ye_c00309{bottom:880.411500px;}
.yd_c00309{bottom:896.848500px;}
.yc_c00309{bottom:929.725500px;}
.yb_c00309{bottom:946.164000px;}
.ya_c00309{bottom:962.602500px;}
.y9_c00309{bottom:995.479500px;}
.y8_c00309{bottom:1011.918000px;}
.y7_c00309{bottom:1028.356500px;}
.y6_c00309{bottom:1044.795000px;}
.y5_c00309{bottom:1061.232000px;}
.y4_c00309{bottom:1077.670500px;}
.y3_c00309{bottom:1094.109000px;}
.y2_c00309{bottom:1143.424500px;}
.y1_c00309{bottom:1159.863000px;}
.h3_c00309{height:35.190766px;}
.h2_c00309{height:36.007158px;}
.h5_c00309{height:40.511979px;}
.h6_c00309{height:52.332837px;}
.h4_c00309{height:58.337477px;}
.h0_c00309{height:1262.835000px;}
.h1_c00309{height:1263.000000px;}
.w0_c00309{width:892.920000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x4_c00309{left:127.558500px;}
.x2_c00309{left:137.122500px;}
.x1_c00309{left:143.770500px;}
.x3_c00309{left:177.007500px;}
.x5_c00309{left:435.249000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls4_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.078221pt;}
.ls1_c00309{letter-spacing:0.087539pt;}
.ls3_c00309{letter-spacing:0.092873pt;}
.ls2_c00309{letter-spacing:23.724873pt;}
.ws3_c00309{word-spacing:-23.622682pt;}
.ws5_c00309{word-spacing:-23.544461pt;}
.wsd_c00309{word-spacing:-16.684034pt;}
.wsf_c00309{word-spacing:-14.239876pt;}
.wsc_c00309{word-spacing:-13.283467pt;}
.ws10_c00309{word-spacing:-10.414238pt;}
.wsb_c00309{word-spacing:-10.361104pt;}
.ws8_c00309{word-spacing:-8.878599pt;}
.ws9_c00309{word-spacing:-8.877777pt;}
.wsa_c00309{word-spacing:-6.960537pt;}
.wse_c00309{word-spacing:-4.032128pt;}
.ws4_c00309{word-spacing:0.000000pt;}
.ws1_c00309{word-spacing:0.039110pt;}
.ws0_c00309{word-spacing:0.065111pt;}
.ws6_c00309{word-spacing:0.189730pt;}
.ws2_c00309{word-spacing:0.195063pt;}
.ws7_c00309{word-spacing:38.256533pt;}
._2_c00309{margin-left:-5.661967pt;}
._7_c00309{margin-left:-3.001646pt;}
._3_c00309{margin-left:-1.377235pt;}
._1_c00309{width:0.906880pt;}
._6_c00309{width:17.716000pt;}
._5_c00309{width:21.253547pt;}
._4_c00309{width:30.421795pt;}
._0_c00309{width:70.985376pt;}
.fs0_c00309{font-size:39.110400pt;}
.fs2_c00309{font-size:53.133867pt;}
.fs1_c00309{font-size:76.513067pt;}
.y0_c00309{bottom:0.000000pt;}
.y20_c00309{bottom:39.333333pt;}
.y1f_c00309{bottom:72.934667pt;}
.y1e_c00309{bottom:88.874667pt;}
.y1d_c00309{bottom:112.732000pt;}
.y1c_c00309{bottom:136.590667pt;}
.y1b_c00309{bottom:152.530667pt;}
.y1a_c00309{bottom:176.389333pt;}
.y19_c00309{bottom:200.246667pt;}
.y18_c00309{bottom:237.770667pt;}
.y17_c00309{bottom:651.080000pt;}
.y16_c00309{bottom:665.692000pt;}
.y15_c00309{bottom:680.304000pt;}
.y14_c00309{bottom:694.916000pt;}
.y13_c00309{bottom:709.528000pt;}
.y12_c00309{bottom:724.140000pt;}
.y11_c00309{bottom:738.752000pt;}
.y10_c00309{bottom:753.364000pt;}
.yf_c00309{bottom:767.976000pt;}
.ye_c00309{bottom:782.588000pt;}
.yd_c00309{bottom:797.198667pt;}
.yc_c00309{bottom:826.422667pt;}
.yb_c00309{bottom:841.034667pt;}
.ya_c00309{bottom:855.646667pt;}
.y9_c00309{bottom:884.870667pt;}
.y8_c00309{bottom:899.482667pt;}
.y7_c00309{bottom:914.094667pt;}
.y6_c00309{bottom:928.706667pt;}
.y5_c00309{bottom:943.317333pt;}
.y4_c00309{bottom:957.929333pt;}
.y3_c00309{bottom:972.541333pt;}
.y2_c00309{bottom:1016.377333pt;}
.y1_c00309{bottom:1030.989333pt;}
.h3_c00309{height:31.280681pt;}
.h2_c00309{height:32.006363pt;}
.h5_c00309{height:36.010648pt;}
.h6_c00309{height:46.518078pt;}
.h4_c00309{height:51.855535pt;}
.h0_c00309{height:1122.520000pt;}
.h1_c00309{height:1122.666667pt;}
.w0_c00309{width:793.706667pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x4_c00309{left:113.385333pt;}
.x2_c00309{left:121.886667pt;}
.x1_c00309{left:127.796000pt;}
.x3_c00309{left:157.340000pt;}
.x5_c00309{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_211bb7b14c9119c06cbbdaea.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.102051;font-style:normal;font-weight:normal;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_e59efac0847c690f8e4ae314.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_37ab6d159164c13f519d5d2c.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls4_c00310{letter-spacing:0.000000px;}
.ls1_c00310{letter-spacing:0.087998px;}
.ls2_c00310{letter-spacing:0.098482px;}
.ls0_c00310{letter-spacing:0.104482px;}
.ls3_c00310{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00310{word-spacing:-33.713438px;}
.ws6_c00310{word-spacing:-26.575517px;}
.ws5_c00310{word-spacing:-26.487518px;}
.ws2_c00310{word-spacing:-18.769538px;}
.ws0_c00310{word-spacing:-14.107042px;}
.ws1_c00310{word-spacing:-12.074671px;}
.wsa_c00310{word-spacing:0.000000px;}
.ws7_c00310{word-spacing:0.043999px;}
.wsd_c00310{word-spacing:0.056767px;}
.wsb_c00310{word-spacing:0.073250px;}
.wsc_c00310{word-spacing:0.083734px;}
.ws4_c00310{word-spacing:0.175997px;}
.wse_c00310{word-spacing:0.202963px;}
.ws8_c00310{word-spacing:0.213446px;}
.ws9_c00310{word-spacing:0.219446px;}
._2_c00310{margin-left:-3.825638px;}
._7_c00310{margin-left:-2.211697px;}
._3_c00310{width:1.005737px;}
._0_c00310{width:20.742133px;}
._1_c00310{width:40.109428px;}
._5_c00310{width:53.283031px;}
._4_c00310{width:79.858548px;}
._6_c00310{width:133.452408px;}
.fc5_c00310{color:rgb(0,0,207);}
.fc4_c00310{color:rgb(79,153,5);}
.fc3_c00310{color:rgb(207,92,0);}
.fc2_c00310{color:rgb(33,74,135);}
.fc1_c00310{color:rgb(143,89,3);}
.fc0_c00310{color:rgb(0,0,0);}
.fs1_c00310{font-size:43.999200px;}
.fs0_c00310{font-size:59.775600px;}
.y0_c00310{bottom:0.000000px;}
.y2f_c00310{bottom:44.250000px;}
.y2e_c00310{bottom:96.919500px;}
.y2d_c00310{bottom:113.358000px;}
.y2c_c00310{bottom:129.796500px;}
.y2b_c00310{bottom:146.235000px;}
.y2a_c00310{bottom:162.673500px;}
.y29_c00310{bottom:179.112000px;}
.y28_c00310{bottom:195.550500px;}
.y27_c00310{bottom:211.989000px;}
.y26_c00310{bottom:228.427500px;}
.y25_c00310{bottom:244.866000px;}
.y24_c00310{bottom:261.304500px;}
.y23_c00310{bottom:294.180000px;}
.y22_c00310{bottom:310.618500px;}
.y21_c00310{bottom:327.057000px;}
.y20_c00310{bottom:359.934000px;}
.y1f_c00310{bottom:376.372500px;}
.y1e_c00310{bottom:392.811000px;}
.y1d_c00310{bottom:409.249500px;}
.y1c_c00310{bottom:425.688000px;}
.y1b_c00310{bottom:442.125000px;}
.y1a_c00310{bottom:458.563500px;}
.y19_c00310{bottom:507.879000px;}
.y18_c00310{bottom:524.317500px;}
.y17_c00310{bottom:540.756000px;}
.y16_c00310{bottom:557.194500px;}
.y15_c00310{bottom:573.633000px;}
.y14_c00310{bottom:590.071500px;}
.y13_c00310{bottom:606.508500px;}
.y12_c00310{bottom:622.947000px;}
.y11_c00310{bottom:639.385500px;}
.y10_c00310{bottom:655.824000px;}
.yf_c00310{bottom:672.262500px;}
.ye_c00310{bottom:688.701000px;}
.yd_c00310{bottom:705.139500px;}
.yc_c00310{bottom:721.578000px;}
.yb_c00310{bottom:738.016500px;}
.ya_c00310{bottom:754.455000px;}
.y9_c00310{bottom:787.330500px;}
.y8_c00310{bottom:803.769000px;}
.y7_c00310{bottom:853.084500px;}
.y6_c00310{bottom:869.523000px;}
.y5_c00310{bottom:885.588000px;}
.y4_c00310{bottom:1106.064000px;}
.y3_c00310{bottom:1123.998000px;}
.y2_c00310{bottom:1141.930500px;}
.y1_c00310{bottom:1159.863000px;}
.h3_c00310{height:35.190766px;}
.h4_c00310{height:36.007158px;}
.h2_c00310{height:52.332837px;}
.h0_c00310{height:1262.835000px;}
.h1_c00310{height:1263.000000px;}
.w0_c00310{width:892.920000px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:127.558500px;}
.x2_c00310{left:137.122500px;}
.x3_c00310{left:143.770500px;}
.x4_c00310{left:177.007500px;}
.x5_c00310{left:435.526500px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls4_c00310{letter-spacing:0.000000pt;}
.ls1_c00310{letter-spacing:0.078221pt;}
.ls2_c00310{letter-spacing:0.087539pt;}
.ls0_c00310{letter-spacing:0.092873pt;}
.ls3_c00310{letter-spacing:23.724873pt;}
.ws3_c00310{word-spacing:-29.967501pt;}
.ws6_c00310{word-spacing:-23.622682pt;}
.ws5_c00310{word-spacing:-23.544461pt;}
.ws2_c00310{word-spacing:-16.684034pt;}
.ws0_c00310{word-spacing:-12.539593pt;}
.ws1_c00310{word-spacing:-10.733041pt;}
.wsa_c00310{word-spacing:0.000000pt;}
.ws7_c00310{word-spacing:0.039110pt;}
.wsd_c00310{word-spacing:0.050460pt;}
.wsb_c00310{word-spacing:0.065111pt;}
.wsc_c00310{word-spacing:0.074430pt;}
.ws4_c00310{word-spacing:0.156442pt;}
.wse_c00310{word-spacing:0.180412pt;}
.ws8_c00310{word-spacing:0.189730pt;}
.ws9_c00310{word-spacing:0.195063pt;}
._2_c00310{margin-left:-3.400567pt;}
._7_c00310{margin-left:-1.965953pt;}
._3_c00310{width:0.893988pt;}
._0_c00310{width:18.437452pt;}
._1_c00310{width:35.652825pt;}
._5_c00310{width:47.362694pt;}
._4_c00310{width:70.985376pt;}
._6_c00310{width:118.624363pt;}
.fs1_c00310{font-size:39.110400pt;}
.fs0_c00310{font-size:53.133867pt;}
.y0_c00310{bottom:0.000000pt;}
.y2f_c00310{bottom:39.333333pt;}
.y2e_c00310{bottom:86.150667pt;}
.y2d_c00310{bottom:100.762667pt;}
.y2c_c00310{bottom:115.374667pt;}
.y2b_c00310{bottom:129.986667pt;}
.y2a_c00310{bottom:144.598667pt;}
.y29_c00310{bottom:159.210667pt;}
.y28_c00310{bottom:173.822667pt;}
.y27_c00310{bottom:188.434667pt;}
.y26_c00310{bottom:203.046667pt;}
.y25_c00310{bottom:217.658667pt;}
.y24_c00310{bottom:232.270667pt;}
.y23_c00310{bottom:261.493333pt;}
.y22_c00310{bottom:276.105333pt;}
.y21_c00310{bottom:290.717333pt;}
.y20_c00310{bottom:319.941333pt;}
.y1f_c00310{bottom:334.553333pt;}
.y1e_c00310{bottom:349.165333pt;}
.y1d_c00310{bottom:363.777333pt;}
.y1c_c00310{bottom:378.389333pt;}
.y1b_c00310{bottom:393.000000pt;}
.y1a_c00310{bottom:407.612000pt;}
.y19_c00310{bottom:451.448000pt;}
.y18_c00310{bottom:466.060000pt;}
.y17_c00310{bottom:480.672000pt;}
.y16_c00310{bottom:495.284000pt;}
.y15_c00310{bottom:509.896000pt;}
.y14_c00310{bottom:524.508000pt;}
.y13_c00310{bottom:539.118667pt;}
.y12_c00310{bottom:553.730667pt;}
.y11_c00310{bottom:568.342667pt;}
.y10_c00310{bottom:582.954667pt;}
.yf_c00310{bottom:597.566667pt;}
.ye_c00310{bottom:612.178667pt;}
.yd_c00310{bottom:626.790667pt;}
.yc_c00310{bottom:641.402667pt;}
.yb_c00310{bottom:656.014667pt;}
.ya_c00310{bottom:670.626667pt;}
.y9_c00310{bottom:699.849333pt;}
.y8_c00310{bottom:714.461333pt;}
.y7_c00310{bottom:758.297333pt;}
.y6_c00310{bottom:772.909333pt;}
.y5_c00310{bottom:787.189333pt;}
.y4_c00310{bottom:983.168000pt;}
.y3_c00310{bottom:999.109333pt;}
.y2_c00310{bottom:1015.049333pt;}
.y1_c00310{bottom:1030.989333pt;}
.h3_c00310{height:31.280681pt;}
.h4_c00310{height:32.006363pt;}
.h2_c00310{height:46.518078pt;}
.h0_c00310{height:1122.520000pt;}
.h1_c00310{height:1122.666667pt;}
.w0_c00310{width:793.706667pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:113.385333pt;}
.x2_c00310{left:121.886667pt;}
.x3_c00310{left:127.796000pt;}
.x4_c00310{left:157.340000pt;}
.x5_c00310{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_373bd478d9bec71c056976e3.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:0.893555;font-style:normal;font-weight:normal;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_23ca94f549b3c5f3a54b9697.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.083496;font-style:normal;font-weight:normal;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_bd6f3cf40c7985a9bb199c33.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:1.048828;font-style: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.000000px;}
.ls0_c00311{letter-spacing:0.087998px;}
.ls2_c00311{letter-spacing:0.098482px;}
.ls1_c00311{letter-spacing:0.104482px;}
.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;}
}
.wse_c00311{word-spacing:-33.713438px;}
.ws2_c00311{word-spacing:-26.575517px;}
.ws10_c00311{word-spacing:-26.487518px;}
.ws5_c00311{word-spacing:-23.432035px;}
.ws4_c00311{word-spacing:-19.606397px;}
.ws7_c00311{word-spacing:-18.769538px;}
.ws9_c00311{word-spacing:-16.019861px;}
.ws6_c00311{word-spacing:-14.943900px;}
.wsc_c00311{word-spacing:-14.107042px;}
.wsd_c00311{word-spacing:-12.074671px;}
.wsb_c00311{word-spacing:-11.716018px;}
.wsa_c00311{word-spacing:-11.656242px;}
.ws1_c00311{word-spacing:-9.988424px;}
.ws3_c00311{word-spacing:-9.987499px;}
.ws8_c00311{word-spacing:-4.536144px;}
.ws14_c00311{word-spacing:0.000000px;}
.ws11_c00311{word-spacing:0.043999px;}
.ws17_c00311{word-spacing:0.056767px;}
.ws15_c00311{word-spacing:0.073250px;}
.ws16_c00311{word-spacing:0.083734px;}
.wsf_c00311{word-spacing:0.175997px;}
.ws18_c00311{word-spacing:0.202963px;}
.ws12_c00311{word-spacing:0.213446px;}
.ws13_c00311{word-spacing:0.219446px;}
.ws0_c00311{word-spacing:43.038600px;}
._0_c00311{margin-left:-6.369713px;}
._5_c00311{margin-left:-3.376852px;}
._1_c00311{margin-left:-1.549390px;}
._8_c00311{width:1.005737px;}
._3_c00311{width:11.297588px;}
._2_c00311{width:17.650313px;}
._4_c00311{width:19.930500px;}
._6_c00311{width:23.790689px;}
._7_c00311{width:40.109428px;}
._a_c00311{width:53.283031px;}
._9_c00311{width:79.858548px;}
._b_c00311{width:133.452408px;}
.fc6_c00311{color:rgb(0,0,207);}
.fc5_c00311{color:rgb(79,153,5);}
.fc3_c00311{color:rgb(33,74,135);}
.fc2_c00311{color:rgb(143,89,3);}
.fc4_c00311{color:rgb(207,92,0);}
.fc1_c00311{color:rgb(6,69,173);}
.fc0_c00311{color:rgb(0,0,0);}
.fs2_c00311{font-size:43.999200px;}
.fs1_c00311{font-size:59.775600px;}
.fs0_c00311{font-size:86.077200px;}
.y0_c00311{bottom:0.000000px;}
.y20_c00311{bottom:44.250000px;}
.y1f_c00311{bottom:86.982000px;}
.y1e_c00311{bottom:103.420500px;}
.y1d_c00311{bottom:119.859000px;}
.y1c_c00311{bottom:136.297500px;}
.y1b_c00311{bottom:152.736000px;}
.y1a_c00311{bottom:169.174500px;}
.y19_c00311{bottom:185.613000px;}
.y18_c00311{bottom:202.051500px;}
.y17_c00311{bottom:218.490000px;}
.y16_c00311{bottom:234.927000px;}
.y15_c00311{bottom:251.365500px;}
.y14_c00311{bottom:267.804000px;}
.y13_c00311{bottom:284.242500px;}
.y12_c00311{bottom:300.681000px;}
.y11_c00311{bottom:317.119500px;}
.y10_c00311{bottom:349.996500px;}
.yf_c00311{bottom:366.435000px;}
.ye_c00311{bottom:415.749000px;}
.yd_c00311{bottom:432.187500px;}
.yc_c00311{bottom:448.252500px;}
.yb_c00311{bottom:493.890000px;}
.ya_c00311{bottom:511.822500px;}
.y9_c00311{bottom:529.756500px;}
.y8_c00311{bottom:547.689000px;}
.y7_c00311{bottom:565.621500px;}
.y6_c00311{bottom:583.554000px;}
.y5_c00311{bottom:610.633500px;}
.y4_c00311{bottom:637.714500px;}
.y3_c00311{bottom:664.794000px;}
.y2_c00311{bottom:691.873500px;}
.y1_c00311{bottom:734.407500px;}
.h5_c00311{height:35.190766px;}
.h6_c00311{height:36.007158px;}
.h3_c00311{height:40.511979px;}
.h4_c00311{height:52.332837px;}
.h2_c00311{height:58.337477px;}
.h0_c00311{height:1262.835000px;}
.h1_c00311{height:1263.000000px;}
.w0_c00311{width:892.920000px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:127.558500px;}
.x2_c00311{left:137.122500px;}
.x3_c00311{left:143.770500px;}
.x4_c00311{left:435.249000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls3_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.078221pt;}
.ls2_c00311{letter-spacing:0.087539pt;}
.ls1_c00311{letter-spacing:0.092873pt;}
.wse_c00311{word-spacing:-29.967501pt;}
.ws2_c00311{word-spacing:-23.622682pt;}
.ws10_c00311{word-spacing:-23.544461pt;}
.ws5_c00311{word-spacing:-20.828476pt;}
.ws4_c00311{word-spacing:-17.427908pt;}
.ws7_c00311{word-spacing:-16.684034pt;}
.ws9_c00311{word-spacing:-14.239876pt;}
.ws6_c00311{word-spacing:-13.283467pt;}
.wsc_c00311{word-spacing:-12.539593pt;}
.wsd_c00311{word-spacing:-10.733041pt;}
.wsb_c00311{word-spacing:-10.414238pt;}
.wsa_c00311{word-spacing:-10.361104pt;}
.ws1_c00311{word-spacing:-8.878599pt;}
.ws3_c00311{word-spacing:-8.877777pt;}
.ws8_c00311{word-spacing:-4.032128pt;}
.ws14_c00311{word-spacing:0.000000pt;}
.ws11_c00311{word-spacing:0.039110pt;}
.ws17_c00311{word-spacing:0.050460pt;}
.ws15_c00311{word-spacing:0.065111pt;}
.ws16_c00311{word-spacing:0.074430pt;}
.wsf_c00311{word-spacing:0.156442pt;}
.ws18_c00311{word-spacing:0.180412pt;}
.ws12_c00311{word-spacing:0.189730pt;}
.ws13_c00311{word-spacing:0.195063pt;}
.ws0_c00311{word-spacing:38.256533pt;}
._0_c00311{margin-left:-5.661967pt;}
._5_c00311{margin-left:-3.001646pt;}
._1_c00311{margin-left:-1.377235pt;}
._8_c00311{width:0.893988pt;}
._3_c00311{width:10.042301pt;}
._2_c00311{width:15.689167pt;}
._4_c00311{width:17.716000pt;}
._6_c00311{width:21.147279pt;}
._7_c00311{width:35.652825pt;}
._a_c00311{width:47.362694pt;}
._9_c00311{width:70.985376pt;}
._b_c00311{width:118.624363pt;}
.fs2_c00311{font-size:39.110400pt;}
.fs1_c00311{font-size:53.133867pt;}
.fs0_c00311{font-size:76.513067pt;}
.y0_c00311{bottom:0.000000pt;}
.y20_c00311{bottom:39.333333pt;}
.y1f_c00311{bottom:77.317333pt;}
.y1e_c00311{bottom:91.929333pt;}
.y1d_c00311{bottom:106.541333pt;}
.y1c_c00311{bottom:121.153333pt;}
.y1b_c00311{bottom:135.765333pt;}
.y1a_c00311{bottom:150.377333pt;}
.y19_c00311{bottom:164.989333pt;}
.y18_c00311{bottom:179.601333pt;}
.y17_c00311{bottom:194.213333pt;}
.y16_c00311{bottom:208.824000pt;}
.y15_c00311{bottom:223.436000pt;}
.y14_c00311{bottom:238.048000pt;}
.y13_c00311{bottom:252.660000pt;}
.y12_c00311{bottom:267.272000pt;}
.y11_c00311{bottom:281.884000pt;}
.y10_c00311{bottom:311.108000pt;}
.yf_c00311{bottom:325.720000pt;}
.ye_c00311{bottom:369.554667pt;}
.yd_c00311{bottom:384.166667pt;}
.yc_c00311{bottom:398.446667pt;}
.yb_c00311{bottom:439.013333pt;}
.ya_c00311{bottom:454.953333pt;}
.y9_c00311{bottom:470.894667pt;}
.y8_c00311{bottom:486.834667pt;}
.y7_c00311{bottom:502.774667pt;}
.y6_c00311{bottom:518.714667pt;}
.y5_c00311{bottom:542.785333pt;}
.y4_c00311{bottom:566.857333pt;}
.y3_c00311{bottom:590.928000pt;}
.y2_c00311{bottom:614.998667pt;}
.y1_c00311{bottom:652.806667pt;}
.h5_c00311{height:31.280681pt;}
.h6_c00311{height:32.006363pt;}
.h3_c00311{height:36.010648pt;}
.h4_c00311{height:46.518078pt;}
.h2_c00311{height:51.855535pt;}
.h0_c00311{height:1122.520000pt;}
.h1_c00311{height:1122.666667pt;}
.w0_c00311{width:793.706667pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:113.385333pt;}
.x2_c00311{left:121.886667pt;}
.x3_c00311{left:127.796000pt;}
.x4_c00311{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4968486f3b3148003e869350.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.048828;font-style:normal;font-weight:normal;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_55aca7c1efb8c136f4a2c1fc.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.014648;font-style:normal;font-weight:normal;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_afbeaccb9ad1fa7dc26a024b.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_89e7bf47b06544e72584f966.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.102051;font-style: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;}
.ls4_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.087998px;}
.ls2_c00312{letter-spacing:0.098482px;}
.ls3_c00312{letter-spacing:0.104482px;}
.ls1_c00312{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00312{word-spacing:-26.575517px;}
.ws4_c00312{word-spacing:-26.487518px;}
.wsc_c00312{word-spacing:-18.769538px;}
.wsa_c00312{word-spacing:-17.693578px;}
.wse_c00312{word-spacing:-17.633802px;}
.wsb_c00312{word-spacing:-14.943900px;}
.ws11_c00312{word-spacing:-14.107042px;}
.ws9_c00312{word-spacing:-13.927715px;}
.ws10_c00312{word-spacing:-11.716018px;}
.wsf_c00312{word-spacing:-11.656242px;}
.ws7_c00312{word-spacing:-9.988424px;}
.ws8_c00312{word-spacing:-9.987499px;}
.wsd_c00312{word-spacing:-7.680144px;}
.ws3_c00312{word-spacing:0.000000px;}
.ws0_c00312{word-spacing:0.043999px;}
.ws5_c00312{word-spacing:0.213446px;}
.ws1_c00312{word-spacing:0.219446px;}
.ws6_c00312{word-spacing:43.038600px;}
._2_c00312{margin-left:-6.369713px;}
._5_c00312{margin-left:-2.809453px;}
._3_c00312{margin-left:-1.549390px;}
._1_c00312{width:1.036723px;}
._6_c00312{width:19.930500px;}
._4_c00312{width:22.129631px;}
._7_c00312{width:23.223290px;}
._0_c00312{width:53.591026px;}
.fc5_c00312{color:rgb(79,153,5);}
.fc4_c00312{color:rgb(143,89,3);}
.fc3_c00312{color:rgb(0,0,0);}
.fc6_c00312{color:rgb(6,69,173);}
.fc2_c00312{color:rgb(207,92,0);}
.fc1_c00312{color:rgb(0,0,207);}
.fc0_c00312{color:rgb(33,74,135);}
.fs0_c00312{font-size:43.999200px;}
.fs2_c00312{font-size:59.775600px;}
.fs1_c00312{font-size:86.077200px;}
.y0_c00312{bottom:0.000000px;}
.y20_c00312{bottom:44.250000px;}
.y1f_c00312{bottom:82.051500px;}
.y1e_c00312{bottom:99.984000px;}
.y1d_c00312{bottom:117.916500px;}
.y1c_c00312{bottom:144.567000px;}
.y1b_c00312{bottom:171.219000px;}
.y1a_c00312{bottom:189.151500px;}
.y19_c00312{bottom:215.802000px;}
.y18_c00312{bottom:242.454000px;}
.y17_c00312{bottom:284.478000px;}
.y16_c00312{bottom:748.903500px;}
.y15_c00312{bottom:765.342000px;}
.y14_c00312{bottom:781.780500px;}
.y13_c00312{bottom:798.219000px;}
.y12_c00312{bottom:814.657500px;}
.y11_c00312{bottom:831.096000px;}
.y10_c00312{bottom:847.534500px;}
.yf_c00312{bottom:863.973000px;}
.ye_c00312{bottom:880.411500px;}
.yd_c00312{bottom:896.848500px;}
.yc_c00312{bottom:913.287000px;}
.yb_c00312{bottom:946.164000px;}
.ya_c00312{bottom:962.602500px;}
.y9_c00312{bottom:979.041000px;}
.y8_c00312{bottom:1011.918000px;}
.y7_c00312{bottom:1028.356500px;}
.y6_c00312{bottom:1044.795000px;}
.y5_c00312{bottom:1061.232000px;}
.y4_c00312{bottom:1077.670500px;}
.y3_c00312{bottom:1094.109000px;}
.y2_c00312{bottom:1110.547500px;}
.y1_c00312{bottom:1159.863000px;}
.h3_c00312{height:35.190766px;}
.h2_c00312{height:36.007158px;}
.h5_c00312{height:40.511979px;}
.h6_c00312{height:52.332837px;}
.h4_c00312{height:58.337477px;}
.h0_c00312{height:1262.835000px;}
.h1_c00312{height:1263.000000px;}
.w0_c00312{width:892.920000px;}
.w1_c00312{width:893.250000px;}
.x0_c00312{left:0.000000px;}
.x4_c00312{left:127.558500px;}
.x2_c00312{left:137.122500px;}
.x1_c00312{left:143.770500px;}
.x3_c00312{left:177.007500px;}
.x5_c00312{left:435.249000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls4_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.078221pt;}
.ls2_c00312{letter-spacing:0.087539pt;}
.ls3_c00312{letter-spacing:0.092873pt;}
.ls1_c00312{letter-spacing:23.724873pt;}
.ws2_c00312{word-spacing:-23.622682pt;}
.ws4_c00312{word-spacing:-23.544461pt;}
.wsc_c00312{word-spacing:-16.684034pt;}
.wsa_c00312{word-spacing:-15.727625pt;}
.wse_c00312{word-spacing:-15.674491pt;}
.wsb_c00312{word-spacing:-13.283467pt;}
.ws11_c00312{word-spacing:-12.539593pt;}
.ws9_c00312{word-spacing:-12.380191pt;}
.ws10_c00312{word-spacing:-10.414238pt;}
.wsf_c00312{word-spacing:-10.361104pt;}
.ws7_c00312{word-spacing:-8.878599pt;}
.ws8_c00312{word-spacing:-8.877777pt;}
.wsd_c00312{word-spacing:-6.826795pt;}
.ws3_c00312{word-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.039110pt;}
.ws5_c00312{word-spacing:0.189730pt;}
.ws1_c00312{word-spacing:0.195063pt;}
.ws6_c00312{word-spacing:38.256533pt;}
._2_c00312{margin-left:-5.661967pt;}
._5_c00312{margin-left:-2.497292pt;}
._3_c00312{margin-left:-1.377235pt;}
._1_c00312{width:0.921532pt;}
._6_c00312{width:17.716000pt;}
._4_c00312{width:19.670783pt;}
._7_c00312{width:20.642925pt;}
._0_c00312{width:47.636467pt;}
.fs0_c00312{font-size:39.110400pt;}
.fs2_c00312{font-size:53.133867pt;}
.fs1_c00312{font-size:76.513067pt;}
.y0_c00312{bottom:0.000000pt;}
.y20_c00312{bottom:39.333333pt;}
.y1f_c00312{bottom:72.934667pt;}
.y1e_c00312{bottom:88.874667pt;}
.y1d_c00312{bottom:104.814667pt;}
.y1c_c00312{bottom:128.504000pt;}
.y1b_c00312{bottom:152.194667pt;}
.y1a_c00312{bottom:168.134667pt;}
.y19_c00312{bottom:191.824000pt;}
.y18_c00312{bottom:215.514667pt;}
.y17_c00312{bottom:252.869333pt;}
.y16_c00312{bottom:665.692000pt;}
.y15_c00312{bottom:680.304000pt;}
.y14_c00312{bottom:694.916000pt;}
.y13_c00312{bottom:709.528000pt;}
.y12_c00312{bottom:724.140000pt;}
.y11_c00312{bottom:738.752000pt;}
.y10_c00312{bottom:753.364000pt;}
.yf_c00312{bottom:767.976000pt;}
.ye_c00312{bottom:782.588000pt;}
.yd_c00312{bottom:797.198667pt;}
.yc_c00312{bottom:811.810667pt;}
.yb_c00312{bottom:841.034667pt;}
.ya_c00312{bottom:855.646667pt;}
.y9_c00312{bottom:870.258667pt;}
.y8_c00312{bottom:899.482667pt;}
.y7_c00312{bottom:914.094667pt;}
.y6_c00312{bottom:928.706667pt;}
.y5_c00312{bottom:943.317333pt;}
.y4_c00312{bottom:957.929333pt;}
.y3_c00312{bottom:972.541333pt;}
.y2_c00312{bottom:987.153333pt;}
.y1_c00312{bottom:1030.989333pt;}
.h3_c00312{height:31.280681pt;}
.h2_c00312{height:32.006363pt;}
.h5_c00312{height:36.010648pt;}
.h6_c00312{height:46.518078pt;}
.h4_c00312{height:51.855535pt;}
.h0_c00312{height:1122.520000pt;}
.h1_c00312{height:1122.666667pt;}
.w0_c00312{width:793.706667pt;}
.w1_c00312{width:794.000000pt;}
.x0_c00312{left:0.000000pt;}
.x4_c00312{left:113.385333pt;}
.x2_c00312{left:121.886667pt;}
.x1_c00312{left:127.796000pt;}
.x3_c00312{left:157.340000pt;}
.x5_c00312{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3fad62100bc3fd2577bf315.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.102051;font-style:normal;font-weight:normal;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_c6b16ed0a06db15b0d50486b.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_e34ac7565de60371340d6aaa.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls4_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:0.087998px;}
.ls2_c00313{letter-spacing:0.098482px;}
.ls0_c00313{letter-spacing:0.104482px;}
.ls3_c00313{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00313{word-spacing:-33.713438px;}
.ws5_c00313{word-spacing:-26.575517px;}
.ws4_c00313{word-spacing:-26.487518px;}
.ws1_c00313{word-spacing:-18.769538px;}
.ws0_c00313{word-spacing:-12.074671px;}
.ws9_c00313{word-spacing:0.000000px;}
.ws6_c00313{word-spacing:0.043999px;}
.wsc_c00313{word-spacing:0.056767px;}
.wsa_c00313{word-spacing:0.073250px;}
.wsb_c00313{word-spacing:0.083734px;}
.ws3_c00313{word-spacing:0.175997px;}
.wsd_c00313{word-spacing:0.202963px;}
.ws7_c00313{word-spacing:0.213446px;}
.ws8_c00313{word-spacing:0.219446px;}
._1_c00313{margin-left:-3.825638px;}
._2_c00313{width:1.005737px;}
._0_c00313{width:40.109428px;}
._4_c00313{width:53.283031px;}
._3_c00313{width:79.858548px;}
._5_c00313{width:133.452408px;}
.fc5_c00313{color:rgb(0,0,207);}
.fc4_c00313{color:rgb(79,153,5);}
.fc3_c00313{color:rgb(207,92,0);}
.fc2_c00313{color:rgb(33,74,135);}
.fc1_c00313{color:rgb(143,89,3);}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:43.999200px;}
.fs0_c00313{font-size:59.775600px;}
.y0_c00313{bottom:0.000000px;}
.y2e_c00313{bottom:44.250000px;}
.y2d_c00313{bottom:96.919500px;}
.y2c_c00313{bottom:113.358000px;}
.y2b_c00313{bottom:129.796500px;}
.y2a_c00313{bottom:146.235000px;}
.y29_c00313{bottom:162.673500px;}
.y28_c00313{bottom:179.112000px;}
.y27_c00313{bottom:195.550500px;}
.y26_c00313{bottom:211.989000px;}
.y25_c00313{bottom:228.427500px;}
.y24_c00313{bottom:244.866000px;}
.y23_c00313{bottom:261.304500px;}
.y22_c00313{bottom:294.180000px;}
.y21_c00313{bottom:310.618500px;}
.y20_c00313{bottom:327.057000px;}
.y1f_c00313{bottom:359.934000px;}
.y1e_c00313{bottom:376.372500px;}
.y1d_c00313{bottom:392.811000px;}
.y1c_c00313{bottom:409.249500px;}
.y1b_c00313{bottom:425.688000px;}
.y1a_c00313{bottom:442.125000px;}
.y19_c00313{bottom:458.563500px;}
.y18_c00313{bottom:507.879000px;}
.y17_c00313{bottom:524.317500px;}
.y16_c00313{bottom:540.756000px;}
.y15_c00313{bottom:557.194500px;}
.y14_c00313{bottom:573.633000px;}
.y13_c00313{bottom:590.071500px;}
.y12_c00313{bottom:606.508500px;}
.y11_c00313{bottom:622.947000px;}
.y10_c00313{bottom:639.385500px;}
.yf_c00313{bottom:655.824000px;}
.ye_c00313{bottom:672.262500px;}
.yd_c00313{bottom:688.701000px;}
.yc_c00313{bottom:705.139500px;}
.yb_c00313{bottom:721.578000px;}
.ya_c00313{bottom:738.016500px;}
.y9_c00313{bottom:754.455000px;}
.y8_c00313{bottom:787.330500px;}
.y7_c00313{bottom:803.769000px;}
.y6_c00313{bottom:853.084500px;}
.y5_c00313{bottom:869.523000px;}
.y4_c00313{bottom:885.588000px;}
.y3_c00313{bottom:1123.998000px;}
.y2_c00313{bottom:1141.930500px;}
.y1_c00313{bottom:1159.863000px;}
.h3_c00313{height:35.190766px;}
.h4_c00313{height:36.007158px;}
.h2_c00313{height:52.332837px;}
.h0_c00313{height:1262.835000px;}
.h1_c00313{height:1263.000000px;}
.w0_c00313{width:892.920000px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:127.558500px;}
.x2_c00313{left:137.122500px;}
.x3_c00313{left:143.770500px;}
.x4_c00313{left:177.007500px;}
.x5_c00313{left:435.249000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls4_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:0.078221pt;}
.ls2_c00313{letter-spacing:0.087539pt;}
.ls0_c00313{letter-spacing:0.092873pt;}
.ls3_c00313{letter-spacing:23.724873pt;}
.ws2_c00313{word-spacing:-29.967501pt;}
.ws5_c00313{word-spacing:-23.622682pt;}
.ws4_c00313{word-spacing:-23.544461pt;}
.ws1_c00313{word-spacing:-16.684034pt;}
.ws0_c00313{word-spacing:-10.733041pt;}
.ws9_c00313{word-spacing:0.000000pt;}
.ws6_c00313{word-spacing:0.039110pt;}
.wsc_c00313{word-spacing:0.050460pt;}
.wsa_c00313{word-spacing:0.065111pt;}
.wsb_c00313{word-spacing:0.074430pt;}
.ws3_c00313{word-spacing:0.156442pt;}
.wsd_c00313{word-spacing:0.180412pt;}
.ws7_c00313{word-spacing:0.189730pt;}
.ws8_c00313{word-spacing:0.195063pt;}
._1_c00313{margin-left:-3.400567pt;}
._2_c00313{width:0.893988pt;}
._0_c00313{width:35.652825pt;}
._4_c00313{width:47.362694pt;}
._3_c00313{width:70.985376pt;}
._5_c00313{width:118.624363pt;}
.fs1_c00313{font-size:39.110400pt;}
.fs0_c00313{font-size:53.133867pt;}
.y0_c00313{bottom:0.000000pt;}
.y2e_c00313{bottom:39.333333pt;}
.y2d_c00313{bottom:86.150667pt;}
.y2c_c00313{bottom:100.762667pt;}
.y2b_c00313{bottom:115.374667pt;}
.y2a_c00313{bottom:129.986667pt;}
.y29_c00313{bottom:144.598667pt;}
.y28_c00313{bottom:159.210667pt;}
.y27_c00313{bottom:173.822667pt;}
.y26_c00313{bottom:188.434667pt;}
.y25_c00313{bottom:203.046667pt;}
.y24_c00313{bottom:217.658667pt;}
.y23_c00313{bottom:232.270667pt;}
.y22_c00313{bottom:261.493333pt;}
.y21_c00313{bottom:276.105333pt;}
.y20_c00313{bottom:290.717333pt;}
.y1f_c00313{bottom:319.941333pt;}
.y1e_c00313{bottom:334.553333pt;}
.y1d_c00313{bottom:349.165333pt;}
.y1c_c00313{bottom:363.777333pt;}
.y1b_c00313{bottom:378.389333pt;}
.y1a_c00313{bottom:393.000000pt;}
.y19_c00313{bottom:407.612000pt;}
.y18_c00313{bottom:451.448000pt;}
.y17_c00313{bottom:466.060000pt;}
.y16_c00313{bottom:480.672000pt;}
.y15_c00313{bottom:495.284000pt;}
.y14_c00313{bottom:509.896000pt;}
.y13_c00313{bottom:524.508000pt;}
.y12_c00313{bottom:539.118667pt;}
.y11_c00313{bottom:553.730667pt;}
.y10_c00313{bottom:568.342667pt;}
.yf_c00313{bottom:582.954667pt;}
.ye_c00313{bottom:597.566667pt;}
.yd_c00313{bottom:612.178667pt;}
.yc_c00313{bottom:626.790667pt;}
.yb_c00313{bottom:641.402667pt;}
.ya_c00313{bottom:656.014667pt;}
.y9_c00313{bottom:670.626667pt;}
.y8_c00313{bottom:699.849333pt;}
.y7_c00313{bottom:714.461333pt;}
.y6_c00313{bottom:758.297333pt;}
.y5_c00313{bottom:772.909333pt;}
.y4_c00313{bottom:787.189333pt;}
.y3_c00313{bottom:999.109333pt;}
.y2_c00313{bottom:1015.049333pt;}
.y1_c00313{bottom:1030.989333pt;}
.h3_c00313{height:31.280681pt;}
.h4_c00313{height:32.006363pt;}
.h2_c00313{height:46.518078pt;}
.h0_c00313{height:1122.520000pt;}
.h1_c00313{height:1122.666667pt;}
.w0_c00313{width:793.706667pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:113.385333pt;}
.x2_c00313{left:121.886667pt;}
.x3_c00313{left:127.796000pt;}
.x4_c00313{left:157.340000pt;}
.x5_c00313{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fdd64729b1799799b32c8b5.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:0.893555;font-style:normal;font-weight:normal;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_801f9278f4d07e0b60e49091.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.083496;font-style:normal;font-weight:normal;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_48a5378045c05507e017afd0.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.102051;font-style:normal;font-weight:normal;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_fc2338e193d7a4c7e0cee59d.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.014648;font-style:normal;font-weight:normal;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_5b764a2637f7f5e4612e8347.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.048828;font-style: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.000000px;}
.ls0_c00314{letter-spacing:0.087998px;}
.ls2_c00314{letter-spacing:0.098482px;}
.ls1_c00314{letter-spacing:0.104482px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00314{word-spacing:-26.575517px;}
.wsf_c00314{word-spacing:-26.487518px;}
.ws8_c00314{word-spacing:-20.443255px;}
.ws7_c00314{word-spacing:-20.383480px;}
.wsc_c00314{word-spacing:-19.008641px;}
.ws5_c00314{word-spacing:-18.769538px;}
.wsa_c00314{word-spacing:-15.242778px;}
.ws4_c00314{word-spacing:-14.943900px;}
.ws9_c00314{word-spacing:-12.851754px;}
.wsd_c00314{word-spacing:-12.074671px;}
.ws6_c00314{word-spacing:-10.812144px;}
.ws1_c00314{word-spacing:-9.988424px;}
.ws3_c00314{word-spacing:-9.987499px;}
.wsb_c00314{word-spacing:-7.981015px;}
.ws13_c00314{word-spacing:0.000000px;}
.ws10_c00314{word-spacing:0.043999px;}
.wse_c00314{word-spacing:0.175997px;}
.ws11_c00314{word-spacing:0.213446px;}
.ws12_c00314{word-spacing:0.219446px;}
.ws0_c00314{word-spacing:43.038600px;}
._6_c00314{margin-left:-3.825638px;}
._1_c00314{margin-left:-1.075961px;}
._4_c00314{width:1.025479px;}
._0_c00314{width:19.935816px;}
._2_c00314{width:22.356074px;}
._3_c00314{width:30.605107px;}
._5_c00314{width:40.049652px;}
.fc6_c00314{color:rgb(0,0,207);}
.fc5_c00314{color:rgb(79,153,5);}
.fc3_c00314{color:rgb(33,74,135);}
.fc2_c00314{color:rgb(143,89,3);}
.fc4_c00314{color:rgb(207,92,0);}
.fc1_c00314{color:rgb(6,69,173);}
.fc0_c00314{color:rgb(0,0,0);}
.fs2_c00314{font-size:43.999200px;}
.fs1_c00314{font-size:59.775600px;}
.fs0_c00314{font-size:86.077200px;}
.y0_c00314{bottom:0.000000px;}
.y1e_c00314{bottom:44.250000px;}
.y1d_c00314{bottom:86.982000px;}
.y1c_c00314{bottom:103.420500px;}
.y1b_c00314{bottom:119.859000px;}
.y1a_c00314{bottom:136.297500px;}
.y19_c00314{bottom:152.736000px;}
.y18_c00314{bottom:185.613000px;}
.y17_c00314{bottom:202.051500px;}
.y16_c00314{bottom:234.927000px;}
.y15_c00314{bottom:251.365500px;}
.y14_c00314{bottom:267.804000px;}
.y13_c00314{bottom:317.119500px;}
.y12_c00314{bottom:333.558000px;}
.y11_c00314{bottom:349.996500px;}
.y10_c00314{bottom:366.435000px;}
.yf_c00314{bottom:382.873500px;}
.ye_c00314{bottom:415.749000px;}
.yd_c00314{bottom:432.187500px;}
.yc_c00314{bottom:448.252500px;}
.yb_c00314{bottom:495.994500px;}
.ya_c00314{bottom:513.927000px;}
.y9_c00314{bottom:531.859500px;}
.y8_c00314{bottom:549.792000px;}
.y7_c00314{bottom:567.726000px;}
.y6_c00314{bottom:585.658500px;}
.y5_c00314{bottom:612.480000px;}
.y4_c00314{bottom:639.301500px;}
.y3_c00314{bottom:666.123000px;}
.y2_c00314{bottom:692.944500px;}
.y1_c00314{bottom:735.139500px;}
.h5_c00314{height:35.190766px;}
.h6_c00314{height:36.007158px;}
.h3_c00314{height:40.511979px;}
.h4_c00314{height:52.332837px;}
.h2_c00314{height:58.337477px;}
.h0_c00314{height:1262.835000px;}
.h1_c00314{height:1263.000000px;}
.w0_c00314{width:892.920000px;}
.w1_c00314{width:893.250000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:127.558500px;}
.x2_c00314{left:137.122500px;}
.x3_c00314{left:435.249000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls3_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:0.078221pt;}
.ls2_c00314{letter-spacing:0.087539pt;}
.ls1_c00314{letter-spacing:0.092873pt;}
.ws2_c00314{word-spacing:-23.622682pt;}
.wsf_c00314{word-spacing:-23.544461pt;}
.ws8_c00314{word-spacing:-18.171782pt;}
.ws7_c00314{word-spacing:-18.118649pt;}
.wsc_c00314{word-spacing:-16.896570pt;}
.ws5_c00314{word-spacing:-16.684034pt;}
.wsa_c00314{word-spacing:-13.549136pt;}
.ws4_c00314{word-spacing:-13.283467pt;}
.ws9_c00314{word-spacing:-11.423781pt;}
.wsd_c00314{word-spacing:-10.733041pt;}
.ws6_c00314{word-spacing:-9.610795pt;}
.ws1_c00314{word-spacing:-8.878599pt;}
.ws3_c00314{word-spacing:-8.877777pt;}
.wsb_c00314{word-spacing:-7.094236pt;}
.ws13_c00314{word-spacing:0.000000pt;}
.ws10_c00314{word-spacing:0.039110pt;}
.wse_c00314{word-spacing:0.156442pt;}
.ws11_c00314{word-spacing:0.189730pt;}
.ws12_c00314{word-spacing:0.195063pt;}
.ws0_c00314{word-spacing:38.256533pt;}
._6_c00314{margin-left:-3.400567pt;}
._1_c00314{margin-left:-0.956410pt;}
._4_c00314{width:0.911537pt;}
._0_c00314{width:17.720725pt;}
._2_c00314{width:19.872066pt;}
._3_c00314{width:27.204540pt;}
._5_c00314{width:35.599691pt;}
.fs2_c00314{font-size:39.110400pt;}
.fs1_c00314{font-size:53.133867pt;}
.fs0_c00314{font-size:76.513067pt;}
.y0_c00314{bottom:0.000000pt;}
.y1e_c00314{bottom:39.333333pt;}
.y1d_c00314{bottom:77.317333pt;}
.y1c_c00314{bottom:91.929333pt;}
.y1b_c00314{bottom:106.541333pt;}
.y1a_c00314{bottom:121.153333pt;}
.y19_c00314{bottom:135.765333pt;}
.y18_c00314{bottom:164.989333pt;}
.y17_c00314{bottom:179.601333pt;}
.y16_c00314{bottom:208.824000pt;}
.y15_c00314{bottom:223.436000pt;}
.y14_c00314{bottom:238.048000pt;}
.y13_c00314{bottom:281.884000pt;}
.y12_c00314{bottom:296.496000pt;}
.y11_c00314{bottom:311.108000pt;}
.y10_c00314{bottom:325.720000pt;}
.yf_c00314{bottom:340.332000pt;}
.ye_c00314{bottom:369.554667pt;}
.yd_c00314{bottom:384.166667pt;}
.yc_c00314{bottom:398.446667pt;}
.yb_c00314{bottom:440.884000pt;}
.ya_c00314{bottom:456.824000pt;}
.y9_c00314{bottom:472.764000pt;}
.y8_c00314{bottom:488.704000pt;}
.y7_c00314{bottom:504.645333pt;}
.y6_c00314{bottom:520.585333pt;}
.y5_c00314{bottom:544.426667pt;}
.y4_c00314{bottom:568.268000pt;}
.y3_c00314{bottom:592.109333pt;}
.y2_c00314{bottom:615.950667pt;}
.y1_c00314{bottom:653.457333pt;}
.h5_c00314{height:31.280681pt;}
.h6_c00314{height:32.006363pt;}
.h3_c00314{height:36.010648pt;}
.h4_c00314{height:46.518078pt;}
.h2_c00314{height:51.855535pt;}
.h0_c00314{height:1122.520000pt;}
.h1_c00314{height:1122.666667pt;}
.w0_c00314{width:793.706667pt;}
.w1_c00314{width:794.000000pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:113.385333pt;}
.x2_c00314{left:121.886667pt;}
.x3_c00314{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aea11b08bd260d69cfde4489.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.083496;font-style:normal;font-weight:normal;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_754d40453d9536399c563bd8.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.048828;font-style:normal;font-weight:normal;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_71c6f590d2474a337df3046d.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.014648;font-style:normal;font-weight:normal;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_ab0646ccec76ea915358e24b.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls4_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.087998px;}
.ls1_c00315{letter-spacing:0.098482px;}
.ls2_c00315{letter-spacing:0.104482px;}
.ls3_c00315{letter-spacing:26.690482px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-26.575517px;}
.ws1_c00315{word-spacing:-26.487518px;}
.ws2_c00315{word-spacing:0.000000px;}
.ws8_c00315{word-spacing:0.026966px;}
.ws9_c00315{word-spacing:0.043999px;}
.ws6_c00315{word-spacing:0.046284px;}
.ws3_c00315{word-spacing:0.056767px;}
.ws5_c00315{word-spacing:0.073250px;}
.ws7_c00315{word-spacing:0.083734px;}
.ws4_c00315{word-spacing:0.202963px;}
.wsb_c00315{word-spacing:0.213446px;}
.wsa_c00315{word-spacing:0.219446px;}
._5_c00315{width:1.041538px;}
._3_c00315{width:53.283031px;}
._0_c00315{width:79.858548px;}
._2_c00315{width:106.434065px;}
._1_c00315{width:133.452408px;}
._4_c00315{width:186.179933px;}
.fc5_c00315{color:rgb(207,92,0);}
.fc4_c00315{color:rgb(0,0,207);}
.fc3_c00315{color:rgb(79,153,5);}
.fc2_c00315{color:rgb(33,74,135);}
.fc1_c00315{color:rgb(143,89,3);}
.fc0_c00315{color:rgb(0,0,0);}
.fs0_c00315{font-size:43.999200px;}
.fs1_c00315{font-size:59.775600px;}
.y0_c00315{bottom:0.000000px;}
.y26_c00315{bottom:44.250000px;}
.y25_c00315{bottom:485.890500px;}
.y24_c00315{bottom:502.329000px;}
.y23_c00315{bottom:518.767500px;}
.y22_c00315{bottom:535.206000px;}
.y21_c00315{bottom:551.643000px;}
.y20_c00315{bottom:568.081500px;}
.y1f_c00315{bottom:584.520000px;}
.y1e_c00315{bottom:600.958500px;}
.y1d_c00315{bottom:617.397000px;}
.y1c_c00315{bottom:633.835500px;}
.y1b_c00315{bottom:650.274000px;}
.y1a_c00315{bottom:683.151000px;}
.y19_c00315{bottom:699.589500px;}
.y18_c00315{bottom:716.028000px;}
.y17_c00315{bottom:748.903500px;}
.y16_c00315{bottom:765.342000px;}
.y15_c00315{bottom:781.780500px;}
.y14_c00315{bottom:798.219000px;}
.y13_c00315{bottom:814.657500px;}
.y12_c00315{bottom:831.096000px;}
.y11_c00315{bottom:847.534500px;}
.y10_c00315{bottom:863.973000px;}
.yf_c00315{bottom:880.411500px;}
.ye_c00315{bottom:896.848500px;}
.yd_c00315{bottom:913.287000px;}
.yc_c00315{bottom:929.725500px;}
.yb_c00315{bottom:946.164000px;}
.ya_c00315{bottom:962.602500px;}
.y9_c00315{bottom:979.041000px;}
.y8_c00315{bottom:995.479500px;}
.y7_c00315{bottom:1011.918000px;}
.y6_c00315{bottom:1028.356500px;}
.y5_c00315{bottom:1044.795000px;}
.y4_c00315{bottom:1094.109000px;}
.y3_c00315{bottom:1110.547500px;}
.y2_c00315{bottom:1126.986000px;}
.y1_c00315{bottom:1143.424500px;}
.h3_c00315{height:35.190766px;}
.h2_c00315{height:36.007158px;}
.h4_c00315{height:52.332837px;}
.h0_c00315{height:1262.835000px;}
.h1_c00315{height:1263.000000px;}
.w0_c00315{width:892.920000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:137.122500px;}
.x3_c00315{left:143.770500px;}
.x4_c00315{left:177.007500px;}
.x2_c00315{left:230.185500px;}
.x5_c00315{left:435.249000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls4_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.078221pt;}
.ls1_c00315{letter-spacing:0.087539pt;}
.ls2_c00315{letter-spacing:0.092873pt;}
.ls3_c00315{letter-spacing:23.724873pt;}
.ws0_c00315{word-spacing:-23.622682pt;}
.ws1_c00315{word-spacing:-23.544461pt;}
.ws2_c00315{word-spacing:0.000000pt;}
.ws8_c00315{word-spacing:0.023970pt;}
.ws9_c00315{word-spacing:0.039110pt;}
.ws6_c00315{word-spacing:0.041141pt;}
.ws3_c00315{word-spacing:0.050460pt;}
.ws5_c00315{word-spacing:0.065111pt;}
.ws7_c00315{word-spacing:0.074430pt;}
.ws4_c00315{word-spacing:0.180412pt;}
.wsb_c00315{word-spacing:0.189730pt;}
.wsa_c00315{word-spacing:0.195063pt;}
._5_c00315{width:0.925811pt;}
._3_c00315{width:47.362694pt;}
._0_c00315{width:70.985376pt;}
._2_c00315{width:94.608058pt;}
._1_c00315{width:118.624363pt;}
._4_c00315{width:165.493274pt;}
.fs0_c00315{font-size:39.110400pt;}
.fs1_c00315{font-size:53.133867pt;}
.y0_c00315{bottom:0.000000pt;}
.y26_c00315{bottom:39.333333pt;}
.y25_c00315{bottom:431.902667pt;}
.y24_c00315{bottom:446.514667pt;}
.y23_c00315{bottom:461.126667pt;}
.y22_c00315{bottom:475.738667pt;}
.y21_c00315{bottom:490.349333pt;}
.y20_c00315{bottom:504.961333pt;}
.y1f_c00315{bottom:519.573333pt;}
.y1e_c00315{bottom:534.185333pt;}
.y1d_c00315{bottom:548.797333pt;}
.y1c_c00315{bottom:563.409333pt;}
.y1b_c00315{bottom:578.021333pt;}
.y1a_c00315{bottom:607.245333pt;}
.y19_c00315{bottom:621.857333pt;}
.y18_c00315{bottom:636.469333pt;}
.y17_c00315{bottom:665.692000pt;}
.y16_c00315{bottom:680.304000pt;}
.y15_c00315{bottom:694.916000pt;}
.y14_c00315{bottom:709.528000pt;}
.y13_c00315{bottom:724.140000pt;}
.y12_c00315{bottom:738.752000pt;}
.y11_c00315{bottom:753.364000pt;}
.y10_c00315{bottom:767.976000pt;}
.yf_c00315{bottom:782.588000pt;}
.ye_c00315{bottom:797.198667pt;}
.yd_c00315{bottom:811.810667pt;}
.yc_c00315{bottom:826.422667pt;}
.yb_c00315{bottom:841.034667pt;}
.ya_c00315{bottom:855.646667pt;}
.y9_c00315{bottom:870.258667pt;}
.y8_c00315{bottom:884.870667pt;}
.y7_c00315{bottom:899.482667pt;}
.y6_c00315{bottom:914.094667pt;}
.y5_c00315{bottom:928.706667pt;}
.y4_c00315{bottom:972.541333pt;}
.y3_c00315{bottom:987.153333pt;}
.y2_c00315{bottom:1001.765333pt;}
.y1_c00315{bottom:1016.377333pt;}
.h3_c00315{height:31.280681pt;}
.h2_c00315{height:32.006363pt;}
.h4_c00315{height:46.518078pt;}
.h0_c00315{height:1122.520000pt;}
.h1_c00315{height:1122.666667pt;}
.w0_c00315{width:793.706667pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:121.886667pt;}
.x3_c00315{left:127.796000pt;}
.x4_c00315{left:157.340000pt;}
.x2_c00315{left:204.609333pt;}
.x5_c00315{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71a3eae87e601189244ce129.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:0.893555;font-style:normal;font-weight:normal;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_a6496c37c3432a7d06956913.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.083496;font-style:normal;font-weight:normal;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_e3b1f25a47719e5283865882.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:1.048828;font-style: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;}
.ls3_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.087998px;}
.ls2_c00316{letter-spacing:0.098482px;}
.ls1_c00316{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00316{word-spacing:-33.713438px;}
.ws2_c00316{word-spacing:-26.575517px;}
.wse_c00316{word-spacing:-26.487518px;}
.ws5_c00316{word-spacing:-18.769538px;}
.ws4_c00316{word-spacing:-14.943900px;}
.ws7_c00316{word-spacing:-14.465695px;}
.wsa_c00316{word-spacing:-14.107042px;}
.wsb_c00316{word-spacing:-12.074671px;}
.ws9_c00316{word-spacing:-11.716018px;}
.ws8_c00316{word-spacing:-11.656242px;}
.ws1_c00316{word-spacing:-9.988424px;}
.ws3_c00316{word-spacing:-9.987499px;}
.ws6_c00316{word-spacing:-1.386144px;}
.ws12_c00316{word-spacing:0.000000px;}
.wsf_c00316{word-spacing:0.043999px;}
.ws15_c00316{word-spacing:0.056767px;}
.ws13_c00316{word-spacing:0.073250px;}
.ws14_c00316{word-spacing:0.083734px;}
.wsd_c00316{word-spacing:0.175997px;}
.ws16_c00316{word-spacing:0.202963px;}
.ws10_c00316{word-spacing:0.213446px;}
.ws11_c00316{word-spacing:0.219446px;}
.ws0_c00316{word-spacing:43.038600px;}
._2_c00316{margin-left:-3.376852px;}
._1_c00316{margin-left:-1.075961px;}
._5_c00316{width:1.005737px;}
._0_c00316{width:19.935816px;}
._3_c00316{width:23.790689px;}
._4_c00316{width:40.109428px;}
._7_c00316{width:53.283031px;}
._6_c00316{width:79.858548px;}
._8_c00316{width:133.452408px;}
.fc6_c00316{color:rgb(0,0,207);}
.fc5_c00316{color:rgb(79,153,5);}
.fc3_c00316{color:rgb(33,74,135);}
.fc2_c00316{color:rgb(143,89,3);}
.fc4_c00316{color:rgb(207,92,0);}
.fc1_c00316{color:rgb(6,69,173);}
.fc0_c00316{color:rgb(0,0,0);}
.fs2_c00316{font-size:43.999200px;}
.fs1_c00316{font-size:59.775600px;}
.fs0_c00316{font-size:86.077200px;}
.y0_c00316{bottom:0.000000px;}
.y20_c00316{bottom:44.250000px;}
.y1f_c00316{bottom:86.982000px;}
.y1e_c00316{bottom:103.420500px;}
.y1d_c00316{bottom:119.859000px;}
.y1c_c00316{bottom:136.297500px;}
.y1b_c00316{bottom:152.736000px;}
.y1a_c00316{bottom:169.174500px;}
.y19_c00316{bottom:185.613000px;}
.y18_c00316{bottom:202.051500px;}
.y17_c00316{bottom:218.490000px;}
.y16_c00316{bottom:234.927000px;}
.y15_c00316{bottom:251.365500px;}
.y14_c00316{bottom:267.804000px;}
.y13_c00316{bottom:284.242500px;}
.y12_c00316{bottom:300.681000px;}
.y11_c00316{bottom:317.119500px;}
.y10_c00316{bottom:349.996500px;}
.yf_c00316{bottom:366.435000px;}
.ye_c00316{bottom:415.749000px;}
.yd_c00316{bottom:432.187500px;}
.yc_c00316{bottom:448.252500px;}
.yb_c00316{bottom:493.890000px;}
.ya_c00316{bottom:511.822500px;}
.y9_c00316{bottom:529.756500px;}
.y8_c00316{bottom:547.689000px;}
.y7_c00316{bottom:565.621500px;}
.y6_c00316{bottom:583.554000px;}
.y5_c00316{bottom:610.633500px;}
.y4_c00316{bottom:637.714500px;}
.y3_c00316{bottom:664.794000px;}
.y2_c00316{bottom:691.873500px;}
.y1_c00316{bottom:734.407500px;}
.h5_c00316{height:35.190766px;}
.h6_c00316{height:36.007158px;}
.h3_c00316{height:40.511979px;}
.h4_c00316{height:52.332837px;}
.h2_c00316{height:58.337477px;}
.h0_c00316{height:1262.835000px;}
.h1_c00316{height:1263.000000px;}
.w0_c00316{width:892.920000px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:127.558500px;}
.x2_c00316{left:137.122500px;}
.x3_c00316{left:143.770500px;}
.x4_c00316{left:435.249000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls3_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.078221pt;}
.ls2_c00316{letter-spacing:0.087539pt;}
.ls1_c00316{letter-spacing:0.092873pt;}
.wsc_c00316{word-spacing:-29.967501pt;}
.ws2_c00316{word-spacing:-23.622682pt;}
.wse_c00316{word-spacing:-23.544461pt;}
.ws5_c00316{word-spacing:-16.684034pt;}
.ws4_c00316{word-spacing:-13.283467pt;}
.ws7_c00316{word-spacing:-12.858396pt;}
.wsa_c00316{word-spacing:-12.539593pt;}
.wsb_c00316{word-spacing:-10.733041pt;}
.ws9_c00316{word-spacing:-10.414238pt;}
.ws8_c00316{word-spacing:-10.361104pt;}
.ws1_c00316{word-spacing:-8.878599pt;}
.ws3_c00316{word-spacing:-8.877777pt;}
.ws6_c00316{word-spacing:-1.232128pt;}
.ws12_c00316{word-spacing:0.000000pt;}
.wsf_c00316{word-spacing:0.039110pt;}
.ws15_c00316{word-spacing:0.050460pt;}
.ws13_c00316{word-spacing:0.065111pt;}
.ws14_c00316{word-spacing:0.074430pt;}
.wsd_c00316{word-spacing:0.156442pt;}
.ws16_c00316{word-spacing:0.180412pt;}
.ws10_c00316{word-spacing:0.189730pt;}
.ws11_c00316{word-spacing:0.195063pt;}
.ws0_c00316{word-spacing:38.256533pt;}
._2_c00316{margin-left:-3.001646pt;}
._1_c00316{margin-left:-0.956410pt;}
._5_c00316{width:0.893988pt;}
._0_c00316{width:17.720725pt;}
._3_c00316{width:21.147279pt;}
._4_c00316{width:35.652825pt;}
._7_c00316{width:47.362694pt;}
._6_c00316{width:70.985376pt;}
._8_c00316{width:118.624363pt;}
.fs2_c00316{font-size:39.110400pt;}
.fs1_c00316{font-size:53.133867pt;}
.fs0_c00316{font-size:76.513067pt;}
.y0_c00316{bottom:0.000000pt;}
.y20_c00316{bottom:39.333333pt;}
.y1f_c00316{bottom:77.317333pt;}
.y1e_c00316{bottom:91.929333pt;}
.y1d_c00316{bottom:106.541333pt;}
.y1c_c00316{bottom:121.153333pt;}
.y1b_c00316{bottom:135.765333pt;}
.y1a_c00316{bottom:150.377333pt;}
.y19_c00316{bottom:164.989333pt;}
.y18_c00316{bottom:179.601333pt;}
.y17_c00316{bottom:194.213333pt;}
.y16_c00316{bottom:208.824000pt;}
.y15_c00316{bottom:223.436000pt;}
.y14_c00316{bottom:238.048000pt;}
.y13_c00316{bottom:252.660000pt;}
.y12_c00316{bottom:267.272000pt;}
.y11_c00316{bottom:281.884000pt;}
.y10_c00316{bottom:311.108000pt;}
.yf_c00316{bottom:325.720000pt;}
.ye_c00316{bottom:369.554667pt;}
.yd_c00316{bottom:384.166667pt;}
.yc_c00316{bottom:398.446667pt;}
.yb_c00316{bottom:439.013333pt;}
.ya_c00316{bottom:454.953333pt;}
.y9_c00316{bottom:470.894667pt;}
.y8_c00316{bottom:486.834667pt;}
.y7_c00316{bottom:502.774667pt;}
.y6_c00316{bottom:518.714667pt;}
.y5_c00316{bottom:542.785333pt;}
.y4_c00316{bottom:566.857333pt;}
.y3_c00316{bottom:590.928000pt;}
.y2_c00316{bottom:614.998667pt;}
.y1_c00316{bottom:652.806667pt;}
.h5_c00316{height:31.280681pt;}
.h6_c00316{height:32.006363pt;}
.h3_c00316{height:36.010648pt;}
.h4_c00316{height:46.518078pt;}
.h2_c00316{height:51.855535pt;}
.h0_c00316{height:1122.520000pt;}
.h1_c00316{height:1122.666667pt;}
.w0_c00316{width:793.706667pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:113.385333pt;}
.x2_c00316{left:121.886667pt;}
.x3_c00316{left:127.796000pt;}
.x4_c00316{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb6016465401d1c5d9643881.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.048828;font-style:normal;font-weight:normal;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_3e9a7ef9a9e15a5c20c6cc09.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.014648;font-style:normal;font-weight:normal;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_86c2f460ee5b4d93554204ff.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:0.893555;font-style:normal;font-weight:normal;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_247329d06f21b2263ea846a1.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.102051;font-style: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;}
.ls4_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.087998px;}
.ls2_c00317{letter-spacing:0.098482px;}
.ls3_c00317{letter-spacing:0.104482px;}
.ls1_c00317{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00317{word-spacing:-26.575517px;}
.ws4_c00317{word-spacing:-26.487518px;}
.wsa_c00317{word-spacing:-18.769538px;}
.wsc_c00317{word-spacing:-16.019861px;}
.ws9_c00317{word-spacing:-14.943900px;}
.wsf_c00317{word-spacing:-14.107042px;}
.ws10_c00317{word-spacing:-12.074671px;}
.wse_c00317{word-spacing:-11.716018px;}
.wsd_c00317{word-spacing:-11.656242px;}
.ws7_c00317{word-spacing:-9.988424px;}
.ws8_c00317{word-spacing:-9.987499px;}
.wsb_c00317{word-spacing:-4.536144px;}
.ws3_c00317{word-spacing:0.000000px;}
.ws0_c00317{word-spacing:0.043999px;}
.ws5_c00317{word-spacing:0.213446px;}
.ws1_c00317{word-spacing:0.219446px;}
.ws6_c00317{word-spacing:43.038600px;}
._3_c00317{margin-left:-3.376852px;}
._2_c00317{margin-left:-1.075961px;}
._0_c00317{width:1.041538px;}
._1_c00317{width:19.935816px;}
._4_c00317{width:23.790689px;}
._5_c00317{width:40.109428px;}
.fc5_c00317{color:rgb(79,153,5);}
.fc4_c00317{color:rgb(143,89,3);}
.fc3_c00317{color:rgb(0,0,0);}
.fc6_c00317{color:rgb(6,69,173);}
.fc2_c00317{color:rgb(207,92,0);}
.fc1_c00317{color:rgb(0,0,207);}
.fc0_c00317{color:rgb(33,74,135);}
.fs0_c00317{font-size:43.999200px;}
.fs2_c00317{font-size:59.775600px;}
.fs1_c00317{font-size:86.077200px;}
.y0_c00317{bottom:0.000000px;}
.y20_c00317{bottom:44.250000px;}
.y1f_c00317{bottom:82.051500px;}
.y1e_c00317{bottom:99.984000px;}
.y1d_c00317{bottom:117.916500px;}
.y1c_c00317{bottom:135.849000px;}
.y1b_c00317{bottom:162.501000px;}
.y1a_c00317{bottom:189.151500px;}
.y19_c00317{bottom:215.802000px;}
.y18_c00317{bottom:242.454000px;}
.y17_c00317{bottom:284.478000px;}
.y16_c00317{bottom:748.903500px;}
.y15_c00317{bottom:765.342000px;}
.y14_c00317{bottom:781.780500px;}
.y13_c00317{bottom:798.219000px;}
.y12_c00317{bottom:814.657500px;}
.y11_c00317{bottom:831.096000px;}
.y10_c00317{bottom:847.534500px;}
.yf_c00317{bottom:863.973000px;}
.ye_c00317{bottom:880.411500px;}
.yd_c00317{bottom:896.848500px;}
.yc_c00317{bottom:913.287000px;}
.yb_c00317{bottom:946.164000px;}
.ya_c00317{bottom:962.602500px;}
.y9_c00317{bottom:979.041000px;}
.y8_c00317{bottom:1011.918000px;}
.y7_c00317{bottom:1028.356500px;}
.y6_c00317{bottom:1044.795000px;}
.y5_c00317{bottom:1061.232000px;}
.y4_c00317{bottom:1077.670500px;}
.y3_c00317{bottom:1094.109000px;}
.y2_c00317{bottom:1110.547500px;}
.y1_c00317{bottom:1159.863000px;}
.h3_c00317{height:35.190766px;}
.h2_c00317{height:36.007158px;}
.h5_c00317{height:40.511979px;}
.h6_c00317{height:52.332837px;}
.h4_c00317{height:58.337477px;}
.h0_c00317{height:1262.835000px;}
.h1_c00317{height:1263.000000px;}
.w0_c00317{width:892.920000px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x4_c00317{left:127.558500px;}
.x2_c00317{left:137.122500px;}
.x1_c00317{left:143.770500px;}
.x3_c00317{left:177.007500px;}
.x5_c00317{left:435.249000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls4_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.078221pt;}
.ls2_c00317{letter-spacing:0.087539pt;}
.ls3_c00317{letter-spacing:0.092873pt;}
.ls1_c00317{letter-spacing:23.724873pt;}
.ws2_c00317{word-spacing:-23.622682pt;}
.ws4_c00317{word-spacing:-23.544461pt;}
.wsa_c00317{word-spacing:-16.684034pt;}
.wsc_c00317{word-spacing:-14.239876pt;}
.ws9_c00317{word-spacing:-13.283467pt;}
.wsf_c00317{word-spacing:-12.539593pt;}
.ws10_c00317{word-spacing:-10.733041pt;}
.wse_c00317{word-spacing:-10.414238pt;}
.wsd_c00317{word-spacing:-10.361104pt;}
.ws7_c00317{word-spacing:-8.878599pt;}
.ws8_c00317{word-spacing:-8.877777pt;}
.wsb_c00317{word-spacing:-4.032128pt;}
.ws3_c00317{word-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.039110pt;}
.ws5_c00317{word-spacing:0.189730pt;}
.ws1_c00317{word-spacing:0.195063pt;}
.ws6_c00317{word-spacing:38.256533pt;}
._3_c00317{margin-left:-3.001646pt;}
._2_c00317{margin-left:-0.956410pt;}
._0_c00317{width:0.925811pt;}
._1_c00317{width:17.720725pt;}
._4_c00317{width:21.147279pt;}
._5_c00317{width:35.652825pt;}
.fs0_c00317{font-size:39.110400pt;}
.fs2_c00317{font-size:53.133867pt;}
.fs1_c00317{font-size:76.513067pt;}
.y0_c00317{bottom:0.000000pt;}
.y20_c00317{bottom:39.333333pt;}
.y1f_c00317{bottom:72.934667pt;}
.y1e_c00317{bottom:88.874667pt;}
.y1d_c00317{bottom:104.814667pt;}
.y1c_c00317{bottom:120.754667pt;}
.y1b_c00317{bottom:144.445333pt;}
.y1a_c00317{bottom:168.134667pt;}
.y19_c00317{bottom:191.824000pt;}
.y18_c00317{bottom:215.514667pt;}
.y17_c00317{bottom:252.869333pt;}
.y16_c00317{bottom:665.692000pt;}
.y15_c00317{bottom:680.304000pt;}
.y14_c00317{bottom:694.916000pt;}
.y13_c00317{bottom:709.528000pt;}
.y12_c00317{bottom:724.140000pt;}
.y11_c00317{bottom:738.752000pt;}
.y10_c00317{bottom:753.364000pt;}
.yf_c00317{bottom:767.976000pt;}
.ye_c00317{bottom:782.588000pt;}
.yd_c00317{bottom:797.198667pt;}
.yc_c00317{bottom:811.810667pt;}
.yb_c00317{bottom:841.034667pt;}
.ya_c00317{bottom:855.646667pt;}
.y9_c00317{bottom:870.258667pt;}
.y8_c00317{bottom:899.482667pt;}
.y7_c00317{bottom:914.094667pt;}
.y6_c00317{bottom:928.706667pt;}
.y5_c00317{bottom:943.317333pt;}
.y4_c00317{bottom:957.929333pt;}
.y3_c00317{bottom:972.541333pt;}
.y2_c00317{bottom:987.153333pt;}
.y1_c00317{bottom:1030.989333pt;}
.h3_c00317{height:31.280681pt;}
.h2_c00317{height:32.006363pt;}
.h5_c00317{height:36.010648pt;}
.h6_c00317{height:46.518078pt;}
.h4_c00317{height:51.855535pt;}
.h0_c00317{height:1122.520000pt;}
.h1_c00317{height:1122.666667pt;}
.w0_c00317{width:793.706667pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x4_c00317{left:113.385333pt;}
.x2_c00317{left:121.886667pt;}
.x1_c00317{left:127.796000pt;}
.x3_c00317{left:157.340000pt;}
.x5_c00317{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebce2015e2b9ee23913ed188.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.102051;font-style:normal;font-weight:normal;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_8c98caebb44426fedde1ca38.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.048828;font-style:normal;font-weight:normal;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_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls4_c00318{letter-spacing:0.000000px;}
.ls1_c00318{letter-spacing:0.087998px;}
.ls2_c00318{letter-spacing:0.098482px;}
.ls0_c00318{letter-spacing:0.104482px;}
.ls3_c00318{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00318{word-spacing:-26.575517px;}
.ws3_c00318{word-spacing:-26.487518px;}
.ws0_c00318{word-spacing:-18.769538px;}
.ws8_c00318{word-spacing:0.000000px;}
.ws5_c00318{word-spacing:0.043999px;}
.wsb_c00318{word-spacing:0.056767px;}
.ws9_c00318{word-spacing:0.073250px;}
.wsa_c00318{word-spacing:0.083734px;}
.ws2_c00318{word-spacing:0.175997px;}
.wsc_c00318{word-spacing:0.202963px;}
.ws6_c00318{word-spacing:0.213446px;}
.ws7_c00318{word-spacing:0.219446px;}
._0_c00318{margin-left:-3.825638px;}
._1_c00318{width:1.005737px;}
._3_c00318{width:53.283031px;}
._2_c00318{width:79.858548px;}
._5_c00318{width:106.654061px;}
._4_c00318{width:133.452408px;}
.fc5_c00318{color:rgb(0,0,207);}
.fc4_c00318{color:rgb(79,153,5);}
.fc3_c00318{color:rgb(207,92,0);}
.fc2_c00318{color:rgb(33,74,135);}
.fc1_c00318{color:rgb(143,89,3);}
.fc0_c00318{color:rgb(0,0,0);}
.fs1_c00318{font-size:43.999200px;}
.fs0_c00318{font-size:59.775600px;}
.y0_c00318{bottom:0.000000px;}
.y2d_c00318{bottom:44.250000px;}
.y2c_c00318{bottom:96.919500px;}
.y2b_c00318{bottom:113.358000px;}
.y2a_c00318{bottom:129.796500px;}
.y29_c00318{bottom:146.235000px;}
.y28_c00318{bottom:162.673500px;}
.y27_c00318{bottom:179.112000px;}
.y26_c00318{bottom:195.550500px;}
.y25_c00318{bottom:211.989000px;}
.y24_c00318{bottom:228.427500px;}
.y23_c00318{bottom:244.866000px;}
.y22_c00318{bottom:261.304500px;}
.y21_c00318{bottom:294.180000px;}
.y20_c00318{bottom:310.618500px;}
.y1f_c00318{bottom:327.057000px;}
.y1e_c00318{bottom:359.934000px;}
.y1d_c00318{bottom:376.372500px;}
.y1c_c00318{bottom:392.811000px;}
.y1b_c00318{bottom:409.249500px;}
.y1a_c00318{bottom:425.688000px;}
.y19_c00318{bottom:442.125000px;}
.y18_c00318{bottom:458.563500px;}
.y17_c00318{bottom:507.879000px;}
.y16_c00318{bottom:524.317500px;}
.y15_c00318{bottom:540.756000px;}
.y14_c00318{bottom:557.194500px;}
.y13_c00318{bottom:573.633000px;}
.y12_c00318{bottom:590.071500px;}
.y11_c00318{bottom:606.508500px;}
.y10_c00318{bottom:622.947000px;}
.yf_c00318{bottom:639.385500px;}
.ye_c00318{bottom:655.824000px;}
.yd_c00318{bottom:672.262500px;}
.yc_c00318{bottom:688.701000px;}
.yb_c00318{bottom:705.139500px;}
.ya_c00318{bottom:721.578000px;}
.y9_c00318{bottom:738.016500px;}
.y8_c00318{bottom:754.455000px;}
.y7_c00318{bottom:787.330500px;}
.y6_c00318{bottom:803.769000px;}
.y5_c00318{bottom:853.084500px;}
.y4_c00318{bottom:869.523000px;}
.y3_c00318{bottom:885.588000px;}
.y2_c00318{bottom:1141.930500px;}
.y1_c00318{bottom:1159.863000px;}
.h3_c00318{height:35.190766px;}
.h4_c00318{height:36.007158px;}
.h2_c00318{height:52.332837px;}
.h0_c00318{height:1262.835000px;}
.h1_c00318{height:1263.000000px;}
.w0_c00318{width:892.920000px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:127.558500px;}
.x2_c00318{left:137.122500px;}
.x3_c00318{left:143.770500px;}
.x4_c00318{left:177.007500px;}
.x5_c00318{left:435.249000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls4_c00318{letter-spacing:0.000000pt;}
.ls1_c00318{letter-spacing:0.078221pt;}
.ls2_c00318{letter-spacing:0.087539pt;}
.ls0_c00318{letter-spacing:0.092873pt;}
.ls3_c00318{letter-spacing:23.724873pt;}
.ws1_c00318{word-spacing:-29.967501pt;}
.ws4_c00318{word-spacing:-23.622682pt;}
.ws3_c00318{word-spacing:-23.544461pt;}
.ws0_c00318{word-spacing:-16.684034pt;}
.ws8_c00318{word-spacing:0.000000pt;}
.ws5_c00318{word-spacing:0.039110pt;}
.wsb_c00318{word-spacing:0.050460pt;}
.ws9_c00318{word-spacing:0.065111pt;}
.wsa_c00318{word-spacing:0.074430pt;}
.ws2_c00318{word-spacing:0.156442pt;}
.wsc_c00318{word-spacing:0.180412pt;}
.ws6_c00318{word-spacing:0.189730pt;}
.ws7_c00318{word-spacing:0.195063pt;}
._0_c00318{margin-left:-3.400567pt;}
._1_c00318{width:0.893988pt;}
._3_c00318{width:47.362694pt;}
._2_c00318{width:70.985376pt;}
._5_c00318{width:94.803610pt;}
._4_c00318{width:118.624363pt;}
.fs1_c00318{font-size:39.110400pt;}
.fs0_c00318{font-size:53.133867pt;}
.y0_c00318{bottom:0.000000pt;}
.y2d_c00318{bottom:39.333333pt;}
.y2c_c00318{bottom:86.150667pt;}
.y2b_c00318{bottom:100.762667pt;}
.y2a_c00318{bottom:115.374667pt;}
.y29_c00318{bottom:129.986667pt;}
.y28_c00318{bottom:144.598667pt;}
.y27_c00318{bottom:159.210667pt;}
.y26_c00318{bottom:173.822667pt;}
.y25_c00318{bottom:188.434667pt;}
.y24_c00318{bottom:203.046667pt;}
.y23_c00318{bottom:217.658667pt;}
.y22_c00318{bottom:232.270667pt;}
.y21_c00318{bottom:261.493333pt;}
.y20_c00318{bottom:276.105333pt;}
.y1f_c00318{bottom:290.717333pt;}
.y1e_c00318{bottom:319.941333pt;}
.y1d_c00318{bottom:334.553333pt;}
.y1c_c00318{bottom:349.165333pt;}
.y1b_c00318{bottom:363.777333pt;}
.y1a_c00318{bottom:378.389333pt;}
.y19_c00318{bottom:393.000000pt;}
.y18_c00318{bottom:407.612000pt;}
.y17_c00318{bottom:451.448000pt;}
.y16_c00318{bottom:466.060000pt;}
.y15_c00318{bottom:480.672000pt;}
.y14_c00318{bottom:495.284000pt;}
.y13_c00318{bottom:509.896000pt;}
.y12_c00318{bottom:524.508000pt;}
.y11_c00318{bottom:539.118667pt;}
.y10_c00318{bottom:553.730667pt;}
.yf_c00318{bottom:568.342667pt;}
.ye_c00318{bottom:582.954667pt;}
.yd_c00318{bottom:597.566667pt;}
.yc_c00318{bottom:612.178667pt;}
.yb_c00318{bottom:626.790667pt;}
.ya_c00318{bottom:641.402667pt;}
.y9_c00318{bottom:656.014667pt;}
.y8_c00318{bottom:670.626667pt;}
.y7_c00318{bottom:699.849333pt;}
.y6_c00318{bottom:714.461333pt;}
.y5_c00318{bottom:758.297333pt;}
.y4_c00318{bottom:772.909333pt;}
.y3_c00318{bottom:787.189333pt;}
.y2_c00318{bottom:1015.049333pt;}
.y1_c00318{bottom:1030.989333pt;}
.h3_c00318{height:31.280681pt;}
.h4_c00318{height:32.006363pt;}
.h2_c00318{height:46.518078pt;}
.h0_c00318{height:1122.520000pt;}
.h1_c00318{height:1122.666667pt;}
.w0_c00318{width:793.706667pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:113.385333pt;}
.x2_c00318{left:121.886667pt;}
.x3_c00318{left:127.796000pt;}
.x4_c00318{left:157.340000pt;}
.x5_c00318{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfa779e9aa7dcc5d59fa87af.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:0.893555;font-style:normal;font-weight:normal;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_748a549fb8f92e68ac678cdc.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.083496;font-style:normal;font-weight:normal;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_69e71d06ffb2e9466dc3eae5.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.048828;font-style: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;}
.ls3_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.087998px;}
.ls2_c00319{letter-spacing:0.098482px;}
.ls1_c00319{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00319{word-spacing:-33.713438px;}
.ws2_c00319{word-spacing:-26.575517px;}
.wse_c00319{word-spacing:-26.487518px;}
.ws5_c00319{word-spacing:-18.769538px;}
.ws7_c00319{word-spacing:-16.019861px;}
.ws4_c00319{word-spacing:-14.943900px;}
.wsa_c00319{word-spacing:-14.107042px;}
.wsb_c00319{word-spacing:-12.074671px;}
.ws9_c00319{word-spacing:-11.716018px;}
.ws8_c00319{word-spacing:-11.656242px;}
.ws1_c00319{word-spacing:-9.988424px;}
.ws3_c00319{word-spacing:-9.987499px;}
.ws6_c00319{word-spacing:-4.536144px;}
.ws12_c00319{word-spacing:0.000000px;}
.wsf_c00319{word-spacing:0.043999px;}
.ws15_c00319{word-spacing:0.056767px;}
.ws13_c00319{word-spacing:0.073250px;}
.ws14_c00319{word-spacing:0.083734px;}
.wsd_c00319{word-spacing:0.175997px;}
.ws16_c00319{word-spacing:0.202963px;}
.ws10_c00319{word-spacing:0.213446px;}
.ws11_c00319{word-spacing:0.219446px;}
.ws0_c00319{word-spacing:43.038600px;}
._2_c00319{margin-left:-3.376852px;}
._1_c00319{margin-left:-1.075961px;}
._5_c00319{width:1.005737px;}
._0_c00319{width:19.935816px;}
._3_c00319{width:23.790689px;}
._4_c00319{width:40.109428px;}
._7_c00319{width:53.283031px;}
._6_c00319{width:79.858548px;}
._8_c00319{width:133.452408px;}
.fc6_c00319{color:rgb(0,0,207);}
.fc5_c00319{color:rgb(79,153,5);}
.fc3_c00319{color:rgb(33,74,135);}
.fc2_c00319{color:rgb(143,89,3);}
.fc4_c00319{color:rgb(207,92,0);}
.fc1_c00319{color:rgb(6,69,173);}
.fc0_c00319{color:rgb(0,0,0);}
.fs2_c00319{font-size:43.999200px;}
.fs1_c00319{font-size:59.775600px;}
.fs0_c00319{font-size:86.077200px;}
.y0_c00319{bottom:0.000000px;}
.y20_c00319{bottom:44.250000px;}
.y1f_c00319{bottom:86.982000px;}
.y1e_c00319{bottom:103.420500px;}
.y1d_c00319{bottom:119.859000px;}
.y1c_c00319{bottom:136.297500px;}
.y1b_c00319{bottom:152.736000px;}
.y1a_c00319{bottom:169.174500px;}
.y19_c00319{bottom:185.613000px;}
.y18_c00319{bottom:202.051500px;}
.y17_c00319{bottom:218.490000px;}
.y16_c00319{bottom:234.927000px;}
.y15_c00319{bottom:251.365500px;}
.y14_c00319{bottom:267.804000px;}
.y13_c00319{bottom:284.242500px;}
.y12_c00319{bottom:300.681000px;}
.y11_c00319{bottom:317.119500px;}
.y10_c00319{bottom:349.996500px;}
.yf_c00319{bottom:366.435000px;}
.ye_c00319{bottom:415.749000px;}
.yd_c00319{bottom:432.187500px;}
.yc_c00319{bottom:448.252500px;}
.yb_c00319{bottom:493.890000px;}
.ya_c00319{bottom:511.822500px;}
.y9_c00319{bottom:529.756500px;}
.y8_c00319{bottom:547.689000px;}
.y7_c00319{bottom:565.621500px;}
.y6_c00319{bottom:583.554000px;}
.y5_c00319{bottom:610.633500px;}
.y4_c00319{bottom:637.714500px;}
.y3_c00319{bottom:664.794000px;}
.y2_c00319{bottom:691.873500px;}
.y1_c00319{bottom:734.407500px;}
.h5_c00319{height:35.190766px;}
.h6_c00319{height:36.007158px;}
.h3_c00319{height:40.511979px;}
.h4_c00319{height:52.332837px;}
.h2_c00319{height:58.337477px;}
.h0_c00319{height:1262.835000px;}
.h1_c00319{height:1263.000000px;}
.w0_c00319{width:892.920000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:127.558500px;}
.x2_c00319{left:137.122500px;}
.x3_c00319{left:143.770500px;}
.x4_c00319{left:435.249000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls3_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.078221pt;}
.ls2_c00319{letter-spacing:0.087539pt;}
.ls1_c00319{letter-spacing:0.092873pt;}
.wsc_c00319{word-spacing:-29.967501pt;}
.ws2_c00319{word-spacing:-23.622682pt;}
.wse_c00319{word-spacing:-23.544461pt;}
.ws5_c00319{word-spacing:-16.684034pt;}
.ws7_c00319{word-spacing:-14.239876pt;}
.ws4_c00319{word-spacing:-13.283467pt;}
.wsa_c00319{word-spacing:-12.539593pt;}
.wsb_c00319{word-spacing:-10.733041pt;}
.ws9_c00319{word-spacing:-10.414238pt;}
.ws8_c00319{word-spacing:-10.361104pt;}
.ws1_c00319{word-spacing:-8.878599pt;}
.ws3_c00319{word-spacing:-8.877777pt;}
.ws6_c00319{word-spacing:-4.032128pt;}
.ws12_c00319{word-spacing:0.000000pt;}
.wsf_c00319{word-spacing:0.039110pt;}
.ws15_c00319{word-spacing:0.050460pt;}
.ws13_c00319{word-spacing:0.065111pt;}
.ws14_c00319{word-spacing:0.074430pt;}
.wsd_c00319{word-spacing:0.156442pt;}
.ws16_c00319{word-spacing:0.180412pt;}
.ws10_c00319{word-spacing:0.189730pt;}
.ws11_c00319{word-spacing:0.195063pt;}
.ws0_c00319{word-spacing:38.256533pt;}
._2_c00319{margin-left:-3.001646pt;}
._1_c00319{margin-left:-0.956410pt;}
._5_c00319{width:0.893988pt;}
._0_c00319{width:17.720725pt;}
._3_c00319{width:21.147279pt;}
._4_c00319{width:35.652825pt;}
._7_c00319{width:47.362694pt;}
._6_c00319{width:70.985376pt;}
._8_c00319{width:118.624363pt;}
.fs2_c00319{font-size:39.110400pt;}
.fs1_c00319{font-size:53.133867pt;}
.fs0_c00319{font-size:76.513067pt;}
.y0_c00319{bottom:0.000000pt;}
.y20_c00319{bottom:39.333333pt;}
.y1f_c00319{bottom:77.317333pt;}
.y1e_c00319{bottom:91.929333pt;}
.y1d_c00319{bottom:106.541333pt;}
.y1c_c00319{bottom:121.153333pt;}
.y1b_c00319{bottom:135.765333pt;}
.y1a_c00319{bottom:150.377333pt;}
.y19_c00319{bottom:164.989333pt;}
.y18_c00319{bottom:179.601333pt;}
.y17_c00319{bottom:194.213333pt;}
.y16_c00319{bottom:208.824000pt;}
.y15_c00319{bottom:223.436000pt;}
.y14_c00319{bottom:238.048000pt;}
.y13_c00319{bottom:252.660000pt;}
.y12_c00319{bottom:267.272000pt;}
.y11_c00319{bottom:281.884000pt;}
.y10_c00319{bottom:311.108000pt;}
.yf_c00319{bottom:325.720000pt;}
.ye_c00319{bottom:369.554667pt;}
.yd_c00319{bottom:384.166667pt;}
.yc_c00319{bottom:398.446667pt;}
.yb_c00319{bottom:439.013333pt;}
.ya_c00319{bottom:454.953333pt;}
.y9_c00319{bottom:470.894667pt;}
.y8_c00319{bottom:486.834667pt;}
.y7_c00319{bottom:502.774667pt;}
.y6_c00319{bottom:518.714667pt;}
.y5_c00319{bottom:542.785333pt;}
.y4_c00319{bottom:566.857333pt;}
.y3_c00319{bottom:590.928000pt;}
.y2_c00319{bottom:614.998667pt;}
.y1_c00319{bottom:652.806667pt;}
.h5_c00319{height:31.280681pt;}
.h6_c00319{height:32.006363pt;}
.h3_c00319{height:36.010648pt;}
.h4_c00319{height:46.518078pt;}
.h2_c00319{height:51.855535pt;}
.h0_c00319{height:1122.520000pt;}
.h1_c00319{height:1122.666667pt;}
.w0_c00319{width:793.706667pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:113.385333pt;}
.x2_c00319{left:121.886667pt;}
.x3_c00319{left:127.796000pt;}
.x4_c00319{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fd571d617e3627075cc0ab3.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.048828;font-style:normal;font-weight:normal;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_59434eb237ff60a43aedc530.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.014648;font-style:normal;font-weight:normal;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_1fdd64729b1799799b32c8b5.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:0.893555;font-style:normal;font-weight:normal;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_75957f455e868dbc6b0b1e59.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:1.102051;font-style: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;}
.ls4_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.087998px;}
.ls2_c00320{letter-spacing:0.098482px;}
.ls3_c00320{letter-spacing:0.104482px;}
.ls1_c00320{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws4_c00320{word-spacing:-26.487518px;}
.wsa_c00320{word-spacing:-18.769538px;}
.wsc_c00320{word-spacing:-17.633802px;}
.ws9_c00320{word-spacing:-14.943900px;}
.wsf_c00320{word-spacing:-14.107042px;}
.ws10_c00320{word-spacing:-12.074671px;}
.wse_c00320{word-spacing:-11.716018px;}
.wsd_c00320{word-spacing:-11.656242px;}
.ws7_c00320{word-spacing:-9.988424px;}
.ws8_c00320{word-spacing:-9.987499px;}
.wsb_c00320{word-spacing:-7.680144px;}
.ws3_c00320{word-spacing:0.000000px;}
.ws0_c00320{word-spacing:0.043999px;}
.ws5_c00320{word-spacing:0.213446px;}
.ws1_c00320{word-spacing:0.219446px;}
.ws6_c00320{word-spacing:43.038600px;}
._4_c00320{margin-left:-3.376852px;}
._3_c00320{margin-left:-1.075961px;}
._1_c00320{width:1.041538px;}
._2_c00320{width:19.935816px;}
._5_c00320{width:23.790689px;}
._6_c00320{width:40.109428px;}
._0_c00320{width:106.654061px;}
.fc5_c00320{color:rgb(79,153,5);}
.fc4_c00320{color:rgb(143,89,3);}
.fc3_c00320{color:rgb(0,0,0);}
.fc6_c00320{color:rgb(6,69,173);}
.fc2_c00320{color:rgb(207,92,0);}
.fc1_c00320{color:rgb(0,0,207);}
.fc0_c00320{color:rgb(33,74,135);}
.fs0_c00320{font-size:43.999200px;}
.fs2_c00320{font-size:59.775600px;}
.fs1_c00320{font-size:86.077200px;}
.y0_c00320{bottom:0.000000px;}
.y20_c00320{bottom:44.250000px;}
.y1f_c00320{bottom:82.051500px;}
.y1e_c00320{bottom:99.984000px;}
.y1d_c00320{bottom:117.916500px;}
.y1c_c00320{bottom:135.849000px;}
.y1b_c00320{bottom:162.501000px;}
.y1a_c00320{bottom:189.151500px;}
.y19_c00320{bottom:215.802000px;}
.y18_c00320{bottom:242.454000px;}
.y17_c00320{bottom:284.478000px;}
.y16_c00320{bottom:748.903500px;}
.y15_c00320{bottom:765.342000px;}
.y14_c00320{bottom:781.780500px;}
.y13_c00320{bottom:798.219000px;}
.y12_c00320{bottom:814.657500px;}
.y11_c00320{bottom:831.096000px;}
.y10_c00320{bottom:847.534500px;}
.yf_c00320{bottom:863.973000px;}
.ye_c00320{bottom:880.411500px;}
.yd_c00320{bottom:896.848500px;}
.yc_c00320{bottom:913.287000px;}
.yb_c00320{bottom:946.164000px;}
.ya_c00320{bottom:962.602500px;}
.y9_c00320{bottom:979.041000px;}
.y8_c00320{bottom:1011.918000px;}
.y7_c00320{bottom:1028.356500px;}
.y6_c00320{bottom:1044.795000px;}
.y5_c00320{bottom:1061.232000px;}
.y4_c00320{bottom:1077.670500px;}
.y3_c00320{bottom:1094.109000px;}
.y2_c00320{bottom:1110.547500px;}
.y1_c00320{bottom:1159.863000px;}
.h3_c00320{height:35.190766px;}
.h2_c00320{height:36.007158px;}
.h5_c00320{height:40.511979px;}
.h6_c00320{height:52.332837px;}
.h4_c00320{height:58.337477px;}
.h0_c00320{height:1262.835000px;}
.h1_c00320{height:1263.000000px;}
.w0_c00320{width:892.920000px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x4_c00320{left:127.558500px;}
.x2_c00320{left:137.122500px;}
.x1_c00320{left:143.770500px;}
.x3_c00320{left:177.007500px;}
.x5_c00320{left:435.249000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls4_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.078221pt;}
.ls2_c00320{letter-spacing:0.087539pt;}
.ls3_c00320{letter-spacing:0.092873pt;}
.ls1_c00320{letter-spacing:23.724873pt;}
.ws2_c00320{word-spacing:-23.622682pt;}
.ws4_c00320{word-spacing:-23.544461pt;}
.wsa_c00320{word-spacing:-16.684034pt;}
.wsc_c00320{word-spacing:-15.674491pt;}
.ws9_c00320{word-spacing:-13.283467pt;}
.wsf_c00320{word-spacing:-12.539593pt;}
.ws10_c00320{word-spacing:-10.733041pt;}
.wse_c00320{word-spacing:-10.414238pt;}
.wsd_c00320{word-spacing:-10.361104pt;}
.ws7_c00320{word-spacing:-8.878599pt;}
.ws8_c00320{word-spacing:-8.877777pt;}
.wsb_c00320{word-spacing:-6.826795pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.039110pt;}
.ws5_c00320{word-spacing:0.189730pt;}
.ws1_c00320{word-spacing:0.195063pt;}
.ws6_c00320{word-spacing:38.256533pt;}
._4_c00320{margin-left:-3.001646pt;}
._3_c00320{margin-left:-0.956410pt;}
._1_c00320{width:0.925811pt;}
._2_c00320{width:17.720725pt;}
._5_c00320{width:21.147279pt;}
._6_c00320{width:35.652825pt;}
._0_c00320{width:94.803610pt;}
.fs0_c00320{font-size:39.110400pt;}
.fs2_c00320{font-size:53.133867pt;}
.fs1_c00320{font-size:76.513067pt;}
.y0_c00320{bottom:0.000000pt;}
.y20_c00320{bottom:39.333333pt;}
.y1f_c00320{bottom:72.934667pt;}
.y1e_c00320{bottom:88.874667pt;}
.y1d_c00320{bottom:104.814667pt;}
.y1c_c00320{bottom:120.754667pt;}
.y1b_c00320{bottom:144.445333pt;}
.y1a_c00320{bottom:168.134667pt;}
.y19_c00320{bottom:191.824000pt;}
.y18_c00320{bottom:215.514667pt;}
.y17_c00320{bottom:252.869333pt;}
.y16_c00320{bottom:665.692000pt;}
.y15_c00320{bottom:680.304000pt;}
.y14_c00320{bottom:694.916000pt;}
.y13_c00320{bottom:709.528000pt;}
.y12_c00320{bottom:724.140000pt;}
.y11_c00320{bottom:738.752000pt;}
.y10_c00320{bottom:753.364000pt;}
.yf_c00320{bottom:767.976000pt;}
.ye_c00320{bottom:782.588000pt;}
.yd_c00320{bottom:797.198667pt;}
.yc_c00320{bottom:811.810667pt;}
.yb_c00320{bottom:841.034667pt;}
.ya_c00320{bottom:855.646667pt;}
.y9_c00320{bottom:870.258667pt;}
.y8_c00320{bottom:899.482667pt;}
.y7_c00320{bottom:914.094667pt;}
.y6_c00320{bottom:928.706667pt;}
.y5_c00320{bottom:943.317333pt;}
.y4_c00320{bottom:957.929333pt;}
.y3_c00320{bottom:972.541333pt;}
.y2_c00320{bottom:987.153333pt;}
.y1_c00320{bottom:1030.989333pt;}
.h3_c00320{height:31.280681pt;}
.h2_c00320{height:32.006363pt;}
.h5_c00320{height:36.010648pt;}
.h6_c00320{height:46.518078pt;}
.h4_c00320{height:51.855535pt;}
.h0_c00320{height:1122.520000pt;}
.h1_c00320{height:1122.666667pt;}
.w0_c00320{width:793.706667pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x4_c00320{left:113.385333pt;}
.x2_c00320{left:121.886667pt;}
.x1_c00320{left:127.796000pt;}
.x3_c00320{left:157.340000pt;}
.x5_c00320{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4a9a9f970e1c1b3b569b466.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.102051;font-style:normal;font-weight:normal;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_e19cfa2c9edab6041d666808.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.048828;font-style:normal;font-weight:normal;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_2f1dd931cca88cf21af8851f.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls4_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:0.087998px;}
.ls2_c00321{letter-spacing:0.098482px;}
.ls0_c00321{letter-spacing:0.104482px;}
.ls3_c00321{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00321{word-spacing:-26.575517px;}
.ws3_c00321{word-spacing:-26.487518px;}
.ws0_c00321{word-spacing:-18.769538px;}
.ws8_c00321{word-spacing:0.000000px;}
.ws5_c00321{word-spacing:0.043999px;}
.wsb_c00321{word-spacing:0.056767px;}
.ws9_c00321{word-spacing:0.073250px;}
.wsa_c00321{word-spacing:0.083734px;}
.ws2_c00321{word-spacing:0.175997px;}
.wsc_c00321{word-spacing:0.202963px;}
.ws6_c00321{word-spacing:0.213446px;}
.ws7_c00321{word-spacing:0.219446px;}
._0_c00321{margin-left:-3.825638px;}
._1_c00321{width:1.005737px;}
._3_c00321{width:53.283031px;}
._2_c00321{width:79.858548px;}
._4_c00321{width:133.452408px;}
.fc5_c00321{color:rgb(0,0,207);}
.fc4_c00321{color:rgb(79,153,5);}
.fc3_c00321{color:rgb(207,92,0);}
.fc2_c00321{color:rgb(33,74,135);}
.fc1_c00321{color:rgb(143,89,3);}
.fc0_c00321{color:rgb(0,0,0);}
.fs1_c00321{font-size:43.999200px;}
.fs0_c00321{font-size:59.775600px;}
.y0_c00321{bottom:0.000000px;}
.y2d_c00321{bottom:44.250000px;}
.y2c_c00321{bottom:96.919500px;}
.y2b_c00321{bottom:113.358000px;}
.y2a_c00321{bottom:129.796500px;}
.y29_c00321{bottom:146.235000px;}
.y28_c00321{bottom:162.673500px;}
.y27_c00321{bottom:179.112000px;}
.y26_c00321{bottom:195.550500px;}
.y25_c00321{bottom:211.989000px;}
.y24_c00321{bottom:228.427500px;}
.y23_c00321{bottom:244.866000px;}
.y22_c00321{bottom:261.304500px;}
.y21_c00321{bottom:294.180000px;}
.y20_c00321{bottom:310.618500px;}
.y1f_c00321{bottom:327.057000px;}
.y1e_c00321{bottom:359.934000px;}
.y1d_c00321{bottom:376.372500px;}
.y1c_c00321{bottom:392.811000px;}
.y1b_c00321{bottom:409.249500px;}
.y1a_c00321{bottom:425.688000px;}
.y19_c00321{bottom:442.125000px;}
.y18_c00321{bottom:458.563500px;}
.y17_c00321{bottom:507.879000px;}
.y16_c00321{bottom:524.317500px;}
.y15_c00321{bottom:540.756000px;}
.y14_c00321{bottom:557.194500px;}
.y13_c00321{bottom:573.633000px;}
.y12_c00321{bottom:590.071500px;}
.y11_c00321{bottom:606.508500px;}
.y10_c00321{bottom:622.947000px;}
.yf_c00321{bottom:639.385500px;}
.ye_c00321{bottom:655.824000px;}
.yd_c00321{bottom:672.262500px;}
.yc_c00321{bottom:688.701000px;}
.yb_c00321{bottom:705.139500px;}
.ya_c00321{bottom:721.578000px;}
.y9_c00321{bottom:738.016500px;}
.y8_c00321{bottom:754.455000px;}
.y7_c00321{bottom:787.330500px;}
.y6_c00321{bottom:803.769000px;}
.y5_c00321{bottom:853.084500px;}
.y4_c00321{bottom:869.523000px;}
.y3_c00321{bottom:885.588000px;}
.y2_c00321{bottom:1141.930500px;}
.y1_c00321{bottom:1159.863000px;}
.h3_c00321{height:35.190766px;}
.h4_c00321{height:36.007158px;}
.h2_c00321{height:52.332837px;}
.h0_c00321{height:1262.835000px;}
.h1_c00321{height:1263.000000px;}
.w0_c00321{width:892.920000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:127.558500px;}
.x2_c00321{left:137.122500px;}
.x3_c00321{left:143.770500px;}
.x4_c00321{left:177.007500px;}
.x5_c00321{left:435.249000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls4_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:0.078221pt;}
.ls2_c00321{letter-spacing:0.087539pt;}
.ls0_c00321{letter-spacing:0.092873pt;}
.ls3_c00321{letter-spacing:23.724873pt;}
.ws1_c00321{word-spacing:-29.967501pt;}
.ws4_c00321{word-spacing:-23.622682pt;}
.ws3_c00321{word-spacing:-23.544461pt;}
.ws0_c00321{word-spacing:-16.684034pt;}
.ws8_c00321{word-spacing:0.000000pt;}
.ws5_c00321{word-spacing:0.039110pt;}
.wsb_c00321{word-spacing:0.050460pt;}
.ws9_c00321{word-spacing:0.065111pt;}
.wsa_c00321{word-spacing:0.074430pt;}
.ws2_c00321{word-spacing:0.156442pt;}
.wsc_c00321{word-spacing:0.180412pt;}
.ws6_c00321{word-spacing:0.189730pt;}
.ws7_c00321{word-spacing:0.195063pt;}
._0_c00321{margin-left:-3.400567pt;}
._1_c00321{width:0.893988pt;}
._3_c00321{width:47.362694pt;}
._2_c00321{width:70.985376pt;}
._4_c00321{width:118.624363pt;}
.fs1_c00321{font-size:39.110400pt;}
.fs0_c00321{font-size:53.133867pt;}
.y0_c00321{bottom:0.000000pt;}
.y2d_c00321{bottom:39.333333pt;}
.y2c_c00321{bottom:86.150667pt;}
.y2b_c00321{bottom:100.762667pt;}
.y2a_c00321{bottom:115.374667pt;}
.y29_c00321{bottom:129.986667pt;}
.y28_c00321{bottom:144.598667pt;}
.y27_c00321{bottom:159.210667pt;}
.y26_c00321{bottom:173.822667pt;}
.y25_c00321{bottom:188.434667pt;}
.y24_c00321{bottom:203.046667pt;}
.y23_c00321{bottom:217.658667pt;}
.y22_c00321{bottom:232.270667pt;}
.y21_c00321{bottom:261.493333pt;}
.y20_c00321{bottom:276.105333pt;}
.y1f_c00321{bottom:290.717333pt;}
.y1e_c00321{bottom:319.941333pt;}
.y1d_c00321{bottom:334.553333pt;}
.y1c_c00321{bottom:349.165333pt;}
.y1b_c00321{bottom:363.777333pt;}
.y1a_c00321{bottom:378.389333pt;}
.y19_c00321{bottom:393.000000pt;}
.y18_c00321{bottom:407.612000pt;}
.y17_c00321{bottom:451.448000pt;}
.y16_c00321{bottom:466.060000pt;}
.y15_c00321{bottom:480.672000pt;}
.y14_c00321{bottom:495.284000pt;}
.y13_c00321{bottom:509.896000pt;}
.y12_c00321{bottom:524.508000pt;}
.y11_c00321{bottom:539.118667pt;}
.y10_c00321{bottom:553.730667pt;}
.yf_c00321{bottom:568.342667pt;}
.ye_c00321{bottom:582.954667pt;}
.yd_c00321{bottom:597.566667pt;}
.yc_c00321{bottom:612.178667pt;}
.yb_c00321{bottom:626.790667pt;}
.ya_c00321{bottom:641.402667pt;}
.y9_c00321{bottom:656.014667pt;}
.y8_c00321{bottom:670.626667pt;}
.y7_c00321{bottom:699.849333pt;}
.y6_c00321{bottom:714.461333pt;}
.y5_c00321{bottom:758.297333pt;}
.y4_c00321{bottom:772.909333pt;}
.y3_c00321{bottom:787.189333pt;}
.y2_c00321{bottom:1015.049333pt;}
.y1_c00321{bottom:1030.989333pt;}
.h3_c00321{height:31.280681pt;}
.h4_c00321{height:32.006363pt;}
.h2_c00321{height:46.518078pt;}
.h0_c00321{height:1122.520000pt;}
.h1_c00321{height:1122.666667pt;}
.w0_c00321{width:793.706667pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:113.385333pt;}
.x2_c00321{left:121.886667pt;}
.x3_c00321{left:127.796000pt;}
.x4_c00321{left:157.340000pt;}
.x5_c00321{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fe7871ead9fe4a0e7ab4eee.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:0.893555;font-style:normal;font-weight:normal;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_b8c67e5c6ecf26f0a761f07b.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.083496;font-style:normal;font-weight:normal;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_ea5ffd536ce2ac40faee4965.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.102051;font-style:normal;font-weight:normal;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_8c2c94454c285f10bf29dbee.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_05449436f8415f06da096ee0.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.048828;font-style: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;}
.ls3_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.087998px;}
.ls2_c00322{letter-spacing:0.098482px;}
.ls1_c00322{letter-spacing:0.104482px;}
.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;}
}
.wsd_c00322{word-spacing:-33.713438px;}
.ws2_c00322{word-spacing:-26.575517px;}
.wsf_c00322{word-spacing:-26.487518px;}
.ws9_c00322{word-spacing:-21.937645px;}
.wsc_c00322{word-spacing:-18.889090px;}
.ws5_c00322{word-spacing:-18.769538px;}
.wsa_c00322{word-spacing:-15.960085px;}
.ws4_c00322{word-spacing:-14.943900px;}
.wsb_c00322{word-spacing:-14.465695px;}
.ws7_c00322{word-spacing:-11.357364px;}
.ws8_c00322{word-spacing:-11.326255px;}
.ws1_c00322{word-spacing:-9.988424px;}
.ws3_c00322{word-spacing:-9.987499px;}
.ws13_c00322{word-spacing:0.000000px;}
.ws10_c00322{word-spacing:0.043999px;}
.ws14_c00322{word-spacing:0.053933px;}
.wse_c00322{word-spacing:0.175997px;}
.ws11_c00322{word-spacing:0.213446px;}
.ws12_c00322{word-spacing:0.219446px;}
.ws6_c00322{word-spacing:4.859856px;}
.ws0_c00322{word-spacing:43.038600px;}
._6_c00322{margin-left:-3.825638px;}
._0_c00322{margin-left:-1.549390px;}
._7_c00322{width:1.005737px;}
._3_c00322{width:12.791978px;}
._1_c00322{width:19.935816px;}
._2_c00322{width:23.606586px;}
._4_c00322{width:28.512961px;}
._5_c00322{width:33.115682px;}
.fc6_c00322{color:rgb(0,0,207);}
.fc5_c00322{color:rgb(79,153,5);}
.fc3_c00322{color:rgb(33,74,135);}
.fc2_c00322{color:rgb(143,89,3);}
.fc4_c00322{color:rgb(207,92,0);}
.fc1_c00322{color:rgb(6,69,173);}
.fc0_c00322{color:rgb(0,0,0);}
.fs2_c00322{font-size:43.999200px;}
.fs1_c00322{font-size:59.775600px;}
.fs0_c00322{font-size:86.077200px;}
.y0_c00322{bottom:0.000000px;}
.y1e_c00322{bottom:44.250000px;}
.y1d_c00322{bottom:86.982000px;}
.y1c_c00322{bottom:103.420500px;}
.y1b_c00322{bottom:119.859000px;}
.y1a_c00322{bottom:136.297500px;}
.y19_c00322{bottom:169.174500px;}
.y18_c00322{bottom:185.613000px;}
.y17_c00322{bottom:218.490000px;}
.y16_c00322{bottom:234.927000px;}
.y15_c00322{bottom:251.365500px;}
.y14_c00322{bottom:300.681000px;}
.y13_c00322{bottom:317.119500px;}
.y12_c00322{bottom:333.558000px;}
.y11_c00322{bottom:349.996500px;}
.y10_c00322{bottom:366.435000px;}
.yf_c00322{bottom:399.310500px;}
.ye_c00322{bottom:415.749000px;}
.yd_c00322{bottom:431.814000px;}
.yc_c00322{bottom:477.118500px;}
.yb_c00322{bottom:495.051000px;}
.ya_c00322{bottom:512.983500px;}
.y9_c00322{bottom:530.916000px;}
.y8_c00322{bottom:548.848500px;}
.y7_c00322{bottom:566.781000px;}
.y6_c00322{bottom:584.715000px;}
.y5_c00322{bottom:611.661000px;}
.y4_c00322{bottom:638.607000px;}
.y3_c00322{bottom:665.553000px;}
.y2_c00322{bottom:692.500500px;}
.y1_c00322{bottom:734.839500px;}
.h5_c00322{height:35.190766px;}
.h6_c00322{height:36.007158px;}
.h3_c00322{height:40.511979px;}
.h4_c00322{height:52.332837px;}
.h2_c00322{height:58.337477px;}
.h0_c00322{height:1262.835000px;}
.h1_c00322{height:1263.000000px;}
.w0_c00322{width:892.920000px;}
.w1_c00322{width:893.250000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:127.558500px;}
.x2_c00322{left:137.122500px;}
.x3_c00322{left:143.770500px;}
.x4_c00322{left:435.249000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls3_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.078221pt;}
.ls2_c00322{letter-spacing:0.087539pt;}
.ls1_c00322{letter-spacing:0.092873pt;}
.wsd_c00322{word-spacing:-29.967501pt;}
.ws2_c00322{word-spacing:-23.622682pt;}
.wsf_c00322{word-spacing:-23.544461pt;}
.ws9_c00322{word-spacing:-19.500129pt;}
.wsc_c00322{word-spacing:-16.790302pt;}
.ws5_c00322{word-spacing:-16.684034pt;}
.wsa_c00322{word-spacing:-14.186742pt;}
.ws4_c00322{word-spacing:-13.283467pt;}
.wsb_c00322{word-spacing:-12.858396pt;}
.ws7_c00322{word-spacing:-10.095435pt;}
.ws8_c00322{word-spacing:-10.067782pt;}
.ws1_c00322{word-spacing:-8.878599pt;}
.ws3_c00322{word-spacing:-8.877777pt;}
.ws13_c00322{word-spacing:0.000000pt;}
.ws10_c00322{word-spacing:0.039110pt;}
.ws14_c00322{word-spacing:0.047940pt;}
.wse_c00322{word-spacing:0.156442pt;}
.ws11_c00322{word-spacing:0.189730pt;}
.ws12_c00322{word-spacing:0.195063pt;}
.ws6_c00322{word-spacing:4.319872pt;}
.ws0_c00322{word-spacing:38.256533pt;}
._6_c00322{margin-left:-3.400567pt;}
._0_c00322{margin-left:-1.377235pt;}
._7_c00322{width:0.893988pt;}
._3_c00322{width:11.370647pt;}
._1_c00322{width:17.720725pt;}
._2_c00322{width:20.983632pt;}
._4_c00322{width:25.344854pt;}
._5_c00322{width:29.436162pt;}
.fs2_c00322{font-size:39.110400pt;}
.fs1_c00322{font-size:53.133867pt;}
.fs0_c00322{font-size:76.513067pt;}
.y0_c00322{bottom:0.000000pt;}
.y1e_c00322{bottom:39.333333pt;}
.y1d_c00322{bottom:77.317333pt;}
.y1c_c00322{bottom:91.929333pt;}
.y1b_c00322{bottom:106.541333pt;}
.y1a_c00322{bottom:121.153333pt;}
.y19_c00322{bottom:150.377333pt;}
.y18_c00322{bottom:164.989333pt;}
.y17_c00322{bottom:194.213333pt;}
.y16_c00322{bottom:208.824000pt;}
.y15_c00322{bottom:223.436000pt;}
.y14_c00322{bottom:267.272000pt;}
.y13_c00322{bottom:281.884000pt;}
.y12_c00322{bottom:296.496000pt;}
.y11_c00322{bottom:311.108000pt;}
.y10_c00322{bottom:325.720000pt;}
.yf_c00322{bottom:354.942667pt;}
.ye_c00322{bottom:369.554667pt;}
.yd_c00322{bottom:383.834667pt;}
.yc_c00322{bottom:424.105333pt;}
.yb_c00322{bottom:440.045333pt;}
.ya_c00322{bottom:455.985333pt;}
.y9_c00322{bottom:471.925333pt;}
.y8_c00322{bottom:487.865333pt;}
.y7_c00322{bottom:503.805333pt;}
.y6_c00322{bottom:519.746667pt;}
.y5_c00322{bottom:543.698667pt;}
.y4_c00322{bottom:567.650667pt;}
.y3_c00322{bottom:591.602667pt;}
.y2_c00322{bottom:615.556000pt;}
.y1_c00322{bottom:653.190667pt;}
.h5_c00322{height:31.280681pt;}
.h6_c00322{height:32.006363pt;}
.h3_c00322{height:36.010648pt;}
.h4_c00322{height:46.518078pt;}
.h2_c00322{height:51.855535pt;}
.h0_c00322{height:1122.520000pt;}
.h1_c00322{height:1122.666667pt;}
.w0_c00322{width:793.706667pt;}
.w1_c00322{width:794.000000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:113.385333pt;}
.x2_c00322{left:121.886667pt;}
.x3_c00322{left:127.796000pt;}
.x4_c00322{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93873c40b707d17240611a97.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.048828;font-style:normal;font-weight:normal;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_179a20cb4b4761db20f46a72.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_8730455d76ce61a3882c02ee.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_7fa16ae98b3bd8fcd0fb8029.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls4_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.087998px;}
.ls2_c00323{letter-spacing:0.098482px;}
.ls1_c00323{letter-spacing:0.104482px;}
.ls3_c00323{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws1_c00323{word-spacing:-26.487518px;}
.ws2_c00323{word-spacing:0.000000px;}
.ws8_c00323{word-spacing:0.026966px;}
.ws9_c00323{word-spacing:0.043999px;}
.ws6_c00323{word-spacing:0.046284px;}
.ws3_c00323{word-spacing:0.056767px;}
.ws5_c00323{word-spacing:0.073250px;}
.ws7_c00323{word-spacing:0.083734px;}
.ws4_c00323{word-spacing:0.202963px;}
.wsb_c00323{word-spacing:0.213446px;}
.wsa_c00323{word-spacing:0.219446px;}
._5_c00323{width:1.041538px;}
._3_c00323{width:53.283031px;}
._0_c00323{width:79.858548px;}
._2_c00323{width:106.434065px;}
._1_c00323{width:133.452408px;}
._4_c00323{width:186.179933px;}
.fc5_c00323{color:rgb(0,0,207);}
.fc4_c00323{color:rgb(79,153,5);}
.fc3_c00323{color:rgb(143,89,3);}
.fc2_c00323{color:rgb(207,92,0);}
.fc1_c00323{color:rgb(0,0,0);}
.fc0_c00323{color:rgb(33,74,135);}
.fs0_c00323{font-size:43.999200px;}
.fs1_c00323{font-size:59.775600px;}
.y0_c00323{bottom:0.000000px;}
.y30_c00323{bottom:44.250000px;}
.y2f_c00323{bottom:305.068500px;}
.y2e_c00323{bottom:321.507000px;}
.y2d_c00323{bottom:337.945500px;}
.y2c_c00323{bottom:354.384000px;}
.y2b_c00323{bottom:370.822500px;}
.y2a_c00323{bottom:387.259500px;}
.y29_c00323{bottom:403.698000px;}
.y28_c00323{bottom:420.136500px;}
.y27_c00323{bottom:436.575000px;}
.y26_c00323{bottom:453.013500px;}
.y25_c00323{bottom:469.452000px;}
.y24_c00323{bottom:502.329000px;}
.y23_c00323{bottom:518.767500px;}
.y22_c00323{bottom:535.206000px;}
.y21_c00323{bottom:568.081500px;}
.y20_c00323{bottom:584.520000px;}
.y1f_c00323{bottom:600.958500px;}
.y1e_c00323{bottom:617.397000px;}
.y1d_c00323{bottom:633.835500px;}
.y1c_c00323{bottom:650.274000px;}
.y1b_c00323{bottom:666.712500px;}
.y1a_c00323{bottom:683.151000px;}
.y19_c00323{bottom:699.589500px;}
.y18_c00323{bottom:716.028000px;}
.y17_c00323{bottom:732.465000px;}
.y16_c00323{bottom:748.903500px;}
.y15_c00323{bottom:765.342000px;}
.y14_c00323{bottom:781.780500px;}
.y13_c00323{bottom:798.219000px;}
.y12_c00323{bottom:814.657500px;}
.y11_c00323{bottom:831.096000px;}
.y10_c00323{bottom:847.534500px;}
.yf_c00323{bottom:863.973000px;}
.ye_c00323{bottom:913.287000px;}
.yd_c00323{bottom:929.725500px;}
.yc_c00323{bottom:946.164000px;}
.yb_c00323{bottom:962.602500px;}
.ya_c00323{bottom:979.041000px;}
.y9_c00323{bottom:995.479500px;}
.y8_c00323{bottom:1011.918000px;}
.y7_c00323{bottom:1028.356500px;}
.y6_c00323{bottom:1061.232000px;}
.y5_c00323{bottom:1077.670500px;}
.y4_c00323{bottom:1094.109000px;}
.y3_c00323{bottom:1110.547500px;}
.y2_c00323{bottom:1126.986000px;}
.y1_c00323{bottom:1159.863000px;}
.h3_c00323{height:35.190766px;}
.h2_c00323{height:36.007158px;}
.h4_c00323{height:52.332837px;}
.h0_c00323{height:1262.835000px;}
.h1_c00323{height:1263.000000px;}
.w0_c00323{width:892.920000px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:137.122500px;}
.x1_c00323{left:143.770500px;}
.x4_c00323{left:177.007500px;}
.x3_c00323{left:216.891000px;}
.x5_c00323{left:435.249000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls4_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.078221pt;}
.ls2_c00323{letter-spacing:0.087539pt;}
.ls1_c00323{letter-spacing:0.092873pt;}
.ls3_c00323{letter-spacing:23.724873pt;}
.ws0_c00323{word-spacing:-23.622682pt;}
.ws1_c00323{word-spacing:-23.544461pt;}
.ws2_c00323{word-spacing:0.000000pt;}
.ws8_c00323{word-spacing:0.023970pt;}
.ws9_c00323{word-spacing:0.039110pt;}
.ws6_c00323{word-spacing:0.041141pt;}
.ws3_c00323{word-spacing:0.050460pt;}
.ws5_c00323{word-spacing:0.065111pt;}
.ws7_c00323{word-spacing:0.074430pt;}
.ws4_c00323{word-spacing:0.180412pt;}
.wsb_c00323{word-spacing:0.189730pt;}
.wsa_c00323{word-spacing:0.195063pt;}
._5_c00323{width:0.925811pt;}
._3_c00323{width:47.362694pt;}
._0_c00323{width:70.985376pt;}
._2_c00323{width:94.608058pt;}
._1_c00323{width:118.624363pt;}
._4_c00323{width:165.493274pt;}
.fs0_c00323{font-size:39.110400pt;}
.fs1_c00323{font-size:53.133867pt;}
.y0_c00323{bottom:0.000000pt;}
.y30_c00323{bottom:39.333333pt;}
.y2f_c00323{bottom:271.172000pt;}
.y2e_c00323{bottom:285.784000pt;}
.y2d_c00323{bottom:300.396000pt;}
.y2c_c00323{bottom:315.008000pt;}
.y2b_c00323{bottom:329.620000pt;}
.y2a_c00323{bottom:344.230667pt;}
.y29_c00323{bottom:358.842667pt;}
.y28_c00323{bottom:373.454667pt;}
.y27_c00323{bottom:388.066667pt;}
.y26_c00323{bottom:402.678667pt;}
.y25_c00323{bottom:417.290667pt;}
.y24_c00323{bottom:446.514667pt;}
.y23_c00323{bottom:461.126667pt;}
.y22_c00323{bottom:475.738667pt;}
.y21_c00323{bottom:504.961333pt;}
.y20_c00323{bottom:519.573333pt;}
.y1f_c00323{bottom:534.185333pt;}
.y1e_c00323{bottom:548.797333pt;}
.y1d_c00323{bottom:563.409333pt;}
.y1c_c00323{bottom:578.021333pt;}
.y1b_c00323{bottom:592.633333pt;}
.y1a_c00323{bottom:607.245333pt;}
.y19_c00323{bottom:621.857333pt;}
.y18_c00323{bottom:636.469333pt;}
.y17_c00323{bottom:651.080000pt;}
.y16_c00323{bottom:665.692000pt;}
.y15_c00323{bottom:680.304000pt;}
.y14_c00323{bottom:694.916000pt;}
.y13_c00323{bottom:709.528000pt;}
.y12_c00323{bottom:724.140000pt;}
.y11_c00323{bottom:738.752000pt;}
.y10_c00323{bottom:753.364000pt;}
.yf_c00323{bottom:767.976000pt;}
.ye_c00323{bottom:811.810667pt;}
.yd_c00323{bottom:826.422667pt;}
.yc_c00323{bottom:841.034667pt;}
.yb_c00323{bottom:855.646667pt;}
.ya_c00323{bottom:870.258667pt;}
.y9_c00323{bottom:884.870667pt;}
.y8_c00323{bottom:899.482667pt;}
.y7_c00323{bottom:914.094667pt;}
.y6_c00323{bottom:943.317333pt;}
.y5_c00323{bottom:957.929333pt;}
.y4_c00323{bottom:972.541333pt;}
.y3_c00323{bottom:987.153333pt;}
.y2_c00323{bottom:1001.765333pt;}
.y1_c00323{bottom:1030.989333pt;}
.h3_c00323{height:31.280681pt;}
.h2_c00323{height:32.006363pt;}
.h4_c00323{height:46.518078pt;}
.h0_c00323{height:1122.520000pt;}
.h1_c00323{height:1122.666667pt;}
.w0_c00323{width:793.706667pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:121.886667pt;}
.x1_c00323{left:127.796000pt;}
.x4_c00323{left:157.340000pt;}
.x3_c00323{left:192.792000pt;}
.x5_c00323{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1006f4cdb296934eb1780998.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:0.893555;font-style:normal;font-weight:normal;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_039fd6d6f645714491acf9a9.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.083496;font-style:normal;font-weight:normal;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_649a16ab6e56ba21bfe8ca15.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:1.048828;font-style: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.000000px;}
.ls0_c00324{letter-spacing:0.087998px;}
.ls2_c00324{letter-spacing:0.098482px;}
.ls1_c00324{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00324{word-spacing:-33.713438px;}
.ws2_c00324{word-spacing:-26.575517px;}
.wse_c00324{word-spacing:-26.487518px;}
.ws5_c00324{word-spacing:-18.769538px;}
.ws4_c00324{word-spacing:-14.943900px;}
.ws7_c00324{word-spacing:-14.465695px;}
.wsa_c00324{word-spacing:-14.107042px;}
.wsb_c00324{word-spacing:-12.074671px;}
.ws9_c00324{word-spacing:-11.716018px;}
.ws8_c00324{word-spacing:-11.656242px;}
.ws1_c00324{word-spacing:-9.988424px;}
.ws3_c00324{word-spacing:-9.987499px;}
.ws6_c00324{word-spacing:-1.386144px;}
.ws12_c00324{word-spacing:0.000000px;}
.wsf_c00324{word-spacing:0.043999px;}
.ws15_c00324{word-spacing:0.056767px;}
.ws13_c00324{word-spacing:0.073250px;}
.ws14_c00324{word-spacing:0.083734px;}
.wsd_c00324{word-spacing:0.175997px;}
.ws16_c00324{word-spacing:0.202963px;}
.ws10_c00324{word-spacing:0.213446px;}
.ws11_c00324{word-spacing:0.219446px;}
.ws0_c00324{word-spacing:43.038600px;}
._2_c00324{margin-left:-3.376852px;}
._0_c00324{margin-left:-1.549390px;}
._5_c00324{width:1.005737px;}
._1_c00324{width:19.935816px;}
._3_c00324{width:23.790689px;}
._4_c00324{width:40.109428px;}
._7_c00324{width:53.283031px;}
._6_c00324{width:79.858548px;}
._8_c00324{width:133.452408px;}
.fc6_c00324{color:rgb(0,0,207);}
.fc5_c00324{color:rgb(79,153,5);}
.fc3_c00324{color:rgb(33,74,135);}
.fc2_c00324{color:rgb(143,89,3);}
.fc4_c00324{color:rgb(207,92,0);}
.fc1_c00324{color:rgb(6,69,173);}
.fc0_c00324{color:rgb(0,0,0);}
.fs2_c00324{font-size:43.999200px;}
.fs1_c00324{font-size:59.775600px;}
.fs0_c00324{font-size:86.077200px;}
.y0_c00324{bottom:0.000000px;}
.y20_c00324{bottom:44.250000px;}
.y1f_c00324{bottom:86.982000px;}
.y1e_c00324{bottom:103.420500px;}
.y1d_c00324{bottom:119.859000px;}
.y1c_c00324{bottom:136.297500px;}
.y1b_c00324{bottom:152.736000px;}
.y1a_c00324{bottom:169.174500px;}
.y19_c00324{bottom:185.613000px;}
.y18_c00324{bottom:202.051500px;}
.y17_c00324{bottom:218.490000px;}
.y16_c00324{bottom:234.927000px;}
.y15_c00324{bottom:251.365500px;}
.y14_c00324{bottom:267.804000px;}
.y13_c00324{bottom:284.242500px;}
.y12_c00324{bottom:300.681000px;}
.y11_c00324{bottom:317.119500px;}
.y10_c00324{bottom:349.996500px;}
.yf_c00324{bottom:366.435000px;}
.ye_c00324{bottom:415.749000px;}
.yd_c00324{bottom:432.187500px;}
.yc_c00324{bottom:448.252500px;}
.yb_c00324{bottom:493.890000px;}
.ya_c00324{bottom:511.822500px;}
.y9_c00324{bottom:529.756500px;}
.y8_c00324{bottom:547.689000px;}
.y7_c00324{bottom:565.621500px;}
.y6_c00324{bottom:583.554000px;}
.y5_c00324{bottom:610.633500px;}
.y4_c00324{bottom:637.714500px;}
.y3_c00324{bottom:664.794000px;}
.y2_c00324{bottom:691.873500px;}
.y1_c00324{bottom:734.407500px;}
.h5_c00324{height:35.190766px;}
.h6_c00324{height:36.007158px;}
.h3_c00324{height:40.511979px;}
.h4_c00324{height:52.332837px;}
.h2_c00324{height:58.337477px;}
.h0_c00324{height:1262.835000px;}
.h1_c00324{height:1263.000000px;}
.w0_c00324{width:892.920000px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:127.558500px;}
.x2_c00324{left:137.122500px;}
.x3_c00324{left:143.770500px;}
.x4_c00324{left:435.249000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls3_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.078221pt;}
.ls2_c00324{letter-spacing:0.087539pt;}
.ls1_c00324{letter-spacing:0.092873pt;}
.wsc_c00324{word-spacing:-29.967501pt;}
.ws2_c00324{word-spacing:-23.622682pt;}
.wse_c00324{word-spacing:-23.544461pt;}
.ws5_c00324{word-spacing:-16.684034pt;}
.ws4_c00324{word-spacing:-13.283467pt;}
.ws7_c00324{word-spacing:-12.858396pt;}
.wsa_c00324{word-spacing:-12.539593pt;}
.wsb_c00324{word-spacing:-10.733041pt;}
.ws9_c00324{word-spacing:-10.414238pt;}
.ws8_c00324{word-spacing:-10.361104pt;}
.ws1_c00324{word-spacing:-8.878599pt;}
.ws3_c00324{word-spacing:-8.877777pt;}
.ws6_c00324{word-spacing:-1.232128pt;}
.ws12_c00324{word-spacing:0.000000pt;}
.wsf_c00324{word-spacing:0.039110pt;}
.ws15_c00324{word-spacing:0.050460pt;}
.ws13_c00324{word-spacing:0.065111pt;}
.ws14_c00324{word-spacing:0.074430pt;}
.wsd_c00324{word-spacing:0.156442pt;}
.ws16_c00324{word-spacing:0.180412pt;}
.ws10_c00324{word-spacing:0.189730pt;}
.ws11_c00324{word-spacing:0.195063pt;}
.ws0_c00324{word-spacing:38.256533pt;}
._2_c00324{margin-left:-3.001646pt;}
._0_c00324{margin-left:-1.377235pt;}
._5_c00324{width:0.893988pt;}
._1_c00324{width:17.720725pt;}
._3_c00324{width:21.147279pt;}
._4_c00324{width:35.652825pt;}
._7_c00324{width:47.362694pt;}
._6_c00324{width:70.985376pt;}
._8_c00324{width:118.624363pt;}
.fs2_c00324{font-size:39.110400pt;}
.fs1_c00324{font-size:53.133867pt;}
.fs0_c00324{font-size:76.513067pt;}
.y0_c00324{bottom:0.000000pt;}
.y20_c00324{bottom:39.333333pt;}
.y1f_c00324{bottom:77.317333pt;}
.y1e_c00324{bottom:91.929333pt;}
.y1d_c00324{bottom:106.541333pt;}
.y1c_c00324{bottom:121.153333pt;}
.y1b_c00324{bottom:135.765333pt;}
.y1a_c00324{bottom:150.377333pt;}
.y19_c00324{bottom:164.989333pt;}
.y18_c00324{bottom:179.601333pt;}
.y17_c00324{bottom:194.213333pt;}
.y16_c00324{bottom:208.824000pt;}
.y15_c00324{bottom:223.436000pt;}
.y14_c00324{bottom:238.048000pt;}
.y13_c00324{bottom:252.660000pt;}
.y12_c00324{bottom:267.272000pt;}
.y11_c00324{bottom:281.884000pt;}
.y10_c00324{bottom:311.108000pt;}
.yf_c00324{bottom:325.720000pt;}
.ye_c00324{bottom:369.554667pt;}
.yd_c00324{bottom:384.166667pt;}
.yc_c00324{bottom:398.446667pt;}
.yb_c00324{bottom:439.013333pt;}
.ya_c00324{bottom:454.953333pt;}
.y9_c00324{bottom:470.894667pt;}
.y8_c00324{bottom:486.834667pt;}
.y7_c00324{bottom:502.774667pt;}
.y6_c00324{bottom:518.714667pt;}
.y5_c00324{bottom:542.785333pt;}
.y4_c00324{bottom:566.857333pt;}
.y3_c00324{bottom:590.928000pt;}
.y2_c00324{bottom:614.998667pt;}
.y1_c00324{bottom:652.806667pt;}
.h5_c00324{height:31.280681pt;}
.h6_c00324{height:32.006363pt;}
.h3_c00324{height:36.010648pt;}
.h4_c00324{height:46.518078pt;}
.h2_c00324{height:51.855535pt;}
.h0_c00324{height:1122.520000pt;}
.h1_c00324{height:1122.666667pt;}
.w0_c00324{width:793.706667pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:113.385333pt;}
.x2_c00324{left:121.886667pt;}
.x3_c00324{left:127.796000pt;}
.x4_c00324{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c4d8d61cbfd50fd9b491fbf.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.048828;font-style:normal;font-weight:normal;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_19bc47df79e6ca7d0d72d93c.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.014648;font-style:normal;font-weight:normal;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_95bda734940be5b9c62f551f.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_400d37239d7a6366f2ea434b.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.102051;font-style: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;}
.ls4_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.087998px;}
.ls2_c00325{letter-spacing:0.098482px;}
.ls3_c00325{letter-spacing:0.104482px;}
.ls1_c00325{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00325{word-spacing:-26.575517px;}
.ws4_c00325{word-spacing:-26.487518px;}
.wsa_c00325{word-spacing:-18.769538px;}
.wsc_c00325{word-spacing:-16.019861px;}
.ws9_c00325{word-spacing:-14.943900px;}
.wsf_c00325{word-spacing:-14.107042px;}
.ws10_c00325{word-spacing:-12.074671px;}
.wse_c00325{word-spacing:-11.716018px;}
.wsd_c00325{word-spacing:-11.656242px;}
.ws7_c00325{word-spacing:-9.988424px;}
.ws8_c00325{word-spacing:-9.987499px;}
.wsb_c00325{word-spacing:-4.536144px;}
.ws3_c00325{word-spacing:0.000000px;}
.ws0_c00325{word-spacing:0.043999px;}
.ws5_c00325{word-spacing:0.213446px;}
.ws1_c00325{word-spacing:0.219446px;}
.ws6_c00325{word-spacing:43.038600px;}
._3_c00325{margin-left:-3.376852px;}
._1_c00325{margin-left:-1.549390px;}
._0_c00325{width:1.041538px;}
._2_c00325{width:19.935816px;}
._4_c00325{width:23.790689px;}
._5_c00325{width:40.109428px;}
.fc5_c00325{color:rgb(79,153,5);}
.fc4_c00325{color:rgb(143,89,3);}
.fc3_c00325{color:rgb(0,0,0);}
.fc6_c00325{color:rgb(6,69,173);}
.fc2_c00325{color:rgb(207,92,0);}
.fc1_c00325{color:rgb(0,0,207);}
.fc0_c00325{color:rgb(33,74,135);}
.fs0_c00325{font-size:43.999200px;}
.fs2_c00325{font-size:59.775600px;}
.fs1_c00325{font-size:86.077200px;}
.y0_c00325{bottom:0.000000px;}
.y20_c00325{bottom:44.250000px;}
.y1f_c00325{bottom:82.051500px;}
.y1e_c00325{bottom:99.984000px;}
.y1d_c00325{bottom:117.916500px;}
.y1c_c00325{bottom:135.849000px;}
.y1b_c00325{bottom:162.501000px;}
.y1a_c00325{bottom:189.151500px;}
.y19_c00325{bottom:215.802000px;}
.y18_c00325{bottom:242.454000px;}
.y17_c00325{bottom:284.478000px;}
.y16_c00325{bottom:748.903500px;}
.y15_c00325{bottom:765.342000px;}
.y14_c00325{bottom:781.780500px;}
.y13_c00325{bottom:798.219000px;}
.y12_c00325{bottom:814.657500px;}
.y11_c00325{bottom:831.096000px;}
.y10_c00325{bottom:847.534500px;}
.yf_c00325{bottom:863.973000px;}
.ye_c00325{bottom:880.411500px;}
.yd_c00325{bottom:896.848500px;}
.yc_c00325{bottom:913.287000px;}
.yb_c00325{bottom:946.164000px;}
.ya_c00325{bottom:962.602500px;}
.y9_c00325{bottom:979.041000px;}
.y8_c00325{bottom:1011.918000px;}
.y7_c00325{bottom:1028.356500px;}
.y6_c00325{bottom:1044.795000px;}
.y5_c00325{bottom:1061.232000px;}
.y4_c00325{bottom:1077.670500px;}
.y3_c00325{bottom:1094.109000px;}
.y2_c00325{bottom:1110.547500px;}
.y1_c00325{bottom:1159.863000px;}
.h3_c00325{height:35.190766px;}
.h2_c00325{height:36.007158px;}
.h5_c00325{height:40.511979px;}
.h6_c00325{height:52.332837px;}
.h4_c00325{height:58.337477px;}
.h0_c00325{height:1262.835000px;}
.h1_c00325{height:1263.000000px;}
.w0_c00325{width:892.920000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x4_c00325{left:127.558500px;}
.x2_c00325{left:137.122500px;}
.x1_c00325{left:143.770500px;}
.x3_c00325{left:177.007500px;}
.x5_c00325{left:435.249000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls4_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.078221pt;}
.ls2_c00325{letter-spacing:0.087539pt;}
.ls3_c00325{letter-spacing:0.092873pt;}
.ls1_c00325{letter-spacing:23.724873pt;}
.ws2_c00325{word-spacing:-23.622682pt;}
.ws4_c00325{word-spacing:-23.544461pt;}
.wsa_c00325{word-spacing:-16.684034pt;}
.wsc_c00325{word-spacing:-14.239876pt;}
.ws9_c00325{word-spacing:-13.283467pt;}
.wsf_c00325{word-spacing:-12.539593pt;}
.ws10_c00325{word-spacing:-10.733041pt;}
.wse_c00325{word-spacing:-10.414238pt;}
.wsd_c00325{word-spacing:-10.361104pt;}
.ws7_c00325{word-spacing:-8.878599pt;}
.ws8_c00325{word-spacing:-8.877777pt;}
.wsb_c00325{word-spacing:-4.032128pt;}
.ws3_c00325{word-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.039110pt;}
.ws5_c00325{word-spacing:0.189730pt;}
.ws1_c00325{word-spacing:0.195063pt;}
.ws6_c00325{word-spacing:38.256533pt;}
._3_c00325{margin-left:-3.001646pt;}
._1_c00325{margin-left:-1.377235pt;}
._0_c00325{width:0.925811pt;}
._2_c00325{width:17.720725pt;}
._4_c00325{width:21.147279pt;}
._5_c00325{width:35.652825pt;}
.fs0_c00325{font-size:39.110400pt;}
.fs2_c00325{font-size:53.133867pt;}
.fs1_c00325{font-size:76.513067pt;}
.y0_c00325{bottom:0.000000pt;}
.y20_c00325{bottom:39.333333pt;}
.y1f_c00325{bottom:72.934667pt;}
.y1e_c00325{bottom:88.874667pt;}
.y1d_c00325{bottom:104.814667pt;}
.y1c_c00325{bottom:120.754667pt;}
.y1b_c00325{bottom:144.445333pt;}
.y1a_c00325{bottom:168.134667pt;}
.y19_c00325{bottom:191.824000pt;}
.y18_c00325{bottom:215.514667pt;}
.y17_c00325{bottom:252.869333pt;}
.y16_c00325{bottom:665.692000pt;}
.y15_c00325{bottom:680.304000pt;}
.y14_c00325{bottom:694.916000pt;}
.y13_c00325{bottom:709.528000pt;}
.y12_c00325{bottom:724.140000pt;}
.y11_c00325{bottom:738.752000pt;}
.y10_c00325{bottom:753.364000pt;}
.yf_c00325{bottom:767.976000pt;}
.ye_c00325{bottom:782.588000pt;}
.yd_c00325{bottom:797.198667pt;}
.yc_c00325{bottom:811.810667pt;}
.yb_c00325{bottom:841.034667pt;}
.ya_c00325{bottom:855.646667pt;}
.y9_c00325{bottom:870.258667pt;}
.y8_c00325{bottom:899.482667pt;}
.y7_c00325{bottom:914.094667pt;}
.y6_c00325{bottom:928.706667pt;}
.y5_c00325{bottom:943.317333pt;}
.y4_c00325{bottom:957.929333pt;}
.y3_c00325{bottom:972.541333pt;}
.y2_c00325{bottom:987.153333pt;}
.y1_c00325{bottom:1030.989333pt;}
.h3_c00325{height:31.280681pt;}
.h2_c00325{height:32.006363pt;}
.h5_c00325{height:36.010648pt;}
.h6_c00325{height:46.518078pt;}
.h4_c00325{height:51.855535pt;}
.h0_c00325{height:1122.520000pt;}
.h1_c00325{height:1122.666667pt;}
.w0_c00325{width:793.706667pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x4_c00325{left:113.385333pt;}
.x2_c00325{left:121.886667pt;}
.x1_c00325{left:127.796000pt;}
.x3_c00325{left:157.340000pt;}
.x5_c00325{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a30a752540642071ce98404.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.102051;font-style:normal;font-weight:normal;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_2cb5c3751e462da9a7455dea.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_0efce50f9ff75ac1b4c1f30b.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls4_c00326{letter-spacing:0.000000px;}
.ls1_c00326{letter-spacing:0.087998px;}
.ls2_c00326{letter-spacing:0.098482px;}
.ls0_c00326{letter-spacing:0.104482px;}
.ls3_c00326{letter-spacing:26.690482px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00326{word-spacing:-33.713438px;}
.ws4_c00326{word-spacing:-26.575517px;}
.ws3_c00326{word-spacing:-26.487518px;}
.ws0_c00326{word-spacing:-18.769538px;}
.ws8_c00326{word-spacing:0.000000px;}
.ws5_c00326{word-spacing:0.043999px;}
.wsb_c00326{word-spacing:0.056767px;}
.ws9_c00326{word-spacing:0.073250px;}
.wsa_c00326{word-spacing:0.083734px;}
.ws2_c00326{word-spacing:0.175997px;}
.wsc_c00326{word-spacing:0.202963px;}
.ws6_c00326{word-spacing:0.213446px;}
.ws7_c00326{word-spacing:0.219446px;}
._0_c00326{margin-left:-3.825638px;}
._1_c00326{width:1.005737px;}
._3_c00326{width:53.283031px;}
._2_c00326{width:79.858548px;}
._5_c00326{width:106.654061px;}
._4_c00326{width:133.452408px;}
.fc5_c00326{color:rgb(0,0,207);}
.fc4_c00326{color:rgb(79,153,5);}
.fc3_c00326{color:rgb(207,92,0);}
.fc2_c00326{color:rgb(33,74,135);}
.fc1_c00326{color:rgb(143,89,3);}
.fc0_c00326{color:rgb(0,0,0);}
.fs1_c00326{font-size:43.999200px;}
.fs0_c00326{font-size:59.775600px;}
.y0_c00326{bottom:0.000000px;}
.y2d_c00326{bottom:44.250000px;}
.y2c_c00326{bottom:96.919500px;}
.y2b_c00326{bottom:113.358000px;}
.y2a_c00326{bottom:129.796500px;}
.y29_c00326{bottom:146.235000px;}
.y28_c00326{bottom:162.673500px;}
.y27_c00326{bottom:179.112000px;}
.y26_c00326{bottom:195.550500px;}
.y25_c00326{bottom:211.989000px;}
.y24_c00326{bottom:228.427500px;}
.y23_c00326{bottom:244.866000px;}
.y22_c00326{bottom:261.304500px;}
.y21_c00326{bottom:294.180000px;}
.y20_c00326{bottom:310.618500px;}
.y1f_c00326{bottom:327.057000px;}
.y1e_c00326{bottom:359.934000px;}
.y1d_c00326{bottom:376.372500px;}
.y1c_c00326{bottom:392.811000px;}
.y1b_c00326{bottom:409.249500px;}
.y1a_c00326{bottom:425.688000px;}
.y19_c00326{bottom:442.125000px;}
.y18_c00326{bottom:458.563500px;}
.y17_c00326{bottom:507.879000px;}
.y16_c00326{bottom:524.317500px;}
.y15_c00326{bottom:540.756000px;}
.y14_c00326{bottom:557.194500px;}
.y13_c00326{bottom:573.633000px;}
.y12_c00326{bottom:590.071500px;}
.y11_c00326{bottom:606.508500px;}
.y10_c00326{bottom:622.947000px;}
.yf_c00326{bottom:639.385500px;}
.ye_c00326{bottom:655.824000px;}
.yd_c00326{bottom:672.262500px;}
.yc_c00326{bottom:688.701000px;}
.yb_c00326{bottom:705.139500px;}
.ya_c00326{bottom:721.578000px;}
.y9_c00326{bottom:738.016500px;}
.y8_c00326{bottom:754.455000px;}
.y7_c00326{bottom:787.330500px;}
.y6_c00326{bottom:803.769000px;}
.y5_c00326{bottom:853.084500px;}
.y4_c00326{bottom:869.523000px;}
.y3_c00326{bottom:885.588000px;}
.y2_c00326{bottom:1141.930500px;}
.y1_c00326{bottom:1159.863000px;}
.h3_c00326{height:35.190766px;}
.h4_c00326{height:36.007158px;}
.h2_c00326{height:52.332837px;}
.h0_c00326{height:1262.835000px;}
.h1_c00326{height:1263.000000px;}
.w0_c00326{width:892.920000px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:127.558500px;}
.x2_c00326{left:137.122500px;}
.x3_c00326{left:143.770500px;}
.x4_c00326{left:177.007500px;}
.x5_c00326{left:435.249000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls4_c00326{letter-spacing:0.000000pt;}
.ls1_c00326{letter-spacing:0.078221pt;}
.ls2_c00326{letter-spacing:0.087539pt;}
.ls0_c00326{letter-spacing:0.092873pt;}
.ls3_c00326{letter-spacing:23.724873pt;}
.ws1_c00326{word-spacing:-29.967501pt;}
.ws4_c00326{word-spacing:-23.622682pt;}
.ws3_c00326{word-spacing:-23.544461pt;}
.ws0_c00326{word-spacing:-16.684034pt;}
.ws8_c00326{word-spacing:0.000000pt;}
.ws5_c00326{word-spacing:0.039110pt;}
.wsb_c00326{word-spacing:0.050460pt;}
.ws9_c00326{word-spacing:0.065111pt;}
.wsa_c00326{word-spacing:0.074430pt;}
.ws2_c00326{word-spacing:0.156442pt;}
.wsc_c00326{word-spacing:0.180412pt;}
.ws6_c00326{word-spacing:0.189730pt;}
.ws7_c00326{word-spacing:0.195063pt;}
._0_c00326{margin-left:-3.400567pt;}
._1_c00326{width:0.893988pt;}
._3_c00326{width:47.362694pt;}
._2_c00326{width:70.985376pt;}
._5_c00326{width:94.803610pt;}
._4_c00326{width:118.624363pt;}
.fs1_c00326{font-size:39.110400pt;}
.fs0_c00326{font-size:53.133867pt;}
.y0_c00326{bottom:0.000000pt;}
.y2d_c00326{bottom:39.333333pt;}
.y2c_c00326{bottom:86.150667pt;}
.y2b_c00326{bottom:100.762667pt;}
.y2a_c00326{bottom:115.374667pt;}
.y29_c00326{bottom:129.986667pt;}
.y28_c00326{bottom:144.598667pt;}
.y27_c00326{bottom:159.210667pt;}
.y26_c00326{bottom:173.822667pt;}
.y25_c00326{bottom:188.434667pt;}
.y24_c00326{bottom:203.046667pt;}
.y23_c00326{bottom:217.658667pt;}
.y22_c00326{bottom:232.270667pt;}
.y21_c00326{bottom:261.493333pt;}
.y20_c00326{bottom:276.105333pt;}
.y1f_c00326{bottom:290.717333pt;}
.y1e_c00326{bottom:319.941333pt;}
.y1d_c00326{bottom:334.553333pt;}
.y1c_c00326{bottom:349.165333pt;}
.y1b_c00326{bottom:363.777333pt;}
.y1a_c00326{bottom:378.389333pt;}
.y19_c00326{bottom:393.000000pt;}
.y18_c00326{bottom:407.612000pt;}
.y17_c00326{bottom:451.448000pt;}
.y16_c00326{bottom:466.060000pt;}
.y15_c00326{bottom:480.672000pt;}
.y14_c00326{bottom:495.284000pt;}
.y13_c00326{bottom:509.896000pt;}
.y12_c00326{bottom:524.508000pt;}
.y11_c00326{bottom:539.118667pt;}
.y10_c00326{bottom:553.730667pt;}
.yf_c00326{bottom:568.342667pt;}
.ye_c00326{bottom:582.954667pt;}
.yd_c00326{bottom:597.566667pt;}
.yc_c00326{bottom:612.178667pt;}
.yb_c00326{bottom:626.790667pt;}
.ya_c00326{bottom:641.402667pt;}
.y9_c00326{bottom:656.014667pt;}
.y8_c00326{bottom:670.626667pt;}
.y7_c00326{bottom:699.849333pt;}
.y6_c00326{bottom:714.461333pt;}
.y5_c00326{bottom:758.297333pt;}
.y4_c00326{bottom:772.909333pt;}
.y3_c00326{bottom:787.189333pt;}
.y2_c00326{bottom:1015.049333pt;}
.y1_c00326{bottom:1030.989333pt;}
.h3_c00326{height:31.280681pt;}
.h4_c00326{height:32.006363pt;}
.h2_c00326{height:46.518078pt;}
.h0_c00326{height:1122.520000pt;}
.h1_c00326{height:1122.666667pt;}
.w0_c00326{width:793.706667pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:113.385333pt;}
.x2_c00326{left:121.886667pt;}
.x3_c00326{left:127.796000pt;}
.x4_c00326{left:157.340000pt;}
.x5_c00326{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9abbe469d3e54b8c3ae4a89.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:0.893555;font-style:normal;font-weight:normal;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_671df7167e0bf9647f4968a4.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.083496;font-style:normal;font-weight:normal;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_b0ac562a44e510e68375e80a.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.048828;font-style: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;}
.ls3_c00327{letter-spacing:0.000000px;}
.ls0_c00327{letter-spacing:0.087998px;}
.ls2_c00327{letter-spacing:0.098482px;}
.ls1_c00327{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00327{word-spacing:-33.713438px;}
.ws2_c00327{word-spacing:-26.575517px;}
.wse_c00327{word-spacing:-26.487518px;}
.ws5_c00327{word-spacing:-18.769538px;}
.ws7_c00327{word-spacing:-16.019861px;}
.ws4_c00327{word-spacing:-14.943900px;}
.wsa_c00327{word-spacing:-14.107042px;}
.wsb_c00327{word-spacing:-12.074671px;}
.ws9_c00327{word-spacing:-11.716018px;}
.ws8_c00327{word-spacing:-11.656242px;}
.ws1_c00327{word-spacing:-9.988424px;}
.ws3_c00327{word-spacing:-9.987499px;}
.ws6_c00327{word-spacing:-4.536144px;}
.ws12_c00327{word-spacing:0.000000px;}
.wsf_c00327{word-spacing:0.043999px;}
.ws15_c00327{word-spacing:0.056767px;}
.ws13_c00327{word-spacing:0.073250px;}
.ws14_c00327{word-spacing:0.083734px;}
.wsd_c00327{word-spacing:0.175997px;}
.ws16_c00327{word-spacing:0.202963px;}
.ws10_c00327{word-spacing:0.213446px;}
.ws11_c00327{word-spacing:0.219446px;}
.ws0_c00327{word-spacing:43.038600px;}
._2_c00327{margin-left:-3.376852px;}
._0_c00327{margin-left:-1.549390px;}
._5_c00327{width:1.005737px;}
._1_c00327{width:19.935816px;}
._3_c00327{width:23.790689px;}
._4_c00327{width:40.109428px;}
._7_c00327{width:53.283031px;}
._6_c00327{width:79.858548px;}
._8_c00327{width:133.452408px;}
.fc6_c00327{color:rgb(0,0,207);}
.fc5_c00327{color:rgb(79,153,5);}
.fc3_c00327{color:rgb(33,74,135);}
.fc2_c00327{color:rgb(143,89,3);}
.fc4_c00327{color:rgb(207,92,0);}
.fc1_c00327{color:rgb(6,69,173);}
.fc0_c00327{color:rgb(0,0,0);}
.fs2_c00327{font-size:43.999200px;}
.fs1_c00327{font-size:59.775600px;}
.fs0_c00327{font-size:86.077200px;}
.y0_c00327{bottom:0.000000px;}
.y20_c00327{bottom:44.250000px;}
.y1f_c00327{bottom:86.982000px;}
.y1e_c00327{bottom:103.420500px;}
.y1d_c00327{bottom:119.859000px;}
.y1c_c00327{bottom:136.297500px;}
.y1b_c00327{bottom:152.736000px;}
.y1a_c00327{bottom:169.174500px;}
.y19_c00327{bottom:185.613000px;}
.y18_c00327{bottom:202.051500px;}
.y17_c00327{bottom:218.490000px;}
.y16_c00327{bottom:234.927000px;}
.y15_c00327{bottom:251.365500px;}
.y14_c00327{bottom:267.804000px;}
.y13_c00327{bottom:284.242500px;}
.y12_c00327{bottom:300.681000px;}
.y11_c00327{bottom:317.119500px;}
.y10_c00327{bottom:349.996500px;}
.yf_c00327{bottom:366.435000px;}
.ye_c00327{bottom:415.749000px;}
.yd_c00327{bottom:432.187500px;}
.yc_c00327{bottom:448.252500px;}
.yb_c00327{bottom:493.890000px;}
.ya_c00327{bottom:511.822500px;}
.y9_c00327{bottom:529.756500px;}
.y8_c00327{bottom:547.689000px;}
.y7_c00327{bottom:565.621500px;}
.y6_c00327{bottom:583.554000px;}
.y5_c00327{bottom:610.633500px;}
.y4_c00327{bottom:637.714500px;}
.y3_c00327{bottom:664.794000px;}
.y2_c00327{bottom:691.873500px;}
.y1_c00327{bottom:734.407500px;}
.h5_c00327{height:35.190766px;}
.h6_c00327{height:36.007158px;}
.h3_c00327{height:40.511979px;}
.h4_c00327{height:52.332837px;}
.h2_c00327{height:58.337477px;}
.h0_c00327{height:1262.835000px;}
.h1_c00327{height:1263.000000px;}
.w0_c00327{width:892.920000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:127.558500px;}
.x2_c00327{left:137.122500px;}
.x3_c00327{left:143.770500px;}
.x4_c00327{left:435.249000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls3_c00327{letter-spacing:0.000000pt;}
.ls0_c00327{letter-spacing:0.078221pt;}
.ls2_c00327{letter-spacing:0.087539pt;}
.ls1_c00327{letter-spacing:0.092873pt;}
.wsc_c00327{word-spacing:-29.967501pt;}
.ws2_c00327{word-spacing:-23.622682pt;}
.wse_c00327{word-spacing:-23.544461pt;}
.ws5_c00327{word-spacing:-16.684034pt;}
.ws7_c00327{word-spacing:-14.239876pt;}
.ws4_c00327{word-spacing:-13.283467pt;}
.wsa_c00327{word-spacing:-12.539593pt;}
.wsb_c00327{word-spacing:-10.733041pt;}
.ws9_c00327{word-spacing:-10.414238pt;}
.ws8_c00327{word-spacing:-10.361104pt;}
.ws1_c00327{word-spacing:-8.878599pt;}
.ws3_c00327{word-spacing:-8.877777pt;}
.ws6_c00327{word-spacing:-4.032128pt;}
.ws12_c00327{word-spacing:0.000000pt;}
.wsf_c00327{word-spacing:0.039110pt;}
.ws15_c00327{word-spacing:0.050460pt;}
.ws13_c00327{word-spacing:0.065111pt;}
.ws14_c00327{word-spacing:0.074430pt;}
.wsd_c00327{word-spacing:0.156442pt;}
.ws16_c00327{word-spacing:0.180412pt;}
.ws10_c00327{word-spacing:0.189730pt;}
.ws11_c00327{word-spacing:0.195063pt;}
.ws0_c00327{word-spacing:38.256533pt;}
._2_c00327{margin-left:-3.001646pt;}
._0_c00327{margin-left:-1.377235pt;}
._5_c00327{width:0.893988pt;}
._1_c00327{width:17.720725pt;}
._3_c00327{width:21.147279pt;}
._4_c00327{width:35.652825pt;}
._7_c00327{width:47.362694pt;}
._6_c00327{width:70.985376pt;}
._8_c00327{width:118.624363pt;}
.fs2_c00327{font-size:39.110400pt;}
.fs1_c00327{font-size:53.133867pt;}
.fs0_c00327{font-size:76.513067pt;}
.y0_c00327{bottom:0.000000pt;}
.y20_c00327{bottom:39.333333pt;}
.y1f_c00327{bottom:77.317333pt;}
.y1e_c00327{bottom:91.929333pt;}
.y1d_c00327{bottom:106.541333pt;}
.y1c_c00327{bottom:121.153333pt;}
.y1b_c00327{bottom:135.765333pt;}
.y1a_c00327{bottom:150.377333pt;}
.y19_c00327{bottom:164.989333pt;}
.y18_c00327{bottom:179.601333pt;}
.y17_c00327{bottom:194.213333pt;}
.y16_c00327{bottom:208.824000pt;}
.y15_c00327{bottom:223.436000pt;}
.y14_c00327{bottom:238.048000pt;}
.y13_c00327{bottom:252.660000pt;}
.y12_c00327{bottom:267.272000pt;}
.y11_c00327{bottom:281.884000pt;}
.y10_c00327{bottom:311.108000pt;}
.yf_c00327{bottom:325.720000pt;}
.ye_c00327{bottom:369.554667pt;}
.yd_c00327{bottom:384.166667pt;}
.yc_c00327{bottom:398.446667pt;}
.yb_c00327{bottom:439.013333pt;}
.ya_c00327{bottom:454.953333pt;}
.y9_c00327{bottom:470.894667pt;}
.y8_c00327{bottom:486.834667pt;}
.y7_c00327{bottom:502.774667pt;}
.y6_c00327{bottom:518.714667pt;}
.y5_c00327{bottom:542.785333pt;}
.y4_c00327{bottom:566.857333pt;}
.y3_c00327{bottom:590.928000pt;}
.y2_c00327{bottom:614.998667pt;}
.y1_c00327{bottom:652.806667pt;}
.h5_c00327{height:31.280681pt;}
.h6_c00327{height:32.006363pt;}
.h3_c00327{height:36.010648pt;}
.h4_c00327{height:46.518078pt;}
.h2_c00327{height:51.855535pt;}
.h0_c00327{height:1122.520000pt;}
.h1_c00327{height:1122.666667pt;}
.w0_c00327{width:793.706667pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:113.385333pt;}
.x2_c00327{left:121.886667pt;}
.x3_c00327{left:127.796000pt;}
.x4_c00327{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af647cbc3379de7f74e6815a.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_f1b0850d5bed8e782c5f3df6.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_b7672051d60bf00a4f4e45d1.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_38b47dd5669b057a296d68fc.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.102051;font-style: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;}
.ls4_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:0.087998px;}
.ls2_c00328{letter-spacing:0.098482px;}
.ls3_c00328{letter-spacing:0.104482px;}
.ls1_c00328{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00328{word-spacing:-26.575517px;}
.ws4_c00328{word-spacing:-26.487518px;}
.wsa_c00328{word-spacing:-18.769538px;}
.wsc_c00328{word-spacing:-17.633802px;}
.ws9_c00328{word-spacing:-14.943900px;}
.wsf_c00328{word-spacing:-14.107042px;}
.ws10_c00328{word-spacing:-12.074671px;}
.wse_c00328{word-spacing:-11.716018px;}
.wsd_c00328{word-spacing:-11.656242px;}
.ws7_c00328{word-spacing:-9.988424px;}
.ws8_c00328{word-spacing:-9.987499px;}
.wsb_c00328{word-spacing:-7.680144px;}
.ws3_c00328{word-spacing:0.000000px;}
.ws0_c00328{word-spacing:0.043999px;}
.ws5_c00328{word-spacing:0.213446px;}
.ws1_c00328{word-spacing:0.219446px;}
.ws6_c00328{word-spacing:43.038600px;}
._4_c00328{margin-left:-3.376852px;}
._2_c00328{margin-left:-1.549390px;}
._1_c00328{width:1.041538px;}
._3_c00328{width:19.935816px;}
._5_c00328{width:23.790689px;}
._6_c00328{width:40.109428px;}
._0_c00328{width:106.654061px;}
.fc5_c00328{color:rgb(79,153,5);}
.fc4_c00328{color:rgb(143,89,3);}
.fc3_c00328{color:rgb(0,0,0);}
.fc6_c00328{color:rgb(6,69,173);}
.fc2_c00328{color:rgb(207,92,0);}
.fc1_c00328{color:rgb(0,0,207);}
.fc0_c00328{color:rgb(33,74,135);}
.fs0_c00328{font-size:43.999200px;}
.fs2_c00328{font-size:59.775600px;}
.fs1_c00328{font-size:86.077200px;}
.y0_c00328{bottom:0.000000px;}
.y20_c00328{bottom:44.250000px;}
.y1f_c00328{bottom:82.051500px;}
.y1e_c00328{bottom:99.984000px;}
.y1d_c00328{bottom:117.916500px;}
.y1c_c00328{bottom:135.849000px;}
.y1b_c00328{bottom:162.501000px;}
.y1a_c00328{bottom:189.151500px;}
.y19_c00328{bottom:215.802000px;}
.y18_c00328{bottom:242.454000px;}
.y17_c00328{bottom:284.478000px;}
.y16_c00328{bottom:748.903500px;}
.y15_c00328{bottom:765.342000px;}
.y14_c00328{bottom:781.780500px;}
.y13_c00328{bottom:798.219000px;}
.y12_c00328{bottom:814.657500px;}
.y11_c00328{bottom:831.096000px;}
.y10_c00328{bottom:847.534500px;}
.yf_c00328{bottom:863.973000px;}
.ye_c00328{bottom:880.411500px;}
.yd_c00328{bottom:896.848500px;}
.yc_c00328{bottom:913.287000px;}
.yb_c00328{bottom:946.164000px;}
.ya_c00328{bottom:962.602500px;}
.y9_c00328{bottom:979.041000px;}
.y8_c00328{bottom:1011.918000px;}
.y7_c00328{bottom:1028.356500px;}
.y6_c00328{bottom:1044.795000px;}
.y5_c00328{bottom:1061.232000px;}
.y4_c00328{bottom:1077.670500px;}
.y3_c00328{bottom:1094.109000px;}
.y2_c00328{bottom:1110.547500px;}
.y1_c00328{bottom:1159.863000px;}
.h3_c00328{height:35.190766px;}
.h2_c00328{height:36.007158px;}
.h5_c00328{height:40.511979px;}
.h6_c00328{height:52.332837px;}
.h4_c00328{height:58.337477px;}
.h0_c00328{height:1262.835000px;}
.h1_c00328{height:1263.000000px;}
.w0_c00328{width:892.920000px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x4_c00328{left:127.558500px;}
.x2_c00328{left:137.122500px;}
.x1_c00328{left:143.770500px;}
.x3_c00328{left:177.007500px;}
.x5_c00328{left:435.249000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls4_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:0.078221pt;}
.ls2_c00328{letter-spacing:0.087539pt;}
.ls3_c00328{letter-spacing:0.092873pt;}
.ls1_c00328{letter-spacing:23.724873pt;}
.ws2_c00328{word-spacing:-23.622682pt;}
.ws4_c00328{word-spacing:-23.544461pt;}
.wsa_c00328{word-spacing:-16.684034pt;}
.wsc_c00328{word-spacing:-15.674491pt;}
.ws9_c00328{word-spacing:-13.283467pt;}
.wsf_c00328{word-spacing:-12.539593pt;}
.ws10_c00328{word-spacing:-10.733041pt;}
.wse_c00328{word-spacing:-10.414238pt;}
.wsd_c00328{word-spacing:-10.361104pt;}
.ws7_c00328{word-spacing:-8.878599pt;}
.ws8_c00328{word-spacing:-8.877777pt;}
.wsb_c00328{word-spacing:-6.826795pt;}
.ws3_c00328{word-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.039110pt;}
.ws5_c00328{word-spacing:0.189730pt;}
.ws1_c00328{word-spacing:0.195063pt;}
.ws6_c00328{word-spacing:38.256533pt;}
._4_c00328{margin-left:-3.001646pt;}
._2_c00328{margin-left:-1.377235pt;}
._1_c00328{width:0.925811pt;}
._3_c00328{width:17.720725pt;}
._5_c00328{width:21.147279pt;}
._6_c00328{width:35.652825pt;}
._0_c00328{width:94.803610pt;}
.fs0_c00328{font-size:39.110400pt;}
.fs2_c00328{font-size:53.133867pt;}
.fs1_c00328{font-size:76.513067pt;}
.y0_c00328{bottom:0.000000pt;}
.y20_c00328{bottom:39.333333pt;}
.y1f_c00328{bottom:72.934667pt;}
.y1e_c00328{bottom:88.874667pt;}
.y1d_c00328{bottom:104.814667pt;}
.y1c_c00328{bottom:120.754667pt;}
.y1b_c00328{bottom:144.445333pt;}
.y1a_c00328{bottom:168.134667pt;}
.y19_c00328{bottom:191.824000pt;}
.y18_c00328{bottom:215.514667pt;}
.y17_c00328{bottom:252.869333pt;}
.y16_c00328{bottom:665.692000pt;}
.y15_c00328{bottom:680.304000pt;}
.y14_c00328{bottom:694.916000pt;}
.y13_c00328{bottom:709.528000pt;}
.y12_c00328{bottom:724.140000pt;}
.y11_c00328{bottom:738.752000pt;}
.y10_c00328{bottom:753.364000pt;}
.yf_c00328{bottom:767.976000pt;}
.ye_c00328{bottom:782.588000pt;}
.yd_c00328{bottom:797.198667pt;}
.yc_c00328{bottom:811.810667pt;}
.yb_c00328{bottom:841.034667pt;}
.ya_c00328{bottom:855.646667pt;}
.y9_c00328{bottom:870.258667pt;}
.y8_c00328{bottom:899.482667pt;}
.y7_c00328{bottom:914.094667pt;}
.y6_c00328{bottom:928.706667pt;}
.y5_c00328{bottom:943.317333pt;}
.y4_c00328{bottom:957.929333pt;}
.y3_c00328{bottom:972.541333pt;}
.y2_c00328{bottom:987.153333pt;}
.y1_c00328{bottom:1030.989333pt;}
.h3_c00328{height:31.280681pt;}
.h2_c00328{height:32.006363pt;}
.h5_c00328{height:36.010648pt;}
.h6_c00328{height:46.518078pt;}
.h4_c00328{height:51.855535pt;}
.h0_c00328{height:1122.520000pt;}
.h1_c00328{height:1122.666667pt;}
.w0_c00328{width:793.706667pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x4_c00328{left:113.385333pt;}
.x2_c00328{left:121.886667pt;}
.x1_c00328{left:127.796000pt;}
.x3_c00328{left:157.340000pt;}
.x5_c00328{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4b356c65c2353286ed83c34.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.102051;font-style:normal;font-weight:normal;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_8bca403a4f06e19d28ac8c97.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.048828;font-style:normal;font-weight:normal;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_8a0e1cd1aac61a5e5d2ea27c.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls4_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:0.087998px;}
.ls2_c00329{letter-spacing:0.098482px;}
.ls0_c00329{letter-spacing:0.104482px;}
.ls3_c00329{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00329{word-spacing:-26.575517px;}
.ws3_c00329{word-spacing:-26.487518px;}
.ws0_c00329{word-spacing:-18.769538px;}
.ws8_c00329{word-spacing:0.000000px;}
.ws5_c00329{word-spacing:0.043999px;}
.wsb_c00329{word-spacing:0.056767px;}
.ws9_c00329{word-spacing:0.073250px;}
.wsa_c00329{word-spacing:0.083734px;}
.ws2_c00329{word-spacing:0.175997px;}
.wsc_c00329{word-spacing:0.202963px;}
.ws6_c00329{word-spacing:0.213446px;}
.ws7_c00329{word-spacing:0.219446px;}
._0_c00329{margin-left:-3.825638px;}
._1_c00329{width:1.005737px;}
._3_c00329{width:53.283031px;}
._2_c00329{width:79.858548px;}
._4_c00329{width:133.452408px;}
.fc5_c00329{color:rgb(0,0,207);}
.fc4_c00329{color:rgb(79,153,5);}
.fc3_c00329{color:rgb(207,92,0);}
.fc2_c00329{color:rgb(33,74,135);}
.fc1_c00329{color:rgb(143,89,3);}
.fc0_c00329{color:rgb(0,0,0);}
.fs1_c00329{font-size:43.999200px;}
.fs0_c00329{font-size:59.775600px;}
.y0_c00329{bottom:0.000000px;}
.y2d_c00329{bottom:44.250000px;}
.y2c_c00329{bottom:96.919500px;}
.y2b_c00329{bottom:113.358000px;}
.y2a_c00329{bottom:129.796500px;}
.y29_c00329{bottom:146.235000px;}
.y28_c00329{bottom:162.673500px;}
.y27_c00329{bottom:179.112000px;}
.y26_c00329{bottom:195.550500px;}
.y25_c00329{bottom:211.989000px;}
.y24_c00329{bottom:228.427500px;}
.y23_c00329{bottom:244.866000px;}
.y22_c00329{bottom:261.304500px;}
.y21_c00329{bottom:294.180000px;}
.y20_c00329{bottom:310.618500px;}
.y1f_c00329{bottom:327.057000px;}
.y1e_c00329{bottom:359.934000px;}
.y1d_c00329{bottom:376.372500px;}
.y1c_c00329{bottom:392.811000px;}
.y1b_c00329{bottom:409.249500px;}
.y1a_c00329{bottom:425.688000px;}
.y19_c00329{bottom:442.125000px;}
.y18_c00329{bottom:458.563500px;}
.y17_c00329{bottom:507.879000px;}
.y16_c00329{bottom:524.317500px;}
.y15_c00329{bottom:540.756000px;}
.y14_c00329{bottom:557.194500px;}
.y13_c00329{bottom:573.633000px;}
.y12_c00329{bottom:590.071500px;}
.y11_c00329{bottom:606.508500px;}
.y10_c00329{bottom:622.947000px;}
.yf_c00329{bottom:639.385500px;}
.ye_c00329{bottom:655.824000px;}
.yd_c00329{bottom:672.262500px;}
.yc_c00329{bottom:688.701000px;}
.yb_c00329{bottom:705.139500px;}
.ya_c00329{bottom:721.578000px;}
.y9_c00329{bottom:738.016500px;}
.y8_c00329{bottom:754.455000px;}
.y7_c00329{bottom:787.330500px;}
.y6_c00329{bottom:803.769000px;}
.y5_c00329{bottom:853.084500px;}
.y4_c00329{bottom:869.523000px;}
.y3_c00329{bottom:885.588000px;}
.y2_c00329{bottom:1141.930500px;}
.y1_c00329{bottom:1159.863000px;}
.h3_c00329{height:35.190766px;}
.h4_c00329{height:36.007158px;}
.h2_c00329{height:52.332837px;}
.h0_c00329{height:1262.835000px;}
.h1_c00329{height:1263.000000px;}
.w0_c00329{width:892.920000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:127.558500px;}
.x2_c00329{left:137.122500px;}
.x3_c00329{left:143.770500px;}
.x4_c00329{left:177.007500px;}
.x5_c00329{left:435.249000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls4_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:0.078221pt;}
.ls2_c00329{letter-spacing:0.087539pt;}
.ls0_c00329{letter-spacing:0.092873pt;}
.ls3_c00329{letter-spacing:23.724873pt;}
.ws1_c00329{word-spacing:-29.967501pt;}
.ws4_c00329{word-spacing:-23.622682pt;}
.ws3_c00329{word-spacing:-23.544461pt;}
.ws0_c00329{word-spacing:-16.684034pt;}
.ws8_c00329{word-spacing:0.000000pt;}
.ws5_c00329{word-spacing:0.039110pt;}
.wsb_c00329{word-spacing:0.050460pt;}
.ws9_c00329{word-spacing:0.065111pt;}
.wsa_c00329{word-spacing:0.074430pt;}
.ws2_c00329{word-spacing:0.156442pt;}
.wsc_c00329{word-spacing:0.180412pt;}
.ws6_c00329{word-spacing:0.189730pt;}
.ws7_c00329{word-spacing:0.195063pt;}
._0_c00329{margin-left:-3.400567pt;}
._1_c00329{width:0.893988pt;}
._3_c00329{width:47.362694pt;}
._2_c00329{width:70.985376pt;}
._4_c00329{width:118.624363pt;}
.fs1_c00329{font-size:39.110400pt;}
.fs0_c00329{font-size:53.133867pt;}
.y0_c00329{bottom:0.000000pt;}
.y2d_c00329{bottom:39.333333pt;}
.y2c_c00329{bottom:86.150667pt;}
.y2b_c00329{bottom:100.762667pt;}
.y2a_c00329{bottom:115.374667pt;}
.y29_c00329{bottom:129.986667pt;}
.y28_c00329{bottom:144.598667pt;}
.y27_c00329{bottom:159.210667pt;}
.y26_c00329{bottom:173.822667pt;}
.y25_c00329{bottom:188.434667pt;}
.y24_c00329{bottom:203.046667pt;}
.y23_c00329{bottom:217.658667pt;}
.y22_c00329{bottom:232.270667pt;}
.y21_c00329{bottom:261.493333pt;}
.y20_c00329{bottom:276.105333pt;}
.y1f_c00329{bottom:290.717333pt;}
.y1e_c00329{bottom:319.941333pt;}
.y1d_c00329{bottom:334.553333pt;}
.y1c_c00329{bottom:349.165333pt;}
.y1b_c00329{bottom:363.777333pt;}
.y1a_c00329{bottom:378.389333pt;}
.y19_c00329{bottom:393.000000pt;}
.y18_c00329{bottom:407.612000pt;}
.y17_c00329{bottom:451.448000pt;}
.y16_c00329{bottom:466.060000pt;}
.y15_c00329{bottom:480.672000pt;}
.y14_c00329{bottom:495.284000pt;}
.y13_c00329{bottom:509.896000pt;}
.y12_c00329{bottom:524.508000pt;}
.y11_c00329{bottom:539.118667pt;}
.y10_c00329{bottom:553.730667pt;}
.yf_c00329{bottom:568.342667pt;}
.ye_c00329{bottom:582.954667pt;}
.yd_c00329{bottom:597.566667pt;}
.yc_c00329{bottom:612.178667pt;}
.yb_c00329{bottom:626.790667pt;}
.ya_c00329{bottom:641.402667pt;}
.y9_c00329{bottom:656.014667pt;}
.y8_c00329{bottom:670.626667pt;}
.y7_c00329{bottom:699.849333pt;}
.y6_c00329{bottom:714.461333pt;}
.y5_c00329{bottom:758.297333pt;}
.y4_c00329{bottom:772.909333pt;}
.y3_c00329{bottom:787.189333pt;}
.y2_c00329{bottom:1015.049333pt;}
.y1_c00329{bottom:1030.989333pt;}
.h3_c00329{height:31.280681pt;}
.h4_c00329{height:32.006363pt;}
.h2_c00329{height:46.518078pt;}
.h0_c00329{height:1122.520000pt;}
.h1_c00329{height:1122.666667pt;}
.w0_c00329{width:793.706667pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:113.385333pt;}
.x2_c00329{left:121.886667pt;}
.x3_c00329{left:127.796000pt;}
.x4_c00329{left:157.340000pt;}
.x5_c00329{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff80659b5a5ef3065a8a5896.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.893555;font-style:normal;font-weight:normal;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_6f21eceda3c79632e32b3abf.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.083496;font-style:normal;font-weight:normal;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_9bac6321627fbba992d9535a.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.102051;font-style:normal;font-weight:normal;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_0ec375e11ee0b05c5aa7f941.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_5b764a2637f7f5e4612e8347.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:1.048828;font-style: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;}
.ls3_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:0.087998px;}
.ls2_c00330{letter-spacing:0.098482px;}
.ls1_c00330{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00330{word-spacing:-26.575517px;}
.wsf_c00330{word-spacing:-26.487518px;}
.ws9_c00330{word-spacing:-22.415850px;}
.wsd_c00330{word-spacing:-20.144377px;}
.ws8_c00330{word-spacing:-19.859460px;}
.ws7_c00330{word-spacing:-19.785724px;}
.ws5_c00330{word-spacing:-18.769538px;}
.wsa_c00330{word-spacing:-15.362329px;}
.ws4_c00330{word-spacing:-14.943900px;}
.wsc_c00330{word-spacing:-14.824349px;}
.ws6_c00330{word-spacing:-10.506144px;}
.ws1_c00330{word-spacing:-9.988424px;}
.ws3_c00330{word-spacing:-9.987499px;}
.wsb_c00330{word-spacing:-8.113015px;}
.ws13_c00330{word-spacing:0.000000px;}
.ws10_c00330{word-spacing:0.043999px;}
.wse_c00330{word-spacing:0.175997px;}
.ws11_c00330{word-spacing:0.213446px;}
.ws12_c00330{word-spacing:0.219446px;}
.ws0_c00330{word-spacing:43.038600px;}
._5_c00330{margin-left:-4.214833px;}
._1_c00330{margin-left:-1.075961px;}
._3_c00330{width:1.015958px;}
._0_c00330{width:19.935816px;}
._2_c00330{width:30.126902px;}
._4_c00330{width:31.621292px;}
.fc6_c00330{color:rgb(0,0,207);}
.fc5_c00330{color:rgb(79,153,5);}
.fc3_c00330{color:rgb(33,74,135);}
.fc2_c00330{color:rgb(143,89,3);}
.fc4_c00330{color:rgb(207,92,0);}
.fc1_c00330{color:rgb(6,69,173);}
.fc0_c00330{color:rgb(0,0,0);}
.fs2_c00330{font-size:43.999200px;}
.fs1_c00330{font-size:59.775600px;}
.fs0_c00330{font-size:86.077200px;}
.y0_c00330{bottom:0.000000px;}
.y1e_c00330{bottom:44.250000px;}
.y1d_c00330{bottom:86.982000px;}
.y1c_c00330{bottom:103.420500px;}
.y1b_c00330{bottom:119.859000px;}
.y1a_c00330{bottom:136.297500px;}
.y19_c00330{bottom:152.736000px;}
.y18_c00330{bottom:185.613000px;}
.y17_c00330{bottom:202.051500px;}
.y16_c00330{bottom:234.927000px;}
.y15_c00330{bottom:251.365500px;}
.y14_c00330{bottom:267.804000px;}
.y13_c00330{bottom:317.119500px;}
.y12_c00330{bottom:333.558000px;}
.y11_c00330{bottom:349.996500px;}
.y10_c00330{bottom:366.435000px;}
.yf_c00330{bottom:382.873500px;}
.ye_c00330{bottom:415.749000px;}
.yd_c00330{bottom:432.187500px;}
.yc_c00330{bottom:448.252500px;}
.yb_c00330{bottom:495.994500px;}
.ya_c00330{bottom:513.927000px;}
.y9_c00330{bottom:531.859500px;}
.y8_c00330{bottom:549.792000px;}
.y7_c00330{bottom:567.726000px;}
.y6_c00330{bottom:585.658500px;}
.y5_c00330{bottom:612.480000px;}
.y4_c00330{bottom:639.301500px;}
.y3_c00330{bottom:666.123000px;}
.y2_c00330{bottom:692.944500px;}
.y1_c00330{bottom:735.139500px;}
.h5_c00330{height:35.190766px;}
.h6_c00330{height:36.007158px;}
.h3_c00330{height:40.511979px;}
.h4_c00330{height:52.332837px;}
.h2_c00330{height:58.337477px;}
.h0_c00330{height:1262.835000px;}
.h1_c00330{height:1263.000000px;}
.w0_c00330{width:892.920000px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:127.558500px;}
.x2_c00330{left:137.122500px;}
.x3_c00330{left:435.249000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls3_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:0.078221pt;}
.ls2_c00330{letter-spacing:0.087539pt;}
.ls1_c00330{letter-spacing:0.092873pt;}
.ws2_c00330{word-spacing:-23.622682pt;}
.wsf_c00330{word-spacing:-23.544461pt;}
.ws9_c00330{word-spacing:-19.925200pt;}
.wsd_c00330{word-spacing:-17.906113pt;}
.ws8_c00330{word-spacing:-17.652853pt;}
.ws7_c00330{word-spacing:-17.587310pt;}
.ws5_c00330{word-spacing:-16.684034pt;}
.wsa_c00330{word-spacing:-13.655404pt;}
.ws4_c00330{word-spacing:-13.283467pt;}
.wsc_c00330{word-spacing:-13.177199pt;}
.ws6_c00330{word-spacing:-9.338795pt;}
.ws1_c00330{word-spacing:-8.878599pt;}
.ws3_c00330{word-spacing:-8.877777pt;}
.wsb_c00330{word-spacing:-7.211569pt;}
.ws13_c00330{word-spacing:0.000000pt;}
.ws10_c00330{word-spacing:0.039110pt;}
.wse_c00330{word-spacing:0.156442pt;}
.ws11_c00330{word-spacing:0.189730pt;}
.ws12_c00330{word-spacing:0.195063pt;}
.ws0_c00330{word-spacing:38.256533pt;}
._5_c00330{margin-left:-3.746518pt;}
._1_c00330{margin-left:-0.956410pt;}
._3_c00330{width:0.903074pt;}
._0_c00330{width:17.720725pt;}
._2_c00330{width:26.779469pt;}
._4_c00330{width:28.107815pt;}
.fs2_c00330{font-size:39.110400pt;}
.fs1_c00330{font-size:53.133867pt;}
.fs0_c00330{font-size:76.513067pt;}
.y0_c00330{bottom:0.000000pt;}
.y1e_c00330{bottom:39.333333pt;}
.y1d_c00330{bottom:77.317333pt;}
.y1c_c00330{bottom:91.929333pt;}
.y1b_c00330{bottom:106.541333pt;}
.y1a_c00330{bottom:121.153333pt;}
.y19_c00330{bottom:135.765333pt;}
.y18_c00330{bottom:164.989333pt;}
.y17_c00330{bottom:179.601333pt;}
.y16_c00330{bottom:208.824000pt;}
.y15_c00330{bottom:223.436000pt;}
.y14_c00330{bottom:238.048000pt;}
.y13_c00330{bottom:281.884000pt;}
.y12_c00330{bottom:296.496000pt;}
.y11_c00330{bottom:311.108000pt;}
.y10_c00330{bottom:325.720000pt;}
.yf_c00330{bottom:340.332000pt;}
.ye_c00330{bottom:369.554667pt;}
.yd_c00330{bottom:384.166667pt;}
.yc_c00330{bottom:398.446667pt;}
.yb_c00330{bottom:440.884000pt;}
.ya_c00330{bottom:456.824000pt;}
.y9_c00330{bottom:472.764000pt;}
.y8_c00330{bottom:488.704000pt;}
.y7_c00330{bottom:504.645333pt;}
.y6_c00330{bottom:520.585333pt;}
.y5_c00330{bottom:544.426667pt;}
.y4_c00330{bottom:568.268000pt;}
.y3_c00330{bottom:592.109333pt;}
.y2_c00330{bottom:615.950667pt;}
.y1_c00330{bottom:653.457333pt;}
.h5_c00330{height:31.280681pt;}
.h6_c00330{height:32.006363pt;}
.h3_c00330{height:36.010648pt;}
.h4_c00330{height:46.518078pt;}
.h2_c00330{height:51.855535pt;}
.h0_c00330{height:1122.520000pt;}
.h1_c00330{height:1122.666667pt;}
.w0_c00330{width:793.706667pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:113.385333pt;}
.x2_c00330{left:121.886667pt;}
.x3_c00330{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aea11b08bd260d69cfde4489.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.083496;font-style:normal;font-weight:normal;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_754d40453d9536399c563bd8.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_8bb6efbcc9219fc6ad72c367.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_1a87b7675d8b7e6cd7a8d706.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls4_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:0.087998px;}
.ls1_c00331{letter-spacing:0.098482px;}
.ls2_c00331{letter-spacing:0.104482px;}
.ls3_c00331{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws1_c00331{word-spacing:-26.487518px;}
.ws2_c00331{word-spacing:0.000000px;}
.ws8_c00331{word-spacing:0.026966px;}
.ws9_c00331{word-spacing:0.043999px;}
.ws6_c00331{word-spacing:0.046284px;}
.ws3_c00331{word-spacing:0.056767px;}
.ws5_c00331{word-spacing:0.073250px;}
.ws7_c00331{word-spacing:0.083734px;}
.ws4_c00331{word-spacing:0.202963px;}
.wsb_c00331{word-spacing:0.213446px;}
.wsa_c00331{word-spacing:0.219446px;}
._5_c00331{width:1.041538px;}
._0_c00331{width:53.415029px;}
._1_c00331{width:79.858548px;}
._3_c00331{width:106.434065px;}
._2_c00331{width:133.452408px;}
._4_c00331{width:186.179933px;}
.fc5_c00331{color:rgb(207,92,0);}
.fc4_c00331{color:rgb(0,0,207);}
.fc3_c00331{color:rgb(79,153,5);}
.fc2_c00331{color:rgb(33,74,135);}
.fc1_c00331{color:rgb(143,89,3);}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:43.999200px;}
.fs1_c00331{font-size:59.775600px;}
.y0_c00331{bottom:0.000000px;}
.y26_c00331{bottom:44.250000px;}
.y25_c00331{bottom:485.890500px;}
.y24_c00331{bottom:502.329000px;}
.y23_c00331{bottom:518.767500px;}
.y22_c00331{bottom:535.206000px;}
.y21_c00331{bottom:551.643000px;}
.y20_c00331{bottom:568.081500px;}
.y1f_c00331{bottom:584.520000px;}
.y1e_c00331{bottom:600.958500px;}
.y1d_c00331{bottom:617.397000px;}
.y1c_c00331{bottom:633.835500px;}
.y1b_c00331{bottom:650.274000px;}
.y1a_c00331{bottom:683.151000px;}
.y19_c00331{bottom:699.589500px;}
.y18_c00331{bottom:716.028000px;}
.y17_c00331{bottom:748.903500px;}
.y16_c00331{bottom:765.342000px;}
.y15_c00331{bottom:781.780500px;}
.y14_c00331{bottom:798.219000px;}
.y13_c00331{bottom:814.657500px;}
.y12_c00331{bottom:831.096000px;}
.y11_c00331{bottom:847.534500px;}
.y10_c00331{bottom:863.973000px;}
.yf_c00331{bottom:880.411500px;}
.ye_c00331{bottom:896.848500px;}
.yd_c00331{bottom:913.287000px;}
.yc_c00331{bottom:929.725500px;}
.yb_c00331{bottom:946.164000px;}
.ya_c00331{bottom:962.602500px;}
.y9_c00331{bottom:979.041000px;}
.y8_c00331{bottom:995.479500px;}
.y7_c00331{bottom:1011.918000px;}
.y6_c00331{bottom:1028.356500px;}
.y5_c00331{bottom:1044.795000px;}
.y4_c00331{bottom:1094.109000px;}
.y3_c00331{bottom:1110.547500px;}
.y2_c00331{bottom:1126.986000px;}
.y1_c00331{bottom:1143.424500px;}
.h3_c00331{height:35.190766px;}
.h2_c00331{height:36.007158px;}
.h4_c00331{height:52.332837px;}
.h0_c00331{height:1262.835000px;}
.h1_c00331{height:1263.000000px;}
.w0_c00331{width:892.920000px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:137.122500px;}
.x3_c00331{left:143.770500px;}
.x4_c00331{left:177.007500px;}
.x2_c00331{left:203.596500px;}
.x5_c00331{left:435.249000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls4_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:0.078221pt;}
.ls1_c00331{letter-spacing:0.087539pt;}
.ls2_c00331{letter-spacing:0.092873pt;}
.ls3_c00331{letter-spacing:23.724873pt;}
.ws0_c00331{word-spacing:-23.622682pt;}
.ws1_c00331{word-spacing:-23.544461pt;}
.ws2_c00331{word-spacing:0.000000pt;}
.ws8_c00331{word-spacing:0.023970pt;}
.ws9_c00331{word-spacing:0.039110pt;}
.ws6_c00331{word-spacing:0.041141pt;}
.ws3_c00331{word-spacing:0.050460pt;}
.ws5_c00331{word-spacing:0.065111pt;}
.ws7_c00331{word-spacing:0.074430pt;}
.ws4_c00331{word-spacing:0.180412pt;}
.wsb_c00331{word-spacing:0.189730pt;}
.wsa_c00331{word-spacing:0.195063pt;}
._5_c00331{width:0.925811pt;}
._0_c00331{width:47.480026pt;}
._1_c00331{width:70.985376pt;}
._3_c00331{width:94.608058pt;}
._2_c00331{width:118.624363pt;}
._4_c00331{width:165.493274pt;}
.fs0_c00331{font-size:39.110400pt;}
.fs1_c00331{font-size:53.133867pt;}
.y0_c00331{bottom:0.000000pt;}
.y26_c00331{bottom:39.333333pt;}
.y25_c00331{bottom:431.902667pt;}
.y24_c00331{bottom:446.514667pt;}
.y23_c00331{bottom:461.126667pt;}
.y22_c00331{bottom:475.738667pt;}
.y21_c00331{bottom:490.349333pt;}
.y20_c00331{bottom:504.961333pt;}
.y1f_c00331{bottom:519.573333pt;}
.y1e_c00331{bottom:534.185333pt;}
.y1d_c00331{bottom:548.797333pt;}
.y1c_c00331{bottom:563.409333pt;}
.y1b_c00331{bottom:578.021333pt;}
.y1a_c00331{bottom:607.245333pt;}
.y19_c00331{bottom:621.857333pt;}
.y18_c00331{bottom:636.469333pt;}
.y17_c00331{bottom:665.692000pt;}
.y16_c00331{bottom:680.304000pt;}
.y15_c00331{bottom:694.916000pt;}
.y14_c00331{bottom:709.528000pt;}
.y13_c00331{bottom:724.140000pt;}
.y12_c00331{bottom:738.752000pt;}
.y11_c00331{bottom:753.364000pt;}
.y10_c00331{bottom:767.976000pt;}
.yf_c00331{bottom:782.588000pt;}
.ye_c00331{bottom:797.198667pt;}
.yd_c00331{bottom:811.810667pt;}
.yc_c00331{bottom:826.422667pt;}
.yb_c00331{bottom:841.034667pt;}
.ya_c00331{bottom:855.646667pt;}
.y9_c00331{bottom:870.258667pt;}
.y8_c00331{bottom:884.870667pt;}
.y7_c00331{bottom:899.482667pt;}
.y6_c00331{bottom:914.094667pt;}
.y5_c00331{bottom:928.706667pt;}
.y4_c00331{bottom:972.541333pt;}
.y3_c00331{bottom:987.153333pt;}
.y2_c00331{bottom:1001.765333pt;}
.y1_c00331{bottom:1016.377333pt;}
.h3_c00331{height:31.280681pt;}
.h2_c00331{height:32.006363pt;}
.h4_c00331{height:46.518078pt;}
.h0_c00331{height:1122.520000pt;}
.h1_c00331{height:1122.666667pt;}
.w0_c00331{width:793.706667pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:121.886667pt;}
.x3_c00331{left:127.796000pt;}
.x4_c00331{left:157.340000pt;}
.x2_c00331{left:180.974667pt;}
.x5_c00331{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff80659b5a5ef3065a8a5896.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:0.893555;font-style:normal;font-weight:normal;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_a6496c37c3432a7d06956913.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.083496;font-style:normal;font-weight:normal;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_80930bad2b5ce0f1d5ac7b1a.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.048828;font-style: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;}
.ls3_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.087998px;}
.ls2_c00332{letter-spacing:0.098482px;}
.ls1_c00332{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00332{word-spacing:-33.713438px;}
.ws2_c00332{word-spacing:-26.575517px;}
.wse_c00332{word-spacing:-26.487518px;}
.ws5_c00332{word-spacing:-18.769538px;}
.ws4_c00332{word-spacing:-14.943900px;}
.ws7_c00332{word-spacing:-14.465695px;}
.wsa_c00332{word-spacing:-14.107042px;}
.wsb_c00332{word-spacing:-12.074671px;}
.ws9_c00332{word-spacing:-11.716018px;}
.ws8_c00332{word-spacing:-11.656242px;}
.ws1_c00332{word-spacing:-9.988424px;}
.ws3_c00332{word-spacing:-9.987499px;}
.ws6_c00332{word-spacing:-1.386144px;}
.ws12_c00332{word-spacing:0.000000px;}
.wsf_c00332{word-spacing:0.043999px;}
.ws15_c00332{word-spacing:0.056767px;}
.ws13_c00332{word-spacing:0.073250px;}
.ws14_c00332{word-spacing:0.083734px;}
.wsd_c00332{word-spacing:0.175997px;}
.ws16_c00332{word-spacing:0.202963px;}
.ws10_c00332{word-spacing:0.213446px;}
.ws11_c00332{word-spacing:0.219446px;}
.ws0_c00332{word-spacing:43.038600px;}
._2_c00332{margin-left:-3.376852px;}
._1_c00332{margin-left:-1.075961px;}
._5_c00332{width:1.005737px;}
._0_c00332{width:19.935816px;}
._3_c00332{width:23.790689px;}
._4_c00332{width:40.109428px;}
._7_c00332{width:53.283031px;}
._6_c00332{width:79.858548px;}
._8_c00332{width:133.452408px;}
.fc6_c00332{color:rgb(0,0,207);}
.fc5_c00332{color:rgb(79,153,5);}
.fc3_c00332{color:rgb(33,74,135);}
.fc2_c00332{color:rgb(143,89,3);}
.fc4_c00332{color:rgb(207,92,0);}
.fc1_c00332{color:rgb(6,69,173);}
.fc0_c00332{color:rgb(0,0,0);}
.fs2_c00332{font-size:43.999200px;}
.fs1_c00332{font-size:59.775600px;}
.fs0_c00332{font-size:86.077200px;}
.y0_c00332{bottom:0.000000px;}
.y20_c00332{bottom:44.250000px;}
.y1f_c00332{bottom:86.982000px;}
.y1e_c00332{bottom:103.420500px;}
.y1d_c00332{bottom:119.859000px;}
.y1c_c00332{bottom:136.297500px;}
.y1b_c00332{bottom:152.736000px;}
.y1a_c00332{bottom:169.174500px;}
.y19_c00332{bottom:185.613000px;}
.y18_c00332{bottom:202.051500px;}
.y17_c00332{bottom:218.490000px;}
.y16_c00332{bottom:234.927000px;}
.y15_c00332{bottom:251.365500px;}
.y14_c00332{bottom:267.804000px;}
.y13_c00332{bottom:284.242500px;}
.y12_c00332{bottom:300.681000px;}
.y11_c00332{bottom:317.119500px;}
.y10_c00332{bottom:349.996500px;}
.yf_c00332{bottom:366.435000px;}
.ye_c00332{bottom:415.749000px;}
.yd_c00332{bottom:432.187500px;}
.yc_c00332{bottom:448.252500px;}
.yb_c00332{bottom:493.890000px;}
.ya_c00332{bottom:511.822500px;}
.y9_c00332{bottom:529.756500px;}
.y8_c00332{bottom:547.689000px;}
.y7_c00332{bottom:565.621500px;}
.y6_c00332{bottom:583.554000px;}
.y5_c00332{bottom:610.633500px;}
.y4_c00332{bottom:637.714500px;}
.y3_c00332{bottom:664.794000px;}
.y2_c00332{bottom:691.873500px;}
.y1_c00332{bottom:734.407500px;}
.h5_c00332{height:35.190766px;}
.h6_c00332{height:36.007158px;}
.h3_c00332{height:40.511979px;}
.h4_c00332{height:52.332837px;}
.h2_c00332{height:58.337477px;}
.h0_c00332{height:1262.835000px;}
.h1_c00332{height:1263.000000px;}
.w0_c00332{width:892.920000px;}
.w1_c00332{width:893.250000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:127.558500px;}
.x2_c00332{left:137.122500px;}
.x3_c00332{left:143.770500px;}
.x4_c00332{left:435.249000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls3_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.078221pt;}
.ls2_c00332{letter-spacing:0.087539pt;}
.ls1_c00332{letter-spacing:0.092873pt;}
.wsc_c00332{word-spacing:-29.967501pt;}
.ws2_c00332{word-spacing:-23.622682pt;}
.wse_c00332{word-spacing:-23.544461pt;}
.ws5_c00332{word-spacing:-16.684034pt;}
.ws4_c00332{word-spacing:-13.283467pt;}
.ws7_c00332{word-spacing:-12.858396pt;}
.wsa_c00332{word-spacing:-12.539593pt;}
.wsb_c00332{word-spacing:-10.733041pt;}
.ws9_c00332{word-spacing:-10.414238pt;}
.ws8_c00332{word-spacing:-10.361104pt;}
.ws1_c00332{word-spacing:-8.878599pt;}
.ws3_c00332{word-spacing:-8.877777pt;}
.ws6_c00332{word-spacing:-1.232128pt;}
.ws12_c00332{word-spacing:0.000000pt;}
.wsf_c00332{word-spacing:0.039110pt;}
.ws15_c00332{word-spacing:0.050460pt;}
.ws13_c00332{word-spacing:0.065111pt;}
.ws14_c00332{word-spacing:0.074430pt;}
.wsd_c00332{word-spacing:0.156442pt;}
.ws16_c00332{word-spacing:0.180412pt;}
.ws10_c00332{word-spacing:0.189730pt;}
.ws11_c00332{word-spacing:0.195063pt;}
.ws0_c00332{word-spacing:38.256533pt;}
._2_c00332{margin-left:-3.001646pt;}
._1_c00332{margin-left:-0.956410pt;}
._5_c00332{width:0.893988pt;}
._0_c00332{width:17.720725pt;}
._3_c00332{width:21.147279pt;}
._4_c00332{width:35.652825pt;}
._7_c00332{width:47.362694pt;}
._6_c00332{width:70.985376pt;}
._8_c00332{width:118.624363pt;}
.fs2_c00332{font-size:39.110400pt;}
.fs1_c00332{font-size:53.133867pt;}
.fs0_c00332{font-size:76.513067pt;}
.y0_c00332{bottom:0.000000pt;}
.y20_c00332{bottom:39.333333pt;}
.y1f_c00332{bottom:77.317333pt;}
.y1e_c00332{bottom:91.929333pt;}
.y1d_c00332{bottom:106.541333pt;}
.y1c_c00332{bottom:121.153333pt;}
.y1b_c00332{bottom:135.765333pt;}
.y1a_c00332{bottom:150.377333pt;}
.y19_c00332{bottom:164.989333pt;}
.y18_c00332{bottom:179.601333pt;}
.y17_c00332{bottom:194.213333pt;}
.y16_c00332{bottom:208.824000pt;}
.y15_c00332{bottom:223.436000pt;}
.y14_c00332{bottom:238.048000pt;}
.y13_c00332{bottom:252.660000pt;}
.y12_c00332{bottom:267.272000pt;}
.y11_c00332{bottom:281.884000pt;}
.y10_c00332{bottom:311.108000pt;}
.yf_c00332{bottom:325.720000pt;}
.ye_c00332{bottom:369.554667pt;}
.yd_c00332{bottom:384.166667pt;}
.yc_c00332{bottom:398.446667pt;}
.yb_c00332{bottom:439.013333pt;}
.ya_c00332{bottom:454.953333pt;}
.y9_c00332{bottom:470.894667pt;}
.y8_c00332{bottom:486.834667pt;}
.y7_c00332{bottom:502.774667pt;}
.y6_c00332{bottom:518.714667pt;}
.y5_c00332{bottom:542.785333pt;}
.y4_c00332{bottom:566.857333pt;}
.y3_c00332{bottom:590.928000pt;}
.y2_c00332{bottom:614.998667pt;}
.y1_c00332{bottom:652.806667pt;}
.h5_c00332{height:31.280681pt;}
.h6_c00332{height:32.006363pt;}
.h3_c00332{height:36.010648pt;}
.h4_c00332{height:46.518078pt;}
.h2_c00332{height:51.855535pt;}
.h0_c00332{height:1122.520000pt;}
.h1_c00332{height:1122.666667pt;}
.w0_c00332{width:793.706667pt;}
.w1_c00332{width:794.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:113.385333pt;}
.x2_c00332{left:121.886667pt;}
.x3_c00332{left:127.796000pt;}
.x4_c00332{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb6016465401d1c5d9643881.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_3444e82a25dfdd81e4bd31f6.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_febc5aec16bedd7f8a4345a6.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_b2b0c0b35ea3e8c062a7fcf1.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.102051;font-style: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;}
.ls4_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:0.087998px;}
.ls2_c00333{letter-spacing:0.098482px;}
.ls3_c00333{letter-spacing:0.104482px;}
.ls1_c00333{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00333{word-spacing:-26.575517px;}
.ws4_c00333{word-spacing:-26.487518px;}
.wsa_c00333{word-spacing:-18.769538px;}
.wsc_c00333{word-spacing:-16.019861px;}
.ws9_c00333{word-spacing:-14.943900px;}
.wsf_c00333{word-spacing:-14.107042px;}
.ws10_c00333{word-spacing:-12.074671px;}
.wse_c00333{word-spacing:-11.716018px;}
.wsd_c00333{word-spacing:-11.656242px;}
.ws7_c00333{word-spacing:-9.988424px;}
.ws8_c00333{word-spacing:-9.987499px;}
.wsb_c00333{word-spacing:-4.536144px;}
.ws3_c00333{word-spacing:0.000000px;}
.ws0_c00333{word-spacing:0.043999px;}
.ws5_c00333{word-spacing:0.213446px;}
.ws1_c00333{word-spacing:0.219446px;}
.ws6_c00333{word-spacing:43.038600px;}
._4_c00333{margin-left:-3.376852px;}
._3_c00333{margin-left:-1.075961px;}
._1_c00333{width:1.041538px;}
._2_c00333{width:19.935816px;}
._5_c00333{width:23.790689px;}
._6_c00333{width:40.109428px;}
._0_c00333{width:53.415029px;}
.fc5_c00333{color:rgb(79,153,5);}
.fc4_c00333{color:rgb(143,89,3);}
.fc3_c00333{color:rgb(0,0,0);}
.fc6_c00333{color:rgb(6,69,173);}
.fc2_c00333{color:rgb(207,92,0);}
.fc1_c00333{color:rgb(0,0,207);}
.fc0_c00333{color:rgb(33,74,135);}
.fs0_c00333{font-size:43.999200px;}
.fs2_c00333{font-size:59.775600px;}
.fs1_c00333{font-size:86.077200px;}
.y0_c00333{bottom:0.000000px;}
.y20_c00333{bottom:44.250000px;}
.y1f_c00333{bottom:82.051500px;}
.y1e_c00333{bottom:99.984000px;}
.y1d_c00333{bottom:117.916500px;}
.y1c_c00333{bottom:135.849000px;}
.y1b_c00333{bottom:162.501000px;}
.y1a_c00333{bottom:189.151500px;}
.y19_c00333{bottom:215.802000px;}
.y18_c00333{bottom:242.454000px;}
.y17_c00333{bottom:284.478000px;}
.y16_c00333{bottom:748.903500px;}
.y15_c00333{bottom:765.342000px;}
.y14_c00333{bottom:781.780500px;}
.y13_c00333{bottom:798.219000px;}
.y12_c00333{bottom:814.657500px;}
.y11_c00333{bottom:831.096000px;}
.y10_c00333{bottom:847.534500px;}
.yf_c00333{bottom:863.973000px;}
.ye_c00333{bottom:880.411500px;}
.yd_c00333{bottom:896.848500px;}
.yc_c00333{bottom:913.287000px;}
.yb_c00333{bottom:946.164000px;}
.ya_c00333{bottom:962.602500px;}
.y9_c00333{bottom:979.041000px;}
.y8_c00333{bottom:1011.918000px;}
.y7_c00333{bottom:1028.356500px;}
.y6_c00333{bottom:1044.795000px;}
.y5_c00333{bottom:1061.232000px;}
.y4_c00333{bottom:1077.670500px;}
.y3_c00333{bottom:1094.109000px;}
.y2_c00333{bottom:1110.547500px;}
.y1_c00333{bottom:1159.863000px;}
.h3_c00333{height:35.190766px;}
.h2_c00333{height:36.007158px;}
.h5_c00333{height:40.511979px;}
.h6_c00333{height:52.332837px;}
.h4_c00333{height:58.337477px;}
.h0_c00333{height:1262.835000px;}
.h1_c00333{height:1263.000000px;}
.w0_c00333{width:892.920000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x4_c00333{left:127.558500px;}
.x2_c00333{left:137.122500px;}
.x1_c00333{left:143.770500px;}
.x3_c00333{left:177.007500px;}
.x5_c00333{left:435.249000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls4_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:0.078221pt;}
.ls2_c00333{letter-spacing:0.087539pt;}
.ls3_c00333{letter-spacing:0.092873pt;}
.ls1_c00333{letter-spacing:23.724873pt;}
.ws2_c00333{word-spacing:-23.622682pt;}
.ws4_c00333{word-spacing:-23.544461pt;}
.wsa_c00333{word-spacing:-16.684034pt;}
.wsc_c00333{word-spacing:-14.239876pt;}
.ws9_c00333{word-spacing:-13.283467pt;}
.wsf_c00333{word-spacing:-12.539593pt;}
.ws10_c00333{word-spacing:-10.733041pt;}
.wse_c00333{word-spacing:-10.414238pt;}
.wsd_c00333{word-spacing:-10.361104pt;}
.ws7_c00333{word-spacing:-8.878599pt;}
.ws8_c00333{word-spacing:-8.877777pt;}
.wsb_c00333{word-spacing:-4.032128pt;}
.ws3_c00333{word-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.039110pt;}
.ws5_c00333{word-spacing:0.189730pt;}
.ws1_c00333{word-spacing:0.195063pt;}
.ws6_c00333{word-spacing:38.256533pt;}
._4_c00333{margin-left:-3.001646pt;}
._3_c00333{margin-left:-0.956410pt;}
._1_c00333{width:0.925811pt;}
._2_c00333{width:17.720725pt;}
._5_c00333{width:21.147279pt;}
._6_c00333{width:35.652825pt;}
._0_c00333{width:47.480026pt;}
.fs0_c00333{font-size:39.110400pt;}
.fs2_c00333{font-size:53.133867pt;}
.fs1_c00333{font-size:76.513067pt;}
.y0_c00333{bottom:0.000000pt;}
.y20_c00333{bottom:39.333333pt;}
.y1f_c00333{bottom:72.934667pt;}
.y1e_c00333{bottom:88.874667pt;}
.y1d_c00333{bottom:104.814667pt;}
.y1c_c00333{bottom:120.754667pt;}
.y1b_c00333{bottom:144.445333pt;}
.y1a_c00333{bottom:168.134667pt;}
.y19_c00333{bottom:191.824000pt;}
.y18_c00333{bottom:215.514667pt;}
.y17_c00333{bottom:252.869333pt;}
.y16_c00333{bottom:665.692000pt;}
.y15_c00333{bottom:680.304000pt;}
.y14_c00333{bottom:694.916000pt;}
.y13_c00333{bottom:709.528000pt;}
.y12_c00333{bottom:724.140000pt;}
.y11_c00333{bottom:738.752000pt;}
.y10_c00333{bottom:753.364000pt;}
.yf_c00333{bottom:767.976000pt;}
.ye_c00333{bottom:782.588000pt;}
.yd_c00333{bottom:797.198667pt;}
.yc_c00333{bottom:811.810667pt;}
.yb_c00333{bottom:841.034667pt;}
.ya_c00333{bottom:855.646667pt;}
.y9_c00333{bottom:870.258667pt;}
.y8_c00333{bottom:899.482667pt;}
.y7_c00333{bottom:914.094667pt;}
.y6_c00333{bottom:928.706667pt;}
.y5_c00333{bottom:943.317333pt;}
.y4_c00333{bottom:957.929333pt;}
.y3_c00333{bottom:972.541333pt;}
.y2_c00333{bottom:987.153333pt;}
.y1_c00333{bottom:1030.989333pt;}
.h3_c00333{height:31.280681pt;}
.h2_c00333{height:32.006363pt;}
.h5_c00333{height:36.010648pt;}
.h6_c00333{height:46.518078pt;}
.h4_c00333{height:51.855535pt;}
.h0_c00333{height:1122.520000pt;}
.h1_c00333{height:1122.666667pt;}
.w0_c00333{width:793.706667pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x4_c00333{left:113.385333pt;}
.x2_c00333{left:121.886667pt;}
.x1_c00333{left:127.796000pt;}
.x3_c00333{left:157.340000pt;}
.x5_c00333{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e33fe2470a56ba3cca1210a6.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.102051;font-style:normal;font-weight:normal;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_364767c73c34daeb32054112.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.048828;font-style:normal;font-weight:normal;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_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls4_c00334{letter-spacing:0.000000px;}
.ls1_c00334{letter-spacing:0.087998px;}
.ls2_c00334{letter-spacing:0.098482px;}
.ls0_c00334{letter-spacing:0.104482px;}
.ls3_c00334{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00334{word-spacing:-26.575517px;}
.ws3_c00334{word-spacing:-26.487518px;}
.ws0_c00334{word-spacing:-18.769538px;}
.ws8_c00334{word-spacing:0.000000px;}
.ws5_c00334{word-spacing:0.043999px;}
.wsb_c00334{word-spacing:0.056767px;}
.ws9_c00334{word-spacing:0.073250px;}
.wsa_c00334{word-spacing:0.083734px;}
.ws2_c00334{word-spacing:0.175997px;}
.wsc_c00334{word-spacing:0.202963px;}
.ws6_c00334{word-spacing:0.213446px;}
.ws7_c00334{word-spacing:0.219446px;}
._0_c00334{margin-left:-3.825638px;}
._1_c00334{width:1.005737px;}
._3_c00334{width:53.283031px;}
._2_c00334{width:79.858548px;}
._4_c00334{width:133.452408px;}
.fc5_c00334{color:rgb(0,0,207);}
.fc4_c00334{color:rgb(79,153,5);}
.fc3_c00334{color:rgb(207,92,0);}
.fc2_c00334{color:rgb(33,74,135);}
.fc1_c00334{color:rgb(143,89,3);}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:43.999200px;}
.fs0_c00334{font-size:59.775600px;}
.y0_c00334{bottom:0.000000px;}
.y2d_c00334{bottom:44.250000px;}
.y2c_c00334{bottom:96.919500px;}
.y2b_c00334{bottom:113.358000px;}
.y2a_c00334{bottom:129.796500px;}
.y29_c00334{bottom:146.235000px;}
.y28_c00334{bottom:162.673500px;}
.y27_c00334{bottom:179.112000px;}
.y26_c00334{bottom:195.550500px;}
.y25_c00334{bottom:211.989000px;}
.y24_c00334{bottom:228.427500px;}
.y23_c00334{bottom:244.866000px;}
.y22_c00334{bottom:261.304500px;}
.y21_c00334{bottom:294.180000px;}
.y20_c00334{bottom:310.618500px;}
.y1f_c00334{bottom:327.057000px;}
.y1e_c00334{bottom:359.934000px;}
.y1d_c00334{bottom:376.372500px;}
.y1c_c00334{bottom:392.811000px;}
.y1b_c00334{bottom:409.249500px;}
.y1a_c00334{bottom:425.688000px;}
.y19_c00334{bottom:442.125000px;}
.y18_c00334{bottom:458.563500px;}
.y17_c00334{bottom:507.879000px;}
.y16_c00334{bottom:524.317500px;}
.y15_c00334{bottom:540.756000px;}
.y14_c00334{bottom:557.194500px;}
.y13_c00334{bottom:573.633000px;}
.y12_c00334{bottom:590.071500px;}
.y11_c00334{bottom:606.508500px;}
.y10_c00334{bottom:622.947000px;}
.yf_c00334{bottom:639.385500px;}
.ye_c00334{bottom:655.824000px;}
.yd_c00334{bottom:672.262500px;}
.yc_c00334{bottom:688.701000px;}
.yb_c00334{bottom:705.139500px;}
.ya_c00334{bottom:721.578000px;}
.y9_c00334{bottom:738.016500px;}
.y8_c00334{bottom:754.455000px;}
.y7_c00334{bottom:787.330500px;}
.y6_c00334{bottom:803.769000px;}
.y5_c00334{bottom:853.084500px;}
.y4_c00334{bottom:869.523000px;}
.y3_c00334{bottom:885.588000px;}
.y2_c00334{bottom:1141.930500px;}
.y1_c00334{bottom:1159.863000px;}
.h3_c00334{height:35.190766px;}
.h4_c00334{height:36.007158px;}
.h2_c00334{height:52.332837px;}
.h0_c00334{height:1262.835000px;}
.h1_c00334{height:1263.000000px;}
.w0_c00334{width:892.920000px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:127.558500px;}
.x2_c00334{left:137.122500px;}
.x3_c00334{left:143.770500px;}
.x4_c00334{left:177.007500px;}
.x5_c00334{left:435.249000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls4_c00334{letter-spacing:0.000000pt;}
.ls1_c00334{letter-spacing:0.078221pt;}
.ls2_c00334{letter-spacing:0.087539pt;}
.ls0_c00334{letter-spacing:0.092873pt;}
.ls3_c00334{letter-spacing:23.724873pt;}
.ws1_c00334{word-spacing:-29.967501pt;}
.ws4_c00334{word-spacing:-23.622682pt;}
.ws3_c00334{word-spacing:-23.544461pt;}
.ws0_c00334{word-spacing:-16.684034pt;}
.ws8_c00334{word-spacing:0.000000pt;}
.ws5_c00334{word-spacing:0.039110pt;}
.wsb_c00334{word-spacing:0.050460pt;}
.ws9_c00334{word-spacing:0.065111pt;}
.wsa_c00334{word-spacing:0.074430pt;}
.ws2_c00334{word-spacing:0.156442pt;}
.wsc_c00334{word-spacing:0.180412pt;}
.ws6_c00334{word-spacing:0.189730pt;}
.ws7_c00334{word-spacing:0.195063pt;}
._0_c00334{margin-left:-3.400567pt;}
._1_c00334{width:0.893988pt;}
._3_c00334{width:47.362694pt;}
._2_c00334{width:70.985376pt;}
._4_c00334{width:118.624363pt;}
.fs1_c00334{font-size:39.110400pt;}
.fs0_c00334{font-size:53.133867pt;}
.y0_c00334{bottom:0.000000pt;}
.y2d_c00334{bottom:39.333333pt;}
.y2c_c00334{bottom:86.150667pt;}
.y2b_c00334{bottom:100.762667pt;}
.y2a_c00334{bottom:115.374667pt;}
.y29_c00334{bottom:129.986667pt;}
.y28_c00334{bottom:144.598667pt;}
.y27_c00334{bottom:159.210667pt;}
.y26_c00334{bottom:173.822667pt;}
.y25_c00334{bottom:188.434667pt;}
.y24_c00334{bottom:203.046667pt;}
.y23_c00334{bottom:217.658667pt;}
.y22_c00334{bottom:232.270667pt;}
.y21_c00334{bottom:261.493333pt;}
.y20_c00334{bottom:276.105333pt;}
.y1f_c00334{bottom:290.717333pt;}
.y1e_c00334{bottom:319.941333pt;}
.y1d_c00334{bottom:334.553333pt;}
.y1c_c00334{bottom:349.165333pt;}
.y1b_c00334{bottom:363.777333pt;}
.y1a_c00334{bottom:378.389333pt;}
.y19_c00334{bottom:393.000000pt;}
.y18_c00334{bottom:407.612000pt;}
.y17_c00334{bottom:451.448000pt;}
.y16_c00334{bottom:466.060000pt;}
.y15_c00334{bottom:480.672000pt;}
.y14_c00334{bottom:495.284000pt;}
.y13_c00334{bottom:509.896000pt;}
.y12_c00334{bottom:524.508000pt;}
.y11_c00334{bottom:539.118667pt;}
.y10_c00334{bottom:553.730667pt;}
.yf_c00334{bottom:568.342667pt;}
.ye_c00334{bottom:582.954667pt;}
.yd_c00334{bottom:597.566667pt;}
.yc_c00334{bottom:612.178667pt;}
.yb_c00334{bottom:626.790667pt;}
.ya_c00334{bottom:641.402667pt;}
.y9_c00334{bottom:656.014667pt;}
.y8_c00334{bottom:670.626667pt;}
.y7_c00334{bottom:699.849333pt;}
.y6_c00334{bottom:714.461333pt;}
.y5_c00334{bottom:758.297333pt;}
.y4_c00334{bottom:772.909333pt;}
.y3_c00334{bottom:787.189333pt;}
.y2_c00334{bottom:1015.049333pt;}
.y1_c00334{bottom:1030.989333pt;}
.h3_c00334{height:31.280681pt;}
.h4_c00334{height:32.006363pt;}
.h2_c00334{height:46.518078pt;}
.h0_c00334{height:1122.520000pt;}
.h1_c00334{height:1122.666667pt;}
.w0_c00334{width:793.706667pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:113.385333pt;}
.x2_c00334{left:121.886667pt;}
.x3_c00334{left:127.796000pt;}
.x4_c00334{left:157.340000pt;}
.x5_c00334{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_439c5a09d7cbc9a0898cb715.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.893555;font-style:normal;font-weight:normal;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_fbd918f4636ff892f70a004f.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.083496;font-style:normal;font-weight:normal;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_6733cb2f8a9e0d743cc0c0ae.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00335;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.048828;font-style: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;}
.ls3_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:0.087998px;}
.ls2_c00335{letter-spacing:0.098482px;}
.ls1_c00335{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00335{word-spacing:-33.713438px;}
.ws2_c00335{word-spacing:-26.575517px;}
.wse_c00335{word-spacing:-26.487518px;}
.ws5_c00335{word-spacing:-18.769538px;}
.ws7_c00335{word-spacing:-16.019861px;}
.ws4_c00335{word-spacing:-14.943900px;}
.wsa_c00335{word-spacing:-14.107042px;}
.wsb_c00335{word-spacing:-12.074671px;}
.ws9_c00335{word-spacing:-11.716018px;}
.ws8_c00335{word-spacing:-11.656242px;}
.ws1_c00335{word-spacing:-9.988424px;}
.ws3_c00335{word-spacing:-9.987499px;}
.ws6_c00335{word-spacing:-4.536144px;}
.ws12_c00335{word-spacing:0.000000px;}
.wsf_c00335{word-spacing:0.043999px;}
.ws15_c00335{word-spacing:0.056767px;}
.ws13_c00335{word-spacing:0.073250px;}
.ws14_c00335{word-spacing:0.083734px;}
.wsd_c00335{word-spacing:0.175997px;}
.ws16_c00335{word-spacing:0.202963px;}
.ws10_c00335{word-spacing:0.213446px;}
.ws11_c00335{word-spacing:0.219446px;}
.ws0_c00335{word-spacing:43.038600px;}
._2_c00335{margin-left:-3.376852px;}
._1_c00335{margin-left:-1.075961px;}
._5_c00335{width:1.005737px;}
._0_c00335{width:19.935816px;}
._3_c00335{width:23.790689px;}
._4_c00335{width:40.109428px;}
._7_c00335{width:53.283031px;}
._6_c00335{width:79.858548px;}
._8_c00335{width:133.452408px;}
.fc6_c00335{color:rgb(0,0,207);}
.fc5_c00335{color:rgb(79,153,5);}
.fc3_c00335{color:rgb(33,74,135);}
.fc2_c00335{color:rgb(143,89,3);}
.fc4_c00335{color:rgb(207,92,0);}
.fc1_c00335{color:rgb(6,69,173);}
.fc0_c00335{color:rgb(0,0,0);}
.fs2_c00335{font-size:43.999200px;}
.fs1_c00335{font-size:59.775600px;}
.fs0_c00335{font-size:86.077200px;}
.y0_c00335{bottom:0.000000px;}
.y20_c00335{bottom:44.250000px;}
.y1f_c00335{bottom:86.982000px;}
.y1e_c00335{bottom:103.420500px;}
.y1d_c00335{bottom:119.859000px;}
.y1c_c00335{bottom:136.297500px;}
.y1b_c00335{bottom:152.736000px;}
.y1a_c00335{bottom:169.174500px;}
.y19_c00335{bottom:185.613000px;}
.y18_c00335{bottom:202.051500px;}
.y17_c00335{bottom:218.490000px;}
.y16_c00335{bottom:234.927000px;}
.y15_c00335{bottom:251.365500px;}
.y14_c00335{bottom:267.804000px;}
.y13_c00335{bottom:284.242500px;}
.y12_c00335{bottom:300.681000px;}
.y11_c00335{bottom:317.119500px;}
.y10_c00335{bottom:349.996500px;}
.yf_c00335{bottom:366.435000px;}
.ye_c00335{bottom:415.749000px;}
.yd_c00335{bottom:432.187500px;}
.yc_c00335{bottom:448.252500px;}
.yb_c00335{bottom:493.890000px;}
.ya_c00335{bottom:511.822500px;}
.y9_c00335{bottom:529.756500px;}
.y8_c00335{bottom:547.689000px;}
.y7_c00335{bottom:565.621500px;}
.y6_c00335{bottom:583.554000px;}
.y5_c00335{bottom:610.633500px;}
.y4_c00335{bottom:637.714500px;}
.y3_c00335{bottom:664.794000px;}
.y2_c00335{bottom:691.873500px;}
.y1_c00335{bottom:734.407500px;}
.h5_c00335{height:35.190766px;}
.h6_c00335{height:36.007158px;}
.h3_c00335{height:40.511979px;}
.h4_c00335{height:52.332837px;}
.h2_c00335{height:58.337477px;}
.h0_c00335{height:1262.835000px;}
.h1_c00335{height:1263.000000px;}
.w0_c00335{width:892.920000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:127.558500px;}
.x2_c00335{left:137.122500px;}
.x3_c00335{left:143.770500px;}
.x4_c00335{left:435.249000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls3_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:0.078221pt;}
.ls2_c00335{letter-spacing:0.087539pt;}
.ls1_c00335{letter-spacing:0.092873pt;}
.wsc_c00335{word-spacing:-29.967501pt;}
.ws2_c00335{word-spacing:-23.622682pt;}
.wse_c00335{word-spacing:-23.544461pt;}
.ws5_c00335{word-spacing:-16.684034pt;}
.ws7_c00335{word-spacing:-14.239876pt;}
.ws4_c00335{word-spacing:-13.283467pt;}
.wsa_c00335{word-spacing:-12.539593pt;}
.wsb_c00335{word-spacing:-10.733041pt;}
.ws9_c00335{word-spacing:-10.414238pt;}
.ws8_c00335{word-spacing:-10.361104pt;}
.ws1_c00335{word-spacing:-8.878599pt;}
.ws3_c00335{word-spacing:-8.877777pt;}
.ws6_c00335{word-spacing:-4.032128pt;}
.ws12_c00335{word-spacing:0.000000pt;}
.wsf_c00335{word-spacing:0.039110pt;}
.ws15_c00335{word-spacing:0.050460pt;}
.ws13_c00335{word-spacing:0.065111pt;}
.ws14_c00335{word-spacing:0.074430pt;}
.wsd_c00335{word-spacing:0.156442pt;}
.ws16_c00335{word-spacing:0.180412pt;}
.ws10_c00335{word-spacing:0.189730pt;}
.ws11_c00335{word-spacing:0.195063pt;}
.ws0_c00335{word-spacing:38.256533pt;}
._2_c00335{margin-left:-3.001646pt;}
._1_c00335{margin-left:-0.956410pt;}
._5_c00335{width:0.893988pt;}
._0_c00335{width:17.720725pt;}
._3_c00335{width:21.147279pt;}
._4_c00335{width:35.652825pt;}
._7_c00335{width:47.362694pt;}
._6_c00335{width:70.985376pt;}
._8_c00335{width:118.624363pt;}
.fs2_c00335{font-size:39.110400pt;}
.fs1_c00335{font-size:53.133867pt;}
.fs0_c00335{font-size:76.513067pt;}
.y0_c00335{bottom:0.000000pt;}
.y20_c00335{bottom:39.333333pt;}
.y1f_c00335{bottom:77.317333pt;}
.y1e_c00335{bottom:91.929333pt;}
.y1d_c00335{bottom:106.541333pt;}
.y1c_c00335{bottom:121.153333pt;}
.y1b_c00335{bottom:135.765333pt;}
.y1a_c00335{bottom:150.377333pt;}
.y19_c00335{bottom:164.989333pt;}
.y18_c00335{bottom:179.601333pt;}
.y17_c00335{bottom:194.213333pt;}
.y16_c00335{bottom:208.824000pt;}
.y15_c00335{bottom:223.436000pt;}
.y14_c00335{bottom:238.048000pt;}
.y13_c00335{bottom:252.660000pt;}
.y12_c00335{bottom:267.272000pt;}
.y11_c00335{bottom:281.884000pt;}
.y10_c00335{bottom:311.108000pt;}
.yf_c00335{bottom:325.720000pt;}
.ye_c00335{bottom:369.554667pt;}
.yd_c00335{bottom:384.166667pt;}
.yc_c00335{bottom:398.446667pt;}
.yb_c00335{bottom:439.013333pt;}
.ya_c00335{bottom:454.953333pt;}
.y9_c00335{bottom:470.894667pt;}
.y8_c00335{bottom:486.834667pt;}
.y7_c00335{bottom:502.774667pt;}
.y6_c00335{bottom:518.714667pt;}
.y5_c00335{bottom:542.785333pt;}
.y4_c00335{bottom:566.857333pt;}
.y3_c00335{bottom:590.928000pt;}
.y2_c00335{bottom:614.998667pt;}
.y1_c00335{bottom:652.806667pt;}
.h5_c00335{height:31.280681pt;}
.h6_c00335{height:32.006363pt;}
.h3_c00335{height:36.010648pt;}
.h4_c00335{height:46.518078pt;}
.h2_c00335{height:51.855535pt;}
.h0_c00335{height:1122.520000pt;}
.h1_c00335{height:1122.666667pt;}
.w0_c00335{width:793.706667pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:113.385333pt;}
.x2_c00335{left:121.886667pt;}
.x3_c00335{left:127.796000pt;}
.x4_c00335{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb6016465401d1c5d9643881.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.048828;font-style:normal;font-weight:normal;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_6ebeb1644a0a47c48cd4e741.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_42b9c0f8c47f1ecc9535142c.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_a02e1f028ee165e1f1ee9bda.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.102051;font-style: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;}
.ls4_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.087998px;}
.ls2_c00336{letter-spacing:0.098482px;}
.ls3_c00336{letter-spacing:0.104482px;}
.ls1_c00336{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00336{word-spacing:-26.575517px;}
.ws4_c00336{word-spacing:-26.487518px;}
.wsa_c00336{word-spacing:-18.769538px;}
.wsc_c00336{word-spacing:-17.633802px;}
.ws9_c00336{word-spacing:-14.943900px;}
.wsf_c00336{word-spacing:-14.107042px;}
.ws10_c00336{word-spacing:-12.074671px;}
.wse_c00336{word-spacing:-11.716018px;}
.wsd_c00336{word-spacing:-11.656242px;}
.ws7_c00336{word-spacing:-9.988424px;}
.ws8_c00336{word-spacing:-9.987499px;}
.wsb_c00336{word-spacing:-7.680144px;}
.ws3_c00336{word-spacing:0.000000px;}
.ws0_c00336{word-spacing:0.043999px;}
.ws5_c00336{word-spacing:0.213446px;}
.ws1_c00336{word-spacing:0.219446px;}
.ws6_c00336{word-spacing:43.038600px;}
._3_c00336{margin-left:-3.376852px;}
._2_c00336{margin-left:-1.075961px;}
._0_c00336{width:1.041538px;}
._1_c00336{width:19.935816px;}
._4_c00336{width:23.790689px;}
._5_c00336{width:40.109428px;}
.fc5_c00336{color:rgb(79,153,5);}
.fc4_c00336{color:rgb(143,89,3);}
.fc3_c00336{color:rgb(0,0,0);}
.fc6_c00336{color:rgb(6,69,173);}
.fc2_c00336{color:rgb(207,92,0);}
.fc1_c00336{color:rgb(0,0,207);}
.fc0_c00336{color:rgb(33,74,135);}
.fs0_c00336{font-size:43.999200px;}
.fs2_c00336{font-size:59.775600px;}
.fs1_c00336{font-size:86.077200px;}
.y0_c00336{bottom:0.000000px;}
.y20_c00336{bottom:44.250000px;}
.y1f_c00336{bottom:82.051500px;}
.y1e_c00336{bottom:99.984000px;}
.y1d_c00336{bottom:117.916500px;}
.y1c_c00336{bottom:135.849000px;}
.y1b_c00336{bottom:162.501000px;}
.y1a_c00336{bottom:189.151500px;}
.y19_c00336{bottom:215.802000px;}
.y18_c00336{bottom:242.454000px;}
.y17_c00336{bottom:284.478000px;}
.y16_c00336{bottom:748.903500px;}
.y15_c00336{bottom:765.342000px;}
.y14_c00336{bottom:781.780500px;}
.y13_c00336{bottom:798.219000px;}
.y12_c00336{bottom:814.657500px;}
.y11_c00336{bottom:831.096000px;}
.y10_c00336{bottom:847.534500px;}
.yf_c00336{bottom:863.973000px;}
.ye_c00336{bottom:880.411500px;}
.yd_c00336{bottom:896.848500px;}
.yc_c00336{bottom:913.287000px;}
.yb_c00336{bottom:946.164000px;}
.ya_c00336{bottom:962.602500px;}
.y9_c00336{bottom:979.041000px;}
.y8_c00336{bottom:1011.918000px;}
.y7_c00336{bottom:1028.356500px;}
.y6_c00336{bottom:1044.795000px;}
.y5_c00336{bottom:1061.232000px;}
.y4_c00336{bottom:1077.670500px;}
.y3_c00336{bottom:1094.109000px;}
.y2_c00336{bottom:1110.547500px;}
.y1_c00336{bottom:1159.863000px;}
.h3_c00336{height:35.190766px;}
.h2_c00336{height:36.007158px;}
.h5_c00336{height:40.511979px;}
.h6_c00336{height:52.332837px;}
.h4_c00336{height:58.337477px;}
.h0_c00336{height:1262.835000px;}
.h1_c00336{height:1263.000000px;}
.w0_c00336{width:892.920000px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x4_c00336{left:127.558500px;}
.x2_c00336{left:137.122500px;}
.x1_c00336{left:143.770500px;}
.x3_c00336{left:177.007500px;}
.x5_c00336{left:435.249000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls4_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.078221pt;}
.ls2_c00336{letter-spacing:0.087539pt;}
.ls3_c00336{letter-spacing:0.092873pt;}
.ls1_c00336{letter-spacing:23.724873pt;}
.ws2_c00336{word-spacing:-23.622682pt;}
.ws4_c00336{word-spacing:-23.544461pt;}
.wsa_c00336{word-spacing:-16.684034pt;}
.wsc_c00336{word-spacing:-15.674491pt;}
.ws9_c00336{word-spacing:-13.283467pt;}
.wsf_c00336{word-spacing:-12.539593pt;}
.ws10_c00336{word-spacing:-10.733041pt;}
.wse_c00336{word-spacing:-10.414238pt;}
.wsd_c00336{word-spacing:-10.361104pt;}
.ws7_c00336{word-spacing:-8.878599pt;}
.ws8_c00336{word-spacing:-8.877777pt;}
.wsb_c00336{word-spacing:-6.826795pt;}
.ws3_c00336{word-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.039110pt;}
.ws5_c00336{word-spacing:0.189730pt;}
.ws1_c00336{word-spacing:0.195063pt;}
.ws6_c00336{word-spacing:38.256533pt;}
._3_c00336{margin-left:-3.001646pt;}
._2_c00336{margin-left:-0.956410pt;}
._0_c00336{width:0.925811pt;}
._1_c00336{width:17.720725pt;}
._4_c00336{width:21.147279pt;}
._5_c00336{width:35.652825pt;}
.fs0_c00336{font-size:39.110400pt;}
.fs2_c00336{font-size:53.133867pt;}
.fs1_c00336{font-size:76.513067pt;}
.y0_c00336{bottom:0.000000pt;}
.y20_c00336{bottom:39.333333pt;}
.y1f_c00336{bottom:72.934667pt;}
.y1e_c00336{bottom:88.874667pt;}
.y1d_c00336{bottom:104.814667pt;}
.y1c_c00336{bottom:120.754667pt;}
.y1b_c00336{bottom:144.445333pt;}
.y1a_c00336{bottom:168.134667pt;}
.y19_c00336{bottom:191.824000pt;}
.y18_c00336{bottom:215.514667pt;}
.y17_c00336{bottom:252.869333pt;}
.y16_c00336{bottom:665.692000pt;}
.y15_c00336{bottom:680.304000pt;}
.y14_c00336{bottom:694.916000pt;}
.y13_c00336{bottom:709.528000pt;}
.y12_c00336{bottom:724.140000pt;}
.y11_c00336{bottom:738.752000pt;}
.y10_c00336{bottom:753.364000pt;}
.yf_c00336{bottom:767.976000pt;}
.ye_c00336{bottom:782.588000pt;}
.yd_c00336{bottom:797.198667pt;}
.yc_c00336{bottom:811.810667pt;}
.yb_c00336{bottom:841.034667pt;}
.ya_c00336{bottom:855.646667pt;}
.y9_c00336{bottom:870.258667pt;}
.y8_c00336{bottom:899.482667pt;}
.y7_c00336{bottom:914.094667pt;}
.y6_c00336{bottom:928.706667pt;}
.y5_c00336{bottom:943.317333pt;}
.y4_c00336{bottom:957.929333pt;}
.y3_c00336{bottom:972.541333pt;}
.y2_c00336{bottom:987.153333pt;}
.y1_c00336{bottom:1030.989333pt;}
.h3_c00336{height:31.280681pt;}
.h2_c00336{height:32.006363pt;}
.h5_c00336{height:36.010648pt;}
.h6_c00336{height:46.518078pt;}
.h4_c00336{height:51.855535pt;}
.h0_c00336{height:1122.520000pt;}
.h1_c00336{height:1122.666667pt;}
.w0_c00336{width:793.706667pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x4_c00336{left:113.385333pt;}
.x2_c00336{left:121.886667pt;}
.x1_c00336{left:127.796000pt;}
.x3_c00336{left:157.340000pt;}
.x5_c00336{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbeab204b728e2e9a8080a75.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.102051;font-style:normal;font-weight:normal;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_9c5bd9de64324994d861ab16.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.048828;font-style:normal;font-weight:normal;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_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls4_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:0.087998px;}
.ls2_c00337{letter-spacing:0.098482px;}
.ls0_c00337{letter-spacing:0.104482px;}
.ls3_c00337{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00337{word-spacing:-26.575517px;}
.ws3_c00337{word-spacing:-26.487518px;}
.ws0_c00337{word-spacing:-18.769538px;}
.ws8_c00337{word-spacing:0.000000px;}
.ws5_c00337{word-spacing:0.043999px;}
.wsb_c00337{word-spacing:0.056767px;}
.ws9_c00337{word-spacing:0.073250px;}
.wsa_c00337{word-spacing:0.083734px;}
.ws2_c00337{word-spacing:0.175997px;}
.wsc_c00337{word-spacing:0.202963px;}
.ws6_c00337{word-spacing:0.213446px;}
.ws7_c00337{word-spacing:0.219446px;}
._0_c00337{margin-left:-3.825638px;}
._1_c00337{width:1.005737px;}
._3_c00337{width:53.283031px;}
._2_c00337{width:79.858548px;}
._5_c00337{width:106.610062px;}
._4_c00337{width:133.452408px;}
.fc5_c00337{color:rgb(0,0,207);}
.fc4_c00337{color:rgb(79,153,5);}
.fc3_c00337{color:rgb(207,92,0);}
.fc2_c00337{color:rgb(33,74,135);}
.fc1_c00337{color:rgb(143,89,3);}
.fc0_c00337{color:rgb(0,0,0);}
.fs1_c00337{font-size:43.999200px;}
.fs0_c00337{font-size:59.775600px;}
.y0_c00337{bottom:0.000000px;}
.y2d_c00337{bottom:44.250000px;}
.y2c_c00337{bottom:96.919500px;}
.y2b_c00337{bottom:113.358000px;}
.y2a_c00337{bottom:129.796500px;}
.y29_c00337{bottom:146.235000px;}
.y28_c00337{bottom:162.673500px;}
.y27_c00337{bottom:179.112000px;}
.y26_c00337{bottom:195.550500px;}
.y25_c00337{bottom:211.989000px;}
.y24_c00337{bottom:228.427500px;}
.y23_c00337{bottom:244.866000px;}
.y22_c00337{bottom:261.304500px;}
.y21_c00337{bottom:294.180000px;}
.y20_c00337{bottom:310.618500px;}
.y1f_c00337{bottom:327.057000px;}
.y1e_c00337{bottom:359.934000px;}
.y1d_c00337{bottom:376.372500px;}
.y1c_c00337{bottom:392.811000px;}
.y1b_c00337{bottom:409.249500px;}
.y1a_c00337{bottom:425.688000px;}
.y19_c00337{bottom:442.125000px;}
.y18_c00337{bottom:458.563500px;}
.y17_c00337{bottom:507.879000px;}
.y16_c00337{bottom:524.317500px;}
.y15_c00337{bottom:540.756000px;}
.y14_c00337{bottom:557.194500px;}
.y13_c00337{bottom:573.633000px;}
.y12_c00337{bottom:590.071500px;}
.y11_c00337{bottom:606.508500px;}
.y10_c00337{bottom:622.947000px;}
.yf_c00337{bottom:639.385500px;}
.ye_c00337{bottom:655.824000px;}
.yd_c00337{bottom:672.262500px;}
.yc_c00337{bottom:688.701000px;}
.yb_c00337{bottom:705.139500px;}
.ya_c00337{bottom:721.578000px;}
.y9_c00337{bottom:738.016500px;}
.y8_c00337{bottom:754.455000px;}
.y7_c00337{bottom:787.330500px;}
.y6_c00337{bottom:803.769000px;}
.y5_c00337{bottom:853.084500px;}
.y4_c00337{bottom:869.523000px;}
.y3_c00337{bottom:885.588000px;}
.y2_c00337{bottom:1141.930500px;}
.y1_c00337{bottom:1159.863000px;}
.h3_c00337{height:35.190766px;}
.h4_c00337{height:36.007158px;}
.h2_c00337{height:52.332837px;}
.h0_c00337{height:1262.835000px;}
.h1_c00337{height:1263.000000px;}
.w0_c00337{width:892.920000px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:127.558500px;}
.x2_c00337{left:137.122500px;}
.x3_c00337{left:143.770500px;}
.x4_c00337{left:177.007500px;}
.x5_c00337{left:435.249000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls4_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:0.078221pt;}
.ls2_c00337{letter-spacing:0.087539pt;}
.ls0_c00337{letter-spacing:0.092873pt;}
.ls3_c00337{letter-spacing:23.724873pt;}
.ws1_c00337{word-spacing:-29.967501pt;}
.ws4_c00337{word-spacing:-23.622682pt;}
.ws3_c00337{word-spacing:-23.544461pt;}
.ws0_c00337{word-spacing:-16.684034pt;}
.ws8_c00337{word-spacing:0.000000pt;}
.ws5_c00337{word-spacing:0.039110pt;}
.wsb_c00337{word-spacing:0.050460pt;}
.ws9_c00337{word-spacing:0.065111pt;}
.wsa_c00337{word-spacing:0.074430pt;}
.ws2_c00337{word-spacing:0.156442pt;}
.wsc_c00337{word-spacing:0.180412pt;}
.ws6_c00337{word-spacing:0.189730pt;}
.ws7_c00337{word-spacing:0.195063pt;}
._0_c00337{margin-left:-3.400567pt;}
._1_c00337{width:0.893988pt;}
._3_c00337{width:47.362694pt;}
._2_c00337{width:70.985376pt;}
._5_c00337{width:94.764499pt;}
._4_c00337{width:118.624363pt;}
.fs1_c00337{font-size:39.110400pt;}
.fs0_c00337{font-size:53.133867pt;}
.y0_c00337{bottom:0.000000pt;}
.y2d_c00337{bottom:39.333333pt;}
.y2c_c00337{bottom:86.150667pt;}
.y2b_c00337{bottom:100.762667pt;}
.y2a_c00337{bottom:115.374667pt;}
.y29_c00337{bottom:129.986667pt;}
.y28_c00337{bottom:144.598667pt;}
.y27_c00337{bottom:159.210667pt;}
.y26_c00337{bottom:173.822667pt;}
.y25_c00337{bottom:188.434667pt;}
.y24_c00337{bottom:203.046667pt;}
.y23_c00337{bottom:217.658667pt;}
.y22_c00337{bottom:232.270667pt;}
.y21_c00337{bottom:261.493333pt;}
.y20_c00337{bottom:276.105333pt;}
.y1f_c00337{bottom:290.717333pt;}
.y1e_c00337{bottom:319.941333pt;}
.y1d_c00337{bottom:334.553333pt;}
.y1c_c00337{bottom:349.165333pt;}
.y1b_c00337{bottom:363.777333pt;}
.y1a_c00337{bottom:378.389333pt;}
.y19_c00337{bottom:393.000000pt;}
.y18_c00337{bottom:407.612000pt;}
.y17_c00337{bottom:451.448000pt;}
.y16_c00337{bottom:466.060000pt;}
.y15_c00337{bottom:480.672000pt;}
.y14_c00337{bottom:495.284000pt;}
.y13_c00337{bottom:509.896000pt;}
.y12_c00337{bottom:524.508000pt;}
.y11_c00337{bottom:539.118667pt;}
.y10_c00337{bottom:553.730667pt;}
.yf_c00337{bottom:568.342667pt;}
.ye_c00337{bottom:582.954667pt;}
.yd_c00337{bottom:597.566667pt;}
.yc_c00337{bottom:612.178667pt;}
.yb_c00337{bottom:626.790667pt;}
.ya_c00337{bottom:641.402667pt;}
.y9_c00337{bottom:656.014667pt;}
.y8_c00337{bottom:670.626667pt;}
.y7_c00337{bottom:699.849333pt;}
.y6_c00337{bottom:714.461333pt;}
.y5_c00337{bottom:758.297333pt;}
.y4_c00337{bottom:772.909333pt;}
.y3_c00337{bottom:787.189333pt;}
.y2_c00337{bottom:1015.049333pt;}
.y1_c00337{bottom:1030.989333pt;}
.h3_c00337{height:31.280681pt;}
.h4_c00337{height:32.006363pt;}
.h2_c00337{height:46.518078pt;}
.h0_c00337{height:1122.520000pt;}
.h1_c00337{height:1122.666667pt;}
.w0_c00337{width:793.706667pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:113.385333pt;}
.x2_c00337{left:121.886667pt;}
.x3_c00337{left:127.796000pt;}
.x4_c00337{left:157.340000pt;}
.x5_c00337{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9ceb84b94424ffa95a8fca9.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:0.893555;font-style:normal;font-weight:normal;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_3b88699411248df93473b1ed.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.083496;font-style:normal;font-weight:normal;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_6abe21b5686e2714dc4eec24.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_353c4b5045cc9635a5c0af61.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_a695750565455f29f83e21b4.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.048828;font-style: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;}
.ls4_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:0.087998px;}
.ls2_c00338{letter-spacing:0.098482px;}
.ls1_c00338{letter-spacing:0.104482px;}
.ls3_c00338{letter-spacing:26.732482px;}
.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;}
}
.ws2_c00338{word-spacing:-26.575517px;}
.wse_c00338{word-spacing:-26.487518px;}
.ws8_c00338{word-spacing:-23.099578px;}
.ws7_c00338{word-spacing:-23.013606px;}
.wsb_c00338{word-spacing:-19.845499px;}
.ws5_c00338{word-spacing:-18.769538px;}
.wsc_c00338{word-spacing:-18.410885px;}
.ws9_c00338{word-spacing:-17.813129px;}
.ws4_c00338{word-spacing:-14.943900px;}
.ws6_c00338{word-spacing:-12.120144px;}
.wsa_c00338{word-spacing:-11.503015px;}
.ws1_c00338{word-spacing:-9.988424px;}
.ws3_c00338{word-spacing:-9.987499px;}
.ws12_c00338{word-spacing:0.000000px;}
.wsf_c00338{word-spacing:0.043999px;}
.ws13_c00338{word-spacing:0.053933px;}
.wsd_c00338{word-spacing:0.175997px;}
.ws10_c00338{word-spacing:0.213446px;}
.ws11_c00338{word-spacing:0.219446px;}
.ws0_c00338{word-spacing:43.038600px;}
._0_c00338{margin-left:-6.369713px;}
._4_c00338{margin-left:-3.825638px;}
._1_c00338{margin-left:-1.549390px;}
._5_c00338{width:1.005737px;}
._2_c00338{width:19.935816px;}
._3_c00338{width:21.339889px;}
.fc6_c00338{color:rgb(0,0,207);}
.fc5_c00338{color:rgb(79,153,5);}
.fc3_c00338{color:rgb(33,74,135);}
.fc2_c00338{color:rgb(143,89,3);}
.fc4_c00338{color:rgb(207,92,0);}
.fc1_c00338{color:rgb(6,69,173);}
.fc0_c00338{color:rgb(0,0,0);}
.fs2_c00338{font-size:43.999200px;}
.fs1_c00338{font-size:59.775600px;}
.fs0_c00338{font-size:86.077200px;}
.y0_c00338{bottom:0.000000px;}
.y1e_c00338{bottom:44.250000px;}
.y1d_c00338{bottom:86.982000px;}
.y1c_c00338{bottom:103.420500px;}
.y1b_c00338{bottom:119.859000px;}
.y1a_c00338{bottom:136.297500px;}
.y19_c00338{bottom:152.736000px;}
.y18_c00338{bottom:185.613000px;}
.y17_c00338{bottom:202.051500px;}
.y16_c00338{bottom:234.927000px;}
.y15_c00338{bottom:251.365500px;}
.y14_c00338{bottom:267.804000px;}
.y13_c00338{bottom:317.119500px;}
.y12_c00338{bottom:333.558000px;}
.y11_c00338{bottom:349.996500px;}
.y10_c00338{bottom:366.435000px;}
.yf_c00338{bottom:382.873500px;}
.ye_c00338{bottom:415.749000px;}
.yd_c00338{bottom:432.187500px;}
.yc_c00338{bottom:448.252500px;}
.yb_c00338{bottom:495.994500px;}
.ya_c00338{bottom:513.927000px;}
.y9_c00338{bottom:531.859500px;}
.y8_c00338{bottom:549.792000px;}
.y7_c00338{bottom:567.726000px;}
.y6_c00338{bottom:585.658500px;}
.y5_c00338{bottom:612.480000px;}
.y4_c00338{bottom:639.301500px;}
.y3_c00338{bottom:666.123000px;}
.y2_c00338{bottom:692.944500px;}
.y1_c00338{bottom:735.139500px;}
.h5_c00338{height:35.190766px;}
.h6_c00338{height:36.007158px;}
.h3_c00338{height:40.511979px;}
.h4_c00338{height:52.332837px;}
.h2_c00338{height:58.337477px;}
.h0_c00338{height:1262.835000px;}
.h1_c00338{height:1263.000000px;}
.w0_c00338{width:892.920000px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:127.558500px;}
.x2_c00338{left:137.122500px;}
.x3_c00338{left:435.249000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls4_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:0.078221pt;}
.ls2_c00338{letter-spacing:0.087539pt;}
.ls1_c00338{letter-spacing:0.092873pt;}
.ls3_c00338{letter-spacing:23.762206pt;}
.ws2_c00338{word-spacing:-23.622682pt;}
.wse_c00338{word-spacing:-23.544461pt;}
.ws8_c00338{word-spacing:-20.532958pt;}
.ws7_c00338{word-spacing:-20.456539pt;}
.wsb_c00338{word-spacing:-17.640444pt;}
.ws5_c00338{word-spacing:-16.684034pt;}
.wsc_c00338{word-spacing:-16.365231pt;}
.ws9_c00338{word-spacing:-15.833892pt;}
.ws4_c00338{word-spacing:-13.283467pt;}
.ws6_c00338{word-spacing:-10.773461pt;}
.wsa_c00338{word-spacing:-10.224902pt;}
.ws1_c00338{word-spacing:-8.878599pt;}
.ws3_c00338{word-spacing:-8.877777pt;}
.ws12_c00338{word-spacing:0.000000pt;}
.wsf_c00338{word-spacing:0.039110pt;}
.ws13_c00338{word-spacing:0.047940pt;}
.wsd_c00338{word-spacing:0.156442pt;}
.ws10_c00338{word-spacing:0.189730pt;}
.ws11_c00338{word-spacing:0.195063pt;}
.ws0_c00338{word-spacing:38.256533pt;}
._0_c00338{margin-left:-5.661967pt;}
._4_c00338{margin-left:-3.400567pt;}
._1_c00338{margin-left:-1.377235pt;}
._5_c00338{width:0.893988pt;}
._2_c00338{width:17.720725pt;}
._3_c00338{width:18.968790pt;}
.fs2_c00338{font-size:39.110400pt;}
.fs1_c00338{font-size:53.133867pt;}
.fs0_c00338{font-size:76.513067pt;}
.y0_c00338{bottom:0.000000pt;}
.y1e_c00338{bottom:39.333333pt;}
.y1d_c00338{bottom:77.317333pt;}
.y1c_c00338{bottom:91.929333pt;}
.y1b_c00338{bottom:106.541333pt;}
.y1a_c00338{bottom:121.153333pt;}
.y19_c00338{bottom:135.765333pt;}
.y18_c00338{bottom:164.989333pt;}
.y17_c00338{bottom:179.601333pt;}
.y16_c00338{bottom:208.824000pt;}
.y15_c00338{bottom:223.436000pt;}
.y14_c00338{bottom:238.048000pt;}
.y13_c00338{bottom:281.884000pt;}
.y12_c00338{bottom:296.496000pt;}
.y11_c00338{bottom:311.108000pt;}
.y10_c00338{bottom:325.720000pt;}
.yf_c00338{bottom:340.332000pt;}
.ye_c00338{bottom:369.554667pt;}
.yd_c00338{bottom:384.166667pt;}
.yc_c00338{bottom:398.446667pt;}
.yb_c00338{bottom:440.884000pt;}
.ya_c00338{bottom:456.824000pt;}
.y9_c00338{bottom:472.764000pt;}
.y8_c00338{bottom:488.704000pt;}
.y7_c00338{bottom:504.645333pt;}
.y6_c00338{bottom:520.585333pt;}
.y5_c00338{bottom:544.426667pt;}
.y4_c00338{bottom:568.268000pt;}
.y3_c00338{bottom:592.109333pt;}
.y2_c00338{bottom:615.950667pt;}
.y1_c00338{bottom:653.457333pt;}
.h5_c00338{height:31.280681pt;}
.h6_c00338{height:32.006363pt;}
.h3_c00338{height:36.010648pt;}
.h4_c00338{height:46.518078pt;}
.h2_c00338{height:51.855535pt;}
.h0_c00338{height:1122.520000pt;}
.h1_c00338{height:1122.666667pt;}
.w0_c00338{width:793.706667pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:113.385333pt;}
.x2_c00338{left:121.886667pt;}
.x3_c00338{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bc36d018481443fd58378a2.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.083496;font-style:normal;font-weight:normal;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_754d40453d9536399c563bd8.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.048828;font-style:normal;font-weight:normal;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_7c080921cc9ad9aa332faf10.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.014648;font-style:normal;font-weight:normal;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_7012f1bbfbd81c0e78bec442.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls4_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.087998px;}
.ls1_c00339{letter-spacing:0.098482px;}
.ls2_c00339{letter-spacing:0.104482px;}
.ls3_c00339{letter-spacing:26.690482px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-26.575517px;}
.ws1_c00339{word-spacing:-26.487518px;}
.ws2_c00339{word-spacing:0.000000px;}
.ws8_c00339{word-spacing:0.026966px;}
.ws9_c00339{word-spacing:0.043999px;}
.ws6_c00339{word-spacing:0.046284px;}
.ws3_c00339{word-spacing:0.056767px;}
.ws5_c00339{word-spacing:0.073250px;}
.ws7_c00339{word-spacing:0.083734px;}
.ws4_c00339{word-spacing:0.202963px;}
.wsb_c00339{word-spacing:0.213446px;}
.wsa_c00339{word-spacing:0.219446px;}
._5_c00339{width:1.041538px;}
._0_c00339{width:53.415029px;}
._1_c00339{width:79.858548px;}
._3_c00339{width:106.434065px;}
._2_c00339{width:133.452408px;}
._4_c00339{width:186.179933px;}
.fc5_c00339{color:rgb(207,92,0);}
.fc4_c00339{color:rgb(0,0,207);}
.fc3_c00339{color:rgb(79,153,5);}
.fc2_c00339{color:rgb(33,74,135);}
.fc1_c00339{color:rgb(143,89,3);}
.fc0_c00339{color:rgb(0,0,0);}
.fs0_c00339{font-size:43.999200px;}
.fs1_c00339{font-size:59.775600px;}
.y0_c00339{bottom:0.000000px;}
.y26_c00339{bottom:44.250000px;}
.y25_c00339{bottom:485.890500px;}
.y24_c00339{bottom:502.329000px;}
.y23_c00339{bottom:518.767500px;}
.y22_c00339{bottom:535.206000px;}
.y21_c00339{bottom:551.643000px;}
.y20_c00339{bottom:568.081500px;}
.y1f_c00339{bottom:584.520000px;}
.y1e_c00339{bottom:600.958500px;}
.y1d_c00339{bottom:617.397000px;}
.y1c_c00339{bottom:633.835500px;}
.y1b_c00339{bottom:650.274000px;}
.y1a_c00339{bottom:683.151000px;}
.y19_c00339{bottom:699.589500px;}
.y18_c00339{bottom:716.028000px;}
.y17_c00339{bottom:748.903500px;}
.y16_c00339{bottom:765.342000px;}
.y15_c00339{bottom:781.780500px;}
.y14_c00339{bottom:798.219000px;}
.y13_c00339{bottom:814.657500px;}
.y12_c00339{bottom:831.096000px;}
.y11_c00339{bottom:847.534500px;}
.y10_c00339{bottom:863.973000px;}
.yf_c00339{bottom:880.411500px;}
.ye_c00339{bottom:896.848500px;}
.yd_c00339{bottom:913.287000px;}
.yc_c00339{bottom:929.725500px;}
.yb_c00339{bottom:946.164000px;}
.ya_c00339{bottom:962.602500px;}
.y9_c00339{bottom:979.041000px;}
.y8_c00339{bottom:995.479500px;}
.y7_c00339{bottom:1011.918000px;}
.y6_c00339{bottom:1028.356500px;}
.y5_c00339{bottom:1044.795000px;}
.y4_c00339{bottom:1094.109000px;}
.y3_c00339{bottom:1110.547500px;}
.y2_c00339{bottom:1126.986000px;}
.y1_c00339{bottom:1143.424500px;}
.h3_c00339{height:35.190766px;}
.h2_c00339{height:36.007158px;}
.h4_c00339{height:52.332837px;}
.h0_c00339{height:1262.835000px;}
.h1_c00339{height:1263.000000px;}
.w0_c00339{width:892.920000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:137.122500px;}
.x3_c00339{left:143.770500px;}
.x4_c00339{left:177.007500px;}
.x2_c00339{left:203.596500px;}
.x5_c00339{left:435.249000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls4_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.078221pt;}
.ls1_c00339{letter-spacing:0.087539pt;}
.ls2_c00339{letter-spacing:0.092873pt;}
.ls3_c00339{letter-spacing:23.724873pt;}
.ws0_c00339{word-spacing:-23.622682pt;}
.ws1_c00339{word-spacing:-23.544461pt;}
.ws2_c00339{word-spacing:0.000000pt;}
.ws8_c00339{word-spacing:0.023970pt;}
.ws9_c00339{word-spacing:0.039110pt;}
.ws6_c00339{word-spacing:0.041141pt;}
.ws3_c00339{word-spacing:0.050460pt;}
.ws5_c00339{word-spacing:0.065111pt;}
.ws7_c00339{word-spacing:0.074430pt;}
.ws4_c00339{word-spacing:0.180412pt;}
.wsb_c00339{word-spacing:0.189730pt;}
.wsa_c00339{word-spacing:0.195063pt;}
._5_c00339{width:0.925811pt;}
._0_c00339{width:47.480026pt;}
._1_c00339{width:70.985376pt;}
._3_c00339{width:94.608058pt;}
._2_c00339{width:118.624363pt;}
._4_c00339{width:165.493274pt;}
.fs0_c00339{font-size:39.110400pt;}
.fs1_c00339{font-size:53.133867pt;}
.y0_c00339{bottom:0.000000pt;}
.y26_c00339{bottom:39.333333pt;}
.y25_c00339{bottom:431.902667pt;}
.y24_c00339{bottom:446.514667pt;}
.y23_c00339{bottom:461.126667pt;}
.y22_c00339{bottom:475.738667pt;}
.y21_c00339{bottom:490.349333pt;}
.y20_c00339{bottom:504.961333pt;}
.y1f_c00339{bottom:519.573333pt;}
.y1e_c00339{bottom:534.185333pt;}
.y1d_c00339{bottom:548.797333pt;}
.y1c_c00339{bottom:563.409333pt;}
.y1b_c00339{bottom:578.021333pt;}
.y1a_c00339{bottom:607.245333pt;}
.y19_c00339{bottom:621.857333pt;}
.y18_c00339{bottom:636.469333pt;}
.y17_c00339{bottom:665.692000pt;}
.y16_c00339{bottom:680.304000pt;}
.y15_c00339{bottom:694.916000pt;}
.y14_c00339{bottom:709.528000pt;}
.y13_c00339{bottom:724.140000pt;}
.y12_c00339{bottom:738.752000pt;}
.y11_c00339{bottom:753.364000pt;}
.y10_c00339{bottom:767.976000pt;}
.yf_c00339{bottom:782.588000pt;}
.ye_c00339{bottom:797.198667pt;}
.yd_c00339{bottom:811.810667pt;}
.yc_c00339{bottom:826.422667pt;}
.yb_c00339{bottom:841.034667pt;}
.ya_c00339{bottom:855.646667pt;}
.y9_c00339{bottom:870.258667pt;}
.y8_c00339{bottom:884.870667pt;}
.y7_c00339{bottom:899.482667pt;}
.y6_c00339{bottom:914.094667pt;}
.y5_c00339{bottom:928.706667pt;}
.y4_c00339{bottom:972.541333pt;}
.y3_c00339{bottom:987.153333pt;}
.y2_c00339{bottom:1001.765333pt;}
.y1_c00339{bottom:1016.377333pt;}
.h3_c00339{height:31.280681pt;}
.h2_c00339{height:32.006363pt;}
.h4_c00339{height:46.518078pt;}
.h0_c00339{height:1122.520000pt;}
.h1_c00339{height:1122.666667pt;}
.w0_c00339{width:793.706667pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:121.886667pt;}
.x3_c00339{left:127.796000pt;}
.x4_c00339{left:157.340000pt;}
.x2_c00339{left:180.974667pt;}
.x5_c00339{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e814a114204dddcd6dc26ad.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:0.893555;font-style:normal;font-weight:normal;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_e1e7521b28e8e4a3d103e8d3.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.083496;font-style:normal;font-weight:normal;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_2945c5482647e753338fbca1.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.048828;font-style: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;}
.ls3_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:0.087998px;}
.ls2_c00340{letter-spacing:0.098482px;}
.ls1_c00340{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00340{word-spacing:-33.713438px;}
.ws2_c00340{word-spacing:-26.575517px;}
.wse_c00340{word-spacing:-26.487518px;}
.ws5_c00340{word-spacing:-18.769538px;}
.ws4_c00340{word-spacing:-14.943900px;}
.ws7_c00340{word-spacing:-14.465695px;}
.wsa_c00340{word-spacing:-14.107042px;}
.wsb_c00340{word-spacing:-12.074671px;}
.ws9_c00340{word-spacing:-11.716018px;}
.ws8_c00340{word-spacing:-11.656242px;}
.ws1_c00340{word-spacing:-9.988424px;}
.ws3_c00340{word-spacing:-9.987499px;}
.ws6_c00340{word-spacing:-1.386144px;}
.ws12_c00340{word-spacing:0.000000px;}
.wsf_c00340{word-spacing:0.043999px;}
.ws15_c00340{word-spacing:0.056767px;}
.ws13_c00340{word-spacing:0.073250px;}
.ws14_c00340{word-spacing:0.083734px;}
.wsd_c00340{word-spacing:0.175997px;}
.ws16_c00340{word-spacing:0.202963px;}
.ws10_c00340{word-spacing:0.213446px;}
.ws11_c00340{word-spacing:0.219446px;}
.ws0_c00340{word-spacing:43.038600px;}
._0_c00340{margin-left:-6.369713px;}
._3_c00340{margin-left:-3.376852px;}
._1_c00340{margin-left:-1.549390px;}
._6_c00340{width:1.005737px;}
._2_c00340{width:19.935816px;}
._4_c00340{width:23.790689px;}
._5_c00340{width:40.109428px;}
._8_c00340{width:53.283031px;}
._7_c00340{width:79.858548px;}
._9_c00340{width:133.452408px;}
.fc6_c00340{color:rgb(0,0,207);}
.fc5_c00340{color:rgb(79,153,5);}
.fc3_c00340{color:rgb(33,74,135);}
.fc2_c00340{color:rgb(143,89,3);}
.fc4_c00340{color:rgb(207,92,0);}
.fc1_c00340{color:rgb(6,69,173);}
.fc0_c00340{color:rgb(0,0,0);}
.fs2_c00340{font-size:43.999200px;}
.fs1_c00340{font-size:59.775600px;}
.fs0_c00340{font-size:86.077200px;}
.y0_c00340{bottom:0.000000px;}
.y20_c00340{bottom:44.250000px;}
.y1f_c00340{bottom:86.982000px;}
.y1e_c00340{bottom:103.420500px;}
.y1d_c00340{bottom:119.859000px;}
.y1c_c00340{bottom:136.297500px;}
.y1b_c00340{bottom:152.736000px;}
.y1a_c00340{bottom:169.174500px;}
.y19_c00340{bottom:185.613000px;}
.y18_c00340{bottom:202.051500px;}
.y17_c00340{bottom:218.490000px;}
.y16_c00340{bottom:234.927000px;}
.y15_c00340{bottom:251.365500px;}
.y14_c00340{bottom:267.804000px;}
.y13_c00340{bottom:284.242500px;}
.y12_c00340{bottom:300.681000px;}
.y11_c00340{bottom:317.119500px;}
.y10_c00340{bottom:349.996500px;}
.yf_c00340{bottom:366.435000px;}
.ye_c00340{bottom:415.749000px;}
.yd_c00340{bottom:432.187500px;}
.yc_c00340{bottom:448.252500px;}
.yb_c00340{bottom:493.890000px;}
.ya_c00340{bottom:511.822500px;}
.y9_c00340{bottom:529.756500px;}
.y8_c00340{bottom:547.689000px;}
.y7_c00340{bottom:565.621500px;}
.y6_c00340{bottom:583.554000px;}
.y5_c00340{bottom:610.633500px;}
.y4_c00340{bottom:637.714500px;}
.y3_c00340{bottom:664.794000px;}
.y2_c00340{bottom:691.873500px;}
.y1_c00340{bottom:734.407500px;}
.h5_c00340{height:35.190766px;}
.h6_c00340{height:36.007158px;}
.h3_c00340{height:40.511979px;}
.h4_c00340{height:52.332837px;}
.h2_c00340{height:58.337477px;}
.h0_c00340{height:1262.835000px;}
.h1_c00340{height:1263.000000px;}
.w0_c00340{width:892.920000px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:127.558500px;}
.x2_c00340{left:137.122500px;}
.x3_c00340{left:143.770500px;}
.x4_c00340{left:435.249000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls3_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:0.078221pt;}
.ls2_c00340{letter-spacing:0.087539pt;}
.ls1_c00340{letter-spacing:0.092873pt;}
.wsc_c00340{word-spacing:-29.967501pt;}
.ws2_c00340{word-spacing:-23.622682pt;}
.wse_c00340{word-spacing:-23.544461pt;}
.ws5_c00340{word-spacing:-16.684034pt;}
.ws4_c00340{word-spacing:-13.283467pt;}
.ws7_c00340{word-spacing:-12.858396pt;}
.wsa_c00340{word-spacing:-12.539593pt;}
.wsb_c00340{word-spacing:-10.733041pt;}
.ws9_c00340{word-spacing:-10.414238pt;}
.ws8_c00340{word-spacing:-10.361104pt;}
.ws1_c00340{word-spacing:-8.878599pt;}
.ws3_c00340{word-spacing:-8.877777pt;}
.ws6_c00340{word-spacing:-1.232128pt;}
.ws12_c00340{word-spacing:0.000000pt;}
.wsf_c00340{word-spacing:0.039110pt;}
.ws15_c00340{word-spacing:0.050460pt;}
.ws13_c00340{word-spacing:0.065111pt;}
.ws14_c00340{word-spacing:0.074430pt;}
.wsd_c00340{word-spacing:0.156442pt;}
.ws16_c00340{word-spacing:0.180412pt;}
.ws10_c00340{word-spacing:0.189730pt;}
.ws11_c00340{word-spacing:0.195063pt;}
.ws0_c00340{word-spacing:38.256533pt;}
._0_c00340{margin-left:-5.661967pt;}
._3_c00340{margin-left:-3.001646pt;}
._1_c00340{margin-left:-1.377235pt;}
._6_c00340{width:0.893988pt;}
._2_c00340{width:17.720725pt;}
._4_c00340{width:21.147279pt;}
._5_c00340{width:35.652825pt;}
._8_c00340{width:47.362694pt;}
._7_c00340{width:70.985376pt;}
._9_c00340{width:118.624363pt;}
.fs2_c00340{font-size:39.110400pt;}
.fs1_c00340{font-size:53.133867pt;}
.fs0_c00340{font-size:76.513067pt;}
.y0_c00340{bottom:0.000000pt;}
.y20_c00340{bottom:39.333333pt;}
.y1f_c00340{bottom:77.317333pt;}
.y1e_c00340{bottom:91.929333pt;}
.y1d_c00340{bottom:106.541333pt;}
.y1c_c00340{bottom:121.153333pt;}
.y1b_c00340{bottom:135.765333pt;}
.y1a_c00340{bottom:150.377333pt;}
.y19_c00340{bottom:164.989333pt;}
.y18_c00340{bottom:179.601333pt;}
.y17_c00340{bottom:194.213333pt;}
.y16_c00340{bottom:208.824000pt;}
.y15_c00340{bottom:223.436000pt;}
.y14_c00340{bottom:238.048000pt;}
.y13_c00340{bottom:252.660000pt;}
.y12_c00340{bottom:267.272000pt;}
.y11_c00340{bottom:281.884000pt;}
.y10_c00340{bottom:311.108000pt;}
.yf_c00340{bottom:325.720000pt;}
.ye_c00340{bottom:369.554667pt;}
.yd_c00340{bottom:384.166667pt;}
.yc_c00340{bottom:398.446667pt;}
.yb_c00340{bottom:439.013333pt;}
.ya_c00340{bottom:454.953333pt;}
.y9_c00340{bottom:470.894667pt;}
.y8_c00340{bottom:486.834667pt;}
.y7_c00340{bottom:502.774667pt;}
.y6_c00340{bottom:518.714667pt;}
.y5_c00340{bottom:542.785333pt;}
.y4_c00340{bottom:566.857333pt;}
.y3_c00340{bottom:590.928000pt;}
.y2_c00340{bottom:614.998667pt;}
.y1_c00340{bottom:652.806667pt;}
.h5_c00340{height:31.280681pt;}
.h6_c00340{height:32.006363pt;}
.h3_c00340{height:36.010648pt;}
.h4_c00340{height:46.518078pt;}
.h2_c00340{height:51.855535pt;}
.h0_c00340{height:1122.520000pt;}
.h1_c00340{height:1122.666667pt;}
.w0_c00340{width:793.706667pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:113.385333pt;}
.x2_c00340{left:121.886667pt;}
.x3_c00340{left:127.796000pt;}
.x4_c00340{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b1d735bf5b7bdfdafdf082c.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_b9481e9b23528c1835fb4834.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_2f3420d6bf626956a15fd158.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_bcf8d114dd5d5f81929c1441.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.102051;font-style: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;}
.ls4_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:0.087998px;}
.ls2_c00341{letter-spacing:0.098482px;}
.ls3_c00341{letter-spacing:0.104482px;}
.ls1_c00341{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00341{word-spacing:-26.575517px;}
.ws4_c00341{word-spacing:-26.487518px;}
.wsa_c00341{word-spacing:-18.769538px;}
.wsc_c00341{word-spacing:-16.019861px;}
.ws9_c00341{word-spacing:-14.943900px;}
.wsf_c00341{word-spacing:-14.107042px;}
.ws10_c00341{word-spacing:-12.074671px;}
.wse_c00341{word-spacing:-11.716018px;}
.wsd_c00341{word-spacing:-11.656242px;}
.ws7_c00341{word-spacing:-9.988424px;}
.ws8_c00341{word-spacing:-9.987499px;}
.wsb_c00341{word-spacing:-4.536144px;}
.ws3_c00341{word-spacing:0.000000px;}
.ws0_c00341{word-spacing:0.043999px;}
.ws5_c00341{word-spacing:0.213446px;}
.ws1_c00341{word-spacing:0.219446px;}
.ws6_c00341{word-spacing:43.038600px;}
._2_c00341{margin-left:-6.369713px;}
._5_c00341{margin-left:-3.376852px;}
._3_c00341{margin-left:-1.549390px;}
._1_c00341{width:1.041538px;}
._4_c00341{width:19.935816px;}
._6_c00341{width:23.790689px;}
._7_c00341{width:40.109428px;}
._0_c00341{width:53.415029px;}
.fc5_c00341{color:rgb(79,153,5);}
.fc4_c00341{color:rgb(143,89,3);}
.fc3_c00341{color:rgb(0,0,0);}
.fc6_c00341{color:rgb(6,69,173);}
.fc2_c00341{color:rgb(207,92,0);}
.fc1_c00341{color:rgb(0,0,207);}
.fc0_c00341{color:rgb(33,74,135);}
.fs0_c00341{font-size:43.999200px;}
.fs2_c00341{font-size:59.775600px;}
.fs1_c00341{font-size:86.077200px;}
.y0_c00341{bottom:0.000000px;}
.y20_c00341{bottom:44.250000px;}
.y1f_c00341{bottom:82.051500px;}
.y1e_c00341{bottom:99.984000px;}
.y1d_c00341{bottom:117.916500px;}
.y1c_c00341{bottom:135.849000px;}
.y1b_c00341{bottom:162.501000px;}
.y1a_c00341{bottom:189.151500px;}
.y19_c00341{bottom:215.802000px;}
.y18_c00341{bottom:242.454000px;}
.y17_c00341{bottom:284.478000px;}
.y16_c00341{bottom:748.903500px;}
.y15_c00341{bottom:765.342000px;}
.y14_c00341{bottom:781.780500px;}
.y13_c00341{bottom:798.219000px;}
.y12_c00341{bottom:814.657500px;}
.y11_c00341{bottom:831.096000px;}
.y10_c00341{bottom:847.534500px;}
.yf_c00341{bottom:863.973000px;}
.ye_c00341{bottom:880.411500px;}
.yd_c00341{bottom:896.848500px;}
.yc_c00341{bottom:913.287000px;}
.yb_c00341{bottom:946.164000px;}
.ya_c00341{bottom:962.602500px;}
.y9_c00341{bottom:979.041000px;}
.y8_c00341{bottom:1011.918000px;}
.y7_c00341{bottom:1028.356500px;}
.y6_c00341{bottom:1044.795000px;}
.y5_c00341{bottom:1061.232000px;}
.y4_c00341{bottom:1077.670500px;}
.y3_c00341{bottom:1094.109000px;}
.y2_c00341{bottom:1110.547500px;}
.y1_c00341{bottom:1159.863000px;}
.h3_c00341{height:35.190766px;}
.h2_c00341{height:36.007158px;}
.h5_c00341{height:40.511979px;}
.h6_c00341{height:52.332837px;}
.h4_c00341{height:58.337477px;}
.h0_c00341{height:1262.835000px;}
.h1_c00341{height:1263.000000px;}
.w0_c00341{width:892.920000px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x4_c00341{left:127.558500px;}
.x2_c00341{left:137.122500px;}
.x1_c00341{left:143.770500px;}
.x3_c00341{left:177.007500px;}
.x5_c00341{left:435.249000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls4_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:0.078221pt;}
.ls2_c00341{letter-spacing:0.087539pt;}
.ls3_c00341{letter-spacing:0.092873pt;}
.ls1_c00341{letter-spacing:23.724873pt;}
.ws2_c00341{word-spacing:-23.622682pt;}
.ws4_c00341{word-spacing:-23.544461pt;}
.wsa_c00341{word-spacing:-16.684034pt;}
.wsc_c00341{word-spacing:-14.239876pt;}
.ws9_c00341{word-spacing:-13.283467pt;}
.wsf_c00341{word-spacing:-12.539593pt;}
.ws10_c00341{word-spacing:-10.733041pt;}
.wse_c00341{word-spacing:-10.414238pt;}
.wsd_c00341{word-spacing:-10.361104pt;}
.ws7_c00341{word-spacing:-8.878599pt;}
.ws8_c00341{word-spacing:-8.877777pt;}
.wsb_c00341{word-spacing:-4.032128pt;}
.ws3_c00341{word-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.039110pt;}
.ws5_c00341{word-spacing:0.189730pt;}
.ws1_c00341{word-spacing:0.195063pt;}
.ws6_c00341{word-spacing:38.256533pt;}
._2_c00341{margin-left:-5.661967pt;}
._5_c00341{margin-left:-3.001646pt;}
._3_c00341{margin-left:-1.377235pt;}
._1_c00341{width:0.925811pt;}
._4_c00341{width:17.720725pt;}
._6_c00341{width:21.147279pt;}
._7_c00341{width:35.652825pt;}
._0_c00341{width:47.480026pt;}
.fs0_c00341{font-size:39.110400pt;}
.fs2_c00341{font-size:53.133867pt;}
.fs1_c00341{font-size:76.513067pt;}
.y0_c00341{bottom:0.000000pt;}
.y20_c00341{bottom:39.333333pt;}
.y1f_c00341{bottom:72.934667pt;}
.y1e_c00341{bottom:88.874667pt;}
.y1d_c00341{bottom:104.814667pt;}
.y1c_c00341{bottom:120.754667pt;}
.y1b_c00341{bottom:144.445333pt;}
.y1a_c00341{bottom:168.134667pt;}
.y19_c00341{bottom:191.824000pt;}
.y18_c00341{bottom:215.514667pt;}
.y17_c00341{bottom:252.869333pt;}
.y16_c00341{bottom:665.692000pt;}
.y15_c00341{bottom:680.304000pt;}
.y14_c00341{bottom:694.916000pt;}
.y13_c00341{bottom:709.528000pt;}
.y12_c00341{bottom:724.140000pt;}
.y11_c00341{bottom:738.752000pt;}
.y10_c00341{bottom:753.364000pt;}
.yf_c00341{bottom:767.976000pt;}
.ye_c00341{bottom:782.588000pt;}
.yd_c00341{bottom:797.198667pt;}
.yc_c00341{bottom:811.810667pt;}
.yb_c00341{bottom:841.034667pt;}
.ya_c00341{bottom:855.646667pt;}
.y9_c00341{bottom:870.258667pt;}
.y8_c00341{bottom:899.482667pt;}
.y7_c00341{bottom:914.094667pt;}
.y6_c00341{bottom:928.706667pt;}
.y5_c00341{bottom:943.317333pt;}
.y4_c00341{bottom:957.929333pt;}
.y3_c00341{bottom:972.541333pt;}
.y2_c00341{bottom:987.153333pt;}
.y1_c00341{bottom:1030.989333pt;}
.h3_c00341{height:31.280681pt;}
.h2_c00341{height:32.006363pt;}
.h5_c00341{height:36.010648pt;}
.h6_c00341{height:46.518078pt;}
.h4_c00341{height:51.855535pt;}
.h0_c00341{height:1122.520000pt;}
.h1_c00341{height:1122.666667pt;}
.w0_c00341{width:793.706667pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x4_c00341{left:113.385333pt;}
.x2_c00341{left:121.886667pt;}
.x1_c00341{left:127.796000pt;}
.x3_c00341{left:157.340000pt;}
.x5_c00341{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3a0971c7f58d0088de6b4bb.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.102051;font-style:normal;font-weight:normal;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_e1a8e135f7054a4036a1d8b7.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.048828;font-style:normal;font-weight:normal;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_e3a921f5a334054e06f7592c.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls4_c00342{letter-spacing:0.000000px;}
.ls1_c00342{letter-spacing:0.087998px;}
.ls2_c00342{letter-spacing:0.098482px;}
.ls0_c00342{letter-spacing:0.104482px;}
.ls3_c00342{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00342{word-spacing:-26.575517px;}
.ws3_c00342{word-spacing:-26.487518px;}
.ws0_c00342{word-spacing:-18.769538px;}
.ws8_c00342{word-spacing:0.000000px;}
.ws5_c00342{word-spacing:0.043999px;}
.wsb_c00342{word-spacing:0.056767px;}
.ws9_c00342{word-spacing:0.073250px;}
.wsa_c00342{word-spacing:0.083734px;}
.ws2_c00342{word-spacing:0.175997px;}
.wsc_c00342{word-spacing:0.202963px;}
.ws6_c00342{word-spacing:0.213446px;}
.ws7_c00342{word-spacing:0.219446px;}
._0_c00342{margin-left:-3.825638px;}
._1_c00342{width:1.005737px;}
._3_c00342{width:53.283031px;}
._2_c00342{width:79.858548px;}
._4_c00342{width:133.452408px;}
.fc5_c00342{color:rgb(0,0,207);}
.fc4_c00342{color:rgb(79,153,5);}
.fc3_c00342{color:rgb(207,92,0);}
.fc2_c00342{color:rgb(33,74,135);}
.fc1_c00342{color:rgb(143,89,3);}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:43.999200px;}
.fs0_c00342{font-size:59.775600px;}
.y0_c00342{bottom:0.000000px;}
.y2d_c00342{bottom:44.250000px;}
.y2c_c00342{bottom:96.919500px;}
.y2b_c00342{bottom:113.358000px;}
.y2a_c00342{bottom:129.796500px;}
.y29_c00342{bottom:146.235000px;}
.y28_c00342{bottom:162.673500px;}
.y27_c00342{bottom:179.112000px;}
.y26_c00342{bottom:195.550500px;}
.y25_c00342{bottom:211.989000px;}
.y24_c00342{bottom:228.427500px;}
.y23_c00342{bottom:244.866000px;}
.y22_c00342{bottom:261.304500px;}
.y21_c00342{bottom:294.180000px;}
.y20_c00342{bottom:310.618500px;}
.y1f_c00342{bottom:327.057000px;}
.y1e_c00342{bottom:359.934000px;}
.y1d_c00342{bottom:376.372500px;}
.y1c_c00342{bottom:392.811000px;}
.y1b_c00342{bottom:409.249500px;}
.y1a_c00342{bottom:425.688000px;}
.y19_c00342{bottom:442.125000px;}
.y18_c00342{bottom:458.563500px;}
.y17_c00342{bottom:507.879000px;}
.y16_c00342{bottom:524.317500px;}
.y15_c00342{bottom:540.756000px;}
.y14_c00342{bottom:557.194500px;}
.y13_c00342{bottom:573.633000px;}
.y12_c00342{bottom:590.071500px;}
.y11_c00342{bottom:606.508500px;}
.y10_c00342{bottom:622.947000px;}
.yf_c00342{bottom:639.385500px;}
.ye_c00342{bottom:655.824000px;}
.yd_c00342{bottom:672.262500px;}
.yc_c00342{bottom:688.701000px;}
.yb_c00342{bottom:705.139500px;}
.ya_c00342{bottom:721.578000px;}
.y9_c00342{bottom:738.016500px;}
.y8_c00342{bottom:754.455000px;}
.y7_c00342{bottom:787.330500px;}
.y6_c00342{bottom:803.769000px;}
.y5_c00342{bottom:853.084500px;}
.y4_c00342{bottom:869.523000px;}
.y3_c00342{bottom:885.588000px;}
.y2_c00342{bottom:1141.930500px;}
.y1_c00342{bottom:1159.863000px;}
.h3_c00342{height:35.190766px;}
.h4_c00342{height:36.007158px;}
.h2_c00342{height:52.332837px;}
.h0_c00342{height:1262.835000px;}
.h1_c00342{height:1263.000000px;}
.w0_c00342{width:892.920000px;}
.w1_c00342{width:893.250000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:127.558500px;}
.x2_c00342{left:137.122500px;}
.x3_c00342{left:143.770500px;}
.x4_c00342{left:177.007500px;}
.x5_c00342{left:435.249000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls4_c00342{letter-spacing:0.000000pt;}
.ls1_c00342{letter-spacing:0.078221pt;}
.ls2_c00342{letter-spacing:0.087539pt;}
.ls0_c00342{letter-spacing:0.092873pt;}
.ls3_c00342{letter-spacing:23.724873pt;}
.ws1_c00342{word-spacing:-29.967501pt;}
.ws4_c00342{word-spacing:-23.622682pt;}
.ws3_c00342{word-spacing:-23.544461pt;}
.ws0_c00342{word-spacing:-16.684034pt;}
.ws8_c00342{word-spacing:0.000000pt;}
.ws5_c00342{word-spacing:0.039110pt;}
.wsb_c00342{word-spacing:0.050460pt;}
.ws9_c00342{word-spacing:0.065111pt;}
.wsa_c00342{word-spacing:0.074430pt;}
.ws2_c00342{word-spacing:0.156442pt;}
.wsc_c00342{word-spacing:0.180412pt;}
.ws6_c00342{word-spacing:0.189730pt;}
.ws7_c00342{word-spacing:0.195063pt;}
._0_c00342{margin-left:-3.400567pt;}
._1_c00342{width:0.893988pt;}
._3_c00342{width:47.362694pt;}
._2_c00342{width:70.985376pt;}
._4_c00342{width:118.624363pt;}
.fs1_c00342{font-size:39.110400pt;}
.fs0_c00342{font-size:53.133867pt;}
.y0_c00342{bottom:0.000000pt;}
.y2d_c00342{bottom:39.333333pt;}
.y2c_c00342{bottom:86.150667pt;}
.y2b_c00342{bottom:100.762667pt;}
.y2a_c00342{bottom:115.374667pt;}
.y29_c00342{bottom:129.986667pt;}
.y28_c00342{bottom:144.598667pt;}
.y27_c00342{bottom:159.210667pt;}
.y26_c00342{bottom:173.822667pt;}
.y25_c00342{bottom:188.434667pt;}
.y24_c00342{bottom:203.046667pt;}
.y23_c00342{bottom:217.658667pt;}
.y22_c00342{bottom:232.270667pt;}
.y21_c00342{bottom:261.493333pt;}
.y20_c00342{bottom:276.105333pt;}
.y1f_c00342{bottom:290.717333pt;}
.y1e_c00342{bottom:319.941333pt;}
.y1d_c00342{bottom:334.553333pt;}
.y1c_c00342{bottom:349.165333pt;}
.y1b_c00342{bottom:363.777333pt;}
.y1a_c00342{bottom:378.389333pt;}
.y19_c00342{bottom:393.000000pt;}
.y18_c00342{bottom:407.612000pt;}
.y17_c00342{bottom:451.448000pt;}
.y16_c00342{bottom:466.060000pt;}
.y15_c00342{bottom:480.672000pt;}
.y14_c00342{bottom:495.284000pt;}
.y13_c00342{bottom:509.896000pt;}
.y12_c00342{bottom:524.508000pt;}
.y11_c00342{bottom:539.118667pt;}
.y10_c00342{bottom:553.730667pt;}
.yf_c00342{bottom:568.342667pt;}
.ye_c00342{bottom:582.954667pt;}
.yd_c00342{bottom:597.566667pt;}
.yc_c00342{bottom:612.178667pt;}
.yb_c00342{bottom:626.790667pt;}
.ya_c00342{bottom:641.402667pt;}
.y9_c00342{bottom:656.014667pt;}
.y8_c00342{bottom:670.626667pt;}
.y7_c00342{bottom:699.849333pt;}
.y6_c00342{bottom:714.461333pt;}
.y5_c00342{bottom:758.297333pt;}
.y4_c00342{bottom:772.909333pt;}
.y3_c00342{bottom:787.189333pt;}
.y2_c00342{bottom:1015.049333pt;}
.y1_c00342{bottom:1030.989333pt;}
.h3_c00342{height:31.280681pt;}
.h4_c00342{height:32.006363pt;}
.h2_c00342{height:46.518078pt;}
.h0_c00342{height:1122.520000pt;}
.h1_c00342{height:1122.666667pt;}
.w0_c00342{width:793.706667pt;}
.w1_c00342{width:794.000000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:113.385333pt;}
.x2_c00342{left:121.886667pt;}
.x3_c00342{left:127.796000pt;}
.x4_c00342{left:157.340000pt;}
.x5_c00342{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_488d531a38284f3c33cc4299.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.893555;font-style:normal;font-weight:normal;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_e7422161a15be5591f841626.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_54656d222ab8a95045fad2fc.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00343;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.048828;font-style: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;}
.ls3_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:0.087998px;}
.ls2_c00343{letter-spacing:0.098482px;}
.ls1_c00343{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00343{word-spacing:-33.713438px;}
.ws2_c00343{word-spacing:-26.575517px;}
.wse_c00343{word-spacing:-26.487518px;}
.ws5_c00343{word-spacing:-18.769538px;}
.ws7_c00343{word-spacing:-16.019861px;}
.ws4_c00343{word-spacing:-14.943900px;}
.wsa_c00343{word-spacing:-14.107042px;}
.wsb_c00343{word-spacing:-12.074671px;}
.ws9_c00343{word-spacing:-11.716018px;}
.ws8_c00343{word-spacing:-11.656242px;}
.ws1_c00343{word-spacing:-9.988424px;}
.ws3_c00343{word-spacing:-9.987499px;}
.ws6_c00343{word-spacing:-4.536144px;}
.ws12_c00343{word-spacing:0.000000px;}
.wsf_c00343{word-spacing:0.043999px;}
.ws15_c00343{word-spacing:0.056767px;}
.ws13_c00343{word-spacing:0.073250px;}
.ws14_c00343{word-spacing:0.083734px;}
.wsd_c00343{word-spacing:0.175997px;}
.ws16_c00343{word-spacing:0.202963px;}
.ws10_c00343{word-spacing:0.213446px;}
.ws11_c00343{word-spacing:0.219446px;}
.ws0_c00343{word-spacing:43.038600px;}
._0_c00343{margin-left:-6.369713px;}
._3_c00343{margin-left:-3.376852px;}
._1_c00343{margin-left:-1.549390px;}
._6_c00343{width:1.005737px;}
._2_c00343{width:19.935816px;}
._4_c00343{width:23.790689px;}
._5_c00343{width:40.109428px;}
._8_c00343{width:53.283031px;}
._7_c00343{width:79.858548px;}
._9_c00343{width:133.452408px;}
.fc6_c00343{color:rgb(0,0,207);}
.fc5_c00343{color:rgb(79,153,5);}
.fc3_c00343{color:rgb(33,74,135);}
.fc2_c00343{color:rgb(143,89,3);}
.fc4_c00343{color:rgb(207,92,0);}
.fc1_c00343{color:rgb(6,69,173);}
.fc0_c00343{color:rgb(0,0,0);}
.fs2_c00343{font-size:43.999200px;}
.fs1_c00343{font-size:59.775600px;}
.fs0_c00343{font-size:86.077200px;}
.y0_c00343{bottom:0.000000px;}
.y20_c00343{bottom:44.250000px;}
.y1f_c00343{bottom:86.982000px;}
.y1e_c00343{bottom:103.420500px;}
.y1d_c00343{bottom:119.859000px;}
.y1c_c00343{bottom:136.297500px;}
.y1b_c00343{bottom:152.736000px;}
.y1a_c00343{bottom:169.174500px;}
.y19_c00343{bottom:185.613000px;}
.y18_c00343{bottom:202.051500px;}
.y17_c00343{bottom:218.490000px;}
.y16_c00343{bottom:234.927000px;}
.y15_c00343{bottom:251.365500px;}
.y14_c00343{bottom:267.804000px;}
.y13_c00343{bottom:284.242500px;}
.y12_c00343{bottom:300.681000px;}
.y11_c00343{bottom:317.119500px;}
.y10_c00343{bottom:349.996500px;}
.yf_c00343{bottom:366.435000px;}
.ye_c00343{bottom:415.749000px;}
.yd_c00343{bottom:432.187500px;}
.yc_c00343{bottom:448.252500px;}
.yb_c00343{bottom:493.890000px;}
.ya_c00343{bottom:511.822500px;}
.y9_c00343{bottom:529.756500px;}
.y8_c00343{bottom:547.689000px;}
.y7_c00343{bottom:565.621500px;}
.y6_c00343{bottom:583.554000px;}
.y5_c00343{bottom:610.633500px;}
.y4_c00343{bottom:637.714500px;}
.y3_c00343{bottom:664.794000px;}
.y2_c00343{bottom:691.873500px;}
.y1_c00343{bottom:734.407500px;}
.h5_c00343{height:35.190766px;}
.h6_c00343{height:36.007158px;}
.h3_c00343{height:40.511979px;}
.h4_c00343{height:52.332837px;}
.h2_c00343{height:58.337477px;}
.h0_c00343{height:1262.835000px;}
.h1_c00343{height:1263.000000px;}
.w0_c00343{width:892.920000px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:127.558500px;}
.x2_c00343{left:137.122500px;}
.x3_c00343{left:143.770500px;}
.x4_c00343{left:435.249000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls3_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:0.078221pt;}
.ls2_c00343{letter-spacing:0.087539pt;}
.ls1_c00343{letter-spacing:0.092873pt;}
.wsc_c00343{word-spacing:-29.967501pt;}
.ws2_c00343{word-spacing:-23.622682pt;}
.wse_c00343{word-spacing:-23.544461pt;}
.ws5_c00343{word-spacing:-16.684034pt;}
.ws7_c00343{word-spacing:-14.239876pt;}
.ws4_c00343{word-spacing:-13.283467pt;}
.wsa_c00343{word-spacing:-12.539593pt;}
.wsb_c00343{word-spacing:-10.733041pt;}
.ws9_c00343{word-spacing:-10.414238pt;}
.ws8_c00343{word-spacing:-10.361104pt;}
.ws1_c00343{word-spacing:-8.878599pt;}
.ws3_c00343{word-spacing:-8.877777pt;}
.ws6_c00343{word-spacing:-4.032128pt;}
.ws12_c00343{word-spacing:0.000000pt;}
.wsf_c00343{word-spacing:0.039110pt;}
.ws15_c00343{word-spacing:0.050460pt;}
.ws13_c00343{word-spacing:0.065111pt;}
.ws14_c00343{word-spacing:0.074430pt;}
.wsd_c00343{word-spacing:0.156442pt;}
.ws16_c00343{word-spacing:0.180412pt;}
.ws10_c00343{word-spacing:0.189730pt;}
.ws11_c00343{word-spacing:0.195063pt;}
.ws0_c00343{word-spacing:38.256533pt;}
._0_c00343{margin-left:-5.661967pt;}
._3_c00343{margin-left:-3.001646pt;}
._1_c00343{margin-left:-1.377235pt;}
._6_c00343{width:0.893988pt;}
._2_c00343{width:17.720725pt;}
._4_c00343{width:21.147279pt;}
._5_c00343{width:35.652825pt;}
._8_c00343{width:47.362694pt;}
._7_c00343{width:70.985376pt;}
._9_c00343{width:118.624363pt;}
.fs2_c00343{font-size:39.110400pt;}
.fs1_c00343{font-size:53.133867pt;}
.fs0_c00343{font-size:76.513067pt;}
.y0_c00343{bottom:0.000000pt;}
.y20_c00343{bottom:39.333333pt;}
.y1f_c00343{bottom:77.317333pt;}
.y1e_c00343{bottom:91.929333pt;}
.y1d_c00343{bottom:106.541333pt;}
.y1c_c00343{bottom:121.153333pt;}
.y1b_c00343{bottom:135.765333pt;}
.y1a_c00343{bottom:150.377333pt;}
.y19_c00343{bottom:164.989333pt;}
.y18_c00343{bottom:179.601333pt;}
.y17_c00343{bottom:194.213333pt;}
.y16_c00343{bottom:208.824000pt;}
.y15_c00343{bottom:223.436000pt;}
.y14_c00343{bottom:238.048000pt;}
.y13_c00343{bottom:252.660000pt;}
.y12_c00343{bottom:267.272000pt;}
.y11_c00343{bottom:281.884000pt;}
.y10_c00343{bottom:311.108000pt;}
.yf_c00343{bottom:325.720000pt;}
.ye_c00343{bottom:369.554667pt;}
.yd_c00343{bottom:384.166667pt;}
.yc_c00343{bottom:398.446667pt;}
.yb_c00343{bottom:439.013333pt;}
.ya_c00343{bottom:454.953333pt;}
.y9_c00343{bottom:470.894667pt;}
.y8_c00343{bottom:486.834667pt;}
.y7_c00343{bottom:502.774667pt;}
.y6_c00343{bottom:518.714667pt;}
.y5_c00343{bottom:542.785333pt;}
.y4_c00343{bottom:566.857333pt;}
.y3_c00343{bottom:590.928000pt;}
.y2_c00343{bottom:614.998667pt;}
.y1_c00343{bottom:652.806667pt;}
.h5_c00343{height:31.280681pt;}
.h6_c00343{height:32.006363pt;}
.h3_c00343{height:36.010648pt;}
.h4_c00343{height:46.518078pt;}
.h2_c00343{height:51.855535pt;}
.h0_c00343{height:1122.520000pt;}
.h1_c00343{height:1122.666667pt;}
.w0_c00343{width:793.706667pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:113.385333pt;}
.x2_c00343{left:121.886667pt;}
.x3_c00343{left:127.796000pt;}
.x4_c00343{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d8ad8683ff187121d3f418b.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.048828;font-style:normal;font-weight:normal;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_f60e4ff6e603c6d9566c74e4.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.014648;font-style:normal;font-weight:normal;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_7f744fe897d9f069046fbaeb.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:0.893555;font-style:normal;font-weight:normal;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_bcf8d114dd5d5f81929c1441.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.102051;font-style: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;}
.ls4_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.087998px;}
.ls2_c00344{letter-spacing:0.098482px;}
.ls3_c00344{letter-spacing:0.104482px;}
.ls1_c00344{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00344{word-spacing:-26.575517px;}
.ws4_c00344{word-spacing:-26.487518px;}
.wsa_c00344{word-spacing:-18.769538px;}
.wsc_c00344{word-spacing:-17.633802px;}
.ws9_c00344{word-spacing:-14.943900px;}
.wsf_c00344{word-spacing:-14.107042px;}
.ws10_c00344{word-spacing:-12.074671px;}
.wse_c00344{word-spacing:-11.716018px;}
.wsd_c00344{word-spacing:-11.656242px;}
.ws7_c00344{word-spacing:-9.988424px;}
.ws8_c00344{word-spacing:-9.987499px;}
.wsb_c00344{word-spacing:-7.680144px;}
.ws3_c00344{word-spacing:0.000000px;}
.ws0_c00344{word-spacing:0.043999px;}
.ws5_c00344{word-spacing:0.213446px;}
.ws1_c00344{word-spacing:0.219446px;}
.ws6_c00344{word-spacing:43.038600px;}
._1_c00344{margin-left:-6.369713px;}
._4_c00344{margin-left:-3.376852px;}
._2_c00344{margin-left:-1.549390px;}
._0_c00344{width:1.041538px;}
._3_c00344{width:19.935816px;}
._5_c00344{width:23.790689px;}
._6_c00344{width:40.109428px;}
.fc5_c00344{color:rgb(79,153,5);}
.fc4_c00344{color:rgb(143,89,3);}
.fc3_c00344{color:rgb(0,0,0);}
.fc6_c00344{color:rgb(6,69,173);}
.fc2_c00344{color:rgb(207,92,0);}
.fc1_c00344{color:rgb(0,0,207);}
.fc0_c00344{color:rgb(33,74,135);}
.fs0_c00344{font-size:43.999200px;}
.fs2_c00344{font-size:59.775600px;}
.fs1_c00344{font-size:86.077200px;}
.y0_c00344{bottom:0.000000px;}
.y20_c00344{bottom:44.250000px;}
.y1f_c00344{bottom:82.051500px;}
.y1e_c00344{bottom:99.984000px;}
.y1d_c00344{bottom:117.916500px;}
.y1c_c00344{bottom:135.849000px;}
.y1b_c00344{bottom:162.501000px;}
.y1a_c00344{bottom:189.151500px;}
.y19_c00344{bottom:215.802000px;}
.y18_c00344{bottom:242.454000px;}
.y17_c00344{bottom:284.478000px;}
.y16_c00344{bottom:748.903500px;}
.y15_c00344{bottom:765.342000px;}
.y14_c00344{bottom:781.780500px;}
.y13_c00344{bottom:798.219000px;}
.y12_c00344{bottom:814.657500px;}
.y11_c00344{bottom:831.096000px;}
.y10_c00344{bottom:847.534500px;}
.yf_c00344{bottom:863.973000px;}
.ye_c00344{bottom:880.411500px;}
.yd_c00344{bottom:896.848500px;}
.yc_c00344{bottom:913.287000px;}
.yb_c00344{bottom:946.164000px;}
.ya_c00344{bottom:962.602500px;}
.y9_c00344{bottom:979.041000px;}
.y8_c00344{bottom:1011.918000px;}
.y7_c00344{bottom:1028.356500px;}
.y6_c00344{bottom:1044.795000px;}
.y5_c00344{bottom:1061.232000px;}
.y4_c00344{bottom:1077.670500px;}
.y3_c00344{bottom:1094.109000px;}
.y2_c00344{bottom:1110.547500px;}
.y1_c00344{bottom:1159.863000px;}
.h3_c00344{height:35.190766px;}
.h2_c00344{height:36.007158px;}
.h5_c00344{height:40.511979px;}
.h6_c00344{height:52.332837px;}
.h4_c00344{height:58.337477px;}
.h0_c00344{height:1262.835000px;}
.h1_c00344{height:1263.000000px;}
.w0_c00344{width:892.920000px;}
.w1_c00344{width:893.250000px;}
.x0_c00344{left:0.000000px;}
.x4_c00344{left:127.558500px;}
.x2_c00344{left:137.122500px;}
.x1_c00344{left:143.770500px;}
.x3_c00344{left:177.007500px;}
.x5_c00344{left:435.249000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls4_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.078221pt;}
.ls2_c00344{letter-spacing:0.087539pt;}
.ls3_c00344{letter-spacing:0.092873pt;}
.ls1_c00344{letter-spacing:23.724873pt;}
.ws2_c00344{word-spacing:-23.622682pt;}
.ws4_c00344{word-spacing:-23.544461pt;}
.wsa_c00344{word-spacing:-16.684034pt;}
.wsc_c00344{word-spacing:-15.674491pt;}
.ws9_c00344{word-spacing:-13.283467pt;}
.wsf_c00344{word-spacing:-12.539593pt;}
.ws10_c00344{word-spacing:-10.733041pt;}
.wse_c00344{word-spacing:-10.414238pt;}
.wsd_c00344{word-spacing:-10.361104pt;}
.ws7_c00344{word-spacing:-8.878599pt;}
.ws8_c00344{word-spacing:-8.877777pt;}
.wsb_c00344{word-spacing:-6.826795pt;}
.ws3_c00344{word-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.039110pt;}
.ws5_c00344{word-spacing:0.189730pt;}
.ws1_c00344{word-spacing:0.195063pt;}
.ws6_c00344{word-spacing:38.256533pt;}
._1_c00344{margin-left:-5.661967pt;}
._4_c00344{margin-left:-3.001646pt;}
._2_c00344{margin-left:-1.377235pt;}
._0_c00344{width:0.925811pt;}
._3_c00344{width:17.720725pt;}
._5_c00344{width:21.147279pt;}
._6_c00344{width:35.652825pt;}
.fs0_c00344{font-size:39.110400pt;}
.fs2_c00344{font-size:53.133867pt;}
.fs1_c00344{font-size:76.513067pt;}
.y0_c00344{bottom:0.000000pt;}
.y20_c00344{bottom:39.333333pt;}
.y1f_c00344{bottom:72.934667pt;}
.y1e_c00344{bottom:88.874667pt;}
.y1d_c00344{bottom:104.814667pt;}
.y1c_c00344{bottom:120.754667pt;}
.y1b_c00344{bottom:144.445333pt;}
.y1a_c00344{bottom:168.134667pt;}
.y19_c00344{bottom:191.824000pt;}
.y18_c00344{bottom:215.514667pt;}
.y17_c00344{bottom:252.869333pt;}
.y16_c00344{bottom:665.692000pt;}
.y15_c00344{bottom:680.304000pt;}
.y14_c00344{bottom:694.916000pt;}
.y13_c00344{bottom:709.528000pt;}
.y12_c00344{bottom:724.140000pt;}
.y11_c00344{bottom:738.752000pt;}
.y10_c00344{bottom:753.364000pt;}
.yf_c00344{bottom:767.976000pt;}
.ye_c00344{bottom:782.588000pt;}
.yd_c00344{bottom:797.198667pt;}
.yc_c00344{bottom:811.810667pt;}
.yb_c00344{bottom:841.034667pt;}
.ya_c00344{bottom:855.646667pt;}
.y9_c00344{bottom:870.258667pt;}
.y8_c00344{bottom:899.482667pt;}
.y7_c00344{bottom:914.094667pt;}
.y6_c00344{bottom:928.706667pt;}
.y5_c00344{bottom:943.317333pt;}
.y4_c00344{bottom:957.929333pt;}
.y3_c00344{bottom:972.541333pt;}
.y2_c00344{bottom:987.153333pt;}
.y1_c00344{bottom:1030.989333pt;}
.h3_c00344{height:31.280681pt;}
.h2_c00344{height:32.006363pt;}
.h5_c00344{height:36.010648pt;}
.h6_c00344{height:46.518078pt;}
.h4_c00344{height:51.855535pt;}
.h0_c00344{height:1122.520000pt;}
.h1_c00344{height:1122.666667pt;}
.w0_c00344{width:793.706667pt;}
.w1_c00344{width:794.000000pt;}
.x0_c00344{left:0.000000pt;}
.x4_c00344{left:113.385333pt;}
.x2_c00344{left:121.886667pt;}
.x1_c00344{left:127.796000pt;}
.x3_c00344{left:157.340000pt;}
.x5_c00344{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ac9cfdd07399009ca3e8295.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.102051;font-style:normal;font-weight:normal;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_07d60fb62bb0bf6ff7720737.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.048828;font-style:normal;font-weight:normal;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_bc957969853d7c559a61316b.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls4_c00345{letter-spacing:0.000000px;}
.ls1_c00345{letter-spacing:0.087998px;}
.ls2_c00345{letter-spacing:0.098482px;}
.ls0_c00345{letter-spacing:0.104482px;}
.ls3_c00345{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00345{word-spacing:-26.575517px;}
.ws3_c00345{word-spacing:-26.487518px;}
.ws0_c00345{word-spacing:-18.769538px;}
.ws8_c00345{word-spacing:0.000000px;}
.ws5_c00345{word-spacing:0.043999px;}
.wsb_c00345{word-spacing:0.056767px;}
.ws9_c00345{word-spacing:0.073250px;}
.wsa_c00345{word-spacing:0.083734px;}
.ws2_c00345{word-spacing:0.175997px;}
.wsc_c00345{word-spacing:0.202963px;}
.ws6_c00345{word-spacing:0.213446px;}
.ws7_c00345{word-spacing:0.219446px;}
._0_c00345{margin-left:-3.825638px;}
._1_c00345{width:1.005737px;}
._3_c00345{width:53.283031px;}
._2_c00345{width:79.858548px;}
._5_c00345{width:106.610062px;}
._4_c00345{width:133.452408px;}
.fc5_c00345{color:rgb(0,0,207);}
.fc4_c00345{color:rgb(79,153,5);}
.fc3_c00345{color:rgb(207,92,0);}
.fc2_c00345{color:rgb(33,74,135);}
.fc1_c00345{color:rgb(143,89,3);}
.fc0_c00345{color:rgb(0,0,0);}
.fs1_c00345{font-size:43.999200px;}
.fs0_c00345{font-size:59.775600px;}
.y0_c00345{bottom:0.000000px;}
.y2d_c00345{bottom:44.250000px;}
.y2c_c00345{bottom:96.919500px;}
.y2b_c00345{bottom:113.358000px;}
.y2a_c00345{bottom:129.796500px;}
.y29_c00345{bottom:146.235000px;}
.y28_c00345{bottom:162.673500px;}
.y27_c00345{bottom:179.112000px;}
.y26_c00345{bottom:195.550500px;}
.y25_c00345{bottom:211.989000px;}
.y24_c00345{bottom:228.427500px;}
.y23_c00345{bottom:244.866000px;}
.y22_c00345{bottom:261.304500px;}
.y21_c00345{bottom:294.180000px;}
.y20_c00345{bottom:310.618500px;}
.y1f_c00345{bottom:327.057000px;}
.y1e_c00345{bottom:359.934000px;}
.y1d_c00345{bottom:376.372500px;}
.y1c_c00345{bottom:392.811000px;}
.y1b_c00345{bottom:409.249500px;}
.y1a_c00345{bottom:425.688000px;}
.y19_c00345{bottom:442.125000px;}
.y18_c00345{bottom:458.563500px;}
.y17_c00345{bottom:507.879000px;}
.y16_c00345{bottom:524.317500px;}
.y15_c00345{bottom:540.756000px;}
.y14_c00345{bottom:557.194500px;}
.y13_c00345{bottom:573.633000px;}
.y12_c00345{bottom:590.071500px;}
.y11_c00345{bottom:606.508500px;}
.y10_c00345{bottom:622.947000px;}
.yf_c00345{bottom:639.385500px;}
.ye_c00345{bottom:655.824000px;}
.yd_c00345{bottom:672.262500px;}
.yc_c00345{bottom:688.701000px;}
.yb_c00345{bottom:705.139500px;}
.ya_c00345{bottom:721.578000px;}
.y9_c00345{bottom:738.016500px;}
.y8_c00345{bottom:754.455000px;}
.y7_c00345{bottom:787.330500px;}
.y6_c00345{bottom:803.769000px;}
.y5_c00345{bottom:853.084500px;}
.y4_c00345{bottom:869.523000px;}
.y3_c00345{bottom:885.588000px;}
.y2_c00345{bottom:1141.930500px;}
.y1_c00345{bottom:1159.863000px;}
.h3_c00345{height:35.190766px;}
.h4_c00345{height:36.007158px;}
.h2_c00345{height:52.332837px;}
.h0_c00345{height:1262.835000px;}
.h1_c00345{height:1263.000000px;}
.w0_c00345{width:892.920000px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:127.558500px;}
.x2_c00345{left:137.122500px;}
.x3_c00345{left:143.770500px;}
.x4_c00345{left:177.007500px;}
.x5_c00345{left:435.249000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls4_c00345{letter-spacing:0.000000pt;}
.ls1_c00345{letter-spacing:0.078221pt;}
.ls2_c00345{letter-spacing:0.087539pt;}
.ls0_c00345{letter-spacing:0.092873pt;}
.ls3_c00345{letter-spacing:23.724873pt;}
.ws1_c00345{word-spacing:-29.967501pt;}
.ws4_c00345{word-spacing:-23.622682pt;}
.ws3_c00345{word-spacing:-23.544461pt;}
.ws0_c00345{word-spacing:-16.684034pt;}
.ws8_c00345{word-spacing:0.000000pt;}
.ws5_c00345{word-spacing:0.039110pt;}
.wsb_c00345{word-spacing:0.050460pt;}
.ws9_c00345{word-spacing:0.065111pt;}
.wsa_c00345{word-spacing:0.074430pt;}
.ws2_c00345{word-spacing:0.156442pt;}
.wsc_c00345{word-spacing:0.180412pt;}
.ws6_c00345{word-spacing:0.189730pt;}
.ws7_c00345{word-spacing:0.195063pt;}
._0_c00345{margin-left:-3.400567pt;}
._1_c00345{width:0.893988pt;}
._3_c00345{width:47.362694pt;}
._2_c00345{width:70.985376pt;}
._5_c00345{width:94.764499pt;}
._4_c00345{width:118.624363pt;}
.fs1_c00345{font-size:39.110400pt;}
.fs0_c00345{font-size:53.133867pt;}
.y0_c00345{bottom:0.000000pt;}
.y2d_c00345{bottom:39.333333pt;}
.y2c_c00345{bottom:86.150667pt;}
.y2b_c00345{bottom:100.762667pt;}
.y2a_c00345{bottom:115.374667pt;}
.y29_c00345{bottom:129.986667pt;}
.y28_c00345{bottom:144.598667pt;}
.y27_c00345{bottom:159.210667pt;}
.y26_c00345{bottom:173.822667pt;}
.y25_c00345{bottom:188.434667pt;}
.y24_c00345{bottom:203.046667pt;}
.y23_c00345{bottom:217.658667pt;}
.y22_c00345{bottom:232.270667pt;}
.y21_c00345{bottom:261.493333pt;}
.y20_c00345{bottom:276.105333pt;}
.y1f_c00345{bottom:290.717333pt;}
.y1e_c00345{bottom:319.941333pt;}
.y1d_c00345{bottom:334.553333pt;}
.y1c_c00345{bottom:349.165333pt;}
.y1b_c00345{bottom:363.777333pt;}
.y1a_c00345{bottom:378.389333pt;}
.y19_c00345{bottom:393.000000pt;}
.y18_c00345{bottom:407.612000pt;}
.y17_c00345{bottom:451.448000pt;}
.y16_c00345{bottom:466.060000pt;}
.y15_c00345{bottom:480.672000pt;}
.y14_c00345{bottom:495.284000pt;}
.y13_c00345{bottom:509.896000pt;}
.y12_c00345{bottom:524.508000pt;}
.y11_c00345{bottom:539.118667pt;}
.y10_c00345{bottom:553.730667pt;}
.yf_c00345{bottom:568.342667pt;}
.ye_c00345{bottom:582.954667pt;}
.yd_c00345{bottom:597.566667pt;}
.yc_c00345{bottom:612.178667pt;}
.yb_c00345{bottom:626.790667pt;}
.ya_c00345{bottom:641.402667pt;}
.y9_c00345{bottom:656.014667pt;}
.y8_c00345{bottom:670.626667pt;}
.y7_c00345{bottom:699.849333pt;}
.y6_c00345{bottom:714.461333pt;}
.y5_c00345{bottom:758.297333pt;}
.y4_c00345{bottom:772.909333pt;}
.y3_c00345{bottom:787.189333pt;}
.y2_c00345{bottom:1015.049333pt;}
.y1_c00345{bottom:1030.989333pt;}
.h3_c00345{height:31.280681pt;}
.h4_c00345{height:32.006363pt;}
.h2_c00345{height:46.518078pt;}
.h0_c00345{height:1122.520000pt;}
.h1_c00345{height:1122.666667pt;}
.w0_c00345{width:793.706667pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:113.385333pt;}
.x2_c00345{left:121.886667pt;}
.x3_c00345{left:127.796000pt;}
.x4_c00345{left:157.340000pt;}
.x5_c00345{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94f7b193edfaaaa4e11500ce.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.893555;font-style:normal;font-weight:normal;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_0bc8abc6200799d2159b395a.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_edfdc0b3245505900f5b5dc9.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_75255b94c305bbe11ffca294.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_5b764a2637f7f5e4612e8347.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.048828;font-style: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;}
.ls3_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:0.087998px;}
.ls2_c00346{letter-spacing:0.098482px;}
.ls1_c00346{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00346{word-spacing:-26.575517px;}
.ws10_c00346{word-spacing:-26.487518px;}
.wse_c00346{word-spacing:-21.578992px;}
.wsb_c00346{word-spacing:-21.280114px;}
.wsd_c00346{word-spacing:-19.606397px;}
.ws8_c00346{word-spacing:-19.456114px;}
.ws9_c00346{word-spacing:-19.427070px;}
.ws7_c00346{word-spacing:-19.367294px;}
.ws5_c00346{word-spacing:-18.769538px;}
.ws4_c00346{word-spacing:-14.943900px;}
.wsc_c00346{word-spacing:-14.017015px;}
.wsa_c00346{word-spacing:-12.851754px;}
.ws6_c00346{word-spacing:-10.314144px;}
.ws1_c00346{word-spacing:-9.988424px;}
.ws3_c00346{word-spacing:-9.987499px;}
.ws14_c00346{word-spacing:0.000000px;}
.ws11_c00346{word-spacing:0.043999px;}
.wsf_c00346{word-spacing:0.175997px;}
.ws12_c00346{word-spacing:0.213446px;}
.ws13_c00346{word-spacing:0.219446px;}
.ws0_c00346{word-spacing:43.038600px;}
._0_c00346{margin-left:-4.734246px;}
._6_c00346{margin-left:-3.287658px;}
._2_c00346{margin-left:-1.075961px;}
._7_c00346{width:1.005737px;}
._5_c00346{width:13.521259px;}
._4_c00346{width:18.649987px;}
._1_c00346{width:19.935816px;}
._3_c00346{width:22.356074px;}
.fc6_c00346{color:rgb(0,0,207);}
.fc5_c00346{color:rgb(79,153,5);}
.fc3_c00346{color:rgb(33,74,135);}
.fc2_c00346{color:rgb(143,89,3);}
.fc4_c00346{color:rgb(207,92,0);}
.fc1_c00346{color:rgb(6,69,173);}
.fc0_c00346{color:rgb(0,0,0);}
.fs2_c00346{font-size:43.999200px;}
.fs1_c00346{font-size:59.775600px;}
.fs0_c00346{font-size:86.077200px;}
.y0_c00346{bottom:0.000000px;}
.y1e_c00346{bottom:44.250000px;}
.y1d_c00346{bottom:86.982000px;}
.y1c_c00346{bottom:103.420500px;}
.y1b_c00346{bottom:119.859000px;}
.y1a_c00346{bottom:136.297500px;}
.y19_c00346{bottom:152.736000px;}
.y18_c00346{bottom:185.613000px;}
.y17_c00346{bottom:202.051500px;}
.y16_c00346{bottom:234.927000px;}
.y15_c00346{bottom:251.365500px;}
.y14_c00346{bottom:267.804000px;}
.y13_c00346{bottom:317.119500px;}
.y12_c00346{bottom:333.558000px;}
.y11_c00346{bottom:349.996500px;}
.y10_c00346{bottom:366.435000px;}
.yf_c00346{bottom:382.873500px;}
.ye_c00346{bottom:415.749000px;}
.yd_c00346{bottom:432.187500px;}
.yc_c00346{bottom:448.252500px;}
.yb_c00346{bottom:495.994500px;}
.ya_c00346{bottom:513.927000px;}
.y9_c00346{bottom:531.859500px;}
.y8_c00346{bottom:549.792000px;}
.y7_c00346{bottom:567.726000px;}
.y6_c00346{bottom:585.658500px;}
.y5_c00346{bottom:612.480000px;}
.y4_c00346{bottom:639.301500px;}
.y3_c00346{bottom:666.123000px;}
.y2_c00346{bottom:692.944500px;}
.y1_c00346{bottom:735.139500px;}
.h5_c00346{height:35.190766px;}
.h6_c00346{height:36.007158px;}
.h3_c00346{height:40.511979px;}
.h4_c00346{height:52.332837px;}
.h2_c00346{height:58.337477px;}
.h0_c00346{height:1262.835000px;}
.h1_c00346{height:1263.000000px;}
.w0_c00346{width:892.920000px;}
.w1_c00346{width:893.250000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:127.558500px;}
.x2_c00346{left:137.122500px;}
.x3_c00346{left:435.249000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls3_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:0.078221pt;}
.ls2_c00346{letter-spacing:0.087539pt;}
.ls1_c00346{letter-spacing:0.092873pt;}
.ws2_c00346{word-spacing:-23.622682pt;}
.ws10_c00346{word-spacing:-23.544461pt;}
.wse_c00346{word-spacing:-19.181326pt;}
.wsb_c00346{word-spacing:-18.915657pt;}
.wsd_c00346{word-spacing:-17.427908pt;}
.ws8_c00346{word-spacing:-17.294323pt;}
.ws9_c00346{word-spacing:-17.268507pt;}
.ws7_c00346{word-spacing:-17.215373pt;}
.ws5_c00346{word-spacing:-16.684034pt;}
.ws4_c00346{word-spacing:-13.283467pt;}
.wsc_c00346{word-spacing:-12.459569pt;}
.wsa_c00346{word-spacing:-11.423781pt;}
.ws6_c00346{word-spacing:-9.168128pt;}
.ws1_c00346{word-spacing:-8.878599pt;}
.ws3_c00346{word-spacing:-8.877777pt;}
.ws14_c00346{word-spacing:0.000000pt;}
.ws11_c00346{word-spacing:0.039110pt;}
.wsf_c00346{word-spacing:0.156442pt;}
.ws12_c00346{word-spacing:0.189730pt;}
.ws13_c00346{word-spacing:0.195063pt;}
.ws0_c00346{word-spacing:38.256533pt;}
._0_c00346{margin-left:-4.208219pt;}
._6_c00346{margin-left:-2.922363pt;}
._2_c00346{margin-left:-0.956410pt;}
._7_c00346{width:0.893988pt;}
._5_c00346{width:12.018897pt;}
._4_c00346{width:16.577766pt;}
._1_c00346{width:17.720725pt;}
._3_c00346{width:19.872066pt;}
.fs2_c00346{font-size:39.110400pt;}
.fs1_c00346{font-size:53.133867pt;}
.fs0_c00346{font-size:76.513067pt;}
.y0_c00346{bottom:0.000000pt;}
.y1e_c00346{bottom:39.333333pt;}
.y1d_c00346{bottom:77.317333pt;}
.y1c_c00346{bottom:91.929333pt;}
.y1b_c00346{bottom:106.541333pt;}
.y1a_c00346{bottom:121.153333pt;}
.y19_c00346{bottom:135.765333pt;}
.y18_c00346{bottom:164.989333pt;}
.y17_c00346{bottom:179.601333pt;}
.y16_c00346{bottom:208.824000pt;}
.y15_c00346{bottom:223.436000pt;}
.y14_c00346{bottom:238.048000pt;}
.y13_c00346{bottom:281.884000pt;}
.y12_c00346{bottom:296.496000pt;}
.y11_c00346{bottom:311.108000pt;}
.y10_c00346{bottom:325.720000pt;}
.yf_c00346{bottom:340.332000pt;}
.ye_c00346{bottom:369.554667pt;}
.yd_c00346{bottom:384.166667pt;}
.yc_c00346{bottom:398.446667pt;}
.yb_c00346{bottom:440.884000pt;}
.ya_c00346{bottom:456.824000pt;}
.y9_c00346{bottom:472.764000pt;}
.y8_c00346{bottom:488.704000pt;}
.y7_c00346{bottom:504.645333pt;}
.y6_c00346{bottom:520.585333pt;}
.y5_c00346{bottom:544.426667pt;}
.y4_c00346{bottom:568.268000pt;}
.y3_c00346{bottom:592.109333pt;}
.y2_c00346{bottom:615.950667pt;}
.y1_c00346{bottom:653.457333pt;}
.h5_c00346{height:31.280681pt;}
.h6_c00346{height:32.006363pt;}
.h3_c00346{height:36.010648pt;}
.h4_c00346{height:46.518078pt;}
.h2_c00346{height:51.855535pt;}
.h0_c00346{height:1122.520000pt;}
.h1_c00346{height:1122.666667pt;}
.w0_c00346{width:793.706667pt;}
.w1_c00346{width:794.000000pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:113.385333pt;}
.x2_c00346{left:121.886667pt;}
.x3_c00346{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bc36d018481443fd58378a2.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.083496;font-style:normal;font-weight:normal;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_e4750673da6f9efc45bff0f6.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.048828;font-style:normal;font-weight:normal;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_2baef0b96ff081068c10ffb0.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.014648;font-style:normal;font-weight:normal;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_1bdbd08c374600944bf94462.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls4_c00347{letter-spacing:0.000000px;}
.ls0_c00347{letter-spacing:0.087998px;}
.ls1_c00347{letter-spacing:0.098482px;}
.ls2_c00347{letter-spacing:0.104482px;}
.ls3_c00347{letter-spacing:26.690482px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:-26.575517px;}
.ws8_c00347{word-spacing:-26.487518px;}
.ws1_c00347{word-spacing:0.000000px;}
.ws7_c00347{word-spacing:0.026966px;}
.ws9_c00347{word-spacing:0.043999px;}
.ws5_c00347{word-spacing:0.046284px;}
.ws2_c00347{word-spacing:0.056767px;}
.ws4_c00347{word-spacing:0.073250px;}
.ws6_c00347{word-spacing:0.083734px;}
.ws3_c00347{word-spacing:0.202963px;}
.wsb_c00347{word-spacing:0.213446px;}
.wsa_c00347{word-spacing:0.219446px;}
._5_c00347{width:1.041538px;}
._0_c00347{width:53.415029px;}
._1_c00347{width:79.858548px;}
._3_c00347{width:106.434065px;}
._2_c00347{width:133.452408px;}
._4_c00347{width:186.179933px;}
.fc5_c00347{color:rgb(207,92,0);}
.fc4_c00347{color:rgb(0,0,207);}
.fc3_c00347{color:rgb(79,153,5);}
.fc2_c00347{color:rgb(33,74,135);}
.fc1_c00347{color:rgb(143,89,3);}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:43.999200px;}
.fs1_c00347{font-size:59.775600px;}
.y0_c00347{bottom:0.000000px;}
.y25_c00347{bottom:44.250000px;}
.y24_c00347{bottom:502.329000px;}
.y23_c00347{bottom:518.767500px;}
.y22_c00347{bottom:535.206000px;}
.y21_c00347{bottom:551.643000px;}
.y20_c00347{bottom:568.081500px;}
.y1f_c00347{bottom:584.520000px;}
.y1e_c00347{bottom:600.958500px;}
.y1d_c00347{bottom:617.397000px;}
.y1c_c00347{bottom:633.835500px;}
.y1b_c00347{bottom:650.274000px;}
.y1a_c00347{bottom:666.712500px;}
.y19_c00347{bottom:699.589500px;}
.y18_c00347{bottom:716.028000px;}
.y17_c00347{bottom:732.465000px;}
.y16_c00347{bottom:765.342000px;}
.y15_c00347{bottom:781.780500px;}
.y14_c00347{bottom:798.219000px;}
.y13_c00347{bottom:814.657500px;}
.y12_c00347{bottom:831.096000px;}
.y11_c00347{bottom:847.534500px;}
.y10_c00347{bottom:863.973000px;}
.yf_c00347{bottom:880.411500px;}
.ye_c00347{bottom:896.848500px;}
.yd_c00347{bottom:913.287000px;}
.yc_c00347{bottom:929.725500px;}
.yb_c00347{bottom:946.164000px;}
.ya_c00347{bottom:962.602500px;}
.y9_c00347{bottom:979.041000px;}
.y8_c00347{bottom:995.479500px;}
.y7_c00347{bottom:1011.918000px;}
.y6_c00347{bottom:1028.356500px;}
.y5_c00347{bottom:1044.795000px;}
.y4_c00347{bottom:1061.232000px;}
.y3_c00347{bottom:1110.547500px;}
.y2_c00347{bottom:1126.986000px;}
.y1_c00347{bottom:1143.424500px;}
.h3_c00347{height:35.190766px;}
.h2_c00347{height:36.007158px;}
.h4_c00347{height:52.332837px;}
.h0_c00347{height:1262.835000px;}
.h1_c00347{height:1263.000000px;}
.w0_c00347{width:892.920000px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:137.122500px;}
.x3_c00347{left:143.770500px;}
.x4_c00347{left:177.007500px;}
.x2_c00347{left:230.185500px;}
.x5_c00347{left:435.249000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls4_c00347{letter-spacing:0.000000pt;}
.ls0_c00347{letter-spacing:0.078221pt;}
.ls1_c00347{letter-spacing:0.087539pt;}
.ls2_c00347{letter-spacing:0.092873pt;}
.ls3_c00347{letter-spacing:23.724873pt;}
.ws0_c00347{word-spacing:-23.622682pt;}
.ws8_c00347{word-spacing:-23.544461pt;}
.ws1_c00347{word-spacing:0.000000pt;}
.ws7_c00347{word-spacing:0.023970pt;}
.ws9_c00347{word-spacing:0.039110pt;}
.ws5_c00347{word-spacing:0.041141pt;}
.ws2_c00347{word-spacing:0.050460pt;}
.ws4_c00347{word-spacing:0.065111pt;}
.ws6_c00347{word-spacing:0.074430pt;}
.ws3_c00347{word-spacing:0.180412pt;}
.wsb_c00347{word-spacing:0.189730pt;}
.wsa_c00347{word-spacing:0.195063pt;}
._5_c00347{width:0.925811pt;}
._0_c00347{width:47.480026pt;}
._1_c00347{width:70.985376pt;}
._3_c00347{width:94.608058pt;}
._2_c00347{width:118.624363pt;}
._4_c00347{width:165.493274pt;}
.fs0_c00347{font-size:39.110400pt;}
.fs1_c00347{font-size:53.133867pt;}
.y0_c00347{bottom:0.000000pt;}
.y25_c00347{bottom:39.333333pt;}
.y24_c00347{bottom:446.514667pt;}
.y23_c00347{bottom:461.126667pt;}
.y22_c00347{bottom:475.738667pt;}
.y21_c00347{bottom:490.349333pt;}
.y20_c00347{bottom:504.961333pt;}
.y1f_c00347{bottom:519.573333pt;}
.y1e_c00347{bottom:534.185333pt;}
.y1d_c00347{bottom:548.797333pt;}
.y1c_c00347{bottom:563.409333pt;}
.y1b_c00347{bottom:578.021333pt;}
.y1a_c00347{bottom:592.633333pt;}
.y19_c00347{bottom:621.857333pt;}
.y18_c00347{bottom:636.469333pt;}
.y17_c00347{bottom:651.080000pt;}
.y16_c00347{bottom:680.304000pt;}
.y15_c00347{bottom:694.916000pt;}
.y14_c00347{bottom:709.528000pt;}
.y13_c00347{bottom:724.140000pt;}
.y12_c00347{bottom:738.752000pt;}
.y11_c00347{bottom:753.364000pt;}
.y10_c00347{bottom:767.976000pt;}
.yf_c00347{bottom:782.588000pt;}
.ye_c00347{bottom:797.198667pt;}
.yd_c00347{bottom:811.810667pt;}
.yc_c00347{bottom:826.422667pt;}
.yb_c00347{bottom:841.034667pt;}
.ya_c00347{bottom:855.646667pt;}
.y9_c00347{bottom:870.258667pt;}
.y8_c00347{bottom:884.870667pt;}
.y7_c00347{bottom:899.482667pt;}
.y6_c00347{bottom:914.094667pt;}
.y5_c00347{bottom:928.706667pt;}
.y4_c00347{bottom:943.317333pt;}
.y3_c00347{bottom:987.153333pt;}
.y2_c00347{bottom:1001.765333pt;}
.y1_c00347{bottom:1016.377333pt;}
.h3_c00347{height:31.280681pt;}
.h2_c00347{height:32.006363pt;}
.h4_c00347{height:46.518078pt;}
.h0_c00347{height:1122.520000pt;}
.h1_c00347{height:1122.666667pt;}
.w0_c00347{width:793.706667pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:121.886667pt;}
.x3_c00347{left:127.796000pt;}
.x4_c00347{left:157.340000pt;}
.x2_c00347{left:204.609333pt;}
.x5_c00347{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d35dadc89281776b26804b2.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:0.893555;font-style:normal;font-weight:normal;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_ff891201c877bce17bd6dd7e.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_5db18e7bfc343c892321fcc1.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_1869cfbcbdbcb29a1b39ba1c.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.048828;font-style: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;}
.ls4_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.087998px;}
.ls2_c00348{letter-spacing:0.098482px;}
.ls1_c00348{letter-spacing:0.104482px;}
.ls3_c00348{letter-spacing:26.690482px;}
.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;}
}
.wsc_c00348{word-spacing:-33.713438px;}
.ws2_c00348{word-spacing:-26.575517px;}
.wse_c00348{word-spacing:-26.487518px;}
.ws5_c00348{word-spacing:-18.769538px;}
.ws4_c00348{word-spacing:-14.943900px;}
.ws7_c00348{word-spacing:-14.465695px;}
.wsa_c00348{word-spacing:-14.107042px;}
.wsb_c00348{word-spacing:-12.074671px;}
.ws9_c00348{word-spacing:-11.716018px;}
.ws8_c00348{word-spacing:-11.656242px;}
.ws1_c00348{word-spacing:-9.988424px;}
.ws3_c00348{word-spacing:-9.987499px;}
.ws6_c00348{word-spacing:-1.386144px;}
.ws12_c00348{word-spacing:0.000000px;}
.wsf_c00348{word-spacing:0.043999px;}
.ws15_c00348{word-spacing:0.056767px;}
.ws13_c00348{word-spacing:0.073250px;}
.ws14_c00348{word-spacing:0.083734px;}
.wsd_c00348{word-spacing:0.175997px;}
.ws16_c00348{word-spacing:0.202963px;}
.ws10_c00348{word-spacing:0.213446px;}
.ws11_c00348{word-spacing:0.219446px;}
.ws0_c00348{word-spacing:43.038600px;}
._0_c00348{margin-left:-4.734246px;}
._3_c00348{margin-left:-3.376852px;}
._2_c00348{margin-left:-1.075961px;}
._7_c00348{width:1.005737px;}
._6_c00348{width:15.972059px;}
._1_c00348{width:19.935816px;}
._4_c00348{width:23.790689px;}
._5_c00348{width:40.109428px;}
._9_c00348{width:53.283031px;}
._8_c00348{width:79.858548px;}
._a_c00348{width:133.452408px;}
.fc6_c00348{color:rgb(0,0,207);}
.fc5_c00348{color:rgb(79,153,5);}
.fc3_c00348{color:rgb(33,74,135);}
.fc2_c00348{color:rgb(143,89,3);}
.fc4_c00348{color:rgb(207,92,0);}
.fc1_c00348{color:rgb(6,69,173);}
.fc0_c00348{color:rgb(0,0,0);}
.fs2_c00348{font-size:43.999200px;}
.fs1_c00348{font-size:59.775600px;}
.fs0_c00348{font-size:86.077200px;}
.y0_c00348{bottom:0.000000px;}
.y36_c00348{bottom:44.250000px;}
.y35_c00348{bottom:96.919500px;}
.y34_c00348{bottom:113.358000px;}
.y33_c00348{bottom:129.796500px;}
.y32_c00348{bottom:146.235000px;}
.y31_c00348{bottom:162.673500px;}
.y30_c00348{bottom:179.112000px;}
.y2f_c00348{bottom:195.550500px;}
.y2e_c00348{bottom:211.989000px;}
.y2d_c00348{bottom:228.427500px;}
.y2c_c00348{bottom:244.866000px;}
.y2b_c00348{bottom:261.304500px;}
.y2a_c00348{bottom:294.180000px;}
.y29_c00348{bottom:310.618500px;}
.y28_c00348{bottom:327.057000px;}
.y27_c00348{bottom:359.934000px;}
.y26_c00348{bottom:376.372500px;}
.y25_c00348{bottom:392.811000px;}
.y24_c00348{bottom:409.249500px;}
.y23_c00348{bottom:425.688000px;}
.y22_c00348{bottom:442.125000px;}
.y21_c00348{bottom:458.563500px;}
.y20_c00348{bottom:507.879000px;}
.y1f_c00348{bottom:524.317500px;}
.y1e_c00348{bottom:540.756000px;}
.y1d_c00348{bottom:557.194500px;}
.y1c_c00348{bottom:573.633000px;}
.y1b_c00348{bottom:590.071500px;}
.y1a_c00348{bottom:606.508500px;}
.y19_c00348{bottom:622.947000px;}
.y18_c00348{bottom:639.385500px;}
.y17_c00348{bottom:655.824000px;}
.y16_c00348{bottom:672.262500px;}
.y15_c00348{bottom:688.701000px;}
.y14_c00348{bottom:705.139500px;}
.y13_c00348{bottom:721.578000px;}
.y12_c00348{bottom:738.016500px;}
.y11_c00348{bottom:754.455000px;}
.y10_c00348{bottom:787.330500px;}
.yf_c00348{bottom:803.769000px;}
.ye_c00348{bottom:853.084500px;}
.yd_c00348{bottom:869.523000px;}
.yc_c00348{bottom:885.588000px;}
.yb_c00348{bottom:925.077000px;}
.ya_c00348{bottom:943.009500px;}
.y9_c00348{bottom:960.942000px;}
.y8_c00348{bottom:978.876000px;}
.y7_c00348{bottom:996.808500px;}
.y6_c00348{bottom:1014.741000px;}
.y5_c00348{bottom:1040.691000px;}
.y4_c00348{bottom:1066.641000px;}
.y3_c00348{bottom:1092.591000px;}
.y2_c00348{bottom:1118.539500px;}
.y1_c00348{bottom:1159.863000px;}
.h5_c00348{height:35.190766px;}
.h6_c00348{height:36.007158px;}
.h3_c00348{height:40.511979px;}
.h4_c00348{height:52.332837px;}
.h2_c00348{height:58.337477px;}
.h0_c00348{height:1262.835000px;}
.h1_c00348{height:1263.000000px;}
.w0_c00348{width:892.920000px;}
.w1_c00348{width:893.250000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:127.558500px;}
.x2_c00348{left:137.122500px;}
.x3_c00348{left:143.770500px;}
.x4_c00348{left:177.007500px;}
.x5_c00348{left:435.249000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls4_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.078221pt;}
.ls2_c00348{letter-spacing:0.087539pt;}
.ls1_c00348{letter-spacing:0.092873pt;}
.ls3_c00348{letter-spacing:23.724873pt;}
.wsc_c00348{word-spacing:-29.967501pt;}
.ws2_c00348{word-spacing:-23.622682pt;}
.wse_c00348{word-spacing:-23.544461pt;}
.ws5_c00348{word-spacing:-16.684034pt;}
.ws4_c00348{word-spacing:-13.283467pt;}
.ws7_c00348{word-spacing:-12.858396pt;}
.wsa_c00348{word-spacing:-12.539593pt;}
.wsb_c00348{word-spacing:-10.733041pt;}
.ws9_c00348{word-spacing:-10.414238pt;}
.ws8_c00348{word-spacing:-10.361104pt;}
.ws1_c00348{word-spacing:-8.878599pt;}
.ws3_c00348{word-spacing:-8.877777pt;}
.ws6_c00348{word-spacing:-1.232128pt;}
.ws12_c00348{word-spacing:0.000000pt;}
.wsf_c00348{word-spacing:0.039110pt;}
.ws15_c00348{word-spacing:0.050460pt;}
.ws13_c00348{word-spacing:0.065111pt;}
.ws14_c00348{word-spacing:0.074430pt;}
.wsd_c00348{word-spacing:0.156442pt;}
.ws16_c00348{word-spacing:0.180412pt;}
.ws10_c00348{word-spacing:0.189730pt;}
.ws11_c00348{word-spacing:0.195063pt;}
.ws0_c00348{word-spacing:38.256533pt;}
._0_c00348{margin-left:-4.208219pt;}
._3_c00348{margin-left:-3.001646pt;}
._2_c00348{margin-left:-0.956410pt;}
._7_c00348{width:0.893988pt;}
._6_c00348{width:14.197386pt;}
._1_c00348{width:17.720725pt;}
._4_c00348{width:21.147279pt;}
._5_c00348{width:35.652825pt;}
._9_c00348{width:47.362694pt;}
._8_c00348{width:70.985376pt;}
._a_c00348{width:118.624363pt;}
.fs2_c00348{font-size:39.110400pt;}
.fs1_c00348{font-size:53.133867pt;}
.fs0_c00348{font-size:76.513067pt;}
.y0_c00348{bottom:0.000000pt;}
.y36_c00348{bottom:39.333333pt;}
.y35_c00348{bottom:86.150667pt;}
.y34_c00348{bottom:100.762667pt;}
.y33_c00348{bottom:115.374667pt;}
.y32_c00348{bottom:129.986667pt;}
.y31_c00348{bottom:144.598667pt;}
.y30_c00348{bottom:159.210667pt;}
.y2f_c00348{bottom:173.822667pt;}
.y2e_c00348{bottom:188.434667pt;}
.y2d_c00348{bottom:203.046667pt;}
.y2c_c00348{bottom:217.658667pt;}
.y2b_c00348{bottom:232.270667pt;}
.y2a_c00348{bottom:261.493333pt;}
.y29_c00348{bottom:276.105333pt;}
.y28_c00348{bottom:290.717333pt;}
.y27_c00348{bottom:319.941333pt;}
.y26_c00348{bottom:334.553333pt;}
.y25_c00348{bottom:349.165333pt;}
.y24_c00348{bottom:363.777333pt;}
.y23_c00348{bottom:378.389333pt;}
.y22_c00348{bottom:393.000000pt;}
.y21_c00348{bottom:407.612000pt;}
.y20_c00348{bottom:451.448000pt;}
.y1f_c00348{bottom:466.060000pt;}
.y1e_c00348{bottom:480.672000pt;}
.y1d_c00348{bottom:495.284000pt;}
.y1c_c00348{bottom:509.896000pt;}
.y1b_c00348{bottom:524.508000pt;}
.y1a_c00348{bottom:539.118667pt;}
.y19_c00348{bottom:553.730667pt;}
.y18_c00348{bottom:568.342667pt;}
.y17_c00348{bottom:582.954667pt;}
.y16_c00348{bottom:597.566667pt;}
.y15_c00348{bottom:612.178667pt;}
.y14_c00348{bottom:626.790667pt;}
.y13_c00348{bottom:641.402667pt;}
.y12_c00348{bottom:656.014667pt;}
.y11_c00348{bottom:670.626667pt;}
.y10_c00348{bottom:699.849333pt;}
.yf_c00348{bottom:714.461333pt;}
.ye_c00348{bottom:758.297333pt;}
.yd_c00348{bottom:772.909333pt;}
.yc_c00348{bottom:787.189333pt;}
.yb_c00348{bottom:822.290667pt;}
.ya_c00348{bottom:838.230667pt;}
.y9_c00348{bottom:854.170667pt;}
.y8_c00348{bottom:870.112000pt;}
.y7_c00348{bottom:886.052000pt;}
.y6_c00348{bottom:901.992000pt;}
.y5_c00348{bottom:925.058667pt;}
.y4_c00348{bottom:948.125333pt;}
.y3_c00348{bottom:971.192000pt;}
.y2_c00348{bottom:994.257333pt;}
.y1_c00348{bottom:1030.989333pt;}
.h5_c00348{height:31.280681pt;}
.h6_c00348{height:32.006363pt;}
.h3_c00348{height:36.010648pt;}
.h4_c00348{height:46.518078pt;}
.h2_c00348{height:51.855535pt;}
.h0_c00348{height:1122.520000pt;}
.h1_c00348{height:1122.666667pt;}
.w0_c00348{width:793.706667pt;}
.w1_c00348{width:794.000000pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:113.385333pt;}
.x2_c00348{left:121.886667pt;}
.x3_c00348{left:127.796000pt;}
.x4_c00348{left:157.340000pt;}
.x5_c00348{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9e30033d6e1cdefad0672b0.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:0.893555;font-style:normal;font-weight:normal;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_e1e7521b28e8e4a3d103e8d3.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.083496;font-style:normal;font-weight:normal;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_bc53c1472cb060988bbdc2c6.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.048828;font-style: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;}
.ls3_c00349{letter-spacing:0.000000px;}
.ls0_c00349{letter-spacing:0.087998px;}
.ls2_c00349{letter-spacing:0.098482px;}
.ls1_c00349{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00349{word-spacing:-33.713438px;}
.ws2_c00349{word-spacing:-26.575517px;}
.wse_c00349{word-spacing:-26.487518px;}
.ws5_c00349{word-spacing:-18.769538px;}
.ws7_c00349{word-spacing:-16.019861px;}
.ws4_c00349{word-spacing:-14.943900px;}
.wsa_c00349{word-spacing:-14.107042px;}
.wsb_c00349{word-spacing:-12.074671px;}
.ws9_c00349{word-spacing:-11.716018px;}
.ws8_c00349{word-spacing:-11.656242px;}
.ws1_c00349{word-spacing:-9.988424px;}
.ws3_c00349{word-spacing:-9.987499px;}
.ws6_c00349{word-spacing:-4.536144px;}
.ws12_c00349{word-spacing:0.000000px;}
.wsf_c00349{word-spacing:0.043999px;}
.ws15_c00349{word-spacing:0.056767px;}
.ws13_c00349{word-spacing:0.073250px;}
.ws14_c00349{word-spacing:0.083734px;}
.wsd_c00349{word-spacing:0.175997px;}
.ws16_c00349{word-spacing:0.202963px;}
.ws10_c00349{word-spacing:0.213446px;}
.ws11_c00349{word-spacing:0.219446px;}
.ws0_c00349{word-spacing:43.038600px;}
._0_c00349{margin-left:-4.734246px;}
._3_c00349{margin-left:-3.376852px;}
._2_c00349{margin-left:-1.075961px;}
._7_c00349{width:1.005737px;}
._6_c00349{width:15.972059px;}
._1_c00349{width:19.935816px;}
._4_c00349{width:23.790689px;}
._5_c00349{width:40.109428px;}
._9_c00349{width:53.283031px;}
._8_c00349{width:79.858548px;}
._a_c00349{width:133.452408px;}
.fc6_c00349{color:rgb(0,0,207);}
.fc5_c00349{color:rgb(79,153,5);}
.fc3_c00349{color:rgb(33,74,135);}
.fc2_c00349{color:rgb(143,89,3);}
.fc4_c00349{color:rgb(207,92,0);}
.fc1_c00349{color:rgb(6,69,173);}
.fc0_c00349{color:rgb(0,0,0);}
.fs2_c00349{font-size:43.999200px;}
.fs1_c00349{font-size:59.775600px;}
.fs0_c00349{font-size:86.077200px;}
.y0_c00349{bottom:0.000000px;}
.y20_c00349{bottom:44.250000px;}
.y1f_c00349{bottom:86.982000px;}
.y1e_c00349{bottom:103.420500px;}
.y1d_c00349{bottom:119.859000px;}
.y1c_c00349{bottom:136.297500px;}
.y1b_c00349{bottom:152.736000px;}
.y1a_c00349{bottom:169.174500px;}
.y19_c00349{bottom:185.613000px;}
.y18_c00349{bottom:202.051500px;}
.y17_c00349{bottom:218.490000px;}
.y16_c00349{bottom:234.927000px;}
.y15_c00349{bottom:251.365500px;}
.y14_c00349{bottom:267.804000px;}
.y13_c00349{bottom:284.242500px;}
.y12_c00349{bottom:300.681000px;}
.y11_c00349{bottom:317.119500px;}
.y10_c00349{bottom:349.996500px;}
.yf_c00349{bottom:366.435000px;}
.ye_c00349{bottom:415.749000px;}
.yd_c00349{bottom:432.187500px;}
.yc_c00349{bottom:448.252500px;}
.yb_c00349{bottom:493.890000px;}
.ya_c00349{bottom:511.822500px;}
.y9_c00349{bottom:529.756500px;}
.y8_c00349{bottom:547.689000px;}
.y7_c00349{bottom:565.621500px;}
.y6_c00349{bottom:583.554000px;}
.y5_c00349{bottom:610.633500px;}
.y4_c00349{bottom:637.714500px;}
.y3_c00349{bottom:664.794000px;}
.y2_c00349{bottom:691.873500px;}
.y1_c00349{bottom:734.407500px;}
.h5_c00349{height:35.190766px;}
.h6_c00349{height:36.007158px;}
.h3_c00349{height:40.511979px;}
.h4_c00349{height:52.332837px;}
.h2_c00349{height:58.337477px;}
.h0_c00349{height:1262.835000px;}
.h1_c00349{height:1263.000000px;}
.w0_c00349{width:892.920000px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:127.558500px;}
.x2_c00349{left:137.122500px;}
.x3_c00349{left:143.770500px;}
.x4_c00349{left:435.249000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls3_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:0.078221pt;}
.ls2_c00349{letter-spacing:0.087539pt;}
.ls1_c00349{letter-spacing:0.092873pt;}
.wsc_c00349{word-spacing:-29.967501pt;}
.ws2_c00349{word-spacing:-23.622682pt;}
.wse_c00349{word-spacing:-23.544461pt;}
.ws5_c00349{word-spacing:-16.684034pt;}
.ws7_c00349{word-spacing:-14.239876pt;}
.ws4_c00349{word-spacing:-13.283467pt;}
.wsa_c00349{word-spacing:-12.539593pt;}
.wsb_c00349{word-spacing:-10.733041pt;}
.ws9_c00349{word-spacing:-10.414238pt;}
.ws8_c00349{word-spacing:-10.361104pt;}
.ws1_c00349{word-spacing:-8.878599pt;}
.ws3_c00349{word-spacing:-8.877777pt;}
.ws6_c00349{word-spacing:-4.032128pt;}
.ws12_c00349{word-spacing:0.000000pt;}
.wsf_c00349{word-spacing:0.039110pt;}
.ws15_c00349{word-spacing:0.050460pt;}
.ws13_c00349{word-spacing:0.065111pt;}
.ws14_c00349{word-spacing:0.074430pt;}
.wsd_c00349{word-spacing:0.156442pt;}
.ws16_c00349{word-spacing:0.180412pt;}
.ws10_c00349{word-spacing:0.189730pt;}
.ws11_c00349{word-spacing:0.195063pt;}
.ws0_c00349{word-spacing:38.256533pt;}
._0_c00349{margin-left:-4.208219pt;}
._3_c00349{margin-left:-3.001646pt;}
._2_c00349{margin-left:-0.956410pt;}
._7_c00349{width:0.893988pt;}
._6_c00349{width:14.197386pt;}
._1_c00349{width:17.720725pt;}
._4_c00349{width:21.147279pt;}
._5_c00349{width:35.652825pt;}
._9_c00349{width:47.362694pt;}
._8_c00349{width:70.985376pt;}
._a_c00349{width:118.624363pt;}
.fs2_c00349{font-size:39.110400pt;}
.fs1_c00349{font-size:53.133867pt;}
.fs0_c00349{font-size:76.513067pt;}
.y0_c00349{bottom:0.000000pt;}
.y20_c00349{bottom:39.333333pt;}
.y1f_c00349{bottom:77.317333pt;}
.y1e_c00349{bottom:91.929333pt;}
.y1d_c00349{bottom:106.541333pt;}
.y1c_c00349{bottom:121.153333pt;}
.y1b_c00349{bottom:135.765333pt;}
.y1a_c00349{bottom:150.377333pt;}
.y19_c00349{bottom:164.989333pt;}
.y18_c00349{bottom:179.601333pt;}
.y17_c00349{bottom:194.213333pt;}
.y16_c00349{bottom:208.824000pt;}
.y15_c00349{bottom:223.436000pt;}
.y14_c00349{bottom:238.048000pt;}
.y13_c00349{bottom:252.660000pt;}
.y12_c00349{bottom:267.272000pt;}
.y11_c00349{bottom:281.884000pt;}
.y10_c00349{bottom:311.108000pt;}
.yf_c00349{bottom:325.720000pt;}
.ye_c00349{bottom:369.554667pt;}
.yd_c00349{bottom:384.166667pt;}
.yc_c00349{bottom:398.446667pt;}
.yb_c00349{bottom:439.013333pt;}
.ya_c00349{bottom:454.953333pt;}
.y9_c00349{bottom:470.894667pt;}
.y8_c00349{bottom:486.834667pt;}
.y7_c00349{bottom:502.774667pt;}
.y6_c00349{bottom:518.714667pt;}
.y5_c00349{bottom:542.785333pt;}
.y4_c00349{bottom:566.857333pt;}
.y3_c00349{bottom:590.928000pt;}
.y2_c00349{bottom:614.998667pt;}
.y1_c00349{bottom:652.806667pt;}
.h5_c00349{height:31.280681pt;}
.h6_c00349{height:32.006363pt;}
.h3_c00349{height:36.010648pt;}
.h4_c00349{height:46.518078pt;}
.h2_c00349{height:51.855535pt;}
.h0_c00349{height:1122.520000pt;}
.h1_c00349{height:1122.666667pt;}
.w0_c00349{width:793.706667pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:113.385333pt;}
.x2_c00349{left:121.886667pt;}
.x3_c00349{left:127.796000pt;}
.x4_c00349{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3448ce02e60720115217cb1.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.048828;font-style:normal;font-weight:normal;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_7c04ec446a6c46213c4e65a5.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.014648;font-style:normal;font-weight:normal;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_4ca61e6ba11aec000c5c2315.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_e0efa120994c83bf81970bed.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.102051;font-style: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;}
.ls4_c00350{letter-spacing:0.000000px;}
.ls0_c00350{letter-spacing:0.087998px;}
.ls2_c00350{letter-spacing:0.098482px;}
.ls3_c00350{letter-spacing:0.104482px;}
.ls1_c00350{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00350{word-spacing:-26.575517px;}
.ws4_c00350{word-spacing:-26.487518px;}
.wsa_c00350{word-spacing:-18.769538px;}
.wsc_c00350{word-spacing:-16.019861px;}
.ws9_c00350{word-spacing:-14.943900px;}
.wsf_c00350{word-spacing:-14.107042px;}
.ws10_c00350{word-spacing:-12.074671px;}
.wse_c00350{word-spacing:-11.716018px;}
.wsd_c00350{word-spacing:-11.656242px;}
.ws7_c00350{word-spacing:-9.988424px;}
.ws8_c00350{word-spacing:-9.987499px;}
.wsb_c00350{word-spacing:-4.536144px;}
.ws3_c00350{word-spacing:0.000000px;}
.ws0_c00350{word-spacing:0.043999px;}
.ws5_c00350{word-spacing:0.213446px;}
.ws1_c00350{word-spacing:0.219446px;}
.ws6_c00350{word-spacing:43.038600px;}
._1_c00350{margin-left:-4.734246px;}
._4_c00350{margin-left:-3.376852px;}
._3_c00350{margin-left:-1.075961px;}
._0_c00350{width:1.041538px;}
._2_c00350{width:19.935816px;}
._5_c00350{width:23.790689px;}
._6_c00350{width:40.109428px;}
.fc5_c00350{color:rgb(79,153,5);}
.fc4_c00350{color:rgb(143,89,3);}
.fc3_c00350{color:rgb(0,0,0);}
.fc6_c00350{color:rgb(6,69,173);}
.fc2_c00350{color:rgb(207,92,0);}
.fc1_c00350{color:rgb(0,0,207);}
.fc0_c00350{color:rgb(33,74,135);}
.fs0_c00350{font-size:43.999200px;}
.fs2_c00350{font-size:59.775600px;}
.fs1_c00350{font-size:86.077200px;}
.y0_c00350{bottom:0.000000px;}
.y20_c00350{bottom:44.250000px;}
.y1f_c00350{bottom:82.051500px;}
.y1e_c00350{bottom:99.984000px;}
.y1d_c00350{bottom:117.916500px;}
.y1c_c00350{bottom:135.849000px;}
.y1b_c00350{bottom:162.501000px;}
.y1a_c00350{bottom:189.151500px;}
.y19_c00350{bottom:215.802000px;}
.y18_c00350{bottom:242.454000px;}
.y17_c00350{bottom:284.478000px;}
.y16_c00350{bottom:748.903500px;}
.y15_c00350{bottom:765.342000px;}
.y14_c00350{bottom:781.780500px;}
.y13_c00350{bottom:798.219000px;}
.y12_c00350{bottom:814.657500px;}
.y11_c00350{bottom:831.096000px;}
.y10_c00350{bottom:847.534500px;}
.yf_c00350{bottom:863.973000px;}
.ye_c00350{bottom:880.411500px;}
.yd_c00350{bottom:896.848500px;}
.yc_c00350{bottom:913.287000px;}
.yb_c00350{bottom:946.164000px;}
.ya_c00350{bottom:962.602500px;}
.y9_c00350{bottom:979.041000px;}
.y8_c00350{bottom:1011.918000px;}
.y7_c00350{bottom:1028.356500px;}
.y6_c00350{bottom:1044.795000px;}
.y5_c00350{bottom:1061.232000px;}
.y4_c00350{bottom:1077.670500px;}
.y3_c00350{bottom:1094.109000px;}
.y2_c00350{bottom:1110.547500px;}
.y1_c00350{bottom:1159.863000px;}
.h3_c00350{height:35.190766px;}
.h2_c00350{height:36.007158px;}
.h5_c00350{height:40.511979px;}
.h6_c00350{height:52.332837px;}
.h4_c00350{height:58.337477px;}
.h0_c00350{height:1262.835000px;}
.h1_c00350{height:1263.000000px;}
.w0_c00350{width:892.920000px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x4_c00350{left:127.558500px;}
.x2_c00350{left:137.122500px;}
.x1_c00350{left:143.770500px;}
.x3_c00350{left:177.007500px;}
.x5_c00350{left:435.249000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls4_c00350{letter-spacing:0.000000pt;}
.ls0_c00350{letter-spacing:0.078221pt;}
.ls2_c00350{letter-spacing:0.087539pt;}
.ls3_c00350{letter-spacing:0.092873pt;}
.ls1_c00350{letter-spacing:23.724873pt;}
.ws2_c00350{word-spacing:-23.622682pt;}
.ws4_c00350{word-spacing:-23.544461pt;}
.wsa_c00350{word-spacing:-16.684034pt;}
.wsc_c00350{word-spacing:-14.239876pt;}
.ws9_c00350{word-spacing:-13.283467pt;}
.wsf_c00350{word-spacing:-12.539593pt;}
.ws10_c00350{word-spacing:-10.733041pt;}
.wse_c00350{word-spacing:-10.414238pt;}
.wsd_c00350{word-spacing:-10.361104pt;}
.ws7_c00350{word-spacing:-8.878599pt;}
.ws8_c00350{word-spacing:-8.877777pt;}
.wsb_c00350{word-spacing:-4.032128pt;}
.ws3_c00350{word-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.039110pt;}
.ws5_c00350{word-spacing:0.189730pt;}
.ws1_c00350{word-spacing:0.195063pt;}
.ws6_c00350{word-spacing:38.256533pt;}
._1_c00350{margin-left:-4.208219pt;}
._4_c00350{margin-left:-3.001646pt;}
._3_c00350{margin-left:-0.956410pt;}
._0_c00350{width:0.925811pt;}
._2_c00350{width:17.720725pt;}
._5_c00350{width:21.147279pt;}
._6_c00350{width:35.652825pt;}
.fs0_c00350{font-size:39.110400pt;}
.fs2_c00350{font-size:53.133867pt;}
.fs1_c00350{font-size:76.513067pt;}
.y0_c00350{bottom:0.000000pt;}
.y20_c00350{bottom:39.333333pt;}
.y1f_c00350{bottom:72.934667pt;}
.y1e_c00350{bottom:88.874667pt;}
.y1d_c00350{bottom:104.814667pt;}
.y1c_c00350{bottom:120.754667pt;}
.y1b_c00350{bottom:144.445333pt;}
.y1a_c00350{bottom:168.134667pt;}
.y19_c00350{bottom:191.824000pt;}
.y18_c00350{bottom:215.514667pt;}
.y17_c00350{bottom:252.869333pt;}
.y16_c00350{bottom:665.692000pt;}
.y15_c00350{bottom:680.304000pt;}
.y14_c00350{bottom:694.916000pt;}
.y13_c00350{bottom:709.528000pt;}
.y12_c00350{bottom:724.140000pt;}
.y11_c00350{bottom:738.752000pt;}
.y10_c00350{bottom:753.364000pt;}
.yf_c00350{bottom:767.976000pt;}
.ye_c00350{bottom:782.588000pt;}
.yd_c00350{bottom:797.198667pt;}
.yc_c00350{bottom:811.810667pt;}
.yb_c00350{bottom:841.034667pt;}
.ya_c00350{bottom:855.646667pt;}
.y9_c00350{bottom:870.258667pt;}
.y8_c00350{bottom:899.482667pt;}
.y7_c00350{bottom:914.094667pt;}
.y6_c00350{bottom:928.706667pt;}
.y5_c00350{bottom:943.317333pt;}
.y4_c00350{bottom:957.929333pt;}
.y3_c00350{bottom:972.541333pt;}
.y2_c00350{bottom:987.153333pt;}
.y1_c00350{bottom:1030.989333pt;}
.h3_c00350{height:31.280681pt;}
.h2_c00350{height:32.006363pt;}
.h5_c00350{height:36.010648pt;}
.h6_c00350{height:46.518078pt;}
.h4_c00350{height:51.855535pt;}
.h0_c00350{height:1122.520000pt;}
.h1_c00350{height:1122.666667pt;}
.w0_c00350{width:793.706667pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x4_c00350{left:113.385333pt;}
.x2_c00350{left:121.886667pt;}
.x1_c00350{left:127.796000pt;}
.x3_c00350{left:157.340000pt;}
.x5_c00350{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fa349b46d4a2d2d0ec872a7.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.102051;font-style:normal;font-weight:normal;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_f0c7a72d43e0c6bc983f87cc.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.048828;font-style:normal;font-weight:normal;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_505490bed0a3fe02413749f5.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls4_c00351{letter-spacing:0.000000px;}
.ls1_c00351{letter-spacing:0.087998px;}
.ls2_c00351{letter-spacing:0.098482px;}
.ls0_c00351{letter-spacing:0.104482px;}
.ls3_c00351{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00351{word-spacing:-26.575517px;}
.ws3_c00351{word-spacing:-26.487518px;}
.ws0_c00351{word-spacing:-18.769538px;}
.ws8_c00351{word-spacing:0.000000px;}
.ws5_c00351{word-spacing:0.043999px;}
.wsb_c00351{word-spacing:0.056767px;}
.ws9_c00351{word-spacing:0.073250px;}
.wsa_c00351{word-spacing:0.083734px;}
.ws2_c00351{word-spacing:0.175997px;}
.wsc_c00351{word-spacing:0.202963px;}
.ws6_c00351{word-spacing:0.213446px;}
.ws7_c00351{word-spacing:0.219446px;}
._0_c00351{margin-left:-3.825638px;}
._1_c00351{width:1.005737px;}
._3_c00351{width:53.283031px;}
._2_c00351{width:79.858548px;}
._4_c00351{width:133.452408px;}
.fc5_c00351{color:rgb(0,0,207);}
.fc4_c00351{color:rgb(79,153,5);}
.fc3_c00351{color:rgb(207,92,0);}
.fc2_c00351{color:rgb(33,74,135);}
.fc1_c00351{color:rgb(143,89,3);}
.fc0_c00351{color:rgb(0,0,0);}
.fs1_c00351{font-size:43.999200px;}
.fs0_c00351{font-size:59.775600px;}
.y0_c00351{bottom:0.000000px;}
.y2d_c00351{bottom:44.250000px;}
.y2c_c00351{bottom:96.919500px;}
.y2b_c00351{bottom:113.358000px;}
.y2a_c00351{bottom:129.796500px;}
.y29_c00351{bottom:146.235000px;}
.y28_c00351{bottom:162.673500px;}
.y27_c00351{bottom:179.112000px;}
.y26_c00351{bottom:195.550500px;}
.y25_c00351{bottom:211.989000px;}
.y24_c00351{bottom:228.427500px;}
.y23_c00351{bottom:244.866000px;}
.y22_c00351{bottom:261.304500px;}
.y21_c00351{bottom:294.180000px;}
.y20_c00351{bottom:310.618500px;}
.y1f_c00351{bottom:327.057000px;}
.y1e_c00351{bottom:359.934000px;}
.y1d_c00351{bottom:376.372500px;}
.y1c_c00351{bottom:392.811000px;}
.y1b_c00351{bottom:409.249500px;}
.y1a_c00351{bottom:425.688000px;}
.y19_c00351{bottom:442.125000px;}
.y18_c00351{bottom:458.563500px;}
.y17_c00351{bottom:507.879000px;}
.y16_c00351{bottom:524.317500px;}
.y15_c00351{bottom:540.756000px;}
.y14_c00351{bottom:557.194500px;}
.y13_c00351{bottom:573.633000px;}
.y12_c00351{bottom:590.071500px;}
.y11_c00351{bottom:606.508500px;}
.y10_c00351{bottom:622.947000px;}
.yf_c00351{bottom:639.385500px;}
.ye_c00351{bottom:655.824000px;}
.yd_c00351{bottom:672.262500px;}
.yc_c00351{bottom:688.701000px;}
.yb_c00351{bottom:705.139500px;}
.ya_c00351{bottom:721.578000px;}
.y9_c00351{bottom:738.016500px;}
.y8_c00351{bottom:754.455000px;}
.y7_c00351{bottom:787.330500px;}
.y6_c00351{bottom:803.769000px;}
.y5_c00351{bottom:853.084500px;}
.y4_c00351{bottom:869.523000px;}
.y3_c00351{bottom:885.588000px;}
.y2_c00351{bottom:1141.930500px;}
.y1_c00351{bottom:1159.863000px;}
.h3_c00351{height:35.190766px;}
.h4_c00351{height:36.007158px;}
.h2_c00351{height:52.332837px;}
.h0_c00351{height:1262.835000px;}
.h1_c00351{height:1263.000000px;}
.w0_c00351{width:892.920000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:127.558500px;}
.x2_c00351{left:137.122500px;}
.x3_c00351{left:143.770500px;}
.x4_c00351{left:177.007500px;}
.x5_c00351{left:435.249000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls4_c00351{letter-spacing:0.000000pt;}
.ls1_c00351{letter-spacing:0.078221pt;}
.ls2_c00351{letter-spacing:0.087539pt;}
.ls0_c00351{letter-spacing:0.092873pt;}
.ls3_c00351{letter-spacing:23.724873pt;}
.ws1_c00351{word-spacing:-29.967501pt;}
.ws4_c00351{word-spacing:-23.622682pt;}
.ws3_c00351{word-spacing:-23.544461pt;}
.ws0_c00351{word-spacing:-16.684034pt;}
.ws8_c00351{word-spacing:0.000000pt;}
.ws5_c00351{word-spacing:0.039110pt;}
.wsb_c00351{word-spacing:0.050460pt;}
.ws9_c00351{word-spacing:0.065111pt;}
.wsa_c00351{word-spacing:0.074430pt;}
.ws2_c00351{word-spacing:0.156442pt;}
.wsc_c00351{word-spacing:0.180412pt;}
.ws6_c00351{word-spacing:0.189730pt;}
.ws7_c00351{word-spacing:0.195063pt;}
._0_c00351{margin-left:-3.400567pt;}
._1_c00351{width:0.893988pt;}
._3_c00351{width:47.362694pt;}
._2_c00351{width:70.985376pt;}
._4_c00351{width:118.624363pt;}
.fs1_c00351{font-size:39.110400pt;}
.fs0_c00351{font-size:53.133867pt;}
.y0_c00351{bottom:0.000000pt;}
.y2d_c00351{bottom:39.333333pt;}
.y2c_c00351{bottom:86.150667pt;}
.y2b_c00351{bottom:100.762667pt;}
.y2a_c00351{bottom:115.374667pt;}
.y29_c00351{bottom:129.986667pt;}
.y28_c00351{bottom:144.598667pt;}
.y27_c00351{bottom:159.210667pt;}
.y26_c00351{bottom:173.822667pt;}
.y25_c00351{bottom:188.434667pt;}
.y24_c00351{bottom:203.046667pt;}
.y23_c00351{bottom:217.658667pt;}
.y22_c00351{bottom:232.270667pt;}
.y21_c00351{bottom:261.493333pt;}
.y20_c00351{bottom:276.105333pt;}
.y1f_c00351{bottom:290.717333pt;}
.y1e_c00351{bottom:319.941333pt;}
.y1d_c00351{bottom:334.553333pt;}
.y1c_c00351{bottom:349.165333pt;}
.y1b_c00351{bottom:363.777333pt;}
.y1a_c00351{bottom:378.389333pt;}
.y19_c00351{bottom:393.000000pt;}
.y18_c00351{bottom:407.612000pt;}
.y17_c00351{bottom:451.448000pt;}
.y16_c00351{bottom:466.060000pt;}
.y15_c00351{bottom:480.672000pt;}
.y14_c00351{bottom:495.284000pt;}
.y13_c00351{bottom:509.896000pt;}
.y12_c00351{bottom:524.508000pt;}
.y11_c00351{bottom:539.118667pt;}
.y10_c00351{bottom:553.730667pt;}
.yf_c00351{bottom:568.342667pt;}
.ye_c00351{bottom:582.954667pt;}
.yd_c00351{bottom:597.566667pt;}
.yc_c00351{bottom:612.178667pt;}
.yb_c00351{bottom:626.790667pt;}
.ya_c00351{bottom:641.402667pt;}
.y9_c00351{bottom:656.014667pt;}
.y8_c00351{bottom:670.626667pt;}
.y7_c00351{bottom:699.849333pt;}
.y6_c00351{bottom:714.461333pt;}
.y5_c00351{bottom:758.297333pt;}
.y4_c00351{bottom:772.909333pt;}
.y3_c00351{bottom:787.189333pt;}
.y2_c00351{bottom:1015.049333pt;}
.y1_c00351{bottom:1030.989333pt;}
.h3_c00351{height:31.280681pt;}
.h4_c00351{height:32.006363pt;}
.h2_c00351{height:46.518078pt;}
.h0_c00351{height:1122.520000pt;}
.h1_c00351{height:1122.666667pt;}
.w0_c00351{width:793.706667pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:113.385333pt;}
.x2_c00351{left:121.886667pt;}
.x3_c00351{left:127.796000pt;}
.x4_c00351{left:157.340000pt;}
.x5_c00351{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4870a3f8c207bd84dd2fb941.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.893555;font-style:normal;font-weight:normal;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_c6b0bd055ca11bc7104adb89.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.083496;font-style:normal;font-weight:normal;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_bc53c1472cb060988bbdc2c6.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.048828;font-style: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;}
.ls3_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.087998px;}
.ls2_c00352{letter-spacing:0.098482px;}
.ls1_c00352{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00352{word-spacing:-33.713438px;}
.ws2_c00352{word-spacing:-26.575517px;}
.wse_c00352{word-spacing:-26.487518px;}
.ws5_c00352{word-spacing:-18.769538px;}
.ws7_c00352{word-spacing:-17.633802px;}
.ws4_c00352{word-spacing:-14.943900px;}
.wsa_c00352{word-spacing:-14.107042px;}
.wsb_c00352{word-spacing:-12.074671px;}
.ws9_c00352{word-spacing:-11.716018px;}
.ws8_c00352{word-spacing:-11.656242px;}
.ws1_c00352{word-spacing:-9.988424px;}
.ws3_c00352{word-spacing:-9.987499px;}
.ws6_c00352{word-spacing:-7.680144px;}
.ws12_c00352{word-spacing:0.000000px;}
.wsf_c00352{word-spacing:0.043999px;}
.ws15_c00352{word-spacing:0.056767px;}
.ws13_c00352{word-spacing:0.073250px;}
.ws14_c00352{word-spacing:0.083734px;}
.wsd_c00352{word-spacing:0.175997px;}
.ws16_c00352{word-spacing:0.202963px;}
.ws10_c00352{word-spacing:0.213446px;}
.ws11_c00352{word-spacing:0.219446px;}
.ws0_c00352{word-spacing:43.038600px;}
._0_c00352{margin-left:-4.734246px;}
._3_c00352{margin-left:-3.376852px;}
._2_c00352{margin-left:-1.075961px;}
._7_c00352{width:1.005737px;}
._6_c00352{width:15.972059px;}
._1_c00352{width:19.935816px;}
._4_c00352{width:23.790689px;}
._5_c00352{width:40.109428px;}
._9_c00352{width:53.283031px;}
._8_c00352{width:79.858548px;}
._a_c00352{width:133.452408px;}
.fc6_c00352{color:rgb(0,0,207);}
.fc5_c00352{color:rgb(79,153,5);}
.fc3_c00352{color:rgb(33,74,135);}
.fc2_c00352{color:rgb(143,89,3);}
.fc4_c00352{color:rgb(207,92,0);}
.fc1_c00352{color:rgb(6,69,173);}
.fc0_c00352{color:rgb(0,0,0);}
.fs2_c00352{font-size:43.999200px;}
.fs1_c00352{font-size:59.775600px;}
.fs0_c00352{font-size:86.077200px;}
.y0_c00352{bottom:0.000000px;}
.y20_c00352{bottom:44.250000px;}
.y1f_c00352{bottom:86.982000px;}
.y1e_c00352{bottom:103.420500px;}
.y1d_c00352{bottom:119.859000px;}
.y1c_c00352{bottom:136.297500px;}
.y1b_c00352{bottom:152.736000px;}
.y1a_c00352{bottom:169.174500px;}
.y19_c00352{bottom:185.613000px;}
.y18_c00352{bottom:202.051500px;}
.y17_c00352{bottom:218.490000px;}
.y16_c00352{bottom:234.927000px;}
.y15_c00352{bottom:251.365500px;}
.y14_c00352{bottom:267.804000px;}
.y13_c00352{bottom:284.242500px;}
.y12_c00352{bottom:300.681000px;}
.y11_c00352{bottom:317.119500px;}
.y10_c00352{bottom:349.996500px;}
.yf_c00352{bottom:366.435000px;}
.ye_c00352{bottom:415.749000px;}
.yd_c00352{bottom:432.187500px;}
.yc_c00352{bottom:448.252500px;}
.yb_c00352{bottom:493.890000px;}
.ya_c00352{bottom:511.822500px;}
.y9_c00352{bottom:529.756500px;}
.y8_c00352{bottom:547.689000px;}
.y7_c00352{bottom:565.621500px;}
.y6_c00352{bottom:583.554000px;}
.y5_c00352{bottom:610.633500px;}
.y4_c00352{bottom:637.714500px;}
.y3_c00352{bottom:664.794000px;}
.y2_c00352{bottom:691.873500px;}
.y1_c00352{bottom:734.407500px;}
.h5_c00352{height:35.190766px;}
.h6_c00352{height:36.007158px;}
.h3_c00352{height:40.511979px;}
.h4_c00352{height:52.332837px;}
.h2_c00352{height:58.337477px;}
.h0_c00352{height:1262.835000px;}
.h1_c00352{height:1263.000000px;}
.w0_c00352{width:892.920000px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:127.558500px;}
.x2_c00352{left:137.122500px;}
.x3_c00352{left:143.770500px;}
.x4_c00352{left:435.249000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls3_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.078221pt;}
.ls2_c00352{letter-spacing:0.087539pt;}
.ls1_c00352{letter-spacing:0.092873pt;}
.wsc_c00352{word-spacing:-29.967501pt;}
.ws2_c00352{word-spacing:-23.622682pt;}
.wse_c00352{word-spacing:-23.544461pt;}
.ws5_c00352{word-spacing:-16.684034pt;}
.ws7_c00352{word-spacing:-15.674491pt;}
.ws4_c00352{word-spacing:-13.283467pt;}
.wsa_c00352{word-spacing:-12.539593pt;}
.wsb_c00352{word-spacing:-10.733041pt;}
.ws9_c00352{word-spacing:-10.414238pt;}
.ws8_c00352{word-spacing:-10.361104pt;}
.ws1_c00352{word-spacing:-8.878599pt;}
.ws3_c00352{word-spacing:-8.877777pt;}
.ws6_c00352{word-spacing:-6.826795pt;}
.ws12_c00352{word-spacing:0.000000pt;}
.wsf_c00352{word-spacing:0.039110pt;}
.ws15_c00352{word-spacing:0.050460pt;}
.ws13_c00352{word-spacing:0.065111pt;}
.ws14_c00352{word-spacing:0.074430pt;}
.wsd_c00352{word-spacing:0.156442pt;}
.ws16_c00352{word-spacing:0.180412pt;}
.ws10_c00352{word-spacing:0.189730pt;}
.ws11_c00352{word-spacing:0.195063pt;}
.ws0_c00352{word-spacing:38.256533pt;}
._0_c00352{margin-left:-4.208219pt;}
._3_c00352{margin-left:-3.001646pt;}
._2_c00352{margin-left:-0.956410pt;}
._7_c00352{width:0.893988pt;}
._6_c00352{width:14.197386pt;}
._1_c00352{width:17.720725pt;}
._4_c00352{width:21.147279pt;}
._5_c00352{width:35.652825pt;}
._9_c00352{width:47.362694pt;}
._8_c00352{width:70.985376pt;}
._a_c00352{width:118.624363pt;}
.fs2_c00352{font-size:39.110400pt;}
.fs1_c00352{font-size:53.133867pt;}
.fs0_c00352{font-size:76.513067pt;}
.y0_c00352{bottom:0.000000pt;}
.y20_c00352{bottom:39.333333pt;}
.y1f_c00352{bottom:77.317333pt;}
.y1e_c00352{bottom:91.929333pt;}
.y1d_c00352{bottom:106.541333pt;}
.y1c_c00352{bottom:121.153333pt;}
.y1b_c00352{bottom:135.765333pt;}
.y1a_c00352{bottom:150.377333pt;}
.y19_c00352{bottom:164.989333pt;}
.y18_c00352{bottom:179.601333pt;}
.y17_c00352{bottom:194.213333pt;}
.y16_c00352{bottom:208.824000pt;}
.y15_c00352{bottom:223.436000pt;}
.y14_c00352{bottom:238.048000pt;}
.y13_c00352{bottom:252.660000pt;}
.y12_c00352{bottom:267.272000pt;}
.y11_c00352{bottom:281.884000pt;}
.y10_c00352{bottom:311.108000pt;}
.yf_c00352{bottom:325.720000pt;}
.ye_c00352{bottom:369.554667pt;}
.yd_c00352{bottom:384.166667pt;}
.yc_c00352{bottom:398.446667pt;}
.yb_c00352{bottom:439.013333pt;}
.ya_c00352{bottom:454.953333pt;}
.y9_c00352{bottom:470.894667pt;}
.y8_c00352{bottom:486.834667pt;}
.y7_c00352{bottom:502.774667pt;}
.y6_c00352{bottom:518.714667pt;}
.y5_c00352{bottom:542.785333pt;}
.y4_c00352{bottom:566.857333pt;}
.y3_c00352{bottom:590.928000pt;}
.y2_c00352{bottom:614.998667pt;}
.y1_c00352{bottom:652.806667pt;}
.h5_c00352{height:31.280681pt;}
.h6_c00352{height:32.006363pt;}
.h3_c00352{height:36.010648pt;}
.h4_c00352{height:46.518078pt;}
.h2_c00352{height:51.855535pt;}
.h0_c00352{height:1122.520000pt;}
.h1_c00352{height:1122.666667pt;}
.w0_c00352{width:793.706667pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:113.385333pt;}
.x2_c00352{left:121.886667pt;}
.x3_c00352{left:127.796000pt;}
.x4_c00352{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58579a7b810e9c4eb9d6f175.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.048828;font-style:normal;font-weight:normal;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_18043ad1192e33b128a3e0e1.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.014648;font-style:normal;font-weight:normal;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_433b4a629e76de2762c8f8ef.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00353;src:url('chunks/assets/font_737d29692937cbfead0f20ad.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.102051;font-style: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.000000px;}
.ls0_c00353{letter-spacing:0.087998px;}
.ls2_c00353{letter-spacing:0.098482px;}
.ls3_c00353{letter-spacing:0.104482px;}
.ls1_c00353{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00353{word-spacing:-26.575517px;}
.ws4_c00353{word-spacing:-26.487518px;}
.ws12_c00353{word-spacing:-20.622582px;}
.ws11_c00353{word-spacing:-19.546621px;}
.wsa_c00353{word-spacing:-18.769538px;}
.wsd_c00353{word-spacing:-17.396484px;}
.wse_c00353{word-spacing:-17.394700px;}
.wsc_c00353{word-spacing:-17.334924px;}
.ws10_c00353{word-spacing:-16.884240px;}
.wsf_c00353{word-spacing:-16.796944px;}
.ws9_c00353{word-spacing:-14.943900px;}
.ws13_c00353{word-spacing:-13.411015px;}
.ws7_c00353{word-spacing:-9.988424px;}
.ws8_c00353{word-spacing:-9.987499px;}
.wsb_c00353{word-spacing:-7.152144px;}
.ws3_c00353{word-spacing:0.000000px;}
.ws0_c00353{word-spacing:0.043999px;}
.ws5_c00353{word-spacing:0.213446px;}
.ws1_c00353{word-spacing:0.219446px;}
.ws6_c00353{word-spacing:43.038600px;}
._2_c00353{margin-left:-4.734246px;}
._3_c00353{margin-left:-3.184856px;}
._5_c00353{margin-left:-1.075961px;}
._1_c00353{width:1.041538px;}
._4_c00353{width:19.935816px;}
._0_c00353{width:106.610062px;}
.fc5_c00353{color:rgb(79,153,5);}
.fc4_c00353{color:rgb(143,89,3);}
.fc3_c00353{color:rgb(0,0,0);}
.fc6_c00353{color:rgb(6,69,173);}
.fc2_c00353{color:rgb(207,92,0);}
.fc1_c00353{color:rgb(0,0,207);}
.fc0_c00353{color:rgb(33,74,135);}
.fs0_c00353{font-size:43.999200px;}
.fs2_c00353{font-size:59.775600px;}
.fs1_c00353{font-size:86.077200px;}
.y0_c00353{bottom:0.000000px;}
.y20_c00353{bottom:44.250000px;}
.y1f_c00353{bottom:82.051500px;}
.y1e_c00353{bottom:99.984000px;}
.y1d_c00353{bottom:117.916500px;}
.y1c_c00353{bottom:135.849000px;}
.y1b_c00353{bottom:162.501000px;}
.y1a_c00353{bottom:189.151500px;}
.y19_c00353{bottom:215.802000px;}
.y18_c00353{bottom:242.454000px;}
.y17_c00353{bottom:284.478000px;}
.y16_c00353{bottom:748.903500px;}
.y15_c00353{bottom:765.342000px;}
.y14_c00353{bottom:781.780500px;}
.y13_c00353{bottom:798.219000px;}
.y12_c00353{bottom:814.657500px;}
.y11_c00353{bottom:831.096000px;}
.y10_c00353{bottom:847.534500px;}
.yf_c00353{bottom:863.973000px;}
.ye_c00353{bottom:880.411500px;}
.yd_c00353{bottom:896.848500px;}
.yc_c00353{bottom:913.287000px;}
.yb_c00353{bottom:946.164000px;}
.ya_c00353{bottom:962.602500px;}
.y9_c00353{bottom:979.041000px;}
.y8_c00353{bottom:1011.918000px;}
.y7_c00353{bottom:1028.356500px;}
.y6_c00353{bottom:1044.795000px;}
.y5_c00353{bottom:1061.232000px;}
.y4_c00353{bottom:1077.670500px;}
.y3_c00353{bottom:1094.109000px;}
.y2_c00353{bottom:1110.547500px;}
.y1_c00353{bottom:1159.863000px;}
.h3_c00353{height:35.190766px;}
.h2_c00353{height:36.007158px;}
.h5_c00353{height:40.511979px;}
.h6_c00353{height:52.332837px;}
.h4_c00353{height:58.337477px;}
.h0_c00353{height:1262.835000px;}
.h1_c00353{height:1263.000000px;}
.w0_c00353{width:892.920000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x4_c00353{left:127.558500px;}
.x2_c00353{left:137.122500px;}
.x1_c00353{left:143.770500px;}
.x3_c00353{left:177.007500px;}
.x5_c00353{left:435.249000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls4_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:0.078221pt;}
.ls2_c00353{letter-spacing:0.087539pt;}
.ls3_c00353{letter-spacing:0.092873pt;}
.ls1_c00353{letter-spacing:23.724873pt;}
.ws2_c00353{word-spacing:-23.622682pt;}
.ws4_c00353{word-spacing:-23.544461pt;}
.ws12_c00353{word-spacing:-18.331184pt;}
.ws11_c00353{word-spacing:-17.374774pt;}
.wsa_c00353{word-spacing:-16.684034pt;}
.wsd_c00353{word-spacing:-15.463541pt;}
.wse_c00353{word-spacing:-15.461955pt;}
.wsc_c00353{word-spacing:-15.408821pt;}
.ws10_c00353{word-spacing:-15.008213pt;}
.wsf_c00353{word-spacing:-14.930617pt;}
.ws9_c00353{word-spacing:-13.283467pt;}
.ws13_c00353{word-spacing:-11.920902pt;}
.ws7_c00353{word-spacing:-8.878599pt;}
.ws8_c00353{word-spacing:-8.877777pt;}
.wsb_c00353{word-spacing:-6.357461pt;}
.ws3_c00353{word-spacing:0.000000pt;}
.ws0_c00353{word-spacing:0.039110pt;}
.ws5_c00353{word-spacing:0.189730pt;}
.ws1_c00353{word-spacing:0.195063pt;}
.ws6_c00353{word-spacing:38.256533pt;}
._2_c00353{margin-left:-4.208219pt;}
._3_c00353{margin-left:-2.830983pt;}
._5_c00353{margin-left:-0.956410pt;}
._1_c00353{width:0.925811pt;}
._4_c00353{width:17.720725pt;}
._0_c00353{width:94.764499pt;}
.fs0_c00353{font-size:39.110400pt;}
.fs2_c00353{font-size:53.133867pt;}
.fs1_c00353{font-size:76.513067pt;}
.y0_c00353{bottom:0.000000pt;}
.y20_c00353{bottom:39.333333pt;}
.y1f_c00353{bottom:72.934667pt;}
.y1e_c00353{bottom:88.874667pt;}
.y1d_c00353{bottom:104.814667pt;}
.y1c_c00353{bottom:120.754667pt;}
.y1b_c00353{bottom:144.445333pt;}
.y1a_c00353{bottom:168.134667pt;}
.y19_c00353{bottom:191.824000pt;}
.y18_c00353{bottom:215.514667pt;}
.y17_c00353{bottom:252.869333pt;}
.y16_c00353{bottom:665.692000pt;}
.y15_c00353{bottom:680.304000pt;}
.y14_c00353{bottom:694.916000pt;}
.y13_c00353{bottom:709.528000pt;}
.y12_c00353{bottom:724.140000pt;}
.y11_c00353{bottom:738.752000pt;}
.y10_c00353{bottom:753.364000pt;}
.yf_c00353{bottom:767.976000pt;}
.ye_c00353{bottom:782.588000pt;}
.yd_c00353{bottom:797.198667pt;}
.yc_c00353{bottom:811.810667pt;}
.yb_c00353{bottom:841.034667pt;}
.ya_c00353{bottom:855.646667pt;}
.y9_c00353{bottom:870.258667pt;}
.y8_c00353{bottom:899.482667pt;}
.y7_c00353{bottom:914.094667pt;}
.y6_c00353{bottom:928.706667pt;}
.y5_c00353{bottom:943.317333pt;}
.y4_c00353{bottom:957.929333pt;}
.y3_c00353{bottom:972.541333pt;}
.y2_c00353{bottom:987.153333pt;}
.y1_c00353{bottom:1030.989333pt;}
.h3_c00353{height:31.280681pt;}
.h2_c00353{height:32.006363pt;}
.h5_c00353{height:36.010648pt;}
.h6_c00353{height:46.518078pt;}
.h4_c00353{height:51.855535pt;}
.h0_c00353{height:1122.520000pt;}
.h1_c00353{height:1122.666667pt;}
.w0_c00353{width:793.706667pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x4_c00353{left:113.385333pt;}
.x2_c00353{left:121.886667pt;}
.x1_c00353{left:127.796000pt;}
.x3_c00353{left:157.340000pt;}
.x5_c00353{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fb3a06ec89a097c3f29687f.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.102051;font-style:normal;font-weight:normal;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_3f7e79203a9326952d28713d.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_4e46257c564d728e17d6e0f9.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_fe53fb2194315d2b11996a0d.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls5_c00354{letter-spacing:0.000000px;}
.ls1_c00354{letter-spacing:0.087998px;}
.ls2_c00354{letter-spacing:0.098482px;}
.ls0_c00354{letter-spacing:0.104482px;}
.ls4_c00354{letter-spacing:26.690482px;}
.ls3_c00354{letter-spacing:26.732482px;}
.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;}
}
.ws5_c00354{word-spacing:-26.575517px;}
.ws4_c00354{word-spacing:-26.487518px;}
.ws0_c00354{word-spacing:-19.845499px;}
.ws2_c00354{word-spacing:-18.769538px;}
.ws1_c00354{word-spacing:-18.410885px;}
.ws9_c00354{word-spacing:0.000000px;}
.ws10_c00354{word-spacing:0.026966px;}
.ws6_c00354{word-spacing:0.043999px;}
.wse_c00354{word-spacing:0.046284px;}
.wsb_c00354{word-spacing:0.056767px;}
.wsa_c00354{word-spacing:0.059933px;}
.wsd_c00354{word-spacing:0.073250px;}
.wsf_c00354{word-spacing:0.083734px;}
.ws3_c00354{word-spacing:0.175997px;}
.wsc_c00354{word-spacing:0.202963px;}
.ws7_c00354{word-spacing:0.213446px;}
.ws8_c00354{word-spacing:0.219446px;}
._2_c00354{margin-left:-3.825638px;}
._3_c00354{width:1.005737px;}
._0_c00354{width:19.725948px;}
._1_c00354{width:21.339889px;}
._7_c00354{width:53.283031px;}
._4_c00354{width:79.858548px;}
._6_c00354{width:106.434065px;}
._5_c00354{width:133.452408px;}
._8_c00354{width:186.179933px;}
.fc5_c00354{color:rgb(0,0,207);}
.fc4_c00354{color:rgb(79,153,5);}
.fc3_c00354{color:rgb(207,92,0);}
.fc2_c00354{color:rgb(33,74,135);}
.fc1_c00354{color:rgb(143,89,3);}
.fc0_c00354{color:rgb(0,0,0);}
.fs1_c00354{font-size:43.999200px;}
.fs0_c00354{font-size:59.775600px;}
.y0_c00354{bottom:0.000000px;}
.y35_c00354{bottom:44.250000px;}
.y34_c00354{bottom:86.982000px;}
.y33_c00354{bottom:103.420500px;}
.y32_c00354{bottom:136.297500px;}
.y31_c00354{bottom:152.736000px;}
.y30_c00354{bottom:169.174500px;}
.y2f_c00354{bottom:202.051500px;}
.y2e_c00354{bottom:218.490000px;}
.y2d_c00354{bottom:234.927000px;}
.y2c_c00354{bottom:251.365500px;}
.y2b_c00354{bottom:267.804000px;}
.y2a_c00354{bottom:284.242500px;}
.y29_c00354{bottom:300.681000px;}
.y28_c00354{bottom:317.119500px;}
.y27_c00354{bottom:333.558000px;}
.y26_c00354{bottom:349.996500px;}
.y25_c00354{bottom:366.435000px;}
.y24_c00354{bottom:382.873500px;}
.y23_c00354{bottom:399.310500px;}
.y22_c00354{bottom:415.749000px;}
.y21_c00354{bottom:432.187500px;}
.y20_c00354{bottom:448.626000px;}
.y1f_c00354{bottom:465.064500px;}
.y1e_c00354{bottom:481.503000px;}
.y1d_c00354{bottom:497.941500px;}
.y1c_c00354{bottom:547.257000px;}
.y1b_c00354{bottom:563.695500px;}
.y1a_c00354{bottom:580.132500px;}
.y19_c00354{bottom:596.571000px;}
.y18_c00354{bottom:613.009500px;}
.y17_c00354{bottom:645.886500px;}
.y16_c00354{bottom:662.325000px;}
.y15_c00354{bottom:695.202000px;}
.y14_c00354{bottom:711.640500px;}
.y13_c00354{bottom:744.516000px;}
.y12_c00354{bottom:760.954500px;}
.y11_c00354{bottom:777.393000px;}
.y10_c00354{bottom:810.270000px;}
.yf_c00354{bottom:826.708500px;}
.ye_c00354{bottom:859.585500px;}
.yd_c00354{bottom:876.024000px;}
.yc_c00354{bottom:892.462500px;}
.yb_c00354{bottom:941.776500px;}
.ya_c00354{bottom:958.215000px;}
.y9_c00354{bottom:974.653500px;}
.y8_c00354{bottom:991.092000px;}
.y7_c00354{bottom:1007.530500px;}
.y6_c00354{bottom:1040.407500px;}
.y5_c00354{bottom:1056.846000px;}
.y4_c00354{bottom:1072.909500px;}
.y3_c00354{bottom:1123.998000px;}
.y2_c00354{bottom:1141.930500px;}
.y1_c00354{bottom:1159.863000px;}
.h3_c00354{height:35.190766px;}
.h4_c00354{height:36.007158px;}
.h2_c00354{height:52.332837px;}
.h0_c00354{height:1262.835000px;}
.h1_c00354{height:1263.000000px;}
.w0_c00354{width:892.920000px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:127.558500px;}
.x2_c00354{left:137.122500px;}
.x4_c00354{left:143.770500px;}
.x3_c00354{left:236.832000px;}
.x5_c00354{left:435.249000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls5_c00354{letter-spacing:0.000000pt;}
.ls1_c00354{letter-spacing:0.078221pt;}
.ls2_c00354{letter-spacing:0.087539pt;}
.ls0_c00354{letter-spacing:0.092873pt;}
.ls4_c00354{letter-spacing:23.724873pt;}
.ls3_c00354{letter-spacing:23.762206pt;}
.ws5_c00354{word-spacing:-23.622682pt;}
.ws4_c00354{word-spacing:-23.544461pt;}
.ws0_c00354{word-spacing:-17.640444pt;}
.ws2_c00354{word-spacing:-16.684034pt;}
.ws1_c00354{word-spacing:-16.365231pt;}
.ws9_c00354{word-spacing:0.000000pt;}
.ws10_c00354{word-spacing:0.023970pt;}
.ws6_c00354{word-spacing:0.039110pt;}
.wse_c00354{word-spacing:0.041141pt;}
.wsb_c00354{word-spacing:0.050460pt;}
.wsa_c00354{word-spacing:0.053274pt;}
.wsd_c00354{word-spacing:0.065111pt;}
.wsf_c00354{word-spacing:0.074430pt;}
.ws3_c00354{word-spacing:0.156442pt;}
.wsc_c00354{word-spacing:0.180412pt;}
.ws7_c00354{word-spacing:0.189730pt;}
.ws8_c00354{word-spacing:0.195063pt;}
._2_c00354{margin-left:-3.400567pt;}
._3_c00354{width:0.893988pt;}
._0_c00354{width:17.534176pt;}
._1_c00354{width:18.968790pt;}
._7_c00354{width:47.362694pt;}
._4_c00354{width:70.985376pt;}
._6_c00354{width:94.608058pt;}
._5_c00354{width:118.624363pt;}
._8_c00354{width:165.493274pt;}
.fs1_c00354{font-size:39.110400pt;}
.fs0_c00354{font-size:53.133867pt;}
.y0_c00354{bottom:0.000000pt;}
.y35_c00354{bottom:39.333333pt;}
.y34_c00354{bottom:77.317333pt;}
.y33_c00354{bottom:91.929333pt;}
.y32_c00354{bottom:121.153333pt;}
.y31_c00354{bottom:135.765333pt;}
.y30_c00354{bottom:150.377333pt;}
.y2f_c00354{bottom:179.601333pt;}
.y2e_c00354{bottom:194.213333pt;}
.y2d_c00354{bottom:208.824000pt;}
.y2c_c00354{bottom:223.436000pt;}
.y2b_c00354{bottom:238.048000pt;}
.y2a_c00354{bottom:252.660000pt;}
.y29_c00354{bottom:267.272000pt;}
.y28_c00354{bottom:281.884000pt;}
.y27_c00354{bottom:296.496000pt;}
.y26_c00354{bottom:311.108000pt;}
.y25_c00354{bottom:325.720000pt;}
.y24_c00354{bottom:340.332000pt;}
.y23_c00354{bottom:354.942667pt;}
.y22_c00354{bottom:369.554667pt;}
.y21_c00354{bottom:384.166667pt;}
.y20_c00354{bottom:398.778667pt;}
.y1f_c00354{bottom:413.390667pt;}
.y1e_c00354{bottom:428.002667pt;}
.y1d_c00354{bottom:442.614667pt;}
.y1c_c00354{bottom:486.450667pt;}
.y1b_c00354{bottom:501.062667pt;}
.y1a_c00354{bottom:515.673333pt;}
.y19_c00354{bottom:530.285333pt;}
.y18_c00354{bottom:544.897333pt;}
.y17_c00354{bottom:574.121333pt;}
.y16_c00354{bottom:588.733333pt;}
.y15_c00354{bottom:617.957333pt;}
.y14_c00354{bottom:632.569333pt;}
.y13_c00354{bottom:661.792000pt;}
.y12_c00354{bottom:676.404000pt;}
.y11_c00354{bottom:691.016000pt;}
.y10_c00354{bottom:720.240000pt;}
.yf_c00354{bottom:734.852000pt;}
.ye_c00354{bottom:764.076000pt;}
.yd_c00354{bottom:778.688000pt;}
.yc_c00354{bottom:793.300000pt;}
.yb_c00354{bottom:837.134667pt;}
.ya_c00354{bottom:851.746667pt;}
.y9_c00354{bottom:866.358667pt;}
.y8_c00354{bottom:880.970667pt;}
.y7_c00354{bottom:895.582667pt;}
.y6_c00354{bottom:924.806667pt;}
.y5_c00354{bottom:939.418667pt;}
.y4_c00354{bottom:953.697333pt;}
.y3_c00354{bottom:999.109333pt;}
.y2_c00354{bottom:1015.049333pt;}
.y1_c00354{bottom:1030.989333pt;}
.h3_c00354{height:31.280681pt;}
.h4_c00354{height:32.006363pt;}
.h2_c00354{height:46.518078pt;}
.h0_c00354{height:1122.520000pt;}
.h1_c00354{height:1122.666667pt;}
.w0_c00354{width:793.706667pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:113.385333pt;}
.x2_c00354{left:121.886667pt;}
.x4_c00354{left:127.796000pt;}
.x3_c00354{left:210.517333pt;}
.x5_c00354{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a672efebe14cc32ead6e3dc.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.083496;font-style:normal;font-weight:normal;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_4cdfba4197effefec87234a8.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.048828;font-style:normal;font-weight:normal;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_a95d80b71b2ec649b7f966f1.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.893555;font-style:normal;font-weight:normal;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_1489d2338a405188ed941064.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00355;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.014648;font-style: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;}
.ls3_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:0.087998px;}
.ls2_c00355{letter-spacing:0.098482px;}
.ls1_c00355{letter-spacing:0.104482px;}
.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;}
}
.wsd_c00355{word-spacing:-33.713438px;}
.ws0_c00355{word-spacing:-26.575517px;}
.ws1_c00355{word-spacing:-26.487518px;}
.ws6_c00355{word-spacing:-18.769538px;}
.ws5_c00355{word-spacing:-14.943900px;}
.ws8_c00355{word-spacing:-14.465695px;}
.wsb_c00355{word-spacing:-14.107042px;}
.wsc_c00355{word-spacing:-12.074671px;}
.wsa_c00355{word-spacing:-11.716018px;}
.ws9_c00355{word-spacing:-11.656242px;}
.ws3_c00355{word-spacing:-9.988424px;}
.ws4_c00355{word-spacing:-9.987499px;}
.ws7_c00355{word-spacing:-1.386144px;}
.ws12_c00355{word-spacing:0.000000px;}
.wsf_c00355{word-spacing:0.043999px;}
.ws13_c00355{word-spacing:0.073250px;}
.wse_c00355{word-spacing:0.175997px;}
.ws10_c00355{word-spacing:0.213446px;}
.ws11_c00355{word-spacing:0.219446px;}
.ws2_c00355{word-spacing:43.038600px;}
._0_c00355{margin-left:-4.734246px;}
._1_c00355{margin-left:-3.184856px;}
._3_c00355{margin-left:-1.075961px;}
._7_c00355{width:1.005737px;}
._6_c00355{width:15.972059px;}
._2_c00355{width:19.935816px;}
._4_c00355{width:23.598694px;}
._5_c00355{width:40.109428px;}
._8_c00355{width:79.858548px;}
.fc5_c00355{color:rgb(0,0,207);}
.fc6_c00355{color:rgb(6,69,173);}
.fc4_c00355{color:rgb(207,92,0);}
.fc3_c00355{color:rgb(79,153,5);}
.fc2_c00355{color:rgb(33,74,135);}
.fc1_c00355{color:rgb(143,89,3);}
.fc0_c00355{color:rgb(0,0,0);}
.fs0_c00355{font-size:43.999200px;}
.fs2_c00355{font-size:59.775600px;}
.fs1_c00355{font-size:86.077200px;}
.y0_c00355{bottom:0.000000px;}
.y1f_c00355{bottom:44.250000px;}
.y1e_c00355{bottom:82.051500px;}
.y1d_c00355{bottom:98.490000px;}
.y1c_c00355{bottom:114.927000px;}
.y1b_c00355{bottom:131.365500px;}
.y1a_c00355{bottom:147.804000px;}
.y19_c00355{bottom:180.681000px;}
.y18_c00355{bottom:197.119500px;}
.y17_c00355{bottom:246.435000px;}
.y16_c00355{bottom:262.873500px;}
.y15_c00355{bottom:278.937000px;}
.y14_c00355{bottom:323.931000px;}
.y13_c00355{bottom:341.865000px;}
.y12_c00355{bottom:359.797500px;}
.y11_c00355{bottom:377.730000px;}
.y10_c00355{bottom:395.662500px;}
.yf_c00355{bottom:413.595000px;}
.ye_c00355{bottom:440.463000px;}
.yd_c00355{bottom:467.329500px;}
.yc_c00355{bottom:494.197500px;}
.yb_c00355{bottom:521.064000px;}
.ya_c00355{bottom:563.304000px;}
.y9_c00355{bottom:1028.356500px;}
.y8_c00355{bottom:1044.795000px;}
.y7_c00355{bottom:1061.232000px;}
.y6_c00355{bottom:1077.670500px;}
.y5_c00355{bottom:1094.109000px;}
.y4_c00355{bottom:1110.547500px;}
.y3_c00355{bottom:1126.986000px;}
.y2_c00355{bottom:1143.424500px;}
.y1_c00355{bottom:1159.863000px;}
.h6_c00355{height:35.190766px;}
.h2_c00355{height:36.007158px;}
.h4_c00355{height:40.511979px;}
.h5_c00355{height:52.332837px;}
.h3_c00355{height:58.337477px;}
.h0_c00355{height:1262.835000px;}
.h1_c00355{height:1263.000000px;}
.w0_c00355{width:892.920000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x3_c00355{left:127.558500px;}
.x1_c00355{left:137.122500px;}
.x4_c00355{left:143.770500px;}
.x2_c00355{left:177.007500px;}
.x5_c00355{left:435.249000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls3_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:0.078221pt;}
.ls2_c00355{letter-spacing:0.087539pt;}
.ls1_c00355{letter-spacing:0.092873pt;}
.wsd_c00355{word-spacing:-29.967501pt;}
.ws0_c00355{word-spacing:-23.622682pt;}
.ws1_c00355{word-spacing:-23.544461pt;}
.ws6_c00355{word-spacing:-16.684034pt;}
.ws5_c00355{word-spacing:-13.283467pt;}
.ws8_c00355{word-spacing:-12.858396pt;}
.wsb_c00355{word-spacing:-12.539593pt;}
.wsc_c00355{word-spacing:-10.733041pt;}
.wsa_c00355{word-spacing:-10.414238pt;}
.ws9_c00355{word-spacing:-10.361104pt;}
.ws3_c00355{word-spacing:-8.878599pt;}
.ws4_c00355{word-spacing:-8.877777pt;}
.ws7_c00355{word-spacing:-1.232128pt;}
.ws12_c00355{word-spacing:0.000000pt;}
.wsf_c00355{word-spacing:0.039110pt;}
.ws13_c00355{word-spacing:0.065111pt;}
.wse_c00355{word-spacing:0.156442pt;}
.ws10_c00355{word-spacing:0.189730pt;}
.ws11_c00355{word-spacing:0.195063pt;}
.ws2_c00355{word-spacing:38.256533pt;}
._0_c00355{margin-left:-4.208219pt;}
._1_c00355{margin-left:-2.830983pt;}
._3_c00355{margin-left:-0.956410pt;}
._7_c00355{width:0.893988pt;}
._6_c00355{width:14.197386pt;}
._2_c00355{width:17.720725pt;}
._4_c00355{width:20.976617pt;}
._5_c00355{width:35.652825pt;}
._8_c00355{width:70.985376pt;}
.fs0_c00355{font-size:39.110400pt;}
.fs2_c00355{font-size:53.133867pt;}
.fs1_c00355{font-size:76.513067pt;}
.y0_c00355{bottom:0.000000pt;}
.y1f_c00355{bottom:39.333333pt;}
.y1e_c00355{bottom:72.934667pt;}
.y1d_c00355{bottom:87.546667pt;}
.y1c_c00355{bottom:102.157333pt;}
.y1b_c00355{bottom:116.769333pt;}
.y1a_c00355{bottom:131.381333pt;}
.y19_c00355{bottom:160.605333pt;}
.y18_c00355{bottom:175.217333pt;}
.y17_c00355{bottom:219.053333pt;}
.y16_c00355{bottom:233.665333pt;}
.y15_c00355{bottom:247.944000pt;}
.y14_c00355{bottom:287.938667pt;}
.y13_c00355{bottom:303.880000pt;}
.y12_c00355{bottom:319.820000pt;}
.y11_c00355{bottom:335.760000pt;}
.y10_c00355{bottom:351.700000pt;}
.yf_c00355{bottom:367.640000pt;}
.ye_c00355{bottom:391.522667pt;}
.yd_c00355{bottom:415.404000pt;}
.yc_c00355{bottom:439.286667pt;}
.yb_c00355{bottom:463.168000pt;}
.ya_c00355{bottom:500.714667pt;}
.y9_c00355{bottom:914.094667pt;}
.y8_c00355{bottom:928.706667pt;}
.y7_c00355{bottom:943.317333pt;}
.y6_c00355{bottom:957.929333pt;}
.y5_c00355{bottom:972.541333pt;}
.y4_c00355{bottom:987.153333pt;}
.y3_c00355{bottom:1001.765333pt;}
.y2_c00355{bottom:1016.377333pt;}
.y1_c00355{bottom:1030.989333pt;}
.h6_c00355{height:31.280681pt;}
.h2_c00355{height:32.006363pt;}
.h4_c00355{height:36.010648pt;}
.h5_c00355{height:46.518078pt;}
.h3_c00355{height:51.855535pt;}
.h0_c00355{height:1122.520000pt;}
.h1_c00355{height:1122.666667pt;}
.w0_c00355{width:793.706667pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x3_c00355{left:113.385333pt;}
.x1_c00355{left:121.886667pt;}
.x4_c00355{left:127.796000pt;}
.x2_c00355{left:157.340000pt;}
.x5_c00355{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85e421e337c77d7274a7e798.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_1da381e2f3a13d4be801dd7d.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_18651e8d4f48a444be83cf1b.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_8635dc3192b7519530bb2d71.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls4_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.087998px;}
.ls2_c00356{letter-spacing:0.098482px;}
.ls1_c00356{letter-spacing:0.104482px;}
.ls3_c00356{letter-spacing:26.690482px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00356{word-spacing:-26.575517px;}
.ws3_c00356{word-spacing:-26.487518px;}
.wsb_c00356{word-spacing:-9.988424px;}
.ws0_c00356{word-spacing:0.000000px;}
.ws7_c00356{word-spacing:0.043999px;}
.ws5_c00356{word-spacing:0.056767px;}
.ws4_c00356{word-spacing:0.073250px;}
.ws2_c00356{word-spacing:0.083734px;}
.ws6_c00356{word-spacing:0.202963px;}
.ws9_c00356{word-spacing:0.213446px;}
.ws8_c00356{word-spacing:0.219446px;}
.wsa_c00356{word-spacing:43.038600px;}
._4_c00356{margin-left:-4.734246px;}
._5_c00356{margin-left:-3.184856px;}
._3_c00356{width:1.041538px;}
._0_c00356{width:53.283031px;}
._1_c00356{width:79.858548px;}
._2_c00356{width:133.452408px;}
.fc5_c00356{color:rgb(207,92,0);}
.fc4_c00356{color:rgb(143,89,3);}
.fc3_c00356{color:rgb(0,0,207);}
.fc2_c00356{color:rgb(0,0,0);}
.fc1_c00356{color:rgb(79,153,5);}
.fc0_c00356{color:rgb(33,74,135);}
.fs0_c00356{font-size:43.999200px;}
.fs2_c00356{font-size:59.775600px;}
.fs1_c00356{font-size:86.077200px;}
.y0_c00356{bottom:0.000000px;}
.y23_c00356{bottom:44.250000px;}
.y22_c00356{bottom:82.051500px;}
.y21_c00356{bottom:123.052500px;}
.y20_c00356{bottom:584.520000px;}
.y1f_c00356{bottom:600.958500px;}
.y1e_c00356{bottom:617.397000px;}
.y1d_c00356{bottom:633.835500px;}
.y1c_c00356{bottom:650.274000px;}
.y1b_c00356{bottom:666.712500px;}
.y1a_c00356{bottom:683.151000px;}
.y19_c00356{bottom:699.589500px;}
.y18_c00356{bottom:716.028000px;}
.y17_c00356{bottom:732.465000px;}
.y16_c00356{bottom:748.903500px;}
.y15_c00356{bottom:781.780500px;}
.y14_c00356{bottom:798.219000px;}
.y13_c00356{bottom:814.657500px;}
.y12_c00356{bottom:847.534500px;}
.y11_c00356{bottom:863.973000px;}
.y10_c00356{bottom:880.411500px;}
.yf_c00356{bottom:896.848500px;}
.ye_c00356{bottom:913.287000px;}
.yd_c00356{bottom:929.725500px;}
.yc_c00356{bottom:946.164000px;}
.yb_c00356{bottom:995.479500px;}
.ya_c00356{bottom:1011.918000px;}
.y9_c00356{bottom:1028.356500px;}
.y8_c00356{bottom:1044.795000px;}
.y7_c00356{bottom:1061.232000px;}
.y6_c00356{bottom:1077.670500px;}
.y5_c00356{bottom:1094.109000px;}
.y4_c00356{bottom:1110.547500px;}
.y3_c00356{bottom:1126.986000px;}
.y2_c00356{bottom:1143.424500px;}
.y1_c00356{bottom:1159.863000px;}
.h3_c00356{height:35.190766px;}
.h2_c00356{height:36.007158px;}
.h5_c00356{height:40.511979px;}
.h6_c00356{height:52.332837px;}
.h4_c00356{height:58.337477px;}
.h0_c00356{height:1262.835000px;}
.h1_c00356{height:1263.000000px;}
.w0_c00356{width:892.920000px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.x4_c00356{left:127.558500px;}
.x2_c00356{left:137.122500px;}
.x1_c00356{left:143.770500px;}
.x3_c00356{left:177.007500px;}
.x5_c00356{left:435.249000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls4_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.078221pt;}
.ls2_c00356{letter-spacing:0.087539pt;}
.ls1_c00356{letter-spacing:0.092873pt;}
.ls3_c00356{letter-spacing:23.724873pt;}
.ws1_c00356{word-spacing:-23.622682pt;}
.ws3_c00356{word-spacing:-23.544461pt;}
.wsb_c00356{word-spacing:-8.878599pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.ws7_c00356{word-spacing:0.039110pt;}
.ws5_c00356{word-spacing:0.050460pt;}
.ws4_c00356{word-spacing:0.065111pt;}
.ws2_c00356{word-spacing:0.074430pt;}
.ws6_c00356{word-spacing:0.180412pt;}
.ws9_c00356{word-spacing:0.189730pt;}
.ws8_c00356{word-spacing:0.195063pt;}
.wsa_c00356{word-spacing:38.256533pt;}
._4_c00356{margin-left:-4.208219pt;}
._5_c00356{margin-left:-2.830983pt;}
._3_c00356{width:0.925811pt;}
._0_c00356{width:47.362694pt;}
._1_c00356{width:70.985376pt;}
._2_c00356{width:118.624363pt;}
.fs0_c00356{font-size:39.110400pt;}
.fs2_c00356{font-size:53.133867pt;}
.fs1_c00356{font-size:76.513067pt;}
.y0_c00356{bottom:0.000000pt;}
.y23_c00356{bottom:39.333333pt;}
.y22_c00356{bottom:72.934667pt;}
.y21_c00356{bottom:109.380000pt;}
.y20_c00356{bottom:519.573333pt;}
.y1f_c00356{bottom:534.185333pt;}
.y1e_c00356{bottom:548.797333pt;}
.y1d_c00356{bottom:563.409333pt;}
.y1c_c00356{bottom:578.021333pt;}
.y1b_c00356{bottom:592.633333pt;}
.y1a_c00356{bottom:607.245333pt;}
.y19_c00356{bottom:621.857333pt;}
.y18_c00356{bottom:636.469333pt;}
.y17_c00356{bottom:651.080000pt;}
.y16_c00356{bottom:665.692000pt;}
.y15_c00356{bottom:694.916000pt;}
.y14_c00356{bottom:709.528000pt;}
.y13_c00356{bottom:724.140000pt;}
.y12_c00356{bottom:753.364000pt;}
.y11_c00356{bottom:767.976000pt;}
.y10_c00356{bottom:782.588000pt;}
.yf_c00356{bottom:797.198667pt;}
.ye_c00356{bottom:811.810667pt;}
.yd_c00356{bottom:826.422667pt;}
.yc_c00356{bottom:841.034667pt;}
.yb_c00356{bottom:884.870667pt;}
.ya_c00356{bottom:899.482667pt;}
.y9_c00356{bottom:914.094667pt;}
.y8_c00356{bottom:928.706667pt;}
.y7_c00356{bottom:943.317333pt;}
.y6_c00356{bottom:957.929333pt;}
.y5_c00356{bottom:972.541333pt;}
.y4_c00356{bottom:987.153333pt;}
.y3_c00356{bottom:1001.765333pt;}
.y2_c00356{bottom:1016.377333pt;}
.y1_c00356{bottom:1030.989333pt;}
.h3_c00356{height:31.280681pt;}
.h2_c00356{height:32.006363pt;}
.h5_c00356{height:36.010648pt;}
.h6_c00356{height:46.518078pt;}
.h4_c00356{height:51.855535pt;}
.h0_c00356{height:1122.520000pt;}
.h1_c00356{height:1122.666667pt;}
.w0_c00356{width:793.706667pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.x4_c00356{left:113.385333pt;}
.x2_c00356{left:121.886667pt;}
.x1_c00356{left:127.796000pt;}
.x3_c00356{left:157.340000pt;}
.x5_c00356{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4bb3964944ceff725c55b66.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.893555;font-style:normal;font-weight:normal;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_39aa0e239d16670c67939f7a.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.083496;font-style:normal;font-weight:normal;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_2bc0be63445ac7fed512e498.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.102051;font-style:normal;font-weight:normal;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_ea035ff0e479eec130ef7165.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.048828;font-style: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;}
.ls4_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:0.087998px;}
.ls2_c00357{letter-spacing:0.098482px;}
.ls1_c00357{letter-spacing:0.104482px;}
.ls3_c00357{letter-spacing:26.690482px;}
.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;}
}
.wsa_c00357{word-spacing:-33.713438px;}
.ws1_c00357{word-spacing:-26.575517px;}
.wsc_c00357{word-spacing:-26.487518px;}
.ws3_c00357{word-spacing:-18.769538px;}
.ws5_c00357{word-spacing:-16.019861px;}
.ws2_c00357{word-spacing:-14.943900px;}
.ws8_c00357{word-spacing:-14.107042px;}
.ws9_c00357{word-spacing:-12.074671px;}
.ws7_c00357{word-spacing:-11.716018px;}
.ws6_c00357{word-spacing:-11.656242px;}
.ws0_c00357{word-spacing:-9.987499px;}
.ws4_c00357{word-spacing:-4.536144px;}
.ws10_c00357{word-spacing:0.000000px;}
.wsd_c00357{word-spacing:0.043999px;}
.ws13_c00357{word-spacing:0.056767px;}
.ws11_c00357{word-spacing:0.073250px;}
.ws12_c00357{word-spacing:0.083734px;}
.wsb_c00357{word-spacing:0.175997px;}
.ws14_c00357{word-spacing:0.202963px;}
.wse_c00357{word-spacing:0.213446px;}
.wsf_c00357{word-spacing:0.219446px;}
._1_c00357{margin-left:-4.782048px;}
._3_c00357{margin-left:-3.376852px;}
._2_c00357{margin-left:-1.075961px;}
._7_c00357{width:1.005737px;}
._6_c00357{width:15.960085px;}
._0_c00357{width:19.935816px;}
._4_c00357{width:23.790689px;}
._5_c00357{width:40.109428px;}
._9_c00357{width:53.283031px;}
._8_c00357{width:79.858548px;}
._b_c00357{width:106.698060px;}
._a_c00357{width:133.452408px;}
.fc6_c00357{color:rgb(0,0,207);}
.fc5_c00357{color:rgb(79,153,5);}
.fc3_c00357{color:rgb(33,74,135);}
.fc2_c00357{color:rgb(143,89,3);}
.fc4_c00357{color:rgb(207,92,0);}
.fc1_c00357{color:rgb(6,69,173);}
.fc0_c00357{color:rgb(0,0,0);}
.fs1_c00357{font-size:43.999200px;}
.fs0_c00357{font-size:59.775600px;}
.y0_c00357{bottom:0.000000px;}
.y34_c00357{bottom:44.250000px;}
.y33_c00357{bottom:96.919500px;}
.y32_c00357{bottom:113.358000px;}
.y31_c00357{bottom:129.796500px;}
.y30_c00357{bottom:146.235000px;}
.y2f_c00357{bottom:162.673500px;}
.y2e_c00357{bottom:179.112000px;}
.y2d_c00357{bottom:195.550500px;}
.y2c_c00357{bottom:211.989000px;}
.y2b_c00357{bottom:228.427500px;}
.y2a_c00357{bottom:244.866000px;}
.y29_c00357{bottom:261.304500px;}
.y28_c00357{bottom:294.180000px;}
.y27_c00357{bottom:310.618500px;}
.y26_c00357{bottom:327.057000px;}
.y25_c00357{bottom:359.934000px;}
.y24_c00357{bottom:376.372500px;}
.y23_c00357{bottom:392.811000px;}
.y22_c00357{bottom:409.249500px;}
.y21_c00357{bottom:425.688000px;}
.y20_c00357{bottom:442.125000px;}
.y1f_c00357{bottom:458.563500px;}
.y1e_c00357{bottom:507.879000px;}
.y1d_c00357{bottom:524.317500px;}
.y1c_c00357{bottom:540.756000px;}
.y1b_c00357{bottom:557.194500px;}
.y1a_c00357{bottom:573.633000px;}
.y19_c00357{bottom:590.071500px;}
.y18_c00357{bottom:606.508500px;}
.y17_c00357{bottom:622.947000px;}
.y16_c00357{bottom:639.385500px;}
.y15_c00357{bottom:655.824000px;}
.y14_c00357{bottom:672.262500px;}
.y13_c00357{bottom:688.701000px;}
.y12_c00357{bottom:705.139500px;}
.y11_c00357{bottom:721.578000px;}
.y10_c00357{bottom:738.016500px;}
.yf_c00357{bottom:754.455000px;}
.ye_c00357{bottom:787.330500px;}
.yd_c00357{bottom:803.769000px;}
.yc_c00357{bottom:853.084500px;}
.yb_c00357{bottom:869.523000px;}
.ya_c00357{bottom:885.588000px;}
.y9_c00357{bottom:957.468000px;}
.y8_c00357{bottom:975.400500px;}
.y7_c00357{bottom:993.333000px;}
.y6_c00357{bottom:1011.267000px;}
.y5_c00357{bottom:1029.199500px;}
.y4_c00357{bottom:1047.132000px;}
.y3_c00357{bottom:1084.708500px;}
.y2_c00357{bottom:1122.286500px;}
.y1_c00357{bottom:1159.863000px;}
.h4_c00357{height:35.190766px;}
.h5_c00357{height:36.007158px;}
.h2_c00357{height:40.511979px;}
.h3_c00357{height:52.332837px;}
.h0_c00357{height:1262.835000px;}
.h1_c00357{height:1263.000000px;}
.w0_c00357{width:892.920000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:127.558500px;}
.x2_c00357{left:137.122500px;}
.x3_c00357{left:143.770500px;}
.x4_c00357{left:177.007500px;}
.x5_c00357{left:435.249000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls4_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:0.078221pt;}
.ls2_c00357{letter-spacing:0.087539pt;}
.ls1_c00357{letter-spacing:0.092873pt;}
.ls3_c00357{letter-spacing:23.724873pt;}
.wsa_c00357{word-spacing:-29.967501pt;}
.ws1_c00357{word-spacing:-23.622682pt;}
.wsc_c00357{word-spacing:-23.544461pt;}
.ws3_c00357{word-spacing:-16.684034pt;}
.ws5_c00357{word-spacing:-14.239876pt;}
.ws2_c00357{word-spacing:-13.283467pt;}
.ws8_c00357{word-spacing:-12.539593pt;}
.ws9_c00357{word-spacing:-10.733041pt;}
.ws7_c00357{word-spacing:-10.414238pt;}
.ws6_c00357{word-spacing:-10.361104pt;}
.ws0_c00357{word-spacing:-8.877777pt;}
.ws4_c00357{word-spacing:-4.032128pt;}
.ws10_c00357{word-spacing:0.000000pt;}
.wsd_c00357{word-spacing:0.039110pt;}
.ws13_c00357{word-spacing:0.050460pt;}
.ws11_c00357{word-spacing:0.065111pt;}
.ws12_c00357{word-spacing:0.074430pt;}
.wsb_c00357{word-spacing:0.156442pt;}
.ws14_c00357{word-spacing:0.180412pt;}
.wse_c00357{word-spacing:0.189730pt;}
.wsf_c00357{word-spacing:0.195063pt;}
._1_c00357{margin-left:-4.250709pt;}
._3_c00357{margin-left:-3.001646pt;}
._2_c00357{margin-left:-0.956410pt;}
._7_c00357{width:0.893988pt;}
._6_c00357{width:14.186742pt;}
._0_c00357{width:17.720725pt;}
._4_c00357{width:21.147279pt;}
._5_c00357{width:35.652825pt;}
._9_c00357{width:47.362694pt;}
._8_c00357{width:70.985376pt;}
._b_c00357{width:94.842720pt;}
._a_c00357{width:118.624363pt;}
.fs1_c00357{font-size:39.110400pt;}
.fs0_c00357{font-size:53.133867pt;}
.y0_c00357{bottom:0.000000pt;}
.y34_c00357{bottom:39.333333pt;}
.y33_c00357{bottom:86.150667pt;}
.y32_c00357{bottom:100.762667pt;}
.y31_c00357{bottom:115.374667pt;}
.y30_c00357{bottom:129.986667pt;}
.y2f_c00357{bottom:144.598667pt;}
.y2e_c00357{bottom:159.210667pt;}
.y2d_c00357{bottom:173.822667pt;}
.y2c_c00357{bottom:188.434667pt;}
.y2b_c00357{bottom:203.046667pt;}
.y2a_c00357{bottom:217.658667pt;}
.y29_c00357{bottom:232.270667pt;}
.y28_c00357{bottom:261.493333pt;}
.y27_c00357{bottom:276.105333pt;}
.y26_c00357{bottom:290.717333pt;}
.y25_c00357{bottom:319.941333pt;}
.y24_c00357{bottom:334.553333pt;}
.y23_c00357{bottom:349.165333pt;}
.y22_c00357{bottom:363.777333pt;}
.y21_c00357{bottom:378.389333pt;}
.y20_c00357{bottom:393.000000pt;}
.y1f_c00357{bottom:407.612000pt;}
.y1e_c00357{bottom:451.448000pt;}
.y1d_c00357{bottom:466.060000pt;}
.y1c_c00357{bottom:480.672000pt;}
.y1b_c00357{bottom:495.284000pt;}
.y1a_c00357{bottom:509.896000pt;}
.y19_c00357{bottom:524.508000pt;}
.y18_c00357{bottom:539.118667pt;}
.y17_c00357{bottom:553.730667pt;}
.y16_c00357{bottom:568.342667pt;}
.y15_c00357{bottom:582.954667pt;}
.y14_c00357{bottom:597.566667pt;}
.y13_c00357{bottom:612.178667pt;}
.y12_c00357{bottom:626.790667pt;}
.y11_c00357{bottom:641.402667pt;}
.y10_c00357{bottom:656.014667pt;}
.yf_c00357{bottom:670.626667pt;}
.ye_c00357{bottom:699.849333pt;}
.yd_c00357{bottom:714.461333pt;}
.yc_c00357{bottom:758.297333pt;}
.yb_c00357{bottom:772.909333pt;}
.ya_c00357{bottom:787.189333pt;}
.y9_c00357{bottom:851.082667pt;}
.y8_c00357{bottom:867.022667pt;}
.y7_c00357{bottom:882.962667pt;}
.y6_c00357{bottom:898.904000pt;}
.y5_c00357{bottom:914.844000pt;}
.y4_c00357{bottom:930.784000pt;}
.y3_c00357{bottom:964.185333pt;}
.y2_c00357{bottom:997.588000pt;}
.y1_c00357{bottom:1030.989333pt;}
.h4_c00357{height:31.280681pt;}
.h5_c00357{height:32.006363pt;}
.h2_c00357{height:36.010648pt;}
.h3_c00357{height:46.518078pt;}
.h0_c00357{height:1122.520000pt;}
.h1_c00357{height:1122.666667pt;}
.w0_c00357{width:793.706667pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:113.385333pt;}
.x2_c00357{left:121.886667pt;}
.x3_c00357{left:127.796000pt;}
.x4_c00357{left:157.340000pt;}
.x5_c00357{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7608d29e5750ef4076513959.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:0.893555;font-style:normal;font-weight:normal;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_9cb3ead77ed5751495294cf1.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.083496;font-style:normal;font-weight:normal;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_0b1b92a503b020263335628c.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.048828;font-style: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;}
.ls3_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:0.087998px;}
.ls2_c00358{letter-spacing:0.098482px;}
.ls1_c00358{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00358{word-spacing:-33.713438px;}
.ws2_c00358{word-spacing:-26.575517px;}
.wse_c00358{word-spacing:-26.487518px;}
.ws5_c00358{word-spacing:-18.769538px;}
.ws7_c00358{word-spacing:-16.019861px;}
.ws4_c00358{word-spacing:-14.943900px;}
.wsa_c00358{word-spacing:-14.107042px;}
.wsb_c00358{word-spacing:-12.074671px;}
.ws9_c00358{word-spacing:-11.716018px;}
.ws8_c00358{word-spacing:-11.656242px;}
.ws1_c00358{word-spacing:-9.988424px;}
.ws3_c00358{word-spacing:-9.987499px;}
.ws6_c00358{word-spacing:-4.536144px;}
.ws12_c00358{word-spacing:0.000000px;}
.wsf_c00358{word-spacing:0.043999px;}
.ws15_c00358{word-spacing:0.056767px;}
.ws13_c00358{word-spacing:0.073250px;}
.ws14_c00358{word-spacing:0.083734px;}
.wsd_c00358{word-spacing:0.175997px;}
.ws16_c00358{word-spacing:0.202963px;}
.ws10_c00358{word-spacing:0.213446px;}
.ws11_c00358{word-spacing:0.219446px;}
.ws0_c00358{word-spacing:43.038600px;}
._0_c00358{margin-left:-4.734246px;}
._1_c00358{margin-left:-3.184856px;}
._3_c00358{margin-left:-1.075961px;}
._7_c00358{width:1.005737px;}
._6_c00358{width:15.972059px;}
._2_c00358{width:19.935816px;}
._4_c00358{width:23.598694px;}
._5_c00358{width:40.109428px;}
._9_c00358{width:53.283031px;}
._8_c00358{width:79.858548px;}
._a_c00358{width:133.452408px;}
.fc6_c00358{color:rgb(0,0,207);}
.fc5_c00358{color:rgb(79,153,5);}
.fc3_c00358{color:rgb(33,74,135);}
.fc2_c00358{color:rgb(143,89,3);}
.fc4_c00358{color:rgb(207,92,0);}
.fc1_c00358{color:rgb(6,69,173);}
.fc0_c00358{color:rgb(0,0,0);}
.fs2_c00358{font-size:43.999200px;}
.fs1_c00358{font-size:59.775600px;}
.fs0_c00358{font-size:86.077200px;}
.y0_c00358{bottom:0.000000px;}
.y20_c00358{bottom:44.250000px;}
.y1f_c00358{bottom:86.982000px;}
.y1e_c00358{bottom:103.420500px;}
.y1d_c00358{bottom:119.859000px;}
.y1c_c00358{bottom:136.297500px;}
.y1b_c00358{bottom:152.736000px;}
.y1a_c00358{bottom:169.174500px;}
.y19_c00358{bottom:185.613000px;}
.y18_c00358{bottom:202.051500px;}
.y17_c00358{bottom:218.490000px;}
.y16_c00358{bottom:234.927000px;}
.y15_c00358{bottom:251.365500px;}
.y14_c00358{bottom:267.804000px;}
.y13_c00358{bottom:284.242500px;}
.y12_c00358{bottom:300.681000px;}
.y11_c00358{bottom:317.119500px;}
.y10_c00358{bottom:349.996500px;}
.yf_c00358{bottom:366.435000px;}
.ye_c00358{bottom:415.749000px;}
.yd_c00358{bottom:432.187500px;}
.yc_c00358{bottom:448.252500px;}
.yb_c00358{bottom:493.890000px;}
.ya_c00358{bottom:511.822500px;}
.y9_c00358{bottom:529.756500px;}
.y8_c00358{bottom:547.689000px;}
.y7_c00358{bottom:565.621500px;}
.y6_c00358{bottom:583.554000px;}
.y5_c00358{bottom:610.633500px;}
.y4_c00358{bottom:637.714500px;}
.y3_c00358{bottom:664.794000px;}
.y2_c00358{bottom:691.873500px;}
.y1_c00358{bottom:734.407500px;}
.h5_c00358{height:35.190766px;}
.h6_c00358{height:36.007158px;}
.h3_c00358{height:40.511979px;}
.h4_c00358{height:52.332837px;}
.h2_c00358{height:58.337477px;}
.h0_c00358{height:1262.835000px;}
.h1_c00358{height:1263.000000px;}
.w0_c00358{width:892.920000px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:127.558500px;}
.x2_c00358{left:137.122500px;}
.x3_c00358{left:143.770500px;}
.x4_c00358{left:435.249000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls3_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:0.078221pt;}
.ls2_c00358{letter-spacing:0.087539pt;}
.ls1_c00358{letter-spacing:0.092873pt;}
.wsc_c00358{word-spacing:-29.967501pt;}
.ws2_c00358{word-spacing:-23.622682pt;}
.wse_c00358{word-spacing:-23.544461pt;}
.ws5_c00358{word-spacing:-16.684034pt;}
.ws7_c00358{word-spacing:-14.239876pt;}
.ws4_c00358{word-spacing:-13.283467pt;}
.wsa_c00358{word-spacing:-12.539593pt;}
.wsb_c00358{word-spacing:-10.733041pt;}
.ws9_c00358{word-spacing:-10.414238pt;}
.ws8_c00358{word-spacing:-10.361104pt;}
.ws1_c00358{word-spacing:-8.878599pt;}
.ws3_c00358{word-spacing:-8.877777pt;}
.ws6_c00358{word-spacing:-4.032128pt;}
.ws12_c00358{word-spacing:0.000000pt;}
.wsf_c00358{word-spacing:0.039110pt;}
.ws15_c00358{word-spacing:0.050460pt;}
.ws13_c00358{word-spacing:0.065111pt;}
.ws14_c00358{word-spacing:0.074430pt;}
.wsd_c00358{word-spacing:0.156442pt;}
.ws16_c00358{word-spacing:0.180412pt;}
.ws10_c00358{word-spacing:0.189730pt;}
.ws11_c00358{word-spacing:0.195063pt;}
.ws0_c00358{word-spacing:38.256533pt;}
._0_c00358{margin-left:-4.208219pt;}
._1_c00358{margin-left:-2.830983pt;}
._3_c00358{margin-left:-0.956410pt;}
._7_c00358{width:0.893988pt;}
._6_c00358{width:14.197386pt;}
._2_c00358{width:17.720725pt;}
._4_c00358{width:20.976617pt;}
._5_c00358{width:35.652825pt;}
._9_c00358{width:47.362694pt;}
._8_c00358{width:70.985376pt;}
._a_c00358{width:118.624363pt;}
.fs2_c00358{font-size:39.110400pt;}
.fs1_c00358{font-size:53.133867pt;}
.fs0_c00358{font-size:76.513067pt;}
.y0_c00358{bottom:0.000000pt;}
.y20_c00358{bottom:39.333333pt;}
.y1f_c00358{bottom:77.317333pt;}
.y1e_c00358{bottom:91.929333pt;}
.y1d_c00358{bottom:106.541333pt;}
.y1c_c00358{bottom:121.153333pt;}
.y1b_c00358{bottom:135.765333pt;}
.y1a_c00358{bottom:150.377333pt;}
.y19_c00358{bottom:164.989333pt;}
.y18_c00358{bottom:179.601333pt;}
.y17_c00358{bottom:194.213333pt;}
.y16_c00358{bottom:208.824000pt;}
.y15_c00358{bottom:223.436000pt;}
.y14_c00358{bottom:238.048000pt;}
.y13_c00358{bottom:252.660000pt;}
.y12_c00358{bottom:267.272000pt;}
.y11_c00358{bottom:281.884000pt;}
.y10_c00358{bottom:311.108000pt;}
.yf_c00358{bottom:325.720000pt;}
.ye_c00358{bottom:369.554667pt;}
.yd_c00358{bottom:384.166667pt;}
.yc_c00358{bottom:398.446667pt;}
.yb_c00358{bottom:439.013333pt;}
.ya_c00358{bottom:454.953333pt;}
.y9_c00358{bottom:470.894667pt;}
.y8_c00358{bottom:486.834667pt;}
.y7_c00358{bottom:502.774667pt;}
.y6_c00358{bottom:518.714667pt;}
.y5_c00358{bottom:542.785333pt;}
.y4_c00358{bottom:566.857333pt;}
.y3_c00358{bottom:590.928000pt;}
.y2_c00358{bottom:614.998667pt;}
.y1_c00358{bottom:652.806667pt;}
.h5_c00358{height:31.280681pt;}
.h6_c00358{height:32.006363pt;}
.h3_c00358{height:36.010648pt;}
.h4_c00358{height:46.518078pt;}
.h2_c00358{height:51.855535pt;}
.h0_c00358{height:1122.520000pt;}
.h1_c00358{height:1122.666667pt;}
.w0_c00358{width:793.706667pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:113.385333pt;}
.x2_c00358{left:121.886667pt;}
.x3_c00358{left:127.796000pt;}
.x4_c00358{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf06c046ca50fcbbac323120.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_30dd7909a03c6388c09a5903.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_8fd33990aa620831301c6cd1.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_86c696387eafad36d3b666cf.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:1.102051;font-style: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;}
.ls4_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:0.087998px;}
.ls2_c00359{letter-spacing:0.098482px;}
.ls3_c00359{letter-spacing:0.104482px;}
.ls1_c00359{letter-spacing:26.690482px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00359{word-spacing:-26.575517px;}
.ws4_c00359{word-spacing:-26.487518px;}
.wsa_c00359{word-spacing:-18.769538px;}
.wsc_c00359{word-spacing:-17.633802px;}
.ws9_c00359{word-spacing:-14.943900px;}
.wsf_c00359{word-spacing:-14.107042px;}
.ws10_c00359{word-spacing:-12.074671px;}
.wse_c00359{word-spacing:-11.716018px;}
.wsd_c00359{word-spacing:-11.656242px;}
.ws7_c00359{word-spacing:-9.988424px;}
.ws8_c00359{word-spacing:-9.987499px;}
.wsb_c00359{word-spacing:-7.680144px;}
.ws3_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:0.043999px;}
.ws5_c00359{word-spacing:0.213446px;}
.ws1_c00359{word-spacing:0.219446px;}
.ws6_c00359{word-spacing:43.038600px;}
._2_c00359{margin-left:-4.734246px;}
._3_c00359{margin-left:-3.184856px;}
._5_c00359{margin-left:-1.075961px;}
._1_c00359{width:1.041538px;}
._4_c00359{width:19.935816px;}
._6_c00359{width:23.598694px;}
._7_c00359{width:40.109428px;}
._0_c00359{width:106.698060px;}
.fc5_c00359{color:rgb(79,153,5);}
.fc4_c00359{color:rgb(143,89,3);}
.fc3_c00359{color:rgb(0,0,0);}
.fc6_c00359{color:rgb(6,69,173);}
.fc2_c00359{color:rgb(207,92,0);}
.fc1_c00359{color:rgb(0,0,207);}
.fc0_c00359{color:rgb(33,74,135);}
.fs0_c00359{font-size:43.999200px;}
.fs2_c00359{font-size:59.775600px;}
.fs1_c00359{font-size:86.077200px;}
.y0_c00359{bottom:0.000000px;}
.y20_c00359{bottom:44.250000px;}
.y1f_c00359{bottom:82.051500px;}
.y1e_c00359{bottom:99.984000px;}
.y1d_c00359{bottom:117.916500px;}
.y1c_c00359{bottom:135.849000px;}
.y1b_c00359{bottom:162.501000px;}
.y1a_c00359{bottom:189.151500px;}
.y19_c00359{bottom:215.802000px;}
.y18_c00359{bottom:242.454000px;}
.y17_c00359{bottom:284.478000px;}
.y16_c00359{bottom:748.903500px;}
.y15_c00359{bottom:765.342000px;}
.y14_c00359{bottom:781.780500px;}
.y13_c00359{bottom:798.219000px;}
.y12_c00359{bottom:814.657500px;}
.y11_c00359{bottom:831.096000px;}
.y10_c00359{bottom:847.534500px;}
.yf_c00359{bottom:863.973000px;}
.ye_c00359{bottom:880.411500px;}
.yd_c00359{bottom:896.848500px;}
.yc_c00359{bottom:913.287000px;}
.yb_c00359{bottom:946.164000px;}
.ya_c00359{bottom:962.602500px;}
.y9_c00359{bottom:979.041000px;}
.y8_c00359{bottom:1011.918000px;}
.y7_c00359{bottom:1028.356500px;}
.y6_c00359{bottom:1044.795000px;}
.y5_c00359{bottom:1061.232000px;}
.y4_c00359{bottom:1077.670500px;}
.y3_c00359{bottom:1094.109000px;}
.y2_c00359{bottom:1110.547500px;}
.y1_c00359{bottom:1159.863000px;}
.h3_c00359{height:35.190766px;}
.h2_c00359{height:36.007158px;}
.h5_c00359{height:40.511979px;}
.h6_c00359{height:52.332837px;}
.h4_c00359{height:58.337477px;}
.h0_c00359{height:1262.835000px;}
.h1_c00359{height:1263.000000px;}
.w0_c00359{width:892.920000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x4_c00359{left:127.558500px;}
.x2_c00359{left:137.122500px;}
.x1_c00359{left:143.770500px;}
.x3_c00359{left:177.007500px;}
.x5_c00359{left:435.249000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls4_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:0.078221pt;}
.ls2_c00359{letter-spacing:0.087539pt;}
.ls3_c00359{letter-spacing:0.092873pt;}
.ls1_c00359{letter-spacing:23.724873pt;}
.ws2_c00359{word-spacing:-23.622682pt;}
.ws4_c00359{word-spacing:-23.544461pt;}
.wsa_c00359{word-spacing:-16.684034pt;}
.wsc_c00359{word-spacing:-15.674491pt;}
.ws9_c00359{word-spacing:-13.283467pt;}
.wsf_c00359{word-spacing:-12.539593pt;}
.ws10_c00359{word-spacing:-10.733041pt;}
.wse_c00359{word-spacing:-10.414238pt;}
.wsd_c00359{word-spacing:-10.361104pt;}
.ws7_c00359{word-spacing:-8.878599pt;}
.ws8_c00359{word-spacing:-8.877777pt;}
.wsb_c00359{word-spacing:-6.826795pt;}
.ws3_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.039110pt;}
.ws5_c00359{word-spacing:0.189730pt;}
.ws1_c00359{word-spacing:0.195063pt;}
.ws6_c00359{word-spacing:38.256533pt;}
._2_c00359{margin-left:-4.208219pt;}
._3_c00359{margin-left:-2.830983pt;}
._5_c00359{margin-left:-0.956410pt;}
._1_c00359{width:0.925811pt;}
._4_c00359{width:17.720725pt;}
._6_c00359{width:20.976617pt;}
._7_c00359{width:35.652825pt;}
._0_c00359{width:94.842720pt;}
.fs0_c00359{font-size:39.110400pt;}
.fs2_c00359{font-size:53.133867pt;}
.fs1_c00359{font-size:76.513067pt;}
.y0_c00359{bottom:0.000000pt;}
.y20_c00359{bottom:39.333333pt;}
.y1f_c00359{bottom:72.934667pt;}
.y1e_c00359{bottom:88.874667pt;}
.y1d_c00359{bottom:104.814667pt;}
.y1c_c00359{bottom:120.754667pt;}
.y1b_c00359{bottom:144.445333pt;}
.y1a_c00359{bottom:168.134667pt;}
.y19_c00359{bottom:191.824000pt;}
.y18_c00359{bottom:215.514667pt;}
.y17_c00359{bottom:252.869333pt;}
.y16_c00359{bottom:665.692000pt;}
.y15_c00359{bottom:680.304000pt;}
.y14_c00359{bottom:694.916000pt;}
.y13_c00359{bottom:709.528000pt;}
.y12_c00359{bottom:724.140000pt;}
.y11_c00359{bottom:738.752000pt;}
.y10_c00359{bottom:753.364000pt;}
.yf_c00359{bottom:767.976000pt;}
.ye_c00359{bottom:782.588000pt;}
.yd_c00359{bottom:797.198667pt;}
.yc_c00359{bottom:811.810667pt;}
.yb_c00359{bottom:841.034667pt;}
.ya_c00359{bottom:855.646667pt;}
.y9_c00359{bottom:870.258667pt;}
.y8_c00359{bottom:899.482667pt;}
.y7_c00359{bottom:914.094667pt;}
.y6_c00359{bottom:928.706667pt;}
.y5_c00359{bottom:943.317333pt;}
.y4_c00359{bottom:957.929333pt;}
.y3_c00359{bottom:972.541333pt;}
.y2_c00359{bottom:987.153333pt;}
.y1_c00359{bottom:1030.989333pt;}
.h3_c00359{height:31.280681pt;}
.h2_c00359{height:32.006363pt;}
.h5_c00359{height:36.010648pt;}
.h6_c00359{height:46.518078pt;}
.h4_c00359{height:51.855535pt;}
.h0_c00359{height:1122.520000pt;}
.h1_c00359{height:1122.666667pt;}
.w0_c00359{width:793.706667pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x4_c00359{left:113.385333pt;}
.x2_c00359{left:121.886667pt;}
.x1_c00359{left:127.796000pt;}
.x3_c00359{left:157.340000pt;}
.x5_c00359{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_062d5ab328ece2e25f5236b8.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.102051;font-style:normal;font-weight:normal;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_d5f22bcfbeed73ba284830f6.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.048828;font-style:normal;font-weight:normal;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_e48e313b16746c9ddc74853d.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls4_c00360{letter-spacing:0.000000px;}
.ls1_c00360{letter-spacing:0.087998px;}
.ls2_c00360{letter-spacing:0.098482px;}
.ls0_c00360{letter-spacing:0.104482px;}
.ls3_c00360{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00360{word-spacing:-26.575517px;}
.ws3_c00360{word-spacing:-26.487518px;}
.ws0_c00360{word-spacing:-18.769538px;}
.ws8_c00360{word-spacing:0.000000px;}
.ws5_c00360{word-spacing:0.043999px;}
.wsb_c00360{word-spacing:0.056767px;}
.ws9_c00360{word-spacing:0.073250px;}
.wsa_c00360{word-spacing:0.083734px;}
.ws2_c00360{word-spacing:0.175997px;}
.wsc_c00360{word-spacing:0.202963px;}
.ws6_c00360{word-spacing:0.213446px;}
.ws7_c00360{word-spacing:0.219446px;}
._0_c00360{margin-left:-3.825638px;}
._1_c00360{width:1.005737px;}
._3_c00360{width:53.283031px;}
._2_c00360{width:79.858548px;}
._4_c00360{width:133.452408px;}
.fc5_c00360{color:rgb(0,0,207);}
.fc4_c00360{color:rgb(79,153,5);}
.fc3_c00360{color:rgb(207,92,0);}
.fc2_c00360{color:rgb(33,74,135);}
.fc1_c00360{color:rgb(143,89,3);}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:43.999200px;}
.fs0_c00360{font-size:59.775600px;}
.y0_c00360{bottom:0.000000px;}
.y2d_c00360{bottom:44.250000px;}
.y2c_c00360{bottom:96.919500px;}
.y2b_c00360{bottom:113.358000px;}
.y2a_c00360{bottom:129.796500px;}
.y29_c00360{bottom:146.235000px;}
.y28_c00360{bottom:162.673500px;}
.y27_c00360{bottom:179.112000px;}
.y26_c00360{bottom:195.550500px;}
.y25_c00360{bottom:211.989000px;}
.y24_c00360{bottom:228.427500px;}
.y23_c00360{bottom:244.866000px;}
.y22_c00360{bottom:261.304500px;}
.y21_c00360{bottom:294.180000px;}
.y20_c00360{bottom:310.618500px;}
.y1f_c00360{bottom:327.057000px;}
.y1e_c00360{bottom:359.934000px;}
.y1d_c00360{bottom:376.372500px;}
.y1c_c00360{bottom:392.811000px;}
.y1b_c00360{bottom:409.249500px;}
.y1a_c00360{bottom:425.688000px;}
.y19_c00360{bottom:442.125000px;}
.y18_c00360{bottom:458.563500px;}
.y17_c00360{bottom:507.879000px;}
.y16_c00360{bottom:524.317500px;}
.y15_c00360{bottom:540.756000px;}
.y14_c00360{bottom:557.194500px;}
.y13_c00360{bottom:573.633000px;}
.y12_c00360{bottom:590.071500px;}
.y11_c00360{bottom:606.508500px;}
.y10_c00360{bottom:622.947000px;}
.yf_c00360{bottom:639.385500px;}
.ye_c00360{bottom:655.824000px;}
.yd_c00360{bottom:672.262500px;}
.yc_c00360{bottom:688.701000px;}
.yb_c00360{bottom:705.139500px;}
.ya_c00360{bottom:721.578000px;}
.y9_c00360{bottom:738.016500px;}
.y8_c00360{bottom:754.455000px;}
.y7_c00360{bottom:787.330500px;}
.y6_c00360{bottom:803.769000px;}
.y5_c00360{bottom:853.084500px;}
.y4_c00360{bottom:869.523000px;}
.y3_c00360{bottom:885.588000px;}
.y2_c00360{bottom:1141.930500px;}
.y1_c00360{bottom:1159.863000px;}
.h3_c00360{height:35.190766px;}
.h4_c00360{height:36.007158px;}
.h2_c00360{height:52.332837px;}
.h0_c00360{height:1262.835000px;}
.h1_c00360{height:1263.000000px;}
.w0_c00360{width:892.920000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:127.558500px;}
.x2_c00360{left:137.122500px;}
.x3_c00360{left:143.770500px;}
.x4_c00360{left:177.007500px;}
.x5_c00360{left:435.249000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls4_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:0.078221pt;}
.ls2_c00360{letter-spacing:0.087539pt;}
.ls0_c00360{letter-spacing:0.092873pt;}
.ls3_c00360{letter-spacing:23.724873pt;}
.ws1_c00360{word-spacing:-29.967501pt;}
.ws4_c00360{word-spacing:-23.622682pt;}
.ws3_c00360{word-spacing:-23.544461pt;}
.ws0_c00360{word-spacing:-16.684034pt;}
.ws8_c00360{word-spacing:0.000000pt;}
.ws5_c00360{word-spacing:0.039110pt;}
.wsb_c00360{word-spacing:0.050460pt;}
.ws9_c00360{word-spacing:0.065111pt;}
.wsa_c00360{word-spacing:0.074430pt;}
.ws2_c00360{word-spacing:0.156442pt;}
.wsc_c00360{word-spacing:0.180412pt;}
.ws6_c00360{word-spacing:0.189730pt;}
.ws7_c00360{word-spacing:0.195063pt;}
._0_c00360{margin-left:-3.400567pt;}
._1_c00360{width:0.893988pt;}
._3_c00360{width:47.362694pt;}
._2_c00360{width:70.985376pt;}
._4_c00360{width:118.624363pt;}
.fs1_c00360{font-size:39.110400pt;}
.fs0_c00360{font-size:53.133867pt;}
.y0_c00360{bottom:0.000000pt;}
.y2d_c00360{bottom:39.333333pt;}
.y2c_c00360{bottom:86.150667pt;}
.y2b_c00360{bottom:100.762667pt;}
.y2a_c00360{bottom:115.374667pt;}
.y29_c00360{bottom:129.986667pt;}
.y28_c00360{bottom:144.598667pt;}
.y27_c00360{bottom:159.210667pt;}
.y26_c00360{bottom:173.822667pt;}
.y25_c00360{bottom:188.434667pt;}
.y24_c00360{bottom:203.046667pt;}
.y23_c00360{bottom:217.658667pt;}
.y22_c00360{bottom:232.270667pt;}
.y21_c00360{bottom:261.493333pt;}
.y20_c00360{bottom:276.105333pt;}
.y1f_c00360{bottom:290.717333pt;}
.y1e_c00360{bottom:319.941333pt;}
.y1d_c00360{bottom:334.553333pt;}
.y1c_c00360{bottom:349.165333pt;}
.y1b_c00360{bottom:363.777333pt;}
.y1a_c00360{bottom:378.389333pt;}
.y19_c00360{bottom:393.000000pt;}
.y18_c00360{bottom:407.612000pt;}
.y17_c00360{bottom:451.448000pt;}
.y16_c00360{bottom:466.060000pt;}
.y15_c00360{bottom:480.672000pt;}
.y14_c00360{bottom:495.284000pt;}
.y13_c00360{bottom:509.896000pt;}
.y12_c00360{bottom:524.508000pt;}
.y11_c00360{bottom:539.118667pt;}
.y10_c00360{bottom:553.730667pt;}
.yf_c00360{bottom:568.342667pt;}
.ye_c00360{bottom:582.954667pt;}
.yd_c00360{bottom:597.566667pt;}
.yc_c00360{bottom:612.178667pt;}
.yb_c00360{bottom:626.790667pt;}
.ya_c00360{bottom:641.402667pt;}
.y9_c00360{bottom:656.014667pt;}
.y8_c00360{bottom:670.626667pt;}
.y7_c00360{bottom:699.849333pt;}
.y6_c00360{bottom:714.461333pt;}
.y5_c00360{bottom:758.297333pt;}
.y4_c00360{bottom:772.909333pt;}
.y3_c00360{bottom:787.189333pt;}
.y2_c00360{bottom:1015.049333pt;}
.y1_c00360{bottom:1030.989333pt;}
.h3_c00360{height:31.280681pt;}
.h4_c00360{height:32.006363pt;}
.h2_c00360{height:46.518078pt;}
.h0_c00360{height:1122.520000pt;}
.h1_c00360{height:1122.666667pt;}
.w0_c00360{width:793.706667pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:113.385333pt;}
.x2_c00360{left:121.886667pt;}
.x3_c00360{left:127.796000pt;}
.x4_c00360{left:157.340000pt;}
.x5_c00360{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8a96ae2facb88693ea53b85.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:0.893555;font-style:normal;font-weight:normal;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_358a03f6664631c644fc092f.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_500d013b65197b506d9131c0.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_7465c598cabdcdd1acbf4a14.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00361;src:url('chunks/assets/font_1f650f6ae06d64e10bc9a8d9.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.048828;font-style: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;}
.ls3_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:0.087998px;}
.ls2_c00361{letter-spacing:0.098482px;}
.ls1_c00361{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00361{word-spacing:-26.575517px;}
.ws12_c00361{word-spacing:-26.487518px;}
.ws10_c00361{word-spacing:-21.578992px;}
.ws8_c00361{word-spacing:-21.485743px;}
.ws9_c00361{word-spacing:-21.459440px;}
.ws7_c00361{word-spacing:-21.399665px;}
.wsd_c00361{word-spacing:-21.280114px;}
.wsf_c00361{word-spacing:-19.606397px;}
.ws5_c00361{word-spacing:-18.769538px;}
.wsc_c00361{word-spacing:-17.574026px;}
.wsb_c00361{word-spacing:-17.095822px;}
.wsa_c00361{word-spacing:-17.036046px;}
.ws4_c00361{word-spacing:-14.943900px;}
.wse_c00361{word-spacing:-14.017015px;}
.ws6_c00361{word-spacing:-11.328144px;}
.ws1_c00361{word-spacing:-9.988424px;}
.ws3_c00361{word-spacing:-9.987499px;}
.ws16_c00361{word-spacing:0.000000px;}
.ws13_c00361{word-spacing:0.043999px;}
.ws11_c00361{word-spacing:0.175997px;}
.ws14_c00361{word-spacing:0.213446px;}
.ws15_c00361{word-spacing:0.219446px;}
.ws0_c00361{word-spacing:43.038600px;}
._0_c00361{margin-left:-4.734246px;}
._1_c00361{margin-left:-3.184856px;}
._3_c00361{margin-left:-1.075961px;}
._6_c00361{width:1.005737px;}
._4_c00361{width:13.282252px;}
._5_c00361{width:18.649987px;}
._2_c00361{width:19.935816px;}
.fc6_c00361{color:rgb(0,0,207);}
.fc5_c00361{color:rgb(79,153,5);}
.fc3_c00361{color:rgb(33,74,135);}
.fc2_c00361{color:rgb(143,89,3);}
.fc4_c00361{color:rgb(207,92,0);}
.fc1_c00361{color:rgb(6,69,173);}
.fc0_c00361{color:rgb(0,0,0);}
.fs2_c00361{font-size:43.999200px;}
.fs1_c00361{font-size:59.775600px;}
.fs0_c00361{font-size:86.077200px;}
.y0_c00361{bottom:0.000000px;}
.y1d_c00361{bottom:44.250000px;}
.y1c_c00361{bottom:103.420500px;}
.y1b_c00361{bottom:119.859000px;}
.y1a_c00361{bottom:136.297500px;}
.y19_c00361{bottom:169.174500px;}
.y18_c00361{bottom:185.613000px;}
.y17_c00361{bottom:218.490000px;}
.y16_c00361{bottom:234.927000px;}
.y15_c00361{bottom:251.365500px;}
.y14_c00361{bottom:300.681000px;}
.y13_c00361{bottom:317.119500px;}
.y12_c00361{bottom:333.558000px;}
.y11_c00361{bottom:349.996500px;}
.y10_c00361{bottom:366.435000px;}
.yf_c00361{bottom:399.310500px;}
.ye_c00361{bottom:415.749000px;}
.yd_c00361{bottom:431.814000px;}
.yc_c00361{bottom:478.861500px;}
.yb_c00361{bottom:496.794000px;}
.ya_c00361{bottom:514.726500px;}
.y9_c00361{bottom:532.659000px;}
.y8_c00361{bottom:550.591500px;}
.y7_c00361{bottom:568.524000px;}
.y6_c00361{bottom:586.458000px;}
.y5_c00361{bottom:613.162500px;}
.y4_c00361{bottom:639.868500px;}
.y3_c00361{bottom:666.574500px;}
.y2_c00361{bottom:693.280500px;}
.y1_c00361{bottom:735.360000px;}
.h5_c00361{height:35.190766px;}
.h6_c00361{height:36.007158px;}
.h3_c00361{height:40.511979px;}
.h4_c00361{height:52.332837px;}
.h2_c00361{height:58.337477px;}
.h0_c00361{height:1262.835000px;}
.h1_c00361{height:1263.000000px;}
.w0_c00361{width:892.920000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:127.558500px;}
.x2_c00361{left:137.122500px;}
.x3_c00361{left:435.249000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls3_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:0.078221pt;}
.ls2_c00361{letter-spacing:0.087539pt;}
.ls1_c00361{letter-spacing:0.092873pt;}
.ws2_c00361{word-spacing:-23.622682pt;}
.ws12_c00361{word-spacing:-23.544461pt;}
.ws10_c00361{word-spacing:-19.181326pt;}
.ws8_c00361{word-spacing:-19.098438pt;}
.ws9_c00361{word-spacing:-19.075058pt;}
.ws7_c00361{word-spacing:-19.021924pt;}
.wsd_c00361{word-spacing:-18.915657pt;}
.wsf_c00361{word-spacing:-17.427908pt;}
.ws5_c00361{word-spacing:-16.684034pt;}
.wsc_c00361{word-spacing:-15.621357pt;}
.wsb_c00361{word-spacing:-15.196286pt;}
.wsa_c00361{word-spacing:-15.143152pt;}
.ws4_c00361{word-spacing:-13.283467pt;}
.wse_c00361{word-spacing:-12.459569pt;}
.ws6_c00361{word-spacing:-10.069461pt;}
.ws1_c00361{word-spacing:-8.878599pt;}
.ws3_c00361{word-spacing:-8.877777pt;}
.ws16_c00361{word-spacing:0.000000pt;}
.ws13_c00361{word-spacing:0.039110pt;}
.ws11_c00361{word-spacing:0.156442pt;}
.ws14_c00361{word-spacing:0.189730pt;}
.ws15_c00361{word-spacing:0.195063pt;}
.ws0_c00361{word-spacing:38.256533pt;}
._0_c00361{margin-left:-4.208219pt;}
._1_c00361{margin-left:-2.830983pt;}
._3_c00361{margin-left:-0.956410pt;}
._6_c00361{width:0.893988pt;}
._4_c00361{width:11.806446pt;}
._5_c00361{width:16.577766pt;}
._2_c00361{width:17.720725pt;}
.fs2_c00361{font-size:39.110400pt;}
.fs1_c00361{font-size:53.133867pt;}
.fs0_c00361{font-size:76.513067pt;}
.y0_c00361{bottom:0.000000pt;}
.y1d_c00361{bottom:39.333333pt;}
.y1c_c00361{bottom:91.929333pt;}
.y1b_c00361{bottom:106.541333pt;}
.y1a_c00361{bottom:121.153333pt;}
.y19_c00361{bottom:150.377333pt;}
.y18_c00361{bottom:164.989333pt;}
.y17_c00361{bottom:194.213333pt;}
.y16_c00361{bottom:208.824000pt;}
.y15_c00361{bottom:223.436000pt;}
.y14_c00361{bottom:267.272000pt;}
.y13_c00361{bottom:281.884000pt;}
.y12_c00361{bottom:296.496000pt;}
.y11_c00361{bottom:311.108000pt;}
.y10_c00361{bottom:325.720000pt;}
.yf_c00361{bottom:354.942667pt;}
.ye_c00361{bottom:369.554667pt;}
.yd_c00361{bottom:383.834667pt;}
.yc_c00361{bottom:425.654667pt;}
.yb_c00361{bottom:441.594667pt;}
.ya_c00361{bottom:457.534667pt;}
.y9_c00361{bottom:473.474667pt;}
.y8_c00361{bottom:489.414667pt;}
.y7_c00361{bottom:505.354667pt;}
.y6_c00361{bottom:521.296000pt;}
.y5_c00361{bottom:545.033333pt;}
.y4_c00361{bottom:568.772000pt;}
.y3_c00361{bottom:592.510667pt;}
.y2_c00361{bottom:616.249333pt;}
.y1_c00361{bottom:653.653333pt;}
.h5_c00361{height:31.280681pt;}
.h6_c00361{height:32.006363pt;}
.h3_c00361{height:36.010648pt;}
.h4_c00361{height:46.518078pt;}
.h2_c00361{height:51.855535pt;}
.h0_c00361{height:1122.520000pt;}
.h1_c00361{height:1122.666667pt;}
.w0_c00361{width:793.706667pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:113.385333pt;}
.x2_c00361{left:121.886667pt;}
.x3_c00361{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e918dd9fd5e6a733ffe254e6.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.083496;font-style:normal;font-weight:normal;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_31aef807469d14ff6ecff391.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.048828;font-style:normal;font-weight:normal;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_ac3553076e2d444e5cb055d3.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.014648;font-style:normal;font-weight:normal;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_e1c786ce4d390d270c70adae.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls4_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.087998px;}
.ls2_c00362{letter-spacing:0.098482px;}
.ls1_c00362{letter-spacing:0.104482px;}
.ls3_c00362{letter-spacing:26.690482px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:-26.575517px;}
.ws1_c00362{word-spacing:-26.487518px;}
.ws2_c00362{word-spacing:0.000000px;}
.ws8_c00362{word-spacing:0.026966px;}
.ws9_c00362{word-spacing:0.043999px;}
.ws6_c00362{word-spacing:0.046284px;}
.ws3_c00362{word-spacing:0.056767px;}
.ws5_c00362{word-spacing:0.073250px;}
.ws7_c00362{word-spacing:0.083734px;}
.ws4_c00362{word-spacing:0.202963px;}
.wsb_c00362{word-spacing:0.213446px;}
.wsa_c00362{word-spacing:0.219446px;}
._5_c00362{width:1.041538px;}
._3_c00362{width:53.283031px;}
._1_c00362{width:79.858548px;}
._0_c00362{width:106.698060px;}
._2_c00362{width:133.452408px;}
._4_c00362{width:186.179933px;}
.fc5_c00362{color:rgb(79,153,5);}
.fc4_c00362{color:rgb(0,0,207);}
.fc3_c00362{color:rgb(207,92,0);}
.fc2_c00362{color:rgb(33,74,135);}
.fc1_c00362{color:rgb(143,89,3);}
.fc0_c00362{color:rgb(0,0,0);}
.fs0_c00362{font-size:43.999200px;}
.fs1_c00362{font-size:59.775600px;}
.y0_c00362{bottom:0.000000px;}
.y2b_c00362{bottom:44.250000px;}
.y2a_c00362{bottom:387.259500px;}
.y29_c00362{bottom:403.698000px;}
.y28_c00362{bottom:420.136500px;}
.y27_c00362{bottom:436.575000px;}
.y26_c00362{bottom:453.013500px;}
.y25_c00362{bottom:469.452000px;}
.y24_c00362{bottom:485.890500px;}
.y23_c00362{bottom:502.329000px;}
.y22_c00362{bottom:518.767500px;}
.y21_c00362{bottom:535.206000px;}
.y20_c00362{bottom:551.643000px;}
.y1f_c00362{bottom:584.520000px;}
.y1e_c00362{bottom:600.958500px;}
.y1d_c00362{bottom:617.397000px;}
.y1c_c00362{bottom:650.274000px;}
.y1b_c00362{bottom:666.712500px;}
.y1a_c00362{bottom:683.151000px;}
.y19_c00362{bottom:699.589500px;}
.y18_c00362{bottom:716.028000px;}
.y17_c00362{bottom:732.465000px;}
.y16_c00362{bottom:748.903500px;}
.y15_c00362{bottom:765.342000px;}
.y14_c00362{bottom:781.780500px;}
.y13_c00362{bottom:798.219000px;}
.y12_c00362{bottom:814.657500px;}
.y11_c00362{bottom:831.096000px;}
.y10_c00362{bottom:847.534500px;}
.yf_c00362{bottom:863.973000px;}
.ye_c00362{bottom:880.411500px;}
.yd_c00362{bottom:896.848500px;}
.yc_c00362{bottom:913.287000px;}
.yb_c00362{bottom:929.725500px;}
.ya_c00362{bottom:946.164000px;}
.y9_c00362{bottom:995.479500px;}
.y8_c00362{bottom:1011.918000px;}
.y7_c00362{bottom:1028.356500px;}
.y6_c00362{bottom:1044.795000px;}
.y5_c00362{bottom:1061.232000px;}
.y4_c00362{bottom:1094.109000px;}
.y3_c00362{bottom:1110.547500px;}
.y2_c00362{bottom:1143.424500px;}
.y1_c00362{bottom:1159.863000px;}
.h3_c00362{height:35.190766px;}
.h2_c00362{height:36.007158px;}
.h4_c00362{height:52.332837px;}
.h0_c00362{height:1262.835000px;}
.h1_c00362{height:1263.000000px;}
.w0_c00362{width:892.920000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:137.122500px;}
.x3_c00362{left:143.770500px;}
.x4_c00362{left:177.007500px;}
.x2_c00362{left:230.185500px;}
.x5_c00362{left:435.249000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls4_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.078221pt;}
.ls2_c00362{letter-spacing:0.087539pt;}
.ls1_c00362{letter-spacing:0.092873pt;}
.ls3_c00362{letter-spacing:23.724873pt;}
.ws0_c00362{word-spacing:-23.622682pt;}
.ws1_c00362{word-spacing:-23.544461pt;}
.ws2_c00362{word-spacing:0.000000pt;}
.ws8_c00362{word-spacing:0.023970pt;}
.ws9_c00362{word-spacing:0.039110pt;}
.ws6_c00362{word-spacing:0.041141pt;}
.ws3_c00362{word-spacing:0.050460pt;}
.ws5_c00362{word-spacing:0.065111pt;}
.ws7_c00362{word-spacing:0.074430pt;}
.ws4_c00362{word-spacing:0.180412pt;}
.wsb_c00362{word-spacing:0.189730pt;}
.wsa_c00362{word-spacing:0.195063pt;}
._5_c00362{width:0.925811pt;}
._3_c00362{width:47.362694pt;}
._1_c00362{width:70.985376pt;}
._0_c00362{width:94.842720pt;}
._2_c00362{width:118.624363pt;}
._4_c00362{width:165.493274pt;}
.fs0_c00362{font-size:39.110400pt;}
.fs1_c00362{font-size:53.133867pt;}
.y0_c00362{bottom:0.000000pt;}
.y2b_c00362{bottom:39.333333pt;}
.y2a_c00362{bottom:344.230667pt;}
.y29_c00362{bottom:358.842667pt;}
.y28_c00362{bottom:373.454667pt;}
.y27_c00362{bottom:388.066667pt;}
.y26_c00362{bottom:402.678667pt;}
.y25_c00362{bottom:417.290667pt;}
.y24_c00362{bottom:431.902667pt;}
.y23_c00362{bottom:446.514667pt;}
.y22_c00362{bottom:461.126667pt;}
.y21_c00362{bottom:475.738667pt;}
.y20_c00362{bottom:490.349333pt;}
.y1f_c00362{bottom:519.573333pt;}
.y1e_c00362{bottom:534.185333pt;}
.y1d_c00362{bottom:548.797333pt;}
.y1c_c00362{bottom:578.021333pt;}
.y1b_c00362{bottom:592.633333pt;}
.y1a_c00362{bottom:607.245333pt;}
.y19_c00362{bottom:621.857333pt;}
.y18_c00362{bottom:636.469333pt;}
.y17_c00362{bottom:651.080000pt;}
.y16_c00362{bottom:665.692000pt;}
.y15_c00362{bottom:680.304000pt;}
.y14_c00362{bottom:694.916000pt;}
.y13_c00362{bottom:709.528000pt;}
.y12_c00362{bottom:724.140000pt;}
.y11_c00362{bottom:738.752000pt;}
.y10_c00362{bottom:753.364000pt;}
.yf_c00362{bottom:767.976000pt;}
.ye_c00362{bottom:782.588000pt;}
.yd_c00362{bottom:797.198667pt;}
.yc_c00362{bottom:811.810667pt;}
.yb_c00362{bottom:826.422667pt;}
.ya_c00362{bottom:841.034667pt;}
.y9_c00362{bottom:884.870667pt;}
.y8_c00362{bottom:899.482667pt;}
.y7_c00362{bottom:914.094667pt;}
.y6_c00362{bottom:928.706667pt;}
.y5_c00362{bottom:943.317333pt;}
.y4_c00362{bottom:972.541333pt;}
.y3_c00362{bottom:987.153333pt;}
.y2_c00362{bottom:1016.377333pt;}
.y1_c00362{bottom:1030.989333pt;}
.h3_c00362{height:31.280681pt;}
.h2_c00362{height:32.006363pt;}
.h4_c00362{height:46.518078pt;}
.h0_c00362{height:1122.520000pt;}
.h1_c00362{height:1122.666667pt;}
.w0_c00362{width:793.706667pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:121.886667pt;}
.x3_c00362{left:127.796000pt;}
.x4_c00362{left:157.340000pt;}
.x2_c00362{left:204.609333pt;}
.x5_c00362{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d23b4e827ddf374954e558f2.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.893555;font-style:normal;font-weight:normal;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_4164c329cf0f7627d5198815.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.083496;font-style:normal;font-weight:normal;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_15e3ac91cc6e57c88da23fb5.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00363;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.048828;font-style: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;}
.ls3_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.087998px;}
.ls2_c00363{letter-spacing:0.098482px;}
.ls1_c00363{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00363{word-spacing:-33.713438px;}
.ws2_c00363{word-spacing:-26.575517px;}
.wse_c00363{word-spacing:-26.487518px;}
.ws5_c00363{word-spacing:-18.769538px;}
.ws4_c00363{word-spacing:-14.943900px;}
.ws7_c00363{word-spacing:-14.465695px;}
.wsa_c00363{word-spacing:-14.107042px;}
.wsb_c00363{word-spacing:-12.074671px;}
.ws9_c00363{word-spacing:-11.716018px;}
.ws8_c00363{word-spacing:-11.656242px;}
.ws1_c00363{word-spacing:-9.988424px;}
.ws3_c00363{word-spacing:-9.987499px;}
.ws6_c00363{word-spacing:-1.386144px;}
.ws12_c00363{word-spacing:0.000000px;}
.wsf_c00363{word-spacing:0.043999px;}
.ws15_c00363{word-spacing:0.056767px;}
.ws13_c00363{word-spacing:0.073250px;}
.ws14_c00363{word-spacing:0.083734px;}
.wsd_c00363{word-spacing:0.175997px;}
.ws16_c00363{word-spacing:0.202963px;}
.ws10_c00363{word-spacing:0.213446px;}
.ws11_c00363{word-spacing:0.219446px;}
.ws0_c00363{word-spacing:43.038600px;}
._0_c00363{margin-left:-4.734246px;}
._1_c00363{margin-left:-3.184856px;}
._3_c00363{margin-left:-1.075961px;}
._7_c00363{width:1.005737px;}
._6_c00363{width:15.972059px;}
._2_c00363{width:19.935816px;}
._4_c00363{width:23.598694px;}
._5_c00363{width:40.109428px;}
._9_c00363{width:53.283031px;}
._8_c00363{width:79.858548px;}
._a_c00363{width:133.452408px;}
.fc6_c00363{color:rgb(0,0,207);}
.fc5_c00363{color:rgb(79,153,5);}
.fc3_c00363{color:rgb(33,74,135);}
.fc2_c00363{color:rgb(143,89,3);}
.fc4_c00363{color:rgb(207,92,0);}
.fc1_c00363{color:rgb(6,69,173);}
.fc0_c00363{color:rgb(0,0,0);}
.fs2_c00363{font-size:43.999200px;}
.fs1_c00363{font-size:59.775600px;}
.fs0_c00363{font-size:86.077200px;}
.y0_c00363{bottom:0.000000px;}
.y20_c00363{bottom:44.250000px;}
.y1f_c00363{bottom:86.982000px;}
.y1e_c00363{bottom:103.420500px;}
.y1d_c00363{bottom:119.859000px;}
.y1c_c00363{bottom:136.297500px;}
.y1b_c00363{bottom:152.736000px;}
.y1a_c00363{bottom:169.174500px;}
.y19_c00363{bottom:185.613000px;}
.y18_c00363{bottom:202.051500px;}
.y17_c00363{bottom:218.490000px;}
.y16_c00363{bottom:234.927000px;}
.y15_c00363{bottom:251.365500px;}
.y14_c00363{bottom:267.804000px;}
.y13_c00363{bottom:284.242500px;}
.y12_c00363{bottom:300.681000px;}
.y11_c00363{bottom:317.119500px;}
.y10_c00363{bottom:349.996500px;}
.yf_c00363{bottom:366.435000px;}
.ye_c00363{bottom:415.749000px;}
.yd_c00363{bottom:432.187500px;}
.yc_c00363{bottom:448.252500px;}
.yb_c00363{bottom:493.890000px;}
.ya_c00363{bottom:511.822500px;}
.y9_c00363{bottom:529.756500px;}
.y8_c00363{bottom:547.689000px;}
.y7_c00363{bottom:565.621500px;}
.y6_c00363{bottom:583.554000px;}
.y5_c00363{bottom:610.633500px;}
.y4_c00363{bottom:637.714500px;}
.y3_c00363{bottom:664.794000px;}
.y2_c00363{bottom:691.873500px;}
.y1_c00363{bottom:734.407500px;}
.h5_c00363{height:35.190766px;}
.h6_c00363{height:36.007158px;}
.h3_c00363{height:40.511979px;}
.h4_c00363{height:52.332837px;}
.h2_c00363{height:58.337477px;}
.h0_c00363{height:1262.835000px;}
.h1_c00363{height:1263.000000px;}
.w0_c00363{width:892.920000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:127.558500px;}
.x2_c00363{left:137.122500px;}
.x3_c00363{left:143.770500px;}
.x4_c00363{left:435.249000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls3_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.078221pt;}
.ls2_c00363{letter-spacing:0.087539pt;}
.ls1_c00363{letter-spacing:0.092873pt;}
.wsc_c00363{word-spacing:-29.967501pt;}
.ws2_c00363{word-spacing:-23.622682pt;}
.wse_c00363{word-spacing:-23.544461pt;}
.ws5_c00363{word-spacing:-16.684034pt;}
.ws4_c00363{word-spacing:-13.283467pt;}
.ws7_c00363{word-spacing:-12.858396pt;}
.wsa_c00363{word-spacing:-12.539593pt;}
.wsb_c00363{word-spacing:-10.733041pt;}
.ws9_c00363{word-spacing:-10.414238pt;}
.ws8_c00363{word-spacing:-10.361104pt;}
.ws1_c00363{word-spacing:-8.878599pt;}
.ws3_c00363{word-spacing:-8.877777pt;}
.ws6_c00363{word-spacing:-1.232128pt;}
.ws12_c00363{word-spacing:0.000000pt;}
.wsf_c00363{word-spacing:0.039110pt;}
.ws15_c00363{word-spacing:0.050460pt;}
.ws13_c00363{word-spacing:0.065111pt;}
.ws14_c00363{word-spacing:0.074430pt;}
.wsd_c00363{word-spacing:0.156442pt;}
.ws16_c00363{word-spacing:0.180412pt;}
.ws10_c00363{word-spacing:0.189730pt;}
.ws11_c00363{word-spacing:0.195063pt;}
.ws0_c00363{word-spacing:38.256533pt;}
._0_c00363{margin-left:-4.208219pt;}
._1_c00363{margin-left:-2.830983pt;}
._3_c00363{margin-left:-0.956410pt;}
._7_c00363{width:0.893988pt;}
._6_c00363{width:14.197386pt;}
._2_c00363{width:17.720725pt;}
._4_c00363{width:20.976617pt;}
._5_c00363{width:35.652825pt;}
._9_c00363{width:47.362694pt;}
._8_c00363{width:70.985376pt;}
._a_c00363{width:118.624363pt;}
.fs2_c00363{font-size:39.110400pt;}
.fs1_c00363{font-size:53.133867pt;}
.fs0_c00363{font-size:76.513067pt;}
.y0_c00363{bottom:0.000000pt;}
.y20_c00363{bottom:39.333333pt;}
.y1f_c00363{bottom:77.317333pt;}
.y1e_c00363{bottom:91.929333pt;}
.y1d_c00363{bottom:106.541333pt;}
.y1c_c00363{bottom:121.153333pt;}
.y1b_c00363{bottom:135.765333pt;}
.y1a_c00363{bottom:150.377333pt;}
.y19_c00363{bottom:164.989333pt;}
.y18_c00363{bottom:179.601333pt;}
.y17_c00363{bottom:194.213333pt;}
.y16_c00363{bottom:208.824000pt;}
.y15_c00363{bottom:223.436000pt;}
.y14_c00363{bottom:238.048000pt;}
.y13_c00363{bottom:252.660000pt;}
.y12_c00363{bottom:267.272000pt;}
.y11_c00363{bottom:281.884000pt;}
.y10_c00363{bottom:311.108000pt;}
.yf_c00363{bottom:325.720000pt;}
.ye_c00363{bottom:369.554667pt;}
.yd_c00363{bottom:384.166667pt;}
.yc_c00363{bottom:398.446667pt;}
.yb_c00363{bottom:439.013333pt;}
.ya_c00363{bottom:454.953333pt;}
.y9_c00363{bottom:470.894667pt;}
.y8_c00363{bottom:486.834667pt;}
.y7_c00363{bottom:502.774667pt;}
.y6_c00363{bottom:518.714667pt;}
.y5_c00363{bottom:542.785333pt;}
.y4_c00363{bottom:566.857333pt;}
.y3_c00363{bottom:590.928000pt;}
.y2_c00363{bottom:614.998667pt;}
.y1_c00363{bottom:652.806667pt;}
.h5_c00363{height:31.280681pt;}
.h6_c00363{height:32.006363pt;}
.h3_c00363{height:36.010648pt;}
.h4_c00363{height:46.518078pt;}
.h2_c00363{height:51.855535pt;}
.h0_c00363{height:1122.520000pt;}
.h1_c00363{height:1122.666667pt;}
.w0_c00363{width:793.706667pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:113.385333pt;}
.x2_c00363{left:121.886667pt;}
.x3_c00363{left:127.796000pt;}
.x4_c00363{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_158229b385283b971ea4aa03.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.048828;font-style:normal;font-weight:normal;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_e53f3f0f6c6cbdab841ef236.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_cac66c7f3c025cfca0b8fa3a.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_4dcb31895cac221f9e40f582.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.102051;font-style: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;}
.ls4_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.087998px;}
.ls2_c00364{letter-spacing:0.098482px;}
.ls3_c00364{letter-spacing:0.104482px;}
.ls1_c00364{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00364{word-spacing:-26.575517px;}
.ws4_c00364{word-spacing:-26.487518px;}
.wsa_c00364{word-spacing:-18.769538px;}
.wsc_c00364{word-spacing:-16.019861px;}
.ws9_c00364{word-spacing:-14.943900px;}
.wsf_c00364{word-spacing:-14.107042px;}
.ws10_c00364{word-spacing:-12.074671px;}
.wse_c00364{word-spacing:-11.716018px;}
.wsd_c00364{word-spacing:-11.656242px;}
.ws7_c00364{word-spacing:-9.988424px;}
.ws8_c00364{word-spacing:-9.987499px;}
.wsb_c00364{word-spacing:-4.536144px;}
.ws3_c00364{word-spacing:0.000000px;}
.ws0_c00364{word-spacing:0.043999px;}
.ws5_c00364{word-spacing:0.213446px;}
.ws1_c00364{word-spacing:0.219446px;}
.ws6_c00364{word-spacing:43.038600px;}
._2_c00364{margin-left:-4.734246px;}
._3_c00364{margin-left:-3.184856px;}
._5_c00364{margin-left:-1.075961px;}
._1_c00364{width:1.041538px;}
._4_c00364{width:19.935816px;}
._6_c00364{width:23.598694px;}
._7_c00364{width:40.109428px;}
._0_c00364{width:106.698060px;}
.fc5_c00364{color:rgb(79,153,5);}
.fc4_c00364{color:rgb(143,89,3);}
.fc3_c00364{color:rgb(0,0,0);}
.fc6_c00364{color:rgb(6,69,173);}
.fc2_c00364{color:rgb(207,92,0);}
.fc1_c00364{color:rgb(0,0,207);}
.fc0_c00364{color:rgb(33,74,135);}
.fs0_c00364{font-size:43.999200px;}
.fs2_c00364{font-size:59.775600px;}
.fs1_c00364{font-size:86.077200px;}
.y0_c00364{bottom:0.000000px;}
.y20_c00364{bottom:44.250000px;}
.y1f_c00364{bottom:82.051500px;}
.y1e_c00364{bottom:99.984000px;}
.y1d_c00364{bottom:117.916500px;}
.y1c_c00364{bottom:135.849000px;}
.y1b_c00364{bottom:162.501000px;}
.y1a_c00364{bottom:189.151500px;}
.y19_c00364{bottom:215.802000px;}
.y18_c00364{bottom:242.454000px;}
.y17_c00364{bottom:284.478000px;}
.y16_c00364{bottom:748.903500px;}
.y15_c00364{bottom:765.342000px;}
.y14_c00364{bottom:781.780500px;}
.y13_c00364{bottom:798.219000px;}
.y12_c00364{bottom:814.657500px;}
.y11_c00364{bottom:831.096000px;}
.y10_c00364{bottom:847.534500px;}
.yf_c00364{bottom:863.973000px;}
.ye_c00364{bottom:880.411500px;}
.yd_c00364{bottom:896.848500px;}
.yc_c00364{bottom:913.287000px;}
.yb_c00364{bottom:946.164000px;}
.ya_c00364{bottom:962.602500px;}
.y9_c00364{bottom:979.041000px;}
.y8_c00364{bottom:1011.918000px;}
.y7_c00364{bottom:1028.356500px;}
.y6_c00364{bottom:1044.795000px;}
.y5_c00364{bottom:1061.232000px;}
.y4_c00364{bottom:1077.670500px;}
.y3_c00364{bottom:1094.109000px;}
.y2_c00364{bottom:1110.547500px;}
.y1_c00364{bottom:1159.863000px;}
.h3_c00364{height:35.190766px;}
.h2_c00364{height:36.007158px;}
.h5_c00364{height:40.511979px;}
.h6_c00364{height:52.332837px;}
.h4_c00364{height:58.337477px;}
.h0_c00364{height:1262.835000px;}
.h1_c00364{height:1263.000000px;}
.w0_c00364{width:892.920000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x4_c00364{left:127.558500px;}
.x2_c00364{left:137.122500px;}
.x1_c00364{left:143.770500px;}
.x3_c00364{left:177.007500px;}
.x5_c00364{left:435.249000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls4_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.078221pt;}
.ls2_c00364{letter-spacing:0.087539pt;}
.ls3_c00364{letter-spacing:0.092873pt;}
.ls1_c00364{letter-spacing:23.724873pt;}
.ws2_c00364{word-spacing:-23.622682pt;}
.ws4_c00364{word-spacing:-23.544461pt;}
.wsa_c00364{word-spacing:-16.684034pt;}
.wsc_c00364{word-spacing:-14.239876pt;}
.ws9_c00364{word-spacing:-13.283467pt;}
.wsf_c00364{word-spacing:-12.539593pt;}
.ws10_c00364{word-spacing:-10.733041pt;}
.wse_c00364{word-spacing:-10.414238pt;}
.wsd_c00364{word-spacing:-10.361104pt;}
.ws7_c00364{word-spacing:-8.878599pt;}
.ws8_c00364{word-spacing:-8.877777pt;}
.wsb_c00364{word-spacing:-4.032128pt;}
.ws3_c00364{word-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.039110pt;}
.ws5_c00364{word-spacing:0.189730pt;}
.ws1_c00364{word-spacing:0.195063pt;}
.ws6_c00364{word-spacing:38.256533pt;}
._2_c00364{margin-left:-4.208219pt;}
._3_c00364{margin-left:-2.830983pt;}
._5_c00364{margin-left:-0.956410pt;}
._1_c00364{width:0.925811pt;}
._4_c00364{width:17.720725pt;}
._6_c00364{width:20.976617pt;}
._7_c00364{width:35.652825pt;}
._0_c00364{width:94.842720pt;}
.fs0_c00364{font-size:39.110400pt;}
.fs2_c00364{font-size:53.133867pt;}
.fs1_c00364{font-size:76.513067pt;}
.y0_c00364{bottom:0.000000pt;}
.y20_c00364{bottom:39.333333pt;}
.y1f_c00364{bottom:72.934667pt;}
.y1e_c00364{bottom:88.874667pt;}
.y1d_c00364{bottom:104.814667pt;}
.y1c_c00364{bottom:120.754667pt;}
.y1b_c00364{bottom:144.445333pt;}
.y1a_c00364{bottom:168.134667pt;}
.y19_c00364{bottom:191.824000pt;}
.y18_c00364{bottom:215.514667pt;}
.y17_c00364{bottom:252.869333pt;}
.y16_c00364{bottom:665.692000pt;}
.y15_c00364{bottom:680.304000pt;}
.y14_c00364{bottom:694.916000pt;}
.y13_c00364{bottom:709.528000pt;}
.y12_c00364{bottom:724.140000pt;}
.y11_c00364{bottom:738.752000pt;}
.y10_c00364{bottom:753.364000pt;}
.yf_c00364{bottom:767.976000pt;}
.ye_c00364{bottom:782.588000pt;}
.yd_c00364{bottom:797.198667pt;}
.yc_c00364{bottom:811.810667pt;}
.yb_c00364{bottom:841.034667pt;}
.ya_c00364{bottom:855.646667pt;}
.y9_c00364{bottom:870.258667pt;}
.y8_c00364{bottom:899.482667pt;}
.y7_c00364{bottom:914.094667pt;}
.y6_c00364{bottom:928.706667pt;}
.y5_c00364{bottom:943.317333pt;}
.y4_c00364{bottom:957.929333pt;}
.y3_c00364{bottom:972.541333pt;}
.y2_c00364{bottom:987.153333pt;}
.y1_c00364{bottom:1030.989333pt;}
.h3_c00364{height:31.280681pt;}
.h2_c00364{height:32.006363pt;}
.h5_c00364{height:36.010648pt;}
.h6_c00364{height:46.518078pt;}
.h4_c00364{height:51.855535pt;}
.h0_c00364{height:1122.520000pt;}
.h1_c00364{height:1122.666667pt;}
.w0_c00364{width:793.706667pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x4_c00364{left:113.385333pt;}
.x2_c00364{left:121.886667pt;}
.x1_c00364{left:127.796000pt;}
.x3_c00364{left:157.340000pt;}
.x5_c00364{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca3b17573d87532d83a74991.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.102051;font-style:normal;font-weight:normal;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_9e473c6480d78ac2d04fc1a2.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.048828;font-style:normal;font-weight:normal;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_c939933060c10a52ef9d39e8.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls4_c00365{letter-spacing:0.000000px;}
.ls1_c00365{letter-spacing:0.087998px;}
.ls2_c00365{letter-spacing:0.098482px;}
.ls0_c00365{letter-spacing:0.104482px;}
.ls3_c00365{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00365{word-spacing:-26.575517px;}
.ws3_c00365{word-spacing:-26.487518px;}
.ws0_c00365{word-spacing:-18.769538px;}
.ws8_c00365{word-spacing:0.000000px;}
.ws5_c00365{word-spacing:0.043999px;}
.wsb_c00365{word-spacing:0.056767px;}
.ws9_c00365{word-spacing:0.073250px;}
.wsa_c00365{word-spacing:0.083734px;}
.ws2_c00365{word-spacing:0.175997px;}
.wsc_c00365{word-spacing:0.202963px;}
.ws6_c00365{word-spacing:0.213446px;}
.ws7_c00365{word-spacing:0.219446px;}
._0_c00365{margin-left:-3.825638px;}
._1_c00365{width:1.005737px;}
._3_c00365{width:53.283031px;}
._2_c00365{width:79.858548px;}
._4_c00365{width:133.452408px;}
.fc5_c00365{color:rgb(0,0,207);}
.fc4_c00365{color:rgb(79,153,5);}
.fc3_c00365{color:rgb(207,92,0);}
.fc2_c00365{color:rgb(33,74,135);}
.fc1_c00365{color:rgb(143,89,3);}
.fc0_c00365{color:rgb(0,0,0);}
.fs1_c00365{font-size:43.999200px;}
.fs0_c00365{font-size:59.775600px;}
.y0_c00365{bottom:0.000000px;}
.y2d_c00365{bottom:44.250000px;}
.y2c_c00365{bottom:96.919500px;}
.y2b_c00365{bottom:113.358000px;}
.y2a_c00365{bottom:129.796500px;}
.y29_c00365{bottom:146.235000px;}
.y28_c00365{bottom:162.673500px;}
.y27_c00365{bottom:179.112000px;}
.y26_c00365{bottom:195.550500px;}
.y25_c00365{bottom:211.989000px;}
.y24_c00365{bottom:228.427500px;}
.y23_c00365{bottom:244.866000px;}
.y22_c00365{bottom:261.304500px;}
.y21_c00365{bottom:294.180000px;}
.y20_c00365{bottom:310.618500px;}
.y1f_c00365{bottom:327.057000px;}
.y1e_c00365{bottom:359.934000px;}
.y1d_c00365{bottom:376.372500px;}
.y1c_c00365{bottom:392.811000px;}
.y1b_c00365{bottom:409.249500px;}
.y1a_c00365{bottom:425.688000px;}
.y19_c00365{bottom:442.125000px;}
.y18_c00365{bottom:458.563500px;}
.y17_c00365{bottom:507.879000px;}
.y16_c00365{bottom:524.317500px;}
.y15_c00365{bottom:540.756000px;}
.y14_c00365{bottom:557.194500px;}
.y13_c00365{bottom:573.633000px;}
.y12_c00365{bottom:590.071500px;}
.y11_c00365{bottom:606.508500px;}
.y10_c00365{bottom:622.947000px;}
.yf_c00365{bottom:639.385500px;}
.ye_c00365{bottom:655.824000px;}
.yd_c00365{bottom:672.262500px;}
.yc_c00365{bottom:688.701000px;}
.yb_c00365{bottom:705.139500px;}
.ya_c00365{bottom:721.578000px;}
.y9_c00365{bottom:738.016500px;}
.y8_c00365{bottom:754.455000px;}
.y7_c00365{bottom:787.330500px;}
.y6_c00365{bottom:803.769000px;}
.y5_c00365{bottom:853.084500px;}
.y4_c00365{bottom:869.523000px;}
.y3_c00365{bottom:885.588000px;}
.y2_c00365{bottom:1141.930500px;}
.y1_c00365{bottom:1159.863000px;}
.h3_c00365{height:35.190766px;}
.h4_c00365{height:36.007158px;}
.h2_c00365{height:52.332837px;}
.h0_c00365{height:1262.835000px;}
.h1_c00365{height:1263.000000px;}
.w0_c00365{width:892.920000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:127.558500px;}
.x2_c00365{left:137.122500px;}
.x3_c00365{left:143.770500px;}
.x4_c00365{left:177.007500px;}
.x5_c00365{left:435.249000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls4_c00365{letter-spacing:0.000000pt;}
.ls1_c00365{letter-spacing:0.078221pt;}
.ls2_c00365{letter-spacing:0.087539pt;}
.ls0_c00365{letter-spacing:0.092873pt;}
.ls3_c00365{letter-spacing:23.724873pt;}
.ws1_c00365{word-spacing:-29.967501pt;}
.ws4_c00365{word-spacing:-23.622682pt;}
.ws3_c00365{word-spacing:-23.544461pt;}
.ws0_c00365{word-spacing:-16.684034pt;}
.ws8_c00365{word-spacing:0.000000pt;}
.ws5_c00365{word-spacing:0.039110pt;}
.wsb_c00365{word-spacing:0.050460pt;}
.ws9_c00365{word-spacing:0.065111pt;}
.wsa_c00365{word-spacing:0.074430pt;}
.ws2_c00365{word-spacing:0.156442pt;}
.wsc_c00365{word-spacing:0.180412pt;}
.ws6_c00365{word-spacing:0.189730pt;}
.ws7_c00365{word-spacing:0.195063pt;}
._0_c00365{margin-left:-3.400567pt;}
._1_c00365{width:0.893988pt;}
._3_c00365{width:47.362694pt;}
._2_c00365{width:70.985376pt;}
._4_c00365{width:118.624363pt;}
.fs1_c00365{font-size:39.110400pt;}
.fs0_c00365{font-size:53.133867pt;}
.y0_c00365{bottom:0.000000pt;}
.y2d_c00365{bottom:39.333333pt;}
.y2c_c00365{bottom:86.150667pt;}
.y2b_c00365{bottom:100.762667pt;}
.y2a_c00365{bottom:115.374667pt;}
.y29_c00365{bottom:129.986667pt;}
.y28_c00365{bottom:144.598667pt;}
.y27_c00365{bottom:159.210667pt;}
.y26_c00365{bottom:173.822667pt;}
.y25_c00365{bottom:188.434667pt;}
.y24_c00365{bottom:203.046667pt;}
.y23_c00365{bottom:217.658667pt;}
.y22_c00365{bottom:232.270667pt;}
.y21_c00365{bottom:261.493333pt;}
.y20_c00365{bottom:276.105333pt;}
.y1f_c00365{bottom:290.717333pt;}
.y1e_c00365{bottom:319.941333pt;}
.y1d_c00365{bottom:334.553333pt;}
.y1c_c00365{bottom:349.165333pt;}
.y1b_c00365{bottom:363.777333pt;}
.y1a_c00365{bottom:378.389333pt;}
.y19_c00365{bottom:393.000000pt;}
.y18_c00365{bottom:407.612000pt;}
.y17_c00365{bottom:451.448000pt;}
.y16_c00365{bottom:466.060000pt;}
.y15_c00365{bottom:480.672000pt;}
.y14_c00365{bottom:495.284000pt;}
.y13_c00365{bottom:509.896000pt;}
.y12_c00365{bottom:524.508000pt;}
.y11_c00365{bottom:539.118667pt;}
.y10_c00365{bottom:553.730667pt;}
.yf_c00365{bottom:568.342667pt;}
.ye_c00365{bottom:582.954667pt;}
.yd_c00365{bottom:597.566667pt;}
.yc_c00365{bottom:612.178667pt;}
.yb_c00365{bottom:626.790667pt;}
.ya_c00365{bottom:641.402667pt;}
.y9_c00365{bottom:656.014667pt;}
.y8_c00365{bottom:670.626667pt;}
.y7_c00365{bottom:699.849333pt;}
.y6_c00365{bottom:714.461333pt;}
.y5_c00365{bottom:758.297333pt;}
.y4_c00365{bottom:772.909333pt;}
.y3_c00365{bottom:787.189333pt;}
.y2_c00365{bottom:1015.049333pt;}
.y1_c00365{bottom:1030.989333pt;}
.h3_c00365{height:31.280681pt;}
.h4_c00365{height:32.006363pt;}
.h2_c00365{height:46.518078pt;}
.h0_c00365{height:1122.520000pt;}
.h1_c00365{height:1122.666667pt;}
.w0_c00365{width:793.706667pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:113.385333pt;}
.x2_c00365{left:121.886667pt;}
.x3_c00365{left:127.796000pt;}
.x4_c00365{left:157.340000pt;}
.x5_c00365{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b305c6a34c1bff180830b73.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.893555;font-style:normal;font-weight:normal;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_acbe71e0f458f204be5f6ae7.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.083496;font-style:normal;font-weight:normal;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_25e2626bf56ca77d82c6b057.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.048828;font-style: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;}
.ls3_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.087998px;}
.ls2_c00366{letter-spacing:0.098482px;}
.ls1_c00366{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00366{word-spacing:-33.713438px;}
.ws2_c00366{word-spacing:-26.575517px;}
.wse_c00366{word-spacing:-26.487518px;}
.ws5_c00366{word-spacing:-18.769538px;}
.ws7_c00366{word-spacing:-16.019861px;}
.ws4_c00366{word-spacing:-14.943900px;}
.wsa_c00366{word-spacing:-14.107042px;}
.wsb_c00366{word-spacing:-12.074671px;}
.ws9_c00366{word-spacing:-11.716018px;}
.ws8_c00366{word-spacing:-11.656242px;}
.ws1_c00366{word-spacing:-9.988424px;}
.ws3_c00366{word-spacing:-9.987499px;}
.ws6_c00366{word-spacing:-4.536144px;}
.ws12_c00366{word-spacing:0.000000px;}
.wsf_c00366{word-spacing:0.043999px;}
.ws15_c00366{word-spacing:0.056767px;}
.ws13_c00366{word-spacing:0.073250px;}
.ws14_c00366{word-spacing:0.083734px;}
.wsd_c00366{word-spacing:0.175997px;}
.ws16_c00366{word-spacing:0.202963px;}
.ws10_c00366{word-spacing:0.213446px;}
.ws11_c00366{word-spacing:0.219446px;}
.ws0_c00366{word-spacing:43.038600px;}
._0_c00366{margin-left:-4.734246px;}
._1_c00366{margin-left:-3.184856px;}
._3_c00366{margin-left:-1.075961px;}
._7_c00366{width:1.005737px;}
._6_c00366{width:15.972059px;}
._2_c00366{width:19.935816px;}
._4_c00366{width:23.598694px;}
._5_c00366{width:40.109428px;}
._9_c00366{width:53.283031px;}
._8_c00366{width:79.858548px;}
._a_c00366{width:133.452408px;}
.fc6_c00366{color:rgb(0,0,207);}
.fc5_c00366{color:rgb(79,153,5);}
.fc3_c00366{color:rgb(33,74,135);}
.fc2_c00366{color:rgb(143,89,3);}
.fc4_c00366{color:rgb(207,92,0);}
.fc1_c00366{color:rgb(6,69,173);}
.fc0_c00366{color:rgb(0,0,0);}
.fs2_c00366{font-size:43.999200px;}
.fs1_c00366{font-size:59.775600px;}
.fs0_c00366{font-size:86.077200px;}
.y0_c00366{bottom:0.000000px;}
.y20_c00366{bottom:44.250000px;}
.y1f_c00366{bottom:86.982000px;}
.y1e_c00366{bottom:103.420500px;}
.y1d_c00366{bottom:119.859000px;}
.y1c_c00366{bottom:136.297500px;}
.y1b_c00366{bottom:152.736000px;}
.y1a_c00366{bottom:169.174500px;}
.y19_c00366{bottom:185.613000px;}
.y18_c00366{bottom:202.051500px;}
.y17_c00366{bottom:218.490000px;}
.y16_c00366{bottom:234.927000px;}
.y15_c00366{bottom:251.365500px;}
.y14_c00366{bottom:267.804000px;}
.y13_c00366{bottom:284.242500px;}
.y12_c00366{bottom:300.681000px;}
.y11_c00366{bottom:317.119500px;}
.y10_c00366{bottom:349.996500px;}
.yf_c00366{bottom:366.435000px;}
.ye_c00366{bottom:415.749000px;}
.yd_c00366{bottom:432.187500px;}
.yc_c00366{bottom:448.252500px;}
.yb_c00366{bottom:493.890000px;}
.ya_c00366{bottom:511.822500px;}
.y9_c00366{bottom:529.756500px;}
.y8_c00366{bottom:547.689000px;}
.y7_c00366{bottom:565.621500px;}
.y6_c00366{bottom:583.554000px;}
.y5_c00366{bottom:610.633500px;}
.y4_c00366{bottom:637.714500px;}
.y3_c00366{bottom:664.794000px;}
.y2_c00366{bottom:691.873500px;}
.y1_c00366{bottom:734.407500px;}
.h5_c00366{height:35.190766px;}
.h6_c00366{height:36.007158px;}
.h3_c00366{height:40.511979px;}
.h4_c00366{height:52.332837px;}
.h2_c00366{height:58.337477px;}
.h0_c00366{height:1262.835000px;}
.h1_c00366{height:1263.000000px;}
.w0_c00366{width:892.920000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:127.558500px;}
.x2_c00366{left:137.122500px;}
.x3_c00366{left:143.770500px;}
.x4_c00366{left:435.249000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls3_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.078221pt;}
.ls2_c00366{letter-spacing:0.087539pt;}
.ls1_c00366{letter-spacing:0.092873pt;}
.wsc_c00366{word-spacing:-29.967501pt;}
.ws2_c00366{word-spacing:-23.622682pt;}
.wse_c00366{word-spacing:-23.544461pt;}
.ws5_c00366{word-spacing:-16.684034pt;}
.ws7_c00366{word-spacing:-14.239876pt;}
.ws4_c00366{word-spacing:-13.283467pt;}
.wsa_c00366{word-spacing:-12.539593pt;}
.wsb_c00366{word-spacing:-10.733041pt;}
.ws9_c00366{word-spacing:-10.414238pt;}
.ws8_c00366{word-spacing:-10.361104pt;}
.ws1_c00366{word-spacing:-8.878599pt;}
.ws3_c00366{word-spacing:-8.877777pt;}
.ws6_c00366{word-spacing:-4.032128pt;}
.ws12_c00366{word-spacing:0.000000pt;}
.wsf_c00366{word-spacing:0.039110pt;}
.ws15_c00366{word-spacing:0.050460pt;}
.ws13_c00366{word-spacing:0.065111pt;}
.ws14_c00366{word-spacing:0.074430pt;}
.wsd_c00366{word-spacing:0.156442pt;}
.ws16_c00366{word-spacing:0.180412pt;}
.ws10_c00366{word-spacing:0.189730pt;}
.ws11_c00366{word-spacing:0.195063pt;}
.ws0_c00366{word-spacing:38.256533pt;}
._0_c00366{margin-left:-4.208219pt;}
._1_c00366{margin-left:-2.830983pt;}
._3_c00366{margin-left:-0.956410pt;}
._7_c00366{width:0.893988pt;}
._6_c00366{width:14.197386pt;}
._2_c00366{width:17.720725pt;}
._4_c00366{width:20.976617pt;}
._5_c00366{width:35.652825pt;}
._9_c00366{width:47.362694pt;}
._8_c00366{width:70.985376pt;}
._a_c00366{width:118.624363pt;}
.fs2_c00366{font-size:39.110400pt;}
.fs1_c00366{font-size:53.133867pt;}
.fs0_c00366{font-size:76.513067pt;}
.y0_c00366{bottom:0.000000pt;}
.y20_c00366{bottom:39.333333pt;}
.y1f_c00366{bottom:77.317333pt;}
.y1e_c00366{bottom:91.929333pt;}
.y1d_c00366{bottom:106.541333pt;}
.y1c_c00366{bottom:121.153333pt;}
.y1b_c00366{bottom:135.765333pt;}
.y1a_c00366{bottom:150.377333pt;}
.y19_c00366{bottom:164.989333pt;}
.y18_c00366{bottom:179.601333pt;}
.y17_c00366{bottom:194.213333pt;}
.y16_c00366{bottom:208.824000pt;}
.y15_c00366{bottom:223.436000pt;}
.y14_c00366{bottom:238.048000pt;}
.y13_c00366{bottom:252.660000pt;}
.y12_c00366{bottom:267.272000pt;}
.y11_c00366{bottom:281.884000pt;}
.y10_c00366{bottom:311.108000pt;}
.yf_c00366{bottom:325.720000pt;}
.ye_c00366{bottom:369.554667pt;}
.yd_c00366{bottom:384.166667pt;}
.yc_c00366{bottom:398.446667pt;}
.yb_c00366{bottom:439.013333pt;}
.ya_c00366{bottom:454.953333pt;}
.y9_c00366{bottom:470.894667pt;}
.y8_c00366{bottom:486.834667pt;}
.y7_c00366{bottom:502.774667pt;}
.y6_c00366{bottom:518.714667pt;}
.y5_c00366{bottom:542.785333pt;}
.y4_c00366{bottom:566.857333pt;}
.y3_c00366{bottom:590.928000pt;}
.y2_c00366{bottom:614.998667pt;}
.y1_c00366{bottom:652.806667pt;}
.h5_c00366{height:31.280681pt;}
.h6_c00366{height:32.006363pt;}
.h3_c00366{height:36.010648pt;}
.h4_c00366{height:46.518078pt;}
.h2_c00366{height:51.855535pt;}
.h0_c00366{height:1122.520000pt;}
.h1_c00366{height:1122.666667pt;}
.w0_c00366{width:793.706667pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:113.385333pt;}
.x2_c00366{left:121.886667pt;}
.x3_c00366{left:127.796000pt;}
.x4_c00366{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_325c736f9158d60539d861bf.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.048828;font-style:normal;font-weight:normal;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_ec27e91aa098e8cb183a30c7.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.014648;font-style:normal;font-weight:normal;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_c9998bb2b503b12d526235ac.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.893555;font-style:normal;font-weight:normal;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_16041cb63e1185c72aa1783a.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.102051;font-style: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;}
.ls4_c00367{letter-spacing:0.000000px;}
.ls0_c00367{letter-spacing:0.087998px;}
.ls2_c00367{letter-spacing:0.098482px;}
.ls3_c00367{letter-spacing:0.104482px;}
.ls1_c00367{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws4_c00367{word-spacing:-26.487518px;}
.wsa_c00367{word-spacing:-18.769538px;}
.wsc_c00367{word-spacing:-17.633802px;}
.ws9_c00367{word-spacing:-14.943900px;}
.wsf_c00367{word-spacing:-14.107042px;}
.ws10_c00367{word-spacing:-12.074671px;}
.wse_c00367{word-spacing:-11.716018px;}
.wsd_c00367{word-spacing:-11.656242px;}
.ws7_c00367{word-spacing:-9.988424px;}
.ws8_c00367{word-spacing:-9.987499px;}
.wsb_c00367{word-spacing:-7.680144px;}
.ws3_c00367{word-spacing:0.000000px;}
.ws0_c00367{word-spacing:0.043999px;}
.ws5_c00367{word-spacing:0.213446px;}
.ws1_c00367{word-spacing:0.219446px;}
.ws6_c00367{word-spacing:43.038600px;}
._2_c00367{margin-left:-4.734246px;}
._3_c00367{margin-left:-3.184856px;}
._5_c00367{margin-left:-1.075961px;}
._1_c00367{width:1.041538px;}
._4_c00367{width:19.935816px;}
._6_c00367{width:23.598694px;}
._7_c00367{width:40.109428px;}
._0_c00367{width:80.122543px;}
.fc5_c00367{color:rgb(79,153,5);}
.fc4_c00367{color:rgb(143,89,3);}
.fc3_c00367{color:rgb(0,0,0);}
.fc6_c00367{color:rgb(6,69,173);}
.fc2_c00367{color:rgb(207,92,0);}
.fc1_c00367{color:rgb(0,0,207);}
.fc0_c00367{color:rgb(33,74,135);}
.fs0_c00367{font-size:43.999200px;}
.fs2_c00367{font-size:59.775600px;}
.fs1_c00367{font-size:86.077200px;}
.y0_c00367{bottom:0.000000px;}
.y20_c00367{bottom:44.250000px;}
.y1f_c00367{bottom:82.051500px;}
.y1e_c00367{bottom:99.984000px;}
.y1d_c00367{bottom:117.916500px;}
.y1c_c00367{bottom:135.849000px;}
.y1b_c00367{bottom:162.501000px;}
.y1a_c00367{bottom:189.151500px;}
.y19_c00367{bottom:215.802000px;}
.y18_c00367{bottom:242.454000px;}
.y17_c00367{bottom:284.478000px;}
.y16_c00367{bottom:748.903500px;}
.y15_c00367{bottom:765.342000px;}
.y14_c00367{bottom:781.780500px;}
.y13_c00367{bottom:798.219000px;}
.y12_c00367{bottom:814.657500px;}
.y11_c00367{bottom:831.096000px;}
.y10_c00367{bottom:847.534500px;}
.yf_c00367{bottom:863.973000px;}
.ye_c00367{bottom:880.411500px;}
.yd_c00367{bottom:896.848500px;}
.yc_c00367{bottom:913.287000px;}
.yb_c00367{bottom:946.164000px;}
.ya_c00367{bottom:962.602500px;}
.y9_c00367{bottom:979.041000px;}
.y8_c00367{bottom:1011.918000px;}
.y7_c00367{bottom:1028.356500px;}
.y6_c00367{bottom:1044.795000px;}
.y5_c00367{bottom:1061.232000px;}
.y4_c00367{bottom:1077.670500px;}
.y3_c00367{bottom:1094.109000px;}
.y2_c00367{bottom:1110.547500px;}
.y1_c00367{bottom:1159.863000px;}
.h3_c00367{height:35.190766px;}
.h2_c00367{height:36.007158px;}
.h5_c00367{height:40.511979px;}
.h6_c00367{height:52.332837px;}
.h4_c00367{height:58.337477px;}
.h0_c00367{height:1262.835000px;}
.h1_c00367{height:1263.000000px;}
.w0_c00367{width:892.920000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x4_c00367{left:127.558500px;}
.x2_c00367{left:137.122500px;}
.x1_c00367{left:143.770500px;}
.x3_c00367{left:177.007500px;}
.x5_c00367{left:435.249000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls4_c00367{letter-spacing:0.000000pt;}
.ls0_c00367{letter-spacing:0.078221pt;}
.ls2_c00367{letter-spacing:0.087539pt;}
.ls3_c00367{letter-spacing:0.092873pt;}
.ls1_c00367{letter-spacing:23.724873pt;}
.ws2_c00367{word-spacing:-23.622682pt;}
.ws4_c00367{word-spacing:-23.544461pt;}
.wsa_c00367{word-spacing:-16.684034pt;}
.wsc_c00367{word-spacing:-15.674491pt;}
.ws9_c00367{word-spacing:-13.283467pt;}
.wsf_c00367{word-spacing:-12.539593pt;}
.ws10_c00367{word-spacing:-10.733041pt;}
.wse_c00367{word-spacing:-10.414238pt;}
.wsd_c00367{word-spacing:-10.361104pt;}
.ws7_c00367{word-spacing:-8.878599pt;}
.ws8_c00367{word-spacing:-8.877777pt;}
.wsb_c00367{word-spacing:-6.826795pt;}
.ws3_c00367{word-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.039110pt;}
.ws5_c00367{word-spacing:0.189730pt;}
.ws1_c00367{word-spacing:0.195063pt;}
.ws6_c00367{word-spacing:38.256533pt;}
._2_c00367{margin-left:-4.208219pt;}
._3_c00367{margin-left:-2.830983pt;}
._5_c00367{margin-left:-0.956410pt;}
._1_c00367{width:0.925811pt;}
._4_c00367{width:17.720725pt;}
._6_c00367{width:20.976617pt;}
._7_c00367{width:35.652825pt;}
._0_c00367{width:71.220038pt;}
.fs0_c00367{font-size:39.110400pt;}
.fs2_c00367{font-size:53.133867pt;}
.fs1_c00367{font-size:76.513067pt;}
.y0_c00367{bottom:0.000000pt;}
.y20_c00367{bottom:39.333333pt;}
.y1f_c00367{bottom:72.934667pt;}
.y1e_c00367{bottom:88.874667pt;}
.y1d_c00367{bottom:104.814667pt;}
.y1c_c00367{bottom:120.754667pt;}
.y1b_c00367{bottom:144.445333pt;}
.y1a_c00367{bottom:168.134667pt;}
.y19_c00367{bottom:191.824000pt;}
.y18_c00367{bottom:215.514667pt;}
.y17_c00367{bottom:252.869333pt;}
.y16_c00367{bottom:665.692000pt;}
.y15_c00367{bottom:680.304000pt;}
.y14_c00367{bottom:694.916000pt;}
.y13_c00367{bottom:709.528000pt;}
.y12_c00367{bottom:724.140000pt;}
.y11_c00367{bottom:738.752000pt;}
.y10_c00367{bottom:753.364000pt;}
.yf_c00367{bottom:767.976000pt;}
.ye_c00367{bottom:782.588000pt;}
.yd_c00367{bottom:797.198667pt;}
.yc_c00367{bottom:811.810667pt;}
.yb_c00367{bottom:841.034667pt;}
.ya_c00367{bottom:855.646667pt;}
.y9_c00367{bottom:870.258667pt;}
.y8_c00367{bottom:899.482667pt;}
.y7_c00367{bottom:914.094667pt;}
.y6_c00367{bottom:928.706667pt;}
.y5_c00367{bottom:943.317333pt;}
.y4_c00367{bottom:957.929333pt;}
.y3_c00367{bottom:972.541333pt;}
.y2_c00367{bottom:987.153333pt;}
.y1_c00367{bottom:1030.989333pt;}
.h3_c00367{height:31.280681pt;}
.h2_c00367{height:32.006363pt;}
.h5_c00367{height:36.010648pt;}
.h6_c00367{height:46.518078pt;}
.h4_c00367{height:51.855535pt;}
.h0_c00367{height:1122.520000pt;}
.h1_c00367{height:1122.666667pt;}
.w0_c00367{width:793.706667pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x4_c00367{left:113.385333pt;}
.x2_c00367{left:121.886667pt;}
.x1_c00367{left:127.796000pt;}
.x3_c00367{left:157.340000pt;}
.x5_c00367{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc1ea21cab0f8c552adb6a62.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.102051;font-style:normal;font-weight:normal;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_cb4f96fcb754aa20f3ce00cb.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.048828;font-style:normal;font-weight:normal;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_eff886437a4b615e37b166ae.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls4_c00368{letter-spacing:0.000000px;}
.ls1_c00368{letter-spacing:0.087998px;}
.ls2_c00368{letter-spacing:0.098482px;}
.ls0_c00368{letter-spacing:0.104482px;}
.ls3_c00368{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00368{word-spacing:-26.575517px;}
.ws3_c00368{word-spacing:-26.487518px;}
.ws0_c00368{word-spacing:-18.769538px;}
.ws8_c00368{word-spacing:0.000000px;}
.ws5_c00368{word-spacing:0.043999px;}
.wsb_c00368{word-spacing:0.056767px;}
.ws9_c00368{word-spacing:0.073250px;}
.wsa_c00368{word-spacing:0.083734px;}
.ws2_c00368{word-spacing:0.175997px;}
.wsc_c00368{word-spacing:0.202963px;}
.ws6_c00368{word-spacing:0.213446px;}
.ws7_c00368{word-spacing:0.219446px;}
._0_c00368{margin-left:-3.825638px;}
._1_c00368{width:1.005737px;}
._3_c00368{width:53.283031px;}
._2_c00368{width:79.858548px;}
._4_c00368{width:133.452408px;}
.fc5_c00368{color:rgb(0,0,207);}
.fc4_c00368{color:rgb(79,153,5);}
.fc3_c00368{color:rgb(207,92,0);}
.fc2_c00368{color:rgb(33,74,135);}
.fc1_c00368{color:rgb(143,89,3);}
.fc0_c00368{color:rgb(0,0,0);}
.fs1_c00368{font-size:43.999200px;}
.fs0_c00368{font-size:59.775600px;}
.y0_c00368{bottom:0.000000px;}
.y2d_c00368{bottom:44.250000px;}
.y2c_c00368{bottom:96.919500px;}
.y2b_c00368{bottom:113.358000px;}
.y2a_c00368{bottom:129.796500px;}
.y29_c00368{bottom:146.235000px;}
.y28_c00368{bottom:162.673500px;}
.y27_c00368{bottom:179.112000px;}
.y26_c00368{bottom:195.550500px;}
.y25_c00368{bottom:211.989000px;}
.y24_c00368{bottom:228.427500px;}
.y23_c00368{bottom:244.866000px;}
.y22_c00368{bottom:261.304500px;}
.y21_c00368{bottom:294.180000px;}
.y20_c00368{bottom:310.618500px;}
.y1f_c00368{bottom:327.057000px;}
.y1e_c00368{bottom:359.934000px;}
.y1d_c00368{bottom:376.372500px;}
.y1c_c00368{bottom:392.811000px;}
.y1b_c00368{bottom:409.249500px;}
.y1a_c00368{bottom:425.688000px;}
.y19_c00368{bottom:442.125000px;}
.y18_c00368{bottom:458.563500px;}
.y17_c00368{bottom:507.879000px;}
.y16_c00368{bottom:524.317500px;}
.y15_c00368{bottom:540.756000px;}
.y14_c00368{bottom:557.194500px;}
.y13_c00368{bottom:573.633000px;}
.y12_c00368{bottom:590.071500px;}
.y11_c00368{bottom:606.508500px;}
.y10_c00368{bottom:622.947000px;}
.yf_c00368{bottom:639.385500px;}
.ye_c00368{bottom:655.824000px;}
.yd_c00368{bottom:672.262500px;}
.yc_c00368{bottom:688.701000px;}
.yb_c00368{bottom:705.139500px;}
.ya_c00368{bottom:721.578000px;}
.y9_c00368{bottom:738.016500px;}
.y8_c00368{bottom:754.455000px;}
.y7_c00368{bottom:787.330500px;}
.y6_c00368{bottom:803.769000px;}
.y5_c00368{bottom:853.084500px;}
.y4_c00368{bottom:869.523000px;}
.y3_c00368{bottom:885.588000px;}
.y2_c00368{bottom:1141.930500px;}
.y1_c00368{bottom:1159.863000px;}
.h3_c00368{height:35.190766px;}
.h4_c00368{height:36.007158px;}
.h2_c00368{height:52.332837px;}
.h0_c00368{height:1262.835000px;}
.h1_c00368{height:1263.000000px;}
.w0_c00368{width:892.920000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:127.558500px;}
.x2_c00368{left:137.122500px;}
.x3_c00368{left:143.770500px;}
.x4_c00368{left:177.007500px;}
.x5_c00368{left:435.249000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls4_c00368{letter-spacing:0.000000pt;}
.ls1_c00368{letter-spacing:0.078221pt;}
.ls2_c00368{letter-spacing:0.087539pt;}
.ls0_c00368{letter-spacing:0.092873pt;}
.ls3_c00368{letter-spacing:23.724873pt;}
.ws1_c00368{word-spacing:-29.967501pt;}
.ws4_c00368{word-spacing:-23.622682pt;}
.ws3_c00368{word-spacing:-23.544461pt;}
.ws0_c00368{word-spacing:-16.684034pt;}
.ws8_c00368{word-spacing:0.000000pt;}
.ws5_c00368{word-spacing:0.039110pt;}
.wsb_c00368{word-spacing:0.050460pt;}
.ws9_c00368{word-spacing:0.065111pt;}
.wsa_c00368{word-spacing:0.074430pt;}
.ws2_c00368{word-spacing:0.156442pt;}
.wsc_c00368{word-spacing:0.180412pt;}
.ws6_c00368{word-spacing:0.189730pt;}
.ws7_c00368{word-spacing:0.195063pt;}
._0_c00368{margin-left:-3.400567pt;}
._1_c00368{width:0.893988pt;}
._3_c00368{width:47.362694pt;}
._2_c00368{width:70.985376pt;}
._4_c00368{width:118.624363pt;}
.fs1_c00368{font-size:39.110400pt;}
.fs0_c00368{font-size:53.133867pt;}
.y0_c00368{bottom:0.000000pt;}
.y2d_c00368{bottom:39.333333pt;}
.y2c_c00368{bottom:86.150667pt;}
.y2b_c00368{bottom:100.762667pt;}
.y2a_c00368{bottom:115.374667pt;}
.y29_c00368{bottom:129.986667pt;}
.y28_c00368{bottom:144.598667pt;}
.y27_c00368{bottom:159.210667pt;}
.y26_c00368{bottom:173.822667pt;}
.y25_c00368{bottom:188.434667pt;}
.y24_c00368{bottom:203.046667pt;}
.y23_c00368{bottom:217.658667pt;}
.y22_c00368{bottom:232.270667pt;}
.y21_c00368{bottom:261.493333pt;}
.y20_c00368{bottom:276.105333pt;}
.y1f_c00368{bottom:290.717333pt;}
.y1e_c00368{bottom:319.941333pt;}
.y1d_c00368{bottom:334.553333pt;}
.y1c_c00368{bottom:349.165333pt;}
.y1b_c00368{bottom:363.777333pt;}
.y1a_c00368{bottom:378.389333pt;}
.y19_c00368{bottom:393.000000pt;}
.y18_c00368{bottom:407.612000pt;}
.y17_c00368{bottom:451.448000pt;}
.y16_c00368{bottom:466.060000pt;}
.y15_c00368{bottom:480.672000pt;}
.y14_c00368{bottom:495.284000pt;}
.y13_c00368{bottom:509.896000pt;}
.y12_c00368{bottom:524.508000pt;}
.y11_c00368{bottom:539.118667pt;}
.y10_c00368{bottom:553.730667pt;}
.yf_c00368{bottom:568.342667pt;}
.ye_c00368{bottom:582.954667pt;}
.yd_c00368{bottom:597.566667pt;}
.yc_c00368{bottom:612.178667pt;}
.yb_c00368{bottom:626.790667pt;}
.ya_c00368{bottom:641.402667pt;}
.y9_c00368{bottom:656.014667pt;}
.y8_c00368{bottom:670.626667pt;}
.y7_c00368{bottom:699.849333pt;}
.y6_c00368{bottom:714.461333pt;}
.y5_c00368{bottom:758.297333pt;}
.y4_c00368{bottom:772.909333pt;}
.y3_c00368{bottom:787.189333pt;}
.y2_c00368{bottom:1015.049333pt;}
.y1_c00368{bottom:1030.989333pt;}
.h3_c00368{height:31.280681pt;}
.h4_c00368{height:32.006363pt;}
.h2_c00368{height:46.518078pt;}
.h0_c00368{height:1122.520000pt;}
.h1_c00368{height:1122.666667pt;}
.w0_c00368{width:793.706667pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:113.385333pt;}
.x2_c00368{left:121.886667pt;}
.x3_c00368{left:127.796000pt;}
.x4_c00368{left:157.340000pt;}
.x5_c00368{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d6bf86dd33b6eba86c0d81d.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.893555;font-style:normal;font-weight:normal;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_ca251186e6b90d41b02b23f5.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_0c1378178c54108f2b1b481f.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_1faa5ae2706af7a7f74a1534.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00369;src:url('chunks/assets/font_1f650f6ae06d64e10bc9a8d9.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.048828;font-style: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;}
.ls3_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.087998px;}
.ls2_c00369{letter-spacing:0.098482px;}
.ls1_c00369{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00369{word-spacing:-26.575517px;}
.ws13_c00369{word-spacing:-26.487518px;}
.ws11_c00369{word-spacing:-21.578992px;}
.wse_c00369{word-spacing:-21.280114px;}
.wsa_c00369{word-spacing:-20.443255px;}
.ws9_c00369{word-spacing:-20.383480px;}
.ws10_c00369{word-spacing:-19.606397px;}
.ws7_c00369{word-spacing:-18.769538px;}
.ws5_c00369{word-spacing:-18.530436px;}
.wsd_c00369{word-spacing:-17.574026px;}
.wsc_c00369{word-spacing:-17.095822px;}
.wsb_c00369{word-spacing:-17.036046px;}
.ws6_c00369{word-spacing:-14.943900px;}
.ws4_c00369{word-spacing:-14.704798px;}
.wsf_c00369{word-spacing:-14.017015px;}
.ws8_c00369{word-spacing:-10.812144px;}
.ws1_c00369{word-spacing:-9.988424px;}
.ws3_c00369{word-spacing:-9.987499px;}
.ws17_c00369{word-spacing:0.000000px;}
.ws14_c00369{word-spacing:0.043999px;}
.ws12_c00369{word-spacing:0.175997px;}
.ws15_c00369{word-spacing:0.213446px;}
.ws16_c00369{word-spacing:0.219446px;}
.ws0_c00369{word-spacing:43.038600px;}
._0_c00369{margin-left:-4.734246px;}
._4_c00369{margin-left:-3.287658px;}
._2_c00369{margin-left:-1.075961px;}
._5_c00369{width:1.005737px;}
._3_c00369{width:19.128192px;}
._1_c00369{width:20.440714px;}
.fc6_c00369{color:rgb(0,0,207);}
.fc5_c00369{color:rgb(79,153,5);}
.fc3_c00369{color:rgb(33,74,135);}
.fc2_c00369{color:rgb(143,89,3);}
.fc4_c00369{color:rgb(207,92,0);}
.fc1_c00369{color:rgb(6,69,173);}
.fc0_c00369{color:rgb(0,0,0);}
.fs2_c00369{font-size:43.999200px;}
.fs1_c00369{font-size:59.775600px;}
.fs0_c00369{font-size:86.077200px;}
.y0_c00369{bottom:0.000000px;}
.y1e_c00369{bottom:44.250000px;}
.y1d_c00369{bottom:82.051500px;}
.y1c_c00369{bottom:98.490000px;}
.y1b_c00369{bottom:114.927000px;}
.y1a_c00369{bottom:147.804000px;}
.y19_c00369{bottom:164.242500px;}
.y18_c00369{bottom:197.119500px;}
.y17_c00369{bottom:213.558000px;}
.y16_c00369{bottom:229.996500px;}
.y15_c00369{bottom:279.310500px;}
.y14_c00369{bottom:295.749000px;}
.y13_c00369{bottom:312.187500px;}
.y12_c00369{bottom:328.626000px;}
.y11_c00369{bottom:345.064500px;}
.y10_c00369{bottom:377.941500px;}
.yf_c00369{bottom:394.380000px;}
.ye_c00369{bottom:410.445000px;}
.yd_c00369{bottom:458.862000px;}
.yc_c00369{bottom:476.794500px;}
.yb_c00369{bottom:494.727000px;}
.ya_c00369{bottom:512.659500px;}
.y9_c00369{bottom:530.593500px;}
.y8_c00369{bottom:548.526000px;}
.y7_c00369{bottom:566.458500px;}
.y6_c00369{bottom:593.442000px;}
.y5_c00369{bottom:620.425500px;}
.y4_c00369{bottom:638.358000px;}
.y3_c00369{bottom:665.341500px;}
.y2_c00369{bottom:692.325000px;}
.y1_c00369{bottom:734.719500px;}
.h5_c00369{height:35.190766px;}
.h6_c00369{height:36.007158px;}
.h3_c00369{height:40.511979px;}
.h4_c00369{height:52.332837px;}
.h2_c00369{height:58.337477px;}
.h0_c00369{height:1262.835000px;}
.h1_c00369{height:1263.000000px;}
.w0_c00369{width:892.920000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:127.558500px;}
.x2_c00369{left:137.122500px;}
.x3_c00369{left:435.249000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls3_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.078221pt;}
.ls2_c00369{letter-spacing:0.087539pt;}
.ls1_c00369{letter-spacing:0.092873pt;}
.ws2_c00369{word-spacing:-23.622682pt;}
.ws13_c00369{word-spacing:-23.544461pt;}
.ws11_c00369{word-spacing:-19.181326pt;}
.wse_c00369{word-spacing:-18.915657pt;}
.wsa_c00369{word-spacing:-18.171782pt;}
.ws9_c00369{word-spacing:-18.118649pt;}
.ws10_c00369{word-spacing:-17.427908pt;}
.ws7_c00369{word-spacing:-16.684034pt;}
.ws5_c00369{word-spacing:-16.471499pt;}
.wsd_c00369{word-spacing:-15.621357pt;}
.wsc_c00369{word-spacing:-15.196286pt;}
.wsb_c00369{word-spacing:-15.143152pt;}
.ws6_c00369{word-spacing:-13.283467pt;}
.ws4_c00369{word-spacing:-13.070931pt;}
.wsf_c00369{word-spacing:-12.459569pt;}
.ws8_c00369{word-spacing:-9.610795pt;}
.ws1_c00369{word-spacing:-8.878599pt;}
.ws3_c00369{word-spacing:-8.877777pt;}
.ws17_c00369{word-spacing:0.000000pt;}
.ws14_c00369{word-spacing:0.039110pt;}
.ws12_c00369{word-spacing:0.156442pt;}
.ws15_c00369{word-spacing:0.189730pt;}
.ws16_c00369{word-spacing:0.195063pt;}
.ws0_c00369{word-spacing:38.256533pt;}
._0_c00369{margin-left:-4.208219pt;}
._4_c00369{margin-left:-2.922363pt;}
._2_c00369{margin-left:-0.956410pt;}
._5_c00369{width:0.893988pt;}
._3_c00369{width:17.002837pt;}
._1_c00369{width:18.169523pt;}
.fs2_c00369{font-size:39.110400pt;}
.fs1_c00369{font-size:53.133867pt;}
.fs0_c00369{font-size:76.513067pt;}
.y0_c00369{bottom:0.000000pt;}
.y1e_c00369{bottom:39.333333pt;}
.y1d_c00369{bottom:72.934667pt;}
.y1c_c00369{bottom:87.546667pt;}
.y1b_c00369{bottom:102.157333pt;}
.y1a_c00369{bottom:131.381333pt;}
.y19_c00369{bottom:145.993333pt;}
.y18_c00369{bottom:175.217333pt;}
.y17_c00369{bottom:189.829333pt;}
.y16_c00369{bottom:204.441333pt;}
.y15_c00369{bottom:248.276000pt;}
.y14_c00369{bottom:262.888000pt;}
.y13_c00369{bottom:277.500000pt;}
.y12_c00369{bottom:292.112000pt;}
.y11_c00369{bottom:306.724000pt;}
.y10_c00369{bottom:335.948000pt;}
.yf_c00369{bottom:350.560000pt;}
.ye_c00369{bottom:364.840000pt;}
.yd_c00369{bottom:407.877333pt;}
.yc_c00369{bottom:423.817333pt;}
.yb_c00369{bottom:439.757333pt;}
.ya_c00369{bottom:455.697333pt;}
.y9_c00369{bottom:471.638667pt;}
.y8_c00369{bottom:487.578667pt;}
.y7_c00369{bottom:503.518667pt;}
.y6_c00369{bottom:527.504000pt;}
.y5_c00369{bottom:551.489333pt;}
.y4_c00369{bottom:567.429333pt;}
.y3_c00369{bottom:591.414667pt;}
.y2_c00369{bottom:615.400000pt;}
.y1_c00369{bottom:653.084000pt;}
.h5_c00369{height:31.280681pt;}
.h6_c00369{height:32.006363pt;}
.h3_c00369{height:36.010648pt;}
.h4_c00369{height:46.518078pt;}
.h2_c00369{height:51.855535pt;}
.h0_c00369{height:1122.520000pt;}
.h1_c00369{height:1122.666667pt;}
.w0_c00369{width:793.706667pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:113.385333pt;}
.x2_c00369{left:121.886667pt;}
.x3_c00369{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d39046684e75e578ca4b0d96.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.083496;font-style:normal;font-weight:normal;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_31aef807469d14ff6ecff391.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.048828;font-style:normal;font-weight:normal;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_fecd11a77edc9476dbbc77e7.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.014648;font-style:normal;font-weight:normal;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_6b9ad1cd7eb93b19eae2b86c.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls4_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.087998px;}
.ls2_c00370{letter-spacing:0.098482px;}
.ls1_c00370{letter-spacing:0.104482px;}
.ls3_c00370{letter-spacing:26.690482px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:-26.575517px;}
.ws1_c00370{word-spacing:-26.487518px;}
.ws2_c00370{word-spacing:0.000000px;}
.ws8_c00370{word-spacing:0.026966px;}
.ws9_c00370{word-spacing:0.043999px;}
.ws6_c00370{word-spacing:0.046284px;}
.ws3_c00370{word-spacing:0.056767px;}
.ws5_c00370{word-spacing:0.073250px;}
.ws7_c00370{word-spacing:0.083734px;}
.ws4_c00370{word-spacing:0.202963px;}
.wsb_c00370{word-spacing:0.213446px;}
.wsa_c00370{word-spacing:0.219446px;}
._5_c00370{width:1.041538px;}
._3_c00370{width:53.283031px;}
._1_c00370{width:79.858548px;}
._0_c00370{width:106.786058px;}
._2_c00370{width:133.452408px;}
._4_c00370{width:186.179933px;}
.fc5_c00370{color:rgb(79,153,5);}
.fc4_c00370{color:rgb(0,0,207);}
.fc3_c00370{color:rgb(207,92,0);}
.fc2_c00370{color:rgb(33,74,135);}
.fc1_c00370{color:rgb(143,89,3);}
.fc0_c00370{color:rgb(0,0,0);}
.fs0_c00370{font-size:43.999200px;}
.fs1_c00370{font-size:59.775600px;}
.y0_c00370{bottom:0.000000px;}
.y2b_c00370{bottom:44.250000px;}
.y2a_c00370{bottom:354.384000px;}
.y29_c00370{bottom:370.822500px;}
.y28_c00370{bottom:387.259500px;}
.y27_c00370{bottom:403.698000px;}
.y26_c00370{bottom:420.136500px;}
.y25_c00370{bottom:436.575000px;}
.y24_c00370{bottom:453.013500px;}
.y23_c00370{bottom:469.452000px;}
.y22_c00370{bottom:485.890500px;}
.y21_c00370{bottom:502.329000px;}
.y20_c00370{bottom:518.767500px;}
.y1f_c00370{bottom:551.643000px;}
.y1e_c00370{bottom:568.081500px;}
.y1d_c00370{bottom:584.520000px;}
.y1c_c00370{bottom:617.397000px;}
.y1b_c00370{bottom:633.835500px;}
.y1a_c00370{bottom:650.274000px;}
.y19_c00370{bottom:666.712500px;}
.y18_c00370{bottom:683.151000px;}
.y17_c00370{bottom:699.589500px;}
.y16_c00370{bottom:716.028000px;}
.y15_c00370{bottom:732.465000px;}
.y14_c00370{bottom:748.903500px;}
.y13_c00370{bottom:765.342000px;}
.y12_c00370{bottom:781.780500px;}
.y11_c00370{bottom:798.219000px;}
.y10_c00370{bottom:814.657500px;}
.yf_c00370{bottom:831.096000px;}
.ye_c00370{bottom:847.534500px;}
.yd_c00370{bottom:863.973000px;}
.yc_c00370{bottom:880.411500px;}
.yb_c00370{bottom:896.848500px;}
.ya_c00370{bottom:913.287000px;}
.y9_c00370{bottom:962.602500px;}
.y8_c00370{bottom:979.041000px;}
.y7_c00370{bottom:995.479500px;}
.y6_c00370{bottom:1011.918000px;}
.y5_c00370{bottom:1028.356500px;}
.y4_c00370{bottom:1061.232000px;}
.y3_c00370{bottom:1077.670500px;}
.y2_c00370{bottom:1126.986000px;}
.y1_c00370{bottom:1143.424500px;}
.h3_c00370{height:35.190766px;}
.h2_c00370{height:36.007158px;}
.h4_c00370{height:52.332837px;}
.h0_c00370{height:1262.835000px;}
.h1_c00370{height:1263.000000px;}
.w0_c00370{width:892.920000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:137.122500px;}
.x3_c00370{left:143.770500px;}
.x4_c00370{left:177.007500px;}
.x2_c00370{left:236.832000px;}
.x5_c00370{left:435.249000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls4_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.078221pt;}
.ls2_c00370{letter-spacing:0.087539pt;}
.ls1_c00370{letter-spacing:0.092873pt;}
.ls3_c00370{letter-spacing:23.724873pt;}
.ws0_c00370{word-spacing:-23.622682pt;}
.ws1_c00370{word-spacing:-23.544461pt;}
.ws2_c00370{word-spacing:0.000000pt;}
.ws8_c00370{word-spacing:0.023970pt;}
.ws9_c00370{word-spacing:0.039110pt;}
.ws6_c00370{word-spacing:0.041141pt;}
.ws3_c00370{word-spacing:0.050460pt;}
.ws5_c00370{word-spacing:0.065111pt;}
.ws7_c00370{word-spacing:0.074430pt;}
.ws4_c00370{word-spacing:0.180412pt;}
.wsb_c00370{word-spacing:0.189730pt;}
.wsa_c00370{word-spacing:0.195063pt;}
._5_c00370{width:0.925811pt;}
._3_c00370{width:47.362694pt;}
._1_c00370{width:70.985376pt;}
._0_c00370{width:94.920941pt;}
._2_c00370{width:118.624363pt;}
._4_c00370{width:165.493274pt;}
.fs0_c00370{font-size:39.110400pt;}
.fs1_c00370{font-size:53.133867pt;}
.y0_c00370{bottom:0.000000pt;}
.y2b_c00370{bottom:39.333333pt;}
.y2a_c00370{bottom:315.008000pt;}
.y29_c00370{bottom:329.620000pt;}
.y28_c00370{bottom:344.230667pt;}
.y27_c00370{bottom:358.842667pt;}
.y26_c00370{bottom:373.454667pt;}
.y25_c00370{bottom:388.066667pt;}
.y24_c00370{bottom:402.678667pt;}
.y23_c00370{bottom:417.290667pt;}
.y22_c00370{bottom:431.902667pt;}
.y21_c00370{bottom:446.514667pt;}
.y20_c00370{bottom:461.126667pt;}
.y1f_c00370{bottom:490.349333pt;}
.y1e_c00370{bottom:504.961333pt;}
.y1d_c00370{bottom:519.573333pt;}
.y1c_c00370{bottom:548.797333pt;}
.y1b_c00370{bottom:563.409333pt;}
.y1a_c00370{bottom:578.021333pt;}
.y19_c00370{bottom:592.633333pt;}
.y18_c00370{bottom:607.245333pt;}
.y17_c00370{bottom:621.857333pt;}
.y16_c00370{bottom:636.469333pt;}
.y15_c00370{bottom:651.080000pt;}
.y14_c00370{bottom:665.692000pt;}
.y13_c00370{bottom:680.304000pt;}
.y12_c00370{bottom:694.916000pt;}
.y11_c00370{bottom:709.528000pt;}
.y10_c00370{bottom:724.140000pt;}
.yf_c00370{bottom:738.752000pt;}
.ye_c00370{bottom:753.364000pt;}
.yd_c00370{bottom:767.976000pt;}
.yc_c00370{bottom:782.588000pt;}
.yb_c00370{bottom:797.198667pt;}
.ya_c00370{bottom:811.810667pt;}
.y9_c00370{bottom:855.646667pt;}
.y8_c00370{bottom:870.258667pt;}
.y7_c00370{bottom:884.870667pt;}
.y6_c00370{bottom:899.482667pt;}
.y5_c00370{bottom:914.094667pt;}
.y4_c00370{bottom:943.317333pt;}
.y3_c00370{bottom:957.929333pt;}
.y2_c00370{bottom:1001.765333pt;}
.y1_c00370{bottom:1016.377333pt;}
.h3_c00370{height:31.280681pt;}
.h2_c00370{height:32.006363pt;}
.h4_c00370{height:46.518078pt;}
.h0_c00370{height:1122.520000pt;}
.h1_c00370{height:1122.666667pt;}
.w0_c00370{width:793.706667pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:121.886667pt;}
.x3_c00370{left:127.796000pt;}
.x4_c00370{left:157.340000pt;}
.x2_c00370{left:210.517333pt;}
.x5_c00370{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d53a39df4586acb0d7606df2.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.893555;font-style:normal;font-weight:normal;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_3f293985d36b471a8fa2d58e.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_b7cdfc26ecfcda626626240c.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.048828;font-style: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;}
.ls3_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.087998px;}
.ls2_c00371{letter-spacing:0.098482px;}
.ls1_c00371{letter-spacing:0.104482px;}
.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;}
}
.wse_c00371{word-spacing:-33.713438px;}
.ws2_c00371{word-spacing:-26.575517px;}
.ws10_c00371{word-spacing:-26.487518px;}
.ws5_c00371{word-spacing:-22.356074px;}
.ws7_c00371{word-spacing:-18.769538px;}
.ws4_c00371{word-spacing:-18.530436px;}
.ws6_c00371{word-spacing:-14.943900px;}
.ws9_c00371{word-spacing:-14.465695px;}
.wsc_c00371{word-spacing:-14.107042px;}
.wsd_c00371{word-spacing:-12.074671px;}
.wsb_c00371{word-spacing:-11.716018px;}
.wsa_c00371{word-spacing:-11.656242px;}
.ws1_c00371{word-spacing:-9.988424px;}
.ws3_c00371{word-spacing:-9.987499px;}
.ws8_c00371{word-spacing:-1.386144px;}
.ws14_c00371{word-spacing:0.000000px;}
.ws11_c00371{word-spacing:0.043999px;}
.ws17_c00371{word-spacing:0.056767px;}
.ws15_c00371{word-spacing:0.073250px;}
.ws16_c00371{word-spacing:0.083734px;}
.wsf_c00371{word-spacing:0.175997px;}
.ws18_c00371{word-spacing:0.202963px;}
.ws12_c00371{word-spacing:0.213446px;}
.ws13_c00371{word-spacing:0.219446px;}
.ws0_c00371{word-spacing:43.038600px;}
._0_c00371{margin-left:-4.734246px;}
._5_c00371{margin-left:-3.376852px;}
._4_c00371{margin-left:-1.075961px;}
._9_c00371{width:1.005737px;}
._2_c00371{width:12.851754px;}
._8_c00371{width:15.972059px;}
._1_c00371{width:18.182352px;}
._3_c00371{width:19.930500px;}
._6_c00371{width:23.790689px;}
._7_c00371{width:40.109428px;}
._b_c00371{width:53.283031px;}
._a_c00371{width:79.858548px;}
._c_c00371{width:133.452408px;}
.fc6_c00371{color:rgb(0,0,207);}
.fc5_c00371{color:rgb(79,153,5);}
.fc3_c00371{color:rgb(33,74,135);}
.fc2_c00371{color:rgb(143,89,3);}
.fc4_c00371{color:rgb(207,92,0);}
.fc1_c00371{color:rgb(6,69,173);}
.fc0_c00371{color:rgb(0,0,0);}
.fs2_c00371{font-size:43.999200px;}
.fs1_c00371{font-size:59.775600px;}
.fs0_c00371{font-size:86.077200px;}
.y0_c00371{bottom:0.000000px;}
.y20_c00371{bottom:44.250000px;}
.y1f_c00371{bottom:86.982000px;}
.y1e_c00371{bottom:103.420500px;}
.y1d_c00371{bottom:119.859000px;}
.y1c_c00371{bottom:136.297500px;}
.y1b_c00371{bottom:152.736000px;}
.y1a_c00371{bottom:169.174500px;}
.y19_c00371{bottom:185.613000px;}
.y18_c00371{bottom:202.051500px;}
.y17_c00371{bottom:218.490000px;}
.y16_c00371{bottom:234.927000px;}
.y15_c00371{bottom:251.365500px;}
.y14_c00371{bottom:267.804000px;}
.y13_c00371{bottom:284.242500px;}
.y12_c00371{bottom:300.681000px;}
.y11_c00371{bottom:317.119500px;}
.y10_c00371{bottom:349.996500px;}
.yf_c00371{bottom:366.435000px;}
.ye_c00371{bottom:415.749000px;}
.yd_c00371{bottom:432.187500px;}
.yc_c00371{bottom:448.252500px;}
.yb_c00371{bottom:493.890000px;}
.ya_c00371{bottom:511.822500px;}
.y9_c00371{bottom:529.756500px;}
.y8_c00371{bottom:547.689000px;}
.y7_c00371{bottom:565.621500px;}
.y6_c00371{bottom:583.554000px;}
.y5_c00371{bottom:610.633500px;}
.y4_c00371{bottom:637.714500px;}
.y3_c00371{bottom:664.794000px;}
.y2_c00371{bottom:691.873500px;}
.y1_c00371{bottom:734.407500px;}
.h5_c00371{height:35.190766px;}
.h6_c00371{height:36.007158px;}
.h3_c00371{height:40.511979px;}
.h4_c00371{height:52.332837px;}
.h2_c00371{height:58.337477px;}
.h0_c00371{height:1262.835000px;}
.h1_c00371{height:1263.000000px;}
.w0_c00371{width:892.920000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:127.558500px;}
.x2_c00371{left:137.122500px;}
.x3_c00371{left:143.770500px;}
.x4_c00371{left:435.249000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls3_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.078221pt;}
.ls2_c00371{letter-spacing:0.087539pt;}
.ls1_c00371{letter-spacing:0.092873pt;}
.wse_c00371{word-spacing:-29.967501pt;}
.ws2_c00371{word-spacing:-23.622682pt;}
.ws10_c00371{word-spacing:-23.544461pt;}
.ws5_c00371{word-spacing:-19.872066pt;}
.ws7_c00371{word-spacing:-16.684034pt;}
.ws4_c00371{word-spacing:-16.471499pt;}
.ws6_c00371{word-spacing:-13.283467pt;}
.ws9_c00371{word-spacing:-12.858396pt;}
.wsc_c00371{word-spacing:-12.539593pt;}
.wsd_c00371{word-spacing:-10.733041pt;}
.wsb_c00371{word-spacing:-10.414238pt;}
.wsa_c00371{word-spacing:-10.361104pt;}
.ws1_c00371{word-spacing:-8.878599pt;}
.ws3_c00371{word-spacing:-8.877777pt;}
.ws8_c00371{word-spacing:-1.232128pt;}
.ws14_c00371{word-spacing:0.000000pt;}
.ws11_c00371{word-spacing:0.039110pt;}
.ws17_c00371{word-spacing:0.050460pt;}
.ws15_c00371{word-spacing:0.065111pt;}
.ws16_c00371{word-spacing:0.074430pt;}
.wsf_c00371{word-spacing:0.156442pt;}
.ws18_c00371{word-spacing:0.180412pt;}
.ws12_c00371{word-spacing:0.189730pt;}
.ws13_c00371{word-spacing:0.195063pt;}
.ws0_c00371{word-spacing:38.256533pt;}
._0_c00371{margin-left:-4.208219pt;}
._5_c00371{margin-left:-3.001646pt;}
._4_c00371{margin-left:-0.956410pt;}
._9_c00371{width:0.893988pt;}
._2_c00371{width:11.423781pt;}
._8_c00371{width:14.197386pt;}
._1_c00371{width:16.162091pt;}
._3_c00371{width:17.716000pt;}
._6_c00371{width:21.147279pt;}
._7_c00371{width:35.652825pt;}
._b_c00371{width:47.362694pt;}
._a_c00371{width:70.985376pt;}
._c_c00371{width:118.624363pt;}
.fs2_c00371{font-size:39.110400pt;}
.fs1_c00371{font-size:53.133867pt;}
.fs0_c00371{font-size:76.513067pt;}
.y0_c00371{bottom:0.000000pt;}
.y20_c00371{bottom:39.333333pt;}
.y1f_c00371{bottom:77.317333pt;}
.y1e_c00371{bottom:91.929333pt;}
.y1d_c00371{bottom:106.541333pt;}
.y1c_c00371{bottom:121.153333pt;}
.y1b_c00371{bottom:135.765333pt;}
.y1a_c00371{bottom:150.377333pt;}
.y19_c00371{bottom:164.989333pt;}
.y18_c00371{bottom:179.601333pt;}
.y17_c00371{bottom:194.213333pt;}
.y16_c00371{bottom:208.824000pt;}
.y15_c00371{bottom:223.436000pt;}
.y14_c00371{bottom:238.048000pt;}
.y13_c00371{bottom:252.660000pt;}
.y12_c00371{bottom:267.272000pt;}
.y11_c00371{bottom:281.884000pt;}
.y10_c00371{bottom:311.108000pt;}
.yf_c00371{bottom:325.720000pt;}
.ye_c00371{bottom:369.554667pt;}
.yd_c00371{bottom:384.166667pt;}
.yc_c00371{bottom:398.446667pt;}
.yb_c00371{bottom:439.013333pt;}
.ya_c00371{bottom:454.953333pt;}
.y9_c00371{bottom:470.894667pt;}
.y8_c00371{bottom:486.834667pt;}
.y7_c00371{bottom:502.774667pt;}
.y6_c00371{bottom:518.714667pt;}
.y5_c00371{bottom:542.785333pt;}
.y4_c00371{bottom:566.857333pt;}
.y3_c00371{bottom:590.928000pt;}
.y2_c00371{bottom:614.998667pt;}
.y1_c00371{bottom:652.806667pt;}
.h5_c00371{height:31.280681pt;}
.h6_c00371{height:32.006363pt;}
.h3_c00371{height:36.010648pt;}
.h4_c00371{height:46.518078pt;}
.h2_c00371{height:51.855535pt;}
.h0_c00371{height:1122.520000pt;}
.h1_c00371{height:1122.666667pt;}
.w0_c00371{width:793.706667pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:113.385333pt;}
.x2_c00371{left:121.886667pt;}
.x3_c00371{left:127.796000pt;}
.x4_c00371{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b072ed272b415506dc985426.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.048828;font-style:normal;font-weight:normal;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_03f3f6b6770c5fd330412bf8.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.014648;font-style:normal;font-weight:normal;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_d4151ef98dc7d6e45a25870c.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:0.893555;font-style:normal;font-weight:normal;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_d21b1b9c28f772b28eb0cd7b.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.102051;font-style: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;}
.ls4_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.087998px;}
.ls2_c00372{letter-spacing:0.098482px;}
.ls3_c00372{letter-spacing:0.104482px;}
.ls1_c00372{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00372{word-spacing:-26.575517px;}
.ws4_c00372{word-spacing:-26.487518px;}
.wsc_c00372{word-spacing:-18.769538px;}
.wsa_c00372{word-spacing:-17.095822px;}
.wse_c00372{word-spacing:-16.019861px;}
.wsb_c00372{word-spacing:-14.943900px;}
.ws11_c00372{word-spacing:-14.107042px;}
.ws9_c00372{word-spacing:-13.329959px;}
.ws10_c00372{word-spacing:-11.716018px;}
.wsf_c00372{word-spacing:-11.656242px;}
.ws7_c00372{word-spacing:-9.988424px;}
.ws8_c00372{word-spacing:-9.987499px;}
.wsd_c00372{word-spacing:-4.536144px;}
.ws3_c00372{word-spacing:0.000000px;}
.ws0_c00372{word-spacing:0.043999px;}
.ws5_c00372{word-spacing:0.213446px;}
.ws1_c00372{word-spacing:0.219446px;}
.ws6_c00372{word-spacing:43.038600px;}
._2_c00372{margin-left:-4.734246px;}
._6_c00372{margin-left:-3.376852px;}
._5_c00372{margin-left:-1.075961px;}
._1_c00372{width:1.063690px;}
._4_c00372{width:19.930500px;}
._3_c00372{width:23.319875px;}
._0_c00372{width:106.786058px;}
.fc5_c00372{color:rgb(79,153,5);}
.fc4_c00372{color:rgb(143,89,3);}
.fc3_c00372{color:rgb(0,0,0);}
.fc6_c00372{color:rgb(6,69,173);}
.fc2_c00372{color:rgb(207,92,0);}
.fc1_c00372{color:rgb(0,0,207);}
.fc0_c00372{color:rgb(33,74,135);}
.fs0_c00372{font-size:43.999200px;}
.fs2_c00372{font-size:59.775600px;}
.fs1_c00372{font-size:86.077200px;}
.y0_c00372{bottom:0.000000px;}
.y20_c00372{bottom:44.250000px;}
.y1f_c00372{bottom:82.051500px;}
.y1e_c00372{bottom:99.984000px;}
.y1d_c00372{bottom:117.916500px;}
.y1c_c00372{bottom:144.567000px;}
.y1b_c00372{bottom:171.219000px;}
.y1a_c00372{bottom:189.151500px;}
.y19_c00372{bottom:215.802000px;}
.y18_c00372{bottom:242.454000px;}
.y17_c00372{bottom:284.478000px;}
.y16_c00372{bottom:748.903500px;}
.y15_c00372{bottom:765.342000px;}
.y14_c00372{bottom:781.780500px;}
.y13_c00372{bottom:798.219000px;}
.y12_c00372{bottom:814.657500px;}
.y11_c00372{bottom:831.096000px;}
.y10_c00372{bottom:847.534500px;}
.yf_c00372{bottom:863.973000px;}
.ye_c00372{bottom:880.411500px;}
.yd_c00372{bottom:896.848500px;}
.yc_c00372{bottom:913.287000px;}
.yb_c00372{bottom:946.164000px;}
.ya_c00372{bottom:962.602500px;}
.y9_c00372{bottom:979.041000px;}
.y8_c00372{bottom:1011.918000px;}
.y7_c00372{bottom:1028.356500px;}
.y6_c00372{bottom:1044.795000px;}
.y5_c00372{bottom:1061.232000px;}
.y4_c00372{bottom:1077.670500px;}
.y3_c00372{bottom:1094.109000px;}
.y2_c00372{bottom:1110.547500px;}
.y1_c00372{bottom:1159.863000px;}
.h3_c00372{height:35.190766px;}
.h2_c00372{height:36.007158px;}
.h5_c00372{height:40.511979px;}
.h6_c00372{height:52.332837px;}
.h4_c00372{height:58.337477px;}
.h0_c00372{height:1262.835000px;}
.h1_c00372{height:1263.000000px;}
.w0_c00372{width:892.920000px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x4_c00372{left:127.558500px;}
.x2_c00372{left:137.122500px;}
.x1_c00372{left:143.770500px;}
.x3_c00372{left:177.007500px;}
.x5_c00372{left:435.249000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls4_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.078221pt;}
.ls2_c00372{letter-spacing:0.087539pt;}
.ls3_c00372{letter-spacing:0.092873pt;}
.ls1_c00372{letter-spacing:23.724873pt;}
.ws2_c00372{word-spacing:-23.622682pt;}
.ws4_c00372{word-spacing:-23.544461pt;}
.wsc_c00372{word-spacing:-16.684034pt;}
.wsa_c00372{word-spacing:-15.196286pt;}
.wse_c00372{word-spacing:-14.239876pt;}
.wsb_c00372{word-spacing:-13.283467pt;}
.ws11_c00372{word-spacing:-12.539593pt;}
.ws9_c00372{word-spacing:-11.848852pt;}
.ws10_c00372{word-spacing:-10.414238pt;}
.wsf_c00372{word-spacing:-10.361104pt;}
.ws7_c00372{word-spacing:-8.878599pt;}
.ws8_c00372{word-spacing:-8.877777pt;}
.wsd_c00372{word-spacing:-4.032128pt;}
.ws3_c00372{word-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.039110pt;}
.ws5_c00372{word-spacing:0.189730pt;}
.ws1_c00372{word-spacing:0.195063pt;}
.ws6_c00372{word-spacing:38.256533pt;}
._2_c00372{margin-left:-4.208219pt;}
._6_c00372{margin-left:-3.001646pt;}
._5_c00372{margin-left:-0.956410pt;}
._1_c00372{width:0.945502pt;}
._4_c00372{width:17.716000pt;}
._3_c00372{width:20.728778pt;}
._0_c00372{width:94.920941pt;}
.fs0_c00372{font-size:39.110400pt;}
.fs2_c00372{font-size:53.133867pt;}
.fs1_c00372{font-size:76.513067pt;}
.y0_c00372{bottom:0.000000pt;}
.y20_c00372{bottom:39.333333pt;}
.y1f_c00372{bottom:72.934667pt;}
.y1e_c00372{bottom:88.874667pt;}
.y1d_c00372{bottom:104.814667pt;}
.y1c_c00372{bottom:128.504000pt;}
.y1b_c00372{bottom:152.194667pt;}
.y1a_c00372{bottom:168.134667pt;}
.y19_c00372{bottom:191.824000pt;}
.y18_c00372{bottom:215.514667pt;}
.y17_c00372{bottom:252.869333pt;}
.y16_c00372{bottom:665.692000pt;}
.y15_c00372{bottom:680.304000pt;}
.y14_c00372{bottom:694.916000pt;}
.y13_c00372{bottom:709.528000pt;}
.y12_c00372{bottom:724.140000pt;}
.y11_c00372{bottom:738.752000pt;}
.y10_c00372{bottom:753.364000pt;}
.yf_c00372{bottom:767.976000pt;}
.ye_c00372{bottom:782.588000pt;}
.yd_c00372{bottom:797.198667pt;}
.yc_c00372{bottom:811.810667pt;}
.yb_c00372{bottom:841.034667pt;}
.ya_c00372{bottom:855.646667pt;}
.y9_c00372{bottom:870.258667pt;}
.y8_c00372{bottom:899.482667pt;}
.y7_c00372{bottom:914.094667pt;}
.y6_c00372{bottom:928.706667pt;}
.y5_c00372{bottom:943.317333pt;}
.y4_c00372{bottom:957.929333pt;}
.y3_c00372{bottom:972.541333pt;}
.y2_c00372{bottom:987.153333pt;}
.y1_c00372{bottom:1030.989333pt;}
.h3_c00372{height:31.280681pt;}
.h2_c00372{height:32.006363pt;}
.h5_c00372{height:36.010648pt;}
.h6_c00372{height:46.518078pt;}
.h4_c00372{height:51.855535pt;}
.h0_c00372{height:1122.520000pt;}
.h1_c00372{height:1122.666667pt;}
.w0_c00372{width:793.706667pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x4_c00372{left:113.385333pt;}
.x2_c00372{left:121.886667pt;}
.x1_c00372{left:127.796000pt;}
.x3_c00372{left:157.340000pt;}
.x5_c00372{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f9e9e9d552e498eed805e78.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.102051;font-style:normal;font-weight:normal;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_59cc92887fab7cdfccd2a424.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.048828;font-style:normal;font-weight:normal;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_90d5001cec61ae798c719474.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls4_c00373{letter-spacing:0.000000px;}
.ls1_c00373{letter-spacing:0.087998px;}
.ls2_c00373{letter-spacing:0.098482px;}
.ls0_c00373{letter-spacing:0.104482px;}
.ls3_c00373{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00373{word-spacing:-33.713438px;}
.ws5_c00373{word-spacing:-26.575517px;}
.ws4_c00373{word-spacing:-26.487518px;}
.ws1_c00373{word-spacing:-18.769538px;}
.ws0_c00373{word-spacing:-12.074671px;}
.ws9_c00373{word-spacing:0.000000px;}
.ws6_c00373{word-spacing:0.043999px;}
.wsc_c00373{word-spacing:0.056767px;}
.wsa_c00373{word-spacing:0.073250px;}
.wsb_c00373{word-spacing:0.083734px;}
.ws3_c00373{word-spacing:0.175997px;}
.wsd_c00373{word-spacing:0.202963px;}
.ws7_c00373{word-spacing:0.213446px;}
.ws8_c00373{word-spacing:0.219446px;}
._1_c00373{margin-left:-3.825638px;}
._2_c00373{width:1.005737px;}
._0_c00373{width:40.109428px;}
._4_c00373{width:53.283031px;}
._3_c00373{width:79.858548px;}
._5_c00373{width:133.452408px;}
.fc5_c00373{color:rgb(0,0,207);}
.fc4_c00373{color:rgb(79,153,5);}
.fc3_c00373{color:rgb(207,92,0);}
.fc2_c00373{color:rgb(33,74,135);}
.fc1_c00373{color:rgb(143,89,3);}
.fc0_c00373{color:rgb(0,0,0);}
.fs1_c00373{font-size:43.999200px;}
.fs0_c00373{font-size:59.775600px;}
.y0_c00373{bottom:0.000000px;}
.y2e_c00373{bottom:44.250000px;}
.y2d_c00373{bottom:96.919500px;}
.y2c_c00373{bottom:113.358000px;}
.y2b_c00373{bottom:129.796500px;}
.y2a_c00373{bottom:146.235000px;}
.y29_c00373{bottom:162.673500px;}
.y28_c00373{bottom:179.112000px;}
.y27_c00373{bottom:195.550500px;}
.y26_c00373{bottom:211.989000px;}
.y25_c00373{bottom:228.427500px;}
.y24_c00373{bottom:244.866000px;}
.y23_c00373{bottom:261.304500px;}
.y22_c00373{bottom:294.180000px;}
.y21_c00373{bottom:310.618500px;}
.y20_c00373{bottom:327.057000px;}
.y1f_c00373{bottom:359.934000px;}
.y1e_c00373{bottom:376.372500px;}
.y1d_c00373{bottom:392.811000px;}
.y1c_c00373{bottom:409.249500px;}
.y1b_c00373{bottom:425.688000px;}
.y1a_c00373{bottom:442.125000px;}
.y19_c00373{bottom:458.563500px;}
.y18_c00373{bottom:507.879000px;}
.y17_c00373{bottom:524.317500px;}
.y16_c00373{bottom:540.756000px;}
.y15_c00373{bottom:557.194500px;}
.y14_c00373{bottom:573.633000px;}
.y13_c00373{bottom:590.071500px;}
.y12_c00373{bottom:606.508500px;}
.y11_c00373{bottom:622.947000px;}
.y10_c00373{bottom:639.385500px;}
.yf_c00373{bottom:655.824000px;}
.ye_c00373{bottom:672.262500px;}
.yd_c00373{bottom:688.701000px;}
.yc_c00373{bottom:705.139500px;}
.yb_c00373{bottom:721.578000px;}
.ya_c00373{bottom:738.016500px;}
.y9_c00373{bottom:754.455000px;}
.y8_c00373{bottom:787.330500px;}
.y7_c00373{bottom:803.769000px;}
.y6_c00373{bottom:853.084500px;}
.y5_c00373{bottom:869.523000px;}
.y4_c00373{bottom:885.588000px;}
.y3_c00373{bottom:1123.998000px;}
.y2_c00373{bottom:1141.930500px;}
.y1_c00373{bottom:1159.863000px;}
.h3_c00373{height:35.190766px;}
.h4_c00373{height:36.007158px;}
.h2_c00373{height:52.332837px;}
.h0_c00373{height:1262.835000px;}
.h1_c00373{height:1263.000000px;}
.w0_c00373{width:892.920000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:127.558500px;}
.x2_c00373{left:137.122500px;}
.x3_c00373{left:143.770500px;}
.x4_c00373{left:177.007500px;}
.x5_c00373{left:435.249000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls4_c00373{letter-spacing:0.000000pt;}
.ls1_c00373{letter-spacing:0.078221pt;}
.ls2_c00373{letter-spacing:0.087539pt;}
.ls0_c00373{letter-spacing:0.092873pt;}
.ls3_c00373{letter-spacing:23.724873pt;}
.ws2_c00373{word-spacing:-29.967501pt;}
.ws5_c00373{word-spacing:-23.622682pt;}
.ws4_c00373{word-spacing:-23.544461pt;}
.ws1_c00373{word-spacing:-16.684034pt;}
.ws0_c00373{word-spacing:-10.733041pt;}
.ws9_c00373{word-spacing:0.000000pt;}
.ws6_c00373{word-spacing:0.039110pt;}
.wsc_c00373{word-spacing:0.050460pt;}
.wsa_c00373{word-spacing:0.065111pt;}
.wsb_c00373{word-spacing:0.074430pt;}
.ws3_c00373{word-spacing:0.156442pt;}
.wsd_c00373{word-spacing:0.180412pt;}
.ws7_c00373{word-spacing:0.189730pt;}
.ws8_c00373{word-spacing:0.195063pt;}
._1_c00373{margin-left:-3.400567pt;}
._2_c00373{width:0.893988pt;}
._0_c00373{width:35.652825pt;}
._4_c00373{width:47.362694pt;}
._3_c00373{width:70.985376pt;}
._5_c00373{width:118.624363pt;}
.fs1_c00373{font-size:39.110400pt;}
.fs0_c00373{font-size:53.133867pt;}
.y0_c00373{bottom:0.000000pt;}
.y2e_c00373{bottom:39.333333pt;}
.y2d_c00373{bottom:86.150667pt;}
.y2c_c00373{bottom:100.762667pt;}
.y2b_c00373{bottom:115.374667pt;}
.y2a_c00373{bottom:129.986667pt;}
.y29_c00373{bottom:144.598667pt;}
.y28_c00373{bottom:159.210667pt;}
.y27_c00373{bottom:173.822667pt;}
.y26_c00373{bottom:188.434667pt;}
.y25_c00373{bottom:203.046667pt;}
.y24_c00373{bottom:217.658667pt;}
.y23_c00373{bottom:232.270667pt;}
.y22_c00373{bottom:261.493333pt;}
.y21_c00373{bottom:276.105333pt;}
.y20_c00373{bottom:290.717333pt;}
.y1f_c00373{bottom:319.941333pt;}
.y1e_c00373{bottom:334.553333pt;}
.y1d_c00373{bottom:349.165333pt;}
.y1c_c00373{bottom:363.777333pt;}
.y1b_c00373{bottom:378.389333pt;}
.y1a_c00373{bottom:393.000000pt;}
.y19_c00373{bottom:407.612000pt;}
.y18_c00373{bottom:451.448000pt;}
.y17_c00373{bottom:466.060000pt;}
.y16_c00373{bottom:480.672000pt;}
.y15_c00373{bottom:495.284000pt;}
.y14_c00373{bottom:509.896000pt;}
.y13_c00373{bottom:524.508000pt;}
.y12_c00373{bottom:539.118667pt;}
.y11_c00373{bottom:553.730667pt;}
.y10_c00373{bottom:568.342667pt;}
.yf_c00373{bottom:582.954667pt;}
.ye_c00373{bottom:597.566667pt;}
.yd_c00373{bottom:612.178667pt;}
.yc_c00373{bottom:626.790667pt;}
.yb_c00373{bottom:641.402667pt;}
.ya_c00373{bottom:656.014667pt;}
.y9_c00373{bottom:670.626667pt;}
.y8_c00373{bottom:699.849333pt;}
.y7_c00373{bottom:714.461333pt;}
.y6_c00373{bottom:758.297333pt;}
.y5_c00373{bottom:772.909333pt;}
.y4_c00373{bottom:787.189333pt;}
.y3_c00373{bottom:999.109333pt;}
.y2_c00373{bottom:1015.049333pt;}
.y1_c00373{bottom:1030.989333pt;}
.h3_c00373{height:31.280681pt;}
.h4_c00373{height:32.006363pt;}
.h2_c00373{height:46.518078pt;}
.h0_c00373{height:1122.520000pt;}
.h1_c00373{height:1122.666667pt;}
.w0_c00373{width:793.706667pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:113.385333pt;}
.x2_c00373{left:121.886667pt;}
.x3_c00373{left:127.796000pt;}
.x4_c00373{left:157.340000pt;}
.x5_c00373{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ec45f2d062152dfa187b3d5.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.893555;font-style:normal;font-weight:normal;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_543bd65222f4ce475a18629f.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.083496;font-style:normal;font-weight:normal;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_b7cdfc26ecfcda626626240c.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:1.048828;font-style: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;}
.ls3_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.087998px;}
.ls2_c00374{letter-spacing:0.098482px;}
.ls1_c00374{letter-spacing:0.104482px;}
.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;}
}
.wse_c00374{word-spacing:-33.713438px;}
.ws2_c00374{word-spacing:-26.575517px;}
.ws10_c00374{word-spacing:-26.487518px;}
.ws5_c00374{word-spacing:-19.367294px;}
.ws7_c00374{word-spacing:-18.769538px;}
.ws9_c00374{word-spacing:-16.019861px;}
.ws4_c00374{word-spacing:-15.541656px;}
.ws6_c00374{word-spacing:-14.943900px;}
.wsc_c00374{word-spacing:-14.107042px;}
.wsd_c00374{word-spacing:-12.074671px;}
.wsb_c00374{word-spacing:-11.716018px;}
.wsa_c00374{word-spacing:-11.656242px;}
.ws1_c00374{word-spacing:-9.988424px;}
.ws3_c00374{word-spacing:-9.987499px;}
.ws8_c00374{word-spacing:-4.536144px;}
.ws14_c00374{word-spacing:0.000000px;}
.ws11_c00374{word-spacing:0.043999px;}
.ws17_c00374{word-spacing:0.056767px;}
.ws15_c00374{word-spacing:0.073250px;}
.ws16_c00374{word-spacing:0.083734px;}
.wsf_c00374{word-spacing:0.175997px;}
.ws18_c00374{word-spacing:0.202963px;}
.ws12_c00374{word-spacing:0.213446px;}
.ws13_c00374{word-spacing:0.219446px;}
.ws0_c00374{word-spacing:43.038600px;}
._0_c00374{margin-left:-4.734246px;}
._3_c00374{margin-left:-3.376852px;}
._2_c00374{margin-left:-1.075961px;}
._8_c00374{width:1.005737px;}
._7_c00374{width:15.972059px;}
._1_c00374{width:19.645572px;}
._5_c00374{width:20.742133px;}
._4_c00374{width:23.790689px;}
._6_c00374{width:40.109428px;}
._a_c00374{width:53.283031px;}
._9_c00374{width:79.858548px;}
._b_c00374{width:133.452408px;}
.fc6_c00374{color:rgb(0,0,207);}
.fc5_c00374{color:rgb(79,153,5);}
.fc3_c00374{color:rgb(33,74,135);}
.fc2_c00374{color:rgb(143,89,3);}
.fc4_c00374{color:rgb(207,92,0);}
.fc1_c00374{color:rgb(6,69,173);}
.fc0_c00374{color:rgb(0,0,0);}
.fs2_c00374{font-size:43.999200px;}
.fs1_c00374{font-size:59.775600px;}
.fs0_c00374{font-size:86.077200px;}
.y0_c00374{bottom:0.000000px;}
.y20_c00374{bottom:44.250000px;}
.y1f_c00374{bottom:86.982000px;}
.y1e_c00374{bottom:103.420500px;}
.y1d_c00374{bottom:119.859000px;}
.y1c_c00374{bottom:136.297500px;}
.y1b_c00374{bottom:152.736000px;}
.y1a_c00374{bottom:169.174500px;}
.y19_c00374{bottom:185.613000px;}
.y18_c00374{bottom:202.051500px;}
.y17_c00374{bottom:218.490000px;}
.y16_c00374{bottom:234.927000px;}
.y15_c00374{bottom:251.365500px;}
.y14_c00374{bottom:267.804000px;}
.y13_c00374{bottom:284.242500px;}
.y12_c00374{bottom:300.681000px;}
.y11_c00374{bottom:317.119500px;}
.y10_c00374{bottom:349.996500px;}
.yf_c00374{bottom:366.435000px;}
.ye_c00374{bottom:415.749000px;}
.yd_c00374{bottom:432.187500px;}
.yc_c00374{bottom:448.252500px;}
.yb_c00374{bottom:493.890000px;}
.ya_c00374{bottom:511.822500px;}
.y9_c00374{bottom:529.756500px;}
.y8_c00374{bottom:547.689000px;}
.y7_c00374{bottom:565.621500px;}
.y6_c00374{bottom:583.554000px;}
.y5_c00374{bottom:610.633500px;}
.y4_c00374{bottom:637.714500px;}
.y3_c00374{bottom:664.794000px;}
.y2_c00374{bottom:691.873500px;}
.y1_c00374{bottom:734.407500px;}
.h5_c00374{height:35.190766px;}
.h6_c00374{height:36.007158px;}
.h3_c00374{height:40.511979px;}
.h4_c00374{height:52.332837px;}
.h2_c00374{height:58.337477px;}
.h0_c00374{height:1262.835000px;}
.h1_c00374{height:1263.000000px;}
.w0_c00374{width:892.920000px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:127.558500px;}
.x2_c00374{left:137.122500px;}
.x3_c00374{left:143.770500px;}
.x4_c00374{left:435.249000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls3_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.078221pt;}
.ls2_c00374{letter-spacing:0.087539pt;}
.ls1_c00374{letter-spacing:0.092873pt;}
.wse_c00374{word-spacing:-29.967501pt;}
.ws2_c00374{word-spacing:-23.622682pt;}
.ws10_c00374{word-spacing:-23.544461pt;}
.ws5_c00374{word-spacing:-17.215373pt;}
.ws7_c00374{word-spacing:-16.684034pt;}
.ws9_c00374{word-spacing:-14.239876pt;}
.ws4_c00374{word-spacing:-13.814805pt;}
.ws6_c00374{word-spacing:-13.283467pt;}
.wsc_c00374{word-spacing:-12.539593pt;}
.wsd_c00374{word-spacing:-10.733041pt;}
.wsb_c00374{word-spacing:-10.414238pt;}
.wsa_c00374{word-spacing:-10.361104pt;}
.ws1_c00374{word-spacing:-8.878599pt;}
.ws3_c00374{word-spacing:-8.877777pt;}
.ws8_c00374{word-spacing:-4.032128pt;}
.ws14_c00374{word-spacing:0.000000pt;}
.ws11_c00374{word-spacing:0.039110pt;}
.ws17_c00374{word-spacing:0.050460pt;}
.ws15_c00374{word-spacing:0.065111pt;}
.ws16_c00374{word-spacing:0.074430pt;}
.wsf_c00374{word-spacing:0.156442pt;}
.ws18_c00374{word-spacing:0.180412pt;}
.ws12_c00374{word-spacing:0.189730pt;}
.ws13_c00374{word-spacing:0.195063pt;}
.ws0_c00374{word-spacing:38.256533pt;}
._0_c00374{margin-left:-4.208219pt;}
._3_c00374{margin-left:-3.001646pt;}
._2_c00374{margin-left:-0.956410pt;}
._8_c00374{width:0.893988pt;}
._7_c00374{width:14.197386pt;}
._1_c00374{width:17.462731pt;}
._5_c00374{width:18.437452pt;}
._4_c00374{width:21.147279pt;}
._6_c00374{width:35.652825pt;}
._a_c00374{width:47.362694pt;}
._9_c00374{width:70.985376pt;}
._b_c00374{width:118.624363pt;}
.fs2_c00374{font-size:39.110400pt;}
.fs1_c00374{font-size:53.133867pt;}
.fs0_c00374{font-size:76.513067pt;}
.y0_c00374{bottom:0.000000pt;}
.y20_c00374{bottom:39.333333pt;}
.y1f_c00374{bottom:77.317333pt;}
.y1e_c00374{bottom:91.929333pt;}
.y1d_c00374{bottom:106.541333pt;}
.y1c_c00374{bottom:121.153333pt;}
.y1b_c00374{bottom:135.765333pt;}
.y1a_c00374{bottom:150.377333pt;}
.y19_c00374{bottom:164.989333pt;}
.y18_c00374{bottom:179.601333pt;}
.y17_c00374{bottom:194.213333pt;}
.y16_c00374{bottom:208.824000pt;}
.y15_c00374{bottom:223.436000pt;}
.y14_c00374{bottom:238.048000pt;}
.y13_c00374{bottom:252.660000pt;}
.y12_c00374{bottom:267.272000pt;}
.y11_c00374{bottom:281.884000pt;}
.y10_c00374{bottom:311.108000pt;}
.yf_c00374{bottom:325.720000pt;}
.ye_c00374{bottom:369.554667pt;}
.yd_c00374{bottom:384.166667pt;}
.yc_c00374{bottom:398.446667pt;}
.yb_c00374{bottom:439.013333pt;}
.ya_c00374{bottom:454.953333pt;}
.y9_c00374{bottom:470.894667pt;}
.y8_c00374{bottom:486.834667pt;}
.y7_c00374{bottom:502.774667pt;}
.y6_c00374{bottom:518.714667pt;}
.y5_c00374{bottom:542.785333pt;}
.y4_c00374{bottom:566.857333pt;}
.y3_c00374{bottom:590.928000pt;}
.y2_c00374{bottom:614.998667pt;}
.y1_c00374{bottom:652.806667pt;}
.h5_c00374{height:31.280681pt;}
.h6_c00374{height:32.006363pt;}
.h3_c00374{height:36.010648pt;}
.h4_c00374{height:46.518078pt;}
.h2_c00374{height:51.855535pt;}
.h0_c00374{height:1122.520000pt;}
.h1_c00374{height:1122.666667pt;}
.w0_c00374{width:793.706667pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:113.385333pt;}
.x2_c00374{left:121.886667pt;}
.x3_c00374{left:127.796000pt;}
.x4_c00374{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a85bc81b4fa297330a58beb4.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.048828;font-style:normal;font-weight:normal;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_800be65e90c0f27b0dd8a1a7.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.014648;font-style:normal;font-weight:normal;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_6afe4a3de3e464c4bb3b5514.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00375;src:url('chunks/assets/font_729728388021b77ebd06ab13.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.102051;font-style: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;}
.ls4_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.087998px;}
.ls2_c00375{letter-spacing:0.098482px;}
.ls3_c00375{letter-spacing:0.104482px;}
.ls1_c00375{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00375{word-spacing:-26.575517px;}
.ws4_c00375{word-spacing:-26.487518px;}
.wsa_c00375{word-spacing:-21.339889px;}
.wsc_c00375{word-spacing:-18.769538px;}
.wse_c00375{word-spacing:-17.633802px;}
.ws9_c00375{word-spacing:-17.514251px;}
.wsb_c00375{word-spacing:-14.943900px;}
.ws11_c00375{word-spacing:-14.107042px;}
.ws12_c00375{word-spacing:-12.074671px;}
.ws10_c00375{word-spacing:-11.716018px;}
.wsf_c00375{word-spacing:-11.656242px;}
.ws7_c00375{word-spacing:-9.988424px;}
.ws8_c00375{word-spacing:-9.987499px;}
.wsd_c00375{word-spacing:-7.680144px;}
.ws3_c00375{word-spacing:0.000000px;}
.ws0_c00375{word-spacing:0.043999px;}
.ws5_c00375{word-spacing:0.213446px;}
.ws1_c00375{word-spacing:0.219446px;}
.ws6_c00375{word-spacing:43.038600px;}
._2_c00375{margin-left:-4.734246px;}
._7_c00375{margin-left:-3.376852px;}
._6_c00375{margin-left:-1.075961px;}
._1_c00375{width:1.074173px;}
._4_c00375{width:13.389734px;}
._3_c00375{width:18.648167px;}
._5_c00375{width:19.930500px;}
._8_c00375{width:23.790689px;}
._9_c00375{width:40.109428px;}
._0_c00375{width:80.210542px;}
.fc5_c00375{color:rgb(79,153,5);}
.fc4_c00375{color:rgb(143,89,3);}
.fc3_c00375{color:rgb(0,0,0);}
.fc6_c00375{color:rgb(6,69,173);}
.fc2_c00375{color:rgb(207,92,0);}
.fc1_c00375{color:rgb(0,0,207);}
.fc0_c00375{color:rgb(33,74,135);}
.fs0_c00375{font-size:43.999200px;}
.fs2_c00375{font-size:59.775600px;}
.fs1_c00375{font-size:86.077200px;}
.y0_c00375{bottom:0.000000px;}
.y20_c00375{bottom:44.250000px;}
.y1f_c00375{bottom:82.051500px;}
.y1e_c00375{bottom:99.984000px;}
.y1d_c00375{bottom:117.916500px;}
.y1c_c00375{bottom:135.849000px;}
.y1b_c00375{bottom:162.501000px;}
.y1a_c00375{bottom:189.151500px;}
.y19_c00375{bottom:215.802000px;}
.y18_c00375{bottom:242.454000px;}
.y17_c00375{bottom:284.478000px;}
.y16_c00375{bottom:748.903500px;}
.y15_c00375{bottom:765.342000px;}
.y14_c00375{bottom:781.780500px;}
.y13_c00375{bottom:798.219000px;}
.y12_c00375{bottom:814.657500px;}
.y11_c00375{bottom:831.096000px;}
.y10_c00375{bottom:847.534500px;}
.yf_c00375{bottom:863.973000px;}
.ye_c00375{bottom:880.411500px;}
.yd_c00375{bottom:896.848500px;}
.yc_c00375{bottom:913.287000px;}
.yb_c00375{bottom:946.164000px;}
.ya_c00375{bottom:962.602500px;}
.y9_c00375{bottom:979.041000px;}
.y8_c00375{bottom:1011.918000px;}
.y7_c00375{bottom:1028.356500px;}
.y6_c00375{bottom:1044.795000px;}
.y5_c00375{bottom:1061.232000px;}
.y4_c00375{bottom:1077.670500px;}
.y3_c00375{bottom:1094.109000px;}
.y2_c00375{bottom:1110.547500px;}
.y1_c00375{bottom:1159.863000px;}
.h3_c00375{height:35.190766px;}
.h2_c00375{height:36.007158px;}
.h5_c00375{height:40.511979px;}
.h6_c00375{height:52.332837px;}
.h4_c00375{height:58.337477px;}
.h0_c00375{height:1262.835000px;}
.h1_c00375{height:1263.000000px;}
.w0_c00375{width:892.920000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x4_c00375{left:127.558500px;}
.x2_c00375{left:137.122500px;}
.x1_c00375{left:143.770500px;}
.x3_c00375{left:177.007500px;}
.x5_c00375{left:435.249000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls4_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.078221pt;}
.ls2_c00375{letter-spacing:0.087539pt;}
.ls3_c00375{letter-spacing:0.092873pt;}
.ls1_c00375{letter-spacing:23.724873pt;}
.ws2_c00375{word-spacing:-23.622682pt;}
.ws4_c00375{word-spacing:-23.544461pt;}
.wsa_c00375{word-spacing:-18.968790pt;}
.wsc_c00375{word-spacing:-16.684034pt;}
.wse_c00375{word-spacing:-15.674491pt;}
.ws9_c00375{word-spacing:-15.568223pt;}
.wsb_c00375{word-spacing:-13.283467pt;}
.ws11_c00375{word-spacing:-12.539593pt;}
.ws12_c00375{word-spacing:-10.733041pt;}
.ws10_c00375{word-spacing:-10.414238pt;}
.wsf_c00375{word-spacing:-10.361104pt;}
.ws7_c00375{word-spacing:-8.878599pt;}
.ws8_c00375{word-spacing:-8.877777pt;}
.wsd_c00375{word-spacing:-6.826795pt;}
.ws3_c00375{word-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.039110pt;}
.ws5_c00375{word-spacing:0.189730pt;}
.ws1_c00375{word-spacing:0.195063pt;}
.ws6_c00375{word-spacing:38.256533pt;}
._2_c00375{margin-left:-4.208219pt;}
._7_c00375{margin-left:-3.001646pt;}
._6_c00375{margin-left:-0.956410pt;}
._1_c00375{width:0.954820pt;}
._4_c00375{width:11.901986pt;}
._3_c00375{width:16.576148pt;}
._5_c00375{width:17.716000pt;}
._8_c00375{width:21.147279pt;}
._9_c00375{width:35.652825pt;}
._0_c00375{width:71.298259pt;}
.fs0_c00375{font-size:39.110400pt;}
.fs2_c00375{font-size:53.133867pt;}
.fs1_c00375{font-size:76.513067pt;}
.y0_c00375{bottom:0.000000pt;}
.y20_c00375{bottom:39.333333pt;}
.y1f_c00375{bottom:72.934667pt;}
.y1e_c00375{bottom:88.874667pt;}
.y1d_c00375{bottom:104.814667pt;}
.y1c_c00375{bottom:120.754667pt;}
.y1b_c00375{bottom:144.445333pt;}
.y1a_c00375{bottom:168.134667pt;}
.y19_c00375{bottom:191.824000pt;}
.y18_c00375{bottom:215.514667pt;}
.y17_c00375{bottom:252.869333pt;}
.y16_c00375{bottom:665.692000pt;}
.y15_c00375{bottom:680.304000pt;}
.y14_c00375{bottom:694.916000pt;}
.y13_c00375{bottom:709.528000pt;}
.y12_c00375{bottom:724.140000pt;}
.y11_c00375{bottom:738.752000pt;}
.y10_c00375{bottom:753.364000pt;}
.yf_c00375{bottom:767.976000pt;}
.ye_c00375{bottom:782.588000pt;}
.yd_c00375{bottom:797.198667pt;}
.yc_c00375{bottom:811.810667pt;}
.yb_c00375{bottom:841.034667pt;}
.ya_c00375{bottom:855.646667pt;}
.y9_c00375{bottom:870.258667pt;}
.y8_c00375{bottom:899.482667pt;}
.y7_c00375{bottom:914.094667pt;}
.y6_c00375{bottom:928.706667pt;}
.y5_c00375{bottom:943.317333pt;}
.y4_c00375{bottom:957.929333pt;}
.y3_c00375{bottom:972.541333pt;}
.y2_c00375{bottom:987.153333pt;}
.y1_c00375{bottom:1030.989333pt;}
.h3_c00375{height:31.280681pt;}
.h2_c00375{height:32.006363pt;}
.h5_c00375{height:36.010648pt;}
.h6_c00375{height:46.518078pt;}
.h4_c00375{height:51.855535pt;}
.h0_c00375{height:1122.520000pt;}
.h1_c00375{height:1122.666667pt;}
.w0_c00375{width:793.706667pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x4_c00375{left:113.385333pt;}
.x2_c00375{left:121.886667pt;}
.x1_c00375{left:127.796000pt;}
.x3_c00375{left:157.340000pt;}
.x5_c00375{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_893c8efbb6d8b08a614e3f5e.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.102051;font-style:normal;font-weight:normal;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_c656729b5138ffaa11d47a59.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_18d002028e1c653de00a2edb.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls4_c00376{letter-spacing:0.000000px;}
.ls1_c00376{letter-spacing:0.087998px;}
.ls2_c00376{letter-spacing:0.098482px;}
.ls0_c00376{letter-spacing:0.104482px;}
.ls3_c00376{letter-spacing:26.690482px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00376{word-spacing:-33.713438px;}
.ws4_c00376{word-spacing:-26.575517px;}
.ws3_c00376{word-spacing:-26.487518px;}
.ws0_c00376{word-spacing:-18.769538px;}
.ws8_c00376{word-spacing:0.000000px;}
.ws5_c00376{word-spacing:0.043999px;}
.wsb_c00376{word-spacing:0.056767px;}
.ws9_c00376{word-spacing:0.073250px;}
.wsa_c00376{word-spacing:0.083734px;}
.ws2_c00376{word-spacing:0.175997px;}
.wsc_c00376{word-spacing:0.202963px;}
.ws6_c00376{word-spacing:0.213446px;}
.ws7_c00376{word-spacing:0.219446px;}
._0_c00376{margin-left:-3.825638px;}
._1_c00376{width:1.005737px;}
._3_c00376{width:53.283031px;}
._2_c00376{width:79.858548px;}
._4_c00376{width:133.452408px;}
.fc5_c00376{color:rgb(0,0,207);}
.fc4_c00376{color:rgb(79,153,5);}
.fc3_c00376{color:rgb(207,92,0);}
.fc2_c00376{color:rgb(33,74,135);}
.fc1_c00376{color:rgb(143,89,3);}
.fc0_c00376{color:rgb(0,0,0);}
.fs1_c00376{font-size:43.999200px;}
.fs0_c00376{font-size:59.775600px;}
.y0_c00376{bottom:0.000000px;}
.y2d_c00376{bottom:44.250000px;}
.y2c_c00376{bottom:96.919500px;}
.y2b_c00376{bottom:113.358000px;}
.y2a_c00376{bottom:129.796500px;}
.y29_c00376{bottom:146.235000px;}
.y28_c00376{bottom:162.673500px;}
.y27_c00376{bottom:179.112000px;}
.y26_c00376{bottom:195.550500px;}
.y25_c00376{bottom:211.989000px;}
.y24_c00376{bottom:228.427500px;}
.y23_c00376{bottom:244.866000px;}
.y22_c00376{bottom:261.304500px;}
.y21_c00376{bottom:294.180000px;}
.y20_c00376{bottom:310.618500px;}
.y1f_c00376{bottom:327.057000px;}
.y1e_c00376{bottom:359.934000px;}
.y1d_c00376{bottom:376.372500px;}
.y1c_c00376{bottom:392.811000px;}
.y1b_c00376{bottom:409.249500px;}
.y1a_c00376{bottom:425.688000px;}
.y19_c00376{bottom:442.125000px;}
.y18_c00376{bottom:458.563500px;}
.y17_c00376{bottom:507.879000px;}
.y16_c00376{bottom:524.317500px;}
.y15_c00376{bottom:540.756000px;}
.y14_c00376{bottom:557.194500px;}
.y13_c00376{bottom:573.633000px;}
.y12_c00376{bottom:590.071500px;}
.y11_c00376{bottom:606.508500px;}
.y10_c00376{bottom:622.947000px;}
.yf_c00376{bottom:639.385500px;}
.ye_c00376{bottom:655.824000px;}
.yd_c00376{bottom:672.262500px;}
.yc_c00376{bottom:688.701000px;}
.yb_c00376{bottom:705.139500px;}
.ya_c00376{bottom:721.578000px;}
.y9_c00376{bottom:738.016500px;}
.y8_c00376{bottom:754.455000px;}
.y7_c00376{bottom:787.330500px;}
.y6_c00376{bottom:803.769000px;}
.y5_c00376{bottom:853.084500px;}
.y4_c00376{bottom:869.523000px;}
.y3_c00376{bottom:885.588000px;}
.y2_c00376{bottom:1141.930500px;}
.y1_c00376{bottom:1159.863000px;}
.h3_c00376{height:35.190766px;}
.h4_c00376{height:36.007158px;}
.h2_c00376{height:52.332837px;}
.h0_c00376{height:1262.835000px;}
.h1_c00376{height:1263.000000px;}
.w0_c00376{width:892.920000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:127.558500px;}
.x2_c00376{left:137.122500px;}
.x3_c00376{left:143.770500px;}
.x4_c00376{left:177.007500px;}
.x5_c00376{left:435.249000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls4_c00376{letter-spacing:0.000000pt;}
.ls1_c00376{letter-spacing:0.078221pt;}
.ls2_c00376{letter-spacing:0.087539pt;}
.ls0_c00376{letter-spacing:0.092873pt;}
.ls3_c00376{letter-spacing:23.724873pt;}
.ws1_c00376{word-spacing:-29.967501pt;}
.ws4_c00376{word-spacing:-23.622682pt;}
.ws3_c00376{word-spacing:-23.544461pt;}
.ws0_c00376{word-spacing:-16.684034pt;}
.ws8_c00376{word-spacing:0.000000pt;}
.ws5_c00376{word-spacing:0.039110pt;}
.wsb_c00376{word-spacing:0.050460pt;}
.ws9_c00376{word-spacing:0.065111pt;}
.wsa_c00376{word-spacing:0.074430pt;}
.ws2_c00376{word-spacing:0.156442pt;}
.wsc_c00376{word-spacing:0.180412pt;}
.ws6_c00376{word-spacing:0.189730pt;}
.ws7_c00376{word-spacing:0.195063pt;}
._0_c00376{margin-left:-3.400567pt;}
._1_c00376{width:0.893988pt;}
._3_c00376{width:47.362694pt;}
._2_c00376{width:70.985376pt;}
._4_c00376{width:118.624363pt;}
.fs1_c00376{font-size:39.110400pt;}
.fs0_c00376{font-size:53.133867pt;}
.y0_c00376{bottom:0.000000pt;}
.y2d_c00376{bottom:39.333333pt;}
.y2c_c00376{bottom:86.150667pt;}
.y2b_c00376{bottom:100.762667pt;}
.y2a_c00376{bottom:115.374667pt;}
.y29_c00376{bottom:129.986667pt;}
.y28_c00376{bottom:144.598667pt;}
.y27_c00376{bottom:159.210667pt;}
.y26_c00376{bottom:173.822667pt;}
.y25_c00376{bottom:188.434667pt;}
.y24_c00376{bottom:203.046667pt;}
.y23_c00376{bottom:217.658667pt;}
.y22_c00376{bottom:232.270667pt;}
.y21_c00376{bottom:261.493333pt;}
.y20_c00376{bottom:276.105333pt;}
.y1f_c00376{bottom:290.717333pt;}
.y1e_c00376{bottom:319.941333pt;}
.y1d_c00376{bottom:334.553333pt;}
.y1c_c00376{bottom:349.165333pt;}
.y1b_c00376{bottom:363.777333pt;}
.y1a_c00376{bottom:378.389333pt;}
.y19_c00376{bottom:393.000000pt;}
.y18_c00376{bottom:407.612000pt;}
.y17_c00376{bottom:451.448000pt;}
.y16_c00376{bottom:466.060000pt;}
.y15_c00376{bottom:480.672000pt;}
.y14_c00376{bottom:495.284000pt;}
.y13_c00376{bottom:509.896000pt;}
.y12_c00376{bottom:524.508000pt;}
.y11_c00376{bottom:539.118667pt;}
.y10_c00376{bottom:553.730667pt;}
.yf_c00376{bottom:568.342667pt;}
.ye_c00376{bottom:582.954667pt;}
.yd_c00376{bottom:597.566667pt;}
.yc_c00376{bottom:612.178667pt;}
.yb_c00376{bottom:626.790667pt;}
.ya_c00376{bottom:641.402667pt;}
.y9_c00376{bottom:656.014667pt;}
.y8_c00376{bottom:670.626667pt;}
.y7_c00376{bottom:699.849333pt;}
.y6_c00376{bottom:714.461333pt;}
.y5_c00376{bottom:758.297333pt;}
.y4_c00376{bottom:772.909333pt;}
.y3_c00376{bottom:787.189333pt;}
.y2_c00376{bottom:1015.049333pt;}
.y1_c00376{bottom:1030.989333pt;}
.h3_c00376{height:31.280681pt;}
.h4_c00376{height:32.006363pt;}
.h2_c00376{height:46.518078pt;}
.h0_c00376{height:1122.520000pt;}
.h1_c00376{height:1122.666667pt;}
.w0_c00376{width:793.706667pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:113.385333pt;}
.x2_c00376{left:121.886667pt;}
.x3_c00376{left:127.796000pt;}
.x4_c00376{left:157.340000pt;}
.x5_c00376{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efe4fe7f64d0ab9f6333ebe0.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.893555;font-style:normal;font-weight:normal;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_dfc4681854b3401fe07cb75a.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.083496;font-style:normal;font-weight:normal;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_368fe5bab6c2128ad9de346f.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.014648;font-style:normal;font-weight:normal;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_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00377{font-family:ff5_c00377;line-height:1.048828;font-style: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;}
.ls3_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.087998px;}
.ls2_c00377{letter-spacing:0.098482px;}
.ls1_c00377{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00377{word-spacing:-26.575517px;}
.wsf_c00377{word-spacing:-26.487518px;}
.wsa_c00377{word-spacing:-20.622582px;}
.wsd_c00377{word-spacing:-20.503031px;}
.wsc_c00377{word-spacing:-20.084602px;}
.ws9_c00377{word-spacing:-19.606397px;}
.ws8_c00377{word-spacing:-18.889090px;}
.ws7_c00377{word-spacing:-18.829314px;}
.ws5_c00377{word-spacing:-18.769538px;}
.wsb_c00377{word-spacing:-16.498066px;}
.ws4_c00377{word-spacing:-14.943900px;}
.ws6_c00377{word-spacing:-10.050144px;}
.ws1_c00377{word-spacing:-9.988424px;}
.ws3_c00377{word-spacing:-9.987499px;}
.ws13_c00377{word-spacing:0.000000px;}
.ws10_c00377{word-spacing:0.043999px;}
.wse_c00377{word-spacing:0.175997px;}
.ws12_c00377{word-spacing:0.213446px;}
.ws11_c00377{word-spacing:0.219446px;}
.ws0_c00377{word-spacing:43.038600px;}
._5_c00377{margin-left:-4.394160px;}
._3_c00377{margin-left:-3.227882px;}
._0_c00377{margin-left:-1.549390px;}
._6_c00377{width:1.005737px;}
._2_c00377{width:13.751378px;}
._1_c00377{width:19.935816px;}
._4_c00377{width:27.065616px;}
.fc5_c00377{color:rgb(79,153,5);}
.fc3_c00377{color:rgb(33,74,135);}
.fc2_c00377{color:rgb(143,89,3);}
.fc4_c00377{color:rgb(207,92,0);}
.fc1_c00377{color:rgb(6,69,173);}
.fc0_c00377{color:rgb(0,0,0);}
.fs2_c00377{font-size:43.999200px;}
.fs1_c00377{font-size:59.775600px;}
.fs0_c00377{font-size:86.077200px;}
.y0_c00377{bottom:0.000000px;}
.y20_c00377{bottom:44.250000px;}
.y1f_c00377{bottom:82.051500px;}
.y1e_c00377{bottom:98.490000px;}
.y1d_c00377{bottom:114.927000px;}
.y1c_c00377{bottom:147.804000px;}
.y1b_c00377{bottom:164.242500px;}
.y1a_c00377{bottom:197.119500px;}
.y19_c00377{bottom:213.558000px;}
.y18_c00377{bottom:229.996500px;}
.y17_c00377{bottom:246.435000px;}
.y16_c00377{bottom:279.310500px;}
.y15_c00377{bottom:295.749000px;}
.y14_c00377{bottom:312.187500px;}
.y13_c00377{bottom:328.626000px;}
.y12_c00377{bottom:345.064500px;}
.y11_c00377{bottom:361.503000px;}
.y10_c00377{bottom:377.941500px;}
.yf_c00377{bottom:394.380000px;}
.ye_c00377{bottom:410.445000px;}
.yd_c00377{bottom:458.839500px;}
.yc_c00377{bottom:476.772000px;}
.yb_c00377{bottom:494.704500px;}
.ya_c00377{bottom:512.637000px;}
.y9_c00377{bottom:530.571000px;}
.y8_c00377{bottom:548.503500px;}
.y7_c00377{bottom:566.436000px;}
.y6_c00377{bottom:584.368500px;}
.y5_c00377{bottom:611.355000px;}
.y4_c00377{bottom:638.341500px;}
.y3_c00377{bottom:665.326500px;}
.y2_c00377{bottom:692.313000px;}
.y1_c00377{bottom:734.712000px;}
.h5_c00377{height:35.190766px;}
.h6_c00377{height:36.007158px;}
.h3_c00377{height:40.511979px;}
.h4_c00377{height:52.332837px;}
.h2_c00377{height:58.337477px;}
.h0_c00377{height:1262.835000px;}
.h1_c00377{height:1263.000000px;}
.w0_c00377{width:892.920000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:127.558500px;}
.x2_c00377{left:137.122500px;}
.x3_c00377{left:435.249000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls3_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.078221pt;}
.ls2_c00377{letter-spacing:0.087539pt;}
.ls1_c00377{letter-spacing:0.092873pt;}
.ws2_c00377{word-spacing:-23.622682pt;}
.wsf_c00377{word-spacing:-23.544461pt;}
.wsa_c00377{word-spacing:-18.331184pt;}
.wsd_c00377{word-spacing:-18.224916pt;}
.wsc_c00377{word-spacing:-17.852979pt;}
.ws9_c00377{word-spacing:-17.427908pt;}
.ws8_c00377{word-spacing:-16.790302pt;}
.ws7_c00377{word-spacing:-16.737168pt;}
.ws5_c00377{word-spacing:-16.684034pt;}
.wsb_c00377{word-spacing:-14.664947pt;}
.ws4_c00377{word-spacing:-13.283467pt;}
.ws6_c00377{word-spacing:-8.933461pt;}
.ws1_c00377{word-spacing:-8.878599pt;}
.ws3_c00377{word-spacing:-8.877777pt;}
.ws13_c00377{word-spacing:0.000000pt;}
.ws10_c00377{word-spacing:0.039110pt;}
.wse_c00377{word-spacing:0.156442pt;}
.ws12_c00377{word-spacing:0.189730pt;}
.ws11_c00377{word-spacing:0.195063pt;}
.ws0_c00377{word-spacing:38.256533pt;}
._5_c00377{margin-left:-3.905920pt;}
._3_c00377{margin-left:-2.869229pt;}
._0_c00377{margin-left:-1.377235pt;}
._6_c00377{width:0.893988pt;}
._2_c00377{width:12.223447pt;}
._1_c00377{width:17.720725pt;}
._4_c00377{width:24.058325pt;}
.fs2_c00377{font-size:39.110400pt;}
.fs1_c00377{font-size:53.133867pt;}
.fs0_c00377{font-size:76.513067pt;}
.y0_c00377{bottom:0.000000pt;}
.y20_c00377{bottom:39.333333pt;}
.y1f_c00377{bottom:72.934667pt;}
.y1e_c00377{bottom:87.546667pt;}
.y1d_c00377{bottom:102.157333pt;}
.y1c_c00377{bottom:131.381333pt;}
.y1b_c00377{bottom:145.993333pt;}
.y1a_c00377{bottom:175.217333pt;}
.y19_c00377{bottom:189.829333pt;}
.y18_c00377{bottom:204.441333pt;}
.y17_c00377{bottom:219.053333pt;}
.y16_c00377{bottom:248.276000pt;}
.y15_c00377{bottom:262.888000pt;}
.y14_c00377{bottom:277.500000pt;}
.y13_c00377{bottom:292.112000pt;}
.y12_c00377{bottom:306.724000pt;}
.y11_c00377{bottom:321.336000pt;}
.y10_c00377{bottom:335.948000pt;}
.yf_c00377{bottom:350.560000pt;}
.ye_c00377{bottom:364.840000pt;}
.yd_c00377{bottom:407.857333pt;}
.yc_c00377{bottom:423.797333pt;}
.yb_c00377{bottom:439.737333pt;}
.ya_c00377{bottom:455.677333pt;}
.y9_c00377{bottom:471.618667pt;}
.y8_c00377{bottom:487.558667pt;}
.y7_c00377{bottom:503.498667pt;}
.y6_c00377{bottom:519.438667pt;}
.y5_c00377{bottom:543.426667pt;}
.y4_c00377{bottom:567.414667pt;}
.y3_c00377{bottom:591.401333pt;}
.y2_c00377{bottom:615.389333pt;}
.y1_c00377{bottom:653.077333pt;}
.h5_c00377{height:31.280681pt;}
.h6_c00377{height:32.006363pt;}
.h3_c00377{height:36.010648pt;}
.h4_c00377{height:46.518078pt;}
.h2_c00377{height:51.855535pt;}
.h0_c00377{height:1122.520000pt;}
.h1_c00377{height:1122.666667pt;}
.w0_c00377{width:793.706667pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:113.385333pt;}
.x2_c00377{left:121.886667pt;}
.x3_c00377{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0be958eceeea7cd2f06ee10.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.014648;font-style:normal;font-weight:normal;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_8850fe2af04550e8ccd4f6d3.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.048828;font-style:normal;font-weight:normal;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_e6c5a996e83c5bf5e276ad64.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls3_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.087998px;}
.ls2_c00378{letter-spacing:0.098482px;}
.ls1_c00378{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00378{word-spacing:-26.487518px;}
.ws5_c00378{word-spacing:0.000000px;}
.ws4_c00378{word-spacing:0.043999px;}
.ws3_c00378{word-spacing:0.053933px;}
.ws6_c00378{word-spacing:0.056767px;}
.ws0_c00378{word-spacing:0.175997px;}
.ws7_c00378{word-spacing:0.213446px;}
._0_c00378{width:1.077888px;}
._1_c00378{width:80.122543px;}
.fc5_c00378{color:rgb(0,0,207);}
.fc4_c00378{color:rgb(79,153,5);}
.fc3_c00378{color:rgb(33,74,135);}
.fc2_c00378{color:rgb(207,92,0);}
.fc1_c00378{color:rgb(0,0,0);}
.fc0_c00378{color:rgb(143,89,3);}
.fs0_c00378{font-size:43.999200px;}
.fs1_c00378{font-size:59.775600px;}
.y0_c00378{bottom:0.000000px;}
.y31_c00378{bottom:44.250000px;}
.y30_c00378{bottom:288.630000px;}
.y2f_c00378{bottom:305.068500px;}
.y2e_c00378{bottom:321.507000px;}
.y2d_c00378{bottom:337.945500px;}
.y2c_c00378{bottom:354.384000px;}
.y2b_c00378{bottom:370.822500px;}
.y2a_c00378{bottom:387.259500px;}
.y29_c00378{bottom:403.698000px;}
.y28_c00378{bottom:420.136500px;}
.y27_c00378{bottom:436.575000px;}
.y26_c00378{bottom:453.013500px;}
.y25_c00378{bottom:485.890500px;}
.y24_c00378{bottom:502.329000px;}
.y23_c00378{bottom:518.767500px;}
.y22_c00378{bottom:551.643000px;}
.y21_c00378{bottom:568.081500px;}
.y20_c00378{bottom:584.520000px;}
.y1f_c00378{bottom:600.958500px;}
.y1e_c00378{bottom:617.397000px;}
.y1d_c00378{bottom:633.835500px;}
.y1c_c00378{bottom:650.274000px;}
.y1b_c00378{bottom:666.712500px;}
.y1a_c00378{bottom:683.151000px;}
.y19_c00378{bottom:699.589500px;}
.y18_c00378{bottom:716.028000px;}
.y17_c00378{bottom:732.465000px;}
.y16_c00378{bottom:748.903500px;}
.y15_c00378{bottom:765.342000px;}
.y14_c00378{bottom:781.780500px;}
.y13_c00378{bottom:798.219000px;}
.y12_c00378{bottom:814.657500px;}
.y11_c00378{bottom:831.096000px;}
.y10_c00378{bottom:847.534500px;}
.yf_c00378{bottom:863.973000px;}
.ye_c00378{bottom:880.411500px;}
.yd_c00378{bottom:896.848500px;}
.yc_c00378{bottom:913.287000px;}
.yb_c00378{bottom:929.725500px;}
.ya_c00378{bottom:962.602500px;}
.y9_c00378{bottom:979.041000px;}
.y8_c00378{bottom:995.479500px;}
.y7_c00378{bottom:1044.795000px;}
.y6_c00378{bottom:1061.232000px;}
.y5_c00378{bottom:1094.109000px;}
.y4_c00378{bottom:1110.547500px;}
.y3_c00378{bottom:1126.986000px;}
.y2_c00378{bottom:1143.424500px;}
.y1_c00378{bottom:1159.863000px;}
.h2_c00378{height:35.190766px;}
.h3_c00378{height:36.007158px;}
.h4_c00378{height:52.332837px;}
.h0_c00378{height:1262.835000px;}
.h1_c00378{height:1263.000000px;}
.w0_c00378{width:892.920000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:137.122500px;}
.x2_c00378{left:143.770500px;}
.x6_c00378{left:177.007500px;}
.x5_c00378{left:203.596500px;}
.x3_c00378{left:216.891000px;}
.x4_c00378{left:276.715500px;}
.x7_c00378{left:435.249000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls3_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.078221pt;}
.ls2_c00378{letter-spacing:0.087539pt;}
.ls1_c00378{letter-spacing:0.092873pt;}
.ws1_c00378{word-spacing:-23.622682pt;}
.ws2_c00378{word-spacing:-23.544461pt;}
.ws5_c00378{word-spacing:0.000000pt;}
.ws4_c00378{word-spacing:0.039110pt;}
.ws3_c00378{word-spacing:0.047940pt;}
.ws6_c00378{word-spacing:0.050460pt;}
.ws0_c00378{word-spacing:0.156442pt;}
.ws7_c00378{word-spacing:0.189730pt;}
._0_c00378{width:0.958123pt;}
._1_c00378{width:71.220038pt;}
.fs0_c00378{font-size:39.110400pt;}
.fs1_c00378{font-size:53.133867pt;}
.y0_c00378{bottom:0.000000pt;}
.y31_c00378{bottom:39.333333pt;}
.y30_c00378{bottom:256.560000pt;}
.y2f_c00378{bottom:271.172000pt;}
.y2e_c00378{bottom:285.784000pt;}
.y2d_c00378{bottom:300.396000pt;}
.y2c_c00378{bottom:315.008000pt;}
.y2b_c00378{bottom:329.620000pt;}
.y2a_c00378{bottom:344.230667pt;}
.y29_c00378{bottom:358.842667pt;}
.y28_c00378{bottom:373.454667pt;}
.y27_c00378{bottom:388.066667pt;}
.y26_c00378{bottom:402.678667pt;}
.y25_c00378{bottom:431.902667pt;}
.y24_c00378{bottom:446.514667pt;}
.y23_c00378{bottom:461.126667pt;}
.y22_c00378{bottom:490.349333pt;}
.y21_c00378{bottom:504.961333pt;}
.y20_c00378{bottom:519.573333pt;}
.y1f_c00378{bottom:534.185333pt;}
.y1e_c00378{bottom:548.797333pt;}
.y1d_c00378{bottom:563.409333pt;}
.y1c_c00378{bottom:578.021333pt;}
.y1b_c00378{bottom:592.633333pt;}
.y1a_c00378{bottom:607.245333pt;}
.y19_c00378{bottom:621.857333pt;}
.y18_c00378{bottom:636.469333pt;}
.y17_c00378{bottom:651.080000pt;}
.y16_c00378{bottom:665.692000pt;}
.y15_c00378{bottom:680.304000pt;}
.y14_c00378{bottom:694.916000pt;}
.y13_c00378{bottom:709.528000pt;}
.y12_c00378{bottom:724.140000pt;}
.y11_c00378{bottom:738.752000pt;}
.y10_c00378{bottom:753.364000pt;}
.yf_c00378{bottom:767.976000pt;}
.ye_c00378{bottom:782.588000pt;}
.yd_c00378{bottom:797.198667pt;}
.yc_c00378{bottom:811.810667pt;}
.yb_c00378{bottom:826.422667pt;}
.ya_c00378{bottom:855.646667pt;}
.y9_c00378{bottom:870.258667pt;}
.y8_c00378{bottom:884.870667pt;}
.y7_c00378{bottom:928.706667pt;}
.y6_c00378{bottom:943.317333pt;}
.y5_c00378{bottom:972.541333pt;}
.y4_c00378{bottom:987.153333pt;}
.y3_c00378{bottom:1001.765333pt;}
.y2_c00378{bottom:1016.377333pt;}
.y1_c00378{bottom:1030.989333pt;}
.h2_c00378{height:31.280681pt;}
.h3_c00378{height:32.006363pt;}
.h4_c00378{height:46.518078pt;}
.h0_c00378{height:1122.520000pt;}
.h1_c00378{height:1122.666667pt;}
.w0_c00378{width:793.706667pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:121.886667pt;}
.x2_c00378{left:127.796000pt;}
.x6_c00378{left:157.340000pt;}
.x5_c00378{left:180.974667pt;}
.x3_c00378{left:192.792000pt;}
.x4_c00378{left:245.969333pt;}
.x7_c00378{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_beb994b05fbc0e93b7998ef3.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.893555;font-style:normal;font-weight:normal;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_2e1abbac9c0c2a26d6001841.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.083496;font-style:normal;font-weight:normal;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_110eb86c000851b5c1a71f8a.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.048828;font-style: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;}
.ls3_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.087998px;}
.ls2_c00379{letter-spacing:0.098482px;}
.ls1_c00379{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00379{word-spacing:-33.713438px;}
.ws2_c00379{word-spacing:-26.575517px;}
.wse_c00379{word-spacing:-26.487518px;}
.ws9_c00379{word-spacing:-21.553319px;}
.ws8_c00379{word-spacing:-21.519216px;}
.ws5_c00379{word-spacing:-18.769538px;}
.ws7_c00379{word-spacing:-16.019861px;}
.ws4_c00379{word-spacing:-14.943900px;}
.wsa_c00379{word-spacing:-14.107042px;}
.wsb_c00379{word-spacing:-12.074671px;}
.ws1_c00379{word-spacing:-9.988424px;}
.ws3_c00379{word-spacing:-9.987499px;}
.ws6_c00379{word-spacing:-4.536144px;}
.ws12_c00379{word-spacing:0.000000px;}
.wsf_c00379{word-spacing:0.043999px;}
.ws15_c00379{word-spacing:0.056767px;}
.ws13_c00379{word-spacing:0.073250px;}
.ws14_c00379{word-spacing:0.083734px;}
.wsd_c00379{word-spacing:0.175997px;}
.ws16_c00379{word-spacing:0.202963px;}
.ws10_c00379{word-spacing:0.213446px;}
.ws11_c00379{word-spacing:0.219446px;}
.ws0_c00379{word-spacing:43.038600px;}
._3_c00379{margin-left:-3.825638px;}
._0_c00379{margin-left:-1.549390px;}
._4_c00379{width:1.005737px;}
._1_c00379{width:19.935816px;}
._2_c00379{width:40.109428px;}
._6_c00379{width:53.283031px;}
._5_c00379{width:79.858548px;}
._7_c00379{width:133.452408px;}
.fc6_c00379{color:rgb(0,0,207);}
.fc5_c00379{color:rgb(79,153,5);}
.fc3_c00379{color:rgb(33,74,135);}
.fc2_c00379{color:rgb(143,89,3);}
.fc4_c00379{color:rgb(207,92,0);}
.fc1_c00379{color:rgb(6,69,173);}
.fc0_c00379{color:rgb(0,0,0);}
.fs2_c00379{font-size:43.999200px;}
.fs1_c00379{font-size:59.775600px;}
.fs0_c00379{font-size:86.077200px;}
.y0_c00379{bottom:0.000000px;}
.y20_c00379{bottom:44.250000px;}
.y1f_c00379{bottom:86.982000px;}
.y1e_c00379{bottom:103.420500px;}
.y1d_c00379{bottom:119.859000px;}
.y1c_c00379{bottom:136.297500px;}
.y1b_c00379{bottom:152.736000px;}
.y1a_c00379{bottom:169.174500px;}
.y19_c00379{bottom:185.613000px;}
.y18_c00379{bottom:202.051500px;}
.y17_c00379{bottom:218.490000px;}
.y16_c00379{bottom:234.927000px;}
.y15_c00379{bottom:251.365500px;}
.y14_c00379{bottom:267.804000px;}
.y13_c00379{bottom:284.242500px;}
.y12_c00379{bottom:300.681000px;}
.y11_c00379{bottom:317.119500px;}
.y10_c00379{bottom:349.996500px;}
.yf_c00379{bottom:366.435000px;}
.ye_c00379{bottom:415.749000px;}
.yd_c00379{bottom:432.187500px;}
.yc_c00379{bottom:448.252500px;}
.yb_c00379{bottom:493.890000px;}
.ya_c00379{bottom:511.822500px;}
.y9_c00379{bottom:529.756500px;}
.y8_c00379{bottom:547.689000px;}
.y7_c00379{bottom:565.621500px;}
.y6_c00379{bottom:583.554000px;}
.y5_c00379{bottom:610.633500px;}
.y4_c00379{bottom:637.714500px;}
.y3_c00379{bottom:664.794000px;}
.y2_c00379{bottom:691.873500px;}
.y1_c00379{bottom:734.407500px;}
.h5_c00379{height:35.190766px;}
.h6_c00379{height:36.007158px;}
.h3_c00379{height:40.511979px;}
.h4_c00379{height:52.332837px;}
.h2_c00379{height:58.337477px;}
.h0_c00379{height:1262.835000px;}
.h1_c00379{height:1263.000000px;}
.w0_c00379{width:892.920000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:127.558500px;}
.x2_c00379{left:137.122500px;}
.x3_c00379{left:143.770500px;}
.x4_c00379{left:435.249000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls3_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.078221pt;}
.ls2_c00379{letter-spacing:0.087539pt;}
.ls1_c00379{letter-spacing:0.092873pt;}
.wsc_c00379{word-spacing:-29.967501pt;}
.ws2_c00379{word-spacing:-23.622682pt;}
.wse_c00379{word-spacing:-23.544461pt;}
.ws9_c00379{word-spacing:-19.158506pt;}
.ws8_c00379{word-spacing:-19.128192pt;}
.ws5_c00379{word-spacing:-16.684034pt;}
.ws7_c00379{word-spacing:-14.239876pt;}
.ws4_c00379{word-spacing:-13.283467pt;}
.wsa_c00379{word-spacing:-12.539593pt;}
.wsb_c00379{word-spacing:-10.733041pt;}
.ws1_c00379{word-spacing:-8.878599pt;}
.ws3_c00379{word-spacing:-8.877777pt;}
.ws6_c00379{word-spacing:-4.032128pt;}
.ws12_c00379{word-spacing:0.000000pt;}
.wsf_c00379{word-spacing:0.039110pt;}
.ws15_c00379{word-spacing:0.050460pt;}
.ws13_c00379{word-spacing:0.065111pt;}
.ws14_c00379{word-spacing:0.074430pt;}
.wsd_c00379{word-spacing:0.156442pt;}
.ws16_c00379{word-spacing:0.180412pt;}
.ws10_c00379{word-spacing:0.189730pt;}
.ws11_c00379{word-spacing:0.195063pt;}
.ws0_c00379{word-spacing:38.256533pt;}
._3_c00379{margin-left:-3.400567pt;}
._0_c00379{margin-left:-1.377235pt;}
._4_c00379{width:0.893988pt;}
._1_c00379{width:17.720725pt;}
._2_c00379{width:35.652825pt;}
._6_c00379{width:47.362694pt;}
._5_c00379{width:70.985376pt;}
._7_c00379{width:118.624363pt;}
.fs2_c00379{font-size:39.110400pt;}
.fs1_c00379{font-size:53.133867pt;}
.fs0_c00379{font-size:76.513067pt;}
.y0_c00379{bottom:0.000000pt;}
.y20_c00379{bottom:39.333333pt;}
.y1f_c00379{bottom:77.317333pt;}
.y1e_c00379{bottom:91.929333pt;}
.y1d_c00379{bottom:106.541333pt;}
.y1c_c00379{bottom:121.153333pt;}
.y1b_c00379{bottom:135.765333pt;}
.y1a_c00379{bottom:150.377333pt;}
.y19_c00379{bottom:164.989333pt;}
.y18_c00379{bottom:179.601333pt;}
.y17_c00379{bottom:194.213333pt;}
.y16_c00379{bottom:208.824000pt;}
.y15_c00379{bottom:223.436000pt;}
.y14_c00379{bottom:238.048000pt;}
.y13_c00379{bottom:252.660000pt;}
.y12_c00379{bottom:267.272000pt;}
.y11_c00379{bottom:281.884000pt;}
.y10_c00379{bottom:311.108000pt;}
.yf_c00379{bottom:325.720000pt;}
.ye_c00379{bottom:369.554667pt;}
.yd_c00379{bottom:384.166667pt;}
.yc_c00379{bottom:398.446667pt;}
.yb_c00379{bottom:439.013333pt;}
.ya_c00379{bottom:454.953333pt;}
.y9_c00379{bottom:470.894667pt;}
.y8_c00379{bottom:486.834667pt;}
.y7_c00379{bottom:502.774667pt;}
.y6_c00379{bottom:518.714667pt;}
.y5_c00379{bottom:542.785333pt;}
.y4_c00379{bottom:566.857333pt;}
.y3_c00379{bottom:590.928000pt;}
.y2_c00379{bottom:614.998667pt;}
.y1_c00379{bottom:652.806667pt;}
.h5_c00379{height:31.280681pt;}
.h6_c00379{height:32.006363pt;}
.h3_c00379{height:36.010648pt;}
.h4_c00379{height:46.518078pt;}
.h2_c00379{height:51.855535pt;}
.h0_c00379{height:1122.520000pt;}
.h1_c00379{height:1122.666667pt;}
.w0_c00379{width:793.706667pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:113.385333pt;}
.x2_c00379{left:121.886667pt;}
.x3_c00379{left:127.796000pt;}
.x4_c00379{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a7a87875525c2e15b8dc18d.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.048828;font-style:normal;font-weight:normal;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_57533ad4443fb1220167f9ab.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.014648;font-style:normal;font-weight:normal;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_b128193bac671a705066131b.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_471110f64222729344220869.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.102051;font-style: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;}
.ls4_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.087998px;}
.ls2_c00380{letter-spacing:0.098482px;}
.ls3_c00380{letter-spacing:0.104482px;}
.ls1_c00380{letter-spacing:26.690482px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00380{word-spacing:-26.575517px;}
.ws4_c00380{word-spacing:-26.487518px;}
.wse_c00380{word-spacing:-21.553319px;}
.wsd_c00380{word-spacing:-21.519216px;}
.wsa_c00380{word-spacing:-18.769538px;}
.wsc_c00380{word-spacing:-17.633802px;}
.ws9_c00380{word-spacing:-14.943900px;}
.wsf_c00380{word-spacing:-14.107042px;}
.ws7_c00380{word-spacing:-9.988424px;}
.ws8_c00380{word-spacing:-9.987499px;}
.wsb_c00380{word-spacing:-7.686144px;}
.ws3_c00380{word-spacing:0.000000px;}
.ws0_c00380{word-spacing:0.043999px;}
.ws5_c00380{word-spacing:0.213446px;}
.ws1_c00380{word-spacing:0.219446px;}
.ws6_c00380{word-spacing:43.038600px;}
._2_c00380{margin-left:-1.549390px;}
._1_c00380{width:1.041538px;}
._3_c00380{width:19.935816px;}
._0_c00380{width:80.122543px;}
.fc5_c00380{color:rgb(79,153,5);}
.fc4_c00380{color:rgb(143,89,3);}
.fc3_c00380{color:rgb(0,0,0);}
.fc6_c00380{color:rgb(6,69,173);}
.fc2_c00380{color:rgb(207,92,0);}
.fc1_c00380{color:rgb(0,0,207);}
.fc0_c00380{color:rgb(33,74,135);}
.fs0_c00380{font-size:43.999200px;}
.fs2_c00380{font-size:59.775600px;}
.fs1_c00380{font-size:86.077200px;}
.y0_c00380{bottom:0.000000px;}
.y1f_c00380{bottom:44.250000px;}
.y1e_c00380{bottom:82.051500px;}
.y1d_c00380{bottom:99.984000px;}
.y1c_c00380{bottom:117.916500px;}
.y1b_c00380{bottom:144.757500px;}
.y1a_c00380{bottom:171.597000px;}
.y19_c00380{bottom:198.438000px;}
.y18_c00380{bottom:225.277500px;}
.y17_c00380{bottom:267.492000px;}
.y16_c00380{bottom:732.465000px;}
.y15_c00380{bottom:748.903500px;}
.y14_c00380{bottom:765.342000px;}
.y13_c00380{bottom:781.780500px;}
.y12_c00380{bottom:798.219000px;}
.y11_c00380{bottom:814.657500px;}
.y10_c00380{bottom:831.096000px;}
.yf_c00380{bottom:847.534500px;}
.ye_c00380{bottom:863.973000px;}
.yd_c00380{bottom:880.411500px;}
.yc_c00380{bottom:896.848500px;}
.yb_c00380{bottom:929.725500px;}
.ya_c00380{bottom:946.164000px;}
.y9_c00380{bottom:962.602500px;}
.y8_c00380{bottom:995.479500px;}
.y7_c00380{bottom:1011.918000px;}
.y6_c00380{bottom:1028.356500px;}
.y5_c00380{bottom:1044.795000px;}
.y4_c00380{bottom:1061.232000px;}
.y3_c00380{bottom:1077.670500px;}
.y2_c00380{bottom:1094.109000px;}
.y1_c00380{bottom:1159.863000px;}
.h3_c00380{height:35.190766px;}
.h2_c00380{height:36.007158px;}
.h5_c00380{height:40.511979px;}
.h6_c00380{height:52.332837px;}
.h4_c00380{height:58.337477px;}
.h0_c00380{height:1262.835000px;}
.h1_c00380{height:1263.000000px;}
.w0_c00380{width:892.920000px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x4_c00380{left:127.558500px;}
.x2_c00380{left:137.122500px;}
.x1_c00380{left:143.770500px;}
.x3_c00380{left:177.007500px;}
.x5_c00380{left:435.249000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls4_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.078221pt;}
.ls2_c00380{letter-spacing:0.087539pt;}
.ls3_c00380{letter-spacing:0.092873pt;}
.ls1_c00380{letter-spacing:23.724873pt;}
.ws2_c00380{word-spacing:-23.622682pt;}
.ws4_c00380{word-spacing:-23.544461pt;}
.wse_c00380{word-spacing:-19.158506pt;}
.wsd_c00380{word-spacing:-19.128192pt;}
.wsa_c00380{word-spacing:-16.684034pt;}
.wsc_c00380{word-spacing:-15.674491pt;}
.ws9_c00380{word-spacing:-13.283467pt;}
.wsf_c00380{word-spacing:-12.539593pt;}
.ws7_c00380{word-spacing:-8.878599pt;}
.ws8_c00380{word-spacing:-8.877777pt;}
.wsb_c00380{word-spacing:-6.832128pt;}
.ws3_c00380{word-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.039110pt;}
.ws5_c00380{word-spacing:0.189730pt;}
.ws1_c00380{word-spacing:0.195063pt;}
.ws6_c00380{word-spacing:38.256533pt;}
._2_c00380{margin-left:-1.377235pt;}
._1_c00380{width:0.925811pt;}
._3_c00380{width:17.720725pt;}
._0_c00380{width:71.220038pt;}
.fs0_c00380{font-size:39.110400pt;}
.fs2_c00380{font-size:53.133867pt;}
.fs1_c00380{font-size:76.513067pt;}
.y0_c00380{bottom:0.000000pt;}
.y1f_c00380{bottom:39.333333pt;}
.y1e_c00380{bottom:72.934667pt;}
.y1d_c00380{bottom:88.874667pt;}
.y1c_c00380{bottom:104.814667pt;}
.y1b_c00380{bottom:128.673333pt;}
.y1a_c00380{bottom:152.530667pt;}
.y19_c00380{bottom:176.389333pt;}
.y18_c00380{bottom:200.246667pt;}
.y17_c00380{bottom:237.770667pt;}
.y16_c00380{bottom:651.080000pt;}
.y15_c00380{bottom:665.692000pt;}
.y14_c00380{bottom:680.304000pt;}
.y13_c00380{bottom:694.916000pt;}
.y12_c00380{bottom:709.528000pt;}
.y11_c00380{bottom:724.140000pt;}
.y10_c00380{bottom:738.752000pt;}
.yf_c00380{bottom:753.364000pt;}
.ye_c00380{bottom:767.976000pt;}
.yd_c00380{bottom:782.588000pt;}
.yc_c00380{bottom:797.198667pt;}
.yb_c00380{bottom:826.422667pt;}
.ya_c00380{bottom:841.034667pt;}
.y9_c00380{bottom:855.646667pt;}
.y8_c00380{bottom:884.870667pt;}
.y7_c00380{bottom:899.482667pt;}
.y6_c00380{bottom:914.094667pt;}
.y5_c00380{bottom:928.706667pt;}
.y4_c00380{bottom:943.317333pt;}
.y3_c00380{bottom:957.929333pt;}
.y2_c00380{bottom:972.541333pt;}
.y1_c00380{bottom:1030.989333pt;}
.h3_c00380{height:31.280681pt;}
.h2_c00380{height:32.006363pt;}
.h5_c00380{height:36.010648pt;}
.h6_c00380{height:46.518078pt;}
.h4_c00380{height:51.855535pt;}
.h0_c00380{height:1122.520000pt;}
.h1_c00380{height:1122.666667pt;}
.w0_c00380{width:793.706667pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x4_c00380{left:113.385333pt;}
.x2_c00380{left:121.886667pt;}
.x1_c00380{left:127.796000pt;}
.x3_c00380{left:157.340000pt;}
.x5_c00380{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61b6f8ba39dea814887fba52.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.102051;font-style:normal;font-weight:normal;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_fc7ebe232fd744a15c7f47a6.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_91da46fe306ef6af91f4bcaa.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls4_c00381{letter-spacing:0.000000px;}
.ls1_c00381{letter-spacing:0.087998px;}
.ls2_c00381{letter-spacing:0.098482px;}
.ls0_c00381{letter-spacing:0.104482px;}
.ls3_c00381{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00381{word-spacing:-33.713438px;}
.ws5_c00381{word-spacing:-26.575517px;}
.ws4_c00381{word-spacing:-26.487518px;}
.ws1_c00381{word-spacing:-18.769538px;}
.ws0_c00381{word-spacing:-12.074671px;}
.ws9_c00381{word-spacing:0.000000px;}
.ws6_c00381{word-spacing:0.043999px;}
.wsc_c00381{word-spacing:0.056767px;}
.wsa_c00381{word-spacing:0.073250px;}
.wsb_c00381{word-spacing:0.083734px;}
.ws3_c00381{word-spacing:0.175997px;}
.wsd_c00381{word-spacing:0.202963px;}
.ws7_c00381{word-spacing:0.213446px;}
.ws8_c00381{word-spacing:0.219446px;}
._1_c00381{margin-left:-3.825638px;}
._2_c00381{width:1.005737px;}
._0_c00381{width:40.109428px;}
._4_c00381{width:53.283031px;}
._3_c00381{width:79.858548px;}
._5_c00381{width:133.452408px;}
.fc5_c00381{color:rgb(0,0,207);}
.fc4_c00381{color:rgb(79,153,5);}
.fc3_c00381{color:rgb(207,92,0);}
.fc2_c00381{color:rgb(33,74,135);}
.fc1_c00381{color:rgb(143,89,3);}
.fc0_c00381{color:rgb(0,0,0);}
.fs1_c00381{font-size:43.999200px;}
.fs0_c00381{font-size:59.775600px;}
.y0_c00381{bottom:0.000000px;}
.y2e_c00381{bottom:44.250000px;}
.y2d_c00381{bottom:96.919500px;}
.y2c_c00381{bottom:113.358000px;}
.y2b_c00381{bottom:129.796500px;}
.y2a_c00381{bottom:146.235000px;}
.y29_c00381{bottom:162.673500px;}
.y28_c00381{bottom:179.112000px;}
.y27_c00381{bottom:195.550500px;}
.y26_c00381{bottom:211.989000px;}
.y25_c00381{bottom:228.427500px;}
.y24_c00381{bottom:244.866000px;}
.y23_c00381{bottom:261.304500px;}
.y22_c00381{bottom:294.180000px;}
.y21_c00381{bottom:310.618500px;}
.y20_c00381{bottom:327.057000px;}
.y1f_c00381{bottom:359.934000px;}
.y1e_c00381{bottom:376.372500px;}
.y1d_c00381{bottom:392.811000px;}
.y1c_c00381{bottom:409.249500px;}
.y1b_c00381{bottom:425.688000px;}
.y1a_c00381{bottom:442.125000px;}
.y19_c00381{bottom:458.563500px;}
.y18_c00381{bottom:524.317500px;}
.y17_c00381{bottom:540.756000px;}
.y16_c00381{bottom:557.194500px;}
.y15_c00381{bottom:573.633000px;}
.y14_c00381{bottom:590.071500px;}
.y13_c00381{bottom:606.508500px;}
.y12_c00381{bottom:622.947000px;}
.y11_c00381{bottom:639.385500px;}
.y10_c00381{bottom:655.824000px;}
.yf_c00381{bottom:672.262500px;}
.ye_c00381{bottom:688.701000px;}
.yd_c00381{bottom:705.139500px;}
.yc_c00381{bottom:721.578000px;}
.yb_c00381{bottom:738.016500px;}
.ya_c00381{bottom:754.455000px;}
.y9_c00381{bottom:770.893500px;}
.y8_c00381{bottom:803.769000px;}
.y7_c00381{bottom:820.207500px;}
.y6_c00381{bottom:869.523000px;}
.y5_c00381{bottom:885.961500px;}
.y4_c00381{bottom:902.026500px;}
.y3_c00381{bottom:1123.998000px;}
.y2_c00381{bottom:1141.930500px;}
.y1_c00381{bottom:1159.863000px;}
.h3_c00381{height:35.190766px;}
.h4_c00381{height:36.007158px;}
.h2_c00381{height:52.332837px;}
.h0_c00381{height:1262.835000px;}
.h1_c00381{height:1263.000000px;}
.w0_c00381{width:892.920000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:127.558500px;}
.x2_c00381{left:137.122500px;}
.x3_c00381{left:143.770500px;}
.x4_c00381{left:177.007500px;}
.x5_c00381{left:435.249000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls4_c00381{letter-spacing:0.000000pt;}
.ls1_c00381{letter-spacing:0.078221pt;}
.ls2_c00381{letter-spacing:0.087539pt;}
.ls0_c00381{letter-spacing:0.092873pt;}
.ls3_c00381{letter-spacing:23.724873pt;}
.ws2_c00381{word-spacing:-29.967501pt;}
.ws5_c00381{word-spacing:-23.622682pt;}
.ws4_c00381{word-spacing:-23.544461pt;}
.ws1_c00381{word-spacing:-16.684034pt;}
.ws0_c00381{word-spacing:-10.733041pt;}
.ws9_c00381{word-spacing:0.000000pt;}
.ws6_c00381{word-spacing:0.039110pt;}
.wsc_c00381{word-spacing:0.050460pt;}
.wsa_c00381{word-spacing:0.065111pt;}
.wsb_c00381{word-spacing:0.074430pt;}
.ws3_c00381{word-spacing:0.156442pt;}
.wsd_c00381{word-spacing:0.180412pt;}
.ws7_c00381{word-spacing:0.189730pt;}
.ws8_c00381{word-spacing:0.195063pt;}
._1_c00381{margin-left:-3.400567pt;}
._2_c00381{width:0.893988pt;}
._0_c00381{width:35.652825pt;}
._4_c00381{width:47.362694pt;}
._3_c00381{width:70.985376pt;}
._5_c00381{width:118.624363pt;}
.fs1_c00381{font-size:39.110400pt;}
.fs0_c00381{font-size:53.133867pt;}
.y0_c00381{bottom:0.000000pt;}
.y2e_c00381{bottom:39.333333pt;}
.y2d_c00381{bottom:86.150667pt;}
.y2c_c00381{bottom:100.762667pt;}
.y2b_c00381{bottom:115.374667pt;}
.y2a_c00381{bottom:129.986667pt;}
.y29_c00381{bottom:144.598667pt;}
.y28_c00381{bottom:159.210667pt;}
.y27_c00381{bottom:173.822667pt;}
.y26_c00381{bottom:188.434667pt;}
.y25_c00381{bottom:203.046667pt;}
.y24_c00381{bottom:217.658667pt;}
.y23_c00381{bottom:232.270667pt;}
.y22_c00381{bottom:261.493333pt;}
.y21_c00381{bottom:276.105333pt;}
.y20_c00381{bottom:290.717333pt;}
.y1f_c00381{bottom:319.941333pt;}
.y1e_c00381{bottom:334.553333pt;}
.y1d_c00381{bottom:349.165333pt;}
.y1c_c00381{bottom:363.777333pt;}
.y1b_c00381{bottom:378.389333pt;}
.y1a_c00381{bottom:393.000000pt;}
.y19_c00381{bottom:407.612000pt;}
.y18_c00381{bottom:466.060000pt;}
.y17_c00381{bottom:480.672000pt;}
.y16_c00381{bottom:495.284000pt;}
.y15_c00381{bottom:509.896000pt;}
.y14_c00381{bottom:524.508000pt;}
.y13_c00381{bottom:539.118667pt;}
.y12_c00381{bottom:553.730667pt;}
.y11_c00381{bottom:568.342667pt;}
.y10_c00381{bottom:582.954667pt;}
.yf_c00381{bottom:597.566667pt;}
.ye_c00381{bottom:612.178667pt;}
.yd_c00381{bottom:626.790667pt;}
.yc_c00381{bottom:641.402667pt;}
.yb_c00381{bottom:656.014667pt;}
.ya_c00381{bottom:670.626667pt;}
.y9_c00381{bottom:685.238667pt;}
.y8_c00381{bottom:714.461333pt;}
.y7_c00381{bottom:729.073333pt;}
.y6_c00381{bottom:772.909333pt;}
.y5_c00381{bottom:787.521333pt;}
.y4_c00381{bottom:801.801333pt;}
.y3_c00381{bottom:999.109333pt;}
.y2_c00381{bottom:1015.049333pt;}
.y1_c00381{bottom:1030.989333pt;}
.h3_c00381{height:31.280681pt;}
.h4_c00381{height:32.006363pt;}
.h2_c00381{height:46.518078pt;}
.h0_c00381{height:1122.520000pt;}
.h1_c00381{height:1122.666667pt;}
.w0_c00381{width:793.706667pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:113.385333pt;}
.x2_c00381{left:121.886667pt;}
.x3_c00381{left:127.796000pt;}
.x4_c00381{left:157.340000pt;}
.x5_c00381{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e295c8e4dd05840df1c3604c.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.893555;font-style:normal;font-weight:normal;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_c1eafa11275efb9bf0635c61.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.083496;font-style:normal;font-weight:normal;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_53804a5aadb78a98800a3f2a.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.048828;font-style: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;}
.ls3_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.087998px;}
.ls2_c00382{letter-spacing:0.098482px;}
.ls1_c00382{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00382{word-spacing:-33.713438px;}
.ws2_c00382{word-spacing:-26.575517px;}
.wse_c00382{word-spacing:-26.487518px;}
.ws9_c00382{word-spacing:-21.553319px;}
.ws8_c00382{word-spacing:-21.519216px;}
.ws5_c00382{word-spacing:-18.769538px;}
.ws7_c00382{word-spacing:-17.633802px;}
.ws4_c00382{word-spacing:-14.943900px;}
.wsa_c00382{word-spacing:-14.107042px;}
.wsb_c00382{word-spacing:-12.074671px;}
.ws1_c00382{word-spacing:-9.988424px;}
.ws3_c00382{word-spacing:-9.987499px;}
.ws6_c00382{word-spacing:-7.686144px;}
.ws12_c00382{word-spacing:0.000000px;}
.wsf_c00382{word-spacing:0.043999px;}
.ws15_c00382{word-spacing:0.056767px;}
.ws13_c00382{word-spacing:0.073250px;}
.ws14_c00382{word-spacing:0.083734px;}
.wsd_c00382{word-spacing:0.175997px;}
.ws16_c00382{word-spacing:0.202963px;}
.ws10_c00382{word-spacing:0.213446px;}
.ws11_c00382{word-spacing:0.219446px;}
.ws0_c00382{word-spacing:43.038600px;}
._3_c00382{margin-left:-3.825638px;}
._0_c00382{margin-left:-1.549390px;}
._4_c00382{width:1.005737px;}
._1_c00382{width:19.935816px;}
._2_c00382{width:40.109428px;}
._6_c00382{width:53.283031px;}
._5_c00382{width:79.858548px;}
._7_c00382{width:133.452408px;}
.fc6_c00382{color:rgb(0,0,207);}
.fc5_c00382{color:rgb(79,153,5);}
.fc3_c00382{color:rgb(33,74,135);}
.fc2_c00382{color:rgb(143,89,3);}
.fc4_c00382{color:rgb(207,92,0);}
.fc1_c00382{color:rgb(6,69,173);}
.fc0_c00382{color:rgb(0,0,0);}
.fs2_c00382{font-size:43.999200px;}
.fs1_c00382{font-size:59.775600px;}
.fs0_c00382{font-size:86.077200px;}
.y0_c00382{bottom:0.000000px;}
.y20_c00382{bottom:44.250000px;}
.y1f_c00382{bottom:86.982000px;}
.y1e_c00382{bottom:103.420500px;}
.y1d_c00382{bottom:119.859000px;}
.y1c_c00382{bottom:136.297500px;}
.y1b_c00382{bottom:152.736000px;}
.y1a_c00382{bottom:169.174500px;}
.y19_c00382{bottom:185.613000px;}
.y18_c00382{bottom:202.051500px;}
.y17_c00382{bottom:218.490000px;}
.y16_c00382{bottom:234.927000px;}
.y15_c00382{bottom:251.365500px;}
.y14_c00382{bottom:267.804000px;}
.y13_c00382{bottom:284.242500px;}
.y12_c00382{bottom:300.681000px;}
.y11_c00382{bottom:317.119500px;}
.y10_c00382{bottom:349.996500px;}
.yf_c00382{bottom:366.435000px;}
.ye_c00382{bottom:415.749000px;}
.yd_c00382{bottom:432.187500px;}
.yc_c00382{bottom:448.252500px;}
.yb_c00382{bottom:493.890000px;}
.ya_c00382{bottom:511.822500px;}
.y9_c00382{bottom:529.756500px;}
.y8_c00382{bottom:547.689000px;}
.y7_c00382{bottom:565.621500px;}
.y6_c00382{bottom:583.554000px;}
.y5_c00382{bottom:610.633500px;}
.y4_c00382{bottom:637.714500px;}
.y3_c00382{bottom:664.794000px;}
.y2_c00382{bottom:691.873500px;}
.y1_c00382{bottom:734.407500px;}
.h5_c00382{height:35.190766px;}
.h6_c00382{height:36.007158px;}
.h3_c00382{height:40.511979px;}
.h4_c00382{height:52.332837px;}
.h2_c00382{height:58.337477px;}
.h0_c00382{height:1262.835000px;}
.h1_c00382{height:1263.000000px;}
.w0_c00382{width:892.920000px;}
.w1_c00382{width:893.250000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:127.558500px;}
.x2_c00382{left:137.122500px;}
.x3_c00382{left:143.770500px;}
.x4_c00382{left:435.249000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls3_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.078221pt;}
.ls2_c00382{letter-spacing:0.087539pt;}
.ls1_c00382{letter-spacing:0.092873pt;}
.wsc_c00382{word-spacing:-29.967501pt;}
.ws2_c00382{word-spacing:-23.622682pt;}
.wse_c00382{word-spacing:-23.544461pt;}
.ws9_c00382{word-spacing:-19.158506pt;}
.ws8_c00382{word-spacing:-19.128192pt;}
.ws5_c00382{word-spacing:-16.684034pt;}
.ws7_c00382{word-spacing:-15.674491pt;}
.ws4_c00382{word-spacing:-13.283467pt;}
.wsa_c00382{word-spacing:-12.539593pt;}
.wsb_c00382{word-spacing:-10.733041pt;}
.ws1_c00382{word-spacing:-8.878599pt;}
.ws3_c00382{word-spacing:-8.877777pt;}
.ws6_c00382{word-spacing:-6.832128pt;}
.ws12_c00382{word-spacing:0.000000pt;}
.wsf_c00382{word-spacing:0.039110pt;}
.ws15_c00382{word-spacing:0.050460pt;}
.ws13_c00382{word-spacing:0.065111pt;}
.ws14_c00382{word-spacing:0.074430pt;}
.wsd_c00382{word-spacing:0.156442pt;}
.ws16_c00382{word-spacing:0.180412pt;}
.ws10_c00382{word-spacing:0.189730pt;}
.ws11_c00382{word-spacing:0.195063pt;}
.ws0_c00382{word-spacing:38.256533pt;}
._3_c00382{margin-left:-3.400567pt;}
._0_c00382{margin-left:-1.377235pt;}
._4_c00382{width:0.893988pt;}
._1_c00382{width:17.720725pt;}
._2_c00382{width:35.652825pt;}
._6_c00382{width:47.362694pt;}
._5_c00382{width:70.985376pt;}
._7_c00382{width:118.624363pt;}
.fs2_c00382{font-size:39.110400pt;}
.fs1_c00382{font-size:53.133867pt;}
.fs0_c00382{font-size:76.513067pt;}
.y0_c00382{bottom:0.000000pt;}
.y20_c00382{bottom:39.333333pt;}
.y1f_c00382{bottom:77.317333pt;}
.y1e_c00382{bottom:91.929333pt;}
.y1d_c00382{bottom:106.541333pt;}
.y1c_c00382{bottom:121.153333pt;}
.y1b_c00382{bottom:135.765333pt;}
.y1a_c00382{bottom:150.377333pt;}
.y19_c00382{bottom:164.989333pt;}
.y18_c00382{bottom:179.601333pt;}
.y17_c00382{bottom:194.213333pt;}
.y16_c00382{bottom:208.824000pt;}
.y15_c00382{bottom:223.436000pt;}
.y14_c00382{bottom:238.048000pt;}
.y13_c00382{bottom:252.660000pt;}
.y12_c00382{bottom:267.272000pt;}
.y11_c00382{bottom:281.884000pt;}
.y10_c00382{bottom:311.108000pt;}
.yf_c00382{bottom:325.720000pt;}
.ye_c00382{bottom:369.554667pt;}
.yd_c00382{bottom:384.166667pt;}
.yc_c00382{bottom:398.446667pt;}
.yb_c00382{bottom:439.013333pt;}
.ya_c00382{bottom:454.953333pt;}
.y9_c00382{bottom:470.894667pt;}
.y8_c00382{bottom:486.834667pt;}
.y7_c00382{bottom:502.774667pt;}
.y6_c00382{bottom:518.714667pt;}
.y5_c00382{bottom:542.785333pt;}
.y4_c00382{bottom:566.857333pt;}
.y3_c00382{bottom:590.928000pt;}
.y2_c00382{bottom:614.998667pt;}
.y1_c00382{bottom:652.806667pt;}
.h5_c00382{height:31.280681pt;}
.h6_c00382{height:32.006363pt;}
.h3_c00382{height:36.010648pt;}
.h4_c00382{height:46.518078pt;}
.h2_c00382{height:51.855535pt;}
.h0_c00382{height:1122.520000pt;}
.h1_c00382{height:1122.666667pt;}
.w0_c00382{width:793.706667pt;}
.w1_c00382{width:794.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:113.385333pt;}
.x2_c00382{left:121.886667pt;}
.x3_c00382{left:127.796000pt;}
.x4_c00382{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c2cf8136afdd22774dabab9.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.048828;font-style:normal;font-weight:normal;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_569de74a0d4f1ac3946cbc89.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.014648;font-style:normal;font-weight:normal;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_726b4653abf1185bc6ad8424.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_cadda4bfc1e5a26bbf0ccfe1.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.102051;font-style: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;}
.ls4_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.087998px;}
.ls2_c00383{letter-spacing:0.098482px;}
.ls3_c00383{letter-spacing:0.104482px;}
.ls1_c00383{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00383{word-spacing:-26.575517px;}
.ws4_c00383{word-spacing:-26.487518px;}
.wse_c00383{word-spacing:-21.553319px;}
.wsd_c00383{word-spacing:-21.519216px;}
.wsc_c00383{word-spacing:-19.247743px;}
.wsa_c00383{word-spacing:-18.769538px;}
.ws9_c00383{word-spacing:-14.943900px;}
.wsf_c00383{word-spacing:-14.107042px;}
.wsb_c00383{word-spacing:-10.230144px;}
.ws7_c00383{word-spacing:-9.988424px;}
.ws8_c00383{word-spacing:-9.987499px;}
.ws3_c00383{word-spacing:0.000000px;}
.ws0_c00383{word-spacing:0.043999px;}
.ws5_c00383{word-spacing:0.213446px;}
.ws1_c00383{word-spacing:0.219446px;}
.ws6_c00383{word-spacing:43.038600px;}
._2_c00383{margin-left:-1.549390px;}
._1_c00383{width:1.041538px;}
._3_c00383{width:19.935816px;}
._0_c00383{width:53.547026px;}
.fc5_c00383{color:rgb(79,153,5);}
.fc4_c00383{color:rgb(143,89,3);}
.fc3_c00383{color:rgb(0,0,0);}
.fc6_c00383{color:rgb(6,69,173);}
.fc2_c00383{color:rgb(207,92,0);}
.fc1_c00383{color:rgb(0,0,207);}
.fc0_c00383{color:rgb(33,74,135);}
.fs0_c00383{font-size:43.999200px;}
.fs2_c00383{font-size:59.775600px;}
.fs1_c00383{font-size:86.077200px;}
.y0_c00383{bottom:0.000000px;}
.y1f_c00383{bottom:44.250000px;}
.y1e_c00383{bottom:82.051500px;}
.y1d_c00383{bottom:99.984000px;}
.y1c_c00383{bottom:117.916500px;}
.y1b_c00383{bottom:144.757500px;}
.y1a_c00383{bottom:171.597000px;}
.y19_c00383{bottom:198.438000px;}
.y18_c00383{bottom:225.277500px;}
.y17_c00383{bottom:267.492000px;}
.y16_c00383{bottom:732.465000px;}
.y15_c00383{bottom:748.903500px;}
.y14_c00383{bottom:765.342000px;}
.y13_c00383{bottom:781.780500px;}
.y12_c00383{bottom:798.219000px;}
.y11_c00383{bottom:814.657500px;}
.y10_c00383{bottom:831.096000px;}
.yf_c00383{bottom:847.534500px;}
.ye_c00383{bottom:863.973000px;}
.yd_c00383{bottom:880.411500px;}
.yc_c00383{bottom:896.848500px;}
.yb_c00383{bottom:929.725500px;}
.ya_c00383{bottom:946.164000px;}
.y9_c00383{bottom:962.602500px;}
.y8_c00383{bottom:995.479500px;}
.y7_c00383{bottom:1011.918000px;}
.y6_c00383{bottom:1028.356500px;}
.y5_c00383{bottom:1044.795000px;}
.y4_c00383{bottom:1061.232000px;}
.y3_c00383{bottom:1077.670500px;}
.y2_c00383{bottom:1094.109000px;}
.y1_c00383{bottom:1159.863000px;}
.h3_c00383{height:35.190766px;}
.h2_c00383{height:36.007158px;}
.h5_c00383{height:40.511979px;}
.h6_c00383{height:52.332837px;}
.h4_c00383{height:58.337477px;}
.h0_c00383{height:1262.835000px;}
.h1_c00383{height:1263.000000px;}
.w0_c00383{width:892.920000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x4_c00383{left:127.558500px;}
.x2_c00383{left:137.122500px;}
.x1_c00383{left:143.770500px;}
.x3_c00383{left:177.007500px;}
.x5_c00383{left:435.249000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls4_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.078221pt;}
.ls2_c00383{letter-spacing:0.087539pt;}
.ls3_c00383{letter-spacing:0.092873pt;}
.ls1_c00383{letter-spacing:23.724873pt;}
.ws2_c00383{word-spacing:-23.622682pt;}
.ws4_c00383{word-spacing:-23.544461pt;}
.wse_c00383{word-spacing:-19.158506pt;}
.wsd_c00383{word-spacing:-19.128192pt;}
.wsc_c00383{word-spacing:-17.109105pt;}
.wsa_c00383{word-spacing:-16.684034pt;}
.ws9_c00383{word-spacing:-13.283467pt;}
.wsf_c00383{word-spacing:-12.539593pt;}
.wsb_c00383{word-spacing:-9.093461pt;}
.ws7_c00383{word-spacing:-8.878599pt;}
.ws8_c00383{word-spacing:-8.877777pt;}
.ws3_c00383{word-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.039110pt;}
.ws5_c00383{word-spacing:0.189730pt;}
.ws1_c00383{word-spacing:0.195063pt;}
.ws6_c00383{word-spacing:38.256533pt;}
._2_c00383{margin-left:-1.377235pt;}
._1_c00383{width:0.925811pt;}
._3_c00383{width:17.720725pt;}
._0_c00383{width:47.597357pt;}
.fs0_c00383{font-size:39.110400pt;}
.fs2_c00383{font-size:53.133867pt;}
.fs1_c00383{font-size:76.513067pt;}
.y0_c00383{bottom:0.000000pt;}
.y1f_c00383{bottom:39.333333pt;}
.y1e_c00383{bottom:72.934667pt;}
.y1d_c00383{bottom:88.874667pt;}
.y1c_c00383{bottom:104.814667pt;}
.y1b_c00383{bottom:128.673333pt;}
.y1a_c00383{bottom:152.530667pt;}
.y19_c00383{bottom:176.389333pt;}
.y18_c00383{bottom:200.246667pt;}
.y17_c00383{bottom:237.770667pt;}
.y16_c00383{bottom:651.080000pt;}
.y15_c00383{bottom:665.692000pt;}
.y14_c00383{bottom:680.304000pt;}
.y13_c00383{bottom:694.916000pt;}
.y12_c00383{bottom:709.528000pt;}
.y11_c00383{bottom:724.140000pt;}
.y10_c00383{bottom:738.752000pt;}
.yf_c00383{bottom:753.364000pt;}
.ye_c00383{bottom:767.976000pt;}
.yd_c00383{bottom:782.588000pt;}
.yc_c00383{bottom:797.198667pt;}
.yb_c00383{bottom:826.422667pt;}
.ya_c00383{bottom:841.034667pt;}
.y9_c00383{bottom:855.646667pt;}
.y8_c00383{bottom:884.870667pt;}
.y7_c00383{bottom:899.482667pt;}
.y6_c00383{bottom:914.094667pt;}
.y5_c00383{bottom:928.706667pt;}
.y4_c00383{bottom:943.317333pt;}
.y3_c00383{bottom:957.929333pt;}
.y2_c00383{bottom:972.541333pt;}
.y1_c00383{bottom:1030.989333pt;}
.h3_c00383{height:31.280681pt;}
.h2_c00383{height:32.006363pt;}
.h5_c00383{height:36.010648pt;}
.h6_c00383{height:46.518078pt;}
.h4_c00383{height:51.855535pt;}
.h0_c00383{height:1122.520000pt;}
.h1_c00383{height:1122.666667pt;}
.w0_c00383{width:793.706667pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x4_c00383{left:113.385333pt;}
.x2_c00383{left:121.886667pt;}
.x1_c00383{left:127.796000pt;}
.x3_c00383{left:157.340000pt;}
.x5_c00383{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0289b59ac46de9b099c93751.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.102051;font-style:normal;font-weight:normal;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_8e89105774f49ff958a19a6b.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_ff104716b7ff8f9f28cea313.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls4_c00384{letter-spacing:0.000000px;}
.ls1_c00384{letter-spacing:0.087998px;}
.ls2_c00384{letter-spacing:0.098482px;}
.ls0_c00384{letter-spacing:0.104482px;}
.ls3_c00384{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00384{word-spacing:-33.713438px;}
.ws5_c00384{word-spacing:-26.575517px;}
.ws4_c00384{word-spacing:-26.487518px;}
.ws1_c00384{word-spacing:-18.769538px;}
.ws0_c00384{word-spacing:-12.074671px;}
.ws9_c00384{word-spacing:0.000000px;}
.ws6_c00384{word-spacing:0.043999px;}
.wsc_c00384{word-spacing:0.056767px;}
.wsa_c00384{word-spacing:0.073250px;}
.wsb_c00384{word-spacing:0.083734px;}
.ws3_c00384{word-spacing:0.175997px;}
.wsd_c00384{word-spacing:0.202963px;}
.ws7_c00384{word-spacing:0.213446px;}
.ws8_c00384{word-spacing:0.219446px;}
._1_c00384{margin-left:-3.825638px;}
._2_c00384{width:1.005737px;}
._0_c00384{width:40.109428px;}
._4_c00384{width:53.283031px;}
._3_c00384{width:79.858548px;}
._5_c00384{width:133.452408px;}
.fc5_c00384{color:rgb(0,0,207);}
.fc4_c00384{color:rgb(79,153,5);}
.fc3_c00384{color:rgb(207,92,0);}
.fc2_c00384{color:rgb(33,74,135);}
.fc1_c00384{color:rgb(143,89,3);}
.fc0_c00384{color:rgb(0,0,0);}
.fs1_c00384{font-size:43.999200px;}
.fs0_c00384{font-size:59.775600px;}
.y0_c00384{bottom:0.000000px;}
.y2e_c00384{bottom:44.250000px;}
.y2d_c00384{bottom:96.919500px;}
.y2c_c00384{bottom:113.358000px;}
.y2b_c00384{bottom:129.796500px;}
.y2a_c00384{bottom:146.235000px;}
.y29_c00384{bottom:162.673500px;}
.y28_c00384{bottom:179.112000px;}
.y27_c00384{bottom:195.550500px;}
.y26_c00384{bottom:211.989000px;}
.y25_c00384{bottom:228.427500px;}
.y24_c00384{bottom:244.866000px;}
.y23_c00384{bottom:261.304500px;}
.y22_c00384{bottom:294.180000px;}
.y21_c00384{bottom:310.618500px;}
.y20_c00384{bottom:327.057000px;}
.y1f_c00384{bottom:359.934000px;}
.y1e_c00384{bottom:376.372500px;}
.y1d_c00384{bottom:392.811000px;}
.y1c_c00384{bottom:409.249500px;}
.y1b_c00384{bottom:425.688000px;}
.y1a_c00384{bottom:442.125000px;}
.y19_c00384{bottom:458.563500px;}
.y18_c00384{bottom:524.317500px;}
.y17_c00384{bottom:540.756000px;}
.y16_c00384{bottom:557.194500px;}
.y15_c00384{bottom:573.633000px;}
.y14_c00384{bottom:590.071500px;}
.y13_c00384{bottom:606.508500px;}
.y12_c00384{bottom:622.947000px;}
.y11_c00384{bottom:639.385500px;}
.y10_c00384{bottom:655.824000px;}
.yf_c00384{bottom:672.262500px;}
.ye_c00384{bottom:688.701000px;}
.yd_c00384{bottom:705.139500px;}
.yc_c00384{bottom:721.578000px;}
.yb_c00384{bottom:738.016500px;}
.ya_c00384{bottom:754.455000px;}
.y9_c00384{bottom:770.893500px;}
.y8_c00384{bottom:803.769000px;}
.y7_c00384{bottom:820.207500px;}
.y6_c00384{bottom:869.523000px;}
.y5_c00384{bottom:885.961500px;}
.y4_c00384{bottom:902.026500px;}
.y3_c00384{bottom:1123.998000px;}
.y2_c00384{bottom:1141.930500px;}
.y1_c00384{bottom:1159.863000px;}
.h3_c00384{height:35.190766px;}
.h4_c00384{height:36.007158px;}
.h2_c00384{height:52.332837px;}
.h0_c00384{height:1262.835000px;}
.h1_c00384{height:1263.000000px;}
.w0_c00384{width:892.920000px;}
.w1_c00384{width:893.250000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:127.558500px;}
.x2_c00384{left:137.122500px;}
.x3_c00384{left:143.770500px;}
.x4_c00384{left:177.007500px;}
.x5_c00384{left:435.249000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls4_c00384{letter-spacing:0.000000pt;}
.ls1_c00384{letter-spacing:0.078221pt;}
.ls2_c00384{letter-spacing:0.087539pt;}
.ls0_c00384{letter-spacing:0.092873pt;}
.ls3_c00384{letter-spacing:23.724873pt;}
.ws2_c00384{word-spacing:-29.967501pt;}
.ws5_c00384{word-spacing:-23.622682pt;}
.ws4_c00384{word-spacing:-23.544461pt;}
.ws1_c00384{word-spacing:-16.684034pt;}
.ws0_c00384{word-spacing:-10.733041pt;}
.ws9_c00384{word-spacing:0.000000pt;}
.ws6_c00384{word-spacing:0.039110pt;}
.wsc_c00384{word-spacing:0.050460pt;}
.wsa_c00384{word-spacing:0.065111pt;}
.wsb_c00384{word-spacing:0.074430pt;}
.ws3_c00384{word-spacing:0.156442pt;}
.wsd_c00384{word-spacing:0.180412pt;}
.ws7_c00384{word-spacing:0.189730pt;}
.ws8_c00384{word-spacing:0.195063pt;}
._1_c00384{margin-left:-3.400567pt;}
._2_c00384{width:0.893988pt;}
._0_c00384{width:35.652825pt;}
._4_c00384{width:47.362694pt;}
._3_c00384{width:70.985376pt;}
._5_c00384{width:118.624363pt;}
.fs1_c00384{font-size:39.110400pt;}
.fs0_c00384{font-size:53.133867pt;}
.y0_c00384{bottom:0.000000pt;}
.y2e_c00384{bottom:39.333333pt;}
.y2d_c00384{bottom:86.150667pt;}
.y2c_c00384{bottom:100.762667pt;}
.y2b_c00384{bottom:115.374667pt;}
.y2a_c00384{bottom:129.986667pt;}
.y29_c00384{bottom:144.598667pt;}
.y28_c00384{bottom:159.210667pt;}
.y27_c00384{bottom:173.822667pt;}
.y26_c00384{bottom:188.434667pt;}
.y25_c00384{bottom:203.046667pt;}
.y24_c00384{bottom:217.658667pt;}
.y23_c00384{bottom:232.270667pt;}
.y22_c00384{bottom:261.493333pt;}
.y21_c00384{bottom:276.105333pt;}
.y20_c00384{bottom:290.717333pt;}
.y1f_c00384{bottom:319.941333pt;}
.y1e_c00384{bottom:334.553333pt;}
.y1d_c00384{bottom:349.165333pt;}
.y1c_c00384{bottom:363.777333pt;}
.y1b_c00384{bottom:378.389333pt;}
.y1a_c00384{bottom:393.000000pt;}
.y19_c00384{bottom:407.612000pt;}
.y18_c00384{bottom:466.060000pt;}
.y17_c00384{bottom:480.672000pt;}
.y16_c00384{bottom:495.284000pt;}
.y15_c00384{bottom:509.896000pt;}
.y14_c00384{bottom:524.508000pt;}
.y13_c00384{bottom:539.118667pt;}
.y12_c00384{bottom:553.730667pt;}
.y11_c00384{bottom:568.342667pt;}
.y10_c00384{bottom:582.954667pt;}
.yf_c00384{bottom:597.566667pt;}
.ye_c00384{bottom:612.178667pt;}
.yd_c00384{bottom:626.790667pt;}
.yc_c00384{bottom:641.402667pt;}
.yb_c00384{bottom:656.014667pt;}
.ya_c00384{bottom:670.626667pt;}
.y9_c00384{bottom:685.238667pt;}
.y8_c00384{bottom:714.461333pt;}
.y7_c00384{bottom:729.073333pt;}
.y6_c00384{bottom:772.909333pt;}
.y5_c00384{bottom:787.521333pt;}
.y4_c00384{bottom:801.801333pt;}
.y3_c00384{bottom:999.109333pt;}
.y2_c00384{bottom:1015.049333pt;}
.y1_c00384{bottom:1030.989333pt;}
.h3_c00384{height:31.280681pt;}
.h4_c00384{height:32.006363pt;}
.h2_c00384{height:46.518078pt;}
.h0_c00384{height:1122.520000pt;}
.h1_c00384{height:1122.666667pt;}
.w0_c00384{width:793.706667pt;}
.w1_c00384{width:794.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:113.385333pt;}
.x2_c00384{left:121.886667pt;}
.x3_c00384{left:127.796000pt;}
.x4_c00384{left:157.340000pt;}
.x5_c00384{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_792c99ac03e4e7b48bebbfca.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.893555;font-style:normal;font-weight:normal;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_ba6325b13f308670701674b3.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.083496;font-style:normal;font-weight:normal;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_94bf9f909713f1a35ba6add3.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.048828;font-style: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;}
.ls3_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.087998px;}
.ls2_c00385{letter-spacing:0.098482px;}
.ls1_c00385{letter-spacing:0.104482px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00385{word-spacing:-26.575517px;}
.wsf_c00385{word-spacing:-26.487518px;}
.wsd_c00385{word-spacing:-20.503031px;}
.wsc_c00385{word-spacing:-20.084602px;}
.ws7_c00385{word-spacing:-19.486846px;}
.ws5_c00385{word-spacing:-18.769538px;}
.wsb_c00385{word-spacing:-16.498066px;}
.ws4_c00385{word-spacing:-14.943900px;}
.wsa_c00385{word-spacing:-14.645022px;}
.ws8_c00385{word-spacing:-12.791978px;}
.ws9_c00385{word-spacing:-11.536691px;}
.ws6_c00385{word-spacing:-10.356144px;}
.ws1_c00385{word-spacing:-9.988424px;}
.ws3_c00385{word-spacing:-9.987499px;}
.ws13_c00385{word-spacing:0.000000px;}
.ws10_c00385{word-spacing:0.043999px;}
.wse_c00385{word-spacing:0.175997px;}
.ws12_c00385{word-spacing:0.213446px;}
.ws11_c00385{word-spacing:0.219446px;}
.ws0_c00385{word-spacing:43.038600px;}
._2_c00385{margin-left:-6.580632px;}
._3_c00385{margin-left:-3.828814px;}
._0_c00385{margin-left:-1.549390px;}
._9_c00385{width:1.005737px;}
._1_c00385{width:19.935816px;}
._5_c00385{width:22.415850px;}
._8_c00385{width:27.065616px;}
._7_c00385{width:32.581454px;}
._4_c00385{width:37.736251px;}
._6_c00385{width:41.245164px;}
.fc5_c00385{color:rgb(79,153,5);}
.fc3_c00385{color:rgb(33,74,135);}
.fc2_c00385{color:rgb(143,89,3);}
.fc4_c00385{color:rgb(207,92,0);}
.fc1_c00385{color:rgb(6,69,173);}
.fc0_c00385{color:rgb(0,0,0);}
.fs2_c00385{font-size:43.999200px;}
.fs1_c00385{font-size:59.775600px;}
.fs0_c00385{font-size:86.077200px;}
.y0_c00385{bottom:0.000000px;}
.y20_c00385{bottom:44.250000px;}
.y1f_c00385{bottom:82.051500px;}
.y1e_c00385{bottom:98.490000px;}
.y1d_c00385{bottom:114.927000px;}
.y1c_c00385{bottom:147.804000px;}
.y1b_c00385{bottom:164.242500px;}
.y1a_c00385{bottom:197.119500px;}
.y19_c00385{bottom:213.558000px;}
.y18_c00385{bottom:229.996500px;}
.y17_c00385{bottom:246.435000px;}
.y16_c00385{bottom:279.310500px;}
.y15_c00385{bottom:295.749000px;}
.y14_c00385{bottom:312.187500px;}
.y13_c00385{bottom:328.626000px;}
.y12_c00385{bottom:345.064500px;}
.y11_c00385{bottom:361.503000px;}
.y10_c00385{bottom:377.941500px;}
.yf_c00385{bottom:394.380000px;}
.ye_c00385{bottom:410.445000px;}
.yd_c00385{bottom:458.839500px;}
.yc_c00385{bottom:476.772000px;}
.yb_c00385{bottom:494.704500px;}
.ya_c00385{bottom:512.637000px;}
.y9_c00385{bottom:530.571000px;}
.y8_c00385{bottom:548.503500px;}
.y7_c00385{bottom:566.436000px;}
.y6_c00385{bottom:584.368500px;}
.y5_c00385{bottom:611.355000px;}
.y4_c00385{bottom:638.341500px;}
.y3_c00385{bottom:665.326500px;}
.y2_c00385{bottom:692.313000px;}
.y1_c00385{bottom:734.712000px;}
.h5_c00385{height:35.190766px;}
.h6_c00385{height:36.007158px;}
.h3_c00385{height:40.511979px;}
.h4_c00385{height:52.332837px;}
.h2_c00385{height:58.337477px;}
.h0_c00385{height:1262.835000px;}
.h1_c00385{height:1263.000000px;}
.w0_c00385{width:892.920000px;}
.w1_c00385{width:893.250000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:127.558500px;}
.x2_c00385{left:137.122500px;}
.x3_c00385{left:435.249000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls3_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.078221pt;}
.ls2_c00385{letter-spacing:0.087539pt;}
.ls1_c00385{letter-spacing:0.092873pt;}
.ws2_c00385{word-spacing:-23.622682pt;}
.wsf_c00385{word-spacing:-23.544461pt;}
.wsd_c00385{word-spacing:-18.224916pt;}
.wsc_c00385{word-spacing:-17.852979pt;}
.ws7_c00385{word-spacing:-17.321641pt;}
.ws5_c00385{word-spacing:-16.684034pt;}
.wsb_c00385{word-spacing:-14.664947pt;}
.ws4_c00385{word-spacing:-13.283467pt;}
.wsa_c00385{word-spacing:-13.017797pt;}
.ws8_c00385{word-spacing:-11.370647pt;}
.ws9_c00385{word-spacing:-10.254836pt;}
.ws6_c00385{word-spacing:-9.205461pt;}
.ws1_c00385{word-spacing:-8.878599pt;}
.ws3_c00385{word-spacing:-8.877777pt;}
.ws13_c00385{word-spacing:0.000000pt;}
.ws10_c00385{word-spacing:0.039110pt;}
.wse_c00385{word-spacing:0.156442pt;}
.ws12_c00385{word-spacing:0.189730pt;}
.ws11_c00385{word-spacing:0.195063pt;}
.ws0_c00385{word-spacing:38.256533pt;}
._2_c00385{margin-left:-5.849451pt;}
._3_c00385{margin-left:-3.403390pt;}
._0_c00385{margin-left:-1.377235pt;}
._9_c00385{width:0.893988pt;}
._1_c00385{width:17.720725pt;}
._5_c00385{width:19.925200pt;}
._8_c00385{width:24.058325pt;}
._7_c00385{width:28.961293pt;}
._4_c00385{width:33.543334pt;}
._6_c00385{width:36.662368pt;}
.fs2_c00385{font-size:39.110400pt;}
.fs1_c00385{font-size:53.133867pt;}
.fs0_c00385{font-size:76.513067pt;}
.y0_c00385{bottom:0.000000pt;}
.y20_c00385{bottom:39.333333pt;}
.y1f_c00385{bottom:72.934667pt;}
.y1e_c00385{bottom:87.546667pt;}
.y1d_c00385{bottom:102.157333pt;}
.y1c_c00385{bottom:131.381333pt;}
.y1b_c00385{bottom:145.993333pt;}
.y1a_c00385{bottom:175.217333pt;}
.y19_c00385{bottom:189.829333pt;}
.y18_c00385{bottom:204.441333pt;}
.y17_c00385{bottom:219.053333pt;}
.y16_c00385{bottom:248.276000pt;}
.y15_c00385{bottom:262.888000pt;}
.y14_c00385{bottom:277.500000pt;}
.y13_c00385{bottom:292.112000pt;}
.y12_c00385{bottom:306.724000pt;}
.y11_c00385{bottom:321.336000pt;}
.y10_c00385{bottom:335.948000pt;}
.yf_c00385{bottom:350.560000pt;}
.ye_c00385{bottom:364.840000pt;}
.yd_c00385{bottom:407.857333pt;}
.yc_c00385{bottom:423.797333pt;}
.yb_c00385{bottom:439.737333pt;}
.ya_c00385{bottom:455.677333pt;}
.y9_c00385{bottom:471.618667pt;}
.y8_c00385{bottom:487.558667pt;}
.y7_c00385{bottom:503.498667pt;}
.y6_c00385{bottom:519.438667pt;}
.y5_c00385{bottom:543.426667pt;}
.y4_c00385{bottom:567.414667pt;}
.y3_c00385{bottom:591.401333pt;}
.y2_c00385{bottom:615.389333pt;}
.y1_c00385{bottom:653.077333pt;}
.h5_c00385{height:31.280681pt;}
.h6_c00385{height:32.006363pt;}
.h3_c00385{height:36.010648pt;}
.h4_c00385{height:46.518078pt;}
.h2_c00385{height:51.855535pt;}
.h0_c00385{height:1122.520000pt;}
.h1_c00385{height:1122.666667pt;}
.w0_c00385{width:793.706667pt;}
.w1_c00385{width:794.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:113.385333pt;}
.x2_c00385{left:121.886667pt;}
.x3_c00385{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5621b5d8b0ad4d391f81f50d.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.014648;font-style:normal;font-weight:normal;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_4ceef396a823010d142a2fbf.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_7103f025013492c0837bcd04.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls3_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.087998px;}
.ls2_c00386{letter-spacing:0.098482px;}
.ls1_c00386{letter-spacing:0.104482px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-26.575517px;}
.ws2_c00386{word-spacing:-26.487518px;}
.ws5_c00386{word-spacing:0.000000px;}
.ws4_c00386{word-spacing:0.043999px;}
.ws3_c00386{word-spacing:0.053933px;}
.ws6_c00386{word-spacing:0.056767px;}
.ws0_c00386{word-spacing:0.175997px;}
.ws7_c00386{word-spacing:0.213446px;}
._0_c00386{width:1.077888px;}
._1_c00386{width:53.547026px;}
.fc5_c00386{color:rgb(0,0,207);}
.fc4_c00386{color:rgb(79,153,5);}
.fc3_c00386{color:rgb(33,74,135);}
.fc2_c00386{color:rgb(207,92,0);}
.fc1_c00386{color:rgb(0,0,0);}
.fc0_c00386{color:rgb(143,89,3);}
.fs0_c00386{font-size:43.999200px;}
.fs1_c00386{font-size:59.775600px;}
.y0_c00386{bottom:0.000000px;}
.y32_c00386{bottom:44.250000px;}
.y31_c00386{bottom:255.753000px;}
.y30_c00386{bottom:272.191500px;}
.y2f_c00386{bottom:288.630000px;}
.y2e_c00386{bottom:305.068500px;}
.y2d_c00386{bottom:321.507000px;}
.y2c_c00386{bottom:337.945500px;}
.y2b_c00386{bottom:354.384000px;}
.y2a_c00386{bottom:370.822500px;}
.y29_c00386{bottom:387.259500px;}
.y28_c00386{bottom:403.698000px;}
.y27_c00386{bottom:420.136500px;}
.y26_c00386{bottom:453.013500px;}
.y25_c00386{bottom:469.452000px;}
.y24_c00386{bottom:485.890500px;}
.y23_c00386{bottom:518.767500px;}
.y22_c00386{bottom:535.206000px;}
.y21_c00386{bottom:551.643000px;}
.y20_c00386{bottom:568.081500px;}
.y1f_c00386{bottom:584.520000px;}
.y1e_c00386{bottom:600.958500px;}
.y1d_c00386{bottom:617.397000px;}
.y1c_c00386{bottom:633.835500px;}
.y1b_c00386{bottom:650.274000px;}
.y1a_c00386{bottom:666.712500px;}
.y19_c00386{bottom:683.151000px;}
.y18_c00386{bottom:699.589500px;}
.y17_c00386{bottom:716.028000px;}
.y16_c00386{bottom:732.465000px;}
.y15_c00386{bottom:748.903500px;}
.y14_c00386{bottom:765.342000px;}
.y13_c00386{bottom:781.780500px;}
.y12_c00386{bottom:798.219000px;}
.y11_c00386{bottom:814.657500px;}
.y10_c00386{bottom:831.096000px;}
.yf_c00386{bottom:847.534500px;}
.ye_c00386{bottom:863.973000px;}
.yd_c00386{bottom:880.411500px;}
.yc_c00386{bottom:896.848500px;}
.yb_c00386{bottom:946.164000px;}
.ya_c00386{bottom:962.602500px;}
.y9_c00386{bottom:979.041000px;}
.y8_c00386{bottom:995.479500px;}
.y7_c00386{bottom:1044.795000px;}
.y6_c00386{bottom:1061.232000px;}
.y5_c00386{bottom:1094.109000px;}
.y4_c00386{bottom:1110.547500px;}
.y3_c00386{bottom:1126.986000px;}
.y2_c00386{bottom:1143.424500px;}
.y1_c00386{bottom:1159.863000px;}
.h2_c00386{height:35.190766px;}
.h3_c00386{height:36.007158px;}
.h4_c00386{height:52.332837px;}
.h0_c00386{height:1262.835000px;}
.h1_c00386{height:1263.000000px;}
.w0_c00386{width:892.920000px;}
.w1_c00386{width:893.250000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:137.122500px;}
.x2_c00386{left:143.770500px;}
.x6_c00386{left:177.007500px;}
.x5_c00386{left:230.185500px;}
.x3_c00386{left:243.480000px;}
.x4_c00386{left:276.715500px;}
.x7_c00386{left:435.249000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls3_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.078221pt;}
.ls2_c00386{letter-spacing:0.087539pt;}
.ls1_c00386{letter-spacing:0.092873pt;}
.ws1_c00386{word-spacing:-23.622682pt;}
.ws2_c00386{word-spacing:-23.544461pt;}
.ws5_c00386{word-spacing:0.000000pt;}
.ws4_c00386{word-spacing:0.039110pt;}
.ws3_c00386{word-spacing:0.047940pt;}
.ws6_c00386{word-spacing:0.050460pt;}
.ws0_c00386{word-spacing:0.156442pt;}
.ws7_c00386{word-spacing:0.189730pt;}
._0_c00386{width:0.958123pt;}
._1_c00386{width:47.597357pt;}
.fs0_c00386{font-size:39.110400pt;}
.fs1_c00386{font-size:53.133867pt;}
.y0_c00386{bottom:0.000000pt;}
.y32_c00386{bottom:39.333333pt;}
.y31_c00386{bottom:227.336000pt;}
.y30_c00386{bottom:241.948000pt;}
.y2f_c00386{bottom:256.560000pt;}
.y2e_c00386{bottom:271.172000pt;}
.y2d_c00386{bottom:285.784000pt;}
.y2c_c00386{bottom:300.396000pt;}
.y2b_c00386{bottom:315.008000pt;}
.y2a_c00386{bottom:329.620000pt;}
.y29_c00386{bottom:344.230667pt;}
.y28_c00386{bottom:358.842667pt;}
.y27_c00386{bottom:373.454667pt;}
.y26_c00386{bottom:402.678667pt;}
.y25_c00386{bottom:417.290667pt;}
.y24_c00386{bottom:431.902667pt;}
.y23_c00386{bottom:461.126667pt;}
.y22_c00386{bottom:475.738667pt;}
.y21_c00386{bottom:490.349333pt;}
.y20_c00386{bottom:504.961333pt;}
.y1f_c00386{bottom:519.573333pt;}
.y1e_c00386{bottom:534.185333pt;}
.y1d_c00386{bottom:548.797333pt;}
.y1c_c00386{bottom:563.409333pt;}
.y1b_c00386{bottom:578.021333pt;}
.y1a_c00386{bottom:592.633333pt;}
.y19_c00386{bottom:607.245333pt;}
.y18_c00386{bottom:621.857333pt;}
.y17_c00386{bottom:636.469333pt;}
.y16_c00386{bottom:651.080000pt;}
.y15_c00386{bottom:665.692000pt;}
.y14_c00386{bottom:680.304000pt;}
.y13_c00386{bottom:694.916000pt;}
.y12_c00386{bottom:709.528000pt;}
.y11_c00386{bottom:724.140000pt;}
.y10_c00386{bottom:738.752000pt;}
.yf_c00386{bottom:753.364000pt;}
.ye_c00386{bottom:767.976000pt;}
.yd_c00386{bottom:782.588000pt;}
.yc_c00386{bottom:797.198667pt;}
.yb_c00386{bottom:841.034667pt;}
.ya_c00386{bottom:855.646667pt;}
.y9_c00386{bottom:870.258667pt;}
.y8_c00386{bottom:884.870667pt;}
.y7_c00386{bottom:928.706667pt;}
.y6_c00386{bottom:943.317333pt;}
.y5_c00386{bottom:972.541333pt;}
.y4_c00386{bottom:987.153333pt;}
.y3_c00386{bottom:1001.765333pt;}
.y2_c00386{bottom:1016.377333pt;}
.y1_c00386{bottom:1030.989333pt;}
.h2_c00386{height:31.280681pt;}
.h3_c00386{height:32.006363pt;}
.h4_c00386{height:46.518078pt;}
.h0_c00386{height:1122.520000pt;}
.h1_c00386{height:1122.666667pt;}
.w0_c00386{width:793.706667pt;}
.w1_c00386{width:794.000000pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:121.886667pt;}
.x2_c00386{left:127.796000pt;}
.x6_c00386{left:157.340000pt;}
.x5_c00386{left:204.609333pt;}
.x3_c00386{left:216.426667pt;}
.x4_c00386{left:245.969333pt;}
.x7_c00386{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cc167be67ba7a85a8d32c1c.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.893555;font-style:normal;font-weight:normal;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_4476a601d5e10f01e2f991f3.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.083496;font-style:normal;font-weight:normal;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_547a7dbb3b7fcba32a18b497.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.048828;font-style: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;}
.ls3_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:0.087998px;}
.ls2_c00387{letter-spacing:0.098482px;}
.ls1_c00387{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00387{word-spacing:-33.713438px;}
.ws2_c00387{word-spacing:-26.575517px;}
.wse_c00387{word-spacing:-26.487518px;}
.ws9_c00387{word-spacing:-21.553319px;}
.ws8_c00387{word-spacing:-21.519216px;}
.ws5_c00387{word-spacing:-18.769538px;}
.ws7_c00387{word-spacing:-16.019861px;}
.ws4_c00387{word-spacing:-14.943900px;}
.wsa_c00387{word-spacing:-14.107042px;}
.wsb_c00387{word-spacing:-12.074671px;}
.ws1_c00387{word-spacing:-9.988424px;}
.ws3_c00387{word-spacing:-9.987499px;}
.ws6_c00387{word-spacing:-4.536144px;}
.ws12_c00387{word-spacing:0.000000px;}
.wsf_c00387{word-spacing:0.043999px;}
.ws15_c00387{word-spacing:0.056767px;}
.ws13_c00387{word-spacing:0.073250px;}
.ws14_c00387{word-spacing:0.083734px;}
.wsd_c00387{word-spacing:0.175997px;}
.ws16_c00387{word-spacing:0.202963px;}
.ws10_c00387{word-spacing:0.213446px;}
.ws11_c00387{word-spacing:0.219446px;}
.ws0_c00387{word-spacing:43.038600px;}
._2_c00387{margin-left:-6.580632px;}
._4_c00387{margin-left:-3.825638px;}
._0_c00387{margin-left:-1.549390px;}
._5_c00387{width:1.005737px;}
._1_c00387{width:19.935816px;}
._3_c00387{width:40.109428px;}
._7_c00387{width:53.283031px;}
._6_c00387{width:79.858548px;}
._8_c00387{width:133.452408px;}
.fc6_c00387{color:rgb(0,0,207);}
.fc5_c00387{color:rgb(79,153,5);}
.fc3_c00387{color:rgb(33,74,135);}
.fc2_c00387{color:rgb(143,89,3);}
.fc4_c00387{color:rgb(207,92,0);}
.fc1_c00387{color:rgb(6,69,173);}
.fc0_c00387{color:rgb(0,0,0);}
.fs2_c00387{font-size:43.999200px;}
.fs1_c00387{font-size:59.775600px;}
.fs0_c00387{font-size:86.077200px;}
.y0_c00387{bottom:0.000000px;}
.y20_c00387{bottom:44.250000px;}
.y1f_c00387{bottom:86.982000px;}
.y1e_c00387{bottom:103.420500px;}
.y1d_c00387{bottom:119.859000px;}
.y1c_c00387{bottom:136.297500px;}
.y1b_c00387{bottom:152.736000px;}
.y1a_c00387{bottom:169.174500px;}
.y19_c00387{bottom:185.613000px;}
.y18_c00387{bottom:202.051500px;}
.y17_c00387{bottom:218.490000px;}
.y16_c00387{bottom:234.927000px;}
.y15_c00387{bottom:251.365500px;}
.y14_c00387{bottom:267.804000px;}
.y13_c00387{bottom:284.242500px;}
.y12_c00387{bottom:300.681000px;}
.y11_c00387{bottom:317.119500px;}
.y10_c00387{bottom:349.996500px;}
.yf_c00387{bottom:366.435000px;}
.ye_c00387{bottom:415.749000px;}
.yd_c00387{bottom:432.187500px;}
.yc_c00387{bottom:448.252500px;}
.yb_c00387{bottom:493.890000px;}
.ya_c00387{bottom:511.822500px;}
.y9_c00387{bottom:529.756500px;}
.y8_c00387{bottom:547.689000px;}
.y7_c00387{bottom:565.621500px;}
.y6_c00387{bottom:583.554000px;}
.y5_c00387{bottom:610.633500px;}
.y4_c00387{bottom:637.714500px;}
.y3_c00387{bottom:664.794000px;}
.y2_c00387{bottom:691.873500px;}
.y1_c00387{bottom:734.407500px;}
.h5_c00387{height:35.190766px;}
.h6_c00387{height:36.007158px;}
.h3_c00387{height:40.511979px;}
.h4_c00387{height:52.332837px;}
.h2_c00387{height:58.337477px;}
.h0_c00387{height:1262.835000px;}
.h1_c00387{height:1263.000000px;}
.w0_c00387{width:892.920000px;}
.w1_c00387{width:893.250000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:127.558500px;}
.x2_c00387{left:137.122500px;}
.x3_c00387{left:143.770500px;}
.x4_c00387{left:435.249000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls3_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:0.078221pt;}
.ls2_c00387{letter-spacing:0.087539pt;}
.ls1_c00387{letter-spacing:0.092873pt;}
.wsc_c00387{word-spacing:-29.967501pt;}
.ws2_c00387{word-spacing:-23.622682pt;}
.wse_c00387{word-spacing:-23.544461pt;}
.ws9_c00387{word-spacing:-19.158506pt;}
.ws8_c00387{word-spacing:-19.128192pt;}
.ws5_c00387{word-spacing:-16.684034pt;}
.ws7_c00387{word-spacing:-14.239876pt;}
.ws4_c00387{word-spacing:-13.283467pt;}
.wsa_c00387{word-spacing:-12.539593pt;}
.wsb_c00387{word-spacing:-10.733041pt;}
.ws1_c00387{word-spacing:-8.878599pt;}
.ws3_c00387{word-spacing:-8.877777pt;}
.ws6_c00387{word-spacing:-4.032128pt;}
.ws12_c00387{word-spacing:0.000000pt;}
.wsf_c00387{word-spacing:0.039110pt;}
.ws15_c00387{word-spacing:0.050460pt;}
.ws13_c00387{word-spacing:0.065111pt;}
.ws14_c00387{word-spacing:0.074430pt;}
.wsd_c00387{word-spacing:0.156442pt;}
.ws16_c00387{word-spacing:0.180412pt;}
.ws10_c00387{word-spacing:0.189730pt;}
.ws11_c00387{word-spacing:0.195063pt;}
.ws0_c00387{word-spacing:38.256533pt;}
._2_c00387{margin-left:-5.849451pt;}
._4_c00387{margin-left:-3.400567pt;}
._0_c00387{margin-left:-1.377235pt;}
._5_c00387{width:0.893988pt;}
._1_c00387{width:17.720725pt;}
._3_c00387{width:35.652825pt;}
._7_c00387{width:47.362694pt;}
._6_c00387{width:70.985376pt;}
._8_c00387{width:118.624363pt;}
.fs2_c00387{font-size:39.110400pt;}
.fs1_c00387{font-size:53.133867pt;}
.fs0_c00387{font-size:76.513067pt;}
.y0_c00387{bottom:0.000000pt;}
.y20_c00387{bottom:39.333333pt;}
.y1f_c00387{bottom:77.317333pt;}
.y1e_c00387{bottom:91.929333pt;}
.y1d_c00387{bottom:106.541333pt;}
.y1c_c00387{bottom:121.153333pt;}
.y1b_c00387{bottom:135.765333pt;}
.y1a_c00387{bottom:150.377333pt;}
.y19_c00387{bottom:164.989333pt;}
.y18_c00387{bottom:179.601333pt;}
.y17_c00387{bottom:194.213333pt;}
.y16_c00387{bottom:208.824000pt;}
.y15_c00387{bottom:223.436000pt;}
.y14_c00387{bottom:238.048000pt;}
.y13_c00387{bottom:252.660000pt;}
.y12_c00387{bottom:267.272000pt;}
.y11_c00387{bottom:281.884000pt;}
.y10_c00387{bottom:311.108000pt;}
.yf_c00387{bottom:325.720000pt;}
.ye_c00387{bottom:369.554667pt;}
.yd_c00387{bottom:384.166667pt;}
.yc_c00387{bottom:398.446667pt;}
.yb_c00387{bottom:439.013333pt;}
.ya_c00387{bottom:454.953333pt;}
.y9_c00387{bottom:470.894667pt;}
.y8_c00387{bottom:486.834667pt;}
.y7_c00387{bottom:502.774667pt;}
.y6_c00387{bottom:518.714667pt;}
.y5_c00387{bottom:542.785333pt;}
.y4_c00387{bottom:566.857333pt;}
.y3_c00387{bottom:590.928000pt;}
.y2_c00387{bottom:614.998667pt;}
.y1_c00387{bottom:652.806667pt;}
.h5_c00387{height:31.280681pt;}
.h6_c00387{height:32.006363pt;}
.h3_c00387{height:36.010648pt;}
.h4_c00387{height:46.518078pt;}
.h2_c00387{height:51.855535pt;}
.h0_c00387{height:1122.520000pt;}
.h1_c00387{height:1122.666667pt;}
.w0_c00387{width:793.706667pt;}
.w1_c00387{width:794.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:113.385333pt;}
.x2_c00387{left:121.886667pt;}
.x3_c00387{left:127.796000pt;}
.x4_c00387{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a1ac78e1d7e605c9e48788e.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.048828;font-style:normal;font-weight:normal;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_0a53a22a8fe260e69bc40213.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.014648;font-style:normal;font-weight:normal;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_0dc57893d611a09cfc7bb726.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_f878d9d9a6178dd0d24b4ce0.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.102051;font-style: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.000000px;}
.ls0_c00388{letter-spacing:0.087998px;}
.ls2_c00388{letter-spacing:0.098482px;}
.ls3_c00388{letter-spacing:0.104482px;}
.ls1_c00388{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00388{word-spacing:-26.575517px;}
.ws4_c00388{word-spacing:-26.487518px;}
.wse_c00388{word-spacing:-21.553319px;}
.wsd_c00388{word-spacing:-21.519216px;}
.wsa_c00388{word-spacing:-18.769538px;}
.wsc_c00388{word-spacing:-17.633802px;}
.ws9_c00388{word-spacing:-14.943900px;}
.wsf_c00388{word-spacing:-14.107042px;}
.ws10_c00388{word-spacing:-12.074671px;}
.ws7_c00388{word-spacing:-9.988424px;}
.ws8_c00388{word-spacing:-9.987499px;}
.wsb_c00388{word-spacing:-7.686144px;}
.ws3_c00388{word-spacing:0.000000px;}
.ws0_c00388{word-spacing:0.043999px;}
.ws5_c00388{word-spacing:0.213446px;}
.ws1_c00388{word-spacing:0.219446px;}
.ws6_c00388{word-spacing:43.038600px;}
._4_c00388{margin-left:-6.580632px;}
._2_c00388{margin-left:-1.549390px;}
._1_c00388{width:1.041538px;}
._3_c00388{width:19.935816px;}
._5_c00388{width:40.109428px;}
._0_c00388{width:53.547026px;}
.fc5_c00388{color:rgb(79,153,5);}
.fc4_c00388{color:rgb(143,89,3);}
.fc3_c00388{color:rgb(0,0,0);}
.fc6_c00388{color:rgb(6,69,173);}
.fc2_c00388{color:rgb(207,92,0);}
.fc1_c00388{color:rgb(0,0,207);}
.fc0_c00388{color:rgb(33,74,135);}
.fs0_c00388{font-size:43.999200px;}
.fs2_c00388{font-size:59.775600px;}
.fs1_c00388{font-size:86.077200px;}
.y0_c00388{bottom:0.000000px;}
.y20_c00388{bottom:44.250000px;}
.y1f_c00388{bottom:82.051500px;}
.y1e_c00388{bottom:99.984000px;}
.y1d_c00388{bottom:117.916500px;}
.y1c_c00388{bottom:135.849000px;}
.y1b_c00388{bottom:162.501000px;}
.y1a_c00388{bottom:189.151500px;}
.y19_c00388{bottom:215.802000px;}
.y18_c00388{bottom:242.454000px;}
.y17_c00388{bottom:284.478000px;}
.y16_c00388{bottom:748.903500px;}
.y15_c00388{bottom:765.342000px;}
.y14_c00388{bottom:781.780500px;}
.y13_c00388{bottom:798.219000px;}
.y12_c00388{bottom:814.657500px;}
.y11_c00388{bottom:831.096000px;}
.y10_c00388{bottom:847.534500px;}
.yf_c00388{bottom:863.973000px;}
.ye_c00388{bottom:880.411500px;}
.yd_c00388{bottom:896.848500px;}
.yc_c00388{bottom:913.287000px;}
.yb_c00388{bottom:946.164000px;}
.ya_c00388{bottom:962.602500px;}
.y9_c00388{bottom:979.041000px;}
.y8_c00388{bottom:1011.918000px;}
.y7_c00388{bottom:1028.356500px;}
.y6_c00388{bottom:1044.795000px;}
.y5_c00388{bottom:1061.232000px;}
.y4_c00388{bottom:1077.670500px;}
.y3_c00388{bottom:1094.109000px;}
.y2_c00388{bottom:1110.547500px;}
.y1_c00388{bottom:1159.863000px;}
.h3_c00388{height:35.190766px;}
.h2_c00388{height:36.007158px;}
.h5_c00388{height:40.511979px;}
.h6_c00388{height:52.332837px;}
.h4_c00388{height:58.337477px;}
.h0_c00388{height:1262.835000px;}
.h1_c00388{height:1263.000000px;}
.w0_c00388{width:892.920000px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x4_c00388{left:127.558500px;}
.x2_c00388{left:137.122500px;}
.x1_c00388{left:143.770500px;}
.x3_c00388{left:177.007500px;}
.x5_c00388{left:435.249000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls4_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.078221pt;}
.ls2_c00388{letter-spacing:0.087539pt;}
.ls3_c00388{letter-spacing:0.092873pt;}
.ls1_c00388{letter-spacing:23.724873pt;}
.ws2_c00388{word-spacing:-23.622682pt;}
.ws4_c00388{word-spacing:-23.544461pt;}
.wse_c00388{word-spacing:-19.158506pt;}
.wsd_c00388{word-spacing:-19.128192pt;}
.wsa_c00388{word-spacing:-16.684034pt;}
.wsc_c00388{word-spacing:-15.674491pt;}
.ws9_c00388{word-spacing:-13.283467pt;}
.wsf_c00388{word-spacing:-12.539593pt;}
.ws10_c00388{word-spacing:-10.733041pt;}
.ws7_c00388{word-spacing:-8.878599pt;}
.ws8_c00388{word-spacing:-8.877777pt;}
.wsb_c00388{word-spacing:-6.832128pt;}
.ws3_c00388{word-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.039110pt;}
.ws5_c00388{word-spacing:0.189730pt;}
.ws1_c00388{word-spacing:0.195063pt;}
.ws6_c00388{word-spacing:38.256533pt;}
._4_c00388{margin-left:-5.849451pt;}
._2_c00388{margin-left:-1.377235pt;}
._1_c00388{width:0.925811pt;}
._3_c00388{width:17.720725pt;}
._5_c00388{width:35.652825pt;}
._0_c00388{width:47.597357pt;}
.fs0_c00388{font-size:39.110400pt;}
.fs2_c00388{font-size:53.133867pt;}
.fs1_c00388{font-size:76.513067pt;}
.y0_c00388{bottom:0.000000pt;}
.y20_c00388{bottom:39.333333pt;}
.y1f_c00388{bottom:72.934667pt;}
.y1e_c00388{bottom:88.874667pt;}
.y1d_c00388{bottom:104.814667pt;}
.y1c_c00388{bottom:120.754667pt;}
.y1b_c00388{bottom:144.445333pt;}
.y1a_c00388{bottom:168.134667pt;}
.y19_c00388{bottom:191.824000pt;}
.y18_c00388{bottom:215.514667pt;}
.y17_c00388{bottom:252.869333pt;}
.y16_c00388{bottom:665.692000pt;}
.y15_c00388{bottom:680.304000pt;}
.y14_c00388{bottom:694.916000pt;}
.y13_c00388{bottom:709.528000pt;}
.y12_c00388{bottom:724.140000pt;}
.y11_c00388{bottom:738.752000pt;}
.y10_c00388{bottom:753.364000pt;}
.yf_c00388{bottom:767.976000pt;}
.ye_c00388{bottom:782.588000pt;}
.yd_c00388{bottom:797.198667pt;}
.yc_c00388{bottom:811.810667pt;}
.yb_c00388{bottom:841.034667pt;}
.ya_c00388{bottom:855.646667pt;}
.y9_c00388{bottom:870.258667pt;}
.y8_c00388{bottom:899.482667pt;}
.y7_c00388{bottom:914.094667pt;}
.y6_c00388{bottom:928.706667pt;}
.y5_c00388{bottom:943.317333pt;}
.y4_c00388{bottom:957.929333pt;}
.y3_c00388{bottom:972.541333pt;}
.y2_c00388{bottom:987.153333pt;}
.y1_c00388{bottom:1030.989333pt;}
.h3_c00388{height:31.280681pt;}
.h2_c00388{height:32.006363pt;}
.h5_c00388{height:36.010648pt;}
.h6_c00388{height:46.518078pt;}
.h4_c00388{height:51.855535pt;}
.h0_c00388{height:1122.520000pt;}
.h1_c00388{height:1122.666667pt;}
.w0_c00388{width:793.706667pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x4_c00388{left:113.385333pt;}
.x2_c00388{left:121.886667pt;}
.x1_c00388{left:127.796000pt;}
.x3_c00388{left:157.340000pt;}
.x5_c00388{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c93c8afdd168d7ed1c3685b.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.102051;font-style:normal;font-weight:normal;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_85a875fdf7f77d2af6b2b322.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.048828;font-style:normal;font-weight:normal;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_298243859fd1808b450e9e84.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls4_c00389{letter-spacing:0.000000px;}
.ls1_c00389{letter-spacing:0.087998px;}
.ls2_c00389{letter-spacing:0.098482px;}
.ls0_c00389{letter-spacing:0.104482px;}
.ls3_c00389{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00389{word-spacing:-26.575517px;}
.ws3_c00389{word-spacing:-26.487518px;}
.ws0_c00389{word-spacing:-18.769538px;}
.ws8_c00389{word-spacing:0.000000px;}
.ws5_c00389{word-spacing:0.043999px;}
.wsb_c00389{word-spacing:0.056767px;}
.ws9_c00389{word-spacing:0.073250px;}
.wsa_c00389{word-spacing:0.083734px;}
.ws2_c00389{word-spacing:0.175997px;}
.wsc_c00389{word-spacing:0.202963px;}
.ws6_c00389{word-spacing:0.213446px;}
.ws7_c00389{word-spacing:0.219446px;}
._0_c00389{margin-left:-3.825638px;}
._1_c00389{width:1.005737px;}
._3_c00389{width:53.283031px;}
._2_c00389{width:79.858548px;}
._4_c00389{width:133.452408px;}
.fc5_c00389{color:rgb(0,0,207);}
.fc4_c00389{color:rgb(79,153,5);}
.fc3_c00389{color:rgb(207,92,0);}
.fc2_c00389{color:rgb(33,74,135);}
.fc1_c00389{color:rgb(143,89,3);}
.fc0_c00389{color:rgb(0,0,0);}
.fs1_c00389{font-size:43.999200px;}
.fs0_c00389{font-size:59.775600px;}
.y0_c00389{bottom:0.000000px;}
.y2d_c00389{bottom:44.250000px;}
.y2c_c00389{bottom:96.919500px;}
.y2b_c00389{bottom:113.358000px;}
.y2a_c00389{bottom:129.796500px;}
.y29_c00389{bottom:146.235000px;}
.y28_c00389{bottom:162.673500px;}
.y27_c00389{bottom:179.112000px;}
.y26_c00389{bottom:195.550500px;}
.y25_c00389{bottom:211.989000px;}
.y24_c00389{bottom:228.427500px;}
.y23_c00389{bottom:244.866000px;}
.y22_c00389{bottom:261.304500px;}
.y21_c00389{bottom:294.180000px;}
.y20_c00389{bottom:310.618500px;}
.y1f_c00389{bottom:327.057000px;}
.y1e_c00389{bottom:359.934000px;}
.y1d_c00389{bottom:376.372500px;}
.y1c_c00389{bottom:392.811000px;}
.y1b_c00389{bottom:409.249500px;}
.y1a_c00389{bottom:425.688000px;}
.y19_c00389{bottom:442.125000px;}
.y18_c00389{bottom:458.563500px;}
.y17_c00389{bottom:507.879000px;}
.y16_c00389{bottom:524.317500px;}
.y15_c00389{bottom:540.756000px;}
.y14_c00389{bottom:557.194500px;}
.y13_c00389{bottom:573.633000px;}
.y12_c00389{bottom:590.071500px;}
.y11_c00389{bottom:606.508500px;}
.y10_c00389{bottom:622.947000px;}
.yf_c00389{bottom:639.385500px;}
.ye_c00389{bottom:655.824000px;}
.yd_c00389{bottom:672.262500px;}
.yc_c00389{bottom:688.701000px;}
.yb_c00389{bottom:705.139500px;}
.ya_c00389{bottom:721.578000px;}
.y9_c00389{bottom:738.016500px;}
.y8_c00389{bottom:754.455000px;}
.y7_c00389{bottom:787.330500px;}
.y6_c00389{bottom:803.769000px;}
.y5_c00389{bottom:853.084500px;}
.y4_c00389{bottom:869.523000px;}
.y3_c00389{bottom:885.588000px;}
.y2_c00389{bottom:1141.930500px;}
.y1_c00389{bottom:1159.863000px;}
.h3_c00389{height:35.190766px;}
.h4_c00389{height:36.007158px;}
.h2_c00389{height:52.332837px;}
.h0_c00389{height:1262.835000px;}
.h1_c00389{height:1263.000000px;}
.w0_c00389{width:892.920000px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:127.558500px;}
.x2_c00389{left:137.122500px;}
.x3_c00389{left:143.770500px;}
.x4_c00389{left:177.007500px;}
.x5_c00389{left:435.249000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls4_c00389{letter-spacing:0.000000pt;}
.ls1_c00389{letter-spacing:0.078221pt;}
.ls2_c00389{letter-spacing:0.087539pt;}
.ls0_c00389{letter-spacing:0.092873pt;}
.ls3_c00389{letter-spacing:23.724873pt;}
.ws1_c00389{word-spacing:-29.967501pt;}
.ws4_c00389{word-spacing:-23.622682pt;}
.ws3_c00389{word-spacing:-23.544461pt;}
.ws0_c00389{word-spacing:-16.684034pt;}
.ws8_c00389{word-spacing:0.000000pt;}
.ws5_c00389{word-spacing:0.039110pt;}
.wsb_c00389{word-spacing:0.050460pt;}
.ws9_c00389{word-spacing:0.065111pt;}
.wsa_c00389{word-spacing:0.074430pt;}
.ws2_c00389{word-spacing:0.156442pt;}
.wsc_c00389{word-spacing:0.180412pt;}
.ws6_c00389{word-spacing:0.189730pt;}
.ws7_c00389{word-spacing:0.195063pt;}
._0_c00389{margin-left:-3.400567pt;}
._1_c00389{width:0.893988pt;}
._3_c00389{width:47.362694pt;}
._2_c00389{width:70.985376pt;}
._4_c00389{width:118.624363pt;}
.fs1_c00389{font-size:39.110400pt;}
.fs0_c00389{font-size:53.133867pt;}
.y0_c00389{bottom:0.000000pt;}
.y2d_c00389{bottom:39.333333pt;}
.y2c_c00389{bottom:86.150667pt;}
.y2b_c00389{bottom:100.762667pt;}
.y2a_c00389{bottom:115.374667pt;}
.y29_c00389{bottom:129.986667pt;}
.y28_c00389{bottom:144.598667pt;}
.y27_c00389{bottom:159.210667pt;}
.y26_c00389{bottom:173.822667pt;}
.y25_c00389{bottom:188.434667pt;}
.y24_c00389{bottom:203.046667pt;}
.y23_c00389{bottom:217.658667pt;}
.y22_c00389{bottom:232.270667pt;}
.y21_c00389{bottom:261.493333pt;}
.y20_c00389{bottom:276.105333pt;}
.y1f_c00389{bottom:290.717333pt;}
.y1e_c00389{bottom:319.941333pt;}
.y1d_c00389{bottom:334.553333pt;}
.y1c_c00389{bottom:349.165333pt;}
.y1b_c00389{bottom:363.777333pt;}
.y1a_c00389{bottom:378.389333pt;}
.y19_c00389{bottom:393.000000pt;}
.y18_c00389{bottom:407.612000pt;}
.y17_c00389{bottom:451.448000pt;}
.y16_c00389{bottom:466.060000pt;}
.y15_c00389{bottom:480.672000pt;}
.y14_c00389{bottom:495.284000pt;}
.y13_c00389{bottom:509.896000pt;}
.y12_c00389{bottom:524.508000pt;}
.y11_c00389{bottom:539.118667pt;}
.y10_c00389{bottom:553.730667pt;}
.yf_c00389{bottom:568.342667pt;}
.ye_c00389{bottom:582.954667pt;}
.yd_c00389{bottom:597.566667pt;}
.yc_c00389{bottom:612.178667pt;}
.yb_c00389{bottom:626.790667pt;}
.ya_c00389{bottom:641.402667pt;}
.y9_c00389{bottom:656.014667pt;}
.y8_c00389{bottom:670.626667pt;}
.y7_c00389{bottom:699.849333pt;}
.y6_c00389{bottom:714.461333pt;}
.y5_c00389{bottom:758.297333pt;}
.y4_c00389{bottom:772.909333pt;}
.y3_c00389{bottom:787.189333pt;}
.y2_c00389{bottom:1015.049333pt;}
.y1_c00389{bottom:1030.989333pt;}
.h3_c00389{height:31.280681pt;}
.h4_c00389{height:32.006363pt;}
.h2_c00389{height:46.518078pt;}
.h0_c00389{height:1122.520000pt;}
.h1_c00389{height:1122.666667pt;}
.w0_c00389{width:793.706667pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:113.385333pt;}
.x2_c00389{left:121.886667pt;}
.x3_c00389{left:127.796000pt;}
.x4_c00389{left:157.340000pt;}
.x5_c00389{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5f7f629649cc7dd1d791e57.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.893555;font-style:normal;font-weight:normal;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_634ffd161e714fa66825054a.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_51505d8f38efe1f52c6377fe.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.048828;font-style: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;}
.ls3_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.087998px;}
.ls2_c00390{letter-spacing:0.098482px;}
.ls1_c00390{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00390{word-spacing:-33.713438px;}
.ws2_c00390{word-spacing:-26.575517px;}
.wse_c00390{word-spacing:-26.487518px;}
.ws9_c00390{word-spacing:-21.553319px;}
.ws8_c00390{word-spacing:-21.519216px;}
.ws5_c00390{word-spacing:-18.769538px;}
.ws7_c00390{word-spacing:-17.633802px;}
.ws4_c00390{word-spacing:-14.943900px;}
.wsa_c00390{word-spacing:-14.107042px;}
.wsb_c00390{word-spacing:-12.074671px;}
.ws1_c00390{word-spacing:-9.988424px;}
.ws3_c00390{word-spacing:-9.987499px;}
.ws6_c00390{word-spacing:-7.686144px;}
.ws12_c00390{word-spacing:0.000000px;}
.wsf_c00390{word-spacing:0.043999px;}
.ws15_c00390{word-spacing:0.056767px;}
.ws13_c00390{word-spacing:0.073250px;}
.ws14_c00390{word-spacing:0.083734px;}
.wsd_c00390{word-spacing:0.175997px;}
.ws16_c00390{word-spacing:0.202963px;}
.ws10_c00390{word-spacing:0.213446px;}
.ws11_c00390{word-spacing:0.219446px;}
.ws0_c00390{word-spacing:43.038600px;}
._2_c00390{margin-left:-6.580632px;}
._4_c00390{margin-left:-3.825638px;}
._0_c00390{margin-left:-1.549390px;}
._5_c00390{width:1.005737px;}
._1_c00390{width:19.935816px;}
._3_c00390{width:40.109428px;}
._7_c00390{width:53.283031px;}
._6_c00390{width:79.858548px;}
._8_c00390{width:133.452408px;}
.fc6_c00390{color:rgb(0,0,207);}
.fc5_c00390{color:rgb(79,153,5);}
.fc3_c00390{color:rgb(33,74,135);}
.fc2_c00390{color:rgb(143,89,3);}
.fc4_c00390{color:rgb(207,92,0);}
.fc1_c00390{color:rgb(6,69,173);}
.fc0_c00390{color:rgb(0,0,0);}
.fs2_c00390{font-size:43.999200px;}
.fs1_c00390{font-size:59.775600px;}
.fs0_c00390{font-size:86.077200px;}
.y0_c00390{bottom:0.000000px;}
.y20_c00390{bottom:44.250000px;}
.y1f_c00390{bottom:86.982000px;}
.y1e_c00390{bottom:103.420500px;}
.y1d_c00390{bottom:119.859000px;}
.y1c_c00390{bottom:136.297500px;}
.y1b_c00390{bottom:152.736000px;}
.y1a_c00390{bottom:169.174500px;}
.y19_c00390{bottom:185.613000px;}
.y18_c00390{bottom:202.051500px;}
.y17_c00390{bottom:218.490000px;}
.y16_c00390{bottom:234.927000px;}
.y15_c00390{bottom:251.365500px;}
.y14_c00390{bottom:267.804000px;}
.y13_c00390{bottom:284.242500px;}
.y12_c00390{bottom:300.681000px;}
.y11_c00390{bottom:317.119500px;}
.y10_c00390{bottom:349.996500px;}
.yf_c00390{bottom:366.435000px;}
.ye_c00390{bottom:415.749000px;}
.yd_c00390{bottom:432.187500px;}
.yc_c00390{bottom:448.252500px;}
.yb_c00390{bottom:493.890000px;}
.ya_c00390{bottom:511.822500px;}
.y9_c00390{bottom:529.756500px;}
.y8_c00390{bottom:547.689000px;}
.y7_c00390{bottom:565.621500px;}
.y6_c00390{bottom:583.554000px;}
.y5_c00390{bottom:610.633500px;}
.y4_c00390{bottom:637.714500px;}
.y3_c00390{bottom:664.794000px;}
.y2_c00390{bottom:691.873500px;}
.y1_c00390{bottom:734.407500px;}
.h5_c00390{height:35.190766px;}
.h6_c00390{height:36.007158px;}
.h3_c00390{height:40.511979px;}
.h4_c00390{height:52.332837px;}
.h2_c00390{height:58.337477px;}
.h0_c00390{height:1262.835000px;}
.h1_c00390{height:1263.000000px;}
.w0_c00390{width:892.920000px;}
.w1_c00390{width:893.250000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:127.558500px;}
.x2_c00390{left:137.122500px;}
.x3_c00390{left:143.770500px;}
.x4_c00390{left:435.249000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls3_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.078221pt;}
.ls2_c00390{letter-spacing:0.087539pt;}
.ls1_c00390{letter-spacing:0.092873pt;}
.wsc_c00390{word-spacing:-29.967501pt;}
.ws2_c00390{word-spacing:-23.622682pt;}
.wse_c00390{word-spacing:-23.544461pt;}
.ws9_c00390{word-spacing:-19.158506pt;}
.ws8_c00390{word-spacing:-19.128192pt;}
.ws5_c00390{word-spacing:-16.684034pt;}
.ws7_c00390{word-spacing:-15.674491pt;}
.ws4_c00390{word-spacing:-13.283467pt;}
.wsa_c00390{word-spacing:-12.539593pt;}
.wsb_c00390{word-spacing:-10.733041pt;}
.ws1_c00390{word-spacing:-8.878599pt;}
.ws3_c00390{word-spacing:-8.877777pt;}
.ws6_c00390{word-spacing:-6.832128pt;}
.ws12_c00390{word-spacing:0.000000pt;}
.wsf_c00390{word-spacing:0.039110pt;}
.ws15_c00390{word-spacing:0.050460pt;}
.ws13_c00390{word-spacing:0.065111pt;}
.ws14_c00390{word-spacing:0.074430pt;}
.wsd_c00390{word-spacing:0.156442pt;}
.ws16_c00390{word-spacing:0.180412pt;}
.ws10_c00390{word-spacing:0.189730pt;}
.ws11_c00390{word-spacing:0.195063pt;}
.ws0_c00390{word-spacing:38.256533pt;}
._2_c00390{margin-left:-5.849451pt;}
._4_c00390{margin-left:-3.400567pt;}
._0_c00390{margin-left:-1.377235pt;}
._5_c00390{width:0.893988pt;}
._1_c00390{width:17.720725pt;}
._3_c00390{width:35.652825pt;}
._7_c00390{width:47.362694pt;}
._6_c00390{width:70.985376pt;}
._8_c00390{width:118.624363pt;}
.fs2_c00390{font-size:39.110400pt;}
.fs1_c00390{font-size:53.133867pt;}
.fs0_c00390{font-size:76.513067pt;}
.y0_c00390{bottom:0.000000pt;}
.y20_c00390{bottom:39.333333pt;}
.y1f_c00390{bottom:77.317333pt;}
.y1e_c00390{bottom:91.929333pt;}
.y1d_c00390{bottom:106.541333pt;}
.y1c_c00390{bottom:121.153333pt;}
.y1b_c00390{bottom:135.765333pt;}
.y1a_c00390{bottom:150.377333pt;}
.y19_c00390{bottom:164.989333pt;}
.y18_c00390{bottom:179.601333pt;}
.y17_c00390{bottom:194.213333pt;}
.y16_c00390{bottom:208.824000pt;}
.y15_c00390{bottom:223.436000pt;}
.y14_c00390{bottom:238.048000pt;}
.y13_c00390{bottom:252.660000pt;}
.y12_c00390{bottom:267.272000pt;}
.y11_c00390{bottom:281.884000pt;}
.y10_c00390{bottom:311.108000pt;}
.yf_c00390{bottom:325.720000pt;}
.ye_c00390{bottom:369.554667pt;}
.yd_c00390{bottom:384.166667pt;}
.yc_c00390{bottom:398.446667pt;}
.yb_c00390{bottom:439.013333pt;}
.ya_c00390{bottom:454.953333pt;}
.y9_c00390{bottom:470.894667pt;}
.y8_c00390{bottom:486.834667pt;}
.y7_c00390{bottom:502.774667pt;}
.y6_c00390{bottom:518.714667pt;}
.y5_c00390{bottom:542.785333pt;}
.y4_c00390{bottom:566.857333pt;}
.y3_c00390{bottom:590.928000pt;}
.y2_c00390{bottom:614.998667pt;}
.y1_c00390{bottom:652.806667pt;}
.h5_c00390{height:31.280681pt;}
.h6_c00390{height:32.006363pt;}
.h3_c00390{height:36.010648pt;}
.h4_c00390{height:46.518078pt;}
.h2_c00390{height:51.855535pt;}
.h0_c00390{height:1122.520000pt;}
.h1_c00390{height:1122.666667pt;}
.w0_c00390{width:793.706667pt;}
.w1_c00390{width:794.000000pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:113.385333pt;}
.x2_c00390{left:121.886667pt;}
.x3_c00390{left:127.796000pt;}
.x4_c00390{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f45a5cb7ae806b339408ffc.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.048828;font-style:normal;font-weight:normal;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_cb6a4149192afd5658ffbf8b.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.014648;font-style:normal;font-weight:normal;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_5b197f2c061766883da39e49.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:0.893555;font-style:normal;font-weight:normal;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_8ed63542469e34b0a641f392.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:1.102051;font-style: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;}
.ls4_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:0.087998px;}
.ls2_c00391{letter-spacing:0.098482px;}
.ls3_c00391{letter-spacing:0.104482px;}
.ls1_c00391{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00391{word-spacing:-26.575517px;}
.ws4_c00391{word-spacing:-26.487518px;}
.wse_c00391{word-spacing:-21.553319px;}
.wsd_c00391{word-spacing:-21.519216px;}
.wsc_c00391{word-spacing:-19.247743px;}
.wsa_c00391{word-spacing:-18.769538px;}
.ws9_c00391{word-spacing:-14.943900px;}
.wsf_c00391{word-spacing:-14.107042px;}
.ws10_c00391{word-spacing:-12.074671px;}
.wsb_c00391{word-spacing:-10.230144px;}
.ws7_c00391{word-spacing:-9.988424px;}
.ws8_c00391{word-spacing:-9.987499px;}
.ws3_c00391{word-spacing:0.000000px;}
.ws0_c00391{word-spacing:0.043999px;}
.ws5_c00391{word-spacing:0.213446px;}
.ws1_c00391{word-spacing:0.219446px;}
.ws6_c00391{word-spacing:43.038600px;}
._3_c00391{margin-left:-6.580632px;}
._1_c00391{margin-left:-1.549390px;}
._0_c00391{width:1.041538px;}
._2_c00391{width:19.935816px;}
._4_c00391{width:40.109428px;}
.fc5_c00391{color:rgb(79,153,5);}
.fc4_c00391{color:rgb(143,89,3);}
.fc3_c00391{color:rgb(0,0,0);}
.fc6_c00391{color:rgb(6,69,173);}
.fc2_c00391{color:rgb(207,92,0);}
.fc1_c00391{color:rgb(0,0,207);}
.fc0_c00391{color:rgb(33,74,135);}
.fs0_c00391{font-size:43.999200px;}
.fs2_c00391{font-size:59.775600px;}
.fs1_c00391{font-size:86.077200px;}
.y0_c00391{bottom:0.000000px;}
.y20_c00391{bottom:44.250000px;}
.y1f_c00391{bottom:82.051500px;}
.y1e_c00391{bottom:99.984000px;}
.y1d_c00391{bottom:117.916500px;}
.y1c_c00391{bottom:135.849000px;}
.y1b_c00391{bottom:162.501000px;}
.y1a_c00391{bottom:189.151500px;}
.y19_c00391{bottom:215.802000px;}
.y18_c00391{bottom:242.454000px;}
.y17_c00391{bottom:284.478000px;}
.y16_c00391{bottom:748.903500px;}
.y15_c00391{bottom:765.342000px;}
.y14_c00391{bottom:781.780500px;}
.y13_c00391{bottom:798.219000px;}
.y12_c00391{bottom:814.657500px;}
.y11_c00391{bottom:831.096000px;}
.y10_c00391{bottom:847.534500px;}
.yf_c00391{bottom:863.973000px;}
.ye_c00391{bottom:880.411500px;}
.yd_c00391{bottom:896.848500px;}
.yc_c00391{bottom:913.287000px;}
.yb_c00391{bottom:946.164000px;}
.ya_c00391{bottom:962.602500px;}
.y9_c00391{bottom:979.041000px;}
.y8_c00391{bottom:1011.918000px;}
.y7_c00391{bottom:1028.356500px;}
.y6_c00391{bottom:1044.795000px;}
.y5_c00391{bottom:1061.232000px;}
.y4_c00391{bottom:1077.670500px;}
.y3_c00391{bottom:1094.109000px;}
.y2_c00391{bottom:1110.547500px;}
.y1_c00391{bottom:1159.863000px;}
.h3_c00391{height:35.190766px;}
.h2_c00391{height:36.007158px;}
.h5_c00391{height:40.511979px;}
.h6_c00391{height:52.332837px;}
.h4_c00391{height:58.337477px;}
.h0_c00391{height:1262.835000px;}
.h1_c00391{height:1263.000000px;}
.w0_c00391{width:892.920000px;}
.w1_c00391{width:893.250000px;}
.x0_c00391{left:0.000000px;}
.x4_c00391{left:127.558500px;}
.x2_c00391{left:137.122500px;}
.x1_c00391{left:143.770500px;}
.x3_c00391{left:177.007500px;}
.x5_c00391{left:435.249000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls4_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.078221pt;}
.ls2_c00391{letter-spacing:0.087539pt;}
.ls3_c00391{letter-spacing:0.092873pt;}
.ls1_c00391{letter-spacing:23.724873pt;}
.ws2_c00391{word-spacing:-23.622682pt;}
.ws4_c00391{word-spacing:-23.544461pt;}
.wse_c00391{word-spacing:-19.158506pt;}
.wsd_c00391{word-spacing:-19.128192pt;}
.wsc_c00391{word-spacing:-17.109105pt;}
.wsa_c00391{word-spacing:-16.684034pt;}
.ws9_c00391{word-spacing:-13.283467pt;}
.wsf_c00391{word-spacing:-12.539593pt;}
.ws10_c00391{word-spacing:-10.733041pt;}
.wsb_c00391{word-spacing:-9.093461pt;}
.ws7_c00391{word-spacing:-8.878599pt;}
.ws8_c00391{word-spacing:-8.877777pt;}
.ws3_c00391{word-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.039110pt;}
.ws5_c00391{word-spacing:0.189730pt;}
.ws1_c00391{word-spacing:0.195063pt;}
.ws6_c00391{word-spacing:38.256533pt;}
._3_c00391{margin-left:-5.849451pt;}
._1_c00391{margin-left:-1.377235pt;}
._0_c00391{width:0.925811pt;}
._2_c00391{width:17.720725pt;}
._4_c00391{width:35.652825pt;}
.fs0_c00391{font-size:39.110400pt;}
.fs2_c00391{font-size:53.133867pt;}
.fs1_c00391{font-size:76.513067pt;}
.y0_c00391{bottom:0.000000pt;}
.y20_c00391{bottom:39.333333pt;}
.y1f_c00391{bottom:72.934667pt;}
.y1e_c00391{bottom:88.874667pt;}
.y1d_c00391{bottom:104.814667pt;}
.y1c_c00391{bottom:120.754667pt;}
.y1b_c00391{bottom:144.445333pt;}
.y1a_c00391{bottom:168.134667pt;}
.y19_c00391{bottom:191.824000pt;}
.y18_c00391{bottom:215.514667pt;}
.y17_c00391{bottom:252.869333pt;}
.y16_c00391{bottom:665.692000pt;}
.y15_c00391{bottom:680.304000pt;}
.y14_c00391{bottom:694.916000pt;}
.y13_c00391{bottom:709.528000pt;}
.y12_c00391{bottom:724.140000pt;}
.y11_c00391{bottom:738.752000pt;}
.y10_c00391{bottom:753.364000pt;}
.yf_c00391{bottom:767.976000pt;}
.ye_c00391{bottom:782.588000pt;}
.yd_c00391{bottom:797.198667pt;}
.yc_c00391{bottom:811.810667pt;}
.yb_c00391{bottom:841.034667pt;}
.ya_c00391{bottom:855.646667pt;}
.y9_c00391{bottom:870.258667pt;}
.y8_c00391{bottom:899.482667pt;}
.y7_c00391{bottom:914.094667pt;}
.y6_c00391{bottom:928.706667pt;}
.y5_c00391{bottom:943.317333pt;}
.y4_c00391{bottom:957.929333pt;}
.y3_c00391{bottom:972.541333pt;}
.y2_c00391{bottom:987.153333pt;}
.y1_c00391{bottom:1030.989333pt;}
.h3_c00391{height:31.280681pt;}
.h2_c00391{height:32.006363pt;}
.h5_c00391{height:36.010648pt;}
.h6_c00391{height:46.518078pt;}
.h4_c00391{height:51.855535pt;}
.h0_c00391{height:1122.520000pt;}
.h1_c00391{height:1122.666667pt;}
.w0_c00391{width:793.706667pt;}
.w1_c00391{width:794.000000pt;}
.x0_c00391{left:0.000000pt;}
.x4_c00391{left:113.385333pt;}
.x2_c00391{left:121.886667pt;}
.x1_c00391{left:127.796000pt;}
.x3_c00391{left:157.340000pt;}
.x5_c00391{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61ea60b255eec48d20ccc207.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.102051;font-style:normal;font-weight:normal;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_f925ed43f7689c67f7a10df0.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.048828;font-style:normal;font-weight:normal;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_c39bfa33dd6ccdde7c52c02e.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls4_c00392{letter-spacing:0.000000px;}
.ls1_c00392{letter-spacing:0.087998px;}
.ls2_c00392{letter-spacing:0.098482px;}
.ls0_c00392{letter-spacing:0.104482px;}
.ls3_c00392{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00392{word-spacing:-26.575517px;}
.ws3_c00392{word-spacing:-26.487518px;}
.ws0_c00392{word-spacing:-18.769538px;}
.ws8_c00392{word-spacing:0.000000px;}
.ws5_c00392{word-spacing:0.043999px;}
.wsb_c00392{word-spacing:0.056767px;}
.ws9_c00392{word-spacing:0.073250px;}
.wsa_c00392{word-spacing:0.083734px;}
.ws2_c00392{word-spacing:0.175997px;}
.wsc_c00392{word-spacing:0.202963px;}
.ws6_c00392{word-spacing:0.213446px;}
.ws7_c00392{word-spacing:0.219446px;}
._0_c00392{margin-left:-3.825638px;}
._1_c00392{width:1.005737px;}
._3_c00392{width:53.283031px;}
._2_c00392{width:79.858548px;}
._5_c00392{width:106.742059px;}
._4_c00392{width:133.452408px;}
.fc5_c00392{color:rgb(0,0,207);}
.fc4_c00392{color:rgb(79,153,5);}
.fc3_c00392{color:rgb(207,92,0);}
.fc2_c00392{color:rgb(33,74,135);}
.fc1_c00392{color:rgb(143,89,3);}
.fc0_c00392{color:rgb(0,0,0);}
.fs1_c00392{font-size:43.999200px;}
.fs0_c00392{font-size:59.775600px;}
.y0_c00392{bottom:0.000000px;}
.y2d_c00392{bottom:44.250000px;}
.y2c_c00392{bottom:96.919500px;}
.y2b_c00392{bottom:113.358000px;}
.y2a_c00392{bottom:129.796500px;}
.y29_c00392{bottom:146.235000px;}
.y28_c00392{bottom:162.673500px;}
.y27_c00392{bottom:179.112000px;}
.y26_c00392{bottom:195.550500px;}
.y25_c00392{bottom:211.989000px;}
.y24_c00392{bottom:228.427500px;}
.y23_c00392{bottom:244.866000px;}
.y22_c00392{bottom:261.304500px;}
.y21_c00392{bottom:294.180000px;}
.y20_c00392{bottom:310.618500px;}
.y1f_c00392{bottom:327.057000px;}
.y1e_c00392{bottom:359.934000px;}
.y1d_c00392{bottom:376.372500px;}
.y1c_c00392{bottom:392.811000px;}
.y1b_c00392{bottom:409.249500px;}
.y1a_c00392{bottom:425.688000px;}
.y19_c00392{bottom:442.125000px;}
.y18_c00392{bottom:458.563500px;}
.y17_c00392{bottom:507.879000px;}
.y16_c00392{bottom:524.317500px;}
.y15_c00392{bottom:540.756000px;}
.y14_c00392{bottom:557.194500px;}
.y13_c00392{bottom:573.633000px;}
.y12_c00392{bottom:590.071500px;}
.y11_c00392{bottom:606.508500px;}
.y10_c00392{bottom:622.947000px;}
.yf_c00392{bottom:639.385500px;}
.ye_c00392{bottom:655.824000px;}
.yd_c00392{bottom:672.262500px;}
.yc_c00392{bottom:688.701000px;}
.yb_c00392{bottom:705.139500px;}
.ya_c00392{bottom:721.578000px;}
.y9_c00392{bottom:738.016500px;}
.y8_c00392{bottom:754.455000px;}
.y7_c00392{bottom:787.330500px;}
.y6_c00392{bottom:803.769000px;}
.y5_c00392{bottom:853.084500px;}
.y4_c00392{bottom:869.523000px;}
.y3_c00392{bottom:885.588000px;}
.y2_c00392{bottom:1141.930500px;}
.y1_c00392{bottom:1159.863000px;}
.h3_c00392{height:35.190766px;}
.h4_c00392{height:36.007158px;}
.h2_c00392{height:52.332837px;}
.h0_c00392{height:1262.835000px;}
.h1_c00392{height:1263.000000px;}
.w0_c00392{width:892.920000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:127.558500px;}
.x2_c00392{left:137.122500px;}
.x3_c00392{left:143.770500px;}
.x4_c00392{left:177.007500px;}
.x5_c00392{left:435.249000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls4_c00392{letter-spacing:0.000000pt;}
.ls1_c00392{letter-spacing:0.078221pt;}
.ls2_c00392{letter-spacing:0.087539pt;}
.ls0_c00392{letter-spacing:0.092873pt;}
.ls3_c00392{letter-spacing:23.724873pt;}
.ws1_c00392{word-spacing:-29.967501pt;}
.ws4_c00392{word-spacing:-23.622682pt;}
.ws3_c00392{word-spacing:-23.544461pt;}
.ws0_c00392{word-spacing:-16.684034pt;}
.ws8_c00392{word-spacing:0.000000pt;}
.ws5_c00392{word-spacing:0.039110pt;}
.wsb_c00392{word-spacing:0.050460pt;}
.ws9_c00392{word-spacing:0.065111pt;}
.wsa_c00392{word-spacing:0.074430pt;}
.ws2_c00392{word-spacing:0.156442pt;}
.wsc_c00392{word-spacing:0.180412pt;}
.ws6_c00392{word-spacing:0.189730pt;}
.ws7_c00392{word-spacing:0.195063pt;}
._0_c00392{margin-left:-3.400567pt;}
._1_c00392{width:0.893988pt;}
._3_c00392{width:47.362694pt;}
._2_c00392{width:70.985376pt;}
._5_c00392{width:94.881830pt;}
._4_c00392{width:118.624363pt;}
.fs1_c00392{font-size:39.110400pt;}
.fs0_c00392{font-size:53.133867pt;}
.y0_c00392{bottom:0.000000pt;}
.y2d_c00392{bottom:39.333333pt;}
.y2c_c00392{bottom:86.150667pt;}
.y2b_c00392{bottom:100.762667pt;}
.y2a_c00392{bottom:115.374667pt;}
.y29_c00392{bottom:129.986667pt;}
.y28_c00392{bottom:144.598667pt;}
.y27_c00392{bottom:159.210667pt;}
.y26_c00392{bottom:173.822667pt;}
.y25_c00392{bottom:188.434667pt;}
.y24_c00392{bottom:203.046667pt;}
.y23_c00392{bottom:217.658667pt;}
.y22_c00392{bottom:232.270667pt;}
.y21_c00392{bottom:261.493333pt;}
.y20_c00392{bottom:276.105333pt;}
.y1f_c00392{bottom:290.717333pt;}
.y1e_c00392{bottom:319.941333pt;}
.y1d_c00392{bottom:334.553333pt;}
.y1c_c00392{bottom:349.165333pt;}
.y1b_c00392{bottom:363.777333pt;}
.y1a_c00392{bottom:378.389333pt;}
.y19_c00392{bottom:393.000000pt;}
.y18_c00392{bottom:407.612000pt;}
.y17_c00392{bottom:451.448000pt;}
.y16_c00392{bottom:466.060000pt;}
.y15_c00392{bottom:480.672000pt;}
.y14_c00392{bottom:495.284000pt;}
.y13_c00392{bottom:509.896000pt;}
.y12_c00392{bottom:524.508000pt;}
.y11_c00392{bottom:539.118667pt;}
.y10_c00392{bottom:553.730667pt;}
.yf_c00392{bottom:568.342667pt;}
.ye_c00392{bottom:582.954667pt;}
.yd_c00392{bottom:597.566667pt;}
.yc_c00392{bottom:612.178667pt;}
.yb_c00392{bottom:626.790667pt;}
.ya_c00392{bottom:641.402667pt;}
.y9_c00392{bottom:656.014667pt;}
.y8_c00392{bottom:670.626667pt;}
.y7_c00392{bottom:699.849333pt;}
.y6_c00392{bottom:714.461333pt;}
.y5_c00392{bottom:758.297333pt;}
.y4_c00392{bottom:772.909333pt;}
.y3_c00392{bottom:787.189333pt;}
.y2_c00392{bottom:1015.049333pt;}
.y1_c00392{bottom:1030.989333pt;}
.h3_c00392{height:31.280681pt;}
.h4_c00392{height:32.006363pt;}
.h2_c00392{height:46.518078pt;}
.h0_c00392{height:1122.520000pt;}
.h1_c00392{height:1122.666667pt;}
.w0_c00392{width:793.706667pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:113.385333pt;}
.x2_c00392{left:121.886667pt;}
.x3_c00392{left:127.796000pt;}
.x4_c00392{left:157.340000pt;}
.x5_c00392{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e92bdf4a83c057fcfced513.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.893555;font-style:normal;font-weight:normal;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_ad69f2525f66dde67bef6090.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.083496;font-style:normal;font-weight:normal;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_51990fecf2e5ab71b5710e3a.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;line-height:1.048828;font-style: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;}
.ls3_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:0.087998px;}
.ls2_c00393{letter-spacing:0.098482px;}
.ls1_c00393{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00393{word-spacing:-26.575517px;}
.wsf_c00393{word-spacing:-26.487518px;}
.wsa_c00393{word-spacing:-20.624971px;}
.wsb_c00393{word-spacing:-20.622582px;}
.ws5_c00393{word-spacing:-18.769538px;}
.ws8_c00393{word-spacing:-17.574026px;}
.ws7_c00393{word-spacing:-15.541656px;}
.ws4_c00393{word-spacing:-14.943900px;}
.wsd_c00393{word-spacing:-14.764573px;}
.wsc_c00393{word-spacing:-14.525471px;}
.ws9_c00393{word-spacing:-11.357364px;}
.ws1_c00393{word-spacing:-9.988424px;}
.ws3_c00393{word-spacing:-9.987499px;}
.ws6_c00393{word-spacing:-3.486144px;}
.ws13_c00393{word-spacing:0.000000px;}
.ws10_c00393{word-spacing:0.043999px;}
.wse_c00393{word-spacing:0.175997px;}
.ws12_c00393{word-spacing:0.213446px;}
.ws11_c00393{word-spacing:0.219446px;}
.ws0_c00393{word-spacing:43.038600px;}
._2_c00393{margin-left:-3.227882px;}
._0_c00393{margin-left:-1.549390px;}
._6_c00393{width:1.005737px;}
._1_c00393{width:19.935816px;}
._3_c00393{width:23.340977px;}
._5_c00393{width:32.039722px;}
._4_c00393{width:42.082022px;}
.fc5_c00393{color:rgb(79,153,5);}
.fc3_c00393{color:rgb(33,74,135);}
.fc2_c00393{color:rgb(143,89,3);}
.fc4_c00393{color:rgb(207,92,0);}
.fc1_c00393{color:rgb(6,69,173);}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:43.999200px;}
.fs1_c00393{font-size:59.775600px;}
.fs0_c00393{font-size:86.077200px;}
.y0_c00393{bottom:0.000000px;}
.y20_c00393{bottom:44.250000px;}
.y1f_c00393{bottom:82.051500px;}
.y1e_c00393{bottom:98.490000px;}
.y1d_c00393{bottom:114.927000px;}
.y1c_c00393{bottom:147.804000px;}
.y1b_c00393{bottom:164.242500px;}
.y1a_c00393{bottom:197.119500px;}
.y19_c00393{bottom:213.558000px;}
.y18_c00393{bottom:229.996500px;}
.y17_c00393{bottom:246.435000px;}
.y16_c00393{bottom:279.310500px;}
.y15_c00393{bottom:295.749000px;}
.y14_c00393{bottom:312.187500px;}
.y13_c00393{bottom:328.626000px;}
.y12_c00393{bottom:345.064500px;}
.y11_c00393{bottom:361.503000px;}
.y10_c00393{bottom:377.941500px;}
.yf_c00393{bottom:394.380000px;}
.ye_c00393{bottom:410.445000px;}
.yd_c00393{bottom:458.862000px;}
.yc_c00393{bottom:476.794500px;}
.yb_c00393{bottom:494.727000px;}
.ya_c00393{bottom:512.659500px;}
.y9_c00393{bottom:530.593500px;}
.y8_c00393{bottom:548.526000px;}
.y7_c00393{bottom:566.458500px;}
.y6_c00393{bottom:584.391000px;}
.y5_c00393{bottom:611.374500px;}
.y4_c00393{bottom:638.358000px;}
.y3_c00393{bottom:665.341500px;}
.y2_c00393{bottom:692.325000px;}
.y1_c00393{bottom:734.719500px;}
.h5_c00393{height:35.190766px;}
.h6_c00393{height:36.007158px;}
.h3_c00393{height:40.511979px;}
.h4_c00393{height:52.332837px;}
.h2_c00393{height:58.337477px;}
.h0_c00393{height:1262.835000px;}
.h1_c00393{height:1263.000000px;}
.w0_c00393{width:892.920000px;}
.w1_c00393{width:893.250000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:127.558500px;}
.x2_c00393{left:137.122500px;}
.x3_c00393{left:435.249000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls3_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:0.078221pt;}
.ls2_c00393{letter-spacing:0.087539pt;}
.ls1_c00393{letter-spacing:0.092873pt;}
.ws2_c00393{word-spacing:-23.622682pt;}
.wsf_c00393{word-spacing:-23.544461pt;}
.wsa_c00393{word-spacing:-18.333308pt;}
.wsb_c00393{word-spacing:-18.331184pt;}
.ws5_c00393{word-spacing:-16.684034pt;}
.ws8_c00393{word-spacing:-15.621357pt;}
.ws7_c00393{word-spacing:-13.814805pt;}
.ws4_c00393{word-spacing:-13.283467pt;}
.wsd_c00393{word-spacing:-13.124065pt;}
.wsc_c00393{word-spacing:-12.911530pt;}
.ws9_c00393{word-spacing:-10.095435pt;}
.ws1_c00393{word-spacing:-8.878599pt;}
.ws3_c00393{word-spacing:-8.877777pt;}
.ws6_c00393{word-spacing:-3.098795pt;}
.ws13_c00393{word-spacing:0.000000pt;}
.ws10_c00393{word-spacing:0.039110pt;}
.wse_c00393{word-spacing:0.156442pt;}
.ws12_c00393{word-spacing:0.189730pt;}
.ws11_c00393{word-spacing:0.195063pt;}
.ws0_c00393{word-spacing:38.256533pt;}
._2_c00393{margin-left:-2.869229pt;}
._0_c00393{margin-left:-1.377235pt;}
._6_c00393{width:0.893988pt;}
._1_c00393{width:17.720725pt;}
._3_c00393{width:20.747535pt;}
._5_c00393{width:28.479753pt;}
._4_c00393{width:37.406242pt;}
.fs2_c00393{font-size:39.110400pt;}
.fs1_c00393{font-size:53.133867pt;}
.fs0_c00393{font-size:76.513067pt;}
.y0_c00393{bottom:0.000000pt;}
.y20_c00393{bottom:39.333333pt;}
.y1f_c00393{bottom:72.934667pt;}
.y1e_c00393{bottom:87.546667pt;}
.y1d_c00393{bottom:102.157333pt;}
.y1c_c00393{bottom:131.381333pt;}
.y1b_c00393{bottom:145.993333pt;}
.y1a_c00393{bottom:175.217333pt;}
.y19_c00393{bottom:189.829333pt;}
.y18_c00393{bottom:204.441333pt;}
.y17_c00393{bottom:219.053333pt;}
.y16_c00393{bottom:248.276000pt;}
.y15_c00393{bottom:262.888000pt;}
.y14_c00393{bottom:277.500000pt;}
.y13_c00393{bottom:292.112000pt;}
.y12_c00393{bottom:306.724000pt;}
.y11_c00393{bottom:321.336000pt;}
.y10_c00393{bottom:335.948000pt;}
.yf_c00393{bottom:350.560000pt;}
.ye_c00393{bottom:364.840000pt;}
.yd_c00393{bottom:407.877333pt;}
.yc_c00393{bottom:423.817333pt;}
.yb_c00393{bottom:439.757333pt;}
.ya_c00393{bottom:455.697333pt;}
.y9_c00393{bottom:471.638667pt;}
.y8_c00393{bottom:487.578667pt;}
.y7_c00393{bottom:503.518667pt;}
.y6_c00393{bottom:519.458667pt;}
.y5_c00393{bottom:543.444000pt;}
.y4_c00393{bottom:567.429333pt;}
.y3_c00393{bottom:591.414667pt;}
.y2_c00393{bottom:615.400000pt;}
.y1_c00393{bottom:653.084000pt;}
.h5_c00393{height:31.280681pt;}
.h6_c00393{height:32.006363pt;}
.h3_c00393{height:36.010648pt;}
.h4_c00393{height:46.518078pt;}
.h2_c00393{height:51.855535pt;}
.h0_c00393{height:1122.520000pt;}
.h1_c00393{height:1122.666667pt;}
.w0_c00393{width:793.706667pt;}
.w1_c00393{width:794.000000pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:113.385333pt;}
.x2_c00393{left:121.886667pt;}
.x3_c00393{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_721608ea4a96b85568ace46b.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.014648;font-style:normal;font-weight:normal;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_e5e6053b7d2dc02fd558cdb4.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.048828;font-style:normal;font-weight:normal;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_e8db3621a32f12a6c34592cf.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls3_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.087998px;}
.ls2_c00394{letter-spacing:0.098482px;}
.ls1_c00394{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00394{word-spacing:-26.487518px;}
.ws5_c00394{word-spacing:0.000000px;}
.ws4_c00394{word-spacing:0.043999px;}
.ws3_c00394{word-spacing:0.053933px;}
.ws6_c00394{word-spacing:0.056767px;}
.ws0_c00394{word-spacing:0.175997px;}
.ws7_c00394{word-spacing:0.213446px;}
._0_c00394{width:1.077888px;}
.fc5_c00394{color:rgb(0,0,207);}
.fc4_c00394{color:rgb(79,153,5);}
.fc3_c00394{color:rgb(33,74,135);}
.fc2_c00394{color:rgb(207,92,0);}
.fc1_c00394{color:rgb(0,0,0);}
.fc0_c00394{color:rgb(143,89,3);}
.fs0_c00394{font-size:43.999200px;}
.fs1_c00394{font-size:59.775600px;}
.y0_c00394{bottom:0.000000px;}
.y32_c00394{bottom:44.250000px;}
.y31_c00394{bottom:255.753000px;}
.y30_c00394{bottom:272.191500px;}
.y2f_c00394{bottom:288.630000px;}
.y2e_c00394{bottom:305.068500px;}
.y2d_c00394{bottom:321.507000px;}
.y2c_c00394{bottom:337.945500px;}
.y2b_c00394{bottom:354.384000px;}
.y2a_c00394{bottom:370.822500px;}
.y29_c00394{bottom:387.259500px;}
.y28_c00394{bottom:403.698000px;}
.y27_c00394{bottom:420.136500px;}
.y26_c00394{bottom:453.013500px;}
.y25_c00394{bottom:469.452000px;}
.y24_c00394{bottom:485.890500px;}
.y23_c00394{bottom:518.767500px;}
.y22_c00394{bottom:535.206000px;}
.y21_c00394{bottom:551.643000px;}
.y20_c00394{bottom:568.081500px;}
.y1f_c00394{bottom:584.520000px;}
.y1e_c00394{bottom:600.958500px;}
.y1d_c00394{bottom:617.397000px;}
.y1c_c00394{bottom:633.835500px;}
.y1b_c00394{bottom:650.274000px;}
.y1a_c00394{bottom:666.712500px;}
.y19_c00394{bottom:683.151000px;}
.y18_c00394{bottom:699.589500px;}
.y17_c00394{bottom:716.028000px;}
.y16_c00394{bottom:732.465000px;}
.y15_c00394{bottom:748.903500px;}
.y14_c00394{bottom:765.342000px;}
.y13_c00394{bottom:781.780500px;}
.y12_c00394{bottom:798.219000px;}
.y11_c00394{bottom:814.657500px;}
.y10_c00394{bottom:831.096000px;}
.yf_c00394{bottom:847.534500px;}
.ye_c00394{bottom:863.973000px;}
.yd_c00394{bottom:880.411500px;}
.yc_c00394{bottom:896.848500px;}
.yb_c00394{bottom:946.164000px;}
.ya_c00394{bottom:962.602500px;}
.y9_c00394{bottom:979.041000px;}
.y8_c00394{bottom:995.479500px;}
.y7_c00394{bottom:1044.795000px;}
.y6_c00394{bottom:1061.232000px;}
.y5_c00394{bottom:1094.109000px;}
.y4_c00394{bottom:1110.547500px;}
.y3_c00394{bottom:1126.986000px;}
.y2_c00394{bottom:1143.424500px;}
.y1_c00394{bottom:1159.863000px;}
.h2_c00394{height:35.190766px;}
.h3_c00394{height:36.007158px;}
.h4_c00394{height:52.332837px;}
.h0_c00394{height:1262.835000px;}
.h1_c00394{height:1263.000000px;}
.w0_c00394{width:892.920000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:137.122500px;}
.x2_c00394{left:143.770500px;}
.x6_c00394{left:177.007500px;}
.x5_c00394{left:230.185500px;}
.x3_c00394{left:243.480000px;}
.x4_c00394{left:276.715500px;}
.x7_c00394{left:435.249000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls3_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.078221pt;}
.ls2_c00394{letter-spacing:0.087539pt;}
.ls1_c00394{letter-spacing:0.092873pt;}
.ws1_c00394{word-spacing:-23.622682pt;}
.ws2_c00394{word-spacing:-23.544461pt;}
.ws5_c00394{word-spacing:0.000000pt;}
.ws4_c00394{word-spacing:0.039110pt;}
.ws3_c00394{word-spacing:0.047940pt;}
.ws6_c00394{word-spacing:0.050460pt;}
.ws0_c00394{word-spacing:0.156442pt;}
.ws7_c00394{word-spacing:0.189730pt;}
._0_c00394{width:0.958123pt;}
.fs0_c00394{font-size:39.110400pt;}
.fs1_c00394{font-size:53.133867pt;}
.y0_c00394{bottom:0.000000pt;}
.y32_c00394{bottom:39.333333pt;}
.y31_c00394{bottom:227.336000pt;}
.y30_c00394{bottom:241.948000pt;}
.y2f_c00394{bottom:256.560000pt;}
.y2e_c00394{bottom:271.172000pt;}
.y2d_c00394{bottom:285.784000pt;}
.y2c_c00394{bottom:300.396000pt;}
.y2b_c00394{bottom:315.008000pt;}
.y2a_c00394{bottom:329.620000pt;}
.y29_c00394{bottom:344.230667pt;}
.y28_c00394{bottom:358.842667pt;}
.y27_c00394{bottom:373.454667pt;}
.y26_c00394{bottom:402.678667pt;}
.y25_c00394{bottom:417.290667pt;}
.y24_c00394{bottom:431.902667pt;}
.y23_c00394{bottom:461.126667pt;}
.y22_c00394{bottom:475.738667pt;}
.y21_c00394{bottom:490.349333pt;}
.y20_c00394{bottom:504.961333pt;}
.y1f_c00394{bottom:519.573333pt;}
.y1e_c00394{bottom:534.185333pt;}
.y1d_c00394{bottom:548.797333pt;}
.y1c_c00394{bottom:563.409333pt;}
.y1b_c00394{bottom:578.021333pt;}
.y1a_c00394{bottom:592.633333pt;}
.y19_c00394{bottom:607.245333pt;}
.y18_c00394{bottom:621.857333pt;}
.y17_c00394{bottom:636.469333pt;}
.y16_c00394{bottom:651.080000pt;}
.y15_c00394{bottom:665.692000pt;}
.y14_c00394{bottom:680.304000pt;}
.y13_c00394{bottom:694.916000pt;}
.y12_c00394{bottom:709.528000pt;}
.y11_c00394{bottom:724.140000pt;}
.y10_c00394{bottom:738.752000pt;}
.yf_c00394{bottom:753.364000pt;}
.ye_c00394{bottom:767.976000pt;}
.yd_c00394{bottom:782.588000pt;}
.yc_c00394{bottom:797.198667pt;}
.yb_c00394{bottom:841.034667pt;}
.ya_c00394{bottom:855.646667pt;}
.y9_c00394{bottom:870.258667pt;}
.y8_c00394{bottom:884.870667pt;}
.y7_c00394{bottom:928.706667pt;}
.y6_c00394{bottom:943.317333pt;}
.y5_c00394{bottom:972.541333pt;}
.y4_c00394{bottom:987.153333pt;}
.y3_c00394{bottom:1001.765333pt;}
.y2_c00394{bottom:1016.377333pt;}
.y1_c00394{bottom:1030.989333pt;}
.h2_c00394{height:31.280681pt;}
.h3_c00394{height:32.006363pt;}
.h4_c00394{height:46.518078pt;}
.h0_c00394{height:1122.520000pt;}
.h1_c00394{height:1122.666667pt;}
.w0_c00394{width:793.706667pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:121.886667pt;}
.x2_c00394{left:127.796000pt;}
.x6_c00394{left:157.340000pt;}
.x5_c00394{left:204.609333pt;}
.x3_c00394{left:216.426667pt;}
.x4_c00394{left:245.969333pt;}
.x7_c00394{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a90a87376ffeb5d950baa01f.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.893555;font-style:normal;font-weight:normal;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_781f26e60f32f8d52ce1f8d5.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.083496;font-style:normal;font-weight:normal;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_45593e67a6867f3e948a157b.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00395;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.048828;font-style: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;}
.ls3_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.087998px;}
.ls2_c00395{letter-spacing:0.098482px;}
.ls1_c00395{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00395{word-spacing:-33.713438px;}
.ws2_c00395{word-spacing:-26.575517px;}
.wse_c00395{word-spacing:-26.487518px;}
.ws9_c00395{word-spacing:-21.553319px;}
.ws8_c00395{word-spacing:-21.519216px;}
.ws5_c00395{word-spacing:-18.769538px;}
.ws7_c00395{word-spacing:-16.019861px;}
.ws4_c00395{word-spacing:-14.943900px;}
.wsa_c00395{word-spacing:-14.107042px;}
.wsb_c00395{word-spacing:-12.074671px;}
.ws1_c00395{word-spacing:-9.988424px;}
.ws3_c00395{word-spacing:-9.987499px;}
.ws6_c00395{word-spacing:-4.536144px;}
.ws12_c00395{word-spacing:0.000000px;}
.wsf_c00395{word-spacing:0.043999px;}
.ws15_c00395{word-spacing:0.056767px;}
.ws13_c00395{word-spacing:0.073250px;}
.ws14_c00395{word-spacing:0.083734px;}
.wsd_c00395{word-spacing:0.175997px;}
.ws16_c00395{word-spacing:0.202963px;}
.ws10_c00395{word-spacing:0.213446px;}
.ws11_c00395{word-spacing:0.219446px;}
.ws0_c00395{word-spacing:43.038600px;}
._3_c00395{margin-left:-3.825638px;}
._0_c00395{margin-left:-1.549390px;}
._4_c00395{width:1.005737px;}
._1_c00395{width:19.935816px;}
._2_c00395{width:40.109428px;}
._6_c00395{width:53.283031px;}
._5_c00395{width:79.858548px;}
._7_c00395{width:133.452408px;}
.fc6_c00395{color:rgb(0,0,207);}
.fc5_c00395{color:rgb(79,153,5);}
.fc3_c00395{color:rgb(33,74,135);}
.fc2_c00395{color:rgb(143,89,3);}
.fc4_c00395{color:rgb(207,92,0);}
.fc1_c00395{color:rgb(6,69,173);}
.fc0_c00395{color:rgb(0,0,0);}
.fs2_c00395{font-size:43.999200px;}
.fs1_c00395{font-size:59.775600px;}
.fs0_c00395{font-size:86.077200px;}
.y0_c00395{bottom:0.000000px;}
.y20_c00395{bottom:44.250000px;}
.y1f_c00395{bottom:86.982000px;}
.y1e_c00395{bottom:103.420500px;}
.y1d_c00395{bottom:119.859000px;}
.y1c_c00395{bottom:136.297500px;}
.y1b_c00395{bottom:152.736000px;}
.y1a_c00395{bottom:169.174500px;}
.y19_c00395{bottom:185.613000px;}
.y18_c00395{bottom:202.051500px;}
.y17_c00395{bottom:218.490000px;}
.y16_c00395{bottom:234.927000px;}
.y15_c00395{bottom:251.365500px;}
.y14_c00395{bottom:267.804000px;}
.y13_c00395{bottom:284.242500px;}
.y12_c00395{bottom:300.681000px;}
.y11_c00395{bottom:317.119500px;}
.y10_c00395{bottom:349.996500px;}
.yf_c00395{bottom:366.435000px;}
.ye_c00395{bottom:415.749000px;}
.yd_c00395{bottom:432.187500px;}
.yc_c00395{bottom:448.252500px;}
.yb_c00395{bottom:493.890000px;}
.ya_c00395{bottom:511.822500px;}
.y9_c00395{bottom:529.756500px;}
.y8_c00395{bottom:547.689000px;}
.y7_c00395{bottom:565.621500px;}
.y6_c00395{bottom:583.554000px;}
.y5_c00395{bottom:610.633500px;}
.y4_c00395{bottom:637.714500px;}
.y3_c00395{bottom:664.794000px;}
.y2_c00395{bottom:691.873500px;}
.y1_c00395{bottom:734.407500px;}
.h5_c00395{height:35.190766px;}
.h6_c00395{height:36.007158px;}
.h3_c00395{height:40.511979px;}
.h4_c00395{height:52.332837px;}
.h2_c00395{height:58.337477px;}
.h0_c00395{height:1262.835000px;}
.h1_c00395{height:1263.000000px;}
.w0_c00395{width:892.920000px;}
.w1_c00395{width:893.250000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:127.558500px;}
.x2_c00395{left:137.122500px;}
.x3_c00395{left:143.770500px;}
.x4_c00395{left:435.249000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls3_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.078221pt;}
.ls2_c00395{letter-spacing:0.087539pt;}
.ls1_c00395{letter-spacing:0.092873pt;}
.wsc_c00395{word-spacing:-29.967501pt;}
.ws2_c00395{word-spacing:-23.622682pt;}
.wse_c00395{word-spacing:-23.544461pt;}
.ws9_c00395{word-spacing:-19.158506pt;}
.ws8_c00395{word-spacing:-19.128192pt;}
.ws5_c00395{word-spacing:-16.684034pt;}
.ws7_c00395{word-spacing:-14.239876pt;}
.ws4_c00395{word-spacing:-13.283467pt;}
.wsa_c00395{word-spacing:-12.539593pt;}
.wsb_c00395{word-spacing:-10.733041pt;}
.ws1_c00395{word-spacing:-8.878599pt;}
.ws3_c00395{word-spacing:-8.877777pt;}
.ws6_c00395{word-spacing:-4.032128pt;}
.ws12_c00395{word-spacing:0.000000pt;}
.wsf_c00395{word-spacing:0.039110pt;}
.ws15_c00395{word-spacing:0.050460pt;}
.ws13_c00395{word-spacing:0.065111pt;}
.ws14_c00395{word-spacing:0.074430pt;}
.wsd_c00395{word-spacing:0.156442pt;}
.ws16_c00395{word-spacing:0.180412pt;}
.ws10_c00395{word-spacing:0.189730pt;}
.ws11_c00395{word-spacing:0.195063pt;}
.ws0_c00395{word-spacing:38.256533pt;}
._3_c00395{margin-left:-3.400567pt;}
._0_c00395{margin-left:-1.377235pt;}
._4_c00395{width:0.893988pt;}
._1_c00395{width:17.720725pt;}
._2_c00395{width:35.652825pt;}
._6_c00395{width:47.362694pt;}
._5_c00395{width:70.985376pt;}
._7_c00395{width:118.624363pt;}
.fs2_c00395{font-size:39.110400pt;}
.fs1_c00395{font-size:53.133867pt;}
.fs0_c00395{font-size:76.513067pt;}
.y0_c00395{bottom:0.000000pt;}
.y20_c00395{bottom:39.333333pt;}
.y1f_c00395{bottom:77.317333pt;}
.y1e_c00395{bottom:91.929333pt;}
.y1d_c00395{bottom:106.541333pt;}
.y1c_c00395{bottom:121.153333pt;}
.y1b_c00395{bottom:135.765333pt;}
.y1a_c00395{bottom:150.377333pt;}
.y19_c00395{bottom:164.989333pt;}
.y18_c00395{bottom:179.601333pt;}
.y17_c00395{bottom:194.213333pt;}
.y16_c00395{bottom:208.824000pt;}
.y15_c00395{bottom:223.436000pt;}
.y14_c00395{bottom:238.048000pt;}
.y13_c00395{bottom:252.660000pt;}
.y12_c00395{bottom:267.272000pt;}
.y11_c00395{bottom:281.884000pt;}
.y10_c00395{bottom:311.108000pt;}
.yf_c00395{bottom:325.720000pt;}
.ye_c00395{bottom:369.554667pt;}
.yd_c00395{bottom:384.166667pt;}
.yc_c00395{bottom:398.446667pt;}
.yb_c00395{bottom:439.013333pt;}
.ya_c00395{bottom:454.953333pt;}
.y9_c00395{bottom:470.894667pt;}
.y8_c00395{bottom:486.834667pt;}
.y7_c00395{bottom:502.774667pt;}
.y6_c00395{bottom:518.714667pt;}
.y5_c00395{bottom:542.785333pt;}
.y4_c00395{bottom:566.857333pt;}
.y3_c00395{bottom:590.928000pt;}
.y2_c00395{bottom:614.998667pt;}
.y1_c00395{bottom:652.806667pt;}
.h5_c00395{height:31.280681pt;}
.h6_c00395{height:32.006363pt;}
.h3_c00395{height:36.010648pt;}
.h4_c00395{height:46.518078pt;}
.h2_c00395{height:51.855535pt;}
.h0_c00395{height:1122.520000pt;}
.h1_c00395{height:1122.666667pt;}
.w0_c00395{width:793.706667pt;}
.w1_c00395{width:794.000000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:113.385333pt;}
.x2_c00395{left:121.886667pt;}
.x3_c00395{left:127.796000pt;}
.x4_c00395{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bd133e9bbcf72559c4b8c03.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.048828;font-style:normal;font-weight:normal;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_f365bbd0bd8a5d55cfa61467.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_83ff4b822a2db08d872aaad5.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_ab46930e33b8ed756e664dd3.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:1.102051;font-style: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;}
.ls4_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.087998px;}
.ls2_c00396{letter-spacing:0.098482px;}
.ls3_c00396{letter-spacing:0.104482px;}
.ls1_c00396{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00396{word-spacing:-26.575517px;}
.ws4_c00396{word-spacing:-26.487518px;}
.wse_c00396{word-spacing:-21.553319px;}
.wsd_c00396{word-spacing:-21.519216px;}
.wsa_c00396{word-spacing:-18.769538px;}
.wsc_c00396{word-spacing:-17.633802px;}
.ws9_c00396{word-spacing:-14.943900px;}
.wsf_c00396{word-spacing:-14.107042px;}
.ws10_c00396{word-spacing:-12.074671px;}
.ws7_c00396{word-spacing:-9.988424px;}
.ws8_c00396{word-spacing:-9.987499px;}
.wsb_c00396{word-spacing:-7.686144px;}
.ws3_c00396{word-spacing:0.000000px;}
.ws0_c00396{word-spacing:0.043999px;}
.ws5_c00396{word-spacing:0.213446px;}
.ws1_c00396{word-spacing:0.219446px;}
.ws6_c00396{word-spacing:43.038600px;}
._1_c00396{margin-left:-1.549390px;}
._0_c00396{width:1.041538px;}
._2_c00396{width:19.935816px;}
._3_c00396{width:40.109428px;}
.fc5_c00396{color:rgb(79,153,5);}
.fc4_c00396{color:rgb(143,89,3);}
.fc3_c00396{color:rgb(0,0,0);}
.fc6_c00396{color:rgb(6,69,173);}
.fc2_c00396{color:rgb(207,92,0);}
.fc1_c00396{color:rgb(0,0,207);}
.fc0_c00396{color:rgb(33,74,135);}
.fs0_c00396{font-size:43.999200px;}
.fs2_c00396{font-size:59.775600px;}
.fs1_c00396{font-size:86.077200px;}
.y0_c00396{bottom:0.000000px;}
.y20_c00396{bottom:44.250000px;}
.y1f_c00396{bottom:82.051500px;}
.y1e_c00396{bottom:99.984000px;}
.y1d_c00396{bottom:117.916500px;}
.y1c_c00396{bottom:135.849000px;}
.y1b_c00396{bottom:162.501000px;}
.y1a_c00396{bottom:189.151500px;}
.y19_c00396{bottom:215.802000px;}
.y18_c00396{bottom:242.454000px;}
.y17_c00396{bottom:284.478000px;}
.y16_c00396{bottom:748.903500px;}
.y15_c00396{bottom:765.342000px;}
.y14_c00396{bottom:781.780500px;}
.y13_c00396{bottom:798.219000px;}
.y12_c00396{bottom:814.657500px;}
.y11_c00396{bottom:831.096000px;}
.y10_c00396{bottom:847.534500px;}
.yf_c00396{bottom:863.973000px;}
.ye_c00396{bottom:880.411500px;}
.yd_c00396{bottom:896.848500px;}
.yc_c00396{bottom:913.287000px;}
.yb_c00396{bottom:946.164000px;}
.ya_c00396{bottom:962.602500px;}
.y9_c00396{bottom:979.041000px;}
.y8_c00396{bottom:1011.918000px;}
.y7_c00396{bottom:1028.356500px;}
.y6_c00396{bottom:1044.795000px;}
.y5_c00396{bottom:1061.232000px;}
.y4_c00396{bottom:1077.670500px;}
.y3_c00396{bottom:1094.109000px;}
.y2_c00396{bottom:1110.547500px;}
.y1_c00396{bottom:1159.863000px;}
.h3_c00396{height:35.190766px;}
.h2_c00396{height:36.007158px;}
.h5_c00396{height:40.511979px;}
.h6_c00396{height:52.332837px;}
.h4_c00396{height:58.337477px;}
.h0_c00396{height:1262.835000px;}
.h1_c00396{height:1263.000000px;}
.w0_c00396{width:892.920000px;}
.w1_c00396{width:893.250000px;}
.x0_c00396{left:0.000000px;}
.x4_c00396{left:127.558500px;}
.x2_c00396{left:137.122500px;}
.x1_c00396{left:143.770500px;}
.x3_c00396{left:177.007500px;}
.x5_c00396{left:435.249000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls4_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.078221pt;}
.ls2_c00396{letter-spacing:0.087539pt;}
.ls3_c00396{letter-spacing:0.092873pt;}
.ls1_c00396{letter-spacing:23.724873pt;}
.ws2_c00396{word-spacing:-23.622682pt;}
.ws4_c00396{word-spacing:-23.544461pt;}
.wse_c00396{word-spacing:-19.158506pt;}
.wsd_c00396{word-spacing:-19.128192pt;}
.wsa_c00396{word-spacing:-16.684034pt;}
.wsc_c00396{word-spacing:-15.674491pt;}
.ws9_c00396{word-spacing:-13.283467pt;}
.wsf_c00396{word-spacing:-12.539593pt;}
.ws10_c00396{word-spacing:-10.733041pt;}
.ws7_c00396{word-spacing:-8.878599pt;}
.ws8_c00396{word-spacing:-8.877777pt;}
.wsb_c00396{word-spacing:-6.832128pt;}
.ws3_c00396{word-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.039110pt;}
.ws5_c00396{word-spacing:0.189730pt;}
.ws1_c00396{word-spacing:0.195063pt;}
.ws6_c00396{word-spacing:38.256533pt;}
._1_c00396{margin-left:-1.377235pt;}
._0_c00396{width:0.925811pt;}
._2_c00396{width:17.720725pt;}
._3_c00396{width:35.652825pt;}
.fs0_c00396{font-size:39.110400pt;}
.fs2_c00396{font-size:53.133867pt;}
.fs1_c00396{font-size:76.513067pt;}
.y0_c00396{bottom:0.000000pt;}
.y20_c00396{bottom:39.333333pt;}
.y1f_c00396{bottom:72.934667pt;}
.y1e_c00396{bottom:88.874667pt;}
.y1d_c00396{bottom:104.814667pt;}
.y1c_c00396{bottom:120.754667pt;}
.y1b_c00396{bottom:144.445333pt;}
.y1a_c00396{bottom:168.134667pt;}
.y19_c00396{bottom:191.824000pt;}
.y18_c00396{bottom:215.514667pt;}
.y17_c00396{bottom:252.869333pt;}
.y16_c00396{bottom:665.692000pt;}
.y15_c00396{bottom:680.304000pt;}
.y14_c00396{bottom:694.916000pt;}
.y13_c00396{bottom:709.528000pt;}
.y12_c00396{bottom:724.140000pt;}
.y11_c00396{bottom:738.752000pt;}
.y10_c00396{bottom:753.364000pt;}
.yf_c00396{bottom:767.976000pt;}
.ye_c00396{bottom:782.588000pt;}
.yd_c00396{bottom:797.198667pt;}
.yc_c00396{bottom:811.810667pt;}
.yb_c00396{bottom:841.034667pt;}
.ya_c00396{bottom:855.646667pt;}
.y9_c00396{bottom:870.258667pt;}
.y8_c00396{bottom:899.482667pt;}
.y7_c00396{bottom:914.094667pt;}
.y6_c00396{bottom:928.706667pt;}
.y5_c00396{bottom:943.317333pt;}
.y4_c00396{bottom:957.929333pt;}
.y3_c00396{bottom:972.541333pt;}
.y2_c00396{bottom:987.153333pt;}
.y1_c00396{bottom:1030.989333pt;}
.h3_c00396{height:31.280681pt;}
.h2_c00396{height:32.006363pt;}
.h5_c00396{height:36.010648pt;}
.h6_c00396{height:46.518078pt;}
.h4_c00396{height:51.855535pt;}
.h0_c00396{height:1122.520000pt;}
.h1_c00396{height:1122.666667pt;}
.w0_c00396{width:793.706667pt;}
.w1_c00396{width:794.000000pt;}
.x0_c00396{left:0.000000pt;}
.x4_c00396{left:113.385333pt;}
.x2_c00396{left:121.886667pt;}
.x1_c00396{left:127.796000pt;}
.x3_c00396{left:157.340000pt;}
.x5_c00396{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79b2aaac6b5d2a8d3a05dd5d.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.102051;font-style:normal;font-weight:normal;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_8f819dd8337b2f7dff083aed.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.048828;font-style:normal;font-weight:normal;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_3c21ce7700f8921d83b7ad3b.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls4_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:0.087998px;}
.ls2_c00397{letter-spacing:0.098482px;}
.ls0_c00397{letter-spacing:0.104482px;}
.ls3_c00397{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00397{word-spacing:-26.575517px;}
.ws3_c00397{word-spacing:-26.487518px;}
.ws0_c00397{word-spacing:-18.769538px;}
.ws8_c00397{word-spacing:0.000000px;}
.ws5_c00397{word-spacing:0.043999px;}
.wsb_c00397{word-spacing:0.056767px;}
.ws9_c00397{word-spacing:0.073250px;}
.wsa_c00397{word-spacing:0.083734px;}
.ws2_c00397{word-spacing:0.175997px;}
.wsc_c00397{word-spacing:0.202963px;}
.ws6_c00397{word-spacing:0.213446px;}
.ws7_c00397{word-spacing:0.219446px;}
._0_c00397{margin-left:-3.825638px;}
._1_c00397{width:1.005737px;}
._3_c00397{width:53.283031px;}
._2_c00397{width:79.858548px;}
._5_c00397{width:106.742059px;}
._4_c00397{width:133.452408px;}
.fc5_c00397{color:rgb(0,0,207);}
.fc4_c00397{color:rgb(79,153,5);}
.fc3_c00397{color:rgb(207,92,0);}
.fc2_c00397{color:rgb(33,74,135);}
.fc1_c00397{color:rgb(143,89,3);}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:43.999200px;}
.fs0_c00397{font-size:59.775600px;}
.y0_c00397{bottom:0.000000px;}
.y2d_c00397{bottom:44.250000px;}
.y2c_c00397{bottom:96.919500px;}
.y2b_c00397{bottom:113.358000px;}
.y2a_c00397{bottom:129.796500px;}
.y29_c00397{bottom:146.235000px;}
.y28_c00397{bottom:162.673500px;}
.y27_c00397{bottom:179.112000px;}
.y26_c00397{bottom:195.550500px;}
.y25_c00397{bottom:211.989000px;}
.y24_c00397{bottom:228.427500px;}
.y23_c00397{bottom:244.866000px;}
.y22_c00397{bottom:261.304500px;}
.y21_c00397{bottom:294.180000px;}
.y20_c00397{bottom:310.618500px;}
.y1f_c00397{bottom:327.057000px;}
.y1e_c00397{bottom:359.934000px;}
.y1d_c00397{bottom:376.372500px;}
.y1c_c00397{bottom:392.811000px;}
.y1b_c00397{bottom:409.249500px;}
.y1a_c00397{bottom:425.688000px;}
.y19_c00397{bottom:442.125000px;}
.y18_c00397{bottom:458.563500px;}
.y17_c00397{bottom:507.879000px;}
.y16_c00397{bottom:524.317500px;}
.y15_c00397{bottom:540.756000px;}
.y14_c00397{bottom:557.194500px;}
.y13_c00397{bottom:573.633000px;}
.y12_c00397{bottom:590.071500px;}
.y11_c00397{bottom:606.508500px;}
.y10_c00397{bottom:622.947000px;}
.yf_c00397{bottom:639.385500px;}
.ye_c00397{bottom:655.824000px;}
.yd_c00397{bottom:672.262500px;}
.yc_c00397{bottom:688.701000px;}
.yb_c00397{bottom:705.139500px;}
.ya_c00397{bottom:721.578000px;}
.y9_c00397{bottom:738.016500px;}
.y8_c00397{bottom:754.455000px;}
.y7_c00397{bottom:787.330500px;}
.y6_c00397{bottom:803.769000px;}
.y5_c00397{bottom:853.084500px;}
.y4_c00397{bottom:869.523000px;}
.y3_c00397{bottom:885.588000px;}
.y2_c00397{bottom:1141.930500px;}
.y1_c00397{bottom:1159.863000px;}
.h3_c00397{height:35.190766px;}
.h4_c00397{height:36.007158px;}
.h2_c00397{height:52.332837px;}
.h0_c00397{height:1262.835000px;}
.h1_c00397{height:1263.000000px;}
.w0_c00397{width:892.920000px;}
.w1_c00397{width:893.250000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:127.558500px;}
.x2_c00397{left:137.122500px;}
.x3_c00397{left:143.770500px;}
.x4_c00397{left:177.007500px;}
.x5_c00397{left:435.249000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls4_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:0.078221pt;}
.ls2_c00397{letter-spacing:0.087539pt;}
.ls0_c00397{letter-spacing:0.092873pt;}
.ls3_c00397{letter-spacing:23.724873pt;}
.ws1_c00397{word-spacing:-29.967501pt;}
.ws4_c00397{word-spacing:-23.622682pt;}
.ws3_c00397{word-spacing:-23.544461pt;}
.ws0_c00397{word-spacing:-16.684034pt;}
.ws8_c00397{word-spacing:0.000000pt;}
.ws5_c00397{word-spacing:0.039110pt;}
.wsb_c00397{word-spacing:0.050460pt;}
.ws9_c00397{word-spacing:0.065111pt;}
.wsa_c00397{word-spacing:0.074430pt;}
.ws2_c00397{word-spacing:0.156442pt;}
.wsc_c00397{word-spacing:0.180412pt;}
.ws6_c00397{word-spacing:0.189730pt;}
.ws7_c00397{word-spacing:0.195063pt;}
._0_c00397{margin-left:-3.400567pt;}
._1_c00397{width:0.893988pt;}
._3_c00397{width:47.362694pt;}
._2_c00397{width:70.985376pt;}
._5_c00397{width:94.881830pt;}
._4_c00397{width:118.624363pt;}
.fs1_c00397{font-size:39.110400pt;}
.fs0_c00397{font-size:53.133867pt;}
.y0_c00397{bottom:0.000000pt;}
.y2d_c00397{bottom:39.333333pt;}
.y2c_c00397{bottom:86.150667pt;}
.y2b_c00397{bottom:100.762667pt;}
.y2a_c00397{bottom:115.374667pt;}
.y29_c00397{bottom:129.986667pt;}
.y28_c00397{bottom:144.598667pt;}
.y27_c00397{bottom:159.210667pt;}
.y26_c00397{bottom:173.822667pt;}
.y25_c00397{bottom:188.434667pt;}
.y24_c00397{bottom:203.046667pt;}
.y23_c00397{bottom:217.658667pt;}
.y22_c00397{bottom:232.270667pt;}
.y21_c00397{bottom:261.493333pt;}
.y20_c00397{bottom:276.105333pt;}
.y1f_c00397{bottom:290.717333pt;}
.y1e_c00397{bottom:319.941333pt;}
.y1d_c00397{bottom:334.553333pt;}
.y1c_c00397{bottom:349.165333pt;}
.y1b_c00397{bottom:363.777333pt;}
.y1a_c00397{bottom:378.389333pt;}
.y19_c00397{bottom:393.000000pt;}
.y18_c00397{bottom:407.612000pt;}
.y17_c00397{bottom:451.448000pt;}
.y16_c00397{bottom:466.060000pt;}
.y15_c00397{bottom:480.672000pt;}
.y14_c00397{bottom:495.284000pt;}
.y13_c00397{bottom:509.896000pt;}
.y12_c00397{bottom:524.508000pt;}
.y11_c00397{bottom:539.118667pt;}
.y10_c00397{bottom:553.730667pt;}
.yf_c00397{bottom:568.342667pt;}
.ye_c00397{bottom:582.954667pt;}
.yd_c00397{bottom:597.566667pt;}
.yc_c00397{bottom:612.178667pt;}
.yb_c00397{bottom:626.790667pt;}
.ya_c00397{bottom:641.402667pt;}
.y9_c00397{bottom:656.014667pt;}
.y8_c00397{bottom:670.626667pt;}
.y7_c00397{bottom:699.849333pt;}
.y6_c00397{bottom:714.461333pt;}
.y5_c00397{bottom:758.297333pt;}
.y4_c00397{bottom:772.909333pt;}
.y3_c00397{bottom:787.189333pt;}
.y2_c00397{bottom:1015.049333pt;}
.y1_c00397{bottom:1030.989333pt;}
.h3_c00397{height:31.280681pt;}
.h4_c00397{height:32.006363pt;}
.h2_c00397{height:46.518078pt;}
.h0_c00397{height:1122.520000pt;}
.h1_c00397{height:1122.666667pt;}
.w0_c00397{width:793.706667pt;}
.w1_c00397{width:794.000000pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:113.385333pt;}
.x2_c00397{left:121.886667pt;}
.x3_c00397{left:127.796000pt;}
.x4_c00397{left:157.340000pt;}
.x5_c00397{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69ed4389cffeddfd2c22b732.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.893555;font-style:normal;font-weight:normal;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_276b7585ef553d7518f6d6ae.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_d6324db6c3b9f0ffad50ec52.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:1.048828;font-style: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;}
.ls3_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:0.087998px;}
.ls2_c00398{letter-spacing:0.098482px;}
.ls1_c00398{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00398{word-spacing:-33.713438px;}
.ws2_c00398{word-spacing:-26.575517px;}
.wse_c00398{word-spacing:-26.487518px;}
.ws9_c00398{word-spacing:-21.553319px;}
.ws8_c00398{word-spacing:-21.519216px;}
.ws5_c00398{word-spacing:-18.769538px;}
.ws7_c00398{word-spacing:-17.633802px;}
.ws4_c00398{word-spacing:-14.943900px;}
.wsa_c00398{word-spacing:-14.107042px;}
.wsb_c00398{word-spacing:-12.074671px;}
.ws1_c00398{word-spacing:-9.988424px;}
.ws3_c00398{word-spacing:-9.987499px;}
.ws6_c00398{word-spacing:-7.686144px;}
.ws12_c00398{word-spacing:0.000000px;}
.wsf_c00398{word-spacing:0.043999px;}
.ws15_c00398{word-spacing:0.056767px;}
.ws13_c00398{word-spacing:0.073250px;}
.ws14_c00398{word-spacing:0.083734px;}
.wsd_c00398{word-spacing:0.175997px;}
.ws16_c00398{word-spacing:0.202963px;}
.ws10_c00398{word-spacing:0.213446px;}
.ws11_c00398{word-spacing:0.219446px;}
.ws0_c00398{word-spacing:43.038600px;}
._3_c00398{margin-left:-3.825638px;}
._0_c00398{margin-left:-1.549390px;}
._4_c00398{width:1.005737px;}
._1_c00398{width:19.935816px;}
._2_c00398{width:40.109428px;}
._6_c00398{width:53.283031px;}
._5_c00398{width:79.858548px;}
._7_c00398{width:133.452408px;}
.fc6_c00398{color:rgb(0,0,207);}
.fc5_c00398{color:rgb(79,153,5);}
.fc3_c00398{color:rgb(33,74,135);}
.fc2_c00398{color:rgb(143,89,3);}
.fc4_c00398{color:rgb(207,92,0);}
.fc1_c00398{color:rgb(6,69,173);}
.fc0_c00398{color:rgb(0,0,0);}
.fs2_c00398{font-size:43.999200px;}
.fs1_c00398{font-size:59.775600px;}
.fs0_c00398{font-size:86.077200px;}
.y0_c00398{bottom:0.000000px;}
.y20_c00398{bottom:44.250000px;}
.y1f_c00398{bottom:86.982000px;}
.y1e_c00398{bottom:103.420500px;}
.y1d_c00398{bottom:119.859000px;}
.y1c_c00398{bottom:136.297500px;}
.y1b_c00398{bottom:152.736000px;}
.y1a_c00398{bottom:169.174500px;}
.y19_c00398{bottom:185.613000px;}
.y18_c00398{bottom:202.051500px;}
.y17_c00398{bottom:218.490000px;}
.y16_c00398{bottom:234.927000px;}
.y15_c00398{bottom:251.365500px;}
.y14_c00398{bottom:267.804000px;}
.y13_c00398{bottom:284.242500px;}
.y12_c00398{bottom:300.681000px;}
.y11_c00398{bottom:317.119500px;}
.y10_c00398{bottom:349.996500px;}
.yf_c00398{bottom:366.435000px;}
.ye_c00398{bottom:415.749000px;}
.yd_c00398{bottom:432.187500px;}
.yc_c00398{bottom:448.252500px;}
.yb_c00398{bottom:493.890000px;}
.ya_c00398{bottom:511.822500px;}
.y9_c00398{bottom:529.756500px;}
.y8_c00398{bottom:547.689000px;}
.y7_c00398{bottom:565.621500px;}
.y6_c00398{bottom:583.554000px;}
.y5_c00398{bottom:610.633500px;}
.y4_c00398{bottom:637.714500px;}
.y3_c00398{bottom:664.794000px;}
.y2_c00398{bottom:691.873500px;}
.y1_c00398{bottom:734.407500px;}
.h5_c00398{height:35.190766px;}
.h6_c00398{height:36.007158px;}
.h3_c00398{height:40.511979px;}
.h4_c00398{height:52.332837px;}
.h2_c00398{height:58.337477px;}
.h0_c00398{height:1262.835000px;}
.h1_c00398{height:1263.000000px;}
.w0_c00398{width:892.920000px;}
.w1_c00398{width:893.250000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:127.558500px;}
.x2_c00398{left:137.122500px;}
.x3_c00398{left:143.770500px;}
.x4_c00398{left:435.249000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls3_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:0.078221pt;}
.ls2_c00398{letter-spacing:0.087539pt;}
.ls1_c00398{letter-spacing:0.092873pt;}
.wsc_c00398{word-spacing:-29.967501pt;}
.ws2_c00398{word-spacing:-23.622682pt;}
.wse_c00398{word-spacing:-23.544461pt;}
.ws9_c00398{word-spacing:-19.158506pt;}
.ws8_c00398{word-spacing:-19.128192pt;}
.ws5_c00398{word-spacing:-16.684034pt;}
.ws7_c00398{word-spacing:-15.674491pt;}
.ws4_c00398{word-spacing:-13.283467pt;}
.wsa_c00398{word-spacing:-12.539593pt;}
.wsb_c00398{word-spacing:-10.733041pt;}
.ws1_c00398{word-spacing:-8.878599pt;}
.ws3_c00398{word-spacing:-8.877777pt;}
.ws6_c00398{word-spacing:-6.832128pt;}
.ws12_c00398{word-spacing:0.000000pt;}
.wsf_c00398{word-spacing:0.039110pt;}
.ws15_c00398{word-spacing:0.050460pt;}
.ws13_c00398{word-spacing:0.065111pt;}
.ws14_c00398{word-spacing:0.074430pt;}
.wsd_c00398{word-spacing:0.156442pt;}
.ws16_c00398{word-spacing:0.180412pt;}
.ws10_c00398{word-spacing:0.189730pt;}
.ws11_c00398{word-spacing:0.195063pt;}
.ws0_c00398{word-spacing:38.256533pt;}
._3_c00398{margin-left:-3.400567pt;}
._0_c00398{margin-left:-1.377235pt;}
._4_c00398{width:0.893988pt;}
._1_c00398{width:17.720725pt;}
._2_c00398{width:35.652825pt;}
._6_c00398{width:47.362694pt;}
._5_c00398{width:70.985376pt;}
._7_c00398{width:118.624363pt;}
.fs2_c00398{font-size:39.110400pt;}
.fs1_c00398{font-size:53.133867pt;}
.fs0_c00398{font-size:76.513067pt;}
.y0_c00398{bottom:0.000000pt;}
.y20_c00398{bottom:39.333333pt;}
.y1f_c00398{bottom:77.317333pt;}
.y1e_c00398{bottom:91.929333pt;}
.y1d_c00398{bottom:106.541333pt;}
.y1c_c00398{bottom:121.153333pt;}
.y1b_c00398{bottom:135.765333pt;}
.y1a_c00398{bottom:150.377333pt;}
.y19_c00398{bottom:164.989333pt;}
.y18_c00398{bottom:179.601333pt;}
.y17_c00398{bottom:194.213333pt;}
.y16_c00398{bottom:208.824000pt;}
.y15_c00398{bottom:223.436000pt;}
.y14_c00398{bottom:238.048000pt;}
.y13_c00398{bottom:252.660000pt;}
.y12_c00398{bottom:267.272000pt;}
.y11_c00398{bottom:281.884000pt;}
.y10_c00398{bottom:311.108000pt;}
.yf_c00398{bottom:325.720000pt;}
.ye_c00398{bottom:369.554667pt;}
.yd_c00398{bottom:384.166667pt;}
.yc_c00398{bottom:398.446667pt;}
.yb_c00398{bottom:439.013333pt;}
.ya_c00398{bottom:454.953333pt;}
.y9_c00398{bottom:470.894667pt;}
.y8_c00398{bottom:486.834667pt;}
.y7_c00398{bottom:502.774667pt;}
.y6_c00398{bottom:518.714667pt;}
.y5_c00398{bottom:542.785333pt;}
.y4_c00398{bottom:566.857333pt;}
.y3_c00398{bottom:590.928000pt;}
.y2_c00398{bottom:614.998667pt;}
.y1_c00398{bottom:652.806667pt;}
.h5_c00398{height:31.280681pt;}
.h6_c00398{height:32.006363pt;}
.h3_c00398{height:36.010648pt;}
.h4_c00398{height:46.518078pt;}
.h2_c00398{height:51.855535pt;}
.h0_c00398{height:1122.520000pt;}
.h1_c00398{height:1122.666667pt;}
.w0_c00398{width:793.706667pt;}
.w1_c00398{width:794.000000pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:113.385333pt;}
.x2_c00398{left:121.886667pt;}
.x3_c00398{left:127.796000pt;}
.x4_c00398{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b74b10b2f4cdec6725c01f80.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.048828;font-style:normal;font-weight:normal;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_10b5db433ca65a54a30a0caa.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.014648;font-style:normal;font-weight:normal;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_467e8f8defce8befccadd58a.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:0.893555;font-style:normal;font-weight:normal;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_3bda81a185fb4d55081506f7.woff2')format("woff");}.ff5_c00399{font-family:ff5_c00399;line-height:1.102051;font-style: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;}
.ls4_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:0.087998px;}
.ls2_c00399{letter-spacing:0.098482px;}
.ls3_c00399{letter-spacing:0.104482px;}
.ls1_c00399{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00399{word-spacing:-26.575517px;}
.ws4_c00399{word-spacing:-26.487518px;}
.wse_c00399{word-spacing:-21.553319px;}
.wsd_c00399{word-spacing:-21.519216px;}
.wsc_c00399{word-spacing:-19.247743px;}
.wsa_c00399{word-spacing:-18.769538px;}
.ws9_c00399{word-spacing:-14.943900px;}
.wsf_c00399{word-spacing:-14.107042px;}
.ws10_c00399{word-spacing:-12.074671px;}
.wsb_c00399{word-spacing:-10.230144px;}
.ws7_c00399{word-spacing:-9.988424px;}
.ws8_c00399{word-spacing:-9.987499px;}
.ws3_c00399{word-spacing:0.000000px;}
.ws0_c00399{word-spacing:0.043999px;}
.ws5_c00399{word-spacing:0.213446px;}
.ws1_c00399{word-spacing:0.219446px;}
.ws6_c00399{word-spacing:43.038600px;}
._2_c00399{margin-left:-1.549390px;}
._1_c00399{width:1.009757px;}
._3_c00399{width:19.935816px;}
._4_c00399{width:40.109428px;}
._0_c00399{width:106.742059px;}
.fc5_c00399{color:rgb(79,153,5);}
.fc4_c00399{color:rgb(143,89,3);}
.fc3_c00399{color:rgb(0,0,0);}
.fc6_c00399{color:rgb(6,69,173);}
.fc2_c00399{color:rgb(207,92,0);}
.fc1_c00399{color:rgb(0,0,207);}
.fc0_c00399{color:rgb(33,74,135);}
.fs0_c00399{font-size:43.999200px;}
.fs2_c00399{font-size:59.775600px;}
.fs1_c00399{font-size:86.077200px;}
.y0_c00399{bottom:0.000000px;}
.y20_c00399{bottom:44.250000px;}
.y1f_c00399{bottom:82.051500px;}
.y1e_c00399{bottom:99.984000px;}
.y1d_c00399{bottom:117.916500px;}
.y1c_c00399{bottom:135.849000px;}
.y1b_c00399{bottom:162.501000px;}
.y1a_c00399{bottom:189.151500px;}
.y19_c00399{bottom:215.802000px;}
.y18_c00399{bottom:242.454000px;}
.y17_c00399{bottom:284.478000px;}
.y16_c00399{bottom:748.903500px;}
.y15_c00399{bottom:765.342000px;}
.y14_c00399{bottom:781.780500px;}
.y13_c00399{bottom:798.219000px;}
.y12_c00399{bottom:814.657500px;}
.y11_c00399{bottom:831.096000px;}
.y10_c00399{bottom:847.534500px;}
.yf_c00399{bottom:863.973000px;}
.ye_c00399{bottom:880.411500px;}
.yd_c00399{bottom:896.848500px;}
.yc_c00399{bottom:913.287000px;}
.yb_c00399{bottom:946.164000px;}
.ya_c00399{bottom:962.602500px;}
.y9_c00399{bottom:979.041000px;}
.y8_c00399{bottom:1011.918000px;}
.y7_c00399{bottom:1028.356500px;}
.y6_c00399{bottom:1044.795000px;}
.y5_c00399{bottom:1061.232000px;}
.y4_c00399{bottom:1077.670500px;}
.y3_c00399{bottom:1094.109000px;}
.y2_c00399{bottom:1110.547500px;}
.y1_c00399{bottom:1159.863000px;}
.h3_c00399{height:35.190766px;}
.h2_c00399{height:36.007158px;}
.h5_c00399{height:40.511979px;}
.h6_c00399{height:52.332837px;}
.h4_c00399{height:58.337477px;}
.h0_c00399{height:1262.835000px;}
.h1_c00399{height:1263.000000px;}
.w0_c00399{width:892.920000px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x4_c00399{left:127.558500px;}
.x2_c00399{left:137.122500px;}
.x1_c00399{left:143.770500px;}
.x3_c00399{left:177.007500px;}
.x5_c00399{left:435.249000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls4_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:0.078221pt;}
.ls2_c00399{letter-spacing:0.087539pt;}
.ls3_c00399{letter-spacing:0.092873pt;}
.ls1_c00399{letter-spacing:23.724873pt;}
.ws2_c00399{word-spacing:-23.622682pt;}
.ws4_c00399{word-spacing:-23.544461pt;}
.wse_c00399{word-spacing:-19.158506pt;}
.wsd_c00399{word-spacing:-19.128192pt;}
.wsc_c00399{word-spacing:-17.109105pt;}
.wsa_c00399{word-spacing:-16.684034pt;}
.ws9_c00399{word-spacing:-13.283467pt;}
.wsf_c00399{word-spacing:-12.539593pt;}
.ws10_c00399{word-spacing:-10.733041pt;}
.wsb_c00399{word-spacing:-9.093461pt;}
.ws7_c00399{word-spacing:-8.878599pt;}
.ws8_c00399{word-spacing:-8.877777pt;}
.ws3_c00399{word-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.039110pt;}
.ws5_c00399{word-spacing:0.189730pt;}
.ws1_c00399{word-spacing:0.195063pt;}
.ws6_c00399{word-spacing:38.256533pt;}
._2_c00399{margin-left:-1.377235pt;}
._1_c00399{width:0.897562pt;}
._3_c00399{width:17.720725pt;}
._4_c00399{width:35.652825pt;}
._0_c00399{width:94.881830pt;}
.fs0_c00399{font-size:39.110400pt;}
.fs2_c00399{font-size:53.133867pt;}
.fs1_c00399{font-size:76.513067pt;}
.y0_c00399{bottom:0.000000pt;}
.y20_c00399{bottom:39.333333pt;}
.y1f_c00399{bottom:72.934667pt;}
.y1e_c00399{bottom:88.874667pt;}
.y1d_c00399{bottom:104.814667pt;}
.y1c_c00399{bottom:120.754667pt;}
.y1b_c00399{bottom:144.445333pt;}
.y1a_c00399{bottom:168.134667pt;}
.y19_c00399{bottom:191.824000pt;}
.y18_c00399{bottom:215.514667pt;}
.y17_c00399{bottom:252.869333pt;}
.y16_c00399{bottom:665.692000pt;}
.y15_c00399{bottom:680.304000pt;}
.y14_c00399{bottom:694.916000pt;}
.y13_c00399{bottom:709.528000pt;}
.y12_c00399{bottom:724.140000pt;}
.y11_c00399{bottom:738.752000pt;}
.y10_c00399{bottom:753.364000pt;}
.yf_c00399{bottom:767.976000pt;}
.ye_c00399{bottom:782.588000pt;}
.yd_c00399{bottom:797.198667pt;}
.yc_c00399{bottom:811.810667pt;}
.yb_c00399{bottom:841.034667pt;}
.ya_c00399{bottom:855.646667pt;}
.y9_c00399{bottom:870.258667pt;}
.y8_c00399{bottom:899.482667pt;}
.y7_c00399{bottom:914.094667pt;}
.y6_c00399{bottom:928.706667pt;}
.y5_c00399{bottom:943.317333pt;}
.y4_c00399{bottom:957.929333pt;}
.y3_c00399{bottom:972.541333pt;}
.y2_c00399{bottom:987.153333pt;}
.y1_c00399{bottom:1030.989333pt;}
.h3_c00399{height:31.280681pt;}
.h2_c00399{height:32.006363pt;}
.h5_c00399{height:36.010648pt;}
.h6_c00399{height:46.518078pt;}
.h4_c00399{height:51.855535pt;}
.h0_c00399{height:1122.520000pt;}
.h1_c00399{height:1122.666667pt;}
.w0_c00399{width:793.706667pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x4_c00399{left:113.385333pt;}
.x2_c00399{left:121.886667pt;}
.x1_c00399{left:127.796000pt;}
.x3_c00399{left:157.340000pt;}
.x5_c00399{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0472a8297785d5a1bbd29583.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.102051;font-style:normal;font-weight:normal;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_e40db3a0b02ccf9834237b0e.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.048828;font-style:normal;font-weight:normal;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_cf6f81bbc9177612ef3197ae.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls4_c00400{letter-spacing:0.000000px;}
.ls1_c00400{letter-spacing:0.087998px;}
.ls2_c00400{letter-spacing:0.098482px;}
.ls0_c00400{letter-spacing:0.104482px;}
.ls3_c00400{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00400{word-spacing:-26.575517px;}
.ws3_c00400{word-spacing:-26.487518px;}
.ws0_c00400{word-spacing:-18.769538px;}
.ws8_c00400{word-spacing:0.000000px;}
.ws5_c00400{word-spacing:0.043999px;}
.wsb_c00400{word-spacing:0.056767px;}
.ws9_c00400{word-spacing:0.073250px;}
.wsa_c00400{word-spacing:0.083734px;}
.ws2_c00400{word-spacing:0.175997px;}
.wsc_c00400{word-spacing:0.202963px;}
.ws6_c00400{word-spacing:0.213446px;}
.ws7_c00400{word-spacing:0.219446px;}
._0_c00400{margin-left:-3.825638px;}
._1_c00400{width:1.005737px;}
._3_c00400{width:53.283031px;}
._2_c00400{width:79.858548px;}
._4_c00400{width:133.452408px;}
.fc5_c00400{color:rgb(0,0,207);}
.fc4_c00400{color:rgb(79,153,5);}
.fc3_c00400{color:rgb(207,92,0);}
.fc2_c00400{color:rgb(33,74,135);}
.fc1_c00400{color:rgb(143,89,3);}
.fc0_c00400{color:rgb(0,0,0);}
.fs1_c00400{font-size:43.999200px;}
.fs0_c00400{font-size:59.775600px;}
.y0_c00400{bottom:0.000000px;}
.y2d_c00400{bottom:44.250000px;}
.y2c_c00400{bottom:96.919500px;}
.y2b_c00400{bottom:113.358000px;}
.y2a_c00400{bottom:129.796500px;}
.y29_c00400{bottom:146.235000px;}
.y28_c00400{bottom:162.673500px;}
.y27_c00400{bottom:179.112000px;}
.y26_c00400{bottom:195.550500px;}
.y25_c00400{bottom:211.989000px;}
.y24_c00400{bottom:228.427500px;}
.y23_c00400{bottom:244.866000px;}
.y22_c00400{bottom:261.304500px;}
.y21_c00400{bottom:294.180000px;}
.y20_c00400{bottom:310.618500px;}
.y1f_c00400{bottom:327.057000px;}
.y1e_c00400{bottom:359.934000px;}
.y1d_c00400{bottom:376.372500px;}
.y1c_c00400{bottom:392.811000px;}
.y1b_c00400{bottom:409.249500px;}
.y1a_c00400{bottom:425.688000px;}
.y19_c00400{bottom:442.125000px;}
.y18_c00400{bottom:458.563500px;}
.y17_c00400{bottom:507.879000px;}
.y16_c00400{bottom:524.317500px;}
.y15_c00400{bottom:540.756000px;}
.y14_c00400{bottom:557.194500px;}
.y13_c00400{bottom:573.633000px;}
.y12_c00400{bottom:590.071500px;}
.y11_c00400{bottom:606.508500px;}
.y10_c00400{bottom:622.947000px;}
.yf_c00400{bottom:639.385500px;}
.ye_c00400{bottom:655.824000px;}
.yd_c00400{bottom:672.262500px;}
.yc_c00400{bottom:688.701000px;}
.yb_c00400{bottom:705.139500px;}
.ya_c00400{bottom:721.578000px;}
.y9_c00400{bottom:738.016500px;}
.y8_c00400{bottom:754.455000px;}
.y7_c00400{bottom:787.330500px;}
.y6_c00400{bottom:803.769000px;}
.y5_c00400{bottom:853.084500px;}
.y4_c00400{bottom:869.523000px;}
.y3_c00400{bottom:885.588000px;}
.y2_c00400{bottom:1141.930500px;}
.y1_c00400{bottom:1159.863000px;}
.h3_c00400{height:35.190766px;}
.h4_c00400{height:36.007158px;}
.h2_c00400{height:52.332837px;}
.h0_c00400{height:1262.835000px;}
.h1_c00400{height:1263.000000px;}
.w0_c00400{width:892.920000px;}
.w1_c00400{width:893.250000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:127.558500px;}
.x2_c00400{left:137.122500px;}
.x3_c00400{left:143.770500px;}
.x4_c00400{left:177.007500px;}
.x5_c00400{left:435.249000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls4_c00400{letter-spacing:0.000000pt;}
.ls1_c00400{letter-spacing:0.078221pt;}
.ls2_c00400{letter-spacing:0.087539pt;}
.ls0_c00400{letter-spacing:0.092873pt;}
.ls3_c00400{letter-spacing:23.724873pt;}
.ws1_c00400{word-spacing:-29.967501pt;}
.ws4_c00400{word-spacing:-23.622682pt;}
.ws3_c00400{word-spacing:-23.544461pt;}
.ws0_c00400{word-spacing:-16.684034pt;}
.ws8_c00400{word-spacing:0.000000pt;}
.ws5_c00400{word-spacing:0.039110pt;}
.wsb_c00400{word-spacing:0.050460pt;}
.ws9_c00400{word-spacing:0.065111pt;}
.wsa_c00400{word-spacing:0.074430pt;}
.ws2_c00400{word-spacing:0.156442pt;}
.wsc_c00400{word-spacing:0.180412pt;}
.ws6_c00400{word-spacing:0.189730pt;}
.ws7_c00400{word-spacing:0.195063pt;}
._0_c00400{margin-left:-3.400567pt;}
._1_c00400{width:0.893988pt;}
._3_c00400{width:47.362694pt;}
._2_c00400{width:70.985376pt;}
._4_c00400{width:118.624363pt;}
.fs1_c00400{font-size:39.110400pt;}
.fs0_c00400{font-size:53.133867pt;}
.y0_c00400{bottom:0.000000pt;}
.y2d_c00400{bottom:39.333333pt;}
.y2c_c00400{bottom:86.150667pt;}
.y2b_c00400{bottom:100.762667pt;}
.y2a_c00400{bottom:115.374667pt;}
.y29_c00400{bottom:129.986667pt;}
.y28_c00400{bottom:144.598667pt;}
.y27_c00400{bottom:159.210667pt;}
.y26_c00400{bottom:173.822667pt;}
.y25_c00400{bottom:188.434667pt;}
.y24_c00400{bottom:203.046667pt;}
.y23_c00400{bottom:217.658667pt;}
.y22_c00400{bottom:232.270667pt;}
.y21_c00400{bottom:261.493333pt;}
.y20_c00400{bottom:276.105333pt;}
.y1f_c00400{bottom:290.717333pt;}
.y1e_c00400{bottom:319.941333pt;}
.y1d_c00400{bottom:334.553333pt;}
.y1c_c00400{bottom:349.165333pt;}
.y1b_c00400{bottom:363.777333pt;}
.y1a_c00400{bottom:378.389333pt;}
.y19_c00400{bottom:393.000000pt;}
.y18_c00400{bottom:407.612000pt;}
.y17_c00400{bottom:451.448000pt;}
.y16_c00400{bottom:466.060000pt;}
.y15_c00400{bottom:480.672000pt;}
.y14_c00400{bottom:495.284000pt;}
.y13_c00400{bottom:509.896000pt;}
.y12_c00400{bottom:524.508000pt;}
.y11_c00400{bottom:539.118667pt;}
.y10_c00400{bottom:553.730667pt;}
.yf_c00400{bottom:568.342667pt;}
.ye_c00400{bottom:582.954667pt;}
.yd_c00400{bottom:597.566667pt;}
.yc_c00400{bottom:612.178667pt;}
.yb_c00400{bottom:626.790667pt;}
.ya_c00400{bottom:641.402667pt;}
.y9_c00400{bottom:656.014667pt;}
.y8_c00400{bottom:670.626667pt;}
.y7_c00400{bottom:699.849333pt;}
.y6_c00400{bottom:714.461333pt;}
.y5_c00400{bottom:758.297333pt;}
.y4_c00400{bottom:772.909333pt;}
.y3_c00400{bottom:787.189333pt;}
.y2_c00400{bottom:1015.049333pt;}
.y1_c00400{bottom:1030.989333pt;}
.h3_c00400{height:31.280681pt;}
.h4_c00400{height:32.006363pt;}
.h2_c00400{height:46.518078pt;}
.h0_c00400{height:1122.520000pt;}
.h1_c00400{height:1122.666667pt;}
.w0_c00400{width:793.706667pt;}
.w1_c00400{width:794.000000pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:113.385333pt;}
.x2_c00400{left:121.886667pt;}
.x3_c00400{left:127.796000pt;}
.x4_c00400{left:157.340000pt;}
.x5_c00400{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25b518d45836127139b21e44.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.893555;font-style:normal;font-weight:normal;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_950ca0430de732c9f394399f.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_edd8bccfec956b51d15d2af9.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.048828;font-style: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;}
.ls3_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.087998px;}
.ls2_c00401{letter-spacing:0.098482px;}
.ls1_c00401{letter-spacing:0.104482px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00401{word-spacing:-26.575517px;}
.ws10_c00401{word-spacing:-26.487518px;}
.wsb_c00401{word-spacing:-20.622582px;}
.wse_c00401{word-spacing:-20.503031px;}
.wsd_c00401{word-spacing:-20.084602px;}
.ws5_c00401{word-spacing:-18.769538px;}
.ws8_c00401{word-spacing:-18.709763px;}
.ws9_c00401{word-spacing:-18.649987px;}
.wsc_c00401{word-spacing:-16.498066px;}
.ws7_c00401{word-spacing:-15.481880px;}
.ws4_c00401{word-spacing:-14.943900px;}
.wsa_c00401{word-spacing:-12.911530px;}
.ws1_c00401{word-spacing:-9.988424px;}
.ws3_c00401{word-spacing:-9.987499px;}
.ws6_c00401{word-spacing:-3.414144px;}
.ws14_c00401{word-spacing:0.000000px;}
.ws11_c00401{word-spacing:0.043999px;}
.wsf_c00401{word-spacing:0.175997px;}
.ws13_c00401{word-spacing:0.213446px;}
.ws12_c00401{word-spacing:0.219446px;}
.ws0_c00401{word-spacing:43.038600px;}
._2_c00401{margin-left:-6.580632px;}
._6_c00401{margin-left:-4.394160px;}
._3_c00401{margin-left:-3.287658px;}
._0_c00401{margin-left:-1.549390px;}
._7_c00401{width:1.005737px;}
._1_c00401{width:19.935816px;}
._5_c00401{width:27.065616px;}
._4_c00401{width:37.299974px;}
.fc5_c00401{color:rgb(79,153,5);}
.fc3_c00401{color:rgb(33,74,135);}
.fc2_c00401{color:rgb(143,89,3);}
.fc4_c00401{color:rgb(207,92,0);}
.fc1_c00401{color:rgb(6,69,173);}
.fc0_c00401{color:rgb(0,0,0);}
.fs2_c00401{font-size:43.999200px;}
.fs1_c00401{font-size:59.775600px;}
.fs0_c00401{font-size:86.077200px;}
.y0_c00401{bottom:0.000000px;}
.y20_c00401{bottom:44.250000px;}
.y1f_c00401{bottom:82.051500px;}
.y1e_c00401{bottom:98.490000px;}
.y1d_c00401{bottom:114.927000px;}
.y1c_c00401{bottom:147.804000px;}
.y1b_c00401{bottom:164.242500px;}
.y1a_c00401{bottom:197.119500px;}
.y19_c00401{bottom:213.558000px;}
.y18_c00401{bottom:229.996500px;}
.y17_c00401{bottom:246.435000px;}
.y16_c00401{bottom:279.310500px;}
.y15_c00401{bottom:295.749000px;}
.y14_c00401{bottom:312.187500px;}
.y13_c00401{bottom:328.626000px;}
.y12_c00401{bottom:345.064500px;}
.y11_c00401{bottom:361.503000px;}
.y10_c00401{bottom:377.941500px;}
.yf_c00401{bottom:394.380000px;}
.ye_c00401{bottom:410.445000px;}
.yd_c00401{bottom:458.839500px;}
.yc_c00401{bottom:476.772000px;}
.yb_c00401{bottom:494.704500px;}
.ya_c00401{bottom:512.637000px;}
.y9_c00401{bottom:530.571000px;}
.y8_c00401{bottom:548.503500px;}
.y7_c00401{bottom:566.436000px;}
.y6_c00401{bottom:584.368500px;}
.y5_c00401{bottom:611.355000px;}
.y4_c00401{bottom:638.341500px;}
.y3_c00401{bottom:665.326500px;}
.y2_c00401{bottom:692.313000px;}
.y1_c00401{bottom:734.712000px;}
.h5_c00401{height:35.190766px;}
.h6_c00401{height:36.007158px;}
.h3_c00401{height:40.511979px;}
.h4_c00401{height:52.332837px;}
.h2_c00401{height:58.337477px;}
.h0_c00401{height:1262.835000px;}
.h1_c00401{height:1263.000000px;}
.w0_c00401{width:892.920000px;}
.w1_c00401{width:893.250000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:127.558500px;}
.x2_c00401{left:137.122500px;}
.x3_c00401{left:435.249000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls3_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.078221pt;}
.ls2_c00401{letter-spacing:0.087539pt;}
.ls1_c00401{letter-spacing:0.092873pt;}
.ws2_c00401{word-spacing:-23.622682pt;}
.ws10_c00401{word-spacing:-23.544461pt;}
.wsb_c00401{word-spacing:-18.331184pt;}
.wse_c00401{word-spacing:-18.224916pt;}
.wsd_c00401{word-spacing:-17.852979pt;}
.ws5_c00401{word-spacing:-16.684034pt;}
.ws8_c00401{word-spacing:-16.630900pt;}
.ws9_c00401{word-spacing:-16.577766pt;}
.wsc_c00401{word-spacing:-14.664947pt;}
.ws7_c00401{word-spacing:-13.761671pt;}
.ws4_c00401{word-spacing:-13.283467pt;}
.wsa_c00401{word-spacing:-11.476915pt;}
.ws1_c00401{word-spacing:-8.878599pt;}
.ws3_c00401{word-spacing:-8.877777pt;}
.ws6_c00401{word-spacing:-3.034795pt;}
.ws14_c00401{word-spacing:0.000000pt;}
.ws11_c00401{word-spacing:0.039110pt;}
.wsf_c00401{word-spacing:0.156442pt;}
.ws13_c00401{word-spacing:0.189730pt;}
.ws12_c00401{word-spacing:0.195063pt;}
.ws0_c00401{word-spacing:38.256533pt;}
._2_c00401{margin-left:-5.849451pt;}
._6_c00401{margin-left:-3.905920pt;}
._3_c00401{margin-left:-2.922363pt;}
._0_c00401{margin-left:-1.377235pt;}
._7_c00401{width:0.893988pt;}
._1_c00401{width:17.720725pt;}
._5_c00401{width:24.058325pt;}
._4_c00401{width:33.155533pt;}
.fs2_c00401{font-size:39.110400pt;}
.fs1_c00401{font-size:53.133867pt;}
.fs0_c00401{font-size:76.513067pt;}
.y0_c00401{bottom:0.000000pt;}
.y20_c00401{bottom:39.333333pt;}
.y1f_c00401{bottom:72.934667pt;}
.y1e_c00401{bottom:87.546667pt;}
.y1d_c00401{bottom:102.157333pt;}
.y1c_c00401{bottom:131.381333pt;}
.y1b_c00401{bottom:145.993333pt;}
.y1a_c00401{bottom:175.217333pt;}
.y19_c00401{bottom:189.829333pt;}
.y18_c00401{bottom:204.441333pt;}
.y17_c00401{bottom:219.053333pt;}
.y16_c00401{bottom:248.276000pt;}
.y15_c00401{bottom:262.888000pt;}
.y14_c00401{bottom:277.500000pt;}
.y13_c00401{bottom:292.112000pt;}
.y12_c00401{bottom:306.724000pt;}
.y11_c00401{bottom:321.336000pt;}
.y10_c00401{bottom:335.948000pt;}
.yf_c00401{bottom:350.560000pt;}
.ye_c00401{bottom:364.840000pt;}
.yd_c00401{bottom:407.857333pt;}
.yc_c00401{bottom:423.797333pt;}
.yb_c00401{bottom:439.737333pt;}
.ya_c00401{bottom:455.677333pt;}
.y9_c00401{bottom:471.618667pt;}
.y8_c00401{bottom:487.558667pt;}
.y7_c00401{bottom:503.498667pt;}
.y6_c00401{bottom:519.438667pt;}
.y5_c00401{bottom:543.426667pt;}
.y4_c00401{bottom:567.414667pt;}
.y3_c00401{bottom:591.401333pt;}
.y2_c00401{bottom:615.389333pt;}
.y1_c00401{bottom:653.077333pt;}
.h5_c00401{height:31.280681pt;}
.h6_c00401{height:32.006363pt;}
.h3_c00401{height:36.010648pt;}
.h4_c00401{height:46.518078pt;}
.h2_c00401{height:51.855535pt;}
.h0_c00401{height:1122.520000pt;}
.h1_c00401{height:1122.666667pt;}
.w0_c00401{width:793.706667pt;}
.w1_c00401{width:794.000000pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:113.385333pt;}
.x2_c00401{left:121.886667pt;}
.x3_c00401{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b5c404c71a58de258de1fc6.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.014648;font-style:normal;font-weight:normal;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_8fb92c13286ab483d58b99cb.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.048828;font-style:normal;font-weight:normal;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_7012f1bbfbd81c0e78bec442.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls3_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.087998px;}
.ls2_c00402{letter-spacing:0.098482px;}
.ls1_c00402{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00402{word-spacing:-26.487518px;}
.ws5_c00402{word-spacing:0.000000px;}
.ws4_c00402{word-spacing:0.043999px;}
.ws3_c00402{word-spacing:0.053933px;}
.ws6_c00402{word-spacing:0.056767px;}
.ws0_c00402{word-spacing:0.175997px;}
.ws7_c00402{word-spacing:0.213446px;}
._0_c00402{width:1.077888px;}
._1_c00402{width:106.742059px;}
.fc5_c00402{color:rgb(0,0,207);}
.fc4_c00402{color:rgb(79,153,5);}
.fc3_c00402{color:rgb(33,74,135);}
.fc2_c00402{color:rgb(207,92,0);}
.fc1_c00402{color:rgb(0,0,0);}
.fc0_c00402{color:rgb(143,89,3);}
.fs0_c00402{font-size:43.999200px;}
.fs1_c00402{font-size:59.775600px;}
.y0_c00402{bottom:0.000000px;}
.y32_c00402{bottom:44.250000px;}
.y31_c00402{bottom:239.314500px;}
.y30_c00402{bottom:255.753000px;}
.y2f_c00402{bottom:272.191500px;}
.y2e_c00402{bottom:288.630000px;}
.y2d_c00402{bottom:305.068500px;}
.y2c_c00402{bottom:321.507000px;}
.y2b_c00402{bottom:337.945500px;}
.y2a_c00402{bottom:354.384000px;}
.y29_c00402{bottom:370.822500px;}
.y28_c00402{bottom:387.259500px;}
.y27_c00402{bottom:403.698000px;}
.y26_c00402{bottom:436.575000px;}
.y25_c00402{bottom:453.013500px;}
.y24_c00402{bottom:469.452000px;}
.y23_c00402{bottom:518.767500px;}
.y22_c00402{bottom:535.206000px;}
.y21_c00402{bottom:551.643000px;}
.y20_c00402{bottom:568.081500px;}
.y1f_c00402{bottom:584.520000px;}
.y1e_c00402{bottom:600.958500px;}
.y1d_c00402{bottom:617.397000px;}
.y1c_c00402{bottom:633.835500px;}
.y1b_c00402{bottom:650.274000px;}
.y1a_c00402{bottom:666.712500px;}
.y19_c00402{bottom:683.151000px;}
.y18_c00402{bottom:699.589500px;}
.y17_c00402{bottom:716.028000px;}
.y16_c00402{bottom:732.465000px;}
.y15_c00402{bottom:748.903500px;}
.y14_c00402{bottom:765.342000px;}
.y13_c00402{bottom:781.780500px;}
.y12_c00402{bottom:798.219000px;}
.y11_c00402{bottom:814.657500px;}
.y10_c00402{bottom:831.096000px;}
.yf_c00402{bottom:847.534500px;}
.ye_c00402{bottom:863.973000px;}
.yd_c00402{bottom:880.411500px;}
.yc_c00402{bottom:896.848500px;}
.yb_c00402{bottom:946.164000px;}
.ya_c00402{bottom:962.602500px;}
.y9_c00402{bottom:979.041000px;}
.y8_c00402{bottom:995.479500px;}
.y7_c00402{bottom:1044.795000px;}
.y6_c00402{bottom:1061.232000px;}
.y5_c00402{bottom:1094.109000px;}
.y4_c00402{bottom:1110.547500px;}
.y3_c00402{bottom:1126.986000px;}
.y2_c00402{bottom:1143.424500px;}
.y1_c00402{bottom:1159.863000px;}
.h2_c00402{height:35.190766px;}
.h3_c00402{height:36.007158px;}
.h4_c00402{height:52.332837px;}
.h0_c00402{height:1262.835000px;}
.h1_c00402{height:1263.000000px;}
.w0_c00402{width:892.920000px;}
.w1_c00402{width:893.250000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:137.122500px;}
.x2_c00402{left:143.770500px;}
.x6_c00402{left:177.007500px;}
.x5_c00402{left:230.185500px;}
.x3_c00402{left:243.480000px;}
.x4_c00402{left:276.715500px;}
.x7_c00402{left:435.249000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls3_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.078221pt;}
.ls2_c00402{letter-spacing:0.087539pt;}
.ls1_c00402{letter-spacing:0.092873pt;}
.ws1_c00402{word-spacing:-23.622682pt;}
.ws2_c00402{word-spacing:-23.544461pt;}
.ws5_c00402{word-spacing:0.000000pt;}
.ws4_c00402{word-spacing:0.039110pt;}
.ws3_c00402{word-spacing:0.047940pt;}
.ws6_c00402{word-spacing:0.050460pt;}
.ws0_c00402{word-spacing:0.156442pt;}
.ws7_c00402{word-spacing:0.189730pt;}
._0_c00402{width:0.958123pt;}
._1_c00402{width:94.881830pt;}
.fs0_c00402{font-size:39.110400pt;}
.fs1_c00402{font-size:53.133867pt;}
.y0_c00402{bottom:0.000000pt;}
.y32_c00402{bottom:39.333333pt;}
.y31_c00402{bottom:212.724000pt;}
.y30_c00402{bottom:227.336000pt;}
.y2f_c00402{bottom:241.948000pt;}
.y2e_c00402{bottom:256.560000pt;}
.y2d_c00402{bottom:271.172000pt;}
.y2c_c00402{bottom:285.784000pt;}
.y2b_c00402{bottom:300.396000pt;}
.y2a_c00402{bottom:315.008000pt;}
.y29_c00402{bottom:329.620000pt;}
.y28_c00402{bottom:344.230667pt;}
.y27_c00402{bottom:358.842667pt;}
.y26_c00402{bottom:388.066667pt;}
.y25_c00402{bottom:402.678667pt;}
.y24_c00402{bottom:417.290667pt;}
.y23_c00402{bottom:461.126667pt;}
.y22_c00402{bottom:475.738667pt;}
.y21_c00402{bottom:490.349333pt;}
.y20_c00402{bottom:504.961333pt;}
.y1f_c00402{bottom:519.573333pt;}
.y1e_c00402{bottom:534.185333pt;}
.y1d_c00402{bottom:548.797333pt;}
.y1c_c00402{bottom:563.409333pt;}
.y1b_c00402{bottom:578.021333pt;}
.y1a_c00402{bottom:592.633333pt;}
.y19_c00402{bottom:607.245333pt;}
.y18_c00402{bottom:621.857333pt;}
.y17_c00402{bottom:636.469333pt;}
.y16_c00402{bottom:651.080000pt;}
.y15_c00402{bottom:665.692000pt;}
.y14_c00402{bottom:680.304000pt;}
.y13_c00402{bottom:694.916000pt;}
.y12_c00402{bottom:709.528000pt;}
.y11_c00402{bottom:724.140000pt;}
.y10_c00402{bottom:738.752000pt;}
.yf_c00402{bottom:753.364000pt;}
.ye_c00402{bottom:767.976000pt;}
.yd_c00402{bottom:782.588000pt;}
.yc_c00402{bottom:797.198667pt;}
.yb_c00402{bottom:841.034667pt;}
.ya_c00402{bottom:855.646667pt;}
.y9_c00402{bottom:870.258667pt;}
.y8_c00402{bottom:884.870667pt;}
.y7_c00402{bottom:928.706667pt;}
.y6_c00402{bottom:943.317333pt;}
.y5_c00402{bottom:972.541333pt;}
.y4_c00402{bottom:987.153333pt;}
.y3_c00402{bottom:1001.765333pt;}
.y2_c00402{bottom:1016.377333pt;}
.y1_c00402{bottom:1030.989333pt;}
.h2_c00402{height:31.280681pt;}
.h3_c00402{height:32.006363pt;}
.h4_c00402{height:46.518078pt;}
.h0_c00402{height:1122.520000pt;}
.h1_c00402{height:1122.666667pt;}
.w0_c00402{width:793.706667pt;}
.w1_c00402{width:794.000000pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:121.886667pt;}
.x2_c00402{left:127.796000pt;}
.x6_c00402{left:157.340000pt;}
.x5_c00402{left:204.609333pt;}
.x3_c00402{left:216.426667pt;}
.x4_c00402{left:245.969333pt;}
.x7_c00402{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d19d30319870cde1e6e6c803.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.893555;font-style:normal;font-weight:normal;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_d5a4d861d5d7abd4203dfef9.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_c00a3f69461883ba77fdd320.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00403;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.048828;font-style: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;}
.ls3_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:0.087998px;}
.ls2_c00403{letter-spacing:0.098482px;}
.ls1_c00403{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00403{word-spacing:-33.713438px;}
.ws2_c00403{word-spacing:-26.575517px;}
.wse_c00403{word-spacing:-26.487518px;}
.ws9_c00403{word-spacing:-21.553319px;}
.ws8_c00403{word-spacing:-21.519216px;}
.ws5_c00403{word-spacing:-18.769538px;}
.ws7_c00403{word-spacing:-16.019861px;}
.ws4_c00403{word-spacing:-14.943900px;}
.wsa_c00403{word-spacing:-14.107042px;}
.wsb_c00403{word-spacing:-12.074671px;}
.ws1_c00403{word-spacing:-9.988424px;}
.ws3_c00403{word-spacing:-9.987499px;}
.ws6_c00403{word-spacing:-4.536144px;}
.ws12_c00403{word-spacing:0.000000px;}
.wsf_c00403{word-spacing:0.043999px;}
.ws15_c00403{word-spacing:0.056767px;}
.ws13_c00403{word-spacing:0.073250px;}
.ws14_c00403{word-spacing:0.083734px;}
.wsd_c00403{word-spacing:0.175997px;}
.ws16_c00403{word-spacing:0.202963px;}
.ws10_c00403{word-spacing:0.213446px;}
.ws11_c00403{word-spacing:0.219446px;}
.ws0_c00403{word-spacing:43.038600px;}
._2_c00403{margin-left:-6.580632px;}
._4_c00403{margin-left:-3.825638px;}
._0_c00403{margin-left:-1.549390px;}
._5_c00403{width:1.005737px;}
._1_c00403{width:19.935816px;}
._3_c00403{width:40.109428px;}
._7_c00403{width:53.283031px;}
._6_c00403{width:79.858548px;}
._8_c00403{width:133.452408px;}
.fc6_c00403{color:rgb(0,0,207);}
.fc5_c00403{color:rgb(79,153,5);}
.fc3_c00403{color:rgb(33,74,135);}
.fc2_c00403{color:rgb(143,89,3);}
.fc4_c00403{color:rgb(207,92,0);}
.fc1_c00403{color:rgb(6,69,173);}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:43.999200px;}
.fs1_c00403{font-size:59.775600px;}
.fs0_c00403{font-size:86.077200px;}
.y0_c00403{bottom:0.000000px;}
.y20_c00403{bottom:44.250000px;}
.y1f_c00403{bottom:86.982000px;}
.y1e_c00403{bottom:103.420500px;}
.y1d_c00403{bottom:119.859000px;}
.y1c_c00403{bottom:136.297500px;}
.y1b_c00403{bottom:152.736000px;}
.y1a_c00403{bottom:169.174500px;}
.y19_c00403{bottom:185.613000px;}
.y18_c00403{bottom:202.051500px;}
.y17_c00403{bottom:218.490000px;}
.y16_c00403{bottom:234.927000px;}
.y15_c00403{bottom:251.365500px;}
.y14_c00403{bottom:267.804000px;}
.y13_c00403{bottom:284.242500px;}
.y12_c00403{bottom:300.681000px;}
.y11_c00403{bottom:317.119500px;}
.y10_c00403{bottom:349.996500px;}
.yf_c00403{bottom:366.435000px;}
.ye_c00403{bottom:415.749000px;}
.yd_c00403{bottom:432.187500px;}
.yc_c00403{bottom:448.252500px;}
.yb_c00403{bottom:493.890000px;}
.ya_c00403{bottom:511.822500px;}
.y9_c00403{bottom:529.756500px;}
.y8_c00403{bottom:547.689000px;}
.y7_c00403{bottom:565.621500px;}
.y6_c00403{bottom:583.554000px;}
.y5_c00403{bottom:610.633500px;}
.y4_c00403{bottom:637.714500px;}
.y3_c00403{bottom:664.794000px;}
.y2_c00403{bottom:691.873500px;}
.y1_c00403{bottom:734.407500px;}
.h5_c00403{height:35.190766px;}
.h6_c00403{height:36.007158px;}
.h3_c00403{height:40.511979px;}
.h4_c00403{height:52.332837px;}
.h2_c00403{height:58.337477px;}
.h0_c00403{height:1262.835000px;}
.h1_c00403{height:1263.000000px;}
.w0_c00403{width:892.920000px;}
.w1_c00403{width:893.250000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:127.558500px;}
.x2_c00403{left:137.122500px;}
.x3_c00403{left:143.770500px;}
.x4_c00403{left:435.249000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls3_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:0.078221pt;}
.ls2_c00403{letter-spacing:0.087539pt;}
.ls1_c00403{letter-spacing:0.092873pt;}
.wsc_c00403{word-spacing:-29.967501pt;}
.ws2_c00403{word-spacing:-23.622682pt;}
.wse_c00403{word-spacing:-23.544461pt;}
.ws9_c00403{word-spacing:-19.158506pt;}
.ws8_c00403{word-spacing:-19.128192pt;}
.ws5_c00403{word-spacing:-16.684034pt;}
.ws7_c00403{word-spacing:-14.239876pt;}
.ws4_c00403{word-spacing:-13.283467pt;}
.wsa_c00403{word-spacing:-12.539593pt;}
.wsb_c00403{word-spacing:-10.733041pt;}
.ws1_c00403{word-spacing:-8.878599pt;}
.ws3_c00403{word-spacing:-8.877777pt;}
.ws6_c00403{word-spacing:-4.032128pt;}
.ws12_c00403{word-spacing:0.000000pt;}
.wsf_c00403{word-spacing:0.039110pt;}
.ws15_c00403{word-spacing:0.050460pt;}
.ws13_c00403{word-spacing:0.065111pt;}
.ws14_c00403{word-spacing:0.074430pt;}
.wsd_c00403{word-spacing:0.156442pt;}
.ws16_c00403{word-spacing:0.180412pt;}
.ws10_c00403{word-spacing:0.189730pt;}
.ws11_c00403{word-spacing:0.195063pt;}
.ws0_c00403{word-spacing:38.256533pt;}
._2_c00403{margin-left:-5.849451pt;}
._4_c00403{margin-left:-3.400567pt;}
._0_c00403{margin-left:-1.377235pt;}
._5_c00403{width:0.893988pt;}
._1_c00403{width:17.720725pt;}
._3_c00403{width:35.652825pt;}
._7_c00403{width:47.362694pt;}
._6_c00403{width:70.985376pt;}
._8_c00403{width:118.624363pt;}
.fs2_c00403{font-size:39.110400pt;}
.fs1_c00403{font-size:53.133867pt;}
.fs0_c00403{font-size:76.513067pt;}
.y0_c00403{bottom:0.000000pt;}
.y20_c00403{bottom:39.333333pt;}
.y1f_c00403{bottom:77.317333pt;}
.y1e_c00403{bottom:91.929333pt;}
.y1d_c00403{bottom:106.541333pt;}
.y1c_c00403{bottom:121.153333pt;}
.y1b_c00403{bottom:135.765333pt;}
.y1a_c00403{bottom:150.377333pt;}
.y19_c00403{bottom:164.989333pt;}
.y18_c00403{bottom:179.601333pt;}
.y17_c00403{bottom:194.213333pt;}
.y16_c00403{bottom:208.824000pt;}
.y15_c00403{bottom:223.436000pt;}
.y14_c00403{bottom:238.048000pt;}
.y13_c00403{bottom:252.660000pt;}
.y12_c00403{bottom:267.272000pt;}
.y11_c00403{bottom:281.884000pt;}
.y10_c00403{bottom:311.108000pt;}
.yf_c00403{bottom:325.720000pt;}
.ye_c00403{bottom:369.554667pt;}
.yd_c00403{bottom:384.166667pt;}
.yc_c00403{bottom:398.446667pt;}
.yb_c00403{bottom:439.013333pt;}
.ya_c00403{bottom:454.953333pt;}
.y9_c00403{bottom:470.894667pt;}
.y8_c00403{bottom:486.834667pt;}
.y7_c00403{bottom:502.774667pt;}
.y6_c00403{bottom:518.714667pt;}
.y5_c00403{bottom:542.785333pt;}
.y4_c00403{bottom:566.857333pt;}
.y3_c00403{bottom:590.928000pt;}
.y2_c00403{bottom:614.998667pt;}
.y1_c00403{bottom:652.806667pt;}
.h5_c00403{height:31.280681pt;}
.h6_c00403{height:32.006363pt;}
.h3_c00403{height:36.010648pt;}
.h4_c00403{height:46.518078pt;}
.h2_c00403{height:51.855535pt;}
.h0_c00403{height:1122.520000pt;}
.h1_c00403{height:1122.666667pt;}
.w0_c00403{width:793.706667pt;}
.w1_c00403{width:794.000000pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:113.385333pt;}
.x2_c00403{left:121.886667pt;}
.x3_c00403{left:127.796000pt;}
.x4_c00403{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c8191800bddb835e4eb78c7.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.048828;font-style:normal;font-weight:normal;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_d907448b3603d9b14d287b34.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.014648;font-style:normal;font-weight:normal;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_c9476948e31971f25d8214af.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:0.893555;font-style:normal;font-weight:normal;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_6fd882856da092d1aa9ca7f0.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.102051;font-style: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;}
.ls4_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.087998px;}
.ls2_c00404{letter-spacing:0.098482px;}
.ls3_c00404{letter-spacing:0.104482px;}
.ls1_c00404{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00404{word-spacing:-26.575517px;}
.ws4_c00404{word-spacing:-26.487518px;}
.wse_c00404{word-spacing:-21.553319px;}
.wsd_c00404{word-spacing:-21.519216px;}
.wsa_c00404{word-spacing:-18.769538px;}
.wsc_c00404{word-spacing:-17.633802px;}
.ws9_c00404{word-spacing:-14.943900px;}
.wsf_c00404{word-spacing:-14.107042px;}
.ws10_c00404{word-spacing:-12.074671px;}
.ws7_c00404{word-spacing:-9.988424px;}
.ws8_c00404{word-spacing:-9.987499px;}
.wsb_c00404{word-spacing:-7.686144px;}
.ws3_c00404{word-spacing:0.000000px;}
.ws0_c00404{word-spacing:0.043999px;}
.ws5_c00404{word-spacing:0.213446px;}
.ws1_c00404{word-spacing:0.219446px;}
.ws6_c00404{word-spacing:43.038600px;}
._4_c00404{margin-left:-6.580632px;}
._2_c00404{margin-left:-1.549390px;}
._1_c00404{width:1.009757px;}
._3_c00404{width:19.935816px;}
._5_c00404{width:40.109428px;}
._0_c00404{width:106.742059px;}
.fc5_c00404{color:rgb(79,153,5);}
.fc4_c00404{color:rgb(143,89,3);}
.fc3_c00404{color:rgb(0,0,0);}
.fc6_c00404{color:rgb(6,69,173);}
.fc2_c00404{color:rgb(207,92,0);}
.fc1_c00404{color:rgb(0,0,207);}
.fc0_c00404{color:rgb(33,74,135);}
.fs0_c00404{font-size:43.999200px;}
.fs2_c00404{font-size:59.775600px;}
.fs1_c00404{font-size:86.077200px;}
.y0_c00404{bottom:0.000000px;}
.y20_c00404{bottom:44.250000px;}
.y1f_c00404{bottom:82.051500px;}
.y1e_c00404{bottom:99.984000px;}
.y1d_c00404{bottom:117.916500px;}
.y1c_c00404{bottom:135.849000px;}
.y1b_c00404{bottom:162.501000px;}
.y1a_c00404{bottom:189.151500px;}
.y19_c00404{bottom:215.802000px;}
.y18_c00404{bottom:242.454000px;}
.y17_c00404{bottom:284.478000px;}
.y16_c00404{bottom:748.903500px;}
.y15_c00404{bottom:765.342000px;}
.y14_c00404{bottom:781.780500px;}
.y13_c00404{bottom:798.219000px;}
.y12_c00404{bottom:814.657500px;}
.y11_c00404{bottom:831.096000px;}
.y10_c00404{bottom:847.534500px;}
.yf_c00404{bottom:863.973000px;}
.ye_c00404{bottom:880.411500px;}
.yd_c00404{bottom:896.848500px;}
.yc_c00404{bottom:913.287000px;}
.yb_c00404{bottom:946.164000px;}
.ya_c00404{bottom:962.602500px;}
.y9_c00404{bottom:979.041000px;}
.y8_c00404{bottom:1011.918000px;}
.y7_c00404{bottom:1028.356500px;}
.y6_c00404{bottom:1044.795000px;}
.y5_c00404{bottom:1061.232000px;}
.y4_c00404{bottom:1077.670500px;}
.y3_c00404{bottom:1094.109000px;}
.y2_c00404{bottom:1110.547500px;}
.y1_c00404{bottom:1159.863000px;}
.h3_c00404{height:35.190766px;}
.h2_c00404{height:36.007158px;}
.h5_c00404{height:40.511979px;}
.h6_c00404{height:52.332837px;}
.h4_c00404{height:58.337477px;}
.h0_c00404{height:1262.835000px;}
.h1_c00404{height:1263.000000px;}
.w0_c00404{width:892.920000px;}
.w1_c00404{width:893.250000px;}
.x0_c00404{left:0.000000px;}
.x4_c00404{left:127.558500px;}
.x2_c00404{left:137.122500px;}
.x1_c00404{left:143.770500px;}
.x3_c00404{left:177.007500px;}
.x5_c00404{left:435.249000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls4_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.078221pt;}
.ls2_c00404{letter-spacing:0.087539pt;}
.ls3_c00404{letter-spacing:0.092873pt;}
.ls1_c00404{letter-spacing:23.724873pt;}
.ws2_c00404{word-spacing:-23.622682pt;}
.ws4_c00404{word-spacing:-23.544461pt;}
.wse_c00404{word-spacing:-19.158506pt;}
.wsd_c00404{word-spacing:-19.128192pt;}
.wsa_c00404{word-spacing:-16.684034pt;}
.wsc_c00404{word-spacing:-15.674491pt;}
.ws9_c00404{word-spacing:-13.283467pt;}
.wsf_c00404{word-spacing:-12.539593pt;}
.ws10_c00404{word-spacing:-10.733041pt;}
.ws7_c00404{word-spacing:-8.878599pt;}
.ws8_c00404{word-spacing:-8.877777pt;}
.wsb_c00404{word-spacing:-6.832128pt;}
.ws3_c00404{word-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.039110pt;}
.ws5_c00404{word-spacing:0.189730pt;}
.ws1_c00404{word-spacing:0.195063pt;}
.ws6_c00404{word-spacing:38.256533pt;}
._4_c00404{margin-left:-5.849451pt;}
._2_c00404{margin-left:-1.377235pt;}
._1_c00404{width:0.897562pt;}
._3_c00404{width:17.720725pt;}
._5_c00404{width:35.652825pt;}
._0_c00404{width:94.881830pt;}
.fs0_c00404{font-size:39.110400pt;}
.fs2_c00404{font-size:53.133867pt;}
.fs1_c00404{font-size:76.513067pt;}
.y0_c00404{bottom:0.000000pt;}
.y20_c00404{bottom:39.333333pt;}
.y1f_c00404{bottom:72.934667pt;}
.y1e_c00404{bottom:88.874667pt;}
.y1d_c00404{bottom:104.814667pt;}
.y1c_c00404{bottom:120.754667pt;}
.y1b_c00404{bottom:144.445333pt;}
.y1a_c00404{bottom:168.134667pt;}
.y19_c00404{bottom:191.824000pt;}
.y18_c00404{bottom:215.514667pt;}
.y17_c00404{bottom:252.869333pt;}
.y16_c00404{bottom:665.692000pt;}
.y15_c00404{bottom:680.304000pt;}
.y14_c00404{bottom:694.916000pt;}
.y13_c00404{bottom:709.528000pt;}
.y12_c00404{bottom:724.140000pt;}
.y11_c00404{bottom:738.752000pt;}
.y10_c00404{bottom:753.364000pt;}
.yf_c00404{bottom:767.976000pt;}
.ye_c00404{bottom:782.588000pt;}
.yd_c00404{bottom:797.198667pt;}
.yc_c00404{bottom:811.810667pt;}
.yb_c00404{bottom:841.034667pt;}
.ya_c00404{bottom:855.646667pt;}
.y9_c00404{bottom:870.258667pt;}
.y8_c00404{bottom:899.482667pt;}
.y7_c00404{bottom:914.094667pt;}
.y6_c00404{bottom:928.706667pt;}
.y5_c00404{bottom:943.317333pt;}
.y4_c00404{bottom:957.929333pt;}
.y3_c00404{bottom:972.541333pt;}
.y2_c00404{bottom:987.153333pt;}
.y1_c00404{bottom:1030.989333pt;}
.h3_c00404{height:31.280681pt;}
.h2_c00404{height:32.006363pt;}
.h5_c00404{height:36.010648pt;}
.h6_c00404{height:46.518078pt;}
.h4_c00404{height:51.855535pt;}
.h0_c00404{height:1122.520000pt;}
.h1_c00404{height:1122.666667pt;}
.w0_c00404{width:793.706667pt;}
.w1_c00404{width:794.000000pt;}
.x0_c00404{left:0.000000pt;}
.x4_c00404{left:113.385333pt;}
.x2_c00404{left:121.886667pt;}
.x1_c00404{left:127.796000pt;}
.x3_c00404{left:157.340000pt;}
.x5_c00404{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e9ffd49dfacfe77c8b147ac.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.102051;font-style:normal;font-weight:normal;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_5975facaedf06c941eeec7a2.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.048828;font-style:normal;font-weight:normal;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_362d7f2ee29c28cc99ee6da7.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls4_c00405{letter-spacing:0.000000px;}
.ls1_c00405{letter-spacing:0.087998px;}
.ls2_c00405{letter-spacing:0.098482px;}
.ls0_c00405{letter-spacing:0.104482px;}
.ls3_c00405{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00405{word-spacing:-26.575517px;}
.ws3_c00405{word-spacing:-26.487518px;}
.ws0_c00405{word-spacing:-18.769538px;}
.ws8_c00405{word-spacing:0.000000px;}
.ws5_c00405{word-spacing:0.043999px;}
.wsb_c00405{word-spacing:0.056767px;}
.ws9_c00405{word-spacing:0.073250px;}
.wsa_c00405{word-spacing:0.083734px;}
.ws2_c00405{word-spacing:0.175997px;}
.wsc_c00405{word-spacing:0.202963px;}
.ws6_c00405{word-spacing:0.213446px;}
.ws7_c00405{word-spacing:0.219446px;}
._0_c00405{margin-left:-3.825638px;}
._1_c00405{width:1.005737px;}
._3_c00405{width:53.283031px;}
._2_c00405{width:79.858548px;}
._4_c00405{width:133.452408px;}
.fc5_c00405{color:rgb(0,0,207);}
.fc4_c00405{color:rgb(79,153,5);}
.fc3_c00405{color:rgb(207,92,0);}
.fc2_c00405{color:rgb(33,74,135);}
.fc1_c00405{color:rgb(143,89,3);}
.fc0_c00405{color:rgb(0,0,0);}
.fs1_c00405{font-size:43.999200px;}
.fs0_c00405{font-size:59.775600px;}
.y0_c00405{bottom:0.000000px;}
.y2d_c00405{bottom:44.250000px;}
.y2c_c00405{bottom:96.919500px;}
.y2b_c00405{bottom:113.358000px;}
.y2a_c00405{bottom:129.796500px;}
.y29_c00405{bottom:146.235000px;}
.y28_c00405{bottom:162.673500px;}
.y27_c00405{bottom:179.112000px;}
.y26_c00405{bottom:195.550500px;}
.y25_c00405{bottom:211.989000px;}
.y24_c00405{bottom:228.427500px;}
.y23_c00405{bottom:244.866000px;}
.y22_c00405{bottom:261.304500px;}
.y21_c00405{bottom:294.180000px;}
.y20_c00405{bottom:310.618500px;}
.y1f_c00405{bottom:327.057000px;}
.y1e_c00405{bottom:359.934000px;}
.y1d_c00405{bottom:376.372500px;}
.y1c_c00405{bottom:392.811000px;}
.y1b_c00405{bottom:409.249500px;}
.y1a_c00405{bottom:425.688000px;}
.y19_c00405{bottom:442.125000px;}
.y18_c00405{bottom:458.563500px;}
.y17_c00405{bottom:507.879000px;}
.y16_c00405{bottom:524.317500px;}
.y15_c00405{bottom:540.756000px;}
.y14_c00405{bottom:557.194500px;}
.y13_c00405{bottom:573.633000px;}
.y12_c00405{bottom:590.071500px;}
.y11_c00405{bottom:606.508500px;}
.y10_c00405{bottom:622.947000px;}
.yf_c00405{bottom:639.385500px;}
.ye_c00405{bottom:655.824000px;}
.yd_c00405{bottom:672.262500px;}
.yc_c00405{bottom:688.701000px;}
.yb_c00405{bottom:705.139500px;}
.ya_c00405{bottom:721.578000px;}
.y9_c00405{bottom:738.016500px;}
.y8_c00405{bottom:754.455000px;}
.y7_c00405{bottom:787.330500px;}
.y6_c00405{bottom:803.769000px;}
.y5_c00405{bottom:853.084500px;}
.y4_c00405{bottom:869.523000px;}
.y3_c00405{bottom:885.588000px;}
.y2_c00405{bottom:1141.930500px;}
.y1_c00405{bottom:1159.863000px;}
.h3_c00405{height:35.190766px;}
.h4_c00405{height:36.007158px;}
.h2_c00405{height:52.332837px;}
.h0_c00405{height:1262.835000px;}
.h1_c00405{height:1263.000000px;}
.w0_c00405{width:892.920000px;}
.w1_c00405{width:893.250000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:127.558500px;}
.x2_c00405{left:137.122500px;}
.x3_c00405{left:143.770500px;}
.x4_c00405{left:177.007500px;}
.x5_c00405{left:435.249000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls4_c00405{letter-spacing:0.000000pt;}
.ls1_c00405{letter-spacing:0.078221pt;}
.ls2_c00405{letter-spacing:0.087539pt;}
.ls0_c00405{letter-spacing:0.092873pt;}
.ls3_c00405{letter-spacing:23.724873pt;}
.ws1_c00405{word-spacing:-29.967501pt;}
.ws4_c00405{word-spacing:-23.622682pt;}
.ws3_c00405{word-spacing:-23.544461pt;}
.ws0_c00405{word-spacing:-16.684034pt;}
.ws8_c00405{word-spacing:0.000000pt;}
.ws5_c00405{word-spacing:0.039110pt;}
.wsb_c00405{word-spacing:0.050460pt;}
.ws9_c00405{word-spacing:0.065111pt;}
.wsa_c00405{word-spacing:0.074430pt;}
.ws2_c00405{word-spacing:0.156442pt;}
.wsc_c00405{word-spacing:0.180412pt;}
.ws6_c00405{word-spacing:0.189730pt;}
.ws7_c00405{word-spacing:0.195063pt;}
._0_c00405{margin-left:-3.400567pt;}
._1_c00405{width:0.893988pt;}
._3_c00405{width:47.362694pt;}
._2_c00405{width:70.985376pt;}
._4_c00405{width:118.624363pt;}
.fs1_c00405{font-size:39.110400pt;}
.fs0_c00405{font-size:53.133867pt;}
.y0_c00405{bottom:0.000000pt;}
.y2d_c00405{bottom:39.333333pt;}
.y2c_c00405{bottom:86.150667pt;}
.y2b_c00405{bottom:100.762667pt;}
.y2a_c00405{bottom:115.374667pt;}
.y29_c00405{bottom:129.986667pt;}
.y28_c00405{bottom:144.598667pt;}
.y27_c00405{bottom:159.210667pt;}
.y26_c00405{bottom:173.822667pt;}
.y25_c00405{bottom:188.434667pt;}
.y24_c00405{bottom:203.046667pt;}
.y23_c00405{bottom:217.658667pt;}
.y22_c00405{bottom:232.270667pt;}
.y21_c00405{bottom:261.493333pt;}
.y20_c00405{bottom:276.105333pt;}
.y1f_c00405{bottom:290.717333pt;}
.y1e_c00405{bottom:319.941333pt;}
.y1d_c00405{bottom:334.553333pt;}
.y1c_c00405{bottom:349.165333pt;}
.y1b_c00405{bottom:363.777333pt;}
.y1a_c00405{bottom:378.389333pt;}
.y19_c00405{bottom:393.000000pt;}
.y18_c00405{bottom:407.612000pt;}
.y17_c00405{bottom:451.448000pt;}
.y16_c00405{bottom:466.060000pt;}
.y15_c00405{bottom:480.672000pt;}
.y14_c00405{bottom:495.284000pt;}
.y13_c00405{bottom:509.896000pt;}
.y12_c00405{bottom:524.508000pt;}
.y11_c00405{bottom:539.118667pt;}
.y10_c00405{bottom:553.730667pt;}
.yf_c00405{bottom:568.342667pt;}
.ye_c00405{bottom:582.954667pt;}
.yd_c00405{bottom:597.566667pt;}
.yc_c00405{bottom:612.178667pt;}
.yb_c00405{bottom:626.790667pt;}
.ya_c00405{bottom:641.402667pt;}
.y9_c00405{bottom:656.014667pt;}
.y8_c00405{bottom:670.626667pt;}
.y7_c00405{bottom:699.849333pt;}
.y6_c00405{bottom:714.461333pt;}
.y5_c00405{bottom:758.297333pt;}
.y4_c00405{bottom:772.909333pt;}
.y3_c00405{bottom:787.189333pt;}
.y2_c00405{bottom:1015.049333pt;}
.y1_c00405{bottom:1030.989333pt;}
.h3_c00405{height:31.280681pt;}
.h4_c00405{height:32.006363pt;}
.h2_c00405{height:46.518078pt;}
.h0_c00405{height:1122.520000pt;}
.h1_c00405{height:1122.666667pt;}
.w0_c00405{width:793.706667pt;}
.w1_c00405{width:794.000000pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:113.385333pt;}
.x2_c00405{left:121.886667pt;}
.x3_c00405{left:127.796000pt;}
.x4_c00405{left:157.340000pt;}
.x5_c00405{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_453b7fbb4004ee6364207889.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.893555;font-style:normal;font-weight:normal;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_c9c79f53e64baf6ad3b42064.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_83d5f65d1fe81e5819b7b4db.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:1.048828;font-style: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;}
.ls3_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.087998px;}
.ls2_c00406{letter-spacing:0.098482px;}
.ls1_c00406{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00406{word-spacing:-33.713438px;}
.ws2_c00406{word-spacing:-26.575517px;}
.wse_c00406{word-spacing:-26.487518px;}
.ws9_c00406{word-spacing:-21.553319px;}
.ws8_c00406{word-spacing:-21.519216px;}
.ws5_c00406{word-spacing:-18.769538px;}
.ws7_c00406{word-spacing:-17.633802px;}
.ws4_c00406{word-spacing:-14.943900px;}
.wsa_c00406{word-spacing:-14.107042px;}
.wsb_c00406{word-spacing:-12.074671px;}
.ws1_c00406{word-spacing:-9.988424px;}
.ws3_c00406{word-spacing:-9.987499px;}
.ws6_c00406{word-spacing:-7.686144px;}
.ws12_c00406{word-spacing:0.000000px;}
.wsf_c00406{word-spacing:0.043999px;}
.ws15_c00406{word-spacing:0.056767px;}
.ws13_c00406{word-spacing:0.073250px;}
.ws14_c00406{word-spacing:0.083734px;}
.wsd_c00406{word-spacing:0.175997px;}
.ws16_c00406{word-spacing:0.202963px;}
.ws10_c00406{word-spacing:0.213446px;}
.ws11_c00406{word-spacing:0.219446px;}
.ws0_c00406{word-spacing:43.038600px;}
._2_c00406{margin-left:-6.580632px;}
._4_c00406{margin-left:-3.825638px;}
._0_c00406{margin-left:-1.549390px;}
._5_c00406{width:1.005737px;}
._1_c00406{width:19.935816px;}
._3_c00406{width:40.109428px;}
._7_c00406{width:53.283031px;}
._6_c00406{width:79.858548px;}
._8_c00406{width:133.452408px;}
.fc6_c00406{color:rgb(0,0,207);}
.fc5_c00406{color:rgb(79,153,5);}
.fc3_c00406{color:rgb(33,74,135);}
.fc2_c00406{color:rgb(143,89,3);}
.fc4_c00406{color:rgb(207,92,0);}
.fc1_c00406{color:rgb(6,69,173);}
.fc0_c00406{color:rgb(0,0,0);}
.fs2_c00406{font-size:43.999200px;}
.fs1_c00406{font-size:59.775600px;}
.fs0_c00406{font-size:86.077200px;}
.y0_c00406{bottom:0.000000px;}
.y20_c00406{bottom:44.250000px;}
.y1f_c00406{bottom:86.982000px;}
.y1e_c00406{bottom:103.420500px;}
.y1d_c00406{bottom:119.859000px;}
.y1c_c00406{bottom:136.297500px;}
.y1b_c00406{bottom:152.736000px;}
.y1a_c00406{bottom:169.174500px;}
.y19_c00406{bottom:185.613000px;}
.y18_c00406{bottom:202.051500px;}
.y17_c00406{bottom:218.490000px;}
.y16_c00406{bottom:234.927000px;}
.y15_c00406{bottom:251.365500px;}
.y14_c00406{bottom:267.804000px;}
.y13_c00406{bottom:284.242500px;}
.y12_c00406{bottom:300.681000px;}
.y11_c00406{bottom:317.119500px;}
.y10_c00406{bottom:349.996500px;}
.yf_c00406{bottom:366.435000px;}
.ye_c00406{bottom:415.749000px;}
.yd_c00406{bottom:432.187500px;}
.yc_c00406{bottom:448.252500px;}
.yb_c00406{bottom:493.890000px;}
.ya_c00406{bottom:511.822500px;}
.y9_c00406{bottom:529.756500px;}
.y8_c00406{bottom:547.689000px;}
.y7_c00406{bottom:565.621500px;}
.y6_c00406{bottom:583.554000px;}
.y5_c00406{bottom:610.633500px;}
.y4_c00406{bottom:637.714500px;}
.y3_c00406{bottom:664.794000px;}
.y2_c00406{bottom:691.873500px;}
.y1_c00406{bottom:734.407500px;}
.h5_c00406{height:35.190766px;}
.h6_c00406{height:36.007158px;}
.h3_c00406{height:40.511979px;}
.h4_c00406{height:52.332837px;}
.h2_c00406{height:58.337477px;}
.h0_c00406{height:1262.835000px;}
.h1_c00406{height:1263.000000px;}
.w0_c00406{width:892.920000px;}
.w1_c00406{width:893.250000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:127.558500px;}
.x2_c00406{left:137.122500px;}
.x3_c00406{left:143.770500px;}
.x4_c00406{left:435.249000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls3_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.078221pt;}
.ls2_c00406{letter-spacing:0.087539pt;}
.ls1_c00406{letter-spacing:0.092873pt;}
.wsc_c00406{word-spacing:-29.967501pt;}
.ws2_c00406{word-spacing:-23.622682pt;}
.wse_c00406{word-spacing:-23.544461pt;}
.ws9_c00406{word-spacing:-19.158506pt;}
.ws8_c00406{word-spacing:-19.128192pt;}
.ws5_c00406{word-spacing:-16.684034pt;}
.ws7_c00406{word-spacing:-15.674491pt;}
.ws4_c00406{word-spacing:-13.283467pt;}
.wsa_c00406{word-spacing:-12.539593pt;}
.wsb_c00406{word-spacing:-10.733041pt;}
.ws1_c00406{word-spacing:-8.878599pt;}
.ws3_c00406{word-spacing:-8.877777pt;}
.ws6_c00406{word-spacing:-6.832128pt;}
.ws12_c00406{word-spacing:0.000000pt;}
.wsf_c00406{word-spacing:0.039110pt;}
.ws15_c00406{word-spacing:0.050460pt;}
.ws13_c00406{word-spacing:0.065111pt;}
.ws14_c00406{word-spacing:0.074430pt;}
.wsd_c00406{word-spacing:0.156442pt;}
.ws16_c00406{word-spacing:0.180412pt;}
.ws10_c00406{word-spacing:0.189730pt;}
.ws11_c00406{word-spacing:0.195063pt;}
.ws0_c00406{word-spacing:38.256533pt;}
._2_c00406{margin-left:-5.849451pt;}
._4_c00406{margin-left:-3.400567pt;}
._0_c00406{margin-left:-1.377235pt;}
._5_c00406{width:0.893988pt;}
._1_c00406{width:17.720725pt;}
._3_c00406{width:35.652825pt;}
._7_c00406{width:47.362694pt;}
._6_c00406{width:70.985376pt;}
._8_c00406{width:118.624363pt;}
.fs2_c00406{font-size:39.110400pt;}
.fs1_c00406{font-size:53.133867pt;}
.fs0_c00406{font-size:76.513067pt;}
.y0_c00406{bottom:0.000000pt;}
.y20_c00406{bottom:39.333333pt;}
.y1f_c00406{bottom:77.317333pt;}
.y1e_c00406{bottom:91.929333pt;}
.y1d_c00406{bottom:106.541333pt;}
.y1c_c00406{bottom:121.153333pt;}
.y1b_c00406{bottom:135.765333pt;}
.y1a_c00406{bottom:150.377333pt;}
.y19_c00406{bottom:164.989333pt;}
.y18_c00406{bottom:179.601333pt;}
.y17_c00406{bottom:194.213333pt;}
.y16_c00406{bottom:208.824000pt;}
.y15_c00406{bottom:223.436000pt;}
.y14_c00406{bottom:238.048000pt;}
.y13_c00406{bottom:252.660000pt;}
.y12_c00406{bottom:267.272000pt;}
.y11_c00406{bottom:281.884000pt;}
.y10_c00406{bottom:311.108000pt;}
.yf_c00406{bottom:325.720000pt;}
.ye_c00406{bottom:369.554667pt;}
.yd_c00406{bottom:384.166667pt;}
.yc_c00406{bottom:398.446667pt;}
.yb_c00406{bottom:439.013333pt;}
.ya_c00406{bottom:454.953333pt;}
.y9_c00406{bottom:470.894667pt;}
.y8_c00406{bottom:486.834667pt;}
.y7_c00406{bottom:502.774667pt;}
.y6_c00406{bottom:518.714667pt;}
.y5_c00406{bottom:542.785333pt;}
.y4_c00406{bottom:566.857333pt;}
.y3_c00406{bottom:590.928000pt;}
.y2_c00406{bottom:614.998667pt;}
.y1_c00406{bottom:652.806667pt;}
.h5_c00406{height:31.280681pt;}
.h6_c00406{height:32.006363pt;}
.h3_c00406{height:36.010648pt;}
.h4_c00406{height:46.518078pt;}
.h2_c00406{height:51.855535pt;}
.h0_c00406{height:1122.520000pt;}
.h1_c00406{height:1122.666667pt;}
.w0_c00406{width:793.706667pt;}
.w1_c00406{width:794.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:113.385333pt;}
.x2_c00406{left:121.886667pt;}
.x3_c00406{left:127.796000pt;}
.x4_c00406{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dc731ad9f7ea137875f9c3a.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.048828;font-style:normal;font-weight:normal;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_954b73c3ec72c530058a4a73.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.014648;font-style:normal;font-weight:normal;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_88245c87f25c57c21963e02a.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_6fcc8b514f7fcf19efd059cf.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.102051;font-style: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;}
.ls4_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.087998px;}
.ls2_c00407{letter-spacing:0.098482px;}
.ls3_c00407{letter-spacing:0.104482px;}
.ls1_c00407{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00407{word-spacing:-26.575517px;}
.ws4_c00407{word-spacing:-26.487518px;}
.wse_c00407{word-spacing:-21.553319px;}
.wsd_c00407{word-spacing:-21.519216px;}
.wsc_c00407{word-spacing:-19.247743px;}
.wsa_c00407{word-spacing:-18.769538px;}
.ws9_c00407{word-spacing:-14.943900px;}
.wsf_c00407{word-spacing:-14.107042px;}
.ws10_c00407{word-spacing:-12.074671px;}
.wsb_c00407{word-spacing:-10.230144px;}
.ws7_c00407{word-spacing:-9.988424px;}
.ws8_c00407{word-spacing:-9.987499px;}
.ws3_c00407{word-spacing:0.000000px;}
.ws0_c00407{word-spacing:0.043999px;}
.ws5_c00407{word-spacing:0.213446px;}
.ws1_c00407{word-spacing:0.219446px;}
.ws6_c00407{word-spacing:43.038600px;}
._4_c00407{margin-left:-6.580632px;}
._2_c00407{margin-left:-1.549390px;}
._1_c00407{width:1.020240px;}
._3_c00407{width:19.935816px;}
._5_c00407{width:40.109428px;}
._0_c00407{width:80.166542px;}
.fc5_c00407{color:rgb(79,153,5);}
.fc4_c00407{color:rgb(143,89,3);}
.fc3_c00407{color:rgb(0,0,0);}
.fc6_c00407{color:rgb(6,69,173);}
.fc2_c00407{color:rgb(207,92,0);}
.fc1_c00407{color:rgb(0,0,207);}
.fc0_c00407{color:rgb(33,74,135);}
.fs0_c00407{font-size:43.999200px;}
.fs2_c00407{font-size:59.775600px;}
.fs1_c00407{font-size:86.077200px;}
.y0_c00407{bottom:0.000000px;}
.y20_c00407{bottom:44.250000px;}
.y1f_c00407{bottom:82.051500px;}
.y1e_c00407{bottom:99.984000px;}
.y1d_c00407{bottom:117.916500px;}
.y1c_c00407{bottom:135.849000px;}
.y1b_c00407{bottom:162.501000px;}
.y1a_c00407{bottom:189.151500px;}
.y19_c00407{bottom:215.802000px;}
.y18_c00407{bottom:242.454000px;}
.y17_c00407{bottom:284.478000px;}
.y16_c00407{bottom:748.903500px;}
.y15_c00407{bottom:765.342000px;}
.y14_c00407{bottom:781.780500px;}
.y13_c00407{bottom:798.219000px;}
.y12_c00407{bottom:814.657500px;}
.y11_c00407{bottom:831.096000px;}
.y10_c00407{bottom:847.534500px;}
.yf_c00407{bottom:863.973000px;}
.ye_c00407{bottom:880.411500px;}
.yd_c00407{bottom:896.848500px;}
.yc_c00407{bottom:913.287000px;}
.yb_c00407{bottom:946.164000px;}
.ya_c00407{bottom:962.602500px;}
.y9_c00407{bottom:979.041000px;}
.y8_c00407{bottom:1011.918000px;}
.y7_c00407{bottom:1028.356500px;}
.y6_c00407{bottom:1044.795000px;}
.y5_c00407{bottom:1061.232000px;}
.y4_c00407{bottom:1077.670500px;}
.y3_c00407{bottom:1094.109000px;}
.y2_c00407{bottom:1110.547500px;}
.y1_c00407{bottom:1159.863000px;}
.h3_c00407{height:35.190766px;}
.h2_c00407{height:36.007158px;}
.h5_c00407{height:40.511979px;}
.h6_c00407{height:52.332837px;}
.h4_c00407{height:58.337477px;}
.h0_c00407{height:1262.835000px;}
.h1_c00407{height:1263.000000px;}
.w0_c00407{width:892.920000px;}
.w1_c00407{width:893.250000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:127.558500px;}
.x2_c00407{left:137.122500px;}
.x1_c00407{left:143.770500px;}
.x3_c00407{left:177.007500px;}
.x5_c00407{left:435.249000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls4_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.078221pt;}
.ls2_c00407{letter-spacing:0.087539pt;}
.ls3_c00407{letter-spacing:0.092873pt;}
.ls1_c00407{letter-spacing:23.724873pt;}
.ws2_c00407{word-spacing:-23.622682pt;}
.ws4_c00407{word-spacing:-23.544461pt;}
.wse_c00407{word-spacing:-19.158506pt;}
.wsd_c00407{word-spacing:-19.128192pt;}
.wsc_c00407{word-spacing:-17.109105pt;}
.wsa_c00407{word-spacing:-16.684034pt;}
.ws9_c00407{word-spacing:-13.283467pt;}
.wsf_c00407{word-spacing:-12.539593pt;}
.ws10_c00407{word-spacing:-10.733041pt;}
.wsb_c00407{word-spacing:-9.093461pt;}
.ws7_c00407{word-spacing:-8.878599pt;}
.ws8_c00407{word-spacing:-8.877777pt;}
.ws3_c00407{word-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.039110pt;}
.ws5_c00407{word-spacing:0.189730pt;}
.ws1_c00407{word-spacing:0.195063pt;}
.ws6_c00407{word-spacing:38.256533pt;}
._4_c00407{margin-left:-5.849451pt;}
._2_c00407{margin-left:-1.377235pt;}
._1_c00407{width:0.906880pt;}
._3_c00407{width:17.720725pt;}
._5_c00407{width:35.652825pt;}
._0_c00407{width:71.259149pt;}
.fs0_c00407{font-size:39.110400pt;}
.fs2_c00407{font-size:53.133867pt;}
.fs1_c00407{font-size:76.513067pt;}
.y0_c00407{bottom:0.000000pt;}
.y20_c00407{bottom:39.333333pt;}
.y1f_c00407{bottom:72.934667pt;}
.y1e_c00407{bottom:88.874667pt;}
.y1d_c00407{bottom:104.814667pt;}
.y1c_c00407{bottom:120.754667pt;}
.y1b_c00407{bottom:144.445333pt;}
.y1a_c00407{bottom:168.134667pt;}
.y19_c00407{bottom:191.824000pt;}
.y18_c00407{bottom:215.514667pt;}
.y17_c00407{bottom:252.869333pt;}
.y16_c00407{bottom:665.692000pt;}
.y15_c00407{bottom:680.304000pt;}
.y14_c00407{bottom:694.916000pt;}
.y13_c00407{bottom:709.528000pt;}
.y12_c00407{bottom:724.140000pt;}
.y11_c00407{bottom:738.752000pt;}
.y10_c00407{bottom:753.364000pt;}
.yf_c00407{bottom:767.976000pt;}
.ye_c00407{bottom:782.588000pt;}
.yd_c00407{bottom:797.198667pt;}
.yc_c00407{bottom:811.810667pt;}
.yb_c00407{bottom:841.034667pt;}
.ya_c00407{bottom:855.646667pt;}
.y9_c00407{bottom:870.258667pt;}
.y8_c00407{bottom:899.482667pt;}
.y7_c00407{bottom:914.094667pt;}
.y6_c00407{bottom:928.706667pt;}
.y5_c00407{bottom:943.317333pt;}
.y4_c00407{bottom:957.929333pt;}
.y3_c00407{bottom:972.541333pt;}
.y2_c00407{bottom:987.153333pt;}
.y1_c00407{bottom:1030.989333pt;}
.h3_c00407{height:31.280681pt;}
.h2_c00407{height:32.006363pt;}
.h5_c00407{height:36.010648pt;}
.h6_c00407{height:46.518078pt;}
.h4_c00407{height:51.855535pt;}
.h0_c00407{height:1122.520000pt;}
.h1_c00407{height:1122.666667pt;}
.w0_c00407{width:793.706667pt;}
.w1_c00407{width:794.000000pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:113.385333pt;}
.x2_c00407{left:121.886667pt;}
.x1_c00407{left:127.796000pt;}
.x3_c00407{left:157.340000pt;}
.x5_c00407{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9c1ffc43c5ae2bdc47721bc.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.102051;font-style:normal;font-weight:normal;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_1ac0e270ec0cdada4e289cd3.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_9f78eacea816ec978a1d255c.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls4_c00408{letter-spacing:0.000000px;}
.ls1_c00408{letter-spacing:0.087998px;}
.ls2_c00408{letter-spacing:0.098482px;}
.ls0_c00408{letter-spacing:0.104482px;}
.ls3_c00408{letter-spacing:26.690482px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-33.713438px;}
.ws4_c00408{word-spacing:-26.575517px;}
.ws3_c00408{word-spacing:-26.487518px;}
.ws0_c00408{word-spacing:-18.769538px;}
.ws8_c00408{word-spacing:0.000000px;}
.ws5_c00408{word-spacing:0.043999px;}
.wsb_c00408{word-spacing:0.056767px;}
.ws9_c00408{word-spacing:0.073250px;}
.wsa_c00408{word-spacing:0.083734px;}
.ws2_c00408{word-spacing:0.175997px;}
.wsc_c00408{word-spacing:0.202963px;}
.ws6_c00408{word-spacing:0.213446px;}
.ws7_c00408{word-spacing:0.219446px;}
._0_c00408{margin-left:-3.825638px;}
._1_c00408{width:1.005737px;}
._3_c00408{width:53.283031px;}
._2_c00408{width:79.858548px;}
._4_c00408{width:133.452408px;}
.fc5_c00408{color:rgb(0,0,207);}
.fc4_c00408{color:rgb(79,153,5);}
.fc3_c00408{color:rgb(207,92,0);}
.fc2_c00408{color:rgb(33,74,135);}
.fc1_c00408{color:rgb(143,89,3);}
.fc0_c00408{color:rgb(0,0,0);}
.fs1_c00408{font-size:43.999200px;}
.fs0_c00408{font-size:59.775600px;}
.y0_c00408{bottom:0.000000px;}
.y2d_c00408{bottom:44.250000px;}
.y2c_c00408{bottom:96.919500px;}
.y2b_c00408{bottom:113.358000px;}
.y2a_c00408{bottom:129.796500px;}
.y29_c00408{bottom:146.235000px;}
.y28_c00408{bottom:162.673500px;}
.y27_c00408{bottom:179.112000px;}
.y26_c00408{bottom:195.550500px;}
.y25_c00408{bottom:211.989000px;}
.y24_c00408{bottom:228.427500px;}
.y23_c00408{bottom:244.866000px;}
.y22_c00408{bottom:261.304500px;}
.y21_c00408{bottom:294.180000px;}
.y20_c00408{bottom:310.618500px;}
.y1f_c00408{bottom:327.057000px;}
.y1e_c00408{bottom:359.934000px;}
.y1d_c00408{bottom:376.372500px;}
.y1c_c00408{bottom:392.811000px;}
.y1b_c00408{bottom:409.249500px;}
.y1a_c00408{bottom:425.688000px;}
.y19_c00408{bottom:442.125000px;}
.y18_c00408{bottom:458.563500px;}
.y17_c00408{bottom:507.879000px;}
.y16_c00408{bottom:524.317500px;}
.y15_c00408{bottom:540.756000px;}
.y14_c00408{bottom:557.194500px;}
.y13_c00408{bottom:573.633000px;}
.y12_c00408{bottom:590.071500px;}
.y11_c00408{bottom:606.508500px;}
.y10_c00408{bottom:622.947000px;}
.yf_c00408{bottom:639.385500px;}
.ye_c00408{bottom:655.824000px;}
.yd_c00408{bottom:672.262500px;}
.yc_c00408{bottom:688.701000px;}
.yb_c00408{bottom:705.139500px;}
.ya_c00408{bottom:721.578000px;}
.y9_c00408{bottom:738.016500px;}
.y8_c00408{bottom:754.455000px;}
.y7_c00408{bottom:787.330500px;}
.y6_c00408{bottom:803.769000px;}
.y5_c00408{bottom:853.084500px;}
.y4_c00408{bottom:869.523000px;}
.y3_c00408{bottom:885.588000px;}
.y2_c00408{bottom:1141.930500px;}
.y1_c00408{bottom:1159.863000px;}
.h3_c00408{height:35.190766px;}
.h4_c00408{height:36.007158px;}
.h2_c00408{height:52.332837px;}
.h0_c00408{height:1262.835000px;}
.h1_c00408{height:1263.000000px;}
.w0_c00408{width:892.920000px;}
.w1_c00408{width:893.250000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:127.558500px;}
.x2_c00408{left:137.122500px;}
.x3_c00408{left:143.770500px;}
.x4_c00408{left:177.007500px;}
.x5_c00408{left:435.249000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls4_c00408{letter-spacing:0.000000pt;}
.ls1_c00408{letter-spacing:0.078221pt;}
.ls2_c00408{letter-spacing:0.087539pt;}
.ls0_c00408{letter-spacing:0.092873pt;}
.ls3_c00408{letter-spacing:23.724873pt;}
.ws1_c00408{word-spacing:-29.967501pt;}
.ws4_c00408{word-spacing:-23.622682pt;}
.ws3_c00408{word-spacing:-23.544461pt;}
.ws0_c00408{word-spacing:-16.684034pt;}
.ws8_c00408{word-spacing:0.000000pt;}
.ws5_c00408{word-spacing:0.039110pt;}
.wsb_c00408{word-spacing:0.050460pt;}
.ws9_c00408{word-spacing:0.065111pt;}
.wsa_c00408{word-spacing:0.074430pt;}
.ws2_c00408{word-spacing:0.156442pt;}
.wsc_c00408{word-spacing:0.180412pt;}
.ws6_c00408{word-spacing:0.189730pt;}
.ws7_c00408{word-spacing:0.195063pt;}
._0_c00408{margin-left:-3.400567pt;}
._1_c00408{width:0.893988pt;}
._3_c00408{width:47.362694pt;}
._2_c00408{width:70.985376pt;}
._4_c00408{width:118.624363pt;}
.fs1_c00408{font-size:39.110400pt;}
.fs0_c00408{font-size:53.133867pt;}
.y0_c00408{bottom:0.000000pt;}
.y2d_c00408{bottom:39.333333pt;}
.y2c_c00408{bottom:86.150667pt;}
.y2b_c00408{bottom:100.762667pt;}
.y2a_c00408{bottom:115.374667pt;}
.y29_c00408{bottom:129.986667pt;}
.y28_c00408{bottom:144.598667pt;}
.y27_c00408{bottom:159.210667pt;}
.y26_c00408{bottom:173.822667pt;}
.y25_c00408{bottom:188.434667pt;}
.y24_c00408{bottom:203.046667pt;}
.y23_c00408{bottom:217.658667pt;}
.y22_c00408{bottom:232.270667pt;}
.y21_c00408{bottom:261.493333pt;}
.y20_c00408{bottom:276.105333pt;}
.y1f_c00408{bottom:290.717333pt;}
.y1e_c00408{bottom:319.941333pt;}
.y1d_c00408{bottom:334.553333pt;}
.y1c_c00408{bottom:349.165333pt;}
.y1b_c00408{bottom:363.777333pt;}
.y1a_c00408{bottom:378.389333pt;}
.y19_c00408{bottom:393.000000pt;}
.y18_c00408{bottom:407.612000pt;}
.y17_c00408{bottom:451.448000pt;}
.y16_c00408{bottom:466.060000pt;}
.y15_c00408{bottom:480.672000pt;}
.y14_c00408{bottom:495.284000pt;}
.y13_c00408{bottom:509.896000pt;}
.y12_c00408{bottom:524.508000pt;}
.y11_c00408{bottom:539.118667pt;}
.y10_c00408{bottom:553.730667pt;}
.yf_c00408{bottom:568.342667pt;}
.ye_c00408{bottom:582.954667pt;}
.yd_c00408{bottom:597.566667pt;}
.yc_c00408{bottom:612.178667pt;}
.yb_c00408{bottom:626.790667pt;}
.ya_c00408{bottom:641.402667pt;}
.y9_c00408{bottom:656.014667pt;}
.y8_c00408{bottom:670.626667pt;}
.y7_c00408{bottom:699.849333pt;}
.y6_c00408{bottom:714.461333pt;}
.y5_c00408{bottom:758.297333pt;}
.y4_c00408{bottom:772.909333pt;}
.y3_c00408{bottom:787.189333pt;}
.y2_c00408{bottom:1015.049333pt;}
.y1_c00408{bottom:1030.989333pt;}
.h3_c00408{height:31.280681pt;}
.h4_c00408{height:32.006363pt;}
.h2_c00408{height:46.518078pt;}
.h0_c00408{height:1122.520000pt;}
.h1_c00408{height:1122.666667pt;}
.w0_c00408{width:793.706667pt;}
.w1_c00408{width:794.000000pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:113.385333pt;}
.x2_c00408{left:121.886667pt;}
.x3_c00408{left:127.796000pt;}
.x4_c00408{left:157.340000pt;}
.x5_c00408{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e25a3fe26c0aa7b653fde2.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.893555;font-style:normal;font-weight:normal;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_b4d82e2d8cfda9f4c7f43932.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.083496;font-style:normal;font-weight:normal;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_eeb5ef54dd84e1f391733b35.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.014648;font-style:normal;font-weight:normal;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_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00409{font-family:ff5_c00409;line-height:1.048828;font-style: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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(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;}
.ls0_c00409{letter-spacing:0.087998px;}
.ls2_c00409{letter-spacing:0.098482px;}
.ls1_c00409{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00409{word-spacing:-26.575517px;}
.wsf_c00409{word-spacing:-26.487518px;}
.wsd_c00409{word-spacing:-20.503031px;}
.ws9_c00409{word-spacing:-20.204153px;}
.wsc_c00409{word-spacing:-20.084602px;}
.ws5_c00409{word-spacing:-18.769538px;}
.wsb_c00409{word-spacing:-16.498066px;}
.ws4_c00409{word-spacing:-14.943900px;}
.wsa_c00409{word-spacing:-14.645022px;}
.ws7_c00409{word-spacing:-13.867939px;}
.ws8_c00409{word-spacing:-13.449510px;}
.ws1_c00409{word-spacing:-9.988424px;}
.ws3_c00409{word-spacing:-9.987499px;}
.ws6_c00409{word-spacing:-0.198144px;}
.ws13_c00409{word-spacing:0.000000px;}
.ws10_c00409{word-spacing:0.043999px;}
.wse_c00409{word-spacing:0.175997px;}
.ws12_c00409{word-spacing:0.213446px;}
.ws11_c00409{word-spacing:0.219446px;}
.ws0_c00409{word-spacing:43.038600px;}
._7_c00409{margin-left:-4.394160px;}
._2_c00409{margin-left:-3.287658px;}
._0_c00409{margin-left:-1.549390px;}
._8_c00409{width:1.005737px;}
._1_c00409{width:19.935816px;}
._4_c00409{width:21.638767px;}
._6_c00409{width:27.065616px;}
._5_c00409{width:32.581454px;}
._3_c00409{width:35.749848px;}
.fc5_c00409{color:rgb(79,153,5);}
.fc3_c00409{color:rgb(33,74,135);}
.fc2_c00409{color:rgb(143,89,3);}
.fc4_c00409{color:rgb(207,92,0);}
.fc1_c00409{color:rgb(6,69,173);}
.fc0_c00409{color:rgb(0,0,0);}
.fs2_c00409{font-size:43.999200px;}
.fs1_c00409{font-size:59.775600px;}
.fs0_c00409{font-size:86.077200px;}
.y0_c00409{bottom:0.000000px;}
.y20_c00409{bottom:44.250000px;}
.y1f_c00409{bottom:82.051500px;}
.y1e_c00409{bottom:98.490000px;}
.y1d_c00409{bottom:114.927000px;}
.y1c_c00409{bottom:147.804000px;}
.y1b_c00409{bottom:164.242500px;}
.y1a_c00409{bottom:197.119500px;}
.y19_c00409{bottom:213.558000px;}
.y18_c00409{bottom:229.996500px;}
.y17_c00409{bottom:246.435000px;}
.y16_c00409{bottom:279.310500px;}
.y15_c00409{bottom:295.749000px;}
.y14_c00409{bottom:312.187500px;}
.y13_c00409{bottom:328.626000px;}
.y12_c00409{bottom:345.064500px;}
.y11_c00409{bottom:361.503000px;}
.y10_c00409{bottom:377.941500px;}
.yf_c00409{bottom:394.380000px;}
.ye_c00409{bottom:410.445000px;}
.yd_c00409{bottom:458.839500px;}
.yc_c00409{bottom:476.772000px;}
.yb_c00409{bottom:494.704500px;}
.ya_c00409{bottom:512.637000px;}
.y9_c00409{bottom:530.571000px;}
.y8_c00409{bottom:548.503500px;}
.y7_c00409{bottom:566.436000px;}
.y6_c00409{bottom:584.368500px;}
.y5_c00409{bottom:611.355000px;}
.y4_c00409{bottom:638.341500px;}
.y3_c00409{bottom:665.326500px;}
.y2_c00409{bottom:692.313000px;}
.y1_c00409{bottom:734.712000px;}
.h5_c00409{height:35.190766px;}
.h6_c00409{height:36.007158px;}
.h3_c00409{height:40.511979px;}
.h4_c00409{height:52.332837px;}
.h2_c00409{height:58.337477px;}
.h0_c00409{height:1262.835000px;}
.h1_c00409{height:1263.000000px;}
.w0_c00409{width:892.920000px;}
.w1_c00409{width:893.250000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:127.558500px;}
.x2_c00409{left:137.122500px;}
.x3_c00409{left:435.249000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls3_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.078221pt;}
.ls2_c00409{letter-spacing:0.087539pt;}
.ls1_c00409{letter-spacing:0.092873pt;}
.ws2_c00409{word-spacing:-23.622682pt;}
.wsf_c00409{word-spacing:-23.544461pt;}
.wsd_c00409{word-spacing:-18.224916pt;}
.ws9_c00409{word-spacing:-17.959247pt;}
.wsc_c00409{word-spacing:-17.852979pt;}
.ws5_c00409{word-spacing:-16.684034pt;}
.wsb_c00409{word-spacing:-14.664947pt;}
.ws4_c00409{word-spacing:-13.283467pt;}
.wsa_c00409{word-spacing:-13.017797pt;}
.ws7_c00409{word-spacing:-12.327057pt;}
.ws8_c00409{word-spacing:-11.955120pt;}
.ws1_c00409{word-spacing:-8.878599pt;}
.ws3_c00409{word-spacing:-8.877777pt;}
.ws6_c00409{word-spacing:-0.176128pt;}
.ws13_c00409{word-spacing:0.000000pt;}
.ws10_c00409{word-spacing:0.039110pt;}
.wse_c00409{word-spacing:0.156442pt;}
.ws12_c00409{word-spacing:0.189730pt;}
.ws11_c00409{word-spacing:0.195063pt;}
.ws0_c00409{word-spacing:38.256533pt;}
._7_c00409{margin-left:-3.905920pt;}
._2_c00409{margin-left:-2.922363pt;}
._0_c00409{margin-left:-1.377235pt;}
._8_c00409{width:0.893988pt;}
._1_c00409{width:17.720725pt;}
._4_c00409{width:19.234460pt;}
._6_c00409{width:24.058325pt;}
._5_c00409{width:28.961293pt;}
._3_c00409{width:31.777643pt;}
.fs2_c00409{font-size:39.110400pt;}
.fs1_c00409{font-size:53.133867pt;}
.fs0_c00409{font-size:76.513067pt;}
.y0_c00409{bottom:0.000000pt;}
.y20_c00409{bottom:39.333333pt;}
.y1f_c00409{bottom:72.934667pt;}
.y1e_c00409{bottom:87.546667pt;}
.y1d_c00409{bottom:102.157333pt;}
.y1c_c00409{bottom:131.381333pt;}
.y1b_c00409{bottom:145.993333pt;}
.y1a_c00409{bottom:175.217333pt;}
.y19_c00409{bottom:189.829333pt;}
.y18_c00409{bottom:204.441333pt;}
.y17_c00409{bottom:219.053333pt;}
.y16_c00409{bottom:248.276000pt;}
.y15_c00409{bottom:262.888000pt;}
.y14_c00409{bottom:277.500000pt;}
.y13_c00409{bottom:292.112000pt;}
.y12_c00409{bottom:306.724000pt;}
.y11_c00409{bottom:321.336000pt;}
.y10_c00409{bottom:335.948000pt;}
.yf_c00409{bottom:350.560000pt;}
.ye_c00409{bottom:364.840000pt;}
.yd_c00409{bottom:407.857333pt;}
.yc_c00409{bottom:423.797333pt;}
.yb_c00409{bottom:439.737333pt;}
.ya_c00409{bottom:455.677333pt;}
.y9_c00409{bottom:471.618667pt;}
.y8_c00409{bottom:487.558667pt;}
.y7_c00409{bottom:503.498667pt;}
.y6_c00409{bottom:519.438667pt;}
.y5_c00409{bottom:543.426667pt;}
.y4_c00409{bottom:567.414667pt;}
.y3_c00409{bottom:591.401333pt;}
.y2_c00409{bottom:615.389333pt;}
.y1_c00409{bottom:653.077333pt;}
.h5_c00409{height:31.280681pt;}
.h6_c00409{height:32.006363pt;}
.h3_c00409{height:36.010648pt;}
.h4_c00409{height:46.518078pt;}
.h2_c00409{height:51.855535pt;}
.h0_c00409{height:1122.520000pt;}
.h1_c00409{height:1122.666667pt;}
.w0_c00409{width:793.706667pt;}
.w1_c00409{width:794.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:113.385333pt;}
.x2_c00409{left:121.886667pt;}
.x3_c00409{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51cd3e9dbb36d27ceac6f415.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.014648;font-style:normal;font-weight:normal;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_f53430adab6c3edf6ac2a180.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.048828;font-style:normal;font-weight:normal;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_d68b5e66b937e890f0444d57.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls3_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:0.087998px;}
.ls2_c00410{letter-spacing:0.098482px;}
.ls1_c00410{letter-spacing:0.104482px;}
.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;}
}
.ws8_c00410{word-spacing:-33.713438px;}
.ws1_c00410{word-spacing:-26.575517px;}
.ws2_c00410{word-spacing:-26.487518px;}
.ws5_c00410{word-spacing:0.000000px;}
.ws4_c00410{word-spacing:0.043999px;}
.ws3_c00410{word-spacing:0.053933px;}
.ws6_c00410{word-spacing:0.056767px;}
.ws0_c00410{word-spacing:0.175997px;}
.ws7_c00410{word-spacing:0.213446px;}
._2_c00410{margin-left:-2.211697px;}
._0_c00410{width:1.077888px;}
._1_c00410{width:106.742059px;}
.fc5_c00410{color:rgb(0,0,207);}
.fc4_c00410{color:rgb(79,153,5);}
.fc3_c00410{color:rgb(33,74,135);}
.fc2_c00410{color:rgb(207,92,0);}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(143,89,3);}
.fs0_c00410{font-size:43.999200px;}
.fs1_c00410{font-size:59.775600px;}
.y0_c00410{bottom:0.000000px;}
.y32_c00410{bottom:44.250000px;}
.y31_c00410{bottom:239.314500px;}
.y30_c00410{bottom:255.753000px;}
.y2f_c00410{bottom:272.191500px;}
.y2e_c00410{bottom:288.630000px;}
.y2d_c00410{bottom:305.068500px;}
.y2c_c00410{bottom:321.507000px;}
.y2b_c00410{bottom:337.945500px;}
.y2a_c00410{bottom:354.384000px;}
.y29_c00410{bottom:370.822500px;}
.y28_c00410{bottom:387.259500px;}
.y27_c00410{bottom:403.698000px;}
.y26_c00410{bottom:436.575000px;}
.y25_c00410{bottom:453.013500px;}
.y24_c00410{bottom:469.452000px;}
.y23_c00410{bottom:518.767500px;}
.y22_c00410{bottom:535.206000px;}
.y21_c00410{bottom:551.643000px;}
.y20_c00410{bottom:568.081500px;}
.y1f_c00410{bottom:584.520000px;}
.y1e_c00410{bottom:600.958500px;}
.y1d_c00410{bottom:617.397000px;}
.y1c_c00410{bottom:633.835500px;}
.y1b_c00410{bottom:650.274000px;}
.y1a_c00410{bottom:666.712500px;}
.y19_c00410{bottom:683.151000px;}
.y18_c00410{bottom:699.589500px;}
.y17_c00410{bottom:716.028000px;}
.y16_c00410{bottom:732.465000px;}
.y15_c00410{bottom:748.903500px;}
.y14_c00410{bottom:765.342000px;}
.y13_c00410{bottom:781.780500px;}
.y12_c00410{bottom:798.219000px;}
.y11_c00410{bottom:814.657500px;}
.y10_c00410{bottom:831.096000px;}
.yf_c00410{bottom:847.534500px;}
.ye_c00410{bottom:863.973000px;}
.yd_c00410{bottom:880.411500px;}
.yc_c00410{bottom:896.848500px;}
.yb_c00410{bottom:946.164000px;}
.ya_c00410{bottom:962.602500px;}
.y9_c00410{bottom:979.041000px;}
.y8_c00410{bottom:995.479500px;}
.y7_c00410{bottom:1044.795000px;}
.y6_c00410{bottom:1061.232000px;}
.y5_c00410{bottom:1094.109000px;}
.y4_c00410{bottom:1110.547500px;}
.y3_c00410{bottom:1126.986000px;}
.y2_c00410{bottom:1143.424500px;}
.y1_c00410{bottom:1159.863000px;}
.h2_c00410{height:35.190766px;}
.h3_c00410{height:36.007158px;}
.h4_c00410{height:52.332837px;}
.h0_c00410{height:1262.835000px;}
.h1_c00410{height:1263.000000px;}
.w0_c00410{width:892.920000px;}
.w1_c00410{width:893.250000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:137.122500px;}
.x2_c00410{left:143.770500px;}
.x6_c00410{left:177.007500px;}
.x5_c00410{left:230.185500px;}
.x3_c00410{left:243.480000px;}
.x4_c00410{left:276.715500px;}
.x7_c00410{left:435.526500px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls3_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:0.078221pt;}
.ls2_c00410{letter-spacing:0.087539pt;}
.ls1_c00410{letter-spacing:0.092873pt;}
.ws8_c00410{word-spacing:-29.967501pt;}
.ws1_c00410{word-spacing:-23.622682pt;}
.ws2_c00410{word-spacing:-23.544461pt;}
.ws5_c00410{word-spacing:0.000000pt;}
.ws4_c00410{word-spacing:0.039110pt;}
.ws3_c00410{word-spacing:0.047940pt;}
.ws6_c00410{word-spacing:0.050460pt;}
.ws0_c00410{word-spacing:0.156442pt;}
.ws7_c00410{word-spacing:0.189730pt;}
._2_c00410{margin-left:-1.965953pt;}
._0_c00410{width:0.958123pt;}
._1_c00410{width:94.881830pt;}
.fs0_c00410{font-size:39.110400pt;}
.fs1_c00410{font-size:53.133867pt;}
.y0_c00410{bottom:0.000000pt;}
.y32_c00410{bottom:39.333333pt;}
.y31_c00410{bottom:212.724000pt;}
.y30_c00410{bottom:227.336000pt;}
.y2f_c00410{bottom:241.948000pt;}
.y2e_c00410{bottom:256.560000pt;}
.y2d_c00410{bottom:271.172000pt;}
.y2c_c00410{bottom:285.784000pt;}
.y2b_c00410{bottom:300.396000pt;}
.y2a_c00410{bottom:315.008000pt;}
.y29_c00410{bottom:329.620000pt;}
.y28_c00410{bottom:344.230667pt;}
.y27_c00410{bottom:358.842667pt;}
.y26_c00410{bottom:388.066667pt;}
.y25_c00410{bottom:402.678667pt;}
.y24_c00410{bottom:417.290667pt;}
.y23_c00410{bottom:461.126667pt;}
.y22_c00410{bottom:475.738667pt;}
.y21_c00410{bottom:490.349333pt;}
.y20_c00410{bottom:504.961333pt;}
.y1f_c00410{bottom:519.573333pt;}
.y1e_c00410{bottom:534.185333pt;}
.y1d_c00410{bottom:548.797333pt;}
.y1c_c00410{bottom:563.409333pt;}
.y1b_c00410{bottom:578.021333pt;}
.y1a_c00410{bottom:592.633333pt;}
.y19_c00410{bottom:607.245333pt;}
.y18_c00410{bottom:621.857333pt;}
.y17_c00410{bottom:636.469333pt;}
.y16_c00410{bottom:651.080000pt;}
.y15_c00410{bottom:665.692000pt;}
.y14_c00410{bottom:680.304000pt;}
.y13_c00410{bottom:694.916000pt;}
.y12_c00410{bottom:709.528000pt;}
.y11_c00410{bottom:724.140000pt;}
.y10_c00410{bottom:738.752000pt;}
.yf_c00410{bottom:753.364000pt;}
.ye_c00410{bottom:767.976000pt;}
.yd_c00410{bottom:782.588000pt;}
.yc_c00410{bottom:797.198667pt;}
.yb_c00410{bottom:841.034667pt;}
.ya_c00410{bottom:855.646667pt;}
.y9_c00410{bottom:870.258667pt;}
.y8_c00410{bottom:884.870667pt;}
.y7_c00410{bottom:928.706667pt;}
.y6_c00410{bottom:943.317333pt;}
.y5_c00410{bottom:972.541333pt;}
.y4_c00410{bottom:987.153333pt;}
.y3_c00410{bottom:1001.765333pt;}
.y2_c00410{bottom:1016.377333pt;}
.y1_c00410{bottom:1030.989333pt;}
.h2_c00410{height:31.280681pt;}
.h3_c00410{height:32.006363pt;}
.h4_c00410{height:46.518078pt;}
.h0_c00410{height:1122.520000pt;}
.h1_c00410{height:1122.666667pt;}
.w0_c00410{width:793.706667pt;}
.w1_c00410{width:794.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:121.886667pt;}
.x2_c00410{left:127.796000pt;}
.x6_c00410{left:157.340000pt;}
.x5_c00410{left:204.609333pt;}
.x3_c00410{left:216.426667pt;}
.x4_c00410{left:245.969333pt;}
.x7_c00410{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19b3140cf704e80fee0f4baa.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.893555;font-style:normal;font-weight:normal;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_526e741a30f53211cb31fb56.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.083496;font-style:normal;font-weight:normal;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_c7ac7635783954a847f1990c.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00411;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.048828;font-style: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);}
.v0_c00411{vertical-align:0.000000px;}
.ls3_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:0.087998px;}
.ls2_c00411{letter-spacing:0.098482px;}
.ls1_c00411{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00411{word-spacing:-33.713438px;}
.ws2_c00411{word-spacing:-26.575517px;}
.wse_c00411{word-spacing:-26.487518px;}
.ws9_c00411{word-spacing:-21.553319px;}
.ws8_c00411{word-spacing:-21.519216px;}
.ws5_c00411{word-spacing:-18.769538px;}
.ws7_c00411{word-spacing:-16.019861px;}
.ws4_c00411{word-spacing:-14.943900px;}
.wsa_c00411{word-spacing:-14.107042px;}
.wsb_c00411{word-spacing:-12.074671px;}
.ws1_c00411{word-spacing:-9.988424px;}
.ws3_c00411{word-spacing:-9.987499px;}
.ws6_c00411{word-spacing:-4.536144px;}
.ws12_c00411{word-spacing:0.000000px;}
.wsf_c00411{word-spacing:0.043999px;}
.ws15_c00411{word-spacing:0.056767px;}
.ws13_c00411{word-spacing:0.073250px;}
.ws14_c00411{word-spacing:0.083734px;}
.wsd_c00411{word-spacing:0.175997px;}
.ws16_c00411{word-spacing:0.202963px;}
.ws10_c00411{word-spacing:0.213446px;}
.ws11_c00411{word-spacing:0.219446px;}
.ws0_c00411{word-spacing:43.038600px;}
._3_c00411{margin-left:-3.825638px;}
._0_c00411{margin-left:-1.549390px;}
._4_c00411{width:1.005737px;}
._1_c00411{width:19.935816px;}
._2_c00411{width:40.109428px;}
._6_c00411{width:53.283031px;}
._5_c00411{width:79.858548px;}
._7_c00411{width:133.452408px;}
.fc6_c00411{color:rgb(0,0,207);}
.fc5_c00411{color:rgb(79,153,5);}
.fc3_c00411{color:rgb(33,74,135);}
.fc2_c00411{color:rgb(143,89,3);}
.fc4_c00411{color:rgb(207,92,0);}
.fc1_c00411{color:rgb(6,69,173);}
.fc0_c00411{color:rgb(0,0,0);}
.fs2_c00411{font-size:43.999200px;}
.fs1_c00411{font-size:59.775600px;}
.fs0_c00411{font-size:86.077200px;}
.y0_c00411{bottom:0.000000px;}
.y20_c00411{bottom:44.250000px;}
.y1f_c00411{bottom:86.982000px;}
.y1e_c00411{bottom:103.420500px;}
.y1d_c00411{bottom:119.859000px;}
.y1c_c00411{bottom:136.297500px;}
.y1b_c00411{bottom:152.736000px;}
.y1a_c00411{bottom:169.174500px;}
.y19_c00411{bottom:185.613000px;}
.y18_c00411{bottom:202.051500px;}
.y17_c00411{bottom:218.490000px;}
.y16_c00411{bottom:234.927000px;}
.y15_c00411{bottom:251.365500px;}
.y14_c00411{bottom:267.804000px;}
.y13_c00411{bottom:284.242500px;}
.y12_c00411{bottom:300.681000px;}
.y11_c00411{bottom:317.119500px;}
.y10_c00411{bottom:349.996500px;}
.yf_c00411{bottom:366.435000px;}
.ye_c00411{bottom:415.749000px;}
.yd_c00411{bottom:432.187500px;}
.yc_c00411{bottom:448.252500px;}
.yb_c00411{bottom:493.890000px;}
.ya_c00411{bottom:511.822500px;}
.y9_c00411{bottom:529.756500px;}
.y8_c00411{bottom:547.689000px;}
.y7_c00411{bottom:565.621500px;}
.y6_c00411{bottom:583.554000px;}
.y5_c00411{bottom:610.633500px;}
.y4_c00411{bottom:637.714500px;}
.y3_c00411{bottom:664.794000px;}
.y2_c00411{bottom:691.873500px;}
.y1_c00411{bottom:734.407500px;}
.h5_c00411{height:35.190766px;}
.h6_c00411{height:36.007158px;}
.h3_c00411{height:40.511979px;}
.h4_c00411{height:52.332837px;}
.h2_c00411{height:58.337477px;}
.h0_c00411{height:1262.835000px;}
.h1_c00411{height:1263.000000px;}
.w0_c00411{width:892.920000px;}
.w1_c00411{width:893.250000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:127.558500px;}
.x2_c00411{left:137.122500px;}
.x3_c00411{left:143.770500px;}
.x4_c00411{left:435.249000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls3_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:0.078221pt;}
.ls2_c00411{letter-spacing:0.087539pt;}
.ls1_c00411{letter-spacing:0.092873pt;}
.wsc_c00411{word-spacing:-29.967501pt;}
.ws2_c00411{word-spacing:-23.622682pt;}
.wse_c00411{word-spacing:-23.544461pt;}
.ws9_c00411{word-spacing:-19.158506pt;}
.ws8_c00411{word-spacing:-19.128192pt;}
.ws5_c00411{word-spacing:-16.684034pt;}
.ws7_c00411{word-spacing:-14.239876pt;}
.ws4_c00411{word-spacing:-13.283467pt;}
.wsa_c00411{word-spacing:-12.539593pt;}
.wsb_c00411{word-spacing:-10.733041pt;}
.ws1_c00411{word-spacing:-8.878599pt;}
.ws3_c00411{word-spacing:-8.877777pt;}
.ws6_c00411{word-spacing:-4.032128pt;}
.ws12_c00411{word-spacing:0.000000pt;}
.wsf_c00411{word-spacing:0.039110pt;}
.ws15_c00411{word-spacing:0.050460pt;}
.ws13_c00411{word-spacing:0.065111pt;}
.ws14_c00411{word-spacing:0.074430pt;}
.wsd_c00411{word-spacing:0.156442pt;}
.ws16_c00411{word-spacing:0.180412pt;}
.ws10_c00411{word-spacing:0.189730pt;}
.ws11_c00411{word-spacing:0.195063pt;}
.ws0_c00411{word-spacing:38.256533pt;}
._3_c00411{margin-left:-3.400567pt;}
._0_c00411{margin-left:-1.377235pt;}
._4_c00411{width:0.893988pt;}
._1_c00411{width:17.720725pt;}
._2_c00411{width:35.652825pt;}
._6_c00411{width:47.362694pt;}
._5_c00411{width:70.985376pt;}
._7_c00411{width:118.624363pt;}
.fs2_c00411{font-size:39.110400pt;}
.fs1_c00411{font-size:53.133867pt;}
.fs0_c00411{font-size:76.513067pt;}
.y0_c00411{bottom:0.000000pt;}
.y20_c00411{bottom:39.333333pt;}
.y1f_c00411{bottom:77.317333pt;}
.y1e_c00411{bottom:91.929333pt;}
.y1d_c00411{bottom:106.541333pt;}
.y1c_c00411{bottom:121.153333pt;}
.y1b_c00411{bottom:135.765333pt;}
.y1a_c00411{bottom:150.377333pt;}
.y19_c00411{bottom:164.989333pt;}
.y18_c00411{bottom:179.601333pt;}
.y17_c00411{bottom:194.213333pt;}
.y16_c00411{bottom:208.824000pt;}
.y15_c00411{bottom:223.436000pt;}
.y14_c00411{bottom:238.048000pt;}
.y13_c00411{bottom:252.660000pt;}
.y12_c00411{bottom:267.272000pt;}
.y11_c00411{bottom:281.884000pt;}
.y10_c00411{bottom:311.108000pt;}
.yf_c00411{bottom:325.720000pt;}
.ye_c00411{bottom:369.554667pt;}
.yd_c00411{bottom:384.166667pt;}
.yc_c00411{bottom:398.446667pt;}
.yb_c00411{bottom:439.013333pt;}
.ya_c00411{bottom:454.953333pt;}
.y9_c00411{bottom:470.894667pt;}
.y8_c00411{bottom:486.834667pt;}
.y7_c00411{bottom:502.774667pt;}
.y6_c00411{bottom:518.714667pt;}
.y5_c00411{bottom:542.785333pt;}
.y4_c00411{bottom:566.857333pt;}
.y3_c00411{bottom:590.928000pt;}
.y2_c00411{bottom:614.998667pt;}
.y1_c00411{bottom:652.806667pt;}
.h5_c00411{height:31.280681pt;}
.h6_c00411{height:32.006363pt;}
.h3_c00411{height:36.010648pt;}
.h4_c00411{height:46.518078pt;}
.h2_c00411{height:51.855535pt;}
.h0_c00411{height:1122.520000pt;}
.h1_c00411{height:1122.666667pt;}
.w0_c00411{width:793.706667pt;}
.w1_c00411{width:794.000000pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:113.385333pt;}
.x2_c00411{left:121.886667pt;}
.x3_c00411{left:127.796000pt;}
.x4_c00411{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe287fbb49e52aea844f03b0.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.048828;font-style:normal;font-weight:normal;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_2b6506f18495db95ab3427bc.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.014648;font-style:normal;font-weight:normal;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_19b3140cf704e80fee0f4baa.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:0.893555;font-style:normal;font-weight:normal;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_b5fd7b7b35b3cf086f3e017c.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:1.102051;font-style: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;}
.ls4_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:0.087998px;}
.ls2_c00412{letter-spacing:0.098482px;}
.ls3_c00412{letter-spacing:0.104482px;}
.ls1_c00412{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00412{word-spacing:-26.575517px;}
.ws4_c00412{word-spacing:-26.487518px;}
.wse_c00412{word-spacing:-21.553319px;}
.wsd_c00412{word-spacing:-21.519216px;}
.wsa_c00412{word-spacing:-18.769538px;}
.wsc_c00412{word-spacing:-17.633802px;}
.ws9_c00412{word-spacing:-14.943900px;}
.wsf_c00412{word-spacing:-14.107042px;}
.ws10_c00412{word-spacing:-12.074671px;}
.ws7_c00412{word-spacing:-9.988424px;}
.ws8_c00412{word-spacing:-9.987499px;}
.wsb_c00412{word-spacing:-7.686144px;}
.ws3_c00412{word-spacing:0.000000px;}
.ws0_c00412{word-spacing:0.043999px;}
.ws5_c00412{word-spacing:0.213446px;}
.ws1_c00412{word-spacing:0.219446px;}
.ws6_c00412{word-spacing:43.038600px;}
._2_c00412{margin-left:-1.549390px;}
._1_c00412{width:1.009757px;}
._3_c00412{width:19.935816px;}
._4_c00412{width:40.109428px;}
._0_c00412{width:106.742059px;}
.fc5_c00412{color:rgb(79,153,5);}
.fc4_c00412{color:rgb(143,89,3);}
.fc3_c00412{color:rgb(0,0,0);}
.fc6_c00412{color:rgb(6,69,173);}
.fc2_c00412{color:rgb(207,92,0);}
.fc1_c00412{color:rgb(0,0,207);}
.fc0_c00412{color:rgb(33,74,135);}
.fs0_c00412{font-size:43.999200px;}
.fs2_c00412{font-size:59.775600px;}
.fs1_c00412{font-size:86.077200px;}
.y0_c00412{bottom:0.000000px;}
.y20_c00412{bottom:44.250000px;}
.y1f_c00412{bottom:82.051500px;}
.y1e_c00412{bottom:99.984000px;}
.y1d_c00412{bottom:117.916500px;}
.y1c_c00412{bottom:135.849000px;}
.y1b_c00412{bottom:162.501000px;}
.y1a_c00412{bottom:189.151500px;}
.y19_c00412{bottom:215.802000px;}
.y18_c00412{bottom:242.454000px;}
.y17_c00412{bottom:284.478000px;}
.y16_c00412{bottom:748.903500px;}
.y15_c00412{bottom:765.342000px;}
.y14_c00412{bottom:781.780500px;}
.y13_c00412{bottom:798.219000px;}
.y12_c00412{bottom:814.657500px;}
.y11_c00412{bottom:831.096000px;}
.y10_c00412{bottom:847.534500px;}
.yf_c00412{bottom:863.973000px;}
.ye_c00412{bottom:880.411500px;}
.yd_c00412{bottom:896.848500px;}
.yc_c00412{bottom:913.287000px;}
.yb_c00412{bottom:946.164000px;}
.ya_c00412{bottom:962.602500px;}
.y9_c00412{bottom:979.041000px;}
.y8_c00412{bottom:1011.918000px;}
.y7_c00412{bottom:1028.356500px;}
.y6_c00412{bottom:1044.795000px;}
.y5_c00412{bottom:1061.232000px;}
.y4_c00412{bottom:1077.670500px;}
.y3_c00412{bottom:1094.109000px;}
.y2_c00412{bottom:1110.547500px;}
.y1_c00412{bottom:1159.863000px;}
.h3_c00412{height:35.190766px;}
.h2_c00412{height:36.007158px;}
.h5_c00412{height:40.511979px;}
.h6_c00412{height:52.332837px;}
.h4_c00412{height:58.337477px;}
.h0_c00412{height:1262.835000px;}
.h1_c00412{height:1263.000000px;}
.w0_c00412{width:892.920000px;}
.w1_c00412{width:893.250000px;}
.x0_c00412{left:0.000000px;}
.x4_c00412{left:127.558500px;}
.x2_c00412{left:137.122500px;}
.x1_c00412{left:143.770500px;}
.x3_c00412{left:177.007500px;}
.x5_c00412{left:435.249000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls4_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:0.078221pt;}
.ls2_c00412{letter-spacing:0.087539pt;}
.ls3_c00412{letter-spacing:0.092873pt;}
.ls1_c00412{letter-spacing:23.724873pt;}
.ws2_c00412{word-spacing:-23.622682pt;}
.ws4_c00412{word-spacing:-23.544461pt;}
.wse_c00412{word-spacing:-19.158506pt;}
.wsd_c00412{word-spacing:-19.128192pt;}
.wsa_c00412{word-spacing:-16.684034pt;}
.wsc_c00412{word-spacing:-15.674491pt;}
.ws9_c00412{word-spacing:-13.283467pt;}
.wsf_c00412{word-spacing:-12.539593pt;}
.ws10_c00412{word-spacing:-10.733041pt;}
.ws7_c00412{word-spacing:-8.878599pt;}
.ws8_c00412{word-spacing:-8.877777pt;}
.wsb_c00412{word-spacing:-6.832128pt;}
.ws3_c00412{word-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.039110pt;}
.ws5_c00412{word-spacing:0.189730pt;}
.ws1_c00412{word-spacing:0.195063pt;}
.ws6_c00412{word-spacing:38.256533pt;}
._2_c00412{margin-left:-1.377235pt;}
._1_c00412{width:0.897562pt;}
._3_c00412{width:17.720725pt;}
._4_c00412{width:35.652825pt;}
._0_c00412{width:94.881830pt;}
.fs0_c00412{font-size:39.110400pt;}
.fs2_c00412{font-size:53.133867pt;}
.fs1_c00412{font-size:76.513067pt;}
.y0_c00412{bottom:0.000000pt;}
.y20_c00412{bottom:39.333333pt;}
.y1f_c00412{bottom:72.934667pt;}
.y1e_c00412{bottom:88.874667pt;}
.y1d_c00412{bottom:104.814667pt;}
.y1c_c00412{bottom:120.754667pt;}
.y1b_c00412{bottom:144.445333pt;}
.y1a_c00412{bottom:168.134667pt;}
.y19_c00412{bottom:191.824000pt;}
.y18_c00412{bottom:215.514667pt;}
.y17_c00412{bottom:252.869333pt;}
.y16_c00412{bottom:665.692000pt;}
.y15_c00412{bottom:680.304000pt;}
.y14_c00412{bottom:694.916000pt;}
.y13_c00412{bottom:709.528000pt;}
.y12_c00412{bottom:724.140000pt;}
.y11_c00412{bottom:738.752000pt;}
.y10_c00412{bottom:753.364000pt;}
.yf_c00412{bottom:767.976000pt;}
.ye_c00412{bottom:782.588000pt;}
.yd_c00412{bottom:797.198667pt;}
.yc_c00412{bottom:811.810667pt;}
.yb_c00412{bottom:841.034667pt;}
.ya_c00412{bottom:855.646667pt;}
.y9_c00412{bottom:870.258667pt;}
.y8_c00412{bottom:899.482667pt;}
.y7_c00412{bottom:914.094667pt;}
.y6_c00412{bottom:928.706667pt;}
.y5_c00412{bottom:943.317333pt;}
.y4_c00412{bottom:957.929333pt;}
.y3_c00412{bottom:972.541333pt;}
.y2_c00412{bottom:987.153333pt;}
.y1_c00412{bottom:1030.989333pt;}
.h3_c00412{height:31.280681pt;}
.h2_c00412{height:32.006363pt;}
.h5_c00412{height:36.010648pt;}
.h6_c00412{height:46.518078pt;}
.h4_c00412{height:51.855535pt;}
.h0_c00412{height:1122.520000pt;}
.h1_c00412{height:1122.666667pt;}
.w0_c00412{width:793.706667pt;}
.w1_c00412{width:794.000000pt;}
.x0_c00412{left:0.000000pt;}
.x4_c00412{left:113.385333pt;}
.x2_c00412{left:121.886667pt;}
.x1_c00412{left:127.796000pt;}
.x3_c00412{left:157.340000pt;}
.x5_c00412{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20f20fc9073a9c620c141b22.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.102051;font-style:normal;font-weight:normal;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_c8715428b08c508cff807987.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.048828;font-style:normal;font-weight:normal;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_c258c4819b1b154a3236771b.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls4_c00413{letter-spacing:0.000000px;}
.ls1_c00413{letter-spacing:0.087998px;}
.ls2_c00413{letter-spacing:0.098482px;}
.ls0_c00413{letter-spacing:0.104482px;}
.ls3_c00413{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00413{word-spacing:-26.575517px;}
.ws3_c00413{word-spacing:-26.487518px;}
.ws0_c00413{word-spacing:-18.769538px;}
.ws8_c00413{word-spacing:0.000000px;}
.ws5_c00413{word-spacing:0.043999px;}
.wsb_c00413{word-spacing:0.056767px;}
.ws9_c00413{word-spacing:0.073250px;}
.wsa_c00413{word-spacing:0.083734px;}
.ws2_c00413{word-spacing:0.175997px;}
.wsc_c00413{word-spacing:0.202963px;}
.ws6_c00413{word-spacing:0.213446px;}
.ws7_c00413{word-spacing:0.219446px;}
._0_c00413{margin-left:-3.825638px;}
._1_c00413{width:1.005737px;}
._3_c00413{width:53.283031px;}
._2_c00413{width:79.858548px;}
._4_c00413{width:133.452408px;}
.fc5_c00413{color:rgb(0,0,207);}
.fc4_c00413{color:rgb(79,153,5);}
.fc3_c00413{color:rgb(207,92,0);}
.fc2_c00413{color:rgb(33,74,135);}
.fc1_c00413{color:rgb(143,89,3);}
.fc0_c00413{color:rgb(0,0,0);}
.fs1_c00413{font-size:43.999200px;}
.fs0_c00413{font-size:59.775600px;}
.y0_c00413{bottom:0.000000px;}
.y2d_c00413{bottom:44.250000px;}
.y2c_c00413{bottom:96.919500px;}
.y2b_c00413{bottom:113.358000px;}
.y2a_c00413{bottom:129.796500px;}
.y29_c00413{bottom:146.235000px;}
.y28_c00413{bottom:162.673500px;}
.y27_c00413{bottom:179.112000px;}
.y26_c00413{bottom:195.550500px;}
.y25_c00413{bottom:211.989000px;}
.y24_c00413{bottom:228.427500px;}
.y23_c00413{bottom:244.866000px;}
.y22_c00413{bottom:261.304500px;}
.y21_c00413{bottom:294.180000px;}
.y20_c00413{bottom:310.618500px;}
.y1f_c00413{bottom:327.057000px;}
.y1e_c00413{bottom:359.934000px;}
.y1d_c00413{bottom:376.372500px;}
.y1c_c00413{bottom:392.811000px;}
.y1b_c00413{bottom:409.249500px;}
.y1a_c00413{bottom:425.688000px;}
.y19_c00413{bottom:442.125000px;}
.y18_c00413{bottom:458.563500px;}
.y17_c00413{bottom:507.879000px;}
.y16_c00413{bottom:524.317500px;}
.y15_c00413{bottom:540.756000px;}
.y14_c00413{bottom:557.194500px;}
.y13_c00413{bottom:573.633000px;}
.y12_c00413{bottom:590.071500px;}
.y11_c00413{bottom:606.508500px;}
.y10_c00413{bottom:622.947000px;}
.yf_c00413{bottom:639.385500px;}
.ye_c00413{bottom:655.824000px;}
.yd_c00413{bottom:672.262500px;}
.yc_c00413{bottom:688.701000px;}
.yb_c00413{bottom:705.139500px;}
.ya_c00413{bottom:721.578000px;}
.y9_c00413{bottom:738.016500px;}
.y8_c00413{bottom:754.455000px;}
.y7_c00413{bottom:787.330500px;}
.y6_c00413{bottom:803.769000px;}
.y5_c00413{bottom:853.084500px;}
.y4_c00413{bottom:869.523000px;}
.y3_c00413{bottom:885.588000px;}
.y2_c00413{bottom:1141.930500px;}
.y1_c00413{bottom:1159.863000px;}
.h3_c00413{height:35.190766px;}
.h4_c00413{height:36.007158px;}
.h2_c00413{height:52.332837px;}
.h0_c00413{height:1262.835000px;}
.h1_c00413{height:1263.000000px;}
.w0_c00413{width:892.920000px;}
.w1_c00413{width:893.250000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:127.558500px;}
.x2_c00413{left:137.122500px;}
.x3_c00413{left:143.770500px;}
.x4_c00413{left:177.007500px;}
.x5_c00413{left:435.249000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls4_c00413{letter-spacing:0.000000pt;}
.ls1_c00413{letter-spacing:0.078221pt;}
.ls2_c00413{letter-spacing:0.087539pt;}
.ls0_c00413{letter-spacing:0.092873pt;}
.ls3_c00413{letter-spacing:23.724873pt;}
.ws1_c00413{word-spacing:-29.967501pt;}
.ws4_c00413{word-spacing:-23.622682pt;}
.ws3_c00413{word-spacing:-23.544461pt;}
.ws0_c00413{word-spacing:-16.684034pt;}
.ws8_c00413{word-spacing:0.000000pt;}
.ws5_c00413{word-spacing:0.039110pt;}
.wsb_c00413{word-spacing:0.050460pt;}
.ws9_c00413{word-spacing:0.065111pt;}
.wsa_c00413{word-spacing:0.074430pt;}
.ws2_c00413{word-spacing:0.156442pt;}
.wsc_c00413{word-spacing:0.180412pt;}
.ws6_c00413{word-spacing:0.189730pt;}
.ws7_c00413{word-spacing:0.195063pt;}
._0_c00413{margin-left:-3.400567pt;}
._1_c00413{width:0.893988pt;}
._3_c00413{width:47.362694pt;}
._2_c00413{width:70.985376pt;}
._4_c00413{width:118.624363pt;}
.fs1_c00413{font-size:39.110400pt;}
.fs0_c00413{font-size:53.133867pt;}
.y0_c00413{bottom:0.000000pt;}
.y2d_c00413{bottom:39.333333pt;}
.y2c_c00413{bottom:86.150667pt;}
.y2b_c00413{bottom:100.762667pt;}
.y2a_c00413{bottom:115.374667pt;}
.y29_c00413{bottom:129.986667pt;}
.y28_c00413{bottom:144.598667pt;}
.y27_c00413{bottom:159.210667pt;}
.y26_c00413{bottom:173.822667pt;}
.y25_c00413{bottom:188.434667pt;}
.y24_c00413{bottom:203.046667pt;}
.y23_c00413{bottom:217.658667pt;}
.y22_c00413{bottom:232.270667pt;}
.y21_c00413{bottom:261.493333pt;}
.y20_c00413{bottom:276.105333pt;}
.y1f_c00413{bottom:290.717333pt;}
.y1e_c00413{bottom:319.941333pt;}
.y1d_c00413{bottom:334.553333pt;}
.y1c_c00413{bottom:349.165333pt;}
.y1b_c00413{bottom:363.777333pt;}
.y1a_c00413{bottom:378.389333pt;}
.y19_c00413{bottom:393.000000pt;}
.y18_c00413{bottom:407.612000pt;}
.y17_c00413{bottom:451.448000pt;}
.y16_c00413{bottom:466.060000pt;}
.y15_c00413{bottom:480.672000pt;}
.y14_c00413{bottom:495.284000pt;}
.y13_c00413{bottom:509.896000pt;}
.y12_c00413{bottom:524.508000pt;}
.y11_c00413{bottom:539.118667pt;}
.y10_c00413{bottom:553.730667pt;}
.yf_c00413{bottom:568.342667pt;}
.ye_c00413{bottom:582.954667pt;}
.yd_c00413{bottom:597.566667pt;}
.yc_c00413{bottom:612.178667pt;}
.yb_c00413{bottom:626.790667pt;}
.ya_c00413{bottom:641.402667pt;}
.y9_c00413{bottom:656.014667pt;}
.y8_c00413{bottom:670.626667pt;}
.y7_c00413{bottom:699.849333pt;}
.y6_c00413{bottom:714.461333pt;}
.y5_c00413{bottom:758.297333pt;}
.y4_c00413{bottom:772.909333pt;}
.y3_c00413{bottom:787.189333pt;}
.y2_c00413{bottom:1015.049333pt;}
.y1_c00413{bottom:1030.989333pt;}
.h3_c00413{height:31.280681pt;}
.h4_c00413{height:32.006363pt;}
.h2_c00413{height:46.518078pt;}
.h0_c00413{height:1122.520000pt;}
.h1_c00413{height:1122.666667pt;}
.w0_c00413{width:793.706667pt;}
.w1_c00413{width:794.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:113.385333pt;}
.x2_c00413{left:121.886667pt;}
.x3_c00413{left:127.796000pt;}
.x4_c00413{left:157.340000pt;}
.x5_c00413{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_906e4393003ca32d1d3a1486.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:0.893555;font-style:normal;font-weight:normal;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_359455ba6249238dbd3e8fe7.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_0be699ca804a13a45ffd3ad9.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.048828;font-style: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;}
.ls3_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:0.087998px;}
.ls2_c00414{letter-spacing:0.098482px;}
.ls1_c00414{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00414{word-spacing:-33.713438px;}
.ws2_c00414{word-spacing:-26.575517px;}
.wse_c00414{word-spacing:-26.487518px;}
.ws9_c00414{word-spacing:-21.553319px;}
.ws8_c00414{word-spacing:-21.519216px;}
.ws5_c00414{word-spacing:-18.769538px;}
.ws7_c00414{word-spacing:-17.633802px;}
.ws4_c00414{word-spacing:-14.943900px;}
.wsa_c00414{word-spacing:-14.107042px;}
.wsb_c00414{word-spacing:-12.074671px;}
.ws1_c00414{word-spacing:-9.988424px;}
.ws3_c00414{word-spacing:-9.987499px;}
.ws6_c00414{word-spacing:-7.686144px;}
.ws12_c00414{word-spacing:0.000000px;}
.wsf_c00414{word-spacing:0.043999px;}
.ws15_c00414{word-spacing:0.056767px;}
.ws13_c00414{word-spacing:0.073250px;}
.ws14_c00414{word-spacing:0.083734px;}
.wsd_c00414{word-spacing:0.175997px;}
.ws16_c00414{word-spacing:0.202963px;}
.ws10_c00414{word-spacing:0.213446px;}
.ws11_c00414{word-spacing:0.219446px;}
.ws0_c00414{word-spacing:43.038600px;}
._3_c00414{margin-left:-3.825638px;}
._0_c00414{margin-left:-1.549390px;}
._4_c00414{width:1.005737px;}
._1_c00414{width:19.935816px;}
._2_c00414{width:40.109428px;}
._6_c00414{width:53.283031px;}
._5_c00414{width:79.858548px;}
._7_c00414{width:133.452408px;}
.fc6_c00414{color:rgb(0,0,207);}
.fc5_c00414{color:rgb(79,153,5);}
.fc3_c00414{color:rgb(33,74,135);}
.fc2_c00414{color:rgb(143,89,3);}
.fc4_c00414{color:rgb(207,92,0);}
.fc1_c00414{color:rgb(6,69,173);}
.fc0_c00414{color:rgb(0,0,0);}
.fs2_c00414{font-size:43.999200px;}
.fs1_c00414{font-size:59.775600px;}
.fs0_c00414{font-size:86.077200px;}
.y0_c00414{bottom:0.000000px;}
.y20_c00414{bottom:44.250000px;}
.y1f_c00414{bottom:86.982000px;}
.y1e_c00414{bottom:103.420500px;}
.y1d_c00414{bottom:119.859000px;}
.y1c_c00414{bottom:136.297500px;}
.y1b_c00414{bottom:152.736000px;}
.y1a_c00414{bottom:169.174500px;}
.y19_c00414{bottom:185.613000px;}
.y18_c00414{bottom:202.051500px;}
.y17_c00414{bottom:218.490000px;}
.y16_c00414{bottom:234.927000px;}
.y15_c00414{bottom:251.365500px;}
.y14_c00414{bottom:267.804000px;}
.y13_c00414{bottom:284.242500px;}
.y12_c00414{bottom:300.681000px;}
.y11_c00414{bottom:317.119500px;}
.y10_c00414{bottom:349.996500px;}
.yf_c00414{bottom:366.435000px;}
.ye_c00414{bottom:415.749000px;}
.yd_c00414{bottom:432.187500px;}
.yc_c00414{bottom:448.252500px;}
.yb_c00414{bottom:493.890000px;}
.ya_c00414{bottom:511.822500px;}
.y9_c00414{bottom:529.756500px;}
.y8_c00414{bottom:547.689000px;}
.y7_c00414{bottom:565.621500px;}
.y6_c00414{bottom:583.554000px;}
.y5_c00414{bottom:610.633500px;}
.y4_c00414{bottom:637.714500px;}
.y3_c00414{bottom:664.794000px;}
.y2_c00414{bottom:691.873500px;}
.y1_c00414{bottom:734.407500px;}
.h5_c00414{height:35.190766px;}
.h6_c00414{height:36.007158px;}
.h3_c00414{height:40.511979px;}
.h4_c00414{height:52.332837px;}
.h2_c00414{height:58.337477px;}
.h0_c00414{height:1262.835000px;}
.h1_c00414{height:1263.000000px;}
.w0_c00414{width:892.920000px;}
.w1_c00414{width:893.250000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:127.558500px;}
.x2_c00414{left:137.122500px;}
.x3_c00414{left:143.770500px;}
.x4_c00414{left:435.249000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls3_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:0.078221pt;}
.ls2_c00414{letter-spacing:0.087539pt;}
.ls1_c00414{letter-spacing:0.092873pt;}
.wsc_c00414{word-spacing:-29.967501pt;}
.ws2_c00414{word-spacing:-23.622682pt;}
.wse_c00414{word-spacing:-23.544461pt;}
.ws9_c00414{word-spacing:-19.158506pt;}
.ws8_c00414{word-spacing:-19.128192pt;}
.ws5_c00414{word-spacing:-16.684034pt;}
.ws7_c00414{word-spacing:-15.674491pt;}
.ws4_c00414{word-spacing:-13.283467pt;}
.wsa_c00414{word-spacing:-12.539593pt;}
.wsb_c00414{word-spacing:-10.733041pt;}
.ws1_c00414{word-spacing:-8.878599pt;}
.ws3_c00414{word-spacing:-8.877777pt;}
.ws6_c00414{word-spacing:-6.832128pt;}
.ws12_c00414{word-spacing:0.000000pt;}
.wsf_c00414{word-spacing:0.039110pt;}
.ws15_c00414{word-spacing:0.050460pt;}
.ws13_c00414{word-spacing:0.065111pt;}
.ws14_c00414{word-spacing:0.074430pt;}
.wsd_c00414{word-spacing:0.156442pt;}
.ws16_c00414{word-spacing:0.180412pt;}
.ws10_c00414{word-spacing:0.189730pt;}
.ws11_c00414{word-spacing:0.195063pt;}
.ws0_c00414{word-spacing:38.256533pt;}
._3_c00414{margin-left:-3.400567pt;}
._0_c00414{margin-left:-1.377235pt;}
._4_c00414{width:0.893988pt;}
._1_c00414{width:17.720725pt;}
._2_c00414{width:35.652825pt;}
._6_c00414{width:47.362694pt;}
._5_c00414{width:70.985376pt;}
._7_c00414{width:118.624363pt;}
.fs2_c00414{font-size:39.110400pt;}
.fs1_c00414{font-size:53.133867pt;}
.fs0_c00414{font-size:76.513067pt;}
.y0_c00414{bottom:0.000000pt;}
.y20_c00414{bottom:39.333333pt;}
.y1f_c00414{bottom:77.317333pt;}
.y1e_c00414{bottom:91.929333pt;}
.y1d_c00414{bottom:106.541333pt;}
.y1c_c00414{bottom:121.153333pt;}
.y1b_c00414{bottom:135.765333pt;}
.y1a_c00414{bottom:150.377333pt;}
.y19_c00414{bottom:164.989333pt;}
.y18_c00414{bottom:179.601333pt;}
.y17_c00414{bottom:194.213333pt;}
.y16_c00414{bottom:208.824000pt;}
.y15_c00414{bottom:223.436000pt;}
.y14_c00414{bottom:238.048000pt;}
.y13_c00414{bottom:252.660000pt;}
.y12_c00414{bottom:267.272000pt;}
.y11_c00414{bottom:281.884000pt;}
.y10_c00414{bottom:311.108000pt;}
.yf_c00414{bottom:325.720000pt;}
.ye_c00414{bottom:369.554667pt;}
.yd_c00414{bottom:384.166667pt;}
.yc_c00414{bottom:398.446667pt;}
.yb_c00414{bottom:439.013333pt;}
.ya_c00414{bottom:454.953333pt;}
.y9_c00414{bottom:470.894667pt;}
.y8_c00414{bottom:486.834667pt;}
.y7_c00414{bottom:502.774667pt;}
.y6_c00414{bottom:518.714667pt;}
.y5_c00414{bottom:542.785333pt;}
.y4_c00414{bottom:566.857333pt;}
.y3_c00414{bottom:590.928000pt;}
.y2_c00414{bottom:614.998667pt;}
.y1_c00414{bottom:652.806667pt;}
.h5_c00414{height:31.280681pt;}
.h6_c00414{height:32.006363pt;}
.h3_c00414{height:36.010648pt;}
.h4_c00414{height:46.518078pt;}
.h2_c00414{height:51.855535pt;}
.h0_c00414{height:1122.520000pt;}
.h1_c00414{height:1122.666667pt;}
.w0_c00414{width:793.706667pt;}
.w1_c00414{width:794.000000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:113.385333pt;}
.x2_c00414{left:121.886667pt;}
.x3_c00414{left:127.796000pt;}
.x4_c00414{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6aa547f22180c4ec7eb4af8.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.048828;font-style:normal;font-weight:normal;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_77e144c2505211da5980eb6f.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.014648;font-style:normal;font-weight:normal;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_0346f60005713573a1ff6193.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_5fce9846beb616e2756eee86.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.102051;font-style: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;}
.ls4_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:0.087998px;}
.ls2_c00415{letter-spacing:0.098482px;}
.ls3_c00415{letter-spacing:0.104482px;}
.ls1_c00415{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00415{word-spacing:-26.575517px;}
.ws4_c00415{word-spacing:-26.487518px;}
.wse_c00415{word-spacing:-21.553319px;}
.wsd_c00415{word-spacing:-21.519216px;}
.wsc_c00415{word-spacing:-19.247743px;}
.wsa_c00415{word-spacing:-18.769538px;}
.ws9_c00415{word-spacing:-14.943900px;}
.wsf_c00415{word-spacing:-14.107042px;}
.ws10_c00415{word-spacing:-12.074671px;}
.wsb_c00415{word-spacing:-10.230144px;}
.ws7_c00415{word-spacing:-9.988424px;}
.ws8_c00415{word-spacing:-9.987499px;}
.ws3_c00415{word-spacing:0.000000px;}
.ws0_c00415{word-spacing:0.043999px;}
.ws5_c00415{word-spacing:0.213446px;}
.ws1_c00415{word-spacing:0.219446px;}
.ws6_c00415{word-spacing:43.038600px;}
._2_c00415{margin-left:-1.549390px;}
._1_c00415{width:1.020240px;}
._3_c00415{width:19.935816px;}
._4_c00415{width:40.109428px;}
._0_c00415{width:80.166542px;}
.fc5_c00415{color:rgb(79,153,5);}
.fc4_c00415{color:rgb(143,89,3);}
.fc3_c00415{color:rgb(0,0,0);}
.fc6_c00415{color:rgb(6,69,173);}
.fc2_c00415{color:rgb(207,92,0);}
.fc1_c00415{color:rgb(0,0,207);}
.fc0_c00415{color:rgb(33,74,135);}
.fs0_c00415{font-size:43.999200px;}
.fs2_c00415{font-size:59.775600px;}
.fs1_c00415{font-size:86.077200px;}
.y0_c00415{bottom:0.000000px;}
.y20_c00415{bottom:44.250000px;}
.y1f_c00415{bottom:82.051500px;}
.y1e_c00415{bottom:99.984000px;}
.y1d_c00415{bottom:117.916500px;}
.y1c_c00415{bottom:135.849000px;}
.y1b_c00415{bottom:162.501000px;}
.y1a_c00415{bottom:189.151500px;}
.y19_c00415{bottom:215.802000px;}
.y18_c00415{bottom:242.454000px;}
.y17_c00415{bottom:284.478000px;}
.y16_c00415{bottom:748.903500px;}
.y15_c00415{bottom:765.342000px;}
.y14_c00415{bottom:781.780500px;}
.y13_c00415{bottom:798.219000px;}
.y12_c00415{bottom:814.657500px;}
.y11_c00415{bottom:831.096000px;}
.y10_c00415{bottom:847.534500px;}
.yf_c00415{bottom:863.973000px;}
.ye_c00415{bottom:880.411500px;}
.yd_c00415{bottom:896.848500px;}
.yc_c00415{bottom:913.287000px;}
.yb_c00415{bottom:946.164000px;}
.ya_c00415{bottom:962.602500px;}
.y9_c00415{bottom:979.041000px;}
.y8_c00415{bottom:1011.918000px;}
.y7_c00415{bottom:1028.356500px;}
.y6_c00415{bottom:1044.795000px;}
.y5_c00415{bottom:1061.232000px;}
.y4_c00415{bottom:1077.670500px;}
.y3_c00415{bottom:1094.109000px;}
.y2_c00415{bottom:1110.547500px;}
.y1_c00415{bottom:1159.863000px;}
.h3_c00415{height:35.190766px;}
.h2_c00415{height:36.007158px;}
.h5_c00415{height:40.511979px;}
.h6_c00415{height:52.332837px;}
.h4_c00415{height:58.337477px;}
.h0_c00415{height:1262.835000px;}
.h1_c00415{height:1263.000000px;}
.w0_c00415{width:892.920000px;}
.w1_c00415{width:893.250000px;}
.x0_c00415{left:0.000000px;}
.x4_c00415{left:127.558500px;}
.x2_c00415{left:137.122500px;}
.x1_c00415{left:143.770500px;}
.x3_c00415{left:177.007500px;}
.x5_c00415{left:435.249000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls4_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:0.078221pt;}
.ls2_c00415{letter-spacing:0.087539pt;}
.ls3_c00415{letter-spacing:0.092873pt;}
.ls1_c00415{letter-spacing:23.724873pt;}
.ws2_c00415{word-spacing:-23.622682pt;}
.ws4_c00415{word-spacing:-23.544461pt;}
.wse_c00415{word-spacing:-19.158506pt;}
.wsd_c00415{word-spacing:-19.128192pt;}
.wsc_c00415{word-spacing:-17.109105pt;}
.wsa_c00415{word-spacing:-16.684034pt;}
.ws9_c00415{word-spacing:-13.283467pt;}
.wsf_c00415{word-spacing:-12.539593pt;}
.ws10_c00415{word-spacing:-10.733041pt;}
.wsb_c00415{word-spacing:-9.093461pt;}
.ws7_c00415{word-spacing:-8.878599pt;}
.ws8_c00415{word-spacing:-8.877777pt;}
.ws3_c00415{word-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.039110pt;}
.ws5_c00415{word-spacing:0.189730pt;}
.ws1_c00415{word-spacing:0.195063pt;}
.ws6_c00415{word-spacing:38.256533pt;}
._2_c00415{margin-left:-1.377235pt;}
._1_c00415{width:0.906880pt;}
._3_c00415{width:17.720725pt;}
._4_c00415{width:35.652825pt;}
._0_c00415{width:71.259149pt;}
.fs0_c00415{font-size:39.110400pt;}
.fs2_c00415{font-size:53.133867pt;}
.fs1_c00415{font-size:76.513067pt;}
.y0_c00415{bottom:0.000000pt;}
.y20_c00415{bottom:39.333333pt;}
.y1f_c00415{bottom:72.934667pt;}
.y1e_c00415{bottom:88.874667pt;}
.y1d_c00415{bottom:104.814667pt;}
.y1c_c00415{bottom:120.754667pt;}
.y1b_c00415{bottom:144.445333pt;}
.y1a_c00415{bottom:168.134667pt;}
.y19_c00415{bottom:191.824000pt;}
.y18_c00415{bottom:215.514667pt;}
.y17_c00415{bottom:252.869333pt;}
.y16_c00415{bottom:665.692000pt;}
.y15_c00415{bottom:680.304000pt;}
.y14_c00415{bottom:694.916000pt;}
.y13_c00415{bottom:709.528000pt;}
.y12_c00415{bottom:724.140000pt;}
.y11_c00415{bottom:738.752000pt;}
.y10_c00415{bottom:753.364000pt;}
.yf_c00415{bottom:767.976000pt;}
.ye_c00415{bottom:782.588000pt;}
.yd_c00415{bottom:797.198667pt;}
.yc_c00415{bottom:811.810667pt;}
.yb_c00415{bottom:841.034667pt;}
.ya_c00415{bottom:855.646667pt;}
.y9_c00415{bottom:870.258667pt;}
.y8_c00415{bottom:899.482667pt;}
.y7_c00415{bottom:914.094667pt;}
.y6_c00415{bottom:928.706667pt;}
.y5_c00415{bottom:943.317333pt;}
.y4_c00415{bottom:957.929333pt;}
.y3_c00415{bottom:972.541333pt;}
.y2_c00415{bottom:987.153333pt;}
.y1_c00415{bottom:1030.989333pt;}
.h3_c00415{height:31.280681pt;}
.h2_c00415{height:32.006363pt;}
.h5_c00415{height:36.010648pt;}
.h6_c00415{height:46.518078pt;}
.h4_c00415{height:51.855535pt;}
.h0_c00415{height:1122.520000pt;}
.h1_c00415{height:1122.666667pt;}
.w0_c00415{width:793.706667pt;}
.w1_c00415{width:794.000000pt;}
.x0_c00415{left:0.000000pt;}
.x4_c00415{left:113.385333pt;}
.x2_c00415{left:121.886667pt;}
.x1_c00415{left:127.796000pt;}
.x3_c00415{left:157.340000pt;}
.x5_c00415{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3439a91d227a38c5010fd71d.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.102051;font-style:normal;font-weight:normal;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_3b508a20ef45463e460b32f4.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_9741f211b59356e38a290dbf.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls4_c00416{letter-spacing:0.000000px;}
.ls1_c00416{letter-spacing:0.087998px;}
.ls2_c00416{letter-spacing:0.098482px;}
.ls0_c00416{letter-spacing:0.104482px;}
.ls3_c00416{letter-spacing:26.690482px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00416{word-spacing:-33.713438px;}
.ws4_c00416{word-spacing:-26.575517px;}
.ws3_c00416{word-spacing:-26.487518px;}
.ws0_c00416{word-spacing:-18.769538px;}
.ws8_c00416{word-spacing:0.000000px;}
.ws5_c00416{word-spacing:0.043999px;}
.wsb_c00416{word-spacing:0.056767px;}
.ws9_c00416{word-spacing:0.073250px;}
.wsa_c00416{word-spacing:0.083734px;}
.ws2_c00416{word-spacing:0.175997px;}
.wsc_c00416{word-spacing:0.202963px;}
.ws6_c00416{word-spacing:0.213446px;}
.ws7_c00416{word-spacing:0.219446px;}
._0_c00416{margin-left:-3.825638px;}
._1_c00416{width:1.005737px;}
._3_c00416{width:53.283031px;}
._2_c00416{width:79.858548px;}
._4_c00416{width:133.452408px;}
.fc5_c00416{color:rgb(0,0,207);}
.fc4_c00416{color:rgb(79,153,5);}
.fc3_c00416{color:rgb(207,92,0);}
.fc2_c00416{color:rgb(33,74,135);}
.fc1_c00416{color:rgb(143,89,3);}
.fc0_c00416{color:rgb(0,0,0);}
.fs1_c00416{font-size:43.999200px;}
.fs0_c00416{font-size:59.775600px;}
.y0_c00416{bottom:0.000000px;}
.y2d_c00416{bottom:44.250000px;}
.y2c_c00416{bottom:96.919500px;}
.y2b_c00416{bottom:113.358000px;}
.y2a_c00416{bottom:129.796500px;}
.y29_c00416{bottom:146.235000px;}
.y28_c00416{bottom:162.673500px;}
.y27_c00416{bottom:179.112000px;}
.y26_c00416{bottom:195.550500px;}
.y25_c00416{bottom:211.989000px;}
.y24_c00416{bottom:228.427500px;}
.y23_c00416{bottom:244.866000px;}
.y22_c00416{bottom:261.304500px;}
.y21_c00416{bottom:294.180000px;}
.y20_c00416{bottom:310.618500px;}
.y1f_c00416{bottom:327.057000px;}
.y1e_c00416{bottom:359.934000px;}
.y1d_c00416{bottom:376.372500px;}
.y1c_c00416{bottom:392.811000px;}
.y1b_c00416{bottom:409.249500px;}
.y1a_c00416{bottom:425.688000px;}
.y19_c00416{bottom:442.125000px;}
.y18_c00416{bottom:458.563500px;}
.y17_c00416{bottom:507.879000px;}
.y16_c00416{bottom:524.317500px;}
.y15_c00416{bottom:540.756000px;}
.y14_c00416{bottom:557.194500px;}
.y13_c00416{bottom:573.633000px;}
.y12_c00416{bottom:590.071500px;}
.y11_c00416{bottom:606.508500px;}
.y10_c00416{bottom:622.947000px;}
.yf_c00416{bottom:639.385500px;}
.ye_c00416{bottom:655.824000px;}
.yd_c00416{bottom:672.262500px;}
.yc_c00416{bottom:688.701000px;}
.yb_c00416{bottom:705.139500px;}
.ya_c00416{bottom:721.578000px;}
.y9_c00416{bottom:738.016500px;}
.y8_c00416{bottom:754.455000px;}
.y7_c00416{bottom:787.330500px;}
.y6_c00416{bottom:803.769000px;}
.y5_c00416{bottom:853.084500px;}
.y4_c00416{bottom:869.523000px;}
.y3_c00416{bottom:885.588000px;}
.y2_c00416{bottom:1141.930500px;}
.y1_c00416{bottom:1159.863000px;}
.h3_c00416{height:35.190766px;}
.h4_c00416{height:36.007158px;}
.h2_c00416{height:52.332837px;}
.h0_c00416{height:1262.835000px;}
.h1_c00416{height:1263.000000px;}
.w0_c00416{width:892.920000px;}
.w1_c00416{width:893.250000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:127.558500px;}
.x2_c00416{left:137.122500px;}
.x3_c00416{left:143.770500px;}
.x4_c00416{left:177.007500px;}
.x5_c00416{left:435.249000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls4_c00416{letter-spacing:0.000000pt;}
.ls1_c00416{letter-spacing:0.078221pt;}
.ls2_c00416{letter-spacing:0.087539pt;}
.ls0_c00416{letter-spacing:0.092873pt;}
.ls3_c00416{letter-spacing:23.724873pt;}
.ws1_c00416{word-spacing:-29.967501pt;}
.ws4_c00416{word-spacing:-23.622682pt;}
.ws3_c00416{word-spacing:-23.544461pt;}
.ws0_c00416{word-spacing:-16.684034pt;}
.ws8_c00416{word-spacing:0.000000pt;}
.ws5_c00416{word-spacing:0.039110pt;}
.wsb_c00416{word-spacing:0.050460pt;}
.ws9_c00416{word-spacing:0.065111pt;}
.wsa_c00416{word-spacing:0.074430pt;}
.ws2_c00416{word-spacing:0.156442pt;}
.wsc_c00416{word-spacing:0.180412pt;}
.ws6_c00416{word-spacing:0.189730pt;}
.ws7_c00416{word-spacing:0.195063pt;}
._0_c00416{margin-left:-3.400567pt;}
._1_c00416{width:0.893988pt;}
._3_c00416{width:47.362694pt;}
._2_c00416{width:70.985376pt;}
._4_c00416{width:118.624363pt;}
.fs1_c00416{font-size:39.110400pt;}
.fs0_c00416{font-size:53.133867pt;}
.y0_c00416{bottom:0.000000pt;}
.y2d_c00416{bottom:39.333333pt;}
.y2c_c00416{bottom:86.150667pt;}
.y2b_c00416{bottom:100.762667pt;}
.y2a_c00416{bottom:115.374667pt;}
.y29_c00416{bottom:129.986667pt;}
.y28_c00416{bottom:144.598667pt;}
.y27_c00416{bottom:159.210667pt;}
.y26_c00416{bottom:173.822667pt;}
.y25_c00416{bottom:188.434667pt;}
.y24_c00416{bottom:203.046667pt;}
.y23_c00416{bottom:217.658667pt;}
.y22_c00416{bottom:232.270667pt;}
.y21_c00416{bottom:261.493333pt;}
.y20_c00416{bottom:276.105333pt;}
.y1f_c00416{bottom:290.717333pt;}
.y1e_c00416{bottom:319.941333pt;}
.y1d_c00416{bottom:334.553333pt;}
.y1c_c00416{bottom:349.165333pt;}
.y1b_c00416{bottom:363.777333pt;}
.y1a_c00416{bottom:378.389333pt;}
.y19_c00416{bottom:393.000000pt;}
.y18_c00416{bottom:407.612000pt;}
.y17_c00416{bottom:451.448000pt;}
.y16_c00416{bottom:466.060000pt;}
.y15_c00416{bottom:480.672000pt;}
.y14_c00416{bottom:495.284000pt;}
.y13_c00416{bottom:509.896000pt;}
.y12_c00416{bottom:524.508000pt;}
.y11_c00416{bottom:539.118667pt;}
.y10_c00416{bottom:553.730667pt;}
.yf_c00416{bottom:568.342667pt;}
.ye_c00416{bottom:582.954667pt;}
.yd_c00416{bottom:597.566667pt;}
.yc_c00416{bottom:612.178667pt;}
.yb_c00416{bottom:626.790667pt;}
.ya_c00416{bottom:641.402667pt;}
.y9_c00416{bottom:656.014667pt;}
.y8_c00416{bottom:670.626667pt;}
.y7_c00416{bottom:699.849333pt;}
.y6_c00416{bottom:714.461333pt;}
.y5_c00416{bottom:758.297333pt;}
.y4_c00416{bottom:772.909333pt;}
.y3_c00416{bottom:787.189333pt;}
.y2_c00416{bottom:1015.049333pt;}
.y1_c00416{bottom:1030.989333pt;}
.h3_c00416{height:31.280681pt;}
.h4_c00416{height:32.006363pt;}
.h2_c00416{height:46.518078pt;}
.h0_c00416{height:1122.520000pt;}
.h1_c00416{height:1122.666667pt;}
.w0_c00416{width:793.706667pt;}
.w1_c00416{width:794.000000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:113.385333pt;}
.x2_c00416{left:121.886667pt;}
.x3_c00416{left:127.796000pt;}
.x4_c00416{left:157.340000pt;}
.x5_c00416{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f0a03000d9a305258de6e8e.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.893555;font-style:normal;font-weight:normal;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_4d57ea0dfa0dbb5cf34bbf6a.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.083496;font-style:normal;font-weight:normal;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_353ae62e85be4a6220c71cb4.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.014648;font-style:normal;font-weight:normal;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_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.048828;font-style: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;}
.ls3_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:0.087998px;}
.ls2_c00417{letter-spacing:0.098482px;}
.ls1_c00417{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00417{word-spacing:-26.575517px;}
.ws12_c00417{word-spacing:-26.487518px;}
.wsd_c00417{word-spacing:-21.758318px;}
.wse_c00417{word-spacing:-21.698543px;}
.wsb_c00417{word-spacing:-20.682358px;}
.wsc_c00417{word-spacing:-20.622582px;}
.ws5_c00417{word-spacing:-18.769538px;}
.ws10_c00417{word-spacing:-18.590212px;}
.wsf_c00417{word-spacing:-17.693578px;}
.ws8_c00417{word-spacing:-15.577222px;}
.ws9_c00417{word-spacing:-15.541656px;}
.ws7_c00417{word-spacing:-15.422105px;}
.ws4_c00417{word-spacing:-14.943900px;}
.wsa_c00417{word-spacing:-13.270183px;}
.ws1_c00417{word-spacing:-9.988424px;}
.ws3_c00417{word-spacing:-9.987499px;}
.ws6_c00417{word-spacing:-3.288144px;}
.ws16_c00417{word-spacing:0.000000px;}
.ws13_c00417{word-spacing:0.043999px;}
.ws11_c00417{word-spacing:0.175997px;}
.ws15_c00417{word-spacing:0.213446px;}
.ws14_c00417{word-spacing:0.219446px;}
.ws0_c00417{word-spacing:43.038600px;}
._2_c00417{margin-left:-6.580632px;}
._3_c00417{margin-left:-3.287658px;}
._0_c00417{margin-left:-1.549390px;}
._8_c00417{width:1.005737px;}
._1_c00417{width:19.935816px;}
._5_c00417{width:21.818094px;}
._7_c00417{width:23.073382px;}
._4_c00417{width:29.251070px;}
._6_c00417{width:36.403340px;}
.fc5_c00417{color:rgb(79,153,5);}
.fc3_c00417{color:rgb(33,74,135);}
.fc2_c00417{color:rgb(143,89,3);}
.fc4_c00417{color:rgb(207,92,0);}
.fc1_c00417{color:rgb(6,69,173);}
.fc0_c00417{color:rgb(0,0,0);}
.fs2_c00417{font-size:43.999200px;}
.fs1_c00417{font-size:59.775600px;}
.fs0_c00417{font-size:86.077200px;}
.y0_c00417{bottom:0.000000px;}
.y20_c00417{bottom:44.250000px;}
.y1f_c00417{bottom:82.051500px;}
.y1e_c00417{bottom:98.490000px;}
.y1d_c00417{bottom:114.927000px;}
.y1c_c00417{bottom:147.804000px;}
.y1b_c00417{bottom:164.242500px;}
.y1a_c00417{bottom:197.119500px;}
.y19_c00417{bottom:213.558000px;}
.y18_c00417{bottom:229.996500px;}
.y17_c00417{bottom:246.435000px;}
.y16_c00417{bottom:279.310500px;}
.y15_c00417{bottom:295.749000px;}
.y14_c00417{bottom:312.187500px;}
.y13_c00417{bottom:328.626000px;}
.y12_c00417{bottom:345.064500px;}
.y11_c00417{bottom:361.503000px;}
.y10_c00417{bottom:377.941500px;}
.yf_c00417{bottom:394.380000px;}
.ye_c00417{bottom:410.445000px;}
.yd_c00417{bottom:458.862000px;}
.yc_c00417{bottom:476.794500px;}
.yb_c00417{bottom:494.727000px;}
.ya_c00417{bottom:512.659500px;}
.y9_c00417{bottom:530.593500px;}
.y8_c00417{bottom:548.526000px;}
.y7_c00417{bottom:566.458500px;}
.y6_c00417{bottom:584.391000px;}
.y5_c00417{bottom:611.374500px;}
.y4_c00417{bottom:638.358000px;}
.y3_c00417{bottom:665.341500px;}
.y2_c00417{bottom:692.325000px;}
.y1_c00417{bottom:734.719500px;}
.h5_c00417{height:35.190766px;}
.h6_c00417{height:36.007158px;}
.h3_c00417{height:40.511979px;}
.h4_c00417{height:52.332837px;}
.h2_c00417{height:58.337477px;}
.h0_c00417{height:1262.835000px;}
.h1_c00417{height:1263.000000px;}
.w0_c00417{width:892.920000px;}
.w1_c00417{width:893.250000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:127.558500px;}
.x2_c00417{left:137.122500px;}
.x3_c00417{left:435.249000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls3_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:0.078221pt;}
.ls2_c00417{letter-spacing:0.087539pt;}
.ls1_c00417{letter-spacing:0.092873pt;}
.ws2_c00417{word-spacing:-23.622682pt;}
.ws12_c00417{word-spacing:-23.544461pt;}
.wsd_c00417{word-spacing:-19.340727pt;}
.wse_c00417{word-spacing:-19.287594pt;}
.wsb_c00417{word-spacing:-18.384318pt;}
.wsc_c00417{word-spacing:-18.331184pt;}
.ws5_c00417{word-spacing:-16.684034pt;}
.ws10_c00417{word-spacing:-16.524633pt;}
.wsf_c00417{word-spacing:-15.727625pt;}
.ws8_c00417{word-spacing:-13.846419pt;}
.ws9_c00417{word-spacing:-13.814805pt;}
.ws7_c00417{word-spacing:-13.708538pt;}
.ws4_c00417{word-spacing:-13.283467pt;}
.wsa_c00417{word-spacing:-11.795718pt;}
.ws1_c00417{word-spacing:-8.878599pt;}
.ws3_c00417{word-spacing:-8.877777pt;}
.ws6_c00417{word-spacing:-2.922795pt;}
.ws16_c00417{word-spacing:0.000000pt;}
.ws13_c00417{word-spacing:0.039110pt;}
.ws11_c00417{word-spacing:0.156442pt;}
.ws15_c00417{word-spacing:0.189730pt;}
.ws14_c00417{word-spacing:0.195063pt;}
.ws0_c00417{word-spacing:38.256533pt;}
._2_c00417{margin-left:-5.849451pt;}
._3_c00417{margin-left:-2.922363pt;}
._0_c00417{margin-left:-1.377235pt;}
._8_c00417{width:0.893988pt;}
._1_c00417{width:17.720725pt;}
._5_c00417{width:19.393861pt;}
._7_c00417{width:20.509673pt;}
._4_c00417{width:26.000951pt;}
._6_c00417{width:32.358525pt;}
.fs2_c00417{font-size:39.110400pt;}
.fs1_c00417{font-size:53.133867pt;}
.fs0_c00417{font-size:76.513067pt;}
.y0_c00417{bottom:0.000000pt;}
.y20_c00417{bottom:39.333333pt;}
.y1f_c00417{bottom:72.934667pt;}
.y1e_c00417{bottom:87.546667pt;}
.y1d_c00417{bottom:102.157333pt;}
.y1c_c00417{bottom:131.381333pt;}
.y1b_c00417{bottom:145.993333pt;}
.y1a_c00417{bottom:175.217333pt;}
.y19_c00417{bottom:189.829333pt;}
.y18_c00417{bottom:204.441333pt;}
.y17_c00417{bottom:219.053333pt;}
.y16_c00417{bottom:248.276000pt;}
.y15_c00417{bottom:262.888000pt;}
.y14_c00417{bottom:277.500000pt;}
.y13_c00417{bottom:292.112000pt;}
.y12_c00417{bottom:306.724000pt;}
.y11_c00417{bottom:321.336000pt;}
.y10_c00417{bottom:335.948000pt;}
.yf_c00417{bottom:350.560000pt;}
.ye_c00417{bottom:364.840000pt;}
.yd_c00417{bottom:407.877333pt;}
.yc_c00417{bottom:423.817333pt;}
.yb_c00417{bottom:439.757333pt;}
.ya_c00417{bottom:455.697333pt;}
.y9_c00417{bottom:471.638667pt;}
.y8_c00417{bottom:487.578667pt;}
.y7_c00417{bottom:503.518667pt;}
.y6_c00417{bottom:519.458667pt;}
.y5_c00417{bottom:543.444000pt;}
.y4_c00417{bottom:567.429333pt;}
.y3_c00417{bottom:591.414667pt;}
.y2_c00417{bottom:615.400000pt;}
.y1_c00417{bottom:653.084000pt;}
.h5_c00417{height:31.280681pt;}
.h6_c00417{height:32.006363pt;}
.h3_c00417{height:36.010648pt;}
.h4_c00417{height:46.518078pt;}
.h2_c00417{height:51.855535pt;}
.h0_c00417{height:1122.520000pt;}
.h1_c00417{height:1122.666667pt;}
.w0_c00417{width:793.706667pt;}
.w1_c00417{width:794.000000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:113.385333pt;}
.x2_c00417{left:121.886667pt;}
.x3_c00417{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0978472d1e273cf116b6ed2.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.014648;font-style:normal;font-weight:normal;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_c9d50faf6072c64ca52eb58c.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.048828;font-style:normal;font-weight:normal;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_78af7339145b358ab0470ffa.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls3_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:0.087998px;}
.ls2_c00418{letter-spacing:0.098482px;}
.ls1_c00418{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00418{word-spacing:-26.487518px;}
.ws5_c00418{word-spacing:0.000000px;}
.ws4_c00418{word-spacing:0.043999px;}
.ws3_c00418{word-spacing:0.053933px;}
.ws6_c00418{word-spacing:0.056767px;}
.ws0_c00418{word-spacing:0.175997px;}
.ws7_c00418{word-spacing:0.213446px;}
._0_c00418{width:1.077888px;}
._1_c00418{width:106.786058px;}
.fc5_c00418{color:rgb(0,0,207);}
.fc4_c00418{color:rgb(79,153,5);}
.fc3_c00418{color:rgb(33,74,135);}
.fc2_c00418{color:rgb(207,92,0);}
.fc1_c00418{color:rgb(0,0,0);}
.fc0_c00418{color:rgb(143,89,3);}
.fs0_c00418{font-size:43.999200px;}
.fs1_c00418{font-size:59.775600px;}
.y0_c00418{bottom:0.000000px;}
.y32_c00418{bottom:44.250000px;}
.y31_c00418{bottom:222.876000px;}
.y30_c00418{bottom:239.314500px;}
.y2f_c00418{bottom:255.753000px;}
.y2e_c00418{bottom:272.191500px;}
.y2d_c00418{bottom:288.630000px;}
.y2c_c00418{bottom:305.068500px;}
.y2b_c00418{bottom:321.507000px;}
.y2a_c00418{bottom:337.945500px;}
.y29_c00418{bottom:354.384000px;}
.y28_c00418{bottom:370.822500px;}
.y27_c00418{bottom:387.259500px;}
.y26_c00418{bottom:420.136500px;}
.y25_c00418{bottom:436.575000px;}
.y24_c00418{bottom:453.013500px;}
.y23_c00418{bottom:518.767500px;}
.y22_c00418{bottom:535.206000px;}
.y21_c00418{bottom:551.643000px;}
.y20_c00418{bottom:568.081500px;}
.y1f_c00418{bottom:584.520000px;}
.y1e_c00418{bottom:600.958500px;}
.y1d_c00418{bottom:617.397000px;}
.y1c_c00418{bottom:633.835500px;}
.y1b_c00418{bottom:650.274000px;}
.y1a_c00418{bottom:666.712500px;}
.y19_c00418{bottom:683.151000px;}
.y18_c00418{bottom:699.589500px;}
.y17_c00418{bottom:716.028000px;}
.y16_c00418{bottom:732.465000px;}
.y15_c00418{bottom:748.903500px;}
.y14_c00418{bottom:765.342000px;}
.y13_c00418{bottom:781.780500px;}
.y12_c00418{bottom:798.219000px;}
.y11_c00418{bottom:814.657500px;}
.y10_c00418{bottom:831.096000px;}
.yf_c00418{bottom:847.534500px;}
.ye_c00418{bottom:863.973000px;}
.yd_c00418{bottom:880.411500px;}
.yc_c00418{bottom:896.848500px;}
.yb_c00418{bottom:946.164000px;}
.ya_c00418{bottom:962.602500px;}
.y9_c00418{bottom:979.041000px;}
.y8_c00418{bottom:995.479500px;}
.y7_c00418{bottom:1044.795000px;}
.y6_c00418{bottom:1061.232000px;}
.y5_c00418{bottom:1094.109000px;}
.y4_c00418{bottom:1110.547500px;}
.y3_c00418{bottom:1126.986000px;}
.y2_c00418{bottom:1143.424500px;}
.y1_c00418{bottom:1159.863000px;}
.h2_c00418{height:35.190766px;}
.h3_c00418{height:36.007158px;}
.h4_c00418{height:52.332837px;}
.h0_c00418{height:1262.835000px;}
.h1_c00418{height:1263.000000px;}
.w0_c00418{width:892.920000px;}
.w1_c00418{width:893.250000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:137.122500px;}
.x2_c00418{left:143.770500px;}
.x6_c00418{left:177.007500px;}
.x5_c00418{left:230.185500px;}
.x3_c00418{left:243.480000px;}
.x4_c00418{left:276.715500px;}
.x7_c00418{left:435.249000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls3_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:0.078221pt;}
.ls2_c00418{letter-spacing:0.087539pt;}
.ls1_c00418{letter-spacing:0.092873pt;}
.ws1_c00418{word-spacing:-23.622682pt;}
.ws2_c00418{word-spacing:-23.544461pt;}
.ws5_c00418{word-spacing:0.000000pt;}
.ws4_c00418{word-spacing:0.039110pt;}
.ws3_c00418{word-spacing:0.047940pt;}
.ws6_c00418{word-spacing:0.050460pt;}
.ws0_c00418{word-spacing:0.156442pt;}
.ws7_c00418{word-spacing:0.189730pt;}
._0_c00418{width:0.958123pt;}
._1_c00418{width:94.920941pt;}
.fs0_c00418{font-size:39.110400pt;}
.fs1_c00418{font-size:53.133867pt;}
.y0_c00418{bottom:0.000000pt;}
.y32_c00418{bottom:39.333333pt;}
.y31_c00418{bottom:198.112000pt;}
.y30_c00418{bottom:212.724000pt;}
.y2f_c00418{bottom:227.336000pt;}
.y2e_c00418{bottom:241.948000pt;}
.y2d_c00418{bottom:256.560000pt;}
.y2c_c00418{bottom:271.172000pt;}
.y2b_c00418{bottom:285.784000pt;}
.y2a_c00418{bottom:300.396000pt;}
.y29_c00418{bottom:315.008000pt;}
.y28_c00418{bottom:329.620000pt;}
.y27_c00418{bottom:344.230667pt;}
.y26_c00418{bottom:373.454667pt;}
.y25_c00418{bottom:388.066667pt;}
.y24_c00418{bottom:402.678667pt;}
.y23_c00418{bottom:461.126667pt;}
.y22_c00418{bottom:475.738667pt;}
.y21_c00418{bottom:490.349333pt;}
.y20_c00418{bottom:504.961333pt;}
.y1f_c00418{bottom:519.573333pt;}
.y1e_c00418{bottom:534.185333pt;}
.y1d_c00418{bottom:548.797333pt;}
.y1c_c00418{bottom:563.409333pt;}
.y1b_c00418{bottom:578.021333pt;}
.y1a_c00418{bottom:592.633333pt;}
.y19_c00418{bottom:607.245333pt;}
.y18_c00418{bottom:621.857333pt;}
.y17_c00418{bottom:636.469333pt;}
.y16_c00418{bottom:651.080000pt;}
.y15_c00418{bottom:665.692000pt;}
.y14_c00418{bottom:680.304000pt;}
.y13_c00418{bottom:694.916000pt;}
.y12_c00418{bottom:709.528000pt;}
.y11_c00418{bottom:724.140000pt;}
.y10_c00418{bottom:738.752000pt;}
.yf_c00418{bottom:753.364000pt;}
.ye_c00418{bottom:767.976000pt;}
.yd_c00418{bottom:782.588000pt;}
.yc_c00418{bottom:797.198667pt;}
.yb_c00418{bottom:841.034667pt;}
.ya_c00418{bottom:855.646667pt;}
.y9_c00418{bottom:870.258667pt;}
.y8_c00418{bottom:884.870667pt;}
.y7_c00418{bottom:928.706667pt;}
.y6_c00418{bottom:943.317333pt;}
.y5_c00418{bottom:972.541333pt;}
.y4_c00418{bottom:987.153333pt;}
.y3_c00418{bottom:1001.765333pt;}
.y2_c00418{bottom:1016.377333pt;}
.y1_c00418{bottom:1030.989333pt;}
.h2_c00418{height:31.280681pt;}
.h3_c00418{height:32.006363pt;}
.h4_c00418{height:46.518078pt;}
.h0_c00418{height:1122.520000pt;}
.h1_c00418{height:1122.666667pt;}
.w0_c00418{width:793.706667pt;}
.w1_c00418{width:794.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:121.886667pt;}
.x2_c00418{left:127.796000pt;}
.x6_c00418{left:157.340000pt;}
.x5_c00418{left:204.609333pt;}
.x3_c00418{left:216.426667pt;}
.x4_c00418{left:245.969333pt;}
.x7_c00418{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f0a03000d9a305258de6e8e.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.893555;font-style:normal;font-weight:normal;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_2b42634e7793581f13289703.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.083496;font-style:normal;font-weight:normal;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_de918c450140fe608b6b7bc1.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.048828;font-style: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;}
.ls3_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:0.087998px;}
.ls2_c00419{letter-spacing:0.098482px;}
.ls1_c00419{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00419{word-spacing:-33.713438px;}
.ws2_c00419{word-spacing:-26.575517px;}
.wse_c00419{word-spacing:-26.487518px;}
.ws9_c00419{word-spacing:-21.553319px;}
.ws8_c00419{word-spacing:-21.519216px;}
.ws5_c00419{word-spacing:-18.769538px;}
.ws7_c00419{word-spacing:-16.019861px;}
.ws4_c00419{word-spacing:-14.943900px;}
.wsa_c00419{word-spacing:-14.107042px;}
.wsb_c00419{word-spacing:-12.074671px;}
.ws1_c00419{word-spacing:-9.988424px;}
.ws3_c00419{word-spacing:-9.987499px;}
.ws6_c00419{word-spacing:-4.536144px;}
.ws12_c00419{word-spacing:0.000000px;}
.wsf_c00419{word-spacing:0.043999px;}
.ws15_c00419{word-spacing:0.056767px;}
.ws13_c00419{word-spacing:0.073250px;}
.ws14_c00419{word-spacing:0.083734px;}
.wsd_c00419{word-spacing:0.175997px;}
.ws16_c00419{word-spacing:0.202963px;}
.ws10_c00419{word-spacing:0.213446px;}
.ws11_c00419{word-spacing:0.219446px;}
.ws0_c00419{word-spacing:43.038600px;}
._2_c00419{margin-left:-6.580632px;}
._4_c00419{margin-left:-3.825638px;}
._0_c00419{margin-left:-1.549390px;}
._5_c00419{width:1.005737px;}
._1_c00419{width:19.935816px;}
._3_c00419{width:40.109428px;}
._7_c00419{width:53.283031px;}
._6_c00419{width:79.858548px;}
._8_c00419{width:133.452408px;}
.fc6_c00419{color:rgb(0,0,207);}
.fc5_c00419{color:rgb(79,153,5);}
.fc3_c00419{color:rgb(33,74,135);}
.fc2_c00419{color:rgb(143,89,3);}
.fc4_c00419{color:rgb(207,92,0);}
.fc1_c00419{color:rgb(6,69,173);}
.fc0_c00419{color:rgb(0,0,0);}
.fs2_c00419{font-size:43.999200px;}
.fs1_c00419{font-size:59.775600px;}
.fs0_c00419{font-size:86.077200px;}
.y0_c00419{bottom:0.000000px;}
.y20_c00419{bottom:44.250000px;}
.y1f_c00419{bottom:86.982000px;}
.y1e_c00419{bottom:103.420500px;}
.y1d_c00419{bottom:119.859000px;}
.y1c_c00419{bottom:136.297500px;}
.y1b_c00419{bottom:152.736000px;}
.y1a_c00419{bottom:169.174500px;}
.y19_c00419{bottom:185.613000px;}
.y18_c00419{bottom:202.051500px;}
.y17_c00419{bottom:218.490000px;}
.y16_c00419{bottom:234.927000px;}
.y15_c00419{bottom:251.365500px;}
.y14_c00419{bottom:267.804000px;}
.y13_c00419{bottom:284.242500px;}
.y12_c00419{bottom:300.681000px;}
.y11_c00419{bottom:317.119500px;}
.y10_c00419{bottom:349.996500px;}
.yf_c00419{bottom:366.435000px;}
.ye_c00419{bottom:415.749000px;}
.yd_c00419{bottom:432.187500px;}
.yc_c00419{bottom:448.252500px;}
.yb_c00419{bottom:493.890000px;}
.ya_c00419{bottom:511.822500px;}
.y9_c00419{bottom:529.756500px;}
.y8_c00419{bottom:547.689000px;}
.y7_c00419{bottom:565.621500px;}
.y6_c00419{bottom:583.554000px;}
.y5_c00419{bottom:610.633500px;}
.y4_c00419{bottom:637.714500px;}
.y3_c00419{bottom:664.794000px;}
.y2_c00419{bottom:691.873500px;}
.y1_c00419{bottom:734.407500px;}
.h5_c00419{height:35.190766px;}
.h6_c00419{height:36.007158px;}
.h3_c00419{height:40.511979px;}
.h4_c00419{height:52.332837px;}
.h2_c00419{height:58.337477px;}
.h0_c00419{height:1262.835000px;}
.h1_c00419{height:1263.000000px;}
.w0_c00419{width:892.920000px;}
.w1_c00419{width:893.250000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:127.558500px;}
.x2_c00419{left:137.122500px;}
.x3_c00419{left:143.770500px;}
.x4_c00419{left:435.249000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls3_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:0.078221pt;}
.ls2_c00419{letter-spacing:0.087539pt;}
.ls1_c00419{letter-spacing:0.092873pt;}
.wsc_c00419{word-spacing:-29.967501pt;}
.ws2_c00419{word-spacing:-23.622682pt;}
.wse_c00419{word-spacing:-23.544461pt;}
.ws9_c00419{word-spacing:-19.158506pt;}
.ws8_c00419{word-spacing:-19.128192pt;}
.ws5_c00419{word-spacing:-16.684034pt;}
.ws7_c00419{word-spacing:-14.239876pt;}
.ws4_c00419{word-spacing:-13.283467pt;}
.wsa_c00419{word-spacing:-12.539593pt;}
.wsb_c00419{word-spacing:-10.733041pt;}
.ws1_c00419{word-spacing:-8.878599pt;}
.ws3_c00419{word-spacing:-8.877777pt;}
.ws6_c00419{word-spacing:-4.032128pt;}
.ws12_c00419{word-spacing:0.000000pt;}
.wsf_c00419{word-spacing:0.039110pt;}
.ws15_c00419{word-spacing:0.050460pt;}
.ws13_c00419{word-spacing:0.065111pt;}
.ws14_c00419{word-spacing:0.074430pt;}
.wsd_c00419{word-spacing:0.156442pt;}
.ws16_c00419{word-spacing:0.180412pt;}
.ws10_c00419{word-spacing:0.189730pt;}
.ws11_c00419{word-spacing:0.195063pt;}
.ws0_c00419{word-spacing:38.256533pt;}
._2_c00419{margin-left:-5.849451pt;}
._4_c00419{margin-left:-3.400567pt;}
._0_c00419{margin-left:-1.377235pt;}
._5_c00419{width:0.893988pt;}
._1_c00419{width:17.720725pt;}
._3_c00419{width:35.652825pt;}
._7_c00419{width:47.362694pt;}
._6_c00419{width:70.985376pt;}
._8_c00419{width:118.624363pt;}
.fs2_c00419{font-size:39.110400pt;}
.fs1_c00419{font-size:53.133867pt;}
.fs0_c00419{font-size:76.513067pt;}
.y0_c00419{bottom:0.000000pt;}
.y20_c00419{bottom:39.333333pt;}
.y1f_c00419{bottom:77.317333pt;}
.y1e_c00419{bottom:91.929333pt;}
.y1d_c00419{bottom:106.541333pt;}
.y1c_c00419{bottom:121.153333pt;}
.y1b_c00419{bottom:135.765333pt;}
.y1a_c00419{bottom:150.377333pt;}
.y19_c00419{bottom:164.989333pt;}
.y18_c00419{bottom:179.601333pt;}
.y17_c00419{bottom:194.213333pt;}
.y16_c00419{bottom:208.824000pt;}
.y15_c00419{bottom:223.436000pt;}
.y14_c00419{bottom:238.048000pt;}
.y13_c00419{bottom:252.660000pt;}
.y12_c00419{bottom:267.272000pt;}
.y11_c00419{bottom:281.884000pt;}
.y10_c00419{bottom:311.108000pt;}
.yf_c00419{bottom:325.720000pt;}
.ye_c00419{bottom:369.554667pt;}
.yd_c00419{bottom:384.166667pt;}
.yc_c00419{bottom:398.446667pt;}
.yb_c00419{bottom:439.013333pt;}
.ya_c00419{bottom:454.953333pt;}
.y9_c00419{bottom:470.894667pt;}
.y8_c00419{bottom:486.834667pt;}
.y7_c00419{bottom:502.774667pt;}
.y6_c00419{bottom:518.714667pt;}
.y5_c00419{bottom:542.785333pt;}
.y4_c00419{bottom:566.857333pt;}
.y3_c00419{bottom:590.928000pt;}
.y2_c00419{bottom:614.998667pt;}
.y1_c00419{bottom:652.806667pt;}
.h5_c00419{height:31.280681pt;}
.h6_c00419{height:32.006363pt;}
.h3_c00419{height:36.010648pt;}
.h4_c00419{height:46.518078pt;}
.h2_c00419{height:51.855535pt;}
.h0_c00419{height:1122.520000pt;}
.h1_c00419{height:1122.666667pt;}
.w0_c00419{width:793.706667pt;}
.w1_c00419{width:794.000000pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:113.385333pt;}
.x2_c00419{left:121.886667pt;}
.x3_c00419{left:127.796000pt;}
.x4_c00419{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e0fd027979e3d4a5f5c4469.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.048828;font-style:normal;font-weight:normal;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_72f6e3dc48bc5d62f8547e25.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.014648;font-style:normal;font-weight:normal;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_5c6146ccd8d9ccf57802fa23.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:0.893555;font-style:normal;font-weight:normal;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_a56ef3c1b090d532502f6b69.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.102051;font-style: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;}
.ls4_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.087998px;}
.ls2_c00420{letter-spacing:0.098482px;}
.ls3_c00420{letter-spacing:0.104482px;}
.ls1_c00420{letter-spacing:26.690482px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00420{word-spacing:-26.575517px;}
.ws4_c00420{word-spacing:-26.487518px;}
.wse_c00420{word-spacing:-21.553319px;}
.wsd_c00420{word-spacing:-21.519216px;}
.wsa_c00420{word-spacing:-18.769538px;}
.wsc_c00420{word-spacing:-17.633802px;}
.ws9_c00420{word-spacing:-14.943900px;}
.wsf_c00420{word-spacing:-14.107042px;}
.ws10_c00420{word-spacing:-12.074671px;}
.ws7_c00420{word-spacing:-9.988424px;}
.ws8_c00420{word-spacing:-9.987499px;}
.wsb_c00420{word-spacing:-7.686144px;}
.ws3_c00420{word-spacing:0.000000px;}
.ws0_c00420{word-spacing:0.043999px;}
.ws5_c00420{word-spacing:0.213446px;}
.ws1_c00420{word-spacing:0.219446px;}
.ws6_c00420{word-spacing:43.038600px;}
._4_c00420{margin-left:-6.580632px;}
._2_c00420{margin-left:-1.549390px;}
._1_c00420{width:1.063690px;}
._3_c00420{width:19.935816px;}
._5_c00420{width:40.109428px;}
._0_c00420{width:106.786058px;}
.fc5_c00420{color:rgb(79,153,5);}
.fc4_c00420{color:rgb(143,89,3);}
.fc3_c00420{color:rgb(0,0,0);}
.fc6_c00420{color:rgb(6,69,173);}
.fc2_c00420{color:rgb(207,92,0);}
.fc1_c00420{color:rgb(0,0,207);}
.fc0_c00420{color:rgb(33,74,135);}
.fs0_c00420{font-size:43.999200px;}
.fs2_c00420{font-size:59.775600px;}
.fs1_c00420{font-size:86.077200px;}
.y0_c00420{bottom:0.000000px;}
.y20_c00420{bottom:44.250000px;}
.y1f_c00420{bottom:82.051500px;}
.y1e_c00420{bottom:99.984000px;}
.y1d_c00420{bottom:117.916500px;}
.y1c_c00420{bottom:135.849000px;}
.y1b_c00420{bottom:162.501000px;}
.y1a_c00420{bottom:189.151500px;}
.y19_c00420{bottom:215.802000px;}
.y18_c00420{bottom:242.454000px;}
.y17_c00420{bottom:284.478000px;}
.y16_c00420{bottom:748.903500px;}
.y15_c00420{bottom:765.342000px;}
.y14_c00420{bottom:781.780500px;}
.y13_c00420{bottom:798.219000px;}
.y12_c00420{bottom:814.657500px;}
.y11_c00420{bottom:831.096000px;}
.y10_c00420{bottom:847.534500px;}
.yf_c00420{bottom:863.973000px;}
.ye_c00420{bottom:880.411500px;}
.yd_c00420{bottom:896.848500px;}
.yc_c00420{bottom:913.287000px;}
.yb_c00420{bottom:946.164000px;}
.ya_c00420{bottom:962.602500px;}
.y9_c00420{bottom:979.041000px;}
.y8_c00420{bottom:1011.918000px;}
.y7_c00420{bottom:1028.356500px;}
.y6_c00420{bottom:1044.795000px;}
.y5_c00420{bottom:1061.232000px;}
.y4_c00420{bottom:1077.670500px;}
.y3_c00420{bottom:1094.109000px;}
.y2_c00420{bottom:1110.547500px;}
.y1_c00420{bottom:1159.863000px;}
.h3_c00420{height:35.190766px;}
.h2_c00420{height:36.007158px;}
.h5_c00420{height:40.511979px;}
.h6_c00420{height:52.332837px;}
.h4_c00420{height:58.337477px;}
.h0_c00420{height:1262.835000px;}
.h1_c00420{height:1263.000000px;}
.w0_c00420{width:892.920000px;}
.w1_c00420{width:893.250000px;}
.x0_c00420{left:0.000000px;}
.x4_c00420{left:127.558500px;}
.x2_c00420{left:137.122500px;}
.x1_c00420{left:143.770500px;}
.x3_c00420{left:177.007500px;}
.x5_c00420{left:435.249000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls4_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.078221pt;}
.ls2_c00420{letter-spacing:0.087539pt;}
.ls3_c00420{letter-spacing:0.092873pt;}
.ls1_c00420{letter-spacing:23.724873pt;}
.ws2_c00420{word-spacing:-23.622682pt;}
.ws4_c00420{word-spacing:-23.544461pt;}
.wse_c00420{word-spacing:-19.158506pt;}
.wsd_c00420{word-spacing:-19.128192pt;}
.wsa_c00420{word-spacing:-16.684034pt;}
.wsc_c00420{word-spacing:-15.674491pt;}
.ws9_c00420{word-spacing:-13.283467pt;}
.wsf_c00420{word-spacing:-12.539593pt;}
.ws10_c00420{word-spacing:-10.733041pt;}
.ws7_c00420{word-spacing:-8.878599pt;}
.ws8_c00420{word-spacing:-8.877777pt;}
.wsb_c00420{word-spacing:-6.832128pt;}
.ws3_c00420{word-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.039110pt;}
.ws5_c00420{word-spacing:0.189730pt;}
.ws1_c00420{word-spacing:0.195063pt;}
.ws6_c00420{word-spacing:38.256533pt;}
._4_c00420{margin-left:-5.849451pt;}
._2_c00420{margin-left:-1.377235pt;}
._1_c00420{width:0.945502pt;}
._3_c00420{width:17.720725pt;}
._5_c00420{width:35.652825pt;}
._0_c00420{width:94.920941pt;}
.fs0_c00420{font-size:39.110400pt;}
.fs2_c00420{font-size:53.133867pt;}
.fs1_c00420{font-size:76.513067pt;}
.y0_c00420{bottom:0.000000pt;}
.y20_c00420{bottom:39.333333pt;}
.y1f_c00420{bottom:72.934667pt;}
.y1e_c00420{bottom:88.874667pt;}
.y1d_c00420{bottom:104.814667pt;}
.y1c_c00420{bottom:120.754667pt;}
.y1b_c00420{bottom:144.445333pt;}
.y1a_c00420{bottom:168.134667pt;}
.y19_c00420{bottom:191.824000pt;}
.y18_c00420{bottom:215.514667pt;}
.y17_c00420{bottom:252.869333pt;}
.y16_c00420{bottom:665.692000pt;}
.y15_c00420{bottom:680.304000pt;}
.y14_c00420{bottom:694.916000pt;}
.y13_c00420{bottom:709.528000pt;}
.y12_c00420{bottom:724.140000pt;}
.y11_c00420{bottom:738.752000pt;}
.y10_c00420{bottom:753.364000pt;}
.yf_c00420{bottom:767.976000pt;}
.ye_c00420{bottom:782.588000pt;}
.yd_c00420{bottom:797.198667pt;}
.yc_c00420{bottom:811.810667pt;}
.yb_c00420{bottom:841.034667pt;}
.ya_c00420{bottom:855.646667pt;}
.y9_c00420{bottom:870.258667pt;}
.y8_c00420{bottom:899.482667pt;}
.y7_c00420{bottom:914.094667pt;}
.y6_c00420{bottom:928.706667pt;}
.y5_c00420{bottom:943.317333pt;}
.y4_c00420{bottom:957.929333pt;}
.y3_c00420{bottom:972.541333pt;}
.y2_c00420{bottom:987.153333pt;}
.y1_c00420{bottom:1030.989333pt;}
.h3_c00420{height:31.280681pt;}
.h2_c00420{height:32.006363pt;}
.h5_c00420{height:36.010648pt;}
.h6_c00420{height:46.518078pt;}
.h4_c00420{height:51.855535pt;}
.h0_c00420{height:1122.520000pt;}
.h1_c00420{height:1122.666667pt;}
.w0_c00420{width:793.706667pt;}
.w1_c00420{width:794.000000pt;}
.x0_c00420{left:0.000000pt;}
.x4_c00420{left:113.385333pt;}
.x2_c00420{left:121.886667pt;}
.x1_c00420{left:127.796000pt;}
.x3_c00420{left:157.340000pt;}
.x5_c00420{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb610fee20677b1a09e675b8.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.102051;font-style:normal;font-weight:normal;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_a064629f4eed662d615de203.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.048828;font-style:normal;font-weight:normal;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_729e80200cdad33353c6bb21.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls4_c00421{letter-spacing:0.000000px;}
.ls1_c00421{letter-spacing:0.087998px;}
.ls2_c00421{letter-spacing:0.098482px;}
.ls0_c00421{letter-spacing:0.104482px;}
.ls3_c00421{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00421{word-spacing:-26.575517px;}
.ws3_c00421{word-spacing:-26.487518px;}
.ws0_c00421{word-spacing:-18.769538px;}
.ws8_c00421{word-spacing:0.000000px;}
.ws5_c00421{word-spacing:0.043999px;}
.wsb_c00421{word-spacing:0.056767px;}
.ws9_c00421{word-spacing:0.073250px;}
.wsa_c00421{word-spacing:0.083734px;}
.ws2_c00421{word-spacing:0.175997px;}
.wsc_c00421{word-spacing:0.202963px;}
.ws6_c00421{word-spacing:0.213446px;}
.ws7_c00421{word-spacing:0.219446px;}
._0_c00421{margin-left:-3.825638px;}
._1_c00421{width:1.005737px;}
._3_c00421{width:53.283031px;}
._2_c00421{width:79.858548px;}
._4_c00421{width:133.452408px;}
.fc5_c00421{color:rgb(0,0,207);}
.fc4_c00421{color:rgb(79,153,5);}
.fc3_c00421{color:rgb(207,92,0);}
.fc2_c00421{color:rgb(33,74,135);}
.fc1_c00421{color:rgb(143,89,3);}
.fc0_c00421{color:rgb(0,0,0);}
.fs1_c00421{font-size:43.999200px;}
.fs0_c00421{font-size:59.775600px;}
.y0_c00421{bottom:0.000000px;}
.y2d_c00421{bottom:44.250000px;}
.y2c_c00421{bottom:96.919500px;}
.y2b_c00421{bottom:113.358000px;}
.y2a_c00421{bottom:129.796500px;}
.y29_c00421{bottom:146.235000px;}
.y28_c00421{bottom:162.673500px;}
.y27_c00421{bottom:179.112000px;}
.y26_c00421{bottom:195.550500px;}
.y25_c00421{bottom:211.989000px;}
.y24_c00421{bottom:228.427500px;}
.y23_c00421{bottom:244.866000px;}
.y22_c00421{bottom:261.304500px;}
.y21_c00421{bottom:294.180000px;}
.y20_c00421{bottom:310.618500px;}
.y1f_c00421{bottom:327.057000px;}
.y1e_c00421{bottom:359.934000px;}
.y1d_c00421{bottom:376.372500px;}
.y1c_c00421{bottom:392.811000px;}
.y1b_c00421{bottom:409.249500px;}
.y1a_c00421{bottom:425.688000px;}
.y19_c00421{bottom:442.125000px;}
.y18_c00421{bottom:458.563500px;}
.y17_c00421{bottom:507.879000px;}
.y16_c00421{bottom:524.317500px;}
.y15_c00421{bottom:540.756000px;}
.y14_c00421{bottom:557.194500px;}
.y13_c00421{bottom:573.633000px;}
.y12_c00421{bottom:590.071500px;}
.y11_c00421{bottom:606.508500px;}
.y10_c00421{bottom:622.947000px;}
.yf_c00421{bottom:639.385500px;}
.ye_c00421{bottom:655.824000px;}
.yd_c00421{bottom:672.262500px;}
.yc_c00421{bottom:688.701000px;}
.yb_c00421{bottom:705.139500px;}
.ya_c00421{bottom:721.578000px;}
.y9_c00421{bottom:738.016500px;}
.y8_c00421{bottom:754.455000px;}
.y7_c00421{bottom:787.330500px;}
.y6_c00421{bottom:803.769000px;}
.y5_c00421{bottom:853.084500px;}
.y4_c00421{bottom:869.523000px;}
.y3_c00421{bottom:885.588000px;}
.y2_c00421{bottom:1141.930500px;}
.y1_c00421{bottom:1159.863000px;}
.h3_c00421{height:35.190766px;}
.h4_c00421{height:36.007158px;}
.h2_c00421{height:52.332837px;}
.h0_c00421{height:1262.835000px;}
.h1_c00421{height:1263.000000px;}
.w0_c00421{width:892.920000px;}
.w1_c00421{width:893.250000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:127.558500px;}
.x2_c00421{left:137.122500px;}
.x3_c00421{left:143.770500px;}
.x4_c00421{left:177.007500px;}
.x5_c00421{left:435.249000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls4_c00421{letter-spacing:0.000000pt;}
.ls1_c00421{letter-spacing:0.078221pt;}
.ls2_c00421{letter-spacing:0.087539pt;}
.ls0_c00421{letter-spacing:0.092873pt;}
.ls3_c00421{letter-spacing:23.724873pt;}
.ws1_c00421{word-spacing:-29.967501pt;}
.ws4_c00421{word-spacing:-23.622682pt;}
.ws3_c00421{word-spacing:-23.544461pt;}
.ws0_c00421{word-spacing:-16.684034pt;}
.ws8_c00421{word-spacing:0.000000pt;}
.ws5_c00421{word-spacing:0.039110pt;}
.wsb_c00421{word-spacing:0.050460pt;}
.ws9_c00421{word-spacing:0.065111pt;}
.wsa_c00421{word-spacing:0.074430pt;}
.ws2_c00421{word-spacing:0.156442pt;}
.wsc_c00421{word-spacing:0.180412pt;}
.ws6_c00421{word-spacing:0.189730pt;}
.ws7_c00421{word-spacing:0.195063pt;}
._0_c00421{margin-left:-3.400567pt;}
._1_c00421{width:0.893988pt;}
._3_c00421{width:47.362694pt;}
._2_c00421{width:70.985376pt;}
._4_c00421{width:118.624363pt;}
.fs1_c00421{font-size:39.110400pt;}
.fs0_c00421{font-size:53.133867pt;}
.y0_c00421{bottom:0.000000pt;}
.y2d_c00421{bottom:39.333333pt;}
.y2c_c00421{bottom:86.150667pt;}
.y2b_c00421{bottom:100.762667pt;}
.y2a_c00421{bottom:115.374667pt;}
.y29_c00421{bottom:129.986667pt;}
.y28_c00421{bottom:144.598667pt;}
.y27_c00421{bottom:159.210667pt;}
.y26_c00421{bottom:173.822667pt;}
.y25_c00421{bottom:188.434667pt;}
.y24_c00421{bottom:203.046667pt;}
.y23_c00421{bottom:217.658667pt;}
.y22_c00421{bottom:232.270667pt;}
.y21_c00421{bottom:261.493333pt;}
.y20_c00421{bottom:276.105333pt;}
.y1f_c00421{bottom:290.717333pt;}
.y1e_c00421{bottom:319.941333pt;}
.y1d_c00421{bottom:334.553333pt;}
.y1c_c00421{bottom:349.165333pt;}
.y1b_c00421{bottom:363.777333pt;}
.y1a_c00421{bottom:378.389333pt;}
.y19_c00421{bottom:393.000000pt;}
.y18_c00421{bottom:407.612000pt;}
.y17_c00421{bottom:451.448000pt;}
.y16_c00421{bottom:466.060000pt;}
.y15_c00421{bottom:480.672000pt;}
.y14_c00421{bottom:495.284000pt;}
.y13_c00421{bottom:509.896000pt;}
.y12_c00421{bottom:524.508000pt;}
.y11_c00421{bottom:539.118667pt;}
.y10_c00421{bottom:553.730667pt;}
.yf_c00421{bottom:568.342667pt;}
.ye_c00421{bottom:582.954667pt;}
.yd_c00421{bottom:597.566667pt;}
.yc_c00421{bottom:612.178667pt;}
.yb_c00421{bottom:626.790667pt;}
.ya_c00421{bottom:641.402667pt;}
.y9_c00421{bottom:656.014667pt;}
.y8_c00421{bottom:670.626667pt;}
.y7_c00421{bottom:699.849333pt;}
.y6_c00421{bottom:714.461333pt;}
.y5_c00421{bottom:758.297333pt;}
.y4_c00421{bottom:772.909333pt;}
.y3_c00421{bottom:787.189333pt;}
.y2_c00421{bottom:1015.049333pt;}
.y1_c00421{bottom:1030.989333pt;}
.h3_c00421{height:31.280681pt;}
.h4_c00421{height:32.006363pt;}
.h2_c00421{height:46.518078pt;}
.h0_c00421{height:1122.520000pt;}
.h1_c00421{height:1122.666667pt;}
.w0_c00421{width:793.706667pt;}
.w1_c00421{width:794.000000pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:113.385333pt;}
.x2_c00421{left:121.886667pt;}
.x3_c00421{left:127.796000pt;}
.x4_c00421{left:157.340000pt;}
.x5_c00421{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea5277fdfa7c51cc7ce79e54.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.893555;font-style:normal;font-weight:normal;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_6dde09f2623bb8431de1bd5b.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.083496;font-style:normal;font-weight:normal;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_75f1c13b5e3635cd2714bbe3.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.048828;font-style: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;}
.ls3_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.087998px;}
.ls2_c00422{letter-spacing:0.098482px;}
.ls1_c00422{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00422{word-spacing:-33.713438px;}
.ws2_c00422{word-spacing:-26.575517px;}
.wse_c00422{word-spacing:-26.487518px;}
.ws9_c00422{word-spacing:-21.553319px;}
.ws8_c00422{word-spacing:-21.519216px;}
.ws5_c00422{word-spacing:-18.769538px;}
.ws7_c00422{word-spacing:-17.633802px;}
.ws4_c00422{word-spacing:-14.943900px;}
.wsa_c00422{word-spacing:-14.107042px;}
.wsb_c00422{word-spacing:-12.074671px;}
.ws1_c00422{word-spacing:-9.988424px;}
.ws3_c00422{word-spacing:-9.987499px;}
.ws6_c00422{word-spacing:-7.686144px;}
.ws12_c00422{word-spacing:0.000000px;}
.wsf_c00422{word-spacing:0.043999px;}
.ws15_c00422{word-spacing:0.056767px;}
.ws13_c00422{word-spacing:0.073250px;}
.ws14_c00422{word-spacing:0.083734px;}
.wsd_c00422{word-spacing:0.175997px;}
.ws16_c00422{word-spacing:0.202963px;}
.ws10_c00422{word-spacing:0.213446px;}
.ws11_c00422{word-spacing:0.219446px;}
.ws0_c00422{word-spacing:43.038600px;}
._2_c00422{margin-left:-6.580632px;}
._4_c00422{margin-left:-3.825638px;}
._0_c00422{margin-left:-1.549390px;}
._5_c00422{width:1.005737px;}
._1_c00422{width:19.935816px;}
._3_c00422{width:40.109428px;}
._7_c00422{width:53.283031px;}
._6_c00422{width:79.858548px;}
._8_c00422{width:133.452408px;}
.fc6_c00422{color:rgb(0,0,207);}
.fc5_c00422{color:rgb(79,153,5);}
.fc3_c00422{color:rgb(33,74,135);}
.fc2_c00422{color:rgb(143,89,3);}
.fc4_c00422{color:rgb(207,92,0);}
.fc1_c00422{color:rgb(6,69,173);}
.fc0_c00422{color:rgb(0,0,0);}
.fs2_c00422{font-size:43.999200px;}
.fs1_c00422{font-size:59.775600px;}
.fs0_c00422{font-size:86.077200px;}
.y0_c00422{bottom:0.000000px;}
.y20_c00422{bottom:44.250000px;}
.y1f_c00422{bottom:86.982000px;}
.y1e_c00422{bottom:103.420500px;}
.y1d_c00422{bottom:119.859000px;}
.y1c_c00422{bottom:136.297500px;}
.y1b_c00422{bottom:152.736000px;}
.y1a_c00422{bottom:169.174500px;}
.y19_c00422{bottom:185.613000px;}
.y18_c00422{bottom:202.051500px;}
.y17_c00422{bottom:218.490000px;}
.y16_c00422{bottom:234.927000px;}
.y15_c00422{bottom:251.365500px;}
.y14_c00422{bottom:267.804000px;}
.y13_c00422{bottom:284.242500px;}
.y12_c00422{bottom:300.681000px;}
.y11_c00422{bottom:317.119500px;}
.y10_c00422{bottom:349.996500px;}
.yf_c00422{bottom:366.435000px;}
.ye_c00422{bottom:415.749000px;}
.yd_c00422{bottom:432.187500px;}
.yc_c00422{bottom:448.252500px;}
.yb_c00422{bottom:493.890000px;}
.ya_c00422{bottom:511.822500px;}
.y9_c00422{bottom:529.756500px;}
.y8_c00422{bottom:547.689000px;}
.y7_c00422{bottom:565.621500px;}
.y6_c00422{bottom:583.554000px;}
.y5_c00422{bottom:610.633500px;}
.y4_c00422{bottom:637.714500px;}
.y3_c00422{bottom:664.794000px;}
.y2_c00422{bottom:691.873500px;}
.y1_c00422{bottom:734.407500px;}
.h5_c00422{height:35.190766px;}
.h6_c00422{height:36.007158px;}
.h3_c00422{height:40.511979px;}
.h4_c00422{height:52.332837px;}
.h2_c00422{height:58.337477px;}
.h0_c00422{height:1262.835000px;}
.h1_c00422{height:1263.000000px;}
.w0_c00422{width:892.920000px;}
.w1_c00422{width:893.250000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:127.558500px;}
.x2_c00422{left:137.122500px;}
.x3_c00422{left:143.770500px;}
.x4_c00422{left:435.249000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls3_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.078221pt;}
.ls2_c00422{letter-spacing:0.087539pt;}
.ls1_c00422{letter-spacing:0.092873pt;}
.wsc_c00422{word-spacing:-29.967501pt;}
.ws2_c00422{word-spacing:-23.622682pt;}
.wse_c00422{word-spacing:-23.544461pt;}
.ws9_c00422{word-spacing:-19.158506pt;}
.ws8_c00422{word-spacing:-19.128192pt;}
.ws5_c00422{word-spacing:-16.684034pt;}
.ws7_c00422{word-spacing:-15.674491pt;}
.ws4_c00422{word-spacing:-13.283467pt;}
.wsa_c00422{word-spacing:-12.539593pt;}
.wsb_c00422{word-spacing:-10.733041pt;}
.ws1_c00422{word-spacing:-8.878599pt;}
.ws3_c00422{word-spacing:-8.877777pt;}
.ws6_c00422{word-spacing:-6.832128pt;}
.ws12_c00422{word-spacing:0.000000pt;}
.wsf_c00422{word-spacing:0.039110pt;}
.ws15_c00422{word-spacing:0.050460pt;}
.ws13_c00422{word-spacing:0.065111pt;}
.ws14_c00422{word-spacing:0.074430pt;}
.wsd_c00422{word-spacing:0.156442pt;}
.ws16_c00422{word-spacing:0.180412pt;}
.ws10_c00422{word-spacing:0.189730pt;}
.ws11_c00422{word-spacing:0.195063pt;}
.ws0_c00422{word-spacing:38.256533pt;}
._2_c00422{margin-left:-5.849451pt;}
._4_c00422{margin-left:-3.400567pt;}
._0_c00422{margin-left:-1.377235pt;}
._5_c00422{width:0.893988pt;}
._1_c00422{width:17.720725pt;}
._3_c00422{width:35.652825pt;}
._7_c00422{width:47.362694pt;}
._6_c00422{width:70.985376pt;}
._8_c00422{width:118.624363pt;}
.fs2_c00422{font-size:39.110400pt;}
.fs1_c00422{font-size:53.133867pt;}
.fs0_c00422{font-size:76.513067pt;}
.y0_c00422{bottom:0.000000pt;}
.y20_c00422{bottom:39.333333pt;}
.y1f_c00422{bottom:77.317333pt;}
.y1e_c00422{bottom:91.929333pt;}
.y1d_c00422{bottom:106.541333pt;}
.y1c_c00422{bottom:121.153333pt;}
.y1b_c00422{bottom:135.765333pt;}
.y1a_c00422{bottom:150.377333pt;}
.y19_c00422{bottom:164.989333pt;}
.y18_c00422{bottom:179.601333pt;}
.y17_c00422{bottom:194.213333pt;}
.y16_c00422{bottom:208.824000pt;}
.y15_c00422{bottom:223.436000pt;}
.y14_c00422{bottom:238.048000pt;}
.y13_c00422{bottom:252.660000pt;}
.y12_c00422{bottom:267.272000pt;}
.y11_c00422{bottom:281.884000pt;}
.y10_c00422{bottom:311.108000pt;}
.yf_c00422{bottom:325.720000pt;}
.ye_c00422{bottom:369.554667pt;}
.yd_c00422{bottom:384.166667pt;}
.yc_c00422{bottom:398.446667pt;}
.yb_c00422{bottom:439.013333pt;}
.ya_c00422{bottom:454.953333pt;}
.y9_c00422{bottom:470.894667pt;}
.y8_c00422{bottom:486.834667pt;}
.y7_c00422{bottom:502.774667pt;}
.y6_c00422{bottom:518.714667pt;}
.y5_c00422{bottom:542.785333pt;}
.y4_c00422{bottom:566.857333pt;}
.y3_c00422{bottom:590.928000pt;}
.y2_c00422{bottom:614.998667pt;}
.y1_c00422{bottom:652.806667pt;}
.h5_c00422{height:31.280681pt;}
.h6_c00422{height:32.006363pt;}
.h3_c00422{height:36.010648pt;}
.h4_c00422{height:46.518078pt;}
.h2_c00422{height:51.855535pt;}
.h0_c00422{height:1122.520000pt;}
.h1_c00422{height:1122.666667pt;}
.w0_c00422{width:793.706667pt;}
.w1_c00422{width:794.000000pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:113.385333pt;}
.x2_c00422{left:121.886667pt;}
.x3_c00422{left:127.796000pt;}
.x4_c00422{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dc731ad9f7ea137875f9c3a.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_aa092ebf5310131009d431d8.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_75987162679f9d86f9de0c6a.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00423;src:url('chunks/assets/font_6dce5d92b79f1ef4b938f6df.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.102051;font-style: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;}
.ls4_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:0.087998px;}
.ls2_c00423{letter-spacing:0.098482px;}
.ls3_c00423{letter-spacing:0.104482px;}
.ls1_c00423{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00423{word-spacing:-26.575517px;}
.ws4_c00423{word-spacing:-26.487518px;}
.wse_c00423{word-spacing:-21.553319px;}
.wsd_c00423{word-spacing:-21.519216px;}
.wsc_c00423{word-spacing:-19.247743px;}
.wsa_c00423{word-spacing:-18.769538px;}
.ws9_c00423{word-spacing:-14.943900px;}
.wsf_c00423{word-spacing:-14.107042px;}
.ws10_c00423{word-spacing:-12.074671px;}
.wsb_c00423{word-spacing:-10.230144px;}
.ws7_c00423{word-spacing:-9.988424px;}
.ws8_c00423{word-spacing:-9.987499px;}
.ws3_c00423{word-spacing:0.000000px;}
.ws0_c00423{word-spacing:0.043999px;}
.ws5_c00423{word-spacing:0.213446px;}
.ws1_c00423{word-spacing:0.219446px;}
.ws6_c00423{word-spacing:43.038600px;}
._4_c00423{margin-left:-6.580632px;}
._2_c00423{margin-left:-1.549390px;}
._1_c00423{width:1.074173px;}
._3_c00423{width:19.935816px;}
._5_c00423{width:40.109428px;}
._0_c00423{width:80.210542px;}
.fc5_c00423{color:rgb(79,153,5);}
.fc4_c00423{color:rgb(143,89,3);}
.fc3_c00423{color:rgb(0,0,0);}
.fc6_c00423{color:rgb(6,69,173);}
.fc2_c00423{color:rgb(207,92,0);}
.fc1_c00423{color:rgb(0,0,207);}
.fc0_c00423{color:rgb(33,74,135);}
.fs0_c00423{font-size:43.999200px;}
.fs2_c00423{font-size:59.775600px;}
.fs1_c00423{font-size:86.077200px;}
.y0_c00423{bottom:0.000000px;}
.y20_c00423{bottom:44.250000px;}
.y1f_c00423{bottom:82.051500px;}
.y1e_c00423{bottom:99.984000px;}
.y1d_c00423{bottom:117.916500px;}
.y1c_c00423{bottom:135.849000px;}
.y1b_c00423{bottom:162.501000px;}
.y1a_c00423{bottom:189.151500px;}
.y19_c00423{bottom:215.802000px;}
.y18_c00423{bottom:242.454000px;}
.y17_c00423{bottom:284.478000px;}
.y16_c00423{bottom:748.903500px;}
.y15_c00423{bottom:765.342000px;}
.y14_c00423{bottom:781.780500px;}
.y13_c00423{bottom:798.219000px;}
.y12_c00423{bottom:814.657500px;}
.y11_c00423{bottom:831.096000px;}
.y10_c00423{bottom:847.534500px;}
.yf_c00423{bottom:863.973000px;}
.ye_c00423{bottom:880.411500px;}
.yd_c00423{bottom:896.848500px;}
.yc_c00423{bottom:913.287000px;}
.yb_c00423{bottom:946.164000px;}
.ya_c00423{bottom:962.602500px;}
.y9_c00423{bottom:979.041000px;}
.y8_c00423{bottom:1011.918000px;}
.y7_c00423{bottom:1028.356500px;}
.y6_c00423{bottom:1044.795000px;}
.y5_c00423{bottom:1061.232000px;}
.y4_c00423{bottom:1077.670500px;}
.y3_c00423{bottom:1094.109000px;}
.y2_c00423{bottom:1110.547500px;}
.y1_c00423{bottom:1159.863000px;}
.h3_c00423{height:35.190766px;}
.h2_c00423{height:36.007158px;}
.h5_c00423{height:40.511979px;}
.h6_c00423{height:52.332837px;}
.h4_c00423{height:58.337477px;}
.h0_c00423{height:1262.835000px;}
.h1_c00423{height:1263.000000px;}
.w0_c00423{width:892.920000px;}
.w1_c00423{width:893.250000px;}
.x0_c00423{left:0.000000px;}
.x4_c00423{left:127.558500px;}
.x2_c00423{left:137.122500px;}
.x1_c00423{left:143.770500px;}
.x3_c00423{left:177.007500px;}
.x5_c00423{left:435.249000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls4_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:0.078221pt;}
.ls2_c00423{letter-spacing:0.087539pt;}
.ls3_c00423{letter-spacing:0.092873pt;}
.ls1_c00423{letter-spacing:23.724873pt;}
.ws2_c00423{word-spacing:-23.622682pt;}
.ws4_c00423{word-spacing:-23.544461pt;}
.wse_c00423{word-spacing:-19.158506pt;}
.wsd_c00423{word-spacing:-19.128192pt;}
.wsc_c00423{word-spacing:-17.109105pt;}
.wsa_c00423{word-spacing:-16.684034pt;}
.ws9_c00423{word-spacing:-13.283467pt;}
.wsf_c00423{word-spacing:-12.539593pt;}
.ws10_c00423{word-spacing:-10.733041pt;}
.wsb_c00423{word-spacing:-9.093461pt;}
.ws7_c00423{word-spacing:-8.878599pt;}
.ws8_c00423{word-spacing:-8.877777pt;}
.ws3_c00423{word-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.039110pt;}
.ws5_c00423{word-spacing:0.189730pt;}
.ws1_c00423{word-spacing:0.195063pt;}
.ws6_c00423{word-spacing:38.256533pt;}
._4_c00423{margin-left:-5.849451pt;}
._2_c00423{margin-left:-1.377235pt;}
._1_c00423{width:0.954820pt;}
._3_c00423{width:17.720725pt;}
._5_c00423{width:35.652825pt;}
._0_c00423{width:71.298259pt;}
.fs0_c00423{font-size:39.110400pt;}
.fs2_c00423{font-size:53.133867pt;}
.fs1_c00423{font-size:76.513067pt;}
.y0_c00423{bottom:0.000000pt;}
.y20_c00423{bottom:39.333333pt;}
.y1f_c00423{bottom:72.934667pt;}
.y1e_c00423{bottom:88.874667pt;}
.y1d_c00423{bottom:104.814667pt;}
.y1c_c00423{bottom:120.754667pt;}
.y1b_c00423{bottom:144.445333pt;}
.y1a_c00423{bottom:168.134667pt;}
.y19_c00423{bottom:191.824000pt;}
.y18_c00423{bottom:215.514667pt;}
.y17_c00423{bottom:252.869333pt;}
.y16_c00423{bottom:665.692000pt;}
.y15_c00423{bottom:680.304000pt;}
.y14_c00423{bottom:694.916000pt;}
.y13_c00423{bottom:709.528000pt;}
.y12_c00423{bottom:724.140000pt;}
.y11_c00423{bottom:738.752000pt;}
.y10_c00423{bottom:753.364000pt;}
.yf_c00423{bottom:767.976000pt;}
.ye_c00423{bottom:782.588000pt;}
.yd_c00423{bottom:797.198667pt;}
.yc_c00423{bottom:811.810667pt;}
.yb_c00423{bottom:841.034667pt;}
.ya_c00423{bottom:855.646667pt;}
.y9_c00423{bottom:870.258667pt;}
.y8_c00423{bottom:899.482667pt;}
.y7_c00423{bottom:914.094667pt;}
.y6_c00423{bottom:928.706667pt;}
.y5_c00423{bottom:943.317333pt;}
.y4_c00423{bottom:957.929333pt;}
.y3_c00423{bottom:972.541333pt;}
.y2_c00423{bottom:987.153333pt;}
.y1_c00423{bottom:1030.989333pt;}
.h3_c00423{height:31.280681pt;}
.h2_c00423{height:32.006363pt;}
.h5_c00423{height:36.010648pt;}
.h6_c00423{height:46.518078pt;}
.h4_c00423{height:51.855535pt;}
.h0_c00423{height:1122.520000pt;}
.h1_c00423{height:1122.666667pt;}
.w0_c00423{width:793.706667pt;}
.w1_c00423{width:794.000000pt;}
.x0_c00423{left:0.000000pt;}
.x4_c00423{left:113.385333pt;}
.x2_c00423{left:121.886667pt;}
.x1_c00423{left:127.796000pt;}
.x3_c00423{left:157.340000pt;}
.x5_c00423{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b421a0880c10a3bac59f5fe.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.102051;font-style:normal;font-weight:normal;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_5d0f5faad80d007c1391b268.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.048828;font-style:normal;font-weight:normal;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_9f78eacea816ec978a1d255c.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls4_c00424{letter-spacing:0.000000px;}
.ls1_c00424{letter-spacing:0.087998px;}
.ls2_c00424{letter-spacing:0.098482px;}
.ls0_c00424{letter-spacing:0.104482px;}
.ls3_c00424{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00424{word-spacing:-26.575517px;}
.ws3_c00424{word-spacing:-26.487518px;}
.ws0_c00424{word-spacing:-18.769538px;}
.ws8_c00424{word-spacing:0.000000px;}
.ws5_c00424{word-spacing:0.043999px;}
.wsb_c00424{word-spacing:0.056767px;}
.ws9_c00424{word-spacing:0.073250px;}
.wsa_c00424{word-spacing:0.083734px;}
.ws2_c00424{word-spacing:0.175997px;}
.wsc_c00424{word-spacing:0.202963px;}
.ws6_c00424{word-spacing:0.213446px;}
.ws7_c00424{word-spacing:0.219446px;}
._0_c00424{margin-left:-3.825638px;}
._1_c00424{width:1.005737px;}
._3_c00424{width:53.283031px;}
._2_c00424{width:79.858548px;}
._4_c00424{width:133.452408px;}
.fc5_c00424{color:rgb(0,0,207);}
.fc4_c00424{color:rgb(79,153,5);}
.fc3_c00424{color:rgb(207,92,0);}
.fc2_c00424{color:rgb(33,74,135);}
.fc1_c00424{color:rgb(143,89,3);}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:43.999200px;}
.fs0_c00424{font-size:59.775600px;}
.y0_c00424{bottom:0.000000px;}
.y2d_c00424{bottom:44.250000px;}
.y2c_c00424{bottom:96.919500px;}
.y2b_c00424{bottom:113.358000px;}
.y2a_c00424{bottom:129.796500px;}
.y29_c00424{bottom:146.235000px;}
.y28_c00424{bottom:162.673500px;}
.y27_c00424{bottom:179.112000px;}
.y26_c00424{bottom:195.550500px;}
.y25_c00424{bottom:211.989000px;}
.y24_c00424{bottom:228.427500px;}
.y23_c00424{bottom:244.866000px;}
.y22_c00424{bottom:261.304500px;}
.y21_c00424{bottom:294.180000px;}
.y20_c00424{bottom:310.618500px;}
.y1f_c00424{bottom:327.057000px;}
.y1e_c00424{bottom:359.934000px;}
.y1d_c00424{bottom:376.372500px;}
.y1c_c00424{bottom:392.811000px;}
.y1b_c00424{bottom:409.249500px;}
.y1a_c00424{bottom:425.688000px;}
.y19_c00424{bottom:442.125000px;}
.y18_c00424{bottom:458.563500px;}
.y17_c00424{bottom:507.879000px;}
.y16_c00424{bottom:524.317500px;}
.y15_c00424{bottom:540.756000px;}
.y14_c00424{bottom:557.194500px;}
.y13_c00424{bottom:573.633000px;}
.y12_c00424{bottom:590.071500px;}
.y11_c00424{bottom:606.508500px;}
.y10_c00424{bottom:622.947000px;}
.yf_c00424{bottom:639.385500px;}
.ye_c00424{bottom:655.824000px;}
.yd_c00424{bottom:672.262500px;}
.yc_c00424{bottom:688.701000px;}
.yb_c00424{bottom:705.139500px;}
.ya_c00424{bottom:721.578000px;}
.y9_c00424{bottom:738.016500px;}
.y8_c00424{bottom:754.455000px;}
.y7_c00424{bottom:787.330500px;}
.y6_c00424{bottom:803.769000px;}
.y5_c00424{bottom:853.084500px;}
.y4_c00424{bottom:869.523000px;}
.y3_c00424{bottom:885.588000px;}
.y2_c00424{bottom:1141.930500px;}
.y1_c00424{bottom:1159.863000px;}
.h3_c00424{height:35.190766px;}
.h4_c00424{height:36.007158px;}
.h2_c00424{height:52.332837px;}
.h0_c00424{height:1262.835000px;}
.h1_c00424{height:1263.000000px;}
.w0_c00424{width:892.920000px;}
.w1_c00424{width:893.250000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:127.558500px;}
.x2_c00424{left:137.122500px;}
.x3_c00424{left:143.770500px;}
.x4_c00424{left:177.007500px;}
.x5_c00424{left:435.249000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls4_c00424{letter-spacing:0.000000pt;}
.ls1_c00424{letter-spacing:0.078221pt;}
.ls2_c00424{letter-spacing:0.087539pt;}
.ls0_c00424{letter-spacing:0.092873pt;}
.ls3_c00424{letter-spacing:23.724873pt;}
.ws1_c00424{word-spacing:-29.967501pt;}
.ws4_c00424{word-spacing:-23.622682pt;}
.ws3_c00424{word-spacing:-23.544461pt;}
.ws0_c00424{word-spacing:-16.684034pt;}
.ws8_c00424{word-spacing:0.000000pt;}
.ws5_c00424{word-spacing:0.039110pt;}
.wsb_c00424{word-spacing:0.050460pt;}
.ws9_c00424{word-spacing:0.065111pt;}
.wsa_c00424{word-spacing:0.074430pt;}
.ws2_c00424{word-spacing:0.156442pt;}
.wsc_c00424{word-spacing:0.180412pt;}
.ws6_c00424{word-spacing:0.189730pt;}
.ws7_c00424{word-spacing:0.195063pt;}
._0_c00424{margin-left:-3.400567pt;}
._1_c00424{width:0.893988pt;}
._3_c00424{width:47.362694pt;}
._2_c00424{width:70.985376pt;}
._4_c00424{width:118.624363pt;}
.fs1_c00424{font-size:39.110400pt;}
.fs0_c00424{font-size:53.133867pt;}
.y0_c00424{bottom:0.000000pt;}
.y2d_c00424{bottom:39.333333pt;}
.y2c_c00424{bottom:86.150667pt;}
.y2b_c00424{bottom:100.762667pt;}
.y2a_c00424{bottom:115.374667pt;}
.y29_c00424{bottom:129.986667pt;}
.y28_c00424{bottom:144.598667pt;}
.y27_c00424{bottom:159.210667pt;}
.y26_c00424{bottom:173.822667pt;}
.y25_c00424{bottom:188.434667pt;}
.y24_c00424{bottom:203.046667pt;}
.y23_c00424{bottom:217.658667pt;}
.y22_c00424{bottom:232.270667pt;}
.y21_c00424{bottom:261.493333pt;}
.y20_c00424{bottom:276.105333pt;}
.y1f_c00424{bottom:290.717333pt;}
.y1e_c00424{bottom:319.941333pt;}
.y1d_c00424{bottom:334.553333pt;}
.y1c_c00424{bottom:349.165333pt;}
.y1b_c00424{bottom:363.777333pt;}
.y1a_c00424{bottom:378.389333pt;}
.y19_c00424{bottom:393.000000pt;}
.y18_c00424{bottom:407.612000pt;}
.y17_c00424{bottom:451.448000pt;}
.y16_c00424{bottom:466.060000pt;}
.y15_c00424{bottom:480.672000pt;}
.y14_c00424{bottom:495.284000pt;}
.y13_c00424{bottom:509.896000pt;}
.y12_c00424{bottom:524.508000pt;}
.y11_c00424{bottom:539.118667pt;}
.y10_c00424{bottom:553.730667pt;}
.yf_c00424{bottom:568.342667pt;}
.ye_c00424{bottom:582.954667pt;}
.yd_c00424{bottom:597.566667pt;}
.yc_c00424{bottom:612.178667pt;}
.yb_c00424{bottom:626.790667pt;}
.ya_c00424{bottom:641.402667pt;}
.y9_c00424{bottom:656.014667pt;}
.y8_c00424{bottom:670.626667pt;}
.y7_c00424{bottom:699.849333pt;}
.y6_c00424{bottom:714.461333pt;}
.y5_c00424{bottom:758.297333pt;}
.y4_c00424{bottom:772.909333pt;}
.y3_c00424{bottom:787.189333pt;}
.y2_c00424{bottom:1015.049333pt;}
.y1_c00424{bottom:1030.989333pt;}
.h3_c00424{height:31.280681pt;}
.h4_c00424{height:32.006363pt;}
.h2_c00424{height:46.518078pt;}
.h0_c00424{height:1122.520000pt;}
.h1_c00424{height:1122.666667pt;}
.w0_c00424{width:793.706667pt;}
.w1_c00424{width:794.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:113.385333pt;}
.x2_c00424{left:121.886667pt;}
.x3_c00424{left:127.796000pt;}
.x4_c00424{left:157.340000pt;}
.x5_c00424{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0c54ddb4a217bb076bb3aff.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.893555;font-style:normal;font-weight:normal;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_297a8c44587e0cccf54db4dc.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.083496;font-style:normal;font-weight:normal;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_1219b203aac058bfd056f447.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00425;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00425{font-family:ff5_c00425;line-height:1.048828;font-style: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;}
.ls3_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:0.087998px;}
.ls2_c00425{letter-spacing:0.098482px;}
.ls1_c00425{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00425{word-spacing:-26.575517px;}
.wsf_c00425{word-spacing:-26.487518px;}
.wsa_c00425{word-spacing:-20.624971px;}
.wsb_c00425{word-spacing:-20.622582px;}
.ws5_c00425{word-spacing:-18.769538px;}
.ws8_c00425{word-spacing:-17.574026px;}
.ws4_c00425{word-spacing:-14.943900px;}
.wsd_c00425{word-spacing:-14.764573px;}
.wsc_c00425{word-spacing:-14.525471px;}
.ws7_c00425{word-spacing:-12.851754px;}
.ws9_c00425{word-spacing:-11.357364px;}
.ws1_c00425{word-spacing:-9.988424px;}
.ws3_c00425{word-spacing:-9.987499px;}
.ws13_c00425{word-spacing:0.000000px;}
.ws10_c00425{word-spacing:0.043999px;}
.wse_c00425{word-spacing:0.175997px;}
.ws12_c00425{word-spacing:0.213446px;}
.ws11_c00425{word-spacing:0.219446px;}
.ws6_c00425{word-spacing:1.841856px;}
.ws0_c00425{word-spacing:43.038600px;}
._2_c00425{margin-left:-2.933780px;}
._0_c00425{margin-left:-1.549390px;}
._6_c00425{width:1.005737px;}
._1_c00425{width:19.935816px;}
._3_c00425{width:23.046875px;}
._5_c00425{width:32.039722px;}
._4_c00425{width:42.082022px;}
.fc5_c00425{color:rgb(79,153,5);}
.fc3_c00425{color:rgb(33,74,135);}
.fc2_c00425{color:rgb(143,89,3);}
.fc4_c00425{color:rgb(207,92,0);}
.fc1_c00425{color:rgb(6,69,173);}
.fc0_c00425{color:rgb(0,0,0);}
.fs2_c00425{font-size:43.999200px;}
.fs1_c00425{font-size:59.775600px;}
.fs0_c00425{font-size:86.077200px;}
.y0_c00425{bottom:0.000000px;}
.y20_c00425{bottom:44.250000px;}
.y1f_c00425{bottom:82.051500px;}
.y1e_c00425{bottom:98.490000px;}
.y1d_c00425{bottom:114.927000px;}
.y1c_c00425{bottom:147.804000px;}
.y1b_c00425{bottom:164.242500px;}
.y1a_c00425{bottom:197.119500px;}
.y19_c00425{bottom:213.558000px;}
.y18_c00425{bottom:229.996500px;}
.y17_c00425{bottom:246.435000px;}
.y16_c00425{bottom:279.310500px;}
.y15_c00425{bottom:295.749000px;}
.y14_c00425{bottom:312.187500px;}
.y13_c00425{bottom:328.626000px;}
.y12_c00425{bottom:345.064500px;}
.y11_c00425{bottom:361.503000px;}
.y10_c00425{bottom:377.941500px;}
.yf_c00425{bottom:394.380000px;}
.ye_c00425{bottom:410.445000px;}
.yd_c00425{bottom:458.862000px;}
.yc_c00425{bottom:476.794500px;}
.yb_c00425{bottom:494.727000px;}
.ya_c00425{bottom:512.659500px;}
.y9_c00425{bottom:530.593500px;}
.y8_c00425{bottom:548.526000px;}
.y7_c00425{bottom:566.458500px;}
.y6_c00425{bottom:584.391000px;}
.y5_c00425{bottom:611.374500px;}
.y4_c00425{bottom:638.358000px;}
.y3_c00425{bottom:665.341500px;}
.y2_c00425{bottom:692.325000px;}
.y1_c00425{bottom:734.719500px;}
.h5_c00425{height:35.190766px;}
.h6_c00425{height:36.007158px;}
.h3_c00425{height:40.511979px;}
.h4_c00425{height:52.332837px;}
.h2_c00425{height:58.337477px;}
.h0_c00425{height:1262.835000px;}
.h1_c00425{height:1263.000000px;}
.w0_c00425{width:892.920000px;}
.w1_c00425{width:893.250000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:127.558500px;}
.x2_c00425{left:137.122500px;}
.x3_c00425{left:435.249000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls3_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.078221pt;}
.ls2_c00425{letter-spacing:0.087539pt;}
.ls1_c00425{letter-spacing:0.092873pt;}
.ws2_c00425{word-spacing:-23.622682pt;}
.wsf_c00425{word-spacing:-23.544461pt;}
.wsa_c00425{word-spacing:-18.333308pt;}
.wsb_c00425{word-spacing:-18.331184pt;}
.ws5_c00425{word-spacing:-16.684034pt;}
.ws8_c00425{word-spacing:-15.621357pt;}
.ws4_c00425{word-spacing:-13.283467pt;}
.wsd_c00425{word-spacing:-13.124065pt;}
.wsc_c00425{word-spacing:-12.911530pt;}
.ws7_c00425{word-spacing:-11.423781pt;}
.ws9_c00425{word-spacing:-10.095435pt;}
.ws1_c00425{word-spacing:-8.878599pt;}
.ws3_c00425{word-spacing:-8.877777pt;}
.ws13_c00425{word-spacing:0.000000pt;}
.ws10_c00425{word-spacing:0.039110pt;}
.wse_c00425{word-spacing:0.156442pt;}
.ws12_c00425{word-spacing:0.189730pt;}
.ws11_c00425{word-spacing:0.195063pt;}
.ws6_c00425{word-spacing:1.637205pt;}
.ws0_c00425{word-spacing:38.256533pt;}
._2_c00425{margin-left:-2.607805pt;}
._0_c00425{margin-left:-1.377235pt;}
._6_c00425{width:0.893988pt;}
._1_c00425{width:17.720725pt;}
._3_c00425{width:20.486111pt;}
._5_c00425{width:28.479753pt;}
._4_c00425{width:37.406242pt;}
.fs2_c00425{font-size:39.110400pt;}
.fs1_c00425{font-size:53.133867pt;}
.fs0_c00425{font-size:76.513067pt;}
.y0_c00425{bottom:0.000000pt;}
.y20_c00425{bottom:39.333333pt;}
.y1f_c00425{bottom:72.934667pt;}
.y1e_c00425{bottom:87.546667pt;}
.y1d_c00425{bottom:102.157333pt;}
.y1c_c00425{bottom:131.381333pt;}
.y1b_c00425{bottom:145.993333pt;}
.y1a_c00425{bottom:175.217333pt;}
.y19_c00425{bottom:189.829333pt;}
.y18_c00425{bottom:204.441333pt;}
.y17_c00425{bottom:219.053333pt;}
.y16_c00425{bottom:248.276000pt;}
.y15_c00425{bottom:262.888000pt;}
.y14_c00425{bottom:277.500000pt;}
.y13_c00425{bottom:292.112000pt;}
.y12_c00425{bottom:306.724000pt;}
.y11_c00425{bottom:321.336000pt;}
.y10_c00425{bottom:335.948000pt;}
.yf_c00425{bottom:350.560000pt;}
.ye_c00425{bottom:364.840000pt;}
.yd_c00425{bottom:407.877333pt;}
.yc_c00425{bottom:423.817333pt;}
.yb_c00425{bottom:439.757333pt;}
.ya_c00425{bottom:455.697333pt;}
.y9_c00425{bottom:471.638667pt;}
.y8_c00425{bottom:487.578667pt;}
.y7_c00425{bottom:503.518667pt;}
.y6_c00425{bottom:519.458667pt;}
.y5_c00425{bottom:543.444000pt;}
.y4_c00425{bottom:567.429333pt;}
.y3_c00425{bottom:591.414667pt;}
.y2_c00425{bottom:615.400000pt;}
.y1_c00425{bottom:653.084000pt;}
.h5_c00425{height:31.280681pt;}
.h6_c00425{height:32.006363pt;}
.h3_c00425{height:36.010648pt;}
.h4_c00425{height:46.518078pt;}
.h2_c00425{height:51.855535pt;}
.h0_c00425{height:1122.520000pt;}
.h1_c00425{height:1122.666667pt;}
.w0_c00425{width:793.706667pt;}
.w1_c00425{width:794.000000pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:113.385333pt;}
.x2_c00425{left:121.886667pt;}
.x3_c00425{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1beadec395e4631fb5c7b168.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.014648;font-style:normal;font-weight:normal;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_42a5aeecf421db8f4c3af77a.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_e9a13211046fc08d87ec865a.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls3_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.087998px;}
.ls2_c00426{letter-spacing:0.098482px;}
.ls1_c00426{letter-spacing:0.104482px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00426{word-spacing:-26.575517px;}
.ws2_c00426{word-spacing:-26.487518px;}
.ws5_c00426{word-spacing:0.000000px;}
.ws4_c00426{word-spacing:0.043999px;}
.ws3_c00426{word-spacing:0.053933px;}
.ws6_c00426{word-spacing:0.056767px;}
.ws0_c00426{word-spacing:0.175997px;}
.ws7_c00426{word-spacing:0.213446px;}
._0_c00426{width:1.077888px;}
._1_c00426{width:106.786058px;}
.fc5_c00426{color:rgb(0,0,207);}
.fc4_c00426{color:rgb(79,153,5);}
.fc3_c00426{color:rgb(33,74,135);}
.fc2_c00426{color:rgb(207,92,0);}
.fc1_c00426{color:rgb(0,0,0);}
.fc0_c00426{color:rgb(143,89,3);}
.fs0_c00426{font-size:43.999200px;}
.fs1_c00426{font-size:59.775600px;}
.y0_c00426{bottom:0.000000px;}
.y32_c00426{bottom:44.250000px;}
.y31_c00426{bottom:239.314500px;}
.y30_c00426{bottom:255.753000px;}
.y2f_c00426{bottom:272.191500px;}
.y2e_c00426{bottom:288.630000px;}
.y2d_c00426{bottom:305.068500px;}
.y2c_c00426{bottom:321.507000px;}
.y2b_c00426{bottom:337.945500px;}
.y2a_c00426{bottom:354.384000px;}
.y29_c00426{bottom:370.822500px;}
.y28_c00426{bottom:387.259500px;}
.y27_c00426{bottom:403.698000px;}
.y26_c00426{bottom:436.575000px;}
.y25_c00426{bottom:453.013500px;}
.y24_c00426{bottom:469.452000px;}
.y23_c00426{bottom:518.767500px;}
.y22_c00426{bottom:535.206000px;}
.y21_c00426{bottom:551.643000px;}
.y20_c00426{bottom:568.081500px;}
.y1f_c00426{bottom:584.520000px;}
.y1e_c00426{bottom:600.958500px;}
.y1d_c00426{bottom:617.397000px;}
.y1c_c00426{bottom:633.835500px;}
.y1b_c00426{bottom:650.274000px;}
.y1a_c00426{bottom:666.712500px;}
.y19_c00426{bottom:683.151000px;}
.y18_c00426{bottom:699.589500px;}
.y17_c00426{bottom:716.028000px;}
.y16_c00426{bottom:732.465000px;}
.y15_c00426{bottom:748.903500px;}
.y14_c00426{bottom:765.342000px;}
.y13_c00426{bottom:781.780500px;}
.y12_c00426{bottom:798.219000px;}
.y11_c00426{bottom:814.657500px;}
.y10_c00426{bottom:831.096000px;}
.yf_c00426{bottom:847.534500px;}
.ye_c00426{bottom:863.973000px;}
.yd_c00426{bottom:880.411500px;}
.yc_c00426{bottom:896.848500px;}
.yb_c00426{bottom:946.164000px;}
.ya_c00426{bottom:962.602500px;}
.y9_c00426{bottom:979.041000px;}
.y8_c00426{bottom:995.479500px;}
.y7_c00426{bottom:1044.795000px;}
.y6_c00426{bottom:1061.232000px;}
.y5_c00426{bottom:1094.109000px;}
.y4_c00426{bottom:1110.547500px;}
.y3_c00426{bottom:1126.986000px;}
.y2_c00426{bottom:1143.424500px;}
.y1_c00426{bottom:1159.863000px;}
.h2_c00426{height:35.190766px;}
.h3_c00426{height:36.007158px;}
.h4_c00426{height:52.332837px;}
.h0_c00426{height:1262.835000px;}
.h1_c00426{height:1263.000000px;}
.w0_c00426{width:892.920000px;}
.w1_c00426{width:893.250000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:137.122500px;}
.x2_c00426{left:143.770500px;}
.x6_c00426{left:177.007500px;}
.x5_c00426{left:230.185500px;}
.x3_c00426{left:243.480000px;}
.x4_c00426{left:276.715500px;}
.x7_c00426{left:435.249000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls3_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.078221pt;}
.ls2_c00426{letter-spacing:0.087539pt;}
.ls1_c00426{letter-spacing:0.092873pt;}
.ws1_c00426{word-spacing:-23.622682pt;}
.ws2_c00426{word-spacing:-23.544461pt;}
.ws5_c00426{word-spacing:0.000000pt;}
.ws4_c00426{word-spacing:0.039110pt;}
.ws3_c00426{word-spacing:0.047940pt;}
.ws6_c00426{word-spacing:0.050460pt;}
.ws0_c00426{word-spacing:0.156442pt;}
.ws7_c00426{word-spacing:0.189730pt;}
._0_c00426{width:0.958123pt;}
._1_c00426{width:94.920941pt;}
.fs0_c00426{font-size:39.110400pt;}
.fs1_c00426{font-size:53.133867pt;}
.y0_c00426{bottom:0.000000pt;}
.y32_c00426{bottom:39.333333pt;}
.y31_c00426{bottom:212.724000pt;}
.y30_c00426{bottom:227.336000pt;}
.y2f_c00426{bottom:241.948000pt;}
.y2e_c00426{bottom:256.560000pt;}
.y2d_c00426{bottom:271.172000pt;}
.y2c_c00426{bottom:285.784000pt;}
.y2b_c00426{bottom:300.396000pt;}
.y2a_c00426{bottom:315.008000pt;}
.y29_c00426{bottom:329.620000pt;}
.y28_c00426{bottom:344.230667pt;}
.y27_c00426{bottom:358.842667pt;}
.y26_c00426{bottom:388.066667pt;}
.y25_c00426{bottom:402.678667pt;}
.y24_c00426{bottom:417.290667pt;}
.y23_c00426{bottom:461.126667pt;}
.y22_c00426{bottom:475.738667pt;}
.y21_c00426{bottom:490.349333pt;}
.y20_c00426{bottom:504.961333pt;}
.y1f_c00426{bottom:519.573333pt;}
.y1e_c00426{bottom:534.185333pt;}
.y1d_c00426{bottom:548.797333pt;}
.y1c_c00426{bottom:563.409333pt;}
.y1b_c00426{bottom:578.021333pt;}
.y1a_c00426{bottom:592.633333pt;}
.y19_c00426{bottom:607.245333pt;}
.y18_c00426{bottom:621.857333pt;}
.y17_c00426{bottom:636.469333pt;}
.y16_c00426{bottom:651.080000pt;}
.y15_c00426{bottom:665.692000pt;}
.y14_c00426{bottom:680.304000pt;}
.y13_c00426{bottom:694.916000pt;}
.y12_c00426{bottom:709.528000pt;}
.y11_c00426{bottom:724.140000pt;}
.y10_c00426{bottom:738.752000pt;}
.yf_c00426{bottom:753.364000pt;}
.ye_c00426{bottom:767.976000pt;}
.yd_c00426{bottom:782.588000pt;}
.yc_c00426{bottom:797.198667pt;}
.yb_c00426{bottom:841.034667pt;}
.ya_c00426{bottom:855.646667pt;}
.y9_c00426{bottom:870.258667pt;}
.y8_c00426{bottom:884.870667pt;}
.y7_c00426{bottom:928.706667pt;}
.y6_c00426{bottom:943.317333pt;}
.y5_c00426{bottom:972.541333pt;}
.y4_c00426{bottom:987.153333pt;}
.y3_c00426{bottom:1001.765333pt;}
.y2_c00426{bottom:1016.377333pt;}
.y1_c00426{bottom:1030.989333pt;}
.h2_c00426{height:31.280681pt;}
.h3_c00426{height:32.006363pt;}
.h4_c00426{height:46.518078pt;}
.h0_c00426{height:1122.520000pt;}
.h1_c00426{height:1122.666667pt;}
.w0_c00426{width:793.706667pt;}
.w1_c00426{width:794.000000pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:121.886667pt;}
.x2_c00426{left:127.796000pt;}
.x6_c00426{left:157.340000pt;}
.x5_c00426{left:204.609333pt;}
.x3_c00426{left:216.426667pt;}
.x4_c00426{left:245.969333pt;}
.x7_c00426{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a57fccdf30357048a6174b0c.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.893555;font-style:normal;font-weight:normal;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_526e741a30f53211cb31fb56.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.083496;font-style:normal;font-weight:normal;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_0b760433bafbfacc58ff88e6.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.048828;font-style: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;}
.ls3_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:0.087998px;}
.ls2_c00427{letter-spacing:0.098482px;}
.ls1_c00427{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00427{word-spacing:-33.713438px;}
.ws2_c00427{word-spacing:-26.575517px;}
.wse_c00427{word-spacing:-26.487518px;}
.ws9_c00427{word-spacing:-21.553319px;}
.ws8_c00427{word-spacing:-21.519216px;}
.ws5_c00427{word-spacing:-18.769538px;}
.ws7_c00427{word-spacing:-16.019861px;}
.ws4_c00427{word-spacing:-14.943900px;}
.wsa_c00427{word-spacing:-14.107042px;}
.wsb_c00427{word-spacing:-12.074671px;}
.ws1_c00427{word-spacing:-9.988424px;}
.ws3_c00427{word-spacing:-9.987499px;}
.ws6_c00427{word-spacing:-4.536144px;}
.ws12_c00427{word-spacing:0.000000px;}
.wsf_c00427{word-spacing:0.043999px;}
.ws15_c00427{word-spacing:0.056767px;}
.ws13_c00427{word-spacing:0.073250px;}
.ws14_c00427{word-spacing:0.083734px;}
.wsd_c00427{word-spacing:0.175997px;}
.ws16_c00427{word-spacing:0.202963px;}
.ws10_c00427{word-spacing:0.213446px;}
.ws11_c00427{word-spacing:0.219446px;}
.ws0_c00427{word-spacing:42.952523px;}
._0_c00427{margin-left:-4.734246px;}
._3_c00427{margin-left:-3.019858px;}
._1_c00427{margin-left:-1.463312px;}
._6_c00427{width:1.005737px;}
._5_c00427{width:15.972059px;}
._2_c00427{width:19.935816px;}
._4_c00427{width:40.109428px;}
._8_c00427{width:53.283031px;}
._7_c00427{width:79.858548px;}
._9_c00427{width:133.452408px;}
.fc6_c00427{color:rgb(0,0,207);}
.fc5_c00427{color:rgb(79,153,5);}
.fc3_c00427{color:rgb(33,74,135);}
.fc2_c00427{color:rgb(143,89,3);}
.fc4_c00427{color:rgb(207,92,0);}
.fc1_c00427{color:rgb(6,69,173);}
.fc0_c00427{color:rgb(0,0,0);}
.fs2_c00427{font-size:43.999200px;}
.fs1_c00427{font-size:59.775600px;}
.fs0_c00427{font-size:86.077200px;}
.y0_c00427{bottom:0.000000px;}
.y20_c00427{bottom:44.250000px;}
.y1f_c00427{bottom:86.982000px;}
.y1e_c00427{bottom:103.420500px;}
.y1d_c00427{bottom:119.859000px;}
.y1c_c00427{bottom:136.297500px;}
.y1b_c00427{bottom:152.736000px;}
.y1a_c00427{bottom:169.174500px;}
.y19_c00427{bottom:185.613000px;}
.y18_c00427{bottom:202.051500px;}
.y17_c00427{bottom:218.490000px;}
.y16_c00427{bottom:234.927000px;}
.y15_c00427{bottom:251.365500px;}
.y14_c00427{bottom:267.804000px;}
.y13_c00427{bottom:284.242500px;}
.y12_c00427{bottom:300.681000px;}
.y11_c00427{bottom:317.119500px;}
.y10_c00427{bottom:349.996500px;}
.yf_c00427{bottom:366.435000px;}
.ye_c00427{bottom:415.749000px;}
.yd_c00427{bottom:432.187500px;}
.yc_c00427{bottom:448.252500px;}
.yb_c00427{bottom:493.890000px;}
.ya_c00427{bottom:511.822500px;}
.y9_c00427{bottom:529.756500px;}
.y8_c00427{bottom:547.689000px;}
.y7_c00427{bottom:565.621500px;}
.y6_c00427{bottom:583.554000px;}
.y5_c00427{bottom:610.633500px;}
.y4_c00427{bottom:637.714500px;}
.y3_c00427{bottom:664.794000px;}
.y2_c00427{bottom:691.873500px;}
.y1_c00427{bottom:734.407500px;}
.h5_c00427{height:35.190766px;}
.h6_c00427{height:36.007158px;}
.h3_c00427{height:40.511979px;}
.h4_c00427{height:52.332837px;}
.h2_c00427{height:58.337477px;}
.h0_c00427{height:1262.835000px;}
.h1_c00427{height:1263.000000px;}
.w0_c00427{width:892.920000px;}
.w1_c00427{width:893.250000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:127.558500px;}
.x2_c00427{left:137.122500px;}
.x3_c00427{left:143.770500px;}
.x4_c00427{left:435.249000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls3_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:0.078221pt;}
.ls2_c00427{letter-spacing:0.087539pt;}
.ls1_c00427{letter-spacing:0.092873pt;}
.wsc_c00427{word-spacing:-29.967501pt;}
.ws2_c00427{word-spacing:-23.622682pt;}
.wse_c00427{word-spacing:-23.544461pt;}
.ws9_c00427{word-spacing:-19.158506pt;}
.ws8_c00427{word-spacing:-19.128192pt;}
.ws5_c00427{word-spacing:-16.684034pt;}
.ws7_c00427{word-spacing:-14.239876pt;}
.ws4_c00427{word-spacing:-13.283467pt;}
.wsa_c00427{word-spacing:-12.539593pt;}
.wsb_c00427{word-spacing:-10.733041pt;}
.ws1_c00427{word-spacing:-8.878599pt;}
.ws3_c00427{word-spacing:-8.877777pt;}
.ws6_c00427{word-spacing:-4.032128pt;}
.ws12_c00427{word-spacing:0.000000pt;}
.wsf_c00427{word-spacing:0.039110pt;}
.ws15_c00427{word-spacing:0.050460pt;}
.ws13_c00427{word-spacing:0.065111pt;}
.ws14_c00427{word-spacing:0.074430pt;}
.wsd_c00427{word-spacing:0.156442pt;}
.ws16_c00427{word-spacing:0.180412pt;}
.ws10_c00427{word-spacing:0.189730pt;}
.ws11_c00427{word-spacing:0.195063pt;}
.ws0_c00427{word-spacing:38.180020pt;}
._0_c00427{margin-left:-4.208219pt;}
._3_c00427{margin-left:-2.684318pt;}
._1_c00427{margin-left:-1.300722pt;}
._6_c00427{width:0.893988pt;}
._5_c00427{width:14.197386pt;}
._2_c00427{width:17.720725pt;}
._4_c00427{width:35.652825pt;}
._8_c00427{width:47.362694pt;}
._7_c00427{width:70.985376pt;}
._9_c00427{width:118.624363pt;}
.fs2_c00427{font-size:39.110400pt;}
.fs1_c00427{font-size:53.133867pt;}
.fs0_c00427{font-size:76.513067pt;}
.y0_c00427{bottom:0.000000pt;}
.y20_c00427{bottom:39.333333pt;}
.y1f_c00427{bottom:77.317333pt;}
.y1e_c00427{bottom:91.929333pt;}
.y1d_c00427{bottom:106.541333pt;}
.y1c_c00427{bottom:121.153333pt;}
.y1b_c00427{bottom:135.765333pt;}
.y1a_c00427{bottom:150.377333pt;}
.y19_c00427{bottom:164.989333pt;}
.y18_c00427{bottom:179.601333pt;}
.y17_c00427{bottom:194.213333pt;}
.y16_c00427{bottom:208.824000pt;}
.y15_c00427{bottom:223.436000pt;}
.y14_c00427{bottom:238.048000pt;}
.y13_c00427{bottom:252.660000pt;}
.y12_c00427{bottom:267.272000pt;}
.y11_c00427{bottom:281.884000pt;}
.y10_c00427{bottom:311.108000pt;}
.yf_c00427{bottom:325.720000pt;}
.ye_c00427{bottom:369.554667pt;}
.yd_c00427{bottom:384.166667pt;}
.yc_c00427{bottom:398.446667pt;}
.yb_c00427{bottom:439.013333pt;}
.ya_c00427{bottom:454.953333pt;}
.y9_c00427{bottom:470.894667pt;}
.y8_c00427{bottom:486.834667pt;}
.y7_c00427{bottom:502.774667pt;}
.y6_c00427{bottom:518.714667pt;}
.y5_c00427{bottom:542.785333pt;}
.y4_c00427{bottom:566.857333pt;}
.y3_c00427{bottom:590.928000pt;}
.y2_c00427{bottom:614.998667pt;}
.y1_c00427{bottom:652.806667pt;}
.h5_c00427{height:31.280681pt;}
.h6_c00427{height:32.006363pt;}
.h3_c00427{height:36.010648pt;}
.h4_c00427{height:46.518078pt;}
.h2_c00427{height:51.855535pt;}
.h0_c00427{height:1122.520000pt;}
.h1_c00427{height:1122.666667pt;}
.w0_c00427{width:793.706667pt;}
.w1_c00427{width:794.000000pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:113.385333pt;}
.x2_c00427{left:121.886667pt;}
.x3_c00427{left:127.796000pt;}
.x4_c00427{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe287fbb49e52aea844f03b0.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.048828;font-style:normal;font-weight:normal;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_447e1e9ba1bf3ab30f6d47e0.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_a57fccdf30357048a6174b0c.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_777153b7794dfbcb64cd4b2d.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.102051;font-style: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;}
.ls4_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.087998px;}
.ls2_c00428{letter-spacing:0.098482px;}
.ls3_c00428{letter-spacing:0.104482px;}
.ls1_c00428{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00428{word-spacing:-26.575517px;}
.ws4_c00428{word-spacing:-26.487518px;}
.wse_c00428{word-spacing:-21.553319px;}
.wsd_c00428{word-spacing:-21.519216px;}
.wsa_c00428{word-spacing:-18.769538px;}
.wsc_c00428{word-spacing:-17.633802px;}
.ws9_c00428{word-spacing:-14.943900px;}
.wsf_c00428{word-spacing:-14.107042px;}
.ws10_c00428{word-spacing:-12.074671px;}
.ws7_c00428{word-spacing:-9.988424px;}
.ws8_c00428{word-spacing:-9.987499px;}
.wsb_c00428{word-spacing:-7.686144px;}
.ws3_c00428{word-spacing:0.000000px;}
.ws0_c00428{word-spacing:0.043999px;}
.ws5_c00428{word-spacing:0.213446px;}
.ws1_c00428{word-spacing:0.219446px;}
.ws6_c00428{word-spacing:43.038600px;}
._4_c00428{margin-left:-2.933780px;}
._2_c00428{margin-left:-1.549390px;}
._1_c00428{width:1.063690px;}
._3_c00428{width:19.935816px;}
._5_c00428{width:40.109428px;}
._0_c00428{width:106.786058px;}
.fc5_c00428{color:rgb(79,153,5);}
.fc4_c00428{color:rgb(143,89,3);}
.fc3_c00428{color:rgb(0,0,0);}
.fc6_c00428{color:rgb(6,69,173);}
.fc2_c00428{color:rgb(207,92,0);}
.fc1_c00428{color:rgb(0,0,207);}
.fc0_c00428{color:rgb(33,74,135);}
.fs0_c00428{font-size:43.999200px;}
.fs2_c00428{font-size:59.775600px;}
.fs1_c00428{font-size:86.077200px;}
.y0_c00428{bottom:0.000000px;}
.y20_c00428{bottom:44.250000px;}
.y1f_c00428{bottom:82.051500px;}
.y1e_c00428{bottom:99.984000px;}
.y1d_c00428{bottom:117.916500px;}
.y1c_c00428{bottom:135.849000px;}
.y1b_c00428{bottom:162.501000px;}
.y1a_c00428{bottom:189.151500px;}
.y19_c00428{bottom:215.802000px;}
.y18_c00428{bottom:242.454000px;}
.y17_c00428{bottom:284.478000px;}
.y16_c00428{bottom:748.903500px;}
.y15_c00428{bottom:765.342000px;}
.y14_c00428{bottom:781.780500px;}
.y13_c00428{bottom:798.219000px;}
.y12_c00428{bottom:814.657500px;}
.y11_c00428{bottom:831.096000px;}
.y10_c00428{bottom:847.534500px;}
.yf_c00428{bottom:863.973000px;}
.ye_c00428{bottom:880.411500px;}
.yd_c00428{bottom:896.848500px;}
.yc_c00428{bottom:913.287000px;}
.yb_c00428{bottom:946.164000px;}
.ya_c00428{bottom:962.602500px;}
.y9_c00428{bottom:979.041000px;}
.y8_c00428{bottom:1011.918000px;}
.y7_c00428{bottom:1028.356500px;}
.y6_c00428{bottom:1044.795000px;}
.y5_c00428{bottom:1061.232000px;}
.y4_c00428{bottom:1077.670500px;}
.y3_c00428{bottom:1094.109000px;}
.y2_c00428{bottom:1110.547500px;}
.y1_c00428{bottom:1159.863000px;}
.h3_c00428{height:35.190766px;}
.h2_c00428{height:36.007158px;}
.h5_c00428{height:40.511979px;}
.h6_c00428{height:52.332837px;}
.h4_c00428{height:58.337477px;}
.h0_c00428{height:1262.835000px;}
.h1_c00428{height:1263.000000px;}
.w0_c00428{width:892.920000px;}
.w1_c00428{width:893.250000px;}
.x0_c00428{left:0.000000px;}
.x4_c00428{left:127.558500px;}
.x2_c00428{left:137.122500px;}
.x1_c00428{left:143.770500px;}
.x3_c00428{left:177.007500px;}
.x5_c00428{left:435.249000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls4_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.078221pt;}
.ls2_c00428{letter-spacing:0.087539pt;}
.ls3_c00428{letter-spacing:0.092873pt;}
.ls1_c00428{letter-spacing:23.724873pt;}
.ws2_c00428{word-spacing:-23.622682pt;}
.ws4_c00428{word-spacing:-23.544461pt;}
.wse_c00428{word-spacing:-19.158506pt;}
.wsd_c00428{word-spacing:-19.128192pt;}
.wsa_c00428{word-spacing:-16.684034pt;}
.wsc_c00428{word-spacing:-15.674491pt;}
.ws9_c00428{word-spacing:-13.283467pt;}
.wsf_c00428{word-spacing:-12.539593pt;}
.ws10_c00428{word-spacing:-10.733041pt;}
.ws7_c00428{word-spacing:-8.878599pt;}
.ws8_c00428{word-spacing:-8.877777pt;}
.wsb_c00428{word-spacing:-6.832128pt;}
.ws3_c00428{word-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.039110pt;}
.ws5_c00428{word-spacing:0.189730pt;}
.ws1_c00428{word-spacing:0.195063pt;}
.ws6_c00428{word-spacing:38.256533pt;}
._4_c00428{margin-left:-2.607805pt;}
._2_c00428{margin-left:-1.377235pt;}
._1_c00428{width:0.945502pt;}
._3_c00428{width:17.720725pt;}
._5_c00428{width:35.652825pt;}
._0_c00428{width:94.920941pt;}
.fs0_c00428{font-size:39.110400pt;}
.fs2_c00428{font-size:53.133867pt;}
.fs1_c00428{font-size:76.513067pt;}
.y0_c00428{bottom:0.000000pt;}
.y20_c00428{bottom:39.333333pt;}
.y1f_c00428{bottom:72.934667pt;}
.y1e_c00428{bottom:88.874667pt;}
.y1d_c00428{bottom:104.814667pt;}
.y1c_c00428{bottom:120.754667pt;}
.y1b_c00428{bottom:144.445333pt;}
.y1a_c00428{bottom:168.134667pt;}
.y19_c00428{bottom:191.824000pt;}
.y18_c00428{bottom:215.514667pt;}
.y17_c00428{bottom:252.869333pt;}
.y16_c00428{bottom:665.692000pt;}
.y15_c00428{bottom:680.304000pt;}
.y14_c00428{bottom:694.916000pt;}
.y13_c00428{bottom:709.528000pt;}
.y12_c00428{bottom:724.140000pt;}
.y11_c00428{bottom:738.752000pt;}
.y10_c00428{bottom:753.364000pt;}
.yf_c00428{bottom:767.976000pt;}
.ye_c00428{bottom:782.588000pt;}
.yd_c00428{bottom:797.198667pt;}
.yc_c00428{bottom:811.810667pt;}
.yb_c00428{bottom:841.034667pt;}
.ya_c00428{bottom:855.646667pt;}
.y9_c00428{bottom:870.258667pt;}
.y8_c00428{bottom:899.482667pt;}
.y7_c00428{bottom:914.094667pt;}
.y6_c00428{bottom:928.706667pt;}
.y5_c00428{bottom:943.317333pt;}
.y4_c00428{bottom:957.929333pt;}
.y3_c00428{bottom:972.541333pt;}
.y2_c00428{bottom:987.153333pt;}
.y1_c00428{bottom:1030.989333pt;}
.h3_c00428{height:31.280681pt;}
.h2_c00428{height:32.006363pt;}
.h5_c00428{height:36.010648pt;}
.h6_c00428{height:46.518078pt;}
.h4_c00428{height:51.855535pt;}
.h0_c00428{height:1122.520000pt;}
.h1_c00428{height:1122.666667pt;}
.w0_c00428{width:793.706667pt;}
.w1_c00428{width:794.000000pt;}
.x0_c00428{left:0.000000pt;}
.x4_c00428{left:113.385333pt;}
.x2_c00428{left:121.886667pt;}
.x1_c00428{left:127.796000pt;}
.x3_c00428{left:157.340000pt;}
.x5_c00428{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a02b00eff47dbc6ef16ed4ba.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.102051;font-style:normal;font-weight:normal;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_2212a424a40cf9d8d6166127.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.048828;font-style:normal;font-weight:normal;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_c258c4819b1b154a3236771b.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls4_c00429{letter-spacing:0.000000px;}
.ls1_c00429{letter-spacing:0.087998px;}
.ls2_c00429{letter-spacing:0.098482px;}
.ls0_c00429{letter-spacing:0.104482px;}
.ls3_c00429{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00429{word-spacing:-26.575517px;}
.ws3_c00429{word-spacing:-26.487518px;}
.ws0_c00429{word-spacing:-18.769538px;}
.ws8_c00429{word-spacing:0.000000px;}
.ws5_c00429{word-spacing:0.043999px;}
.wsb_c00429{word-spacing:0.056767px;}
.ws9_c00429{word-spacing:0.073250px;}
.wsa_c00429{word-spacing:0.083734px;}
.ws2_c00429{word-spacing:0.175997px;}
.wsc_c00429{word-spacing:0.202963px;}
.ws6_c00429{word-spacing:0.213446px;}
.ws7_c00429{word-spacing:0.219446px;}
._0_c00429{margin-left:-3.825638px;}
._1_c00429{width:1.005737px;}
._3_c00429{width:53.283031px;}
._2_c00429{width:79.858548px;}
._4_c00429{width:133.452408px;}
.fc5_c00429{color:rgb(0,0,207);}
.fc4_c00429{color:rgb(79,153,5);}
.fc3_c00429{color:rgb(207,92,0);}
.fc2_c00429{color:rgb(33,74,135);}
.fc1_c00429{color:rgb(143,89,3);}
.fc0_c00429{color:rgb(0,0,0);}
.fs1_c00429{font-size:43.999200px;}
.fs0_c00429{font-size:59.775600px;}
.y0_c00429{bottom:0.000000px;}
.y2d_c00429{bottom:44.250000px;}
.y2c_c00429{bottom:96.919500px;}
.y2b_c00429{bottom:113.358000px;}
.y2a_c00429{bottom:129.796500px;}
.y29_c00429{bottom:146.235000px;}
.y28_c00429{bottom:162.673500px;}
.y27_c00429{bottom:179.112000px;}
.y26_c00429{bottom:195.550500px;}
.y25_c00429{bottom:211.989000px;}
.y24_c00429{bottom:228.427500px;}
.y23_c00429{bottom:244.866000px;}
.y22_c00429{bottom:261.304500px;}
.y21_c00429{bottom:294.180000px;}
.y20_c00429{bottom:310.618500px;}
.y1f_c00429{bottom:327.057000px;}
.y1e_c00429{bottom:359.934000px;}
.y1d_c00429{bottom:376.372500px;}
.y1c_c00429{bottom:392.811000px;}
.y1b_c00429{bottom:409.249500px;}
.y1a_c00429{bottom:425.688000px;}
.y19_c00429{bottom:442.125000px;}
.y18_c00429{bottom:458.563500px;}
.y17_c00429{bottom:507.879000px;}
.y16_c00429{bottom:524.317500px;}
.y15_c00429{bottom:540.756000px;}
.y14_c00429{bottom:557.194500px;}
.y13_c00429{bottom:573.633000px;}
.y12_c00429{bottom:590.071500px;}
.y11_c00429{bottom:606.508500px;}
.y10_c00429{bottom:622.947000px;}
.yf_c00429{bottom:639.385500px;}
.ye_c00429{bottom:655.824000px;}
.yd_c00429{bottom:672.262500px;}
.yc_c00429{bottom:688.701000px;}
.yb_c00429{bottom:705.139500px;}
.ya_c00429{bottom:721.578000px;}
.y9_c00429{bottom:738.016500px;}
.y8_c00429{bottom:754.455000px;}
.y7_c00429{bottom:787.330500px;}
.y6_c00429{bottom:803.769000px;}
.y5_c00429{bottom:853.084500px;}
.y4_c00429{bottom:869.523000px;}
.y3_c00429{bottom:885.588000px;}
.y2_c00429{bottom:1141.930500px;}
.y1_c00429{bottom:1159.863000px;}
.h3_c00429{height:35.190766px;}
.h4_c00429{height:36.007158px;}
.h2_c00429{height:52.332837px;}
.h0_c00429{height:1262.835000px;}
.h1_c00429{height:1263.000000px;}
.w0_c00429{width:892.920000px;}
.w1_c00429{width:893.250000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:127.558500px;}
.x2_c00429{left:137.122500px;}
.x3_c00429{left:143.770500px;}
.x4_c00429{left:177.007500px;}
.x5_c00429{left:435.249000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls4_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:0.078221pt;}
.ls2_c00429{letter-spacing:0.087539pt;}
.ls0_c00429{letter-spacing:0.092873pt;}
.ls3_c00429{letter-spacing:23.724873pt;}
.ws1_c00429{word-spacing:-29.967501pt;}
.ws4_c00429{word-spacing:-23.622682pt;}
.ws3_c00429{word-spacing:-23.544461pt;}
.ws0_c00429{word-spacing:-16.684034pt;}
.ws8_c00429{word-spacing:0.000000pt;}
.ws5_c00429{word-spacing:0.039110pt;}
.wsb_c00429{word-spacing:0.050460pt;}
.ws9_c00429{word-spacing:0.065111pt;}
.wsa_c00429{word-spacing:0.074430pt;}
.ws2_c00429{word-spacing:0.156442pt;}
.wsc_c00429{word-spacing:0.180412pt;}
.ws6_c00429{word-spacing:0.189730pt;}
.ws7_c00429{word-spacing:0.195063pt;}
._0_c00429{margin-left:-3.400567pt;}
._1_c00429{width:0.893988pt;}
._3_c00429{width:47.362694pt;}
._2_c00429{width:70.985376pt;}
._4_c00429{width:118.624363pt;}
.fs1_c00429{font-size:39.110400pt;}
.fs0_c00429{font-size:53.133867pt;}
.y0_c00429{bottom:0.000000pt;}
.y2d_c00429{bottom:39.333333pt;}
.y2c_c00429{bottom:86.150667pt;}
.y2b_c00429{bottom:100.762667pt;}
.y2a_c00429{bottom:115.374667pt;}
.y29_c00429{bottom:129.986667pt;}
.y28_c00429{bottom:144.598667pt;}
.y27_c00429{bottom:159.210667pt;}
.y26_c00429{bottom:173.822667pt;}
.y25_c00429{bottom:188.434667pt;}
.y24_c00429{bottom:203.046667pt;}
.y23_c00429{bottom:217.658667pt;}
.y22_c00429{bottom:232.270667pt;}
.y21_c00429{bottom:261.493333pt;}
.y20_c00429{bottom:276.105333pt;}
.y1f_c00429{bottom:290.717333pt;}
.y1e_c00429{bottom:319.941333pt;}
.y1d_c00429{bottom:334.553333pt;}
.y1c_c00429{bottom:349.165333pt;}
.y1b_c00429{bottom:363.777333pt;}
.y1a_c00429{bottom:378.389333pt;}
.y19_c00429{bottom:393.000000pt;}
.y18_c00429{bottom:407.612000pt;}
.y17_c00429{bottom:451.448000pt;}
.y16_c00429{bottom:466.060000pt;}
.y15_c00429{bottom:480.672000pt;}
.y14_c00429{bottom:495.284000pt;}
.y13_c00429{bottom:509.896000pt;}
.y12_c00429{bottom:524.508000pt;}
.y11_c00429{bottom:539.118667pt;}
.y10_c00429{bottom:553.730667pt;}
.yf_c00429{bottom:568.342667pt;}
.ye_c00429{bottom:582.954667pt;}
.yd_c00429{bottom:597.566667pt;}
.yc_c00429{bottom:612.178667pt;}
.yb_c00429{bottom:626.790667pt;}
.ya_c00429{bottom:641.402667pt;}
.y9_c00429{bottom:656.014667pt;}
.y8_c00429{bottom:670.626667pt;}
.y7_c00429{bottom:699.849333pt;}
.y6_c00429{bottom:714.461333pt;}
.y5_c00429{bottom:758.297333pt;}
.y4_c00429{bottom:772.909333pt;}
.y3_c00429{bottom:787.189333pt;}
.y2_c00429{bottom:1015.049333pt;}
.y1_c00429{bottom:1030.989333pt;}
.h3_c00429{height:31.280681pt;}
.h4_c00429{height:32.006363pt;}
.h2_c00429{height:46.518078pt;}
.h0_c00429{height:1122.520000pt;}
.h1_c00429{height:1122.666667pt;}
.w0_c00429{width:793.706667pt;}
.w1_c00429{width:794.000000pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:113.385333pt;}
.x2_c00429{left:121.886667pt;}
.x3_c00429{left:127.796000pt;}
.x4_c00429{left:157.340000pt;}
.x5_c00429{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c572a30d41bcd74baad48b05.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.893555;font-style:normal;font-weight:normal;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_359455ba6249238dbd3e8fe7.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.083496;font-style:normal;font-weight:normal;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_6431accfda65de6b9cad9e2a.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:1.048828;font-style: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;}
.ls3_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.087998px;}
.ls2_c00430{letter-spacing:0.098482px;}
.ls1_c00430{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00430{word-spacing:-33.713438px;}
.ws2_c00430{word-spacing:-26.575517px;}
.wse_c00430{word-spacing:-26.487518px;}
.ws9_c00430{word-spacing:-21.553319px;}
.ws8_c00430{word-spacing:-21.519216px;}
.ws5_c00430{word-spacing:-18.769538px;}
.ws7_c00430{word-spacing:-17.633802px;}
.ws4_c00430{word-spacing:-14.943900px;}
.wsa_c00430{word-spacing:-14.107042px;}
.wsb_c00430{word-spacing:-12.074671px;}
.ws1_c00430{word-spacing:-9.988424px;}
.ws3_c00430{word-spacing:-9.987499px;}
.ws6_c00430{word-spacing:-7.686144px;}
.ws12_c00430{word-spacing:0.000000px;}
.wsf_c00430{word-spacing:0.043999px;}
.ws15_c00430{word-spacing:0.056767px;}
.ws13_c00430{word-spacing:0.073250px;}
.ws14_c00430{word-spacing:0.083734px;}
.wsd_c00430{word-spacing:0.175997px;}
.ws16_c00430{word-spacing:0.202963px;}
.ws10_c00430{word-spacing:0.213446px;}
.ws11_c00430{word-spacing:0.219446px;}
.ws0_c00430{word-spacing:43.038600px;}
._2_c00430{margin-left:-2.933780px;}
._0_c00430{margin-left:-1.549390px;}
._4_c00430{width:1.005737px;}
._1_c00430{width:19.935816px;}
._3_c00430{width:40.109428px;}
._6_c00430{width:53.283031px;}
._5_c00430{width:79.858548px;}
._7_c00430{width:133.452408px;}
.fc6_c00430{color:rgb(0,0,207);}
.fc5_c00430{color:rgb(79,153,5);}
.fc3_c00430{color:rgb(33,74,135);}
.fc2_c00430{color:rgb(143,89,3);}
.fc4_c00430{color:rgb(207,92,0);}
.fc1_c00430{color:rgb(6,69,173);}
.fc0_c00430{color:rgb(0,0,0);}
.fs2_c00430{font-size:43.999200px;}
.fs1_c00430{font-size:59.775600px;}
.fs0_c00430{font-size:86.077200px;}
.y0_c00430{bottom:0.000000px;}
.y20_c00430{bottom:44.250000px;}
.y1f_c00430{bottom:86.982000px;}
.y1e_c00430{bottom:103.420500px;}
.y1d_c00430{bottom:119.859000px;}
.y1c_c00430{bottom:136.297500px;}
.y1b_c00430{bottom:152.736000px;}
.y1a_c00430{bottom:169.174500px;}
.y19_c00430{bottom:185.613000px;}
.y18_c00430{bottom:202.051500px;}
.y17_c00430{bottom:218.490000px;}
.y16_c00430{bottom:234.927000px;}
.y15_c00430{bottom:251.365500px;}
.y14_c00430{bottom:267.804000px;}
.y13_c00430{bottom:284.242500px;}
.y12_c00430{bottom:300.681000px;}
.y11_c00430{bottom:317.119500px;}
.y10_c00430{bottom:349.996500px;}
.yf_c00430{bottom:366.435000px;}
.ye_c00430{bottom:415.749000px;}
.yd_c00430{bottom:432.187500px;}
.yc_c00430{bottom:448.252500px;}
.yb_c00430{bottom:493.890000px;}
.ya_c00430{bottom:511.822500px;}
.y9_c00430{bottom:529.756500px;}
.y8_c00430{bottom:547.689000px;}
.y7_c00430{bottom:565.621500px;}
.y6_c00430{bottom:583.554000px;}
.y5_c00430{bottom:610.633500px;}
.y4_c00430{bottom:637.714500px;}
.y3_c00430{bottom:664.794000px;}
.y2_c00430{bottom:691.873500px;}
.y1_c00430{bottom:734.407500px;}
.h5_c00430{height:35.190766px;}
.h6_c00430{height:36.007158px;}
.h3_c00430{height:40.511979px;}
.h4_c00430{height:52.332837px;}
.h2_c00430{height:58.337477px;}
.h0_c00430{height:1262.835000px;}
.h1_c00430{height:1263.000000px;}
.w0_c00430{width:892.920000px;}
.w1_c00430{width:893.250000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:127.558500px;}
.x2_c00430{left:137.122500px;}
.x3_c00430{left:143.770500px;}
.x4_c00430{left:435.249000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls3_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.078221pt;}
.ls2_c00430{letter-spacing:0.087539pt;}
.ls1_c00430{letter-spacing:0.092873pt;}
.wsc_c00430{word-spacing:-29.967501pt;}
.ws2_c00430{word-spacing:-23.622682pt;}
.wse_c00430{word-spacing:-23.544461pt;}
.ws9_c00430{word-spacing:-19.158506pt;}
.ws8_c00430{word-spacing:-19.128192pt;}
.ws5_c00430{word-spacing:-16.684034pt;}
.ws7_c00430{word-spacing:-15.674491pt;}
.ws4_c00430{word-spacing:-13.283467pt;}
.wsa_c00430{word-spacing:-12.539593pt;}
.wsb_c00430{word-spacing:-10.733041pt;}
.ws1_c00430{word-spacing:-8.878599pt;}
.ws3_c00430{word-spacing:-8.877777pt;}
.ws6_c00430{word-spacing:-6.832128pt;}
.ws12_c00430{word-spacing:0.000000pt;}
.wsf_c00430{word-spacing:0.039110pt;}
.ws15_c00430{word-spacing:0.050460pt;}
.ws13_c00430{word-spacing:0.065111pt;}
.ws14_c00430{word-spacing:0.074430pt;}
.wsd_c00430{word-spacing:0.156442pt;}
.ws16_c00430{word-spacing:0.180412pt;}
.ws10_c00430{word-spacing:0.189730pt;}
.ws11_c00430{word-spacing:0.195063pt;}
.ws0_c00430{word-spacing:38.256533pt;}
._2_c00430{margin-left:-2.607805pt;}
._0_c00430{margin-left:-1.377235pt;}
._4_c00430{width:0.893988pt;}
._1_c00430{width:17.720725pt;}
._3_c00430{width:35.652825pt;}
._6_c00430{width:47.362694pt;}
._5_c00430{width:70.985376pt;}
._7_c00430{width:118.624363pt;}
.fs2_c00430{font-size:39.110400pt;}
.fs1_c00430{font-size:53.133867pt;}
.fs0_c00430{font-size:76.513067pt;}
.y0_c00430{bottom:0.000000pt;}
.y20_c00430{bottom:39.333333pt;}
.y1f_c00430{bottom:77.317333pt;}
.y1e_c00430{bottom:91.929333pt;}
.y1d_c00430{bottom:106.541333pt;}
.y1c_c00430{bottom:121.153333pt;}
.y1b_c00430{bottom:135.765333pt;}
.y1a_c00430{bottom:150.377333pt;}
.y19_c00430{bottom:164.989333pt;}
.y18_c00430{bottom:179.601333pt;}
.y17_c00430{bottom:194.213333pt;}
.y16_c00430{bottom:208.824000pt;}
.y15_c00430{bottom:223.436000pt;}
.y14_c00430{bottom:238.048000pt;}
.y13_c00430{bottom:252.660000pt;}
.y12_c00430{bottom:267.272000pt;}
.y11_c00430{bottom:281.884000pt;}
.y10_c00430{bottom:311.108000pt;}
.yf_c00430{bottom:325.720000pt;}
.ye_c00430{bottom:369.554667pt;}
.yd_c00430{bottom:384.166667pt;}
.yc_c00430{bottom:398.446667pt;}
.yb_c00430{bottom:439.013333pt;}
.ya_c00430{bottom:454.953333pt;}
.y9_c00430{bottom:470.894667pt;}
.y8_c00430{bottom:486.834667pt;}
.y7_c00430{bottom:502.774667pt;}
.y6_c00430{bottom:518.714667pt;}
.y5_c00430{bottom:542.785333pt;}
.y4_c00430{bottom:566.857333pt;}
.y3_c00430{bottom:590.928000pt;}
.y2_c00430{bottom:614.998667pt;}
.y1_c00430{bottom:652.806667pt;}
.h5_c00430{height:31.280681pt;}
.h6_c00430{height:32.006363pt;}
.h3_c00430{height:36.010648pt;}
.h4_c00430{height:46.518078pt;}
.h2_c00430{height:51.855535pt;}
.h0_c00430{height:1122.520000pt;}
.h1_c00430{height:1122.666667pt;}
.w0_c00430{width:793.706667pt;}
.w1_c00430{width:794.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:113.385333pt;}
.x2_c00430{left:121.886667pt;}
.x3_c00430{left:127.796000pt;}
.x4_c00430{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6aa547f22180c4ec7eb4af8.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_07474293437577d0fd336b00.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_08838b354cf26bab592fc17b.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_3031bb13dbe5013a695a78b3.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:1.102051;font-style: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;}
.ls4_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:0.087998px;}
.ls2_c00431{letter-spacing:0.098482px;}
.ls3_c00431{letter-spacing:0.104482px;}
.ls1_c00431{letter-spacing:26.690482px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00431{word-spacing:-26.575517px;}
.ws4_c00431{word-spacing:-26.487518px;}
.wse_c00431{word-spacing:-21.553319px;}
.wsd_c00431{word-spacing:-21.519216px;}
.wsc_c00431{word-spacing:-19.247743px;}
.wsa_c00431{word-spacing:-18.769538px;}
.ws9_c00431{word-spacing:-14.943900px;}
.wsf_c00431{word-spacing:-14.107042px;}
.ws10_c00431{word-spacing:-12.074671px;}
.wsb_c00431{word-spacing:-10.230144px;}
.ws7_c00431{word-spacing:-9.988424px;}
.ws8_c00431{word-spacing:-9.987499px;}
.ws3_c00431{word-spacing:0.000000px;}
.ws0_c00431{word-spacing:0.043999px;}
.ws5_c00431{word-spacing:0.213446px;}
.ws1_c00431{word-spacing:0.219446px;}
.ws6_c00431{word-spacing:43.038600px;}
._4_c00431{margin-left:-2.933780px;}
._2_c00431{margin-left:-1.549390px;}
._1_c00431{width:1.074173px;}
._3_c00431{width:19.935816px;}
._5_c00431{width:40.109428px;}
._0_c00431{width:80.210542px;}
.fc5_c00431{color:rgb(79,153,5);}
.fc4_c00431{color:rgb(143,89,3);}
.fc3_c00431{color:rgb(0,0,0);}
.fc6_c00431{color:rgb(6,69,173);}
.fc2_c00431{color:rgb(207,92,0);}
.fc1_c00431{color:rgb(0,0,207);}
.fc0_c00431{color:rgb(33,74,135);}
.fs0_c00431{font-size:43.999200px;}
.fs2_c00431{font-size:59.775600px;}
.fs1_c00431{font-size:86.077200px;}
.y0_c00431{bottom:0.000000px;}
.y20_c00431{bottom:44.250000px;}
.y1f_c00431{bottom:82.051500px;}
.y1e_c00431{bottom:99.984000px;}
.y1d_c00431{bottom:117.916500px;}
.y1c_c00431{bottom:135.849000px;}
.y1b_c00431{bottom:162.501000px;}
.y1a_c00431{bottom:189.151500px;}
.y19_c00431{bottom:215.802000px;}
.y18_c00431{bottom:242.454000px;}
.y17_c00431{bottom:284.478000px;}
.y16_c00431{bottom:748.903500px;}
.y15_c00431{bottom:765.342000px;}
.y14_c00431{bottom:781.780500px;}
.y13_c00431{bottom:798.219000px;}
.y12_c00431{bottom:814.657500px;}
.y11_c00431{bottom:831.096000px;}
.y10_c00431{bottom:847.534500px;}
.yf_c00431{bottom:863.973000px;}
.ye_c00431{bottom:880.411500px;}
.yd_c00431{bottom:896.848500px;}
.yc_c00431{bottom:913.287000px;}
.yb_c00431{bottom:946.164000px;}
.ya_c00431{bottom:962.602500px;}
.y9_c00431{bottom:979.041000px;}
.y8_c00431{bottom:1011.918000px;}
.y7_c00431{bottom:1028.356500px;}
.y6_c00431{bottom:1044.795000px;}
.y5_c00431{bottom:1061.232000px;}
.y4_c00431{bottom:1077.670500px;}
.y3_c00431{bottom:1094.109000px;}
.y2_c00431{bottom:1110.547500px;}
.y1_c00431{bottom:1159.863000px;}
.h3_c00431{height:35.190766px;}
.h2_c00431{height:36.007158px;}
.h5_c00431{height:40.511979px;}
.h6_c00431{height:52.332837px;}
.h4_c00431{height:58.337477px;}
.h0_c00431{height:1262.835000px;}
.h1_c00431{height:1263.000000px;}
.w0_c00431{width:892.920000px;}
.w1_c00431{width:893.250000px;}
.x0_c00431{left:0.000000px;}
.x4_c00431{left:127.558500px;}
.x2_c00431{left:137.122500px;}
.x1_c00431{left:143.770500px;}
.x3_c00431{left:177.007500px;}
.x5_c00431{left:435.249000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls4_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:0.078221pt;}
.ls2_c00431{letter-spacing:0.087539pt;}
.ls3_c00431{letter-spacing:0.092873pt;}
.ls1_c00431{letter-spacing:23.724873pt;}
.ws2_c00431{word-spacing:-23.622682pt;}
.ws4_c00431{word-spacing:-23.544461pt;}
.wse_c00431{word-spacing:-19.158506pt;}
.wsd_c00431{word-spacing:-19.128192pt;}
.wsc_c00431{word-spacing:-17.109105pt;}
.wsa_c00431{word-spacing:-16.684034pt;}
.ws9_c00431{word-spacing:-13.283467pt;}
.wsf_c00431{word-spacing:-12.539593pt;}
.ws10_c00431{word-spacing:-10.733041pt;}
.wsb_c00431{word-spacing:-9.093461pt;}
.ws7_c00431{word-spacing:-8.878599pt;}
.ws8_c00431{word-spacing:-8.877777pt;}
.ws3_c00431{word-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.039110pt;}
.ws5_c00431{word-spacing:0.189730pt;}
.ws1_c00431{word-spacing:0.195063pt;}
.ws6_c00431{word-spacing:38.256533pt;}
._4_c00431{margin-left:-2.607805pt;}
._2_c00431{margin-left:-1.377235pt;}
._1_c00431{width:0.954820pt;}
._3_c00431{width:17.720725pt;}
._5_c00431{width:35.652825pt;}
._0_c00431{width:71.298259pt;}
.fs0_c00431{font-size:39.110400pt;}
.fs2_c00431{font-size:53.133867pt;}
.fs1_c00431{font-size:76.513067pt;}
.y0_c00431{bottom:0.000000pt;}
.y20_c00431{bottom:39.333333pt;}
.y1f_c00431{bottom:72.934667pt;}
.y1e_c00431{bottom:88.874667pt;}
.y1d_c00431{bottom:104.814667pt;}
.y1c_c00431{bottom:120.754667pt;}
.y1b_c00431{bottom:144.445333pt;}
.y1a_c00431{bottom:168.134667pt;}
.y19_c00431{bottom:191.824000pt;}
.y18_c00431{bottom:215.514667pt;}
.y17_c00431{bottom:252.869333pt;}
.y16_c00431{bottom:665.692000pt;}
.y15_c00431{bottom:680.304000pt;}
.y14_c00431{bottom:694.916000pt;}
.y13_c00431{bottom:709.528000pt;}
.y12_c00431{bottom:724.140000pt;}
.y11_c00431{bottom:738.752000pt;}
.y10_c00431{bottom:753.364000pt;}
.yf_c00431{bottom:767.976000pt;}
.ye_c00431{bottom:782.588000pt;}
.yd_c00431{bottom:797.198667pt;}
.yc_c00431{bottom:811.810667pt;}
.yb_c00431{bottom:841.034667pt;}
.ya_c00431{bottom:855.646667pt;}
.y9_c00431{bottom:870.258667pt;}
.y8_c00431{bottom:899.482667pt;}
.y7_c00431{bottom:914.094667pt;}
.y6_c00431{bottom:928.706667pt;}
.y5_c00431{bottom:943.317333pt;}
.y4_c00431{bottom:957.929333pt;}
.y3_c00431{bottom:972.541333pt;}
.y2_c00431{bottom:987.153333pt;}
.y1_c00431{bottom:1030.989333pt;}
.h3_c00431{height:31.280681pt;}
.h2_c00431{height:32.006363pt;}
.h5_c00431{height:36.010648pt;}
.h6_c00431{height:46.518078pt;}
.h4_c00431{height:51.855535pt;}
.h0_c00431{height:1122.520000pt;}
.h1_c00431{height:1122.666667pt;}
.w0_c00431{width:793.706667pt;}
.w1_c00431{width:794.000000pt;}
.x0_c00431{left:0.000000pt;}
.x4_c00431{left:113.385333pt;}
.x2_c00431{left:121.886667pt;}
.x1_c00431{left:127.796000pt;}
.x3_c00431{left:157.340000pt;}
.x5_c00431{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3a0971c7f58d0088de6b4bb.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.102051;font-style:normal;font-weight:normal;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_7688ee311cde5c1f36f130df.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.048828;font-style:normal;font-weight:normal;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_9741f211b59356e38a290dbf.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls4_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:0.087998px;}
.ls2_c00432{letter-spacing:0.098482px;}
.ls0_c00432{letter-spacing:0.104482px;}
.ls3_c00432{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00432{word-spacing:-26.575517px;}
.ws3_c00432{word-spacing:-26.487518px;}
.ws0_c00432{word-spacing:-18.769538px;}
.ws8_c00432{word-spacing:0.000000px;}
.ws5_c00432{word-spacing:0.043999px;}
.wsb_c00432{word-spacing:0.056767px;}
.ws9_c00432{word-spacing:0.073250px;}
.wsa_c00432{word-spacing:0.083734px;}
.ws2_c00432{word-spacing:0.175997px;}
.wsc_c00432{word-spacing:0.202963px;}
.ws6_c00432{word-spacing:0.213446px;}
.ws7_c00432{word-spacing:0.219446px;}
._0_c00432{margin-left:-3.825638px;}
._1_c00432{width:1.005737px;}
._3_c00432{width:53.283031px;}
._2_c00432{width:79.858548px;}
._4_c00432{width:133.452408px;}
.fc5_c00432{color:rgb(0,0,207);}
.fc4_c00432{color:rgb(79,153,5);}
.fc3_c00432{color:rgb(207,92,0);}
.fc2_c00432{color:rgb(33,74,135);}
.fc1_c00432{color:rgb(143,89,3);}
.fc0_c00432{color:rgb(0,0,0);}
.fs1_c00432{font-size:43.999200px;}
.fs0_c00432{font-size:59.775600px;}
.y0_c00432{bottom:0.000000px;}
.y2d_c00432{bottom:44.250000px;}
.y2c_c00432{bottom:96.919500px;}
.y2b_c00432{bottom:113.358000px;}
.y2a_c00432{bottom:129.796500px;}
.y29_c00432{bottom:146.235000px;}
.y28_c00432{bottom:162.673500px;}
.y27_c00432{bottom:179.112000px;}
.y26_c00432{bottom:195.550500px;}
.y25_c00432{bottom:211.989000px;}
.y24_c00432{bottom:228.427500px;}
.y23_c00432{bottom:244.866000px;}
.y22_c00432{bottom:261.304500px;}
.y21_c00432{bottom:294.180000px;}
.y20_c00432{bottom:310.618500px;}
.y1f_c00432{bottom:327.057000px;}
.y1e_c00432{bottom:359.934000px;}
.y1d_c00432{bottom:376.372500px;}
.y1c_c00432{bottom:392.811000px;}
.y1b_c00432{bottom:409.249500px;}
.y1a_c00432{bottom:425.688000px;}
.y19_c00432{bottom:442.125000px;}
.y18_c00432{bottom:458.563500px;}
.y17_c00432{bottom:507.879000px;}
.y16_c00432{bottom:524.317500px;}
.y15_c00432{bottom:540.756000px;}
.y14_c00432{bottom:557.194500px;}
.y13_c00432{bottom:573.633000px;}
.y12_c00432{bottom:590.071500px;}
.y11_c00432{bottom:606.508500px;}
.y10_c00432{bottom:622.947000px;}
.yf_c00432{bottom:639.385500px;}
.ye_c00432{bottom:655.824000px;}
.yd_c00432{bottom:672.262500px;}
.yc_c00432{bottom:688.701000px;}
.yb_c00432{bottom:705.139500px;}
.ya_c00432{bottom:721.578000px;}
.y9_c00432{bottom:738.016500px;}
.y8_c00432{bottom:754.455000px;}
.y7_c00432{bottom:787.330500px;}
.y6_c00432{bottom:803.769000px;}
.y5_c00432{bottom:853.084500px;}
.y4_c00432{bottom:869.523000px;}
.y3_c00432{bottom:885.588000px;}
.y2_c00432{bottom:1141.930500px;}
.y1_c00432{bottom:1159.863000px;}
.h3_c00432{height:35.190766px;}
.h4_c00432{height:36.007158px;}
.h2_c00432{height:52.332837px;}
.h0_c00432{height:1262.835000px;}
.h1_c00432{height:1263.000000px;}
.w0_c00432{width:892.920000px;}
.w1_c00432{width:893.250000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:127.558500px;}
.x2_c00432{left:137.122500px;}
.x3_c00432{left:143.770500px;}
.x4_c00432{left:177.007500px;}
.x5_c00432{left:435.249000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls4_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:0.078221pt;}
.ls2_c00432{letter-spacing:0.087539pt;}
.ls0_c00432{letter-spacing:0.092873pt;}
.ls3_c00432{letter-spacing:23.724873pt;}
.ws1_c00432{word-spacing:-29.967501pt;}
.ws4_c00432{word-spacing:-23.622682pt;}
.ws3_c00432{word-spacing:-23.544461pt;}
.ws0_c00432{word-spacing:-16.684034pt;}
.ws8_c00432{word-spacing:0.000000pt;}
.ws5_c00432{word-spacing:0.039110pt;}
.wsb_c00432{word-spacing:0.050460pt;}
.ws9_c00432{word-spacing:0.065111pt;}
.wsa_c00432{word-spacing:0.074430pt;}
.ws2_c00432{word-spacing:0.156442pt;}
.wsc_c00432{word-spacing:0.180412pt;}
.ws6_c00432{word-spacing:0.189730pt;}
.ws7_c00432{word-spacing:0.195063pt;}
._0_c00432{margin-left:-3.400567pt;}
._1_c00432{width:0.893988pt;}
._3_c00432{width:47.362694pt;}
._2_c00432{width:70.985376pt;}
._4_c00432{width:118.624363pt;}
.fs1_c00432{font-size:39.110400pt;}
.fs0_c00432{font-size:53.133867pt;}
.y0_c00432{bottom:0.000000pt;}
.y2d_c00432{bottom:39.333333pt;}
.y2c_c00432{bottom:86.150667pt;}
.y2b_c00432{bottom:100.762667pt;}
.y2a_c00432{bottom:115.374667pt;}
.y29_c00432{bottom:129.986667pt;}
.y28_c00432{bottom:144.598667pt;}
.y27_c00432{bottom:159.210667pt;}
.y26_c00432{bottom:173.822667pt;}
.y25_c00432{bottom:188.434667pt;}
.y24_c00432{bottom:203.046667pt;}
.y23_c00432{bottom:217.658667pt;}
.y22_c00432{bottom:232.270667pt;}
.y21_c00432{bottom:261.493333pt;}
.y20_c00432{bottom:276.105333pt;}
.y1f_c00432{bottom:290.717333pt;}
.y1e_c00432{bottom:319.941333pt;}
.y1d_c00432{bottom:334.553333pt;}
.y1c_c00432{bottom:349.165333pt;}
.y1b_c00432{bottom:363.777333pt;}
.y1a_c00432{bottom:378.389333pt;}
.y19_c00432{bottom:393.000000pt;}
.y18_c00432{bottom:407.612000pt;}
.y17_c00432{bottom:451.448000pt;}
.y16_c00432{bottom:466.060000pt;}
.y15_c00432{bottom:480.672000pt;}
.y14_c00432{bottom:495.284000pt;}
.y13_c00432{bottom:509.896000pt;}
.y12_c00432{bottom:524.508000pt;}
.y11_c00432{bottom:539.118667pt;}
.y10_c00432{bottom:553.730667pt;}
.yf_c00432{bottom:568.342667pt;}
.ye_c00432{bottom:582.954667pt;}
.yd_c00432{bottom:597.566667pt;}
.yc_c00432{bottom:612.178667pt;}
.yb_c00432{bottom:626.790667pt;}
.ya_c00432{bottom:641.402667pt;}
.y9_c00432{bottom:656.014667pt;}
.y8_c00432{bottom:670.626667pt;}
.y7_c00432{bottom:699.849333pt;}
.y6_c00432{bottom:714.461333pt;}
.y5_c00432{bottom:758.297333pt;}
.y4_c00432{bottom:772.909333pt;}
.y3_c00432{bottom:787.189333pt;}
.y2_c00432{bottom:1015.049333pt;}
.y1_c00432{bottom:1030.989333pt;}
.h3_c00432{height:31.280681pt;}
.h4_c00432{height:32.006363pt;}
.h2_c00432{height:46.518078pt;}
.h0_c00432{height:1122.520000pt;}
.h1_c00432{height:1122.666667pt;}
.w0_c00432{width:793.706667pt;}
.w1_c00432{width:794.000000pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:113.385333pt;}
.x2_c00432{left:121.886667pt;}
.x3_c00432{left:127.796000pt;}
.x4_c00432{left:157.340000pt;}
.x5_c00432{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57d0c714ea5e52f110d9c14c.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.893555;font-style:normal;font-weight:normal;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_cb1819e78e8b5072a776bfca.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_aeeb2d70cfe3920311f4147f.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00433;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:1.048828;font-style: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;}
.ls3_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:0.087998px;}
.ls2_c00433{letter-spacing:0.098482px;}
.ls1_c00433{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00433{word-spacing:-26.575517px;}
.ws14_c00433{word-spacing:-26.487518px;}
.wsf_c00433{word-spacing:-22.236523px;}
.ws10_c00433{word-spacing:-21.578992px;}
.ws5_c00433{word-spacing:-18.769538px;}
.ws12_c00433{word-spacing:-18.410885px;}
.ws8_c00433{word-spacing:-16.348445px;}
.ws9_c00433{word-spacing:-16.318739px;}
.ws7_c00433{word-spacing:-16.258963px;}
.wsb_c00433{word-spacing:-16.199188px;}
.wsa_c00433{word-spacing:-16.139412px;}
.wse_c00433{word-spacing:-16.079636px;}
.wsd_c00433{word-spacing:-15.242778px;}
.wsc_c00433{word-spacing:-15.183002px;}
.ws4_c00433{word-spacing:-14.943900px;}
.ws11_c00433{word-spacing:-14.286368px;}
.ws1_c00433{word-spacing:-9.988424px;}
.ws3_c00433{word-spacing:-9.987499px;}
.ws6_c00433{word-spacing:-5.034144px;}
.ws18_c00433{word-spacing:0.000000px;}
.ws15_c00433{word-spacing:0.043999px;}
.ws13_c00433{word-spacing:0.175997px;}
.ws17_c00433{word-spacing:0.213446px;}
.ws16_c00433{word-spacing:0.219446px;}
.ws0_c00433{word-spacing:43.038600px;}
._3_c00433{margin-left:-3.287658px;}
._1_c00433{margin-left:-1.075961px;}
._7_c00433{width:1.005737px;}
._2_c00433{width:18.769538px;}
._0_c00433{width:19.935816px;}
._6_c00433{width:21.339889px;}
._4_c00433{width:30.425762px;}
._5_c00433{width:33.534112px;}
.fc5_c00433{color:rgb(79,153,5);}
.fc3_c00433{color:rgb(33,74,135);}
.fc2_c00433{color:rgb(143,89,3);}
.fc4_c00433{color:rgb(207,92,0);}
.fc1_c00433{color:rgb(6,69,173);}
.fc0_c00433{color:rgb(0,0,0);}
.fs2_c00433{font-size:43.999200px;}
.fs1_c00433{font-size:59.775600px;}
.fs0_c00433{font-size:86.077200px;}
.y0_c00433{bottom:0.000000px;}
.y20_c00433{bottom:44.250000px;}
.y1f_c00433{bottom:82.051500px;}
.y1e_c00433{bottom:98.490000px;}
.y1d_c00433{bottom:114.927000px;}
.y1c_c00433{bottom:147.804000px;}
.y1b_c00433{bottom:164.242500px;}
.y1a_c00433{bottom:197.119500px;}
.y19_c00433{bottom:213.558000px;}
.y18_c00433{bottom:229.996500px;}
.y17_c00433{bottom:246.435000px;}
.y16_c00433{bottom:279.310500px;}
.y15_c00433{bottom:295.749000px;}
.y14_c00433{bottom:312.187500px;}
.y13_c00433{bottom:328.626000px;}
.y12_c00433{bottom:345.064500px;}
.y11_c00433{bottom:361.503000px;}
.y10_c00433{bottom:377.941500px;}
.yf_c00433{bottom:394.380000px;}
.ye_c00433{bottom:410.445000px;}
.yd_c00433{bottom:458.862000px;}
.yc_c00433{bottom:476.794500px;}
.yb_c00433{bottom:494.727000px;}
.ya_c00433{bottom:512.659500px;}
.y9_c00433{bottom:530.593500px;}
.y8_c00433{bottom:548.526000px;}
.y7_c00433{bottom:566.458500px;}
.y6_c00433{bottom:584.391000px;}
.y5_c00433{bottom:611.374500px;}
.y4_c00433{bottom:638.358000px;}
.y3_c00433{bottom:665.341500px;}
.y2_c00433{bottom:692.325000px;}
.y1_c00433{bottom:734.719500px;}
.h5_c00433{height:35.190766px;}
.h6_c00433{height:36.007158px;}
.h3_c00433{height:40.511979px;}
.h4_c00433{height:52.332837px;}
.h2_c00433{height:58.337477px;}
.h0_c00433{height:1262.835000px;}
.h1_c00433{height:1263.000000px;}
.w0_c00433{width:892.920000px;}
.w1_c00433{width:893.250000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:127.558500px;}
.x2_c00433{left:137.122500px;}
.x3_c00433{left:435.249000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls3_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:0.078221pt;}
.ls2_c00433{letter-spacing:0.087539pt;}
.ls1_c00433{letter-spacing:0.092873pt;}
.ws2_c00433{word-spacing:-23.622682pt;}
.ws14_c00433{word-spacing:-23.544461pt;}
.wsf_c00433{word-spacing:-19.765798pt;}
.ws10_c00433{word-spacing:-19.181326pt;}
.ws5_c00433{word-spacing:-16.684034pt;}
.ws12_c00433{word-spacing:-16.365231pt;}
.ws8_c00433{word-spacing:-14.531951pt;}
.ws9_c00433{word-spacing:-14.505546pt;}
.ws7_c00433{word-spacing:-14.452412pt;}
.wsb_c00433{word-spacing:-14.399278pt;}
.wsa_c00433{word-spacing:-14.346144pt;}
.wse_c00433{word-spacing:-14.293010pt;}
.wsd_c00433{word-spacing:-13.549136pt;}
.wsc_c00433{word-spacing:-13.496002pt;}
.ws4_c00433{word-spacing:-13.283467pt;}
.ws11_c00433{word-spacing:-12.698994pt;}
.ws1_c00433{word-spacing:-8.878599pt;}
.ws3_c00433{word-spacing:-8.877777pt;}
.ws6_c00433{word-spacing:-4.474795pt;}
.ws18_c00433{word-spacing:0.000000pt;}
.ws15_c00433{word-spacing:0.039110pt;}
.ws13_c00433{word-spacing:0.156442pt;}
.ws17_c00433{word-spacing:0.189730pt;}
.ws16_c00433{word-spacing:0.195063pt;}
.ws0_c00433{word-spacing:38.256533pt;}
._3_c00433{margin-left:-2.922363pt;}
._1_c00433{margin-left:-0.956410pt;}
._7_c00433{width:0.893988pt;}
._2_c00433{width:16.684034pt;}
._0_c00433{width:17.720725pt;}
._6_c00433{width:18.968790pt;}
._4_c00433{width:27.045122pt;}
._5_c00433{width:29.808099pt;}
.fs2_c00433{font-size:39.110400pt;}
.fs1_c00433{font-size:53.133867pt;}
.fs0_c00433{font-size:76.513067pt;}
.y0_c00433{bottom:0.000000pt;}
.y20_c00433{bottom:39.333333pt;}
.y1f_c00433{bottom:72.934667pt;}
.y1e_c00433{bottom:87.546667pt;}
.y1d_c00433{bottom:102.157333pt;}
.y1c_c00433{bottom:131.381333pt;}
.y1b_c00433{bottom:145.993333pt;}
.y1a_c00433{bottom:175.217333pt;}
.y19_c00433{bottom:189.829333pt;}
.y18_c00433{bottom:204.441333pt;}
.y17_c00433{bottom:219.053333pt;}
.y16_c00433{bottom:248.276000pt;}
.y15_c00433{bottom:262.888000pt;}
.y14_c00433{bottom:277.500000pt;}
.y13_c00433{bottom:292.112000pt;}
.y12_c00433{bottom:306.724000pt;}
.y11_c00433{bottom:321.336000pt;}
.y10_c00433{bottom:335.948000pt;}
.yf_c00433{bottom:350.560000pt;}
.ye_c00433{bottom:364.840000pt;}
.yd_c00433{bottom:407.877333pt;}
.yc_c00433{bottom:423.817333pt;}
.yb_c00433{bottom:439.757333pt;}
.ya_c00433{bottom:455.697333pt;}
.y9_c00433{bottom:471.638667pt;}
.y8_c00433{bottom:487.578667pt;}
.y7_c00433{bottom:503.518667pt;}
.y6_c00433{bottom:519.458667pt;}
.y5_c00433{bottom:543.444000pt;}
.y4_c00433{bottom:567.429333pt;}
.y3_c00433{bottom:591.414667pt;}
.y2_c00433{bottom:615.400000pt;}
.y1_c00433{bottom:653.084000pt;}
.h5_c00433{height:31.280681pt;}
.h6_c00433{height:32.006363pt;}
.h3_c00433{height:36.010648pt;}
.h4_c00433{height:46.518078pt;}
.h2_c00433{height:51.855535pt;}
.h0_c00433{height:1122.520000pt;}
.h1_c00433{height:1122.666667pt;}
.w0_c00433{width:793.706667pt;}
.w1_c00433{width:794.000000pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:113.385333pt;}
.x2_c00433{left:121.886667pt;}
.x3_c00433{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a16f6a40428a15d491f85d91.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.014648;font-style:normal;font-weight:normal;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_3d2de227c422e46886b991f5.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.083496;font-style:normal;font-weight:normal;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_b30fa642be20079f802f15ca.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.048828;font-style:normal;font-weight:normal;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_e1b410de9652bbcb973757ec.woff2')format("woff");}.ff4_c00434{font-family:ff4_c00434;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls4_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:0.087998px;}
.ls2_c00434{letter-spacing:0.098482px;}
.ls1_c00434{letter-spacing:0.104482px;}
.ls3_c00434{letter-spacing:0.146482px;}
.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:-26.575517px;}
.ws2_c00434{word-spacing:-26.487518px;}
.ws5_c00434{word-spacing:0.000000px;}
.ws4_c00434{word-spacing:0.043999px;}
.ws3_c00434{word-spacing:0.053933px;}
.ws6_c00434{word-spacing:0.056767px;}
.ws0_c00434{word-spacing:0.175997px;}
.ws7_c00434{word-spacing:0.213446px;}
._0_c00434{width:1.077888px;}
._1_c00434{width:106.874057px;}
.fc5_c00434{color:rgb(0,0,207);}
.fc4_c00434{color:rgb(79,153,5);}
.fc3_c00434{color:rgb(33,74,135);}
.fc2_c00434{color:rgb(207,92,0);}
.fc1_c00434{color:rgb(0,0,0);}
.fc0_c00434{color:rgb(143,89,3);}
.fs0_c00434{font-size:43.999200px;}
.fs1_c00434{font-size:59.775600px;}
.y0_c00434{bottom:0.000000px;}
.y2d_c00434{bottom:44.250000px;}
.y2c_c00434{bottom:288.630000px;}
.y2b_c00434{bottom:305.068500px;}
.y2a_c00434{bottom:321.507000px;}
.y29_c00434{bottom:337.945500px;}
.y28_c00434{bottom:354.384000px;}
.y27_c00434{bottom:370.822500px;}
.y26_c00434{bottom:387.259500px;}
.y25_c00434{bottom:403.698000px;}
.y24_c00434{bottom:420.136500px;}
.y23_c00434{bottom:436.575000px;}
.y22_c00434{bottom:453.013500px;}
.y21_c00434{bottom:485.890500px;}
.y20_c00434{bottom:502.329000px;}
.y1f_c00434{bottom:518.767500px;}
.y1e_c00434{bottom:568.081500px;}
.y1d_c00434{bottom:584.520000px;}
.y1c_c00434{bottom:600.958500px;}
.y1b_c00434{bottom:617.397000px;}
.y1a_c00434{bottom:633.835500px;}
.y19_c00434{bottom:650.274000px;}
.y18_c00434{bottom:666.712500px;}
.y17_c00434{bottom:683.151000px;}
.y16_c00434{bottom:699.589500px;}
.y15_c00434{bottom:716.028000px;}
.y14_c00434{bottom:732.465000px;}
.y13_c00434{bottom:748.903500px;}
.y12_c00434{bottom:765.342000px;}
.y11_c00434{bottom:781.780500px;}
.y10_c00434{bottom:814.657500px;}
.yf_c00434{bottom:831.096000px;}
.ye_c00434{bottom:863.973000px;}
.yd_c00434{bottom:880.411500px;}
.yc_c00434{bottom:913.287000px;}
.yb_c00434{bottom:929.725500px;}
.ya_c00434{bottom:946.164000px;}
.y9_c00434{bottom:979.041000px;}
.y8_c00434{bottom:995.479500px;}
.y7_c00434{bottom:1044.795000px;}
.y6_c00434{bottom:1061.232000px;}
.y5_c00434{bottom:1094.109000px;}
.y4_c00434{bottom:1110.547500px;}
.y3_c00434{bottom:1126.986000px;}
.y2_c00434{bottom:1143.424500px;}
.y1_c00434{bottom:1159.863000px;}
.h2_c00434{height:35.190766px;}
.h3_c00434{height:36.007158px;}
.h4_c00434{height:52.332837px;}
.h0_c00434{height:1262.835000px;}
.h1_c00434{height:1263.000000px;}
.w0_c00434{width:892.920000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:137.122500px;}
.x2_c00434{left:143.770500px;}
.x4_c00434{left:177.007500px;}
.x3_c00434{left:230.185500px;}
.x5_c00434{left:435.249000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls4_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:0.078221pt;}
.ls2_c00434{letter-spacing:0.087539pt;}
.ls1_c00434{letter-spacing:0.092873pt;}
.ls3_c00434{letter-spacing:0.130206pt;}
.ws1_c00434{word-spacing:-23.622682pt;}
.ws2_c00434{word-spacing:-23.544461pt;}
.ws5_c00434{word-spacing:0.000000pt;}
.ws4_c00434{word-spacing:0.039110pt;}
.ws3_c00434{word-spacing:0.047940pt;}
.ws6_c00434{word-spacing:0.050460pt;}
.ws0_c00434{word-spacing:0.156442pt;}
.ws7_c00434{word-spacing:0.189730pt;}
._0_c00434{width:0.958123pt;}
._1_c00434{width:94.999162pt;}
.fs0_c00434{font-size:39.110400pt;}
.fs1_c00434{font-size:53.133867pt;}
.y0_c00434{bottom:0.000000pt;}
.y2d_c00434{bottom:39.333333pt;}
.y2c_c00434{bottom:256.560000pt;}
.y2b_c00434{bottom:271.172000pt;}
.y2a_c00434{bottom:285.784000pt;}
.y29_c00434{bottom:300.396000pt;}
.y28_c00434{bottom:315.008000pt;}
.y27_c00434{bottom:329.620000pt;}
.y26_c00434{bottom:344.230667pt;}
.y25_c00434{bottom:358.842667pt;}
.y24_c00434{bottom:373.454667pt;}
.y23_c00434{bottom:388.066667pt;}
.y22_c00434{bottom:402.678667pt;}
.y21_c00434{bottom:431.902667pt;}
.y20_c00434{bottom:446.514667pt;}
.y1f_c00434{bottom:461.126667pt;}
.y1e_c00434{bottom:504.961333pt;}
.y1d_c00434{bottom:519.573333pt;}
.y1c_c00434{bottom:534.185333pt;}
.y1b_c00434{bottom:548.797333pt;}
.y1a_c00434{bottom:563.409333pt;}
.y19_c00434{bottom:578.021333pt;}
.y18_c00434{bottom:592.633333pt;}
.y17_c00434{bottom:607.245333pt;}
.y16_c00434{bottom:621.857333pt;}
.y15_c00434{bottom:636.469333pt;}
.y14_c00434{bottom:651.080000pt;}
.y13_c00434{bottom:665.692000pt;}
.y12_c00434{bottom:680.304000pt;}
.y11_c00434{bottom:694.916000pt;}
.y10_c00434{bottom:724.140000pt;}
.yf_c00434{bottom:738.752000pt;}
.ye_c00434{bottom:767.976000pt;}
.yd_c00434{bottom:782.588000pt;}
.yc_c00434{bottom:811.810667pt;}
.yb_c00434{bottom:826.422667pt;}
.ya_c00434{bottom:841.034667pt;}
.y9_c00434{bottom:870.258667pt;}
.y8_c00434{bottom:884.870667pt;}
.y7_c00434{bottom:928.706667pt;}
.y6_c00434{bottom:943.317333pt;}
.y5_c00434{bottom:972.541333pt;}
.y4_c00434{bottom:987.153333pt;}
.y3_c00434{bottom:1001.765333pt;}
.y2_c00434{bottom:1016.377333pt;}
.y1_c00434{bottom:1030.989333pt;}
.h2_c00434{height:31.280681pt;}
.h3_c00434{height:32.006363pt;}
.h4_c00434{height:46.518078pt;}
.h0_c00434{height:1122.520000pt;}
.h1_c00434{height:1122.666667pt;}
.w0_c00434{width:793.706667pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:121.886667pt;}
.x2_c00434{left:127.796000pt;}
.x4_c00434{left:157.340000pt;}
.x3_c00434{left:204.609333pt;}
.x5_c00434{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbceb3c35b527ba65c946bbd.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:0.893555;font-style:normal;font-weight:normal;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_638e80ef5960a22dcff8b9a5.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.083496;font-style:normal;font-weight:normal;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_df5ab68e8f995e96a0d43e8a.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00435;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00435;src:url('chunks/assets/font_4ce092b7efd13c200ec798c3.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.000000;font-style: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;}
.ls3_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:0.087998px;}
.ls2_c00435{letter-spacing:0.098482px;}
.ls1_c00435{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00435{word-spacing:-33.713438px;}
.ws2_c00435{word-spacing:-26.575517px;}
.wse_c00435{word-spacing:-26.487518px;}
.ws9_c00435{word-spacing:-21.553319px;}
.ws8_c00435{word-spacing:-21.519216px;}
.ws5_c00435{word-spacing:-18.769538px;}
.ws7_c00435{word-spacing:-16.019861px;}
.ws4_c00435{word-spacing:-14.943900px;}
.wsa_c00435{word-spacing:-14.107042px;}
.wsb_c00435{word-spacing:-12.074671px;}
.ws1_c00435{word-spacing:-9.988424px;}
.ws3_c00435{word-spacing:-9.987499px;}
.ws6_c00435{word-spacing:-4.536144px;}
.ws12_c00435{word-spacing:0.000000px;}
.wsf_c00435{word-spacing:0.043999px;}
.ws15_c00435{word-spacing:0.056767px;}
.ws13_c00435{word-spacing:0.073250px;}
.ws17_c00435{word-spacing:0.083734px;}
.wsd_c00435{word-spacing:0.175997px;}
.ws16_c00435{word-spacing:0.202963px;}
.ws10_c00435{word-spacing:0.213446px;}
.ws11_c00435{word-spacing:0.219446px;}
.ws14_c00435{word-spacing:26.619516px;}
.ws0_c00435{word-spacing:43.038600px;}
._7_c00435{margin-left:-2211.000050px;}
._4_c00435{margin-left:-3.825638px;}
._2_c00435{margin-left:-2.347817px;}
._1_c00435{margin-left:-1.075961px;}
._5_c00435{width:1.005737px;}
._0_c00435{width:19.935816px;}
._3_c00435{width:40.109428px;}
._9_c00435{width:53.283031px;}
._6_c00435{width:79.858548px;}
._8_c00435{width:133.452408px;}
.fc6_c00435{color:rgb(0,0,207);}
.fc5_c00435{color:rgb(79,153,5);}
.fc3_c00435{color:rgb(33,74,135);}
.fc2_c00435{color:rgb(143,89,3);}
.fc4_c00435{color:rgb(207,92,0);}
.fc1_c00435{color:rgb(6,69,173);}
.fc0_c00435{color:rgb(0,0,0);}
.fs3_c00435{font-size:31.015800px;}
.fs2_c00435{font-size:43.999200px;}
.fs1_c00435{font-size:59.775600px;}
.fs0_c00435{font-size:86.077200px;}
.y0_c00435{bottom:0.000000px;}
.y20_c00435{bottom:44.250000px;}
.y1f_c00435{bottom:86.982000px;}
.y1e_c00435{bottom:103.420500px;}
.y1d_c00435{bottom:119.859000px;}
.y1c_c00435{bottom:136.297500px;}
.y1b_c00435{bottom:152.736000px;}
.y1a_c00435{bottom:169.174500px;}
.y19_c00435{bottom:185.613000px;}
.y18_c00435{bottom:201.678000px;}
.y17_c00435{bottom:218.115000px;}
.y16_c00435{bottom:234.553500px;}
.y15_c00435{bottom:250.992000px;}
.y14_c00435{bottom:267.430500px;}
.y13_c00435{bottom:283.869000px;}
.y12_c00435{bottom:300.307500px;}
.y11_c00435{bottom:316.746000px;}
.y10_c00435{bottom:349.623000px;}
.yf_c00435{bottom:366.061500px;}
.ye_c00435{bottom:415.375500px;}
.yd_c00435{bottom:431.814000px;}
.yc_c00435{bottom:447.879000px;}
.yb_c00435{bottom:493.600500px;}
.ya_c00435{bottom:511.533000px;}
.y9_c00435{bottom:529.465500px;}
.y8_c00435{bottom:547.398000px;}
.y7_c00435{bottom:565.330500px;}
.y6_c00435{bottom:583.264500px;}
.y5_c00435{bottom:610.377000px;}
.y4_c00435{bottom:637.491000px;}
.y3_c00435{bottom:664.603500px;}
.y2_c00435{bottom:691.717500px;}
.y1_c00435{bottom:734.299500px;}
.h6_c00435{height:35.190766px;}
.h7_c00435{height:36.007158px;}
.h3_c00435{height:40.511979px;}
.h4_c00435{height:52.332837px;}
.h5_c00435{height:52.338837px;}
.h2_c00435{height:58.337477px;}
.h0_c00435{height:1262.835000px;}
.h1_c00435{height:1263.000000px;}
.w0_c00435{width:892.920000px;}
.w1_c00435{width:893.250000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:127.558500px;}
.x2_c00435{left:137.122500px;}
.x3_c00435{left:143.770500px;}
.x4_c00435{left:170.359500px;}
.x5_c00435{left:435.249000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls3_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:0.078221pt;}
.ls2_c00435{letter-spacing:0.087539pt;}
.ls1_c00435{letter-spacing:0.092873pt;}
.wsc_c00435{word-spacing:-29.967501pt;}
.ws2_c00435{word-spacing:-23.622682pt;}
.wse_c00435{word-spacing:-23.544461pt;}
.ws9_c00435{word-spacing:-19.158506pt;}
.ws8_c00435{word-spacing:-19.128192pt;}
.ws5_c00435{word-spacing:-16.684034pt;}
.ws7_c00435{word-spacing:-14.239876pt;}
.ws4_c00435{word-spacing:-13.283467pt;}
.wsa_c00435{word-spacing:-12.539593pt;}
.wsb_c00435{word-spacing:-10.733041pt;}
.ws1_c00435{word-spacing:-8.878599pt;}
.ws3_c00435{word-spacing:-8.877777pt;}
.ws6_c00435{word-spacing:-4.032128pt;}
.ws12_c00435{word-spacing:0.000000pt;}
.wsf_c00435{word-spacing:0.039110pt;}
.ws15_c00435{word-spacing:0.050460pt;}
.ws13_c00435{word-spacing:0.065111pt;}
.ws17_c00435{word-spacing:0.074430pt;}
.wsd_c00435{word-spacing:0.156442pt;}
.ws16_c00435{word-spacing:0.180412pt;}
.ws10_c00435{word-spacing:0.189730pt;}
.ws11_c00435{word-spacing:0.195063pt;}
.ws14_c00435{word-spacing:23.661792pt;}
.ws0_c00435{word-spacing:38.256533pt;}
._7_c00435{margin-left:-1965.333378pt;}
._4_c00435{margin-left:-3.400567pt;}
._2_c00435{margin-left:-2.086948pt;}
._1_c00435{margin-left:-0.956410pt;}
._5_c00435{width:0.893988pt;}
._0_c00435{width:17.720725pt;}
._3_c00435{width:35.652825pt;}
._9_c00435{width:47.362694pt;}
._6_c00435{width:70.985376pt;}
._8_c00435{width:118.624363pt;}
.fs3_c00435{font-size:27.569600pt;}
.fs2_c00435{font-size:39.110400pt;}
.fs1_c00435{font-size:53.133867pt;}
.fs0_c00435{font-size:76.513067pt;}
.y0_c00435{bottom:0.000000pt;}
.y20_c00435{bottom:39.333333pt;}
.y1f_c00435{bottom:77.317333pt;}
.y1e_c00435{bottom:91.929333pt;}
.y1d_c00435{bottom:106.541333pt;}
.y1c_c00435{bottom:121.153333pt;}
.y1b_c00435{bottom:135.765333pt;}
.y1a_c00435{bottom:150.377333pt;}
.y19_c00435{bottom:164.989333pt;}
.y18_c00435{bottom:179.269333pt;}
.y17_c00435{bottom:193.880000pt;}
.y16_c00435{bottom:208.492000pt;}
.y15_c00435{bottom:223.104000pt;}
.y14_c00435{bottom:237.716000pt;}
.y13_c00435{bottom:252.328000pt;}
.y12_c00435{bottom:266.940000pt;}
.y11_c00435{bottom:281.552000pt;}
.y10_c00435{bottom:310.776000pt;}
.yf_c00435{bottom:325.388000pt;}
.ye_c00435{bottom:369.222667pt;}
.yd_c00435{bottom:383.834667pt;}
.yc_c00435{bottom:398.114667pt;}
.yb_c00435{bottom:438.756000pt;}
.ya_c00435{bottom:454.696000pt;}
.y9_c00435{bottom:470.636000pt;}
.y8_c00435{bottom:486.576000pt;}
.y7_c00435{bottom:502.516000pt;}
.y6_c00435{bottom:518.457333pt;}
.y5_c00435{bottom:542.557333pt;}
.y4_c00435{bottom:566.658667pt;}
.y3_c00435{bottom:590.758667pt;}
.y2_c00435{bottom:614.860000pt;}
.y1_c00435{bottom:652.710667pt;}
.h6_c00435{height:31.280681pt;}
.h7_c00435{height:32.006363pt;}
.h3_c00435{height:36.010648pt;}
.h4_c00435{height:46.518078pt;}
.h5_c00435{height:46.523411pt;}
.h2_c00435{height:51.855535pt;}
.h0_c00435{height:1122.520000pt;}
.h1_c00435{height:1122.666667pt;}
.w0_c00435{width:793.706667pt;}
.w1_c00435{width:794.000000pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:113.385333pt;}
.x2_c00435{left:121.886667pt;}
.x3_c00435{left:127.796000pt;}
.x4_c00435{left:151.430667pt;}
.x5_c00435{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04bb9565e45ab9a2e8cc8a26.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_16f5c515acdf6d9050bf837c.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00436;src:url('chunks/assets/font_fb700c7a16a8388827dd1cf6.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00436;src:url('chunks/assets/font_bc03e23193112e747a54a65f.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.102051;font-style: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;}
.ls4_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:0.087998px;}
.ls1_c00436{letter-spacing:0.098482px;}
.ls3_c00436{letter-spacing:0.104482px;}
.ls2_c00436{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00436{word-spacing:-26.575517px;}
.ws5_c00436{word-spacing:-26.487518px;}
.wsf_c00436{word-spacing:-21.553319px;}
.wse_c00436{word-spacing:-21.519216px;}
.wsb_c00436{word-spacing:-18.769538px;}
.wsd_c00436{word-spacing:-17.633802px;}
.wsa_c00436{word-spacing:-14.943900px;}
.ws10_c00436{word-spacing:-14.107042px;}
.ws8_c00436{word-spacing:-9.988424px;}
.ws9_c00436{word-spacing:-9.987499px;}
.wsc_c00436{word-spacing:-7.686144px;}
.ws4_c00436{word-spacing:0.000000px;}
.ws1_c00436{word-spacing:0.043999px;}
.ws0_c00436{word-spacing:0.073250px;}
.ws6_c00436{word-spacing:0.213446px;}
.ws2_c00436{word-spacing:0.219446px;}
.ws7_c00436{word-spacing:43.038600px;}
._5_c00436{margin-left:-2.347817px;}
._4_c00436{margin-left:-1.075961px;}
._2_c00436{width:1.171555px;}
._3_c00436{width:19.935816px;}
._0_c00436{width:79.858548px;}
._1_c00436{width:106.874057px;}
.fc5_c00436{color:rgb(79,153,5);}
.fc4_c00436{color:rgb(143,89,3);}
.fc6_c00436{color:rgb(6,69,173);}
.fc3_c00436{color:rgb(207,92,0);}
.fc2_c00436{color:rgb(0,0,0);}
.fc1_c00436{color:rgb(0,0,207);}
.fc0_c00436{color:rgb(33,74,135);}
.fs0_c00436{font-size:43.999200px;}
.fs2_c00436{font-size:59.775600px;}
.fs1_c00436{font-size:86.077200px;}
.y0_c00436{bottom:0.000000px;}
.y20_c00436{bottom:44.250000px;}
.y1f_c00436{bottom:82.051500px;}
.y1e_c00436{bottom:99.984000px;}
.y1d_c00436{bottom:117.916500px;}
.y1c_c00436{bottom:144.757500px;}
.y1b_c00436{bottom:171.597000px;}
.y1a_c00436{bottom:198.438000px;}
.y19_c00436{bottom:225.277500px;}
.y18_c00436{bottom:267.492000px;}
.y17_c00436{bottom:732.465000px;}
.y16_c00436{bottom:748.903500px;}
.y15_c00436{bottom:765.342000px;}
.y14_c00436{bottom:781.780500px;}
.y13_c00436{bottom:798.219000px;}
.y12_c00436{bottom:814.657500px;}
.y11_c00436{bottom:831.096000px;}
.y10_c00436{bottom:847.534500px;}
.yf_c00436{bottom:863.973000px;}
.ye_c00436{bottom:880.411500px;}
.yd_c00436{bottom:896.848500px;}
.yc_c00436{bottom:929.725500px;}
.yb_c00436{bottom:946.164000px;}
.ya_c00436{bottom:962.602500px;}
.y9_c00436{bottom:995.479500px;}
.y8_c00436{bottom:1011.918000px;}
.y7_c00436{bottom:1028.356500px;}
.y6_c00436{bottom:1044.795000px;}
.y5_c00436{bottom:1061.232000px;}
.y4_c00436{bottom:1077.670500px;}
.y3_c00436{bottom:1094.109000px;}
.y2_c00436{bottom:1143.424500px;}
.y1_c00436{bottom:1159.863000px;}
.h3_c00436{height:35.190766px;}
.h2_c00436{height:36.007158px;}
.h5_c00436{height:40.511979px;}
.h6_c00436{height:52.332837px;}
.h4_c00436{height:58.337477px;}
.h0_c00436{height:1262.835000px;}
.h1_c00436{height:1263.000000px;}
.w0_c00436{width:892.920000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
.x4_c00436{left:127.558500px;}
.x2_c00436{left:137.122500px;}
.x1_c00436{left:143.770500px;}
.x3_c00436{left:177.007500px;}
.x5_c00436{left:435.249000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls4_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:0.078221pt;}
.ls1_c00436{letter-spacing:0.087539pt;}
.ls3_c00436{letter-spacing:0.092873pt;}
.ls2_c00436{letter-spacing:23.724873pt;}
.ws3_c00436{word-spacing:-23.622682pt;}
.ws5_c00436{word-spacing:-23.544461pt;}
.wsf_c00436{word-spacing:-19.158506pt;}
.wse_c00436{word-spacing:-19.128192pt;}
.wsb_c00436{word-spacing:-16.684034pt;}
.wsd_c00436{word-spacing:-15.674491pt;}
.wsa_c00436{word-spacing:-13.283467pt;}
.ws10_c00436{word-spacing:-12.539593pt;}
.ws8_c00436{word-spacing:-8.878599pt;}
.ws9_c00436{word-spacing:-8.877777pt;}
.wsc_c00436{word-spacing:-6.832128pt;}
.ws4_c00436{word-spacing:0.000000pt;}
.ws1_c00436{word-spacing:0.039110pt;}
.ws0_c00436{word-spacing:0.065111pt;}
.ws6_c00436{word-spacing:0.189730pt;}
.ws2_c00436{word-spacing:0.195063pt;}
.ws7_c00436{word-spacing:38.256533pt;}
._5_c00436{margin-left:-2.086948pt;}
._4_c00436{margin-left:-0.956410pt;}
._2_c00436{width:1.041382pt;}
._3_c00436{width:17.720725pt;}
._0_c00436{width:70.985376pt;}
._1_c00436{width:94.999162pt;}
.fs0_c00436{font-size:39.110400pt;}
.fs2_c00436{font-size:53.133867pt;}
.fs1_c00436{font-size:76.513067pt;}
.y0_c00436{bottom:0.000000pt;}
.y20_c00436{bottom:39.333333pt;}
.y1f_c00436{bottom:72.934667pt;}
.y1e_c00436{bottom:88.874667pt;}
.y1d_c00436{bottom:104.814667pt;}
.y1c_c00436{bottom:128.673333pt;}
.y1b_c00436{bottom:152.530667pt;}
.y1a_c00436{bottom:176.389333pt;}
.y19_c00436{bottom:200.246667pt;}
.y18_c00436{bottom:237.770667pt;}
.y17_c00436{bottom:651.080000pt;}
.y16_c00436{bottom:665.692000pt;}
.y15_c00436{bottom:680.304000pt;}
.y14_c00436{bottom:694.916000pt;}
.y13_c00436{bottom:709.528000pt;}
.y12_c00436{bottom:724.140000pt;}
.y11_c00436{bottom:738.752000pt;}
.y10_c00436{bottom:753.364000pt;}
.yf_c00436{bottom:767.976000pt;}
.ye_c00436{bottom:782.588000pt;}
.yd_c00436{bottom:797.198667pt;}
.yc_c00436{bottom:826.422667pt;}
.yb_c00436{bottom:841.034667pt;}
.ya_c00436{bottom:855.646667pt;}
.y9_c00436{bottom:884.870667pt;}
.y8_c00436{bottom:899.482667pt;}
.y7_c00436{bottom:914.094667pt;}
.y6_c00436{bottom:928.706667pt;}
.y5_c00436{bottom:943.317333pt;}
.y4_c00436{bottom:957.929333pt;}
.y3_c00436{bottom:972.541333pt;}
.y2_c00436{bottom:1016.377333pt;}
.y1_c00436{bottom:1030.989333pt;}
.h3_c00436{height:31.280681pt;}
.h2_c00436{height:32.006363pt;}
.h5_c00436{height:36.010648pt;}
.h6_c00436{height:46.518078pt;}
.h4_c00436{height:51.855535pt;}
.h0_c00436{height:1122.520000pt;}
.h1_c00436{height:1122.666667pt;}
.w0_c00436{width:793.706667pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{left:0.000000pt;}
.x4_c00436{left:113.385333pt;}
.x2_c00436{left:121.886667pt;}
.x1_c00436{left:127.796000pt;}
.x3_c00436{left:157.340000pt;}
.x5_c00436{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49f5e364c28cbd86eea081f5.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.102051;font-style:normal;font-weight:normal;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_615aa77e7504b0f447415a56.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.048828;font-style:normal;font-weight:normal;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_8470ce1530f578e83c47bc71.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_19f105a1dfceb5d18487dab6.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls4_c00437{letter-spacing:0.000000px;}
.ls1_c00437{letter-spacing:0.087998px;}
.ls2_c00437{letter-spacing:0.098482px;}
.ls0_c00437{letter-spacing:0.104482px;}
.ls3_c00437{letter-spacing:26.690482px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00437{word-spacing:-33.713438px;}
.ws5_c00437{word-spacing:-26.575517px;}
.ws4_c00437{word-spacing:-26.487518px;}
.ws1_c00437{word-spacing:-18.769538px;}
.ws0_c00437{word-spacing:-12.074671px;}
.ws9_c00437{word-spacing:0.000000px;}
.ws6_c00437{word-spacing:0.043999px;}
.wsc_c00437{word-spacing:0.056767px;}
.wsa_c00437{word-spacing:0.073250px;}
.wse_c00437{word-spacing:0.083734px;}
.ws3_c00437{word-spacing:0.175997px;}
.wsd_c00437{word-spacing:0.202963px;}
.ws7_c00437{word-spacing:0.213446px;}
.ws8_c00437{word-spacing:0.219446px;}
.wsb_c00437{word-spacing:26.619516px;}
._4_c00437{margin-left:-2211.000050px;}
._1_c00437{margin-left:-3.825638px;}
._2_c00437{width:1.005737px;}
._0_c00437{width:40.109428px;}
._6_c00437{width:53.283031px;}
._3_c00437{width:79.858548px;}
._5_c00437{width:133.452408px;}
.fc5_c00437{color:rgb(0,0,207);}
.fc4_c00437{color:rgb(79,153,5);}
.fc3_c00437{color:rgb(207,92,0);}
.fc2_c00437{color:rgb(33,74,135);}
.fc1_c00437{color:rgb(143,89,3);}
.fc0_c00437{color:rgb(0,0,0);}
.fs2_c00437{font-size:31.015800px;}
.fs1_c00437{font-size:43.999200px;}
.fs0_c00437{font-size:59.775600px;}
.y0_c00437{bottom:0.000000px;}
.y2f_c00437{bottom:44.250000px;}
.y2e_c00437{bottom:96.919500px;}
.y2d_c00437{bottom:113.358000px;}
.y2c_c00437{bottom:129.796500px;}
.y2b_c00437{bottom:146.235000px;}
.y2a_c00437{bottom:162.673500px;}
.y29_c00437{bottom:179.112000px;}
.y28_c00437{bottom:195.550500px;}
.y27_c00437{bottom:211.989000px;}
.y26_c00437{bottom:228.427500px;}
.y25_c00437{bottom:244.866000px;}
.y24_c00437{bottom:261.304500px;}
.y23_c00437{bottom:294.180000px;}
.y22_c00437{bottom:310.618500px;}
.y21_c00437{bottom:327.057000px;}
.y20_c00437{bottom:359.934000px;}
.y1f_c00437{bottom:376.372500px;}
.y1e_c00437{bottom:392.811000px;}
.y1d_c00437{bottom:409.249500px;}
.y1c_c00437{bottom:425.688000px;}
.y1b_c00437{bottom:442.125000px;}
.y1a_c00437{bottom:458.563500px;}
.y19_c00437{bottom:507.879000px;}
.y18_c00437{bottom:524.317500px;}
.y17_c00437{bottom:540.756000px;}
.y16_c00437{bottom:557.194500px;}
.y15_c00437{bottom:573.633000px;}
.y14_c00437{bottom:590.071500px;}
.y13_c00437{bottom:606.508500px;}
.y12_c00437{bottom:622.947000px;}
.y11_c00437{bottom:639.385500px;}
.y10_c00437{bottom:655.450500px;}
.yf_c00437{bottom:671.889000px;}
.ye_c00437{bottom:688.327500px;}
.yd_c00437{bottom:704.766000px;}
.yc_c00437{bottom:721.204500px;}
.yb_c00437{bottom:737.643000px;}
.ya_c00437{bottom:754.081500px;}
.y9_c00437{bottom:770.518500px;}
.y8_c00437{bottom:803.395500px;}
.y7_c00437{bottom:819.834000px;}
.y6_c00437{bottom:869.149500px;}
.y5_c00437{bottom:885.588000px;}
.y4_c00437{bottom:901.653000px;}
.y3_c00437{bottom:1123.998000px;}
.y2_c00437{bottom:1141.930500px;}
.y1_c00437{bottom:1159.863000px;}
.h3_c00437{height:35.190766px;}
.h4_c00437{height:36.007158px;}
.h2_c00437{height:52.332837px;}
.h0_c00437{height:1262.835000px;}
.h1_c00437{height:1263.000000px;}
.w0_c00437{width:892.920000px;}
.w1_c00437{width:893.250000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:127.558500px;}
.x2_c00437{left:137.122500px;}
.x3_c00437{left:143.770500px;}
.x4_c00437{left:170.359500px;}
.x5_c00437{left:177.007500px;}
.x6_c00437{left:435.249000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls4_c00437{letter-spacing:0.000000pt;}
.ls1_c00437{letter-spacing:0.078221pt;}
.ls2_c00437{letter-spacing:0.087539pt;}
.ls0_c00437{letter-spacing:0.092873pt;}
.ls3_c00437{letter-spacing:23.724873pt;}
.ws2_c00437{word-spacing:-29.967501pt;}
.ws5_c00437{word-spacing:-23.622682pt;}
.ws4_c00437{word-spacing:-23.544461pt;}
.ws1_c00437{word-spacing:-16.684034pt;}
.ws0_c00437{word-spacing:-10.733041pt;}
.ws9_c00437{word-spacing:0.000000pt;}
.ws6_c00437{word-spacing:0.039110pt;}
.wsc_c00437{word-spacing:0.050460pt;}
.wsa_c00437{word-spacing:0.065111pt;}
.wse_c00437{word-spacing:0.074430pt;}
.ws3_c00437{word-spacing:0.156442pt;}
.wsd_c00437{word-spacing:0.180412pt;}
.ws7_c00437{word-spacing:0.189730pt;}
.ws8_c00437{word-spacing:0.195063pt;}
.wsb_c00437{word-spacing:23.661792pt;}
._4_c00437{margin-left:-1965.333378pt;}
._1_c00437{margin-left:-3.400567pt;}
._2_c00437{width:0.893988pt;}
._0_c00437{width:35.652825pt;}
._6_c00437{width:47.362694pt;}
._3_c00437{width:70.985376pt;}
._5_c00437{width:118.624363pt;}
.fs2_c00437{font-size:27.569600pt;}
.fs1_c00437{font-size:39.110400pt;}
.fs0_c00437{font-size:53.133867pt;}
.y0_c00437{bottom:0.000000pt;}
.y2f_c00437{bottom:39.333333pt;}
.y2e_c00437{bottom:86.150667pt;}
.y2d_c00437{bottom:100.762667pt;}
.y2c_c00437{bottom:115.374667pt;}
.y2b_c00437{bottom:129.986667pt;}
.y2a_c00437{bottom:144.598667pt;}
.y29_c00437{bottom:159.210667pt;}
.y28_c00437{bottom:173.822667pt;}
.y27_c00437{bottom:188.434667pt;}
.y26_c00437{bottom:203.046667pt;}
.y25_c00437{bottom:217.658667pt;}
.y24_c00437{bottom:232.270667pt;}
.y23_c00437{bottom:261.493333pt;}
.y22_c00437{bottom:276.105333pt;}
.y21_c00437{bottom:290.717333pt;}
.y20_c00437{bottom:319.941333pt;}
.y1f_c00437{bottom:334.553333pt;}
.y1e_c00437{bottom:349.165333pt;}
.y1d_c00437{bottom:363.777333pt;}
.y1c_c00437{bottom:378.389333pt;}
.y1b_c00437{bottom:393.000000pt;}
.y1a_c00437{bottom:407.612000pt;}
.y19_c00437{bottom:451.448000pt;}
.y18_c00437{bottom:466.060000pt;}
.y17_c00437{bottom:480.672000pt;}
.y16_c00437{bottom:495.284000pt;}
.y15_c00437{bottom:509.896000pt;}
.y14_c00437{bottom:524.508000pt;}
.y13_c00437{bottom:539.118667pt;}
.y12_c00437{bottom:553.730667pt;}
.y11_c00437{bottom:568.342667pt;}
.y10_c00437{bottom:582.622667pt;}
.yf_c00437{bottom:597.234667pt;}
.ye_c00437{bottom:611.846667pt;}
.yd_c00437{bottom:626.458667pt;}
.yc_c00437{bottom:641.070667pt;}
.yb_c00437{bottom:655.682667pt;}
.ya_c00437{bottom:670.294667pt;}
.y9_c00437{bottom:684.905333pt;}
.y8_c00437{bottom:714.129333pt;}
.y7_c00437{bottom:728.741333pt;}
.y6_c00437{bottom:772.577333pt;}
.y5_c00437{bottom:787.189333pt;}
.y4_c00437{bottom:801.469333pt;}
.y3_c00437{bottom:999.109333pt;}
.y2_c00437{bottom:1015.049333pt;}
.y1_c00437{bottom:1030.989333pt;}
.h3_c00437{height:31.280681pt;}
.h4_c00437{height:32.006363pt;}
.h2_c00437{height:46.518078pt;}
.h0_c00437{height:1122.520000pt;}
.h1_c00437{height:1122.666667pt;}
.w0_c00437{width:793.706667pt;}
.w1_c00437{width:794.000000pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:113.385333pt;}
.x2_c00437{left:121.886667pt;}
.x3_c00437{left:127.796000pt;}
.x4_c00437{left:151.430667pt;}
.x5_c00437{left:157.340000pt;}
.x6_c00437{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abb48ae2062c015b565e4718.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.893555;font-style:normal;font-weight:normal;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_9f7ac5eb3fcf92e8728367a6.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_870f322b107f39187634b68a.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00438;src:url('chunks/assets/font_b3e56451a39f7ba90b82fe0f.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:1.000000;font-style: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;}
.ls3_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.087998px;}
.ls2_c00438{letter-spacing:0.098482px;}
.ls1_c00438{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00438{word-spacing:-33.713438px;}
.ws2_c00438{word-spacing:-26.575517px;}
.wse_c00438{word-spacing:-26.487518px;}
.ws9_c00438{word-spacing:-21.553319px;}
.ws8_c00438{word-spacing:-21.519216px;}
.ws5_c00438{word-spacing:-18.769538px;}
.ws7_c00438{word-spacing:-17.633802px;}
.ws4_c00438{word-spacing:-14.943900px;}
.wsa_c00438{word-spacing:-14.107042px;}
.wsb_c00438{word-spacing:-12.074671px;}
.ws1_c00438{word-spacing:-9.988424px;}
.ws3_c00438{word-spacing:-9.987499px;}
.ws6_c00438{word-spacing:-7.686144px;}
.ws12_c00438{word-spacing:0.000000px;}
.wsf_c00438{word-spacing:0.043999px;}
.ws15_c00438{word-spacing:0.056767px;}
.ws13_c00438{word-spacing:0.073250px;}
.ws17_c00438{word-spacing:0.083734px;}
.wsd_c00438{word-spacing:0.175997px;}
.ws16_c00438{word-spacing:0.202963px;}
.ws10_c00438{word-spacing:0.213446px;}
.ws11_c00438{word-spacing:0.219446px;}
.ws14_c00438{word-spacing:26.619516px;}
.ws0_c00438{word-spacing:43.038600px;}
._7_c00438{margin-left:-2211.000050px;}
._4_c00438{margin-left:-3.825638px;}
._2_c00438{margin-left:-2.347817px;}
._1_c00438{margin-left:-1.075961px;}
._5_c00438{width:1.005737px;}
._0_c00438{width:19.935816px;}
._3_c00438{width:40.109428px;}
._9_c00438{width:53.283031px;}
._6_c00438{width:79.858548px;}
._8_c00438{width:133.452408px;}
.fc6_c00438{color:rgb(0,0,207);}
.fc5_c00438{color:rgb(79,153,5);}
.fc3_c00438{color:rgb(33,74,135);}
.fc2_c00438{color:rgb(143,89,3);}
.fc4_c00438{color:rgb(207,92,0);}
.fc1_c00438{color:rgb(6,69,173);}
.fc0_c00438{color:rgb(0,0,0);}
.fs3_c00438{font-size:31.015800px;}
.fs2_c00438{font-size:43.999200px;}
.fs1_c00438{font-size:59.775600px;}
.fs0_c00438{font-size:86.077200px;}
.y0_c00438{bottom:0.000000px;}
.y20_c00438{bottom:44.250000px;}
.y1f_c00438{bottom:86.982000px;}
.y1e_c00438{bottom:103.420500px;}
.y1d_c00438{bottom:119.859000px;}
.y1c_c00438{bottom:136.297500px;}
.y1b_c00438{bottom:152.736000px;}
.y1a_c00438{bottom:169.174500px;}
.y19_c00438{bottom:185.613000px;}
.y18_c00438{bottom:201.678000px;}
.y17_c00438{bottom:218.115000px;}
.y16_c00438{bottom:234.553500px;}
.y15_c00438{bottom:250.992000px;}
.y14_c00438{bottom:267.430500px;}
.y13_c00438{bottom:283.869000px;}
.y12_c00438{bottom:300.307500px;}
.y11_c00438{bottom:316.746000px;}
.y10_c00438{bottom:349.623000px;}
.yf_c00438{bottom:366.061500px;}
.ye_c00438{bottom:415.375500px;}
.yd_c00438{bottom:431.814000px;}
.yc_c00438{bottom:447.879000px;}
.yb_c00438{bottom:493.600500px;}
.ya_c00438{bottom:511.533000px;}
.y9_c00438{bottom:529.465500px;}
.y8_c00438{bottom:547.398000px;}
.y7_c00438{bottom:565.330500px;}
.y6_c00438{bottom:583.264500px;}
.y5_c00438{bottom:610.377000px;}
.y4_c00438{bottom:637.491000px;}
.y3_c00438{bottom:664.603500px;}
.y2_c00438{bottom:691.717500px;}
.y1_c00438{bottom:734.299500px;}
.h6_c00438{height:35.190766px;}
.h7_c00438{height:36.007158px;}
.h3_c00438{height:40.511979px;}
.h4_c00438{height:52.332837px;}
.h5_c00438{height:52.338837px;}
.h2_c00438{height:58.337477px;}
.h0_c00438{height:1262.835000px;}
.h1_c00438{height:1263.000000px;}
.w0_c00438{width:892.920000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:127.558500px;}
.x2_c00438{left:137.122500px;}
.x3_c00438{left:143.770500px;}
.x4_c00438{left:170.359500px;}
.x5_c00438{left:435.249000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls3_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.078221pt;}
.ls2_c00438{letter-spacing:0.087539pt;}
.ls1_c00438{letter-spacing:0.092873pt;}
.wsc_c00438{word-spacing:-29.967501pt;}
.ws2_c00438{word-spacing:-23.622682pt;}
.wse_c00438{word-spacing:-23.544461pt;}
.ws9_c00438{word-spacing:-19.158506pt;}
.ws8_c00438{word-spacing:-19.128192pt;}
.ws5_c00438{word-spacing:-16.684034pt;}
.ws7_c00438{word-spacing:-15.674491pt;}
.ws4_c00438{word-spacing:-13.283467pt;}
.wsa_c00438{word-spacing:-12.539593pt;}
.wsb_c00438{word-spacing:-10.733041pt;}
.ws1_c00438{word-spacing:-8.878599pt;}
.ws3_c00438{word-spacing:-8.877777pt;}
.ws6_c00438{word-spacing:-6.832128pt;}
.ws12_c00438{word-spacing:0.000000pt;}
.wsf_c00438{word-spacing:0.039110pt;}
.ws15_c00438{word-spacing:0.050460pt;}
.ws13_c00438{word-spacing:0.065111pt;}
.ws17_c00438{word-spacing:0.074430pt;}
.wsd_c00438{word-spacing:0.156442pt;}
.ws16_c00438{word-spacing:0.180412pt;}
.ws10_c00438{word-spacing:0.189730pt;}
.ws11_c00438{word-spacing:0.195063pt;}
.ws14_c00438{word-spacing:23.661792pt;}
.ws0_c00438{word-spacing:38.256533pt;}
._7_c00438{margin-left:-1965.333378pt;}
._4_c00438{margin-left:-3.400567pt;}
._2_c00438{margin-left:-2.086948pt;}
._1_c00438{margin-left:-0.956410pt;}
._5_c00438{width:0.893988pt;}
._0_c00438{width:17.720725pt;}
._3_c00438{width:35.652825pt;}
._9_c00438{width:47.362694pt;}
._6_c00438{width:70.985376pt;}
._8_c00438{width:118.624363pt;}
.fs3_c00438{font-size:27.569600pt;}
.fs2_c00438{font-size:39.110400pt;}
.fs1_c00438{font-size:53.133867pt;}
.fs0_c00438{font-size:76.513067pt;}
.y0_c00438{bottom:0.000000pt;}
.y20_c00438{bottom:39.333333pt;}
.y1f_c00438{bottom:77.317333pt;}
.y1e_c00438{bottom:91.929333pt;}
.y1d_c00438{bottom:106.541333pt;}
.y1c_c00438{bottom:121.153333pt;}
.y1b_c00438{bottom:135.765333pt;}
.y1a_c00438{bottom:150.377333pt;}
.y19_c00438{bottom:164.989333pt;}
.y18_c00438{bottom:179.269333pt;}
.y17_c00438{bottom:193.880000pt;}
.y16_c00438{bottom:208.492000pt;}
.y15_c00438{bottom:223.104000pt;}
.y14_c00438{bottom:237.716000pt;}
.y13_c00438{bottom:252.328000pt;}
.y12_c00438{bottom:266.940000pt;}
.y11_c00438{bottom:281.552000pt;}
.y10_c00438{bottom:310.776000pt;}
.yf_c00438{bottom:325.388000pt;}
.ye_c00438{bottom:369.222667pt;}
.yd_c00438{bottom:383.834667pt;}
.yc_c00438{bottom:398.114667pt;}
.yb_c00438{bottom:438.756000pt;}
.ya_c00438{bottom:454.696000pt;}
.y9_c00438{bottom:470.636000pt;}
.y8_c00438{bottom:486.576000pt;}
.y7_c00438{bottom:502.516000pt;}
.y6_c00438{bottom:518.457333pt;}
.y5_c00438{bottom:542.557333pt;}
.y4_c00438{bottom:566.658667pt;}
.y3_c00438{bottom:590.758667pt;}
.y2_c00438{bottom:614.860000pt;}
.y1_c00438{bottom:652.710667pt;}
.h6_c00438{height:31.280681pt;}
.h7_c00438{height:32.006363pt;}
.h3_c00438{height:36.010648pt;}
.h4_c00438{height:46.518078pt;}
.h5_c00438{height:46.523411pt;}
.h2_c00438{height:51.855535pt;}
.h0_c00438{height:1122.520000pt;}
.h1_c00438{height:1122.666667pt;}
.w0_c00438{width:793.706667pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:113.385333pt;}
.x2_c00438{left:121.886667pt;}
.x3_c00438{left:127.796000pt;}
.x4_c00438{left:151.430667pt;}
.x5_c00438{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58c490fde8db9e627cf703b6.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.048828;font-style:normal;font-weight:normal;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_cbd49b56c483131ec05a1950.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.014648;font-style:normal;font-weight:normal;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_a29ebb17834227435604ae47.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:0.893555;font-style:normal;font-weight:normal;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_a8fe255c74e02eac96560bc5.woff2')format("woff");}.ff5_c00439{font-family:ff5_c00439;line-height:1.102051;font-style: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;}
.ls4_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:0.087998px;}
.ls1_c00439{letter-spacing:0.098482px;}
.ls3_c00439{letter-spacing:0.104482px;}
.ls2_c00439{letter-spacing:26.690482px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00439{word-spacing:-26.575517px;}
.ws5_c00439{word-spacing:-26.487518px;}
.wsf_c00439{word-spacing:-21.553319px;}
.wse_c00439{word-spacing:-21.519216px;}
.wsd_c00439{word-spacing:-19.247743px;}
.wsb_c00439{word-spacing:-18.769538px;}
.wsa_c00439{word-spacing:-14.943900px;}
.ws10_c00439{word-spacing:-14.107042px;}
.wsc_c00439{word-spacing:-10.230144px;}
.ws8_c00439{word-spacing:-9.988424px;}
.ws9_c00439{word-spacing:-9.987499px;}
.ws4_c00439{word-spacing:0.000000px;}
.ws1_c00439{word-spacing:0.043999px;}
.ws0_c00439{word-spacing:0.073250px;}
.ws6_c00439{word-spacing:0.213446px;}
.ws2_c00439{word-spacing:0.219446px;}
.ws7_c00439{word-spacing:43.038600px;}
._4_c00439{margin-left:-2.347817px;}
._3_c00439{margin-left:-1.075961px;}
._1_c00439{width:1.182038px;}
._2_c00439{width:19.935816px;}
._0_c00439{width:79.858548px;}
.fc5_c00439{color:rgb(79,153,5);}
.fc4_c00439{color:rgb(143,89,3);}
.fc6_c00439{color:rgb(6,69,173);}
.fc3_c00439{color:rgb(207,92,0);}
.fc2_c00439{color:rgb(0,0,0);}
.fc1_c00439{color:rgb(0,0,207);}
.fc0_c00439{color:rgb(33,74,135);}
.fs0_c00439{font-size:43.999200px;}
.fs2_c00439{font-size:59.775600px;}
.fs1_c00439{font-size:86.077200px;}
.y0_c00439{bottom:0.000000px;}
.y20_c00439{bottom:44.250000px;}
.y1f_c00439{bottom:82.051500px;}
.y1e_c00439{bottom:99.984000px;}
.y1d_c00439{bottom:117.916500px;}
.y1c_c00439{bottom:144.757500px;}
.y1b_c00439{bottom:171.597000px;}
.y1a_c00439{bottom:198.438000px;}
.y19_c00439{bottom:225.277500px;}
.y18_c00439{bottom:267.492000px;}
.y17_c00439{bottom:732.465000px;}
.y16_c00439{bottom:748.903500px;}
.y15_c00439{bottom:765.342000px;}
.y14_c00439{bottom:781.780500px;}
.y13_c00439{bottom:798.219000px;}
.y12_c00439{bottom:814.657500px;}
.y11_c00439{bottom:831.096000px;}
.y10_c00439{bottom:847.534500px;}
.yf_c00439{bottom:863.973000px;}
.ye_c00439{bottom:880.411500px;}
.yd_c00439{bottom:896.848500px;}
.yc_c00439{bottom:929.725500px;}
.yb_c00439{bottom:946.164000px;}
.ya_c00439{bottom:962.602500px;}
.y9_c00439{bottom:995.479500px;}
.y8_c00439{bottom:1011.918000px;}
.y7_c00439{bottom:1028.356500px;}
.y6_c00439{bottom:1044.795000px;}
.y5_c00439{bottom:1061.232000px;}
.y4_c00439{bottom:1077.670500px;}
.y3_c00439{bottom:1094.109000px;}
.y2_c00439{bottom:1143.424500px;}
.y1_c00439{bottom:1159.863000px;}
.h3_c00439{height:35.190766px;}
.h2_c00439{height:36.007158px;}
.h5_c00439{height:40.511979px;}
.h6_c00439{height:52.332837px;}
.h4_c00439{height:58.337477px;}
.h0_c00439{height:1262.835000px;}
.h1_c00439{height:1263.000000px;}
.w0_c00439{width:892.920000px;}
.w1_c00439{width:893.250000px;}
.x0_c00439{left:0.000000px;}
.x4_c00439{left:127.558500px;}
.x2_c00439{left:137.122500px;}
.x1_c00439{left:143.770500px;}
.x3_c00439{left:177.007500px;}
.x5_c00439{left:435.249000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls4_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:0.078221pt;}
.ls1_c00439{letter-spacing:0.087539pt;}
.ls3_c00439{letter-spacing:0.092873pt;}
.ls2_c00439{letter-spacing:23.724873pt;}
.ws3_c00439{word-spacing:-23.622682pt;}
.ws5_c00439{word-spacing:-23.544461pt;}
.wsf_c00439{word-spacing:-19.158506pt;}
.wse_c00439{word-spacing:-19.128192pt;}
.wsd_c00439{word-spacing:-17.109105pt;}
.wsb_c00439{word-spacing:-16.684034pt;}
.wsa_c00439{word-spacing:-13.283467pt;}
.ws10_c00439{word-spacing:-12.539593pt;}
.wsc_c00439{word-spacing:-9.093461pt;}
.ws8_c00439{word-spacing:-8.878599pt;}
.ws9_c00439{word-spacing:-8.877777pt;}
.ws4_c00439{word-spacing:0.000000pt;}
.ws1_c00439{word-spacing:0.039110pt;}
.ws0_c00439{word-spacing:0.065111pt;}
.ws6_c00439{word-spacing:0.189730pt;}
.ws2_c00439{word-spacing:0.195063pt;}
.ws7_c00439{word-spacing:38.256533pt;}
._4_c00439{margin-left:-2.086948pt;}
._3_c00439{margin-left:-0.956410pt;}
._1_c00439{width:1.050701pt;}
._2_c00439{width:17.720725pt;}
._0_c00439{width:70.985376pt;}
.fs0_c00439{font-size:39.110400pt;}
.fs2_c00439{font-size:53.133867pt;}
.fs1_c00439{font-size:76.513067pt;}
.y0_c00439{bottom:0.000000pt;}
.y20_c00439{bottom:39.333333pt;}
.y1f_c00439{bottom:72.934667pt;}
.y1e_c00439{bottom:88.874667pt;}
.y1d_c00439{bottom:104.814667pt;}
.y1c_c00439{bottom:128.673333pt;}
.y1b_c00439{bottom:152.530667pt;}
.y1a_c00439{bottom:176.389333pt;}
.y19_c00439{bottom:200.246667pt;}
.y18_c00439{bottom:237.770667pt;}
.y17_c00439{bottom:651.080000pt;}
.y16_c00439{bottom:665.692000pt;}
.y15_c00439{bottom:680.304000pt;}
.y14_c00439{bottom:694.916000pt;}
.y13_c00439{bottom:709.528000pt;}
.y12_c00439{bottom:724.140000pt;}
.y11_c00439{bottom:738.752000pt;}
.y10_c00439{bottom:753.364000pt;}
.yf_c00439{bottom:767.976000pt;}
.ye_c00439{bottom:782.588000pt;}
.yd_c00439{bottom:797.198667pt;}
.yc_c00439{bottom:826.422667pt;}
.yb_c00439{bottom:841.034667pt;}
.ya_c00439{bottom:855.646667pt;}
.y9_c00439{bottom:884.870667pt;}
.y8_c00439{bottom:899.482667pt;}
.y7_c00439{bottom:914.094667pt;}
.y6_c00439{bottom:928.706667pt;}
.y5_c00439{bottom:943.317333pt;}
.y4_c00439{bottom:957.929333pt;}
.y3_c00439{bottom:972.541333pt;}
.y2_c00439{bottom:1016.377333pt;}
.y1_c00439{bottom:1030.989333pt;}
.h3_c00439{height:31.280681pt;}
.h2_c00439{height:32.006363pt;}
.h5_c00439{height:36.010648pt;}
.h6_c00439{height:46.518078pt;}
.h4_c00439{height:51.855535pt;}
.h0_c00439{height:1122.520000pt;}
.h1_c00439{height:1122.666667pt;}
.w0_c00439{width:793.706667pt;}
.w1_c00439{width:794.000000pt;}
.x0_c00439{left:0.000000pt;}
.x4_c00439{left:113.385333pt;}
.x2_c00439{left:121.886667pt;}
.x1_c00439{left:127.796000pt;}
.x3_c00439{left:157.340000pt;}
.x5_c00439{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f05fd83c028de86f20670c7b.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.102051;font-style:normal;font-weight:normal;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_a9b2891fbf763653118161db.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.048828;font-style:normal;font-weight:normal;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_d83167c1fac2e2b202c28610.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_2bf01c10c9f58b0bf585b050.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls1_c00440{letter-spacing:0.087998px;}
.ls2_c00440{letter-spacing:0.098482px;}
.ls0_c00440{letter-spacing:0.104482px;}
.ls3_c00440{letter-spacing:26.690482px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00440{word-spacing:-33.713438px;}
.ws5_c00440{word-spacing:-26.575517px;}
.ws4_c00440{word-spacing:-26.487518px;}
.ws1_c00440{word-spacing:-18.769538px;}
.ws0_c00440{word-spacing:-12.074671px;}
.ws9_c00440{word-spacing:0.000000px;}
.ws6_c00440{word-spacing:0.043999px;}
.wsc_c00440{word-spacing:0.056767px;}
.wsa_c00440{word-spacing:0.073250px;}
.wse_c00440{word-spacing:0.083734px;}
.ws3_c00440{word-spacing:0.175997px;}
.wsd_c00440{word-spacing:0.202963px;}
.ws7_c00440{word-spacing:0.213446px;}
.ws8_c00440{word-spacing:0.219446px;}
.wsb_c00440{word-spacing:26.619516px;}
._4_c00440{margin-left:-2211.000050px;}
._1_c00440{margin-left:-3.825638px;}
._2_c00440{width:1.005737px;}
._0_c00440{width:40.109428px;}
._6_c00440{width:53.283031px;}
._3_c00440{width:79.858548px;}
._5_c00440{width:133.452408px;}
.fc5_c00440{color:rgb(0,0,207);}
.fc4_c00440{color:rgb(79,153,5);}
.fc3_c00440{color:rgb(207,92,0);}
.fc2_c00440{color:rgb(33,74,135);}
.fc1_c00440{color:rgb(143,89,3);}
.fc0_c00440{color:rgb(0,0,0);}
.fs2_c00440{font-size:31.015800px;}
.fs1_c00440{font-size:43.999200px;}
.fs0_c00440{font-size:59.775600px;}
.y0_c00440{bottom:0.000000px;}
.y2f_c00440{bottom:44.250000px;}
.y2e_c00440{bottom:96.919500px;}
.y2d_c00440{bottom:113.358000px;}
.y2c_c00440{bottom:129.796500px;}
.y2b_c00440{bottom:146.235000px;}
.y2a_c00440{bottom:162.673500px;}
.y29_c00440{bottom:179.112000px;}
.y28_c00440{bottom:195.550500px;}
.y27_c00440{bottom:211.989000px;}
.y26_c00440{bottom:228.427500px;}
.y25_c00440{bottom:244.866000px;}
.y24_c00440{bottom:261.304500px;}
.y23_c00440{bottom:294.180000px;}
.y22_c00440{bottom:310.618500px;}
.y21_c00440{bottom:327.057000px;}
.y20_c00440{bottom:359.934000px;}
.y1f_c00440{bottom:376.372500px;}
.y1e_c00440{bottom:392.811000px;}
.y1d_c00440{bottom:409.249500px;}
.y1c_c00440{bottom:425.688000px;}
.y1b_c00440{bottom:442.125000px;}
.y1a_c00440{bottom:458.563500px;}
.y19_c00440{bottom:507.879000px;}
.y18_c00440{bottom:524.317500px;}
.y17_c00440{bottom:540.756000px;}
.y16_c00440{bottom:557.194500px;}
.y15_c00440{bottom:573.633000px;}
.y14_c00440{bottom:590.071500px;}
.y13_c00440{bottom:606.508500px;}
.y12_c00440{bottom:622.947000px;}
.y11_c00440{bottom:639.385500px;}
.y10_c00440{bottom:655.450500px;}
.yf_c00440{bottom:671.889000px;}
.ye_c00440{bottom:688.327500px;}
.yd_c00440{bottom:704.766000px;}
.yc_c00440{bottom:721.204500px;}
.yb_c00440{bottom:737.643000px;}
.ya_c00440{bottom:754.081500px;}
.y9_c00440{bottom:770.518500px;}
.y8_c00440{bottom:803.395500px;}
.y7_c00440{bottom:819.834000px;}
.y6_c00440{bottom:869.149500px;}
.y5_c00440{bottom:885.588000px;}
.y4_c00440{bottom:901.653000px;}
.y3_c00440{bottom:1123.998000px;}
.y2_c00440{bottom:1141.930500px;}
.y1_c00440{bottom:1159.863000px;}
.h3_c00440{height:35.190766px;}
.h4_c00440{height:36.007158px;}
.h2_c00440{height:52.332837px;}
.h0_c00440{height:1262.835000px;}
.h1_c00440{height:1263.000000px;}
.w0_c00440{width:892.920000px;}
.w1_c00440{width:893.250000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:127.558500px;}
.x2_c00440{left:137.122500px;}
.x3_c00440{left:143.770500px;}
.x4_c00440{left:170.359500px;}
.x5_c00440{left:177.007500px;}
.x6_c00440{left:435.249000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls1_c00440{letter-spacing:0.078221pt;}
.ls2_c00440{letter-spacing:0.087539pt;}
.ls0_c00440{letter-spacing:0.092873pt;}
.ls3_c00440{letter-spacing:23.724873pt;}
.ws2_c00440{word-spacing:-29.967501pt;}
.ws5_c00440{word-spacing:-23.622682pt;}
.ws4_c00440{word-spacing:-23.544461pt;}
.ws1_c00440{word-spacing:-16.684034pt;}
.ws0_c00440{word-spacing:-10.733041pt;}
.ws9_c00440{word-spacing:0.000000pt;}
.ws6_c00440{word-spacing:0.039110pt;}
.wsc_c00440{word-spacing:0.050460pt;}
.wsa_c00440{word-spacing:0.065111pt;}
.wse_c00440{word-spacing:0.074430pt;}
.ws3_c00440{word-spacing:0.156442pt;}
.wsd_c00440{word-spacing:0.180412pt;}
.ws7_c00440{word-spacing:0.189730pt;}
.ws8_c00440{word-spacing:0.195063pt;}
.wsb_c00440{word-spacing:23.661792pt;}
._4_c00440{margin-left:-1965.333378pt;}
._1_c00440{margin-left:-3.400567pt;}
._2_c00440{width:0.893988pt;}
._0_c00440{width:35.652825pt;}
._6_c00440{width:47.362694pt;}
._3_c00440{width:70.985376pt;}
._5_c00440{width:118.624363pt;}
.fs2_c00440{font-size:27.569600pt;}
.fs1_c00440{font-size:39.110400pt;}
.fs0_c00440{font-size:53.133867pt;}
.y0_c00440{bottom:0.000000pt;}
.y2f_c00440{bottom:39.333333pt;}
.y2e_c00440{bottom:86.150667pt;}
.y2d_c00440{bottom:100.762667pt;}
.y2c_c00440{bottom:115.374667pt;}
.y2b_c00440{bottom:129.986667pt;}
.y2a_c00440{bottom:144.598667pt;}
.y29_c00440{bottom:159.210667pt;}
.y28_c00440{bottom:173.822667pt;}
.y27_c00440{bottom:188.434667pt;}
.y26_c00440{bottom:203.046667pt;}
.y25_c00440{bottom:217.658667pt;}
.y24_c00440{bottom:232.270667pt;}
.y23_c00440{bottom:261.493333pt;}
.y22_c00440{bottom:276.105333pt;}
.y21_c00440{bottom:290.717333pt;}
.y20_c00440{bottom:319.941333pt;}
.y1f_c00440{bottom:334.553333pt;}
.y1e_c00440{bottom:349.165333pt;}
.y1d_c00440{bottom:363.777333pt;}
.y1c_c00440{bottom:378.389333pt;}
.y1b_c00440{bottom:393.000000pt;}
.y1a_c00440{bottom:407.612000pt;}
.y19_c00440{bottom:451.448000pt;}
.y18_c00440{bottom:466.060000pt;}
.y17_c00440{bottom:480.672000pt;}
.y16_c00440{bottom:495.284000pt;}
.y15_c00440{bottom:509.896000pt;}
.y14_c00440{bottom:524.508000pt;}
.y13_c00440{bottom:539.118667pt;}
.y12_c00440{bottom:553.730667pt;}
.y11_c00440{bottom:568.342667pt;}
.y10_c00440{bottom:582.622667pt;}
.yf_c00440{bottom:597.234667pt;}
.ye_c00440{bottom:611.846667pt;}
.yd_c00440{bottom:626.458667pt;}
.yc_c00440{bottom:641.070667pt;}
.yb_c00440{bottom:655.682667pt;}
.ya_c00440{bottom:670.294667pt;}
.y9_c00440{bottom:684.905333pt;}
.y8_c00440{bottom:714.129333pt;}
.y7_c00440{bottom:728.741333pt;}
.y6_c00440{bottom:772.577333pt;}
.y5_c00440{bottom:787.189333pt;}
.y4_c00440{bottom:801.469333pt;}
.y3_c00440{bottom:999.109333pt;}
.y2_c00440{bottom:1015.049333pt;}
.y1_c00440{bottom:1030.989333pt;}
.h3_c00440{height:31.280681pt;}
.h4_c00440{height:32.006363pt;}
.h2_c00440{height:46.518078pt;}
.h0_c00440{height:1122.520000pt;}
.h1_c00440{height:1122.666667pt;}
.w0_c00440{width:793.706667pt;}
.w1_c00440{width:794.000000pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:113.385333pt;}
.x2_c00440{left:121.886667pt;}
.x3_c00440{left:127.796000pt;}
.x4_c00440{left:151.430667pt;}
.x5_c00440{left:157.340000pt;}
.x6_c00440{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d2c8d794f39a4b87913e8cf.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.893555;font-style:normal;font-weight:normal;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_fb158c0282036445a51dec62.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_e9e5a22b19726d31c427e27d.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_5b7d70b59dcff13fe0ea4885.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00441;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:1.048828;font-style: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;}
.ls3_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:0.087998px;}
.ls2_c00441{letter-spacing:0.098482px;}
.ls1_c00441{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00441{word-spacing:-26.575517px;}
.wsf_c00441{word-spacing:-26.487518px;}
.wsd_c00441{word-spacing:-20.503031px;}
.wsc_c00441{word-spacing:-20.084602px;}
.ws5_c00441{word-spacing:-18.769538px;}
.ws8_c00441{word-spacing:-16.125547px;}
.ws9_c00441{word-spacing:-16.079636px;}
.ws7_c00441{word-spacing:-16.019861px;}
.ws4_c00441{word-spacing:-14.943900px;}
.wsa_c00441{word-spacing:-14.704798px;}
.wsb_c00441{word-spacing:-11.297588px;}
.ws1_c00441{word-spacing:-9.988424px;}
.ws3_c00441{word-spacing:-9.987499px;}
.ws6_c00441{word-spacing:-4.572144px;}
.ws13_c00441{word-spacing:0.000000px;}
.ws10_c00441{word-spacing:0.043999px;}
.wse_c00441{word-spacing:0.175997px;}
.ws12_c00441{word-spacing:0.213446px;}
.ws11_c00441{word-spacing:0.219446px;}
.ws0_c00441{word-spacing:43.038600px;}
._5_c00441{margin-left:-4.394160px;}
._6_c00441{margin-left:-3.287658px;}
._1_c00441{margin-left:-1.075961px;}
._7_c00441{width:1.005737px;}
._0_c00441{width:19.935816px;}
._3_c00441{width:24.517591px;}
._2_c00441{width:32.248283px;}
._4_c00441{width:42.321125px;}
.fc5_c00441{color:rgb(79,153,5);}
.fc3_c00441{color:rgb(33,74,135);}
.fc2_c00441{color:rgb(143,89,3);}
.fc4_c00441{color:rgb(207,92,0);}
.fc1_c00441{color:rgb(6,69,173);}
.fc0_c00441{color:rgb(0,0,0);}
.fs2_c00441{font-size:43.999200px;}
.fs1_c00441{font-size:59.775600px;}
.fs0_c00441{font-size:86.077200px;}
.y0_c00441{bottom:0.000000px;}
.y20_c00441{bottom:44.250000px;}
.y1f_c00441{bottom:86.982000px;}
.y1e_c00441{bottom:103.420500px;}
.y1d_c00441{bottom:119.859000px;}
.y1c_c00441{bottom:136.297500px;}
.y1b_c00441{bottom:152.736000px;}
.y1a_c00441{bottom:185.613000px;}
.y19_c00441{bottom:202.051500px;}
.y18_c00441{bottom:234.927000px;}
.y17_c00441{bottom:251.365500px;}
.y16_c00441{bottom:267.804000px;}
.y15_c00441{bottom:284.242500px;}
.y14_c00441{bottom:317.119500px;}
.y13_c00441{bottom:333.558000px;}
.y12_c00441{bottom:349.996500px;}
.y11_c00441{bottom:366.435000px;}
.y10_c00441{bottom:382.873500px;}
.yf_c00441{bottom:399.310500px;}
.ye_c00441{bottom:415.749000px;}
.yd_c00441{bottom:432.187500px;}
.yc_c00441{bottom:448.252500px;}
.yb_c00441{bottom:495.979500px;}
.ya_c00441{bottom:513.912000px;}
.y9_c00441{bottom:531.844500px;}
.y8_c00441{bottom:549.777000px;}
.y7_c00441{bottom:567.709500px;}
.y6_c00441{bottom:585.642000px;}
.y5_c00441{bottom:612.466500px;}
.y4_c00441{bottom:639.291000px;}
.y3_c00441{bottom:666.114000px;}
.y2_c00441{bottom:692.938500px;}
.y1_c00441{bottom:735.135000px;}
.h5_c00441{height:35.190766px;}
.h6_c00441{height:36.007158px;}
.h3_c00441{height:40.511979px;}
.h4_c00441{height:52.332837px;}
.h2_c00441{height:58.337477px;}
.h0_c00441{height:1262.835000px;}
.h1_c00441{height:1263.000000px;}
.w0_c00441{width:892.920000px;}
.w1_c00441{width:893.250000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:127.558500px;}
.x2_c00441{left:137.122500px;}
.x3_c00441{left:435.249000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls3_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:0.078221pt;}
.ls2_c00441{letter-spacing:0.087539pt;}
.ls1_c00441{letter-spacing:0.092873pt;}
.ws2_c00441{word-spacing:-23.622682pt;}
.wsf_c00441{word-spacing:-23.544461pt;}
.wsd_c00441{word-spacing:-18.224916pt;}
.wsc_c00441{word-spacing:-17.852979pt;}
.ws5_c00441{word-spacing:-16.684034pt;}
.ws8_c00441{word-spacing:-14.333820pt;}
.ws9_c00441{word-spacing:-14.293010pt;}
.ws7_c00441{word-spacing:-14.239876pt;}
.ws4_c00441{word-spacing:-13.283467pt;}
.wsa_c00441{word-spacing:-13.070931pt;}
.wsb_c00441{word-spacing:-10.042301pt;}
.ws1_c00441{word-spacing:-8.878599pt;}
.ws3_c00441{word-spacing:-8.877777pt;}
.ws6_c00441{word-spacing:-4.064128pt;}
.ws13_c00441{word-spacing:0.000000pt;}
.ws10_c00441{word-spacing:0.039110pt;}
.wse_c00441{word-spacing:0.156442pt;}
.ws12_c00441{word-spacing:0.189730pt;}
.ws11_c00441{word-spacing:0.195063pt;}
.ws0_c00441{word-spacing:38.256533pt;}
._5_c00441{margin-left:-3.905920pt;}
._6_c00441{margin-left:-2.922363pt;}
._1_c00441{margin-left:-0.956410pt;}
._7_c00441{width:0.893988pt;}
._0_c00441{width:17.720725pt;}
._3_c00441{width:21.793414pt;}
._2_c00441{width:28.665140pt;}
._4_c00441{width:37.618778pt;}
.fs2_c00441{font-size:39.110400pt;}
.fs1_c00441{font-size:53.133867pt;}
.fs0_c00441{font-size:76.513067pt;}
.y0_c00441{bottom:0.000000pt;}
.y20_c00441{bottom:39.333333pt;}
.y1f_c00441{bottom:77.317333pt;}
.y1e_c00441{bottom:91.929333pt;}
.y1d_c00441{bottom:106.541333pt;}
.y1c_c00441{bottom:121.153333pt;}
.y1b_c00441{bottom:135.765333pt;}
.y1a_c00441{bottom:164.989333pt;}
.y19_c00441{bottom:179.601333pt;}
.y18_c00441{bottom:208.824000pt;}
.y17_c00441{bottom:223.436000pt;}
.y16_c00441{bottom:238.048000pt;}
.y15_c00441{bottom:252.660000pt;}
.y14_c00441{bottom:281.884000pt;}
.y13_c00441{bottom:296.496000pt;}
.y12_c00441{bottom:311.108000pt;}
.y11_c00441{bottom:325.720000pt;}
.y10_c00441{bottom:340.332000pt;}
.yf_c00441{bottom:354.942667pt;}
.ye_c00441{bottom:369.554667pt;}
.yd_c00441{bottom:384.166667pt;}
.yc_c00441{bottom:398.446667pt;}
.yb_c00441{bottom:440.870667pt;}
.ya_c00441{bottom:456.810667pt;}
.y9_c00441{bottom:472.750667pt;}
.y8_c00441{bottom:488.690667pt;}
.y7_c00441{bottom:504.630667pt;}
.y6_c00441{bottom:520.570667pt;}
.y5_c00441{bottom:544.414667pt;}
.y4_c00441{bottom:568.258667pt;}
.y3_c00441{bottom:592.101333pt;}
.y2_c00441{bottom:615.945333pt;}
.y1_c00441{bottom:653.453333pt;}
.h5_c00441{height:31.280681pt;}
.h6_c00441{height:32.006363pt;}
.h3_c00441{height:36.010648pt;}
.h4_c00441{height:46.518078pt;}
.h2_c00441{height:51.855535pt;}
.h0_c00441{height:1122.520000pt;}
.h1_c00441{height:1122.666667pt;}
.w0_c00441{width:793.706667pt;}
.w1_c00441{width:794.000000pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:113.385333pt;}
.x2_c00441{left:121.886667pt;}
.x3_c00441{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8afc13dbb0dbab2913ce9f83.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.083496;font-style:normal;font-weight:normal;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_f08176d7ca58ac60fccef116.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.048828;font-style:normal;font-weight:normal;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_d0483ea3ef934e985d6946fd.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.014648;font-style:normal;font-weight:normal;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_94d66c38b926609b0d2dd4a9.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:0.087998px;}
.ls2_c00442{letter-spacing:0.098482px;}
.ls1_c00442{letter-spacing:0.104482px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:-26.575517px;}
.ws2_c00442{word-spacing:-26.487518px;}
.ws4_c00442{word-spacing:0.000000px;}
.ws3_c00442{word-spacing:0.043999px;}
.ws1_c00442{word-spacing:0.053933px;}
.ws5_c00442{word-spacing:0.056767px;}
.ws6_c00442{word-spacing:0.213446px;}
._1_c00442{width:1.041538px;}
._0_c00442{width:53.635025px;}
.fc5_c00442{color:rgb(79,153,5);}
.fc4_c00442{color:rgb(33,74,135);}
.fc3_c00442{color:rgb(0,0,207);}
.fc2_c00442{color:rgb(143,89,3);}
.fc1_c00442{color:rgb(207,92,0);}
.fc0_c00442{color:rgb(0,0,0);}
.fs0_c00442{font-size:43.999200px;}
.fs1_c00442{font-size:59.775600px;}
.y0_c00442{bottom:0.000000px;}
.y22_c00442{bottom:44.250000px;}
.y21_c00442{bottom:535.206000px;}
.y20_c00442{bottom:551.643000px;}
.y1f_c00442{bottom:568.081500px;}
.y1e_c00442{bottom:584.520000px;}
.y1d_c00442{bottom:600.958500px;}
.y1c_c00442{bottom:617.397000px;}
.y1b_c00442{bottom:633.835500px;}
.y1a_c00442{bottom:650.274000px;}
.y19_c00442{bottom:666.712500px;}
.y18_c00442{bottom:683.151000px;}
.y17_c00442{bottom:699.589500px;}
.y16_c00442{bottom:732.465000px;}
.y15_c00442{bottom:748.903500px;}
.y14_c00442{bottom:765.342000px;}
.y13_c00442{bottom:798.219000px;}
.y12_c00442{bottom:814.657500px;}
.y11_c00442{bottom:831.096000px;}
.y10_c00442{bottom:847.534500px;}
.yf_c00442{bottom:863.973000px;}
.ye_c00442{bottom:880.411500px;}
.yd_c00442{bottom:896.848500px;}
.yc_c00442{bottom:913.287000px;}
.yb_c00442{bottom:929.725500px;}
.ya_c00442{bottom:946.164000px;}
.y9_c00442{bottom:962.602500px;}
.y8_c00442{bottom:979.041000px;}
.y7_c00442{bottom:1011.918000px;}
.y6_c00442{bottom:1028.356500px;}
.y5_c00442{bottom:1077.670500px;}
.y4_c00442{bottom:1094.109000px;}
.y3_c00442{bottom:1126.986000px;}
.y2_c00442{bottom:1143.424500px;}
.y1_c00442{bottom:1159.863000px;}
.h3_c00442{height:35.190766px;}
.h2_c00442{height:36.007158px;}
.h4_c00442{height:52.332837px;}
.h0_c00442{height:1262.835000px;}
.h1_c00442{height:1263.000000px;}
.w0_c00442{width:892.920000px;}
.w1_c00442{width:893.250000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:137.122500px;}
.x2_c00442{left:143.770500px;}
.x4_c00442{left:177.007500px;}
.x3_c00442{left:230.185500px;}
.x5_c00442{left:435.249000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:0.078221pt;}
.ls2_c00442{letter-spacing:0.087539pt;}
.ls1_c00442{letter-spacing:0.092873pt;}
.ws0_c00442{word-spacing:-23.622682pt;}
.ws2_c00442{word-spacing:-23.544461pt;}
.ws4_c00442{word-spacing:0.000000pt;}
.ws3_c00442{word-spacing:0.039110pt;}
.ws1_c00442{word-spacing:0.047940pt;}
.ws5_c00442{word-spacing:0.050460pt;}
.ws6_c00442{word-spacing:0.189730pt;}
._1_c00442{width:0.925811pt;}
._0_c00442{width:47.675578pt;}
.fs0_c00442{font-size:39.110400pt;}
.fs1_c00442{font-size:53.133867pt;}
.y0_c00442{bottom:0.000000pt;}
.y22_c00442{bottom:39.333333pt;}
.y21_c00442{bottom:475.738667pt;}
.y20_c00442{bottom:490.349333pt;}
.y1f_c00442{bottom:504.961333pt;}
.y1e_c00442{bottom:519.573333pt;}
.y1d_c00442{bottom:534.185333pt;}
.y1c_c00442{bottom:548.797333pt;}
.y1b_c00442{bottom:563.409333pt;}
.y1a_c00442{bottom:578.021333pt;}
.y19_c00442{bottom:592.633333pt;}
.y18_c00442{bottom:607.245333pt;}
.y17_c00442{bottom:621.857333pt;}
.y16_c00442{bottom:651.080000pt;}
.y15_c00442{bottom:665.692000pt;}
.y14_c00442{bottom:680.304000pt;}
.y13_c00442{bottom:709.528000pt;}
.y12_c00442{bottom:724.140000pt;}
.y11_c00442{bottom:738.752000pt;}
.y10_c00442{bottom:753.364000pt;}
.yf_c00442{bottom:767.976000pt;}
.ye_c00442{bottom:782.588000pt;}
.yd_c00442{bottom:797.198667pt;}
.yc_c00442{bottom:811.810667pt;}
.yb_c00442{bottom:826.422667pt;}
.ya_c00442{bottom:841.034667pt;}
.y9_c00442{bottom:855.646667pt;}
.y8_c00442{bottom:870.258667pt;}
.y7_c00442{bottom:899.482667pt;}
.y6_c00442{bottom:914.094667pt;}
.y5_c00442{bottom:957.929333pt;}
.y4_c00442{bottom:972.541333pt;}
.y3_c00442{bottom:1001.765333pt;}
.y2_c00442{bottom:1016.377333pt;}
.y1_c00442{bottom:1030.989333pt;}
.h3_c00442{height:31.280681pt;}
.h2_c00442{height:32.006363pt;}
.h4_c00442{height:46.518078pt;}
.h0_c00442{height:1122.520000pt;}
.h1_c00442{height:1122.666667pt;}
.w0_c00442{width:793.706667pt;}
.w1_c00442{width:794.000000pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:121.886667pt;}
.x2_c00442{left:127.796000pt;}
.x4_c00442{left:157.340000pt;}
.x3_c00442{left:204.609333pt;}
.x5_c00442{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b0b9c8b8a46a3c433699ee3.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.893555;font-style:normal;font-weight:normal;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_9986f4b70ff022b63effd356.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_70a330c9c0d8c488c1a140d5.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00443;src:url('chunks/assets/font_36e5f61d09c809b7a105e178.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00443;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:1.048828;font-style: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;}
.ls4_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:0.087998px;}
.ls2_c00443{letter-spacing:0.098482px;}
.ls1_c00443{letter-spacing:0.104482px;}
.ls3_c00443{letter-spacing:26.690482px;}
.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;}
}
.wsc_c00443{word-spacing:-33.713438px;}
.ws2_c00443{word-spacing:-26.575517px;}
.wse_c00443{word-spacing:-26.487518px;}
.ws9_c00443{word-spacing:-21.553319px;}
.ws8_c00443{word-spacing:-21.519216px;}
.ws5_c00443{word-spacing:-18.769538px;}
.ws7_c00443{word-spacing:-16.019861px;}
.ws4_c00443{word-spacing:-14.943900px;}
.wsa_c00443{word-spacing:-14.107042px;}
.wsb_c00443{word-spacing:-12.074671px;}
.ws1_c00443{word-spacing:-9.988424px;}
.ws3_c00443{word-spacing:-9.987499px;}
.ws6_c00443{word-spacing:-4.536144px;}
.ws12_c00443{word-spacing:0.000000px;}
.wsf_c00443{word-spacing:0.043999px;}
.ws15_c00443{word-spacing:0.056767px;}
.ws13_c00443{word-spacing:0.073250px;}
.ws14_c00443{word-spacing:0.083734px;}
.wsd_c00443{word-spacing:0.175997px;}
.ws16_c00443{word-spacing:0.202963px;}
.ws10_c00443{word-spacing:0.213446px;}
.ws11_c00443{word-spacing:0.219446px;}
.ws0_c00443{word-spacing:43.038600px;}
._4_c00443{margin-left:-3.825638px;}
._2_c00443{margin-left:-2.347817px;}
._1_c00443{margin-left:-1.075961px;}
._5_c00443{width:1.005737px;}
._0_c00443{width:19.935816px;}
._3_c00443{width:40.109428px;}
._7_c00443{width:53.283031px;}
._6_c00443{width:79.858548px;}
._8_c00443{width:133.452408px;}
.fc6_c00443{color:rgb(0,0,207);}
.fc5_c00443{color:rgb(79,153,5);}
.fc3_c00443{color:rgb(33,74,135);}
.fc2_c00443{color:rgb(143,89,3);}
.fc4_c00443{color:rgb(207,92,0);}
.fc1_c00443{color:rgb(6,69,173);}
.fc0_c00443{color:rgb(0,0,0);}
.fs2_c00443{font-size:43.999200px;}
.fs1_c00443{font-size:59.775600px;}
.fs0_c00443{font-size:86.077200px;}
.y0_c00443{bottom:0.000000px;}
.y36_c00443{bottom:44.250000px;}
.y35_c00443{bottom:96.919500px;}
.y34_c00443{bottom:113.358000px;}
.y33_c00443{bottom:129.796500px;}
.y32_c00443{bottom:146.235000px;}
.y31_c00443{bottom:162.673500px;}
.y30_c00443{bottom:179.112000px;}
.y2f_c00443{bottom:195.550500px;}
.y2e_c00443{bottom:211.989000px;}
.y2d_c00443{bottom:228.427500px;}
.y2c_c00443{bottom:244.866000px;}
.y2b_c00443{bottom:261.304500px;}
.y2a_c00443{bottom:294.180000px;}
.y29_c00443{bottom:310.618500px;}
.y28_c00443{bottom:327.057000px;}
.y27_c00443{bottom:359.934000px;}
.y26_c00443{bottom:376.372500px;}
.y25_c00443{bottom:392.811000px;}
.y24_c00443{bottom:409.249500px;}
.y23_c00443{bottom:425.688000px;}
.y22_c00443{bottom:442.125000px;}
.y21_c00443{bottom:458.563500px;}
.y20_c00443{bottom:507.879000px;}
.y1f_c00443{bottom:524.317500px;}
.y1e_c00443{bottom:540.756000px;}
.y1d_c00443{bottom:557.194500px;}
.y1c_c00443{bottom:573.633000px;}
.y1b_c00443{bottom:590.071500px;}
.y1a_c00443{bottom:606.508500px;}
.y19_c00443{bottom:622.947000px;}
.y18_c00443{bottom:639.385500px;}
.y17_c00443{bottom:655.824000px;}
.y16_c00443{bottom:672.262500px;}
.y15_c00443{bottom:688.701000px;}
.y14_c00443{bottom:705.139500px;}
.y13_c00443{bottom:721.578000px;}
.y12_c00443{bottom:738.016500px;}
.y11_c00443{bottom:754.455000px;}
.y10_c00443{bottom:787.330500px;}
.yf_c00443{bottom:803.769000px;}
.ye_c00443{bottom:853.084500px;}
.yd_c00443{bottom:869.523000px;}
.yc_c00443{bottom:885.588000px;}
.yb_c00443{bottom:925.077000px;}
.ya_c00443{bottom:943.009500px;}
.y9_c00443{bottom:960.942000px;}
.y8_c00443{bottom:978.876000px;}
.y7_c00443{bottom:996.808500px;}
.y6_c00443{bottom:1014.741000px;}
.y5_c00443{bottom:1040.691000px;}
.y4_c00443{bottom:1066.641000px;}
.y3_c00443{bottom:1092.591000px;}
.y2_c00443{bottom:1118.539500px;}
.y1_c00443{bottom:1159.863000px;}
.h5_c00443{height:35.190766px;}
.h6_c00443{height:36.007158px;}
.h3_c00443{height:40.511979px;}
.h4_c00443{height:52.332837px;}
.h2_c00443{height:58.337477px;}
.h0_c00443{height:1262.835000px;}
.h1_c00443{height:1263.000000px;}
.w0_c00443{width:892.920000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:127.558500px;}
.x2_c00443{left:137.122500px;}
.x3_c00443{left:143.770500px;}
.x4_c00443{left:177.007500px;}
.x5_c00443{left:435.249000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls4_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.078221pt;}
.ls2_c00443{letter-spacing:0.087539pt;}
.ls1_c00443{letter-spacing:0.092873pt;}
.ls3_c00443{letter-spacing:23.724873pt;}
.wsc_c00443{word-spacing:-29.967501pt;}
.ws2_c00443{word-spacing:-23.622682pt;}
.wse_c00443{word-spacing:-23.544461pt;}
.ws9_c00443{word-spacing:-19.158506pt;}
.ws8_c00443{word-spacing:-19.128192pt;}
.ws5_c00443{word-spacing:-16.684034pt;}
.ws7_c00443{word-spacing:-14.239876pt;}
.ws4_c00443{word-spacing:-13.283467pt;}
.wsa_c00443{word-spacing:-12.539593pt;}
.wsb_c00443{word-spacing:-10.733041pt;}
.ws1_c00443{word-spacing:-8.878599pt;}
.ws3_c00443{word-spacing:-8.877777pt;}
.ws6_c00443{word-spacing:-4.032128pt;}
.ws12_c00443{word-spacing:0.000000pt;}
.wsf_c00443{word-spacing:0.039110pt;}
.ws15_c00443{word-spacing:0.050460pt;}
.ws13_c00443{word-spacing:0.065111pt;}
.ws14_c00443{word-spacing:0.074430pt;}
.wsd_c00443{word-spacing:0.156442pt;}
.ws16_c00443{word-spacing:0.180412pt;}
.ws10_c00443{word-spacing:0.189730pt;}
.ws11_c00443{word-spacing:0.195063pt;}
.ws0_c00443{word-spacing:38.256533pt;}
._4_c00443{margin-left:-3.400567pt;}
._2_c00443{margin-left:-2.086948pt;}
._1_c00443{margin-left:-0.956410pt;}
._5_c00443{width:0.893988pt;}
._0_c00443{width:17.720725pt;}
._3_c00443{width:35.652825pt;}
._7_c00443{width:47.362694pt;}
._6_c00443{width:70.985376pt;}
._8_c00443{width:118.624363pt;}
.fs2_c00443{font-size:39.110400pt;}
.fs1_c00443{font-size:53.133867pt;}
.fs0_c00443{font-size:76.513067pt;}
.y0_c00443{bottom:0.000000pt;}
.y36_c00443{bottom:39.333333pt;}
.y35_c00443{bottom:86.150667pt;}
.y34_c00443{bottom:100.762667pt;}
.y33_c00443{bottom:115.374667pt;}
.y32_c00443{bottom:129.986667pt;}
.y31_c00443{bottom:144.598667pt;}
.y30_c00443{bottom:159.210667pt;}
.y2f_c00443{bottom:173.822667pt;}
.y2e_c00443{bottom:188.434667pt;}
.y2d_c00443{bottom:203.046667pt;}
.y2c_c00443{bottom:217.658667pt;}
.y2b_c00443{bottom:232.270667pt;}
.y2a_c00443{bottom:261.493333pt;}
.y29_c00443{bottom:276.105333pt;}
.y28_c00443{bottom:290.717333pt;}
.y27_c00443{bottom:319.941333pt;}
.y26_c00443{bottom:334.553333pt;}
.y25_c00443{bottom:349.165333pt;}
.y24_c00443{bottom:363.777333pt;}
.y23_c00443{bottom:378.389333pt;}
.y22_c00443{bottom:393.000000pt;}
.y21_c00443{bottom:407.612000pt;}
.y20_c00443{bottom:451.448000pt;}
.y1f_c00443{bottom:466.060000pt;}
.y1e_c00443{bottom:480.672000pt;}
.y1d_c00443{bottom:495.284000pt;}
.y1c_c00443{bottom:509.896000pt;}
.y1b_c00443{bottom:524.508000pt;}
.y1a_c00443{bottom:539.118667pt;}
.y19_c00443{bottom:553.730667pt;}
.y18_c00443{bottom:568.342667pt;}
.y17_c00443{bottom:582.954667pt;}
.y16_c00443{bottom:597.566667pt;}
.y15_c00443{bottom:612.178667pt;}
.y14_c00443{bottom:626.790667pt;}
.y13_c00443{bottom:641.402667pt;}
.y12_c00443{bottom:656.014667pt;}
.y11_c00443{bottom:670.626667pt;}
.y10_c00443{bottom:699.849333pt;}
.yf_c00443{bottom:714.461333pt;}
.ye_c00443{bottom:758.297333pt;}
.yd_c00443{bottom:772.909333pt;}
.yc_c00443{bottom:787.189333pt;}
.yb_c00443{bottom:822.290667pt;}
.ya_c00443{bottom:838.230667pt;}
.y9_c00443{bottom:854.170667pt;}
.y8_c00443{bottom:870.112000pt;}
.y7_c00443{bottom:886.052000pt;}
.y6_c00443{bottom:901.992000pt;}
.y5_c00443{bottom:925.058667pt;}
.y4_c00443{bottom:948.125333pt;}
.y3_c00443{bottom:971.192000pt;}
.y2_c00443{bottom:994.257333pt;}
.y1_c00443{bottom:1030.989333pt;}
.h5_c00443{height:31.280681pt;}
.h6_c00443{height:32.006363pt;}
.h3_c00443{height:36.010648pt;}
.h4_c00443{height:46.518078pt;}
.h2_c00443{height:51.855535pt;}
.h0_c00443{height:1122.520000pt;}
.h1_c00443{height:1122.666667pt;}
.w0_c00443{width:793.706667pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:113.385333pt;}
.x2_c00443{left:121.886667pt;}
.x3_c00443{left:127.796000pt;}
.x4_c00443{left:157.340000pt;}
.x5_c00443{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b0b9c8b8a46a3c433699ee3.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.893555;font-style:normal;font-weight:normal;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_514f85bc13f439330779e441.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.083496;font-style:normal;font-weight:normal;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_0e662f9bb6fc997da63cf4dd.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.048828;font-style: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;}
.ls3_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.087998px;}
.ls2_c00444{letter-spacing:0.098482px;}
.ls1_c00444{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00444{word-spacing:-33.713438px;}
.ws2_c00444{word-spacing:-26.575517px;}
.wse_c00444{word-spacing:-26.487518px;}
.ws9_c00444{word-spacing:-21.553319px;}
.ws8_c00444{word-spacing:-21.519216px;}
.ws5_c00444{word-spacing:-18.769538px;}
.ws7_c00444{word-spacing:-17.633802px;}
.ws4_c00444{word-spacing:-14.943900px;}
.wsa_c00444{word-spacing:-14.107042px;}
.wsb_c00444{word-spacing:-12.074671px;}
.ws1_c00444{word-spacing:-9.988424px;}
.ws3_c00444{word-spacing:-9.987499px;}
.ws6_c00444{word-spacing:-7.686144px;}
.ws12_c00444{word-spacing:0.000000px;}
.wsf_c00444{word-spacing:0.043999px;}
.ws15_c00444{word-spacing:0.056767px;}
.ws13_c00444{word-spacing:0.073250px;}
.ws14_c00444{word-spacing:0.083734px;}
.wsd_c00444{word-spacing:0.175997px;}
.ws16_c00444{word-spacing:0.202963px;}
.ws10_c00444{word-spacing:0.213446px;}
.ws11_c00444{word-spacing:0.219446px;}
.ws0_c00444{word-spacing:43.038600px;}
._4_c00444{margin-left:-3.825638px;}
._2_c00444{margin-left:-2.347817px;}
._1_c00444{margin-left:-1.075961px;}
._5_c00444{width:1.005737px;}
._0_c00444{width:19.935816px;}
._3_c00444{width:40.109428px;}
._7_c00444{width:53.283031px;}
._6_c00444{width:79.858548px;}
._8_c00444{width:133.452408px;}
.fc6_c00444{color:rgb(0,0,207);}
.fc5_c00444{color:rgb(79,153,5);}
.fc3_c00444{color:rgb(33,74,135);}
.fc2_c00444{color:rgb(143,89,3);}
.fc4_c00444{color:rgb(207,92,0);}
.fc1_c00444{color:rgb(6,69,173);}
.fc0_c00444{color:rgb(0,0,0);}
.fs2_c00444{font-size:43.999200px;}
.fs1_c00444{font-size:59.775600px;}
.fs0_c00444{font-size:86.077200px;}
.y0_c00444{bottom:0.000000px;}
.y20_c00444{bottom:44.250000px;}
.y1f_c00444{bottom:86.982000px;}
.y1e_c00444{bottom:103.420500px;}
.y1d_c00444{bottom:119.859000px;}
.y1c_c00444{bottom:136.297500px;}
.y1b_c00444{bottom:152.736000px;}
.y1a_c00444{bottom:169.174500px;}
.y19_c00444{bottom:185.613000px;}
.y18_c00444{bottom:202.051500px;}
.y17_c00444{bottom:218.490000px;}
.y16_c00444{bottom:234.927000px;}
.y15_c00444{bottom:251.365500px;}
.y14_c00444{bottom:267.804000px;}
.y13_c00444{bottom:284.242500px;}
.y12_c00444{bottom:300.681000px;}
.y11_c00444{bottom:317.119500px;}
.y10_c00444{bottom:349.996500px;}
.yf_c00444{bottom:366.435000px;}
.ye_c00444{bottom:415.749000px;}
.yd_c00444{bottom:432.187500px;}
.yc_c00444{bottom:448.252500px;}
.yb_c00444{bottom:493.890000px;}
.ya_c00444{bottom:511.822500px;}
.y9_c00444{bottom:529.756500px;}
.y8_c00444{bottom:547.689000px;}
.y7_c00444{bottom:565.621500px;}
.y6_c00444{bottom:583.554000px;}
.y5_c00444{bottom:610.633500px;}
.y4_c00444{bottom:637.714500px;}
.y3_c00444{bottom:664.794000px;}
.y2_c00444{bottom:691.873500px;}
.y1_c00444{bottom:734.407500px;}
.h5_c00444{height:35.190766px;}
.h6_c00444{height:36.007158px;}
.h3_c00444{height:40.511979px;}
.h4_c00444{height:52.332837px;}
.h2_c00444{height:58.337477px;}
.h0_c00444{height:1262.835000px;}
.h1_c00444{height:1263.000000px;}
.w0_c00444{width:892.920000px;}
.w1_c00444{width:893.250000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:127.558500px;}
.x2_c00444{left:137.122500px;}
.x3_c00444{left:143.770500px;}
.x4_c00444{left:435.249000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls3_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.078221pt;}
.ls2_c00444{letter-spacing:0.087539pt;}
.ls1_c00444{letter-spacing:0.092873pt;}
.wsc_c00444{word-spacing:-29.967501pt;}
.ws2_c00444{word-spacing:-23.622682pt;}
.wse_c00444{word-spacing:-23.544461pt;}
.ws9_c00444{word-spacing:-19.158506pt;}
.ws8_c00444{word-spacing:-19.128192pt;}
.ws5_c00444{word-spacing:-16.684034pt;}
.ws7_c00444{word-spacing:-15.674491pt;}
.ws4_c00444{word-spacing:-13.283467pt;}
.wsa_c00444{word-spacing:-12.539593pt;}
.wsb_c00444{word-spacing:-10.733041pt;}
.ws1_c00444{word-spacing:-8.878599pt;}
.ws3_c00444{word-spacing:-8.877777pt;}
.ws6_c00444{word-spacing:-6.832128pt;}
.ws12_c00444{word-spacing:0.000000pt;}
.wsf_c00444{word-spacing:0.039110pt;}
.ws15_c00444{word-spacing:0.050460pt;}
.ws13_c00444{word-spacing:0.065111pt;}
.ws14_c00444{word-spacing:0.074430pt;}
.wsd_c00444{word-spacing:0.156442pt;}
.ws16_c00444{word-spacing:0.180412pt;}
.ws10_c00444{word-spacing:0.189730pt;}
.ws11_c00444{word-spacing:0.195063pt;}
.ws0_c00444{word-spacing:38.256533pt;}
._4_c00444{margin-left:-3.400567pt;}
._2_c00444{margin-left:-2.086948pt;}
._1_c00444{margin-left:-0.956410pt;}
._5_c00444{width:0.893988pt;}
._0_c00444{width:17.720725pt;}
._3_c00444{width:35.652825pt;}
._7_c00444{width:47.362694pt;}
._6_c00444{width:70.985376pt;}
._8_c00444{width:118.624363pt;}
.fs2_c00444{font-size:39.110400pt;}
.fs1_c00444{font-size:53.133867pt;}
.fs0_c00444{font-size:76.513067pt;}
.y0_c00444{bottom:0.000000pt;}
.y20_c00444{bottom:39.333333pt;}
.y1f_c00444{bottom:77.317333pt;}
.y1e_c00444{bottom:91.929333pt;}
.y1d_c00444{bottom:106.541333pt;}
.y1c_c00444{bottom:121.153333pt;}
.y1b_c00444{bottom:135.765333pt;}
.y1a_c00444{bottom:150.377333pt;}
.y19_c00444{bottom:164.989333pt;}
.y18_c00444{bottom:179.601333pt;}
.y17_c00444{bottom:194.213333pt;}
.y16_c00444{bottom:208.824000pt;}
.y15_c00444{bottom:223.436000pt;}
.y14_c00444{bottom:238.048000pt;}
.y13_c00444{bottom:252.660000pt;}
.y12_c00444{bottom:267.272000pt;}
.y11_c00444{bottom:281.884000pt;}
.y10_c00444{bottom:311.108000pt;}
.yf_c00444{bottom:325.720000pt;}
.ye_c00444{bottom:369.554667pt;}
.yd_c00444{bottom:384.166667pt;}
.yc_c00444{bottom:398.446667pt;}
.yb_c00444{bottom:439.013333pt;}
.ya_c00444{bottom:454.953333pt;}
.y9_c00444{bottom:470.894667pt;}
.y8_c00444{bottom:486.834667pt;}
.y7_c00444{bottom:502.774667pt;}
.y6_c00444{bottom:518.714667pt;}
.y5_c00444{bottom:542.785333pt;}
.y4_c00444{bottom:566.857333pt;}
.y3_c00444{bottom:590.928000pt;}
.y2_c00444{bottom:614.998667pt;}
.y1_c00444{bottom:652.806667pt;}
.h5_c00444{height:31.280681pt;}
.h6_c00444{height:32.006363pt;}
.h3_c00444{height:36.010648pt;}
.h4_c00444{height:46.518078pt;}
.h2_c00444{height:51.855535pt;}
.h0_c00444{height:1122.520000pt;}
.h1_c00444{height:1122.666667pt;}
.w0_c00444{width:793.706667pt;}
.w1_c00444{width:794.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:113.385333pt;}
.x2_c00444{left:121.886667pt;}
.x3_c00444{left:127.796000pt;}
.x4_c00444{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b9499ed1b0f5bc5c6c812b9.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.048828;font-style:normal;font-weight:normal;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_fa0dc30a378c945044883202.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.014648;font-style:normal;font-weight:normal;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_31312ef09d2efbed1841dcbe.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_cc8e0358074ac64f6a528d07.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.102051;font-style: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;}
.ls4_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.087998px;}
.ls2_c00445{letter-spacing:0.098482px;}
.ls3_c00445{letter-spacing:0.104482px;}
.ls1_c00445{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00445{word-spacing:-26.575517px;}
.ws4_c00445{word-spacing:-26.487518px;}
.wse_c00445{word-spacing:-21.553319px;}
.wsd_c00445{word-spacing:-21.519216px;}
.wsa_c00445{word-spacing:-18.769538px;}
.wsc_c00445{word-spacing:-17.633802px;}
.ws9_c00445{word-spacing:-14.943900px;}
.wsf_c00445{word-spacing:-14.107042px;}
.ws10_c00445{word-spacing:-12.074671px;}
.ws7_c00445{word-spacing:-9.988424px;}
.ws8_c00445{word-spacing:-9.987499px;}
.wsb_c00445{word-spacing:-7.686144px;}
.ws3_c00445{word-spacing:0.000000px;}
.ws0_c00445{word-spacing:0.043999px;}
.ws5_c00445{word-spacing:0.213446px;}
.ws1_c00445{word-spacing:0.219446px;}
.ws6_c00445{word-spacing:43.038600px;}
._3_c00445{margin-left:-2.347817px;}
._2_c00445{margin-left:-1.075961px;}
._0_c00445{width:1.101139px;}
._1_c00445{width:19.935816px;}
._4_c00445{width:40.109428px;}
.fc5_c00445{color:rgb(79,153,5);}
.fc4_c00445{color:rgb(143,89,3);}
.fc3_c00445{color:rgb(0,0,0);}
.fc6_c00445{color:rgb(6,69,173);}
.fc2_c00445{color:rgb(207,92,0);}
.fc1_c00445{color:rgb(0,0,207);}
.fc0_c00445{color:rgb(33,74,135);}
.fs0_c00445{font-size:43.999200px;}
.fs2_c00445{font-size:59.775600px;}
.fs1_c00445{font-size:86.077200px;}
.y0_c00445{bottom:0.000000px;}
.y20_c00445{bottom:44.250000px;}
.y1f_c00445{bottom:82.051500px;}
.y1e_c00445{bottom:99.984000px;}
.y1d_c00445{bottom:117.916500px;}
.y1c_c00445{bottom:135.849000px;}
.y1b_c00445{bottom:162.501000px;}
.y1a_c00445{bottom:189.151500px;}
.y19_c00445{bottom:215.802000px;}
.y18_c00445{bottom:242.454000px;}
.y17_c00445{bottom:284.478000px;}
.y16_c00445{bottom:748.903500px;}
.y15_c00445{bottom:765.342000px;}
.y14_c00445{bottom:781.780500px;}
.y13_c00445{bottom:798.219000px;}
.y12_c00445{bottom:814.657500px;}
.y11_c00445{bottom:831.096000px;}
.y10_c00445{bottom:847.534500px;}
.yf_c00445{bottom:863.973000px;}
.ye_c00445{bottom:880.411500px;}
.yd_c00445{bottom:896.848500px;}
.yc_c00445{bottom:913.287000px;}
.yb_c00445{bottom:946.164000px;}
.ya_c00445{bottom:962.602500px;}
.y9_c00445{bottom:979.041000px;}
.y8_c00445{bottom:1011.918000px;}
.y7_c00445{bottom:1028.356500px;}
.y6_c00445{bottom:1044.795000px;}
.y5_c00445{bottom:1061.232000px;}
.y4_c00445{bottom:1077.670500px;}
.y3_c00445{bottom:1094.109000px;}
.y2_c00445{bottom:1110.547500px;}
.y1_c00445{bottom:1159.863000px;}
.h3_c00445{height:35.190766px;}
.h2_c00445{height:36.007158px;}
.h5_c00445{height:40.511979px;}
.h6_c00445{height:52.332837px;}
.h4_c00445{height:58.337477px;}
.h0_c00445{height:1262.835000px;}
.h1_c00445{height:1263.000000px;}
.w0_c00445{width:892.920000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x4_c00445{left:127.558500px;}
.x2_c00445{left:137.122500px;}
.x1_c00445{left:143.770500px;}
.x3_c00445{left:177.007500px;}
.x5_c00445{left:435.249000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls4_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.078221pt;}
.ls2_c00445{letter-spacing:0.087539pt;}
.ls3_c00445{letter-spacing:0.092873pt;}
.ls1_c00445{letter-spacing:23.724873pt;}
.ws2_c00445{word-spacing:-23.622682pt;}
.ws4_c00445{word-spacing:-23.544461pt;}
.wse_c00445{word-spacing:-19.158506pt;}
.wsd_c00445{word-spacing:-19.128192pt;}
.wsa_c00445{word-spacing:-16.684034pt;}
.wsc_c00445{word-spacing:-15.674491pt;}
.ws9_c00445{word-spacing:-13.283467pt;}
.wsf_c00445{word-spacing:-12.539593pt;}
.ws10_c00445{word-spacing:-10.733041pt;}
.ws7_c00445{word-spacing:-8.878599pt;}
.ws8_c00445{word-spacing:-8.877777pt;}
.wsb_c00445{word-spacing:-6.832128pt;}
.ws3_c00445{word-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.039110pt;}
.ws5_c00445{word-spacing:0.189730pt;}
.ws1_c00445{word-spacing:0.195063pt;}
.ws6_c00445{word-spacing:38.256533pt;}
._3_c00445{margin-left:-2.086948pt;}
._2_c00445{margin-left:-0.956410pt;}
._0_c00445{width:0.978790pt;}
._1_c00445{width:17.720725pt;}
._4_c00445{width:35.652825pt;}
.fs0_c00445{font-size:39.110400pt;}
.fs2_c00445{font-size:53.133867pt;}
.fs1_c00445{font-size:76.513067pt;}
.y0_c00445{bottom:0.000000pt;}
.y20_c00445{bottom:39.333333pt;}
.y1f_c00445{bottom:72.934667pt;}
.y1e_c00445{bottom:88.874667pt;}
.y1d_c00445{bottom:104.814667pt;}
.y1c_c00445{bottom:120.754667pt;}
.y1b_c00445{bottom:144.445333pt;}
.y1a_c00445{bottom:168.134667pt;}
.y19_c00445{bottom:191.824000pt;}
.y18_c00445{bottom:215.514667pt;}
.y17_c00445{bottom:252.869333pt;}
.y16_c00445{bottom:665.692000pt;}
.y15_c00445{bottom:680.304000pt;}
.y14_c00445{bottom:694.916000pt;}
.y13_c00445{bottom:709.528000pt;}
.y12_c00445{bottom:724.140000pt;}
.y11_c00445{bottom:738.752000pt;}
.y10_c00445{bottom:753.364000pt;}
.yf_c00445{bottom:767.976000pt;}
.ye_c00445{bottom:782.588000pt;}
.yd_c00445{bottom:797.198667pt;}
.yc_c00445{bottom:811.810667pt;}
.yb_c00445{bottom:841.034667pt;}
.ya_c00445{bottom:855.646667pt;}
.y9_c00445{bottom:870.258667pt;}
.y8_c00445{bottom:899.482667pt;}
.y7_c00445{bottom:914.094667pt;}
.y6_c00445{bottom:928.706667pt;}
.y5_c00445{bottom:943.317333pt;}
.y4_c00445{bottom:957.929333pt;}
.y3_c00445{bottom:972.541333pt;}
.y2_c00445{bottom:987.153333pt;}
.y1_c00445{bottom:1030.989333pt;}
.h3_c00445{height:31.280681pt;}
.h2_c00445{height:32.006363pt;}
.h5_c00445{height:36.010648pt;}
.h6_c00445{height:46.518078pt;}
.h4_c00445{height:51.855535pt;}
.h0_c00445{height:1122.520000pt;}
.h1_c00445{height:1122.666667pt;}
.w0_c00445{width:793.706667pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x4_c00445{left:113.385333pt;}
.x2_c00445{left:121.886667pt;}
.x1_c00445{left:127.796000pt;}
.x3_c00445{left:157.340000pt;}
.x5_c00445{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51aac675faa31a7210a8152c.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.102051;font-style:normal;font-weight:normal;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_24be9c211e7627f6b1f20aa3.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_06bdf14132e1b2f6feaf4b88.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls4_c00446{letter-spacing:0.000000px;}
.ls1_c00446{letter-spacing:0.087998px;}
.ls2_c00446{letter-spacing:0.098482px;}
.ls0_c00446{letter-spacing:0.104482px;}
.ls3_c00446{letter-spacing:26.690482px;}
.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;}
}
.ws1_c00446{word-spacing:-33.713438px;}
.ws4_c00446{word-spacing:-26.575517px;}
.ws3_c00446{word-spacing:-26.487518px;}
.ws0_c00446{word-spacing:-18.769538px;}
.ws8_c00446{word-spacing:0.000000px;}
.ws5_c00446{word-spacing:0.043999px;}
.wsb_c00446{word-spacing:0.056767px;}
.ws9_c00446{word-spacing:0.073250px;}
.wsa_c00446{word-spacing:0.083734px;}
.ws2_c00446{word-spacing:0.175997px;}
.wsc_c00446{word-spacing:0.202963px;}
.ws6_c00446{word-spacing:0.213446px;}
.ws7_c00446{word-spacing:0.219446px;}
._0_c00446{margin-left:-3.825638px;}
._1_c00446{width:1.005737px;}
._3_c00446{width:53.283031px;}
._2_c00446{width:79.858548px;}
._4_c00446{width:133.452408px;}
.fc5_c00446{color:rgb(0,0,207);}
.fc4_c00446{color:rgb(79,153,5);}
.fc3_c00446{color:rgb(207,92,0);}
.fc2_c00446{color:rgb(33,74,135);}
.fc1_c00446{color:rgb(143,89,3);}
.fc0_c00446{color:rgb(0,0,0);}
.fs1_c00446{font-size:43.999200px;}
.fs0_c00446{font-size:59.775600px;}
.y0_c00446{bottom:0.000000px;}
.y2d_c00446{bottom:44.250000px;}
.y2c_c00446{bottom:96.919500px;}
.y2b_c00446{bottom:113.358000px;}
.y2a_c00446{bottom:129.796500px;}
.y29_c00446{bottom:146.235000px;}
.y28_c00446{bottom:162.673500px;}
.y27_c00446{bottom:179.112000px;}
.y26_c00446{bottom:195.550500px;}
.y25_c00446{bottom:211.989000px;}
.y24_c00446{bottom:228.427500px;}
.y23_c00446{bottom:244.866000px;}
.y22_c00446{bottom:261.304500px;}
.y21_c00446{bottom:294.180000px;}
.y20_c00446{bottom:310.618500px;}
.y1f_c00446{bottom:327.057000px;}
.y1e_c00446{bottom:359.934000px;}
.y1d_c00446{bottom:376.372500px;}
.y1c_c00446{bottom:392.811000px;}
.y1b_c00446{bottom:409.249500px;}
.y1a_c00446{bottom:425.688000px;}
.y19_c00446{bottom:442.125000px;}
.y18_c00446{bottom:458.563500px;}
.y17_c00446{bottom:507.879000px;}
.y16_c00446{bottom:524.317500px;}
.y15_c00446{bottom:540.756000px;}
.y14_c00446{bottom:557.194500px;}
.y13_c00446{bottom:573.633000px;}
.y12_c00446{bottom:590.071500px;}
.y11_c00446{bottom:606.508500px;}
.y10_c00446{bottom:622.947000px;}
.yf_c00446{bottom:639.385500px;}
.ye_c00446{bottom:655.824000px;}
.yd_c00446{bottom:672.262500px;}
.yc_c00446{bottom:688.701000px;}
.yb_c00446{bottom:705.139500px;}
.ya_c00446{bottom:721.578000px;}
.y9_c00446{bottom:738.016500px;}
.y8_c00446{bottom:754.455000px;}
.y7_c00446{bottom:787.330500px;}
.y6_c00446{bottom:803.769000px;}
.y5_c00446{bottom:853.084500px;}
.y4_c00446{bottom:869.523000px;}
.y3_c00446{bottom:885.588000px;}
.y2_c00446{bottom:1141.930500px;}
.y1_c00446{bottom:1159.863000px;}
.h3_c00446{height:35.190766px;}
.h4_c00446{height:36.007158px;}
.h2_c00446{height:52.332837px;}
.h0_c00446{height:1262.835000px;}
.h1_c00446{height:1263.000000px;}
.w0_c00446{width:892.920000px;}
.w1_c00446{width:893.250000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:127.558500px;}
.x2_c00446{left:137.122500px;}
.x3_c00446{left:143.770500px;}
.x4_c00446{left:177.007500px;}
.x5_c00446{left:435.249000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls4_c00446{letter-spacing:0.000000pt;}
.ls1_c00446{letter-spacing:0.078221pt;}
.ls2_c00446{letter-spacing:0.087539pt;}
.ls0_c00446{letter-spacing:0.092873pt;}
.ls3_c00446{letter-spacing:23.724873pt;}
.ws1_c00446{word-spacing:-29.967501pt;}
.ws4_c00446{word-spacing:-23.622682pt;}
.ws3_c00446{word-spacing:-23.544461pt;}
.ws0_c00446{word-spacing:-16.684034pt;}
.ws8_c00446{word-spacing:0.000000pt;}
.ws5_c00446{word-spacing:0.039110pt;}
.wsb_c00446{word-spacing:0.050460pt;}
.ws9_c00446{word-spacing:0.065111pt;}
.wsa_c00446{word-spacing:0.074430pt;}
.ws2_c00446{word-spacing:0.156442pt;}
.wsc_c00446{word-spacing:0.180412pt;}
.ws6_c00446{word-spacing:0.189730pt;}
.ws7_c00446{word-spacing:0.195063pt;}
._0_c00446{margin-left:-3.400567pt;}
._1_c00446{width:0.893988pt;}
._3_c00446{width:47.362694pt;}
._2_c00446{width:70.985376pt;}
._4_c00446{width:118.624363pt;}
.fs1_c00446{font-size:39.110400pt;}
.fs0_c00446{font-size:53.133867pt;}
.y0_c00446{bottom:0.000000pt;}
.y2d_c00446{bottom:39.333333pt;}
.y2c_c00446{bottom:86.150667pt;}
.y2b_c00446{bottom:100.762667pt;}
.y2a_c00446{bottom:115.374667pt;}
.y29_c00446{bottom:129.986667pt;}
.y28_c00446{bottom:144.598667pt;}
.y27_c00446{bottom:159.210667pt;}
.y26_c00446{bottom:173.822667pt;}
.y25_c00446{bottom:188.434667pt;}
.y24_c00446{bottom:203.046667pt;}
.y23_c00446{bottom:217.658667pt;}
.y22_c00446{bottom:232.270667pt;}
.y21_c00446{bottom:261.493333pt;}
.y20_c00446{bottom:276.105333pt;}
.y1f_c00446{bottom:290.717333pt;}
.y1e_c00446{bottom:319.941333pt;}
.y1d_c00446{bottom:334.553333pt;}
.y1c_c00446{bottom:349.165333pt;}
.y1b_c00446{bottom:363.777333pt;}
.y1a_c00446{bottom:378.389333pt;}
.y19_c00446{bottom:393.000000pt;}
.y18_c00446{bottom:407.612000pt;}
.y17_c00446{bottom:451.448000pt;}
.y16_c00446{bottom:466.060000pt;}
.y15_c00446{bottom:480.672000pt;}
.y14_c00446{bottom:495.284000pt;}
.y13_c00446{bottom:509.896000pt;}
.y12_c00446{bottom:524.508000pt;}
.y11_c00446{bottom:539.118667pt;}
.y10_c00446{bottom:553.730667pt;}
.yf_c00446{bottom:568.342667pt;}
.ye_c00446{bottom:582.954667pt;}
.yd_c00446{bottom:597.566667pt;}
.yc_c00446{bottom:612.178667pt;}
.yb_c00446{bottom:626.790667pt;}
.ya_c00446{bottom:641.402667pt;}
.y9_c00446{bottom:656.014667pt;}
.y8_c00446{bottom:670.626667pt;}
.y7_c00446{bottom:699.849333pt;}
.y6_c00446{bottom:714.461333pt;}
.y5_c00446{bottom:758.297333pt;}
.y4_c00446{bottom:772.909333pt;}
.y3_c00446{bottom:787.189333pt;}
.y2_c00446{bottom:1015.049333pt;}
.y1_c00446{bottom:1030.989333pt;}
.h3_c00446{height:31.280681pt;}
.h4_c00446{height:32.006363pt;}
.h2_c00446{height:46.518078pt;}
.h0_c00446{height:1122.520000pt;}
.h1_c00446{height:1122.666667pt;}
.w0_c00446{width:793.706667pt;}
.w1_c00446{width:794.000000pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:113.385333pt;}
.x2_c00446{left:121.886667pt;}
.x3_c00446{left:127.796000pt;}
.x4_c00446{left:157.340000pt;}
.x5_c00446{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f77d60630094b885065689eb.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.893555;font-style:normal;font-weight:normal;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_c5994a7663b7608ddeddf648.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.083496;font-style:normal;font-weight:normal;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_d1d15f486997cbf510098780.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00447;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:1.048828;font-style: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;}
.ls3_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:0.087998px;}
.ls2_c00447{letter-spacing:0.098482px;}
.ls1_c00447{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00447{word-spacing:-33.713438px;}
.ws2_c00447{word-spacing:-26.575517px;}
.wse_c00447{word-spacing:-26.487518px;}
.ws9_c00447{word-spacing:-21.553319px;}
.ws8_c00447{word-spacing:-21.519216px;}
.ws7_c00447{word-spacing:-19.247743px;}
.ws5_c00447{word-spacing:-18.769538px;}
.ws4_c00447{word-spacing:-14.943900px;}
.wsa_c00447{word-spacing:-14.107042px;}
.wsb_c00447{word-spacing:-12.074671px;}
.ws6_c00447{word-spacing:-10.230144px;}
.ws1_c00447{word-spacing:-9.988424px;}
.ws3_c00447{word-spacing:-9.987499px;}
.ws12_c00447{word-spacing:0.000000px;}
.wsf_c00447{word-spacing:0.043999px;}
.ws15_c00447{word-spacing:0.056767px;}
.ws13_c00447{word-spacing:0.073250px;}
.ws14_c00447{word-spacing:0.083734px;}
.wsd_c00447{word-spacing:0.175997px;}
.ws16_c00447{word-spacing:0.202963px;}
.ws10_c00447{word-spacing:0.213446px;}
.ws11_c00447{word-spacing:0.219446px;}
.ws0_c00447{word-spacing:43.038600px;}
._4_c00447{margin-left:-3.825638px;}
._2_c00447{margin-left:-2.347817px;}
._1_c00447{margin-left:-1.075961px;}
._5_c00447{width:1.005737px;}
._0_c00447{width:19.935816px;}
._3_c00447{width:40.109428px;}
._7_c00447{width:53.283031px;}
._6_c00447{width:79.858548px;}
._8_c00447{width:133.452408px;}
.fc6_c00447{color:rgb(0,0,207);}
.fc5_c00447{color:rgb(79,153,5);}
.fc3_c00447{color:rgb(33,74,135);}
.fc2_c00447{color:rgb(143,89,3);}
.fc4_c00447{color:rgb(207,92,0);}
.fc1_c00447{color:rgb(6,69,173);}
.fc0_c00447{color:rgb(0,0,0);}
.fs2_c00447{font-size:43.999200px;}
.fs1_c00447{font-size:59.775600px;}
.fs0_c00447{font-size:86.077200px;}
.y0_c00447{bottom:0.000000px;}
.y20_c00447{bottom:44.250000px;}
.y1f_c00447{bottom:86.982000px;}
.y1e_c00447{bottom:103.420500px;}
.y1d_c00447{bottom:119.859000px;}
.y1c_c00447{bottom:136.297500px;}
.y1b_c00447{bottom:152.736000px;}
.y1a_c00447{bottom:169.174500px;}
.y19_c00447{bottom:185.613000px;}
.y18_c00447{bottom:202.051500px;}
.y17_c00447{bottom:218.490000px;}
.y16_c00447{bottom:234.927000px;}
.y15_c00447{bottom:251.365500px;}
.y14_c00447{bottom:267.804000px;}
.y13_c00447{bottom:284.242500px;}
.y12_c00447{bottom:300.681000px;}
.y11_c00447{bottom:317.119500px;}
.y10_c00447{bottom:349.996500px;}
.yf_c00447{bottom:366.435000px;}
.ye_c00447{bottom:415.749000px;}
.yd_c00447{bottom:432.187500px;}
.yc_c00447{bottom:448.252500px;}
.yb_c00447{bottom:493.890000px;}
.ya_c00447{bottom:511.822500px;}
.y9_c00447{bottom:529.756500px;}
.y8_c00447{bottom:547.689000px;}
.y7_c00447{bottom:565.621500px;}
.y6_c00447{bottom:583.554000px;}
.y5_c00447{bottom:610.633500px;}
.y4_c00447{bottom:637.714500px;}
.y3_c00447{bottom:664.794000px;}
.y2_c00447{bottom:691.873500px;}
.y1_c00447{bottom:734.407500px;}
.h5_c00447{height:35.190766px;}
.h6_c00447{height:36.007158px;}
.h3_c00447{height:40.511979px;}
.h4_c00447{height:52.332837px;}
.h2_c00447{height:58.337477px;}
.h0_c00447{height:1262.835000px;}
.h1_c00447{height:1263.000000px;}
.w0_c00447{width:892.920000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:127.558500px;}
.x2_c00447{left:137.122500px;}
.x3_c00447{left:143.770500px;}
.x4_c00447{left:435.249000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls3_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:0.078221pt;}
.ls2_c00447{letter-spacing:0.087539pt;}
.ls1_c00447{letter-spacing:0.092873pt;}
.wsc_c00447{word-spacing:-29.967501pt;}
.ws2_c00447{word-spacing:-23.622682pt;}
.wse_c00447{word-spacing:-23.544461pt;}
.ws9_c00447{word-spacing:-19.158506pt;}
.ws8_c00447{word-spacing:-19.128192pt;}
.ws7_c00447{word-spacing:-17.109105pt;}
.ws5_c00447{word-spacing:-16.684034pt;}
.ws4_c00447{word-spacing:-13.283467pt;}
.wsa_c00447{word-spacing:-12.539593pt;}
.wsb_c00447{word-spacing:-10.733041pt;}
.ws6_c00447{word-spacing:-9.093461pt;}
.ws1_c00447{word-spacing:-8.878599pt;}
.ws3_c00447{word-spacing:-8.877777pt;}
.ws12_c00447{word-spacing:0.000000pt;}
.wsf_c00447{word-spacing:0.039110pt;}
.ws15_c00447{word-spacing:0.050460pt;}
.ws13_c00447{word-spacing:0.065111pt;}
.ws14_c00447{word-spacing:0.074430pt;}
.wsd_c00447{word-spacing:0.156442pt;}
.ws16_c00447{word-spacing:0.180412pt;}
.ws10_c00447{word-spacing:0.189730pt;}
.ws11_c00447{word-spacing:0.195063pt;}
.ws0_c00447{word-spacing:38.256533pt;}
._4_c00447{margin-left:-3.400567pt;}
._2_c00447{margin-left:-2.086948pt;}
._1_c00447{margin-left:-0.956410pt;}
._5_c00447{width:0.893988pt;}
._0_c00447{width:17.720725pt;}
._3_c00447{width:35.652825pt;}
._7_c00447{width:47.362694pt;}
._6_c00447{width:70.985376pt;}
._8_c00447{width:118.624363pt;}
.fs2_c00447{font-size:39.110400pt;}
.fs1_c00447{font-size:53.133867pt;}
.fs0_c00447{font-size:76.513067pt;}
.y0_c00447{bottom:0.000000pt;}
.y20_c00447{bottom:39.333333pt;}
.y1f_c00447{bottom:77.317333pt;}
.y1e_c00447{bottom:91.929333pt;}
.y1d_c00447{bottom:106.541333pt;}
.y1c_c00447{bottom:121.153333pt;}
.y1b_c00447{bottom:135.765333pt;}
.y1a_c00447{bottom:150.377333pt;}
.y19_c00447{bottom:164.989333pt;}
.y18_c00447{bottom:179.601333pt;}
.y17_c00447{bottom:194.213333pt;}
.y16_c00447{bottom:208.824000pt;}
.y15_c00447{bottom:223.436000pt;}
.y14_c00447{bottom:238.048000pt;}
.y13_c00447{bottom:252.660000pt;}
.y12_c00447{bottom:267.272000pt;}
.y11_c00447{bottom:281.884000pt;}
.y10_c00447{bottom:311.108000pt;}
.yf_c00447{bottom:325.720000pt;}
.ye_c00447{bottom:369.554667pt;}
.yd_c00447{bottom:384.166667pt;}
.yc_c00447{bottom:398.446667pt;}
.yb_c00447{bottom:439.013333pt;}
.ya_c00447{bottom:454.953333pt;}
.y9_c00447{bottom:470.894667pt;}
.y8_c00447{bottom:486.834667pt;}
.y7_c00447{bottom:502.774667pt;}
.y6_c00447{bottom:518.714667pt;}
.y5_c00447{bottom:542.785333pt;}
.y4_c00447{bottom:566.857333pt;}
.y3_c00447{bottom:590.928000pt;}
.y2_c00447{bottom:614.998667pt;}
.y1_c00447{bottom:652.806667pt;}
.h5_c00447{height:31.280681pt;}
.h6_c00447{height:32.006363pt;}
.h3_c00447{height:36.010648pt;}
.h4_c00447{height:46.518078pt;}
.h2_c00447{height:51.855535pt;}
.h0_c00447{height:1122.520000pt;}
.h1_c00447{height:1122.666667pt;}
.w0_c00447{width:793.706667pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:113.385333pt;}
.x2_c00447{left:121.886667pt;}
.x3_c00447{left:127.796000pt;}
.x4_c00447{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29e69481b20d82b1ea59bc07.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_b4f312cb5f81031ec21c8a23.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_0d02d64ea20e91e412f6e55e.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_62f8cfb42155ebd97a0b7708.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.102051;font-style: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;}
.ls4_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.087998px;}
.ls2_c00448{letter-spacing:0.098482px;}
.ls3_c00448{letter-spacing:0.104482px;}
.ls1_c00448{letter-spacing:26.690482px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00448{word-spacing:-26.575517px;}
.ws4_c00448{word-spacing:-26.487518px;}
.wsd_c00448{word-spacing:-21.339889px;}
.wsc_c00448{word-spacing:-21.280114px;}
.ws11_c00448{word-spacing:-20.622582px;}
.wsa_c00448{word-spacing:-18.769538px;}
.wse_c00448{word-spacing:-18.709763px;}
.wsf_c00448{word-spacing:-18.649987px;}
.ws9_c00448{word-spacing:-14.943900px;}
.ws10_c00448{word-spacing:-11.536691px;}
.wsb_c00448{word-spacing:-11.262144px;}
.ws7_c00448{word-spacing:-9.988424px;}
.ws8_c00448{word-spacing:-9.987499px;}
.ws3_c00448{word-spacing:0.000000px;}
.ws0_c00448{word-spacing:0.043999px;}
.ws5_c00448{word-spacing:0.213446px;}
.ws1_c00448{word-spacing:0.219446px;}
.ws6_c00448{word-spacing:43.038600px;}
._4_c00448{margin-left:-3.287658px;}
._3_c00448{margin-left:-1.075961px;}
._1_c00448{width:1.117622px;}
._2_c00448{width:19.935816px;}
._5_c00448{width:41.364715px;}
._0_c00448{width:106.830058px;}
.fc5_c00448{color:rgb(79,153,5);}
.fc4_c00448{color:rgb(143,89,3);}
.fc3_c00448{color:rgb(0,0,0);}
.fc6_c00448{color:rgb(6,69,173);}
.fc2_c00448{color:rgb(207,92,0);}
.fc1_c00448{color:rgb(0,0,207);}
.fc0_c00448{color:rgb(33,74,135);}
.fs0_c00448{font-size:43.999200px;}
.fs2_c00448{font-size:59.775600px;}
.fs1_c00448{font-size:86.077200px;}
.y0_c00448{bottom:0.000000px;}
.y20_c00448{bottom:44.250000px;}
.y1f_c00448{bottom:82.051500px;}
.y1e_c00448{bottom:99.984000px;}
.y1d_c00448{bottom:117.916500px;}
.y1c_c00448{bottom:135.849000px;}
.y1b_c00448{bottom:162.501000px;}
.y1a_c00448{bottom:189.151500px;}
.y19_c00448{bottom:215.802000px;}
.y18_c00448{bottom:242.454000px;}
.y17_c00448{bottom:284.478000px;}
.y16_c00448{bottom:748.903500px;}
.y15_c00448{bottom:765.342000px;}
.y14_c00448{bottom:781.780500px;}
.y13_c00448{bottom:798.219000px;}
.y12_c00448{bottom:814.657500px;}
.y11_c00448{bottom:831.096000px;}
.y10_c00448{bottom:847.534500px;}
.yf_c00448{bottom:863.973000px;}
.ye_c00448{bottom:880.411500px;}
.yd_c00448{bottom:896.848500px;}
.yc_c00448{bottom:913.287000px;}
.yb_c00448{bottom:946.164000px;}
.ya_c00448{bottom:962.602500px;}
.y9_c00448{bottom:979.041000px;}
.y8_c00448{bottom:1011.918000px;}
.y7_c00448{bottom:1028.356500px;}
.y6_c00448{bottom:1044.795000px;}
.y5_c00448{bottom:1061.232000px;}
.y4_c00448{bottom:1077.670500px;}
.y3_c00448{bottom:1094.109000px;}
.y2_c00448{bottom:1110.547500px;}
.y1_c00448{bottom:1159.863000px;}
.h3_c00448{height:35.190766px;}
.h2_c00448{height:36.007158px;}
.h5_c00448{height:40.511979px;}
.h6_c00448{height:52.332837px;}
.h4_c00448{height:58.337477px;}
.h0_c00448{height:1262.835000px;}
.h1_c00448{height:1263.000000px;}
.w0_c00448{width:892.920000px;}
.w1_c00448{width:893.250000px;}
.x0_c00448{left:0.000000px;}
.x4_c00448{left:127.558500px;}
.x2_c00448{left:137.122500px;}
.x1_c00448{left:143.770500px;}
.x3_c00448{left:177.007500px;}
.x5_c00448{left:435.249000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls4_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.078221pt;}
.ls2_c00448{letter-spacing:0.087539pt;}
.ls3_c00448{letter-spacing:0.092873pt;}
.ls1_c00448{letter-spacing:23.724873pt;}
.ws2_c00448{word-spacing:-23.622682pt;}
.ws4_c00448{word-spacing:-23.544461pt;}
.wsd_c00448{word-spacing:-18.968790pt;}
.wsc_c00448{word-spacing:-18.915657pt;}
.ws11_c00448{word-spacing:-18.331184pt;}
.wsa_c00448{word-spacing:-16.684034pt;}
.wse_c00448{word-spacing:-16.630900pt;}
.wsf_c00448{word-spacing:-16.577766pt;}
.ws9_c00448{word-spacing:-13.283467pt;}
.ws10_c00448{word-spacing:-10.254836pt;}
.wsb_c00448{word-spacing:-10.010795pt;}
.ws7_c00448{word-spacing:-8.878599pt;}
.ws8_c00448{word-spacing:-8.877777pt;}
.ws3_c00448{word-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.039110pt;}
.ws5_c00448{word-spacing:0.189730pt;}
.ws1_c00448{word-spacing:0.195063pt;}
.ws6_c00448{word-spacing:38.256533pt;}
._4_c00448{margin-left:-2.922363pt;}
._3_c00448{margin-left:-0.956410pt;}
._1_c00448{width:0.993442pt;}
._2_c00448{width:17.720725pt;}
._5_c00448{width:36.768636pt;}
._0_c00448{width:94.960051pt;}
.fs0_c00448{font-size:39.110400pt;}
.fs2_c00448{font-size:53.133867pt;}
.fs1_c00448{font-size:76.513067pt;}
.y0_c00448{bottom:0.000000pt;}
.y20_c00448{bottom:39.333333pt;}
.y1f_c00448{bottom:72.934667pt;}
.y1e_c00448{bottom:88.874667pt;}
.y1d_c00448{bottom:104.814667pt;}
.y1c_c00448{bottom:120.754667pt;}
.y1b_c00448{bottom:144.445333pt;}
.y1a_c00448{bottom:168.134667pt;}
.y19_c00448{bottom:191.824000pt;}
.y18_c00448{bottom:215.514667pt;}
.y17_c00448{bottom:252.869333pt;}
.y16_c00448{bottom:665.692000pt;}
.y15_c00448{bottom:680.304000pt;}
.y14_c00448{bottom:694.916000pt;}
.y13_c00448{bottom:709.528000pt;}
.y12_c00448{bottom:724.140000pt;}
.y11_c00448{bottom:738.752000pt;}
.y10_c00448{bottom:753.364000pt;}
.yf_c00448{bottom:767.976000pt;}
.ye_c00448{bottom:782.588000pt;}
.yd_c00448{bottom:797.198667pt;}
.yc_c00448{bottom:811.810667pt;}
.yb_c00448{bottom:841.034667pt;}
.ya_c00448{bottom:855.646667pt;}
.y9_c00448{bottom:870.258667pt;}
.y8_c00448{bottom:899.482667pt;}
.y7_c00448{bottom:914.094667pt;}
.y6_c00448{bottom:928.706667pt;}
.y5_c00448{bottom:943.317333pt;}
.y4_c00448{bottom:957.929333pt;}
.y3_c00448{bottom:972.541333pt;}
.y2_c00448{bottom:987.153333pt;}
.y1_c00448{bottom:1030.989333pt;}
.h3_c00448{height:31.280681pt;}
.h2_c00448{height:32.006363pt;}
.h5_c00448{height:36.010648pt;}
.h6_c00448{height:46.518078pt;}
.h4_c00448{height:51.855535pt;}
.h0_c00448{height:1122.520000pt;}
.h1_c00448{height:1122.666667pt;}
.w0_c00448{width:793.706667pt;}
.w1_c00448{width:794.000000pt;}
.x0_c00448{left:0.000000pt;}
.x4_c00448{left:113.385333pt;}
.x2_c00448{left:121.886667pt;}
.x1_c00448{left:127.796000pt;}
.x3_c00448{left:157.340000pt;}
.x5_c00448{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55d7fc560c7ed11ebc1c5062.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.083496;font-style:normal;font-weight:normal;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_80a9c6ab598e8a55ebbcd456.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.102051;font-style:normal;font-weight:normal;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_62e520d0c9e54833cf276d08.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.014648;font-style:normal;font-weight:normal;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_6725f124dabb57d4f8f7b572.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:0.087998px;}
.ls2_c00449{letter-spacing:0.098482px;}
.ls1_c00449{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws6_c00449{word-spacing:-26.487518px;}
.ws3_c00449{word-spacing:-20.503031px;}
.ws2_c00449{word-spacing:-20.084602px;}
.ws4_c00449{word-spacing:-18.769538px;}
.ws1_c00449{word-spacing:-16.498066px;}
.wsa_c00449{word-spacing:0.000000px;}
.ws7_c00449{word-spacing:0.043999px;}
.wsb_c00449{word-spacing:0.053933px;}
.wsc_c00449{word-spacing:0.056767px;}
.ws5_c00449{word-spacing:0.175997px;}
.ws9_c00449{word-spacing:0.213446px;}
.ws8_c00449{word-spacing:0.219446px;}
._2_c00449{margin-left:-3.765863px;}
._3_c00449{width:1.005737px;}
._1_c00449{width:19.307519px;}
._0_c00449{width:27.065616px;}
._4_c00449{width:106.874057px;}
.fc5_c00449{color:rgb(0,0,207);}
.fc4_c00449{color:rgb(79,153,5);}
.fc3_c00449{color:rgb(207,92,0);}
.fc2_c00449{color:rgb(33,74,135);}
.fc1_c00449{color:rgb(143,89,3);}
.fc0_c00449{color:rgb(0,0,0);}
.fs0_c00449{font-size:43.999200px;}
.fs1_c00449{font-size:59.775600px;}
.y0_c00449{bottom:0.000000px;}
.y39_c00449{bottom:44.250000px;}
.y38_c00449{bottom:86.982000px;}
.y37_c00449{bottom:103.420500px;}
.y36_c00449{bottom:119.859000px;}
.y35_c00449{bottom:136.297500px;}
.y34_c00449{bottom:152.736000px;}
.y33_c00449{bottom:169.174500px;}
.y32_c00449{bottom:185.613000px;}
.y31_c00449{bottom:202.051500px;}
.y30_c00449{bottom:218.490000px;}
.y2f_c00449{bottom:234.927000px;}
.y2e_c00449{bottom:251.365500px;}
.y2d_c00449{bottom:267.804000px;}
.y2c_c00449{bottom:284.242500px;}
.y2b_c00449{bottom:300.681000px;}
.y2a_c00449{bottom:317.119500px;}
.y29_c00449{bottom:333.558000px;}
.y28_c00449{bottom:349.996500px;}
.y27_c00449{bottom:366.435000px;}
.y26_c00449{bottom:382.873500px;}
.y25_c00449{bottom:399.310500px;}
.y24_c00449{bottom:415.749000px;}
.y23_c00449{bottom:432.187500px;}
.y22_c00449{bottom:448.626000px;}
.y21_c00449{bottom:481.503000px;}
.y20_c00449{bottom:514.380000px;}
.y1f_c00449{bottom:530.818500px;}
.y1e_c00449{bottom:547.257000px;}
.y1d_c00449{bottom:596.571000px;}
.y1c_c00449{bottom:613.009500px;}
.y1b_c00449{bottom:645.886500px;}
.y1a_c00449{bottom:662.325000px;}
.y19_c00449{bottom:678.763500px;}
.y18_c00449{bottom:695.202000px;}
.y17_c00449{bottom:711.640500px;}
.y16_c00449{bottom:728.079000px;}
.y15_c00449{bottom:744.516000px;}
.y14_c00449{bottom:760.954500px;}
.y13_c00449{bottom:793.831500px;}
.y12_c00449{bottom:810.270000px;}
.y11_c00449{bottom:843.147000px;}
.y10_c00449{bottom:859.585500px;}
.yf_c00449{bottom:876.024000px;}
.ye_c00449{bottom:892.462500px;}
.yd_c00449{bottom:925.338000px;}
.yc_c00449{bottom:941.776500px;}
.yb_c00449{bottom:958.215000px;}
.ya_c00449{bottom:974.653500px;}
.y9_c00449{bottom:991.092000px;}
.y8_c00449{bottom:1007.530500px;}
.y7_c00449{bottom:1023.969000px;}
.y6_c00449{bottom:1040.407500px;}
.y5_c00449{bottom:1056.472500px;}
.y4_c00449{bottom:1106.064000px;}
.y3_c00449{bottom:1123.998000px;}
.y2_c00449{bottom:1141.930500px;}
.y1_c00449{bottom:1159.863000px;}
.h3_c00449{height:35.190766px;}
.h4_c00449{height:36.007158px;}
.h2_c00449{height:52.332837px;}
.h0_c00449{height:1262.835000px;}
.h1_c00449{height:1263.000000px;}
.w0_c00449{width:892.920000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:127.558500px;}
.x2_c00449{left:137.122500px;}
.x3_c00449{left:143.770500px;}
.x6_c00449{left:230.185500px;}
.x4_c00449{left:243.480000px;}
.x5_c00449{left:276.715500px;}
.x7_c00449{left:435.249000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:0.078221pt;}
.ls2_c00449{letter-spacing:0.087539pt;}
.ls1_c00449{letter-spacing:0.092873pt;}
.ws0_c00449{word-spacing:-23.622682pt;}
.ws6_c00449{word-spacing:-23.544461pt;}
.ws3_c00449{word-spacing:-18.224916pt;}
.ws2_c00449{word-spacing:-17.852979pt;}
.ws4_c00449{word-spacing:-16.684034pt;}
.ws1_c00449{word-spacing:-14.664947pt;}
.wsa_c00449{word-spacing:0.000000pt;}
.ws7_c00449{word-spacing:0.039110pt;}
.wsb_c00449{word-spacing:0.047940pt;}
.wsc_c00449{word-spacing:0.050460pt;}
.ws5_c00449{word-spacing:0.156442pt;}
.ws9_c00449{word-spacing:0.189730pt;}
.ws8_c00449{word-spacing:0.195063pt;}
._2_c00449{margin-left:-3.347434pt;}
._3_c00449{width:0.893988pt;}
._1_c00449{width:17.162239pt;}
._0_c00449{width:24.058325pt;}
._4_c00449{width:94.999162pt;}
.fs0_c00449{font-size:39.110400pt;}
.fs1_c00449{font-size:53.133867pt;}
.y0_c00449{bottom:0.000000pt;}
.y39_c00449{bottom:39.333333pt;}
.y38_c00449{bottom:77.317333pt;}
.y37_c00449{bottom:91.929333pt;}
.y36_c00449{bottom:106.541333pt;}
.y35_c00449{bottom:121.153333pt;}
.y34_c00449{bottom:135.765333pt;}
.y33_c00449{bottom:150.377333pt;}
.y32_c00449{bottom:164.989333pt;}
.y31_c00449{bottom:179.601333pt;}
.y30_c00449{bottom:194.213333pt;}
.y2f_c00449{bottom:208.824000pt;}
.y2e_c00449{bottom:223.436000pt;}
.y2d_c00449{bottom:238.048000pt;}
.y2c_c00449{bottom:252.660000pt;}
.y2b_c00449{bottom:267.272000pt;}
.y2a_c00449{bottom:281.884000pt;}
.y29_c00449{bottom:296.496000pt;}
.y28_c00449{bottom:311.108000pt;}
.y27_c00449{bottom:325.720000pt;}
.y26_c00449{bottom:340.332000pt;}
.y25_c00449{bottom:354.942667pt;}
.y24_c00449{bottom:369.554667pt;}
.y23_c00449{bottom:384.166667pt;}
.y22_c00449{bottom:398.778667pt;}
.y21_c00449{bottom:428.002667pt;}
.y20_c00449{bottom:457.226667pt;}
.y1f_c00449{bottom:471.838667pt;}
.y1e_c00449{bottom:486.450667pt;}
.y1d_c00449{bottom:530.285333pt;}
.y1c_c00449{bottom:544.897333pt;}
.y1b_c00449{bottom:574.121333pt;}
.y1a_c00449{bottom:588.733333pt;}
.y19_c00449{bottom:603.345333pt;}
.y18_c00449{bottom:617.957333pt;}
.y17_c00449{bottom:632.569333pt;}
.y16_c00449{bottom:647.181333pt;}
.y15_c00449{bottom:661.792000pt;}
.y14_c00449{bottom:676.404000pt;}
.y13_c00449{bottom:705.628000pt;}
.y12_c00449{bottom:720.240000pt;}
.y11_c00449{bottom:749.464000pt;}
.y10_c00449{bottom:764.076000pt;}
.yf_c00449{bottom:778.688000pt;}
.ye_c00449{bottom:793.300000pt;}
.yd_c00449{bottom:822.522667pt;}
.yc_c00449{bottom:837.134667pt;}
.yb_c00449{bottom:851.746667pt;}
.ya_c00449{bottom:866.358667pt;}
.y9_c00449{bottom:880.970667pt;}
.y8_c00449{bottom:895.582667pt;}
.y7_c00449{bottom:910.194667pt;}
.y6_c00449{bottom:924.806667pt;}
.y5_c00449{bottom:939.086667pt;}
.y4_c00449{bottom:983.168000pt;}
.y3_c00449{bottom:999.109333pt;}
.y2_c00449{bottom:1015.049333pt;}
.y1_c00449{bottom:1030.989333pt;}
.h3_c00449{height:31.280681pt;}
.h4_c00449{height:32.006363pt;}
.h2_c00449{height:46.518078pt;}
.h0_c00449{height:1122.520000pt;}
.h1_c00449{height:1122.666667pt;}
.w0_c00449{width:793.706667pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:113.385333pt;}
.x2_c00449{left:121.886667pt;}
.x3_c00449{left:127.796000pt;}
.x6_c00449{left:204.609333pt;}
.x4_c00449{left:216.426667pt;}
.x5_c00449{left:245.969333pt;}
.x7_c00449{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.048828;font-style:normal;font-weight:normal;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_fb53047d2ffc5c9134cdefe1.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.083496;font-style:normal;font-weight:normal;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_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.014648;font-style:normal;font-weight:normal;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_ac971019d914e81c816d7ae8.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_85e26dc31ebacc22bfefb829.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.102051;font-style: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;}
.ls3_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:0.087998px;}
.ls1_c00450{letter-spacing:0.098482px;}
.ls2_c00450{letter-spacing:0.104482px;}
.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;}
}
.ws10_c00450{word-spacing:-33.713438px;}
.ws0_c00450{word-spacing:-26.575517px;}
.ws2_c00450{word-spacing:-26.487518px;}
.wsd_c00450{word-spacing:-21.553319px;}
.wsc_c00450{word-spacing:-21.519216px;}
.ws9_c00450{word-spacing:-18.769538px;}
.wsb_c00450{word-spacing:-16.019861px;}
.ws8_c00450{word-spacing:-14.943900px;}
.wse_c00450{word-spacing:-14.107042px;}
.wsf_c00450{word-spacing:-12.074671px;}
.ws6_c00450{word-spacing:-9.988424px;}
.ws7_c00450{word-spacing:-9.987499px;}
.wsa_c00450{word-spacing:-4.536144px;}
.ws1_c00450{word-spacing:0.000000px;}
.ws3_c00450{word-spacing:0.043999px;}
.ws11_c00450{word-spacing:0.175997px;}
.ws4_c00450{word-spacing:0.213446px;}
.ws12_c00450{word-spacing:0.219446px;}
.ws5_c00450{word-spacing:43.038600px;}
._5_c00450{margin-left:-3.825638px;}
._3_c00450{margin-left:-2.347817px;}
._2_c00450{margin-left:-1.075961px;}
._0_c00450{width:1.063690px;}
._1_c00450{width:19.935816px;}
._4_c00450{width:40.109428px;}
.fc5_c00450{color:rgb(0,0,207);}
.fc6_c00450{color:rgb(6,69,173);}
.fc4_c00450{color:rgb(207,92,0);}
.fc3_c00450{color:rgb(143,89,3);}
.fc2_c00450{color:rgb(79,153,5);}
.fc1_c00450{color:rgb(0,0,0);}
.fc0_c00450{color:rgb(33,74,135);}
.fs0_c00450{font-size:43.999200px;}
.fs2_c00450{font-size:59.775600px;}
.fs1_c00450{font-size:86.077200px;}
.y0_c00450{bottom:0.000000px;}
.y1e_c00450{bottom:44.250000px;}
.y1d_c00450{bottom:98.490000px;}
.y1c_c00450{bottom:114.927000px;}
.y1b_c00450{bottom:130.992000px;}
.y1a_c00450{bottom:175.986000px;}
.y19_c00450{bottom:193.918500px;}
.y18_c00450{bottom:211.852500px;}
.y17_c00450{bottom:229.785000px;}
.y16_c00450{bottom:247.717500px;}
.y15_c00450{bottom:265.650000px;}
.y14_c00450{bottom:292.518000px;}
.y13_c00450{bottom:319.384500px;}
.y12_c00450{bottom:346.252500px;}
.y11_c00450{bottom:373.119000px;}
.y10_c00450{bottom:415.359000px;}
.yf_c00450{bottom:880.411500px;}
.ye_c00450{bottom:896.848500px;}
.yd_c00450{bottom:913.287000px;}
.yc_c00450{bottom:929.725500px;}
.yb_c00450{bottom:946.164000px;}
.ya_c00450{bottom:962.602500px;}
.y9_c00450{bottom:979.041000px;}
.y8_c00450{bottom:995.479500px;}
.y7_c00450{bottom:1011.918000px;}
.y6_c00450{bottom:1028.356500px;}
.y5_c00450{bottom:1044.795000px;}
.y4_c00450{bottom:1077.670500px;}
.y3_c00450{bottom:1094.109000px;}
.y2_c00450{bottom:1110.547500px;}
.y1_c00450{bottom:1159.863000px;}
.h3_c00450{height:35.190766px;}
.h2_c00450{height:36.007158px;}
.h5_c00450{height:40.511979px;}
.h6_c00450{height:52.332837px;}
.h4_c00450{height:58.337477px;}
.h0_c00450{height:1262.835000px;}
.h1_c00450{height:1263.000000px;}
.w0_c00450{width:892.920000px;}
.w1_c00450{width:893.250000px;}
.x0_c00450{left:0.000000px;}
.x3_c00450{left:127.558500px;}
.x1_c00450{left:137.122500px;}
.x2_c00450{left:177.007500px;}
.x4_c00450{left:435.249000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls3_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:0.078221pt;}
.ls1_c00450{letter-spacing:0.087539pt;}
.ls2_c00450{letter-spacing:0.092873pt;}
.ws10_c00450{word-spacing:-29.967501pt;}
.ws0_c00450{word-spacing:-23.622682pt;}
.ws2_c00450{word-spacing:-23.544461pt;}
.wsd_c00450{word-spacing:-19.158506pt;}
.wsc_c00450{word-spacing:-19.128192pt;}
.ws9_c00450{word-spacing:-16.684034pt;}
.wsb_c00450{word-spacing:-14.239876pt;}
.ws8_c00450{word-spacing:-13.283467pt;}
.wse_c00450{word-spacing:-12.539593pt;}
.wsf_c00450{word-spacing:-10.733041pt;}
.ws6_c00450{word-spacing:-8.878599pt;}
.ws7_c00450{word-spacing:-8.877777pt;}
.wsa_c00450{word-spacing:-4.032128pt;}
.ws1_c00450{word-spacing:0.000000pt;}
.ws3_c00450{word-spacing:0.039110pt;}
.ws11_c00450{word-spacing:0.156442pt;}
.ws4_c00450{word-spacing:0.189730pt;}
.ws12_c00450{word-spacing:0.195063pt;}
.ws5_c00450{word-spacing:38.256533pt;}
._5_c00450{margin-left:-3.400567pt;}
._3_c00450{margin-left:-2.086948pt;}
._2_c00450{margin-left:-0.956410pt;}
._0_c00450{width:0.945502pt;}
._1_c00450{width:17.720725pt;}
._4_c00450{width:35.652825pt;}
.fs0_c00450{font-size:39.110400pt;}
.fs2_c00450{font-size:53.133867pt;}
.fs1_c00450{font-size:76.513067pt;}
.y0_c00450{bottom:0.000000pt;}
.y1e_c00450{bottom:39.333333pt;}
.y1d_c00450{bottom:87.546667pt;}
.y1c_c00450{bottom:102.157333pt;}
.y1b_c00450{bottom:116.437333pt;}
.y1a_c00450{bottom:156.432000pt;}
.y19_c00450{bottom:172.372000pt;}
.y18_c00450{bottom:188.313333pt;}
.y17_c00450{bottom:204.253333pt;}
.y16_c00450{bottom:220.193333pt;}
.y15_c00450{bottom:236.133333pt;}
.y14_c00450{bottom:260.016000pt;}
.y13_c00450{bottom:283.897333pt;}
.y12_c00450{bottom:307.780000pt;}
.y11_c00450{bottom:331.661333pt;}
.y10_c00450{bottom:369.208000pt;}
.yf_c00450{bottom:782.588000pt;}
.ye_c00450{bottom:797.198667pt;}
.yd_c00450{bottom:811.810667pt;}
.yc_c00450{bottom:826.422667pt;}
.yb_c00450{bottom:841.034667pt;}
.ya_c00450{bottom:855.646667pt;}
.y9_c00450{bottom:870.258667pt;}
.y8_c00450{bottom:884.870667pt;}
.y7_c00450{bottom:899.482667pt;}
.y6_c00450{bottom:914.094667pt;}
.y5_c00450{bottom:928.706667pt;}
.y4_c00450{bottom:957.929333pt;}
.y3_c00450{bottom:972.541333pt;}
.y2_c00450{bottom:987.153333pt;}
.y1_c00450{bottom:1030.989333pt;}
.h3_c00450{height:31.280681pt;}
.h2_c00450{height:32.006363pt;}
.h5_c00450{height:36.010648pt;}
.h6_c00450{height:46.518078pt;}
.h4_c00450{height:51.855535pt;}
.h0_c00450{height:1122.520000pt;}
.h1_c00450{height:1122.666667pt;}
.w0_c00450{width:793.706667pt;}
.w1_c00450{width:794.000000pt;}
.x0_c00450{left:0.000000pt;}
.x3_c00450{left:113.385333pt;}
.x1_c00450{left:121.886667pt;}
.x2_c00450{left:157.340000pt;}
.x4_c00450{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36c8964e4bbad318178fb7e9.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.014648;font-style:normal;font-weight:normal;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_c363e38adc3b73680f80b637.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.083496;font-style:normal;font-weight:normal;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_754d40453d9536399c563bd8.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.048828;font-style:normal;font-weight:normal;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_a61c52b818df373e5f9455bf.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_53899e1c4ce1cc9b0e1783ea.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls4_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:0.087998px;}
.ls2_c00451{letter-spacing:0.098482px;}
.ls1_c00451{letter-spacing:0.104482px;}
.ls3_c00451{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws5_c00451{word-spacing:-26.487518px;}
.ws0_c00451{word-spacing:0.000000px;}
.ws9_c00451{word-spacing:0.043999px;}
.ws6_c00451{word-spacing:0.056767px;}
.ws3_c00451{word-spacing:0.073250px;}
.ws8_c00451{word-spacing:0.083734px;}
.ws2_c00451{word-spacing:0.175997px;}
.ws7_c00451{word-spacing:0.202963px;}
.wsb_c00451{word-spacing:0.213446px;}
.wsa_c00451{word-spacing:0.219446px;}
.ws4_c00451{word-spacing:26.619516px;}
._2_c00451{margin-left:-2211.025037px;}
._1_c00451{width:1.030723px;}
._4_c00451{width:53.283031px;}
._0_c00451{width:79.858548px;}
._5_c00451{width:106.874057px;}
._3_c00451{width:133.452408px;}
.fc5_c00451{color:rgb(207,92,0);}
.fc4_c00451{color:rgb(0,0,207);}
.fc3_c00451{color:rgb(79,153,5);}
.fc2_c00451{color:rgb(33,74,135);}
.fc1_c00451{color:rgb(0,0,0);}
.fc0_c00451{color:rgb(143,89,3);}
.fs1_c00451{font-size:31.015800px;}
.fs0_c00451{font-size:43.999200px;}
.fs2_c00451{font-size:59.775600px;}
.y0_c00451{bottom:0.000000px;}
.y29_c00451{bottom:44.250000px;}
.y28_c00451{bottom:420.510000px;}
.y27_c00451{bottom:436.948500px;}
.y26_c00451{bottom:453.387000px;}
.y25_c00451{bottom:469.825500px;}
.y24_c00451{bottom:486.264000px;}
.y23_c00451{bottom:502.702500px;}
.y22_c00451{bottom:519.141000px;}
.y21_c00451{bottom:535.579500px;}
.y20_c00451{bottom:552.018000px;}
.y1f_c00451{bottom:568.455000px;}
.y1e_c00451{bottom:584.893500px;}
.y1d_c00451{bottom:617.770500px;}
.y1c_c00451{bottom:634.209000px;}
.y1b_c00451{bottom:650.647500px;}
.y1a_c00451{bottom:683.524500px;}
.y19_c00451{bottom:699.963000px;}
.y18_c00451{bottom:716.401500px;}
.y17_c00451{bottom:732.838500px;}
.y16_c00451{bottom:749.277000px;}
.y15_c00451{bottom:765.715500px;}
.y14_c00451{bottom:782.154000px;}
.y13_c00451{bottom:831.469500px;}
.y12_c00451{bottom:847.908000px;}
.y11_c00451{bottom:864.346500px;}
.y10_c00451{bottom:880.785000px;}
.yf_c00451{bottom:897.223500px;}
.ye_c00451{bottom:913.660500px;}
.yd_c00451{bottom:930.099000px;}
.yc_c00451{bottom:946.537500px;}
.yb_c00451{bottom:962.976000px;}
.ya_c00451{bottom:979.041000px;}
.y9_c00451{bottom:995.479500px;}
.y8_c00451{bottom:1011.918000px;}
.y7_c00451{bottom:1028.356500px;}
.y6_c00451{bottom:1044.795000px;}
.y5_c00451{bottom:1061.232000px;}
.y4_c00451{bottom:1077.670500px;}
.y3_c00451{bottom:1094.109000px;}
.y2_c00451{bottom:1126.986000px;}
.y1_c00451{bottom:1143.424500px;}
.h2_c00451{height:35.190766px;}
.h3_c00451{height:36.007158px;}
.h4_c00451{height:52.332837px;}
.h0_c00451{height:1262.835000px;}
.h1_c00451{height:1263.000000px;}
.w0_c00451{width:892.920000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:137.122500px;}
.x2_c00451{left:143.770500px;}
.x3_c00451{left:170.359500px;}
.x4_c00451{left:177.007500px;}
.x5_c00451{left:435.249000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls4_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:0.078221pt;}
.ls2_c00451{letter-spacing:0.087539pt;}
.ls1_c00451{letter-spacing:0.092873pt;}
.ls3_c00451{letter-spacing:23.724873pt;}
.ws1_c00451{word-spacing:-23.622682pt;}
.ws5_c00451{word-spacing:-23.544461pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.ws9_c00451{word-spacing:0.039110pt;}
.ws6_c00451{word-spacing:0.050460pt;}
.ws3_c00451{word-spacing:0.065111pt;}
.ws8_c00451{word-spacing:0.074430pt;}
.ws2_c00451{word-spacing:0.156442pt;}
.ws7_c00451{word-spacing:0.180412pt;}
.wsb_c00451{word-spacing:0.189730pt;}
.wsa_c00451{word-spacing:0.195063pt;}
.ws4_c00451{word-spacing:23.661792pt;}
._2_c00451{margin-left:-1965.355588pt;}
._1_c00451{width:0.916198pt;}
._4_c00451{width:47.362694pt;}
._0_c00451{width:70.985376pt;}
._5_c00451{width:94.999162pt;}
._3_c00451{width:118.624363pt;}
.fs1_c00451{font-size:27.569600pt;}
.fs0_c00451{font-size:39.110400pt;}
.fs2_c00451{font-size:53.133867pt;}
.y0_c00451{bottom:0.000000pt;}
.y29_c00451{bottom:39.333333pt;}
.y28_c00451{bottom:373.786667pt;}
.y27_c00451{bottom:388.398667pt;}
.y26_c00451{bottom:403.010667pt;}
.y25_c00451{bottom:417.622667pt;}
.y24_c00451{bottom:432.234667pt;}
.y23_c00451{bottom:446.846667pt;}
.y22_c00451{bottom:461.458667pt;}
.y21_c00451{bottom:476.070667pt;}
.y20_c00451{bottom:490.682667pt;}
.y1f_c00451{bottom:505.293333pt;}
.y1e_c00451{bottom:519.905333pt;}
.y1d_c00451{bottom:549.129333pt;}
.y1c_c00451{bottom:563.741333pt;}
.y1b_c00451{bottom:578.353333pt;}
.y1a_c00451{bottom:607.577333pt;}
.y19_c00451{bottom:622.189333pt;}
.y18_c00451{bottom:636.801333pt;}
.y17_c00451{bottom:651.412000pt;}
.y16_c00451{bottom:666.024000pt;}
.y15_c00451{bottom:680.636000pt;}
.y14_c00451{bottom:695.248000pt;}
.y13_c00451{bottom:739.084000pt;}
.y12_c00451{bottom:753.696000pt;}
.y11_c00451{bottom:768.308000pt;}
.y10_c00451{bottom:782.920000pt;}
.yf_c00451{bottom:797.532000pt;}
.ye_c00451{bottom:812.142667pt;}
.yd_c00451{bottom:826.754667pt;}
.yc_c00451{bottom:841.366667pt;}
.yb_c00451{bottom:855.978667pt;}
.ya_c00451{bottom:870.258667pt;}
.y9_c00451{bottom:884.870667pt;}
.y8_c00451{bottom:899.482667pt;}
.y7_c00451{bottom:914.094667pt;}
.y6_c00451{bottom:928.706667pt;}
.y5_c00451{bottom:943.317333pt;}
.y4_c00451{bottom:957.929333pt;}
.y3_c00451{bottom:972.541333pt;}
.y2_c00451{bottom:1001.765333pt;}
.y1_c00451{bottom:1016.377333pt;}
.h2_c00451{height:31.280681pt;}
.h3_c00451{height:32.006363pt;}
.h4_c00451{height:46.518078pt;}
.h0_c00451{height:1122.520000pt;}
.h1_c00451{height:1122.666667pt;}
.w0_c00451{width:793.706667pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:121.886667pt;}
.x2_c00451{left:127.796000pt;}
.x3_c00451{left:151.430667pt;}
.x4_c00451{left:157.340000pt;}
.x5_c00451{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_473925df243be6ac3b029e06.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:0.893555;font-style:normal;font-weight:normal;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_ff857a2f970ebf7600d2d0c1.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.083496;font-style:normal;font-weight:normal;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_c165dac5a83dfad90c91f365.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00452;src:url('chunks/assets/font_02cdd7f41469cb3c49a37786.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;line-height:1.000000;font-style: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.000000px;}
.ls0_c00452{letter-spacing:0.087998px;}
.ls2_c00452{letter-spacing:0.098482px;}
.ls1_c00452{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00452{word-spacing:-33.713438px;}
.ws2_c00452{word-spacing:-26.575517px;}
.wse_c00452{word-spacing:-26.487518px;}
.ws9_c00452{word-spacing:-21.553319px;}
.ws8_c00452{word-spacing:-21.519216px;}
.ws5_c00452{word-spacing:-18.769538px;}
.ws7_c00452{word-spacing:-17.633802px;}
.ws4_c00452{word-spacing:-14.943900px;}
.wsa_c00452{word-spacing:-14.107042px;}
.wsb_c00452{word-spacing:-12.074671px;}
.ws1_c00452{word-spacing:-9.988424px;}
.ws3_c00452{word-spacing:-9.987499px;}
.ws6_c00452{word-spacing:-7.686144px;}
.ws12_c00452{word-spacing:0.000000px;}
.wsf_c00452{word-spacing:0.043999px;}
.ws15_c00452{word-spacing:0.056767px;}
.ws13_c00452{word-spacing:0.073250px;}
.ws17_c00452{word-spacing:0.083734px;}
.wsd_c00452{word-spacing:0.175997px;}
.ws16_c00452{word-spacing:0.202963px;}
.ws10_c00452{word-spacing:0.213446px;}
.ws11_c00452{word-spacing:0.219446px;}
.ws14_c00452{word-spacing:26.619516px;}
.ws0_c00452{word-spacing:43.038600px;}
._7_c00452{margin-left:-2211.000050px;}
._4_c00452{margin-left:-3.825638px;}
._2_c00452{margin-left:-2.347817px;}
._1_c00452{margin-left:-1.075961px;}
._5_c00452{width:1.005737px;}
._0_c00452{width:19.935816px;}
._3_c00452{width:40.109428px;}
._9_c00452{width:53.283031px;}
._6_c00452{width:79.858548px;}
._8_c00452{width:133.452408px;}
.fc6_c00452{color:rgb(0,0,207);}
.fc5_c00452{color:rgb(79,153,5);}
.fc3_c00452{color:rgb(33,74,135);}
.fc2_c00452{color:rgb(143,89,3);}
.fc4_c00452{color:rgb(207,92,0);}
.fc1_c00452{color:rgb(6,69,173);}
.fc0_c00452{color:rgb(0,0,0);}
.fs3_c00452{font-size:31.015800px;}
.fs2_c00452{font-size:43.999200px;}
.fs1_c00452{font-size:59.775600px;}
.fs0_c00452{font-size:86.077200px;}
.y0_c00452{bottom:0.000000px;}
.y20_c00452{bottom:44.250000px;}
.y1f_c00452{bottom:86.982000px;}
.y1e_c00452{bottom:103.420500px;}
.y1d_c00452{bottom:119.859000px;}
.y1c_c00452{bottom:136.297500px;}
.y1b_c00452{bottom:152.736000px;}
.y1a_c00452{bottom:169.174500px;}
.y19_c00452{bottom:185.613000px;}
.y18_c00452{bottom:201.678000px;}
.y17_c00452{bottom:218.115000px;}
.y16_c00452{bottom:234.553500px;}
.y15_c00452{bottom:250.992000px;}
.y14_c00452{bottom:267.430500px;}
.y13_c00452{bottom:283.869000px;}
.y12_c00452{bottom:300.307500px;}
.y11_c00452{bottom:316.746000px;}
.y10_c00452{bottom:349.623000px;}
.yf_c00452{bottom:366.061500px;}
.ye_c00452{bottom:415.375500px;}
.yd_c00452{bottom:431.814000px;}
.yc_c00452{bottom:447.879000px;}
.yb_c00452{bottom:493.600500px;}
.ya_c00452{bottom:511.533000px;}
.y9_c00452{bottom:529.465500px;}
.y8_c00452{bottom:547.398000px;}
.y7_c00452{bottom:565.330500px;}
.y6_c00452{bottom:583.264500px;}
.y5_c00452{bottom:610.377000px;}
.y4_c00452{bottom:637.491000px;}
.y3_c00452{bottom:664.603500px;}
.y2_c00452{bottom:691.717500px;}
.y1_c00452{bottom:734.299500px;}
.h6_c00452{height:35.190766px;}
.h7_c00452{height:36.007158px;}
.h3_c00452{height:40.511979px;}
.h4_c00452{height:52.332837px;}
.h5_c00452{height:52.338837px;}
.h2_c00452{height:58.337477px;}
.h0_c00452{height:1262.835000px;}
.h1_c00452{height:1263.000000px;}
.w0_c00452{width:892.920000px;}
.w1_c00452{width:893.250000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:127.558500px;}
.x2_c00452{left:137.122500px;}
.x3_c00452{left:143.770500px;}
.x4_c00452{left:170.359500px;}
.x5_c00452{left:435.249000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls3_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.078221pt;}
.ls2_c00452{letter-spacing:0.087539pt;}
.ls1_c00452{letter-spacing:0.092873pt;}
.wsc_c00452{word-spacing:-29.967501pt;}
.ws2_c00452{word-spacing:-23.622682pt;}
.wse_c00452{word-spacing:-23.544461pt;}
.ws9_c00452{word-spacing:-19.158506pt;}
.ws8_c00452{word-spacing:-19.128192pt;}
.ws5_c00452{word-spacing:-16.684034pt;}
.ws7_c00452{word-spacing:-15.674491pt;}
.ws4_c00452{word-spacing:-13.283467pt;}
.wsa_c00452{word-spacing:-12.539593pt;}
.wsb_c00452{word-spacing:-10.733041pt;}
.ws1_c00452{word-spacing:-8.878599pt;}
.ws3_c00452{word-spacing:-8.877777pt;}
.ws6_c00452{word-spacing:-6.832128pt;}
.ws12_c00452{word-spacing:0.000000pt;}
.wsf_c00452{word-spacing:0.039110pt;}
.ws15_c00452{word-spacing:0.050460pt;}
.ws13_c00452{word-spacing:0.065111pt;}
.ws17_c00452{word-spacing:0.074430pt;}
.wsd_c00452{word-spacing:0.156442pt;}
.ws16_c00452{word-spacing:0.180412pt;}
.ws10_c00452{word-spacing:0.189730pt;}
.ws11_c00452{word-spacing:0.195063pt;}
.ws14_c00452{word-spacing:23.661792pt;}
.ws0_c00452{word-spacing:38.256533pt;}
._7_c00452{margin-left:-1965.333378pt;}
._4_c00452{margin-left:-3.400567pt;}
._2_c00452{margin-left:-2.086948pt;}
._1_c00452{margin-left:-0.956410pt;}
._5_c00452{width:0.893988pt;}
._0_c00452{width:17.720725pt;}
._3_c00452{width:35.652825pt;}
._9_c00452{width:47.362694pt;}
._6_c00452{width:70.985376pt;}
._8_c00452{width:118.624363pt;}
.fs3_c00452{font-size:27.569600pt;}
.fs2_c00452{font-size:39.110400pt;}
.fs1_c00452{font-size:53.133867pt;}
.fs0_c00452{font-size:76.513067pt;}
.y0_c00452{bottom:0.000000pt;}
.y20_c00452{bottom:39.333333pt;}
.y1f_c00452{bottom:77.317333pt;}
.y1e_c00452{bottom:91.929333pt;}
.y1d_c00452{bottom:106.541333pt;}
.y1c_c00452{bottom:121.153333pt;}
.y1b_c00452{bottom:135.765333pt;}
.y1a_c00452{bottom:150.377333pt;}
.y19_c00452{bottom:164.989333pt;}
.y18_c00452{bottom:179.269333pt;}
.y17_c00452{bottom:193.880000pt;}
.y16_c00452{bottom:208.492000pt;}
.y15_c00452{bottom:223.104000pt;}
.y14_c00452{bottom:237.716000pt;}
.y13_c00452{bottom:252.328000pt;}
.y12_c00452{bottom:266.940000pt;}
.y11_c00452{bottom:281.552000pt;}
.y10_c00452{bottom:310.776000pt;}
.yf_c00452{bottom:325.388000pt;}
.ye_c00452{bottom:369.222667pt;}
.yd_c00452{bottom:383.834667pt;}
.yc_c00452{bottom:398.114667pt;}
.yb_c00452{bottom:438.756000pt;}
.ya_c00452{bottom:454.696000pt;}
.y9_c00452{bottom:470.636000pt;}
.y8_c00452{bottom:486.576000pt;}
.y7_c00452{bottom:502.516000pt;}
.y6_c00452{bottom:518.457333pt;}
.y5_c00452{bottom:542.557333pt;}
.y4_c00452{bottom:566.658667pt;}
.y3_c00452{bottom:590.758667pt;}
.y2_c00452{bottom:614.860000pt;}
.y1_c00452{bottom:652.710667pt;}
.h6_c00452{height:31.280681pt;}
.h7_c00452{height:32.006363pt;}
.h3_c00452{height:36.010648pt;}
.h4_c00452{height:46.518078pt;}
.h5_c00452{height:46.523411pt;}
.h2_c00452{height:51.855535pt;}
.h0_c00452{height:1122.520000pt;}
.h1_c00452{height:1122.666667pt;}
.w0_c00452{width:793.706667pt;}
.w1_c00452{width:794.000000pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:113.385333pt;}
.x2_c00452{left:121.886667pt;}
.x3_c00452{left:127.796000pt;}
.x4_c00452{left:151.430667pt;}
.x5_c00452{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a19d5c8b9421cd38ef25ee70.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.048828;font-style:normal;font-weight:normal;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_290093c6ef63adbc341b5fd8.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.014648;font-style:normal;font-weight:normal;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_9e1f0f1edde6b3c0922e426d.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00453;src:url('chunks/assets/font_416a4663242b0f8166c791fd.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.102051;font-style: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;}
.ls4_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:0.087998px;}
.ls1_c00453{letter-spacing:0.098482px;}
.ls3_c00453{letter-spacing:0.104482px;}
.ls2_c00453{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00453{word-spacing:-26.575517px;}
.ws5_c00453{word-spacing:-26.487518px;}
.wsf_c00453{word-spacing:-21.553319px;}
.wse_c00453{word-spacing:-21.519216px;}
.wsb_c00453{word-spacing:-18.769538px;}
.wsd_c00453{word-spacing:-17.633802px;}
.wsa_c00453{word-spacing:-14.943900px;}
.ws10_c00453{word-spacing:-14.107042px;}
.ws8_c00453{word-spacing:-9.988424px;}
.ws9_c00453{word-spacing:-9.987499px;}
.wsc_c00453{word-spacing:-7.686144px;}
.ws4_c00453{word-spacing:0.000000px;}
.ws1_c00453{word-spacing:0.043999px;}
.ws0_c00453{word-spacing:0.073250px;}
.ws6_c00453{word-spacing:0.213446px;}
.ws2_c00453{word-spacing:0.219446px;}
.ws7_c00453{word-spacing:43.038600px;}
._4_c00453{margin-left:-2.347817px;}
._3_c00453{margin-left:-1.075961px;}
._1_c00453{width:1.182038px;}
._2_c00453{width:19.935816px;}
._0_c00453{width:79.858548px;}
.fc5_c00453{color:rgb(79,153,5);}
.fc4_c00453{color:rgb(143,89,3);}
.fc6_c00453{color:rgb(6,69,173);}
.fc3_c00453{color:rgb(207,92,0);}
.fc2_c00453{color:rgb(0,0,0);}
.fc1_c00453{color:rgb(0,0,207);}
.fc0_c00453{color:rgb(33,74,135);}
.fs0_c00453{font-size:43.999200px;}
.fs2_c00453{font-size:59.775600px;}
.fs1_c00453{font-size:86.077200px;}
.y0_c00453{bottom:0.000000px;}
.y20_c00453{bottom:44.250000px;}
.y1f_c00453{bottom:82.051500px;}
.y1e_c00453{bottom:99.984000px;}
.y1d_c00453{bottom:117.916500px;}
.y1c_c00453{bottom:144.757500px;}
.y1b_c00453{bottom:171.597000px;}
.y1a_c00453{bottom:198.438000px;}
.y19_c00453{bottom:225.277500px;}
.y18_c00453{bottom:267.492000px;}
.y17_c00453{bottom:732.465000px;}
.y16_c00453{bottom:748.903500px;}
.y15_c00453{bottom:765.342000px;}
.y14_c00453{bottom:781.780500px;}
.y13_c00453{bottom:798.219000px;}
.y12_c00453{bottom:814.657500px;}
.y11_c00453{bottom:831.096000px;}
.y10_c00453{bottom:847.534500px;}
.yf_c00453{bottom:863.973000px;}
.ye_c00453{bottom:880.411500px;}
.yd_c00453{bottom:896.848500px;}
.yc_c00453{bottom:929.725500px;}
.yb_c00453{bottom:946.164000px;}
.ya_c00453{bottom:962.602500px;}
.y9_c00453{bottom:995.479500px;}
.y8_c00453{bottom:1011.918000px;}
.y7_c00453{bottom:1028.356500px;}
.y6_c00453{bottom:1044.795000px;}
.y5_c00453{bottom:1061.232000px;}
.y4_c00453{bottom:1077.670500px;}
.y3_c00453{bottom:1094.109000px;}
.y2_c00453{bottom:1143.424500px;}
.y1_c00453{bottom:1159.863000px;}
.h3_c00453{height:35.190766px;}
.h2_c00453{height:36.007158px;}
.h5_c00453{height:40.511979px;}
.h6_c00453{height:52.332837px;}
.h4_c00453{height:58.337477px;}
.h0_c00453{height:1262.835000px;}
.h1_c00453{height:1263.000000px;}
.w0_c00453{width:892.920000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x4_c00453{left:127.558500px;}
.x2_c00453{left:137.122500px;}
.x1_c00453{left:143.770500px;}
.x3_c00453{left:177.007500px;}
.x5_c00453{left:435.249000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls4_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:0.078221pt;}
.ls1_c00453{letter-spacing:0.087539pt;}
.ls3_c00453{letter-spacing:0.092873pt;}
.ls2_c00453{letter-spacing:23.724873pt;}
.ws3_c00453{word-spacing:-23.622682pt;}
.ws5_c00453{word-spacing:-23.544461pt;}
.wsf_c00453{word-spacing:-19.158506pt;}
.wse_c00453{word-spacing:-19.128192pt;}
.wsb_c00453{word-spacing:-16.684034pt;}
.wsd_c00453{word-spacing:-15.674491pt;}
.wsa_c00453{word-spacing:-13.283467pt;}
.ws10_c00453{word-spacing:-12.539593pt;}
.ws8_c00453{word-spacing:-8.878599pt;}
.ws9_c00453{word-spacing:-8.877777pt;}
.wsc_c00453{word-spacing:-6.832128pt;}
.ws4_c00453{word-spacing:0.000000pt;}
.ws1_c00453{word-spacing:0.039110pt;}
.ws0_c00453{word-spacing:0.065111pt;}
.ws6_c00453{word-spacing:0.189730pt;}
.ws2_c00453{word-spacing:0.195063pt;}
.ws7_c00453{word-spacing:38.256533pt;}
._4_c00453{margin-left:-2.086948pt;}
._3_c00453{margin-left:-0.956410pt;}
._1_c00453{width:1.050701pt;}
._2_c00453{width:17.720725pt;}
._0_c00453{width:70.985376pt;}
.fs0_c00453{font-size:39.110400pt;}
.fs2_c00453{font-size:53.133867pt;}
.fs1_c00453{font-size:76.513067pt;}
.y0_c00453{bottom:0.000000pt;}
.y20_c00453{bottom:39.333333pt;}
.y1f_c00453{bottom:72.934667pt;}
.y1e_c00453{bottom:88.874667pt;}
.y1d_c00453{bottom:104.814667pt;}
.y1c_c00453{bottom:128.673333pt;}
.y1b_c00453{bottom:152.530667pt;}
.y1a_c00453{bottom:176.389333pt;}
.y19_c00453{bottom:200.246667pt;}
.y18_c00453{bottom:237.770667pt;}
.y17_c00453{bottom:651.080000pt;}
.y16_c00453{bottom:665.692000pt;}
.y15_c00453{bottom:680.304000pt;}
.y14_c00453{bottom:694.916000pt;}
.y13_c00453{bottom:709.528000pt;}
.y12_c00453{bottom:724.140000pt;}
.y11_c00453{bottom:738.752000pt;}
.y10_c00453{bottom:753.364000pt;}
.yf_c00453{bottom:767.976000pt;}
.ye_c00453{bottom:782.588000pt;}
.yd_c00453{bottom:797.198667pt;}
.yc_c00453{bottom:826.422667pt;}
.yb_c00453{bottom:841.034667pt;}
.ya_c00453{bottom:855.646667pt;}
.y9_c00453{bottom:884.870667pt;}
.y8_c00453{bottom:899.482667pt;}
.y7_c00453{bottom:914.094667pt;}
.y6_c00453{bottom:928.706667pt;}
.y5_c00453{bottom:943.317333pt;}
.y4_c00453{bottom:957.929333pt;}
.y3_c00453{bottom:972.541333pt;}
.y2_c00453{bottom:1016.377333pt;}
.y1_c00453{bottom:1030.989333pt;}
.h3_c00453{height:31.280681pt;}
.h2_c00453{height:32.006363pt;}
.h5_c00453{height:36.010648pt;}
.h6_c00453{height:46.518078pt;}
.h4_c00453{height:51.855535pt;}
.h0_c00453{height:1122.520000pt;}
.h1_c00453{height:1122.666667pt;}
.w0_c00453{width:793.706667pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x4_c00453{left:113.385333pt;}
.x2_c00453{left:121.886667pt;}
.x1_c00453{left:127.796000pt;}
.x3_c00453{left:157.340000pt;}
.x5_c00453{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04d1740ffa8c32af2b6b3f33.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.102051;font-style:normal;font-weight:normal;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_a4292f6ae9df1e6ed5c20406.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_6b2b5ee248dab8fd7b8ecf9c.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_8548830cc3f14125068c068a.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls4_c00454{letter-spacing:0.000000px;}
.ls1_c00454{letter-spacing:0.087998px;}
.ls2_c00454{letter-spacing:0.098482px;}
.ls0_c00454{letter-spacing:0.104482px;}
.ls3_c00454{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00454{word-spacing:-33.713438px;}
.ws5_c00454{word-spacing:-26.575517px;}
.ws4_c00454{word-spacing:-26.487518px;}
.ws1_c00454{word-spacing:-18.769538px;}
.ws0_c00454{word-spacing:-12.074671px;}
.ws9_c00454{word-spacing:0.000000px;}
.ws6_c00454{word-spacing:0.043999px;}
.wsc_c00454{word-spacing:0.056767px;}
.wsa_c00454{word-spacing:0.073250px;}
.wse_c00454{word-spacing:0.083734px;}
.ws3_c00454{word-spacing:0.175997px;}
.wsd_c00454{word-spacing:0.202963px;}
.ws7_c00454{word-spacing:0.213446px;}
.ws8_c00454{word-spacing:0.219446px;}
.wsb_c00454{word-spacing:26.619516px;}
._4_c00454{margin-left:-2211.000050px;}
._1_c00454{margin-left:-3.825638px;}
._2_c00454{width:1.005737px;}
._0_c00454{width:40.109428px;}
._6_c00454{width:53.283031px;}
._3_c00454{width:79.858548px;}
._5_c00454{width:133.452408px;}
.fc5_c00454{color:rgb(0,0,207);}
.fc4_c00454{color:rgb(79,153,5);}
.fc3_c00454{color:rgb(207,92,0);}
.fc2_c00454{color:rgb(33,74,135);}
.fc1_c00454{color:rgb(143,89,3);}
.fc0_c00454{color:rgb(0,0,0);}
.fs2_c00454{font-size:31.015800px;}
.fs1_c00454{font-size:43.999200px;}
.fs0_c00454{font-size:59.775600px;}
.y0_c00454{bottom:0.000000px;}
.y2f_c00454{bottom:44.250000px;}
.y2e_c00454{bottom:96.919500px;}
.y2d_c00454{bottom:113.358000px;}
.y2c_c00454{bottom:129.796500px;}
.y2b_c00454{bottom:146.235000px;}
.y2a_c00454{bottom:162.673500px;}
.y29_c00454{bottom:179.112000px;}
.y28_c00454{bottom:195.550500px;}
.y27_c00454{bottom:211.989000px;}
.y26_c00454{bottom:228.427500px;}
.y25_c00454{bottom:244.866000px;}
.y24_c00454{bottom:261.304500px;}
.y23_c00454{bottom:294.180000px;}
.y22_c00454{bottom:310.618500px;}
.y21_c00454{bottom:327.057000px;}
.y20_c00454{bottom:359.934000px;}
.y1f_c00454{bottom:376.372500px;}
.y1e_c00454{bottom:392.811000px;}
.y1d_c00454{bottom:409.249500px;}
.y1c_c00454{bottom:425.688000px;}
.y1b_c00454{bottom:442.125000px;}
.y1a_c00454{bottom:458.563500px;}
.y19_c00454{bottom:507.879000px;}
.y18_c00454{bottom:524.317500px;}
.y17_c00454{bottom:540.756000px;}
.y16_c00454{bottom:557.194500px;}
.y15_c00454{bottom:573.633000px;}
.y14_c00454{bottom:590.071500px;}
.y13_c00454{bottom:606.508500px;}
.y12_c00454{bottom:622.947000px;}
.y11_c00454{bottom:639.385500px;}
.y10_c00454{bottom:655.450500px;}
.yf_c00454{bottom:671.889000px;}
.ye_c00454{bottom:688.327500px;}
.yd_c00454{bottom:704.766000px;}
.yc_c00454{bottom:721.204500px;}
.yb_c00454{bottom:737.643000px;}
.ya_c00454{bottom:754.081500px;}
.y9_c00454{bottom:770.518500px;}
.y8_c00454{bottom:803.395500px;}
.y7_c00454{bottom:819.834000px;}
.y6_c00454{bottom:869.149500px;}
.y5_c00454{bottom:885.588000px;}
.y4_c00454{bottom:901.653000px;}
.y3_c00454{bottom:1123.998000px;}
.y2_c00454{bottom:1141.930500px;}
.y1_c00454{bottom:1159.863000px;}
.h3_c00454{height:35.190766px;}
.h4_c00454{height:36.007158px;}
.h2_c00454{height:52.332837px;}
.h0_c00454{height:1262.835000px;}
.h1_c00454{height:1263.000000px;}
.w0_c00454{width:892.920000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:127.558500px;}
.x2_c00454{left:137.122500px;}
.x3_c00454{left:143.770500px;}
.x4_c00454{left:170.359500px;}
.x5_c00454{left:177.007500px;}
.x6_c00454{left:435.249000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls4_c00454{letter-spacing:0.000000pt;}
.ls1_c00454{letter-spacing:0.078221pt;}
.ls2_c00454{letter-spacing:0.087539pt;}
.ls0_c00454{letter-spacing:0.092873pt;}
.ls3_c00454{letter-spacing:23.724873pt;}
.ws2_c00454{word-spacing:-29.967501pt;}
.ws5_c00454{word-spacing:-23.622682pt;}
.ws4_c00454{word-spacing:-23.544461pt;}
.ws1_c00454{word-spacing:-16.684034pt;}
.ws0_c00454{word-spacing:-10.733041pt;}
.ws9_c00454{word-spacing:0.000000pt;}
.ws6_c00454{word-spacing:0.039110pt;}
.wsc_c00454{word-spacing:0.050460pt;}
.wsa_c00454{word-spacing:0.065111pt;}
.wse_c00454{word-spacing:0.074430pt;}
.ws3_c00454{word-spacing:0.156442pt;}
.wsd_c00454{word-spacing:0.180412pt;}
.ws7_c00454{word-spacing:0.189730pt;}
.ws8_c00454{word-spacing:0.195063pt;}
.wsb_c00454{word-spacing:23.661792pt;}
._4_c00454{margin-left:-1965.333378pt;}
._1_c00454{margin-left:-3.400567pt;}
._2_c00454{width:0.893988pt;}
._0_c00454{width:35.652825pt;}
._6_c00454{width:47.362694pt;}
._3_c00454{width:70.985376pt;}
._5_c00454{width:118.624363pt;}
.fs2_c00454{font-size:27.569600pt;}
.fs1_c00454{font-size:39.110400pt;}
.fs0_c00454{font-size:53.133867pt;}
.y0_c00454{bottom:0.000000pt;}
.y2f_c00454{bottom:39.333333pt;}
.y2e_c00454{bottom:86.150667pt;}
.y2d_c00454{bottom:100.762667pt;}
.y2c_c00454{bottom:115.374667pt;}
.y2b_c00454{bottom:129.986667pt;}
.y2a_c00454{bottom:144.598667pt;}
.y29_c00454{bottom:159.210667pt;}
.y28_c00454{bottom:173.822667pt;}
.y27_c00454{bottom:188.434667pt;}
.y26_c00454{bottom:203.046667pt;}
.y25_c00454{bottom:217.658667pt;}
.y24_c00454{bottom:232.270667pt;}
.y23_c00454{bottom:261.493333pt;}
.y22_c00454{bottom:276.105333pt;}
.y21_c00454{bottom:290.717333pt;}
.y20_c00454{bottom:319.941333pt;}
.y1f_c00454{bottom:334.553333pt;}
.y1e_c00454{bottom:349.165333pt;}
.y1d_c00454{bottom:363.777333pt;}
.y1c_c00454{bottom:378.389333pt;}
.y1b_c00454{bottom:393.000000pt;}
.y1a_c00454{bottom:407.612000pt;}
.y19_c00454{bottom:451.448000pt;}
.y18_c00454{bottom:466.060000pt;}
.y17_c00454{bottom:480.672000pt;}
.y16_c00454{bottom:495.284000pt;}
.y15_c00454{bottom:509.896000pt;}
.y14_c00454{bottom:524.508000pt;}
.y13_c00454{bottom:539.118667pt;}
.y12_c00454{bottom:553.730667pt;}
.y11_c00454{bottom:568.342667pt;}
.y10_c00454{bottom:582.622667pt;}
.yf_c00454{bottom:597.234667pt;}
.ye_c00454{bottom:611.846667pt;}
.yd_c00454{bottom:626.458667pt;}
.yc_c00454{bottom:641.070667pt;}
.yb_c00454{bottom:655.682667pt;}
.ya_c00454{bottom:670.294667pt;}
.y9_c00454{bottom:684.905333pt;}
.y8_c00454{bottom:714.129333pt;}
.y7_c00454{bottom:728.741333pt;}
.y6_c00454{bottom:772.577333pt;}
.y5_c00454{bottom:787.189333pt;}
.y4_c00454{bottom:801.469333pt;}
.y3_c00454{bottom:999.109333pt;}
.y2_c00454{bottom:1015.049333pt;}
.y1_c00454{bottom:1030.989333pt;}
.h3_c00454{height:31.280681pt;}
.h4_c00454{height:32.006363pt;}
.h2_c00454{height:46.518078pt;}
.h0_c00454{height:1122.520000pt;}
.h1_c00454{height:1122.666667pt;}
.w0_c00454{width:793.706667pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:113.385333pt;}
.x2_c00454{left:121.886667pt;}
.x3_c00454{left:127.796000pt;}
.x4_c00454{left:151.430667pt;}
.x5_c00454{left:157.340000pt;}
.x6_c00454{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7b352c588316a88ed0fa5c2.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.893555;font-style:normal;font-weight:normal;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_76102df1aa371864b38a1d67.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.083496;font-style:normal;font-weight:normal;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_3a79579be82065f002977562.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00455;src:url('chunks/assets/font_81dce7cc991a5d75af3f6fc7.woff2')format("woff");}.ff6_c00455{font-family:ff6_c00455;line-height:1.000000;font-style: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;}
.ls3_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.087998px;}
.ls2_c00455{letter-spacing:0.098482px;}
.ls1_c00455{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00455{word-spacing:-33.713438px;}
.ws2_c00455{word-spacing:-26.575517px;}
.wse_c00455{word-spacing:-26.487518px;}
.ws9_c00455{word-spacing:-21.553319px;}
.ws8_c00455{word-spacing:-21.519216px;}
.ws7_c00455{word-spacing:-19.247743px;}
.ws5_c00455{word-spacing:-18.769538px;}
.ws4_c00455{word-spacing:-14.943900px;}
.wsa_c00455{word-spacing:-14.107042px;}
.wsb_c00455{word-spacing:-12.074671px;}
.ws6_c00455{word-spacing:-10.230144px;}
.ws1_c00455{word-spacing:-9.988424px;}
.ws3_c00455{word-spacing:-9.987499px;}
.ws12_c00455{word-spacing:0.000000px;}
.wsf_c00455{word-spacing:0.043999px;}
.ws15_c00455{word-spacing:0.056767px;}
.ws13_c00455{word-spacing:0.073250px;}
.ws17_c00455{word-spacing:0.083734px;}
.wsd_c00455{word-spacing:0.175997px;}
.ws16_c00455{word-spacing:0.202963px;}
.ws10_c00455{word-spacing:0.213446px;}
.ws11_c00455{word-spacing:0.219446px;}
.ws14_c00455{word-spacing:26.619516px;}
.ws0_c00455{word-spacing:43.038600px;}
._7_c00455{margin-left:-2211.000050px;}
._4_c00455{margin-left:-3.825638px;}
._2_c00455{margin-left:-2.347817px;}
._1_c00455{margin-left:-1.075961px;}
._5_c00455{width:1.005737px;}
._0_c00455{width:19.935816px;}
._3_c00455{width:40.109428px;}
._9_c00455{width:53.283031px;}
._6_c00455{width:79.858548px;}
._8_c00455{width:133.452408px;}
.fc6_c00455{color:rgb(0,0,207);}
.fc5_c00455{color:rgb(79,153,5);}
.fc3_c00455{color:rgb(33,74,135);}
.fc2_c00455{color:rgb(143,89,3);}
.fc4_c00455{color:rgb(207,92,0);}
.fc1_c00455{color:rgb(6,69,173);}
.fc0_c00455{color:rgb(0,0,0);}
.fs3_c00455{font-size:31.015800px;}
.fs2_c00455{font-size:43.999200px;}
.fs1_c00455{font-size:59.775600px;}
.fs0_c00455{font-size:86.077200px;}
.y0_c00455{bottom:0.000000px;}
.y20_c00455{bottom:44.250000px;}
.y1f_c00455{bottom:86.982000px;}
.y1e_c00455{bottom:103.420500px;}
.y1d_c00455{bottom:119.859000px;}
.y1c_c00455{bottom:136.297500px;}
.y1b_c00455{bottom:152.736000px;}
.y1a_c00455{bottom:169.174500px;}
.y19_c00455{bottom:185.613000px;}
.y18_c00455{bottom:201.678000px;}
.y17_c00455{bottom:218.115000px;}
.y16_c00455{bottom:234.553500px;}
.y15_c00455{bottom:250.992000px;}
.y14_c00455{bottom:267.430500px;}
.y13_c00455{bottom:283.869000px;}
.y12_c00455{bottom:300.307500px;}
.y11_c00455{bottom:316.746000px;}
.y10_c00455{bottom:349.623000px;}
.yf_c00455{bottom:366.061500px;}
.ye_c00455{bottom:415.375500px;}
.yd_c00455{bottom:431.814000px;}
.yc_c00455{bottom:447.879000px;}
.yb_c00455{bottom:493.600500px;}
.ya_c00455{bottom:511.533000px;}
.y9_c00455{bottom:529.465500px;}
.y8_c00455{bottom:547.398000px;}
.y7_c00455{bottom:565.330500px;}
.y6_c00455{bottom:583.264500px;}
.y5_c00455{bottom:610.377000px;}
.y4_c00455{bottom:637.491000px;}
.y3_c00455{bottom:664.603500px;}
.y2_c00455{bottom:691.717500px;}
.y1_c00455{bottom:734.299500px;}
.h6_c00455{height:35.190766px;}
.h7_c00455{height:36.007158px;}
.h3_c00455{height:40.511979px;}
.h4_c00455{height:52.332837px;}
.h5_c00455{height:52.338837px;}
.h2_c00455{height:58.337477px;}
.h0_c00455{height:1262.835000px;}
.h1_c00455{height:1263.000000px;}
.w0_c00455{width:892.920000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:127.558500px;}
.x2_c00455{left:137.122500px;}
.x3_c00455{left:143.770500px;}
.x4_c00455{left:170.359500px;}
.x5_c00455{left:435.249000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls3_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.078221pt;}
.ls2_c00455{letter-spacing:0.087539pt;}
.ls1_c00455{letter-spacing:0.092873pt;}
.wsc_c00455{word-spacing:-29.967501pt;}
.ws2_c00455{word-spacing:-23.622682pt;}
.wse_c00455{word-spacing:-23.544461pt;}
.ws9_c00455{word-spacing:-19.158506pt;}
.ws8_c00455{word-spacing:-19.128192pt;}
.ws7_c00455{word-spacing:-17.109105pt;}
.ws5_c00455{word-spacing:-16.684034pt;}
.ws4_c00455{word-spacing:-13.283467pt;}
.wsa_c00455{word-spacing:-12.539593pt;}
.wsb_c00455{word-spacing:-10.733041pt;}
.ws6_c00455{word-spacing:-9.093461pt;}
.ws1_c00455{word-spacing:-8.878599pt;}
.ws3_c00455{word-spacing:-8.877777pt;}
.ws12_c00455{word-spacing:0.000000pt;}
.wsf_c00455{word-spacing:0.039110pt;}
.ws15_c00455{word-spacing:0.050460pt;}
.ws13_c00455{word-spacing:0.065111pt;}
.ws17_c00455{word-spacing:0.074430pt;}
.wsd_c00455{word-spacing:0.156442pt;}
.ws16_c00455{word-spacing:0.180412pt;}
.ws10_c00455{word-spacing:0.189730pt;}
.ws11_c00455{word-spacing:0.195063pt;}
.ws14_c00455{word-spacing:23.661792pt;}
.ws0_c00455{word-spacing:38.256533pt;}
._7_c00455{margin-left:-1965.333378pt;}
._4_c00455{margin-left:-3.400567pt;}
._2_c00455{margin-left:-2.086948pt;}
._1_c00455{margin-left:-0.956410pt;}
._5_c00455{width:0.893988pt;}
._0_c00455{width:17.720725pt;}
._3_c00455{width:35.652825pt;}
._9_c00455{width:47.362694pt;}
._6_c00455{width:70.985376pt;}
._8_c00455{width:118.624363pt;}
.fs3_c00455{font-size:27.569600pt;}
.fs2_c00455{font-size:39.110400pt;}
.fs1_c00455{font-size:53.133867pt;}
.fs0_c00455{font-size:76.513067pt;}
.y0_c00455{bottom:0.000000pt;}
.y20_c00455{bottom:39.333333pt;}
.y1f_c00455{bottom:77.317333pt;}
.y1e_c00455{bottom:91.929333pt;}
.y1d_c00455{bottom:106.541333pt;}
.y1c_c00455{bottom:121.153333pt;}
.y1b_c00455{bottom:135.765333pt;}
.y1a_c00455{bottom:150.377333pt;}
.y19_c00455{bottom:164.989333pt;}
.y18_c00455{bottom:179.269333pt;}
.y17_c00455{bottom:193.880000pt;}
.y16_c00455{bottom:208.492000pt;}
.y15_c00455{bottom:223.104000pt;}
.y14_c00455{bottom:237.716000pt;}
.y13_c00455{bottom:252.328000pt;}
.y12_c00455{bottom:266.940000pt;}
.y11_c00455{bottom:281.552000pt;}
.y10_c00455{bottom:310.776000pt;}
.yf_c00455{bottom:325.388000pt;}
.ye_c00455{bottom:369.222667pt;}
.yd_c00455{bottom:383.834667pt;}
.yc_c00455{bottom:398.114667pt;}
.yb_c00455{bottom:438.756000pt;}
.ya_c00455{bottom:454.696000pt;}
.y9_c00455{bottom:470.636000pt;}
.y8_c00455{bottom:486.576000pt;}
.y7_c00455{bottom:502.516000pt;}
.y6_c00455{bottom:518.457333pt;}
.y5_c00455{bottom:542.557333pt;}
.y4_c00455{bottom:566.658667pt;}
.y3_c00455{bottom:590.758667pt;}
.y2_c00455{bottom:614.860000pt;}
.y1_c00455{bottom:652.710667pt;}
.h6_c00455{height:31.280681pt;}
.h7_c00455{height:32.006363pt;}
.h3_c00455{height:36.010648pt;}
.h4_c00455{height:46.518078pt;}
.h5_c00455{height:46.523411pt;}
.h2_c00455{height:51.855535pt;}
.h0_c00455{height:1122.520000pt;}
.h1_c00455{height:1122.666667pt;}
.w0_c00455{width:793.706667pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:113.385333pt;}
.x2_c00455{left:121.886667pt;}
.x3_c00455{left:127.796000pt;}
.x4_c00455{left:151.430667pt;}
.x5_c00455{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d67a3f659dab84c90b73a1f.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.048828;font-style:normal;font-weight:normal;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_78b830915e0492961ae65a03.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.014648;font-style:normal;font-weight:normal;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_0828937e68d1011ebe845bb7.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_5e4e901307dfc862e0a1714b.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.102051;font-style: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;}
.ls4_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.087998px;}
.ls1_c00456{letter-spacing:0.098482px;}
.ls3_c00456{letter-spacing:0.104482px;}
.ls2_c00456{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00456{word-spacing:-26.575517px;}
.ws5_c00456{word-spacing:-26.487518px;}
.wsb_c00456{word-spacing:-18.769538px;}
.wsf_c00456{word-spacing:-17.334924px;}
.wsa_c00456{word-spacing:-14.943900px;}
.wsd_c00456{word-spacing:-13.748388px;}
.wse_c00456{word-spacing:-11.716018px;}
.ws8_c00456{word-spacing:-9.988424px;}
.ws9_c00456{word-spacing:-9.987499px;}
.ws4_c00456{word-spacing:0.000000px;}
.ws1_c00456{word-spacing:0.043999px;}
.ws0_c00456{word-spacing:0.073250px;}
.wsc_c00456{word-spacing:0.089856px;}
.ws6_c00456{word-spacing:0.213446px;}
.ws2_c00456{word-spacing:0.219446px;}
.ws7_c00456{word-spacing:43.038600px;}
._3_c00456{margin-left:-7.833025px;}
._5_c00456{margin-left:-4.124516px;}
._6_c00456{margin-left:-1.075961px;}
._2_c00456{width:1.020816px;}
._4_c00456{width:19.935816px;}
._7_c00456{width:21.220338px;}
._9_c00456{width:24.627547px;}
._8_c00456{width:41.927369px;}
._1_c00456{width:53.723023px;}
._0_c00456{width:79.858548px;}
.fc5_c00456{color:rgb(79,153,5);}
.fc4_c00456{color:rgb(143,89,3);}
.fc6_c00456{color:rgb(6,69,173);}
.fc3_c00456{color:rgb(207,92,0);}
.fc2_c00456{color:rgb(0,0,0);}
.fc1_c00456{color:rgb(0,0,207);}
.fc0_c00456{color:rgb(33,74,135);}
.fs0_c00456{font-size:43.999200px;}
.fs2_c00456{font-size:59.775600px;}
.fs1_c00456{font-size:86.077200px;}
.y0_c00456{bottom:0.000000px;}
.y20_c00456{bottom:44.250000px;}
.y1f_c00456{bottom:82.051500px;}
.y1e_c00456{bottom:99.984000px;}
.y1d_c00456{bottom:117.916500px;}
.y1c_c00456{bottom:144.757500px;}
.y1b_c00456{bottom:171.597000px;}
.y1a_c00456{bottom:198.438000px;}
.y19_c00456{bottom:225.277500px;}
.y18_c00456{bottom:267.492000px;}
.y17_c00456{bottom:732.465000px;}
.y16_c00456{bottom:748.903500px;}
.y15_c00456{bottom:765.342000px;}
.y14_c00456{bottom:781.780500px;}
.y13_c00456{bottom:798.219000px;}
.y12_c00456{bottom:814.657500px;}
.y11_c00456{bottom:831.096000px;}
.y10_c00456{bottom:847.534500px;}
.yf_c00456{bottom:863.973000px;}
.ye_c00456{bottom:880.411500px;}
.yd_c00456{bottom:896.848500px;}
.yc_c00456{bottom:929.725500px;}
.yb_c00456{bottom:946.164000px;}
.ya_c00456{bottom:962.602500px;}
.y9_c00456{bottom:995.479500px;}
.y8_c00456{bottom:1011.918000px;}
.y7_c00456{bottom:1028.356500px;}
.y6_c00456{bottom:1044.795000px;}
.y5_c00456{bottom:1061.232000px;}
.y4_c00456{bottom:1077.670500px;}
.y3_c00456{bottom:1094.109000px;}
.y2_c00456{bottom:1143.424500px;}
.y1_c00456{bottom:1159.863000px;}
.h3_c00456{height:35.190766px;}
.h2_c00456{height:36.007158px;}
.h5_c00456{height:40.511979px;}
.h6_c00456{height:52.332837px;}
.h4_c00456{height:58.337477px;}
.h0_c00456{height:1262.835000px;}
.h1_c00456{height:1263.000000px;}
.w0_c00456{width:892.920000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x4_c00456{left:127.558500px;}
.x2_c00456{left:137.122500px;}
.x1_c00456{left:143.770500px;}
.x3_c00456{left:177.007500px;}
.x5_c00456{left:435.249000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls4_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.078221pt;}
.ls1_c00456{letter-spacing:0.087539pt;}
.ls3_c00456{letter-spacing:0.092873pt;}
.ls2_c00456{letter-spacing:23.724873pt;}
.ws3_c00456{word-spacing:-23.622682pt;}
.ws5_c00456{word-spacing:-23.544461pt;}
.wsb_c00456{word-spacing:-16.684034pt;}
.wsf_c00456{word-spacing:-15.408821pt;}
.wsa_c00456{word-spacing:-13.283467pt;}
.wsd_c00456{word-spacing:-12.220789pt;}
.wse_c00456{word-spacing:-10.414238pt;}
.ws8_c00456{word-spacing:-8.878599pt;}
.ws9_c00456{word-spacing:-8.877777pt;}
.ws4_c00456{word-spacing:0.000000pt;}
.ws1_c00456{word-spacing:0.039110pt;}
.ws0_c00456{word-spacing:0.065111pt;}
.wsc_c00456{word-spacing:0.079872pt;}
.ws6_c00456{word-spacing:0.189730pt;}
.ws2_c00456{word-spacing:0.195063pt;}
.ws7_c00456{word-spacing:38.256533pt;}
._3_c00456{margin-left:-6.962689pt;}
._5_c00456{margin-left:-3.666237pt;}
._6_c00456{margin-left:-0.956410pt;}
._2_c00456{width:0.907392pt;}
._4_c00456{width:17.720725pt;}
._7_c00456{width:18.862523pt;}
._9_c00456{width:21.891153pt;}
._8_c00456{width:37.268772pt;}
._1_c00456{width:47.753798pt;}
._0_c00456{width:70.985376pt;}
.fs0_c00456{font-size:39.110400pt;}
.fs2_c00456{font-size:53.133867pt;}
.fs1_c00456{font-size:76.513067pt;}
.y0_c00456{bottom:0.000000pt;}
.y20_c00456{bottom:39.333333pt;}
.y1f_c00456{bottom:72.934667pt;}
.y1e_c00456{bottom:88.874667pt;}
.y1d_c00456{bottom:104.814667pt;}
.y1c_c00456{bottom:128.673333pt;}
.y1b_c00456{bottom:152.530667pt;}
.y1a_c00456{bottom:176.389333pt;}
.y19_c00456{bottom:200.246667pt;}
.y18_c00456{bottom:237.770667pt;}
.y17_c00456{bottom:651.080000pt;}
.y16_c00456{bottom:665.692000pt;}
.y15_c00456{bottom:680.304000pt;}
.y14_c00456{bottom:694.916000pt;}
.y13_c00456{bottom:709.528000pt;}
.y12_c00456{bottom:724.140000pt;}
.y11_c00456{bottom:738.752000pt;}
.y10_c00456{bottom:753.364000pt;}
.yf_c00456{bottom:767.976000pt;}
.ye_c00456{bottom:782.588000pt;}
.yd_c00456{bottom:797.198667pt;}
.yc_c00456{bottom:826.422667pt;}
.yb_c00456{bottom:841.034667pt;}
.ya_c00456{bottom:855.646667pt;}
.y9_c00456{bottom:884.870667pt;}
.y8_c00456{bottom:899.482667pt;}
.y7_c00456{bottom:914.094667pt;}
.y6_c00456{bottom:928.706667pt;}
.y5_c00456{bottom:943.317333pt;}
.y4_c00456{bottom:957.929333pt;}
.y3_c00456{bottom:972.541333pt;}
.y2_c00456{bottom:1016.377333pt;}
.y1_c00456{bottom:1030.989333pt;}
.h3_c00456{height:31.280681pt;}
.h2_c00456{height:32.006363pt;}
.h5_c00456{height:36.010648pt;}
.h6_c00456{height:46.518078pt;}
.h4_c00456{height:51.855535pt;}
.h0_c00456{height:1122.520000pt;}
.h1_c00456{height:1122.666667pt;}
.w0_c00456{width:793.706667pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x4_c00456{left:113.385333pt;}
.x2_c00456{left:121.886667pt;}
.x1_c00456{left:127.796000pt;}
.x3_c00456{left:157.340000pt;}
.x5_c00456{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ae71ae2fc7a3ec675a71e9e.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.102051;font-style:normal;font-weight:normal;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_b5437ecc147a8f9bcc4eb0c6.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_a55d7dd6d887f7bbb77cf1fc.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00457;src:url('chunks/assets/font_3629f78a26ff1c0fa9472875.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls3_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.087998px;}
.ls2_c00457{letter-spacing:0.098482px;}
.ls1_c00457{letter-spacing:0.104482px;}
.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;}
}
.ws1_c00457{word-spacing:-26.575517px;}
.ws7_c00457{word-spacing:-26.487518px;}
.ws0_c00457{word-spacing:-20.624971px;}
.ws2_c00457{word-spacing:-20.622582px;}
.ws5_c00457{word-spacing:-18.769538px;}
.ws4_c00457{word-spacing:-14.764573px;}
.ws3_c00457{word-spacing:-14.525471px;}
.wsb_c00457{word-spacing:0.000000px;}
.ws8_c00457{word-spacing:0.043999px;}
.wsc_c00457{word-spacing:0.053933px;}
.wsd_c00457{word-spacing:0.056767px;}
.ws6_c00457{word-spacing:0.175997px;}
.wsa_c00457{word-spacing:0.213446px;}
.ws9_c00457{word-spacing:0.219446px;}
._2_c00457{margin-left:-3.825638px;}
._3_c00457{width:1.005737px;}
._0_c00457{width:19.581823px;}
._1_c00457{width:32.039722px;}
._4_c00457{width:106.874057px;}
.fc5_c00457{color:rgb(0,0,207);}
.fc4_c00457{color:rgb(79,153,5);}
.fc3_c00457{color:rgb(207,92,0);}
.fc2_c00457{color:rgb(33,74,135);}
.fc1_c00457{color:rgb(143,89,3);}
.fc0_c00457{color:rgb(0,0,0);}
.fs1_c00457{font-size:43.999200px;}
.fs0_c00457{font-size:59.775600px;}
.y0_c00457{bottom:0.000000px;}
.y3a_c00457{bottom:44.250000px;}
.y39_c00457{bottom:86.982000px;}
.y38_c00457{bottom:103.420500px;}
.y37_c00457{bottom:119.859000px;}
.y36_c00457{bottom:136.297500px;}
.y35_c00457{bottom:152.736000px;}
.y34_c00457{bottom:169.174500px;}
.y33_c00457{bottom:185.613000px;}
.y32_c00457{bottom:202.051500px;}
.y31_c00457{bottom:218.490000px;}
.y30_c00457{bottom:234.927000px;}
.y2f_c00457{bottom:251.365500px;}
.y2e_c00457{bottom:267.804000px;}
.y2d_c00457{bottom:284.242500px;}
.y2c_c00457{bottom:300.681000px;}
.y2b_c00457{bottom:317.119500px;}
.y2a_c00457{bottom:333.558000px;}
.y29_c00457{bottom:349.996500px;}
.y28_c00457{bottom:366.435000px;}
.y27_c00457{bottom:382.873500px;}
.y26_c00457{bottom:399.310500px;}
.y25_c00457{bottom:415.749000px;}
.y24_c00457{bottom:432.187500px;}
.y23_c00457{bottom:448.626000px;}
.y22_c00457{bottom:481.503000px;}
.y21_c00457{bottom:497.941500px;}
.y20_c00457{bottom:514.380000px;}
.y1f_c00457{bottom:530.818500px;}
.y1e_c00457{bottom:580.132500px;}
.y1d_c00457{bottom:596.571000px;}
.y1c_c00457{bottom:629.448000px;}
.y1b_c00457{bottom:645.886500px;}
.y1a_c00457{bottom:662.325000px;}
.y19_c00457{bottom:678.763500px;}
.y18_c00457{bottom:695.202000px;}
.y17_c00457{bottom:711.640500px;}
.y16_c00457{bottom:728.079000px;}
.y15_c00457{bottom:744.516000px;}
.y14_c00457{bottom:777.393000px;}
.y13_c00457{bottom:793.831500px;}
.y12_c00457{bottom:826.708500px;}
.y11_c00457{bottom:843.147000px;}
.y10_c00457{bottom:859.585500px;}
.yf_c00457{bottom:876.024000px;}
.ye_c00457{bottom:908.901000px;}
.yd_c00457{bottom:925.338000px;}
.yc_c00457{bottom:941.776500px;}
.yb_c00457{bottom:958.215000px;}
.ya_c00457{bottom:974.653500px;}
.y9_c00457{bottom:991.092000px;}
.y8_c00457{bottom:1007.530500px;}
.y7_c00457{bottom:1023.969000px;}
.y6_c00457{bottom:1040.034000px;}
.y5_c00457{bottom:1088.131500px;}
.y4_c00457{bottom:1106.064000px;}
.y3_c00457{bottom:1123.998000px;}
.y2_c00457{bottom:1141.930500px;}
.y1_c00457{bottom:1159.863000px;}
.h3_c00457{height:35.190766px;}
.h4_c00457{height:36.007158px;}
.h2_c00457{height:52.332837px;}
.h0_c00457{height:1262.835000px;}
.h1_c00457{height:1263.000000px;}
.w0_c00457{width:892.920000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:127.558500px;}
.x2_c00457{left:137.122500px;}
.x3_c00457{left:143.770500px;}
.x6_c00457{left:230.185500px;}
.x4_c00457{left:243.480000px;}
.x5_c00457{left:276.715500px;}
.x7_c00457{left:435.249000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls3_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.078221pt;}
.ls2_c00457{letter-spacing:0.087539pt;}
.ls1_c00457{letter-spacing:0.092873pt;}
.ws1_c00457{word-spacing:-23.622682pt;}
.ws7_c00457{word-spacing:-23.544461pt;}
.ws0_c00457{word-spacing:-18.333308pt;}
.ws2_c00457{word-spacing:-18.331184pt;}
.ws5_c00457{word-spacing:-16.684034pt;}
.ws4_c00457{word-spacing:-13.124065pt;}
.ws3_c00457{word-spacing:-12.911530pt;}
.wsb_c00457{word-spacing:0.000000pt;}
.ws8_c00457{word-spacing:0.039110pt;}
.wsc_c00457{word-spacing:0.047940pt;}
.wsd_c00457{word-spacing:0.050460pt;}
.ws6_c00457{word-spacing:0.156442pt;}
.wsa_c00457{word-spacing:0.189730pt;}
.ws9_c00457{word-spacing:0.195063pt;}
._2_c00457{margin-left:-3.400567pt;}
._3_c00457{width:0.893988pt;}
._0_c00457{width:17.406065pt;}
._1_c00457{width:28.479753pt;}
._4_c00457{width:94.999162pt;}
.fs1_c00457{font-size:39.110400pt;}
.fs0_c00457{font-size:53.133867pt;}
.y0_c00457{bottom:0.000000pt;}
.y3a_c00457{bottom:39.333333pt;}
.y39_c00457{bottom:77.317333pt;}
.y38_c00457{bottom:91.929333pt;}
.y37_c00457{bottom:106.541333pt;}
.y36_c00457{bottom:121.153333pt;}
.y35_c00457{bottom:135.765333pt;}
.y34_c00457{bottom:150.377333pt;}
.y33_c00457{bottom:164.989333pt;}
.y32_c00457{bottom:179.601333pt;}
.y31_c00457{bottom:194.213333pt;}
.y30_c00457{bottom:208.824000pt;}
.y2f_c00457{bottom:223.436000pt;}
.y2e_c00457{bottom:238.048000pt;}
.y2d_c00457{bottom:252.660000pt;}
.y2c_c00457{bottom:267.272000pt;}
.y2b_c00457{bottom:281.884000pt;}
.y2a_c00457{bottom:296.496000pt;}
.y29_c00457{bottom:311.108000pt;}
.y28_c00457{bottom:325.720000pt;}
.y27_c00457{bottom:340.332000pt;}
.y26_c00457{bottom:354.942667pt;}
.y25_c00457{bottom:369.554667pt;}
.y24_c00457{bottom:384.166667pt;}
.y23_c00457{bottom:398.778667pt;}
.y22_c00457{bottom:428.002667pt;}
.y21_c00457{bottom:442.614667pt;}
.y20_c00457{bottom:457.226667pt;}
.y1f_c00457{bottom:471.838667pt;}
.y1e_c00457{bottom:515.673333pt;}
.y1d_c00457{bottom:530.285333pt;}
.y1c_c00457{bottom:559.509333pt;}
.y1b_c00457{bottom:574.121333pt;}
.y1a_c00457{bottom:588.733333pt;}
.y19_c00457{bottom:603.345333pt;}
.y18_c00457{bottom:617.957333pt;}
.y17_c00457{bottom:632.569333pt;}
.y16_c00457{bottom:647.181333pt;}
.y15_c00457{bottom:661.792000pt;}
.y14_c00457{bottom:691.016000pt;}
.y13_c00457{bottom:705.628000pt;}
.y12_c00457{bottom:734.852000pt;}
.y11_c00457{bottom:749.464000pt;}
.y10_c00457{bottom:764.076000pt;}
.yf_c00457{bottom:778.688000pt;}
.ye_c00457{bottom:807.912000pt;}
.yd_c00457{bottom:822.522667pt;}
.yc_c00457{bottom:837.134667pt;}
.yb_c00457{bottom:851.746667pt;}
.ya_c00457{bottom:866.358667pt;}
.y9_c00457{bottom:880.970667pt;}
.y8_c00457{bottom:895.582667pt;}
.y7_c00457{bottom:910.194667pt;}
.y6_c00457{bottom:924.474667pt;}
.y5_c00457{bottom:967.228000pt;}
.y4_c00457{bottom:983.168000pt;}
.y3_c00457{bottom:999.109333pt;}
.y2_c00457{bottom:1015.049333pt;}
.y1_c00457{bottom:1030.989333pt;}
.h3_c00457{height:31.280681pt;}
.h4_c00457{height:32.006363pt;}
.h2_c00457{height:46.518078pt;}
.h0_c00457{height:1122.520000pt;}
.h1_c00457{height:1122.666667pt;}
.w0_c00457{width:793.706667pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:113.385333pt;}
.x2_c00457{left:121.886667pt;}
.x3_c00457{left:127.796000pt;}
.x6_c00457{left:204.609333pt;}
.x4_c00457{left:216.426667pt;}
.x5_c00457{left:245.969333pt;}
.x7_c00457{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.048828;font-style:normal;font-weight:normal;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_b5141dcdaa1804e820b7878e.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.083496;font-style:normal;font-weight:normal;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_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.014648;font-style:normal;font-weight:normal;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_d24683a99419e47a2e2e0a65.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_513d03aae1e0d6e6bc9e5493.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.102051;font-style: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;}
.ls3_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.087998px;}
.ls1_c00458{letter-spacing:0.098482px;}
.ls2_c00458{letter-spacing:0.104482px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00458{word-spacing:-33.713438px;}
.ws0_c00458{word-spacing:-26.575517px;}
.ws2_c00458{word-spacing:-26.487518px;}
.wsd_c00458{word-spacing:-21.553319px;}
.wsc_c00458{word-spacing:-21.519216px;}
.ws9_c00458{word-spacing:-18.769538px;}
.wsb_c00458{word-spacing:-16.019861px;}
.ws8_c00458{word-spacing:-14.943900px;}
.wse_c00458{word-spacing:-14.107042px;}
.wsf_c00458{word-spacing:-12.074671px;}
.ws6_c00458{word-spacing:-9.988424px;}
.ws7_c00458{word-spacing:-9.987499px;}
.wsa_c00458{word-spacing:-4.536144px;}
.ws1_c00458{word-spacing:0.000000px;}
.ws3_c00458{word-spacing:0.043999px;}
.ws11_c00458{word-spacing:0.175997px;}
.ws4_c00458{word-spacing:0.213446px;}
.ws12_c00458{word-spacing:0.219446px;}
.ws5_c00458{word-spacing:43.038600px;}
._1_c00458{margin-left:-7.833025px;}
._3_c00458{margin-left:-4.124516px;}
._5_c00458{margin-left:-2.347817px;}
._4_c00458{margin-left:-1.075961px;}
._0_c00458{width:1.063690px;}
._2_c00458{width:19.935816px;}
._6_c00458{width:40.109428px;}
.fc5_c00458{color:rgb(0,0,207);}
.fc6_c00458{color:rgb(6,69,173);}
.fc4_c00458{color:rgb(207,92,0);}
.fc3_c00458{color:rgb(143,89,3);}
.fc2_c00458{color:rgb(79,153,5);}
.fc1_c00458{color:rgb(0,0,0);}
.fc0_c00458{color:rgb(33,74,135);}
.fs0_c00458{font-size:43.999200px;}
.fs2_c00458{font-size:59.775600px;}
.fs1_c00458{font-size:86.077200px;}
.y0_c00458{bottom:0.000000px;}
.y1e_c00458{bottom:44.250000px;}
.y1d_c00458{bottom:98.490000px;}
.y1c_c00458{bottom:114.927000px;}
.y1b_c00458{bottom:130.992000px;}
.y1a_c00458{bottom:175.986000px;}
.y19_c00458{bottom:193.918500px;}
.y18_c00458{bottom:211.852500px;}
.y17_c00458{bottom:229.785000px;}
.y16_c00458{bottom:247.717500px;}
.y15_c00458{bottom:265.650000px;}
.y14_c00458{bottom:292.518000px;}
.y13_c00458{bottom:319.384500px;}
.y12_c00458{bottom:346.252500px;}
.y11_c00458{bottom:373.119000px;}
.y10_c00458{bottom:415.359000px;}
.yf_c00458{bottom:880.411500px;}
.ye_c00458{bottom:896.848500px;}
.yd_c00458{bottom:913.287000px;}
.yc_c00458{bottom:929.725500px;}
.yb_c00458{bottom:946.164000px;}
.ya_c00458{bottom:962.602500px;}
.y9_c00458{bottom:979.041000px;}
.y8_c00458{bottom:995.479500px;}
.y7_c00458{bottom:1011.918000px;}
.y6_c00458{bottom:1028.356500px;}
.y5_c00458{bottom:1044.795000px;}
.y4_c00458{bottom:1077.670500px;}
.y3_c00458{bottom:1094.109000px;}
.y2_c00458{bottom:1110.547500px;}
.y1_c00458{bottom:1159.863000px;}
.h3_c00458{height:35.190766px;}
.h2_c00458{height:36.007158px;}
.h5_c00458{height:40.511979px;}
.h6_c00458{height:52.332837px;}
.h4_c00458{height:58.337477px;}
.h0_c00458{height:1262.835000px;}
.h1_c00458{height:1263.000000px;}
.w0_c00458{width:892.920000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x3_c00458{left:127.558500px;}
.x1_c00458{left:137.122500px;}
.x2_c00458{left:177.007500px;}
.x4_c00458{left:435.249000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls3_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.078221pt;}
.ls1_c00458{letter-spacing:0.087539pt;}
.ls2_c00458{letter-spacing:0.092873pt;}
.ws10_c00458{word-spacing:-29.967501pt;}
.ws0_c00458{word-spacing:-23.622682pt;}
.ws2_c00458{word-spacing:-23.544461pt;}
.wsd_c00458{word-spacing:-19.158506pt;}
.wsc_c00458{word-spacing:-19.128192pt;}
.ws9_c00458{word-spacing:-16.684034pt;}
.wsb_c00458{word-spacing:-14.239876pt;}
.ws8_c00458{word-spacing:-13.283467pt;}
.wse_c00458{word-spacing:-12.539593pt;}
.wsf_c00458{word-spacing:-10.733041pt;}
.ws6_c00458{word-spacing:-8.878599pt;}
.ws7_c00458{word-spacing:-8.877777pt;}
.wsa_c00458{word-spacing:-4.032128pt;}
.ws1_c00458{word-spacing:0.000000pt;}
.ws3_c00458{word-spacing:0.039110pt;}
.ws11_c00458{word-spacing:0.156442pt;}
.ws4_c00458{word-spacing:0.189730pt;}
.ws12_c00458{word-spacing:0.195063pt;}
.ws5_c00458{word-spacing:38.256533pt;}
._1_c00458{margin-left:-6.962689pt;}
._3_c00458{margin-left:-3.666237pt;}
._5_c00458{margin-left:-2.086948pt;}
._4_c00458{margin-left:-0.956410pt;}
._0_c00458{width:0.945502pt;}
._2_c00458{width:17.720725pt;}
._6_c00458{width:35.652825pt;}
.fs0_c00458{font-size:39.110400pt;}
.fs2_c00458{font-size:53.133867pt;}
.fs1_c00458{font-size:76.513067pt;}
.y0_c00458{bottom:0.000000pt;}
.y1e_c00458{bottom:39.333333pt;}
.y1d_c00458{bottom:87.546667pt;}
.y1c_c00458{bottom:102.157333pt;}
.y1b_c00458{bottom:116.437333pt;}
.y1a_c00458{bottom:156.432000pt;}
.y19_c00458{bottom:172.372000pt;}
.y18_c00458{bottom:188.313333pt;}
.y17_c00458{bottom:204.253333pt;}
.y16_c00458{bottom:220.193333pt;}
.y15_c00458{bottom:236.133333pt;}
.y14_c00458{bottom:260.016000pt;}
.y13_c00458{bottom:283.897333pt;}
.y12_c00458{bottom:307.780000pt;}
.y11_c00458{bottom:331.661333pt;}
.y10_c00458{bottom:369.208000pt;}
.yf_c00458{bottom:782.588000pt;}
.ye_c00458{bottom:797.198667pt;}
.yd_c00458{bottom:811.810667pt;}
.yc_c00458{bottom:826.422667pt;}
.yb_c00458{bottom:841.034667pt;}
.ya_c00458{bottom:855.646667pt;}
.y9_c00458{bottom:870.258667pt;}
.y8_c00458{bottom:884.870667pt;}
.y7_c00458{bottom:899.482667pt;}
.y6_c00458{bottom:914.094667pt;}
.y5_c00458{bottom:928.706667pt;}
.y4_c00458{bottom:957.929333pt;}
.y3_c00458{bottom:972.541333pt;}
.y2_c00458{bottom:987.153333pt;}
.y1_c00458{bottom:1030.989333pt;}
.h3_c00458{height:31.280681pt;}
.h2_c00458{height:32.006363pt;}
.h5_c00458{height:36.010648pt;}
.h6_c00458{height:46.518078pt;}
.h4_c00458{height:51.855535pt;}
.h0_c00458{height:1122.520000pt;}
.h1_c00458{height:1122.666667pt;}
.w0_c00458{width:793.706667pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x3_c00458{left:113.385333pt;}
.x1_c00458{left:121.886667pt;}
.x2_c00458{left:157.340000pt;}
.x4_c00458{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8730df67ffbe1b4f2a1f1e6.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.014648;font-style:normal;font-weight:normal;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_c363e38adc3b73680f80b637.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_754d40453d9536399c563bd8.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_7d0c56291d6ced0f37a37100.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00459;src:url('chunks/assets/font_768e2ea01ac778d4791b7156.woff2')format("woff");}.ff5_c00459{font-family:ff5_c00459;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls4_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:0.087998px;}
.ls2_c00459{letter-spacing:0.098482px;}
.ls1_c00459{letter-spacing:0.104482px;}
.ls3_c00459{letter-spacing:26.690482px;}
.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;}
}
.ws1_c00459{word-spacing:-26.575517px;}
.ws5_c00459{word-spacing:-26.487518px;}
.ws0_c00459{word-spacing:0.000000px;}
.ws9_c00459{word-spacing:0.043999px;}
.ws6_c00459{word-spacing:0.056767px;}
.ws3_c00459{word-spacing:0.073250px;}
.ws8_c00459{word-spacing:0.083734px;}
.ws2_c00459{word-spacing:0.175997px;}
.ws7_c00459{word-spacing:0.202963px;}
.wsb_c00459{word-spacing:0.213446px;}
.wsa_c00459{word-spacing:0.219446px;}
.ws4_c00459{word-spacing:26.619516px;}
._2_c00459{margin-left:-2211.025037px;}
._1_c00459{width:1.030723px;}
._4_c00459{width:53.283031px;}
._0_c00459{width:79.858548px;}
._5_c00459{width:106.874057px;}
._3_c00459{width:133.452408px;}
.fc5_c00459{color:rgb(207,92,0);}
.fc4_c00459{color:rgb(0,0,207);}
.fc3_c00459{color:rgb(79,153,5);}
.fc2_c00459{color:rgb(33,74,135);}
.fc1_c00459{color:rgb(0,0,0);}
.fc0_c00459{color:rgb(143,89,3);}
.fs1_c00459{font-size:31.015800px;}
.fs0_c00459{font-size:43.999200px;}
.fs2_c00459{font-size:59.775600px;}
.y0_c00459{bottom:0.000000px;}
.y29_c00459{bottom:44.250000px;}
.y28_c00459{bottom:420.510000px;}
.y27_c00459{bottom:436.948500px;}
.y26_c00459{bottom:453.387000px;}
.y25_c00459{bottom:469.825500px;}
.y24_c00459{bottom:486.264000px;}
.y23_c00459{bottom:502.702500px;}
.y22_c00459{bottom:519.141000px;}
.y21_c00459{bottom:535.579500px;}
.y20_c00459{bottom:552.018000px;}
.y1f_c00459{bottom:568.455000px;}
.y1e_c00459{bottom:584.893500px;}
.y1d_c00459{bottom:617.770500px;}
.y1c_c00459{bottom:634.209000px;}
.y1b_c00459{bottom:650.647500px;}
.y1a_c00459{bottom:683.524500px;}
.y19_c00459{bottom:699.963000px;}
.y18_c00459{bottom:716.401500px;}
.y17_c00459{bottom:732.838500px;}
.y16_c00459{bottom:749.277000px;}
.y15_c00459{bottom:765.715500px;}
.y14_c00459{bottom:782.154000px;}
.y13_c00459{bottom:831.469500px;}
.y12_c00459{bottom:847.908000px;}
.y11_c00459{bottom:864.346500px;}
.y10_c00459{bottom:880.785000px;}
.yf_c00459{bottom:897.223500px;}
.ye_c00459{bottom:913.660500px;}
.yd_c00459{bottom:930.099000px;}
.yc_c00459{bottom:946.537500px;}
.yb_c00459{bottom:962.976000px;}
.ya_c00459{bottom:979.041000px;}
.y9_c00459{bottom:995.479500px;}
.y8_c00459{bottom:1011.918000px;}
.y7_c00459{bottom:1028.356500px;}
.y6_c00459{bottom:1044.795000px;}
.y5_c00459{bottom:1061.232000px;}
.y4_c00459{bottom:1077.670500px;}
.y3_c00459{bottom:1094.109000px;}
.y2_c00459{bottom:1126.986000px;}
.y1_c00459{bottom:1143.424500px;}
.h2_c00459{height:35.190766px;}
.h3_c00459{height:36.007158px;}
.h4_c00459{height:52.332837px;}
.h0_c00459{height:1262.835000px;}
.h1_c00459{height:1263.000000px;}
.w0_c00459{width:892.920000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:137.122500px;}
.x2_c00459{left:143.770500px;}
.x3_c00459{left:170.359500px;}
.x4_c00459{left:177.007500px;}
.x5_c00459{left:435.249000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls4_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:0.078221pt;}
.ls2_c00459{letter-spacing:0.087539pt;}
.ls1_c00459{letter-spacing:0.092873pt;}
.ls3_c00459{letter-spacing:23.724873pt;}
.ws1_c00459{word-spacing:-23.622682pt;}
.ws5_c00459{word-spacing:-23.544461pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.ws9_c00459{word-spacing:0.039110pt;}
.ws6_c00459{word-spacing:0.050460pt;}
.ws3_c00459{word-spacing:0.065111pt;}
.ws8_c00459{word-spacing:0.074430pt;}
.ws2_c00459{word-spacing:0.156442pt;}
.ws7_c00459{word-spacing:0.180412pt;}
.wsb_c00459{word-spacing:0.189730pt;}
.wsa_c00459{word-spacing:0.195063pt;}
.ws4_c00459{word-spacing:23.661792pt;}
._2_c00459{margin-left:-1965.355588pt;}
._1_c00459{width:0.916198pt;}
._4_c00459{width:47.362694pt;}
._0_c00459{width:70.985376pt;}
._5_c00459{width:94.999162pt;}
._3_c00459{width:118.624363pt;}
.fs1_c00459{font-size:27.569600pt;}
.fs0_c00459{font-size:39.110400pt;}
.fs2_c00459{font-size:53.133867pt;}
.y0_c00459{bottom:0.000000pt;}
.y29_c00459{bottom:39.333333pt;}
.y28_c00459{bottom:373.786667pt;}
.y27_c00459{bottom:388.398667pt;}
.y26_c00459{bottom:403.010667pt;}
.y25_c00459{bottom:417.622667pt;}
.y24_c00459{bottom:432.234667pt;}
.y23_c00459{bottom:446.846667pt;}
.y22_c00459{bottom:461.458667pt;}
.y21_c00459{bottom:476.070667pt;}
.y20_c00459{bottom:490.682667pt;}
.y1f_c00459{bottom:505.293333pt;}
.y1e_c00459{bottom:519.905333pt;}
.y1d_c00459{bottom:549.129333pt;}
.y1c_c00459{bottom:563.741333pt;}
.y1b_c00459{bottom:578.353333pt;}
.y1a_c00459{bottom:607.577333pt;}
.y19_c00459{bottom:622.189333pt;}
.y18_c00459{bottom:636.801333pt;}
.y17_c00459{bottom:651.412000pt;}
.y16_c00459{bottom:666.024000pt;}
.y15_c00459{bottom:680.636000pt;}
.y14_c00459{bottom:695.248000pt;}
.y13_c00459{bottom:739.084000pt;}
.y12_c00459{bottom:753.696000pt;}
.y11_c00459{bottom:768.308000pt;}
.y10_c00459{bottom:782.920000pt;}
.yf_c00459{bottom:797.532000pt;}
.ye_c00459{bottom:812.142667pt;}
.yd_c00459{bottom:826.754667pt;}
.yc_c00459{bottom:841.366667pt;}
.yb_c00459{bottom:855.978667pt;}
.ya_c00459{bottom:870.258667pt;}
.y9_c00459{bottom:884.870667pt;}
.y8_c00459{bottom:899.482667pt;}
.y7_c00459{bottom:914.094667pt;}
.y6_c00459{bottom:928.706667pt;}
.y5_c00459{bottom:943.317333pt;}
.y4_c00459{bottom:957.929333pt;}
.y3_c00459{bottom:972.541333pt;}
.y2_c00459{bottom:1001.765333pt;}
.y1_c00459{bottom:1016.377333pt;}
.h2_c00459{height:31.280681pt;}
.h3_c00459{height:32.006363pt;}
.h4_c00459{height:46.518078pt;}
.h0_c00459{height:1122.520000pt;}
.h1_c00459{height:1122.666667pt;}
.w0_c00459{width:793.706667pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:121.886667pt;}
.x2_c00459{left:127.796000pt;}
.x3_c00459{left:151.430667pt;}
.x4_c00459{left:157.340000pt;}
.x5_c00459{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24683a99419e47a2e2e0a65.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.893555;font-style:normal;font-weight:normal;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_ae30aa3466a1a7455c035ce9.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.083496;font-style:normal;font-weight:normal;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_dd8c8372cda6bd12b6450d2b.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00460;src:url('chunks/assets/font_5ba14a9aee1875de14fef9e4.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;line-height:1.000000;font-style: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;}
.ls3_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:0.087998px;}
.ls2_c00460{letter-spacing:0.098482px;}
.ls1_c00460{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00460{word-spacing:-33.713438px;}
.ws2_c00460{word-spacing:-26.575517px;}
.wse_c00460{word-spacing:-26.487518px;}
.ws9_c00460{word-spacing:-21.553319px;}
.ws8_c00460{word-spacing:-21.519216px;}
.ws5_c00460{word-spacing:-18.769538px;}
.ws7_c00460{word-spacing:-17.633802px;}
.ws4_c00460{word-spacing:-14.943900px;}
.wsa_c00460{word-spacing:-14.107042px;}
.wsb_c00460{word-spacing:-12.074671px;}
.ws1_c00460{word-spacing:-9.988424px;}
.ws3_c00460{word-spacing:-9.987499px;}
.ws6_c00460{word-spacing:-7.686144px;}
.ws12_c00460{word-spacing:0.000000px;}
.wsf_c00460{word-spacing:0.043999px;}
.ws15_c00460{word-spacing:0.056767px;}
.ws13_c00460{word-spacing:0.073250px;}
.ws17_c00460{word-spacing:0.083734px;}
.wsd_c00460{word-spacing:0.175997px;}
.ws16_c00460{word-spacing:0.202963px;}
.ws10_c00460{word-spacing:0.213446px;}
.ws11_c00460{word-spacing:0.219446px;}
.ws14_c00460{word-spacing:26.619516px;}
.ws0_c00460{word-spacing:43.038600px;}
._8_c00460{margin-left:-2211.000050px;}
._0_c00460{margin-left:-7.833025px;}
._2_c00460{margin-left:-4.124516px;}
._4_c00460{margin-left:-2.347817px;}
._3_c00460{margin-left:-1.075961px;}
._6_c00460{width:1.005737px;}
._1_c00460{width:19.935816px;}
._5_c00460{width:40.109428px;}
._a_c00460{width:53.283031px;}
._7_c00460{width:79.858548px;}
._9_c00460{width:133.452408px;}
.fc6_c00460{color:rgb(0,0,207);}
.fc5_c00460{color:rgb(79,153,5);}
.fc3_c00460{color:rgb(33,74,135);}
.fc2_c00460{color:rgb(143,89,3);}
.fc4_c00460{color:rgb(207,92,0);}
.fc1_c00460{color:rgb(6,69,173);}
.fc0_c00460{color:rgb(0,0,0);}
.fs3_c00460{font-size:31.015800px;}
.fs2_c00460{font-size:43.999200px;}
.fs1_c00460{font-size:59.775600px;}
.fs0_c00460{font-size:86.077200px;}
.y0_c00460{bottom:0.000000px;}
.y20_c00460{bottom:44.250000px;}
.y1f_c00460{bottom:86.982000px;}
.y1e_c00460{bottom:103.420500px;}
.y1d_c00460{bottom:119.859000px;}
.y1c_c00460{bottom:136.297500px;}
.y1b_c00460{bottom:152.736000px;}
.y1a_c00460{bottom:169.174500px;}
.y19_c00460{bottom:185.613000px;}
.y18_c00460{bottom:201.678000px;}
.y17_c00460{bottom:218.115000px;}
.y16_c00460{bottom:234.553500px;}
.y15_c00460{bottom:250.992000px;}
.y14_c00460{bottom:267.430500px;}
.y13_c00460{bottom:283.869000px;}
.y12_c00460{bottom:300.307500px;}
.y11_c00460{bottom:316.746000px;}
.y10_c00460{bottom:349.623000px;}
.yf_c00460{bottom:366.061500px;}
.ye_c00460{bottom:415.375500px;}
.yd_c00460{bottom:431.814000px;}
.yc_c00460{bottom:447.879000px;}
.yb_c00460{bottom:493.600500px;}
.ya_c00460{bottom:511.533000px;}
.y9_c00460{bottom:529.465500px;}
.y8_c00460{bottom:547.398000px;}
.y7_c00460{bottom:565.330500px;}
.y6_c00460{bottom:583.264500px;}
.y5_c00460{bottom:610.377000px;}
.y4_c00460{bottom:637.491000px;}
.y3_c00460{bottom:664.603500px;}
.y2_c00460{bottom:691.717500px;}
.y1_c00460{bottom:734.299500px;}
.h6_c00460{height:35.190766px;}
.h7_c00460{height:36.007158px;}
.h3_c00460{height:40.511979px;}
.h4_c00460{height:52.332837px;}
.h5_c00460{height:52.338837px;}
.h2_c00460{height:58.337477px;}
.h0_c00460{height:1262.835000px;}
.h1_c00460{height:1263.000000px;}
.w0_c00460{width:892.920000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:127.558500px;}
.x2_c00460{left:137.122500px;}
.x3_c00460{left:143.770500px;}
.x4_c00460{left:170.359500px;}
.x5_c00460{left:435.249000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls3_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:0.078221pt;}
.ls2_c00460{letter-spacing:0.087539pt;}
.ls1_c00460{letter-spacing:0.092873pt;}
.wsc_c00460{word-spacing:-29.967501pt;}
.ws2_c00460{word-spacing:-23.622682pt;}
.wse_c00460{word-spacing:-23.544461pt;}
.ws9_c00460{word-spacing:-19.158506pt;}
.ws8_c00460{word-spacing:-19.128192pt;}
.ws5_c00460{word-spacing:-16.684034pt;}
.ws7_c00460{word-spacing:-15.674491pt;}
.ws4_c00460{word-spacing:-13.283467pt;}
.wsa_c00460{word-spacing:-12.539593pt;}
.wsb_c00460{word-spacing:-10.733041pt;}
.ws1_c00460{word-spacing:-8.878599pt;}
.ws3_c00460{word-spacing:-8.877777pt;}
.ws6_c00460{word-spacing:-6.832128pt;}
.ws12_c00460{word-spacing:0.000000pt;}
.wsf_c00460{word-spacing:0.039110pt;}
.ws15_c00460{word-spacing:0.050460pt;}
.ws13_c00460{word-spacing:0.065111pt;}
.ws17_c00460{word-spacing:0.074430pt;}
.wsd_c00460{word-spacing:0.156442pt;}
.ws16_c00460{word-spacing:0.180412pt;}
.ws10_c00460{word-spacing:0.189730pt;}
.ws11_c00460{word-spacing:0.195063pt;}
.ws14_c00460{word-spacing:23.661792pt;}
.ws0_c00460{word-spacing:38.256533pt;}
._8_c00460{margin-left:-1965.333378pt;}
._0_c00460{margin-left:-6.962689pt;}
._2_c00460{margin-left:-3.666237pt;}
._4_c00460{margin-left:-2.086948pt;}
._3_c00460{margin-left:-0.956410pt;}
._6_c00460{width:0.893988pt;}
._1_c00460{width:17.720725pt;}
._5_c00460{width:35.652825pt;}
._a_c00460{width:47.362694pt;}
._7_c00460{width:70.985376pt;}
._9_c00460{width:118.624363pt;}
.fs3_c00460{font-size:27.569600pt;}
.fs2_c00460{font-size:39.110400pt;}
.fs1_c00460{font-size:53.133867pt;}
.fs0_c00460{font-size:76.513067pt;}
.y0_c00460{bottom:0.000000pt;}
.y20_c00460{bottom:39.333333pt;}
.y1f_c00460{bottom:77.317333pt;}
.y1e_c00460{bottom:91.929333pt;}
.y1d_c00460{bottom:106.541333pt;}
.y1c_c00460{bottom:121.153333pt;}
.y1b_c00460{bottom:135.765333pt;}
.y1a_c00460{bottom:150.377333pt;}
.y19_c00460{bottom:164.989333pt;}
.y18_c00460{bottom:179.269333pt;}
.y17_c00460{bottom:193.880000pt;}
.y16_c00460{bottom:208.492000pt;}
.y15_c00460{bottom:223.104000pt;}
.y14_c00460{bottom:237.716000pt;}
.y13_c00460{bottom:252.328000pt;}
.y12_c00460{bottom:266.940000pt;}
.y11_c00460{bottom:281.552000pt;}
.y10_c00460{bottom:310.776000pt;}
.yf_c00460{bottom:325.388000pt;}
.ye_c00460{bottom:369.222667pt;}
.yd_c00460{bottom:383.834667pt;}
.yc_c00460{bottom:398.114667pt;}
.yb_c00460{bottom:438.756000pt;}
.ya_c00460{bottom:454.696000pt;}
.y9_c00460{bottom:470.636000pt;}
.y8_c00460{bottom:486.576000pt;}
.y7_c00460{bottom:502.516000pt;}
.y6_c00460{bottom:518.457333pt;}
.y5_c00460{bottom:542.557333pt;}
.y4_c00460{bottom:566.658667pt;}
.y3_c00460{bottom:590.758667pt;}
.y2_c00460{bottom:614.860000pt;}
.y1_c00460{bottom:652.710667pt;}
.h6_c00460{height:31.280681pt;}
.h7_c00460{height:32.006363pt;}
.h3_c00460{height:36.010648pt;}
.h4_c00460{height:46.518078pt;}
.h5_c00460{height:46.523411pt;}
.h2_c00460{height:51.855535pt;}
.h0_c00460{height:1122.520000pt;}
.h1_c00460{height:1122.666667pt;}
.w0_c00460{width:793.706667pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:113.385333pt;}
.x2_c00460{left:121.886667pt;}
.x3_c00460{left:127.796000pt;}
.x4_c00460{left:151.430667pt;}
.x5_c00460{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3f4832332cbd9eb8e4533e1.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.048828;font-style:normal;font-weight:normal;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_f8730df67ffbe1b4f2a1f1e6.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.014648;font-style:normal;font-weight:normal;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_0828937e68d1011ebe845bb7.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00461;src:url('chunks/assets/font_f82ee7a252a45b8ce429853f.woff2')format("woff");}.ff5_c00461{font-family:ff5_c00461;line-height:1.102051;font-style: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.000000px;}
.ls0_c00461{letter-spacing:0.087998px;}
.ls1_c00461{letter-spacing:0.098482px;}
.ls3_c00461{letter-spacing:0.104482px;}
.ls2_c00461{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00461{word-spacing:-26.575517px;}
.ws5_c00461{word-spacing:-26.487518px;}
.wsf_c00461{word-spacing:-21.553319px;}
.wse_c00461{word-spacing:-21.519216px;}
.wsb_c00461{word-spacing:-18.769538px;}
.wsd_c00461{word-spacing:-17.633802px;}
.wsa_c00461{word-spacing:-14.943900px;}
.ws10_c00461{word-spacing:-14.107042px;}
.ws8_c00461{word-spacing:-9.988424px;}
.ws9_c00461{word-spacing:-9.987499px;}
.wsc_c00461{word-spacing:-7.686144px;}
.ws4_c00461{word-spacing:0.000000px;}
.ws1_c00461{word-spacing:0.043999px;}
.ws0_c00461{word-spacing:0.073250px;}
.ws6_c00461{word-spacing:0.213446px;}
.ws2_c00461{word-spacing:0.219446px;}
.ws7_c00461{word-spacing:43.038600px;}
._2_c00461{margin-left:-7.833025px;}
._4_c00461{margin-left:-4.124516px;}
._6_c00461{margin-left:-2.347817px;}
._5_c00461{margin-left:-1.075961px;}
._1_c00461{width:1.182038px;}
._3_c00461{width:19.935816px;}
._0_c00461{width:79.858548px;}
.fc5_c00461{color:rgb(79,153,5);}
.fc4_c00461{color:rgb(143,89,3);}
.fc6_c00461{color:rgb(6,69,173);}
.fc3_c00461{color:rgb(207,92,0);}
.fc2_c00461{color:rgb(0,0,0);}
.fc1_c00461{color:rgb(0,0,207);}
.fc0_c00461{color:rgb(33,74,135);}
.fs0_c00461{font-size:43.999200px;}
.fs2_c00461{font-size:59.775600px;}
.fs1_c00461{font-size:86.077200px;}
.y0_c00461{bottom:0.000000px;}
.y20_c00461{bottom:44.250000px;}
.y1f_c00461{bottom:82.051500px;}
.y1e_c00461{bottom:99.984000px;}
.y1d_c00461{bottom:117.916500px;}
.y1c_c00461{bottom:144.757500px;}
.y1b_c00461{bottom:171.597000px;}
.y1a_c00461{bottom:198.438000px;}
.y19_c00461{bottom:225.277500px;}
.y18_c00461{bottom:267.492000px;}
.y17_c00461{bottom:732.465000px;}
.y16_c00461{bottom:748.903500px;}
.y15_c00461{bottom:765.342000px;}
.y14_c00461{bottom:781.780500px;}
.y13_c00461{bottom:798.219000px;}
.y12_c00461{bottom:814.657500px;}
.y11_c00461{bottom:831.096000px;}
.y10_c00461{bottom:847.534500px;}
.yf_c00461{bottom:863.973000px;}
.ye_c00461{bottom:880.411500px;}
.yd_c00461{bottom:896.848500px;}
.yc_c00461{bottom:929.725500px;}
.yb_c00461{bottom:946.164000px;}
.ya_c00461{bottom:962.602500px;}
.y9_c00461{bottom:995.479500px;}
.y8_c00461{bottom:1011.918000px;}
.y7_c00461{bottom:1028.356500px;}
.y6_c00461{bottom:1044.795000px;}
.y5_c00461{bottom:1061.232000px;}
.y4_c00461{bottom:1077.670500px;}
.y3_c00461{bottom:1094.109000px;}
.y2_c00461{bottom:1143.424500px;}
.y1_c00461{bottom:1159.863000px;}
.h3_c00461{height:35.190766px;}
.h2_c00461{height:36.007158px;}
.h5_c00461{height:40.511979px;}
.h6_c00461{height:52.332837px;}
.h4_c00461{height:58.337477px;}
.h0_c00461{height:1262.835000px;}
.h1_c00461{height:1263.000000px;}
.w0_c00461{width:892.920000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x4_c00461{left:127.558500px;}
.x2_c00461{left:137.122500px;}
.x1_c00461{left:143.770500px;}
.x3_c00461{left:177.007500px;}
.x5_c00461{left:435.249000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls4_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:0.078221pt;}
.ls1_c00461{letter-spacing:0.087539pt;}
.ls3_c00461{letter-spacing:0.092873pt;}
.ls2_c00461{letter-spacing:23.724873pt;}
.ws3_c00461{word-spacing:-23.622682pt;}
.ws5_c00461{word-spacing:-23.544461pt;}
.wsf_c00461{word-spacing:-19.158506pt;}
.wse_c00461{word-spacing:-19.128192pt;}
.wsb_c00461{word-spacing:-16.684034pt;}
.wsd_c00461{word-spacing:-15.674491pt;}
.wsa_c00461{word-spacing:-13.283467pt;}
.ws10_c00461{word-spacing:-12.539593pt;}
.ws8_c00461{word-spacing:-8.878599pt;}
.ws9_c00461{word-spacing:-8.877777pt;}
.wsc_c00461{word-spacing:-6.832128pt;}
.ws4_c00461{word-spacing:0.000000pt;}
.ws1_c00461{word-spacing:0.039110pt;}
.ws0_c00461{word-spacing:0.065111pt;}
.ws6_c00461{word-spacing:0.189730pt;}
.ws2_c00461{word-spacing:0.195063pt;}
.ws7_c00461{word-spacing:38.256533pt;}
._2_c00461{margin-left:-6.962689pt;}
._4_c00461{margin-left:-3.666237pt;}
._6_c00461{margin-left:-2.086948pt;}
._5_c00461{margin-left:-0.956410pt;}
._1_c00461{width:1.050701pt;}
._3_c00461{width:17.720725pt;}
._0_c00461{width:70.985376pt;}
.fs0_c00461{font-size:39.110400pt;}
.fs2_c00461{font-size:53.133867pt;}
.fs1_c00461{font-size:76.513067pt;}
.y0_c00461{bottom:0.000000pt;}
.y20_c00461{bottom:39.333333pt;}
.y1f_c00461{bottom:72.934667pt;}
.y1e_c00461{bottom:88.874667pt;}
.y1d_c00461{bottom:104.814667pt;}
.y1c_c00461{bottom:128.673333pt;}
.y1b_c00461{bottom:152.530667pt;}
.y1a_c00461{bottom:176.389333pt;}
.y19_c00461{bottom:200.246667pt;}
.y18_c00461{bottom:237.770667pt;}
.y17_c00461{bottom:651.080000pt;}
.y16_c00461{bottom:665.692000pt;}
.y15_c00461{bottom:680.304000pt;}
.y14_c00461{bottom:694.916000pt;}
.y13_c00461{bottom:709.528000pt;}
.y12_c00461{bottom:724.140000pt;}
.y11_c00461{bottom:738.752000pt;}
.y10_c00461{bottom:753.364000pt;}
.yf_c00461{bottom:767.976000pt;}
.ye_c00461{bottom:782.588000pt;}
.yd_c00461{bottom:797.198667pt;}
.yc_c00461{bottom:826.422667pt;}
.yb_c00461{bottom:841.034667pt;}
.ya_c00461{bottom:855.646667pt;}
.y9_c00461{bottom:884.870667pt;}
.y8_c00461{bottom:899.482667pt;}
.y7_c00461{bottom:914.094667pt;}
.y6_c00461{bottom:928.706667pt;}
.y5_c00461{bottom:943.317333pt;}
.y4_c00461{bottom:957.929333pt;}
.y3_c00461{bottom:972.541333pt;}
.y2_c00461{bottom:1016.377333pt;}
.y1_c00461{bottom:1030.989333pt;}
.h3_c00461{height:31.280681pt;}
.h2_c00461{height:32.006363pt;}
.h5_c00461{height:36.010648pt;}
.h6_c00461{height:46.518078pt;}
.h4_c00461{height:51.855535pt;}
.h0_c00461{height:1122.520000pt;}
.h1_c00461{height:1122.666667pt;}
.w0_c00461{width:793.706667pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x4_c00461{left:113.385333pt;}
.x2_c00461{left:121.886667pt;}
.x1_c00461{left:127.796000pt;}
.x3_c00461{left:157.340000pt;}
.x5_c00461{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fba2ffdfa8e2dfb2fc4df0fc.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.102051;font-style:normal;font-weight:normal;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_6a3016db43b01610e4783345.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.048828;font-style:normal;font-weight:normal;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_06bdf14132e1b2f6feaf4b88.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_11461e73a5121a46cdb8f1e7.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls4_c00462{letter-spacing:0.000000px;}
.ls1_c00462{letter-spacing:0.087998px;}
.ls2_c00462{letter-spacing:0.098482px;}
.ls0_c00462{letter-spacing:0.104482px;}
.ls3_c00462{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00462{word-spacing:-33.713438px;}
.ws5_c00462{word-spacing:-26.575517px;}
.ws4_c00462{word-spacing:-26.487518px;}
.ws1_c00462{word-spacing:-18.769538px;}
.ws0_c00462{word-spacing:-12.074671px;}
.ws9_c00462{word-spacing:0.000000px;}
.ws6_c00462{word-spacing:0.043999px;}
.wsc_c00462{word-spacing:0.056767px;}
.wsa_c00462{word-spacing:0.073250px;}
.wse_c00462{word-spacing:0.083734px;}
.ws3_c00462{word-spacing:0.175997px;}
.wsd_c00462{word-spacing:0.202963px;}
.ws7_c00462{word-spacing:0.213446px;}
.ws8_c00462{word-spacing:0.219446px;}
.wsb_c00462{word-spacing:26.619516px;}
._4_c00462{margin-left:-2211.000050px;}
._1_c00462{margin-left:-3.825638px;}
._2_c00462{width:1.005737px;}
._0_c00462{width:40.109428px;}
._6_c00462{width:53.283031px;}
._3_c00462{width:79.858548px;}
._5_c00462{width:133.452408px;}
.fc5_c00462{color:rgb(0,0,207);}
.fc4_c00462{color:rgb(79,153,5);}
.fc3_c00462{color:rgb(207,92,0);}
.fc2_c00462{color:rgb(33,74,135);}
.fc1_c00462{color:rgb(143,89,3);}
.fc0_c00462{color:rgb(0,0,0);}
.fs2_c00462{font-size:31.015800px;}
.fs1_c00462{font-size:43.999200px;}
.fs0_c00462{font-size:59.775600px;}
.y0_c00462{bottom:0.000000px;}
.y2f_c00462{bottom:44.250000px;}
.y2e_c00462{bottom:96.919500px;}
.y2d_c00462{bottom:113.358000px;}
.y2c_c00462{bottom:129.796500px;}
.y2b_c00462{bottom:146.235000px;}
.y2a_c00462{bottom:162.673500px;}
.y29_c00462{bottom:179.112000px;}
.y28_c00462{bottom:195.550500px;}
.y27_c00462{bottom:211.989000px;}
.y26_c00462{bottom:228.427500px;}
.y25_c00462{bottom:244.866000px;}
.y24_c00462{bottom:261.304500px;}
.y23_c00462{bottom:294.180000px;}
.y22_c00462{bottom:310.618500px;}
.y21_c00462{bottom:327.057000px;}
.y20_c00462{bottom:359.934000px;}
.y1f_c00462{bottom:376.372500px;}
.y1e_c00462{bottom:392.811000px;}
.y1d_c00462{bottom:409.249500px;}
.y1c_c00462{bottom:425.688000px;}
.y1b_c00462{bottom:442.125000px;}
.y1a_c00462{bottom:458.563500px;}
.y19_c00462{bottom:507.879000px;}
.y18_c00462{bottom:524.317500px;}
.y17_c00462{bottom:540.756000px;}
.y16_c00462{bottom:557.194500px;}
.y15_c00462{bottom:573.633000px;}
.y14_c00462{bottom:590.071500px;}
.y13_c00462{bottom:606.508500px;}
.y12_c00462{bottom:622.947000px;}
.y11_c00462{bottom:639.385500px;}
.y10_c00462{bottom:655.450500px;}
.yf_c00462{bottom:671.889000px;}
.ye_c00462{bottom:688.327500px;}
.yd_c00462{bottom:704.766000px;}
.yc_c00462{bottom:721.204500px;}
.yb_c00462{bottom:737.643000px;}
.ya_c00462{bottom:754.081500px;}
.y9_c00462{bottom:770.518500px;}
.y8_c00462{bottom:803.395500px;}
.y7_c00462{bottom:819.834000px;}
.y6_c00462{bottom:869.149500px;}
.y5_c00462{bottom:885.588000px;}
.y4_c00462{bottom:901.653000px;}
.y3_c00462{bottom:1123.998000px;}
.y2_c00462{bottom:1141.930500px;}
.y1_c00462{bottom:1159.863000px;}
.h3_c00462{height:35.190766px;}
.h4_c00462{height:36.007158px;}
.h2_c00462{height:52.332837px;}
.h0_c00462{height:1262.835000px;}
.h1_c00462{height:1263.000000px;}
.w0_c00462{width:892.920000px;}
.w1_c00462{width:893.250000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:127.558500px;}
.x2_c00462{left:137.122500px;}
.x3_c00462{left:143.770500px;}
.x4_c00462{left:170.359500px;}
.x5_c00462{left:177.007500px;}
.x6_c00462{left:435.249000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls4_c00462{letter-spacing:0.000000pt;}
.ls1_c00462{letter-spacing:0.078221pt;}
.ls2_c00462{letter-spacing:0.087539pt;}
.ls0_c00462{letter-spacing:0.092873pt;}
.ls3_c00462{letter-spacing:23.724873pt;}
.ws2_c00462{word-spacing:-29.967501pt;}
.ws5_c00462{word-spacing:-23.622682pt;}
.ws4_c00462{word-spacing:-23.544461pt;}
.ws1_c00462{word-spacing:-16.684034pt;}
.ws0_c00462{word-spacing:-10.733041pt;}
.ws9_c00462{word-spacing:0.000000pt;}
.ws6_c00462{word-spacing:0.039110pt;}
.wsc_c00462{word-spacing:0.050460pt;}
.wsa_c00462{word-spacing:0.065111pt;}
.wse_c00462{word-spacing:0.074430pt;}
.ws3_c00462{word-spacing:0.156442pt;}
.wsd_c00462{word-spacing:0.180412pt;}
.ws7_c00462{word-spacing:0.189730pt;}
.ws8_c00462{word-spacing:0.195063pt;}
.wsb_c00462{word-spacing:23.661792pt;}
._4_c00462{margin-left:-1965.333378pt;}
._1_c00462{margin-left:-3.400567pt;}
._2_c00462{width:0.893988pt;}
._0_c00462{width:35.652825pt;}
._6_c00462{width:47.362694pt;}
._3_c00462{width:70.985376pt;}
._5_c00462{width:118.624363pt;}
.fs2_c00462{font-size:27.569600pt;}
.fs1_c00462{font-size:39.110400pt;}
.fs0_c00462{font-size:53.133867pt;}
.y0_c00462{bottom:0.000000pt;}
.y2f_c00462{bottom:39.333333pt;}
.y2e_c00462{bottom:86.150667pt;}
.y2d_c00462{bottom:100.762667pt;}
.y2c_c00462{bottom:115.374667pt;}
.y2b_c00462{bottom:129.986667pt;}
.y2a_c00462{bottom:144.598667pt;}
.y29_c00462{bottom:159.210667pt;}
.y28_c00462{bottom:173.822667pt;}
.y27_c00462{bottom:188.434667pt;}
.y26_c00462{bottom:203.046667pt;}
.y25_c00462{bottom:217.658667pt;}
.y24_c00462{bottom:232.270667pt;}
.y23_c00462{bottom:261.493333pt;}
.y22_c00462{bottom:276.105333pt;}
.y21_c00462{bottom:290.717333pt;}
.y20_c00462{bottom:319.941333pt;}
.y1f_c00462{bottom:334.553333pt;}
.y1e_c00462{bottom:349.165333pt;}
.y1d_c00462{bottom:363.777333pt;}
.y1c_c00462{bottom:378.389333pt;}
.y1b_c00462{bottom:393.000000pt;}
.y1a_c00462{bottom:407.612000pt;}
.y19_c00462{bottom:451.448000pt;}
.y18_c00462{bottom:466.060000pt;}
.y17_c00462{bottom:480.672000pt;}
.y16_c00462{bottom:495.284000pt;}
.y15_c00462{bottom:509.896000pt;}
.y14_c00462{bottom:524.508000pt;}
.y13_c00462{bottom:539.118667pt;}
.y12_c00462{bottom:553.730667pt;}
.y11_c00462{bottom:568.342667pt;}
.y10_c00462{bottom:582.622667pt;}
.yf_c00462{bottom:597.234667pt;}
.ye_c00462{bottom:611.846667pt;}
.yd_c00462{bottom:626.458667pt;}
.yc_c00462{bottom:641.070667pt;}
.yb_c00462{bottom:655.682667pt;}
.ya_c00462{bottom:670.294667pt;}
.y9_c00462{bottom:684.905333pt;}
.y8_c00462{bottom:714.129333pt;}
.y7_c00462{bottom:728.741333pt;}
.y6_c00462{bottom:772.577333pt;}
.y5_c00462{bottom:787.189333pt;}
.y4_c00462{bottom:801.469333pt;}
.y3_c00462{bottom:999.109333pt;}
.y2_c00462{bottom:1015.049333pt;}
.y1_c00462{bottom:1030.989333pt;}
.h3_c00462{height:31.280681pt;}
.h4_c00462{height:32.006363pt;}
.h2_c00462{height:46.518078pt;}
.h0_c00462{height:1122.520000pt;}
.h1_c00462{height:1122.666667pt;}
.w0_c00462{width:793.706667pt;}
.w1_c00462{width:794.000000pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:113.385333pt;}
.x2_c00462{left:121.886667pt;}
.x3_c00462{left:127.796000pt;}
.x4_c00462{left:151.430667pt;}
.x5_c00462{left:157.340000pt;}
.x6_c00462{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f3550a64211f70a57a95979.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.893555;font-style:normal;font-weight:normal;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_52a459338659a93a3cb24e6f.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.083496;font-style:normal;font-weight:normal;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_9dec6ef2d62eaf286769a74a.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.014648;font-style:normal;font-weight:normal;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_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00463;src:url('chunks/assets/font_3dd2e14e01c2fb1841ed5b94.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:1.000000;font-style: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;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.087998px;}
.ls2_c00463{letter-spacing:0.098482px;}
.ls1_c00463{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00463{word-spacing:-33.713438px;}
.ws2_c00463{word-spacing:-26.575517px;}
.wse_c00463{word-spacing:-26.487518px;}
.ws9_c00463{word-spacing:-21.553319px;}
.ws8_c00463{word-spacing:-21.519216px;}
.ws7_c00463{word-spacing:-19.247743px;}
.ws5_c00463{word-spacing:-18.769538px;}
.ws4_c00463{word-spacing:-14.943900px;}
.wsa_c00463{word-spacing:-14.107042px;}
.wsb_c00463{word-spacing:-12.074671px;}
.ws6_c00463{word-spacing:-10.230144px;}
.ws1_c00463{word-spacing:-9.988424px;}
.ws3_c00463{word-spacing:-9.987499px;}
.ws12_c00463{word-spacing:0.000000px;}
.wsf_c00463{word-spacing:0.043999px;}
.ws15_c00463{word-spacing:0.056767px;}
.ws13_c00463{word-spacing:0.073250px;}
.ws17_c00463{word-spacing:0.083734px;}
.wsd_c00463{word-spacing:0.175997px;}
.ws16_c00463{word-spacing:0.202963px;}
.ws10_c00463{word-spacing:0.213446px;}
.ws11_c00463{word-spacing:0.219446px;}
.ws14_c00463{word-spacing:26.619516px;}
.ws0_c00463{word-spacing:43.038600px;}
._8_c00463{margin-left:-2211.000050px;}
._0_c00463{margin-left:-7.833025px;}
._2_c00463{margin-left:-4.124516px;}
._4_c00463{margin-left:-2.347817px;}
._3_c00463{margin-left:-1.075961px;}
._6_c00463{width:1.005737px;}
._1_c00463{width:19.935816px;}
._5_c00463{width:40.109428px;}
._a_c00463{width:53.283031px;}
._7_c00463{width:79.858548px;}
._9_c00463{width:133.452408px;}
.fc6_c00463{color:rgb(0,0,207);}
.fc5_c00463{color:rgb(79,153,5);}
.fc3_c00463{color:rgb(33,74,135);}
.fc2_c00463{color:rgb(143,89,3);}
.fc4_c00463{color:rgb(207,92,0);}
.fc1_c00463{color:rgb(6,69,173);}
.fc0_c00463{color:rgb(0,0,0);}
.fs3_c00463{font-size:31.015800px;}
.fs2_c00463{font-size:43.999200px;}
.fs1_c00463{font-size:59.775600px;}
.fs0_c00463{font-size:86.077200px;}
.y0_c00463{bottom:0.000000px;}
.y20_c00463{bottom:44.250000px;}
.y1f_c00463{bottom:86.982000px;}
.y1e_c00463{bottom:103.420500px;}
.y1d_c00463{bottom:119.859000px;}
.y1c_c00463{bottom:136.297500px;}
.y1b_c00463{bottom:152.736000px;}
.y1a_c00463{bottom:169.174500px;}
.y19_c00463{bottom:185.613000px;}
.y18_c00463{bottom:201.678000px;}
.y17_c00463{bottom:218.115000px;}
.y16_c00463{bottom:234.553500px;}
.y15_c00463{bottom:250.992000px;}
.y14_c00463{bottom:267.430500px;}
.y13_c00463{bottom:283.869000px;}
.y12_c00463{bottom:300.307500px;}
.y11_c00463{bottom:316.746000px;}
.y10_c00463{bottom:349.623000px;}
.yf_c00463{bottom:366.061500px;}
.ye_c00463{bottom:415.375500px;}
.yd_c00463{bottom:431.814000px;}
.yc_c00463{bottom:447.879000px;}
.yb_c00463{bottom:493.600500px;}
.ya_c00463{bottom:511.533000px;}
.y9_c00463{bottom:529.465500px;}
.y8_c00463{bottom:547.398000px;}
.y7_c00463{bottom:565.330500px;}
.y6_c00463{bottom:583.264500px;}
.y5_c00463{bottom:610.377000px;}
.y4_c00463{bottom:637.491000px;}
.y3_c00463{bottom:664.603500px;}
.y2_c00463{bottom:691.717500px;}
.y1_c00463{bottom:734.299500px;}
.h6_c00463{height:35.190766px;}
.h7_c00463{height:36.007158px;}
.h3_c00463{height:40.511979px;}
.h4_c00463{height:52.332837px;}
.h5_c00463{height:52.338837px;}
.h2_c00463{height:58.337477px;}
.h0_c00463{height:1262.835000px;}
.h1_c00463{height:1263.000000px;}
.w0_c00463{width:892.920000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:127.558500px;}
.x2_c00463{left:137.122500px;}
.x3_c00463{left:143.770500px;}
.x4_c00463{left:170.359500px;}
.x5_c00463{left:435.249000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.078221pt;}
.ls2_c00463{letter-spacing:0.087539pt;}
.ls1_c00463{letter-spacing:0.092873pt;}
.wsc_c00463{word-spacing:-29.967501pt;}
.ws2_c00463{word-spacing:-23.622682pt;}
.wse_c00463{word-spacing:-23.544461pt;}
.ws9_c00463{word-spacing:-19.158506pt;}
.ws8_c00463{word-spacing:-19.128192pt;}
.ws7_c00463{word-spacing:-17.109105pt;}
.ws5_c00463{word-spacing:-16.684034pt;}
.ws4_c00463{word-spacing:-13.283467pt;}
.wsa_c00463{word-spacing:-12.539593pt;}
.wsb_c00463{word-spacing:-10.733041pt;}
.ws6_c00463{word-spacing:-9.093461pt;}
.ws1_c00463{word-spacing:-8.878599pt;}
.ws3_c00463{word-spacing:-8.877777pt;}
.ws12_c00463{word-spacing:0.000000pt;}
.wsf_c00463{word-spacing:0.039110pt;}
.ws15_c00463{word-spacing:0.050460pt;}
.ws13_c00463{word-spacing:0.065111pt;}
.ws17_c00463{word-spacing:0.074430pt;}
.wsd_c00463{word-spacing:0.156442pt;}
.ws16_c00463{word-spacing:0.180412pt;}
.ws10_c00463{word-spacing:0.189730pt;}
.ws11_c00463{word-spacing:0.195063pt;}
.ws14_c00463{word-spacing:23.661792pt;}
.ws0_c00463{word-spacing:38.256533pt;}
._8_c00463{margin-left:-1965.333378pt;}
._0_c00463{margin-left:-6.962689pt;}
._2_c00463{margin-left:-3.666237pt;}
._4_c00463{margin-left:-2.086948pt;}
._3_c00463{margin-left:-0.956410pt;}
._6_c00463{width:0.893988pt;}
._1_c00463{width:17.720725pt;}
._5_c00463{width:35.652825pt;}
._a_c00463{width:47.362694pt;}
._7_c00463{width:70.985376pt;}
._9_c00463{width:118.624363pt;}
.fs3_c00463{font-size:27.569600pt;}
.fs2_c00463{font-size:39.110400pt;}
.fs1_c00463{font-size:53.133867pt;}
.fs0_c00463{font-size:76.513067pt;}
.y0_c00463{bottom:0.000000pt;}
.y20_c00463{bottom:39.333333pt;}
.y1f_c00463{bottom:77.317333pt;}
.y1e_c00463{bottom:91.929333pt;}
.y1d_c00463{bottom:106.541333pt;}
.y1c_c00463{bottom:121.153333pt;}
.y1b_c00463{bottom:135.765333pt;}
.y1a_c00463{bottom:150.377333pt;}
.y19_c00463{bottom:164.989333pt;}
.y18_c00463{bottom:179.269333pt;}
.y17_c00463{bottom:193.880000pt;}
.y16_c00463{bottom:208.492000pt;}
.y15_c00463{bottom:223.104000pt;}
.y14_c00463{bottom:237.716000pt;}
.y13_c00463{bottom:252.328000pt;}
.y12_c00463{bottom:266.940000pt;}
.y11_c00463{bottom:281.552000pt;}
.y10_c00463{bottom:310.776000pt;}
.yf_c00463{bottom:325.388000pt;}
.ye_c00463{bottom:369.222667pt;}
.yd_c00463{bottom:383.834667pt;}
.yc_c00463{bottom:398.114667pt;}
.yb_c00463{bottom:438.756000pt;}
.ya_c00463{bottom:454.696000pt;}
.y9_c00463{bottom:470.636000pt;}
.y8_c00463{bottom:486.576000pt;}
.y7_c00463{bottom:502.516000pt;}
.y6_c00463{bottom:518.457333pt;}
.y5_c00463{bottom:542.557333pt;}
.y4_c00463{bottom:566.658667pt;}
.y3_c00463{bottom:590.758667pt;}
.y2_c00463{bottom:614.860000pt;}
.y1_c00463{bottom:652.710667pt;}
.h6_c00463{height:31.280681pt;}
.h7_c00463{height:32.006363pt;}
.h3_c00463{height:36.010648pt;}
.h4_c00463{height:46.518078pt;}
.h5_c00463{height:46.523411pt;}
.h2_c00463{height:51.855535pt;}
.h0_c00463{height:1122.520000pt;}
.h1_c00463{height:1122.666667pt;}
.w0_c00463{width:793.706667pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:113.385333pt;}
.x2_c00463{left:121.886667pt;}
.x3_c00463{left:127.796000pt;}
.x4_c00463{left:151.430667pt;}
.x5_c00463{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d41d1d329bda17340d4c478a.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.048828;font-style:normal;font-weight:normal;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_2175e7945cd230ca5995ba16.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.014648;font-style:normal;font-weight:normal;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_b080629cbce35be3b62e213c.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00464;src:url('chunks/assets/font_92ea5995b10b866a211b9f5b.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.102051;font-style: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;}
.ls4_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.087998px;}
.ls1_c00464{letter-spacing:0.098482px;}
.ls3_c00464{letter-spacing:0.104482px;}
.ls2_c00464{letter-spacing:26.690482px;}
.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;}
}
.ws3_c00464{word-spacing:-26.575517px;}
.ws5_c00464{word-spacing:-26.487518px;}
.wse_c00464{word-spacing:-21.280114px;}
.wsb_c00464{word-spacing:-18.769538px;}
.wsd_c00464{word-spacing:-17.454475px;}
.wsa_c00464{word-spacing:-14.943900px;}
.wsf_c00464{word-spacing:-13.509286px;}
.ws10_c00464{word-spacing:-13.449510px;}
.ws8_c00464{word-spacing:-9.988424px;}
.ws9_c00464{word-spacing:-9.987499px;}
.wsc_c00464{word-spacing:-7.380144px;}
.ws4_c00464{word-spacing:0.000000px;}
.ws1_c00464{word-spacing:0.043999px;}
.ws0_c00464{word-spacing:0.073250px;}
.ws6_c00464{word-spacing:0.213446px;}
.ws2_c00464{word-spacing:0.219446px;}
.ws7_c00464{word-spacing:43.038600px;}
._5_c00464{margin-left:-3.700921px;}
._3_c00464{margin-left:-1.549390px;}
._2_c00464{width:1.020816px;}
._4_c00464{width:19.935816px;}
._7_c00464{width:21.519216px;}
._6_c00464{width:36.304868px;}
._1_c00464{width:53.723023px;}
._0_c00464{width:79.858548px;}
.fc5_c00464{color:rgb(79,153,5);}
.fc4_c00464{color:rgb(143,89,3);}
.fc6_c00464{color:rgb(6,69,173);}
.fc3_c00464{color:rgb(207,92,0);}
.fc2_c00464{color:rgb(0,0,0);}
.fc1_c00464{color:rgb(0,0,207);}
.fc0_c00464{color:rgb(33,74,135);}
.fs0_c00464{font-size:43.999200px;}
.fs2_c00464{font-size:59.775600px;}
.fs1_c00464{font-size:86.077200px;}
.y0_c00464{bottom:0.000000px;}
.y20_c00464{bottom:44.250000px;}
.y1f_c00464{bottom:82.051500px;}
.y1e_c00464{bottom:99.984000px;}
.y1d_c00464{bottom:117.916500px;}
.y1c_c00464{bottom:144.757500px;}
.y1b_c00464{bottom:171.597000px;}
.y1a_c00464{bottom:198.438000px;}
.y19_c00464{bottom:225.277500px;}
.y18_c00464{bottom:267.492000px;}
.y17_c00464{bottom:732.465000px;}
.y16_c00464{bottom:748.903500px;}
.y15_c00464{bottom:765.342000px;}
.y14_c00464{bottom:781.780500px;}
.y13_c00464{bottom:798.219000px;}
.y12_c00464{bottom:814.657500px;}
.y11_c00464{bottom:831.096000px;}
.y10_c00464{bottom:847.534500px;}
.yf_c00464{bottom:863.973000px;}
.ye_c00464{bottom:880.411500px;}
.yd_c00464{bottom:896.848500px;}
.yc_c00464{bottom:929.725500px;}
.yb_c00464{bottom:946.164000px;}
.ya_c00464{bottom:962.602500px;}
.y9_c00464{bottom:995.479500px;}
.y8_c00464{bottom:1011.918000px;}
.y7_c00464{bottom:1028.356500px;}
.y6_c00464{bottom:1044.795000px;}
.y5_c00464{bottom:1061.232000px;}
.y4_c00464{bottom:1077.670500px;}
.y3_c00464{bottom:1094.109000px;}
.y2_c00464{bottom:1143.424500px;}
.y1_c00464{bottom:1159.863000px;}
.h3_c00464{height:35.190766px;}
.h2_c00464{height:36.007158px;}
.h5_c00464{height:40.511979px;}
.h6_c00464{height:52.332837px;}
.h4_c00464{height:58.337477px;}
.h0_c00464{height:1262.835000px;}
.h1_c00464{height:1263.000000px;}
.w0_c00464{width:892.920000px;}
.w1_c00464{width:893.250000px;}
.x0_c00464{left:0.000000px;}
.x4_c00464{left:127.558500px;}
.x2_c00464{left:137.122500px;}
.x1_c00464{left:143.770500px;}
.x3_c00464{left:177.007500px;}
.x5_c00464{left:435.249000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls4_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.078221pt;}
.ls1_c00464{letter-spacing:0.087539pt;}
.ls3_c00464{letter-spacing:0.092873pt;}
.ls2_c00464{letter-spacing:23.724873pt;}
.ws3_c00464{word-spacing:-23.622682pt;}
.ws5_c00464{word-spacing:-23.544461pt;}
.wse_c00464{word-spacing:-18.915657pt;}
.wsb_c00464{word-spacing:-16.684034pt;}
.wsd_c00464{word-spacing:-15.515089pt;}
.wsa_c00464{word-spacing:-13.283467pt;}
.wsf_c00464{word-spacing:-12.008254pt;}
.ws10_c00464{word-spacing:-11.955120pt;}
.ws8_c00464{word-spacing:-8.878599pt;}
.ws9_c00464{word-spacing:-8.877777pt;}
.wsc_c00464{word-spacing:-6.560128pt;}
.ws4_c00464{word-spacing:0.000000pt;}
.ws1_c00464{word-spacing:0.039110pt;}
.ws0_c00464{word-spacing:0.065111pt;}
.ws6_c00464{word-spacing:0.189730pt;}
.ws2_c00464{word-spacing:0.195063pt;}
.ws7_c00464{word-spacing:38.256533pt;}
._5_c00464{margin-left:-3.289708pt;}
._3_c00464{margin-left:-1.377235pt;}
._2_c00464{width:0.907392pt;}
._4_c00464{width:17.720725pt;}
._7_c00464{width:19.128192pt;}
._6_c00464{width:32.270994pt;}
._1_c00464{width:47.753798pt;}
._0_c00464{width:70.985376pt;}
.fs0_c00464{font-size:39.110400pt;}
.fs2_c00464{font-size:53.133867pt;}
.fs1_c00464{font-size:76.513067pt;}
.y0_c00464{bottom:0.000000pt;}
.y20_c00464{bottom:39.333333pt;}
.y1f_c00464{bottom:72.934667pt;}
.y1e_c00464{bottom:88.874667pt;}
.y1d_c00464{bottom:104.814667pt;}
.y1c_c00464{bottom:128.673333pt;}
.y1b_c00464{bottom:152.530667pt;}
.y1a_c00464{bottom:176.389333pt;}
.y19_c00464{bottom:200.246667pt;}
.y18_c00464{bottom:237.770667pt;}
.y17_c00464{bottom:651.080000pt;}
.y16_c00464{bottom:665.692000pt;}
.y15_c00464{bottom:680.304000pt;}
.y14_c00464{bottom:694.916000pt;}
.y13_c00464{bottom:709.528000pt;}
.y12_c00464{bottom:724.140000pt;}
.y11_c00464{bottom:738.752000pt;}
.y10_c00464{bottom:753.364000pt;}
.yf_c00464{bottom:767.976000pt;}
.ye_c00464{bottom:782.588000pt;}
.yd_c00464{bottom:797.198667pt;}
.yc_c00464{bottom:826.422667pt;}
.yb_c00464{bottom:841.034667pt;}
.ya_c00464{bottom:855.646667pt;}
.y9_c00464{bottom:884.870667pt;}
.y8_c00464{bottom:899.482667pt;}
.y7_c00464{bottom:914.094667pt;}
.y6_c00464{bottom:928.706667pt;}
.y5_c00464{bottom:943.317333pt;}
.y4_c00464{bottom:957.929333pt;}
.y3_c00464{bottom:972.541333pt;}
.y2_c00464{bottom:1016.377333pt;}
.y1_c00464{bottom:1030.989333pt;}
.h3_c00464{height:31.280681pt;}
.h2_c00464{height:32.006363pt;}
.h5_c00464{height:36.010648pt;}
.h6_c00464{height:46.518078pt;}
.h4_c00464{height:51.855535pt;}
.h0_c00464{height:1122.520000pt;}
.h1_c00464{height:1122.666667pt;}
.w0_c00464{width:793.706667pt;}
.w1_c00464{width:794.000000pt;}
.x0_c00464{left:0.000000pt;}
.x4_c00464{left:113.385333pt;}
.x2_c00464{left:121.886667pt;}
.x1_c00464{left:127.796000pt;}
.x3_c00464{left:157.340000pt;}
.x5_c00464{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e6c36f9dd9d3d5785eec907.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.102051;font-style:normal;font-weight:normal;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_9e2587a05fec9268567b1762.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_37fc4a0c520e76fe06636d40.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_3629f78a26ff1c0fa9472875.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls3_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:0.087998px;}
.ls2_c00465{letter-spacing:0.098482px;}
.ls1_c00465{letter-spacing:0.104482px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00465{word-spacing:-26.575517px;}
.ws7_c00465{word-spacing:-26.487518px;}
.ws0_c00465{word-spacing:-19.725948px;}
.ws2_c00465{word-spacing:-19.666172px;}
.ws5_c00465{word-spacing:-18.769538px;}
.ws4_c00465{word-spacing:-17.813129px;}
.ws3_c00465{word-spacing:-14.824349px;}
.wsb_c00465{word-spacing:0.000000px;}
.ws8_c00465{word-spacing:0.043999px;}
.wsc_c00465{word-spacing:0.053933px;}
.wsd_c00465{word-spacing:0.056767px;}
.ws6_c00465{word-spacing:0.175997px;}
.wsa_c00465{word-spacing:0.213446px;}
.ws9_c00465{word-spacing:0.219446px;}
._3_c00465{margin-left:-3.825638px;}
._4_c00465{width:1.005737px;}
._1_c00465{width:19.905275px;}
._2_c00465{width:22.774504px;}
._0_c00465{width:31.920170px;}
.fc5_c00465{color:rgb(0,0,207);}
.fc4_c00465{color:rgb(79,153,5);}
.fc3_c00465{color:rgb(207,92,0);}
.fc2_c00465{color:rgb(33,74,135);}
.fc1_c00465{color:rgb(143,89,3);}
.fc0_c00465{color:rgb(0,0,0);}
.fs1_c00465{font-size:43.999200px;}
.fs0_c00465{font-size:59.775600px;}
.y0_c00465{bottom:0.000000px;}
.y39_c00465{bottom:44.250000px;}
.y38_c00465{bottom:86.982000px;}
.y37_c00465{bottom:103.420500px;}
.y36_c00465{bottom:152.736000px;}
.y35_c00465{bottom:169.174500px;}
.y34_c00465{bottom:185.613000px;}
.y33_c00465{bottom:202.051500px;}
.y32_c00465{bottom:218.490000px;}
.y31_c00465{bottom:234.927000px;}
.y30_c00465{bottom:251.365500px;}
.y2f_c00465{bottom:267.804000px;}
.y2e_c00465{bottom:284.242500px;}
.y2d_c00465{bottom:300.681000px;}
.y2c_c00465{bottom:317.119500px;}
.y2b_c00465{bottom:333.558000px;}
.y2a_c00465{bottom:349.996500px;}
.y29_c00465{bottom:366.435000px;}
.y28_c00465{bottom:382.873500px;}
.y27_c00465{bottom:399.310500px;}
.y26_c00465{bottom:415.749000px;}
.y25_c00465{bottom:432.187500px;}
.y24_c00465{bottom:448.626000px;}
.y23_c00465{bottom:465.064500px;}
.y22_c00465{bottom:481.503000px;}
.y21_c00465{bottom:497.941500px;}
.y20_c00465{bottom:514.380000px;}
.y1f_c00465{bottom:530.818500px;}
.y1e_c00465{bottom:547.257000px;}
.y1d_c00465{bottom:596.571000px;}
.y1c_c00465{bottom:613.009500px;}
.y1b_c00465{bottom:645.886500px;}
.y1a_c00465{bottom:662.325000px;}
.y19_c00465{bottom:678.763500px;}
.y18_c00465{bottom:695.202000px;}
.y17_c00465{bottom:711.640500px;}
.y16_c00465{bottom:728.079000px;}
.y15_c00465{bottom:744.516000px;}
.y14_c00465{bottom:760.954500px;}
.y13_c00465{bottom:793.831500px;}
.y12_c00465{bottom:810.270000px;}
.y11_c00465{bottom:843.147000px;}
.y10_c00465{bottom:859.585500px;}
.yf_c00465{bottom:876.024000px;}
.ye_c00465{bottom:892.462500px;}
.yd_c00465{bottom:925.338000px;}
.yc_c00465{bottom:941.776500px;}
.yb_c00465{bottom:958.215000px;}
.ya_c00465{bottom:974.653500px;}
.y9_c00465{bottom:991.092000px;}
.y8_c00465{bottom:1007.530500px;}
.y7_c00465{bottom:1023.969000px;}
.y6_c00465{bottom:1040.407500px;}
.y5_c00465{bottom:1056.472500px;}
.y4_c00465{bottom:1106.064000px;}
.y3_c00465{bottom:1123.998000px;}
.y2_c00465{bottom:1141.930500px;}
.y1_c00465{bottom:1159.863000px;}
.h3_c00465{height:35.190766px;}
.h4_c00465{height:36.007158px;}
.h2_c00465{height:52.332837px;}
.h0_c00465{height:1262.835000px;}
.h1_c00465{height:1263.000000px;}
.w0_c00465{width:892.920000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:127.558500px;}
.x2_c00465{left:137.122500px;}
.x3_c00465{left:143.770500px;}
.x6_c00465{left:230.185500px;}
.x4_c00465{left:243.480000px;}
.x5_c00465{left:276.715500px;}
.x7_c00465{left:435.249000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls3_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:0.078221pt;}
.ls2_c00465{letter-spacing:0.087539pt;}
.ls1_c00465{letter-spacing:0.092873pt;}
.ws1_c00465{word-spacing:-23.622682pt;}
.ws7_c00465{word-spacing:-23.544461pt;}
.ws0_c00465{word-spacing:-17.534176pt;}
.ws2_c00465{word-spacing:-17.481042pt;}
.ws5_c00465{word-spacing:-16.684034pt;}
.ws4_c00465{word-spacing:-15.833892pt;}
.ws3_c00465{word-spacing:-13.177199pt;}
.wsb_c00465{word-spacing:0.000000pt;}
.ws8_c00465{word-spacing:0.039110pt;}
.wsc_c00465{word-spacing:0.047940pt;}
.wsd_c00465{word-spacing:0.050460pt;}
.ws6_c00465{word-spacing:0.156442pt;}
.wsa_c00465{word-spacing:0.189730pt;}
.ws9_c00465{word-spacing:0.195063pt;}
._3_c00465{margin-left:-3.400567pt;}
._4_c00465{width:0.893988pt;}
._1_c00465{width:17.693578pt;}
._2_c00465{width:20.244003pt;}
._0_c00465{width:28.373485pt;}
.fs1_c00465{font-size:39.110400pt;}
.fs0_c00465{font-size:53.133867pt;}
.y0_c00465{bottom:0.000000pt;}
.y39_c00465{bottom:39.333333pt;}
.y38_c00465{bottom:77.317333pt;}
.y37_c00465{bottom:91.929333pt;}
.y36_c00465{bottom:135.765333pt;}
.y35_c00465{bottom:150.377333pt;}
.y34_c00465{bottom:164.989333pt;}
.y33_c00465{bottom:179.601333pt;}
.y32_c00465{bottom:194.213333pt;}
.y31_c00465{bottom:208.824000pt;}
.y30_c00465{bottom:223.436000pt;}
.y2f_c00465{bottom:238.048000pt;}
.y2e_c00465{bottom:252.660000pt;}
.y2d_c00465{bottom:267.272000pt;}
.y2c_c00465{bottom:281.884000pt;}
.y2b_c00465{bottom:296.496000pt;}
.y2a_c00465{bottom:311.108000pt;}
.y29_c00465{bottom:325.720000pt;}
.y28_c00465{bottom:340.332000pt;}
.y27_c00465{bottom:354.942667pt;}
.y26_c00465{bottom:369.554667pt;}
.y25_c00465{bottom:384.166667pt;}
.y24_c00465{bottom:398.778667pt;}
.y23_c00465{bottom:413.390667pt;}
.y22_c00465{bottom:428.002667pt;}
.y21_c00465{bottom:442.614667pt;}
.y20_c00465{bottom:457.226667pt;}
.y1f_c00465{bottom:471.838667pt;}
.y1e_c00465{bottom:486.450667pt;}
.y1d_c00465{bottom:530.285333pt;}
.y1c_c00465{bottom:544.897333pt;}
.y1b_c00465{bottom:574.121333pt;}
.y1a_c00465{bottom:588.733333pt;}
.y19_c00465{bottom:603.345333pt;}
.y18_c00465{bottom:617.957333pt;}
.y17_c00465{bottom:632.569333pt;}
.y16_c00465{bottom:647.181333pt;}
.y15_c00465{bottom:661.792000pt;}
.y14_c00465{bottom:676.404000pt;}
.y13_c00465{bottom:705.628000pt;}
.y12_c00465{bottom:720.240000pt;}
.y11_c00465{bottom:749.464000pt;}
.y10_c00465{bottom:764.076000pt;}
.yf_c00465{bottom:778.688000pt;}
.ye_c00465{bottom:793.300000pt;}
.yd_c00465{bottom:822.522667pt;}
.yc_c00465{bottom:837.134667pt;}
.yb_c00465{bottom:851.746667pt;}
.ya_c00465{bottom:866.358667pt;}
.y9_c00465{bottom:880.970667pt;}
.y8_c00465{bottom:895.582667pt;}
.y7_c00465{bottom:910.194667pt;}
.y6_c00465{bottom:924.806667pt;}
.y5_c00465{bottom:939.086667pt;}
.y4_c00465{bottom:983.168000pt;}
.y3_c00465{bottom:999.109333pt;}
.y2_c00465{bottom:1015.049333pt;}
.y1_c00465{bottom:1030.989333pt;}
.h3_c00465{height:31.280681pt;}
.h4_c00465{height:32.006363pt;}
.h2_c00465{height:46.518078pt;}
.h0_c00465{height:1122.520000pt;}
.h1_c00465{height:1122.666667pt;}
.w0_c00465{width:793.706667pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:113.385333pt;}
.x2_c00465{left:121.886667pt;}
.x3_c00465{left:127.796000pt;}
.x6_c00465{left:204.609333pt;}
.x4_c00465{left:216.426667pt;}
.x5_c00465{left:245.969333pt;}
.x7_c00465{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.048828;font-style:normal;font-weight:normal;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_c698f9dbeb2d65e6c1537632.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.083496;font-style:normal;font-weight:normal;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_be9bb6659ac46ae76a6391c7.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:0.893555;font-style:normal;font-weight:normal;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_5e3d2c76ee741a3e6a636f02.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.014648;font-style: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;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls1_c00466{letter-spacing:0.087998px;}
.ls2_c00466{letter-spacing:0.098482px;}
.ls0_c00466{letter-spacing:0.104482px;}
.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;}
}
.wsf_c00466{word-spacing:-33.713438px;}
.ws1_c00466{word-spacing:-26.575517px;}
.ws0_c00466{word-spacing:-26.487518px;}
.wsc_c00466{word-spacing:-21.553319px;}
.wsb_c00466{word-spacing:-21.519216px;}
.ws8_c00466{word-spacing:-18.769538px;}
.wsa_c00466{word-spacing:-16.019861px;}
.ws7_c00466{word-spacing:-14.943900px;}
.wsd_c00466{word-spacing:-14.107042px;}
.wse_c00466{word-spacing:-12.074671px;}
.ws5_c00466{word-spacing:-9.988424px;}
.ws6_c00466{word-spacing:-9.987499px;}
.ws9_c00466{word-spacing:-4.536144px;}
.ws12_c00466{word-spacing:0.000000px;}
.ws2_c00466{word-spacing:0.043999px;}
.ws10_c00466{word-spacing:0.175997px;}
.ws3_c00466{word-spacing:0.213446px;}
.ws11_c00466{word-spacing:0.219446px;}
.ws4_c00466{word-spacing:43.038600px;}
._4_c00466{margin-left:-3.825638px;}
._1_c00466{margin-left:-1.549390px;}
._0_c00466{width:1.041538px;}
._2_c00466{width:19.935816px;}
._3_c00466{width:40.109428px;}
.fc5_c00466{color:rgb(0,0,207);}
.fc4_c00466{color:rgb(143,89,3);}
.fc3_c00466{color:rgb(79,153,5);}
.fc6_c00466{color:rgb(6,69,173);}
.fc2_c00466{color:rgb(207,92,0);}
.fc1_c00466{color:rgb(0,0,0);}
.fc0_c00466{color:rgb(33,74,135);}
.fs0_c00466{font-size:43.999200px;}
.fs2_c00466{font-size:59.775600px;}
.fs1_c00466{font-size:86.077200px;}
.y0_c00466{bottom:0.000000px;}
.y1e_c00466{bottom:44.250000px;}
.y1d_c00466{bottom:82.051500px;}
.y1c_c00466{bottom:114.927000px;}
.y1b_c00466{bottom:131.365500px;}
.y1a_c00466{bottom:180.681000px;}
.y19_c00466{bottom:197.119500px;}
.y18_c00466{bottom:213.184500px;}
.y17_c00466{bottom:258.178500px;}
.y16_c00466{bottom:276.111000px;}
.y15_c00466{bottom:294.043500px;}
.y14_c00466{bottom:311.976000px;}
.y13_c00466{bottom:329.908500px;}
.y12_c00466{bottom:347.842500px;}
.y11_c00466{bottom:374.709000px;}
.y10_c00466{bottom:401.577000px;}
.yf_c00466{bottom:428.443500px;}
.ye_c00466{bottom:455.311500px;}
.yd_c00466{bottom:497.551500px;}
.yc_c00466{bottom:962.602500px;}
.yb_c00466{bottom:979.041000px;}
.ya_c00466{bottom:995.479500px;}
.y9_c00466{bottom:1011.918000px;}
.y8_c00466{bottom:1028.356500px;}
.y7_c00466{bottom:1044.795000px;}
.y6_c00466{bottom:1061.232000px;}
.y5_c00466{bottom:1077.670500px;}
.y4_c00466{bottom:1094.109000px;}
.y3_c00466{bottom:1110.547500px;}
.y2_c00466{bottom:1126.986000px;}
.y1_c00466{bottom:1159.863000px;}
.h6_c00466{height:35.190766px;}
.h2_c00466{height:36.007158px;}
.h4_c00466{height:40.511979px;}
.h5_c00466{height:52.332837px;}
.h3_c00466{height:58.337477px;}
.h0_c00466{height:1262.835000px;}
.h1_c00466{height:1263.000000px;}
.w0_c00466{width:892.920000px;}
.w1_c00466{width:893.250000px;}
.x0_c00466{left:0.000000px;}
.x3_c00466{left:127.558500px;}
.x1_c00466{left:137.122500px;}
.x2_c00466{left:177.007500px;}
.x4_c00466{left:435.249000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls1_c00466{letter-spacing:0.078221pt;}
.ls2_c00466{letter-spacing:0.087539pt;}
.ls0_c00466{letter-spacing:0.092873pt;}
.wsf_c00466{word-spacing:-29.967501pt;}
.ws1_c00466{word-spacing:-23.622682pt;}
.ws0_c00466{word-spacing:-23.544461pt;}
.wsc_c00466{word-spacing:-19.158506pt;}
.wsb_c00466{word-spacing:-19.128192pt;}
.ws8_c00466{word-spacing:-16.684034pt;}
.wsa_c00466{word-spacing:-14.239876pt;}
.ws7_c00466{word-spacing:-13.283467pt;}
.wsd_c00466{word-spacing:-12.539593pt;}
.wse_c00466{word-spacing:-10.733041pt;}
.ws5_c00466{word-spacing:-8.878599pt;}
.ws6_c00466{word-spacing:-8.877777pt;}
.ws9_c00466{word-spacing:-4.032128pt;}
.ws12_c00466{word-spacing:0.000000pt;}
.ws2_c00466{word-spacing:0.039110pt;}
.ws10_c00466{word-spacing:0.156442pt;}
.ws3_c00466{word-spacing:0.189730pt;}
.ws11_c00466{word-spacing:0.195063pt;}
.ws4_c00466{word-spacing:38.256533pt;}
._4_c00466{margin-left:-3.400567pt;}
._1_c00466{margin-left:-1.377235pt;}
._0_c00466{width:0.925811pt;}
._2_c00466{width:17.720725pt;}
._3_c00466{width:35.652825pt;}
.fs0_c00466{font-size:39.110400pt;}
.fs2_c00466{font-size:53.133867pt;}
.fs1_c00466{font-size:76.513067pt;}
.y0_c00466{bottom:0.000000pt;}
.y1e_c00466{bottom:39.333333pt;}
.y1d_c00466{bottom:72.934667pt;}
.y1c_c00466{bottom:102.157333pt;}
.y1b_c00466{bottom:116.769333pt;}
.y1a_c00466{bottom:160.605333pt;}
.y19_c00466{bottom:175.217333pt;}
.y18_c00466{bottom:189.497333pt;}
.y17_c00466{bottom:229.492000pt;}
.y16_c00466{bottom:245.432000pt;}
.y15_c00466{bottom:261.372000pt;}
.y14_c00466{bottom:277.312000pt;}
.y13_c00466{bottom:293.252000pt;}
.y12_c00466{bottom:309.193333pt;}
.y11_c00466{bottom:333.074667pt;}
.y10_c00466{bottom:356.957333pt;}
.yf_c00466{bottom:380.838667pt;}
.ye_c00466{bottom:404.721333pt;}
.yd_c00466{bottom:442.268000pt;}
.yc_c00466{bottom:855.646667pt;}
.yb_c00466{bottom:870.258667pt;}
.ya_c00466{bottom:884.870667pt;}
.y9_c00466{bottom:899.482667pt;}
.y8_c00466{bottom:914.094667pt;}
.y7_c00466{bottom:928.706667pt;}
.y6_c00466{bottom:943.317333pt;}
.y5_c00466{bottom:957.929333pt;}
.y4_c00466{bottom:972.541333pt;}
.y3_c00466{bottom:987.153333pt;}
.y2_c00466{bottom:1001.765333pt;}
.y1_c00466{bottom:1030.989333pt;}
.h6_c00466{height:31.280681pt;}
.h2_c00466{height:32.006363pt;}
.h4_c00466{height:36.010648pt;}
.h5_c00466{height:46.518078pt;}
.h3_c00466{height:51.855535pt;}
.h0_c00466{height:1122.520000pt;}
.h1_c00466{height:1122.666667pt;}
.w0_c00466{width:793.706667pt;}
.w1_c00466{width:794.000000pt;}
.x0_c00466{left:0.000000pt;}
.x3_c00466{left:113.385333pt;}
.x1_c00466{left:121.886667pt;}
.x2_c00466{left:157.340000pt;}
.x4_c00466{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.048828;font-style:normal;font-weight:normal;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_c363e38adc3b73680f80b637.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_e22aa63e93b75182bcdd1e31.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00467;src:url('chunks/assets/font_05ff295d803cf9b9e8e41bf0.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls4_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.087998px;}
.ls2_c00467{letter-spacing:0.098482px;}
.ls1_c00467{letter-spacing:0.104482px;}
.ls3_c00467{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws4_c00467{word-spacing:-26.487518px;}
.ws1_c00467{word-spacing:0.000000px;}
.ws7_c00467{word-spacing:0.043999px;}
.ws5_c00467{word-spacing:0.056767px;}
.ws2_c00467{word-spacing:0.073250px;}
.ws3_c00467{word-spacing:0.083734px;}
.ws6_c00467{word-spacing:0.202963px;}
.ws9_c00467{word-spacing:0.213446px;}
.ws8_c00467{word-spacing:0.219446px;}
._2_c00467{width:1.000373px;}
._1_c00467{width:53.283031px;}
._0_c00467{width:79.858548px;}
._3_c00467{width:133.452408px;}
.fc5_c00467{color:rgb(207,92,0);}
.fc4_c00467{color:rgb(143,89,3);}
.fc3_c00467{color:rgb(0,0,207);}
.fc2_c00467{color:rgb(79,153,5);}
.fc1_c00467{color:rgb(0,0,0);}
.fc0_c00467{color:rgb(33,74,135);}
.fs0_c00467{font-size:43.999200px;}
.fs1_c00467{font-size:59.775600px;}
.y0_c00467{bottom:0.000000px;}
.y25_c00467{bottom:44.250000px;}
.y24_c00467{bottom:518.767500px;}
.y23_c00467{bottom:535.206000px;}
.y22_c00467{bottom:551.643000px;}
.y21_c00467{bottom:568.081500px;}
.y20_c00467{bottom:584.520000px;}
.y1f_c00467{bottom:600.958500px;}
.y1e_c00467{bottom:617.397000px;}
.y1d_c00467{bottom:633.835500px;}
.y1c_c00467{bottom:650.274000px;}
.y1b_c00467{bottom:666.712500px;}
.y1a_c00467{bottom:683.151000px;}
.y19_c00467{bottom:716.028000px;}
.y18_c00467{bottom:732.465000px;}
.y17_c00467{bottom:748.903500px;}
.y16_c00467{bottom:781.780500px;}
.y15_c00467{bottom:798.219000px;}
.y14_c00467{bottom:814.657500px;}
.y13_c00467{bottom:831.096000px;}
.y12_c00467{bottom:847.534500px;}
.y11_c00467{bottom:863.973000px;}
.y10_c00467{bottom:880.411500px;}
.yf_c00467{bottom:929.725500px;}
.ye_c00467{bottom:946.164000px;}
.yd_c00467{bottom:962.602500px;}
.yc_c00467{bottom:979.041000px;}
.yb_c00467{bottom:995.479500px;}
.ya_c00467{bottom:1011.918000px;}
.y9_c00467{bottom:1028.356500px;}
.y8_c00467{bottom:1044.795000px;}
.y7_c00467{bottom:1061.232000px;}
.y6_c00467{bottom:1077.670500px;}
.y5_c00467{bottom:1094.109000px;}
.y4_c00467{bottom:1110.547500px;}
.y3_c00467{bottom:1126.986000px;}
.y2_c00467{bottom:1143.424500px;}
.y1_c00467{bottom:1159.863000px;}
.h3_c00467{height:35.190766px;}
.h2_c00467{height:36.007158px;}
.h4_c00467{height:52.332837px;}
.h0_c00467{height:1262.835000px;}
.h1_c00467{height:1263.000000px;}
.w0_c00467{width:892.920000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:137.122500px;}
.x2_c00467{left:143.770500px;}
.x3_c00467{left:177.007500px;}
.x4_c00467{left:435.249000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls4_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.078221pt;}
.ls2_c00467{letter-spacing:0.087539pt;}
.ls1_c00467{letter-spacing:0.092873pt;}
.ls3_c00467{letter-spacing:23.724873pt;}
.ws0_c00467{word-spacing:-23.622682pt;}
.ws4_c00467{word-spacing:-23.544461pt;}
.ws1_c00467{word-spacing:0.000000pt;}
.ws7_c00467{word-spacing:0.039110pt;}
.ws5_c00467{word-spacing:0.050460pt;}
.ws2_c00467{word-spacing:0.065111pt;}
.ws3_c00467{word-spacing:0.074430pt;}
.ws6_c00467{word-spacing:0.180412pt;}
.ws9_c00467{word-spacing:0.189730pt;}
.ws8_c00467{word-spacing:0.195063pt;}
._2_c00467{width:0.889220pt;}
._1_c00467{width:47.362694pt;}
._0_c00467{width:70.985376pt;}
._3_c00467{width:118.624363pt;}
.fs0_c00467{font-size:39.110400pt;}
.fs1_c00467{font-size:53.133867pt;}
.y0_c00467{bottom:0.000000pt;}
.y25_c00467{bottom:39.333333pt;}
.y24_c00467{bottom:461.126667pt;}
.y23_c00467{bottom:475.738667pt;}
.y22_c00467{bottom:490.349333pt;}
.y21_c00467{bottom:504.961333pt;}
.y20_c00467{bottom:519.573333pt;}
.y1f_c00467{bottom:534.185333pt;}
.y1e_c00467{bottom:548.797333pt;}
.y1d_c00467{bottom:563.409333pt;}
.y1c_c00467{bottom:578.021333pt;}
.y1b_c00467{bottom:592.633333pt;}
.y1a_c00467{bottom:607.245333pt;}
.y19_c00467{bottom:636.469333pt;}
.y18_c00467{bottom:651.080000pt;}
.y17_c00467{bottom:665.692000pt;}
.y16_c00467{bottom:694.916000pt;}
.y15_c00467{bottom:709.528000pt;}
.y14_c00467{bottom:724.140000pt;}
.y13_c00467{bottom:738.752000pt;}
.y12_c00467{bottom:753.364000pt;}
.y11_c00467{bottom:767.976000pt;}
.y10_c00467{bottom:782.588000pt;}
.yf_c00467{bottom:826.422667pt;}
.ye_c00467{bottom:841.034667pt;}
.yd_c00467{bottom:855.646667pt;}
.yc_c00467{bottom:870.258667pt;}
.yb_c00467{bottom:884.870667pt;}
.ya_c00467{bottom:899.482667pt;}
.y9_c00467{bottom:914.094667pt;}
.y8_c00467{bottom:928.706667pt;}
.y7_c00467{bottom:943.317333pt;}
.y6_c00467{bottom:957.929333pt;}
.y5_c00467{bottom:972.541333pt;}
.y4_c00467{bottom:987.153333pt;}
.y3_c00467{bottom:1001.765333pt;}
.y2_c00467{bottom:1016.377333pt;}
.y1_c00467{bottom:1030.989333pt;}
.h3_c00467{height:31.280681pt;}
.h2_c00467{height:32.006363pt;}
.h4_c00467{height:46.518078pt;}
.h0_c00467{height:1122.520000pt;}
.h1_c00467{height:1122.666667pt;}
.w0_c00467{width:793.706667pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:121.886667pt;}
.x2_c00467{left:127.796000pt;}
.x3_c00467{left:157.340000pt;}
.x4_c00467{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee6cdc989873e6a72ed3b221.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.893555;font-style:normal;font-weight:normal;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_92cfb63c0f39747197286298.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.083496;font-style:normal;font-weight:normal;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_867bc59175c14898b2dba8e2.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.102051;font-style:normal;font-weight:normal;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_7d2e721ab14aaba0caffbbf8.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.048828;font-style: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;}
.ls4_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.087998px;}
.ls2_c00468{letter-spacing:0.098482px;}
.ls1_c00468{letter-spacing:0.104482px;}
.ls3_c00468{letter-spacing:26.690482px;}
.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;}
}
.wsc_c00468{word-spacing:-33.713438px;}
.ws2_c00468{word-spacing:-26.575517px;}
.wse_c00468{word-spacing:-26.487518px;}
.ws9_c00468{word-spacing:-21.553319px;}
.ws8_c00468{word-spacing:-21.519216px;}
.ws5_c00468{word-spacing:-18.769538px;}
.ws7_c00468{word-spacing:-17.633802px;}
.ws4_c00468{word-spacing:-14.943900px;}
.wsa_c00468{word-spacing:-14.107042px;}
.wsb_c00468{word-spacing:-12.074671px;}
.ws1_c00468{word-spacing:-9.988424px;}
.ws3_c00468{word-spacing:-9.987499px;}
.ws6_c00468{word-spacing:-7.686144px;}
.ws12_c00468{word-spacing:0.000000px;}
.wsf_c00468{word-spacing:0.043999px;}
.ws15_c00468{word-spacing:0.056767px;}
.ws13_c00468{word-spacing:0.073250px;}
.ws14_c00468{word-spacing:0.083734px;}
.wsd_c00468{word-spacing:0.175997px;}
.ws16_c00468{word-spacing:0.202963px;}
.ws10_c00468{word-spacing:0.213446px;}
.ws11_c00468{word-spacing:0.219446px;}
.ws0_c00468{word-spacing:43.038600px;}
._3_c00468{margin-left:-3.825638px;}
._0_c00468{margin-left:-1.549390px;}
._4_c00468{width:1.005737px;}
._1_c00468{width:19.935816px;}
._2_c00468{width:40.109428px;}
._6_c00468{width:53.283031px;}
._5_c00468{width:79.858548px;}
._8_c00468{width:106.786058px;}
._7_c00468{width:133.452408px;}
.fc6_c00468{color:rgb(0,0,207);}
.fc5_c00468{color:rgb(79,153,5);}
.fc3_c00468{color:rgb(33,74,135);}
.fc2_c00468{color:rgb(143,89,3);}
.fc4_c00468{color:rgb(207,92,0);}
.fc1_c00468{color:rgb(6,69,173);}
.fc0_c00468{color:rgb(0,0,0);}
.fs2_c00468{font-size:43.999200px;}
.fs1_c00468{font-size:59.775600px;}
.fs0_c00468{font-size:86.077200px;}
.y0_c00468{bottom:0.000000px;}
.y36_c00468{bottom:44.250000px;}
.y35_c00468{bottom:96.919500px;}
.y34_c00468{bottom:113.358000px;}
.y33_c00468{bottom:129.796500px;}
.y32_c00468{bottom:146.235000px;}
.y31_c00468{bottom:162.673500px;}
.y30_c00468{bottom:179.112000px;}
.y2f_c00468{bottom:195.550500px;}
.y2e_c00468{bottom:211.989000px;}
.y2d_c00468{bottom:228.427500px;}
.y2c_c00468{bottom:244.866000px;}
.y2b_c00468{bottom:261.304500px;}
.y2a_c00468{bottom:294.180000px;}
.y29_c00468{bottom:310.618500px;}
.y28_c00468{bottom:327.057000px;}
.y27_c00468{bottom:359.934000px;}
.y26_c00468{bottom:376.372500px;}
.y25_c00468{bottom:392.811000px;}
.y24_c00468{bottom:409.249500px;}
.y23_c00468{bottom:425.688000px;}
.y22_c00468{bottom:442.125000px;}
.y21_c00468{bottom:458.563500px;}
.y20_c00468{bottom:507.879000px;}
.y1f_c00468{bottom:524.317500px;}
.y1e_c00468{bottom:540.756000px;}
.y1d_c00468{bottom:557.194500px;}
.y1c_c00468{bottom:573.633000px;}
.y1b_c00468{bottom:590.071500px;}
.y1a_c00468{bottom:606.508500px;}
.y19_c00468{bottom:622.947000px;}
.y18_c00468{bottom:639.385500px;}
.y17_c00468{bottom:655.824000px;}
.y16_c00468{bottom:672.262500px;}
.y15_c00468{bottom:688.701000px;}
.y14_c00468{bottom:705.139500px;}
.y13_c00468{bottom:721.578000px;}
.y12_c00468{bottom:738.016500px;}
.y11_c00468{bottom:754.455000px;}
.y10_c00468{bottom:787.330500px;}
.yf_c00468{bottom:803.769000px;}
.ye_c00468{bottom:853.084500px;}
.yd_c00468{bottom:869.523000px;}
.yc_c00468{bottom:885.588000px;}
.yb_c00468{bottom:925.077000px;}
.ya_c00468{bottom:943.009500px;}
.y9_c00468{bottom:960.942000px;}
.y8_c00468{bottom:978.876000px;}
.y7_c00468{bottom:996.808500px;}
.y6_c00468{bottom:1014.741000px;}
.y5_c00468{bottom:1040.691000px;}
.y4_c00468{bottom:1066.641000px;}
.y3_c00468{bottom:1092.591000px;}
.y2_c00468{bottom:1118.539500px;}
.y1_c00468{bottom:1159.863000px;}
.h5_c00468{height:35.190766px;}
.h6_c00468{height:36.007158px;}
.h3_c00468{height:40.511979px;}
.h4_c00468{height:52.332837px;}
.h2_c00468{height:58.337477px;}
.h0_c00468{height:1262.835000px;}
.h1_c00468{height:1263.000000px;}
.w0_c00468{width:892.920000px;}
.w1_c00468{width:893.250000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:127.558500px;}
.x2_c00468{left:137.122500px;}
.x3_c00468{left:143.770500px;}
.x4_c00468{left:177.007500px;}
.x5_c00468{left:435.249000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls4_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.078221pt;}
.ls2_c00468{letter-spacing:0.087539pt;}
.ls1_c00468{letter-spacing:0.092873pt;}
.ls3_c00468{letter-spacing:23.724873pt;}
.wsc_c00468{word-spacing:-29.967501pt;}
.ws2_c00468{word-spacing:-23.622682pt;}
.wse_c00468{word-spacing:-23.544461pt;}
.ws9_c00468{word-spacing:-19.158506pt;}
.ws8_c00468{word-spacing:-19.128192pt;}
.ws5_c00468{word-spacing:-16.684034pt;}
.ws7_c00468{word-spacing:-15.674491pt;}
.ws4_c00468{word-spacing:-13.283467pt;}
.wsa_c00468{word-spacing:-12.539593pt;}
.wsb_c00468{word-spacing:-10.733041pt;}
.ws1_c00468{word-spacing:-8.878599pt;}
.ws3_c00468{word-spacing:-8.877777pt;}
.ws6_c00468{word-spacing:-6.832128pt;}
.ws12_c00468{word-spacing:0.000000pt;}
.wsf_c00468{word-spacing:0.039110pt;}
.ws15_c00468{word-spacing:0.050460pt;}
.ws13_c00468{word-spacing:0.065111pt;}
.ws14_c00468{word-spacing:0.074430pt;}
.wsd_c00468{word-spacing:0.156442pt;}
.ws16_c00468{word-spacing:0.180412pt;}
.ws10_c00468{word-spacing:0.189730pt;}
.ws11_c00468{word-spacing:0.195063pt;}
.ws0_c00468{word-spacing:38.256533pt;}
._3_c00468{margin-left:-3.400567pt;}
._0_c00468{margin-left:-1.377235pt;}
._4_c00468{width:0.893988pt;}
._1_c00468{width:17.720725pt;}
._2_c00468{width:35.652825pt;}
._6_c00468{width:47.362694pt;}
._5_c00468{width:70.985376pt;}
._8_c00468{width:94.920941pt;}
._7_c00468{width:118.624363pt;}
.fs2_c00468{font-size:39.110400pt;}
.fs1_c00468{font-size:53.133867pt;}
.fs0_c00468{font-size:76.513067pt;}
.y0_c00468{bottom:0.000000pt;}
.y36_c00468{bottom:39.333333pt;}
.y35_c00468{bottom:86.150667pt;}
.y34_c00468{bottom:100.762667pt;}
.y33_c00468{bottom:115.374667pt;}
.y32_c00468{bottom:129.986667pt;}
.y31_c00468{bottom:144.598667pt;}
.y30_c00468{bottom:159.210667pt;}
.y2f_c00468{bottom:173.822667pt;}
.y2e_c00468{bottom:188.434667pt;}
.y2d_c00468{bottom:203.046667pt;}
.y2c_c00468{bottom:217.658667pt;}
.y2b_c00468{bottom:232.270667pt;}
.y2a_c00468{bottom:261.493333pt;}
.y29_c00468{bottom:276.105333pt;}
.y28_c00468{bottom:290.717333pt;}
.y27_c00468{bottom:319.941333pt;}
.y26_c00468{bottom:334.553333pt;}
.y25_c00468{bottom:349.165333pt;}
.y24_c00468{bottom:363.777333pt;}
.y23_c00468{bottom:378.389333pt;}
.y22_c00468{bottom:393.000000pt;}
.y21_c00468{bottom:407.612000pt;}
.y20_c00468{bottom:451.448000pt;}
.y1f_c00468{bottom:466.060000pt;}
.y1e_c00468{bottom:480.672000pt;}
.y1d_c00468{bottom:495.284000pt;}
.y1c_c00468{bottom:509.896000pt;}
.y1b_c00468{bottom:524.508000pt;}
.y1a_c00468{bottom:539.118667pt;}
.y19_c00468{bottom:553.730667pt;}
.y18_c00468{bottom:568.342667pt;}
.y17_c00468{bottom:582.954667pt;}
.y16_c00468{bottom:597.566667pt;}
.y15_c00468{bottom:612.178667pt;}
.y14_c00468{bottom:626.790667pt;}
.y13_c00468{bottom:641.402667pt;}
.y12_c00468{bottom:656.014667pt;}
.y11_c00468{bottom:670.626667pt;}
.y10_c00468{bottom:699.849333pt;}
.yf_c00468{bottom:714.461333pt;}
.ye_c00468{bottom:758.297333pt;}
.yd_c00468{bottom:772.909333pt;}
.yc_c00468{bottom:787.189333pt;}
.yb_c00468{bottom:822.290667pt;}
.ya_c00468{bottom:838.230667pt;}
.y9_c00468{bottom:854.170667pt;}
.y8_c00468{bottom:870.112000pt;}
.y7_c00468{bottom:886.052000pt;}
.y6_c00468{bottom:901.992000pt;}
.y5_c00468{bottom:925.058667pt;}
.y4_c00468{bottom:948.125333pt;}
.y3_c00468{bottom:971.192000pt;}
.y2_c00468{bottom:994.257333pt;}
.y1_c00468{bottom:1030.989333pt;}
.h5_c00468{height:31.280681pt;}
.h6_c00468{height:32.006363pt;}
.h3_c00468{height:36.010648pt;}
.h4_c00468{height:46.518078pt;}
.h2_c00468{height:51.855535pt;}
.h0_c00468{height:1122.520000pt;}
.h1_c00468{height:1122.666667pt;}
.w0_c00468{width:793.706667pt;}
.w1_c00468{width:794.000000pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:113.385333pt;}
.x2_c00468{left:121.886667pt;}
.x3_c00468{left:127.796000pt;}
.x4_c00468{left:157.340000pt;}
.x5_c00468{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a66b05b896f2047133b82c41.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.893555;font-style:normal;font-weight:normal;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_b5798830f3da59f5f816ab49.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.083496;font-style:normal;font-weight:normal;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_6da3f487c3d69c425ec4ab8f.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00469;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00469{font-family:ff5_c00469;line-height:1.048828;font-style: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;}
.ls3_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.087998px;}
.ls2_c00469{letter-spacing:0.098482px;}
.ls1_c00469{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00469{word-spacing:-33.713438px;}
.ws2_c00469{word-spacing:-26.575517px;}
.wse_c00469{word-spacing:-26.487518px;}
.ws9_c00469{word-spacing:-21.553319px;}
.ws8_c00469{word-spacing:-21.519216px;}
.ws5_c00469{word-spacing:-18.769538px;}
.ws7_c00469{word-spacing:-17.633802px;}
.ws4_c00469{word-spacing:-14.943900px;}
.wsa_c00469{word-spacing:-14.107042px;}
.wsb_c00469{word-spacing:-12.074671px;}
.ws1_c00469{word-spacing:-9.988424px;}
.ws3_c00469{word-spacing:-9.987499px;}
.ws6_c00469{word-spacing:-7.686144px;}
.ws12_c00469{word-spacing:0.000000px;}
.wsf_c00469{word-spacing:0.043999px;}
.ws15_c00469{word-spacing:0.056767px;}
.ws13_c00469{word-spacing:0.073250px;}
.ws14_c00469{word-spacing:0.083734px;}
.wsd_c00469{word-spacing:0.175997px;}
.ws16_c00469{word-spacing:0.202963px;}
.ws10_c00469{word-spacing:0.213446px;}
.ws11_c00469{word-spacing:0.219446px;}
.ws0_c00469{word-spacing:43.038600px;}
._3_c00469{margin-left:-3.825638px;}
._0_c00469{margin-left:-1.549390px;}
._4_c00469{width:1.005737px;}
._1_c00469{width:19.935816px;}
._2_c00469{width:40.109428px;}
._6_c00469{width:53.283031px;}
._5_c00469{width:79.858548px;}
._7_c00469{width:133.452408px;}
.fc6_c00469{color:rgb(0,0,207);}
.fc5_c00469{color:rgb(79,153,5);}
.fc3_c00469{color:rgb(33,74,135);}
.fc2_c00469{color:rgb(143,89,3);}
.fc4_c00469{color:rgb(207,92,0);}
.fc1_c00469{color:rgb(6,69,173);}
.fc0_c00469{color:rgb(0,0,0);}
.fs2_c00469{font-size:43.999200px;}
.fs1_c00469{font-size:59.775600px;}
.fs0_c00469{font-size:86.077200px;}
.y0_c00469{bottom:0.000000px;}
.y20_c00469{bottom:44.250000px;}
.y1f_c00469{bottom:86.982000px;}
.y1e_c00469{bottom:103.420500px;}
.y1d_c00469{bottom:119.859000px;}
.y1c_c00469{bottom:136.297500px;}
.y1b_c00469{bottom:152.736000px;}
.y1a_c00469{bottom:169.174500px;}
.y19_c00469{bottom:185.613000px;}
.y18_c00469{bottom:202.051500px;}
.y17_c00469{bottom:218.490000px;}
.y16_c00469{bottom:234.927000px;}
.y15_c00469{bottom:251.365500px;}
.y14_c00469{bottom:267.804000px;}
.y13_c00469{bottom:284.242500px;}
.y12_c00469{bottom:300.681000px;}
.y11_c00469{bottom:317.119500px;}
.y10_c00469{bottom:349.996500px;}
.yf_c00469{bottom:366.435000px;}
.ye_c00469{bottom:415.749000px;}
.yd_c00469{bottom:432.187500px;}
.yc_c00469{bottom:448.252500px;}
.yb_c00469{bottom:493.890000px;}
.ya_c00469{bottom:511.822500px;}
.y9_c00469{bottom:529.756500px;}
.y8_c00469{bottom:547.689000px;}
.y7_c00469{bottom:565.621500px;}
.y6_c00469{bottom:583.554000px;}
.y5_c00469{bottom:610.633500px;}
.y4_c00469{bottom:637.714500px;}
.y3_c00469{bottom:664.794000px;}
.y2_c00469{bottom:691.873500px;}
.y1_c00469{bottom:734.407500px;}
.h5_c00469{height:35.190766px;}
.h6_c00469{height:36.007158px;}
.h3_c00469{height:40.511979px;}
.h4_c00469{height:52.332837px;}
.h2_c00469{height:58.337477px;}
.h0_c00469{height:1262.835000px;}
.h1_c00469{height:1263.000000px;}
.w0_c00469{width:892.920000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:127.558500px;}
.x2_c00469{left:137.122500px;}
.x3_c00469{left:143.770500px;}
.x4_c00469{left:435.249000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls3_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.078221pt;}
.ls2_c00469{letter-spacing:0.087539pt;}
.ls1_c00469{letter-spacing:0.092873pt;}
.wsc_c00469{word-spacing:-29.967501pt;}
.ws2_c00469{word-spacing:-23.622682pt;}
.wse_c00469{word-spacing:-23.544461pt;}
.ws9_c00469{word-spacing:-19.158506pt;}
.ws8_c00469{word-spacing:-19.128192pt;}
.ws5_c00469{word-spacing:-16.684034pt;}
.ws7_c00469{word-spacing:-15.674491pt;}
.ws4_c00469{word-spacing:-13.283467pt;}
.wsa_c00469{word-spacing:-12.539593pt;}
.wsb_c00469{word-spacing:-10.733041pt;}
.ws1_c00469{word-spacing:-8.878599pt;}
.ws3_c00469{word-spacing:-8.877777pt;}
.ws6_c00469{word-spacing:-6.832128pt;}
.ws12_c00469{word-spacing:0.000000pt;}
.wsf_c00469{word-spacing:0.039110pt;}
.ws15_c00469{word-spacing:0.050460pt;}
.ws13_c00469{word-spacing:0.065111pt;}
.ws14_c00469{word-spacing:0.074430pt;}
.wsd_c00469{word-spacing:0.156442pt;}
.ws16_c00469{word-spacing:0.180412pt;}
.ws10_c00469{word-spacing:0.189730pt;}
.ws11_c00469{word-spacing:0.195063pt;}
.ws0_c00469{word-spacing:38.256533pt;}
._3_c00469{margin-left:-3.400567pt;}
._0_c00469{margin-left:-1.377235pt;}
._4_c00469{width:0.893988pt;}
._1_c00469{width:17.720725pt;}
._2_c00469{width:35.652825pt;}
._6_c00469{width:47.362694pt;}
._5_c00469{width:70.985376pt;}
._7_c00469{width:118.624363pt;}
.fs2_c00469{font-size:39.110400pt;}
.fs1_c00469{font-size:53.133867pt;}
.fs0_c00469{font-size:76.513067pt;}
.y0_c00469{bottom:0.000000pt;}
.y20_c00469{bottom:39.333333pt;}
.y1f_c00469{bottom:77.317333pt;}
.y1e_c00469{bottom:91.929333pt;}
.y1d_c00469{bottom:106.541333pt;}
.y1c_c00469{bottom:121.153333pt;}
.y1b_c00469{bottom:135.765333pt;}
.y1a_c00469{bottom:150.377333pt;}
.y19_c00469{bottom:164.989333pt;}
.y18_c00469{bottom:179.601333pt;}
.y17_c00469{bottom:194.213333pt;}
.y16_c00469{bottom:208.824000pt;}
.y15_c00469{bottom:223.436000pt;}
.y14_c00469{bottom:238.048000pt;}
.y13_c00469{bottom:252.660000pt;}
.y12_c00469{bottom:267.272000pt;}
.y11_c00469{bottom:281.884000pt;}
.y10_c00469{bottom:311.108000pt;}
.yf_c00469{bottom:325.720000pt;}
.ye_c00469{bottom:369.554667pt;}
.yd_c00469{bottom:384.166667pt;}
.yc_c00469{bottom:398.446667pt;}
.yb_c00469{bottom:439.013333pt;}
.ya_c00469{bottom:454.953333pt;}
.y9_c00469{bottom:470.894667pt;}
.y8_c00469{bottom:486.834667pt;}
.y7_c00469{bottom:502.774667pt;}
.y6_c00469{bottom:518.714667pt;}
.y5_c00469{bottom:542.785333pt;}
.y4_c00469{bottom:566.857333pt;}
.y3_c00469{bottom:590.928000pt;}
.y2_c00469{bottom:614.998667pt;}
.y1_c00469{bottom:652.806667pt;}
.h5_c00469{height:31.280681pt;}
.h6_c00469{height:32.006363pt;}
.h3_c00469{height:36.010648pt;}
.h4_c00469{height:46.518078pt;}
.h2_c00469{height:51.855535pt;}
.h0_c00469{height:1122.520000pt;}
.h1_c00469{height:1122.666667pt;}
.w0_c00469{width:793.706667pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:113.385333pt;}
.x2_c00469{left:121.886667pt;}
.x3_c00469{left:127.796000pt;}
.x4_c00469{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c65770e3ca901fcd842c8ff0.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_a361209f1590ab533fe74104.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_4b3f254a08651523918c48fb.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_ba779cd0bab6419b760fc738.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.102051;font-style: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;}
.ls4_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.087998px;}
.ls2_c00470{letter-spacing:0.098482px;}
.ls3_c00470{letter-spacing:0.104482px;}
.ls1_c00470{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00470{word-spacing:-26.575517px;}
.ws4_c00470{word-spacing:-26.487518px;}
.wse_c00470{word-spacing:-21.553319px;}
.wsd_c00470{word-spacing:-21.519216px;}
.wsc_c00470{word-spacing:-19.247743px;}
.wsa_c00470{word-spacing:-18.769538px;}
.ws9_c00470{word-spacing:-14.943900px;}
.wsf_c00470{word-spacing:-14.107042px;}
.ws10_c00470{word-spacing:-12.074671px;}
.wsb_c00470{word-spacing:-10.230144px;}
.ws7_c00470{word-spacing:-9.988424px;}
.ws8_c00470{word-spacing:-9.987499px;}
.ws3_c00470{word-spacing:0.000000px;}
.ws0_c00470{word-spacing:0.043999px;}
.ws5_c00470{word-spacing:0.213446px;}
.ws1_c00470{word-spacing:0.219446px;}
.ws6_c00470{word-spacing:43.038600px;}
._2_c00470{margin-left:-1.549390px;}
._1_c00470{width:1.063690px;}
._3_c00470{width:19.935816px;}
._4_c00470{width:40.109428px;}
._0_c00470{width:106.786058px;}
.fc5_c00470{color:rgb(79,153,5);}
.fc4_c00470{color:rgb(143,89,3);}
.fc3_c00470{color:rgb(0,0,0);}
.fc6_c00470{color:rgb(6,69,173);}
.fc2_c00470{color:rgb(207,92,0);}
.fc1_c00470{color:rgb(0,0,207);}
.fc0_c00470{color:rgb(33,74,135);}
.fs0_c00470{font-size:43.999200px;}
.fs2_c00470{font-size:59.775600px;}
.fs1_c00470{font-size:86.077200px;}
.y0_c00470{bottom:0.000000px;}
.y20_c00470{bottom:44.250000px;}
.y1f_c00470{bottom:82.051500px;}
.y1e_c00470{bottom:99.984000px;}
.y1d_c00470{bottom:117.916500px;}
.y1c_c00470{bottom:135.849000px;}
.y1b_c00470{bottom:162.501000px;}
.y1a_c00470{bottom:189.151500px;}
.y19_c00470{bottom:215.802000px;}
.y18_c00470{bottom:242.454000px;}
.y17_c00470{bottom:284.478000px;}
.y16_c00470{bottom:748.903500px;}
.y15_c00470{bottom:765.342000px;}
.y14_c00470{bottom:781.780500px;}
.y13_c00470{bottom:798.219000px;}
.y12_c00470{bottom:814.657500px;}
.y11_c00470{bottom:831.096000px;}
.y10_c00470{bottom:847.534500px;}
.yf_c00470{bottom:863.973000px;}
.ye_c00470{bottom:880.411500px;}
.yd_c00470{bottom:896.848500px;}
.yc_c00470{bottom:913.287000px;}
.yb_c00470{bottom:946.164000px;}
.ya_c00470{bottom:962.602500px;}
.y9_c00470{bottom:979.041000px;}
.y8_c00470{bottom:1011.918000px;}
.y7_c00470{bottom:1028.356500px;}
.y6_c00470{bottom:1044.795000px;}
.y5_c00470{bottom:1061.232000px;}
.y4_c00470{bottom:1077.670500px;}
.y3_c00470{bottom:1094.109000px;}
.y2_c00470{bottom:1110.547500px;}
.y1_c00470{bottom:1159.863000px;}
.h3_c00470{height:35.190766px;}
.h2_c00470{height:36.007158px;}
.h5_c00470{height:40.511979px;}
.h6_c00470{height:52.332837px;}
.h4_c00470{height:58.337477px;}
.h0_c00470{height:1262.835000px;}
.h1_c00470{height:1263.000000px;}
.w0_c00470{width:892.920000px;}
.w1_c00470{width:893.250000px;}
.x0_c00470{left:0.000000px;}
.x4_c00470{left:127.558500px;}
.x2_c00470{left:137.122500px;}
.x1_c00470{left:143.770500px;}
.x3_c00470{left:177.007500px;}
.x5_c00470{left:435.249000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls4_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.078221pt;}
.ls2_c00470{letter-spacing:0.087539pt;}
.ls3_c00470{letter-spacing:0.092873pt;}
.ls1_c00470{letter-spacing:23.724873pt;}
.ws2_c00470{word-spacing:-23.622682pt;}
.ws4_c00470{word-spacing:-23.544461pt;}
.wse_c00470{word-spacing:-19.158506pt;}
.wsd_c00470{word-spacing:-19.128192pt;}
.wsc_c00470{word-spacing:-17.109105pt;}
.wsa_c00470{word-spacing:-16.684034pt;}
.ws9_c00470{word-spacing:-13.283467pt;}
.wsf_c00470{word-spacing:-12.539593pt;}
.ws10_c00470{word-spacing:-10.733041pt;}
.wsb_c00470{word-spacing:-9.093461pt;}
.ws7_c00470{word-spacing:-8.878599pt;}
.ws8_c00470{word-spacing:-8.877777pt;}
.ws3_c00470{word-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.039110pt;}
.ws5_c00470{word-spacing:0.189730pt;}
.ws1_c00470{word-spacing:0.195063pt;}
.ws6_c00470{word-spacing:38.256533pt;}
._2_c00470{margin-left:-1.377235pt;}
._1_c00470{width:0.945502pt;}
._3_c00470{width:17.720725pt;}
._4_c00470{width:35.652825pt;}
._0_c00470{width:94.920941pt;}
.fs0_c00470{font-size:39.110400pt;}
.fs2_c00470{font-size:53.133867pt;}
.fs1_c00470{font-size:76.513067pt;}
.y0_c00470{bottom:0.000000pt;}
.y20_c00470{bottom:39.333333pt;}
.y1f_c00470{bottom:72.934667pt;}
.y1e_c00470{bottom:88.874667pt;}
.y1d_c00470{bottom:104.814667pt;}
.y1c_c00470{bottom:120.754667pt;}
.y1b_c00470{bottom:144.445333pt;}
.y1a_c00470{bottom:168.134667pt;}
.y19_c00470{bottom:191.824000pt;}
.y18_c00470{bottom:215.514667pt;}
.y17_c00470{bottom:252.869333pt;}
.y16_c00470{bottom:665.692000pt;}
.y15_c00470{bottom:680.304000pt;}
.y14_c00470{bottom:694.916000pt;}
.y13_c00470{bottom:709.528000pt;}
.y12_c00470{bottom:724.140000pt;}
.y11_c00470{bottom:738.752000pt;}
.y10_c00470{bottom:753.364000pt;}
.yf_c00470{bottom:767.976000pt;}
.ye_c00470{bottom:782.588000pt;}
.yd_c00470{bottom:797.198667pt;}
.yc_c00470{bottom:811.810667pt;}
.yb_c00470{bottom:841.034667pt;}
.ya_c00470{bottom:855.646667pt;}
.y9_c00470{bottom:870.258667pt;}
.y8_c00470{bottom:899.482667pt;}
.y7_c00470{bottom:914.094667pt;}
.y6_c00470{bottom:928.706667pt;}
.y5_c00470{bottom:943.317333pt;}
.y4_c00470{bottom:957.929333pt;}
.y3_c00470{bottom:972.541333pt;}
.y2_c00470{bottom:987.153333pt;}
.y1_c00470{bottom:1030.989333pt;}
.h3_c00470{height:31.280681pt;}
.h2_c00470{height:32.006363pt;}
.h5_c00470{height:36.010648pt;}
.h6_c00470{height:46.518078pt;}
.h4_c00470{height:51.855535pt;}
.h0_c00470{height:1122.520000pt;}
.h1_c00470{height:1122.666667pt;}
.w0_c00470{width:793.706667pt;}
.w1_c00470{width:794.000000pt;}
.x0_c00470{left:0.000000pt;}
.x4_c00470{left:113.385333pt;}
.x2_c00470{left:121.886667pt;}
.x1_c00470{left:127.796000pt;}
.x3_c00470{left:157.340000pt;}
.x5_c00470{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7120e3536d2c6bbb61ae9250.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.102051;font-style:normal;font-weight:normal;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_83ca6abf489afd71e745549c.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.048828;font-style:normal;font-weight:normal;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_d83167c1fac2e2b202c28610.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls4_c00471{letter-spacing:0.000000px;}
.ls1_c00471{letter-spacing:0.087998px;}
.ls2_c00471{letter-spacing:0.098482px;}
.ls0_c00471{letter-spacing:0.104482px;}
.ls3_c00471{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00471{word-spacing:-26.575517px;}
.ws3_c00471{word-spacing:-26.487518px;}
.ws0_c00471{word-spacing:-18.769538px;}
.ws8_c00471{word-spacing:0.000000px;}
.ws5_c00471{word-spacing:0.043999px;}
.wsb_c00471{word-spacing:0.056767px;}
.ws9_c00471{word-spacing:0.073250px;}
.wsa_c00471{word-spacing:0.083734px;}
.ws2_c00471{word-spacing:0.175997px;}
.wsc_c00471{word-spacing:0.202963px;}
.ws6_c00471{word-spacing:0.213446px;}
.ws7_c00471{word-spacing:0.219446px;}
._0_c00471{margin-left:-3.825638px;}
._1_c00471{width:1.005737px;}
._3_c00471{width:53.283031px;}
._2_c00471{width:79.858548px;}
._4_c00471{width:133.452408px;}
.fc5_c00471{color:rgb(0,0,207);}
.fc4_c00471{color:rgb(79,153,5);}
.fc3_c00471{color:rgb(207,92,0);}
.fc2_c00471{color:rgb(33,74,135);}
.fc1_c00471{color:rgb(143,89,3);}
.fc0_c00471{color:rgb(0,0,0);}
.fs1_c00471{font-size:43.999200px;}
.fs0_c00471{font-size:59.775600px;}
.y0_c00471{bottom:0.000000px;}
.y2d_c00471{bottom:44.250000px;}
.y2c_c00471{bottom:96.919500px;}
.y2b_c00471{bottom:113.358000px;}
.y2a_c00471{bottom:129.796500px;}
.y29_c00471{bottom:146.235000px;}
.y28_c00471{bottom:162.673500px;}
.y27_c00471{bottom:179.112000px;}
.y26_c00471{bottom:195.550500px;}
.y25_c00471{bottom:211.989000px;}
.y24_c00471{bottom:228.427500px;}
.y23_c00471{bottom:244.866000px;}
.y22_c00471{bottom:261.304500px;}
.y21_c00471{bottom:294.180000px;}
.y20_c00471{bottom:310.618500px;}
.y1f_c00471{bottom:327.057000px;}
.y1e_c00471{bottom:359.934000px;}
.y1d_c00471{bottom:376.372500px;}
.y1c_c00471{bottom:392.811000px;}
.y1b_c00471{bottom:409.249500px;}
.y1a_c00471{bottom:425.688000px;}
.y19_c00471{bottom:442.125000px;}
.y18_c00471{bottom:458.563500px;}
.y17_c00471{bottom:507.879000px;}
.y16_c00471{bottom:524.317500px;}
.y15_c00471{bottom:540.756000px;}
.y14_c00471{bottom:557.194500px;}
.y13_c00471{bottom:573.633000px;}
.y12_c00471{bottom:590.071500px;}
.y11_c00471{bottom:606.508500px;}
.y10_c00471{bottom:622.947000px;}
.yf_c00471{bottom:639.385500px;}
.ye_c00471{bottom:655.824000px;}
.yd_c00471{bottom:672.262500px;}
.yc_c00471{bottom:688.701000px;}
.yb_c00471{bottom:705.139500px;}
.ya_c00471{bottom:721.578000px;}
.y9_c00471{bottom:738.016500px;}
.y8_c00471{bottom:754.455000px;}
.y7_c00471{bottom:787.330500px;}
.y6_c00471{bottom:803.769000px;}
.y5_c00471{bottom:853.084500px;}
.y4_c00471{bottom:869.523000px;}
.y3_c00471{bottom:885.588000px;}
.y2_c00471{bottom:1141.930500px;}
.y1_c00471{bottom:1159.863000px;}
.h3_c00471{height:35.190766px;}
.h4_c00471{height:36.007158px;}
.h2_c00471{height:52.332837px;}
.h0_c00471{height:1262.835000px;}
.h1_c00471{height:1263.000000px;}
.w0_c00471{width:892.920000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:127.558500px;}
.x2_c00471{left:137.122500px;}
.x3_c00471{left:143.770500px;}
.x4_c00471{left:177.007500px;}
.x5_c00471{left:435.249000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls4_c00471{letter-spacing:0.000000pt;}
.ls1_c00471{letter-spacing:0.078221pt;}
.ls2_c00471{letter-spacing:0.087539pt;}
.ls0_c00471{letter-spacing:0.092873pt;}
.ls3_c00471{letter-spacing:23.724873pt;}
.ws1_c00471{word-spacing:-29.967501pt;}
.ws4_c00471{word-spacing:-23.622682pt;}
.ws3_c00471{word-spacing:-23.544461pt;}
.ws0_c00471{word-spacing:-16.684034pt;}
.ws8_c00471{word-spacing:0.000000pt;}
.ws5_c00471{word-spacing:0.039110pt;}
.wsb_c00471{word-spacing:0.050460pt;}
.ws9_c00471{word-spacing:0.065111pt;}
.wsa_c00471{word-spacing:0.074430pt;}
.ws2_c00471{word-spacing:0.156442pt;}
.wsc_c00471{word-spacing:0.180412pt;}
.ws6_c00471{word-spacing:0.189730pt;}
.ws7_c00471{word-spacing:0.195063pt;}
._0_c00471{margin-left:-3.400567pt;}
._1_c00471{width:0.893988pt;}
._3_c00471{width:47.362694pt;}
._2_c00471{width:70.985376pt;}
._4_c00471{width:118.624363pt;}
.fs1_c00471{font-size:39.110400pt;}
.fs0_c00471{font-size:53.133867pt;}
.y0_c00471{bottom:0.000000pt;}
.y2d_c00471{bottom:39.333333pt;}
.y2c_c00471{bottom:86.150667pt;}
.y2b_c00471{bottom:100.762667pt;}
.y2a_c00471{bottom:115.374667pt;}
.y29_c00471{bottom:129.986667pt;}
.y28_c00471{bottom:144.598667pt;}
.y27_c00471{bottom:159.210667pt;}
.y26_c00471{bottom:173.822667pt;}
.y25_c00471{bottom:188.434667pt;}
.y24_c00471{bottom:203.046667pt;}
.y23_c00471{bottom:217.658667pt;}
.y22_c00471{bottom:232.270667pt;}
.y21_c00471{bottom:261.493333pt;}
.y20_c00471{bottom:276.105333pt;}
.y1f_c00471{bottom:290.717333pt;}
.y1e_c00471{bottom:319.941333pt;}
.y1d_c00471{bottom:334.553333pt;}
.y1c_c00471{bottom:349.165333pt;}
.y1b_c00471{bottom:363.777333pt;}
.y1a_c00471{bottom:378.389333pt;}
.y19_c00471{bottom:393.000000pt;}
.y18_c00471{bottom:407.612000pt;}
.y17_c00471{bottom:451.448000pt;}
.y16_c00471{bottom:466.060000pt;}
.y15_c00471{bottom:480.672000pt;}
.y14_c00471{bottom:495.284000pt;}
.y13_c00471{bottom:509.896000pt;}
.y12_c00471{bottom:524.508000pt;}
.y11_c00471{bottom:539.118667pt;}
.y10_c00471{bottom:553.730667pt;}
.yf_c00471{bottom:568.342667pt;}
.ye_c00471{bottom:582.954667pt;}
.yd_c00471{bottom:597.566667pt;}
.yc_c00471{bottom:612.178667pt;}
.yb_c00471{bottom:626.790667pt;}
.ya_c00471{bottom:641.402667pt;}
.y9_c00471{bottom:656.014667pt;}
.y8_c00471{bottom:670.626667pt;}
.y7_c00471{bottom:699.849333pt;}
.y6_c00471{bottom:714.461333pt;}
.y5_c00471{bottom:758.297333pt;}
.y4_c00471{bottom:772.909333pt;}
.y3_c00471{bottom:787.189333pt;}
.y2_c00471{bottom:1015.049333pt;}
.y1_c00471{bottom:1030.989333pt;}
.h3_c00471{height:31.280681pt;}
.h4_c00471{height:32.006363pt;}
.h2_c00471{height:46.518078pt;}
.h0_c00471{height:1122.520000pt;}
.h1_c00471{height:1122.666667pt;}
.w0_c00471{width:793.706667pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:113.385333pt;}
.x2_c00471{left:121.886667pt;}
.x3_c00471{left:127.796000pt;}
.x4_c00471{left:157.340000pt;}
.x5_c00471{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd19990f759603feeae59d70.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.893555;font-style:normal;font-weight:normal;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_b06836746a9683738828b332.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_6f4b242058424c72d5aee6c9.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.048828;font-style: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;}
.ls3_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:0.087998px;}
.ls2_c00472{letter-spacing:0.098482px;}
.ls1_c00472{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00472{word-spacing:-26.575517px;}
.wse_c00472{word-spacing:-26.487518px;}
.wsc_c00472{word-spacing:-20.503031px;}
.ws9_c00472{word-spacing:-20.204153px;}
.wsb_c00472{word-spacing:-20.084602px;}
.ws5_c00472{word-spacing:-18.769538px;}
.ws8_c00472{word-spacing:-16.498066px;}
.ws4_c00472{word-spacing:-14.943900px;}
.wsa_c00472{word-spacing:-14.645022px;}
.ws7_c00472{word-spacing:-13.748388px;}
.ws1_c00472{word-spacing:-9.988424px;}
.ws3_c00472{word-spacing:-9.987499px;}
.ws12_c00472{word-spacing:0.000000px;}
.wsf_c00472{word-spacing:0.043999px;}
.ws6_c00472{word-spacing:0.077856px;}
.wsd_c00472{word-spacing:0.175997px;}
.ws11_c00472{word-spacing:0.213446px;}
.ws10_c00472{word-spacing:0.219446px;}
.ws0_c00472{word-spacing:43.038600px;}
._5_c00472{margin-left:-4.394160px;}
._2_c00472{margin-left:-3.287658px;}
._0_c00472{margin-left:-1.549390px;}
._6_c00472{width:1.005737px;}
._1_c00472{width:19.935816px;}
._3_c00472{width:26.587664px;}
._4_c00472{width:32.581454px;}
.fc5_c00472{color:rgb(79,153,5);}
.fc3_c00472{color:rgb(33,74,135);}
.fc2_c00472{color:rgb(143,89,3);}
.fc4_c00472{color:rgb(207,92,0);}
.fc1_c00472{color:rgb(6,69,173);}
.fc0_c00472{color:rgb(0,0,0);}
.fs2_c00472{font-size:43.999200px;}
.fs1_c00472{font-size:59.775600px;}
.fs0_c00472{font-size:86.077200px;}
.y0_c00472{bottom:0.000000px;}
.y20_c00472{bottom:44.250000px;}
.y1f_c00472{bottom:82.051500px;}
.y1e_c00472{bottom:98.490000px;}
.y1d_c00472{bottom:114.927000px;}
.y1c_c00472{bottom:147.804000px;}
.y1b_c00472{bottom:164.242500px;}
.y1a_c00472{bottom:197.119500px;}
.y19_c00472{bottom:213.558000px;}
.y18_c00472{bottom:229.996500px;}
.y17_c00472{bottom:246.435000px;}
.y16_c00472{bottom:279.310500px;}
.y15_c00472{bottom:295.749000px;}
.y14_c00472{bottom:312.187500px;}
.y13_c00472{bottom:328.626000px;}
.y12_c00472{bottom:345.064500px;}
.y11_c00472{bottom:361.503000px;}
.y10_c00472{bottom:377.941500px;}
.yf_c00472{bottom:394.380000px;}
.ye_c00472{bottom:410.445000px;}
.yd_c00472{bottom:458.839500px;}
.yc_c00472{bottom:476.772000px;}
.yb_c00472{bottom:494.704500px;}
.ya_c00472{bottom:512.637000px;}
.y9_c00472{bottom:530.571000px;}
.y8_c00472{bottom:548.503500px;}
.y7_c00472{bottom:566.436000px;}
.y6_c00472{bottom:584.368500px;}
.y5_c00472{bottom:611.355000px;}
.y4_c00472{bottom:638.341500px;}
.y3_c00472{bottom:665.326500px;}
.y2_c00472{bottom:692.313000px;}
.y1_c00472{bottom:734.712000px;}
.h5_c00472{height:35.190766px;}
.h6_c00472{height:36.007158px;}
.h3_c00472{height:40.511979px;}
.h4_c00472{height:52.332837px;}
.h2_c00472{height:58.337477px;}
.h0_c00472{height:1262.835000px;}
.h1_c00472{height:1263.000000px;}
.w0_c00472{width:892.920000px;}
.w1_c00472{width:893.250000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:127.558500px;}
.x2_c00472{left:137.122500px;}
.x3_c00472{left:435.249000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls3_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:0.078221pt;}
.ls2_c00472{letter-spacing:0.087539pt;}
.ls1_c00472{letter-spacing:0.092873pt;}
.ws2_c00472{word-spacing:-23.622682pt;}
.wse_c00472{word-spacing:-23.544461pt;}
.wsc_c00472{word-spacing:-18.224916pt;}
.ws9_c00472{word-spacing:-17.959247pt;}
.wsb_c00472{word-spacing:-17.852979pt;}
.ws5_c00472{word-spacing:-16.684034pt;}
.ws8_c00472{word-spacing:-14.664947pt;}
.ws4_c00472{word-spacing:-13.283467pt;}
.wsa_c00472{word-spacing:-13.017797pt;}
.ws7_c00472{word-spacing:-12.220789pt;}
.ws1_c00472{word-spacing:-8.878599pt;}
.ws3_c00472{word-spacing:-8.877777pt;}
.ws12_c00472{word-spacing:0.000000pt;}
.wsf_c00472{word-spacing:0.039110pt;}
.ws6_c00472{word-spacing:0.069205pt;}
.wsd_c00472{word-spacing:0.156442pt;}
.ws11_c00472{word-spacing:0.189730pt;}
.ws10_c00472{word-spacing:0.195063pt;}
.ws0_c00472{word-spacing:38.256533pt;}
._5_c00472{margin-left:-3.905920pt;}
._2_c00472{margin-left:-2.922363pt;}
._0_c00472{margin-left:-1.377235pt;}
._6_c00472{width:0.893988pt;}
._1_c00472{width:17.720725pt;}
._3_c00472{width:23.633479pt;}
._4_c00472{width:28.961293pt;}
.fs2_c00472{font-size:39.110400pt;}
.fs1_c00472{font-size:53.133867pt;}
.fs0_c00472{font-size:76.513067pt;}
.y0_c00472{bottom:0.000000pt;}
.y20_c00472{bottom:39.333333pt;}
.y1f_c00472{bottom:72.934667pt;}
.y1e_c00472{bottom:87.546667pt;}
.y1d_c00472{bottom:102.157333pt;}
.y1c_c00472{bottom:131.381333pt;}
.y1b_c00472{bottom:145.993333pt;}
.y1a_c00472{bottom:175.217333pt;}
.y19_c00472{bottom:189.829333pt;}
.y18_c00472{bottom:204.441333pt;}
.y17_c00472{bottom:219.053333pt;}
.y16_c00472{bottom:248.276000pt;}
.y15_c00472{bottom:262.888000pt;}
.y14_c00472{bottom:277.500000pt;}
.y13_c00472{bottom:292.112000pt;}
.y12_c00472{bottom:306.724000pt;}
.y11_c00472{bottom:321.336000pt;}
.y10_c00472{bottom:335.948000pt;}
.yf_c00472{bottom:350.560000pt;}
.ye_c00472{bottom:364.840000pt;}
.yd_c00472{bottom:407.857333pt;}
.yc_c00472{bottom:423.797333pt;}
.yb_c00472{bottom:439.737333pt;}
.ya_c00472{bottom:455.677333pt;}
.y9_c00472{bottom:471.618667pt;}
.y8_c00472{bottom:487.558667pt;}
.y7_c00472{bottom:503.498667pt;}
.y6_c00472{bottom:519.438667pt;}
.y5_c00472{bottom:543.426667pt;}
.y4_c00472{bottom:567.414667pt;}
.y3_c00472{bottom:591.401333pt;}
.y2_c00472{bottom:615.389333pt;}
.y1_c00472{bottom:653.077333pt;}
.h5_c00472{height:31.280681pt;}
.h6_c00472{height:32.006363pt;}
.h3_c00472{height:36.010648pt;}
.h4_c00472{height:46.518078pt;}
.h2_c00472{height:51.855535pt;}
.h0_c00472{height:1122.520000pt;}
.h1_c00472{height:1122.666667pt;}
.w0_c00472{width:793.706667pt;}
.w1_c00472{width:794.000000pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:113.385333pt;}
.x2_c00472{left:121.886667pt;}
.x3_c00472{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f07a2149129f1fa5ee51cb39.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.014648;font-style:normal;font-weight:normal;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_ca1355b88da039de1878273e.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.048828;font-style:normal;font-weight:normal;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_bbc48af217d1b32f798359bf.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.000000;font-style:normal;font-weight:normal;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_852ed5ff81d249ea8171f41f.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls3_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.087998px;}
.ls2_c00473{letter-spacing:0.098482px;}
.ls1_c00473{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00473{word-spacing:-26.487518px;}
.ws5_c00473{word-spacing:0.000000px;}
.ws4_c00473{word-spacing:0.043999px;}
.ws3_c00473{word-spacing:0.053933px;}
.ws8_c00473{word-spacing:0.056767px;}
.ws6_c00473{word-spacing:0.066701px;}
.ws7_c00473{word-spacing:0.070416px;}
.ws0_c00473{word-spacing:0.175997px;}
.ws9_c00473{word-spacing:0.213446px;}
._1_c00473{margin-left:-349.769170px;}
._0_c00473{width:1.077888px;}
.fc5_c00473{color:rgb(0,0,207);}
.fc4_c00473{color:rgb(79,153,5);}
.fc3_c00473{color:rgb(33,74,135);}
.fc2_c00473{color:rgb(207,92,0);}
.fc1_c00473{color:rgb(0,0,0);}
.fc0_c00473{color:rgb(143,89,3);}
.fs1_c00473{font-size:31.015800px;}
.fs0_c00473{font-size:43.999200px;}
.fs2_c00473{font-size:59.775600px;}
.y0_c00473{bottom:0.000000px;}
.y39_c00473{bottom:44.250000px;}
.y38_c00473{bottom:141.058500px;}
.y37_c00473{bottom:157.497000px;}
.y36_c00473{bottom:173.935500px;}
.y35_c00473{bottom:190.374000px;}
.y34_c00473{bottom:206.812500px;}
.y33_c00473{bottom:223.249500px;}
.y32_c00473{bottom:239.688000px;}
.y31_c00473{bottom:256.126500px;}
.y30_c00473{bottom:272.565000px;}
.y2f_c00473{bottom:289.003500px;}
.y2e_c00473{bottom:305.442000px;}
.y2d_c00473{bottom:338.319000px;}
.y2c_c00473{bottom:354.757500px;}
.y2b_c00473{bottom:371.196000px;}
.y2a_c00473{bottom:420.510000px;}
.y29_c00473{bottom:436.948500px;}
.y28_c00473{bottom:453.387000px;}
.y27_c00473{bottom:469.825500px;}
.y26_c00473{bottom:486.264000px;}
.y25_c00473{bottom:502.702500px;}
.y24_c00473{bottom:519.141000px;}
.y23_c00473{bottom:535.579500px;}
.y22_c00473{bottom:552.018000px;}
.y21_c00473{bottom:568.455000px;}
.y20_c00473{bottom:584.893500px;}
.y1f_c00473{bottom:601.332000px;}
.y1e_c00473{bottom:617.770500px;}
.y1d_c00473{bottom:634.209000px;}
.y1c_c00473{bottom:650.647500px;}
.y1b_c00473{bottom:667.086000px;}
.y1a_c00473{bottom:683.524500px;}
.y19_c00473{bottom:699.963000px;}
.y18_c00473{bottom:716.401500px;}
.y17_c00473{bottom:732.838500px;}
.y16_c00473{bottom:749.277000px;}
.y15_c00473{bottom:765.715500px;}
.y14_c00473{bottom:782.154000px;}
.y13_c00473{bottom:798.592500px;}
.y12_c00473{bottom:831.469500px;}
.y11_c00473{bottom:847.908000px;}
.y10_c00473{bottom:864.346500px;}
.yf_c00473{bottom:880.411500px;}
.ye_c00473{bottom:896.848500px;}
.yd_c00473{bottom:913.287000px;}
.yc_c00473{bottom:929.725500px;}
.yb_c00473{bottom:946.164000px;}
.ya_c00473{bottom:962.602500px;}
.y9_c00473{bottom:979.041000px;}
.y8_c00473{bottom:995.479500px;}
.y7_c00473{bottom:1044.795000px;}
.y6_c00473{bottom:1061.232000px;}
.y5_c00473{bottom:1094.109000px;}
.y4_c00473{bottom:1110.547500px;}
.y3_c00473{bottom:1126.986000px;}
.y2_c00473{bottom:1143.424500px;}
.y1_c00473{bottom:1159.863000px;}
.h2_c00473{height:35.190766px;}
.h3_c00473{height:36.007158px;}
.h4_c00473{height:52.332837px;}
.h0_c00473{height:1262.835000px;}
.h1_c00473{height:1263.000000px;}
.w0_c00473{width:892.920000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:137.122500px;}
.x2_c00473{left:143.770500px;}
.x7_c00473{left:177.007500px;}
.x6_c00473{left:230.185500px;}
.x5_c00473{left:243.480000px;}
.x3_c00473{left:250.126500px;}
.x4_c00473{left:276.715500px;}
.x8_c00473{left:435.249000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls3_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.078221pt;}
.ls2_c00473{letter-spacing:0.087539pt;}
.ls1_c00473{letter-spacing:0.092873pt;}
.ws1_c00473{word-spacing:-23.622682pt;}
.ws2_c00473{word-spacing:-23.544461pt;}
.ws5_c00473{word-spacing:0.000000pt;}
.ws4_c00473{word-spacing:0.039110pt;}
.ws3_c00473{word-spacing:0.047940pt;}
.ws8_c00473{word-spacing:0.050460pt;}
.ws6_c00473{word-spacing:0.059290pt;}
.ws7_c00473{word-spacing:0.062592pt;}
.ws0_c00473{word-spacing:0.156442pt;}
.ws9_c00473{word-spacing:0.189730pt;}
._1_c00473{margin-left:-310.905929pt;}
._0_c00473{width:0.958123pt;}
.fs1_c00473{font-size:27.569600pt;}
.fs0_c00473{font-size:39.110400pt;}
.fs2_c00473{font-size:53.133867pt;}
.y0_c00473{bottom:0.000000pt;}
.y39_c00473{bottom:39.333333pt;}
.y38_c00473{bottom:125.385333pt;}
.y37_c00473{bottom:139.997333pt;}
.y36_c00473{bottom:154.609333pt;}
.y35_c00473{bottom:169.221333pt;}
.y34_c00473{bottom:183.833333pt;}
.y33_c00473{bottom:198.444000pt;}
.y32_c00473{bottom:213.056000pt;}
.y31_c00473{bottom:227.668000pt;}
.y30_c00473{bottom:242.280000pt;}
.y2f_c00473{bottom:256.892000pt;}
.y2e_c00473{bottom:271.504000pt;}
.y2d_c00473{bottom:300.728000pt;}
.y2c_c00473{bottom:315.340000pt;}
.y2b_c00473{bottom:329.952000pt;}
.y2a_c00473{bottom:373.786667pt;}
.y29_c00473{bottom:388.398667pt;}
.y28_c00473{bottom:403.010667pt;}
.y27_c00473{bottom:417.622667pt;}
.y26_c00473{bottom:432.234667pt;}
.y25_c00473{bottom:446.846667pt;}
.y24_c00473{bottom:461.458667pt;}
.y23_c00473{bottom:476.070667pt;}
.y22_c00473{bottom:490.682667pt;}
.y21_c00473{bottom:505.293333pt;}
.y20_c00473{bottom:519.905333pt;}
.y1f_c00473{bottom:534.517333pt;}
.y1e_c00473{bottom:549.129333pt;}
.y1d_c00473{bottom:563.741333pt;}
.y1c_c00473{bottom:578.353333pt;}
.y1b_c00473{bottom:592.965333pt;}
.y1a_c00473{bottom:607.577333pt;}
.y19_c00473{bottom:622.189333pt;}
.y18_c00473{bottom:636.801333pt;}
.y17_c00473{bottom:651.412000pt;}
.y16_c00473{bottom:666.024000pt;}
.y15_c00473{bottom:680.636000pt;}
.y14_c00473{bottom:695.248000pt;}
.y13_c00473{bottom:709.860000pt;}
.y12_c00473{bottom:739.084000pt;}
.y11_c00473{bottom:753.696000pt;}
.y10_c00473{bottom:768.308000pt;}
.yf_c00473{bottom:782.588000pt;}
.ye_c00473{bottom:797.198667pt;}
.yd_c00473{bottom:811.810667pt;}
.yc_c00473{bottom:826.422667pt;}
.yb_c00473{bottom:841.034667pt;}
.ya_c00473{bottom:855.646667pt;}
.y9_c00473{bottom:870.258667pt;}
.y8_c00473{bottom:884.870667pt;}
.y7_c00473{bottom:928.706667pt;}
.y6_c00473{bottom:943.317333pt;}
.y5_c00473{bottom:972.541333pt;}
.y4_c00473{bottom:987.153333pt;}
.y3_c00473{bottom:1001.765333pt;}
.y2_c00473{bottom:1016.377333pt;}
.y1_c00473{bottom:1030.989333pt;}
.h2_c00473{height:31.280681pt;}
.h3_c00473{height:32.006363pt;}
.h4_c00473{height:46.518078pt;}
.h0_c00473{height:1122.520000pt;}
.h1_c00473{height:1122.666667pt;}
.w0_c00473{width:793.706667pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:121.886667pt;}
.x2_c00473{left:127.796000pt;}
.x7_c00473{left:157.340000pt;}
.x6_c00473{left:204.609333pt;}
.x5_c00473{left:216.426667pt;}
.x3_c00473{left:222.334667pt;}
.x4_c00473{left:245.969333pt;}
.x8_c00473{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fa517c8a27482bb92b98951.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.893555;font-style:normal;font-weight:normal;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_526e741a30f53211cb31fb56.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.083496;font-style:normal;font-weight:normal;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_cf318cd00947f58d19808b9e.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.048828;font-style: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;}
.ls3_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.087998px;}
.ls2_c00474{letter-spacing:0.098482px;}
.ls1_c00474{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00474{word-spacing:-33.713438px;}
.ws2_c00474{word-spacing:-26.575517px;}
.wse_c00474{word-spacing:-26.487518px;}
.ws9_c00474{word-spacing:-21.553319px;}
.ws8_c00474{word-spacing:-21.519216px;}
.ws5_c00474{word-spacing:-18.769538px;}
.ws7_c00474{word-spacing:-16.019861px;}
.ws4_c00474{word-spacing:-14.943900px;}
.wsa_c00474{word-spacing:-14.107042px;}
.wsb_c00474{word-spacing:-12.074671px;}
.ws1_c00474{word-spacing:-9.988424px;}
.ws3_c00474{word-spacing:-9.987499px;}
.ws6_c00474{word-spacing:-4.536144px;}
.ws12_c00474{word-spacing:0.000000px;}
.wsf_c00474{word-spacing:0.043999px;}
.ws15_c00474{word-spacing:0.056767px;}
.ws13_c00474{word-spacing:0.073250px;}
.ws14_c00474{word-spacing:0.083734px;}
.wsd_c00474{word-spacing:0.175997px;}
.ws16_c00474{word-spacing:0.202963px;}
.ws10_c00474{word-spacing:0.213446px;}
.ws11_c00474{word-spacing:0.219446px;}
.ws0_c00474{word-spacing:43.038600px;}
._3_c00474{margin-left:-3.825638px;}
._0_c00474{margin-left:-1.549390px;}
._4_c00474{width:1.005737px;}
._1_c00474{width:19.935816px;}
._2_c00474{width:40.109428px;}
._6_c00474{width:53.283031px;}
._5_c00474{width:79.858548px;}
._7_c00474{width:133.452408px;}
.fc6_c00474{color:rgb(0,0,207);}
.fc5_c00474{color:rgb(79,153,5);}
.fc3_c00474{color:rgb(33,74,135);}
.fc2_c00474{color:rgb(143,89,3);}
.fc4_c00474{color:rgb(207,92,0);}
.fc1_c00474{color:rgb(6,69,173);}
.fc0_c00474{color:rgb(0,0,0);}
.fs2_c00474{font-size:43.999200px;}
.fs1_c00474{font-size:59.775600px;}
.fs0_c00474{font-size:86.077200px;}
.y0_c00474{bottom:0.000000px;}
.y20_c00474{bottom:44.250000px;}
.y1f_c00474{bottom:86.982000px;}
.y1e_c00474{bottom:103.420500px;}
.y1d_c00474{bottom:119.859000px;}
.y1c_c00474{bottom:136.297500px;}
.y1b_c00474{bottom:152.736000px;}
.y1a_c00474{bottom:169.174500px;}
.y19_c00474{bottom:185.613000px;}
.y18_c00474{bottom:202.051500px;}
.y17_c00474{bottom:218.490000px;}
.y16_c00474{bottom:234.927000px;}
.y15_c00474{bottom:251.365500px;}
.y14_c00474{bottom:267.804000px;}
.y13_c00474{bottom:284.242500px;}
.y12_c00474{bottom:300.681000px;}
.y11_c00474{bottom:317.119500px;}
.y10_c00474{bottom:349.996500px;}
.yf_c00474{bottom:366.435000px;}
.ye_c00474{bottom:415.749000px;}
.yd_c00474{bottom:432.187500px;}
.yc_c00474{bottom:448.252500px;}
.yb_c00474{bottom:493.890000px;}
.ya_c00474{bottom:511.822500px;}
.y9_c00474{bottom:529.756500px;}
.y8_c00474{bottom:547.689000px;}
.y7_c00474{bottom:565.621500px;}
.y6_c00474{bottom:583.554000px;}
.y5_c00474{bottom:610.633500px;}
.y4_c00474{bottom:637.714500px;}
.y3_c00474{bottom:664.794000px;}
.y2_c00474{bottom:691.873500px;}
.y1_c00474{bottom:734.407500px;}
.h5_c00474{height:35.190766px;}
.h6_c00474{height:36.007158px;}
.h3_c00474{height:40.511979px;}
.h4_c00474{height:52.332837px;}
.h2_c00474{height:58.337477px;}
.h0_c00474{height:1262.835000px;}
.h1_c00474{height:1263.000000px;}
.w0_c00474{width:892.920000px;}
.w1_c00474{width:893.250000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:127.558500px;}
.x2_c00474{left:137.122500px;}
.x3_c00474{left:143.770500px;}
.x4_c00474{left:435.249000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls3_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.078221pt;}
.ls2_c00474{letter-spacing:0.087539pt;}
.ls1_c00474{letter-spacing:0.092873pt;}
.wsc_c00474{word-spacing:-29.967501pt;}
.ws2_c00474{word-spacing:-23.622682pt;}
.wse_c00474{word-spacing:-23.544461pt;}
.ws9_c00474{word-spacing:-19.158506pt;}
.ws8_c00474{word-spacing:-19.128192pt;}
.ws5_c00474{word-spacing:-16.684034pt;}
.ws7_c00474{word-spacing:-14.239876pt;}
.ws4_c00474{word-spacing:-13.283467pt;}
.wsa_c00474{word-spacing:-12.539593pt;}
.wsb_c00474{word-spacing:-10.733041pt;}
.ws1_c00474{word-spacing:-8.878599pt;}
.ws3_c00474{word-spacing:-8.877777pt;}
.ws6_c00474{word-spacing:-4.032128pt;}
.ws12_c00474{word-spacing:0.000000pt;}
.wsf_c00474{word-spacing:0.039110pt;}
.ws15_c00474{word-spacing:0.050460pt;}
.ws13_c00474{word-spacing:0.065111pt;}
.ws14_c00474{word-spacing:0.074430pt;}
.wsd_c00474{word-spacing:0.156442pt;}
.ws16_c00474{word-spacing:0.180412pt;}
.ws10_c00474{word-spacing:0.189730pt;}
.ws11_c00474{word-spacing:0.195063pt;}
.ws0_c00474{word-spacing:38.256533pt;}
._3_c00474{margin-left:-3.400567pt;}
._0_c00474{margin-left:-1.377235pt;}
._4_c00474{width:0.893988pt;}
._1_c00474{width:17.720725pt;}
._2_c00474{width:35.652825pt;}
._6_c00474{width:47.362694pt;}
._5_c00474{width:70.985376pt;}
._7_c00474{width:118.624363pt;}
.fs2_c00474{font-size:39.110400pt;}
.fs1_c00474{font-size:53.133867pt;}
.fs0_c00474{font-size:76.513067pt;}
.y0_c00474{bottom:0.000000pt;}
.y20_c00474{bottom:39.333333pt;}
.y1f_c00474{bottom:77.317333pt;}
.y1e_c00474{bottom:91.929333pt;}
.y1d_c00474{bottom:106.541333pt;}
.y1c_c00474{bottom:121.153333pt;}
.y1b_c00474{bottom:135.765333pt;}
.y1a_c00474{bottom:150.377333pt;}
.y19_c00474{bottom:164.989333pt;}
.y18_c00474{bottom:179.601333pt;}
.y17_c00474{bottom:194.213333pt;}
.y16_c00474{bottom:208.824000pt;}
.y15_c00474{bottom:223.436000pt;}
.y14_c00474{bottom:238.048000pt;}
.y13_c00474{bottom:252.660000pt;}
.y12_c00474{bottom:267.272000pt;}
.y11_c00474{bottom:281.884000pt;}
.y10_c00474{bottom:311.108000pt;}
.yf_c00474{bottom:325.720000pt;}
.ye_c00474{bottom:369.554667pt;}
.yd_c00474{bottom:384.166667pt;}
.yc_c00474{bottom:398.446667pt;}
.yb_c00474{bottom:439.013333pt;}
.ya_c00474{bottom:454.953333pt;}
.y9_c00474{bottom:470.894667pt;}
.y8_c00474{bottom:486.834667pt;}
.y7_c00474{bottom:502.774667pt;}
.y6_c00474{bottom:518.714667pt;}
.y5_c00474{bottom:542.785333pt;}
.y4_c00474{bottom:566.857333pt;}
.y3_c00474{bottom:590.928000pt;}
.y2_c00474{bottom:614.998667pt;}
.y1_c00474{bottom:652.806667pt;}
.h5_c00474{height:31.280681pt;}
.h6_c00474{height:32.006363pt;}
.h3_c00474{height:36.010648pt;}
.h4_c00474{height:46.518078pt;}
.h2_c00474{height:51.855535pt;}
.h0_c00474{height:1122.520000pt;}
.h1_c00474{height:1122.666667pt;}
.w0_c00474{width:793.706667pt;}
.w1_c00474{width:794.000000pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:113.385333pt;}
.x2_c00474{left:121.886667pt;}
.x3_c00474{left:127.796000pt;}
.x4_c00474{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b155febdc133f0f16931ef7.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.048828;font-style:normal;font-weight:normal;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_b10fd4d2068bf45f644c0b85.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.014648;font-style:normal;font-weight:normal;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_3fa517c8a27482bb92b98951.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00475;src:url('chunks/assets/font_c96bf7ccaafaf68ee596941c.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.102051;font-style: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.000000px;}
.ls0_c00475{letter-spacing:0.087998px;}
.ls2_c00475{letter-spacing:0.098482px;}
.ls3_c00475{letter-spacing:0.104482px;}
.ls1_c00475{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00475{word-spacing:-26.575517px;}
.ws4_c00475{word-spacing:-26.487518px;}
.wse_c00475{word-spacing:-21.553319px;}
.wsd_c00475{word-spacing:-21.519216px;}
.wsa_c00475{word-spacing:-18.769538px;}
.wsc_c00475{word-spacing:-17.633802px;}
.ws9_c00475{word-spacing:-14.943900px;}
.wsf_c00475{word-spacing:-14.107042px;}
.ws10_c00475{word-spacing:-12.074671px;}
.ws7_c00475{word-spacing:-9.988424px;}
.ws8_c00475{word-spacing:-9.987499px;}
.wsb_c00475{word-spacing:-7.686144px;}
.ws3_c00475{word-spacing:0.000000px;}
.ws0_c00475{word-spacing:0.043999px;}
.ws5_c00475{word-spacing:0.213446px;}
.ws1_c00475{word-spacing:0.219446px;}
.ws6_c00475{word-spacing:43.038600px;}
._1_c00475{margin-left:-1.549390px;}
._0_c00475{width:1.047206px;}
._2_c00475{width:19.935816px;}
._3_c00475{width:40.109428px;}
.fc5_c00475{color:rgb(79,153,5);}
.fc4_c00475{color:rgb(143,89,3);}
.fc3_c00475{color:rgb(0,0,0);}
.fc6_c00475{color:rgb(6,69,173);}
.fc2_c00475{color:rgb(207,92,0);}
.fc1_c00475{color:rgb(0,0,207);}
.fc0_c00475{color:rgb(33,74,135);}
.fs0_c00475{font-size:43.999200px;}
.fs2_c00475{font-size:59.775600px;}
.fs1_c00475{font-size:86.077200px;}
.y0_c00475{bottom:0.000000px;}
.y20_c00475{bottom:44.250000px;}
.y1f_c00475{bottom:82.051500px;}
.y1e_c00475{bottom:99.984000px;}
.y1d_c00475{bottom:117.916500px;}
.y1c_c00475{bottom:135.849000px;}
.y1b_c00475{bottom:162.501000px;}
.y1a_c00475{bottom:189.151500px;}
.y19_c00475{bottom:215.802000px;}
.y18_c00475{bottom:242.454000px;}
.y17_c00475{bottom:284.478000px;}
.y16_c00475{bottom:748.903500px;}
.y15_c00475{bottom:765.342000px;}
.y14_c00475{bottom:781.780500px;}
.y13_c00475{bottom:798.219000px;}
.y12_c00475{bottom:814.657500px;}
.y11_c00475{bottom:831.096000px;}
.y10_c00475{bottom:847.534500px;}
.yf_c00475{bottom:863.973000px;}
.ye_c00475{bottom:880.411500px;}
.yd_c00475{bottom:896.848500px;}
.yc_c00475{bottom:913.287000px;}
.yb_c00475{bottom:946.164000px;}
.ya_c00475{bottom:962.602500px;}
.y9_c00475{bottom:979.041000px;}
.y8_c00475{bottom:1011.918000px;}
.y7_c00475{bottom:1028.356500px;}
.y6_c00475{bottom:1044.795000px;}
.y5_c00475{bottom:1061.232000px;}
.y4_c00475{bottom:1077.670500px;}
.y3_c00475{bottom:1094.109000px;}
.y2_c00475{bottom:1110.547500px;}
.y1_c00475{bottom:1159.863000px;}
.h3_c00475{height:35.190766px;}
.h2_c00475{height:36.007158px;}
.h5_c00475{height:40.511979px;}
.h6_c00475{height:52.332837px;}
.h4_c00475{height:58.337477px;}
.h0_c00475{height:1262.835000px;}
.h1_c00475{height:1263.000000px;}
.w0_c00475{width:892.920000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.x4_c00475{left:127.558500px;}
.x2_c00475{left:137.122500px;}
.x1_c00475{left:143.770500px;}
.x3_c00475{left:177.007500px;}
.x5_c00475{left:435.249000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls4_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.078221pt;}
.ls2_c00475{letter-spacing:0.087539pt;}
.ls3_c00475{letter-spacing:0.092873pt;}
.ls1_c00475{letter-spacing:23.724873pt;}
.ws2_c00475{word-spacing:-23.622682pt;}
.ws4_c00475{word-spacing:-23.544461pt;}
.wse_c00475{word-spacing:-19.158506pt;}
.wsd_c00475{word-spacing:-19.128192pt;}
.wsa_c00475{word-spacing:-16.684034pt;}
.wsc_c00475{word-spacing:-15.674491pt;}
.ws9_c00475{word-spacing:-13.283467pt;}
.wsf_c00475{word-spacing:-12.539593pt;}
.ws10_c00475{word-spacing:-10.733041pt;}
.ws7_c00475{word-spacing:-8.878599pt;}
.ws8_c00475{word-spacing:-8.877777pt;}
.wsb_c00475{word-spacing:-6.832128pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.039110pt;}
.ws5_c00475{word-spacing:0.189730pt;}
.ws1_c00475{word-spacing:0.195063pt;}
.ws6_c00475{word-spacing:38.256533pt;}
._1_c00475{margin-left:-1.377235pt;}
._0_c00475{width:0.930850pt;}
._2_c00475{width:17.720725pt;}
._3_c00475{width:35.652825pt;}
.fs0_c00475{font-size:39.110400pt;}
.fs2_c00475{font-size:53.133867pt;}
.fs1_c00475{font-size:76.513067pt;}
.y0_c00475{bottom:0.000000pt;}
.y20_c00475{bottom:39.333333pt;}
.y1f_c00475{bottom:72.934667pt;}
.y1e_c00475{bottom:88.874667pt;}
.y1d_c00475{bottom:104.814667pt;}
.y1c_c00475{bottom:120.754667pt;}
.y1b_c00475{bottom:144.445333pt;}
.y1a_c00475{bottom:168.134667pt;}
.y19_c00475{bottom:191.824000pt;}
.y18_c00475{bottom:215.514667pt;}
.y17_c00475{bottom:252.869333pt;}
.y16_c00475{bottom:665.692000pt;}
.y15_c00475{bottom:680.304000pt;}
.y14_c00475{bottom:694.916000pt;}
.y13_c00475{bottom:709.528000pt;}
.y12_c00475{bottom:724.140000pt;}
.y11_c00475{bottom:738.752000pt;}
.y10_c00475{bottom:753.364000pt;}
.yf_c00475{bottom:767.976000pt;}
.ye_c00475{bottom:782.588000pt;}
.yd_c00475{bottom:797.198667pt;}
.yc_c00475{bottom:811.810667pt;}
.yb_c00475{bottom:841.034667pt;}
.ya_c00475{bottom:855.646667pt;}
.y9_c00475{bottom:870.258667pt;}
.y8_c00475{bottom:899.482667pt;}
.y7_c00475{bottom:914.094667pt;}
.y6_c00475{bottom:928.706667pt;}
.y5_c00475{bottom:943.317333pt;}
.y4_c00475{bottom:957.929333pt;}
.y3_c00475{bottom:972.541333pt;}
.y2_c00475{bottom:987.153333pt;}
.y1_c00475{bottom:1030.989333pt;}
.h3_c00475{height:31.280681pt;}
.h2_c00475{height:32.006363pt;}
.h5_c00475{height:36.010648pt;}
.h6_c00475{height:46.518078pt;}
.h4_c00475{height:51.855535pt;}
.h0_c00475{height:1122.520000pt;}
.h1_c00475{height:1122.666667pt;}
.w0_c00475{width:793.706667pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.x4_c00475{left:113.385333pt;}
.x2_c00475{left:121.886667pt;}
.x1_c00475{left:127.796000pt;}
.x3_c00475{left:157.340000pt;}
.x5_c00475{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51aac675faa31a7210a8152c.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.102051;font-style:normal;font-weight:normal;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_9603ef1b95fc9fc15d0fac1d.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.048828;font-style:normal;font-weight:normal;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_c258c4819b1b154a3236771b.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls4_c00476{letter-spacing:0.000000px;}
.ls1_c00476{letter-spacing:0.087998px;}
.ls2_c00476{letter-spacing:0.098482px;}
.ls0_c00476{letter-spacing:0.104482px;}
.ls3_c00476{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00476{word-spacing:-26.575517px;}
.ws3_c00476{word-spacing:-26.487518px;}
.ws0_c00476{word-spacing:-18.769538px;}
.ws8_c00476{word-spacing:0.000000px;}
.ws5_c00476{word-spacing:0.043999px;}
.wsb_c00476{word-spacing:0.056767px;}
.ws9_c00476{word-spacing:0.073250px;}
.wsa_c00476{word-spacing:0.083734px;}
.ws2_c00476{word-spacing:0.175997px;}
.wsc_c00476{word-spacing:0.202963px;}
.ws6_c00476{word-spacing:0.213446px;}
.ws7_c00476{word-spacing:0.219446px;}
._0_c00476{margin-left:-3.825638px;}
._1_c00476{width:1.005737px;}
._3_c00476{width:53.283031px;}
._2_c00476{width:79.858548px;}
._5_c00476{width:106.786058px;}
._4_c00476{width:133.452408px;}
.fc5_c00476{color:rgb(0,0,207);}
.fc4_c00476{color:rgb(79,153,5);}
.fc3_c00476{color:rgb(207,92,0);}
.fc2_c00476{color:rgb(33,74,135);}
.fc1_c00476{color:rgb(143,89,3);}
.fc0_c00476{color:rgb(0,0,0);}
.fs1_c00476{font-size:43.999200px;}
.fs0_c00476{font-size:59.775600px;}
.y0_c00476{bottom:0.000000px;}
.y2d_c00476{bottom:44.250000px;}
.y2c_c00476{bottom:96.919500px;}
.y2b_c00476{bottom:113.358000px;}
.y2a_c00476{bottom:129.796500px;}
.y29_c00476{bottom:146.235000px;}
.y28_c00476{bottom:162.673500px;}
.y27_c00476{bottom:179.112000px;}
.y26_c00476{bottom:195.550500px;}
.y25_c00476{bottom:211.989000px;}
.y24_c00476{bottom:228.427500px;}
.y23_c00476{bottom:244.866000px;}
.y22_c00476{bottom:261.304500px;}
.y21_c00476{bottom:294.180000px;}
.y20_c00476{bottom:310.618500px;}
.y1f_c00476{bottom:327.057000px;}
.y1e_c00476{bottom:359.934000px;}
.y1d_c00476{bottom:376.372500px;}
.y1c_c00476{bottom:392.811000px;}
.y1b_c00476{bottom:409.249500px;}
.y1a_c00476{bottom:425.688000px;}
.y19_c00476{bottom:442.125000px;}
.y18_c00476{bottom:458.563500px;}
.y17_c00476{bottom:507.879000px;}
.y16_c00476{bottom:524.317500px;}
.y15_c00476{bottom:540.756000px;}
.y14_c00476{bottom:557.194500px;}
.y13_c00476{bottom:573.633000px;}
.y12_c00476{bottom:590.071500px;}
.y11_c00476{bottom:606.508500px;}
.y10_c00476{bottom:622.947000px;}
.yf_c00476{bottom:639.385500px;}
.ye_c00476{bottom:655.824000px;}
.yd_c00476{bottom:672.262500px;}
.yc_c00476{bottom:688.701000px;}
.yb_c00476{bottom:705.139500px;}
.ya_c00476{bottom:721.578000px;}
.y9_c00476{bottom:738.016500px;}
.y8_c00476{bottom:754.455000px;}
.y7_c00476{bottom:787.330500px;}
.y6_c00476{bottom:803.769000px;}
.y5_c00476{bottom:853.084500px;}
.y4_c00476{bottom:869.523000px;}
.y3_c00476{bottom:885.588000px;}
.y2_c00476{bottom:1141.930500px;}
.y1_c00476{bottom:1159.863000px;}
.h3_c00476{height:35.190766px;}
.h4_c00476{height:36.007158px;}
.h2_c00476{height:52.332837px;}
.h0_c00476{height:1262.835000px;}
.h1_c00476{height:1263.000000px;}
.w0_c00476{width:892.920000px;}
.w1_c00476{width:893.250000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:127.558500px;}
.x2_c00476{left:137.122500px;}
.x3_c00476{left:143.770500px;}
.x4_c00476{left:177.007500px;}
.x5_c00476{left:435.249000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls4_c00476{letter-spacing:0.000000pt;}
.ls1_c00476{letter-spacing:0.078221pt;}
.ls2_c00476{letter-spacing:0.087539pt;}
.ls0_c00476{letter-spacing:0.092873pt;}
.ls3_c00476{letter-spacing:23.724873pt;}
.ws1_c00476{word-spacing:-29.967501pt;}
.ws4_c00476{word-spacing:-23.622682pt;}
.ws3_c00476{word-spacing:-23.544461pt;}
.ws0_c00476{word-spacing:-16.684034pt;}
.ws8_c00476{word-spacing:0.000000pt;}
.ws5_c00476{word-spacing:0.039110pt;}
.wsb_c00476{word-spacing:0.050460pt;}
.ws9_c00476{word-spacing:0.065111pt;}
.wsa_c00476{word-spacing:0.074430pt;}
.ws2_c00476{word-spacing:0.156442pt;}
.wsc_c00476{word-spacing:0.180412pt;}
.ws6_c00476{word-spacing:0.189730pt;}
.ws7_c00476{word-spacing:0.195063pt;}
._0_c00476{margin-left:-3.400567pt;}
._1_c00476{width:0.893988pt;}
._3_c00476{width:47.362694pt;}
._2_c00476{width:70.985376pt;}
._5_c00476{width:94.920941pt;}
._4_c00476{width:118.624363pt;}
.fs1_c00476{font-size:39.110400pt;}
.fs0_c00476{font-size:53.133867pt;}
.y0_c00476{bottom:0.000000pt;}
.y2d_c00476{bottom:39.333333pt;}
.y2c_c00476{bottom:86.150667pt;}
.y2b_c00476{bottom:100.762667pt;}
.y2a_c00476{bottom:115.374667pt;}
.y29_c00476{bottom:129.986667pt;}
.y28_c00476{bottom:144.598667pt;}
.y27_c00476{bottom:159.210667pt;}
.y26_c00476{bottom:173.822667pt;}
.y25_c00476{bottom:188.434667pt;}
.y24_c00476{bottom:203.046667pt;}
.y23_c00476{bottom:217.658667pt;}
.y22_c00476{bottom:232.270667pt;}
.y21_c00476{bottom:261.493333pt;}
.y20_c00476{bottom:276.105333pt;}
.y1f_c00476{bottom:290.717333pt;}
.y1e_c00476{bottom:319.941333pt;}
.y1d_c00476{bottom:334.553333pt;}
.y1c_c00476{bottom:349.165333pt;}
.y1b_c00476{bottom:363.777333pt;}
.y1a_c00476{bottom:378.389333pt;}
.y19_c00476{bottom:393.000000pt;}
.y18_c00476{bottom:407.612000pt;}
.y17_c00476{bottom:451.448000pt;}
.y16_c00476{bottom:466.060000pt;}
.y15_c00476{bottom:480.672000pt;}
.y14_c00476{bottom:495.284000pt;}
.y13_c00476{bottom:509.896000pt;}
.y12_c00476{bottom:524.508000pt;}
.y11_c00476{bottom:539.118667pt;}
.y10_c00476{bottom:553.730667pt;}
.yf_c00476{bottom:568.342667pt;}
.ye_c00476{bottom:582.954667pt;}
.yd_c00476{bottom:597.566667pt;}
.yc_c00476{bottom:612.178667pt;}
.yb_c00476{bottom:626.790667pt;}
.ya_c00476{bottom:641.402667pt;}
.y9_c00476{bottom:656.014667pt;}
.y8_c00476{bottom:670.626667pt;}
.y7_c00476{bottom:699.849333pt;}
.y6_c00476{bottom:714.461333pt;}
.y5_c00476{bottom:758.297333pt;}
.y4_c00476{bottom:772.909333pt;}
.y3_c00476{bottom:787.189333pt;}
.y2_c00476{bottom:1015.049333pt;}
.y1_c00476{bottom:1030.989333pt;}
.h3_c00476{height:31.280681pt;}
.h4_c00476{height:32.006363pt;}
.h2_c00476{height:46.518078pt;}
.h0_c00476{height:1122.520000pt;}
.h1_c00476{height:1122.666667pt;}
.w0_c00476{width:793.706667pt;}
.w1_c00476{width:794.000000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:113.385333pt;}
.x2_c00476{left:121.886667pt;}
.x3_c00476{left:127.796000pt;}
.x4_c00476{left:157.340000pt;}
.x5_c00476{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_097521f55812d5238a103a20.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.893555;font-style:normal;font-weight:normal;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_359455ba6249238dbd3e8fe7.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.083496;font-style:normal;font-weight:normal;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_7f2bf839dbdb3bcaf643db5e.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00477;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;line-height:1.048828;font-style: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;}
.ls3_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:0.087998px;}
.ls2_c00477{letter-spacing:0.098482px;}
.ls1_c00477{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00477{word-spacing:-33.713438px;}
.ws2_c00477{word-spacing:-26.575517px;}
.wse_c00477{word-spacing:-26.487518px;}
.ws9_c00477{word-spacing:-21.553319px;}
.ws8_c00477{word-spacing:-21.519216px;}
.ws5_c00477{word-spacing:-18.769538px;}
.ws7_c00477{word-spacing:-17.633802px;}
.ws4_c00477{word-spacing:-14.943900px;}
.wsa_c00477{word-spacing:-14.107042px;}
.wsb_c00477{word-spacing:-12.074671px;}
.ws1_c00477{word-spacing:-9.988424px;}
.ws3_c00477{word-spacing:-9.987499px;}
.ws6_c00477{word-spacing:-7.686144px;}
.ws12_c00477{word-spacing:0.000000px;}
.wsf_c00477{word-spacing:0.043999px;}
.ws15_c00477{word-spacing:0.056767px;}
.ws13_c00477{word-spacing:0.073250px;}
.ws14_c00477{word-spacing:0.083734px;}
.wsd_c00477{word-spacing:0.175997px;}
.ws16_c00477{word-spacing:0.202963px;}
.ws10_c00477{word-spacing:0.213446px;}
.ws11_c00477{word-spacing:0.219446px;}
.ws0_c00477{word-spacing:43.038600px;}
._3_c00477{margin-left:-3.825638px;}
._0_c00477{margin-left:-1.549390px;}
._4_c00477{width:1.005737px;}
._1_c00477{width:19.935816px;}
._2_c00477{width:40.109428px;}
._6_c00477{width:53.283031px;}
._5_c00477{width:79.858548px;}
._7_c00477{width:133.452408px;}
.fc6_c00477{color:rgb(0,0,207);}
.fc5_c00477{color:rgb(79,153,5);}
.fc3_c00477{color:rgb(33,74,135);}
.fc2_c00477{color:rgb(143,89,3);}
.fc4_c00477{color:rgb(207,92,0);}
.fc1_c00477{color:rgb(6,69,173);}
.fc0_c00477{color:rgb(0,0,0);}
.fs2_c00477{font-size:43.999200px;}
.fs1_c00477{font-size:59.775600px;}
.fs0_c00477{font-size:86.077200px;}
.y0_c00477{bottom:0.000000px;}
.y20_c00477{bottom:44.250000px;}
.y1f_c00477{bottom:86.982000px;}
.y1e_c00477{bottom:103.420500px;}
.y1d_c00477{bottom:119.859000px;}
.y1c_c00477{bottom:136.297500px;}
.y1b_c00477{bottom:152.736000px;}
.y1a_c00477{bottom:169.174500px;}
.y19_c00477{bottom:185.613000px;}
.y18_c00477{bottom:202.051500px;}
.y17_c00477{bottom:218.490000px;}
.y16_c00477{bottom:234.927000px;}
.y15_c00477{bottom:251.365500px;}
.y14_c00477{bottom:267.804000px;}
.y13_c00477{bottom:284.242500px;}
.y12_c00477{bottom:300.681000px;}
.y11_c00477{bottom:317.119500px;}
.y10_c00477{bottom:349.996500px;}
.yf_c00477{bottom:366.435000px;}
.ye_c00477{bottom:415.749000px;}
.yd_c00477{bottom:432.187500px;}
.yc_c00477{bottom:448.252500px;}
.yb_c00477{bottom:493.890000px;}
.ya_c00477{bottom:511.822500px;}
.y9_c00477{bottom:529.756500px;}
.y8_c00477{bottom:547.689000px;}
.y7_c00477{bottom:565.621500px;}
.y6_c00477{bottom:583.554000px;}
.y5_c00477{bottom:610.633500px;}
.y4_c00477{bottom:637.714500px;}
.y3_c00477{bottom:664.794000px;}
.y2_c00477{bottom:691.873500px;}
.y1_c00477{bottom:734.407500px;}
.h5_c00477{height:35.190766px;}
.h6_c00477{height:36.007158px;}
.h3_c00477{height:40.511979px;}
.h4_c00477{height:52.332837px;}
.h2_c00477{height:58.337477px;}
.h0_c00477{height:1262.835000px;}
.h1_c00477{height:1263.000000px;}
.w0_c00477{width:892.920000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:127.558500px;}
.x2_c00477{left:137.122500px;}
.x3_c00477{left:143.770500px;}
.x4_c00477{left:435.249000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls3_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:0.078221pt;}
.ls2_c00477{letter-spacing:0.087539pt;}
.ls1_c00477{letter-spacing:0.092873pt;}
.wsc_c00477{word-spacing:-29.967501pt;}
.ws2_c00477{word-spacing:-23.622682pt;}
.wse_c00477{word-spacing:-23.544461pt;}
.ws9_c00477{word-spacing:-19.158506pt;}
.ws8_c00477{word-spacing:-19.128192pt;}
.ws5_c00477{word-spacing:-16.684034pt;}
.ws7_c00477{word-spacing:-15.674491pt;}
.ws4_c00477{word-spacing:-13.283467pt;}
.wsa_c00477{word-spacing:-12.539593pt;}
.wsb_c00477{word-spacing:-10.733041pt;}
.ws1_c00477{word-spacing:-8.878599pt;}
.ws3_c00477{word-spacing:-8.877777pt;}
.ws6_c00477{word-spacing:-6.832128pt;}
.ws12_c00477{word-spacing:0.000000pt;}
.wsf_c00477{word-spacing:0.039110pt;}
.ws15_c00477{word-spacing:0.050460pt;}
.ws13_c00477{word-spacing:0.065111pt;}
.ws14_c00477{word-spacing:0.074430pt;}
.wsd_c00477{word-spacing:0.156442pt;}
.ws16_c00477{word-spacing:0.180412pt;}
.ws10_c00477{word-spacing:0.189730pt;}
.ws11_c00477{word-spacing:0.195063pt;}
.ws0_c00477{word-spacing:38.256533pt;}
._3_c00477{margin-left:-3.400567pt;}
._0_c00477{margin-left:-1.377235pt;}
._4_c00477{width:0.893988pt;}
._1_c00477{width:17.720725pt;}
._2_c00477{width:35.652825pt;}
._6_c00477{width:47.362694pt;}
._5_c00477{width:70.985376pt;}
._7_c00477{width:118.624363pt;}
.fs2_c00477{font-size:39.110400pt;}
.fs1_c00477{font-size:53.133867pt;}
.fs0_c00477{font-size:76.513067pt;}
.y0_c00477{bottom:0.000000pt;}
.y20_c00477{bottom:39.333333pt;}
.y1f_c00477{bottom:77.317333pt;}
.y1e_c00477{bottom:91.929333pt;}
.y1d_c00477{bottom:106.541333pt;}
.y1c_c00477{bottom:121.153333pt;}
.y1b_c00477{bottom:135.765333pt;}
.y1a_c00477{bottom:150.377333pt;}
.y19_c00477{bottom:164.989333pt;}
.y18_c00477{bottom:179.601333pt;}
.y17_c00477{bottom:194.213333pt;}
.y16_c00477{bottom:208.824000pt;}
.y15_c00477{bottom:223.436000pt;}
.y14_c00477{bottom:238.048000pt;}
.y13_c00477{bottom:252.660000pt;}
.y12_c00477{bottom:267.272000pt;}
.y11_c00477{bottom:281.884000pt;}
.y10_c00477{bottom:311.108000pt;}
.yf_c00477{bottom:325.720000pt;}
.ye_c00477{bottom:369.554667pt;}
.yd_c00477{bottom:384.166667pt;}
.yc_c00477{bottom:398.446667pt;}
.yb_c00477{bottom:439.013333pt;}
.ya_c00477{bottom:454.953333pt;}
.y9_c00477{bottom:470.894667pt;}
.y8_c00477{bottom:486.834667pt;}
.y7_c00477{bottom:502.774667pt;}
.y6_c00477{bottom:518.714667pt;}
.y5_c00477{bottom:542.785333pt;}
.y4_c00477{bottom:566.857333pt;}
.y3_c00477{bottom:590.928000pt;}
.y2_c00477{bottom:614.998667pt;}
.y1_c00477{bottom:652.806667pt;}
.h5_c00477{height:31.280681pt;}
.h6_c00477{height:32.006363pt;}
.h3_c00477{height:36.010648pt;}
.h4_c00477{height:46.518078pt;}
.h2_c00477{height:51.855535pt;}
.h0_c00477{height:1122.520000pt;}
.h1_c00477{height:1122.666667pt;}
.w0_c00477{width:793.706667pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:113.385333pt;}
.x2_c00477{left:121.886667pt;}
.x3_c00477{left:127.796000pt;}
.x4_c00477{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba1866b442804d2541335546.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.048828;font-style:normal;font-weight:normal;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_ce3d3d5a7587580275725197.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.014648;font-style:normal;font-weight:normal;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_4ba8e9907c7772c9860ea4d7.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_98ec6444baae11a4f10ca4da.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.102051;font-style: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.000000px;}
.ls0_c00478{letter-spacing:0.087998px;}
.ls2_c00478{letter-spacing:0.098482px;}
.ls3_c00478{letter-spacing:0.104482px;}
.ls1_c00478{letter-spacing:26.690482px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00478{word-spacing:-26.575517px;}
.ws4_c00478{word-spacing:-26.487518px;}
.wse_c00478{word-spacing:-21.553319px;}
.wsd_c00478{word-spacing:-21.519216px;}
.wsc_c00478{word-spacing:-19.247743px;}
.wsa_c00478{word-spacing:-18.769538px;}
.ws9_c00478{word-spacing:-14.943900px;}
.wsf_c00478{word-spacing:-14.107042px;}
.ws10_c00478{word-spacing:-12.074671px;}
.wsb_c00478{word-spacing:-10.230144px;}
.ws7_c00478{word-spacing:-9.988424px;}
.ws8_c00478{word-spacing:-9.987499px;}
.ws3_c00478{word-spacing:0.000000px;}
.ws0_c00478{word-spacing:0.043999px;}
.ws5_c00478{word-spacing:0.213446px;}
.ws1_c00478{word-spacing:0.219446px;}
.ws6_c00478{word-spacing:43.038600px;}
._2_c00478{margin-left:-1.549390px;}
._1_c00478{width:1.063690px;}
._3_c00478{width:19.935816px;}
._4_c00478{width:40.109428px;}
._0_c00478{width:106.786058px;}
.fc5_c00478{color:rgb(79,153,5);}
.fc4_c00478{color:rgb(143,89,3);}
.fc3_c00478{color:rgb(0,0,0);}
.fc6_c00478{color:rgb(6,69,173);}
.fc2_c00478{color:rgb(207,92,0);}
.fc1_c00478{color:rgb(0,0,207);}
.fc0_c00478{color:rgb(33,74,135);}
.fs0_c00478{font-size:43.999200px;}
.fs2_c00478{font-size:59.775600px;}
.fs1_c00478{font-size:86.077200px;}
.y0_c00478{bottom:0.000000px;}
.y20_c00478{bottom:44.250000px;}
.y1f_c00478{bottom:82.051500px;}
.y1e_c00478{bottom:99.984000px;}
.y1d_c00478{bottom:117.916500px;}
.y1c_c00478{bottom:135.849000px;}
.y1b_c00478{bottom:162.501000px;}
.y1a_c00478{bottom:189.151500px;}
.y19_c00478{bottom:215.802000px;}
.y18_c00478{bottom:242.454000px;}
.y17_c00478{bottom:284.478000px;}
.y16_c00478{bottom:748.903500px;}
.y15_c00478{bottom:765.342000px;}
.y14_c00478{bottom:781.780500px;}
.y13_c00478{bottom:798.219000px;}
.y12_c00478{bottom:814.657500px;}
.y11_c00478{bottom:831.096000px;}
.y10_c00478{bottom:847.534500px;}
.yf_c00478{bottom:863.973000px;}
.ye_c00478{bottom:880.411500px;}
.yd_c00478{bottom:896.848500px;}
.yc_c00478{bottom:913.287000px;}
.yb_c00478{bottom:946.164000px;}
.ya_c00478{bottom:962.602500px;}
.y9_c00478{bottom:979.041000px;}
.y8_c00478{bottom:1011.918000px;}
.y7_c00478{bottom:1028.356500px;}
.y6_c00478{bottom:1044.795000px;}
.y5_c00478{bottom:1061.232000px;}
.y4_c00478{bottom:1077.670500px;}
.y3_c00478{bottom:1094.109000px;}
.y2_c00478{bottom:1110.547500px;}
.y1_c00478{bottom:1159.863000px;}
.h3_c00478{height:35.190766px;}
.h2_c00478{height:36.007158px;}
.h5_c00478{height:40.511979px;}
.h6_c00478{height:52.332837px;}
.h4_c00478{height:58.337477px;}
.h0_c00478{height:1262.835000px;}
.h1_c00478{height:1263.000000px;}
.w0_c00478{width:892.920000px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.x4_c00478{left:127.558500px;}
.x2_c00478{left:137.122500px;}
.x1_c00478{left:143.770500px;}
.x3_c00478{left:177.007500px;}
.x5_c00478{left:435.249000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls4_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.078221pt;}
.ls2_c00478{letter-spacing:0.087539pt;}
.ls3_c00478{letter-spacing:0.092873pt;}
.ls1_c00478{letter-spacing:23.724873pt;}
.ws2_c00478{word-spacing:-23.622682pt;}
.ws4_c00478{word-spacing:-23.544461pt;}
.wse_c00478{word-spacing:-19.158506pt;}
.wsd_c00478{word-spacing:-19.128192pt;}
.wsc_c00478{word-spacing:-17.109105pt;}
.wsa_c00478{word-spacing:-16.684034pt;}
.ws9_c00478{word-spacing:-13.283467pt;}
.wsf_c00478{word-spacing:-12.539593pt;}
.ws10_c00478{word-spacing:-10.733041pt;}
.wsb_c00478{word-spacing:-9.093461pt;}
.ws7_c00478{word-spacing:-8.878599pt;}
.ws8_c00478{word-spacing:-8.877777pt;}
.ws3_c00478{word-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.039110pt;}
.ws5_c00478{word-spacing:0.189730pt;}
.ws1_c00478{word-spacing:0.195063pt;}
.ws6_c00478{word-spacing:38.256533pt;}
._2_c00478{margin-left:-1.377235pt;}
._1_c00478{width:0.945502pt;}
._3_c00478{width:17.720725pt;}
._4_c00478{width:35.652825pt;}
._0_c00478{width:94.920941pt;}
.fs0_c00478{font-size:39.110400pt;}
.fs2_c00478{font-size:53.133867pt;}
.fs1_c00478{font-size:76.513067pt;}
.y0_c00478{bottom:0.000000pt;}
.y20_c00478{bottom:39.333333pt;}
.y1f_c00478{bottom:72.934667pt;}
.y1e_c00478{bottom:88.874667pt;}
.y1d_c00478{bottom:104.814667pt;}
.y1c_c00478{bottom:120.754667pt;}
.y1b_c00478{bottom:144.445333pt;}
.y1a_c00478{bottom:168.134667pt;}
.y19_c00478{bottom:191.824000pt;}
.y18_c00478{bottom:215.514667pt;}
.y17_c00478{bottom:252.869333pt;}
.y16_c00478{bottom:665.692000pt;}
.y15_c00478{bottom:680.304000pt;}
.y14_c00478{bottom:694.916000pt;}
.y13_c00478{bottom:709.528000pt;}
.y12_c00478{bottom:724.140000pt;}
.y11_c00478{bottom:738.752000pt;}
.y10_c00478{bottom:753.364000pt;}
.yf_c00478{bottom:767.976000pt;}
.ye_c00478{bottom:782.588000pt;}
.yd_c00478{bottom:797.198667pt;}
.yc_c00478{bottom:811.810667pt;}
.yb_c00478{bottom:841.034667pt;}
.ya_c00478{bottom:855.646667pt;}
.y9_c00478{bottom:870.258667pt;}
.y8_c00478{bottom:899.482667pt;}
.y7_c00478{bottom:914.094667pt;}
.y6_c00478{bottom:928.706667pt;}
.y5_c00478{bottom:943.317333pt;}
.y4_c00478{bottom:957.929333pt;}
.y3_c00478{bottom:972.541333pt;}
.y2_c00478{bottom:987.153333pt;}
.y1_c00478{bottom:1030.989333pt;}
.h3_c00478{height:31.280681pt;}
.h2_c00478{height:32.006363pt;}
.h5_c00478{height:36.010648pt;}
.h6_c00478{height:46.518078pt;}
.h4_c00478{height:51.855535pt;}
.h0_c00478{height:1122.520000pt;}
.h1_c00478{height:1122.666667pt;}
.w0_c00478{width:793.706667pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.x4_c00478{left:113.385333pt;}
.x2_c00478{left:121.886667pt;}
.x1_c00478{left:127.796000pt;}
.x3_c00478{left:157.340000pt;}
.x5_c00478{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b3610258f8eb40933939da7.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.102051;font-style:normal;font-weight:normal;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_df4322d854a333c5a5b63291.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_9741f211b59356e38a290dbf.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls4_c00479{letter-spacing:0.000000px;}
.ls1_c00479{letter-spacing:0.087998px;}
.ls2_c00479{letter-spacing:0.098482px;}
.ls0_c00479{letter-spacing:0.104482px;}
.ls3_c00479{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00479{word-spacing:-26.575517px;}
.ws3_c00479{word-spacing:-26.487518px;}
.ws0_c00479{word-spacing:-18.769538px;}
.ws8_c00479{word-spacing:0.000000px;}
.ws5_c00479{word-spacing:0.043999px;}
.wsb_c00479{word-spacing:0.056767px;}
.ws9_c00479{word-spacing:0.073250px;}
.wsa_c00479{word-spacing:0.083734px;}
.ws2_c00479{word-spacing:0.175997px;}
.wsc_c00479{word-spacing:0.202963px;}
.ws6_c00479{word-spacing:0.213446px;}
.ws7_c00479{word-spacing:0.219446px;}
._0_c00479{margin-left:-3.825638px;}
._1_c00479{width:1.005737px;}
._3_c00479{width:53.283031px;}
._2_c00479{width:79.858548px;}
._4_c00479{width:133.452408px;}
.fc5_c00479{color:rgb(0,0,207);}
.fc4_c00479{color:rgb(79,153,5);}
.fc3_c00479{color:rgb(207,92,0);}
.fc2_c00479{color:rgb(33,74,135);}
.fc1_c00479{color:rgb(143,89,3);}
.fc0_c00479{color:rgb(0,0,0);}
.fs1_c00479{font-size:43.999200px;}
.fs0_c00479{font-size:59.775600px;}
.y0_c00479{bottom:0.000000px;}
.y2d_c00479{bottom:44.250000px;}
.y2c_c00479{bottom:96.919500px;}
.y2b_c00479{bottom:113.358000px;}
.y2a_c00479{bottom:129.796500px;}
.y29_c00479{bottom:146.235000px;}
.y28_c00479{bottom:162.673500px;}
.y27_c00479{bottom:179.112000px;}
.y26_c00479{bottom:195.550500px;}
.y25_c00479{bottom:211.989000px;}
.y24_c00479{bottom:228.427500px;}
.y23_c00479{bottom:244.866000px;}
.y22_c00479{bottom:261.304500px;}
.y21_c00479{bottom:294.180000px;}
.y20_c00479{bottom:310.618500px;}
.y1f_c00479{bottom:327.057000px;}
.y1e_c00479{bottom:359.934000px;}
.y1d_c00479{bottom:376.372500px;}
.y1c_c00479{bottom:392.811000px;}
.y1b_c00479{bottom:409.249500px;}
.y1a_c00479{bottom:425.688000px;}
.y19_c00479{bottom:442.125000px;}
.y18_c00479{bottom:458.563500px;}
.y17_c00479{bottom:507.879000px;}
.y16_c00479{bottom:524.317500px;}
.y15_c00479{bottom:540.756000px;}
.y14_c00479{bottom:557.194500px;}
.y13_c00479{bottom:573.633000px;}
.y12_c00479{bottom:590.071500px;}
.y11_c00479{bottom:606.508500px;}
.y10_c00479{bottom:622.947000px;}
.yf_c00479{bottom:639.385500px;}
.ye_c00479{bottom:655.824000px;}
.yd_c00479{bottom:672.262500px;}
.yc_c00479{bottom:688.701000px;}
.yb_c00479{bottom:705.139500px;}
.ya_c00479{bottom:721.578000px;}
.y9_c00479{bottom:738.016500px;}
.y8_c00479{bottom:754.455000px;}
.y7_c00479{bottom:787.330500px;}
.y6_c00479{bottom:803.769000px;}
.y5_c00479{bottom:853.084500px;}
.y4_c00479{bottom:869.523000px;}
.y3_c00479{bottom:885.588000px;}
.y2_c00479{bottom:1141.930500px;}
.y1_c00479{bottom:1159.863000px;}
.h3_c00479{height:35.190766px;}
.h4_c00479{height:36.007158px;}
.h2_c00479{height:52.332837px;}
.h0_c00479{height:1262.835000px;}
.h1_c00479{height:1263.000000px;}
.w0_c00479{width:892.920000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:127.558500px;}
.x2_c00479{left:137.122500px;}
.x3_c00479{left:143.770500px;}
.x4_c00479{left:177.007500px;}
.x5_c00479{left:435.249000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls4_c00479{letter-spacing:0.000000pt;}
.ls1_c00479{letter-spacing:0.078221pt;}
.ls2_c00479{letter-spacing:0.087539pt;}
.ls0_c00479{letter-spacing:0.092873pt;}
.ls3_c00479{letter-spacing:23.724873pt;}
.ws1_c00479{word-spacing:-29.967501pt;}
.ws4_c00479{word-spacing:-23.622682pt;}
.ws3_c00479{word-spacing:-23.544461pt;}
.ws0_c00479{word-spacing:-16.684034pt;}
.ws8_c00479{word-spacing:0.000000pt;}
.ws5_c00479{word-spacing:0.039110pt;}
.wsb_c00479{word-spacing:0.050460pt;}
.ws9_c00479{word-spacing:0.065111pt;}
.wsa_c00479{word-spacing:0.074430pt;}
.ws2_c00479{word-spacing:0.156442pt;}
.wsc_c00479{word-spacing:0.180412pt;}
.ws6_c00479{word-spacing:0.189730pt;}
.ws7_c00479{word-spacing:0.195063pt;}
._0_c00479{margin-left:-3.400567pt;}
._1_c00479{width:0.893988pt;}
._3_c00479{width:47.362694pt;}
._2_c00479{width:70.985376pt;}
._4_c00479{width:118.624363pt;}
.fs1_c00479{font-size:39.110400pt;}
.fs0_c00479{font-size:53.133867pt;}
.y0_c00479{bottom:0.000000pt;}
.y2d_c00479{bottom:39.333333pt;}
.y2c_c00479{bottom:86.150667pt;}
.y2b_c00479{bottom:100.762667pt;}
.y2a_c00479{bottom:115.374667pt;}
.y29_c00479{bottom:129.986667pt;}
.y28_c00479{bottom:144.598667pt;}
.y27_c00479{bottom:159.210667pt;}
.y26_c00479{bottom:173.822667pt;}
.y25_c00479{bottom:188.434667pt;}
.y24_c00479{bottom:203.046667pt;}
.y23_c00479{bottom:217.658667pt;}
.y22_c00479{bottom:232.270667pt;}
.y21_c00479{bottom:261.493333pt;}
.y20_c00479{bottom:276.105333pt;}
.y1f_c00479{bottom:290.717333pt;}
.y1e_c00479{bottom:319.941333pt;}
.y1d_c00479{bottom:334.553333pt;}
.y1c_c00479{bottom:349.165333pt;}
.y1b_c00479{bottom:363.777333pt;}
.y1a_c00479{bottom:378.389333pt;}
.y19_c00479{bottom:393.000000pt;}
.y18_c00479{bottom:407.612000pt;}
.y17_c00479{bottom:451.448000pt;}
.y16_c00479{bottom:466.060000pt;}
.y15_c00479{bottom:480.672000pt;}
.y14_c00479{bottom:495.284000pt;}
.y13_c00479{bottom:509.896000pt;}
.y12_c00479{bottom:524.508000pt;}
.y11_c00479{bottom:539.118667pt;}
.y10_c00479{bottom:553.730667pt;}
.yf_c00479{bottom:568.342667pt;}
.ye_c00479{bottom:582.954667pt;}
.yd_c00479{bottom:597.566667pt;}
.yc_c00479{bottom:612.178667pt;}
.yb_c00479{bottom:626.790667pt;}
.ya_c00479{bottom:641.402667pt;}
.y9_c00479{bottom:656.014667pt;}
.y8_c00479{bottom:670.626667pt;}
.y7_c00479{bottom:699.849333pt;}
.y6_c00479{bottom:714.461333pt;}
.y5_c00479{bottom:758.297333pt;}
.y4_c00479{bottom:772.909333pt;}
.y3_c00479{bottom:787.189333pt;}
.y2_c00479{bottom:1015.049333pt;}
.y1_c00479{bottom:1030.989333pt;}
.h3_c00479{height:31.280681pt;}
.h4_c00479{height:32.006363pt;}
.h2_c00479{height:46.518078pt;}
.h0_c00479{height:1122.520000pt;}
.h1_c00479{height:1122.666667pt;}
.w0_c00479{width:793.706667pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:113.385333pt;}
.x2_c00479{left:121.886667pt;}
.x3_c00479{left:127.796000pt;}
.x4_c00479{left:157.340000pt;}
.x5_c00479{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2584695cc20c02fd9de00d7c.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:0.893555;font-style:normal;font-weight:normal;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_0a8ee0f248287c145e008ef7.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.083496;font-style:normal;font-weight:normal;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_f92aae4a55738c7321f3910f.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:1.014648;font-style:normal;font-weight:normal;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_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.048828;font-style: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.000000px;}
.ls0_c00480{letter-spacing:0.087998px;}
.ls2_c00480{letter-spacing:0.098482px;}
.ls1_c00480{letter-spacing:0.104482px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00480{word-spacing:-26.575517px;}
.ws14_c00480{word-spacing:-26.487518px;}
.ws9_c00480{word-spacing:-21.818094px;}
.wsf_c00480{word-spacing:-21.758318px;}
.ws10_c00480{word-spacing:-21.698543px;}
.wsd_c00480{word-spacing:-20.682358px;}
.wse_c00480{word-spacing:-20.622582px;}
.ws5_c00480{word-spacing:-19.068416px;}
.ws7_c00480{word-spacing:-18.769538px;}
.ws12_c00480{word-spacing:-18.590212px;}
.ws11_c00480{word-spacing:-17.693578px;}
.ws4_c00480{word-spacing:-15.302554px;}
.ws6_c00480{word-spacing:-14.943900px;}
.wsa_c00480{word-spacing:-14.764573px;}
.wsb_c00480{word-spacing:-14.704798px;}
.wsc_c00480{word-spacing:-13.270183px;}
.ws8_c00480{word-spacing:-11.514144px;}
.ws1_c00480{word-spacing:-9.988424px;}
.ws3_c00480{word-spacing:-9.987499px;}
.ws18_c00480{word-spacing:0.000000px;}
.ws15_c00480{word-spacing:0.043999px;}
.ws13_c00480{word-spacing:0.175997px;}
.ws17_c00480{word-spacing:0.213446px;}
.ws16_c00480{word-spacing:0.219446px;}
.ws0_c00480{word-spacing:43.038600px;}
._1_c00480{margin-left:-7.833025px;}
._3_c00480{margin-left:-4.124516px;}
._9_c00480{margin-left:-3.023526px;}
._0_c00480{margin-left:-1.549390px;}
._a_c00480{width:1.005737px;}
._4_c00480{width:12.906754px;}
._2_c00480{width:19.820470px;}
._6_c00480{width:21.818094px;}
._8_c00480{width:23.073382px;}
._5_c00480{width:32.880952px;}
._7_c00480{width:36.403340px;}
.fc5_c00480{color:rgb(79,153,5);}
.fc3_c00480{color:rgb(33,74,135);}
.fc2_c00480{color:rgb(143,89,3);}
.fc4_c00480{color:rgb(207,92,0);}
.fc1_c00480{color:rgb(6,69,173);}
.fc0_c00480{color:rgb(0,0,0);}
.fs2_c00480{font-size:43.999200px;}
.fs1_c00480{font-size:59.775600px;}
.fs0_c00480{font-size:86.077200px;}
.y0_c00480{bottom:0.000000px;}
.y20_c00480{bottom:44.250000px;}
.y1f_c00480{bottom:82.051500px;}
.y1e_c00480{bottom:98.490000px;}
.y1d_c00480{bottom:114.927000px;}
.y1c_c00480{bottom:147.804000px;}
.y1b_c00480{bottom:164.242500px;}
.y1a_c00480{bottom:197.119500px;}
.y19_c00480{bottom:213.558000px;}
.y18_c00480{bottom:229.996500px;}
.y17_c00480{bottom:246.435000px;}
.y16_c00480{bottom:279.310500px;}
.y15_c00480{bottom:295.749000px;}
.y14_c00480{bottom:312.187500px;}
.y13_c00480{bottom:328.626000px;}
.y12_c00480{bottom:345.064500px;}
.y11_c00480{bottom:361.503000px;}
.y10_c00480{bottom:377.941500px;}
.yf_c00480{bottom:394.380000px;}
.ye_c00480{bottom:410.445000px;}
.yd_c00480{bottom:458.862000px;}
.yc_c00480{bottom:476.794500px;}
.yb_c00480{bottom:494.727000px;}
.ya_c00480{bottom:512.659500px;}
.y9_c00480{bottom:530.593500px;}
.y8_c00480{bottom:548.526000px;}
.y7_c00480{bottom:566.458500px;}
.y6_c00480{bottom:584.391000px;}
.y5_c00480{bottom:611.374500px;}
.y4_c00480{bottom:638.358000px;}
.y3_c00480{bottom:665.341500px;}
.y2_c00480{bottom:692.325000px;}
.y1_c00480{bottom:734.719500px;}
.h5_c00480{height:35.190766px;}
.h6_c00480{height:36.007158px;}
.h3_c00480{height:40.511979px;}
.h4_c00480{height:52.332837px;}
.h2_c00480{height:58.337477px;}
.h0_c00480{height:1262.835000px;}
.h1_c00480{height:1263.000000px;}
.w0_c00480{width:892.920000px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:127.558500px;}
.x2_c00480{left:137.122500px;}
.x3_c00480{left:435.249000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls3_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.078221pt;}
.ls2_c00480{letter-spacing:0.087539pt;}
.ls1_c00480{letter-spacing:0.092873pt;}
.ws2_c00480{word-spacing:-23.622682pt;}
.ws14_c00480{word-spacing:-23.544461pt;}
.ws9_c00480{word-spacing:-19.393861pt;}
.wsf_c00480{word-spacing:-19.340727pt;}
.ws10_c00480{word-spacing:-19.287594pt;}
.wsd_c00480{word-spacing:-18.384318pt;}
.wse_c00480{word-spacing:-18.331184pt;}
.ws5_c00480{word-spacing:-16.949703pt;}
.ws7_c00480{word-spacing:-16.684034pt;}
.ws12_c00480{word-spacing:-16.524633pt;}
.ws11_c00480{word-spacing:-15.727625pt;}
.ws4_c00480{word-spacing:-13.602270pt;}
.ws6_c00480{word-spacing:-13.283467pt;}
.wsa_c00480{word-spacing:-13.124065pt;}
.wsb_c00480{word-spacing:-13.070931pt;}
.wsc_c00480{word-spacing:-11.795718pt;}
.ws8_c00480{word-spacing:-10.234795pt;}
.ws1_c00480{word-spacing:-8.878599pt;}
.ws3_c00480{word-spacing:-8.877777pt;}
.ws18_c00480{word-spacing:0.000000pt;}
.ws15_c00480{word-spacing:0.039110pt;}
.ws13_c00480{word-spacing:0.156442pt;}
.ws17_c00480{word-spacing:0.189730pt;}
.ws16_c00480{word-spacing:0.195063pt;}
.ws0_c00480{word-spacing:38.256533pt;}
._1_c00480{margin-left:-6.962689pt;}
._3_c00480{margin-left:-3.666237pt;}
._9_c00480{margin-left:-2.687579pt;}
._0_c00480{margin-left:-1.377235pt;}
._a_c00480{width:0.893988pt;}
._4_c00480{width:11.472670pt;}
._2_c00480{width:17.618195pt;}
._6_c00480{width:19.393861pt;}
._8_c00480{width:20.509673pt;}
._5_c00480{width:29.227513pt;}
._7_c00480{width:32.358525pt;}
.fs2_c00480{font-size:39.110400pt;}
.fs1_c00480{font-size:53.133867pt;}
.fs0_c00480{font-size:76.513067pt;}
.y0_c00480{bottom:0.000000pt;}
.y20_c00480{bottom:39.333333pt;}
.y1f_c00480{bottom:72.934667pt;}
.y1e_c00480{bottom:87.546667pt;}
.y1d_c00480{bottom:102.157333pt;}
.y1c_c00480{bottom:131.381333pt;}
.y1b_c00480{bottom:145.993333pt;}
.y1a_c00480{bottom:175.217333pt;}
.y19_c00480{bottom:189.829333pt;}
.y18_c00480{bottom:204.441333pt;}
.y17_c00480{bottom:219.053333pt;}
.y16_c00480{bottom:248.276000pt;}
.y15_c00480{bottom:262.888000pt;}
.y14_c00480{bottom:277.500000pt;}
.y13_c00480{bottom:292.112000pt;}
.y12_c00480{bottom:306.724000pt;}
.y11_c00480{bottom:321.336000pt;}
.y10_c00480{bottom:335.948000pt;}
.yf_c00480{bottom:350.560000pt;}
.ye_c00480{bottom:364.840000pt;}
.yd_c00480{bottom:407.877333pt;}
.yc_c00480{bottom:423.817333pt;}
.yb_c00480{bottom:439.757333pt;}
.ya_c00480{bottom:455.697333pt;}
.y9_c00480{bottom:471.638667pt;}
.y8_c00480{bottom:487.578667pt;}
.y7_c00480{bottom:503.518667pt;}
.y6_c00480{bottom:519.458667pt;}
.y5_c00480{bottom:543.444000pt;}
.y4_c00480{bottom:567.429333pt;}
.y3_c00480{bottom:591.414667pt;}
.y2_c00480{bottom:615.400000pt;}
.y1_c00480{bottom:653.084000pt;}
.h5_c00480{height:31.280681pt;}
.h6_c00480{height:32.006363pt;}
.h3_c00480{height:36.010648pt;}
.h4_c00480{height:46.518078pt;}
.h2_c00480{height:51.855535pt;}
.h0_c00480{height:1122.520000pt;}
.h1_c00480{height:1122.666667pt;}
.w0_c00480{width:793.706667pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:113.385333pt;}
.x2_c00480{left:121.886667pt;}
.x3_c00480{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c11464defe4536c118abb849.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.014648;font-style:normal;font-weight:normal;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_6f8c5f28421b4ea035b64305.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.083496;font-style:normal;font-weight:normal;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_dd4e47a1b2b123e1903dc68b.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.048828;font-style:normal;font-weight:normal;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_ab9bcaf71fb41230d962cb9a.woff2')format("woff");}.ff4_c00481{font-family:ff4_c00481;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00481;src:url('chunks/assets/font_b5986832f29173eb2addb4fa.woff2')format("woff");}.ff5_c00481{font-family:ff5_c00481;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls3_c00481{letter-spacing:0.000000px;}
.ls0_c00481{letter-spacing:0.087998px;}
.ls2_c00481{letter-spacing:0.098482px;}
.ls1_c00481{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00481{word-spacing:-26.487518px;}
.ws5_c00481{word-spacing:0.000000px;}
.ws4_c00481{word-spacing:0.043999px;}
.ws3_c00481{word-spacing:0.053933px;}
.ws8_c00481{word-spacing:0.056767px;}
.ws6_c00481{word-spacing:0.066701px;}
.ws7_c00481{word-spacing:0.070416px;}
.ws0_c00481{word-spacing:0.175997px;}
.ws9_c00481{word-spacing:0.213446px;}
._2_c00481{margin-left:-349.769170px;}
._0_c00481{width:1.077888px;}
._1_c00481{width:106.874057px;}
.fc5_c00481{color:rgb(0,0,207);}
.fc4_c00481{color:rgb(79,153,5);}
.fc3_c00481{color:rgb(33,74,135);}
.fc2_c00481{color:rgb(207,92,0);}
.fc1_c00481{color:rgb(0,0,0);}
.fc0_c00481{color:rgb(143,89,3);}
.fs1_c00481{font-size:31.015800px;}
.fs0_c00481{font-size:43.999200px;}
.fs2_c00481{font-size:59.775600px;}
.y0_c00481{bottom:0.000000px;}
.y3a_c00481{bottom:44.250000px;}
.y39_c00481{bottom:124.620000px;}
.y38_c00481{bottom:141.058500px;}
.y37_c00481{bottom:157.497000px;}
.y36_c00481{bottom:173.935500px;}
.y35_c00481{bottom:190.374000px;}
.y34_c00481{bottom:206.812500px;}
.y33_c00481{bottom:223.249500px;}
.y32_c00481{bottom:239.688000px;}
.y31_c00481{bottom:256.126500px;}
.y30_c00481{bottom:272.565000px;}
.y2f_c00481{bottom:289.003500px;}
.y2e_c00481{bottom:321.880500px;}
.y2d_c00481{bottom:338.319000px;}
.y2c_c00481{bottom:354.757500px;}
.y2b_c00481{bottom:404.071500px;}
.y2a_c00481{bottom:420.510000px;}
.y29_c00481{bottom:436.948500px;}
.y28_c00481{bottom:453.387000px;}
.y27_c00481{bottom:469.825500px;}
.y26_c00481{bottom:486.264000px;}
.y25_c00481{bottom:502.702500px;}
.y24_c00481{bottom:519.141000px;}
.y23_c00481{bottom:535.579500px;}
.y22_c00481{bottom:552.018000px;}
.y21_c00481{bottom:568.455000px;}
.y20_c00481{bottom:584.893500px;}
.y1f_c00481{bottom:601.332000px;}
.y1e_c00481{bottom:617.770500px;}
.y1d_c00481{bottom:634.209000px;}
.y1c_c00481{bottom:650.647500px;}
.y1b_c00481{bottom:667.086000px;}
.y1a_c00481{bottom:683.524500px;}
.y19_c00481{bottom:699.963000px;}
.y18_c00481{bottom:716.401500px;}
.y17_c00481{bottom:732.838500px;}
.y16_c00481{bottom:749.277000px;}
.y15_c00481{bottom:765.715500px;}
.y14_c00481{bottom:782.154000px;}
.y13_c00481{bottom:815.031000px;}
.y12_c00481{bottom:831.469500px;}
.y11_c00481{bottom:847.908000px;}
.y10_c00481{bottom:864.346500px;}
.yf_c00481{bottom:880.411500px;}
.ye_c00481{bottom:896.848500px;}
.yd_c00481{bottom:913.287000px;}
.yc_c00481{bottom:929.725500px;}
.yb_c00481{bottom:946.164000px;}
.ya_c00481{bottom:962.602500px;}
.y9_c00481{bottom:979.041000px;}
.y8_c00481{bottom:995.479500px;}
.y7_c00481{bottom:1044.795000px;}
.y6_c00481{bottom:1061.232000px;}
.y5_c00481{bottom:1094.109000px;}
.y4_c00481{bottom:1110.547500px;}
.y3_c00481{bottom:1126.986000px;}
.y2_c00481{bottom:1143.424500px;}
.y1_c00481{bottom:1159.863000px;}
.h2_c00481{height:35.190766px;}
.h3_c00481{height:36.007158px;}
.h4_c00481{height:52.332837px;}
.h0_c00481{height:1262.835000px;}
.h1_c00481{height:1263.000000px;}
.w0_c00481{width:892.920000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:137.122500px;}
.x2_c00481{left:143.770500px;}
.x7_c00481{left:177.007500px;}
.x6_c00481{left:230.185500px;}
.x5_c00481{left:243.480000px;}
.x3_c00481{left:250.126500px;}
.x4_c00481{left:276.715500px;}
.x8_c00481{left:435.249000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls3_c00481{letter-spacing:0.000000pt;}
.ls0_c00481{letter-spacing:0.078221pt;}
.ls2_c00481{letter-spacing:0.087539pt;}
.ls1_c00481{letter-spacing:0.092873pt;}
.ws1_c00481{word-spacing:-23.622682pt;}
.ws2_c00481{word-spacing:-23.544461pt;}
.ws5_c00481{word-spacing:0.000000pt;}
.ws4_c00481{word-spacing:0.039110pt;}
.ws3_c00481{word-spacing:0.047940pt;}
.ws8_c00481{word-spacing:0.050460pt;}
.ws6_c00481{word-spacing:0.059290pt;}
.ws7_c00481{word-spacing:0.062592pt;}
.ws0_c00481{word-spacing:0.156442pt;}
.ws9_c00481{word-spacing:0.189730pt;}
._2_c00481{margin-left:-310.905929pt;}
._0_c00481{width:0.958123pt;}
._1_c00481{width:94.999162pt;}
.fs1_c00481{font-size:27.569600pt;}
.fs0_c00481{font-size:39.110400pt;}
.fs2_c00481{font-size:53.133867pt;}
.y0_c00481{bottom:0.000000pt;}
.y3a_c00481{bottom:39.333333pt;}
.y39_c00481{bottom:110.773333pt;}
.y38_c00481{bottom:125.385333pt;}
.y37_c00481{bottom:139.997333pt;}
.y36_c00481{bottom:154.609333pt;}
.y35_c00481{bottom:169.221333pt;}
.y34_c00481{bottom:183.833333pt;}
.y33_c00481{bottom:198.444000pt;}
.y32_c00481{bottom:213.056000pt;}
.y31_c00481{bottom:227.668000pt;}
.y30_c00481{bottom:242.280000pt;}
.y2f_c00481{bottom:256.892000pt;}
.y2e_c00481{bottom:286.116000pt;}
.y2d_c00481{bottom:300.728000pt;}
.y2c_c00481{bottom:315.340000pt;}
.y2b_c00481{bottom:359.174667pt;}
.y2a_c00481{bottom:373.786667pt;}
.y29_c00481{bottom:388.398667pt;}
.y28_c00481{bottom:403.010667pt;}
.y27_c00481{bottom:417.622667pt;}
.y26_c00481{bottom:432.234667pt;}
.y25_c00481{bottom:446.846667pt;}
.y24_c00481{bottom:461.458667pt;}
.y23_c00481{bottom:476.070667pt;}
.y22_c00481{bottom:490.682667pt;}
.y21_c00481{bottom:505.293333pt;}
.y20_c00481{bottom:519.905333pt;}
.y1f_c00481{bottom:534.517333pt;}
.y1e_c00481{bottom:549.129333pt;}
.y1d_c00481{bottom:563.741333pt;}
.y1c_c00481{bottom:578.353333pt;}
.y1b_c00481{bottom:592.965333pt;}
.y1a_c00481{bottom:607.577333pt;}
.y19_c00481{bottom:622.189333pt;}
.y18_c00481{bottom:636.801333pt;}
.y17_c00481{bottom:651.412000pt;}
.y16_c00481{bottom:666.024000pt;}
.y15_c00481{bottom:680.636000pt;}
.y14_c00481{bottom:695.248000pt;}
.y13_c00481{bottom:724.472000pt;}
.y12_c00481{bottom:739.084000pt;}
.y11_c00481{bottom:753.696000pt;}
.y10_c00481{bottom:768.308000pt;}
.yf_c00481{bottom:782.588000pt;}
.ye_c00481{bottom:797.198667pt;}
.yd_c00481{bottom:811.810667pt;}
.yc_c00481{bottom:826.422667pt;}
.yb_c00481{bottom:841.034667pt;}
.ya_c00481{bottom:855.646667pt;}
.y9_c00481{bottom:870.258667pt;}
.y8_c00481{bottom:884.870667pt;}
.y7_c00481{bottom:928.706667pt;}
.y6_c00481{bottom:943.317333pt;}
.y5_c00481{bottom:972.541333pt;}
.y4_c00481{bottom:987.153333pt;}
.y3_c00481{bottom:1001.765333pt;}
.y2_c00481{bottom:1016.377333pt;}
.y1_c00481{bottom:1030.989333pt;}
.h2_c00481{height:31.280681pt;}
.h3_c00481{height:32.006363pt;}
.h4_c00481{height:46.518078pt;}
.h0_c00481{height:1122.520000pt;}
.h1_c00481{height:1122.666667pt;}
.w0_c00481{width:793.706667pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:121.886667pt;}
.x2_c00481{left:127.796000pt;}
.x7_c00481{left:157.340000pt;}
.x6_c00481{left:204.609333pt;}
.x5_c00481{left:216.426667pt;}
.x3_c00481{left:222.334667pt;}
.x4_c00481{left:245.969333pt;}
.x8_c00481{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df9be9bc3cb57c803594fc0e.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:0.893555;font-style:normal;font-weight:normal;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_338c0868fa66b18cca317b69.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.083496;font-style:normal;font-weight:normal;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_2e8f198cde19a0bf0a288445.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00482;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00482;src:url('chunks/assets/font_3e28e5a5abb16507ad5dfc02.woff2')format("woff");}.ff6_c00482{font-family:ff6_c00482;line-height:1.000000;font-style: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;}
.ls3_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.087998px;}
.ls2_c00482{letter-spacing:0.098482px;}
.ls1_c00482{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00482{word-spacing:-33.713438px;}
.ws2_c00482{word-spacing:-26.575517px;}
.wse_c00482{word-spacing:-26.487518px;}
.ws9_c00482{word-spacing:-21.553319px;}
.ws8_c00482{word-spacing:-21.519216px;}
.ws5_c00482{word-spacing:-18.769538px;}
.ws7_c00482{word-spacing:-16.019861px;}
.ws4_c00482{word-spacing:-14.943900px;}
.wsa_c00482{word-spacing:-14.107042px;}
.wsb_c00482{word-spacing:-12.074671px;}
.ws1_c00482{word-spacing:-9.988424px;}
.ws3_c00482{word-spacing:-9.987499px;}
.ws6_c00482{word-spacing:-4.536144px;}
.ws12_c00482{word-spacing:0.000000px;}
.wsf_c00482{word-spacing:0.043999px;}
.ws15_c00482{word-spacing:0.056767px;}
.ws13_c00482{word-spacing:0.073250px;}
.ws17_c00482{word-spacing:0.083734px;}
.wsd_c00482{word-spacing:0.175997px;}
.ws16_c00482{word-spacing:0.202963px;}
.ws10_c00482{word-spacing:0.213446px;}
.ws11_c00482{word-spacing:0.219446px;}
.ws14_c00482{word-spacing:26.619516px;}
.ws0_c00482{word-spacing:43.038600px;}
._7_c00482{margin-left:-2211.000050px;}
._1_c00482{margin-left:-7.833025px;}
._3_c00482{margin-left:-4.124516px;}
._0_c00482{margin-left:-1.549390px;}
._5_c00482{width:1.005737px;}
._2_c00482{width:19.935816px;}
._4_c00482{width:40.109428px;}
._9_c00482{width:53.283031px;}
._6_c00482{width:79.858548px;}
._8_c00482{width:133.452408px;}
.fc6_c00482{color:rgb(0,0,207);}
.fc5_c00482{color:rgb(79,153,5);}
.fc3_c00482{color:rgb(33,74,135);}
.fc2_c00482{color:rgb(143,89,3);}
.fc4_c00482{color:rgb(207,92,0);}
.fc1_c00482{color:rgb(6,69,173);}
.fc0_c00482{color:rgb(0,0,0);}
.fs3_c00482{font-size:31.015800px;}
.fs2_c00482{font-size:43.999200px;}
.fs1_c00482{font-size:59.775600px;}
.fs0_c00482{font-size:86.077200px;}
.y0_c00482{bottom:0.000000px;}
.y20_c00482{bottom:44.250000px;}
.y1f_c00482{bottom:86.982000px;}
.y1e_c00482{bottom:103.420500px;}
.y1d_c00482{bottom:119.859000px;}
.y1c_c00482{bottom:136.297500px;}
.y1b_c00482{bottom:152.736000px;}
.y1a_c00482{bottom:169.174500px;}
.y19_c00482{bottom:185.613000px;}
.y18_c00482{bottom:201.678000px;}
.y17_c00482{bottom:218.115000px;}
.y16_c00482{bottom:234.553500px;}
.y15_c00482{bottom:250.992000px;}
.y14_c00482{bottom:267.430500px;}
.y13_c00482{bottom:283.869000px;}
.y12_c00482{bottom:300.307500px;}
.y11_c00482{bottom:316.746000px;}
.y10_c00482{bottom:349.623000px;}
.yf_c00482{bottom:366.061500px;}
.ye_c00482{bottom:415.375500px;}
.yd_c00482{bottom:431.814000px;}
.yc_c00482{bottom:447.879000px;}
.yb_c00482{bottom:493.600500px;}
.ya_c00482{bottom:511.533000px;}
.y9_c00482{bottom:529.465500px;}
.y8_c00482{bottom:547.398000px;}
.y7_c00482{bottom:565.330500px;}
.y6_c00482{bottom:583.264500px;}
.y5_c00482{bottom:610.377000px;}
.y4_c00482{bottom:637.491000px;}
.y3_c00482{bottom:664.603500px;}
.y2_c00482{bottom:691.717500px;}
.y1_c00482{bottom:734.299500px;}
.h6_c00482{height:35.190766px;}
.h7_c00482{height:36.007158px;}
.h3_c00482{height:40.511979px;}
.h4_c00482{height:52.332837px;}
.h5_c00482{height:52.338837px;}
.h2_c00482{height:58.337477px;}
.h0_c00482{height:1262.835000px;}
.h1_c00482{height:1263.000000px;}
.w0_c00482{width:892.920000px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:127.558500px;}
.x2_c00482{left:137.122500px;}
.x3_c00482{left:143.770500px;}
.x4_c00482{left:170.359500px;}
.x5_c00482{left:435.249000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls3_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.078221pt;}
.ls2_c00482{letter-spacing:0.087539pt;}
.ls1_c00482{letter-spacing:0.092873pt;}
.wsc_c00482{word-spacing:-29.967501pt;}
.ws2_c00482{word-spacing:-23.622682pt;}
.wse_c00482{word-spacing:-23.544461pt;}
.ws9_c00482{word-spacing:-19.158506pt;}
.ws8_c00482{word-spacing:-19.128192pt;}
.ws5_c00482{word-spacing:-16.684034pt;}
.ws7_c00482{word-spacing:-14.239876pt;}
.ws4_c00482{word-spacing:-13.283467pt;}
.wsa_c00482{word-spacing:-12.539593pt;}
.wsb_c00482{word-spacing:-10.733041pt;}
.ws1_c00482{word-spacing:-8.878599pt;}
.ws3_c00482{word-spacing:-8.877777pt;}
.ws6_c00482{word-spacing:-4.032128pt;}
.ws12_c00482{word-spacing:0.000000pt;}
.wsf_c00482{word-spacing:0.039110pt;}
.ws15_c00482{word-spacing:0.050460pt;}
.ws13_c00482{word-spacing:0.065111pt;}
.ws17_c00482{word-spacing:0.074430pt;}
.wsd_c00482{word-spacing:0.156442pt;}
.ws16_c00482{word-spacing:0.180412pt;}
.ws10_c00482{word-spacing:0.189730pt;}
.ws11_c00482{word-spacing:0.195063pt;}
.ws14_c00482{word-spacing:23.661792pt;}
.ws0_c00482{word-spacing:38.256533pt;}
._7_c00482{margin-left:-1965.333378pt;}
._1_c00482{margin-left:-6.962689pt;}
._3_c00482{margin-left:-3.666237pt;}
._0_c00482{margin-left:-1.377235pt;}
._5_c00482{width:0.893988pt;}
._2_c00482{width:17.720725pt;}
._4_c00482{width:35.652825pt;}
._9_c00482{width:47.362694pt;}
._6_c00482{width:70.985376pt;}
._8_c00482{width:118.624363pt;}
.fs3_c00482{font-size:27.569600pt;}
.fs2_c00482{font-size:39.110400pt;}
.fs1_c00482{font-size:53.133867pt;}
.fs0_c00482{font-size:76.513067pt;}
.y0_c00482{bottom:0.000000pt;}
.y20_c00482{bottom:39.333333pt;}
.y1f_c00482{bottom:77.317333pt;}
.y1e_c00482{bottom:91.929333pt;}
.y1d_c00482{bottom:106.541333pt;}
.y1c_c00482{bottom:121.153333pt;}
.y1b_c00482{bottom:135.765333pt;}
.y1a_c00482{bottom:150.377333pt;}
.y19_c00482{bottom:164.989333pt;}
.y18_c00482{bottom:179.269333pt;}
.y17_c00482{bottom:193.880000pt;}
.y16_c00482{bottom:208.492000pt;}
.y15_c00482{bottom:223.104000pt;}
.y14_c00482{bottom:237.716000pt;}
.y13_c00482{bottom:252.328000pt;}
.y12_c00482{bottom:266.940000pt;}
.y11_c00482{bottom:281.552000pt;}
.y10_c00482{bottom:310.776000pt;}
.yf_c00482{bottom:325.388000pt;}
.ye_c00482{bottom:369.222667pt;}
.yd_c00482{bottom:383.834667pt;}
.yc_c00482{bottom:398.114667pt;}
.yb_c00482{bottom:438.756000pt;}
.ya_c00482{bottom:454.696000pt;}
.y9_c00482{bottom:470.636000pt;}
.y8_c00482{bottom:486.576000pt;}
.y7_c00482{bottom:502.516000pt;}
.y6_c00482{bottom:518.457333pt;}
.y5_c00482{bottom:542.557333pt;}
.y4_c00482{bottom:566.658667pt;}
.y3_c00482{bottom:590.758667pt;}
.y2_c00482{bottom:614.860000pt;}
.y1_c00482{bottom:652.710667pt;}
.h6_c00482{height:31.280681pt;}
.h7_c00482{height:32.006363pt;}
.h3_c00482{height:36.010648pt;}
.h4_c00482{height:46.518078pt;}
.h5_c00482{height:46.523411pt;}
.h2_c00482{height:51.855535pt;}
.h0_c00482{height:1122.520000pt;}
.h1_c00482{height:1122.666667pt;}
.w0_c00482{width:793.706667pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:113.385333pt;}
.x2_c00482{left:121.886667pt;}
.x3_c00482{left:127.796000pt;}
.x4_c00482{left:151.430667pt;}
.x5_c00482{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ea8060b03100a5719b6b994.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.048828;font-style:normal;font-weight:normal;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_5eae0103313631315bff4471.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.014648;font-style:normal;font-weight:normal;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_2a52899ccbd6be665da69437.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:0.893555;font-style:normal;font-weight:normal;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_8e89591b35bf88a49e36ab56.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.102051;font-style: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;}
.ls4_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.087998px;}
.ls1_c00483{letter-spacing:0.098482px;}
.ls3_c00483{letter-spacing:0.104482px;}
.ls2_c00483{letter-spacing:26.690482px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00483{word-spacing:-26.575517px;}
.ws5_c00483{word-spacing:-26.487518px;}
.ws11_c00483{word-spacing:-21.553319px;}
.ws10_c00483{word-spacing:-21.519216px;}
.wsb_c00483{word-spacing:-18.889090px;}
.wsd_c00483{word-spacing:-18.769538px;}
.wsf_c00483{word-spacing:-17.633802px;}
.wsa_c00483{word-spacing:-15.063451px;}
.wsc_c00483{word-spacing:-14.943900px;}
.ws12_c00483{word-spacing:-14.107042px;}
.ws8_c00483{word-spacing:-9.988424px;}
.ws9_c00483{word-spacing:-9.987499px;}
.wse_c00483{word-spacing:-7.686144px;}
.ws4_c00483{word-spacing:0.000000px;}
.ws1_c00483{word-spacing:0.043999px;}
.ws0_c00483{word-spacing:0.073250px;}
.ws6_c00483{word-spacing:0.213446px;}
.ws2_c00483{word-spacing:0.219446px;}
.ws7_c00483{word-spacing:43.038600px;}
._4_c00483{margin-left:-7.833025px;}
._6_c00483{margin-left:-3.945190px;}
._3_c00483{margin-left:-1.549390px;}
._2_c00483{width:1.171555px;}
._5_c00483{width:19.917367px;}
._0_c00483{width:79.858548px;}
._1_c00483{width:106.874057px;}
.fc5_c00483{color:rgb(79,153,5);}
.fc4_c00483{color:rgb(143,89,3);}
.fc6_c00483{color:rgb(6,69,173);}
.fc3_c00483{color:rgb(207,92,0);}
.fc2_c00483{color:rgb(0,0,0);}
.fc1_c00483{color:rgb(0,0,207);}
.fc0_c00483{color:rgb(33,74,135);}
.fs0_c00483{font-size:43.999200px;}
.fs2_c00483{font-size:59.775600px;}
.fs1_c00483{font-size:86.077200px;}
.y0_c00483{bottom:0.000000px;}
.y20_c00483{bottom:44.250000px;}
.y1f_c00483{bottom:82.051500px;}
.y1e_c00483{bottom:99.984000px;}
.y1d_c00483{bottom:117.916500px;}
.y1c_c00483{bottom:144.757500px;}
.y1b_c00483{bottom:171.597000px;}
.y1a_c00483{bottom:198.438000px;}
.y19_c00483{bottom:225.277500px;}
.y18_c00483{bottom:267.492000px;}
.y17_c00483{bottom:732.465000px;}
.y16_c00483{bottom:748.903500px;}
.y15_c00483{bottom:765.342000px;}
.y14_c00483{bottom:781.780500px;}
.y13_c00483{bottom:798.219000px;}
.y12_c00483{bottom:814.657500px;}
.y11_c00483{bottom:831.096000px;}
.y10_c00483{bottom:847.534500px;}
.yf_c00483{bottom:863.973000px;}
.ye_c00483{bottom:880.411500px;}
.yd_c00483{bottom:896.848500px;}
.yc_c00483{bottom:929.725500px;}
.yb_c00483{bottom:946.164000px;}
.ya_c00483{bottom:962.602500px;}
.y9_c00483{bottom:995.479500px;}
.y8_c00483{bottom:1011.918000px;}
.y7_c00483{bottom:1028.356500px;}
.y6_c00483{bottom:1044.795000px;}
.y5_c00483{bottom:1061.232000px;}
.y4_c00483{bottom:1077.670500px;}
.y3_c00483{bottom:1094.109000px;}
.y2_c00483{bottom:1143.424500px;}
.y1_c00483{bottom:1159.863000px;}
.h3_c00483{height:35.190766px;}
.h2_c00483{height:36.007158px;}
.h5_c00483{height:40.511979px;}
.h6_c00483{height:52.332837px;}
.h4_c00483{height:58.337477px;}
.h0_c00483{height:1262.835000px;}
.h1_c00483{height:1263.000000px;}
.w0_c00483{width:892.920000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x4_c00483{left:127.558500px;}
.x2_c00483{left:137.122500px;}
.x1_c00483{left:143.770500px;}
.x3_c00483{left:177.007500px;}
.x5_c00483{left:435.249000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls4_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.078221pt;}
.ls1_c00483{letter-spacing:0.087539pt;}
.ls3_c00483{letter-spacing:0.092873pt;}
.ls2_c00483{letter-spacing:23.724873pt;}
.ws3_c00483{word-spacing:-23.622682pt;}
.ws5_c00483{word-spacing:-23.544461pt;}
.ws11_c00483{word-spacing:-19.158506pt;}
.ws10_c00483{word-spacing:-19.128192pt;}
.wsb_c00483{word-spacing:-16.790302pt;}
.wsd_c00483{word-spacing:-16.684034pt;}
.wsf_c00483{word-spacing:-15.674491pt;}
.wsa_c00483{word-spacing:-13.389734pt;}
.wsc_c00483{word-spacing:-13.283467pt;}
.ws12_c00483{word-spacing:-12.539593pt;}
.ws8_c00483{word-spacing:-8.878599pt;}
.ws9_c00483{word-spacing:-8.877777pt;}
.wse_c00483{word-spacing:-6.832128pt;}
.ws4_c00483{word-spacing:0.000000pt;}
.ws1_c00483{word-spacing:0.039110pt;}
.ws0_c00483{word-spacing:0.065111pt;}
.ws6_c00483{word-spacing:0.189730pt;}
.ws2_c00483{word-spacing:0.195063pt;}
.ws7_c00483{word-spacing:38.256533pt;}
._4_c00483{margin-left:-6.962689pt;}
._6_c00483{margin-left:-3.506835pt;}
._3_c00483{margin-left:-1.377235pt;}
._2_c00483{width:1.041382pt;}
._5_c00483{width:17.704326pt;}
._0_c00483{width:70.985376pt;}
._1_c00483{width:94.999162pt;}
.fs0_c00483{font-size:39.110400pt;}
.fs2_c00483{font-size:53.133867pt;}
.fs1_c00483{font-size:76.513067pt;}
.y0_c00483{bottom:0.000000pt;}
.y20_c00483{bottom:39.333333pt;}
.y1f_c00483{bottom:72.934667pt;}
.y1e_c00483{bottom:88.874667pt;}
.y1d_c00483{bottom:104.814667pt;}
.y1c_c00483{bottom:128.673333pt;}
.y1b_c00483{bottom:152.530667pt;}
.y1a_c00483{bottom:176.389333pt;}
.y19_c00483{bottom:200.246667pt;}
.y18_c00483{bottom:237.770667pt;}
.y17_c00483{bottom:651.080000pt;}
.y16_c00483{bottom:665.692000pt;}
.y15_c00483{bottom:680.304000pt;}
.y14_c00483{bottom:694.916000pt;}
.y13_c00483{bottom:709.528000pt;}
.y12_c00483{bottom:724.140000pt;}
.y11_c00483{bottom:738.752000pt;}
.y10_c00483{bottom:753.364000pt;}
.yf_c00483{bottom:767.976000pt;}
.ye_c00483{bottom:782.588000pt;}
.yd_c00483{bottom:797.198667pt;}
.yc_c00483{bottom:826.422667pt;}
.yb_c00483{bottom:841.034667pt;}
.ya_c00483{bottom:855.646667pt;}
.y9_c00483{bottom:884.870667pt;}
.y8_c00483{bottom:899.482667pt;}
.y7_c00483{bottom:914.094667pt;}
.y6_c00483{bottom:928.706667pt;}
.y5_c00483{bottom:943.317333pt;}
.y4_c00483{bottom:957.929333pt;}
.y3_c00483{bottom:972.541333pt;}
.y2_c00483{bottom:1016.377333pt;}
.y1_c00483{bottom:1030.989333pt;}
.h3_c00483{height:31.280681pt;}
.h2_c00483{height:32.006363pt;}
.h5_c00483{height:36.010648pt;}
.h6_c00483{height:46.518078pt;}
.h4_c00483{height:51.855535pt;}
.h0_c00483{height:1122.520000pt;}
.h1_c00483{height:1122.666667pt;}
.w0_c00483{width:793.706667pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x4_c00483{left:113.385333pt;}
.x2_c00483{left:121.886667pt;}
.x1_c00483{left:127.796000pt;}
.x3_c00483{left:157.340000pt;}
.x5_c00483{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f633b0ec3e2214535ba3db58.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.102051;font-style:normal;font-weight:normal;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_2622acce020d94e90714dafd.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.048828;font-style:normal;font-weight:normal;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_729e80200cdad33353c6bb21.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00484;src:url('chunks/assets/font_2ea707c1ec4266c7292d8711.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls4_c00484{letter-spacing:0.000000px;}
.ls1_c00484{letter-spacing:0.087998px;}
.ls2_c00484{letter-spacing:0.098482px;}
.ls0_c00484{letter-spacing:0.104482px;}
.ls3_c00484{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00484{word-spacing:-33.713438px;}
.ws5_c00484{word-spacing:-26.575517px;}
.ws4_c00484{word-spacing:-26.487518px;}
.ws1_c00484{word-spacing:-18.769538px;}
.ws0_c00484{word-spacing:-12.074671px;}
.ws9_c00484{word-spacing:0.000000px;}
.ws6_c00484{word-spacing:0.043999px;}
.wsc_c00484{word-spacing:0.056767px;}
.wsa_c00484{word-spacing:0.073250px;}
.wse_c00484{word-spacing:0.083734px;}
.ws3_c00484{word-spacing:0.175997px;}
.wsd_c00484{word-spacing:0.202963px;}
.ws7_c00484{word-spacing:0.213446px;}
.ws8_c00484{word-spacing:0.219446px;}
.wsb_c00484{word-spacing:26.619516px;}
._4_c00484{margin-left:-2211.000050px;}
._1_c00484{margin-left:-3.825638px;}
._2_c00484{width:1.005737px;}
._0_c00484{width:40.109428px;}
._6_c00484{width:53.283031px;}
._3_c00484{width:79.858548px;}
._5_c00484{width:133.452408px;}
.fc5_c00484{color:rgb(0,0,207);}
.fc4_c00484{color:rgb(79,153,5);}
.fc3_c00484{color:rgb(207,92,0);}
.fc2_c00484{color:rgb(33,74,135);}
.fc1_c00484{color:rgb(143,89,3);}
.fc0_c00484{color:rgb(0,0,0);}
.fs2_c00484{font-size:31.015800px;}
.fs1_c00484{font-size:43.999200px;}
.fs0_c00484{font-size:59.775600px;}
.y0_c00484{bottom:0.000000px;}
.y2f_c00484{bottom:44.250000px;}
.y2e_c00484{bottom:96.919500px;}
.y2d_c00484{bottom:113.358000px;}
.y2c_c00484{bottom:129.796500px;}
.y2b_c00484{bottom:146.235000px;}
.y2a_c00484{bottom:162.673500px;}
.y29_c00484{bottom:179.112000px;}
.y28_c00484{bottom:195.550500px;}
.y27_c00484{bottom:211.989000px;}
.y26_c00484{bottom:228.427500px;}
.y25_c00484{bottom:244.866000px;}
.y24_c00484{bottom:261.304500px;}
.y23_c00484{bottom:294.180000px;}
.y22_c00484{bottom:310.618500px;}
.y21_c00484{bottom:327.057000px;}
.y20_c00484{bottom:359.934000px;}
.y1f_c00484{bottom:376.372500px;}
.y1e_c00484{bottom:392.811000px;}
.y1d_c00484{bottom:409.249500px;}
.y1c_c00484{bottom:425.688000px;}
.y1b_c00484{bottom:442.125000px;}
.y1a_c00484{bottom:458.563500px;}
.y19_c00484{bottom:507.879000px;}
.y18_c00484{bottom:524.317500px;}
.y17_c00484{bottom:540.756000px;}
.y16_c00484{bottom:557.194500px;}
.y15_c00484{bottom:573.633000px;}
.y14_c00484{bottom:590.071500px;}
.y13_c00484{bottom:606.508500px;}
.y12_c00484{bottom:622.947000px;}
.y11_c00484{bottom:639.385500px;}
.y10_c00484{bottom:655.450500px;}
.yf_c00484{bottom:671.889000px;}
.ye_c00484{bottom:688.327500px;}
.yd_c00484{bottom:704.766000px;}
.yc_c00484{bottom:721.204500px;}
.yb_c00484{bottom:737.643000px;}
.ya_c00484{bottom:754.081500px;}
.y9_c00484{bottom:770.518500px;}
.y8_c00484{bottom:803.395500px;}
.y7_c00484{bottom:819.834000px;}
.y6_c00484{bottom:869.149500px;}
.y5_c00484{bottom:885.588000px;}
.y4_c00484{bottom:901.653000px;}
.y3_c00484{bottom:1123.998000px;}
.y2_c00484{bottom:1141.930500px;}
.y1_c00484{bottom:1159.863000px;}
.h3_c00484{height:35.190766px;}
.h4_c00484{height:36.007158px;}
.h2_c00484{height:52.332837px;}
.h0_c00484{height:1262.835000px;}
.h1_c00484{height:1263.000000px;}
.w0_c00484{width:892.920000px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:127.558500px;}
.x2_c00484{left:137.122500px;}
.x3_c00484{left:143.770500px;}
.x4_c00484{left:170.359500px;}
.x5_c00484{left:177.007500px;}
.x6_c00484{left:435.249000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls4_c00484{letter-spacing:0.000000pt;}
.ls1_c00484{letter-spacing:0.078221pt;}
.ls2_c00484{letter-spacing:0.087539pt;}
.ls0_c00484{letter-spacing:0.092873pt;}
.ls3_c00484{letter-spacing:23.724873pt;}
.ws2_c00484{word-spacing:-29.967501pt;}
.ws5_c00484{word-spacing:-23.622682pt;}
.ws4_c00484{word-spacing:-23.544461pt;}
.ws1_c00484{word-spacing:-16.684034pt;}
.ws0_c00484{word-spacing:-10.733041pt;}
.ws9_c00484{word-spacing:0.000000pt;}
.ws6_c00484{word-spacing:0.039110pt;}
.wsc_c00484{word-spacing:0.050460pt;}
.wsa_c00484{word-spacing:0.065111pt;}
.wse_c00484{word-spacing:0.074430pt;}
.ws3_c00484{word-spacing:0.156442pt;}
.wsd_c00484{word-spacing:0.180412pt;}
.ws7_c00484{word-spacing:0.189730pt;}
.ws8_c00484{word-spacing:0.195063pt;}
.wsb_c00484{word-spacing:23.661792pt;}
._4_c00484{margin-left:-1965.333378pt;}
._1_c00484{margin-left:-3.400567pt;}
._2_c00484{width:0.893988pt;}
._0_c00484{width:35.652825pt;}
._6_c00484{width:47.362694pt;}
._3_c00484{width:70.985376pt;}
._5_c00484{width:118.624363pt;}
.fs2_c00484{font-size:27.569600pt;}
.fs1_c00484{font-size:39.110400pt;}
.fs0_c00484{font-size:53.133867pt;}
.y0_c00484{bottom:0.000000pt;}
.y2f_c00484{bottom:39.333333pt;}
.y2e_c00484{bottom:86.150667pt;}
.y2d_c00484{bottom:100.762667pt;}
.y2c_c00484{bottom:115.374667pt;}
.y2b_c00484{bottom:129.986667pt;}
.y2a_c00484{bottom:144.598667pt;}
.y29_c00484{bottom:159.210667pt;}
.y28_c00484{bottom:173.822667pt;}
.y27_c00484{bottom:188.434667pt;}
.y26_c00484{bottom:203.046667pt;}
.y25_c00484{bottom:217.658667pt;}
.y24_c00484{bottom:232.270667pt;}
.y23_c00484{bottom:261.493333pt;}
.y22_c00484{bottom:276.105333pt;}
.y21_c00484{bottom:290.717333pt;}
.y20_c00484{bottom:319.941333pt;}
.y1f_c00484{bottom:334.553333pt;}
.y1e_c00484{bottom:349.165333pt;}
.y1d_c00484{bottom:363.777333pt;}
.y1c_c00484{bottom:378.389333pt;}
.y1b_c00484{bottom:393.000000pt;}
.y1a_c00484{bottom:407.612000pt;}
.y19_c00484{bottom:451.448000pt;}
.y18_c00484{bottom:466.060000pt;}
.y17_c00484{bottom:480.672000pt;}
.y16_c00484{bottom:495.284000pt;}
.y15_c00484{bottom:509.896000pt;}
.y14_c00484{bottom:524.508000pt;}
.y13_c00484{bottom:539.118667pt;}
.y12_c00484{bottom:553.730667pt;}
.y11_c00484{bottom:568.342667pt;}
.y10_c00484{bottom:582.622667pt;}
.yf_c00484{bottom:597.234667pt;}
.ye_c00484{bottom:611.846667pt;}
.yd_c00484{bottom:626.458667pt;}
.yc_c00484{bottom:641.070667pt;}
.yb_c00484{bottom:655.682667pt;}
.ya_c00484{bottom:670.294667pt;}
.y9_c00484{bottom:684.905333pt;}
.y8_c00484{bottom:714.129333pt;}
.y7_c00484{bottom:728.741333pt;}
.y6_c00484{bottom:772.577333pt;}
.y5_c00484{bottom:787.189333pt;}
.y4_c00484{bottom:801.469333pt;}
.y3_c00484{bottom:999.109333pt;}
.y2_c00484{bottom:1015.049333pt;}
.y1_c00484{bottom:1030.989333pt;}
.h3_c00484{height:31.280681pt;}
.h4_c00484{height:32.006363pt;}
.h2_c00484{height:46.518078pt;}
.h0_c00484{height:1122.520000pt;}
.h1_c00484{height:1122.666667pt;}
.w0_c00484{width:793.706667pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:113.385333pt;}
.x2_c00484{left:121.886667pt;}
.x3_c00484{left:127.796000pt;}
.x4_c00484{left:151.430667pt;}
.x5_c00484{left:157.340000pt;}
.x6_c00484{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b388c06c3a9ab047fb3c4376.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:0.893555;font-style:normal;font-weight:normal;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_fcc289bbab72af13334d9a7f.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.083496;font-style:normal;font-weight:normal;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_d8967410eeecb5fa80cdea7b.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00485;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00485;src:url('chunks/assets/font_4461d6da8b1ced2b7707e5b0.woff2')format("woff");}.ff6_c00485{font-family:ff6_c00485;line-height:1.000000;font-style: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;}
.ls3_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:0.087998px;}
.ls2_c00485{letter-spacing:0.098482px;}
.ls1_c00485{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00485{word-spacing:-33.713438px;}
.ws2_c00485{word-spacing:-26.575517px;}
.wse_c00485{word-spacing:-26.487518px;}
.ws9_c00485{word-spacing:-21.553319px;}
.ws8_c00485{word-spacing:-21.519216px;}
.ws5_c00485{word-spacing:-18.769538px;}
.ws7_c00485{word-spacing:-17.633802px;}
.ws4_c00485{word-spacing:-14.943900px;}
.wsa_c00485{word-spacing:-14.107042px;}
.wsb_c00485{word-spacing:-12.074671px;}
.ws1_c00485{word-spacing:-9.988424px;}
.ws3_c00485{word-spacing:-9.987499px;}
.ws6_c00485{word-spacing:-7.686144px;}
.ws12_c00485{word-spacing:0.000000px;}
.wsf_c00485{word-spacing:0.043999px;}
.ws15_c00485{word-spacing:0.056767px;}
.ws13_c00485{word-spacing:0.073250px;}
.ws17_c00485{word-spacing:0.083734px;}
.wsd_c00485{word-spacing:0.175997px;}
.ws16_c00485{word-spacing:0.202963px;}
.ws10_c00485{word-spacing:0.213446px;}
.ws11_c00485{word-spacing:0.219446px;}
.ws14_c00485{word-spacing:26.619516px;}
.ws0_c00485{word-spacing:43.038600px;}
._7_c00485{margin-left:-2211.000050px;}
._1_c00485{margin-left:-7.833025px;}
._3_c00485{margin-left:-4.124516px;}
._0_c00485{margin-left:-1.549390px;}
._5_c00485{width:1.005737px;}
._2_c00485{width:19.935816px;}
._4_c00485{width:40.109428px;}
._9_c00485{width:53.283031px;}
._6_c00485{width:79.858548px;}
._8_c00485{width:133.452408px;}
.fc6_c00485{color:rgb(0,0,207);}
.fc5_c00485{color:rgb(79,153,5);}
.fc3_c00485{color:rgb(33,74,135);}
.fc2_c00485{color:rgb(143,89,3);}
.fc4_c00485{color:rgb(207,92,0);}
.fc1_c00485{color:rgb(6,69,173);}
.fc0_c00485{color:rgb(0,0,0);}
.fs3_c00485{font-size:31.015800px;}
.fs2_c00485{font-size:43.999200px;}
.fs1_c00485{font-size:59.775600px;}
.fs0_c00485{font-size:86.077200px;}
.y0_c00485{bottom:0.000000px;}
.y20_c00485{bottom:44.250000px;}
.y1f_c00485{bottom:86.982000px;}
.y1e_c00485{bottom:103.420500px;}
.y1d_c00485{bottom:119.859000px;}
.y1c_c00485{bottom:136.297500px;}
.y1b_c00485{bottom:152.736000px;}
.y1a_c00485{bottom:169.174500px;}
.y19_c00485{bottom:185.613000px;}
.y18_c00485{bottom:201.678000px;}
.y17_c00485{bottom:218.115000px;}
.y16_c00485{bottom:234.553500px;}
.y15_c00485{bottom:250.992000px;}
.y14_c00485{bottom:267.430500px;}
.y13_c00485{bottom:283.869000px;}
.y12_c00485{bottom:300.307500px;}
.y11_c00485{bottom:316.746000px;}
.y10_c00485{bottom:349.623000px;}
.yf_c00485{bottom:366.061500px;}
.ye_c00485{bottom:415.375500px;}
.yd_c00485{bottom:431.814000px;}
.yc_c00485{bottom:447.879000px;}
.yb_c00485{bottom:493.600500px;}
.ya_c00485{bottom:511.533000px;}
.y9_c00485{bottom:529.465500px;}
.y8_c00485{bottom:547.398000px;}
.y7_c00485{bottom:565.330500px;}
.y6_c00485{bottom:583.264500px;}
.y5_c00485{bottom:610.377000px;}
.y4_c00485{bottom:637.491000px;}
.y3_c00485{bottom:664.603500px;}
.y2_c00485{bottom:691.717500px;}
.y1_c00485{bottom:734.299500px;}
.h6_c00485{height:35.190766px;}
.h7_c00485{height:36.007158px;}
.h3_c00485{height:40.511979px;}
.h4_c00485{height:52.332837px;}
.h5_c00485{height:52.338837px;}
.h2_c00485{height:58.337477px;}
.h0_c00485{height:1262.835000px;}
.h1_c00485{height:1263.000000px;}
.w0_c00485{width:892.920000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:127.558500px;}
.x2_c00485{left:137.122500px;}
.x3_c00485{left:143.770500px;}
.x4_c00485{left:170.359500px;}
.x5_c00485{left:435.249000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls3_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:0.078221pt;}
.ls2_c00485{letter-spacing:0.087539pt;}
.ls1_c00485{letter-spacing:0.092873pt;}
.wsc_c00485{word-spacing:-29.967501pt;}
.ws2_c00485{word-spacing:-23.622682pt;}
.wse_c00485{word-spacing:-23.544461pt;}
.ws9_c00485{word-spacing:-19.158506pt;}
.ws8_c00485{word-spacing:-19.128192pt;}
.ws5_c00485{word-spacing:-16.684034pt;}
.ws7_c00485{word-spacing:-15.674491pt;}
.ws4_c00485{word-spacing:-13.283467pt;}
.wsa_c00485{word-spacing:-12.539593pt;}
.wsb_c00485{word-spacing:-10.733041pt;}
.ws1_c00485{word-spacing:-8.878599pt;}
.ws3_c00485{word-spacing:-8.877777pt;}
.ws6_c00485{word-spacing:-6.832128pt;}
.ws12_c00485{word-spacing:0.000000pt;}
.wsf_c00485{word-spacing:0.039110pt;}
.ws15_c00485{word-spacing:0.050460pt;}
.ws13_c00485{word-spacing:0.065111pt;}
.ws17_c00485{word-spacing:0.074430pt;}
.wsd_c00485{word-spacing:0.156442pt;}
.ws16_c00485{word-spacing:0.180412pt;}
.ws10_c00485{word-spacing:0.189730pt;}
.ws11_c00485{word-spacing:0.195063pt;}
.ws14_c00485{word-spacing:23.661792pt;}
.ws0_c00485{word-spacing:38.256533pt;}
._7_c00485{margin-left:-1965.333378pt;}
._1_c00485{margin-left:-6.962689pt;}
._3_c00485{margin-left:-3.666237pt;}
._0_c00485{margin-left:-1.377235pt;}
._5_c00485{width:0.893988pt;}
._2_c00485{width:17.720725pt;}
._4_c00485{width:35.652825pt;}
._9_c00485{width:47.362694pt;}
._6_c00485{width:70.985376pt;}
._8_c00485{width:118.624363pt;}
.fs3_c00485{font-size:27.569600pt;}
.fs2_c00485{font-size:39.110400pt;}
.fs1_c00485{font-size:53.133867pt;}
.fs0_c00485{font-size:76.513067pt;}
.y0_c00485{bottom:0.000000pt;}
.y20_c00485{bottom:39.333333pt;}
.y1f_c00485{bottom:77.317333pt;}
.y1e_c00485{bottom:91.929333pt;}
.y1d_c00485{bottom:106.541333pt;}
.y1c_c00485{bottom:121.153333pt;}
.y1b_c00485{bottom:135.765333pt;}
.y1a_c00485{bottom:150.377333pt;}
.y19_c00485{bottom:164.989333pt;}
.y18_c00485{bottom:179.269333pt;}
.y17_c00485{bottom:193.880000pt;}
.y16_c00485{bottom:208.492000pt;}
.y15_c00485{bottom:223.104000pt;}
.y14_c00485{bottom:237.716000pt;}
.y13_c00485{bottom:252.328000pt;}
.y12_c00485{bottom:266.940000pt;}
.y11_c00485{bottom:281.552000pt;}
.y10_c00485{bottom:310.776000pt;}
.yf_c00485{bottom:325.388000pt;}
.ye_c00485{bottom:369.222667pt;}
.yd_c00485{bottom:383.834667pt;}
.yc_c00485{bottom:398.114667pt;}
.yb_c00485{bottom:438.756000pt;}
.ya_c00485{bottom:454.696000pt;}
.y9_c00485{bottom:470.636000pt;}
.y8_c00485{bottom:486.576000pt;}
.y7_c00485{bottom:502.516000pt;}
.y6_c00485{bottom:518.457333pt;}
.y5_c00485{bottom:542.557333pt;}
.y4_c00485{bottom:566.658667pt;}
.y3_c00485{bottom:590.758667pt;}
.y2_c00485{bottom:614.860000pt;}
.y1_c00485{bottom:652.710667pt;}
.h6_c00485{height:31.280681pt;}
.h7_c00485{height:32.006363pt;}
.h3_c00485{height:36.010648pt;}
.h4_c00485{height:46.518078pt;}
.h5_c00485{height:46.523411pt;}
.h2_c00485{height:51.855535pt;}
.h0_c00485{height:1122.520000pt;}
.h1_c00485{height:1122.666667pt;}
.w0_c00485{width:793.706667pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:113.385333pt;}
.x2_c00485{left:121.886667pt;}
.x3_c00485{left:127.796000pt;}
.x4_c00485{left:151.430667pt;}
.x5_c00485{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ff361de043604617335cdf6.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.048828;font-style:normal;font-weight:normal;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_50ffb317c6513226ea142673.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.014648;font-style:normal;font-weight:normal;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_fa577e76cfaddb4fc6ac8a08.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_e089e814047928bd6cd731c7.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.102051;font-style: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;}
.ls4_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.087998px;}
.ls1_c00486{letter-spacing:0.098482px;}
.ls3_c00486{letter-spacing:0.104482px;}
.ls2_c00486{letter-spacing:26.690482px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00486{word-spacing:-26.575517px;}
.ws5_c00486{word-spacing:-26.487518px;}
.wsf_c00486{word-spacing:-21.553319px;}
.wse_c00486{word-spacing:-21.519216px;}
.wsd_c00486{word-spacing:-19.247743px;}
.wsb_c00486{word-spacing:-18.769538px;}
.wsa_c00486{word-spacing:-14.943900px;}
.ws10_c00486{word-spacing:-14.107042px;}
.wsc_c00486{word-spacing:-10.230144px;}
.ws8_c00486{word-spacing:-9.988424px;}
.ws9_c00486{word-spacing:-9.987499px;}
.ws4_c00486{word-spacing:0.000000px;}
.ws1_c00486{word-spacing:0.043999px;}
.ws0_c00486{word-spacing:0.073250px;}
.ws6_c00486{word-spacing:0.213446px;}
.ws2_c00486{word-spacing:0.219446px;}
.ws7_c00486{word-spacing:43.038600px;}
._3_c00486{margin-left:-7.833025px;}
._5_c00486{margin-left:-4.124516px;}
._2_c00486{margin-left:-1.549390px;}
._1_c00486{width:1.182038px;}
._4_c00486{width:19.935816px;}
._0_c00486{width:79.858548px;}
.fc5_c00486{color:rgb(79,153,5);}
.fc4_c00486{color:rgb(143,89,3);}
.fc6_c00486{color:rgb(6,69,173);}
.fc3_c00486{color:rgb(207,92,0);}
.fc2_c00486{color:rgb(0,0,0);}
.fc1_c00486{color:rgb(0,0,207);}
.fc0_c00486{color:rgb(33,74,135);}
.fs0_c00486{font-size:43.999200px;}
.fs2_c00486{font-size:59.775600px;}
.fs1_c00486{font-size:86.077200px;}
.y0_c00486{bottom:0.000000px;}
.y20_c00486{bottom:44.250000px;}
.y1f_c00486{bottom:82.051500px;}
.y1e_c00486{bottom:99.984000px;}
.y1d_c00486{bottom:117.916500px;}
.y1c_c00486{bottom:144.757500px;}
.y1b_c00486{bottom:171.597000px;}
.y1a_c00486{bottom:198.438000px;}
.y19_c00486{bottom:225.277500px;}
.y18_c00486{bottom:267.492000px;}
.y17_c00486{bottom:732.465000px;}
.y16_c00486{bottom:748.903500px;}
.y15_c00486{bottom:765.342000px;}
.y14_c00486{bottom:781.780500px;}
.y13_c00486{bottom:798.219000px;}
.y12_c00486{bottom:814.657500px;}
.y11_c00486{bottom:831.096000px;}
.y10_c00486{bottom:847.534500px;}
.yf_c00486{bottom:863.973000px;}
.ye_c00486{bottom:880.411500px;}
.yd_c00486{bottom:896.848500px;}
.yc_c00486{bottom:929.725500px;}
.yb_c00486{bottom:946.164000px;}
.ya_c00486{bottom:962.602500px;}
.y9_c00486{bottom:995.479500px;}
.y8_c00486{bottom:1011.918000px;}
.y7_c00486{bottom:1028.356500px;}
.y6_c00486{bottom:1044.795000px;}
.y5_c00486{bottom:1061.232000px;}
.y4_c00486{bottom:1077.670500px;}
.y3_c00486{bottom:1094.109000px;}
.y2_c00486{bottom:1143.424500px;}
.y1_c00486{bottom:1159.863000px;}
.h3_c00486{height:35.190766px;}
.h2_c00486{height:36.007158px;}
.h5_c00486{height:40.511979px;}
.h6_c00486{height:52.332837px;}
.h4_c00486{height:58.337477px;}
.h0_c00486{height:1262.835000px;}
.h1_c00486{height:1263.000000px;}
.w0_c00486{width:892.920000px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.x4_c00486{left:127.558500px;}
.x2_c00486{left:137.122500px;}
.x1_c00486{left:143.770500px;}
.x3_c00486{left:177.007500px;}
.x5_c00486{left:435.249000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls4_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.078221pt;}
.ls1_c00486{letter-spacing:0.087539pt;}
.ls3_c00486{letter-spacing:0.092873pt;}
.ls2_c00486{letter-spacing:23.724873pt;}
.ws3_c00486{word-spacing:-23.622682pt;}
.ws5_c00486{word-spacing:-23.544461pt;}
.wsf_c00486{word-spacing:-19.158506pt;}
.wse_c00486{word-spacing:-19.128192pt;}
.wsd_c00486{word-spacing:-17.109105pt;}
.wsb_c00486{word-spacing:-16.684034pt;}
.wsa_c00486{word-spacing:-13.283467pt;}
.ws10_c00486{word-spacing:-12.539593pt;}
.wsc_c00486{word-spacing:-9.093461pt;}
.ws8_c00486{word-spacing:-8.878599pt;}
.ws9_c00486{word-spacing:-8.877777pt;}
.ws4_c00486{word-spacing:0.000000pt;}
.ws1_c00486{word-spacing:0.039110pt;}
.ws0_c00486{word-spacing:0.065111pt;}
.ws6_c00486{word-spacing:0.189730pt;}
.ws2_c00486{word-spacing:0.195063pt;}
.ws7_c00486{word-spacing:38.256533pt;}
._3_c00486{margin-left:-6.962689pt;}
._5_c00486{margin-left:-3.666237pt;}
._2_c00486{margin-left:-1.377235pt;}
._1_c00486{width:1.050701pt;}
._4_c00486{width:17.720725pt;}
._0_c00486{width:70.985376pt;}
.fs0_c00486{font-size:39.110400pt;}
.fs2_c00486{font-size:53.133867pt;}
.fs1_c00486{font-size:76.513067pt;}
.y0_c00486{bottom:0.000000pt;}
.y20_c00486{bottom:39.333333pt;}
.y1f_c00486{bottom:72.934667pt;}
.y1e_c00486{bottom:88.874667pt;}
.y1d_c00486{bottom:104.814667pt;}
.y1c_c00486{bottom:128.673333pt;}
.y1b_c00486{bottom:152.530667pt;}
.y1a_c00486{bottom:176.389333pt;}
.y19_c00486{bottom:200.246667pt;}
.y18_c00486{bottom:237.770667pt;}
.y17_c00486{bottom:651.080000pt;}
.y16_c00486{bottom:665.692000pt;}
.y15_c00486{bottom:680.304000pt;}
.y14_c00486{bottom:694.916000pt;}
.y13_c00486{bottom:709.528000pt;}
.y12_c00486{bottom:724.140000pt;}
.y11_c00486{bottom:738.752000pt;}
.y10_c00486{bottom:753.364000pt;}
.yf_c00486{bottom:767.976000pt;}
.ye_c00486{bottom:782.588000pt;}
.yd_c00486{bottom:797.198667pt;}
.yc_c00486{bottom:826.422667pt;}
.yb_c00486{bottom:841.034667pt;}
.ya_c00486{bottom:855.646667pt;}
.y9_c00486{bottom:884.870667pt;}
.y8_c00486{bottom:899.482667pt;}
.y7_c00486{bottom:914.094667pt;}
.y6_c00486{bottom:928.706667pt;}
.y5_c00486{bottom:943.317333pt;}
.y4_c00486{bottom:957.929333pt;}
.y3_c00486{bottom:972.541333pt;}
.y2_c00486{bottom:1016.377333pt;}
.y1_c00486{bottom:1030.989333pt;}
.h3_c00486{height:31.280681pt;}
.h2_c00486{height:32.006363pt;}
.h5_c00486{height:36.010648pt;}
.h6_c00486{height:46.518078pt;}
.h4_c00486{height:51.855535pt;}
.h0_c00486{height:1122.520000pt;}
.h1_c00486{height:1122.666667pt;}
.w0_c00486{width:793.706667pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.x4_c00486{left:113.385333pt;}
.x2_c00486{left:121.886667pt;}
.x1_c00486{left:127.796000pt;}
.x3_c00486{left:157.340000pt;}
.x5_c00486{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27235605da375c5e0501c350.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.102051;font-style:normal;font-weight:normal;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_8797d1f8573fb28b2495c69c.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.048828;font-style:normal;font-weight:normal;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_9f78eacea816ec978a1d255c.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_1d6b4e807151a0a27a5c13c7.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls4_c00487{letter-spacing:0.000000px;}
.ls1_c00487{letter-spacing:0.087998px;}
.ls2_c00487{letter-spacing:0.098482px;}
.ls0_c00487{letter-spacing:0.104482px;}
.ls3_c00487{letter-spacing:26.690482px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00487{word-spacing:-33.713438px;}
.ws5_c00487{word-spacing:-26.575517px;}
.ws4_c00487{word-spacing:-26.487518px;}
.ws1_c00487{word-spacing:-18.769538px;}
.ws0_c00487{word-spacing:-12.074671px;}
.ws9_c00487{word-spacing:0.000000px;}
.ws6_c00487{word-spacing:0.043999px;}
.wsc_c00487{word-spacing:0.056767px;}
.wsa_c00487{word-spacing:0.073250px;}
.wse_c00487{word-spacing:0.083734px;}
.ws3_c00487{word-spacing:0.175997px;}
.wsd_c00487{word-spacing:0.202963px;}
.ws7_c00487{word-spacing:0.213446px;}
.ws8_c00487{word-spacing:0.219446px;}
.wsb_c00487{word-spacing:26.619516px;}
._4_c00487{margin-left:-2211.000050px;}
._1_c00487{margin-left:-3.825638px;}
._2_c00487{width:1.005737px;}
._0_c00487{width:40.109428px;}
._6_c00487{width:53.283031px;}
._3_c00487{width:79.858548px;}
._5_c00487{width:133.452408px;}
.fc5_c00487{color:rgb(0,0,207);}
.fc4_c00487{color:rgb(79,153,5);}
.fc3_c00487{color:rgb(207,92,0);}
.fc2_c00487{color:rgb(33,74,135);}
.fc1_c00487{color:rgb(143,89,3);}
.fc0_c00487{color:rgb(0,0,0);}
.fs2_c00487{font-size:31.015800px;}
.fs1_c00487{font-size:43.999200px;}
.fs0_c00487{font-size:59.775600px;}
.y0_c00487{bottom:0.000000px;}
.y2f_c00487{bottom:44.250000px;}
.y2e_c00487{bottom:96.919500px;}
.y2d_c00487{bottom:113.358000px;}
.y2c_c00487{bottom:129.796500px;}
.y2b_c00487{bottom:146.235000px;}
.y2a_c00487{bottom:162.673500px;}
.y29_c00487{bottom:179.112000px;}
.y28_c00487{bottom:195.550500px;}
.y27_c00487{bottom:211.989000px;}
.y26_c00487{bottom:228.427500px;}
.y25_c00487{bottom:244.866000px;}
.y24_c00487{bottom:261.304500px;}
.y23_c00487{bottom:294.180000px;}
.y22_c00487{bottom:310.618500px;}
.y21_c00487{bottom:327.057000px;}
.y20_c00487{bottom:359.934000px;}
.y1f_c00487{bottom:376.372500px;}
.y1e_c00487{bottom:392.811000px;}
.y1d_c00487{bottom:409.249500px;}
.y1c_c00487{bottom:425.688000px;}
.y1b_c00487{bottom:442.125000px;}
.y1a_c00487{bottom:458.563500px;}
.y19_c00487{bottom:507.879000px;}
.y18_c00487{bottom:524.317500px;}
.y17_c00487{bottom:540.756000px;}
.y16_c00487{bottom:557.194500px;}
.y15_c00487{bottom:573.633000px;}
.y14_c00487{bottom:590.071500px;}
.y13_c00487{bottom:606.508500px;}
.y12_c00487{bottom:622.947000px;}
.y11_c00487{bottom:639.385500px;}
.y10_c00487{bottom:655.450500px;}
.yf_c00487{bottom:671.889000px;}
.ye_c00487{bottom:688.327500px;}
.yd_c00487{bottom:704.766000px;}
.yc_c00487{bottom:721.204500px;}
.yb_c00487{bottom:737.643000px;}
.ya_c00487{bottom:754.081500px;}
.y9_c00487{bottom:770.518500px;}
.y8_c00487{bottom:803.395500px;}
.y7_c00487{bottom:819.834000px;}
.y6_c00487{bottom:869.149500px;}
.y5_c00487{bottom:885.588000px;}
.y4_c00487{bottom:901.653000px;}
.y3_c00487{bottom:1123.998000px;}
.y2_c00487{bottom:1141.930500px;}
.y1_c00487{bottom:1159.863000px;}
.h3_c00487{height:35.190766px;}
.h4_c00487{height:36.007158px;}
.h2_c00487{height:52.332837px;}
.h0_c00487{height:1262.835000px;}
.h1_c00487{height:1263.000000px;}
.w0_c00487{width:892.920000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:127.558500px;}
.x2_c00487{left:137.122500px;}
.x3_c00487{left:143.770500px;}
.x4_c00487{left:170.359500px;}
.x5_c00487{left:177.007500px;}
.x6_c00487{left:435.249000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls4_c00487{letter-spacing:0.000000pt;}
.ls1_c00487{letter-spacing:0.078221pt;}
.ls2_c00487{letter-spacing:0.087539pt;}
.ls0_c00487{letter-spacing:0.092873pt;}
.ls3_c00487{letter-spacing:23.724873pt;}
.ws2_c00487{word-spacing:-29.967501pt;}
.ws5_c00487{word-spacing:-23.622682pt;}
.ws4_c00487{word-spacing:-23.544461pt;}
.ws1_c00487{word-spacing:-16.684034pt;}
.ws0_c00487{word-spacing:-10.733041pt;}
.ws9_c00487{word-spacing:0.000000pt;}
.ws6_c00487{word-spacing:0.039110pt;}
.wsc_c00487{word-spacing:0.050460pt;}
.wsa_c00487{word-spacing:0.065111pt;}
.wse_c00487{word-spacing:0.074430pt;}
.ws3_c00487{word-spacing:0.156442pt;}
.wsd_c00487{word-spacing:0.180412pt;}
.ws7_c00487{word-spacing:0.189730pt;}
.ws8_c00487{word-spacing:0.195063pt;}
.wsb_c00487{word-spacing:23.661792pt;}
._4_c00487{margin-left:-1965.333378pt;}
._1_c00487{margin-left:-3.400567pt;}
._2_c00487{width:0.893988pt;}
._0_c00487{width:35.652825pt;}
._6_c00487{width:47.362694pt;}
._3_c00487{width:70.985376pt;}
._5_c00487{width:118.624363pt;}
.fs2_c00487{font-size:27.569600pt;}
.fs1_c00487{font-size:39.110400pt;}
.fs0_c00487{font-size:53.133867pt;}
.y0_c00487{bottom:0.000000pt;}
.y2f_c00487{bottom:39.333333pt;}
.y2e_c00487{bottom:86.150667pt;}
.y2d_c00487{bottom:100.762667pt;}
.y2c_c00487{bottom:115.374667pt;}
.y2b_c00487{bottom:129.986667pt;}
.y2a_c00487{bottom:144.598667pt;}
.y29_c00487{bottom:159.210667pt;}
.y28_c00487{bottom:173.822667pt;}
.y27_c00487{bottom:188.434667pt;}
.y26_c00487{bottom:203.046667pt;}
.y25_c00487{bottom:217.658667pt;}
.y24_c00487{bottom:232.270667pt;}
.y23_c00487{bottom:261.493333pt;}
.y22_c00487{bottom:276.105333pt;}
.y21_c00487{bottom:290.717333pt;}
.y20_c00487{bottom:319.941333pt;}
.y1f_c00487{bottom:334.553333pt;}
.y1e_c00487{bottom:349.165333pt;}
.y1d_c00487{bottom:363.777333pt;}
.y1c_c00487{bottom:378.389333pt;}
.y1b_c00487{bottom:393.000000pt;}
.y1a_c00487{bottom:407.612000pt;}
.y19_c00487{bottom:451.448000pt;}
.y18_c00487{bottom:466.060000pt;}
.y17_c00487{bottom:480.672000pt;}
.y16_c00487{bottom:495.284000pt;}
.y15_c00487{bottom:509.896000pt;}
.y14_c00487{bottom:524.508000pt;}
.y13_c00487{bottom:539.118667pt;}
.y12_c00487{bottom:553.730667pt;}
.y11_c00487{bottom:568.342667pt;}
.y10_c00487{bottom:582.622667pt;}
.yf_c00487{bottom:597.234667pt;}
.ye_c00487{bottom:611.846667pt;}
.yd_c00487{bottom:626.458667pt;}
.yc_c00487{bottom:641.070667pt;}
.yb_c00487{bottom:655.682667pt;}
.ya_c00487{bottom:670.294667pt;}
.y9_c00487{bottom:684.905333pt;}
.y8_c00487{bottom:714.129333pt;}
.y7_c00487{bottom:728.741333pt;}
.y6_c00487{bottom:772.577333pt;}
.y5_c00487{bottom:787.189333pt;}
.y4_c00487{bottom:801.469333pt;}
.y3_c00487{bottom:999.109333pt;}
.y2_c00487{bottom:1015.049333pt;}
.y1_c00487{bottom:1030.989333pt;}
.h3_c00487{height:31.280681pt;}
.h4_c00487{height:32.006363pt;}
.h2_c00487{height:46.518078pt;}
.h0_c00487{height:1122.520000pt;}
.h1_c00487{height:1122.666667pt;}
.w0_c00487{width:793.706667pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:113.385333pt;}
.x2_c00487{left:121.886667pt;}
.x3_c00487{left:127.796000pt;}
.x4_c00487{left:151.430667pt;}
.x5_c00487{left:157.340000pt;}
.x6_c00487{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12818ae040c254ef7f5c4738.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.893555;font-style:normal;font-weight:normal;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_94082c335ed4853cd09c587e.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.083496;font-style:normal;font-weight:normal;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_7329324b04fd45fa25e00f27.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:1.014648;font-style:normal;font-weight:normal;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_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;line-height:1.048828;font-style: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;}
.ls3_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.087998px;}
.ls2_c00488{letter-spacing:0.098482px;}
.ls1_c00488{letter-spacing:0.104482px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00488{word-spacing:-26.575517px;}
.wsf_c00488{word-spacing:-26.487518px;}
.wsd_c00488{word-spacing:-20.503031px;}
.wsc_c00488{word-spacing:-20.084602px;}
.ws5_c00488{word-spacing:-18.769538px;}
.wsb_c00488{word-spacing:-16.498066px;}
.ws4_c00488{word-spacing:-14.943900px;}
.wsa_c00488{word-spacing:-14.645022px;}
.ws8_c00488{word-spacing:-13.449510px;}
.ws7_c00488{word-spacing:-12.134447px;}
.ws9_c00488{word-spacing:-11.536691px;}
.ws1_c00488{word-spacing:-9.988424px;}
.ws3_c00488{word-spacing:-9.987499px;}
.ws13_c00488{word-spacing:0.000000px;}
.ws10_c00488{word-spacing:0.043999px;}
.wse_c00488{word-spacing:0.175997px;}
.ws12_c00488{word-spacing:0.213446px;}
.ws11_c00488{word-spacing:0.219446px;}
.ws6_c00488{word-spacing:3.287856px;}
.ws0_c00488{word-spacing:43.038600px;}
._9_c00488{margin-left:-4.394160px;}
._3_c00488{margin-left:-3.287658px;}
._1_c00488{margin-left:-1.075961px;}
._a_c00488{width:1.005737px;}
._0_c00488{width:19.935816px;}
._5_c00488{width:21.638767px;}
._2_c00488{width:23.192933px;}
._8_c00488{width:27.065616px;}
._7_c00488{width:32.581454px;}
._4_c00488{width:35.749848px;}
._6_c00488{width:41.245164px;}
.fc5_c00488{color:rgb(79,153,5);}
.fc3_c00488{color:rgb(33,74,135);}
.fc2_c00488{color:rgb(143,89,3);}
.fc4_c00488{color:rgb(207,92,0);}
.fc1_c00488{color:rgb(6,69,173);}
.fc0_c00488{color:rgb(0,0,0);}
.fs2_c00488{font-size:43.999200px;}
.fs1_c00488{font-size:59.775600px;}
.fs0_c00488{font-size:86.077200px;}
.y0_c00488{bottom:0.000000px;}
.y20_c00488{bottom:44.250000px;}
.y1f_c00488{bottom:82.051500px;}
.y1e_c00488{bottom:98.490000px;}
.y1d_c00488{bottom:114.927000px;}
.y1c_c00488{bottom:147.804000px;}
.y1b_c00488{bottom:164.242500px;}
.y1a_c00488{bottom:197.119500px;}
.y19_c00488{bottom:213.558000px;}
.y18_c00488{bottom:229.996500px;}
.y17_c00488{bottom:246.435000px;}
.y16_c00488{bottom:279.310500px;}
.y15_c00488{bottom:295.749000px;}
.y14_c00488{bottom:312.187500px;}
.y13_c00488{bottom:328.626000px;}
.y12_c00488{bottom:345.064500px;}
.y11_c00488{bottom:361.503000px;}
.y10_c00488{bottom:377.941500px;}
.yf_c00488{bottom:394.380000px;}
.ye_c00488{bottom:410.445000px;}
.yd_c00488{bottom:458.839500px;}
.yc_c00488{bottom:476.772000px;}
.yb_c00488{bottom:494.704500px;}
.ya_c00488{bottom:512.637000px;}
.y9_c00488{bottom:530.571000px;}
.y8_c00488{bottom:548.503500px;}
.y7_c00488{bottom:566.436000px;}
.y6_c00488{bottom:584.368500px;}
.y5_c00488{bottom:611.355000px;}
.y4_c00488{bottom:638.341500px;}
.y3_c00488{bottom:665.326500px;}
.y2_c00488{bottom:692.313000px;}
.y1_c00488{bottom:734.712000px;}
.h5_c00488{height:35.190766px;}
.h6_c00488{height:36.007158px;}
.h3_c00488{height:40.511979px;}
.h4_c00488{height:52.332837px;}
.h2_c00488{height:58.337477px;}
.h0_c00488{height:1262.835000px;}
.h1_c00488{height:1263.000000px;}
.w0_c00488{width:892.920000px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:127.558500px;}
.x2_c00488{left:137.122500px;}
.x3_c00488{left:435.249000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls3_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.078221pt;}
.ls2_c00488{letter-spacing:0.087539pt;}
.ls1_c00488{letter-spacing:0.092873pt;}
.ws2_c00488{word-spacing:-23.622682pt;}
.wsf_c00488{word-spacing:-23.544461pt;}
.wsd_c00488{word-spacing:-18.224916pt;}
.wsc_c00488{word-spacing:-17.852979pt;}
.ws5_c00488{word-spacing:-16.684034pt;}
.wsb_c00488{word-spacing:-14.664947pt;}
.ws4_c00488{word-spacing:-13.283467pt;}
.wsa_c00488{word-spacing:-13.017797pt;}
.ws8_c00488{word-spacing:-11.955120pt;}
.ws7_c00488{word-spacing:-10.786175pt;}
.ws9_c00488{word-spacing:-10.254836pt;}
.ws1_c00488{word-spacing:-8.878599pt;}
.ws3_c00488{word-spacing:-8.877777pt;}
.ws13_c00488{word-spacing:0.000000pt;}
.ws10_c00488{word-spacing:0.039110pt;}
.wse_c00488{word-spacing:0.156442pt;}
.ws12_c00488{word-spacing:0.189730pt;}
.ws11_c00488{word-spacing:0.195063pt;}
.ws6_c00488{word-spacing:2.922539pt;}
.ws0_c00488{word-spacing:38.256533pt;}
._9_c00488{margin-left:-3.905920pt;}
._3_c00488{margin-left:-2.922363pt;}
._1_c00488{margin-left:-0.956410pt;}
._a_c00488{width:0.893988pt;}
._0_c00488{width:17.720725pt;}
._5_c00488{width:19.234460pt;}
._2_c00488{width:20.615940pt;}
._8_c00488{width:24.058325pt;}
._7_c00488{width:28.961293pt;}
._4_c00488{width:31.777643pt;}
._6_c00488{width:36.662368pt;}
.fs2_c00488{font-size:39.110400pt;}
.fs1_c00488{font-size:53.133867pt;}
.fs0_c00488{font-size:76.513067pt;}
.y0_c00488{bottom:0.000000pt;}
.y20_c00488{bottom:39.333333pt;}
.y1f_c00488{bottom:72.934667pt;}
.y1e_c00488{bottom:87.546667pt;}
.y1d_c00488{bottom:102.157333pt;}
.y1c_c00488{bottom:131.381333pt;}
.y1b_c00488{bottom:145.993333pt;}
.y1a_c00488{bottom:175.217333pt;}
.y19_c00488{bottom:189.829333pt;}
.y18_c00488{bottom:204.441333pt;}
.y17_c00488{bottom:219.053333pt;}
.y16_c00488{bottom:248.276000pt;}
.y15_c00488{bottom:262.888000pt;}
.y14_c00488{bottom:277.500000pt;}
.y13_c00488{bottom:292.112000pt;}
.y12_c00488{bottom:306.724000pt;}
.y11_c00488{bottom:321.336000pt;}
.y10_c00488{bottom:335.948000pt;}
.yf_c00488{bottom:350.560000pt;}
.ye_c00488{bottom:364.840000pt;}
.yd_c00488{bottom:407.857333pt;}
.yc_c00488{bottom:423.797333pt;}
.yb_c00488{bottom:439.737333pt;}
.ya_c00488{bottom:455.677333pt;}
.y9_c00488{bottom:471.618667pt;}
.y8_c00488{bottom:487.558667pt;}
.y7_c00488{bottom:503.498667pt;}
.y6_c00488{bottom:519.438667pt;}
.y5_c00488{bottom:543.426667pt;}
.y4_c00488{bottom:567.414667pt;}
.y3_c00488{bottom:591.401333pt;}
.y2_c00488{bottom:615.389333pt;}
.y1_c00488{bottom:653.077333pt;}
.h5_c00488{height:31.280681pt;}
.h6_c00488{height:32.006363pt;}
.h3_c00488{height:36.010648pt;}
.h4_c00488{height:46.518078pt;}
.h2_c00488{height:51.855535pt;}
.h0_c00488{height:1122.520000pt;}
.h1_c00488{height:1122.666667pt;}
.w0_c00488{width:793.706667pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:113.385333pt;}
.x2_c00488{left:121.886667pt;}
.x3_c00488{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f63e9f63ceea595e989cbd0b.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.014648;font-style:normal;font-weight:normal;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_c9d50faf6072c64ca52eb58c.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.083496;font-style:normal;font-weight:normal;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_08da8a6c0e3a5325969632f6.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.048828;font-style:normal;font-weight:normal;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_38c0dcc21fd9f9bcd024aef4.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls3_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.087998px;}
.ls2_c00489{letter-spacing:0.098482px;}
.ls1_c00489{letter-spacing:0.104482px;}
.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:-26.575517px;}
.ws2_c00489{word-spacing:-26.487518px;}
.ws5_c00489{word-spacing:0.000000px;}
.ws4_c00489{word-spacing:0.043999px;}
.ws3_c00489{word-spacing:0.053933px;}
.ws8_c00489{word-spacing:0.056767px;}
.ws6_c00489{word-spacing:0.066701px;}
.ws0_c00489{word-spacing:0.175997px;}
.ws9_c00489{word-spacing:0.213446px;}
.ws7_c00489{word-spacing:0.219446px;}
._0_c00489{width:1.077888px;}
._1_c00489{width:53.547026px;}
.fc5_c00489{color:rgb(0,0,207);}
.fc4_c00489{color:rgb(79,153,5);}
.fc3_c00489{color:rgb(33,74,135);}
.fc2_c00489{color:rgb(207,92,0);}
.fc1_c00489{color:rgb(0,0,0);}
.fc0_c00489{color:rgb(143,89,3);}
.fs0_c00489{font-size:43.999200px;}
.fs1_c00489{font-size:59.775600px;}
.y0_c00489{bottom:0.000000px;}
.y32_c00489{bottom:44.250000px;}
.y31_c00489{bottom:272.191500px;}
.y30_c00489{bottom:288.630000px;}
.y2f_c00489{bottom:305.068500px;}
.y2e_c00489{bottom:321.507000px;}
.y2d_c00489{bottom:337.945500px;}
.y2c_c00489{bottom:354.384000px;}
.y2b_c00489{bottom:370.822500px;}
.y2a_c00489{bottom:387.259500px;}
.y29_c00489{bottom:403.698000px;}
.y28_c00489{bottom:420.136500px;}
.y27_c00489{bottom:436.575000px;}
.y26_c00489{bottom:469.452000px;}
.y25_c00489{bottom:485.890500px;}
.y24_c00489{bottom:502.329000px;}
.y23_c00489{bottom:535.206000px;}
.y22_c00489{bottom:551.643000px;}
.y21_c00489{bottom:568.081500px;}
.y20_c00489{bottom:584.520000px;}
.y1f_c00489{bottom:600.958500px;}
.y1e_c00489{bottom:617.397000px;}
.y1d_c00489{bottom:633.835500px;}
.y1c_c00489{bottom:650.274000px;}
.y1b_c00489{bottom:666.712500px;}
.y1a_c00489{bottom:683.151000px;}
.y19_c00489{bottom:699.589500px;}
.y18_c00489{bottom:716.028000px;}
.y17_c00489{bottom:732.465000px;}
.y16_c00489{bottom:748.903500px;}
.y15_c00489{bottom:765.342000px;}
.y14_c00489{bottom:781.780500px;}
.y13_c00489{bottom:798.219000px;}
.y12_c00489{bottom:814.657500px;}
.y11_c00489{bottom:831.096000px;}
.y10_c00489{bottom:847.534500px;}
.yf_c00489{bottom:863.973000px;}
.ye_c00489{bottom:880.411500px;}
.yd_c00489{bottom:896.848500px;}
.yc_c00489{bottom:913.287000px;}
.yb_c00489{bottom:946.164000px;}
.ya_c00489{bottom:962.602500px;}
.y9_c00489{bottom:979.041000px;}
.y8_c00489{bottom:995.479500px;}
.y7_c00489{bottom:1044.795000px;}
.y6_c00489{bottom:1061.232000px;}
.y5_c00489{bottom:1094.109000px;}
.y4_c00489{bottom:1110.547500px;}
.y3_c00489{bottom:1126.986000px;}
.y2_c00489{bottom:1143.424500px;}
.y1_c00489{bottom:1159.863000px;}
.h2_c00489{height:35.190766px;}
.h3_c00489{height:36.007158px;}
.h4_c00489{height:52.332837px;}
.h0_c00489{height:1262.835000px;}
.h1_c00489{height:1263.000000px;}
.w0_c00489{width:892.920000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:137.122500px;}
.x2_c00489{left:143.770500px;}
.x6_c00489{left:177.007500px;}
.x5_c00489{left:230.185500px;}
.x3_c00489{left:243.480000px;}
.x4_c00489{left:276.715500px;}
.x7_c00489{left:435.249000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls3_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.078221pt;}
.ls2_c00489{letter-spacing:0.087539pt;}
.ls1_c00489{letter-spacing:0.092873pt;}
.ws1_c00489{word-spacing:-23.622682pt;}
.ws2_c00489{word-spacing:-23.544461pt;}
.ws5_c00489{word-spacing:0.000000pt;}
.ws4_c00489{word-spacing:0.039110pt;}
.ws3_c00489{word-spacing:0.047940pt;}
.ws8_c00489{word-spacing:0.050460pt;}
.ws6_c00489{word-spacing:0.059290pt;}
.ws0_c00489{word-spacing:0.156442pt;}
.ws9_c00489{word-spacing:0.189730pt;}
.ws7_c00489{word-spacing:0.195063pt;}
._0_c00489{width:0.958123pt;}
._1_c00489{width:47.597357pt;}
.fs0_c00489{font-size:39.110400pt;}
.fs1_c00489{font-size:53.133867pt;}
.y0_c00489{bottom:0.000000pt;}
.y32_c00489{bottom:39.333333pt;}
.y31_c00489{bottom:241.948000pt;}
.y30_c00489{bottom:256.560000pt;}
.y2f_c00489{bottom:271.172000pt;}
.y2e_c00489{bottom:285.784000pt;}
.y2d_c00489{bottom:300.396000pt;}
.y2c_c00489{bottom:315.008000pt;}
.y2b_c00489{bottom:329.620000pt;}
.y2a_c00489{bottom:344.230667pt;}
.y29_c00489{bottom:358.842667pt;}
.y28_c00489{bottom:373.454667pt;}
.y27_c00489{bottom:388.066667pt;}
.y26_c00489{bottom:417.290667pt;}
.y25_c00489{bottom:431.902667pt;}
.y24_c00489{bottom:446.514667pt;}
.y23_c00489{bottom:475.738667pt;}
.y22_c00489{bottom:490.349333pt;}
.y21_c00489{bottom:504.961333pt;}
.y20_c00489{bottom:519.573333pt;}
.y1f_c00489{bottom:534.185333pt;}
.y1e_c00489{bottom:548.797333pt;}
.y1d_c00489{bottom:563.409333pt;}
.y1c_c00489{bottom:578.021333pt;}
.y1b_c00489{bottom:592.633333pt;}
.y1a_c00489{bottom:607.245333pt;}
.y19_c00489{bottom:621.857333pt;}
.y18_c00489{bottom:636.469333pt;}
.y17_c00489{bottom:651.080000pt;}
.y16_c00489{bottom:665.692000pt;}
.y15_c00489{bottom:680.304000pt;}
.y14_c00489{bottom:694.916000pt;}
.y13_c00489{bottom:709.528000pt;}
.y12_c00489{bottom:724.140000pt;}
.y11_c00489{bottom:738.752000pt;}
.y10_c00489{bottom:753.364000pt;}
.yf_c00489{bottom:767.976000pt;}
.ye_c00489{bottom:782.588000pt;}
.yd_c00489{bottom:797.198667pt;}
.yc_c00489{bottom:811.810667pt;}
.yb_c00489{bottom:841.034667pt;}
.ya_c00489{bottom:855.646667pt;}
.y9_c00489{bottom:870.258667pt;}
.y8_c00489{bottom:884.870667pt;}
.y7_c00489{bottom:928.706667pt;}
.y6_c00489{bottom:943.317333pt;}
.y5_c00489{bottom:972.541333pt;}
.y4_c00489{bottom:987.153333pt;}
.y3_c00489{bottom:1001.765333pt;}
.y2_c00489{bottom:1016.377333pt;}
.y1_c00489{bottom:1030.989333pt;}
.h2_c00489{height:31.280681pt;}
.h3_c00489{height:32.006363pt;}
.h4_c00489{height:46.518078pt;}
.h0_c00489{height:1122.520000pt;}
.h1_c00489{height:1122.666667pt;}
.w0_c00489{width:793.706667pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:121.886667pt;}
.x2_c00489{left:127.796000pt;}
.x6_c00489{left:157.340000pt;}
.x5_c00489{left:204.609333pt;}
.x3_c00489{left:216.426667pt;}
.x4_c00489{left:245.969333pt;}
.x7_c00489{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ef85066cf62d6c29190fffe.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:0.893555;font-style:normal;font-weight:normal;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_514f85bc13f439330779e441.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.083496;font-style:normal;font-weight:normal;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_3c0da1d87da56e6eb69596a5.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.102051;font-style:normal;font-weight:normal;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_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.048828;font-style: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;}
.ls3_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:0.087998px;}
.ls2_c00490{letter-spacing:0.098482px;}
.ls1_c00490{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00490{word-spacing:-33.713438px;}
.ws2_c00490{word-spacing:-26.575517px;}
.wse_c00490{word-spacing:-26.487518px;}
.ws9_c00490{word-spacing:-21.553319px;}
.ws8_c00490{word-spacing:-21.519216px;}
.ws5_c00490{word-spacing:-18.769538px;}
.ws7_c00490{word-spacing:-16.019861px;}
.ws4_c00490{word-spacing:-14.943900px;}
.wsa_c00490{word-spacing:-14.107042px;}
.wsb_c00490{word-spacing:-12.074671px;}
.ws1_c00490{word-spacing:-9.988424px;}
.ws3_c00490{word-spacing:-9.987499px;}
.ws6_c00490{word-spacing:-4.536144px;}
.ws12_c00490{word-spacing:0.000000px;}
.wsf_c00490{word-spacing:0.043999px;}
.ws15_c00490{word-spacing:0.056767px;}
.ws13_c00490{word-spacing:0.073250px;}
.ws14_c00490{word-spacing:0.083734px;}
.wsd_c00490{word-spacing:0.175997px;}
.ws16_c00490{word-spacing:0.202963px;}
.ws10_c00490{word-spacing:0.213446px;}
.ws11_c00490{word-spacing:0.219446px;}
.ws0_c00490{word-spacing:43.038600px;}
._4_c00490{margin-left:-3.825638px;}
._2_c00490{margin-left:-2.347817px;}
._1_c00490{margin-left:-1.075961px;}
._5_c00490{width:1.005737px;}
._0_c00490{width:19.935816px;}
._3_c00490{width:40.109428px;}
._7_c00490{width:53.283031px;}
._6_c00490{width:79.858548px;}
._8_c00490{width:133.452408px;}
.fc6_c00490{color:rgb(0,0,207);}
.fc5_c00490{color:rgb(79,153,5);}
.fc3_c00490{color:rgb(33,74,135);}
.fc2_c00490{color:rgb(143,89,3);}
.fc4_c00490{color:rgb(207,92,0);}
.fc1_c00490{color:rgb(6,69,173);}
.fc0_c00490{color:rgb(0,0,0);}
.fs2_c00490{font-size:43.999200px;}
.fs1_c00490{font-size:59.775600px;}
.fs0_c00490{font-size:86.077200px;}
.y0_c00490{bottom:0.000000px;}
.y20_c00490{bottom:44.250000px;}
.y1f_c00490{bottom:86.982000px;}
.y1e_c00490{bottom:103.420500px;}
.y1d_c00490{bottom:119.859000px;}
.y1c_c00490{bottom:136.297500px;}
.y1b_c00490{bottom:152.736000px;}
.y1a_c00490{bottom:169.174500px;}
.y19_c00490{bottom:185.613000px;}
.y18_c00490{bottom:202.051500px;}
.y17_c00490{bottom:218.490000px;}
.y16_c00490{bottom:234.927000px;}
.y15_c00490{bottom:251.365500px;}
.y14_c00490{bottom:267.804000px;}
.y13_c00490{bottom:284.242500px;}
.y12_c00490{bottom:300.681000px;}
.y11_c00490{bottom:317.119500px;}
.y10_c00490{bottom:349.996500px;}
.yf_c00490{bottom:366.435000px;}
.ye_c00490{bottom:415.749000px;}
.yd_c00490{bottom:432.187500px;}
.yc_c00490{bottom:448.252500px;}
.yb_c00490{bottom:493.890000px;}
.ya_c00490{bottom:511.822500px;}
.y9_c00490{bottom:529.756500px;}
.y8_c00490{bottom:547.689000px;}
.y7_c00490{bottom:565.621500px;}
.y6_c00490{bottom:583.554000px;}
.y5_c00490{bottom:610.633500px;}
.y4_c00490{bottom:637.714500px;}
.y3_c00490{bottom:664.794000px;}
.y2_c00490{bottom:691.873500px;}
.y1_c00490{bottom:734.407500px;}
.h5_c00490{height:35.190766px;}
.h6_c00490{height:36.007158px;}
.h3_c00490{height:40.511979px;}
.h4_c00490{height:52.332837px;}
.h2_c00490{height:58.337477px;}
.h0_c00490{height:1262.835000px;}
.h1_c00490{height:1263.000000px;}
.w0_c00490{width:892.920000px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:127.558500px;}
.x2_c00490{left:137.122500px;}
.x3_c00490{left:143.770500px;}
.x4_c00490{left:435.249000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls3_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:0.078221pt;}
.ls2_c00490{letter-spacing:0.087539pt;}
.ls1_c00490{letter-spacing:0.092873pt;}
.wsc_c00490{word-spacing:-29.967501pt;}
.ws2_c00490{word-spacing:-23.622682pt;}
.wse_c00490{word-spacing:-23.544461pt;}
.ws9_c00490{word-spacing:-19.158506pt;}
.ws8_c00490{word-spacing:-19.128192pt;}
.ws5_c00490{word-spacing:-16.684034pt;}
.ws7_c00490{word-spacing:-14.239876pt;}
.ws4_c00490{word-spacing:-13.283467pt;}
.wsa_c00490{word-spacing:-12.539593pt;}
.wsb_c00490{word-spacing:-10.733041pt;}
.ws1_c00490{word-spacing:-8.878599pt;}
.ws3_c00490{word-spacing:-8.877777pt;}
.ws6_c00490{word-spacing:-4.032128pt;}
.ws12_c00490{word-spacing:0.000000pt;}
.wsf_c00490{word-spacing:0.039110pt;}
.ws15_c00490{word-spacing:0.050460pt;}
.ws13_c00490{word-spacing:0.065111pt;}
.ws14_c00490{word-spacing:0.074430pt;}
.wsd_c00490{word-spacing:0.156442pt;}
.ws16_c00490{word-spacing:0.180412pt;}
.ws10_c00490{word-spacing:0.189730pt;}
.ws11_c00490{word-spacing:0.195063pt;}
.ws0_c00490{word-spacing:38.256533pt;}
._4_c00490{margin-left:-3.400567pt;}
._2_c00490{margin-left:-2.086948pt;}
._1_c00490{margin-left:-0.956410pt;}
._5_c00490{width:0.893988pt;}
._0_c00490{width:17.720725pt;}
._3_c00490{width:35.652825pt;}
._7_c00490{width:47.362694pt;}
._6_c00490{width:70.985376pt;}
._8_c00490{width:118.624363pt;}
.fs2_c00490{font-size:39.110400pt;}
.fs1_c00490{font-size:53.133867pt;}
.fs0_c00490{font-size:76.513067pt;}
.y0_c00490{bottom:0.000000pt;}
.y20_c00490{bottom:39.333333pt;}
.y1f_c00490{bottom:77.317333pt;}
.y1e_c00490{bottom:91.929333pt;}
.y1d_c00490{bottom:106.541333pt;}
.y1c_c00490{bottom:121.153333pt;}
.y1b_c00490{bottom:135.765333pt;}
.y1a_c00490{bottom:150.377333pt;}
.y19_c00490{bottom:164.989333pt;}
.y18_c00490{bottom:179.601333pt;}
.y17_c00490{bottom:194.213333pt;}
.y16_c00490{bottom:208.824000pt;}
.y15_c00490{bottom:223.436000pt;}
.y14_c00490{bottom:238.048000pt;}
.y13_c00490{bottom:252.660000pt;}
.y12_c00490{bottom:267.272000pt;}
.y11_c00490{bottom:281.884000pt;}
.y10_c00490{bottom:311.108000pt;}
.yf_c00490{bottom:325.720000pt;}
.ye_c00490{bottom:369.554667pt;}
.yd_c00490{bottom:384.166667pt;}
.yc_c00490{bottom:398.446667pt;}
.yb_c00490{bottom:439.013333pt;}
.ya_c00490{bottom:454.953333pt;}
.y9_c00490{bottom:470.894667pt;}
.y8_c00490{bottom:486.834667pt;}
.y7_c00490{bottom:502.774667pt;}
.y6_c00490{bottom:518.714667pt;}
.y5_c00490{bottom:542.785333pt;}
.y4_c00490{bottom:566.857333pt;}
.y3_c00490{bottom:590.928000pt;}
.y2_c00490{bottom:614.998667pt;}
.y1_c00490{bottom:652.806667pt;}
.h5_c00490{height:31.280681pt;}
.h6_c00490{height:32.006363pt;}
.h3_c00490{height:36.010648pt;}
.h4_c00490{height:46.518078pt;}
.h2_c00490{height:51.855535pt;}
.h0_c00490{height:1122.520000pt;}
.h1_c00490{height:1122.666667pt;}
.w0_c00490{width:793.706667pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:113.385333pt;}
.x2_c00490{left:121.886667pt;}
.x3_c00490{left:127.796000pt;}
.x4_c00490{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8a16c2421d5b9f94c829cb2.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.048828;font-style:normal;font-weight:normal;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_be80a46ddc128572ab643347.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.014648;font-style:normal;font-weight:normal;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_7ef85066cf62d6c29190fffe.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:0.893555;font-style:normal;font-weight:normal;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_51eff82bc1f8889cc6755d5e.woff2')format("woff");}.ff5_c00491{font-family:ff5_c00491;line-height:1.102051;font-style: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.000000px;}
.ls0_c00491{letter-spacing:0.087998px;}
.ls2_c00491{letter-spacing:0.098482px;}
.ls3_c00491{letter-spacing:0.104482px;}
.ls1_c00491{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00491{word-spacing:-26.575517px;}
.ws4_c00491{word-spacing:-26.487518px;}
.wse_c00491{word-spacing:-21.553319px;}
.wsd_c00491{word-spacing:-21.519216px;}
.wsa_c00491{word-spacing:-18.769538px;}
.wsc_c00491{word-spacing:-17.633802px;}
.ws9_c00491{word-spacing:-14.943900px;}
.wsf_c00491{word-spacing:-14.107042px;}
.ws10_c00491{word-spacing:-12.074671px;}
.ws7_c00491{word-spacing:-9.988424px;}
.ws8_c00491{word-spacing:-9.987499px;}
.wsb_c00491{word-spacing:-7.686144px;}
.ws3_c00491{word-spacing:0.000000px;}
.ws0_c00491{word-spacing:0.043999px;}
.ws5_c00491{word-spacing:0.213446px;}
.ws1_c00491{word-spacing:0.219446px;}
.ws6_c00491{word-spacing:43.038600px;}
._4_c00491{margin-left:-2.347817px;}
._3_c00491{margin-left:-1.075961px;}
._1_c00491{width:1.041538px;}
._2_c00491{width:19.935816px;}
._5_c00491{width:40.109428px;}
._0_c00491{width:53.547026px;}
.fc5_c00491{color:rgb(79,153,5);}
.fc4_c00491{color:rgb(143,89,3);}
.fc3_c00491{color:rgb(0,0,0);}
.fc6_c00491{color:rgb(6,69,173);}
.fc2_c00491{color:rgb(207,92,0);}
.fc1_c00491{color:rgb(0,0,207);}
.fc0_c00491{color:rgb(33,74,135);}
.fs0_c00491{font-size:43.999200px;}
.fs2_c00491{font-size:59.775600px;}
.fs1_c00491{font-size:86.077200px;}
.y0_c00491{bottom:0.000000px;}
.y20_c00491{bottom:44.250000px;}
.y1f_c00491{bottom:82.051500px;}
.y1e_c00491{bottom:99.984000px;}
.y1d_c00491{bottom:117.916500px;}
.y1c_c00491{bottom:135.849000px;}
.y1b_c00491{bottom:162.501000px;}
.y1a_c00491{bottom:189.151500px;}
.y19_c00491{bottom:215.802000px;}
.y18_c00491{bottom:242.454000px;}
.y17_c00491{bottom:284.478000px;}
.y16_c00491{bottom:748.903500px;}
.y15_c00491{bottom:765.342000px;}
.y14_c00491{bottom:781.780500px;}
.y13_c00491{bottom:798.219000px;}
.y12_c00491{bottom:814.657500px;}
.y11_c00491{bottom:831.096000px;}
.y10_c00491{bottom:847.534500px;}
.yf_c00491{bottom:863.973000px;}
.ye_c00491{bottom:880.411500px;}
.yd_c00491{bottom:896.848500px;}
.yc_c00491{bottom:913.287000px;}
.yb_c00491{bottom:946.164000px;}
.ya_c00491{bottom:962.602500px;}
.y9_c00491{bottom:979.041000px;}
.y8_c00491{bottom:1011.918000px;}
.y7_c00491{bottom:1028.356500px;}
.y6_c00491{bottom:1044.795000px;}
.y5_c00491{bottom:1061.232000px;}
.y4_c00491{bottom:1077.670500px;}
.y3_c00491{bottom:1094.109000px;}
.y2_c00491{bottom:1110.547500px;}
.y1_c00491{bottom:1159.863000px;}
.h3_c00491{height:35.190766px;}
.h2_c00491{height:36.007158px;}
.h5_c00491{height:40.511979px;}
.h6_c00491{height:52.332837px;}
.h4_c00491{height:58.337477px;}
.h0_c00491{height:1262.835000px;}
.h1_c00491{height:1263.000000px;}
.w0_c00491{width:892.920000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x4_c00491{left:127.558500px;}
.x2_c00491{left:137.122500px;}
.x1_c00491{left:143.770500px;}
.x3_c00491{left:177.007500px;}
.x5_c00491{left:435.249000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls4_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:0.078221pt;}
.ls2_c00491{letter-spacing:0.087539pt;}
.ls3_c00491{letter-spacing:0.092873pt;}
.ls1_c00491{letter-spacing:23.724873pt;}
.ws2_c00491{word-spacing:-23.622682pt;}
.ws4_c00491{word-spacing:-23.544461pt;}
.wse_c00491{word-spacing:-19.158506pt;}
.wsd_c00491{word-spacing:-19.128192pt;}
.wsa_c00491{word-spacing:-16.684034pt;}
.wsc_c00491{word-spacing:-15.674491pt;}
.ws9_c00491{word-spacing:-13.283467pt;}
.wsf_c00491{word-spacing:-12.539593pt;}
.ws10_c00491{word-spacing:-10.733041pt;}
.ws7_c00491{word-spacing:-8.878599pt;}
.ws8_c00491{word-spacing:-8.877777pt;}
.wsb_c00491{word-spacing:-6.832128pt;}
.ws3_c00491{word-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.039110pt;}
.ws5_c00491{word-spacing:0.189730pt;}
.ws1_c00491{word-spacing:0.195063pt;}
.ws6_c00491{word-spacing:38.256533pt;}
._4_c00491{margin-left:-2.086948pt;}
._3_c00491{margin-left:-0.956410pt;}
._1_c00491{width:0.925811pt;}
._2_c00491{width:17.720725pt;}
._5_c00491{width:35.652825pt;}
._0_c00491{width:47.597357pt;}
.fs0_c00491{font-size:39.110400pt;}
.fs2_c00491{font-size:53.133867pt;}
.fs1_c00491{font-size:76.513067pt;}
.y0_c00491{bottom:0.000000pt;}
.y20_c00491{bottom:39.333333pt;}
.y1f_c00491{bottom:72.934667pt;}
.y1e_c00491{bottom:88.874667pt;}
.y1d_c00491{bottom:104.814667pt;}
.y1c_c00491{bottom:120.754667pt;}
.y1b_c00491{bottom:144.445333pt;}
.y1a_c00491{bottom:168.134667pt;}
.y19_c00491{bottom:191.824000pt;}
.y18_c00491{bottom:215.514667pt;}
.y17_c00491{bottom:252.869333pt;}
.y16_c00491{bottom:665.692000pt;}
.y15_c00491{bottom:680.304000pt;}
.y14_c00491{bottom:694.916000pt;}
.y13_c00491{bottom:709.528000pt;}
.y12_c00491{bottom:724.140000pt;}
.y11_c00491{bottom:738.752000pt;}
.y10_c00491{bottom:753.364000pt;}
.yf_c00491{bottom:767.976000pt;}
.ye_c00491{bottom:782.588000pt;}
.yd_c00491{bottom:797.198667pt;}
.yc_c00491{bottom:811.810667pt;}
.yb_c00491{bottom:841.034667pt;}
.ya_c00491{bottom:855.646667pt;}
.y9_c00491{bottom:870.258667pt;}
.y8_c00491{bottom:899.482667pt;}
.y7_c00491{bottom:914.094667pt;}
.y6_c00491{bottom:928.706667pt;}
.y5_c00491{bottom:943.317333pt;}
.y4_c00491{bottom:957.929333pt;}
.y3_c00491{bottom:972.541333pt;}
.y2_c00491{bottom:987.153333pt;}
.y1_c00491{bottom:1030.989333pt;}
.h3_c00491{height:31.280681pt;}
.h2_c00491{height:32.006363pt;}
.h5_c00491{height:36.010648pt;}
.h6_c00491{height:46.518078pt;}
.h4_c00491{height:51.855535pt;}
.h0_c00491{height:1122.520000pt;}
.h1_c00491{height:1122.666667pt;}
.w0_c00491{width:793.706667pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x4_c00491{left:113.385333pt;}
.x2_c00491{left:121.886667pt;}
.x1_c00491{left:127.796000pt;}
.x3_c00491{left:157.340000pt;}
.x5_c00491{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d608e4c93aeef7be53d3e98.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.102051;font-style:normal;font-weight:normal;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_63b34a7cbbbabe803d668673.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.014648;font-style:normal;font-weight:normal;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_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.048828;font-style:normal;font-weight:normal;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_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls4_c00492{letter-spacing:0.000000px;}
.ls1_c00492{letter-spacing:0.087998px;}
.ls2_c00492{letter-spacing:0.098482px;}
.ls0_c00492{letter-spacing:0.104482px;}
.ls3_c00492{letter-spacing:26.690482px;}
.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:-33.713438px;}
.ws4_c00492{word-spacing:-26.575517px;}
.ws3_c00492{word-spacing:-26.487518px;}
.ws0_c00492{word-spacing:-18.769538px;}
.ws8_c00492{word-spacing:0.000000px;}
.ws5_c00492{word-spacing:0.043999px;}
.wsb_c00492{word-spacing:0.056767px;}
.ws9_c00492{word-spacing:0.073250px;}
.wsa_c00492{word-spacing:0.083734px;}
.ws2_c00492{word-spacing:0.175997px;}
.wsc_c00492{word-spacing:0.202963px;}
.ws6_c00492{word-spacing:0.213446px;}
.ws7_c00492{word-spacing:0.219446px;}
._0_c00492{margin-left:-3.825638px;}
._1_c00492{width:1.005737px;}
._3_c00492{width:53.283031px;}
._2_c00492{width:79.858548px;}
._4_c00492{width:133.452408px;}
.fc5_c00492{color:rgb(0,0,207);}
.fc4_c00492{color:rgb(79,153,5);}
.fc3_c00492{color:rgb(207,92,0);}
.fc2_c00492{color:rgb(33,74,135);}
.fc1_c00492{color:rgb(143,89,3);}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:43.999200px;}
.fs0_c00492{font-size:59.775600px;}
.y0_c00492{bottom:0.000000px;}
.y2d_c00492{bottom:44.250000px;}
.y2c_c00492{bottom:96.919500px;}
.y2b_c00492{bottom:113.358000px;}
.y2a_c00492{bottom:129.796500px;}
.y29_c00492{bottom:146.235000px;}
.y28_c00492{bottom:162.673500px;}
.y27_c00492{bottom:179.112000px;}
.y26_c00492{bottom:195.550500px;}
.y25_c00492{bottom:211.989000px;}
.y24_c00492{bottom:228.427500px;}
.y23_c00492{bottom:244.866000px;}
.y22_c00492{bottom:261.304500px;}
.y21_c00492{bottom:294.180000px;}
.y20_c00492{bottom:310.618500px;}
.y1f_c00492{bottom:327.057000px;}
.y1e_c00492{bottom:359.934000px;}
.y1d_c00492{bottom:376.372500px;}
.y1c_c00492{bottom:392.811000px;}
.y1b_c00492{bottom:409.249500px;}
.y1a_c00492{bottom:425.688000px;}
.y19_c00492{bottom:442.125000px;}
.y18_c00492{bottom:458.563500px;}
.y17_c00492{bottom:507.879000px;}
.y16_c00492{bottom:524.317500px;}
.y15_c00492{bottom:540.756000px;}
.y14_c00492{bottom:557.194500px;}
.y13_c00492{bottom:573.633000px;}
.y12_c00492{bottom:590.071500px;}
.y11_c00492{bottom:606.508500px;}
.y10_c00492{bottom:622.947000px;}
.yf_c00492{bottom:639.385500px;}
.ye_c00492{bottom:655.824000px;}
.yd_c00492{bottom:672.262500px;}
.yc_c00492{bottom:688.701000px;}
.yb_c00492{bottom:705.139500px;}
.ya_c00492{bottom:721.578000px;}
.y9_c00492{bottom:738.016500px;}
.y8_c00492{bottom:754.455000px;}
.y7_c00492{bottom:787.330500px;}
.y6_c00492{bottom:803.769000px;}
.y5_c00492{bottom:853.084500px;}
.y4_c00492{bottom:869.523000px;}
.y3_c00492{bottom:885.588000px;}
.y2_c00492{bottom:1141.930500px;}
.y1_c00492{bottom:1159.863000px;}
.h3_c00492{height:35.190766px;}
.h4_c00492{height:36.007158px;}
.h2_c00492{height:52.332837px;}
.h0_c00492{height:1262.835000px;}
.h1_c00492{height:1263.000000px;}
.w0_c00492{width:892.920000px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:127.558500px;}
.x2_c00492{left:137.122500px;}
.x3_c00492{left:143.770500px;}
.x4_c00492{left:177.007500px;}
.x5_c00492{left:435.249000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls4_c00492{letter-spacing:0.000000pt;}
.ls1_c00492{letter-spacing:0.078221pt;}
.ls2_c00492{letter-spacing:0.087539pt;}
.ls0_c00492{letter-spacing:0.092873pt;}
.ls3_c00492{letter-spacing:23.724873pt;}
.ws1_c00492{word-spacing:-29.967501pt;}
.ws4_c00492{word-spacing:-23.622682pt;}
.ws3_c00492{word-spacing:-23.544461pt;}
.ws0_c00492{word-spacing:-16.684034pt;}
.ws8_c00492{word-spacing:0.000000pt;}
.ws5_c00492{word-spacing:0.039110pt;}
.wsb_c00492{word-spacing:0.050460pt;}
.ws9_c00492{word-spacing:0.065111pt;}
.wsa_c00492{word-spacing:0.074430pt;}
.ws2_c00492{word-spacing:0.156442pt;}
.wsc_c00492{word-spacing:0.180412pt;}
.ws6_c00492{word-spacing:0.189730pt;}
.ws7_c00492{word-spacing:0.195063pt;}
._0_c00492{margin-left:-3.400567pt;}
._1_c00492{width:0.893988pt;}
._3_c00492{width:47.362694pt;}
._2_c00492{width:70.985376pt;}
._4_c00492{width:118.624363pt;}
.fs1_c00492{font-size:39.110400pt;}
.fs0_c00492{font-size:53.133867pt;}
.y0_c00492{bottom:0.000000pt;}
.y2d_c00492{bottom:39.333333pt;}
.y2c_c00492{bottom:86.150667pt;}
.y2b_c00492{bottom:100.762667pt;}
.y2a_c00492{bottom:115.374667pt;}
.y29_c00492{bottom:129.986667pt;}
.y28_c00492{bottom:144.598667pt;}
.y27_c00492{bottom:159.210667pt;}
.y26_c00492{bottom:173.822667pt;}
.y25_c00492{bottom:188.434667pt;}
.y24_c00492{bottom:203.046667pt;}
.y23_c00492{bottom:217.658667pt;}
.y22_c00492{bottom:232.270667pt;}
.y21_c00492{bottom:261.493333pt;}
.y20_c00492{bottom:276.105333pt;}
.y1f_c00492{bottom:290.717333pt;}
.y1e_c00492{bottom:319.941333pt;}
.y1d_c00492{bottom:334.553333pt;}
.y1c_c00492{bottom:349.165333pt;}
.y1b_c00492{bottom:363.777333pt;}
.y1a_c00492{bottom:378.389333pt;}
.y19_c00492{bottom:393.000000pt;}
.y18_c00492{bottom:407.612000pt;}
.y17_c00492{bottom:451.448000pt;}
.y16_c00492{bottom:466.060000pt;}
.y15_c00492{bottom:480.672000pt;}
.y14_c00492{bottom:495.284000pt;}
.y13_c00492{bottom:509.896000pt;}
.y12_c00492{bottom:524.508000pt;}
.y11_c00492{bottom:539.118667pt;}
.y10_c00492{bottom:553.730667pt;}
.yf_c00492{bottom:568.342667pt;}
.ye_c00492{bottom:582.954667pt;}
.yd_c00492{bottom:597.566667pt;}
.yc_c00492{bottom:612.178667pt;}
.yb_c00492{bottom:626.790667pt;}
.ya_c00492{bottom:641.402667pt;}
.y9_c00492{bottom:656.014667pt;}
.y8_c00492{bottom:670.626667pt;}
.y7_c00492{bottom:699.849333pt;}
.y6_c00492{bottom:714.461333pt;}
.y5_c00492{bottom:758.297333pt;}
.y4_c00492{bottom:772.909333pt;}
.y3_c00492{bottom:787.189333pt;}
.y2_c00492{bottom:1015.049333pt;}
.y1_c00492{bottom:1030.989333pt;}
.h3_c00492{height:31.280681pt;}
.h4_c00492{height:32.006363pt;}
.h2_c00492{height:46.518078pt;}
.h0_c00492{height:1122.520000pt;}
.h1_c00492{height:1122.666667pt;}
.w0_c00492{width:793.706667pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:113.385333pt;}
.x2_c00492{left:121.886667pt;}
.x3_c00492{left:127.796000pt;}
.x4_c00492{left:157.340000pt;}
.x5_c00492{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ddd0bf7161eeccbdeab336b.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:0.893555;font-style:normal;font-weight:normal;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_442787dad87ddfeb1dad2e55.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_031d58b2f8764b9fdf2be02c.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00493;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.048828;font-style: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;}
.ls3_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.087998px;}
.ls2_c00493{letter-spacing:0.098482px;}
.ls1_c00493{letter-spacing:0.104482px;}
.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;}
}
.wsc_c00493{word-spacing:-33.713438px;}
.ws2_c00493{word-spacing:-26.575517px;}
.wse_c00493{word-spacing:-26.487518px;}
.ws9_c00493{word-spacing:-21.553319px;}
.ws8_c00493{word-spacing:-21.519216px;}
.ws5_c00493{word-spacing:-18.769538px;}
.ws7_c00493{word-spacing:-17.633802px;}
.ws4_c00493{word-spacing:-14.943900px;}
.wsa_c00493{word-spacing:-14.107042px;}
.wsb_c00493{word-spacing:-12.074671px;}
.ws1_c00493{word-spacing:-9.988424px;}
.ws3_c00493{word-spacing:-9.987499px;}
.ws6_c00493{word-spacing:-7.686144px;}
.ws12_c00493{word-spacing:0.000000px;}
.wsf_c00493{word-spacing:0.043999px;}
.ws15_c00493{word-spacing:0.056767px;}
.ws13_c00493{word-spacing:0.073250px;}
.ws14_c00493{word-spacing:0.083734px;}
.wsd_c00493{word-spacing:0.175997px;}
.ws16_c00493{word-spacing:0.202963px;}
.ws10_c00493{word-spacing:0.213446px;}
.ws11_c00493{word-spacing:0.219446px;}
.ws0_c00493{word-spacing:43.038600px;}
._4_c00493{margin-left:-3.825638px;}
._2_c00493{margin-left:-2.347817px;}
._1_c00493{margin-left:-1.075961px;}
._5_c00493{width:1.005737px;}
._0_c00493{width:19.935816px;}
._3_c00493{width:40.109428px;}
._7_c00493{width:53.283031px;}
._6_c00493{width:79.858548px;}
._8_c00493{width:133.452408px;}
.fc6_c00493{color:rgb(0,0,207);}
.fc5_c00493{color:rgb(79,153,5);}
.fc3_c00493{color:rgb(33,74,135);}
.fc2_c00493{color:rgb(143,89,3);}
.fc4_c00493{color:rgb(207,92,0);}
.fc1_c00493{color:rgb(6,69,173);}
.fc0_c00493{color:rgb(0,0,0);}
.fs2_c00493{font-size:43.999200px;}
.fs1_c00493{font-size:59.775600px;}
.fs0_c00493{font-size:86.077200px;}
.y0_c00493{bottom:0.000000px;}
.y20_c00493{bottom:44.250000px;}
.y1f_c00493{bottom:86.982000px;}
.y1e_c00493{bottom:103.420500px;}
.y1d_c00493{bottom:119.859000px;}
.y1c_c00493{bottom:136.297500px;}
.y1b_c00493{bottom:152.736000px;}
.y1a_c00493{bottom:169.174500px;}
.y19_c00493{bottom:185.613000px;}
.y18_c00493{bottom:202.051500px;}
.y17_c00493{bottom:218.490000px;}
.y16_c00493{bottom:234.927000px;}
.y15_c00493{bottom:251.365500px;}
.y14_c00493{bottom:267.804000px;}
.y13_c00493{bottom:284.242500px;}
.y12_c00493{bottom:300.681000px;}
.y11_c00493{bottom:317.119500px;}
.y10_c00493{bottom:349.996500px;}
.yf_c00493{bottom:366.435000px;}
.ye_c00493{bottom:415.749000px;}
.yd_c00493{bottom:432.187500px;}
.yc_c00493{bottom:448.252500px;}
.yb_c00493{bottom:493.890000px;}
.ya_c00493{bottom:511.822500px;}
.y9_c00493{bottom:529.756500px;}
.y8_c00493{bottom:547.689000px;}
.y7_c00493{bottom:565.621500px;}
.y6_c00493{bottom:583.554000px;}
.y5_c00493{bottom:610.633500px;}
.y4_c00493{bottom:637.714500px;}
.y3_c00493{bottom:664.794000px;}
.y2_c00493{bottom:691.873500px;}
.y1_c00493{bottom:734.407500px;}
.h5_c00493{height:35.190766px;}
.h6_c00493{height:36.007158px;}
.h3_c00493{height:40.511979px;}
.h4_c00493{height:52.332837px;}
.h2_c00493{height:58.337477px;}
.h0_c00493{height:1262.835000px;}
.h1_c00493{height:1263.000000px;}
.w0_c00493{width:892.920000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:127.558500px;}
.x2_c00493{left:137.122500px;}
.x3_c00493{left:143.770500px;}
.x4_c00493{left:435.249000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls3_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.078221pt;}
.ls2_c00493{letter-spacing:0.087539pt;}
.ls1_c00493{letter-spacing:0.092873pt;}
.wsc_c00493{word-spacing:-29.967501pt;}
.ws2_c00493{word-spacing:-23.622682pt;}
.wse_c00493{word-spacing:-23.544461pt;}
.ws9_c00493{word-spacing:-19.158506pt;}
.ws8_c00493{word-spacing:-19.128192pt;}
.ws5_c00493{word-spacing:-16.684034pt;}
.ws7_c00493{word-spacing:-15.674491pt;}
.ws4_c00493{word-spacing:-13.283467pt;}
.wsa_c00493{word-spacing:-12.539593pt;}
.wsb_c00493{word-spacing:-10.733041pt;}
.ws1_c00493{word-spacing:-8.878599pt;}
.ws3_c00493{word-spacing:-8.877777pt;}
.ws6_c00493{word-spacing:-6.832128pt;}
.ws12_c00493{word-spacing:0.000000pt;}
.wsf_c00493{word-spacing:0.039110pt;}
.ws15_c00493{word-spacing:0.050460pt;}
.ws13_c00493{word-spacing:0.065111pt;}
.ws14_c00493{word-spacing:0.074430pt;}
.wsd_c00493{word-spacing:0.156442pt;}
.ws16_c00493{word-spacing:0.180412pt;}
.ws10_c00493{word-spacing:0.189730pt;}
.ws11_c00493{word-spacing:0.195063pt;}
.ws0_c00493{word-spacing:38.256533pt;}
._4_c00493{margin-left:-3.400567pt;}
._2_c00493{margin-left:-2.086948pt;}
._1_c00493{margin-left:-0.956410pt;}
._5_c00493{width:0.893988pt;}
._0_c00493{width:17.720725pt;}
._3_c00493{width:35.652825pt;}
._7_c00493{width:47.362694pt;}
._6_c00493{width:70.985376pt;}
._8_c00493{width:118.624363pt;}
.fs2_c00493{font-size:39.110400pt;}
.fs1_c00493{font-size:53.133867pt;}
.fs0_c00493{font-size:76.513067pt;}
.y0_c00493{bottom:0.000000pt;}
.y20_c00493{bottom:39.333333pt;}
.y1f_c00493{bottom:77.317333pt;}
.y1e_c00493{bottom:91.929333pt;}
.y1d_c00493{bottom:106.541333pt;}
.y1c_c00493{bottom:121.153333pt;}
.y1b_c00493{bottom:135.765333pt;}
.y1a_c00493{bottom:150.377333pt;}
.y19_c00493{bottom:164.989333pt;}
.y18_c00493{bottom:179.601333pt;}
.y17_c00493{bottom:194.213333pt;}
.y16_c00493{bottom:208.824000pt;}
.y15_c00493{bottom:223.436000pt;}
.y14_c00493{bottom:238.048000pt;}
.y13_c00493{bottom:252.660000pt;}
.y12_c00493{bottom:267.272000pt;}
.y11_c00493{bottom:281.884000pt;}
.y10_c00493{bottom:311.108000pt;}
.yf_c00493{bottom:325.720000pt;}
.ye_c00493{bottom:369.554667pt;}
.yd_c00493{bottom:384.166667pt;}
.yc_c00493{bottom:398.446667pt;}
.yb_c00493{bottom:439.013333pt;}
.ya_c00493{bottom:454.953333pt;}
.y9_c00493{bottom:470.894667pt;}
.y8_c00493{bottom:486.834667pt;}
.y7_c00493{bottom:502.774667pt;}
.y6_c00493{bottom:518.714667pt;}
.y5_c00493{bottom:542.785333pt;}
.y4_c00493{bottom:566.857333pt;}
.y3_c00493{bottom:590.928000pt;}
.y2_c00493{bottom:614.998667pt;}
.y1_c00493{bottom:652.806667pt;}
.h5_c00493{height:31.280681pt;}
.h6_c00493{height:32.006363pt;}
.h3_c00493{height:36.010648pt;}
.h4_c00493{height:46.518078pt;}
.h2_c00493{height:51.855535pt;}
.h0_c00493{height:1122.520000pt;}
.h1_c00493{height:1122.666667pt;}
.w0_c00493{width:793.706667pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:113.385333pt;}
.x2_c00493{left:121.886667pt;}
.x3_c00493{left:127.796000pt;}
.x4_c00493{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8a16c2421d5b9f94c829cb2.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.048828;font-style:normal;font-weight:normal;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_a30f32d7107aa8c2d9d4059f.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.014648;font-style:normal;font-weight:normal;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_59a4941dd34291adab83f987.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00494;src:url('chunks/assets/font_51eff82bc1f8889cc6755d5e.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.102051;font-style: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;}
.ls4_c00494{letter-spacing:0.000000px;}
.ls0_c00494{letter-spacing:0.087998px;}
.ls2_c00494{letter-spacing:0.098482px;}
.ls3_c00494{letter-spacing:0.104482px;}
.ls1_c00494{letter-spacing:26.690482px;}
.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;}
}
.ws2_c00494{word-spacing:-26.575517px;}
.ws4_c00494{word-spacing:-26.487518px;}
.wse_c00494{word-spacing:-21.553319px;}
.wsd_c00494{word-spacing:-21.519216px;}
.wsc_c00494{word-spacing:-19.247743px;}
.wsa_c00494{word-spacing:-18.769538px;}
.ws9_c00494{word-spacing:-14.943900px;}
.wsf_c00494{word-spacing:-14.107042px;}
.ws10_c00494{word-spacing:-12.074671px;}
.wsb_c00494{word-spacing:-10.230144px;}
.ws7_c00494{word-spacing:-9.988424px;}
.ws8_c00494{word-spacing:-9.987499px;}
.ws3_c00494{word-spacing:0.000000px;}
.ws0_c00494{word-spacing:0.043999px;}
.ws5_c00494{word-spacing:0.213446px;}
.ws1_c00494{word-spacing:0.219446px;}
.ws6_c00494{word-spacing:43.038600px;}
._3_c00494{margin-left:-2.347817px;}
._2_c00494{margin-left:-1.075961px;}
._0_c00494{width:1.041538px;}
._1_c00494{width:19.935816px;}
._4_c00494{width:40.109428px;}
.fc5_c00494{color:rgb(79,153,5);}
.fc4_c00494{color:rgb(143,89,3);}
.fc3_c00494{color:rgb(0,0,0);}
.fc6_c00494{color:rgb(6,69,173);}
.fc2_c00494{color:rgb(207,92,0);}
.fc1_c00494{color:rgb(0,0,207);}
.fc0_c00494{color:rgb(33,74,135);}
.fs0_c00494{font-size:43.999200px;}
.fs2_c00494{font-size:59.775600px;}
.fs1_c00494{font-size:86.077200px;}
.y0_c00494{bottom:0.000000px;}
.y20_c00494{bottom:44.250000px;}
.y1f_c00494{bottom:82.051500px;}
.y1e_c00494{bottom:99.984000px;}
.y1d_c00494{bottom:117.916500px;}
.y1c_c00494{bottom:135.849000px;}
.y1b_c00494{bottom:162.501000px;}
.y1a_c00494{bottom:189.151500px;}
.y19_c00494{bottom:215.802000px;}
.y18_c00494{bottom:242.454000px;}
.y17_c00494{bottom:284.478000px;}
.y16_c00494{bottom:748.903500px;}
.y15_c00494{bottom:765.342000px;}
.y14_c00494{bottom:781.780500px;}
.y13_c00494{bottom:798.219000px;}
.y12_c00494{bottom:814.657500px;}
.y11_c00494{bottom:831.096000px;}
.y10_c00494{bottom:847.534500px;}
.yf_c00494{bottom:863.973000px;}
.ye_c00494{bottom:880.411500px;}
.yd_c00494{bottom:896.848500px;}
.yc_c00494{bottom:913.287000px;}
.yb_c00494{bottom:946.164000px;}
.ya_c00494{bottom:962.602500px;}
.y9_c00494{bottom:979.041000px;}
.y8_c00494{bottom:1011.918000px;}
.y7_c00494{bottom:1028.356500px;}
.y6_c00494{bottom:1044.795000px;}
.y5_c00494{bottom:1061.232000px;}
.y4_c00494{bottom:1077.670500px;}
.y3_c00494{bottom:1094.109000px;}
.y2_c00494{bottom:1110.547500px;}
.y1_c00494{bottom:1159.863000px;}
.h3_c00494{height:35.190766px;}
.h2_c00494{height:36.007158px;}
.h5_c00494{height:40.511979px;}
.h6_c00494{height:52.332837px;}
.h4_c00494{height:58.337477px;}
.h0_c00494{height:1262.835000px;}
.h1_c00494{height:1263.000000px;}
.w0_c00494{width:892.920000px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.x4_c00494{left:127.558500px;}
.x2_c00494{left:137.122500px;}
.x1_c00494{left:143.770500px;}
.x3_c00494{left:177.007500px;}
.x5_c00494{left:435.249000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls4_c00494{letter-spacing:0.000000pt;}
.ls0_c00494{letter-spacing:0.078221pt;}
.ls2_c00494{letter-spacing:0.087539pt;}
.ls3_c00494{letter-spacing:0.092873pt;}
.ls1_c00494{letter-spacing:23.724873pt;}
.ws2_c00494{word-spacing:-23.622682pt;}
.ws4_c00494{word-spacing:-23.544461pt;}
.wse_c00494{word-spacing:-19.158506pt;}
.wsd_c00494{word-spacing:-19.128192pt;}
.wsc_c00494{word-spacing:-17.109105pt;}
.wsa_c00494{word-spacing:-16.684034pt;}
.ws9_c00494{word-spacing:-13.283467pt;}
.wsf_c00494{word-spacing:-12.539593pt;}
.ws10_c00494{word-spacing:-10.733041pt;}
.wsb_c00494{word-spacing:-9.093461pt;}
.ws7_c00494{word-spacing:-8.878599pt;}
.ws8_c00494{word-spacing:-8.877777pt;}
.ws3_c00494{word-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.039110pt;}
.ws5_c00494{word-spacing:0.189730pt;}
.ws1_c00494{word-spacing:0.195063pt;}
.ws6_c00494{word-spacing:38.256533pt;}
._3_c00494{margin-left:-2.086948pt;}
._2_c00494{margin-left:-0.956410pt;}
._0_c00494{width:0.925811pt;}
._1_c00494{width:17.720725pt;}
._4_c00494{width:35.652825pt;}
.fs0_c00494{font-size:39.110400pt;}
.fs2_c00494{font-size:53.133867pt;}
.fs1_c00494{font-size:76.513067pt;}
.y0_c00494{bottom:0.000000pt;}
.y20_c00494{bottom:39.333333pt;}
.y1f_c00494{bottom:72.934667pt;}
.y1e_c00494{bottom:88.874667pt;}
.y1d_c00494{bottom:104.814667pt;}
.y1c_c00494{bottom:120.754667pt;}
.y1b_c00494{bottom:144.445333pt;}
.y1a_c00494{bottom:168.134667pt;}
.y19_c00494{bottom:191.824000pt;}
.y18_c00494{bottom:215.514667pt;}
.y17_c00494{bottom:252.869333pt;}
.y16_c00494{bottom:665.692000pt;}
.y15_c00494{bottom:680.304000pt;}
.y14_c00494{bottom:694.916000pt;}
.y13_c00494{bottom:709.528000pt;}
.y12_c00494{bottom:724.140000pt;}
.y11_c00494{bottom:738.752000pt;}
.y10_c00494{bottom:753.364000pt;}
.yf_c00494{bottom:767.976000pt;}
.ye_c00494{bottom:782.588000pt;}
.yd_c00494{bottom:797.198667pt;}
.yc_c00494{bottom:811.810667pt;}
.yb_c00494{bottom:841.034667pt;}
.ya_c00494{bottom:855.646667pt;}
.y9_c00494{bottom:870.258667pt;}
.y8_c00494{bottom:899.482667pt;}
.y7_c00494{bottom:914.094667pt;}
.y6_c00494{bottom:928.706667pt;}
.y5_c00494{bottom:943.317333pt;}
.y4_c00494{bottom:957.929333pt;}
.y3_c00494{bottom:972.541333pt;}
.y2_c00494{bottom:987.153333pt;}
.y1_c00494{bottom:1030.989333pt;}
.h3_c00494{height:31.280681pt;}
.h2_c00494{height:32.006363pt;}
.h5_c00494{height:36.010648pt;}
.h6_c00494{height:46.518078pt;}
.h4_c00494{height:51.855535pt;}
.h0_c00494{height:1122.520000pt;}
.h1_c00494{height:1122.666667pt;}
.w0_c00494{width:793.706667pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.x4_c00494{left:113.385333pt;}
.x2_c00494{left:121.886667pt;}
.x1_c00494{left:127.796000pt;}
.x3_c00494{left:157.340000pt;}
.x5_c00494{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_860d6789bb1871bbda7decc2.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.102051;font-style:normal;font-weight:normal;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_fee3ba6d2df63f0256c99170.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00495;src:url('chunks/assets/font_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls4_c00495{letter-spacing:0.000000px;}
.ls1_c00495{letter-spacing:0.087998px;}
.ls2_c00495{letter-spacing:0.098482px;}
.ls0_c00495{letter-spacing:0.104482px;}
.ls3_c00495{letter-spacing:26.690482px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:-33.713438px;}
.ws4_c00495{word-spacing:-26.575517px;}
.ws3_c00495{word-spacing:-26.487518px;}
.ws0_c00495{word-spacing:-18.769538px;}
.ws8_c00495{word-spacing:0.000000px;}
.ws5_c00495{word-spacing:0.043999px;}
.wsb_c00495{word-spacing:0.056767px;}
.ws9_c00495{word-spacing:0.073250px;}
.wsa_c00495{word-spacing:0.083734px;}
.ws2_c00495{word-spacing:0.175997px;}
.wsc_c00495{word-spacing:0.202963px;}
.ws6_c00495{word-spacing:0.213446px;}
.ws7_c00495{word-spacing:0.219446px;}
._0_c00495{margin-left:-3.825638px;}
._1_c00495{width:1.005737px;}
._3_c00495{width:53.283031px;}
._2_c00495{width:79.858548px;}
._5_c00495{width:106.742059px;}
._4_c00495{width:133.452408px;}
.fc5_c00495{color:rgb(0,0,207);}
.fc4_c00495{color:rgb(79,153,5);}
.fc3_c00495{color:rgb(207,92,0);}
.fc2_c00495{color:rgb(33,74,135);}
.fc1_c00495{color:rgb(143,89,3);}
.fc0_c00495{color:rgb(0,0,0);}
.fs1_c00495{font-size:43.999200px;}
.fs0_c00495{font-size:59.775600px;}
.y0_c00495{bottom:0.000000px;}
.y2d_c00495{bottom:44.250000px;}
.y2c_c00495{bottom:96.919500px;}
.y2b_c00495{bottom:113.358000px;}
.y2a_c00495{bottom:129.796500px;}
.y29_c00495{bottom:146.235000px;}
.y28_c00495{bottom:162.673500px;}
.y27_c00495{bottom:179.112000px;}
.y26_c00495{bottom:195.550500px;}
.y25_c00495{bottom:211.989000px;}
.y24_c00495{bottom:228.427500px;}
.y23_c00495{bottom:244.866000px;}
.y22_c00495{bottom:261.304500px;}
.y21_c00495{bottom:294.180000px;}
.y20_c00495{bottom:310.618500px;}
.y1f_c00495{bottom:327.057000px;}
.y1e_c00495{bottom:359.934000px;}
.y1d_c00495{bottom:376.372500px;}
.y1c_c00495{bottom:392.811000px;}
.y1b_c00495{bottom:409.249500px;}
.y1a_c00495{bottom:425.688000px;}
.y19_c00495{bottom:442.125000px;}
.y18_c00495{bottom:458.563500px;}
.y17_c00495{bottom:507.879000px;}
.y16_c00495{bottom:524.317500px;}
.y15_c00495{bottom:540.756000px;}
.y14_c00495{bottom:557.194500px;}
.y13_c00495{bottom:573.633000px;}
.y12_c00495{bottom:590.071500px;}
.y11_c00495{bottom:606.508500px;}
.y10_c00495{bottom:622.947000px;}
.yf_c00495{bottom:639.385500px;}
.ye_c00495{bottom:655.824000px;}
.yd_c00495{bottom:672.262500px;}
.yc_c00495{bottom:688.701000px;}
.yb_c00495{bottom:705.139500px;}
.ya_c00495{bottom:721.578000px;}
.y9_c00495{bottom:738.016500px;}
.y8_c00495{bottom:754.455000px;}
.y7_c00495{bottom:787.330500px;}
.y6_c00495{bottom:803.769000px;}
.y5_c00495{bottom:853.084500px;}
.y4_c00495{bottom:869.523000px;}
.y3_c00495{bottom:885.588000px;}
.y2_c00495{bottom:1141.930500px;}
.y1_c00495{bottom:1159.863000px;}
.h3_c00495{height:35.190766px;}
.h4_c00495{height:36.007158px;}
.h2_c00495{height:52.332837px;}
.h0_c00495{height:1262.835000px;}
.h1_c00495{height:1263.000000px;}
.w0_c00495{width:892.920000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:127.558500px;}
.x2_c00495{left:137.122500px;}
.x3_c00495{left:143.770500px;}
.x4_c00495{left:177.007500px;}
.x5_c00495{left:435.249000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls4_c00495{letter-spacing:0.000000pt;}
.ls1_c00495{letter-spacing:0.078221pt;}
.ls2_c00495{letter-spacing:0.087539pt;}
.ls0_c00495{letter-spacing:0.092873pt;}
.ls3_c00495{letter-spacing:23.724873pt;}
.ws1_c00495{word-spacing:-29.967501pt;}
.ws4_c00495{word-spacing:-23.622682pt;}
.ws3_c00495{word-spacing:-23.544461pt;}
.ws0_c00495{word-spacing:-16.684034pt;}
.ws8_c00495{word-spacing:0.000000pt;}
.ws5_c00495{word-spacing:0.039110pt;}
.wsb_c00495{word-spacing:0.050460pt;}
.ws9_c00495{word-spacing:0.065111pt;}
.wsa_c00495{word-spacing:0.074430pt;}
.ws2_c00495{word-spacing:0.156442pt;}
.wsc_c00495{word-spacing:0.180412pt;}
.ws6_c00495{word-spacing:0.189730pt;}
.ws7_c00495{word-spacing:0.195063pt;}
._0_c00495{margin-left:-3.400567pt;}
._1_c00495{width:0.893988pt;}
._3_c00495{width:47.362694pt;}
._2_c00495{width:70.985376pt;}
._5_c00495{width:94.881830pt;}
._4_c00495{width:118.624363pt;}
.fs1_c00495{font-size:39.110400pt;}
.fs0_c00495{font-size:53.133867pt;}
.y0_c00495{bottom:0.000000pt;}
.y2d_c00495{bottom:39.333333pt;}
.y2c_c00495{bottom:86.150667pt;}
.y2b_c00495{bottom:100.762667pt;}
.y2a_c00495{bottom:115.374667pt;}
.y29_c00495{bottom:129.986667pt;}
.y28_c00495{bottom:144.598667pt;}
.y27_c00495{bottom:159.210667pt;}
.y26_c00495{bottom:173.822667pt;}
.y25_c00495{bottom:188.434667pt;}
.y24_c00495{bottom:203.046667pt;}
.y23_c00495{bottom:217.658667pt;}
.y22_c00495{bottom:232.270667pt;}
.y21_c00495{bottom:261.493333pt;}
.y20_c00495{bottom:276.105333pt;}
.y1f_c00495{bottom:290.717333pt;}
.y1e_c00495{bottom:319.941333pt;}
.y1d_c00495{bottom:334.553333pt;}
.y1c_c00495{bottom:349.165333pt;}
.y1b_c00495{bottom:363.777333pt;}
.y1a_c00495{bottom:378.389333pt;}
.y19_c00495{bottom:393.000000pt;}
.y18_c00495{bottom:407.612000pt;}
.y17_c00495{bottom:451.448000pt;}
.y16_c00495{bottom:466.060000pt;}
.y15_c00495{bottom:480.672000pt;}
.y14_c00495{bottom:495.284000pt;}
.y13_c00495{bottom:509.896000pt;}
.y12_c00495{bottom:524.508000pt;}
.y11_c00495{bottom:539.118667pt;}
.y10_c00495{bottom:553.730667pt;}
.yf_c00495{bottom:568.342667pt;}
.ye_c00495{bottom:582.954667pt;}
.yd_c00495{bottom:597.566667pt;}
.yc_c00495{bottom:612.178667pt;}
.yb_c00495{bottom:626.790667pt;}
.ya_c00495{bottom:641.402667pt;}
.y9_c00495{bottom:656.014667pt;}
.y8_c00495{bottom:670.626667pt;}
.y7_c00495{bottom:699.849333pt;}
.y6_c00495{bottom:714.461333pt;}
.y5_c00495{bottom:758.297333pt;}
.y4_c00495{bottom:772.909333pt;}
.y3_c00495{bottom:787.189333pt;}
.y2_c00495{bottom:1015.049333pt;}
.y1_c00495{bottom:1030.989333pt;}
.h3_c00495{height:31.280681pt;}
.h4_c00495{height:32.006363pt;}
.h2_c00495{height:46.518078pt;}
.h0_c00495{height:1122.520000pt;}
.h1_c00495{height:1122.666667pt;}
.w0_c00495{width:793.706667pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:113.385333pt;}
.x2_c00495{left:121.886667pt;}
.x3_c00495{left:127.796000pt;}
.x4_c00495{left:157.340000pt;}
.x5_c00495{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b3beef12c33cc47041b7df8.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.893555;font-style:normal;font-weight:normal;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_dfc7d75d8e9af1338c8d67dc.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.083496;font-style:normal;font-weight:normal;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_37010984d49696712d2617b0.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.102051;font-style:normal;font-weight:normal;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_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.014648;font-style:normal;font-weight:normal;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_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.048828;font-style: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.000000px;}
.ls0_c00496{letter-spacing:0.087998px;}
.ls2_c00496{letter-spacing:0.098482px;}
.ls1_c00496{letter-spacing:0.104482px;}
.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;}
}
.ws2_c00496{word-spacing:-26.575517px;}
.ws15_c00496{word-spacing:-26.487518px;}
.ws10_c00496{word-spacing:-21.758318px;}
.ws11_c00496{word-spacing:-21.698543px;}
.wse_c00496{word-spacing:-20.682358px;}
.wsf_c00496{word-spacing:-20.622582px;}
.wsa_c00496{word-spacing:-19.905275px;}
.ws6_c00496{word-spacing:-18.769538px;}
.ws13_c00496{word-spacing:-18.590212px;}
.ws12_c00496{word-spacing:-17.693578px;}
.wsb_c00496{word-spacing:-14.764573px;}
.wsc_c00496{word-spacing:-14.704798px;}
.wsd_c00496{word-spacing:-13.270183px;}
.ws5_c00496{word-spacing:-11.895344px;}
.ws9_c00496{word-spacing:-10.560144px;}
.ws1_c00496{word-spacing:-9.988424px;}
.ws3_c00496{word-spacing:-9.987499px;}
.ws4_c00496{word-spacing:-8.129482px;}
.ws8_c00496{word-spacing:-2.570351px;}
.ws19_c00496{word-spacing:0.000000px;}
.ws16_c00496{word-spacing:0.043999px;}
.ws14_c00496{word-spacing:0.175997px;}
.ws18_c00496{word-spacing:0.213446px;}
.ws17_c00496{word-spacing:0.219446px;}
.ws7_c00496{word-spacing:1.195512px;}
.ws0_c00496{word-spacing:43.038600px;}
._3_c00496{margin-left:-3.191162px;}
._2_c00496{margin-left:-1.075961px;}
._9_c00496{width:1.005737px;}
._7_c00496{width:19.705540px;}
._5_c00496{width:21.818094px;}
._8_c00496{width:23.073382px;}
._4_c00496{width:31.947598px;}
._0_c00496{width:33.707398px;}
._6_c00496{width:36.403340px;}
._1_c00496{width:52.337088px;}
.fc5_c00496{color:rgb(79,153,5);}
.fc3_c00496{color:rgb(33,74,135);}
.fc2_c00496{color:rgb(143,89,3);}
.fc4_c00496{color:rgb(207,92,0);}
.fc1_c00496{color:rgb(6,69,173);}
.fc0_c00496{color:rgb(0,0,0);}
.fs2_c00496{font-size:43.999200px;}
.fs1_c00496{font-size:59.775600px;}
.fs0_c00496{font-size:86.077200px;}
.y0_c00496{bottom:0.000000px;}
.y20_c00496{bottom:44.250000px;}
.y1f_c00496{bottom:82.051500px;}
.y1e_c00496{bottom:114.927000px;}
.y1d_c00496{bottom:131.365500px;}
.y1c_c00496{bottom:164.242500px;}
.y1b_c00496{bottom:180.681000px;}
.y1a_c00496{bottom:197.119500px;}
.y19_c00496{bottom:213.558000px;}
.y18_c00496{bottom:246.435000px;}
.y17_c00496{bottom:262.873500px;}
.y16_c00496{bottom:279.310500px;}
.y15_c00496{bottom:295.749000px;}
.y14_c00496{bottom:312.187500px;}
.y13_c00496{bottom:328.626000px;}
.y12_c00496{bottom:345.064500px;}
.y11_c00496{bottom:361.503000px;}
.y10_c00496{bottom:377.568000px;}
.yf_c00496{bottom:424.822500px;}
.ye_c00496{bottom:442.755000px;}
.yd_c00496{bottom:460.689000px;}
.yc_c00496{bottom:478.621500px;}
.yb_c00496{bottom:496.554000px;}
.ya_c00496{bottom:514.486500px;}
.y9_c00496{bottom:532.419000px;}
.y8_c00496{bottom:550.351500px;}
.y7_c00496{bottom:577.092000px;}
.y6_c00496{bottom:595.026000px;}
.y5_c00496{bottom:621.766500px;}
.y4_c00496{bottom:639.699000px;}
.y3_c00496{bottom:666.439500px;}
.y2_c00496{bottom:693.180000px;}
.y1_c00496{bottom:735.294000px;}
.h5_c00496{height:35.190766px;}
.h6_c00496{height:36.007158px;}
.h3_c00496{height:40.511979px;}
.h4_c00496{height:52.332837px;}
.h2_c00496{height:58.337477px;}
.h0_c00496{height:1262.835000px;}
.h1_c00496{height:1263.000000px;}
.w0_c00496{width:892.920000px;}
.w1_c00496{width:893.250000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:127.558500px;}
.x2_c00496{left:137.122500px;}
.x3_c00496{left:435.249000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls3_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.078221pt;}
.ls2_c00496{letter-spacing:0.087539pt;}
.ls1_c00496{letter-spacing:0.092873pt;}
.ws2_c00496{word-spacing:-23.622682pt;}
.ws15_c00496{word-spacing:-23.544461pt;}
.ws10_c00496{word-spacing:-19.340727pt;}
.ws11_c00496{word-spacing:-19.287594pt;}
.wse_c00496{word-spacing:-18.384318pt;}
.wsf_c00496{word-spacing:-18.331184pt;}
.wsa_c00496{word-spacing:-17.693578pt;}
.ws6_c00496{word-spacing:-16.684034pt;}
.ws13_c00496{word-spacing:-16.524633pt;}
.ws12_c00496{word-spacing:-15.727625pt;}
.wsb_c00496{word-spacing:-13.124065pt;}
.wsc_c00496{word-spacing:-13.070931pt;}
.wsd_c00496{word-spacing:-11.795718pt;}
.ws5_c00496{word-spacing:-10.573639pt;}
.ws9_c00496{word-spacing:-9.386795pt;}
.ws1_c00496{word-spacing:-8.878599pt;}
.ws3_c00496{word-spacing:-8.877777pt;}
.ws4_c00496{word-spacing:-7.226206pt;}
.ws8_c00496{word-spacing:-2.284756pt;}
.ws19_c00496{word-spacing:0.000000pt;}
.ws16_c00496{word-spacing:0.039110pt;}
.ws14_c00496{word-spacing:0.156442pt;}
.ws18_c00496{word-spacing:0.189730pt;}
.ws17_c00496{word-spacing:0.195063pt;}
.ws7_c00496{word-spacing:1.062677pt;}
.ws0_c00496{word-spacing:38.256533pt;}
._3_c00496{margin-left:-2.836589pt;}
._2_c00496{margin-left:-0.956410pt;}
._9_c00496{width:0.893988pt;}
._7_c00496{width:17.516035pt;}
._5_c00496{width:19.393861pt;}
._8_c00496{width:20.509673pt;}
._4_c00496{width:28.397865pt;}
._0_c00496{width:29.962131pt;}
._6_c00496{width:32.358525pt;}
._1_c00496{width:46.521856pt;}
.fs2_c00496{font-size:39.110400pt;}
.fs1_c00496{font-size:53.133867pt;}
.fs0_c00496{font-size:76.513067pt;}
.y0_c00496{bottom:0.000000pt;}
.y20_c00496{bottom:39.333333pt;}
.y1f_c00496{bottom:72.934667pt;}
.y1e_c00496{bottom:102.157333pt;}
.y1d_c00496{bottom:116.769333pt;}
.y1c_c00496{bottom:145.993333pt;}
.y1b_c00496{bottom:160.605333pt;}
.y1a_c00496{bottom:175.217333pt;}
.y19_c00496{bottom:189.829333pt;}
.y18_c00496{bottom:219.053333pt;}
.y17_c00496{bottom:233.665333pt;}
.y16_c00496{bottom:248.276000pt;}
.y15_c00496{bottom:262.888000pt;}
.y14_c00496{bottom:277.500000pt;}
.y13_c00496{bottom:292.112000pt;}
.y12_c00496{bottom:306.724000pt;}
.y11_c00496{bottom:321.336000pt;}
.y10_c00496{bottom:335.616000pt;}
.yf_c00496{bottom:377.620000pt;}
.ye_c00496{bottom:393.560000pt;}
.yd_c00496{bottom:409.501333pt;}
.yc_c00496{bottom:425.441333pt;}
.yb_c00496{bottom:441.381333pt;}
.ya_c00496{bottom:457.321333pt;}
.y9_c00496{bottom:473.261333pt;}
.y8_c00496{bottom:489.201333pt;}
.y7_c00496{bottom:512.970667pt;}
.y6_c00496{bottom:528.912000pt;}
.y5_c00496{bottom:552.681333pt;}
.y4_c00496{bottom:568.621333pt;}
.y3_c00496{bottom:592.390667pt;}
.y2_c00496{bottom:616.160000pt;}
.y1_c00496{bottom:653.594667pt;}
.h5_c00496{height:31.280681pt;}
.h6_c00496{height:32.006363pt;}
.h3_c00496{height:36.010648pt;}
.h4_c00496{height:46.518078pt;}
.h2_c00496{height:51.855535pt;}
.h0_c00496{height:1122.520000pt;}
.h1_c00496{height:1122.666667pt;}
.w0_c00496{width:793.706667pt;}
.w1_c00496{width:794.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:113.385333pt;}
.x2_c00496{left:121.886667pt;}
.x3_c00496{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_234d4303792ea0d197a8dd05.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.083496;font-style:normal;font-weight:normal;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_e762fd8bef52cd0f16f50478.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.048828;font-style:normal;font-weight:normal;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_bb961de33304a2aac4b0054f.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.014648;font-style:normal;font-weight:normal;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_cfbed60d797b49b0621a84d7.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls3_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.087998px;}
.ls1_c00497{letter-spacing:0.098482px;}
.ls2_c00497{letter-spacing:0.104482px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-26.575517px;}
.ws2_c00497{word-spacing:-26.487518px;}
.ws5_c00497{word-spacing:0.000000px;}
.ws4_c00497{word-spacing:0.043999px;}
.ws3_c00497{word-spacing:0.053933px;}
.ws6_c00497{word-spacing:0.056767px;}
.ws1_c00497{word-spacing:0.175997px;}
.ws7_c00497{word-spacing:0.213446px;}
._0_c00497{width:1.077888px;}
._1_c00497{width:106.874057px;}
.fc5_c00497{color:rgb(0,0,207);}
.fc4_c00497{color:rgb(207,92,0);}
.fc3_c00497{color:rgb(79,153,5);}
.fc2_c00497{color:rgb(33,74,135);}
.fc1_c00497{color:rgb(143,89,3);}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:43.999200px;}
.fs1_c00497{font-size:59.775600px;}
.y0_c00497{bottom:0.000000px;}
.y34_c00497{bottom:44.250000px;}
.y33_c00497{bottom:239.314500px;}
.y32_c00497{bottom:255.753000px;}
.y31_c00497{bottom:272.191500px;}
.y30_c00497{bottom:288.630000px;}
.y2f_c00497{bottom:305.068500px;}
.y2e_c00497{bottom:321.507000px;}
.y2d_c00497{bottom:337.945500px;}
.y2c_c00497{bottom:354.384000px;}
.y2b_c00497{bottom:370.822500px;}
.y2a_c00497{bottom:387.259500px;}
.y29_c00497{bottom:403.698000px;}
.y28_c00497{bottom:436.575000px;}
.y27_c00497{bottom:453.013500px;}
.y26_c00497{bottom:469.452000px;}
.y25_c00497{bottom:502.329000px;}
.y24_c00497{bottom:518.767500px;}
.y23_c00497{bottom:535.206000px;}
.y22_c00497{bottom:551.643000px;}
.y21_c00497{bottom:568.081500px;}
.y20_c00497{bottom:584.520000px;}
.y1f_c00497{bottom:600.958500px;}
.y1e_c00497{bottom:617.397000px;}
.y1d_c00497{bottom:633.835500px;}
.y1c_c00497{bottom:650.274000px;}
.y1b_c00497{bottom:666.712500px;}
.y1a_c00497{bottom:683.151000px;}
.y19_c00497{bottom:699.589500px;}
.y18_c00497{bottom:716.028000px;}
.y17_c00497{bottom:732.465000px;}
.y16_c00497{bottom:748.903500px;}
.y15_c00497{bottom:765.342000px;}
.y14_c00497{bottom:781.780500px;}
.y13_c00497{bottom:798.219000px;}
.y12_c00497{bottom:814.657500px;}
.y11_c00497{bottom:831.096000px;}
.y10_c00497{bottom:847.534500px;}
.yf_c00497{bottom:863.973000px;}
.ye_c00497{bottom:880.411500px;}
.yd_c00497{bottom:913.287000px;}
.yc_c00497{bottom:929.725500px;}
.yb_c00497{bottom:946.164000px;}
.ya_c00497{bottom:962.602500px;}
.y9_c00497{bottom:1011.918000px;}
.y8_c00497{bottom:1028.356500px;}
.y7_c00497{bottom:1061.232000px;}
.y6_c00497{bottom:1077.670500px;}
.y5_c00497{bottom:1094.109000px;}
.y4_c00497{bottom:1110.547500px;}
.y3_c00497{bottom:1126.986000px;}
.y2_c00497{bottom:1143.424500px;}
.y1_c00497{bottom:1159.863000px;}
.h3_c00497{height:35.190766px;}
.h2_c00497{height:36.007158px;}
.h4_c00497{height:52.332837px;}
.h0_c00497{height:1262.835000px;}
.h1_c00497{height:1263.000000px;}
.w0_c00497{width:892.920000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:137.122500px;}
.x2_c00497{left:143.770500px;}
.x6_c00497{left:177.007500px;}
.x5_c00497{left:230.185500px;}
.x3_c00497{left:243.480000px;}
.x4_c00497{left:276.715500px;}
.x7_c00497{left:435.249000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls3_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.078221pt;}
.ls1_c00497{letter-spacing:0.087539pt;}
.ls2_c00497{letter-spacing:0.092873pt;}
.ws0_c00497{word-spacing:-23.622682pt;}
.ws2_c00497{word-spacing:-23.544461pt;}
.ws5_c00497{word-spacing:0.000000pt;}
.ws4_c00497{word-spacing:0.039110pt;}
.ws3_c00497{word-spacing:0.047940pt;}
.ws6_c00497{word-spacing:0.050460pt;}
.ws1_c00497{word-spacing:0.156442pt;}
.ws7_c00497{word-spacing:0.189730pt;}
._0_c00497{width:0.958123pt;}
._1_c00497{width:94.999162pt;}
.fs0_c00497{font-size:39.110400pt;}
.fs1_c00497{font-size:53.133867pt;}
.y0_c00497{bottom:0.000000pt;}
.y34_c00497{bottom:39.333333pt;}
.y33_c00497{bottom:212.724000pt;}
.y32_c00497{bottom:227.336000pt;}
.y31_c00497{bottom:241.948000pt;}
.y30_c00497{bottom:256.560000pt;}
.y2f_c00497{bottom:271.172000pt;}
.y2e_c00497{bottom:285.784000pt;}
.y2d_c00497{bottom:300.396000pt;}
.y2c_c00497{bottom:315.008000pt;}
.y2b_c00497{bottom:329.620000pt;}
.y2a_c00497{bottom:344.230667pt;}
.y29_c00497{bottom:358.842667pt;}
.y28_c00497{bottom:388.066667pt;}
.y27_c00497{bottom:402.678667pt;}
.y26_c00497{bottom:417.290667pt;}
.y25_c00497{bottom:446.514667pt;}
.y24_c00497{bottom:461.126667pt;}
.y23_c00497{bottom:475.738667pt;}
.y22_c00497{bottom:490.349333pt;}
.y21_c00497{bottom:504.961333pt;}
.y20_c00497{bottom:519.573333pt;}
.y1f_c00497{bottom:534.185333pt;}
.y1e_c00497{bottom:548.797333pt;}
.y1d_c00497{bottom:563.409333pt;}
.y1c_c00497{bottom:578.021333pt;}
.y1b_c00497{bottom:592.633333pt;}
.y1a_c00497{bottom:607.245333pt;}
.y19_c00497{bottom:621.857333pt;}
.y18_c00497{bottom:636.469333pt;}
.y17_c00497{bottom:651.080000pt;}
.y16_c00497{bottom:665.692000pt;}
.y15_c00497{bottom:680.304000pt;}
.y14_c00497{bottom:694.916000pt;}
.y13_c00497{bottom:709.528000pt;}
.y12_c00497{bottom:724.140000pt;}
.y11_c00497{bottom:738.752000pt;}
.y10_c00497{bottom:753.364000pt;}
.yf_c00497{bottom:767.976000pt;}
.ye_c00497{bottom:782.588000pt;}
.yd_c00497{bottom:811.810667pt;}
.yc_c00497{bottom:826.422667pt;}
.yb_c00497{bottom:841.034667pt;}
.ya_c00497{bottom:855.646667pt;}
.y9_c00497{bottom:899.482667pt;}
.y8_c00497{bottom:914.094667pt;}
.y7_c00497{bottom:943.317333pt;}
.y6_c00497{bottom:957.929333pt;}
.y5_c00497{bottom:972.541333pt;}
.y4_c00497{bottom:987.153333pt;}
.y3_c00497{bottom:1001.765333pt;}
.y2_c00497{bottom:1016.377333pt;}
.y1_c00497{bottom:1030.989333pt;}
.h3_c00497{height:31.280681pt;}
.h2_c00497{height:32.006363pt;}
.h4_c00497{height:46.518078pt;}
.h0_c00497{height:1122.520000pt;}
.h1_c00497{height:1122.666667pt;}
.w0_c00497{width:793.706667pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:121.886667pt;}
.x2_c00497{left:127.796000pt;}
.x6_c00497{left:157.340000pt;}
.x5_c00497{left:204.609333pt;}
.x3_c00497{left:216.426667pt;}
.x4_c00497{left:245.969333pt;}
.x7_c00497{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3292bb00da36062a90617e0.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.893555;font-style:normal;font-weight:normal;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_4ac0203ddbf82f7648a636ac.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_b409bcacceb80702458d493d.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00498;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00498;src:url('chunks/assets/font_dcc0f5bca62bafb42177c711.woff2')format("woff");}.ff6_c00498{font-family:ff6_c00498;line-height:1.000000;font-style: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;}
.ls3_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.087998px;}
.ls2_c00498{letter-spacing:0.098482px;}
.ls1_c00498{letter-spacing:0.104482px;}
.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;}
}
.wsf_c00498{word-spacing:-33.713438px;}
.ws2_c00498{word-spacing:-26.575517px;}
.ws11_c00498{word-spacing:-26.487518px;}
.ws8_c00498{word-spacing:-22.475626px;}
.wsc_c00498{word-spacing:-21.553319px;}
.wsb_c00498{word-spacing:-21.519216px;}
.ws5_c00498{word-spacing:-18.829314px;}
.ws6_c00498{word-spacing:-18.769538px;}
.ws7_c00498{word-spacing:-18.709763px;}
.wsa_c00498{word-spacing:-16.019861px;}
.ws4_c00498{word-spacing:-15.003676px;}
.wsd_c00498{word-spacing:-14.107042px;}
.wse_c00498{word-spacing:-12.074671px;}
.ws1_c00498{word-spacing:-9.988424px;}
.ws3_c00498{word-spacing:-9.987499px;}
.ws9_c00498{word-spacing:-4.536144px;}
.ws15_c00498{word-spacing:0.000000px;}
.ws12_c00498{word-spacing:0.043999px;}
.ws18_c00498{word-spacing:0.056767px;}
.ws16_c00498{word-spacing:0.073250px;}
.ws10_c00498{word-spacing:0.175997px;}
.ws19_c00498{word-spacing:0.202963px;}
.ws13_c00498{word-spacing:0.213446px;}
.ws14_c00498{word-spacing:0.219446px;}
.ws17_c00498{word-spacing:26.619516px;}
.ws0_c00498{word-spacing:43.038600px;}
._8_c00498{margin-left:-2211.000050px;}
._5_c00498{margin-left:-3.825638px;}
._3_c00498{margin-left:-2.347817px;}
._2_c00498{margin-left:-1.075961px;}
._6_c00498{width:1.005737px;}
._1_c00498{width:18.116363px;}
._0_c00498{width:19.941592px;}
._4_c00498{width:40.109428px;}
._a_c00498{width:53.283031px;}
._7_c00498{width:79.858548px;}
._9_c00498{width:133.452408px;}
.fc6_c00498{color:rgb(0,0,207);}
.fc5_c00498{color:rgb(79,153,5);}
.fc3_c00498{color:rgb(33,74,135);}
.fc2_c00498{color:rgb(143,89,3);}
.fc4_c00498{color:rgb(207,92,0);}
.fc1_c00498{color:rgb(6,69,173);}
.fc0_c00498{color:rgb(0,0,0);}
.fs3_c00498{font-size:31.015800px;}
.fs2_c00498{font-size:43.999200px;}
.fs1_c00498{font-size:59.775600px;}
.fs0_c00498{font-size:86.077200px;}
.y0_c00498{bottom:0.000000px;}
.y20_c00498{bottom:44.250000px;}
.y1f_c00498{bottom:86.982000px;}
.y1e_c00498{bottom:103.420500px;}
.y1d_c00498{bottom:119.859000px;}
.y1c_c00498{bottom:136.297500px;}
.y1b_c00498{bottom:152.736000px;}
.y1a_c00498{bottom:168.801000px;}
.y19_c00498{bottom:185.239500px;}
.y18_c00498{bottom:201.678000px;}
.y17_c00498{bottom:218.115000px;}
.y16_c00498{bottom:234.553500px;}
.y15_c00498{bottom:250.992000px;}
.y14_c00498{bottom:267.430500px;}
.y13_c00498{bottom:283.869000px;}
.y12_c00498{bottom:316.746000px;}
.y11_c00498{bottom:333.184500px;}
.y10_c00498{bottom:382.500000px;}
.yf_c00498{bottom:398.937000px;}
.ye_c00498{bottom:415.002000px;}
.yd_c00498{bottom:459.912000px;}
.yc_c00498{bottom:477.844500px;}
.yb_c00498{bottom:495.777000px;}
.ya_c00498{bottom:513.711000px;}
.y9_c00498{bottom:531.643500px;}
.y8_c00498{bottom:549.576000px;}
.y7_c00498{bottom:576.429000px;}
.y6_c00498{bottom:594.361500px;}
.y5_c00498{bottom:621.214500px;}
.y4_c00498{bottom:639.147000px;}
.y3_c00498{bottom:666.001500px;}
.y2_c00498{bottom:692.854500px;}
.y1_c00498{bottom:735.079500px;}
.h5_c00498{height:35.190766px;}
.h6_c00498{height:36.007158px;}
.h3_c00498{height:40.511979px;}
.h4_c00498{height:52.332837px;}
.h2_c00498{height:58.337477px;}
.h0_c00498{height:1262.835000px;}
.h1_c00498{height:1263.000000px;}
.w0_c00498{width:892.920000px;}
.w1_c00498{width:893.250000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:127.558500px;}
.x2_c00498{left:137.122500px;}
.x3_c00498{left:143.770500px;}
.x4_c00498{left:170.359500px;}
.x5_c00498{left:435.249000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls3_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.078221pt;}
.ls2_c00498{letter-spacing:0.087539pt;}
.ls1_c00498{letter-spacing:0.092873pt;}
.wsf_c00498{word-spacing:-29.967501pt;}
.ws2_c00498{word-spacing:-23.622682pt;}
.ws11_c00498{word-spacing:-23.544461pt;}
.ws8_c00498{word-spacing:-19.978334pt;}
.wsc_c00498{word-spacing:-19.158506pt;}
.wsb_c00498{word-spacing:-19.128192pt;}
.ws5_c00498{word-spacing:-16.737168pt;}
.ws6_c00498{word-spacing:-16.684034pt;}
.ws7_c00498{word-spacing:-16.630900pt;}
.wsa_c00498{word-spacing:-14.239876pt;}
.ws4_c00498{word-spacing:-13.336601pt;}
.wsd_c00498{word-spacing:-12.539593pt;}
.wse_c00498{word-spacing:-10.733041pt;}
.ws1_c00498{word-spacing:-8.878599pt;}
.ws3_c00498{word-spacing:-8.877777pt;}
.ws9_c00498{word-spacing:-4.032128pt;}
.ws15_c00498{word-spacing:0.000000pt;}
.ws12_c00498{word-spacing:0.039110pt;}
.ws18_c00498{word-spacing:0.050460pt;}
.ws16_c00498{word-spacing:0.065111pt;}
.ws10_c00498{word-spacing:0.156442pt;}
.ws19_c00498{word-spacing:0.180412pt;}
.ws13_c00498{word-spacing:0.189730pt;}
.ws14_c00498{word-spacing:0.195063pt;}
.ws17_c00498{word-spacing:23.661792pt;}
.ws0_c00498{word-spacing:38.256533pt;}
._8_c00498{margin-left:-1965.333378pt;}
._5_c00498{margin-left:-3.400567pt;}
._3_c00498{margin-left:-2.086948pt;}
._2_c00498{margin-left:-0.956410pt;}
._6_c00498{width:0.893988pt;}
._1_c00498{width:16.103434pt;}
._0_c00498{width:17.725859pt;}
._4_c00498{width:35.652825pt;}
._a_c00498{width:47.362694pt;}
._7_c00498{width:70.985376pt;}
._9_c00498{width:118.624363pt;}
.fs3_c00498{font-size:27.569600pt;}
.fs2_c00498{font-size:39.110400pt;}
.fs1_c00498{font-size:53.133867pt;}
.fs0_c00498{font-size:76.513067pt;}
.y0_c00498{bottom:0.000000pt;}
.y20_c00498{bottom:39.333333pt;}
.y1f_c00498{bottom:77.317333pt;}
.y1e_c00498{bottom:91.929333pt;}
.y1d_c00498{bottom:106.541333pt;}
.y1c_c00498{bottom:121.153333pt;}
.y1b_c00498{bottom:135.765333pt;}
.y1a_c00498{bottom:150.045333pt;}
.y19_c00498{bottom:164.657333pt;}
.y18_c00498{bottom:179.269333pt;}
.y17_c00498{bottom:193.880000pt;}
.y16_c00498{bottom:208.492000pt;}
.y15_c00498{bottom:223.104000pt;}
.y14_c00498{bottom:237.716000pt;}
.y13_c00498{bottom:252.328000pt;}
.y12_c00498{bottom:281.552000pt;}
.y11_c00498{bottom:296.164000pt;}
.y10_c00498{bottom:340.000000pt;}
.yf_c00498{bottom:354.610667pt;}
.ye_c00498{bottom:368.890667pt;}
.yd_c00498{bottom:408.810667pt;}
.yc_c00498{bottom:424.750667pt;}
.yb_c00498{bottom:440.690667pt;}
.ya_c00498{bottom:456.632000pt;}
.y9_c00498{bottom:472.572000pt;}
.y8_c00498{bottom:488.512000pt;}
.y7_c00498{bottom:512.381333pt;}
.y6_c00498{bottom:528.321333pt;}
.y5_c00498{bottom:552.190667pt;}
.y4_c00498{bottom:568.130667pt;}
.y3_c00498{bottom:592.001333pt;}
.y2_c00498{bottom:615.870667pt;}
.y1_c00498{bottom:653.404000pt;}
.h5_c00498{height:31.280681pt;}
.h6_c00498{height:32.006363pt;}
.h3_c00498{height:36.010648pt;}
.h4_c00498{height:46.518078pt;}
.h2_c00498{height:51.855535pt;}
.h0_c00498{height:1122.520000pt;}
.h1_c00498{height:1122.666667pt;}
.w0_c00498{width:793.706667pt;}
.w1_c00498{width:794.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:113.385333pt;}
.x2_c00498{left:121.886667pt;}
.x3_c00498{left:127.796000pt;}
.x4_c00498{left:151.430667pt;}
.x5_c00498{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e03c7d5d844751edf8a4a405.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.083496;font-style:normal;font-weight:normal;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_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.048828;font-style:normal;font-weight:normal;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_54a1f2649102a5dffe0ed5ea.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.014648;font-style:normal;font-weight:normal;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_c391d20a3c0ec2b14c6af384.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00499;src:url('chunks/assets/font_1835b504f47cd44d23e05eaf.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls4_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.087998px;}
.ls1_c00499{letter-spacing:0.098482px;}
.ls3_c00499{letter-spacing:0.104482px;}
.ls2_c00499{letter-spacing:26.690482px;}
.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:-26.575517px;}
.ws6_c00499{word-spacing:-26.487518px;}
.wsc_c00499{word-spacing:-21.220338px;}
.wsd_c00499{word-spacing:-18.769538px;}
.wsb_c00499{word-spacing:-17.394700px;}
.wsf_c00499{word-spacing:-16.139412px;}
.wse_c00499{word-spacing:-12.373549px;}
.ws9_c00499{word-spacing:-9.988424px;}
.wsa_c00499{word-spacing:-9.987499px;}
.ws5_c00499{word-spacing:0.000000px;}
.ws3_c00499{word-spacing:0.043999px;}
.ws0_c00499{word-spacing:0.073250px;}
.ws2_c00499{word-spacing:0.083734px;}
.ws7_c00499{word-spacing:0.213446px;}
.ws4_c00499{word-spacing:0.219446px;}
.ws8_c00499{word-spacing:43.038600px;}
._3_c00499{width:1.171555px;}
._4_c00499{width:18.744616px;}
._5_c00499{width:25.190149px;}
._0_c00499{width:53.283031px;}
._1_c00499{width:79.858548px;}
._2_c00499{width:106.874057px;}
.fc5_c00499{color:rgb(207,92,0);}
.fc4_c00499{color:rgb(0,0,207);}
.fc3_c00499{color:rgb(143,89,3);}
.fc2_c00499{color:rgb(0,0,0);}
.fc1_c00499{color:rgb(79,153,5);}
.fc0_c00499{color:rgb(33,74,135);}
.fs0_c00499{font-size:43.999200px;}
.fs2_c00499{font-size:59.775600px;}
.fs1_c00499{font-size:86.077200px;}
.y0_c00499{bottom:0.000000px;}
.y21_c00499{bottom:44.250000px;}
.y20_c00499{bottom:82.051500px;}
.y1f_c00499{bottom:99.984000px;}
.y1e_c00499{bottom:125.949000px;}
.y1d_c00499{bottom:143.881500px;}
.y1c_c00499{bottom:169.846500px;}
.y1b_c00499{bottom:195.811500px;}
.y1a_c00499{bottom:237.148500px;}
.y19_c00499{bottom:699.589500px;}
.y18_c00499{bottom:716.028000px;}
.y17_c00499{bottom:732.465000px;}
.y16_c00499{bottom:748.903500px;}
.y15_c00499{bottom:765.342000px;}
.y14_c00499{bottom:781.780500px;}
.y13_c00499{bottom:798.219000px;}
.y12_c00499{bottom:814.657500px;}
.y11_c00499{bottom:831.096000px;}
.y10_c00499{bottom:847.534500px;}
.yf_c00499{bottom:863.973000px;}
.ye_c00499{bottom:896.848500px;}
.yd_c00499{bottom:913.287000px;}
.yc_c00499{bottom:929.725500px;}
.yb_c00499{bottom:962.602500px;}
.ya_c00499{bottom:979.041000px;}
.y9_c00499{bottom:995.479500px;}
.y8_c00499{bottom:1011.918000px;}
.y7_c00499{bottom:1028.356500px;}
.y6_c00499{bottom:1044.795000px;}
.y5_c00499{bottom:1061.232000px;}
.y4_c00499{bottom:1110.547500px;}
.y3_c00499{bottom:1126.986000px;}
.y2_c00499{bottom:1143.424500px;}
.y1_c00499{bottom:1159.863000px;}
.h3_c00499{height:35.190766px;}
.h2_c00499{height:36.007158px;}
.h5_c00499{height:40.511979px;}
.h6_c00499{height:52.332837px;}
.h4_c00499{height:58.337477px;}
.h0_c00499{height:1262.835000px;}
.h1_c00499{height:1263.000000px;}
.w0_c00499{width:892.920000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:127.558500px;}
.x2_c00499{left:137.122500px;}
.x1_c00499{left:143.770500px;}
.x3_c00499{left:177.007500px;}
.x5_c00499{left:435.249000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls4_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.078221pt;}
.ls1_c00499{letter-spacing:0.087539pt;}
.ls3_c00499{letter-spacing:0.092873pt;}
.ls2_c00499{letter-spacing:23.724873pt;}
.ws1_c00499{word-spacing:-23.622682pt;}
.ws6_c00499{word-spacing:-23.544461pt;}
.wsc_c00499{word-spacing:-18.862523pt;}
.wsd_c00499{word-spacing:-16.684034pt;}
.wsb_c00499{word-spacing:-15.461955pt;}
.wsf_c00499{word-spacing:-14.346144pt;}
.wse_c00499{word-spacing:-10.998710pt;}
.ws9_c00499{word-spacing:-8.878599pt;}
.wsa_c00499{word-spacing:-8.877777pt;}
.ws5_c00499{word-spacing:0.000000pt;}
.ws3_c00499{word-spacing:0.039110pt;}
.ws0_c00499{word-spacing:0.065111pt;}
.ws2_c00499{word-spacing:0.074430pt;}
.ws7_c00499{word-spacing:0.189730pt;}
.ws4_c00499{word-spacing:0.195063pt;}
.ws8_c00499{word-spacing:38.256533pt;}
._3_c00499{width:1.041382pt;}
._4_c00499{width:16.661881pt;}
._5_c00499{width:22.391244pt;}
._0_c00499{width:47.362694pt;}
._1_c00499{width:70.985376pt;}
._2_c00499{width:94.999162pt;}
.fs0_c00499{font-size:39.110400pt;}
.fs2_c00499{font-size:53.133867pt;}
.fs1_c00499{font-size:76.513067pt;}
.y0_c00499{bottom:0.000000pt;}
.y21_c00499{bottom:39.333333pt;}
.y20_c00499{bottom:72.934667pt;}
.y1f_c00499{bottom:88.874667pt;}
.y1e_c00499{bottom:111.954667pt;}
.y1d_c00499{bottom:127.894667pt;}
.y1c_c00499{bottom:150.974667pt;}
.y1b_c00499{bottom:174.054667pt;}
.y1a_c00499{bottom:210.798667pt;}
.y19_c00499{bottom:621.857333pt;}
.y18_c00499{bottom:636.469333pt;}
.y17_c00499{bottom:651.080000pt;}
.y16_c00499{bottom:665.692000pt;}
.y15_c00499{bottom:680.304000pt;}
.y14_c00499{bottom:694.916000pt;}
.y13_c00499{bottom:709.528000pt;}
.y12_c00499{bottom:724.140000pt;}
.y11_c00499{bottom:738.752000pt;}
.y10_c00499{bottom:753.364000pt;}
.yf_c00499{bottom:767.976000pt;}
.ye_c00499{bottom:797.198667pt;}
.yd_c00499{bottom:811.810667pt;}
.yc_c00499{bottom:826.422667pt;}
.yb_c00499{bottom:855.646667pt;}
.ya_c00499{bottom:870.258667pt;}
.y9_c00499{bottom:884.870667pt;}
.y8_c00499{bottom:899.482667pt;}
.y7_c00499{bottom:914.094667pt;}
.y6_c00499{bottom:928.706667pt;}
.y5_c00499{bottom:943.317333pt;}
.y4_c00499{bottom:987.153333pt;}
.y3_c00499{bottom:1001.765333pt;}
.y2_c00499{bottom:1016.377333pt;}
.y1_c00499{bottom:1030.989333pt;}
.h3_c00499{height:31.280681pt;}
.h2_c00499{height:32.006363pt;}
.h5_c00499{height:36.010648pt;}
.h6_c00499{height:46.518078pt;}
.h4_c00499{height:51.855535pt;}
.h0_c00499{height:1122.520000pt;}
.h1_c00499{height:1122.666667pt;}
.w0_c00499{width:793.706667pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:113.385333pt;}
.x2_c00499{left:121.886667pt;}
.x1_c00499{left:127.796000pt;}
.x3_c00499{left:157.340000pt;}
.x5_c00499{left:386.888000pt;}
}





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

.ir_c01000:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01000;src:url('chunks/assets/font_f96749920d1fffc1d0c23ab4.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01000;src:url('chunks/assets/font_af0a011d61946b9ccbb4569d.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01000;src:url('chunks/assets/font_bb521f4d9c5705917a12ebb1.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01000;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01000;src:url('chunks/assets/font_51699ab67ae0bc9a780c8500.woff2')format("woff");}.ff6_c01000{font-family:ff6_c01000;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01000{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls4_c01000{letter-spacing:0.000000px;}
.ls0_c01000{letter-spacing:0.087998px;}
.ls2_c01000{letter-spacing:0.098482px;}
.ls1_c01000{letter-spacing:0.104482px;}
.ls3_c01000{letter-spacing:26.690482px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01000{word-spacing:-33.713438px;}
.ws4_c01000{word-spacing:-26.575517px;}
.wsa_c01000{word-spacing:-26.487518px;}
.ws3_c01000{word-spacing:-21.553319px;}
.ws2_c01000{word-spacing:-21.519216px;}
.ws7_c01000{word-spacing:-18.769538px;}
.ws1_c01000{word-spacing:-17.633802px;}
.ws5_c01000{word-spacing:-14.107042px;}
.ws6_c01000{word-spacing:-12.074671px;}
.ws0_c01000{word-spacing:-7.686144px;}
.wse_c01000{word-spacing:0.000000px;}
.wsb_c01000{word-spacing:0.043999px;}
.ws11_c01000{word-spacing:0.056767px;}
.wsf_c01000{word-spacing:0.073250px;}
.ws13_c01000{word-spacing:0.083734px;}
.ws9_c01000{word-spacing:0.175997px;}
.ws12_c01000{word-spacing:0.202963px;}
.wsc_c01000{word-spacing:0.213446px;}
.wsd_c01000{word-spacing:0.219446px;}
.ws10_c01000{word-spacing:26.619516px;}
._7_c01000{margin-left:-2211.000050px;}
._4_c01000{margin-left:-3.825638px;}
._1_c01000{margin-left:-2.347817px;}
._0_c01000{margin-left:-1.075961px;}
._5_c01000{width:1.005737px;}
._2_c01000{width:20.742133px;}
._3_c01000{width:40.109428px;}
._9_c01000{width:53.283031px;}
._6_c01000{width:79.858548px;}
._8_c01000{width:133.452408px;}
.fc6_c01000{color:rgb(0,0,207);}
.fc5_c01000{color:rgb(79,153,5);}
.fc3_c01000{color:rgb(33,74,135);}
.fc2_c01000{color:rgb(143,89,3);}
.fc4_c01000{color:rgb(207,92,0);}
.fc1_c01000{color:rgb(6,69,173);}
.fc0_c01000{color:rgb(0,0,0);}
.fs2_c01000{font-size:31.015800px;}
.fs1_c01000{font-size:43.999200px;}
.fs0_c01000{font-size:59.775600px;}
.y0_c01000{bottom:0.000000px;}
.y32_c01000{bottom:44.250000px;}
.y31_c01000{bottom:96.919500px;}
.y30_c01000{bottom:113.358000px;}
.y2f_c01000{bottom:129.796500px;}
.y2e_c01000{bottom:146.235000px;}
.y2d_c01000{bottom:162.673500px;}
.y2c_c01000{bottom:179.112000px;}
.y2b_c01000{bottom:195.550500px;}
.y2a_c01000{bottom:211.989000px;}
.y29_c01000{bottom:228.427500px;}
.y28_c01000{bottom:244.866000px;}
.y27_c01000{bottom:261.304500px;}
.y26_c01000{bottom:294.180000px;}
.y25_c01000{bottom:310.618500px;}
.y24_c01000{bottom:327.057000px;}
.y23_c01000{bottom:359.934000px;}
.y22_c01000{bottom:376.372500px;}
.y21_c01000{bottom:392.811000px;}
.y20_c01000{bottom:409.249500px;}
.y1f_c01000{bottom:425.688000px;}
.y1e_c01000{bottom:442.125000px;}
.y1d_c01000{bottom:458.563500px;}
.y1c_c01000{bottom:507.879000px;}
.y1b_c01000{bottom:524.317500px;}
.y1a_c01000{bottom:540.756000px;}
.y19_c01000{bottom:557.194500px;}
.y18_c01000{bottom:573.633000px;}
.y17_c01000{bottom:590.071500px;}
.y16_c01000{bottom:606.508500px;}
.y15_c01000{bottom:622.947000px;}
.y14_c01000{bottom:639.385500px;}
.y13_c01000{bottom:655.450500px;}
.y12_c01000{bottom:671.889000px;}
.y11_c01000{bottom:688.327500px;}
.y10_c01000{bottom:704.766000px;}
.yf_c01000{bottom:721.204500px;}
.ye_c01000{bottom:737.643000px;}
.yd_c01000{bottom:754.081500px;}
.yc_c01000{bottom:770.518500px;}
.yb_c01000{bottom:803.395500px;}
.ya_c01000{bottom:819.834000px;}
.y9_c01000{bottom:869.149500px;}
.y8_c01000{bottom:885.588000px;}
.y7_c01000{bottom:901.653000px;}
.y6_c01000{bottom:1070.199000px;}
.y5_c01000{bottom:1088.131500px;}
.y4_c01000{bottom:1106.064000px;}
.y3_c01000{bottom:1123.998000px;}
.y2_c01000{bottom:1141.930500px;}
.y1_c01000{bottom:1159.863000px;}
.h3_c01000{height:35.190766px;}
.h4_c01000{height:36.007158px;}
.h2_c01000{height:52.332837px;}
.h0_c01000{height:1262.835000px;}
.h1_c01000{height:1263.000000px;}
.w0_c01000{width:892.920000px;}
.w1_c01000{width:893.250000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:127.558500px;}
.x2_c01000{left:137.122500px;}
.x3_c01000{left:143.770500px;}
.x4_c01000{left:170.359500px;}
.x5_c01000{left:177.007500px;}
.x6_c01000{left:435.249000px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls4_c01000{letter-spacing:0.000000pt;}
.ls0_c01000{letter-spacing:0.078221pt;}
.ls2_c01000{letter-spacing:0.087539pt;}
.ls1_c01000{letter-spacing:0.092873pt;}
.ls3_c01000{letter-spacing:23.724873pt;}
.ws8_c01000{word-spacing:-29.967501pt;}
.ws4_c01000{word-spacing:-23.622682pt;}
.wsa_c01000{word-spacing:-23.544461pt;}
.ws3_c01000{word-spacing:-19.158506pt;}
.ws2_c01000{word-spacing:-19.128192pt;}
.ws7_c01000{word-spacing:-16.684034pt;}
.ws1_c01000{word-spacing:-15.674491pt;}
.ws5_c01000{word-spacing:-12.539593pt;}
.ws6_c01000{word-spacing:-10.733041pt;}
.ws0_c01000{word-spacing:-6.832128pt;}
.wse_c01000{word-spacing:0.000000pt;}
.wsb_c01000{word-spacing:0.039110pt;}
.ws11_c01000{word-spacing:0.050460pt;}
.wsf_c01000{word-spacing:0.065111pt;}
.ws13_c01000{word-spacing:0.074430pt;}
.ws9_c01000{word-spacing:0.156442pt;}
.ws12_c01000{word-spacing:0.180412pt;}
.wsc_c01000{word-spacing:0.189730pt;}
.wsd_c01000{word-spacing:0.195063pt;}
.ws10_c01000{word-spacing:23.661792pt;}
._7_c01000{margin-left:-1965.333378pt;}
._4_c01000{margin-left:-3.400567pt;}
._1_c01000{margin-left:-2.086948pt;}
._0_c01000{margin-left:-0.956410pt;}
._5_c01000{width:0.893988pt;}
._2_c01000{width:18.437452pt;}
._3_c01000{width:35.652825pt;}
._9_c01000{width:47.362694pt;}
._6_c01000{width:70.985376pt;}
._8_c01000{width:118.624363pt;}
.fs2_c01000{font-size:27.569600pt;}
.fs1_c01000{font-size:39.110400pt;}
.fs0_c01000{font-size:53.133867pt;}
.y0_c01000{bottom:0.000000pt;}
.y32_c01000{bottom:39.333333pt;}
.y31_c01000{bottom:86.150667pt;}
.y30_c01000{bottom:100.762667pt;}
.y2f_c01000{bottom:115.374667pt;}
.y2e_c01000{bottom:129.986667pt;}
.y2d_c01000{bottom:144.598667pt;}
.y2c_c01000{bottom:159.210667pt;}
.y2b_c01000{bottom:173.822667pt;}
.y2a_c01000{bottom:188.434667pt;}
.y29_c01000{bottom:203.046667pt;}
.y28_c01000{bottom:217.658667pt;}
.y27_c01000{bottom:232.270667pt;}
.y26_c01000{bottom:261.493333pt;}
.y25_c01000{bottom:276.105333pt;}
.y24_c01000{bottom:290.717333pt;}
.y23_c01000{bottom:319.941333pt;}
.y22_c01000{bottom:334.553333pt;}
.y21_c01000{bottom:349.165333pt;}
.y20_c01000{bottom:363.777333pt;}
.y1f_c01000{bottom:378.389333pt;}
.y1e_c01000{bottom:393.000000pt;}
.y1d_c01000{bottom:407.612000pt;}
.y1c_c01000{bottom:451.448000pt;}
.y1b_c01000{bottom:466.060000pt;}
.y1a_c01000{bottom:480.672000pt;}
.y19_c01000{bottom:495.284000pt;}
.y18_c01000{bottom:509.896000pt;}
.y17_c01000{bottom:524.508000pt;}
.y16_c01000{bottom:539.118667pt;}
.y15_c01000{bottom:553.730667pt;}
.y14_c01000{bottom:568.342667pt;}
.y13_c01000{bottom:582.622667pt;}
.y12_c01000{bottom:597.234667pt;}
.y11_c01000{bottom:611.846667pt;}
.y10_c01000{bottom:626.458667pt;}
.yf_c01000{bottom:641.070667pt;}
.ye_c01000{bottom:655.682667pt;}
.yd_c01000{bottom:670.294667pt;}
.yc_c01000{bottom:684.905333pt;}
.yb_c01000{bottom:714.129333pt;}
.ya_c01000{bottom:728.741333pt;}
.y9_c01000{bottom:772.577333pt;}
.y8_c01000{bottom:787.189333pt;}
.y7_c01000{bottom:801.469333pt;}
.y6_c01000{bottom:951.288000pt;}
.y5_c01000{bottom:967.228000pt;}
.y4_c01000{bottom:983.168000pt;}
.y3_c01000{bottom:999.109333pt;}
.y2_c01000{bottom:1015.049333pt;}
.y1_c01000{bottom:1030.989333pt;}
.h3_c01000{height:31.280681pt;}
.h4_c01000{height:32.006363pt;}
.h2_c01000{height:46.518078pt;}
.h0_c01000{height:1122.520000pt;}
.h1_c01000{height:1122.666667pt;}
.w0_c01000{width:793.706667pt;}
.w1_c01000{width:794.000000pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:113.385333pt;}
.x2_c01000{left:121.886667pt;}
.x3_c01000{left:127.796000pt;}
.x4_c01000{left:151.430667pt;}
.x5_c01000{left:157.340000pt;}
.x6_c01000{left:386.888000pt;}
}





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

.ir_c01001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_74fd3edc9dc6e348e19e77dd.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01001;src:url('chunks/assets/font_2b12eeca8c25a3b56dc231b2.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01001;src:url('chunks/assets/font_d7e3b4d7717f3bf881984094.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01001;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01001;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01001;src:url('chunks/assets/font_5feb1f3a78abeed0ce00dc60.woff2')format("woff");}.ff6_c01001{font-family:ff6_c01001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls3_c01001{letter-spacing:0.000000px;}
.ls0_c01001{letter-spacing:0.087998px;}
.ls2_c01001{letter-spacing:0.098482px;}
.ls1_c01001{letter-spacing:0.104482px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01001{word-spacing:-33.713438px;}
.ws2_c01001{word-spacing:-26.575517px;}
.ws10_c01001{word-spacing:-26.487518px;}
.wsc_c01001{word-spacing:-21.553319px;}
.wsb_c01001{word-spacing:-21.519216px;}
.ws6_c01001{word-spacing:-18.769538px;}
.ws8_c01001{word-spacing:-17.932680px;}
.wsa_c01001{word-spacing:-17.633802px;}
.ws5_c01001{word-spacing:-15.601432px;}
.ws7_c01001{word-spacing:-14.107042px;}
.wsd_c01001{word-spacing:-12.074671px;}
.ws4_c01001{word-spacing:-11.775793px;}
.ws1_c01001{word-spacing:-9.988424px;}
.ws3_c01001{word-spacing:-9.987499px;}
.ws9_c01001{word-spacing:-7.686144px;}
.ws14_c01001{word-spacing:0.000000px;}
.ws11_c01001{word-spacing:0.043999px;}
.ws17_c01001{word-spacing:0.056767px;}
.ws15_c01001{word-spacing:0.073250px;}
.wsf_c01001{word-spacing:0.175997px;}
.ws18_c01001{word-spacing:0.202963px;}
.ws12_c01001{word-spacing:0.213446px;}
.ws13_c01001{word-spacing:0.219446px;}
.ws16_c01001{word-spacing:26.619516px;}
.ws0_c01001{word-spacing:43.038600px;}
._8_c01001{margin-left:-2211.000050px;}
._5_c01001{margin-left:-3.825638px;}
._3_c01001{margin-left:-2.347817px;}
._2_c01001{margin-left:-1.075961px;}
._6_c01001{width:1.005737px;}
._1_c01001{width:21.679642px;}
._0_c01001{width:26.277709px;}
._4_c01001{width:40.109428px;}
._a_c01001{width:53.283031px;}
._7_c01001{width:79.858548px;}
._9_c01001{width:133.452408px;}
.fc6_c01001{color:rgb(0,0,207);}
.fc5_c01001{color:rgb(79,153,5);}
.fc3_c01001{color:rgb(33,74,135);}
.fc2_c01001{color:rgb(143,89,3);}
.fc4_c01001{color:rgb(207,92,0);}
.fc1_c01001{color:rgb(6,69,173);}
.fc0_c01001{color:rgb(0,0,0);}
.fs3_c01001{font-size:31.015800px;}
.fs2_c01001{font-size:43.999200px;}
.fs1_c01001{font-size:59.775600px;}
.fs0_c01001{font-size:86.077200px;}
.y0_c01001{bottom:0.000000px;}
.y20_c01001{bottom:44.250000px;}
.y1f_c01001{bottom:86.982000px;}
.y1e_c01001{bottom:103.420500px;}
.y1d_c01001{bottom:119.859000px;}
.y1c_c01001{bottom:136.297500px;}
.y1b_c01001{bottom:152.736000px;}
.y1a_c01001{bottom:168.801000px;}
.y19_c01001{bottom:185.239500px;}
.y18_c01001{bottom:201.678000px;}
.y17_c01001{bottom:218.115000px;}
.y16_c01001{bottom:234.553500px;}
.y15_c01001{bottom:250.992000px;}
.y14_c01001{bottom:267.430500px;}
.y13_c01001{bottom:283.869000px;}
.y12_c01001{bottom:316.746000px;}
.y11_c01001{bottom:333.184500px;}
.y10_c01001{bottom:382.500000px;}
.yf_c01001{bottom:398.937000px;}
.ye_c01001{bottom:415.002000px;}
.yd_c01001{bottom:459.912000px;}
.yc_c01001{bottom:477.844500px;}
.yb_c01001{bottom:495.777000px;}
.ya_c01001{bottom:513.711000px;}
.y9_c01001{bottom:531.643500px;}
.y8_c01001{bottom:549.576000px;}
.y7_c01001{bottom:576.429000px;}
.y6_c01001{bottom:594.361500px;}
.y5_c01001{bottom:621.214500px;}
.y4_c01001{bottom:639.147000px;}
.y3_c01001{bottom:666.001500px;}
.y2_c01001{bottom:692.854500px;}
.y1_c01001{bottom:735.079500px;}
.h5_c01001{height:35.190766px;}
.h6_c01001{height:36.007158px;}
.h3_c01001{height:40.511979px;}
.h4_c01001{height:52.332837px;}
.h2_c01001{height:58.337477px;}
.h0_c01001{height:1262.835000px;}
.h1_c01001{height:1263.000000px;}
.w0_c01001{width:892.920000px;}
.w1_c01001{width:893.250000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:127.558500px;}
.x2_c01001{left:137.122500px;}
.x3_c01001{left:143.770500px;}
.x4_c01001{left:170.359500px;}
.x5_c01001{left:435.249000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls3_c01001{letter-spacing:0.000000pt;}
.ls0_c01001{letter-spacing:0.078221pt;}
.ls2_c01001{letter-spacing:0.087539pt;}
.ls1_c01001{letter-spacing:0.092873pt;}
.wse_c01001{word-spacing:-29.967501pt;}
.ws2_c01001{word-spacing:-23.622682pt;}
.ws10_c01001{word-spacing:-23.544461pt;}
.wsc_c01001{word-spacing:-19.158506pt;}
.wsb_c01001{word-spacing:-19.128192pt;}
.ws6_c01001{word-spacing:-16.684034pt;}
.ws8_c01001{word-spacing:-15.940160pt;}
.wsa_c01001{word-spacing:-15.674491pt;}
.ws5_c01001{word-spacing:-13.867939pt;}
.ws7_c01001{word-spacing:-12.539593pt;}
.wsd_c01001{word-spacing:-10.733041pt;}
.ws4_c01001{word-spacing:-10.467372pt;}
.ws1_c01001{word-spacing:-8.878599pt;}
.ws3_c01001{word-spacing:-8.877777pt;}
.ws9_c01001{word-spacing:-6.832128pt;}
.ws14_c01001{word-spacing:0.000000pt;}
.ws11_c01001{word-spacing:0.039110pt;}
.ws17_c01001{word-spacing:0.050460pt;}
.ws15_c01001{word-spacing:0.065111pt;}
.wsf_c01001{word-spacing:0.156442pt;}
.ws18_c01001{word-spacing:0.180412pt;}
.ws12_c01001{word-spacing:0.189730pt;}
.ws13_c01001{word-spacing:0.195063pt;}
.ws16_c01001{word-spacing:23.661792pt;}
.ws0_c01001{word-spacing:38.256533pt;}
._8_c01001{margin-left:-1965.333378pt;}
._5_c01001{margin-left:-3.400567pt;}
._3_c01001{margin-left:-2.086948pt;}
._2_c01001{margin-left:-0.956410pt;}
._6_c01001{width:0.893988pt;}
._1_c01001{width:19.270793pt;}
._0_c01001{width:23.357964pt;}
._4_c01001{width:35.652825pt;}
._a_c01001{width:47.362694pt;}
._7_c01001{width:70.985376pt;}
._9_c01001{width:118.624363pt;}
.fs3_c01001{font-size:27.569600pt;}
.fs2_c01001{font-size:39.110400pt;}
.fs1_c01001{font-size:53.133867pt;}
.fs0_c01001{font-size:76.513067pt;}
.y0_c01001{bottom:0.000000pt;}
.y20_c01001{bottom:39.333333pt;}
.y1f_c01001{bottom:77.317333pt;}
.y1e_c01001{bottom:91.929333pt;}
.y1d_c01001{bottom:106.541333pt;}
.y1c_c01001{bottom:121.153333pt;}
.y1b_c01001{bottom:135.765333pt;}
.y1a_c01001{bottom:150.045333pt;}
.y19_c01001{bottom:164.657333pt;}
.y18_c01001{bottom:179.269333pt;}
.y17_c01001{bottom:193.880000pt;}
.y16_c01001{bottom:208.492000pt;}
.y15_c01001{bottom:223.104000pt;}
.y14_c01001{bottom:237.716000pt;}
.y13_c01001{bottom:252.328000pt;}
.y12_c01001{bottom:281.552000pt;}
.y11_c01001{bottom:296.164000pt;}
.y10_c01001{bottom:340.000000pt;}
.yf_c01001{bottom:354.610667pt;}
.ye_c01001{bottom:368.890667pt;}
.yd_c01001{bottom:408.810667pt;}
.yc_c01001{bottom:424.750667pt;}
.yb_c01001{bottom:440.690667pt;}
.ya_c01001{bottom:456.632000pt;}
.y9_c01001{bottom:472.572000pt;}
.y8_c01001{bottom:488.512000pt;}
.y7_c01001{bottom:512.381333pt;}
.y6_c01001{bottom:528.321333pt;}
.y5_c01001{bottom:552.190667pt;}
.y4_c01001{bottom:568.130667pt;}
.y3_c01001{bottom:592.001333pt;}
.y2_c01001{bottom:615.870667pt;}
.y1_c01001{bottom:653.404000pt;}
.h5_c01001{height:31.280681pt;}
.h6_c01001{height:32.006363pt;}
.h3_c01001{height:36.010648pt;}
.h4_c01001{height:46.518078pt;}
.h2_c01001{height:51.855535pt;}
.h0_c01001{height:1122.520000pt;}
.h1_c01001{height:1122.666667pt;}
.w0_c01001{width:793.706667pt;}
.w1_c01001{width:794.000000pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:113.385333pt;}
.x2_c01001{left:121.886667pt;}
.x3_c01001{left:127.796000pt;}
.x4_c01001{left:151.430667pt;}
.x5_c01001{left:386.888000pt;}
}





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

.ir_c01002:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_f60c16c8cf41c3d9d043ebce.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01002;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01002;src:url('chunks/assets/font_ef717b2be6c129bbcb1b0de3.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01002;src:url('chunks/assets/font_86d6995eb68e9e18d528d191.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01002;src:url('chunks/assets/font_90051316c8461cb1e38dd87d.woff2')format("woff");}.ff5_c01002{font-family:ff5_c01002;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls4_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:0.087998px;}
.ls1_c01002{letter-spacing:0.098482px;}
.ls3_c01002{letter-spacing:0.104482px;}
.ls2_c01002{letter-spacing:26.690482px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01002{word-spacing:-26.575517px;}
.ws6_c01002{word-spacing:-26.487518px;}
.wsf_c01002{word-spacing:-20.921460px;}
.wsd_c01002{word-spacing:-18.769538px;}
.wsc_c01002{word-spacing:-17.753353px;}
.wse_c01002{word-spacing:-17.095822px;}
.wsb_c01002{word-spacing:-13.927715px;}
.ws9_c01002{word-spacing:-9.988424px;}
.wsa_c01002{word-spacing:-9.987499px;}
.ws5_c01002{word-spacing:0.000000px;}
.ws3_c01002{word-spacing:0.043999px;}
.ws0_c01002{word-spacing:0.073250px;}
.ws2_c01002{word-spacing:0.083734px;}
.ws7_c01002{word-spacing:0.213446px;}
.ws4_c01002{word-spacing:0.219446px;}
.ws8_c01002{word-spacing:43.038600px;}
._2_c01002{width:1.182038px;}
._4_c01002{width:18.860422px;}
._3_c01002{width:22.021631px;}
._0_c01002{width:53.283031px;}
._1_c01002{width:79.858548px;}
.fc5_c01002{color:rgb(207,92,0);}
.fc4_c01002{color:rgb(0,0,207);}
.fc3_c01002{color:rgb(143,89,3);}
.fc2_c01002{color:rgb(0,0,0);}
.fc1_c01002{color:rgb(79,153,5);}
.fc0_c01002{color:rgb(33,74,135);}
.fs0_c01002{font-size:43.999200px;}
.fs2_c01002{font-size:59.775600px;}
.fs1_c01002{font-size:86.077200px;}
.y0_c01002{bottom:0.000000px;}
.y21_c01002{bottom:44.250000px;}
.y20_c01002{bottom:82.051500px;}
.y1f_c01002{bottom:99.984000px;}
.y1e_c01002{bottom:125.949000px;}
.y1d_c01002{bottom:143.881500px;}
.y1c_c01002{bottom:169.846500px;}
.y1b_c01002{bottom:195.811500px;}
.y1a_c01002{bottom:237.148500px;}
.y19_c01002{bottom:699.589500px;}
.y18_c01002{bottom:716.028000px;}
.y17_c01002{bottom:732.465000px;}
.y16_c01002{bottom:748.903500px;}
.y15_c01002{bottom:765.342000px;}
.y14_c01002{bottom:781.780500px;}
.y13_c01002{bottom:798.219000px;}
.y12_c01002{bottom:814.657500px;}
.y11_c01002{bottom:831.096000px;}
.y10_c01002{bottom:847.534500px;}
.yf_c01002{bottom:863.973000px;}
.ye_c01002{bottom:896.848500px;}
.yd_c01002{bottom:913.287000px;}
.yc_c01002{bottom:929.725500px;}
.yb_c01002{bottom:962.602500px;}
.ya_c01002{bottom:979.041000px;}
.y9_c01002{bottom:995.479500px;}
.y8_c01002{bottom:1011.918000px;}
.y7_c01002{bottom:1028.356500px;}
.y6_c01002{bottom:1044.795000px;}
.y5_c01002{bottom:1061.232000px;}
.y4_c01002{bottom:1110.547500px;}
.y3_c01002{bottom:1126.986000px;}
.y2_c01002{bottom:1143.424500px;}
.y1_c01002{bottom:1159.863000px;}
.h3_c01002{height:35.190766px;}
.h2_c01002{height:36.007158px;}
.h5_c01002{height:40.511979px;}
.h6_c01002{height:52.332837px;}
.h4_c01002{height:58.337477px;}
.h0_c01002{height:1262.835000px;}
.h1_c01002{height:1263.000000px;}
.w0_c01002{width:892.920000px;}
.w1_c01002{width:893.250000px;}
.x0_c01002{left:0.000000px;}
.x4_c01002{left:127.558500px;}
.x2_c01002{left:137.122500px;}
.x1_c01002{left:143.770500px;}
.x3_c01002{left:177.007500px;}
.x5_c01002{left:435.249000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls4_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:0.078221pt;}
.ls1_c01002{letter-spacing:0.087539pt;}
.ls3_c01002{letter-spacing:0.092873pt;}
.ls2_c01002{letter-spacing:23.724873pt;}
.ws1_c01002{word-spacing:-23.622682pt;}
.ws6_c01002{word-spacing:-23.544461pt;}
.wsf_c01002{word-spacing:-18.596853pt;}
.wsd_c01002{word-spacing:-16.684034pt;}
.wsc_c01002{word-spacing:-15.780758pt;}
.wse_c01002{word-spacing:-15.196286pt;}
.wsb_c01002{word-spacing:-12.380191pt;}
.ws9_c01002{word-spacing:-8.878599pt;}
.wsa_c01002{word-spacing:-8.877777pt;}
.ws5_c01002{word-spacing:0.000000pt;}
.ws3_c01002{word-spacing:0.039110pt;}
.ws0_c01002{word-spacing:0.065111pt;}
.ws2_c01002{word-spacing:0.074430pt;}
.ws7_c01002{word-spacing:0.189730pt;}
.ws4_c01002{word-spacing:0.195063pt;}
.ws8_c01002{word-spacing:38.256533pt;}
._2_c01002{width:1.050701pt;}
._4_c01002{width:16.764819pt;}
._3_c01002{width:19.574783pt;}
._0_c01002{width:47.362694pt;}
._1_c01002{width:70.985376pt;}
.fs0_c01002{font-size:39.110400pt;}
.fs2_c01002{font-size:53.133867pt;}
.fs1_c01002{font-size:76.513067pt;}
.y0_c01002{bottom:0.000000pt;}
.y21_c01002{bottom:39.333333pt;}
.y20_c01002{bottom:72.934667pt;}
.y1f_c01002{bottom:88.874667pt;}
.y1e_c01002{bottom:111.954667pt;}
.y1d_c01002{bottom:127.894667pt;}
.y1c_c01002{bottom:150.974667pt;}
.y1b_c01002{bottom:174.054667pt;}
.y1a_c01002{bottom:210.798667pt;}
.y19_c01002{bottom:621.857333pt;}
.y18_c01002{bottom:636.469333pt;}
.y17_c01002{bottom:651.080000pt;}
.y16_c01002{bottom:665.692000pt;}
.y15_c01002{bottom:680.304000pt;}
.y14_c01002{bottom:694.916000pt;}
.y13_c01002{bottom:709.528000pt;}
.y12_c01002{bottom:724.140000pt;}
.y11_c01002{bottom:738.752000pt;}
.y10_c01002{bottom:753.364000pt;}
.yf_c01002{bottom:767.976000pt;}
.ye_c01002{bottom:797.198667pt;}
.yd_c01002{bottom:811.810667pt;}
.yc_c01002{bottom:826.422667pt;}
.yb_c01002{bottom:855.646667pt;}
.ya_c01002{bottom:870.258667pt;}
.y9_c01002{bottom:884.870667pt;}
.y8_c01002{bottom:899.482667pt;}
.y7_c01002{bottom:914.094667pt;}
.y6_c01002{bottom:928.706667pt;}
.y5_c01002{bottom:943.317333pt;}
.y4_c01002{bottom:987.153333pt;}
.y3_c01002{bottom:1001.765333pt;}
.y2_c01002{bottom:1016.377333pt;}
.y1_c01002{bottom:1030.989333pt;}
.h3_c01002{height:31.280681pt;}
.h2_c01002{height:32.006363pt;}
.h5_c01002{height:36.010648pt;}
.h6_c01002{height:46.518078pt;}
.h4_c01002{height:51.855535pt;}
.h0_c01002{height:1122.520000pt;}
.h1_c01002{height:1122.666667pt;}
.w0_c01002{width:793.706667pt;}
.w1_c01002{width:794.000000pt;}
.x0_c01002{left:0.000000pt;}
.x4_c01002{left:113.385333pt;}
.x2_c01002{left:121.886667pt;}
.x1_c01002{left:127.796000pt;}
.x3_c01002{left:157.340000pt;}
.x5_c01002{left:386.888000pt;}
}





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

.ir_c01003:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01003;src:url('chunks/assets/font_a2d09c55397fb840be927086.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01003;src:url('chunks/assets/font_94f49b7db074fd31020b6b27.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01003;src:url('chunks/assets/font_c132cf9109ec7142d8aeef6e.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01003;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01003{font-family:ff5_c01003;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01003;src:url('chunks/assets/font_986961b7dfd032f105443b66.woff2')format("woff");}.ff6_c01003{font-family:ff6_c01003;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01003{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls4_c01003{letter-spacing:0.000000px;}
.ls0_c01003{letter-spacing:0.087998px;}
.ls2_c01003{letter-spacing:0.098482px;}
.ls1_c01003{letter-spacing:0.104482px;}
.ls3_c01003{letter-spacing:26.690482px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01003{word-spacing:-33.713438px;}
.ws4_c01003{word-spacing:-26.575517px;}
.wsa_c01003{word-spacing:-26.487518px;}
.ws3_c01003{word-spacing:-21.553319px;}
.ws2_c01003{word-spacing:-21.519216px;}
.ws1_c01003{word-spacing:-19.247743px;}
.ws7_c01003{word-spacing:-18.769538px;}
.ws5_c01003{word-spacing:-14.107042px;}
.ws6_c01003{word-spacing:-12.074671px;}
.ws0_c01003{word-spacing:-10.230144px;}
.wse_c01003{word-spacing:0.000000px;}
.wsb_c01003{word-spacing:0.043999px;}
.ws11_c01003{word-spacing:0.056767px;}
.wsf_c01003{word-spacing:0.073250px;}
.ws13_c01003{word-spacing:0.083734px;}
.ws9_c01003{word-spacing:0.175997px;}
.ws12_c01003{word-spacing:0.202963px;}
.wsc_c01003{word-spacing:0.213446px;}
.wsd_c01003{word-spacing:0.219446px;}
.ws10_c01003{word-spacing:26.619516px;}
._7_c01003{margin-left:-2211.000050px;}
._4_c01003{margin-left:-3.825638px;}
._1_c01003{margin-left:-2.347817px;}
._0_c01003{margin-left:-1.075961px;}
._5_c01003{width:1.005737px;}
._2_c01003{width:20.742133px;}
._3_c01003{width:40.109428px;}
._9_c01003{width:53.283031px;}
._6_c01003{width:79.858548px;}
._8_c01003{width:133.452408px;}
.fc6_c01003{color:rgb(0,0,207);}
.fc5_c01003{color:rgb(79,153,5);}
.fc3_c01003{color:rgb(33,74,135);}
.fc2_c01003{color:rgb(143,89,3);}
.fc4_c01003{color:rgb(207,92,0);}
.fc1_c01003{color:rgb(6,69,173);}
.fc0_c01003{color:rgb(0,0,0);}
.fs2_c01003{font-size:31.015800px;}
.fs1_c01003{font-size:43.999200px;}
.fs0_c01003{font-size:59.775600px;}
.y0_c01003{bottom:0.000000px;}
.y32_c01003{bottom:44.250000px;}
.y31_c01003{bottom:96.919500px;}
.y30_c01003{bottom:113.358000px;}
.y2f_c01003{bottom:129.796500px;}
.y2e_c01003{bottom:146.235000px;}
.y2d_c01003{bottom:162.673500px;}
.y2c_c01003{bottom:179.112000px;}
.y2b_c01003{bottom:195.550500px;}
.y2a_c01003{bottom:211.989000px;}
.y29_c01003{bottom:228.427500px;}
.y28_c01003{bottom:244.866000px;}
.y27_c01003{bottom:261.304500px;}
.y26_c01003{bottom:294.180000px;}
.y25_c01003{bottom:310.618500px;}
.y24_c01003{bottom:327.057000px;}
.y23_c01003{bottom:359.934000px;}
.y22_c01003{bottom:376.372500px;}
.y21_c01003{bottom:392.811000px;}
.y20_c01003{bottom:409.249500px;}
.y1f_c01003{bottom:425.688000px;}
.y1e_c01003{bottom:442.125000px;}
.y1d_c01003{bottom:458.563500px;}
.y1c_c01003{bottom:507.879000px;}
.y1b_c01003{bottom:524.317500px;}
.y1a_c01003{bottom:540.756000px;}
.y19_c01003{bottom:557.194500px;}
.y18_c01003{bottom:573.633000px;}
.y17_c01003{bottom:590.071500px;}
.y16_c01003{bottom:606.508500px;}
.y15_c01003{bottom:622.947000px;}
.y14_c01003{bottom:639.385500px;}
.y13_c01003{bottom:655.450500px;}
.y12_c01003{bottom:671.889000px;}
.y11_c01003{bottom:688.327500px;}
.y10_c01003{bottom:704.766000px;}
.yf_c01003{bottom:721.204500px;}
.ye_c01003{bottom:737.643000px;}
.yd_c01003{bottom:754.081500px;}
.yc_c01003{bottom:770.518500px;}
.yb_c01003{bottom:803.395500px;}
.ya_c01003{bottom:819.834000px;}
.y9_c01003{bottom:869.149500px;}
.y8_c01003{bottom:885.588000px;}
.y7_c01003{bottom:901.653000px;}
.y6_c01003{bottom:1070.199000px;}
.y5_c01003{bottom:1088.131500px;}
.y4_c01003{bottom:1106.064000px;}
.y3_c01003{bottom:1123.998000px;}
.y2_c01003{bottom:1141.930500px;}
.y1_c01003{bottom:1159.863000px;}
.h3_c01003{height:35.190766px;}
.h4_c01003{height:36.007158px;}
.h2_c01003{height:52.332837px;}
.h0_c01003{height:1262.835000px;}
.h1_c01003{height:1263.000000px;}
.w0_c01003{width:892.920000px;}
.w1_c01003{width:893.250000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:127.558500px;}
.x2_c01003{left:137.122500px;}
.x3_c01003{left:143.770500px;}
.x4_c01003{left:170.359500px;}
.x5_c01003{left:177.007500px;}
.x6_c01003{left:435.249000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls4_c01003{letter-spacing:0.000000pt;}
.ls0_c01003{letter-spacing:0.078221pt;}
.ls2_c01003{letter-spacing:0.087539pt;}
.ls1_c01003{letter-spacing:0.092873pt;}
.ls3_c01003{letter-spacing:23.724873pt;}
.ws8_c01003{word-spacing:-29.967501pt;}
.ws4_c01003{word-spacing:-23.622682pt;}
.wsa_c01003{word-spacing:-23.544461pt;}
.ws3_c01003{word-spacing:-19.158506pt;}
.ws2_c01003{word-spacing:-19.128192pt;}
.ws1_c01003{word-spacing:-17.109105pt;}
.ws7_c01003{word-spacing:-16.684034pt;}
.ws5_c01003{word-spacing:-12.539593pt;}
.ws6_c01003{word-spacing:-10.733041pt;}
.ws0_c01003{word-spacing:-9.093461pt;}
.wse_c01003{word-spacing:0.000000pt;}
.wsb_c01003{word-spacing:0.039110pt;}
.ws11_c01003{word-spacing:0.050460pt;}
.wsf_c01003{word-spacing:0.065111pt;}
.ws13_c01003{word-spacing:0.074430pt;}
.ws9_c01003{word-spacing:0.156442pt;}
.ws12_c01003{word-spacing:0.180412pt;}
.wsc_c01003{word-spacing:0.189730pt;}
.wsd_c01003{word-spacing:0.195063pt;}
.ws10_c01003{word-spacing:23.661792pt;}
._7_c01003{margin-left:-1965.333378pt;}
._4_c01003{margin-left:-3.400567pt;}
._1_c01003{margin-left:-2.086948pt;}
._0_c01003{margin-left:-0.956410pt;}
._5_c01003{width:0.893988pt;}
._2_c01003{width:18.437452pt;}
._3_c01003{width:35.652825pt;}
._9_c01003{width:47.362694pt;}
._6_c01003{width:70.985376pt;}
._8_c01003{width:118.624363pt;}
.fs2_c01003{font-size:27.569600pt;}
.fs1_c01003{font-size:39.110400pt;}
.fs0_c01003{font-size:53.133867pt;}
.y0_c01003{bottom:0.000000pt;}
.y32_c01003{bottom:39.333333pt;}
.y31_c01003{bottom:86.150667pt;}
.y30_c01003{bottom:100.762667pt;}
.y2f_c01003{bottom:115.374667pt;}
.y2e_c01003{bottom:129.986667pt;}
.y2d_c01003{bottom:144.598667pt;}
.y2c_c01003{bottom:159.210667pt;}
.y2b_c01003{bottom:173.822667pt;}
.y2a_c01003{bottom:188.434667pt;}
.y29_c01003{bottom:203.046667pt;}
.y28_c01003{bottom:217.658667pt;}
.y27_c01003{bottom:232.270667pt;}
.y26_c01003{bottom:261.493333pt;}
.y25_c01003{bottom:276.105333pt;}
.y24_c01003{bottom:290.717333pt;}
.y23_c01003{bottom:319.941333pt;}
.y22_c01003{bottom:334.553333pt;}
.y21_c01003{bottom:349.165333pt;}
.y20_c01003{bottom:363.777333pt;}
.y1f_c01003{bottom:378.389333pt;}
.y1e_c01003{bottom:393.000000pt;}
.y1d_c01003{bottom:407.612000pt;}
.y1c_c01003{bottom:451.448000pt;}
.y1b_c01003{bottom:466.060000pt;}
.y1a_c01003{bottom:480.672000pt;}
.y19_c01003{bottom:495.284000pt;}
.y18_c01003{bottom:509.896000pt;}
.y17_c01003{bottom:524.508000pt;}
.y16_c01003{bottom:539.118667pt;}
.y15_c01003{bottom:553.730667pt;}
.y14_c01003{bottom:568.342667pt;}
.y13_c01003{bottom:582.622667pt;}
.y12_c01003{bottom:597.234667pt;}
.y11_c01003{bottom:611.846667pt;}
.y10_c01003{bottom:626.458667pt;}
.yf_c01003{bottom:641.070667pt;}
.ye_c01003{bottom:655.682667pt;}
.yd_c01003{bottom:670.294667pt;}
.yc_c01003{bottom:684.905333pt;}
.yb_c01003{bottom:714.129333pt;}
.ya_c01003{bottom:728.741333pt;}
.y9_c01003{bottom:772.577333pt;}
.y8_c01003{bottom:787.189333pt;}
.y7_c01003{bottom:801.469333pt;}
.y6_c01003{bottom:951.288000pt;}
.y5_c01003{bottom:967.228000pt;}
.y4_c01003{bottom:983.168000pt;}
.y3_c01003{bottom:999.109333pt;}
.y2_c01003{bottom:1015.049333pt;}
.y1_c01003{bottom:1030.989333pt;}
.h3_c01003{height:31.280681pt;}
.h4_c01003{height:32.006363pt;}
.h2_c01003{height:46.518078pt;}
.h0_c01003{height:1122.520000pt;}
.h1_c01003{height:1122.666667pt;}
.w0_c01003{width:793.706667pt;}
.w1_c01003{width:794.000000pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:113.385333pt;}
.x2_c01003{left:121.886667pt;}
.x3_c01003{left:127.796000pt;}
.x4_c01003{left:151.430667pt;}
.x5_c01003{left:157.340000pt;}
.x6_c01003{left:386.888000pt;}
}





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

.ir_c01004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_8306db9b64c0e72d0e80488c.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01004;src:url('chunks/assets/font_50f0eacccdb803cc251e5ce7.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01004;src:url('chunks/assets/font_c8bcf8636dc3edaa5e03910b.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01004;src:url('chunks/assets/font_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01004;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c01004{font-family:ff5_c01004;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls3_c01004{letter-spacing:0.000000px;}
.ls0_c01004{letter-spacing:0.087998px;}
.ls2_c01004{letter-spacing:0.098482px;}
.ls1_c01004{letter-spacing:0.104482px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01004{word-spacing:-26.575517px;}
.ws10_c01004{word-spacing:-26.487518px;}
.wse_c01004{word-spacing:-20.503031px;}
.wsd_c01004{word-spacing:-20.084602px;}
.ws5_c01004{word-spacing:-18.769538px;}
.ws8_c01004{word-spacing:-18.709763px;}
.ws9_c01004{word-spacing:-18.649987px;}
.wsc_c01004{word-spacing:-16.498066px;}
.ws4_c01004{word-spacing:-14.943900px;}
.wsb_c01004{word-spacing:-14.645022px;}
.ws7_c01004{word-spacing:-12.552876px;}
.wsa_c01004{word-spacing:-11.536691px;}
.ws1_c01004{word-spacing:-9.988424px;}
.ws3_c01004{word-spacing:-9.987499px;}
.ws14_c01004{word-spacing:0.000000px;}
.ws11_c01004{word-spacing:0.043999px;}
.wsf_c01004{word-spacing:0.175997px;}
.ws13_c01004{word-spacing:0.213446px;}
.ws12_c01004{word-spacing:0.219446px;}
.ws6_c01004{word-spacing:2.423856px;}
.ws0_c01004{word-spacing:43.038600px;}
._0_c01004{margin-left:-6.369713px;}
._7_c01004{margin-left:-4.394160px;}
._3_c01004{margin-left:-3.287658px;}
._1_c01004{margin-left:-1.549390px;}
._8_c01004{width:1.005737px;}
._2_c01004{width:19.935816px;}
._6_c01004{width:27.065616px;}
._5_c01004{width:32.581454px;}
._4_c01004{width:41.245164px;}
.fc5_c01004{color:rgb(79,153,5);}
.fc3_c01004{color:rgb(33,74,135);}
.fc2_c01004{color:rgb(143,89,3);}
.fc4_c01004{color:rgb(207,92,0);}
.fc1_c01004{color:rgb(6,69,173);}
.fc0_c01004{color:rgb(0,0,0);}
.fs2_c01004{font-size:43.999200px;}
.fs1_c01004{font-size:59.775600px;}
.fs0_c01004{font-size:86.077200px;}
.y0_c01004{bottom:0.000000px;}
.y20_c01004{bottom:44.250000px;}
.y1f_c01004{bottom:82.051500px;}
.y1e_c01004{bottom:98.490000px;}
.y1d_c01004{bottom:114.927000px;}
.y1c_c01004{bottom:147.804000px;}
.y1b_c01004{bottom:164.242500px;}
.y1a_c01004{bottom:197.119500px;}
.y19_c01004{bottom:213.558000px;}
.y18_c01004{bottom:229.996500px;}
.y17_c01004{bottom:246.435000px;}
.y16_c01004{bottom:279.310500px;}
.y15_c01004{bottom:295.749000px;}
.y14_c01004{bottom:312.187500px;}
.y13_c01004{bottom:328.626000px;}
.y12_c01004{bottom:345.064500px;}
.y11_c01004{bottom:361.503000px;}
.y10_c01004{bottom:377.941500px;}
.yf_c01004{bottom:394.380000px;}
.ye_c01004{bottom:410.445000px;}
.yd_c01004{bottom:458.839500px;}
.yc_c01004{bottom:476.772000px;}
.yb_c01004{bottom:494.704500px;}
.ya_c01004{bottom:512.637000px;}
.y9_c01004{bottom:530.571000px;}
.y8_c01004{bottom:548.503500px;}
.y7_c01004{bottom:566.436000px;}
.y6_c01004{bottom:584.368500px;}
.y5_c01004{bottom:611.355000px;}
.y4_c01004{bottom:638.341500px;}
.y3_c01004{bottom:665.326500px;}
.y2_c01004{bottom:692.313000px;}
.y1_c01004{bottom:734.712000px;}
.h5_c01004{height:35.190766px;}
.h6_c01004{height:36.007158px;}
.h3_c01004{height:40.511979px;}
.h4_c01004{height:52.332837px;}
.h2_c01004{height:58.337477px;}
.h0_c01004{height:1262.835000px;}
.h1_c01004{height:1263.000000px;}
.w0_c01004{width:892.920000px;}
.w1_c01004{width:893.250000px;}
.x0_c01004{left:0.000000px;}
.x1_c01004{left:127.558500px;}
.x2_c01004{left:137.122500px;}
.x3_c01004{left:435.249000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls3_c01004{letter-spacing:0.000000pt;}
.ls0_c01004{letter-spacing:0.078221pt;}
.ls2_c01004{letter-spacing:0.087539pt;}
.ls1_c01004{letter-spacing:0.092873pt;}
.ws2_c01004{word-spacing:-23.622682pt;}
.ws10_c01004{word-spacing:-23.544461pt;}
.wse_c01004{word-spacing:-18.224916pt;}
.wsd_c01004{word-spacing:-17.852979pt;}
.ws5_c01004{word-spacing:-16.684034pt;}
.ws8_c01004{word-spacing:-16.630900pt;}
.ws9_c01004{word-spacing:-16.577766pt;}
.wsc_c01004{word-spacing:-14.664947pt;}
.ws4_c01004{word-spacing:-13.283467pt;}
.wsb_c01004{word-spacing:-13.017797pt;}
.ws7_c01004{word-spacing:-11.158112pt;}
.wsa_c01004{word-spacing:-10.254836pt;}
.ws1_c01004{word-spacing:-8.878599pt;}
.ws3_c01004{word-spacing:-8.877777pt;}
.ws14_c01004{word-spacing:0.000000pt;}
.ws11_c01004{word-spacing:0.039110pt;}
.wsf_c01004{word-spacing:0.156442pt;}
.ws13_c01004{word-spacing:0.189730pt;}
.ws12_c01004{word-spacing:0.195063pt;}
.ws6_c01004{word-spacing:2.154539pt;}
.ws0_c01004{word-spacing:38.256533pt;}
._0_c01004{margin-left:-5.661967pt;}
._7_c01004{margin-left:-3.905920pt;}
._3_c01004{margin-left:-2.922363pt;}
._1_c01004{margin-left:-1.377235pt;}
._8_c01004{width:0.893988pt;}
._2_c01004{width:17.720725pt;}
._6_c01004{width:24.058325pt;}
._5_c01004{width:28.961293pt;}
._4_c01004{width:36.662368pt;}
.fs2_c01004{font-size:39.110400pt;}
.fs1_c01004{font-size:53.133867pt;}
.fs0_c01004{font-size:76.513067pt;}
.y0_c01004{bottom:0.000000pt;}
.y20_c01004{bottom:39.333333pt;}
.y1f_c01004{bottom:72.934667pt;}
.y1e_c01004{bottom:87.546667pt;}
.y1d_c01004{bottom:102.157333pt;}
.y1c_c01004{bottom:131.381333pt;}
.y1b_c01004{bottom:145.993333pt;}
.y1a_c01004{bottom:175.217333pt;}
.y19_c01004{bottom:189.829333pt;}
.y18_c01004{bottom:204.441333pt;}
.y17_c01004{bottom:219.053333pt;}
.y16_c01004{bottom:248.276000pt;}
.y15_c01004{bottom:262.888000pt;}
.y14_c01004{bottom:277.500000pt;}
.y13_c01004{bottom:292.112000pt;}
.y12_c01004{bottom:306.724000pt;}
.y11_c01004{bottom:321.336000pt;}
.y10_c01004{bottom:335.948000pt;}
.yf_c01004{bottom:350.560000pt;}
.ye_c01004{bottom:364.840000pt;}
.yd_c01004{bottom:407.857333pt;}
.yc_c01004{bottom:423.797333pt;}
.yb_c01004{bottom:439.737333pt;}
.ya_c01004{bottom:455.677333pt;}
.y9_c01004{bottom:471.618667pt;}
.y8_c01004{bottom:487.558667pt;}
.y7_c01004{bottom:503.498667pt;}
.y6_c01004{bottom:519.438667pt;}
.y5_c01004{bottom:543.426667pt;}
.y4_c01004{bottom:567.414667pt;}
.y3_c01004{bottom:591.401333pt;}
.y2_c01004{bottom:615.389333pt;}
.y1_c01004{bottom:653.077333pt;}
.h5_c01004{height:31.280681pt;}
.h6_c01004{height:32.006363pt;}
.h3_c01004{height:36.010648pt;}
.h4_c01004{height:46.518078pt;}
.h2_c01004{height:51.855535pt;}
.h0_c01004{height:1122.520000pt;}
.h1_c01004{height:1122.666667pt;}
.w0_c01004{width:793.706667pt;}
.w1_c01004{width:794.000000pt;}
.x0_c01004{left:0.000000pt;}
.x1_c01004{left:113.385333pt;}
.x2_c01004{left:121.886667pt;}
.x3_c01004{left:386.888000pt;}
}





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

.ir_c01005:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_7683d42a5f1ff193456c37de.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01005;src:url('chunks/assets/font_0723103ab1d5e3f5c8946d39.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01005;src:url('chunks/assets/font_08da8a6c0e3a5325969632f6.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01005;src:url('chunks/assets/font_e4fba3c3aeacba1ea08372c8.woff2')format("woff");}.ff4_c01005{font-family:ff4_c01005;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls4_c01005{letter-spacing:0.000000px;}
.ls0_c01005{letter-spacing:0.087998px;}
.ls2_c01005{letter-spacing:0.098482px;}
.ls1_c01005{letter-spacing:0.104482px;}
.ls3_c01005{letter-spacing:26.690482px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01005{word-spacing:-26.575517px;}
.ws2_c01005{word-spacing:-26.487518px;}
.ws5_c01005{word-spacing:0.000000px;}
.ws4_c01005{word-spacing:0.043999px;}
.ws9_c01005{word-spacing:0.053383px;}
.ws3_c01005{word-spacing:0.053933px;}
.wsb_c01005{word-spacing:0.056767px;}
.wsa_c01005{word-spacing:0.064416px;}
.ws6_c01005{word-spacing:0.066701px;}
.ws8_c01005{word-spacing:0.070416px;}
.ws0_c01005{word-spacing:0.175997px;}
.wsc_c01005{word-spacing:0.213446px;}
.ws7_c01005{word-spacing:0.219446px;}
._0_c01005{width:1.077888px;}
.fc5_c01005{color:rgb(0,0,207);}
.fc4_c01005{color:rgb(79,153,5);}
.fc3_c01005{color:rgb(33,74,135);}
.fc2_c01005{color:rgb(207,92,0);}
.fc1_c01005{color:rgb(0,0,0);}
.fc0_c01005{color:rgb(143,89,3);}
.fs0_c01005{font-size:43.999200px;}
.fs1_c01005{font-size:59.775600px;}
.y0_c01005{bottom:0.000000px;}
.y3c_c01005{bottom:44.250000px;}
.y3b_c01005{bottom:91.369500px;}
.y3a_c01005{bottom:107.808000px;}
.y39_c01005{bottom:124.246500px;}
.y38_c01005{bottom:140.685000px;}
.y37_c01005{bottom:157.123500px;}
.y36_c01005{bottom:173.562000px;}
.y35_c01005{bottom:190.000500px;}
.y34_c01005{bottom:206.437500px;}
.y33_c01005{bottom:222.876000px;}
.y32_c01005{bottom:255.753000px;}
.y31_c01005{bottom:272.191500px;}
.y30_c01005{bottom:288.630000px;}
.y2f_c01005{bottom:321.507000px;}
.y2e_c01005{bottom:337.945500px;}
.y2d_c01005{bottom:354.384000px;}
.y2c_c01005{bottom:370.822500px;}
.y2b_c01005{bottom:387.259500px;}
.y2a_c01005{bottom:403.698000px;}
.y29_c01005{bottom:420.136500px;}
.y28_c01005{bottom:436.575000px;}
.y27_c01005{bottom:453.013500px;}
.y26_c01005{bottom:469.452000px;}
.y25_c01005{bottom:485.890500px;}
.y24_c01005{bottom:502.329000px;}
.y23_c01005{bottom:518.767500px;}
.y22_c01005{bottom:535.206000px;}
.y21_c01005{bottom:551.643000px;}
.y20_c01005{bottom:568.081500px;}
.y1f_c01005{bottom:584.520000px;}
.y1e_c01005{bottom:600.958500px;}
.y1d_c01005{bottom:617.397000px;}
.y1c_c01005{bottom:633.835500px;}
.y1b_c01005{bottom:650.274000px;}
.y1a_c01005{bottom:666.712500px;}
.y19_c01005{bottom:683.151000px;}
.y18_c01005{bottom:699.589500px;}
.y17_c01005{bottom:716.028000px;}
.y16_c01005{bottom:732.465000px;}
.y15_c01005{bottom:748.903500px;}
.y14_c01005{bottom:781.780500px;}
.y13_c01005{bottom:798.219000px;}
.y12_c01005{bottom:814.657500px;}
.y11_c01005{bottom:831.096000px;}
.y10_c01005{bottom:847.534500px;}
.yf_c01005{bottom:863.973000px;}
.ye_c01005{bottom:880.411500px;}
.yd_c01005{bottom:913.287000px;}
.yc_c01005{bottom:929.725500px;}
.yb_c01005{bottom:946.164000px;}
.ya_c01005{bottom:962.602500px;}
.y9_c01005{bottom:979.041000px;}
.y8_c01005{bottom:995.479500px;}
.y7_c01005{bottom:1044.795000px;}
.y6_c01005{bottom:1061.232000px;}
.y5_c01005{bottom:1094.109000px;}
.y4_c01005{bottom:1110.547500px;}
.y3_c01005{bottom:1126.986000px;}
.y2_c01005{bottom:1143.424500px;}
.y1_c01005{bottom:1159.863000px;}
.h2_c01005{height:35.190766px;}
.h3_c01005{height:36.007158px;}
.h4_c01005{height:52.332837px;}
.h0_c01005{height:1262.835000px;}
.h1_c01005{height:1263.000000px;}
.w0_c01005{width:892.920000px;}
.w1_c01005{width:893.250000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:137.122500px;}
.x2_c01005{left:143.770500px;}
.x3_c01005{left:210.243000px;}
.x6_c01005{left:230.185500px;}
.x4_c01005{left:243.480000px;}
.x5_c01005{left:276.715500px;}
.x7_c01005{left:435.249000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls4_c01005{letter-spacing:0.000000pt;}
.ls0_c01005{letter-spacing:0.078221pt;}
.ls2_c01005{letter-spacing:0.087539pt;}
.ls1_c01005{letter-spacing:0.092873pt;}
.ls3_c01005{letter-spacing:23.724873pt;}
.ws1_c01005{word-spacing:-23.622682pt;}
.ws2_c01005{word-spacing:-23.544461pt;}
.ws5_c01005{word-spacing:0.000000pt;}
.ws4_c01005{word-spacing:0.039110pt;}
.ws9_c01005{word-spacing:0.047452pt;}
.ws3_c01005{word-spacing:0.047940pt;}
.wsb_c01005{word-spacing:0.050460pt;}
.wsa_c01005{word-spacing:0.057259pt;}
.ws6_c01005{word-spacing:0.059290pt;}
.ws8_c01005{word-spacing:0.062592pt;}
.ws0_c01005{word-spacing:0.156442pt;}
.wsc_c01005{word-spacing:0.189730pt;}
.ws7_c01005{word-spacing:0.195063pt;}
._0_c01005{width:0.958123pt;}
.fs0_c01005{font-size:39.110400pt;}
.fs1_c01005{font-size:53.133867pt;}
.y0_c01005{bottom:0.000000pt;}
.y3c_c01005{bottom:39.333333pt;}
.y3b_c01005{bottom:81.217333pt;}
.y3a_c01005{bottom:95.829333pt;}
.y39_c01005{bottom:110.441333pt;}
.y38_c01005{bottom:125.053333pt;}
.y37_c01005{bottom:139.665333pt;}
.y36_c01005{bottom:154.277333pt;}
.y35_c01005{bottom:168.889333pt;}
.y34_c01005{bottom:183.500000pt;}
.y33_c01005{bottom:198.112000pt;}
.y32_c01005{bottom:227.336000pt;}
.y31_c01005{bottom:241.948000pt;}
.y30_c01005{bottom:256.560000pt;}
.y2f_c01005{bottom:285.784000pt;}
.y2e_c01005{bottom:300.396000pt;}
.y2d_c01005{bottom:315.008000pt;}
.y2c_c01005{bottom:329.620000pt;}
.y2b_c01005{bottom:344.230667pt;}
.y2a_c01005{bottom:358.842667pt;}
.y29_c01005{bottom:373.454667pt;}
.y28_c01005{bottom:388.066667pt;}
.y27_c01005{bottom:402.678667pt;}
.y26_c01005{bottom:417.290667pt;}
.y25_c01005{bottom:431.902667pt;}
.y24_c01005{bottom:446.514667pt;}
.y23_c01005{bottom:461.126667pt;}
.y22_c01005{bottom:475.738667pt;}
.y21_c01005{bottom:490.349333pt;}
.y20_c01005{bottom:504.961333pt;}
.y1f_c01005{bottom:519.573333pt;}
.y1e_c01005{bottom:534.185333pt;}
.y1d_c01005{bottom:548.797333pt;}
.y1c_c01005{bottom:563.409333pt;}
.y1b_c01005{bottom:578.021333pt;}
.y1a_c01005{bottom:592.633333pt;}
.y19_c01005{bottom:607.245333pt;}
.y18_c01005{bottom:621.857333pt;}
.y17_c01005{bottom:636.469333pt;}
.y16_c01005{bottom:651.080000pt;}
.y15_c01005{bottom:665.692000pt;}
.y14_c01005{bottom:694.916000pt;}
.y13_c01005{bottom:709.528000pt;}
.y12_c01005{bottom:724.140000pt;}
.y11_c01005{bottom:738.752000pt;}
.y10_c01005{bottom:753.364000pt;}
.yf_c01005{bottom:767.976000pt;}
.ye_c01005{bottom:782.588000pt;}
.yd_c01005{bottom:811.810667pt;}
.yc_c01005{bottom:826.422667pt;}
.yb_c01005{bottom:841.034667pt;}
.ya_c01005{bottom:855.646667pt;}
.y9_c01005{bottom:870.258667pt;}
.y8_c01005{bottom:884.870667pt;}
.y7_c01005{bottom:928.706667pt;}
.y6_c01005{bottom:943.317333pt;}
.y5_c01005{bottom:972.541333pt;}
.y4_c01005{bottom:987.153333pt;}
.y3_c01005{bottom:1001.765333pt;}
.y2_c01005{bottom:1016.377333pt;}
.y1_c01005{bottom:1030.989333pt;}
.h2_c01005{height:31.280681pt;}
.h3_c01005{height:32.006363pt;}
.h4_c01005{height:46.518078pt;}
.h0_c01005{height:1122.520000pt;}
.h1_c01005{height:1122.666667pt;}
.w0_c01005{width:793.706667pt;}
.w1_c01005{width:794.000000pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:121.886667pt;}
.x2_c01005{left:127.796000pt;}
.x3_c01005{left:186.882667pt;}
.x6_c01005{left:204.609333pt;}
.x4_c01005{left:216.426667pt;}
.x5_c01005{left:245.969333pt;}
.x7_c01005{left:386.888000pt;}
}





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

.ir_c01006:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_1a13e9aed494d3ec7a8426de.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01006;src:url('chunks/assets/font_c8e736e5eb51bcfcc5af3b3f.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01006;src:url('chunks/assets/font_cfcec7ba0392fa0561ea24bc.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01006;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01006;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01006{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls3_c01006{letter-spacing:0.000000px;}
.ls0_c01006{letter-spacing:0.087998px;}
.ls2_c01006{letter-spacing:0.098482px;}
.ls1_c01006{letter-spacing:0.104482px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01006{word-spacing:-33.713438px;}
.ws0_c01006{word-spacing:-26.575517px;}
.wse_c01006{word-spacing:-26.487518px;}
.ws9_c01006{word-spacing:-21.553319px;}
.ws8_c01006{word-spacing:-21.519216px;}
.ws5_c01006{word-spacing:-18.769538px;}
.ws7_c01006{word-spacing:-16.019861px;}
.ws4_c01006{word-spacing:-14.943900px;}
.wsa_c01006{word-spacing:-14.107042px;}
.wsb_c01006{word-spacing:-12.074671px;}
.ws2_c01006{word-spacing:-9.988424px;}
.ws3_c01006{word-spacing:-9.987499px;}
.ws6_c01006{word-spacing:-4.536144px;}
.ws12_c01006{word-spacing:0.000000px;}
.wsf_c01006{word-spacing:0.043999px;}
.ws15_c01006{word-spacing:0.056767px;}
.ws13_c01006{word-spacing:0.073250px;}
.ws14_c01006{word-spacing:0.083734px;}
.wsd_c01006{word-spacing:0.175997px;}
.ws16_c01006{word-spacing:0.202963px;}
.ws10_c01006{word-spacing:0.213446px;}
.ws11_c01006{word-spacing:0.219446px;}
.ws1_c01006{word-spacing:43.038600px;}
._0_c01006{margin-left:-6.369713px;}
._4_c01006{margin-left:-3.825638px;}
._1_c01006{margin-left:-1.549390px;}
._5_c01006{width:1.005737px;}
._2_c01006{width:19.935816px;}
._3_c01006{width:40.109428px;}
._7_c01006{width:53.283031px;}
._6_c01006{width:79.858548px;}
._8_c01006{width:133.452408px;}
.fc6_c01006{color:rgb(0,0,207);}
.fc5_c01006{color:rgb(79,153,5);}
.fc4_c01006{color:rgb(207,92,0);}
.fc3_c01006{color:rgb(6,69,173);}
.fc2_c01006{color:rgb(143,89,3);}
.fc1_c01006{color:rgb(0,0,0);}
.fc0_c01006{color:rgb(33,74,135);}
.fs0_c01006{font-size:43.999200px;}
.fs2_c01006{font-size:59.775600px;}
.fs1_c01006{font-size:86.077200px;}
.y0_c01006{bottom:0.000000px;}
.y1f_c01006{bottom:44.250000px;}
.y1e_c01006{bottom:82.051500px;}
.y1d_c01006{bottom:98.490000px;}
.y1c_c01006{bottom:114.927000px;}
.y1b_c01006{bottom:131.365500px;}
.y1a_c01006{bottom:147.804000px;}
.y19_c01006{bottom:164.242500px;}
.y18_c01006{bottom:180.681000px;}
.y17_c01006{bottom:197.119500px;}
.y16_c01006{bottom:213.558000px;}
.y15_c01006{bottom:229.996500px;}
.y14_c01006{bottom:246.435000px;}
.y13_c01006{bottom:262.873500px;}
.y12_c01006{bottom:295.749000px;}
.y11_c01006{bottom:312.187500px;}
.y10_c01006{bottom:361.503000px;}
.yf_c01006{bottom:377.941500px;}
.ye_c01006{bottom:394.006500px;}
.yd_c01006{bottom:439.000500px;}
.yc_c01006{bottom:456.933000px;}
.yb_c01006{bottom:474.865500px;}
.ya_c01006{bottom:492.798000px;}
.y9_c01006{bottom:510.730500px;}
.y8_c01006{bottom:528.664500px;}
.y7_c01006{bottom:555.531000px;}
.y6_c01006{bottom:582.399000px;}
.y5_c01006{bottom:609.265500px;}
.y4_c01006{bottom:636.133500px;}
.y3_c01006{bottom:678.373500px;}
.y2_c01006{bottom:1143.424500px;}
.y1_c01006{bottom:1159.863000px;}
.h6_c01006{height:35.190766px;}
.h2_c01006{height:36.007158px;}
.h4_c01006{height:40.511979px;}
.h5_c01006{height:52.332837px;}
.h3_c01006{height:58.337477px;}
.h0_c01006{height:1262.835000px;}
.h1_c01006{height:1263.000000px;}
.w0_c01006{width:892.920000px;}
.w1_c01006{width:893.250000px;}
.x0_c01006{left:0.000000px;}
.x2_c01006{left:127.558500px;}
.x3_c01006{left:137.122500px;}
.x4_c01006{left:143.770500px;}
.x1_c01006{left:177.007500px;}
.x5_c01006{left:435.249000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls3_c01006{letter-spacing:0.000000pt;}
.ls0_c01006{letter-spacing:0.078221pt;}
.ls2_c01006{letter-spacing:0.087539pt;}
.ls1_c01006{letter-spacing:0.092873pt;}
.wsc_c01006{word-spacing:-29.967501pt;}
.ws0_c01006{word-spacing:-23.622682pt;}
.wse_c01006{word-spacing:-23.544461pt;}
.ws9_c01006{word-spacing:-19.158506pt;}
.ws8_c01006{word-spacing:-19.128192pt;}
.ws5_c01006{word-spacing:-16.684034pt;}
.ws7_c01006{word-spacing:-14.239876pt;}
.ws4_c01006{word-spacing:-13.283467pt;}
.wsa_c01006{word-spacing:-12.539593pt;}
.wsb_c01006{word-spacing:-10.733041pt;}
.ws2_c01006{word-spacing:-8.878599pt;}
.ws3_c01006{word-spacing:-8.877777pt;}
.ws6_c01006{word-spacing:-4.032128pt;}
.ws12_c01006{word-spacing:0.000000pt;}
.wsf_c01006{word-spacing:0.039110pt;}
.ws15_c01006{word-spacing:0.050460pt;}
.ws13_c01006{word-spacing:0.065111pt;}
.ws14_c01006{word-spacing:0.074430pt;}
.wsd_c01006{word-spacing:0.156442pt;}
.ws16_c01006{word-spacing:0.180412pt;}
.ws10_c01006{word-spacing:0.189730pt;}
.ws11_c01006{word-spacing:0.195063pt;}
.ws1_c01006{word-spacing:38.256533pt;}
._0_c01006{margin-left:-5.661967pt;}
._4_c01006{margin-left:-3.400567pt;}
._1_c01006{margin-left:-1.377235pt;}
._5_c01006{width:0.893988pt;}
._2_c01006{width:17.720725pt;}
._3_c01006{width:35.652825pt;}
._7_c01006{width:47.362694pt;}
._6_c01006{width:70.985376pt;}
._8_c01006{width:118.624363pt;}
.fs0_c01006{font-size:39.110400pt;}
.fs2_c01006{font-size:53.133867pt;}
.fs1_c01006{font-size:76.513067pt;}
.y0_c01006{bottom:0.000000pt;}
.y1f_c01006{bottom:39.333333pt;}
.y1e_c01006{bottom:72.934667pt;}
.y1d_c01006{bottom:87.546667pt;}
.y1c_c01006{bottom:102.157333pt;}
.y1b_c01006{bottom:116.769333pt;}
.y1a_c01006{bottom:131.381333pt;}
.y19_c01006{bottom:145.993333pt;}
.y18_c01006{bottom:160.605333pt;}
.y17_c01006{bottom:175.217333pt;}
.y16_c01006{bottom:189.829333pt;}
.y15_c01006{bottom:204.441333pt;}
.y14_c01006{bottom:219.053333pt;}
.y13_c01006{bottom:233.665333pt;}
.y12_c01006{bottom:262.888000pt;}
.y11_c01006{bottom:277.500000pt;}
.y10_c01006{bottom:321.336000pt;}
.yf_c01006{bottom:335.948000pt;}
.ye_c01006{bottom:350.228000pt;}
.yd_c01006{bottom:390.222667pt;}
.yc_c01006{bottom:406.162667pt;}
.yb_c01006{bottom:422.102667pt;}
.ya_c01006{bottom:438.042667pt;}
.y9_c01006{bottom:453.982667pt;}
.y8_c01006{bottom:469.924000pt;}
.y7_c01006{bottom:493.805333pt;}
.y6_c01006{bottom:517.688000pt;}
.y5_c01006{bottom:541.569333pt;}
.y4_c01006{bottom:565.452000pt;}
.y3_c01006{bottom:602.998667pt;}
.y2_c01006{bottom:1016.377333pt;}
.y1_c01006{bottom:1030.989333pt;}
.h6_c01006{height:31.280681pt;}
.h2_c01006{height:32.006363pt;}
.h4_c01006{height:36.010648pt;}
.h5_c01006{height:46.518078pt;}
.h3_c01006{height:51.855535pt;}
.h0_c01006{height:1122.520000pt;}
.h1_c01006{height:1122.666667pt;}
.w0_c01006{width:793.706667pt;}
.w1_c01006{width:794.000000pt;}
.x0_c01006{left:0.000000pt;}
.x2_c01006{left:113.385333pt;}
.x3_c01006{left:121.886667pt;}
.x4_c01006{left:127.796000pt;}
.x1_c01006{left:157.340000pt;}
.x5_c01006{left:386.888000pt;}
}





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

.ir_c01007:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_044aebbf8f700db26635523d.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01007;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01007;src:url('chunks/assets/font_a672e5225125eef3283d89b2.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01007;src:url('chunks/assets/font_2752c1ac0314ef8127c32658.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01007;src:url('chunks/assets/font_ac8002cddcb365c2ed7b8970.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls4_c01007{letter-spacing:0.000000px;}
.ls0_c01007{letter-spacing:0.087998px;}
.ls1_c01007{letter-spacing:0.098482px;}
.ls3_c01007{letter-spacing:0.104482px;}
.ls2_c01007{letter-spacing:26.690482px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01007{word-spacing:-26.575517px;}
.ws6_c01007{word-spacing:-26.487518px;}
.wsc_c01007{word-spacing:-18.769538px;}
.wsb_c01007{word-spacing:-14.943900px;}
.ws9_c01007{word-spacing:-9.988424px;}
.wsa_c01007{word-spacing:-9.987499px;}
.ws5_c01007{word-spacing:0.000000px;}
.ws3_c01007{word-spacing:0.043999px;}
.ws0_c01007{word-spacing:0.073250px;}
.ws2_c01007{word-spacing:0.083734px;}
.ws7_c01007{word-spacing:0.213446px;}
.ws4_c01007{word-spacing:0.219446px;}
.ws8_c01007{word-spacing:43.038600px;}
._3_c01007{margin-left:-6.369713px;}
._4_c01007{margin-left:-1.549390px;}
._2_c01007{width:1.047206px;}
._5_c01007{width:19.935816px;}
._0_c01007{width:53.283031px;}
._1_c01007{width:79.858548px;}
.fc5_c01007{color:rgb(207,92,0);}
.fc4_c01007{color:rgb(0,0,207);}
.fc3_c01007{color:rgb(143,89,3);}
.fc2_c01007{color:rgb(0,0,0);}
.fc1_c01007{color:rgb(79,153,5);}
.fc0_c01007{color:rgb(33,74,135);}
.fs0_c01007{font-size:43.999200px;}
.fs2_c01007{font-size:59.775600px;}
.fs1_c01007{font-size:86.077200px;}
.y0_c01007{bottom:0.000000px;}
.y1f_c01007{bottom:44.250000px;}
.y1e_c01007{bottom:82.051500px;}
.y1d_c01007{bottom:112.338000px;}
.y1c_c01007{bottom:142.626000px;}
.y1b_c01007{bottom:172.914000px;}
.y1a_c01007{bottom:220.090500px;}
.y19_c01007{bottom:699.589500px;}
.y18_c01007{bottom:716.028000px;}
.y17_c01007{bottom:732.465000px;}
.y16_c01007{bottom:748.903500px;}
.y15_c01007{bottom:765.342000px;}
.y14_c01007{bottom:781.780500px;}
.y13_c01007{bottom:798.219000px;}
.y12_c01007{bottom:814.657500px;}
.y11_c01007{bottom:831.096000px;}
.y10_c01007{bottom:847.534500px;}
.yf_c01007{bottom:863.973000px;}
.ye_c01007{bottom:896.848500px;}
.yd_c01007{bottom:913.287000px;}
.yc_c01007{bottom:929.725500px;}
.yb_c01007{bottom:962.602500px;}
.ya_c01007{bottom:979.041000px;}
.y9_c01007{bottom:995.479500px;}
.y8_c01007{bottom:1011.918000px;}
.y7_c01007{bottom:1028.356500px;}
.y6_c01007{bottom:1044.795000px;}
.y5_c01007{bottom:1061.232000px;}
.y4_c01007{bottom:1110.547500px;}
.y3_c01007{bottom:1126.986000px;}
.y2_c01007{bottom:1143.424500px;}
.y1_c01007{bottom:1159.863000px;}
.h3_c01007{height:35.190766px;}
.h2_c01007{height:36.007158px;}
.h5_c01007{height:40.511979px;}
.h6_c01007{height:52.332837px;}
.h4_c01007{height:58.337477px;}
.h0_c01007{height:1262.835000px;}
.h1_c01007{height:1263.000000px;}
.w0_c01007{width:892.920000px;}
.w1_c01007{width:893.250000px;}
.x0_c01007{left:0.000000px;}
.x4_c01007{left:127.558500px;}
.x2_c01007{left:137.122500px;}
.x1_c01007{left:143.770500px;}
.x3_c01007{left:177.007500px;}
.x5_c01007{left:435.249000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls4_c01007{letter-spacing:0.000000pt;}
.ls0_c01007{letter-spacing:0.078221pt;}
.ls1_c01007{letter-spacing:0.087539pt;}
.ls3_c01007{letter-spacing:0.092873pt;}
.ls2_c01007{letter-spacing:23.724873pt;}
.ws1_c01007{word-spacing:-23.622682pt;}
.ws6_c01007{word-spacing:-23.544461pt;}
.wsc_c01007{word-spacing:-16.684034pt;}
.wsb_c01007{word-spacing:-13.283467pt;}
.ws9_c01007{word-spacing:-8.878599pt;}
.wsa_c01007{word-spacing:-8.877777pt;}
.ws5_c01007{word-spacing:0.000000pt;}
.ws3_c01007{word-spacing:0.039110pt;}
.ws0_c01007{word-spacing:0.065111pt;}
.ws2_c01007{word-spacing:0.074430pt;}
.ws7_c01007{word-spacing:0.189730pt;}
.ws4_c01007{word-spacing:0.195063pt;}
.ws8_c01007{word-spacing:38.256533pt;}
._3_c01007{margin-left:-5.661967pt;}
._4_c01007{margin-left:-1.377235pt;}
._2_c01007{width:0.930850pt;}
._5_c01007{width:17.720725pt;}
._0_c01007{width:47.362694pt;}
._1_c01007{width:70.985376pt;}
.fs0_c01007{font-size:39.110400pt;}
.fs2_c01007{font-size:53.133867pt;}
.fs1_c01007{font-size:76.513067pt;}
.y0_c01007{bottom:0.000000pt;}
.y1f_c01007{bottom:39.333333pt;}
.y1e_c01007{bottom:72.934667pt;}
.y1d_c01007{bottom:99.856000pt;}
.y1c_c01007{bottom:126.778667pt;}
.y1b_c01007{bottom:153.701333pt;}
.y1a_c01007{bottom:195.636000pt;}
.y19_c01007{bottom:621.857333pt;}
.y18_c01007{bottom:636.469333pt;}
.y17_c01007{bottom:651.080000pt;}
.y16_c01007{bottom:665.692000pt;}
.y15_c01007{bottom:680.304000pt;}
.y14_c01007{bottom:694.916000pt;}
.y13_c01007{bottom:709.528000pt;}
.y12_c01007{bottom:724.140000pt;}
.y11_c01007{bottom:738.752000pt;}
.y10_c01007{bottom:753.364000pt;}
.yf_c01007{bottom:767.976000pt;}
.ye_c01007{bottom:797.198667pt;}
.yd_c01007{bottom:811.810667pt;}
.yc_c01007{bottom:826.422667pt;}
.yb_c01007{bottom:855.646667pt;}
.ya_c01007{bottom:870.258667pt;}
.y9_c01007{bottom:884.870667pt;}
.y8_c01007{bottom:899.482667pt;}
.y7_c01007{bottom:914.094667pt;}
.y6_c01007{bottom:928.706667pt;}
.y5_c01007{bottom:943.317333pt;}
.y4_c01007{bottom:987.153333pt;}
.y3_c01007{bottom:1001.765333pt;}
.y2_c01007{bottom:1016.377333pt;}
.y1_c01007{bottom:1030.989333pt;}
.h3_c01007{height:31.280681pt;}
.h2_c01007{height:32.006363pt;}
.h5_c01007{height:36.010648pt;}
.h6_c01007{height:46.518078pt;}
.h4_c01007{height:51.855535pt;}
.h0_c01007{height:1122.520000pt;}
.h1_c01007{height:1122.666667pt;}
.w0_c01007{width:793.706667pt;}
.w1_c01007{width:794.000000pt;}
.x0_c01007{left:0.000000pt;}
.x4_c01007{left:113.385333pt;}
.x2_c01007{left:121.886667pt;}
.x1_c01007{left:127.796000pt;}
.x3_c01007{left:157.340000pt;}
.x5_c01007{left:386.888000pt;}
}





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

.ir_c01008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01008;src:url('chunks/assets/font_f54af397964e82fc9386b363.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01008;src:url('chunks/assets/font_379c515d9dc20938d25e744e.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01008;src:url('chunks/assets/font_bd689b5f978d0772dfdab683.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01008;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls4_c01008{letter-spacing:0.000000px;}
.ls0_c01008{letter-spacing:0.087998px;}
.ls2_c01008{letter-spacing:0.098482px;}
.ls1_c01008{letter-spacing:0.104482px;}
.ls3_c01008{letter-spacing:26.690482px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01008{word-spacing:-33.713438px;}
.ws4_c01008{word-spacing:-26.575517px;}
.wsa_c01008{word-spacing:-26.487518px;}
.ws3_c01008{word-spacing:-21.553319px;}
.ws2_c01008{word-spacing:-21.519216px;}
.ws7_c01008{word-spacing:-18.769538px;}
.ws1_c01008{word-spacing:-17.633802px;}
.ws5_c01008{word-spacing:-14.107042px;}
.ws6_c01008{word-spacing:-12.074671px;}
.ws0_c01008{word-spacing:-7.686144px;}
.wse_c01008{word-spacing:0.000000px;}
.wsb_c01008{word-spacing:0.043999px;}
.ws11_c01008{word-spacing:0.056767px;}
.wsf_c01008{word-spacing:0.073250px;}
.ws10_c01008{word-spacing:0.083734px;}
.ws9_c01008{word-spacing:0.175997px;}
.ws12_c01008{word-spacing:0.202963px;}
.wsc_c01008{word-spacing:0.213446px;}
.wsd_c01008{word-spacing:0.219446px;}
._4_c01008{margin-left:-3.825638px;}
._1_c01008{margin-left:-2.347817px;}
._0_c01008{margin-left:-1.075961px;}
._5_c01008{width:1.005737px;}
._2_c01008{width:20.742133px;}
._3_c01008{width:40.109428px;}
._7_c01008{width:53.283031px;}
._6_c01008{width:79.858548px;}
._9_c01008{width:106.786058px;}
._8_c01008{width:133.452408px;}
.fc6_c01008{color:rgb(0,0,207);}
.fc5_c01008{color:rgb(79,153,5);}
.fc3_c01008{color:rgb(33,74,135);}
.fc2_c01008{color:rgb(143,89,3);}
.fc4_c01008{color:rgb(207,92,0);}
.fc1_c01008{color:rgb(6,69,173);}
.fc0_c01008{color:rgb(0,0,0);}
.fs1_c01008{font-size:43.999200px;}
.fs0_c01008{font-size:59.775600px;}
.y0_c01008{bottom:0.000000px;}
.y31_c01008{bottom:44.250000px;}
.y30_c01008{bottom:96.919500px;}
.y2f_c01008{bottom:113.358000px;}
.y2e_c01008{bottom:129.796500px;}
.y2d_c01008{bottom:146.235000px;}
.y2c_c01008{bottom:162.673500px;}
.y2b_c01008{bottom:179.112000px;}
.y2a_c01008{bottom:195.550500px;}
.y29_c01008{bottom:211.989000px;}
.y28_c01008{bottom:228.427500px;}
.y27_c01008{bottom:244.866000px;}
.y26_c01008{bottom:261.304500px;}
.y25_c01008{bottom:294.180000px;}
.y24_c01008{bottom:310.618500px;}
.y23_c01008{bottom:327.057000px;}
.y22_c01008{bottom:359.934000px;}
.y21_c01008{bottom:376.372500px;}
.y20_c01008{bottom:392.811000px;}
.y1f_c01008{bottom:409.249500px;}
.y1e_c01008{bottom:425.688000px;}
.y1d_c01008{bottom:442.125000px;}
.y1c_c01008{bottom:458.563500px;}
.y1b_c01008{bottom:507.879000px;}
.y1a_c01008{bottom:524.317500px;}
.y19_c01008{bottom:540.756000px;}
.y18_c01008{bottom:557.194500px;}
.y17_c01008{bottom:573.633000px;}
.y16_c01008{bottom:590.071500px;}
.y15_c01008{bottom:606.508500px;}
.y14_c01008{bottom:622.947000px;}
.y13_c01008{bottom:639.385500px;}
.y12_c01008{bottom:655.824000px;}
.y11_c01008{bottom:672.262500px;}
.y10_c01008{bottom:688.701000px;}
.yf_c01008{bottom:705.139500px;}
.ye_c01008{bottom:721.578000px;}
.yd_c01008{bottom:738.016500px;}
.yc_c01008{bottom:754.455000px;}
.yb_c01008{bottom:787.330500px;}
.ya_c01008{bottom:803.769000px;}
.y9_c01008{bottom:853.084500px;}
.y8_c01008{bottom:869.523000px;}
.y7_c01008{bottom:885.588000px;}
.y6_c01008{bottom:1070.199000px;}
.y5_c01008{bottom:1088.131500px;}
.y4_c01008{bottom:1106.064000px;}
.y3_c01008{bottom:1123.998000px;}
.y2_c01008{bottom:1141.930500px;}
.y1_c01008{bottom:1159.863000px;}
.h3_c01008{height:35.190766px;}
.h4_c01008{height:36.007158px;}
.h2_c01008{height:52.332837px;}
.h0_c01008{height:1262.835000px;}
.h1_c01008{height:1263.000000px;}
.w0_c01008{width:892.920000px;}
.w1_c01008{width:893.250000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:127.558500px;}
.x2_c01008{left:137.122500px;}
.x3_c01008{left:143.770500px;}
.x4_c01008{left:177.007500px;}
.x5_c01008{left:435.249000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls4_c01008{letter-spacing:0.000000pt;}
.ls0_c01008{letter-spacing:0.078221pt;}
.ls2_c01008{letter-spacing:0.087539pt;}
.ls1_c01008{letter-spacing:0.092873pt;}
.ls3_c01008{letter-spacing:23.724873pt;}
.ws8_c01008{word-spacing:-29.967501pt;}
.ws4_c01008{word-spacing:-23.622682pt;}
.wsa_c01008{word-spacing:-23.544461pt;}
.ws3_c01008{word-spacing:-19.158506pt;}
.ws2_c01008{word-spacing:-19.128192pt;}
.ws7_c01008{word-spacing:-16.684034pt;}
.ws1_c01008{word-spacing:-15.674491pt;}
.ws5_c01008{word-spacing:-12.539593pt;}
.ws6_c01008{word-spacing:-10.733041pt;}
.ws0_c01008{word-spacing:-6.832128pt;}
.wse_c01008{word-spacing:0.000000pt;}
.wsb_c01008{word-spacing:0.039110pt;}
.ws11_c01008{word-spacing:0.050460pt;}
.wsf_c01008{word-spacing:0.065111pt;}
.ws10_c01008{word-spacing:0.074430pt;}
.ws9_c01008{word-spacing:0.156442pt;}
.ws12_c01008{word-spacing:0.180412pt;}
.wsc_c01008{word-spacing:0.189730pt;}
.wsd_c01008{word-spacing:0.195063pt;}
._4_c01008{margin-left:-3.400567pt;}
._1_c01008{margin-left:-2.086948pt;}
._0_c01008{margin-left:-0.956410pt;}
._5_c01008{width:0.893988pt;}
._2_c01008{width:18.437452pt;}
._3_c01008{width:35.652825pt;}
._7_c01008{width:47.362694pt;}
._6_c01008{width:70.985376pt;}
._9_c01008{width:94.920941pt;}
._8_c01008{width:118.624363pt;}
.fs1_c01008{font-size:39.110400pt;}
.fs0_c01008{font-size:53.133867pt;}
.y0_c01008{bottom:0.000000pt;}
.y31_c01008{bottom:39.333333pt;}
.y30_c01008{bottom:86.150667pt;}
.y2f_c01008{bottom:100.762667pt;}
.y2e_c01008{bottom:115.374667pt;}
.y2d_c01008{bottom:129.986667pt;}
.y2c_c01008{bottom:144.598667pt;}
.y2b_c01008{bottom:159.210667pt;}
.y2a_c01008{bottom:173.822667pt;}
.y29_c01008{bottom:188.434667pt;}
.y28_c01008{bottom:203.046667pt;}
.y27_c01008{bottom:217.658667pt;}
.y26_c01008{bottom:232.270667pt;}
.y25_c01008{bottom:261.493333pt;}
.y24_c01008{bottom:276.105333pt;}
.y23_c01008{bottom:290.717333pt;}
.y22_c01008{bottom:319.941333pt;}
.y21_c01008{bottom:334.553333pt;}
.y20_c01008{bottom:349.165333pt;}
.y1f_c01008{bottom:363.777333pt;}
.y1e_c01008{bottom:378.389333pt;}
.y1d_c01008{bottom:393.000000pt;}
.y1c_c01008{bottom:407.612000pt;}
.y1b_c01008{bottom:451.448000pt;}
.y1a_c01008{bottom:466.060000pt;}
.y19_c01008{bottom:480.672000pt;}
.y18_c01008{bottom:495.284000pt;}
.y17_c01008{bottom:509.896000pt;}
.y16_c01008{bottom:524.508000pt;}
.y15_c01008{bottom:539.118667pt;}
.y14_c01008{bottom:553.730667pt;}
.y13_c01008{bottom:568.342667pt;}
.y12_c01008{bottom:582.954667pt;}
.y11_c01008{bottom:597.566667pt;}
.y10_c01008{bottom:612.178667pt;}
.yf_c01008{bottom:626.790667pt;}
.ye_c01008{bottom:641.402667pt;}
.yd_c01008{bottom:656.014667pt;}
.yc_c01008{bottom:670.626667pt;}
.yb_c01008{bottom:699.849333pt;}
.ya_c01008{bottom:714.461333pt;}
.y9_c01008{bottom:758.297333pt;}
.y8_c01008{bottom:772.909333pt;}
.y7_c01008{bottom:787.189333pt;}
.y6_c01008{bottom:951.288000pt;}
.y5_c01008{bottom:967.228000pt;}
.y4_c01008{bottom:983.168000pt;}
.y3_c01008{bottom:999.109333pt;}
.y2_c01008{bottom:1015.049333pt;}
.y1_c01008{bottom:1030.989333pt;}
.h3_c01008{height:31.280681pt;}
.h4_c01008{height:32.006363pt;}
.h2_c01008{height:46.518078pt;}
.h0_c01008{height:1122.520000pt;}
.h1_c01008{height:1122.666667pt;}
.w0_c01008{width:793.706667pt;}
.w1_c01008{width:794.000000pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:113.385333pt;}
.x2_c01008{left:121.886667pt;}
.x3_c01008{left:127.796000pt;}
.x4_c01008{left:157.340000pt;}
.x5_c01008{left:386.888000pt;}
}





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

.ir_c01009:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_5e91603d53c22fb32e9ca9d5.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01009;src:url('chunks/assets/font_359455ba6249238dbd3e8fe7.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01009;src:url('chunks/assets/font_fd57e98aee9e1af4b77dc06d.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01009;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01009;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls3_c01009{letter-spacing:0.000000px;}
.ls0_c01009{letter-spacing:0.087998px;}
.ls2_c01009{letter-spacing:0.098482px;}
.ls1_c01009{letter-spacing:0.104482px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01009{word-spacing:-33.713438px;}
.ws2_c01009{word-spacing:-26.575517px;}
.wse_c01009{word-spacing:-26.487518px;}
.ws9_c01009{word-spacing:-21.553319px;}
.ws8_c01009{word-spacing:-21.519216px;}
.ws5_c01009{word-spacing:-18.769538px;}
.ws7_c01009{word-spacing:-17.633802px;}
.ws4_c01009{word-spacing:-14.943900px;}
.wsa_c01009{word-spacing:-14.107042px;}
.wsb_c01009{word-spacing:-12.074671px;}
.ws1_c01009{word-spacing:-9.988424px;}
.ws3_c01009{word-spacing:-9.987499px;}
.ws6_c01009{word-spacing:-7.686144px;}
.ws12_c01009{word-spacing:0.000000px;}
.wsf_c01009{word-spacing:0.043999px;}
.ws15_c01009{word-spacing:0.056767px;}
.ws13_c01009{word-spacing:0.073250px;}
.ws14_c01009{word-spacing:0.083734px;}
.wsd_c01009{word-spacing:0.175997px;}
.ws16_c01009{word-spacing:0.202963px;}
.ws10_c01009{word-spacing:0.213446px;}
.ws11_c01009{word-spacing:0.219446px;}
.ws0_c01009{word-spacing:43.038600px;}
._0_c01009{margin-left:-6.369713px;}
._4_c01009{margin-left:-3.825638px;}
._1_c01009{margin-left:-1.549390px;}
._5_c01009{width:1.005737px;}
._2_c01009{width:19.935816px;}
._3_c01009{width:40.109428px;}
._7_c01009{width:53.283031px;}
._6_c01009{width:79.858548px;}
._8_c01009{width:133.452408px;}
.fc6_c01009{color:rgb(0,0,207);}
.fc5_c01009{color:rgb(79,153,5);}
.fc3_c01009{color:rgb(33,74,135);}
.fc2_c01009{color:rgb(143,89,3);}
.fc4_c01009{color:rgb(207,92,0);}
.fc1_c01009{color:rgb(6,69,173);}
.fc0_c01009{color:rgb(0,0,0);}
.fs2_c01009{font-size:43.999200px;}
.fs1_c01009{font-size:59.775600px;}
.fs0_c01009{font-size:86.077200px;}
.y0_c01009{bottom:0.000000px;}
.y20_c01009{bottom:44.250000px;}
.y1f_c01009{bottom:86.982000px;}
.y1e_c01009{bottom:103.420500px;}
.y1d_c01009{bottom:119.859000px;}
.y1c_c01009{bottom:136.297500px;}
.y1b_c01009{bottom:152.736000px;}
.y1a_c01009{bottom:169.174500px;}
.y19_c01009{bottom:185.613000px;}
.y18_c01009{bottom:202.051500px;}
.y17_c01009{bottom:218.490000px;}
.y16_c01009{bottom:234.927000px;}
.y15_c01009{bottom:251.365500px;}
.y14_c01009{bottom:267.804000px;}
.y13_c01009{bottom:284.242500px;}
.y12_c01009{bottom:300.681000px;}
.y11_c01009{bottom:317.119500px;}
.y10_c01009{bottom:349.996500px;}
.yf_c01009{bottom:366.435000px;}
.ye_c01009{bottom:415.749000px;}
.yd_c01009{bottom:432.187500px;}
.yc_c01009{bottom:448.252500px;}
.yb_c01009{bottom:493.890000px;}
.ya_c01009{bottom:511.822500px;}
.y9_c01009{bottom:529.756500px;}
.y8_c01009{bottom:547.689000px;}
.y7_c01009{bottom:565.621500px;}
.y6_c01009{bottom:583.554000px;}
.y5_c01009{bottom:610.633500px;}
.y4_c01009{bottom:637.714500px;}
.y3_c01009{bottom:664.794000px;}
.y2_c01009{bottom:691.873500px;}
.y1_c01009{bottom:734.407500px;}
.h5_c01009{height:35.190766px;}
.h6_c01009{height:36.007158px;}
.h3_c01009{height:40.511979px;}
.h4_c01009{height:52.332837px;}
.h2_c01009{height:58.337477px;}
.h0_c01009{height:1262.835000px;}
.h1_c01009{height:1263.000000px;}
.w0_c01009{width:892.920000px;}
.w1_c01009{width:893.250000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:127.558500px;}
.x2_c01009{left:137.122500px;}
.x3_c01009{left:143.770500px;}
.x4_c01009{left:435.249000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls3_c01009{letter-spacing:0.000000pt;}
.ls0_c01009{letter-spacing:0.078221pt;}
.ls2_c01009{letter-spacing:0.087539pt;}
.ls1_c01009{letter-spacing:0.092873pt;}
.wsc_c01009{word-spacing:-29.967501pt;}
.ws2_c01009{word-spacing:-23.622682pt;}
.wse_c01009{word-spacing:-23.544461pt;}
.ws9_c01009{word-spacing:-19.158506pt;}
.ws8_c01009{word-spacing:-19.128192pt;}
.ws5_c01009{word-spacing:-16.684034pt;}
.ws7_c01009{word-spacing:-15.674491pt;}
.ws4_c01009{word-spacing:-13.283467pt;}
.wsa_c01009{word-spacing:-12.539593pt;}
.wsb_c01009{word-spacing:-10.733041pt;}
.ws1_c01009{word-spacing:-8.878599pt;}
.ws3_c01009{word-spacing:-8.877777pt;}
.ws6_c01009{word-spacing:-6.832128pt;}
.ws12_c01009{word-spacing:0.000000pt;}
.wsf_c01009{word-spacing:0.039110pt;}
.ws15_c01009{word-spacing:0.050460pt;}
.ws13_c01009{word-spacing:0.065111pt;}
.ws14_c01009{word-spacing:0.074430pt;}
.wsd_c01009{word-spacing:0.156442pt;}
.ws16_c01009{word-spacing:0.180412pt;}
.ws10_c01009{word-spacing:0.189730pt;}
.ws11_c01009{word-spacing:0.195063pt;}
.ws0_c01009{word-spacing:38.256533pt;}
._0_c01009{margin-left:-5.661967pt;}
._4_c01009{margin-left:-3.400567pt;}
._1_c01009{margin-left:-1.377235pt;}
._5_c01009{width:0.893988pt;}
._2_c01009{width:17.720725pt;}
._3_c01009{width:35.652825pt;}
._7_c01009{width:47.362694pt;}
._6_c01009{width:70.985376pt;}
._8_c01009{width:118.624363pt;}
.fs2_c01009{font-size:39.110400pt;}
.fs1_c01009{font-size:53.133867pt;}
.fs0_c01009{font-size:76.513067pt;}
.y0_c01009{bottom:0.000000pt;}
.y20_c01009{bottom:39.333333pt;}
.y1f_c01009{bottom:77.317333pt;}
.y1e_c01009{bottom:91.929333pt;}
.y1d_c01009{bottom:106.541333pt;}
.y1c_c01009{bottom:121.153333pt;}
.y1b_c01009{bottom:135.765333pt;}
.y1a_c01009{bottom:150.377333pt;}
.y19_c01009{bottom:164.989333pt;}
.y18_c01009{bottom:179.601333pt;}
.y17_c01009{bottom:194.213333pt;}
.y16_c01009{bottom:208.824000pt;}
.y15_c01009{bottom:223.436000pt;}
.y14_c01009{bottom:238.048000pt;}
.y13_c01009{bottom:252.660000pt;}
.y12_c01009{bottom:267.272000pt;}
.y11_c01009{bottom:281.884000pt;}
.y10_c01009{bottom:311.108000pt;}
.yf_c01009{bottom:325.720000pt;}
.ye_c01009{bottom:369.554667pt;}
.yd_c01009{bottom:384.166667pt;}
.yc_c01009{bottom:398.446667pt;}
.yb_c01009{bottom:439.013333pt;}
.ya_c01009{bottom:454.953333pt;}
.y9_c01009{bottom:470.894667pt;}
.y8_c01009{bottom:486.834667pt;}
.y7_c01009{bottom:502.774667pt;}
.y6_c01009{bottom:518.714667pt;}
.y5_c01009{bottom:542.785333pt;}
.y4_c01009{bottom:566.857333pt;}
.y3_c01009{bottom:590.928000pt;}
.y2_c01009{bottom:614.998667pt;}
.y1_c01009{bottom:652.806667pt;}
.h5_c01009{height:31.280681pt;}
.h6_c01009{height:32.006363pt;}
.h3_c01009{height:36.010648pt;}
.h4_c01009{height:46.518078pt;}
.h2_c01009{height:51.855535pt;}
.h0_c01009{height:1122.520000pt;}
.h1_c01009{height:1122.666667pt;}
.w0_c01009{width:793.706667pt;}
.w1_c01009{width:794.000000pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:113.385333pt;}
.x2_c01009{left:121.886667pt;}
.x3_c01009{left:127.796000pt;}
.x4_c01009{left:386.888000pt;}
}





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

.ir_c01010:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_206c2cc885530bbff21be075.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01010;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01010;src:url('chunks/assets/font_4723fc8565bbe9e037b914f8.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01010;src:url('chunks/assets/font_c01055347ae8a4a944f11e44.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01010;src:url('chunks/assets/font_378cc9d4f2c7d8500d9c6bf7.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01010{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls4_c01010{letter-spacing:0.000000px;}
.ls0_c01010{letter-spacing:0.087998px;}
.ls2_c01010{letter-spacing:0.098482px;}
.ls3_c01010{letter-spacing:0.104482px;}
.ls1_c01010{letter-spacing:26.690482px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c01010{word-spacing:-33.713438px;}
.ws2_c01010{word-spacing:-26.575517px;}
.ws4_c01010{word-spacing:-26.487518px;}
.wse_c01010{word-spacing:-21.553319px;}
.wsd_c01010{word-spacing:-21.519216px;}
.wsc_c01010{word-spacing:-19.247743px;}
.wsa_c01010{word-spacing:-18.769538px;}
.ws9_c01010{word-spacing:-14.943900px;}
.wsf_c01010{word-spacing:-14.107042px;}
.ws10_c01010{word-spacing:-12.074671px;}
.wsb_c01010{word-spacing:-10.230144px;}
.ws7_c01010{word-spacing:-9.988424px;}
.ws8_c01010{word-spacing:-9.987499px;}
.ws3_c01010{word-spacing:0.000000px;}
.ws0_c01010{word-spacing:0.043999px;}
.ws5_c01010{word-spacing:0.213446px;}
.ws1_c01010{word-spacing:0.219446px;}
.ws6_c01010{word-spacing:43.038600px;}
._2_c01010{margin-left:-6.369713px;}
._3_c01010{margin-left:-1.549390px;}
._1_c01010{width:1.063690px;}
._4_c01010{width:19.935816px;}
._5_c01010{width:40.109428px;}
._0_c01010{width:106.786058px;}
.fc5_c01010{color:rgb(79,153,5);}
.fc4_c01010{color:rgb(143,89,3);}
.fc3_c01010{color:rgb(0,0,0);}
.fc6_c01010{color:rgb(6,69,173);}
.fc2_c01010{color:rgb(207,92,0);}
.fc1_c01010{color:rgb(0,0,207);}
.fc0_c01010{color:rgb(33,74,135);}
.fs0_c01010{font-size:43.999200px;}
.fs2_c01010{font-size:59.775600px;}
.fs1_c01010{font-size:86.077200px;}
.y0_c01010{bottom:0.000000px;}
.y20_c01010{bottom:44.250000px;}
.y1f_c01010{bottom:82.051500px;}
.y1e_c01010{bottom:99.984000px;}
.y1d_c01010{bottom:117.916500px;}
.y1c_c01010{bottom:135.849000px;}
.y1b_c01010{bottom:162.501000px;}
.y1a_c01010{bottom:189.151500px;}
.y19_c01010{bottom:215.802000px;}
.y18_c01010{bottom:242.454000px;}
.y17_c01010{bottom:284.478000px;}
.y16_c01010{bottom:748.903500px;}
.y15_c01010{bottom:765.342000px;}
.y14_c01010{bottom:781.780500px;}
.y13_c01010{bottom:798.219000px;}
.y12_c01010{bottom:814.657500px;}
.y11_c01010{bottom:831.096000px;}
.y10_c01010{bottom:847.534500px;}
.yf_c01010{bottom:863.973000px;}
.ye_c01010{bottom:880.411500px;}
.yd_c01010{bottom:896.848500px;}
.yc_c01010{bottom:913.287000px;}
.yb_c01010{bottom:946.164000px;}
.ya_c01010{bottom:962.602500px;}
.y9_c01010{bottom:979.041000px;}
.y8_c01010{bottom:1011.918000px;}
.y7_c01010{bottom:1028.356500px;}
.y6_c01010{bottom:1044.795000px;}
.y5_c01010{bottom:1061.232000px;}
.y4_c01010{bottom:1077.670500px;}
.y3_c01010{bottom:1094.109000px;}
.y2_c01010{bottom:1110.547500px;}
.y1_c01010{bottom:1159.863000px;}
.h3_c01010{height:35.190766px;}
.h2_c01010{height:36.007158px;}
.h5_c01010{height:40.511979px;}
.h6_c01010{height:52.332837px;}
.h4_c01010{height:58.337477px;}
.h0_c01010{height:1262.835000px;}
.h1_c01010{height:1263.000000px;}
.w0_c01010{width:892.920000px;}
.w1_c01010{width:893.250000px;}
.x0_c01010{left:0.000000px;}
.x4_c01010{left:127.558500px;}
.x2_c01010{left:137.122500px;}
.x1_c01010{left:143.770500px;}
.x3_c01010{left:177.007500px;}
.x5_c01010{left:435.526500px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls4_c01010{letter-spacing:0.000000pt;}
.ls0_c01010{letter-spacing:0.078221pt;}
.ls2_c01010{letter-spacing:0.087539pt;}
.ls3_c01010{letter-spacing:0.092873pt;}
.ls1_c01010{letter-spacing:23.724873pt;}
.ws11_c01010{word-spacing:-29.967501pt;}
.ws2_c01010{word-spacing:-23.622682pt;}
.ws4_c01010{word-spacing:-23.544461pt;}
.wse_c01010{word-spacing:-19.158506pt;}
.wsd_c01010{word-spacing:-19.128192pt;}
.wsc_c01010{word-spacing:-17.109105pt;}
.wsa_c01010{word-spacing:-16.684034pt;}
.ws9_c01010{word-spacing:-13.283467pt;}
.wsf_c01010{word-spacing:-12.539593pt;}
.ws10_c01010{word-spacing:-10.733041pt;}
.wsb_c01010{word-spacing:-9.093461pt;}
.ws7_c01010{word-spacing:-8.878599pt;}
.ws8_c01010{word-spacing:-8.877777pt;}
.ws3_c01010{word-spacing:0.000000pt;}
.ws0_c01010{word-spacing:0.039110pt;}
.ws5_c01010{word-spacing:0.189730pt;}
.ws1_c01010{word-spacing:0.195063pt;}
.ws6_c01010{word-spacing:38.256533pt;}
._2_c01010{margin-left:-5.661967pt;}
._3_c01010{margin-left:-1.377235pt;}
._1_c01010{width:0.945502pt;}
._4_c01010{width:17.720725pt;}
._5_c01010{width:35.652825pt;}
._0_c01010{width:94.920941pt;}
.fs0_c01010{font-size:39.110400pt;}
.fs2_c01010{font-size:53.133867pt;}
.fs1_c01010{font-size:76.513067pt;}
.y0_c01010{bottom:0.000000pt;}
.y20_c01010{bottom:39.333333pt;}
.y1f_c01010{bottom:72.934667pt;}
.y1e_c01010{bottom:88.874667pt;}
.y1d_c01010{bottom:104.814667pt;}
.y1c_c01010{bottom:120.754667pt;}
.y1b_c01010{bottom:144.445333pt;}
.y1a_c01010{bottom:168.134667pt;}
.y19_c01010{bottom:191.824000pt;}
.y18_c01010{bottom:215.514667pt;}
.y17_c01010{bottom:252.869333pt;}
.y16_c01010{bottom:665.692000pt;}
.y15_c01010{bottom:680.304000pt;}
.y14_c01010{bottom:694.916000pt;}
.y13_c01010{bottom:709.528000pt;}
.y12_c01010{bottom:724.140000pt;}
.y11_c01010{bottom:738.752000pt;}
.y10_c01010{bottom:753.364000pt;}
.yf_c01010{bottom:767.976000pt;}
.ye_c01010{bottom:782.588000pt;}
.yd_c01010{bottom:797.198667pt;}
.yc_c01010{bottom:811.810667pt;}
.yb_c01010{bottom:841.034667pt;}
.ya_c01010{bottom:855.646667pt;}
.y9_c01010{bottom:870.258667pt;}
.y8_c01010{bottom:899.482667pt;}
.y7_c01010{bottom:914.094667pt;}
.y6_c01010{bottom:928.706667pt;}
.y5_c01010{bottom:943.317333pt;}
.y4_c01010{bottom:957.929333pt;}
.y3_c01010{bottom:972.541333pt;}
.y2_c01010{bottom:987.153333pt;}
.y1_c01010{bottom:1030.989333pt;}
.h3_c01010{height:31.280681pt;}
.h2_c01010{height:32.006363pt;}
.h5_c01010{height:36.010648pt;}
.h6_c01010{height:46.518078pt;}
.h4_c01010{height:51.855535pt;}
.h0_c01010{height:1122.520000pt;}
.h1_c01010{height:1122.666667pt;}
.w0_c01010{width:793.706667pt;}
.w1_c01010{width:794.000000pt;}
.x0_c01010{left:0.000000pt;}
.x4_c01010{left:113.385333pt;}
.x2_c01010{left:121.886667pt;}
.x1_c01010{left:127.796000pt;}
.x3_c01010{left:157.340000pt;}
.x5_c01010{left:387.134667pt;}
}





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

.ir_c01011:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_2d502b6e74df445a9201ffaf.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01011;src:url('chunks/assets/font_656eab27554f4e3c776b897e.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01011;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01011;src:url('chunks/assets/font_9741f211b59356e38a290dbf.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls4_c01011{letter-spacing:0.000000px;}
.ls1_c01011{letter-spacing:0.087998px;}
.ls2_c01011{letter-spacing:0.098482px;}
.ls0_c01011{letter-spacing:0.104482px;}
.ls3_c01011{letter-spacing:26.690482px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01011{word-spacing:-33.713438px;}
.ws4_c01011{word-spacing:-26.575517px;}
.ws3_c01011{word-spacing:-26.487518px;}
.ws0_c01011{word-spacing:-18.769538px;}
.ws8_c01011{word-spacing:0.000000px;}
.ws5_c01011{word-spacing:0.043999px;}
.wsb_c01011{word-spacing:0.056767px;}
.ws9_c01011{word-spacing:0.073250px;}
.wsa_c01011{word-spacing:0.083734px;}
.ws2_c01011{word-spacing:0.175997px;}
.wsc_c01011{word-spacing:0.202963px;}
.ws6_c01011{word-spacing:0.213446px;}
.ws7_c01011{word-spacing:0.219446px;}
._0_c01011{margin-left:-3.825638px;}
._1_c01011{width:1.005737px;}
._3_c01011{width:53.283031px;}
._2_c01011{width:79.858548px;}
._4_c01011{width:133.452408px;}
.fc5_c01011{color:rgb(0,0,207);}
.fc4_c01011{color:rgb(79,153,5);}
.fc3_c01011{color:rgb(207,92,0);}
.fc2_c01011{color:rgb(33,74,135);}
.fc1_c01011{color:rgb(143,89,3);}
.fc0_c01011{color:rgb(0,0,0);}
.fs1_c01011{font-size:43.999200px;}
.fs0_c01011{font-size:59.775600px;}
.y0_c01011{bottom:0.000000px;}
.y2d_c01011{bottom:44.250000px;}
.y2c_c01011{bottom:96.919500px;}
.y2b_c01011{bottom:113.358000px;}
.y2a_c01011{bottom:129.796500px;}
.y29_c01011{bottom:146.235000px;}
.y28_c01011{bottom:162.673500px;}
.y27_c01011{bottom:179.112000px;}
.y26_c01011{bottom:195.550500px;}
.y25_c01011{bottom:211.989000px;}
.y24_c01011{bottom:228.427500px;}
.y23_c01011{bottom:244.866000px;}
.y22_c01011{bottom:261.304500px;}
.y21_c01011{bottom:294.180000px;}
.y20_c01011{bottom:310.618500px;}
.y1f_c01011{bottom:327.057000px;}
.y1e_c01011{bottom:359.934000px;}
.y1d_c01011{bottom:376.372500px;}
.y1c_c01011{bottom:392.811000px;}
.y1b_c01011{bottom:409.249500px;}
.y1a_c01011{bottom:425.688000px;}
.y19_c01011{bottom:442.125000px;}
.y18_c01011{bottom:458.563500px;}
.y17_c01011{bottom:507.879000px;}
.y16_c01011{bottom:524.317500px;}
.y15_c01011{bottom:540.756000px;}
.y14_c01011{bottom:557.194500px;}
.y13_c01011{bottom:573.633000px;}
.y12_c01011{bottom:590.071500px;}
.y11_c01011{bottom:606.508500px;}
.y10_c01011{bottom:622.947000px;}
.yf_c01011{bottom:639.385500px;}
.ye_c01011{bottom:655.824000px;}
.yd_c01011{bottom:672.262500px;}
.yc_c01011{bottom:688.701000px;}
.yb_c01011{bottom:705.139500px;}
.ya_c01011{bottom:721.578000px;}
.y9_c01011{bottom:738.016500px;}
.y8_c01011{bottom:754.455000px;}
.y7_c01011{bottom:787.330500px;}
.y6_c01011{bottom:803.769000px;}
.y5_c01011{bottom:853.084500px;}
.y4_c01011{bottom:869.523000px;}
.y3_c01011{bottom:885.588000px;}
.y2_c01011{bottom:1141.930500px;}
.y1_c01011{bottom:1159.863000px;}
.h3_c01011{height:35.190766px;}
.h4_c01011{height:36.007158px;}
.h2_c01011{height:52.332837px;}
.h0_c01011{height:1262.835000px;}
.h1_c01011{height:1263.000000px;}
.w0_c01011{width:892.920000px;}
.w1_c01011{width:893.250000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:127.558500px;}
.x2_c01011{left:137.122500px;}
.x3_c01011{left:143.770500px;}
.x4_c01011{left:177.007500px;}
.x5_c01011{left:435.249000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls4_c01011{letter-spacing:0.000000pt;}
.ls1_c01011{letter-spacing:0.078221pt;}
.ls2_c01011{letter-spacing:0.087539pt;}
.ls0_c01011{letter-spacing:0.092873pt;}
.ls3_c01011{letter-spacing:23.724873pt;}
.ws1_c01011{word-spacing:-29.967501pt;}
.ws4_c01011{word-spacing:-23.622682pt;}
.ws3_c01011{word-spacing:-23.544461pt;}
.ws0_c01011{word-spacing:-16.684034pt;}
.ws8_c01011{word-spacing:0.000000pt;}
.ws5_c01011{word-spacing:0.039110pt;}
.wsb_c01011{word-spacing:0.050460pt;}
.ws9_c01011{word-spacing:0.065111pt;}
.wsa_c01011{word-spacing:0.074430pt;}
.ws2_c01011{word-spacing:0.156442pt;}
.wsc_c01011{word-spacing:0.180412pt;}
.ws6_c01011{word-spacing:0.189730pt;}
.ws7_c01011{word-spacing:0.195063pt;}
._0_c01011{margin-left:-3.400567pt;}
._1_c01011{width:0.893988pt;}
._3_c01011{width:47.362694pt;}
._2_c01011{width:70.985376pt;}
._4_c01011{width:118.624363pt;}
.fs1_c01011{font-size:39.110400pt;}
.fs0_c01011{font-size:53.133867pt;}
.y0_c01011{bottom:0.000000pt;}
.y2d_c01011{bottom:39.333333pt;}
.y2c_c01011{bottom:86.150667pt;}
.y2b_c01011{bottom:100.762667pt;}
.y2a_c01011{bottom:115.374667pt;}
.y29_c01011{bottom:129.986667pt;}
.y28_c01011{bottom:144.598667pt;}
.y27_c01011{bottom:159.210667pt;}
.y26_c01011{bottom:173.822667pt;}
.y25_c01011{bottom:188.434667pt;}
.y24_c01011{bottom:203.046667pt;}
.y23_c01011{bottom:217.658667pt;}
.y22_c01011{bottom:232.270667pt;}
.y21_c01011{bottom:261.493333pt;}
.y20_c01011{bottom:276.105333pt;}
.y1f_c01011{bottom:290.717333pt;}
.y1e_c01011{bottom:319.941333pt;}
.y1d_c01011{bottom:334.553333pt;}
.y1c_c01011{bottom:349.165333pt;}
.y1b_c01011{bottom:363.777333pt;}
.y1a_c01011{bottom:378.389333pt;}
.y19_c01011{bottom:393.000000pt;}
.y18_c01011{bottom:407.612000pt;}
.y17_c01011{bottom:451.448000pt;}
.y16_c01011{bottom:466.060000pt;}
.y15_c01011{bottom:480.672000pt;}
.y14_c01011{bottom:495.284000pt;}
.y13_c01011{bottom:509.896000pt;}
.y12_c01011{bottom:524.508000pt;}
.y11_c01011{bottom:539.118667pt;}
.y10_c01011{bottom:553.730667pt;}
.yf_c01011{bottom:568.342667pt;}
.ye_c01011{bottom:582.954667pt;}
.yd_c01011{bottom:597.566667pt;}
.yc_c01011{bottom:612.178667pt;}
.yb_c01011{bottom:626.790667pt;}
.ya_c01011{bottom:641.402667pt;}
.y9_c01011{bottom:656.014667pt;}
.y8_c01011{bottom:670.626667pt;}
.y7_c01011{bottom:699.849333pt;}
.y6_c01011{bottom:714.461333pt;}
.y5_c01011{bottom:758.297333pt;}
.y4_c01011{bottom:772.909333pt;}
.y3_c01011{bottom:787.189333pt;}
.y2_c01011{bottom:1015.049333pt;}
.y1_c01011{bottom:1030.989333pt;}
.h3_c01011{height:31.280681pt;}
.h4_c01011{height:32.006363pt;}
.h2_c01011{height:46.518078pt;}
.h0_c01011{height:1122.520000pt;}
.h1_c01011{height:1122.666667pt;}
.w0_c01011{width:793.706667pt;}
.w1_c01011{width:794.000000pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:113.385333pt;}
.x2_c01011{left:121.886667pt;}
.x3_c01011{left:127.796000pt;}
.x4_c01011{left:157.340000pt;}
.x5_c01011{left:386.888000pt;}
}





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

.ir_c01012:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_b7c7f57ae6fc64b890ea554a.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01012;src:url('chunks/assets/font_b5447162f0049c30aefb3f91.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01012;src:url('chunks/assets/font_ad828bea7fc71bf210339669.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01012;src:url('chunks/assets/font_c613abf84ba8f7d75897d72e.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01012;src:url('chunks/assets/font_06ef5eb6b481fe5f05584240.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls3_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:0.087998px;}
.ls2_c01012{letter-spacing:0.098482px;}
.ls1_c01012{letter-spacing:0.104482px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01012{word-spacing:-26.575517px;}
.ws10_c01012{word-spacing:-26.487518px;}
.ws5_c01012{word-spacing:-20.801909px;}
.wse_c01012{word-spacing:-20.503031px;}
.wsb_c01012{word-spacing:-20.204153px;}
.wsd_c01012{word-spacing:-20.084602px;}
.ws6_c01012{word-spacing:-18.769538px;}
.ws4_c01012{word-spacing:-17.036046px;}
.wsa_c01012{word-spacing:-16.498066px;}
.ws9_c01012{word-spacing:-16.139412px;}
.ws7_c01012{word-spacing:-14.943900px;}
.wsc_c01012{word-spacing:-14.645022px;}
.ws1_c01012{word-spacing:-9.988424px;}
.ws3_c01012{word-spacing:-9.987499px;}
.ws8_c01012{word-spacing:-4.704144px;}
.ws14_c01012{word-spacing:0.000000px;}
.ws11_c01012{word-spacing:0.043999px;}
.wsf_c01012{word-spacing:0.175997px;}
.ws13_c01012{word-spacing:0.213446px;}
.ws12_c01012{word-spacing:0.219446px;}
.ws0_c01012{word-spacing:43.038600px;}
._0_c01012{margin-left:-6.369713px;}
._3_c01012{margin-left:-4.901599px;}
._4_c01012{margin-left:-3.287658px;}
._1_c01012{margin-left:-1.549390px;}
._8_c01012{width:1.005737px;}
._2_c01012{width:18.943962px;}
._7_c01012{width:20.144377px;}
._5_c01012{width:26.587664px;}
._6_c01012{width:32.581454px;}
.fc5_c01012{color:rgb(79,153,5);}
.fc3_c01012{color:rgb(33,74,135);}
.fc2_c01012{color:rgb(143,89,3);}
.fc4_c01012{color:rgb(207,92,0);}
.fc1_c01012{color:rgb(6,69,173);}
.fc0_c01012{color:rgb(0,0,0);}
.fs2_c01012{font-size:43.999200px;}
.fs1_c01012{font-size:59.775600px;}
.fs0_c01012{font-size:86.077200px;}
.y0_c01012{bottom:0.000000px;}
.y20_c01012{bottom:44.250000px;}
.y1f_c01012{bottom:82.051500px;}
.y1e_c01012{bottom:98.490000px;}
.y1d_c01012{bottom:131.365500px;}
.y1c_c01012{bottom:147.804000px;}
.y1b_c01012{bottom:180.681000px;}
.y1a_c01012{bottom:197.119500px;}
.y19_c01012{bottom:213.558000px;}
.y18_c01012{bottom:229.996500px;}
.y17_c01012{bottom:262.873500px;}
.y16_c01012{bottom:279.310500px;}
.y15_c01012{bottom:295.749000px;}
.y14_c01012{bottom:312.187500px;}
.y13_c01012{bottom:328.626000px;}
.y12_c01012{bottom:345.064500px;}
.y11_c01012{bottom:361.503000px;}
.y10_c01012{bottom:377.941500px;}
.yf_c01012{bottom:394.006500px;}
.ye_c01012{bottom:441.940500px;}
.yd_c01012{bottom:459.873000px;}
.yc_c01012{bottom:477.807000px;}
.yb_c01012{bottom:495.739500px;}
.ya_c01012{bottom:513.672000px;}
.y9_c01012{bottom:531.604500px;}
.y8_c01012{bottom:549.537000px;}
.y7_c01012{bottom:567.469500px;}
.y6_c01012{bottom:594.328500px;}
.y5_c01012{bottom:621.187500px;}
.y4_c01012{bottom:639.120000px;}
.y3_c01012{bottom:665.979000px;}
.y2_c01012{bottom:692.838000px;}
.y1_c01012{bottom:735.069000px;}
.h5_c01012{height:35.190766px;}
.h6_c01012{height:36.007158px;}
.h3_c01012{height:40.511979px;}
.h4_c01012{height:52.332837px;}
.h2_c01012{height:58.337477px;}
.h0_c01012{height:1262.835000px;}
.h1_c01012{height:1263.000000px;}
.w0_c01012{width:892.920000px;}
.w1_c01012{width:893.250000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:127.558500px;}
.x2_c01012{left:137.122500px;}
.x3_c01012{left:435.249000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls3_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:0.078221pt;}
.ls2_c01012{letter-spacing:0.087539pt;}
.ls1_c01012{letter-spacing:0.092873pt;}
.ws2_c01012{word-spacing:-23.622682pt;}
.ws10_c01012{word-spacing:-23.544461pt;}
.ws5_c01012{word-spacing:-18.490586pt;}
.wse_c01012{word-spacing:-18.224916pt;}
.wsb_c01012{word-spacing:-17.959247pt;}
.wsd_c01012{word-spacing:-17.852979pt;}
.ws6_c01012{word-spacing:-16.684034pt;}
.ws4_c01012{word-spacing:-15.143152pt;}
.wsa_c01012{word-spacing:-14.664947pt;}
.ws9_c01012{word-spacing:-14.346144pt;}
.ws7_c01012{word-spacing:-13.283467pt;}
.wsc_c01012{word-spacing:-13.017797pt;}
.ws1_c01012{word-spacing:-8.878599pt;}
.ws3_c01012{word-spacing:-8.877777pt;}
.ws8_c01012{word-spacing:-4.181461pt;}
.ws14_c01012{word-spacing:0.000000pt;}
.ws11_c01012{word-spacing:0.039110pt;}
.wsf_c01012{word-spacing:0.156442pt;}
.ws13_c01012{word-spacing:0.189730pt;}
.ws12_c01012{word-spacing:0.195063pt;}
.ws0_c01012{word-spacing:38.256533pt;}
._0_c01012{margin-left:-5.661967pt;}
._3_c01012{margin-left:-4.356977pt;}
._4_c01012{margin-left:-2.922363pt;}
._1_c01012{margin-left:-1.377235pt;}
._8_c01012{width:0.893988pt;}
._2_c01012{width:16.839077pt;}
._7_c01012{width:17.906113pt;}
._5_c01012{width:23.633479pt;}
._6_c01012{width:28.961293pt;}
.fs2_c01012{font-size:39.110400pt;}
.fs1_c01012{font-size:53.133867pt;}
.fs0_c01012{font-size:76.513067pt;}
.y0_c01012{bottom:0.000000pt;}
.y20_c01012{bottom:39.333333pt;}
.y1f_c01012{bottom:72.934667pt;}
.y1e_c01012{bottom:87.546667pt;}
.y1d_c01012{bottom:116.769333pt;}
.y1c_c01012{bottom:131.381333pt;}
.y1b_c01012{bottom:160.605333pt;}
.y1a_c01012{bottom:175.217333pt;}
.y19_c01012{bottom:189.829333pt;}
.y18_c01012{bottom:204.441333pt;}
.y17_c01012{bottom:233.665333pt;}
.y16_c01012{bottom:248.276000pt;}
.y15_c01012{bottom:262.888000pt;}
.y14_c01012{bottom:277.500000pt;}
.y13_c01012{bottom:292.112000pt;}
.y12_c01012{bottom:306.724000pt;}
.y11_c01012{bottom:321.336000pt;}
.y10_c01012{bottom:335.948000pt;}
.yf_c01012{bottom:350.228000pt;}
.ye_c01012{bottom:392.836000pt;}
.yd_c01012{bottom:408.776000pt;}
.yc_c01012{bottom:424.717333pt;}
.yb_c01012{bottom:440.657333pt;}
.ya_c01012{bottom:456.597333pt;}
.y9_c01012{bottom:472.537333pt;}
.y8_c01012{bottom:488.477333pt;}
.y7_c01012{bottom:504.417333pt;}
.y6_c01012{bottom:528.292000pt;}
.y5_c01012{bottom:552.166667pt;}
.y4_c01012{bottom:568.106667pt;}
.y3_c01012{bottom:591.981333pt;}
.y2_c01012{bottom:615.856000pt;}
.y1_c01012{bottom:653.394667pt;}
.h5_c01012{height:31.280681pt;}
.h6_c01012{height:32.006363pt;}
.h3_c01012{height:36.010648pt;}
.h4_c01012{height:46.518078pt;}
.h2_c01012{height:51.855535pt;}
.h0_c01012{height:1122.520000pt;}
.h1_c01012{height:1122.666667pt;}
.w0_c01012{width:793.706667pt;}
.w1_c01012{width:794.000000pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:113.385333pt;}
.x2_c01012{left:121.886667pt;}
.x3_c01012{left:386.888000pt;}
}





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

.ir_c01013:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_9d689700e2500cbbeac0cc0a.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01013;src:url('chunks/assets/font_21eebe48005db319f884c0cd.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01013;src:url('chunks/assets/font_b8e3e8b3e047d64e71a78da8.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01013;src:url('chunks/assets/font_1a67771b607e7463aad5a5f4.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls3_c01013{letter-spacing:0.000000px;}
.ls0_c01013{letter-spacing:0.087998px;}
.ls1_c01013{letter-spacing:0.098482px;}
.ls2_c01013{letter-spacing:0.104482px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:-26.575517px;}
.ws2_c01013{word-spacing:-26.487518px;}
.ws5_c01013{word-spacing:0.000000px;}
.ws4_c01013{word-spacing:0.043999px;}
.ws3_c01013{word-spacing:0.053933px;}
.ws8_c01013{word-spacing:0.056767px;}
.ws6_c01013{word-spacing:0.066701px;}
.ws1_c01013{word-spacing:0.175997px;}
.ws9_c01013{word-spacing:0.213446px;}
.ws7_c01013{word-spacing:0.219446px;}
._0_c01013{width:1.077888px;}
._1_c01013{width:80.254541px;}
.fc5_c01013{color:rgb(0,0,207);}
.fc4_c01013{color:rgb(79,153,5);}
.fc3_c01013{color:rgb(33,74,135);}
.fc2_c01013{color:rgb(143,89,3);}
.fc1_c01013{color:rgb(207,92,0);}
.fc0_c01013{color:rgb(0,0,0);}
.fs0_c01013{font-size:43.999200px;}
.fs1_c01013{font-size:59.775600px;}
.y0_c01013{bottom:0.000000px;}
.y33_c01013{bottom:44.250000px;}
.y32_c01013{bottom:255.753000px;}
.y31_c01013{bottom:272.191500px;}
.y30_c01013{bottom:288.630000px;}
.y2f_c01013{bottom:305.068500px;}
.y2e_c01013{bottom:321.507000px;}
.y2d_c01013{bottom:337.945500px;}
.y2c_c01013{bottom:354.384000px;}
.y2b_c01013{bottom:370.822500px;}
.y2a_c01013{bottom:387.259500px;}
.y29_c01013{bottom:403.698000px;}
.y28_c01013{bottom:420.136500px;}
.y27_c01013{bottom:453.013500px;}
.y26_c01013{bottom:469.452000px;}
.y25_c01013{bottom:485.890500px;}
.y24_c01013{bottom:518.767500px;}
.y23_c01013{bottom:535.206000px;}
.y22_c01013{bottom:551.643000px;}
.y21_c01013{bottom:568.081500px;}
.y20_c01013{bottom:584.520000px;}
.y1f_c01013{bottom:600.958500px;}
.y1e_c01013{bottom:617.397000px;}
.y1d_c01013{bottom:633.835500px;}
.y1c_c01013{bottom:650.274000px;}
.y1b_c01013{bottom:666.712500px;}
.y1a_c01013{bottom:683.151000px;}
.y19_c01013{bottom:699.589500px;}
.y18_c01013{bottom:716.028000px;}
.y17_c01013{bottom:732.465000px;}
.y16_c01013{bottom:748.903500px;}
.y15_c01013{bottom:765.342000px;}
.y14_c01013{bottom:781.780500px;}
.y13_c01013{bottom:798.219000px;}
.y12_c01013{bottom:814.657500px;}
.y11_c01013{bottom:831.096000px;}
.y10_c01013{bottom:847.534500px;}
.yf_c01013{bottom:863.973000px;}
.ye_c01013{bottom:880.411500px;}
.yd_c01013{bottom:896.848500px;}
.yc_c01013{bottom:929.725500px;}
.yb_c01013{bottom:946.164000px;}
.ya_c01013{bottom:962.602500px;}
.y9_c01013{bottom:979.041000px;}
.y8_c01013{bottom:1028.356500px;}
.y7_c01013{bottom:1044.795000px;}
.y6_c01013{bottom:1077.670500px;}
.y5_c01013{bottom:1094.109000px;}
.y4_c01013{bottom:1110.547500px;}
.y3_c01013{bottom:1126.986000px;}
.y2_c01013{bottom:1143.424500px;}
.y1_c01013{bottom:1159.863000px;}
.h3_c01013{height:35.190766px;}
.h2_c01013{height:36.007158px;}
.h4_c01013{height:52.332837px;}
.h0_c01013{height:1262.835000px;}
.h1_c01013{height:1263.000000px;}
.w0_c01013{width:892.920000px;}
.w1_c01013{width:893.250000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:137.122500px;}
.x2_c01013{left:143.770500px;}
.x6_c01013{left:177.007500px;}
.x5_c01013{left:230.185500px;}
.x3_c01013{left:243.480000px;}
.x4_c01013{left:276.715500px;}
.x7_c01013{left:435.249000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls3_c01013{letter-spacing:0.000000pt;}
.ls0_c01013{letter-spacing:0.078221pt;}
.ls1_c01013{letter-spacing:0.087539pt;}
.ls2_c01013{letter-spacing:0.092873pt;}
.ws0_c01013{word-spacing:-23.622682pt;}
.ws2_c01013{word-spacing:-23.544461pt;}
.ws5_c01013{word-spacing:0.000000pt;}
.ws4_c01013{word-spacing:0.039110pt;}
.ws3_c01013{word-spacing:0.047940pt;}
.ws8_c01013{word-spacing:0.050460pt;}
.ws6_c01013{word-spacing:0.059290pt;}
.ws1_c01013{word-spacing:0.156442pt;}
.ws9_c01013{word-spacing:0.189730pt;}
.ws7_c01013{word-spacing:0.195063pt;}
._0_c01013{width:0.958123pt;}
._1_c01013{width:71.337370pt;}
.fs0_c01013{font-size:39.110400pt;}
.fs1_c01013{font-size:53.133867pt;}
.y0_c01013{bottom:0.000000pt;}
.y33_c01013{bottom:39.333333pt;}
.y32_c01013{bottom:227.336000pt;}
.y31_c01013{bottom:241.948000pt;}
.y30_c01013{bottom:256.560000pt;}
.y2f_c01013{bottom:271.172000pt;}
.y2e_c01013{bottom:285.784000pt;}
.y2d_c01013{bottom:300.396000pt;}
.y2c_c01013{bottom:315.008000pt;}
.y2b_c01013{bottom:329.620000pt;}
.y2a_c01013{bottom:344.230667pt;}
.y29_c01013{bottom:358.842667pt;}
.y28_c01013{bottom:373.454667pt;}
.y27_c01013{bottom:402.678667pt;}
.y26_c01013{bottom:417.290667pt;}
.y25_c01013{bottom:431.902667pt;}
.y24_c01013{bottom:461.126667pt;}
.y23_c01013{bottom:475.738667pt;}
.y22_c01013{bottom:490.349333pt;}
.y21_c01013{bottom:504.961333pt;}
.y20_c01013{bottom:519.573333pt;}
.y1f_c01013{bottom:534.185333pt;}
.y1e_c01013{bottom:548.797333pt;}
.y1d_c01013{bottom:563.409333pt;}
.y1c_c01013{bottom:578.021333pt;}
.y1b_c01013{bottom:592.633333pt;}
.y1a_c01013{bottom:607.245333pt;}
.y19_c01013{bottom:621.857333pt;}
.y18_c01013{bottom:636.469333pt;}
.y17_c01013{bottom:651.080000pt;}
.y16_c01013{bottom:665.692000pt;}
.y15_c01013{bottom:680.304000pt;}
.y14_c01013{bottom:694.916000pt;}
.y13_c01013{bottom:709.528000pt;}
.y12_c01013{bottom:724.140000pt;}
.y11_c01013{bottom:738.752000pt;}
.y10_c01013{bottom:753.364000pt;}
.yf_c01013{bottom:767.976000pt;}
.ye_c01013{bottom:782.588000pt;}
.yd_c01013{bottom:797.198667pt;}
.yc_c01013{bottom:826.422667pt;}
.yb_c01013{bottom:841.034667pt;}
.ya_c01013{bottom:855.646667pt;}
.y9_c01013{bottom:870.258667pt;}
.y8_c01013{bottom:914.094667pt;}
.y7_c01013{bottom:928.706667pt;}
.y6_c01013{bottom:957.929333pt;}
.y5_c01013{bottom:972.541333pt;}
.y4_c01013{bottom:987.153333pt;}
.y3_c01013{bottom:1001.765333pt;}
.y2_c01013{bottom:1016.377333pt;}
.y1_c01013{bottom:1030.989333pt;}
.h3_c01013{height:31.280681pt;}
.h2_c01013{height:32.006363pt;}
.h4_c01013{height:46.518078pt;}
.h0_c01013{height:1122.520000pt;}
.h1_c01013{height:1122.666667pt;}
.w0_c01013{width:793.706667pt;}
.w1_c01013{width:794.000000pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:121.886667pt;}
.x2_c01013{left:127.796000pt;}
.x6_c01013{left:157.340000pt;}
.x5_c01013{left:204.609333pt;}
.x3_c01013{left:216.426667pt;}
.x4_c01013{left:245.969333pt;}
.x7_c01013{left:386.888000pt;}
}





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

.ir_c01014:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_9d997b7e8755c528becf308f.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01014;src:url('chunks/assets/font_29e186e33db1ecb95601f49b.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01014;src:url('chunks/assets/font_77c06241535f2c6bae7e423d.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01014;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01014;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01014;src:url('chunks/assets/font_68d49636befcddcd13ff4019.woff2')format("woff");}.ff6_c01014{font-family:ff6_c01014;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01014{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls3_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:0.087998px;}
.ls2_c01014{letter-spacing:0.098482px;}
.ls1_c01014{letter-spacing:0.104482px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01014{word-spacing:-33.713438px;}
.ws2_c01014{word-spacing:-26.575517px;}
.ws10_c01014{word-spacing:-26.487518px;}
.wsb_c01014{word-spacing:-21.553319px;}
.wsa_c01014{word-spacing:-21.519216px;}
.ws6_c01014{word-spacing:-18.769538px;}
.ws5_c01014{word-spacing:-17.633802px;}
.ws9_c01014{word-spacing:-16.019861px;}
.ws7_c01014{word-spacing:-14.943900px;}
.wsc_c01014{word-spacing:-14.107042px;}
.ws4_c01014{word-spacing:-13.867939px;}
.wsd_c01014{word-spacing:-12.074671px;}
.ws1_c01014{word-spacing:-9.988424px;}
.ws3_c01014{word-spacing:-9.987499px;}
.ws8_c01014{word-spacing:-4.536144px;}
.ws14_c01014{word-spacing:0.000000px;}
.ws11_c01014{word-spacing:0.043999px;}
.ws17_c01014{word-spacing:0.056767px;}
.ws15_c01014{word-spacing:0.073250px;}
.wsf_c01014{word-spacing:0.175997px;}
.ws18_c01014{word-spacing:0.202963px;}
.ws12_c01014{word-spacing:0.213446px;}
.ws13_c01014{word-spacing:0.219446px;}
.ws16_c01014{word-spacing:26.619516px;}
.ws0_c01014{word-spacing:43.038600px;}
._a_c01014{margin-left:-2131.273500px;}
._0_c01014{margin-left:-6.369713px;}
._3_c01014{margin-left:-4.782048px;}
._7_c01014{margin-left:-3.287658px;}
._1_c01014{margin-left:-1.549390px;}
._8_c01014{width:1.005737px;}
._6_c01014{width:15.960085px;}
._4_c01014{width:19.930500px;}
._2_c01014{width:22.261855px;}
._5_c01014{width:40.109428px;}
._c_c01014{width:53.283031px;}
._9_c01014{width:79.858548px;}
._b_c01014{width:133.452408px;}
.fc6_c01014{color:rgb(0,0,207);}
.fc5_c01014{color:rgb(79,153,5);}
.fc3_c01014{color:rgb(33,74,135);}
.fc2_c01014{color:rgb(143,89,3);}
.fc4_c01014{color:rgb(207,92,0);}
.fc1_c01014{color:rgb(6,69,173);}
.fc0_c01014{color:rgb(0,0,0);}
.fs3_c01014{font-size:31.015800px;}
.fs2_c01014{font-size:43.999200px;}
.fs1_c01014{font-size:59.775600px;}
.fs0_c01014{font-size:86.077200px;}
.y0_c01014{bottom:0.000000px;}
.y20_c01014{bottom:44.250000px;}
.y1f_c01014{bottom:86.982000px;}
.y1e_c01014{bottom:103.420500px;}
.y1d_c01014{bottom:119.859000px;}
.y1c_c01014{bottom:136.297500px;}
.y1b_c01014{bottom:152.736000px;}
.y1a_c01014{bottom:169.174500px;}
.y19_c01014{bottom:185.239500px;}
.y18_c01014{bottom:201.678000px;}
.y17_c01014{bottom:218.115000px;}
.y16_c01014{bottom:234.553500px;}
.y15_c01014{bottom:250.992000px;}
.y14_c01014{bottom:267.430500px;}
.y13_c01014{bottom:283.869000px;}
.y12_c01014{bottom:300.307500px;}
.y11_c01014{bottom:333.184500px;}
.y10_c01014{bottom:349.623000px;}
.yf_c01014{bottom:398.937000px;}
.ye_c01014{bottom:415.375500px;}
.yd_c01014{bottom:431.440500px;}
.yc_c01014{bottom:476.827500px;}
.yb_c01014{bottom:494.760000px;}
.ya_c01014{bottom:512.694000px;}
.y9_c01014{bottom:530.626500px;}
.y8_c01014{bottom:548.559000px;}
.y7_c01014{bottom:566.491500px;}
.y6_c01014{bottom:593.472000px;}
.y5_c01014{bottom:620.451000px;}
.y4_c01014{bottom:638.383500px;}
.y3_c01014{bottom:665.364000px;}
.y2_c01014{bottom:692.343000px;}
.y1_c01014{bottom:734.731500px;}
.h5_c01014{height:35.190766px;}
.h6_c01014{height:36.007158px;}
.h3_c01014{height:40.511979px;}
.h4_c01014{height:52.332837px;}
.h2_c01014{height:58.337477px;}
.h0_c01014{height:1262.835000px;}
.h1_c01014{height:1263.000000px;}
.w0_c01014{width:892.920000px;}
.w1_c01014{width:893.250000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:127.558500px;}
.x2_c01014{left:137.122500px;}
.x3_c01014{left:143.770500px;}
.x4_c01014{left:170.359500px;}
.x5_c01014{left:435.249000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls3_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:0.078221pt;}
.ls2_c01014{letter-spacing:0.087539pt;}
.ls1_c01014{letter-spacing:0.092873pt;}
.wse_c01014{word-spacing:-29.967501pt;}
.ws2_c01014{word-spacing:-23.622682pt;}
.ws10_c01014{word-spacing:-23.544461pt;}
.wsb_c01014{word-spacing:-19.158506pt;}
.wsa_c01014{word-spacing:-19.128192pt;}
.ws6_c01014{word-spacing:-16.684034pt;}
.ws5_c01014{word-spacing:-15.674491pt;}
.ws9_c01014{word-spacing:-14.239876pt;}
.ws7_c01014{word-spacing:-13.283467pt;}
.wsc_c01014{word-spacing:-12.539593pt;}
.ws4_c01014{word-spacing:-12.327057pt;}
.wsd_c01014{word-spacing:-10.733041pt;}
.ws1_c01014{word-spacing:-8.878599pt;}
.ws3_c01014{word-spacing:-8.877777pt;}
.ws8_c01014{word-spacing:-4.032128pt;}
.ws14_c01014{word-spacing:0.000000pt;}
.ws11_c01014{word-spacing:0.039110pt;}
.ws17_c01014{word-spacing:0.050460pt;}
.ws15_c01014{word-spacing:0.065111pt;}
.wsf_c01014{word-spacing:0.156442pt;}
.ws18_c01014{word-spacing:0.180412pt;}
.ws12_c01014{word-spacing:0.189730pt;}
.ws13_c01014{word-spacing:0.195063pt;}
.ws16_c01014{word-spacing:23.661792pt;}
.ws0_c01014{word-spacing:38.256533pt;}
._a_c01014{margin-left:-1894.465333pt;}
._0_c01014{margin-left:-5.661967pt;}
._3_c01014{margin-left:-4.250709pt;}
._7_c01014{margin-left:-2.922363pt;}
._1_c01014{margin-left:-1.377235pt;}
._8_c01014{width:0.893988pt;}
._6_c01014{width:14.186742pt;}
._4_c01014{width:17.716000pt;}
._2_c01014{width:19.788316pt;}
._5_c01014{width:35.652825pt;}
._c_c01014{width:47.362694pt;}
._9_c01014{width:70.985376pt;}
._b_c01014{width:118.624363pt;}
.fs3_c01014{font-size:27.569600pt;}
.fs2_c01014{font-size:39.110400pt;}
.fs1_c01014{font-size:53.133867pt;}
.fs0_c01014{font-size:76.513067pt;}
.y0_c01014{bottom:0.000000pt;}
.y20_c01014{bottom:39.333333pt;}
.y1f_c01014{bottom:77.317333pt;}
.y1e_c01014{bottom:91.929333pt;}
.y1d_c01014{bottom:106.541333pt;}
.y1c_c01014{bottom:121.153333pt;}
.y1b_c01014{bottom:135.765333pt;}
.y1a_c01014{bottom:150.377333pt;}
.y19_c01014{bottom:164.657333pt;}
.y18_c01014{bottom:179.269333pt;}
.y17_c01014{bottom:193.880000pt;}
.y16_c01014{bottom:208.492000pt;}
.y15_c01014{bottom:223.104000pt;}
.y14_c01014{bottom:237.716000pt;}
.y13_c01014{bottom:252.328000pt;}
.y12_c01014{bottom:266.940000pt;}
.y11_c01014{bottom:296.164000pt;}
.y10_c01014{bottom:310.776000pt;}
.yf_c01014{bottom:354.610667pt;}
.ye_c01014{bottom:369.222667pt;}
.yd_c01014{bottom:383.502667pt;}
.yc_c01014{bottom:423.846667pt;}
.yb_c01014{bottom:439.786667pt;}
.ya_c01014{bottom:455.728000pt;}
.y9_c01014{bottom:471.668000pt;}
.y8_c01014{bottom:487.608000pt;}
.y7_c01014{bottom:503.548000pt;}
.y6_c01014{bottom:527.530667pt;}
.y5_c01014{bottom:551.512000pt;}
.y4_c01014{bottom:567.452000pt;}
.y3_c01014{bottom:591.434667pt;}
.y2_c01014{bottom:615.416000pt;}
.y1_c01014{bottom:653.094667pt;}
.h5_c01014{height:31.280681pt;}
.h6_c01014{height:32.006363pt;}
.h3_c01014{height:36.010648pt;}
.h4_c01014{height:46.518078pt;}
.h2_c01014{height:51.855535pt;}
.h0_c01014{height:1122.520000pt;}
.h1_c01014{height:1122.666667pt;}
.w0_c01014{width:793.706667pt;}
.w1_c01014{width:794.000000pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:113.385333pt;}
.x2_c01014{left:121.886667pt;}
.x3_c01014{left:127.796000pt;}
.x4_c01014{left:151.430667pt;}
.x5_c01014{left:386.888000pt;}
}





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

.ir_c01015:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_e74817854716c2d36582bc49.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01015;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01015;src:url('chunks/assets/font_2e3f2b6f5dc37549a425337d.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01015;src:url('chunks/assets/font_2b74e5de9fc7421d67b51fd0.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01015;src:url('chunks/assets/font_d44c12b1a00c372cdd8b21e7.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls4_c01015{letter-spacing:0.000000px;}
.ls0_c01015{letter-spacing:0.087998px;}
.ls1_c01015{letter-spacing:0.098482px;}
.ls3_c01015{letter-spacing:0.104482px;}
.ls2_c01015{letter-spacing:26.690482px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01015{word-spacing:-26.575517px;}
.ws6_c01015{word-spacing:-26.487518px;}
.wsc_c01015{word-spacing:-19.725948px;}
.wsd_c01015{word-spacing:-18.769538px;}
.wsb_c01015{word-spacing:-15.900310px;}
.wse_c01015{word-spacing:-14.943900px;}
.ws9_c01015{word-spacing:-9.988424px;}
.wsa_c01015{word-spacing:-9.987499px;}
.ws5_c01015{word-spacing:0.000000px;}
.ws3_c01015{word-spacing:0.043999px;}
.ws2_c01015{word-spacing:0.073250px;}
.ws0_c01015{word-spacing:0.083734px;}
.ws7_c01015{word-spacing:0.213446px;}
.ws4_c01015{word-spacing:0.219446px;}
.ws8_c01015{word-spacing:43.038600px;}
._3_c01015{margin-left:-6.369713px;}
._6_c01015{margin-left:-4.722272px;}
._4_c01015{margin-left:-1.549390px;}
._2_c01015{width:1.128106px;}
._5_c01015{width:19.458226px;}
._0_c01015{width:53.283031px;}
._1_c01015{width:79.858548px;}
.fc5_c01015{color:rgb(79,153,5);}
.fc4_c01015{color:rgb(207,92,0);}
.fc3_c01015{color:rgb(0,0,207);}
.fc2_c01015{color:rgb(0,0,0);}
.fc1_c01015{color:rgb(143,89,3);}
.fc0_c01015{color:rgb(33,74,135);}
.fs0_c01015{font-size:43.999200px;}
.fs2_c01015{font-size:59.775600px;}
.fs1_c01015{font-size:86.077200px;}
.y0_c01015{bottom:0.000000px;}
.y1f_c01015{bottom:44.250000px;}
.y1e_c01015{bottom:82.051500px;}
.y1d_c01015{bottom:112.167000px;}
.y1c_c01015{bottom:130.099500px;}
.y1b_c01015{bottom:160.215000px;}
.y1a_c01015{bottom:190.330500px;}
.y19_c01015{bottom:237.258000px;}
.y18_c01015{bottom:716.028000px;}
.y17_c01015{bottom:732.465000px;}
.y16_c01015{bottom:748.903500px;}
.y15_c01015{bottom:765.342000px;}
.y14_c01015{bottom:781.780500px;}
.y13_c01015{bottom:798.219000px;}
.y12_c01015{bottom:814.657500px;}
.y11_c01015{bottom:831.096000px;}
.y10_c01015{bottom:847.534500px;}
.yf_c01015{bottom:863.973000px;}
.ye_c01015{bottom:880.411500px;}
.yd_c01015{bottom:913.287000px;}
.yc_c01015{bottom:929.725500px;}
.yb_c01015{bottom:946.164000px;}
.ya_c01015{bottom:979.041000px;}
.y9_c01015{bottom:995.479500px;}
.y8_c01015{bottom:1011.918000px;}
.y7_c01015{bottom:1028.356500px;}
.y6_c01015{bottom:1044.795000px;}
.y5_c01015{bottom:1061.232000px;}
.y4_c01015{bottom:1077.670500px;}
.y3_c01015{bottom:1126.986000px;}
.y2_c01015{bottom:1143.424500px;}
.y1_c01015{bottom:1159.863000px;}
.h3_c01015{height:35.190766px;}
.h2_c01015{height:36.007158px;}
.h5_c01015{height:40.511979px;}
.h6_c01015{height:52.332837px;}
.h4_c01015{height:58.337477px;}
.h0_c01015{height:1262.835000px;}
.h1_c01015{height:1263.000000px;}
.w0_c01015{width:892.920000px;}
.w1_c01015{width:893.250000px;}
.x0_c01015{left:0.000000px;}
.x4_c01015{left:127.558500px;}
.x2_c01015{left:137.122500px;}
.x1_c01015{left:143.770500px;}
.x3_c01015{left:177.007500px;}
.x5_c01015{left:435.249000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls4_c01015{letter-spacing:0.000000pt;}
.ls0_c01015{letter-spacing:0.078221pt;}
.ls1_c01015{letter-spacing:0.087539pt;}
.ls3_c01015{letter-spacing:0.092873pt;}
.ls2_c01015{letter-spacing:23.724873pt;}
.ws1_c01015{word-spacing:-23.622682pt;}
.ws6_c01015{word-spacing:-23.544461pt;}
.wsc_c01015{word-spacing:-17.534176pt;}
.wsd_c01015{word-spacing:-16.684034pt;}
.wsb_c01015{word-spacing:-14.133609pt;}
.wse_c01015{word-spacing:-13.283467pt;}
.ws9_c01015{word-spacing:-8.878599pt;}
.wsa_c01015{word-spacing:-8.877777pt;}
.ws5_c01015{word-spacing:0.000000pt;}
.ws3_c01015{word-spacing:0.039110pt;}
.ws2_c01015{word-spacing:0.065111pt;}
.ws0_c01015{word-spacing:0.074430pt;}
.ws7_c01015{word-spacing:0.189730pt;}
.ws4_c01015{word-spacing:0.195063pt;}
.ws8_c01015{word-spacing:38.256533pt;}
._3_c01015{margin-left:-5.661967pt;}
._6_c01015{margin-left:-4.197575pt;}
._4_c01015{margin-left:-1.377235pt;}
._2_c01015{width:1.002761pt;}
._5_c01015{width:17.296201pt;}
._0_c01015{width:47.362694pt;}
._1_c01015{width:70.985376pt;}
.fs0_c01015{font-size:39.110400pt;}
.fs2_c01015{font-size:53.133867pt;}
.fs1_c01015{font-size:76.513067pt;}
.y0_c01015{bottom:0.000000pt;}
.y1f_c01015{bottom:39.333333pt;}
.y1e_c01015{bottom:72.934667pt;}
.y1d_c01015{bottom:99.704000pt;}
.y1c_c01015{bottom:115.644000pt;}
.y1b_c01015{bottom:142.413333pt;}
.y1a_c01015{bottom:169.182667pt;}
.y19_c01015{bottom:210.896000pt;}
.y18_c01015{bottom:636.469333pt;}
.y17_c01015{bottom:651.080000pt;}
.y16_c01015{bottom:665.692000pt;}
.y15_c01015{bottom:680.304000pt;}
.y14_c01015{bottom:694.916000pt;}
.y13_c01015{bottom:709.528000pt;}
.y12_c01015{bottom:724.140000pt;}
.y11_c01015{bottom:738.752000pt;}
.y10_c01015{bottom:753.364000pt;}
.yf_c01015{bottom:767.976000pt;}
.ye_c01015{bottom:782.588000pt;}
.yd_c01015{bottom:811.810667pt;}
.yc_c01015{bottom:826.422667pt;}
.yb_c01015{bottom:841.034667pt;}
.ya_c01015{bottom:870.258667pt;}
.y9_c01015{bottom:884.870667pt;}
.y8_c01015{bottom:899.482667pt;}
.y7_c01015{bottom:914.094667pt;}
.y6_c01015{bottom:928.706667pt;}
.y5_c01015{bottom:943.317333pt;}
.y4_c01015{bottom:957.929333pt;}
.y3_c01015{bottom:1001.765333pt;}
.y2_c01015{bottom:1016.377333pt;}
.y1_c01015{bottom:1030.989333pt;}
.h3_c01015{height:31.280681pt;}
.h2_c01015{height:32.006363pt;}
.h5_c01015{height:36.010648pt;}
.h6_c01015{height:46.518078pt;}
.h4_c01015{height:51.855535pt;}
.h0_c01015{height:1122.520000pt;}
.h1_c01015{height:1122.666667pt;}
.w0_c01015{width:793.706667pt;}
.w1_c01015{width:794.000000pt;}
.x0_c01015{left:0.000000pt;}
.x4_c01015{left:113.385333pt;}
.x2_c01015{left:121.886667pt;}
.x1_c01015{left:127.796000pt;}
.x3_c01015{left:157.340000pt;}
.x5_c01015{left:386.888000pt;}
}





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

.ir_c01016:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01016;src:url('chunks/assets/font_f06d0bbcabf832f5d9ab85fe.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01016;src:url('chunks/assets/font_cfaa2bd12325432d92d973be.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01016;src:url('chunks/assets/font_d6f55179d7e170609e1f471e.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01016;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01016;src:url('chunks/assets/font_e8454f4ef40bf8bd9c292eb3.woff2')format("woff");}.ff6_c01016{font-family:ff6_c01016;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01016{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls4_c01016{letter-spacing:0.000000px;}
.ls0_c01016{letter-spacing:0.087998px;}
.ls2_c01016{letter-spacing:0.098482px;}
.ls1_c01016{letter-spacing:0.104482px;}
.ls3_c01016{letter-spacing:26.690482px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01016{word-spacing:-33.713438px;}
.ws4_c01016{word-spacing:-26.575517px;}
.wsa_c01016{word-spacing:-26.487518px;}
.ws3_c01016{word-spacing:-21.553319px;}
.ws2_c01016{word-spacing:-21.519216px;}
.ws7_c01016{word-spacing:-18.769538px;}
.ws1_c01016{word-spacing:-17.633802px;}
.ws5_c01016{word-spacing:-14.107042px;}
.ws6_c01016{word-spacing:-12.074671px;}
.ws0_c01016{word-spacing:-7.686144px;}
.wse_c01016{word-spacing:0.000000px;}
.wsb_c01016{word-spacing:0.043999px;}
.ws11_c01016{word-spacing:0.056767px;}
.wsf_c01016{word-spacing:0.073250px;}
.ws13_c01016{word-spacing:0.083734px;}
.ws9_c01016{word-spacing:0.175997px;}
.ws12_c01016{word-spacing:0.202963px;}
.wsc_c01016{word-spacing:0.213446px;}
.wsd_c01016{word-spacing:0.219446px;}
.ws10_c01016{word-spacing:26.619516px;}
._7_c01016{margin-left:-2131.273500px;}
._4_c01016{margin-left:-3.825638px;}
._1_c01016{margin-left:-2.347817px;}
._0_c01016{margin-left:-1.075961px;}
._5_c01016{width:1.005737px;}
._2_c01016{width:20.742133px;}
._3_c01016{width:40.109428px;}
._9_c01016{width:53.283031px;}
._6_c01016{width:79.858548px;}
._8_c01016{width:133.452408px;}
.fc6_c01016{color:rgb(0,0,207);}
.fc5_c01016{color:rgb(79,153,5);}
.fc3_c01016{color:rgb(33,74,135);}
.fc2_c01016{color:rgb(143,89,3);}
.fc4_c01016{color:rgb(207,92,0);}
.fc1_c01016{color:rgb(6,69,173);}
.fc0_c01016{color:rgb(0,0,0);}
.fs2_c01016{font-size:31.015800px;}
.fs1_c01016{font-size:43.999200px;}
.fs0_c01016{font-size:59.775600px;}
.y0_c01016{bottom:0.000000px;}
.y32_c01016{bottom:44.250000px;}
.y31_c01016{bottom:96.919500px;}
.y30_c01016{bottom:113.358000px;}
.y2f_c01016{bottom:129.796500px;}
.y2e_c01016{bottom:146.235000px;}
.y2d_c01016{bottom:162.673500px;}
.y2c_c01016{bottom:179.112000px;}
.y2b_c01016{bottom:195.550500px;}
.y2a_c01016{bottom:211.989000px;}
.y29_c01016{bottom:228.427500px;}
.y28_c01016{bottom:244.866000px;}
.y27_c01016{bottom:261.304500px;}
.y26_c01016{bottom:294.180000px;}
.y25_c01016{bottom:310.618500px;}
.y24_c01016{bottom:327.057000px;}
.y23_c01016{bottom:359.934000px;}
.y22_c01016{bottom:376.372500px;}
.y21_c01016{bottom:392.811000px;}
.y20_c01016{bottom:409.249500px;}
.y1f_c01016{bottom:425.688000px;}
.y1e_c01016{bottom:442.125000px;}
.y1d_c01016{bottom:458.563500px;}
.y1c_c01016{bottom:507.879000px;}
.y1b_c01016{bottom:524.317500px;}
.y1a_c01016{bottom:540.756000px;}
.y19_c01016{bottom:557.194500px;}
.y18_c01016{bottom:573.633000px;}
.y17_c01016{bottom:590.071500px;}
.y16_c01016{bottom:606.508500px;}
.y15_c01016{bottom:622.947000px;}
.y14_c01016{bottom:639.385500px;}
.y13_c01016{bottom:655.450500px;}
.y12_c01016{bottom:671.889000px;}
.y11_c01016{bottom:688.327500px;}
.y10_c01016{bottom:704.766000px;}
.yf_c01016{bottom:721.204500px;}
.ye_c01016{bottom:737.643000px;}
.yd_c01016{bottom:754.081500px;}
.yc_c01016{bottom:770.518500px;}
.yb_c01016{bottom:803.395500px;}
.ya_c01016{bottom:819.834000px;}
.y9_c01016{bottom:869.149500px;}
.y8_c01016{bottom:885.588000px;}
.y7_c01016{bottom:901.653000px;}
.y6_c01016{bottom:1070.199000px;}
.y5_c01016{bottom:1088.131500px;}
.y4_c01016{bottom:1106.064000px;}
.y3_c01016{bottom:1123.998000px;}
.y2_c01016{bottom:1141.930500px;}
.y1_c01016{bottom:1159.863000px;}
.h3_c01016{height:35.190766px;}
.h4_c01016{height:36.007158px;}
.h2_c01016{height:52.332837px;}
.h0_c01016{height:1262.835000px;}
.h1_c01016{height:1263.000000px;}
.w0_c01016{width:892.920000px;}
.w1_c01016{width:893.250000px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:127.558500px;}
.x2_c01016{left:137.122500px;}
.x3_c01016{left:143.770500px;}
.x4_c01016{left:170.359500px;}
.x5_c01016{left:177.007500px;}
.x6_c01016{left:435.249000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls4_c01016{letter-spacing:0.000000pt;}
.ls0_c01016{letter-spacing:0.078221pt;}
.ls2_c01016{letter-spacing:0.087539pt;}
.ls1_c01016{letter-spacing:0.092873pt;}
.ls3_c01016{letter-spacing:23.724873pt;}
.ws8_c01016{word-spacing:-29.967501pt;}
.ws4_c01016{word-spacing:-23.622682pt;}
.wsa_c01016{word-spacing:-23.544461pt;}
.ws3_c01016{word-spacing:-19.158506pt;}
.ws2_c01016{word-spacing:-19.128192pt;}
.ws7_c01016{word-spacing:-16.684034pt;}
.ws1_c01016{word-spacing:-15.674491pt;}
.ws5_c01016{word-spacing:-12.539593pt;}
.ws6_c01016{word-spacing:-10.733041pt;}
.ws0_c01016{word-spacing:-6.832128pt;}
.wse_c01016{word-spacing:0.000000pt;}
.wsb_c01016{word-spacing:0.039110pt;}
.ws11_c01016{word-spacing:0.050460pt;}
.wsf_c01016{word-spacing:0.065111pt;}
.ws13_c01016{word-spacing:0.074430pt;}
.ws9_c01016{word-spacing:0.156442pt;}
.ws12_c01016{word-spacing:0.180412pt;}
.wsc_c01016{word-spacing:0.189730pt;}
.wsd_c01016{word-spacing:0.195063pt;}
.ws10_c01016{word-spacing:23.661792pt;}
._7_c01016{margin-left:-1894.465333pt;}
._4_c01016{margin-left:-3.400567pt;}
._1_c01016{margin-left:-2.086948pt;}
._0_c01016{margin-left:-0.956410pt;}
._5_c01016{width:0.893988pt;}
._2_c01016{width:18.437452pt;}
._3_c01016{width:35.652825pt;}
._9_c01016{width:47.362694pt;}
._6_c01016{width:70.985376pt;}
._8_c01016{width:118.624363pt;}
.fs2_c01016{font-size:27.569600pt;}
.fs1_c01016{font-size:39.110400pt;}
.fs0_c01016{font-size:53.133867pt;}
.y0_c01016{bottom:0.000000pt;}
.y32_c01016{bottom:39.333333pt;}
.y31_c01016{bottom:86.150667pt;}
.y30_c01016{bottom:100.762667pt;}
.y2f_c01016{bottom:115.374667pt;}
.y2e_c01016{bottom:129.986667pt;}
.y2d_c01016{bottom:144.598667pt;}
.y2c_c01016{bottom:159.210667pt;}
.y2b_c01016{bottom:173.822667pt;}
.y2a_c01016{bottom:188.434667pt;}
.y29_c01016{bottom:203.046667pt;}
.y28_c01016{bottom:217.658667pt;}
.y27_c01016{bottom:232.270667pt;}
.y26_c01016{bottom:261.493333pt;}
.y25_c01016{bottom:276.105333pt;}
.y24_c01016{bottom:290.717333pt;}
.y23_c01016{bottom:319.941333pt;}
.y22_c01016{bottom:334.553333pt;}
.y21_c01016{bottom:349.165333pt;}
.y20_c01016{bottom:363.777333pt;}
.y1f_c01016{bottom:378.389333pt;}
.y1e_c01016{bottom:393.000000pt;}
.y1d_c01016{bottom:407.612000pt;}
.y1c_c01016{bottom:451.448000pt;}
.y1b_c01016{bottom:466.060000pt;}
.y1a_c01016{bottom:480.672000pt;}
.y19_c01016{bottom:495.284000pt;}
.y18_c01016{bottom:509.896000pt;}
.y17_c01016{bottom:524.508000pt;}
.y16_c01016{bottom:539.118667pt;}
.y15_c01016{bottom:553.730667pt;}
.y14_c01016{bottom:568.342667pt;}
.y13_c01016{bottom:582.622667pt;}
.y12_c01016{bottom:597.234667pt;}
.y11_c01016{bottom:611.846667pt;}
.y10_c01016{bottom:626.458667pt;}
.yf_c01016{bottom:641.070667pt;}
.ye_c01016{bottom:655.682667pt;}
.yd_c01016{bottom:670.294667pt;}
.yc_c01016{bottom:684.905333pt;}
.yb_c01016{bottom:714.129333pt;}
.ya_c01016{bottom:728.741333pt;}
.y9_c01016{bottom:772.577333pt;}
.y8_c01016{bottom:787.189333pt;}
.y7_c01016{bottom:801.469333pt;}
.y6_c01016{bottom:951.288000pt;}
.y5_c01016{bottom:967.228000pt;}
.y4_c01016{bottom:983.168000pt;}
.y3_c01016{bottom:999.109333pt;}
.y2_c01016{bottom:1015.049333pt;}
.y1_c01016{bottom:1030.989333pt;}
.h3_c01016{height:31.280681pt;}
.h4_c01016{height:32.006363pt;}
.h2_c01016{height:46.518078pt;}
.h0_c01016{height:1122.520000pt;}
.h1_c01016{height:1122.666667pt;}
.w0_c01016{width:793.706667pt;}
.w1_c01016{width:794.000000pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:113.385333pt;}
.x2_c01016{left:121.886667pt;}
.x3_c01016{left:127.796000pt;}
.x4_c01016{left:151.430667pt;}
.x5_c01016{left:157.340000pt;}
.x6_c01016{left:386.888000pt;}
}





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

.ir_c01017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_5923272b4cac2bed7f959616.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01017;src:url('chunks/assets/font_ff9e94228c9ef46fd768f30e.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01017;src:url('chunks/assets/font_de9799c97b4d144e8535dc11.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01017;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01017;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01017;src:url('chunks/assets/font_ae6c2161e6319de4f8ceefe0.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls3_c01017{letter-spacing:0.000000px;}
.ls0_c01017{letter-spacing:0.087998px;}
.ls2_c01017{letter-spacing:0.098482px;}
.ls1_c01017{letter-spacing:0.104482px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01017{word-spacing:-33.713438px;}
.ws2_c01017{word-spacing:-26.575517px;}
.ws10_c01017{word-spacing:-26.487518px;}
.wsb_c01017{word-spacing:-21.553319px;}
.wsa_c01017{word-spacing:-21.519216px;}
.ws5_c01017{word-spacing:-20.801909px;}
.ws7_c01017{word-spacing:-18.769538px;}
.ws9_c01017{word-spacing:-17.633802px;}
.ws4_c01017{word-spacing:-16.976270px;}
.ws6_c01017{word-spacing:-14.943900px;}
.wsc_c01017{word-spacing:-14.107042px;}
.wsd_c01017{word-spacing:-12.074671px;}
.ws1_c01017{word-spacing:-9.988424px;}
.ws3_c01017{word-spacing:-9.987499px;}
.ws8_c01017{word-spacing:-7.686144px;}
.ws14_c01017{word-spacing:0.000000px;}
.ws11_c01017{word-spacing:0.043999px;}
.ws17_c01017{word-spacing:0.056767px;}
.ws15_c01017{word-spacing:0.073250px;}
.wsf_c01017{word-spacing:0.175997px;}
.ws18_c01017{word-spacing:0.202963px;}
.ws12_c01017{word-spacing:0.213446px;}
.ws13_c01017{word-spacing:0.219446px;}
.ws16_c01017{word-spacing:26.619516px;}
.ws0_c01017{word-spacing:43.038600px;}
._a_c01017{margin-left:-2131.273500px;}
._0_c01017{margin-left:-6.369713px;}
._3_c01017{margin-left:-4.782048px;}
._7_c01017{margin-left:-3.287658px;}
._1_c01017{margin-left:-1.549390px;}
._8_c01017{width:1.005737px;}
._6_c01017{width:15.960085px;}
._2_c01017{width:18.920186px;}
._4_c01017{width:19.930500px;}
._5_c01017{width:40.109428px;}
._c_c01017{width:53.283031px;}
._9_c01017{width:79.858548px;}
._b_c01017{width:133.452408px;}
.fc6_c01017{color:rgb(0,0,207);}
.fc5_c01017{color:rgb(79,153,5);}
.fc3_c01017{color:rgb(33,74,135);}
.fc2_c01017{color:rgb(143,89,3);}
.fc4_c01017{color:rgb(207,92,0);}
.fc1_c01017{color:rgb(6,69,173);}
.fc0_c01017{color:rgb(0,0,0);}
.fs3_c01017{font-size:31.015800px;}
.fs2_c01017{font-size:43.999200px;}
.fs1_c01017{font-size:59.775600px;}
.fs0_c01017{font-size:86.077200px;}
.y0_c01017{bottom:0.000000px;}
.y20_c01017{bottom:44.250000px;}
.y1f_c01017{bottom:86.982000px;}
.y1e_c01017{bottom:103.420500px;}
.y1d_c01017{bottom:119.859000px;}
.y1c_c01017{bottom:136.297500px;}
.y1b_c01017{bottom:152.736000px;}
.y1a_c01017{bottom:169.174500px;}
.y19_c01017{bottom:185.239500px;}
.y18_c01017{bottom:201.678000px;}
.y17_c01017{bottom:218.115000px;}
.y16_c01017{bottom:234.553500px;}
.y15_c01017{bottom:250.992000px;}
.y14_c01017{bottom:267.430500px;}
.y13_c01017{bottom:283.869000px;}
.y12_c01017{bottom:300.307500px;}
.y11_c01017{bottom:333.184500px;}
.y10_c01017{bottom:349.623000px;}
.yf_c01017{bottom:398.937000px;}
.ye_c01017{bottom:415.375500px;}
.yd_c01017{bottom:431.440500px;}
.yc_c01017{bottom:476.827500px;}
.yb_c01017{bottom:494.760000px;}
.ya_c01017{bottom:512.694000px;}
.y9_c01017{bottom:530.626500px;}
.y8_c01017{bottom:548.559000px;}
.y7_c01017{bottom:566.491500px;}
.y6_c01017{bottom:593.472000px;}
.y5_c01017{bottom:620.451000px;}
.y4_c01017{bottom:638.383500px;}
.y3_c01017{bottom:665.364000px;}
.y2_c01017{bottom:692.343000px;}
.y1_c01017{bottom:734.731500px;}
.h5_c01017{height:35.190766px;}
.h6_c01017{height:36.007158px;}
.h3_c01017{height:40.511979px;}
.h4_c01017{height:52.332837px;}
.h2_c01017{height:58.337477px;}
.h0_c01017{height:1262.835000px;}
.h1_c01017{height:1263.000000px;}
.w0_c01017{width:892.920000px;}
.w1_c01017{width:893.250000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:127.558500px;}
.x2_c01017{left:137.122500px;}
.x3_c01017{left:143.770500px;}
.x4_c01017{left:170.359500px;}
.x5_c01017{left:435.249000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls3_c01017{letter-spacing:0.000000pt;}
.ls0_c01017{letter-spacing:0.078221pt;}
.ls2_c01017{letter-spacing:0.087539pt;}
.ls1_c01017{letter-spacing:0.092873pt;}
.wse_c01017{word-spacing:-29.967501pt;}
.ws2_c01017{word-spacing:-23.622682pt;}
.ws10_c01017{word-spacing:-23.544461pt;}
.wsb_c01017{word-spacing:-19.158506pt;}
.wsa_c01017{word-spacing:-19.128192pt;}
.ws5_c01017{word-spacing:-18.490586pt;}
.ws7_c01017{word-spacing:-16.684034pt;}
.ws9_c01017{word-spacing:-15.674491pt;}
.ws4_c01017{word-spacing:-15.090018pt;}
.ws6_c01017{word-spacing:-13.283467pt;}
.wsc_c01017{word-spacing:-12.539593pt;}
.wsd_c01017{word-spacing:-10.733041pt;}
.ws1_c01017{word-spacing:-8.878599pt;}
.ws3_c01017{word-spacing:-8.877777pt;}
.ws8_c01017{word-spacing:-6.832128pt;}
.ws14_c01017{word-spacing:0.000000pt;}
.ws11_c01017{word-spacing:0.039110pt;}
.ws17_c01017{word-spacing:0.050460pt;}
.ws15_c01017{word-spacing:0.065111pt;}
.wsf_c01017{word-spacing:0.156442pt;}
.ws18_c01017{word-spacing:0.180412pt;}
.ws12_c01017{word-spacing:0.189730pt;}
.ws13_c01017{word-spacing:0.195063pt;}
.ws16_c01017{word-spacing:23.661792pt;}
.ws0_c01017{word-spacing:38.256533pt;}
._a_c01017{margin-left:-1894.465333pt;}
._0_c01017{margin-left:-5.661967pt;}
._3_c01017{margin-left:-4.250709pt;}
._7_c01017{margin-left:-2.922363pt;}
._1_c01017{margin-left:-1.377235pt;}
._8_c01017{width:0.893988pt;}
._6_c01017{width:14.186742pt;}
._2_c01017{width:16.817943pt;}
._4_c01017{width:17.716000pt;}
._5_c01017{width:35.652825pt;}
._c_c01017{width:47.362694pt;}
._9_c01017{width:70.985376pt;}
._b_c01017{width:118.624363pt;}
.fs3_c01017{font-size:27.569600pt;}
.fs2_c01017{font-size:39.110400pt;}
.fs1_c01017{font-size:53.133867pt;}
.fs0_c01017{font-size:76.513067pt;}
.y0_c01017{bottom:0.000000pt;}
.y20_c01017{bottom:39.333333pt;}
.y1f_c01017{bottom:77.317333pt;}
.y1e_c01017{bottom:91.929333pt;}
.y1d_c01017{bottom:106.541333pt;}
.y1c_c01017{bottom:121.153333pt;}
.y1b_c01017{bottom:135.765333pt;}
.y1a_c01017{bottom:150.377333pt;}
.y19_c01017{bottom:164.657333pt;}
.y18_c01017{bottom:179.269333pt;}
.y17_c01017{bottom:193.880000pt;}
.y16_c01017{bottom:208.492000pt;}
.y15_c01017{bottom:223.104000pt;}
.y14_c01017{bottom:237.716000pt;}
.y13_c01017{bottom:252.328000pt;}
.y12_c01017{bottom:266.940000pt;}
.y11_c01017{bottom:296.164000pt;}
.y10_c01017{bottom:310.776000pt;}
.yf_c01017{bottom:354.610667pt;}
.ye_c01017{bottom:369.222667pt;}
.yd_c01017{bottom:383.502667pt;}
.yc_c01017{bottom:423.846667pt;}
.yb_c01017{bottom:439.786667pt;}
.ya_c01017{bottom:455.728000pt;}
.y9_c01017{bottom:471.668000pt;}
.y8_c01017{bottom:487.608000pt;}
.y7_c01017{bottom:503.548000pt;}
.y6_c01017{bottom:527.530667pt;}
.y5_c01017{bottom:551.512000pt;}
.y4_c01017{bottom:567.452000pt;}
.y3_c01017{bottom:591.434667pt;}
.y2_c01017{bottom:615.416000pt;}
.y1_c01017{bottom:653.094667pt;}
.h5_c01017{height:31.280681pt;}
.h6_c01017{height:32.006363pt;}
.h3_c01017{height:36.010648pt;}
.h4_c01017{height:46.518078pt;}
.h2_c01017{height:51.855535pt;}
.h0_c01017{height:1122.520000pt;}
.h1_c01017{height:1122.666667pt;}
.w0_c01017{width:793.706667pt;}
.w1_c01017{width:794.000000pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:113.385333pt;}
.x2_c01017{left:121.886667pt;}
.x3_c01017{left:127.796000pt;}
.x4_c01017{left:151.430667pt;}
.x5_c01017{left:386.888000pt;}
}





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

.ir_c01018:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_422e51463c4233db36f8ee42.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01018;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01018;src:url('chunks/assets/font_f9e8cd8a1253256ee8b552c4.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01018;src:url('chunks/assets/font_3168098862d32ff3f67eec63.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01018;src:url('chunks/assets/font_def7a94b235274cc1be9cd1b.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01018{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls4_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:0.087998px;}
.ls1_c01018{letter-spacing:0.098482px;}
.ls3_c01018{letter-spacing:0.104482px;}
.ls2_c01018{letter-spacing:26.690482px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01018{word-spacing:-26.575517px;}
.ws6_c01018{word-spacing:-26.487518px;}
.ws12_c01018{word-spacing:-21.553319px;}
.ws11_c01018{word-spacing:-21.519216px;}
.ws10_c01018{word-spacing:-19.247743px;}
.wsd_c01018{word-spacing:-18.769538px;}
.wsc_c01018{word-spacing:-16.617617px;}
.wse_c01018{word-spacing:-14.943900px;}
.wsb_c01018{word-spacing:-12.851754px;}
.wsf_c01018{word-spacing:-10.230144px;}
.ws9_c01018{word-spacing:-9.988424px;}
.wsa_c01018{word-spacing:-9.987499px;}
.ws5_c01018{word-spacing:0.000000px;}
.ws3_c01018{word-spacing:0.043999px;}
.ws2_c01018{word-spacing:0.073250px;}
.ws0_c01018{word-spacing:0.083734px;}
.ws7_c01018{word-spacing:0.213446px;}
.ws4_c01018{word-spacing:0.219446px;}
.ws8_c01018{word-spacing:43.038600px;}
._3_c01018{margin-left:-6.369713px;}
._6_c01018{margin-left:-4.901599px;}
._4_c01018{margin-left:-1.549390px;}
._2_c01018{width:1.144589px;}
._7_c01018{width:19.930500px;}
._5_c01018{width:24.233670px;}
._0_c01018{width:53.283031px;}
._1_c01018{width:79.858548px;}
.fc5_c01018{color:rgb(79,153,5);}
.fc6_c01018{color:rgb(6,69,173);}
.fc4_c01018{color:rgb(207,92,0);}
.fc3_c01018{color:rgb(0,0,207);}
.fc2_c01018{color:rgb(0,0,0);}
.fc1_c01018{color:rgb(143,89,3);}
.fc0_c01018{color:rgb(33,74,135);}
.fs0_c01018{font-size:43.999200px;}
.fs2_c01018{font-size:59.775600px;}
.fs1_c01018{font-size:86.077200px;}
.y0_c01018{bottom:0.000000px;}
.y21_c01018{bottom:44.250000px;}
.y20_c01018{bottom:82.051500px;}
.y1f_c01018{bottom:99.984000px;}
.y1e_c01018{bottom:126.823500px;}
.y1d_c01018{bottom:153.664500px;}
.y1c_c01018{bottom:171.597000px;}
.y1b_c01018{bottom:198.438000px;}
.y1a_c01018{bottom:225.277500px;}
.y19_c01018{bottom:267.492000px;}
.y18_c01018{bottom:732.465000px;}
.y17_c01018{bottom:748.903500px;}
.y16_c01018{bottom:765.342000px;}
.y15_c01018{bottom:781.780500px;}
.y14_c01018{bottom:798.219000px;}
.y13_c01018{bottom:814.657500px;}
.y12_c01018{bottom:831.096000px;}
.y11_c01018{bottom:847.534500px;}
.y10_c01018{bottom:863.973000px;}
.yf_c01018{bottom:880.411500px;}
.ye_c01018{bottom:896.848500px;}
.yd_c01018{bottom:913.287000px;}
.yc_c01018{bottom:929.725500px;}
.yb_c01018{bottom:946.164000px;}
.ya_c01018{bottom:979.041000px;}
.y9_c01018{bottom:995.479500px;}
.y8_c01018{bottom:1011.918000px;}
.y7_c01018{bottom:1028.356500px;}
.y6_c01018{bottom:1044.795000px;}
.y5_c01018{bottom:1061.232000px;}
.y4_c01018{bottom:1077.670500px;}
.y3_c01018{bottom:1126.986000px;}
.y2_c01018{bottom:1143.424500px;}
.y1_c01018{bottom:1159.863000px;}
.h3_c01018{height:35.190766px;}
.h2_c01018{height:36.007158px;}
.h5_c01018{height:40.511979px;}
.h6_c01018{height:52.332837px;}
.h4_c01018{height:58.337477px;}
.h0_c01018{height:1262.835000px;}
.h1_c01018{height:1263.000000px;}
.w0_c01018{width:892.920000px;}
.w1_c01018{width:893.250000px;}
.x0_c01018{left:0.000000px;}
.x4_c01018{left:127.558500px;}
.x2_c01018{left:137.122500px;}
.x1_c01018{left:143.770500px;}
.x3_c01018{left:177.007500px;}
.x5_c01018{left:435.249000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls4_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:0.078221pt;}
.ls1_c01018{letter-spacing:0.087539pt;}
.ls3_c01018{letter-spacing:0.092873pt;}
.ls2_c01018{letter-spacing:23.724873pt;}
.ws1_c01018{word-spacing:-23.622682pt;}
.ws6_c01018{word-spacing:-23.544461pt;}
.ws12_c01018{word-spacing:-19.158506pt;}
.ws11_c01018{word-spacing:-19.128192pt;}
.ws10_c01018{word-spacing:-17.109105pt;}
.wsd_c01018{word-spacing:-16.684034pt;}
.wsc_c01018{word-spacing:-14.771215pt;}
.wse_c01018{word-spacing:-13.283467pt;}
.wsb_c01018{word-spacing:-11.423781pt;}
.wsf_c01018{word-spacing:-9.093461pt;}
.ws9_c01018{word-spacing:-8.878599pt;}
.wsa_c01018{word-spacing:-8.877777pt;}
.ws5_c01018{word-spacing:0.000000pt;}
.ws3_c01018{word-spacing:0.039110pt;}
.ws2_c01018{word-spacing:0.065111pt;}
.ws0_c01018{word-spacing:0.074430pt;}
.ws7_c01018{word-spacing:0.189730pt;}
.ws4_c01018{word-spacing:0.195063pt;}
.ws8_c01018{word-spacing:38.256533pt;}
._3_c01018{margin-left:-5.661967pt;}
._6_c01018{margin-left:-4.356977pt;}
._4_c01018{margin-left:-1.377235pt;}
._2_c01018{width:1.017412pt;}
._7_c01018{width:17.716000pt;}
._5_c01018{width:21.541040pt;}
._0_c01018{width:47.362694pt;}
._1_c01018{width:70.985376pt;}
.fs0_c01018{font-size:39.110400pt;}
.fs2_c01018{font-size:53.133867pt;}
.fs1_c01018{font-size:76.513067pt;}
.y0_c01018{bottom:0.000000pt;}
.y21_c01018{bottom:39.333333pt;}
.y20_c01018{bottom:72.934667pt;}
.y1f_c01018{bottom:88.874667pt;}
.y1e_c01018{bottom:112.732000pt;}
.y1d_c01018{bottom:136.590667pt;}
.y1c_c01018{bottom:152.530667pt;}
.y1b_c01018{bottom:176.389333pt;}
.y1a_c01018{bottom:200.246667pt;}
.y19_c01018{bottom:237.770667pt;}
.y18_c01018{bottom:651.080000pt;}
.y17_c01018{bottom:665.692000pt;}
.y16_c01018{bottom:680.304000pt;}
.y15_c01018{bottom:694.916000pt;}
.y14_c01018{bottom:709.528000pt;}
.y13_c01018{bottom:724.140000pt;}
.y12_c01018{bottom:738.752000pt;}
.y11_c01018{bottom:753.364000pt;}
.y10_c01018{bottom:767.976000pt;}
.yf_c01018{bottom:782.588000pt;}
.ye_c01018{bottom:797.198667pt;}
.yd_c01018{bottom:811.810667pt;}
.yc_c01018{bottom:826.422667pt;}
.yb_c01018{bottom:841.034667pt;}
.ya_c01018{bottom:870.258667pt;}
.y9_c01018{bottom:884.870667pt;}
.y8_c01018{bottom:899.482667pt;}
.y7_c01018{bottom:914.094667pt;}
.y6_c01018{bottom:928.706667pt;}
.y5_c01018{bottom:943.317333pt;}
.y4_c01018{bottom:957.929333pt;}
.y3_c01018{bottom:1001.765333pt;}
.y2_c01018{bottom:1016.377333pt;}
.y1_c01018{bottom:1030.989333pt;}
.h3_c01018{height:31.280681pt;}
.h2_c01018{height:32.006363pt;}
.h5_c01018{height:36.010648pt;}
.h6_c01018{height:46.518078pt;}
.h4_c01018{height:51.855535pt;}
.h0_c01018{height:1122.520000pt;}
.h1_c01018{height:1122.666667pt;}
.w0_c01018{width:793.706667pt;}
.w1_c01018{width:794.000000pt;}
.x0_c01018{left:0.000000pt;}
.x4_c01018{left:113.385333pt;}
.x2_c01018{left:121.886667pt;}
.x1_c01018{left:127.796000pt;}
.x3_c01018{left:157.340000pt;}
.x5_c01018{left:386.888000pt;}
}





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

.ir_c01019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_ee2a31f8cfaeef10c7364ea1.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01019;src:url('chunks/assets/font_8fe8fd8de0640b75cacbceb5.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01019;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01019;src:url('chunks/assets/font_9f78eacea816ec978a1d255c.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01019;src:url('chunks/assets/font_3f0ea35142176683cddd3dc7.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls4_c01019{letter-spacing:0.000000px;}
.ls1_c01019{letter-spacing:0.087998px;}
.ls2_c01019{letter-spacing:0.098482px;}
.ls0_c01019{letter-spacing:0.104482px;}
.ls3_c01019{letter-spacing:26.690482px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01019{word-spacing:-33.713438px;}
.ws6_c01019{word-spacing:-26.575517px;}
.ws5_c01019{word-spacing:-26.487518px;}
.ws2_c01019{word-spacing:-18.769538px;}
.ws0_c01019{word-spacing:-14.107042px;}
.ws1_c01019{word-spacing:-12.074671px;}
.wsa_c01019{word-spacing:0.000000px;}
.ws7_c01019{word-spacing:0.043999px;}
.wsd_c01019{word-spacing:0.056767px;}
.wsb_c01019{word-spacing:0.073250px;}
.wsf_c01019{word-spacing:0.083734px;}
.ws4_c01019{word-spacing:0.175997px;}
.wse_c01019{word-spacing:0.202963px;}
.ws8_c01019{word-spacing:0.213446px;}
.ws9_c01019{word-spacing:0.219446px;}
.wsc_c01019{word-spacing:26.619516px;}
._5_c01019{margin-left:-2131.273500px;}
._2_c01019{margin-left:-3.825638px;}
._3_c01019{width:1.005737px;}
._0_c01019{width:20.742133px;}
._1_c01019{width:40.109428px;}
._7_c01019{width:53.283031px;}
._4_c01019{width:79.858548px;}
._6_c01019{width:133.452408px;}
.fc5_c01019{color:rgb(0,0,207);}
.fc4_c01019{color:rgb(79,153,5);}
.fc3_c01019{color:rgb(207,92,0);}
.fc2_c01019{color:rgb(33,74,135);}
.fc1_c01019{color:rgb(143,89,3);}
.fc0_c01019{color:rgb(0,0,0);}
.fs2_c01019{font-size:31.015800px;}
.fs1_c01019{font-size:43.999200px;}
.fs0_c01019{font-size:59.775600px;}
.y0_c01019{bottom:0.000000px;}
.y30_c01019{bottom:44.250000px;}
.y2f_c01019{bottom:96.919500px;}
.y2e_c01019{bottom:113.358000px;}
.y2d_c01019{bottom:129.796500px;}
.y2c_c01019{bottom:146.235000px;}
.y2b_c01019{bottom:162.673500px;}
.y2a_c01019{bottom:179.112000px;}
.y29_c01019{bottom:195.550500px;}
.y28_c01019{bottom:211.989000px;}
.y27_c01019{bottom:228.427500px;}
.y26_c01019{bottom:244.866000px;}
.y25_c01019{bottom:261.304500px;}
.y24_c01019{bottom:294.180000px;}
.y23_c01019{bottom:310.618500px;}
.y22_c01019{bottom:327.057000px;}
.y21_c01019{bottom:359.934000px;}
.y20_c01019{bottom:376.372500px;}
.y1f_c01019{bottom:392.811000px;}
.y1e_c01019{bottom:409.249500px;}
.y1d_c01019{bottom:425.688000px;}
.y1c_c01019{bottom:442.125000px;}
.y1b_c01019{bottom:458.563500px;}
.y1a_c01019{bottom:507.879000px;}
.y19_c01019{bottom:524.317500px;}
.y18_c01019{bottom:540.756000px;}
.y17_c01019{bottom:557.194500px;}
.y16_c01019{bottom:573.633000px;}
.y15_c01019{bottom:590.071500px;}
.y14_c01019{bottom:606.508500px;}
.y13_c01019{bottom:622.947000px;}
.y12_c01019{bottom:639.385500px;}
.y11_c01019{bottom:655.450500px;}
.y10_c01019{bottom:671.889000px;}
.yf_c01019{bottom:688.327500px;}
.ye_c01019{bottom:704.766000px;}
.yd_c01019{bottom:721.204500px;}
.yc_c01019{bottom:737.643000px;}
.yb_c01019{bottom:754.081500px;}
.ya_c01019{bottom:770.518500px;}
.y9_c01019{bottom:803.395500px;}
.y8_c01019{bottom:819.834000px;}
.y7_c01019{bottom:869.149500px;}
.y6_c01019{bottom:885.588000px;}
.y5_c01019{bottom:901.653000px;}
.y4_c01019{bottom:1106.064000px;}
.y3_c01019{bottom:1123.998000px;}
.y2_c01019{bottom:1141.930500px;}
.y1_c01019{bottom:1159.863000px;}
.h3_c01019{height:35.190766px;}
.h4_c01019{height:36.007158px;}
.h2_c01019{height:52.332837px;}
.h0_c01019{height:1262.835000px;}
.h1_c01019{height:1263.000000px;}
.w0_c01019{width:892.920000px;}
.w1_c01019{width:893.250000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:127.558500px;}
.x2_c01019{left:137.122500px;}
.x3_c01019{left:143.770500px;}
.x4_c01019{left:170.359500px;}
.x5_c01019{left:177.007500px;}
.x6_c01019{left:435.249000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls4_c01019{letter-spacing:0.000000pt;}
.ls1_c01019{letter-spacing:0.078221pt;}
.ls2_c01019{letter-spacing:0.087539pt;}
.ls0_c01019{letter-spacing:0.092873pt;}
.ls3_c01019{letter-spacing:23.724873pt;}
.ws3_c01019{word-spacing:-29.967501pt;}
.ws6_c01019{word-spacing:-23.622682pt;}
.ws5_c01019{word-spacing:-23.544461pt;}
.ws2_c01019{word-spacing:-16.684034pt;}
.ws0_c01019{word-spacing:-12.539593pt;}
.ws1_c01019{word-spacing:-10.733041pt;}
.wsa_c01019{word-spacing:0.000000pt;}
.ws7_c01019{word-spacing:0.039110pt;}
.wsd_c01019{word-spacing:0.050460pt;}
.wsb_c01019{word-spacing:0.065111pt;}
.wsf_c01019{word-spacing:0.074430pt;}
.ws4_c01019{word-spacing:0.156442pt;}
.wse_c01019{word-spacing:0.180412pt;}
.ws8_c01019{word-spacing:0.189730pt;}
.ws9_c01019{word-spacing:0.195063pt;}
.wsc_c01019{word-spacing:23.661792pt;}
._5_c01019{margin-left:-1894.465333pt;}
._2_c01019{margin-left:-3.400567pt;}
._3_c01019{width:0.893988pt;}
._0_c01019{width:18.437452pt;}
._1_c01019{width:35.652825pt;}
._7_c01019{width:47.362694pt;}
._4_c01019{width:70.985376pt;}
._6_c01019{width:118.624363pt;}
.fs2_c01019{font-size:27.569600pt;}
.fs1_c01019{font-size:39.110400pt;}
.fs0_c01019{font-size:53.133867pt;}
.y0_c01019{bottom:0.000000pt;}
.y30_c01019{bottom:39.333333pt;}
.y2f_c01019{bottom:86.150667pt;}
.y2e_c01019{bottom:100.762667pt;}
.y2d_c01019{bottom:115.374667pt;}
.y2c_c01019{bottom:129.986667pt;}
.y2b_c01019{bottom:144.598667pt;}
.y2a_c01019{bottom:159.210667pt;}
.y29_c01019{bottom:173.822667pt;}
.y28_c01019{bottom:188.434667pt;}
.y27_c01019{bottom:203.046667pt;}
.y26_c01019{bottom:217.658667pt;}
.y25_c01019{bottom:232.270667pt;}
.y24_c01019{bottom:261.493333pt;}
.y23_c01019{bottom:276.105333pt;}
.y22_c01019{bottom:290.717333pt;}
.y21_c01019{bottom:319.941333pt;}
.y20_c01019{bottom:334.553333pt;}
.y1f_c01019{bottom:349.165333pt;}
.y1e_c01019{bottom:363.777333pt;}
.y1d_c01019{bottom:378.389333pt;}
.y1c_c01019{bottom:393.000000pt;}
.y1b_c01019{bottom:407.612000pt;}
.y1a_c01019{bottom:451.448000pt;}
.y19_c01019{bottom:466.060000pt;}
.y18_c01019{bottom:480.672000pt;}
.y17_c01019{bottom:495.284000pt;}
.y16_c01019{bottom:509.896000pt;}
.y15_c01019{bottom:524.508000pt;}
.y14_c01019{bottom:539.118667pt;}
.y13_c01019{bottom:553.730667pt;}
.y12_c01019{bottom:568.342667pt;}
.y11_c01019{bottom:582.622667pt;}
.y10_c01019{bottom:597.234667pt;}
.yf_c01019{bottom:611.846667pt;}
.ye_c01019{bottom:626.458667pt;}
.yd_c01019{bottom:641.070667pt;}
.yc_c01019{bottom:655.682667pt;}
.yb_c01019{bottom:670.294667pt;}
.ya_c01019{bottom:684.905333pt;}
.y9_c01019{bottom:714.129333pt;}
.y8_c01019{bottom:728.741333pt;}
.y7_c01019{bottom:772.577333pt;}
.y6_c01019{bottom:787.189333pt;}
.y5_c01019{bottom:801.469333pt;}
.y4_c01019{bottom:983.168000pt;}
.y3_c01019{bottom:999.109333pt;}
.y2_c01019{bottom:1015.049333pt;}
.y1_c01019{bottom:1030.989333pt;}
.h3_c01019{height:31.280681pt;}
.h4_c01019{height:32.006363pt;}
.h2_c01019{height:46.518078pt;}
.h0_c01019{height:1122.520000pt;}
.h1_c01019{height:1122.666667pt;}
.w0_c01019{width:793.706667pt;}
.w1_c01019{width:794.000000pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:113.385333pt;}
.x2_c01019{left:121.886667pt;}
.x3_c01019{left:127.796000pt;}
.x4_c01019{left:151.430667pt;}
.x5_c01019{left:157.340000pt;}
.x6_c01019{left:386.888000pt;}
}





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

.ir_c01020:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_b9916464c2dc3fa80363c998.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01020;src:url('chunks/assets/font_a3a892eeb780c486873889d6.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01020;src:url('chunks/assets/font_a660646cb7e819e07b781369.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01020;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01020;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01020{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls3_c01020{letter-spacing:0.000000px;}
.ls0_c01020{letter-spacing:0.087998px;}
.ls2_c01020{letter-spacing:0.098482px;}
.ls1_c01020{letter-spacing:0.104482px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01020{word-spacing:-26.575517px;}
.ws11_c01020{word-spacing:-26.487518px;}
.wsf_c01020{word-spacing:-20.503031px;}
.ws7_c01020{word-spacing:-18.769538px;}
.ws5_c01020{word-spacing:-17.394700px;}
.wse_c01020{word-spacing:-16.796944px;}
.wsd_c01020{word-spacing:-16.737168px;}
.wsa_c01020{word-spacing:-15.438322px;}
.wsb_c01020{word-spacing:-15.422105px;}
.ws6_c01020{word-spacing:-14.943900px;}
.ws9_c01020{word-spacing:-14.286368px;}
.ws4_c01020{word-spacing:-13.628837px;}
.wsc_c01020{word-spacing:-12.253998px;}
.ws1_c01020{word-spacing:-9.988424px;}
.ws3_c01020{word-spacing:-9.987499px;}
.ws8_c01020{word-spacing:-0.978144px;}
.ws15_c01020{word-spacing:0.000000px;}
.ws12_c01020{word-spacing:0.043999px;}
.ws10_c01020{word-spacing:0.175997px;}
.ws14_c01020{word-spacing:0.213446px;}
.ws13_c01020{word-spacing:0.219446px;}
.ws0_c01020{word-spacing:43.038600px;}
._4_c01020{margin-left:-7.651277px;}
._3_c01020{margin-left:-4.727048px;}
._5_c01020{margin-left:-3.271441px;}
._0_c01020{margin-left:-1.549390px;}
._a_c01020{width:1.005737px;}
._8_c01020{width:17.979725px;}
._2_c01020{width:19.930500px;}
._1_c01020{width:22.694753px;}
._9_c01020{width:26.121937px;}
._6_c01020{width:29.876316px;}
._7_c01020{width:39.631223px;}
.fc5_c01020{color:rgb(79,153,5);}
.fc3_c01020{color:rgb(33,74,135);}
.fc2_c01020{color:rgb(143,89,3);}
.fc4_c01020{color:rgb(207,92,0);}
.fc1_c01020{color:rgb(6,69,173);}
.fc0_c01020{color:rgb(0,0,0);}
.fs2_c01020{font-size:43.999200px;}
.fs1_c01020{font-size:59.775600px;}
.fs0_c01020{font-size:86.077200px;}
.y0_c01020{bottom:0.000000px;}
.y1f_c01020{bottom:44.250000px;}
.y1e_c01020{bottom:82.051500px;}
.y1d_c01020{bottom:98.490000px;}
.y1c_c01020{bottom:147.804000px;}
.y1b_c01020{bottom:164.242500px;}
.y1a_c01020{bottom:197.119500px;}
.y19_c01020{bottom:213.558000px;}
.y18_c01020{bottom:229.996500px;}
.y17_c01020{bottom:246.435000px;}
.y16_c01020{bottom:279.310500px;}
.y15_c01020{bottom:295.749000px;}
.y14_c01020{bottom:312.187500px;}
.y13_c01020{bottom:328.626000px;}
.y12_c01020{bottom:345.064500px;}
.y11_c01020{bottom:361.503000px;}
.y10_c01020{bottom:377.941500px;}
.yf_c01020{bottom:394.380000px;}
.ye_c01020{bottom:410.445000px;}
.yd_c01020{bottom:458.839500px;}
.yc_c01020{bottom:476.772000px;}
.yb_c01020{bottom:494.704500px;}
.ya_c01020{bottom:512.637000px;}
.y9_c01020{bottom:530.571000px;}
.y8_c01020{bottom:548.503500px;}
.y7_c01020{bottom:566.436000px;}
.y6_c01020{bottom:593.422500px;}
.y5_c01020{bottom:620.407500px;}
.y4_c01020{bottom:638.341500px;}
.y3_c01020{bottom:665.326500px;}
.y2_c01020{bottom:692.313000px;}
.y1_c01020{bottom:734.712000px;}
.h5_c01020{height:35.190766px;}
.h6_c01020{height:36.007158px;}
.h3_c01020{height:40.511979px;}
.h4_c01020{height:52.332837px;}
.h2_c01020{height:58.337477px;}
.h0_c01020{height:1262.835000px;}
.h1_c01020{height:1263.000000px;}
.w0_c01020{width:892.920000px;}
.w1_c01020{width:893.250000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:127.558500px;}
.x2_c01020{left:137.122500px;}
.x3_c01020{left:435.249000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls3_c01020{letter-spacing:0.000000pt;}
.ls0_c01020{letter-spacing:0.078221pt;}
.ls2_c01020{letter-spacing:0.087539pt;}
.ls1_c01020{letter-spacing:0.092873pt;}
.ws2_c01020{word-spacing:-23.622682pt;}
.ws11_c01020{word-spacing:-23.544461pt;}
.wsf_c01020{word-spacing:-18.224916pt;}
.ws7_c01020{word-spacing:-16.684034pt;}
.ws5_c01020{word-spacing:-15.461955pt;}
.wse_c01020{word-spacing:-14.930617pt;}
.wsd_c01020{word-spacing:-14.877483pt;}
.wsa_c01020{word-spacing:-13.722953pt;}
.wsb_c01020{word-spacing:-13.708538pt;}
.ws6_c01020{word-spacing:-13.283467pt;}
.ws9_c01020{word-spacing:-12.698994pt;}
.ws4_c01020{word-spacing:-12.114522pt;}
.wsc_c01020{word-spacing:-10.892443pt;}
.ws1_c01020{word-spacing:-8.878599pt;}
.ws3_c01020{word-spacing:-8.877777pt;}
.ws8_c01020{word-spacing:-0.869461pt;}
.ws15_c01020{word-spacing:0.000000pt;}
.ws12_c01020{word-spacing:0.039110pt;}
.ws10_c01020{word-spacing:0.156442pt;}
.ws14_c01020{word-spacing:0.189730pt;}
.ws13_c01020{word-spacing:0.195063pt;}
.ws0_c01020{word-spacing:38.256533pt;}
._4_c01020{margin-left:-6.801135pt;}
._3_c01020{margin-left:-4.201821pt;}
._5_c01020{margin-left:-2.907948pt;}
._0_c01020{margin-left:-1.377235pt;}
._a_c01020{width:0.893988pt;}
._8_c01020{width:15.981978pt;}
._2_c01020{width:17.716000pt;}
._1_c01020{width:20.173114pt;}
._9_c01020{width:23.219500pt;}
._6_c01020{width:26.556725pt;}
._7_c01020{width:35.227754pt;}
.fs2_c01020{font-size:39.110400pt;}
.fs1_c01020{font-size:53.133867pt;}
.fs0_c01020{font-size:76.513067pt;}
.y0_c01020{bottom:0.000000pt;}
.y1f_c01020{bottom:39.333333pt;}
.y1e_c01020{bottom:72.934667pt;}
.y1d_c01020{bottom:87.546667pt;}
.y1c_c01020{bottom:131.381333pt;}
.y1b_c01020{bottom:145.993333pt;}
.y1a_c01020{bottom:175.217333pt;}
.y19_c01020{bottom:189.829333pt;}
.y18_c01020{bottom:204.441333pt;}
.y17_c01020{bottom:219.053333pt;}
.y16_c01020{bottom:248.276000pt;}
.y15_c01020{bottom:262.888000pt;}
.y14_c01020{bottom:277.500000pt;}
.y13_c01020{bottom:292.112000pt;}
.y12_c01020{bottom:306.724000pt;}
.y11_c01020{bottom:321.336000pt;}
.y10_c01020{bottom:335.948000pt;}
.yf_c01020{bottom:350.560000pt;}
.ye_c01020{bottom:364.840000pt;}
.yd_c01020{bottom:407.857333pt;}
.yc_c01020{bottom:423.797333pt;}
.yb_c01020{bottom:439.737333pt;}
.ya_c01020{bottom:455.677333pt;}
.y9_c01020{bottom:471.618667pt;}
.y8_c01020{bottom:487.558667pt;}
.y7_c01020{bottom:503.498667pt;}
.y6_c01020{bottom:527.486667pt;}
.y5_c01020{bottom:551.473333pt;}
.y4_c01020{bottom:567.414667pt;}
.y3_c01020{bottom:591.401333pt;}
.y2_c01020{bottom:615.389333pt;}
.y1_c01020{bottom:653.077333pt;}
.h5_c01020{height:31.280681pt;}
.h6_c01020{height:32.006363pt;}
.h3_c01020{height:36.010648pt;}
.h4_c01020{height:46.518078pt;}
.h2_c01020{height:51.855535pt;}
.h0_c01020{height:1122.520000pt;}
.h1_c01020{height:1122.666667pt;}
.w0_c01020{width:793.706667pt;}
.w1_c01020{width:794.000000pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:113.385333pt;}
.x2_c01020{left:121.886667pt;}
.x3_c01020{left:386.888000pt;}
}





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

.ir_c01021:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_9d95aad1caf186981f0ef748.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01021;src:url('chunks/assets/font_21d3367f57689d980fcc5814.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01021;src:url('chunks/assets/font_5fccf9096e53545dedfe20ff.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01021;src:url('chunks/assets/font_add7685e285982ab40d0332e.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls4_c01021{letter-spacing:0.000000px;}
.ls0_c01021{letter-spacing:0.087998px;}
.ls2_c01021{letter-spacing:0.098482px;}
.ls1_c01021{letter-spacing:0.104482px;}
.ls3_c01021{letter-spacing:26.690482px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01021{word-spacing:-26.575517px;}
.ws4_c01021{word-spacing:-26.487518px;}
.ws2_c01021{word-spacing:0.000000px;}
.ws6_c01021{word-spacing:0.043999px;}
.ws3_c01021{word-spacing:0.053933px;}
.ws5_c01021{word-spacing:0.056767px;}
.ws0_c01021{word-spacing:0.175997px;}
.ws7_c01021{word-spacing:0.213446px;}
._1_c01021{width:1.041538px;}
._0_c01021{width:106.786058px;}
.fc5_c01021{color:rgb(0,0,207);}
.fc4_c01021{color:rgb(207,92,0);}
.fc3_c01021{color:rgb(79,153,5);}
.fc2_c01021{color:rgb(33,74,135);}
.fc1_c01021{color:rgb(0,0,0);}
.fc0_c01021{color:rgb(143,89,3);}
.fs0_c01021{font-size:43.999200px;}
.fs1_c01021{font-size:59.775600px;}
.y0_c01021{bottom:0.000000px;}
.y2b_c01021{bottom:44.250000px;}
.y2a_c01021{bottom:370.822500px;}
.y29_c01021{bottom:387.259500px;}
.y28_c01021{bottom:403.698000px;}
.y27_c01021{bottom:420.136500px;}
.y26_c01021{bottom:436.575000px;}
.y25_c01021{bottom:453.013500px;}
.y24_c01021{bottom:469.452000px;}
.y23_c01021{bottom:485.890500px;}
.y22_c01021{bottom:502.329000px;}
.y21_c01021{bottom:518.767500px;}
.y20_c01021{bottom:535.206000px;}
.y1f_c01021{bottom:568.081500px;}
.y1e_c01021{bottom:584.520000px;}
.y1d_c01021{bottom:600.958500px;}
.y1c_c01021{bottom:633.835500px;}
.y1b_c01021{bottom:650.274000px;}
.y1a_c01021{bottom:666.712500px;}
.y19_c01021{bottom:683.151000px;}
.y18_c01021{bottom:699.589500px;}
.y17_c01021{bottom:716.028000px;}
.y16_c01021{bottom:732.465000px;}
.y15_c01021{bottom:748.903500px;}
.y14_c01021{bottom:765.342000px;}
.y13_c01021{bottom:781.780500px;}
.y12_c01021{bottom:798.219000px;}
.y11_c01021{bottom:814.657500px;}
.y10_c01021{bottom:831.096000px;}
.yf_c01021{bottom:847.534500px;}
.ye_c01021{bottom:863.973000px;}
.yd_c01021{bottom:896.848500px;}
.yc_c01021{bottom:913.287000px;}
.yb_c01021{bottom:946.164000px;}
.ya_c01021{bottom:962.602500px;}
.y9_c01021{bottom:979.041000px;}
.y8_c01021{bottom:995.479500px;}
.y7_c01021{bottom:1011.918000px;}
.y6_c01021{bottom:1028.356500px;}
.y5_c01021{bottom:1044.795000px;}
.y4_c01021{bottom:1061.232000px;}
.y3_c01021{bottom:1110.547500px;}
.y2_c01021{bottom:1126.986000px;}
.y1_c01021{bottom:1143.424500px;}
.h2_c01021{height:35.190766px;}
.h3_c01021{height:36.007158px;}
.h4_c01021{height:52.332837px;}
.h0_c01021{height:1262.835000px;}
.h1_c01021{height:1263.000000px;}
.w0_c01021{width:892.920000px;}
.w1_c01021{width:893.250000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:137.122500px;}
.x2_c01021{left:143.770500px;}
.x4_c01021{left:177.007500px;}
.x3_c01021{left:230.185500px;}
.x5_c01021{left:435.249000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls4_c01021{letter-spacing:0.000000pt;}
.ls0_c01021{letter-spacing:0.078221pt;}
.ls2_c01021{letter-spacing:0.087539pt;}
.ls1_c01021{letter-spacing:0.092873pt;}
.ls3_c01021{letter-spacing:23.724873pt;}
.ws1_c01021{word-spacing:-23.622682pt;}
.ws4_c01021{word-spacing:-23.544461pt;}
.ws2_c01021{word-spacing:0.000000pt;}
.ws6_c01021{word-spacing:0.039110pt;}
.ws3_c01021{word-spacing:0.047940pt;}
.ws5_c01021{word-spacing:0.050460pt;}
.ws0_c01021{word-spacing:0.156442pt;}
.ws7_c01021{word-spacing:0.189730pt;}
._1_c01021{width:0.925811pt;}
._0_c01021{width:94.920941pt;}
.fs0_c01021{font-size:39.110400pt;}
.fs1_c01021{font-size:53.133867pt;}
.y0_c01021{bottom:0.000000pt;}
.y2b_c01021{bottom:39.333333pt;}
.y2a_c01021{bottom:329.620000pt;}
.y29_c01021{bottom:344.230667pt;}
.y28_c01021{bottom:358.842667pt;}
.y27_c01021{bottom:373.454667pt;}
.y26_c01021{bottom:388.066667pt;}
.y25_c01021{bottom:402.678667pt;}
.y24_c01021{bottom:417.290667pt;}
.y23_c01021{bottom:431.902667pt;}
.y22_c01021{bottom:446.514667pt;}
.y21_c01021{bottom:461.126667pt;}
.y20_c01021{bottom:475.738667pt;}
.y1f_c01021{bottom:504.961333pt;}
.y1e_c01021{bottom:519.573333pt;}
.y1d_c01021{bottom:534.185333pt;}
.y1c_c01021{bottom:563.409333pt;}
.y1b_c01021{bottom:578.021333pt;}
.y1a_c01021{bottom:592.633333pt;}
.y19_c01021{bottom:607.245333pt;}
.y18_c01021{bottom:621.857333pt;}
.y17_c01021{bottom:636.469333pt;}
.y16_c01021{bottom:651.080000pt;}
.y15_c01021{bottom:665.692000pt;}
.y14_c01021{bottom:680.304000pt;}
.y13_c01021{bottom:694.916000pt;}
.y12_c01021{bottom:709.528000pt;}
.y11_c01021{bottom:724.140000pt;}
.y10_c01021{bottom:738.752000pt;}
.yf_c01021{bottom:753.364000pt;}
.ye_c01021{bottom:767.976000pt;}
.yd_c01021{bottom:797.198667pt;}
.yc_c01021{bottom:811.810667pt;}
.yb_c01021{bottom:841.034667pt;}
.ya_c01021{bottom:855.646667pt;}
.y9_c01021{bottom:870.258667pt;}
.y8_c01021{bottom:884.870667pt;}
.y7_c01021{bottom:899.482667pt;}
.y6_c01021{bottom:914.094667pt;}
.y5_c01021{bottom:928.706667pt;}
.y4_c01021{bottom:943.317333pt;}
.y3_c01021{bottom:987.153333pt;}
.y2_c01021{bottom:1001.765333pt;}
.y1_c01021{bottom:1016.377333pt;}
.h2_c01021{height:31.280681pt;}
.h3_c01021{height:32.006363pt;}
.h4_c01021{height:46.518078pt;}
.h0_c01021{height:1122.520000pt;}
.h1_c01021{height:1122.666667pt;}
.w0_c01021{width:793.706667pt;}
.w1_c01021{width:794.000000pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:121.886667pt;}
.x2_c01021{left:127.796000pt;}
.x4_c01021{left:157.340000pt;}
.x3_c01021{left:204.609333pt;}
.x5_c01021{left:386.888000pt;}
}





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

.ir_c01022:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_27a642cc5985b71bf48eae05.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01022;src:url('chunks/assets/font_6b045c451f7b9268d7b6b9ad.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01022;src:url('chunks/assets/font_35e4664af31e9adfbf4b63d7.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01022;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01022;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01022{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls3_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:0.087998px;}
.ls2_c01022{letter-spacing:0.098482px;}
.ls1_c01022{letter-spacing:0.104482px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01022{word-spacing:-33.713438px;}
.ws2_c01022{word-spacing:-26.575517px;}
.ws10_c01022{word-spacing:-26.487518px;}
.wsb_c01022{word-spacing:-21.553319px;}
.wsa_c01022{word-spacing:-21.519216px;}
.ws5_c01022{word-spacing:-20.801909px;}
.ws7_c01022{word-spacing:-18.769538px;}
.ws4_c01022{word-spacing:-17.036046px;}
.ws9_c01022{word-spacing:-16.019861px;}
.ws6_c01022{word-spacing:-14.943900px;}
.wsc_c01022{word-spacing:-14.107042px;}
.wsd_c01022{word-spacing:-12.074671px;}
.ws1_c01022{word-spacing:-9.988424px;}
.ws3_c01022{word-spacing:-9.987499px;}
.ws8_c01022{word-spacing:-4.536144px;}
.ws14_c01022{word-spacing:0.000000px;}
.ws11_c01022{word-spacing:0.043999px;}
.ws17_c01022{word-spacing:0.056767px;}
.ws15_c01022{word-spacing:0.073250px;}
.ws16_c01022{word-spacing:0.083734px;}
.wsf_c01022{word-spacing:0.175997px;}
.ws18_c01022{word-spacing:0.202963px;}
.ws12_c01022{word-spacing:0.213446px;}
.ws13_c01022{word-spacing:0.219446px;}
.ws0_c01022{word-spacing:43.038600px;}
._4_c01022{margin-left:-3.825638px;}
._0_c01022{margin-left:-1.549390px;}
._5_c01022{width:1.005737px;}
._1_c01022{width:18.967962px;}
._2_c01022{width:20.742133px;}
._3_c01022{width:40.109428px;}
._7_c01022{width:53.283031px;}
._6_c01022{width:79.858548px;}
._8_c01022{width:133.452408px;}
.fc6_c01022{color:rgb(0,0,207);}
.fc5_c01022{color:rgb(79,153,5);}
.fc3_c01022{color:rgb(33,74,135);}
.fc2_c01022{color:rgb(143,89,3);}
.fc4_c01022{color:rgb(207,92,0);}
.fc1_c01022{color:rgb(6,69,173);}
.fc0_c01022{color:rgb(0,0,0);}
.fs2_c01022{font-size:43.999200px;}
.fs1_c01022{font-size:59.775600px;}
.fs0_c01022{font-size:86.077200px;}
.y0_c01022{bottom:0.000000px;}
.y20_c01022{bottom:44.250000px;}
.y1f_c01022{bottom:86.982000px;}
.y1e_c01022{bottom:103.420500px;}
.y1d_c01022{bottom:119.859000px;}
.y1c_c01022{bottom:136.297500px;}
.y1b_c01022{bottom:152.736000px;}
.y1a_c01022{bottom:169.174500px;}
.y19_c01022{bottom:185.613000px;}
.y18_c01022{bottom:202.051500px;}
.y17_c01022{bottom:218.490000px;}
.y16_c01022{bottom:234.927000px;}
.y15_c01022{bottom:251.365500px;}
.y14_c01022{bottom:267.804000px;}
.y13_c01022{bottom:284.242500px;}
.y12_c01022{bottom:300.681000px;}
.y11_c01022{bottom:317.119500px;}
.y10_c01022{bottom:349.996500px;}
.yf_c01022{bottom:366.435000px;}
.ye_c01022{bottom:415.749000px;}
.yd_c01022{bottom:432.187500px;}
.yc_c01022{bottom:448.252500px;}
.yb_c01022{bottom:493.890000px;}
.ya_c01022{bottom:511.822500px;}
.y9_c01022{bottom:529.756500px;}
.y8_c01022{bottom:547.689000px;}
.y7_c01022{bottom:565.621500px;}
.y6_c01022{bottom:583.554000px;}
.y5_c01022{bottom:610.633500px;}
.y4_c01022{bottom:637.714500px;}
.y3_c01022{bottom:664.794000px;}
.y2_c01022{bottom:691.873500px;}
.y1_c01022{bottom:734.407500px;}
.h5_c01022{height:35.190766px;}
.h6_c01022{height:36.007158px;}
.h3_c01022{height:40.511979px;}
.h4_c01022{height:52.332837px;}
.h2_c01022{height:58.337477px;}
.h0_c01022{height:1262.835000px;}
.h1_c01022{height:1263.000000px;}
.w0_c01022{width:892.920000px;}
.w1_c01022{width:893.250000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:127.558500px;}
.x2_c01022{left:137.122500px;}
.x3_c01022{left:143.770500px;}
.x4_c01022{left:435.249000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls3_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:0.078221pt;}
.ls2_c01022{letter-spacing:0.087539pt;}
.ls1_c01022{letter-spacing:0.092873pt;}
.wse_c01022{word-spacing:-29.967501pt;}
.ws2_c01022{word-spacing:-23.622682pt;}
.ws10_c01022{word-spacing:-23.544461pt;}
.wsb_c01022{word-spacing:-19.158506pt;}
.wsa_c01022{word-spacing:-19.128192pt;}
.ws5_c01022{word-spacing:-18.490586pt;}
.ws7_c01022{word-spacing:-16.684034pt;}
.ws4_c01022{word-spacing:-15.143152pt;}
.ws9_c01022{word-spacing:-14.239876pt;}
.ws6_c01022{word-spacing:-13.283467pt;}
.wsc_c01022{word-spacing:-12.539593pt;}
.wsd_c01022{word-spacing:-10.733041pt;}
.ws1_c01022{word-spacing:-8.878599pt;}
.ws3_c01022{word-spacing:-8.877777pt;}
.ws8_c01022{word-spacing:-4.032128pt;}
.ws14_c01022{word-spacing:0.000000pt;}
.ws11_c01022{word-spacing:0.039110pt;}
.ws17_c01022{word-spacing:0.050460pt;}
.ws15_c01022{word-spacing:0.065111pt;}
.ws16_c01022{word-spacing:0.074430pt;}
.wsf_c01022{word-spacing:0.156442pt;}
.ws18_c01022{word-spacing:0.180412pt;}
.ws12_c01022{word-spacing:0.189730pt;}
.ws13_c01022{word-spacing:0.195063pt;}
.ws0_c01022{word-spacing:38.256533pt;}
._4_c01022{margin-left:-3.400567pt;}
._0_c01022{margin-left:-1.377235pt;}
._5_c01022{width:0.893988pt;}
._1_c01022{width:16.860411pt;}
._2_c01022{width:18.437452pt;}
._3_c01022{width:35.652825pt;}
._7_c01022{width:47.362694pt;}
._6_c01022{width:70.985376pt;}
._8_c01022{width:118.624363pt;}
.fs2_c01022{font-size:39.110400pt;}
.fs1_c01022{font-size:53.133867pt;}
.fs0_c01022{font-size:76.513067pt;}
.y0_c01022{bottom:0.000000pt;}
.y20_c01022{bottom:39.333333pt;}
.y1f_c01022{bottom:77.317333pt;}
.y1e_c01022{bottom:91.929333pt;}
.y1d_c01022{bottom:106.541333pt;}
.y1c_c01022{bottom:121.153333pt;}
.y1b_c01022{bottom:135.765333pt;}
.y1a_c01022{bottom:150.377333pt;}
.y19_c01022{bottom:164.989333pt;}
.y18_c01022{bottom:179.601333pt;}
.y17_c01022{bottom:194.213333pt;}
.y16_c01022{bottom:208.824000pt;}
.y15_c01022{bottom:223.436000pt;}
.y14_c01022{bottom:238.048000pt;}
.y13_c01022{bottom:252.660000pt;}
.y12_c01022{bottom:267.272000pt;}
.y11_c01022{bottom:281.884000pt;}
.y10_c01022{bottom:311.108000pt;}
.yf_c01022{bottom:325.720000pt;}
.ye_c01022{bottom:369.554667pt;}
.yd_c01022{bottom:384.166667pt;}
.yc_c01022{bottom:398.446667pt;}
.yb_c01022{bottom:439.013333pt;}
.ya_c01022{bottom:454.953333pt;}
.y9_c01022{bottom:470.894667pt;}
.y8_c01022{bottom:486.834667pt;}
.y7_c01022{bottom:502.774667pt;}
.y6_c01022{bottom:518.714667pt;}
.y5_c01022{bottom:542.785333pt;}
.y4_c01022{bottom:566.857333pt;}
.y3_c01022{bottom:590.928000pt;}
.y2_c01022{bottom:614.998667pt;}
.y1_c01022{bottom:652.806667pt;}
.h5_c01022{height:31.280681pt;}
.h6_c01022{height:32.006363pt;}
.h3_c01022{height:36.010648pt;}
.h4_c01022{height:46.518078pt;}
.h2_c01022{height:51.855535pt;}
.h0_c01022{height:1122.520000pt;}
.h1_c01022{height:1122.666667pt;}
.w0_c01022{width:793.706667pt;}
.w1_c01022{width:794.000000pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:113.385333pt;}
.x2_c01022{left:121.886667pt;}
.x3_c01022{left:127.796000pt;}
.x4_c01022{left:386.888000pt;}
}





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

.ir_c01023:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_b99df917c8bcf29a7cd64097.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01023;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01023;src:url('chunks/assets/font_56a1f467533870be39ed7ffb.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01023;src:url('chunks/assets/font_27a642cc5985b71bf48eae05.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01023;src:url('chunks/assets/font_b2610bfd4094c28daff5a532.woff2')format("woff");}.ff5_c01023{font-family:ff5_c01023;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01023{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls4_c01023{letter-spacing:0.000000px;}
.ls0_c01023{letter-spacing:0.087998px;}
.ls2_c01023{letter-spacing:0.098482px;}
.ls3_c01023{letter-spacing:0.104482px;}
.ls1_c01023{letter-spacing:26.690482px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01023{word-spacing:-26.575517px;}
.ws4_c01023{word-spacing:-26.487518px;}
.wsa_c01023{word-spacing:-22.595177px;}
.ws10_c01023{word-spacing:-21.553319px;}
.wsf_c01023{word-spacing:-21.519216px;}
.ws9_c01023{word-spacing:-18.829314px;}
.wsc_c01023{word-spacing:-18.769538px;}
.wse_c01023{word-spacing:-17.633802px;}
.wsb_c01023{word-spacing:-14.943900px;}
.ws11_c01023{word-spacing:-14.107042px;}
.ws12_c01023{word-spacing:-12.074671px;}
.ws7_c01023{word-spacing:-9.988424px;}
.ws8_c01023{word-spacing:-9.987499px;}
.wsd_c01023{word-spacing:-7.686144px;}
.ws3_c01023{word-spacing:0.000000px;}
.ws0_c01023{word-spacing:0.043999px;}
.ws5_c01023{word-spacing:0.213446px;}
.ws1_c01023{word-spacing:0.219446px;}
.ws6_c01023{word-spacing:43.038600px;}
._2_c01023{margin-left:-1.549390px;}
._1_c01023{width:1.063690px;}
._3_c01023{width:18.043230px;}
._4_c01023{width:19.930500px;}
._5_c01023{width:40.109428px;}
._0_c01023{width:106.786058px;}
.fc5_c01023{color:rgb(79,153,5);}
.fc4_c01023{color:rgb(143,89,3);}
.fc3_c01023{color:rgb(0,0,0);}
.fc6_c01023{color:rgb(6,69,173);}
.fc2_c01023{color:rgb(207,92,0);}
.fc1_c01023{color:rgb(0,0,207);}
.fc0_c01023{color:rgb(33,74,135);}
.fs0_c01023{font-size:43.999200px;}
.fs2_c01023{font-size:59.775600px;}
.fs1_c01023{font-size:86.077200px;}
.y0_c01023{bottom:0.000000px;}
.y20_c01023{bottom:44.250000px;}
.y1f_c01023{bottom:82.051500px;}
.y1e_c01023{bottom:99.984000px;}
.y1d_c01023{bottom:117.916500px;}
.y1c_c01023{bottom:135.849000px;}
.y1b_c01023{bottom:162.501000px;}
.y1a_c01023{bottom:189.151500px;}
.y19_c01023{bottom:215.802000px;}
.y18_c01023{bottom:242.454000px;}
.y17_c01023{bottom:284.478000px;}
.y16_c01023{bottom:748.903500px;}
.y15_c01023{bottom:765.342000px;}
.y14_c01023{bottom:781.780500px;}
.y13_c01023{bottom:798.219000px;}
.y12_c01023{bottom:814.657500px;}
.y11_c01023{bottom:831.096000px;}
.y10_c01023{bottom:847.534500px;}
.yf_c01023{bottom:863.973000px;}
.ye_c01023{bottom:880.411500px;}
.yd_c01023{bottom:896.848500px;}
.yc_c01023{bottom:913.287000px;}
.yb_c01023{bottom:946.164000px;}
.ya_c01023{bottom:962.602500px;}
.y9_c01023{bottom:979.041000px;}
.y8_c01023{bottom:1011.918000px;}
.y7_c01023{bottom:1028.356500px;}
.y6_c01023{bottom:1044.795000px;}
.y5_c01023{bottom:1061.232000px;}
.y4_c01023{bottom:1077.670500px;}
.y3_c01023{bottom:1094.109000px;}
.y2_c01023{bottom:1110.547500px;}
.y1_c01023{bottom:1159.863000px;}
.h3_c01023{height:35.190766px;}
.h2_c01023{height:36.007158px;}
.h5_c01023{height:40.511979px;}
.h6_c01023{height:52.332837px;}
.h4_c01023{height:58.337477px;}
.h0_c01023{height:1262.835000px;}
.h1_c01023{height:1263.000000px;}
.w0_c01023{width:892.920000px;}
.w1_c01023{width:893.250000px;}
.x0_c01023{left:0.000000px;}
.x4_c01023{left:127.558500px;}
.x2_c01023{left:137.122500px;}
.x1_c01023{left:143.770500px;}
.x3_c01023{left:177.007500px;}
.x5_c01023{left:435.249000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls4_c01023{letter-spacing:0.000000pt;}
.ls0_c01023{letter-spacing:0.078221pt;}
.ls2_c01023{letter-spacing:0.087539pt;}
.ls3_c01023{letter-spacing:0.092873pt;}
.ls1_c01023{letter-spacing:23.724873pt;}
.ws2_c01023{word-spacing:-23.622682pt;}
.ws4_c01023{word-spacing:-23.544461pt;}
.wsa_c01023{word-spacing:-20.084602pt;}
.ws10_c01023{word-spacing:-19.158506pt;}
.wsf_c01023{word-spacing:-19.128192pt;}
.ws9_c01023{word-spacing:-16.737168pt;}
.wsc_c01023{word-spacing:-16.684034pt;}
.wse_c01023{word-spacing:-15.674491pt;}
.wsb_c01023{word-spacing:-13.283467pt;}
.ws11_c01023{word-spacing:-12.539593pt;}
.ws12_c01023{word-spacing:-10.733041pt;}
.ws7_c01023{word-spacing:-8.878599pt;}
.ws8_c01023{word-spacing:-8.877777pt;}
.wsd_c01023{word-spacing:-6.832128pt;}
.ws3_c01023{word-spacing:0.000000pt;}
.ws0_c01023{word-spacing:0.039110pt;}
.ws5_c01023{word-spacing:0.189730pt;}
.ws1_c01023{word-spacing:0.195063pt;}
.ws6_c01023{word-spacing:38.256533pt;}
._2_c01023{margin-left:-1.377235pt;}
._1_c01023{width:0.945502pt;}
._3_c01023{width:16.038427pt;}
._4_c01023{width:17.716000pt;}
._5_c01023{width:35.652825pt;}
._0_c01023{width:94.920941pt;}
.fs0_c01023{font-size:39.110400pt;}
.fs2_c01023{font-size:53.133867pt;}
.fs1_c01023{font-size:76.513067pt;}
.y0_c01023{bottom:0.000000pt;}
.y20_c01023{bottom:39.333333pt;}
.y1f_c01023{bottom:72.934667pt;}
.y1e_c01023{bottom:88.874667pt;}
.y1d_c01023{bottom:104.814667pt;}
.y1c_c01023{bottom:120.754667pt;}
.y1b_c01023{bottom:144.445333pt;}
.y1a_c01023{bottom:168.134667pt;}
.y19_c01023{bottom:191.824000pt;}
.y18_c01023{bottom:215.514667pt;}
.y17_c01023{bottom:252.869333pt;}
.y16_c01023{bottom:665.692000pt;}
.y15_c01023{bottom:680.304000pt;}
.y14_c01023{bottom:694.916000pt;}
.y13_c01023{bottom:709.528000pt;}
.y12_c01023{bottom:724.140000pt;}
.y11_c01023{bottom:738.752000pt;}
.y10_c01023{bottom:753.364000pt;}
.yf_c01023{bottom:767.976000pt;}
.ye_c01023{bottom:782.588000pt;}
.yd_c01023{bottom:797.198667pt;}
.yc_c01023{bottom:811.810667pt;}
.yb_c01023{bottom:841.034667pt;}
.ya_c01023{bottom:855.646667pt;}
.y9_c01023{bottom:870.258667pt;}
.y8_c01023{bottom:899.482667pt;}
.y7_c01023{bottom:914.094667pt;}
.y6_c01023{bottom:928.706667pt;}
.y5_c01023{bottom:943.317333pt;}
.y4_c01023{bottom:957.929333pt;}
.y3_c01023{bottom:972.541333pt;}
.y2_c01023{bottom:987.153333pt;}
.y1_c01023{bottom:1030.989333pt;}
.h3_c01023{height:31.280681pt;}
.h2_c01023{height:32.006363pt;}
.h5_c01023{height:36.010648pt;}
.h6_c01023{height:46.518078pt;}
.h4_c01023{height:51.855535pt;}
.h0_c01023{height:1122.520000pt;}
.h1_c01023{height:1122.666667pt;}
.w0_c01023{width:793.706667pt;}
.w1_c01023{width:794.000000pt;}
.x0_c01023{left:0.000000pt;}
.x4_c01023{left:113.385333pt;}
.x2_c01023{left:121.886667pt;}
.x1_c01023{left:127.796000pt;}
.x3_c01023{left:157.340000pt;}
.x5_c01023{left:386.888000pt;}
}





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

.ir_c01024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_766d51db1e346af8d407495d.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01024;src:url('chunks/assets/font_726bc20ff52fa6e1a7d5d42a.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01024;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01024;src:url('chunks/assets/font_729e80200cdad33353c6bb21.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls4_c01024{letter-spacing:0.000000px;}
.ls1_c01024{letter-spacing:0.087998px;}
.ls2_c01024{letter-spacing:0.098482px;}
.ls0_c01024{letter-spacing:0.104482px;}
.ls3_c01024{letter-spacing:26.690482px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01024{word-spacing:-33.713438px;}
.ws4_c01024{word-spacing:-26.575517px;}
.ws3_c01024{word-spacing:-26.487518px;}
.ws0_c01024{word-spacing:-18.769538px;}
.ws8_c01024{word-spacing:0.000000px;}
.ws5_c01024{word-spacing:0.043999px;}
.wsb_c01024{word-spacing:0.056767px;}
.ws9_c01024{word-spacing:0.073250px;}
.wsa_c01024{word-spacing:0.083734px;}
.ws2_c01024{word-spacing:0.175997px;}
.wsc_c01024{word-spacing:0.202963px;}
.ws6_c01024{word-spacing:0.213446px;}
.ws7_c01024{word-spacing:0.219446px;}
._0_c01024{margin-left:-3.825638px;}
._1_c01024{width:1.005737px;}
._3_c01024{width:53.283031px;}
._2_c01024{width:79.858548px;}
._4_c01024{width:133.452408px;}
.fc5_c01024{color:rgb(0,0,207);}
.fc4_c01024{color:rgb(79,153,5);}
.fc3_c01024{color:rgb(207,92,0);}
.fc2_c01024{color:rgb(33,74,135);}
.fc1_c01024{color:rgb(143,89,3);}
.fc0_c01024{color:rgb(0,0,0);}
.fs1_c01024{font-size:43.999200px;}
.fs0_c01024{font-size:59.775600px;}
.y0_c01024{bottom:0.000000px;}
.y2d_c01024{bottom:44.250000px;}
.y2c_c01024{bottom:96.919500px;}
.y2b_c01024{bottom:113.358000px;}
.y2a_c01024{bottom:129.796500px;}
.y29_c01024{bottom:146.235000px;}
.y28_c01024{bottom:162.673500px;}
.y27_c01024{bottom:179.112000px;}
.y26_c01024{bottom:195.550500px;}
.y25_c01024{bottom:211.989000px;}
.y24_c01024{bottom:228.427500px;}
.y23_c01024{bottom:244.866000px;}
.y22_c01024{bottom:261.304500px;}
.y21_c01024{bottom:294.180000px;}
.y20_c01024{bottom:310.618500px;}
.y1f_c01024{bottom:327.057000px;}
.y1e_c01024{bottom:359.934000px;}
.y1d_c01024{bottom:376.372500px;}
.y1c_c01024{bottom:392.811000px;}
.y1b_c01024{bottom:409.249500px;}
.y1a_c01024{bottom:425.688000px;}
.y19_c01024{bottom:442.125000px;}
.y18_c01024{bottom:458.563500px;}
.y17_c01024{bottom:507.879000px;}
.y16_c01024{bottom:524.317500px;}
.y15_c01024{bottom:540.756000px;}
.y14_c01024{bottom:557.194500px;}
.y13_c01024{bottom:573.633000px;}
.y12_c01024{bottom:590.071500px;}
.y11_c01024{bottom:606.508500px;}
.y10_c01024{bottom:622.947000px;}
.yf_c01024{bottom:639.385500px;}
.ye_c01024{bottom:655.824000px;}
.yd_c01024{bottom:672.262500px;}
.yc_c01024{bottom:688.701000px;}
.yb_c01024{bottom:705.139500px;}
.ya_c01024{bottom:721.578000px;}
.y9_c01024{bottom:738.016500px;}
.y8_c01024{bottom:754.455000px;}
.y7_c01024{bottom:787.330500px;}
.y6_c01024{bottom:803.769000px;}
.y5_c01024{bottom:853.084500px;}
.y4_c01024{bottom:869.523000px;}
.y3_c01024{bottom:885.588000px;}
.y2_c01024{bottom:1141.930500px;}
.y1_c01024{bottom:1159.863000px;}
.h3_c01024{height:35.190766px;}
.h4_c01024{height:36.007158px;}
.h2_c01024{height:52.332837px;}
.h0_c01024{height:1262.835000px;}
.h1_c01024{height:1263.000000px;}
.w0_c01024{width:892.920000px;}
.w1_c01024{width:893.250000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:127.558500px;}
.x2_c01024{left:137.122500px;}
.x3_c01024{left:143.770500px;}
.x4_c01024{left:177.007500px;}
.x5_c01024{left:435.249000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls4_c01024{letter-spacing:0.000000pt;}
.ls1_c01024{letter-spacing:0.078221pt;}
.ls2_c01024{letter-spacing:0.087539pt;}
.ls0_c01024{letter-spacing:0.092873pt;}
.ls3_c01024{letter-spacing:23.724873pt;}
.ws1_c01024{word-spacing:-29.967501pt;}
.ws4_c01024{word-spacing:-23.622682pt;}
.ws3_c01024{word-spacing:-23.544461pt;}
.ws0_c01024{word-spacing:-16.684034pt;}
.ws8_c01024{word-spacing:0.000000pt;}
.ws5_c01024{word-spacing:0.039110pt;}
.wsb_c01024{word-spacing:0.050460pt;}
.ws9_c01024{word-spacing:0.065111pt;}
.wsa_c01024{word-spacing:0.074430pt;}
.ws2_c01024{word-spacing:0.156442pt;}
.wsc_c01024{word-spacing:0.180412pt;}
.ws6_c01024{word-spacing:0.189730pt;}
.ws7_c01024{word-spacing:0.195063pt;}
._0_c01024{margin-left:-3.400567pt;}
._1_c01024{width:0.893988pt;}
._3_c01024{width:47.362694pt;}
._2_c01024{width:70.985376pt;}
._4_c01024{width:118.624363pt;}
.fs1_c01024{font-size:39.110400pt;}
.fs0_c01024{font-size:53.133867pt;}
.y0_c01024{bottom:0.000000pt;}
.y2d_c01024{bottom:39.333333pt;}
.y2c_c01024{bottom:86.150667pt;}
.y2b_c01024{bottom:100.762667pt;}
.y2a_c01024{bottom:115.374667pt;}
.y29_c01024{bottom:129.986667pt;}
.y28_c01024{bottom:144.598667pt;}
.y27_c01024{bottom:159.210667pt;}
.y26_c01024{bottom:173.822667pt;}
.y25_c01024{bottom:188.434667pt;}
.y24_c01024{bottom:203.046667pt;}
.y23_c01024{bottom:217.658667pt;}
.y22_c01024{bottom:232.270667pt;}
.y21_c01024{bottom:261.493333pt;}
.y20_c01024{bottom:276.105333pt;}
.y1f_c01024{bottom:290.717333pt;}
.y1e_c01024{bottom:319.941333pt;}
.y1d_c01024{bottom:334.553333pt;}
.y1c_c01024{bottom:349.165333pt;}
.y1b_c01024{bottom:363.777333pt;}
.y1a_c01024{bottom:378.389333pt;}
.y19_c01024{bottom:393.000000pt;}
.y18_c01024{bottom:407.612000pt;}
.y17_c01024{bottom:451.448000pt;}
.y16_c01024{bottom:466.060000pt;}
.y15_c01024{bottom:480.672000pt;}
.y14_c01024{bottom:495.284000pt;}
.y13_c01024{bottom:509.896000pt;}
.y12_c01024{bottom:524.508000pt;}
.y11_c01024{bottom:539.118667pt;}
.y10_c01024{bottom:553.730667pt;}
.yf_c01024{bottom:568.342667pt;}
.ye_c01024{bottom:582.954667pt;}
.yd_c01024{bottom:597.566667pt;}
.yc_c01024{bottom:612.178667pt;}
.yb_c01024{bottom:626.790667pt;}
.ya_c01024{bottom:641.402667pt;}
.y9_c01024{bottom:656.014667pt;}
.y8_c01024{bottom:670.626667pt;}
.y7_c01024{bottom:699.849333pt;}
.y6_c01024{bottom:714.461333pt;}
.y5_c01024{bottom:758.297333pt;}
.y4_c01024{bottom:772.909333pt;}
.y3_c01024{bottom:787.189333pt;}
.y2_c01024{bottom:1015.049333pt;}
.y1_c01024{bottom:1030.989333pt;}
.h3_c01024{height:31.280681pt;}
.h4_c01024{height:32.006363pt;}
.h2_c01024{height:46.518078pt;}
.h0_c01024{height:1122.520000pt;}
.h1_c01024{height:1122.666667pt;}
.w0_c01024{width:793.706667pt;}
.w1_c01024{width:794.000000pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:113.385333pt;}
.x2_c01024{left:121.886667pt;}
.x3_c01024{left:127.796000pt;}
.x4_c01024{left:157.340000pt;}
.x5_c01024{left:386.888000pt;}
}





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

.ir_c01025:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_3bcfde7f56b4cb6eb7fea93b.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01025;src:url('chunks/assets/font_d60bb274f2fc42d9ca8903f5.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01025;src:url('chunks/assets/font_6546d0fc6e96565947bea471.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01025;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01025;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01025{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01025{vertical-align:0.000000px;}
.ls3_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:0.087998px;}
.ls2_c01025{letter-spacing:0.098482px;}
.ls1_c01025{letter-spacing:0.104482px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01025{word-spacing:-33.713438px;}
.ws2_c01025{word-spacing:-26.575517px;}
.wse_c01025{word-spacing:-26.487518px;}
.ws9_c01025{word-spacing:-21.553319px;}
.ws8_c01025{word-spacing:-21.519216px;}
.ws5_c01025{word-spacing:-18.769538px;}
.ws7_c01025{word-spacing:-17.633802px;}
.ws4_c01025{word-spacing:-14.943900px;}
.wsa_c01025{word-spacing:-14.107042px;}
.wsb_c01025{word-spacing:-12.074671px;}
.ws1_c01025{word-spacing:-9.988424px;}
.ws3_c01025{word-spacing:-9.987499px;}
.ws6_c01025{word-spacing:-7.686144px;}
.ws12_c01025{word-spacing:0.000000px;}
.wsf_c01025{word-spacing:0.043999px;}
.ws15_c01025{word-spacing:0.056767px;}
.ws13_c01025{word-spacing:0.073250px;}
.ws14_c01025{word-spacing:0.083734px;}
.wsd_c01025{word-spacing:0.175997px;}
.ws16_c01025{word-spacing:0.202963px;}
.ws10_c01025{word-spacing:0.213446px;}
.ws11_c01025{word-spacing:0.219446px;}
.ws0_c01025{word-spacing:43.038600px;}
._3_c01025{margin-left:-3.825638px;}
._0_c01025{margin-left:-1.549390px;}
._4_c01025{width:1.005737px;}
._1_c01025{width:19.935816px;}
._2_c01025{width:40.109428px;}
._6_c01025{width:53.283031px;}
._5_c01025{width:79.858548px;}
._7_c01025{width:133.452408px;}
.fc6_c01025{color:rgb(0,0,207);}
.fc5_c01025{color:rgb(79,153,5);}
.fc3_c01025{color:rgb(33,74,135);}
.fc2_c01025{color:rgb(143,89,3);}
.fc4_c01025{color:rgb(207,92,0);}
.fc1_c01025{color:rgb(6,69,173);}
.fc0_c01025{color:rgb(0,0,0);}
.fs2_c01025{font-size:43.999200px;}
.fs1_c01025{font-size:59.775600px;}
.fs0_c01025{font-size:86.077200px;}
.y0_c01025{bottom:0.000000px;}
.y20_c01025{bottom:44.250000px;}
.y1f_c01025{bottom:86.982000px;}
.y1e_c01025{bottom:103.420500px;}
.y1d_c01025{bottom:119.859000px;}
.y1c_c01025{bottom:136.297500px;}
.y1b_c01025{bottom:152.736000px;}
.y1a_c01025{bottom:169.174500px;}
.y19_c01025{bottom:185.613000px;}
.y18_c01025{bottom:202.051500px;}
.y17_c01025{bottom:218.490000px;}
.y16_c01025{bottom:234.927000px;}
.y15_c01025{bottom:251.365500px;}
.y14_c01025{bottom:267.804000px;}
.y13_c01025{bottom:284.242500px;}
.y12_c01025{bottom:300.681000px;}
.y11_c01025{bottom:317.119500px;}
.y10_c01025{bottom:349.996500px;}
.yf_c01025{bottom:366.435000px;}
.ye_c01025{bottom:415.749000px;}
.yd_c01025{bottom:432.187500px;}
.yc_c01025{bottom:448.252500px;}
.yb_c01025{bottom:493.890000px;}
.ya_c01025{bottom:511.822500px;}
.y9_c01025{bottom:529.756500px;}
.y8_c01025{bottom:547.689000px;}
.y7_c01025{bottom:565.621500px;}
.y6_c01025{bottom:583.554000px;}
.y5_c01025{bottom:610.633500px;}
.y4_c01025{bottom:637.714500px;}
.y3_c01025{bottom:664.794000px;}
.y2_c01025{bottom:691.873500px;}
.y1_c01025{bottom:734.407500px;}
.h5_c01025{height:35.190766px;}
.h6_c01025{height:36.007158px;}
.h3_c01025{height:40.511979px;}
.h4_c01025{height:52.332837px;}
.h2_c01025{height:58.337477px;}
.h0_c01025{height:1262.835000px;}
.h1_c01025{height:1263.000000px;}
.w0_c01025{width:892.920000px;}
.w1_c01025{width:893.250000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:127.558500px;}
.x2_c01025{left:137.122500px;}
.x3_c01025{left:143.770500px;}
.x4_c01025{left:435.249000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls3_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:0.078221pt;}
.ls2_c01025{letter-spacing:0.087539pt;}
.ls1_c01025{letter-spacing:0.092873pt;}
.wsc_c01025{word-spacing:-29.967501pt;}
.ws2_c01025{word-spacing:-23.622682pt;}
.wse_c01025{word-spacing:-23.544461pt;}
.ws9_c01025{word-spacing:-19.158506pt;}
.ws8_c01025{word-spacing:-19.128192pt;}
.ws5_c01025{word-spacing:-16.684034pt;}
.ws7_c01025{word-spacing:-15.674491pt;}
.ws4_c01025{word-spacing:-13.283467pt;}
.wsa_c01025{word-spacing:-12.539593pt;}
.wsb_c01025{word-spacing:-10.733041pt;}
.ws1_c01025{word-spacing:-8.878599pt;}
.ws3_c01025{word-spacing:-8.877777pt;}
.ws6_c01025{word-spacing:-6.832128pt;}
.ws12_c01025{word-spacing:0.000000pt;}
.wsf_c01025{word-spacing:0.039110pt;}
.ws15_c01025{word-spacing:0.050460pt;}
.ws13_c01025{word-spacing:0.065111pt;}
.ws14_c01025{word-spacing:0.074430pt;}
.wsd_c01025{word-spacing:0.156442pt;}
.ws16_c01025{word-spacing:0.180412pt;}
.ws10_c01025{word-spacing:0.189730pt;}
.ws11_c01025{word-spacing:0.195063pt;}
.ws0_c01025{word-spacing:38.256533pt;}
._3_c01025{margin-left:-3.400567pt;}
._0_c01025{margin-left:-1.377235pt;}
._4_c01025{width:0.893988pt;}
._1_c01025{width:17.720725pt;}
._2_c01025{width:35.652825pt;}
._6_c01025{width:47.362694pt;}
._5_c01025{width:70.985376pt;}
._7_c01025{width:118.624363pt;}
.fs2_c01025{font-size:39.110400pt;}
.fs1_c01025{font-size:53.133867pt;}
.fs0_c01025{font-size:76.513067pt;}
.y0_c01025{bottom:0.000000pt;}
.y20_c01025{bottom:39.333333pt;}
.y1f_c01025{bottom:77.317333pt;}
.y1e_c01025{bottom:91.929333pt;}
.y1d_c01025{bottom:106.541333pt;}
.y1c_c01025{bottom:121.153333pt;}
.y1b_c01025{bottom:135.765333pt;}
.y1a_c01025{bottom:150.377333pt;}
.y19_c01025{bottom:164.989333pt;}
.y18_c01025{bottom:179.601333pt;}
.y17_c01025{bottom:194.213333pt;}
.y16_c01025{bottom:208.824000pt;}
.y15_c01025{bottom:223.436000pt;}
.y14_c01025{bottom:238.048000pt;}
.y13_c01025{bottom:252.660000pt;}
.y12_c01025{bottom:267.272000pt;}
.y11_c01025{bottom:281.884000pt;}
.y10_c01025{bottom:311.108000pt;}
.yf_c01025{bottom:325.720000pt;}
.ye_c01025{bottom:369.554667pt;}
.yd_c01025{bottom:384.166667pt;}
.yc_c01025{bottom:398.446667pt;}
.yb_c01025{bottom:439.013333pt;}
.ya_c01025{bottom:454.953333pt;}
.y9_c01025{bottom:470.894667pt;}
.y8_c01025{bottom:486.834667pt;}
.y7_c01025{bottom:502.774667pt;}
.y6_c01025{bottom:518.714667pt;}
.y5_c01025{bottom:542.785333pt;}
.y4_c01025{bottom:566.857333pt;}
.y3_c01025{bottom:590.928000pt;}
.y2_c01025{bottom:614.998667pt;}
.y1_c01025{bottom:652.806667pt;}
.h5_c01025{height:31.280681pt;}
.h6_c01025{height:32.006363pt;}
.h3_c01025{height:36.010648pt;}
.h4_c01025{height:46.518078pt;}
.h2_c01025{height:51.855535pt;}
.h0_c01025{height:1122.520000pt;}
.h1_c01025{height:1122.666667pt;}
.w0_c01025{width:793.706667pt;}
.w1_c01025{width:794.000000pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:113.385333pt;}
.x2_c01025{left:121.886667pt;}
.x3_c01025{left:127.796000pt;}
.x4_c01025{left:386.888000pt;}
}





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

.ir_c01026:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_4d98c7df5edc7850cfff66d6.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01026;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01026;src:url('chunks/assets/font_ab7ec31e1d37017bdda7e630.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01026;src:url('chunks/assets/font_7e91b20cc4fa60f8a208da95.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01026;src:url('chunks/assets/font_152c1fdab4e0b0c4175181e8.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls4_c01026{letter-spacing:0.000000px;}
.ls0_c01026{letter-spacing:0.087998px;}
.ls2_c01026{letter-spacing:0.098482px;}
.ls3_c01026{letter-spacing:0.104482px;}
.ls1_c01026{letter-spacing:26.690482px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01026{word-spacing:-26.575517px;}
.ws4_c01026{word-spacing:-26.487518px;}
.ws10_c01026{word-spacing:-21.553319px;}
.wsf_c01026{word-spacing:-21.519216px;}
.wsa_c01026{word-spacing:-19.905275px;}
.wse_c01026{word-spacing:-19.247743px;}
.wsc_c01026{word-spacing:-18.769538px;}
.ws9_c01026{word-spacing:-16.079636px;}
.wsb_c01026{word-spacing:-14.943900px;}
.ws11_c01026{word-spacing:-14.107042px;}
.ws12_c01026{word-spacing:-12.074671px;}
.wsd_c01026{word-spacing:-10.230144px;}
.ws7_c01026{word-spacing:-9.988424px;}
.ws8_c01026{word-spacing:-9.987499px;}
.ws3_c01026{word-spacing:0.000000px;}
.ws0_c01026{word-spacing:0.043999px;}
.ws5_c01026{word-spacing:0.213446px;}
.ws1_c01026{word-spacing:0.219446px;}
.ws6_c01026{word-spacing:43.038600px;}
._2_c01026{margin-left:-1.549390px;}
._1_c01026{width:1.074173px;}
._3_c01026{width:19.367552px;}
._4_c01026{width:20.742133px;}
._5_c01026{width:40.109428px;}
._0_c01026{width:80.210542px;}
.fc5_c01026{color:rgb(79,153,5);}
.fc4_c01026{color:rgb(143,89,3);}
.fc3_c01026{color:rgb(0,0,0);}
.fc6_c01026{color:rgb(6,69,173);}
.fc2_c01026{color:rgb(207,92,0);}
.fc1_c01026{color:rgb(0,0,207);}
.fc0_c01026{color:rgb(33,74,135);}
.fs0_c01026{font-size:43.999200px;}
.fs2_c01026{font-size:59.775600px;}
.fs1_c01026{font-size:86.077200px;}
.y0_c01026{bottom:0.000000px;}
.y20_c01026{bottom:44.250000px;}
.y1f_c01026{bottom:82.051500px;}
.y1e_c01026{bottom:99.984000px;}
.y1d_c01026{bottom:117.916500px;}
.y1c_c01026{bottom:135.849000px;}
.y1b_c01026{bottom:162.501000px;}
.y1a_c01026{bottom:189.151500px;}
.y19_c01026{bottom:215.802000px;}
.y18_c01026{bottom:242.454000px;}
.y17_c01026{bottom:284.478000px;}
.y16_c01026{bottom:748.903500px;}
.y15_c01026{bottom:765.342000px;}
.y14_c01026{bottom:781.780500px;}
.y13_c01026{bottom:798.219000px;}
.y12_c01026{bottom:814.657500px;}
.y11_c01026{bottom:831.096000px;}
.y10_c01026{bottom:847.534500px;}
.yf_c01026{bottom:863.973000px;}
.ye_c01026{bottom:880.411500px;}
.yd_c01026{bottom:896.848500px;}
.yc_c01026{bottom:913.287000px;}
.yb_c01026{bottom:946.164000px;}
.ya_c01026{bottom:962.602500px;}
.y9_c01026{bottom:979.041000px;}
.y8_c01026{bottom:1011.918000px;}
.y7_c01026{bottom:1028.356500px;}
.y6_c01026{bottom:1044.795000px;}
.y5_c01026{bottom:1061.232000px;}
.y4_c01026{bottom:1077.670500px;}
.y3_c01026{bottom:1094.109000px;}
.y2_c01026{bottom:1110.547500px;}
.y1_c01026{bottom:1159.863000px;}
.h3_c01026{height:35.190766px;}
.h2_c01026{height:36.007158px;}
.h5_c01026{height:40.511979px;}
.h6_c01026{height:52.332837px;}
.h4_c01026{height:58.337477px;}
.h0_c01026{height:1262.835000px;}
.h1_c01026{height:1263.000000px;}
.w0_c01026{width:892.920000px;}
.w1_c01026{width:893.250000px;}
.x0_c01026{left:0.000000px;}
.x4_c01026{left:127.558500px;}
.x2_c01026{left:137.122500px;}
.x1_c01026{left:143.770500px;}
.x3_c01026{left:177.007500px;}
.x5_c01026{left:435.249000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls4_c01026{letter-spacing:0.000000pt;}
.ls0_c01026{letter-spacing:0.078221pt;}
.ls2_c01026{letter-spacing:0.087539pt;}
.ls3_c01026{letter-spacing:0.092873pt;}
.ls1_c01026{letter-spacing:23.724873pt;}
.ws2_c01026{word-spacing:-23.622682pt;}
.ws4_c01026{word-spacing:-23.544461pt;}
.ws10_c01026{word-spacing:-19.158506pt;}
.wsf_c01026{word-spacing:-19.128192pt;}
.wsa_c01026{word-spacing:-17.693578pt;}
.wse_c01026{word-spacing:-17.109105pt;}
.wsc_c01026{word-spacing:-16.684034pt;}
.ws9_c01026{word-spacing:-14.293010pt;}
.wsb_c01026{word-spacing:-13.283467pt;}
.ws11_c01026{word-spacing:-12.539593pt;}
.ws12_c01026{word-spacing:-10.733041pt;}
.wsd_c01026{word-spacing:-9.093461pt;}
.ws7_c01026{word-spacing:-8.878599pt;}
.ws8_c01026{word-spacing:-8.877777pt;}
.ws3_c01026{word-spacing:0.000000pt;}
.ws0_c01026{word-spacing:0.039110pt;}
.ws5_c01026{word-spacing:0.189730pt;}
.ws1_c01026{word-spacing:0.195063pt;}
.ws6_c01026{word-spacing:38.256533pt;}
._2_c01026{margin-left:-1.377235pt;}
._1_c01026{width:0.954820pt;}
._3_c01026{width:17.215602pt;}
._4_c01026{width:18.437452pt;}
._5_c01026{width:35.652825pt;}
._0_c01026{width:71.298259pt;}
.fs0_c01026{font-size:39.110400pt;}
.fs2_c01026{font-size:53.133867pt;}
.fs1_c01026{font-size:76.513067pt;}
.y0_c01026{bottom:0.000000pt;}
.y20_c01026{bottom:39.333333pt;}
.y1f_c01026{bottom:72.934667pt;}
.y1e_c01026{bottom:88.874667pt;}
.y1d_c01026{bottom:104.814667pt;}
.y1c_c01026{bottom:120.754667pt;}
.y1b_c01026{bottom:144.445333pt;}
.y1a_c01026{bottom:168.134667pt;}
.y19_c01026{bottom:191.824000pt;}
.y18_c01026{bottom:215.514667pt;}
.y17_c01026{bottom:252.869333pt;}
.y16_c01026{bottom:665.692000pt;}
.y15_c01026{bottom:680.304000pt;}
.y14_c01026{bottom:694.916000pt;}
.y13_c01026{bottom:709.528000pt;}
.y12_c01026{bottom:724.140000pt;}
.y11_c01026{bottom:738.752000pt;}
.y10_c01026{bottom:753.364000pt;}
.yf_c01026{bottom:767.976000pt;}
.ye_c01026{bottom:782.588000pt;}
.yd_c01026{bottom:797.198667pt;}
.yc_c01026{bottom:811.810667pt;}
.yb_c01026{bottom:841.034667pt;}
.ya_c01026{bottom:855.646667pt;}
.y9_c01026{bottom:870.258667pt;}
.y8_c01026{bottom:899.482667pt;}
.y7_c01026{bottom:914.094667pt;}
.y6_c01026{bottom:928.706667pt;}
.y5_c01026{bottom:943.317333pt;}
.y4_c01026{bottom:957.929333pt;}
.y3_c01026{bottom:972.541333pt;}
.y2_c01026{bottom:987.153333pt;}
.y1_c01026{bottom:1030.989333pt;}
.h3_c01026{height:31.280681pt;}
.h2_c01026{height:32.006363pt;}
.h5_c01026{height:36.010648pt;}
.h6_c01026{height:46.518078pt;}
.h4_c01026{height:51.855535pt;}
.h0_c01026{height:1122.520000pt;}
.h1_c01026{height:1122.666667pt;}
.w0_c01026{width:793.706667pt;}
.w1_c01026{width:794.000000pt;}
.x0_c01026{left:0.000000pt;}
.x4_c01026{left:113.385333pt;}
.x2_c01026{left:121.886667pt;}
.x1_c01026{left:127.796000pt;}
.x3_c01026{left:157.340000pt;}
.x5_c01026{left:386.888000pt;}
}





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

.ir_c01027:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_bd232e58bce864515c85c75f.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01027;src:url('chunks/assets/font_1ced9c641ada51a04b7f6d6f.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01027;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01027;src:url('chunks/assets/font_66c5a58c261d47a1d98f8490.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls4_c01027{letter-spacing:0.000000px;}
.ls1_c01027{letter-spacing:0.087998px;}
.ls2_c01027{letter-spacing:0.098482px;}
.ls0_c01027{letter-spacing:0.104482px;}
.ls3_c01027{letter-spacing:26.690482px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01027{word-spacing:-33.713438px;}
.ws4_c01027{word-spacing:-26.575517px;}
.ws3_c01027{word-spacing:-26.487518px;}
.ws0_c01027{word-spacing:-18.769538px;}
.ws8_c01027{word-spacing:0.000000px;}
.ws5_c01027{word-spacing:0.043999px;}
.wsb_c01027{word-spacing:0.056767px;}
.ws9_c01027{word-spacing:0.073250px;}
.wsa_c01027{word-spacing:0.083734px;}
.ws2_c01027{word-spacing:0.175997px;}
.wsc_c01027{word-spacing:0.202963px;}
.ws6_c01027{word-spacing:0.213446px;}
.ws7_c01027{word-spacing:0.219446px;}
._0_c01027{margin-left:-3.825638px;}
._1_c01027{width:1.005737px;}
._3_c01027{width:53.283031px;}
._2_c01027{width:79.858548px;}
._4_c01027{width:133.452408px;}
.fc5_c01027{color:rgb(0,0,207);}
.fc4_c01027{color:rgb(79,153,5);}
.fc3_c01027{color:rgb(207,92,0);}
.fc2_c01027{color:rgb(33,74,135);}
.fc1_c01027{color:rgb(143,89,3);}
.fc0_c01027{color:rgb(0,0,0);}
.fs1_c01027{font-size:43.999200px;}
.fs0_c01027{font-size:59.775600px;}
.y0_c01027{bottom:0.000000px;}
.y2d_c01027{bottom:44.250000px;}
.y2c_c01027{bottom:96.919500px;}
.y2b_c01027{bottom:113.358000px;}
.y2a_c01027{bottom:129.796500px;}
.y29_c01027{bottom:146.235000px;}
.y28_c01027{bottom:162.673500px;}
.y27_c01027{bottom:179.112000px;}
.y26_c01027{bottom:195.550500px;}
.y25_c01027{bottom:211.989000px;}
.y24_c01027{bottom:228.427500px;}
.y23_c01027{bottom:244.866000px;}
.y22_c01027{bottom:261.304500px;}
.y21_c01027{bottom:294.180000px;}
.y20_c01027{bottom:310.618500px;}
.y1f_c01027{bottom:327.057000px;}
.y1e_c01027{bottom:359.934000px;}
.y1d_c01027{bottom:376.372500px;}
.y1c_c01027{bottom:392.811000px;}
.y1b_c01027{bottom:409.249500px;}
.y1a_c01027{bottom:425.688000px;}
.y19_c01027{bottom:442.125000px;}
.y18_c01027{bottom:458.563500px;}
.y17_c01027{bottom:507.879000px;}
.y16_c01027{bottom:524.317500px;}
.y15_c01027{bottom:540.756000px;}
.y14_c01027{bottom:557.194500px;}
.y13_c01027{bottom:573.633000px;}
.y12_c01027{bottom:590.071500px;}
.y11_c01027{bottom:606.508500px;}
.y10_c01027{bottom:622.947000px;}
.yf_c01027{bottom:639.385500px;}
.ye_c01027{bottom:655.824000px;}
.yd_c01027{bottom:672.262500px;}
.yc_c01027{bottom:688.701000px;}
.yb_c01027{bottom:705.139500px;}
.ya_c01027{bottom:721.578000px;}
.y9_c01027{bottom:738.016500px;}
.y8_c01027{bottom:754.455000px;}
.y7_c01027{bottom:787.330500px;}
.y6_c01027{bottom:803.769000px;}
.y5_c01027{bottom:853.084500px;}
.y4_c01027{bottom:869.523000px;}
.y3_c01027{bottom:885.588000px;}
.y2_c01027{bottom:1141.930500px;}
.y1_c01027{bottom:1159.863000px;}
.h3_c01027{height:35.190766px;}
.h4_c01027{height:36.007158px;}
.h2_c01027{height:52.332837px;}
.h0_c01027{height:1262.835000px;}
.h1_c01027{height:1263.000000px;}
.w0_c01027{width:892.920000px;}
.w1_c01027{width:893.250000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:127.558500px;}
.x2_c01027{left:137.122500px;}
.x3_c01027{left:143.770500px;}
.x4_c01027{left:177.007500px;}
.x5_c01027{left:435.249000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls4_c01027{letter-spacing:0.000000pt;}
.ls1_c01027{letter-spacing:0.078221pt;}
.ls2_c01027{letter-spacing:0.087539pt;}
.ls0_c01027{letter-spacing:0.092873pt;}
.ls3_c01027{letter-spacing:23.724873pt;}
.ws1_c01027{word-spacing:-29.967501pt;}
.ws4_c01027{word-spacing:-23.622682pt;}
.ws3_c01027{word-spacing:-23.544461pt;}
.ws0_c01027{word-spacing:-16.684034pt;}
.ws8_c01027{word-spacing:0.000000pt;}
.ws5_c01027{word-spacing:0.039110pt;}
.wsb_c01027{word-spacing:0.050460pt;}
.ws9_c01027{word-spacing:0.065111pt;}
.wsa_c01027{word-spacing:0.074430pt;}
.ws2_c01027{word-spacing:0.156442pt;}
.wsc_c01027{word-spacing:0.180412pt;}
.ws6_c01027{word-spacing:0.189730pt;}
.ws7_c01027{word-spacing:0.195063pt;}
._0_c01027{margin-left:-3.400567pt;}
._1_c01027{width:0.893988pt;}
._3_c01027{width:47.362694pt;}
._2_c01027{width:70.985376pt;}
._4_c01027{width:118.624363pt;}
.fs1_c01027{font-size:39.110400pt;}
.fs0_c01027{font-size:53.133867pt;}
.y0_c01027{bottom:0.000000pt;}
.y2d_c01027{bottom:39.333333pt;}
.y2c_c01027{bottom:86.150667pt;}
.y2b_c01027{bottom:100.762667pt;}
.y2a_c01027{bottom:115.374667pt;}
.y29_c01027{bottom:129.986667pt;}
.y28_c01027{bottom:144.598667pt;}
.y27_c01027{bottom:159.210667pt;}
.y26_c01027{bottom:173.822667pt;}
.y25_c01027{bottom:188.434667pt;}
.y24_c01027{bottom:203.046667pt;}
.y23_c01027{bottom:217.658667pt;}
.y22_c01027{bottom:232.270667pt;}
.y21_c01027{bottom:261.493333pt;}
.y20_c01027{bottom:276.105333pt;}
.y1f_c01027{bottom:290.717333pt;}
.y1e_c01027{bottom:319.941333pt;}
.y1d_c01027{bottom:334.553333pt;}
.y1c_c01027{bottom:349.165333pt;}
.y1b_c01027{bottom:363.777333pt;}
.y1a_c01027{bottom:378.389333pt;}
.y19_c01027{bottom:393.000000pt;}
.y18_c01027{bottom:407.612000pt;}
.y17_c01027{bottom:451.448000pt;}
.y16_c01027{bottom:466.060000pt;}
.y15_c01027{bottom:480.672000pt;}
.y14_c01027{bottom:495.284000pt;}
.y13_c01027{bottom:509.896000pt;}
.y12_c01027{bottom:524.508000pt;}
.y11_c01027{bottom:539.118667pt;}
.y10_c01027{bottom:553.730667pt;}
.yf_c01027{bottom:568.342667pt;}
.ye_c01027{bottom:582.954667pt;}
.yd_c01027{bottom:597.566667pt;}
.yc_c01027{bottom:612.178667pt;}
.yb_c01027{bottom:626.790667pt;}
.ya_c01027{bottom:641.402667pt;}
.y9_c01027{bottom:656.014667pt;}
.y8_c01027{bottom:670.626667pt;}
.y7_c01027{bottom:699.849333pt;}
.y6_c01027{bottom:714.461333pt;}
.y5_c01027{bottom:758.297333pt;}
.y4_c01027{bottom:772.909333pt;}
.y3_c01027{bottom:787.189333pt;}
.y2_c01027{bottom:1015.049333pt;}
.y1_c01027{bottom:1030.989333pt;}
.h3_c01027{height:31.280681pt;}
.h4_c01027{height:32.006363pt;}
.h2_c01027{height:46.518078pt;}
.h0_c01027{height:1122.520000pt;}
.h1_c01027{height:1122.666667pt;}
.w0_c01027{width:793.706667pt;}
.w1_c01027{width:794.000000pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:113.385333pt;}
.x2_c01027{left:121.886667pt;}
.x3_c01027{left:127.796000pt;}
.x4_c01027{left:157.340000pt;}
.x5_c01027{left:386.888000pt;}
}





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

.ir_c01028:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_2e3f21ed977cf59de8528586.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01028;src:url('chunks/assets/font_4558799d940e26551c4352c8.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01028;src:url('chunks/assets/font_d8fc4864514aa702dfc37141.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01028;src:url('chunks/assets/font_01a278029ab4d5444f6f045d.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01028;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01028{font-family:ff5_c01028;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01028{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls3_c01028{letter-spacing:0.000000px;}
.ls0_c01028{letter-spacing:0.087998px;}
.ls2_c01028{letter-spacing:0.098482px;}
.ls1_c01028{letter-spacing:0.104482px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01028{word-spacing:-26.575517px;}
.ws13_c01028{word-spacing:-26.487518px;}
.wsf_c01028{word-spacing:-21.399665px;}
.wse_c01028{word-spacing:-21.280114px;}
.ws10_c01028{word-spacing:-18.889090px;}
.ws5_c01028{word-spacing:-18.769538px;}
.ws11_c01028{word-spacing:-18.410885px;}
.wsb_c01028{word-spacing:-16.199188px;}
.wsc_c01028{word-spacing:-16.139412px;}
.ws8_c01028{word-spacing:-15.601432px;}
.ws4_c01028{word-spacing:-14.943900px;}
.wsd_c01028{word-spacing:-14.048882px;}
.ws9_c01028{word-spacing:-13.808164px;}
.ws7_c01028{word-spacing:-13.748388px;}
.wsa_c01028{word-spacing:-11.476915px;}
.ws1_c01028{word-spacing:-9.988424px;}
.ws3_c01028{word-spacing:-9.987499px;}
.ws17_c01028{word-spacing:0.000000px;}
.ws6_c01028{word-spacing:0.017856px;}
.ws14_c01028{word-spacing:0.043999px;}
.ws12_c01028{word-spacing:0.175997px;}
.ws16_c01028{word-spacing:0.213446px;}
.ws15_c01028{word-spacing:0.219446px;}
.ws0_c01028{word-spacing:43.038600px;}
._6_c01028{margin-left:-7.179211px;}
._5_c01028{margin-left:-4.656358px;}
._2_c01028{margin-left:-3.591852px;}
._0_c01028{margin-left:-1.549390px;}
._a_c01028{width:1.005737px;}
._9_c01028{width:11.222219px;}
._8_c01028{width:13.669506px;}
._1_c01028{width:19.935816px;}
._4_c01028{width:21.220338px;}
._7_c01028{width:28.222760px;}
._3_c01028{width:29.529146px;}
.fc5_c01028{color:rgb(79,153,5);}
.fc3_c01028{color:rgb(33,74,135);}
.fc2_c01028{color:rgb(143,89,3);}
.fc4_c01028{color:rgb(207,92,0);}
.fc1_c01028{color:rgb(6,69,173);}
.fc0_c01028{color:rgb(0,0,0);}
.fs2_c01028{font-size:43.999200px;}
.fs1_c01028{font-size:59.775600px;}
.fs0_c01028{font-size:86.077200px;}
.y0_c01028{bottom:0.000000px;}
.y20_c01028{bottom:44.250000px;}
.y1f_c01028{bottom:86.982000px;}
.y1e_c01028{bottom:103.420500px;}
.y1d_c01028{bottom:136.297500px;}
.y1c_c01028{bottom:152.736000px;}
.y1b_c01028{bottom:169.174500px;}
.y1a_c01028{bottom:185.613000px;}
.y19_c01028{bottom:218.490000px;}
.y18_c01028{bottom:234.927000px;}
.y17_c01028{bottom:251.365500px;}
.y16_c01028{bottom:267.804000px;}
.y15_c01028{bottom:284.242500px;}
.y14_c01028{bottom:300.681000px;}
.y13_c01028{bottom:317.119500px;}
.y12_c01028{bottom:333.558000px;}
.y11_c01028{bottom:349.623000px;}
.y10_c01028{bottom:397.398000px;}
.yf_c01028{bottom:415.330500px;}
.ye_c01028{bottom:433.263000px;}
.yd_c01028{bottom:451.195500px;}
.yc_c01028{bottom:469.129500px;}
.yb_c01028{bottom:487.062000px;}
.ya_c01028{bottom:504.994500px;}
.y9_c01028{bottom:531.822000px;}
.y8_c01028{bottom:549.754500px;}
.y7_c01028{bottom:567.687000px;}
.y6_c01028{bottom:585.619500px;}
.y5_c01028{bottom:612.447000px;}
.y4_c01028{bottom:639.274500px;}
.y3_c01028{bottom:666.102000px;}
.y2_c01028{bottom:692.929500px;}
.y1_c01028{bottom:735.129000px;}
.h5_c01028{height:35.190766px;}
.h6_c01028{height:36.007158px;}
.h3_c01028{height:40.511979px;}
.h4_c01028{height:52.332837px;}
.h2_c01028{height:58.337477px;}
.h0_c01028{height:1262.835000px;}
.h1_c01028{height:1263.000000px;}
.w0_c01028{width:892.920000px;}
.w1_c01028{width:893.250000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:127.558500px;}
.x2_c01028{left:137.122500px;}
.x3_c01028{left:435.249000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls3_c01028{letter-spacing:0.000000pt;}
.ls0_c01028{letter-spacing:0.078221pt;}
.ls2_c01028{letter-spacing:0.087539pt;}
.ls1_c01028{letter-spacing:0.092873pt;}
.ws2_c01028{word-spacing:-23.622682pt;}
.ws13_c01028{word-spacing:-23.544461pt;}
.wsf_c01028{word-spacing:-19.021924pt;}
.wse_c01028{word-spacing:-18.915657pt;}
.ws10_c01028{word-spacing:-16.790302pt;}
.ws5_c01028{word-spacing:-16.684034pt;}
.ws11_c01028{word-spacing:-16.365231pt;}
.wsb_c01028{word-spacing:-14.399278pt;}
.wsc_c01028{word-spacing:-14.346144pt;}
.ws8_c01028{word-spacing:-13.867939pt;}
.ws4_c01028{word-spacing:-13.283467pt;}
.wsd_c01028{word-spacing:-12.487895pt;}
.ws9_c01028{word-spacing:-12.273923pt;}
.ws7_c01028{word-spacing:-12.220789pt;}
.wsa_c01028{word-spacing:-10.201702pt;}
.ws1_c01028{word-spacing:-8.878599pt;}
.ws3_c01028{word-spacing:-8.877777pt;}
.ws17_c01028{word-spacing:0.000000pt;}
.ws6_c01028{word-spacing:0.015872pt;}
.ws14_c01028{word-spacing:0.039110pt;}
.ws12_c01028{word-spacing:0.156442pt;}
.ws16_c01028{word-spacing:0.189730pt;}
.ws15_c01028{word-spacing:0.195063pt;}
.ws0_c01028{word-spacing:38.256533pt;}
._6_c01028{margin-left:-6.381521pt;}
._5_c01028{margin-left:-4.138985pt;}
._2_c01028{margin-left:-3.192757pt;}
._0_c01028{margin-left:-1.377235pt;}
._a_c01028{width:0.893988pt;}
._9_c01028{width:9.975306pt;}
._8_c01028{width:12.150672pt;}
._1_c01028{width:17.720725pt;}
._4_c01028{width:18.862523pt;}
._7_c01028{width:25.086898pt;}
._3_c01028{width:26.248130pt;}
.fs2_c01028{font-size:39.110400pt;}
.fs1_c01028{font-size:53.133867pt;}
.fs0_c01028{font-size:76.513067pt;}
.y0_c01028{bottom:0.000000pt;}
.y20_c01028{bottom:39.333333pt;}
.y1f_c01028{bottom:77.317333pt;}
.y1e_c01028{bottom:91.929333pt;}
.y1d_c01028{bottom:121.153333pt;}
.y1c_c01028{bottom:135.765333pt;}
.y1b_c01028{bottom:150.377333pt;}
.y1a_c01028{bottom:164.989333pt;}
.y19_c01028{bottom:194.213333pt;}
.y18_c01028{bottom:208.824000pt;}
.y17_c01028{bottom:223.436000pt;}
.y16_c01028{bottom:238.048000pt;}
.y15_c01028{bottom:252.660000pt;}
.y14_c01028{bottom:267.272000pt;}
.y13_c01028{bottom:281.884000pt;}
.y12_c01028{bottom:296.496000pt;}
.y11_c01028{bottom:310.776000pt;}
.y10_c01028{bottom:353.242667pt;}
.yf_c01028{bottom:369.182667pt;}
.ye_c01028{bottom:385.122667pt;}
.yd_c01028{bottom:401.062667pt;}
.yc_c01028{bottom:417.004000pt;}
.yb_c01028{bottom:432.944000pt;}
.ya_c01028{bottom:448.884000pt;}
.y9_c01028{bottom:472.730667pt;}
.y8_c01028{bottom:488.670667pt;}
.y7_c01028{bottom:504.610667pt;}
.y6_c01028{bottom:520.550667pt;}
.y5_c01028{bottom:544.397333pt;}
.y4_c01028{bottom:568.244000pt;}
.y3_c01028{bottom:592.090667pt;}
.y2_c01028{bottom:615.937333pt;}
.y1_c01028{bottom:653.448000pt;}
.h5_c01028{height:31.280681pt;}
.h6_c01028{height:32.006363pt;}
.h3_c01028{height:36.010648pt;}
.h4_c01028{height:46.518078pt;}
.h2_c01028{height:51.855535pt;}
.h0_c01028{height:1122.520000pt;}
.h1_c01028{height:1122.666667pt;}
.w0_c01028{width:793.706667pt;}
.w1_c01028{width:794.000000pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:113.385333pt;}
.x2_c01028{left:121.886667pt;}
.x3_c01028{left:386.888000pt;}
}





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

.ir_c01029:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_c2e1182e5779f34a2578a545.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01029;src:url('chunks/assets/font_9d1f1c47bc204c6b2c0a6294.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01029;src:url('chunks/assets/font_8e029a006074804f18785413.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01029;src:url('chunks/assets/font_496e893815a77a273a360d8b.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls4_c01029{letter-spacing:0.000000px;}
.ls0_c01029{letter-spacing:0.087998px;}
.ls1_c01029{letter-spacing:0.098482px;}
.ls2_c01029{letter-spacing:0.104482px;}
.ls3_c01029{letter-spacing:26.690482px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01029{word-spacing:-26.575517px;}
.ws8_c01029{word-spacing:-26.487518px;}
.ws3_c01029{word-spacing:0.000000px;}
.ws5_c01029{word-spacing:0.036900px;}
.ws0_c01029{word-spacing:0.043999px;}
.ws4_c01029{word-spacing:0.053933px;}
.wsb_c01029{word-spacing:0.056767px;}
.ws9_c01029{word-spacing:0.064416px;}
.ws6_c01029{word-spacing:0.070416px;}
.ws2_c01029{word-spacing:0.175997px;}
.wsa_c01029{word-spacing:0.213446px;}
.ws7_c01029{word-spacing:0.219446px;}
._1_c01029{width:1.028438px;}
._0_c01029{width:106.654061px;}
.fc5_c01029{color:rgb(0,0,207);}
.fc4_c01029{color:rgb(207,92,0);}
.fc3_c01029{color:rgb(79,153,5);}
.fc2_c01029{color:rgb(33,74,135);}
.fc1_c01029{color:rgb(0,0,0);}
.fc0_c01029{color:rgb(143,89,3);}
.fs0_c01029{font-size:43.999200px;}
.fs1_c01029{font-size:59.775600px;}
.y0_c01029{bottom:0.000000px;}
.y3a_c01029{bottom:44.250000px;}
.y39_c01029{bottom:91.369500px;}
.y38_c01029{bottom:107.808000px;}
.y37_c01029{bottom:124.246500px;}
.y36_c01029{bottom:140.685000px;}
.y35_c01029{bottom:157.123500px;}
.y34_c01029{bottom:173.562000px;}
.y33_c01029{bottom:190.000500px;}
.y32_c01029{bottom:206.437500px;}
.y31_c01029{bottom:222.876000px;}
.y30_c01029{bottom:239.314500px;}
.y2f_c01029{bottom:255.753000px;}
.y2e_c01029{bottom:272.191500px;}
.y2d_c01029{bottom:288.630000px;}
.y2c_c01029{bottom:305.068500px;}
.y2b_c01029{bottom:321.507000px;}
.y2a_c01029{bottom:337.945500px;}
.y29_c01029{bottom:354.384000px;}
.y28_c01029{bottom:370.822500px;}
.y27_c01029{bottom:387.259500px;}
.y26_c01029{bottom:403.698000px;}
.y25_c01029{bottom:420.136500px;}
.y24_c01029{bottom:436.575000px;}
.y23_c01029{bottom:453.013500px;}
.y22_c01029{bottom:469.452000px;}
.y21_c01029{bottom:485.890500px;}
.y20_c01029{bottom:518.767500px;}
.y1f_c01029{bottom:535.206000px;}
.y1e_c01029{bottom:551.643000px;}
.y1d_c01029{bottom:568.081500px;}
.y1c_c01029{bottom:584.520000px;}
.y1b_c01029{bottom:600.958500px;}
.y1a_c01029{bottom:633.835500px;}
.y19_c01029{bottom:650.274000px;}
.y18_c01029{bottom:666.712500px;}
.y17_c01029{bottom:683.151000px;}
.y16_c01029{bottom:699.589500px;}
.y15_c01029{bottom:716.028000px;}
.y14_c01029{bottom:748.903500px;}
.y13_c01029{bottom:765.342000px;}
.y12_c01029{bottom:781.780500px;}
.y11_c01029{bottom:798.219000px;}
.y10_c01029{bottom:831.096000px;}
.yf_c01029{bottom:847.534500px;}
.ye_c01029{bottom:863.973000px;}
.yd_c01029{bottom:880.411500px;}
.yc_c01029{bottom:913.287000px;}
.yb_c01029{bottom:929.725500px;}
.ya_c01029{bottom:946.164000px;}
.y9_c01029{bottom:962.602500px;}
.y8_c01029{bottom:979.041000px;}
.y7_c01029{bottom:995.479500px;}
.y6_c01029{bottom:1011.918000px;}
.y5_c01029{bottom:1044.795000px;}
.y4_c01029{bottom:1061.232000px;}
.y3_c01029{bottom:1077.670500px;}
.y2_c01029{bottom:1110.547500px;}
.y1_c01029{bottom:1126.986000px;}
.h2_c01029{height:35.190766px;}
.h3_c01029{height:36.007158px;}
.h4_c01029{height:52.332837px;}
.h0_c01029{height:1262.835000px;}
.h1_c01029{height:1263.000000px;}
.w0_c01029{width:892.920000px;}
.w1_c01029{width:893.250000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:137.122500px;}
.x2_c01029{left:143.770500px;}
.x3_c01029{left:203.596500px;}
.x6_c01029{left:230.185500px;}
.x4_c01029{left:243.480000px;}
.x5_c01029{left:276.715500px;}
.x7_c01029{left:435.249000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls4_c01029{letter-spacing:0.000000pt;}
.ls0_c01029{letter-spacing:0.078221pt;}
.ls1_c01029{letter-spacing:0.087539pt;}
.ls2_c01029{letter-spacing:0.092873pt;}
.ls3_c01029{letter-spacing:23.724873pt;}
.ws1_c01029{word-spacing:-23.622682pt;}
.ws8_c01029{word-spacing:-23.544461pt;}
.ws3_c01029{word-spacing:0.000000pt;}
.ws5_c01029{word-spacing:0.032800pt;}
.ws0_c01029{word-spacing:0.039110pt;}
.ws4_c01029{word-spacing:0.047940pt;}
.wsb_c01029{word-spacing:0.050460pt;}
.ws9_c01029{word-spacing:0.057259pt;}
.ws6_c01029{word-spacing:0.062592pt;}
.ws2_c01029{word-spacing:0.156442pt;}
.wsa_c01029{word-spacing:0.189730pt;}
.ws7_c01029{word-spacing:0.195063pt;}
._1_c01029{width:0.914167pt;}
._0_c01029{width:94.803610pt;}
.fs0_c01029{font-size:39.110400pt;}
.fs1_c01029{font-size:53.133867pt;}
.y0_c01029{bottom:0.000000pt;}
.y3a_c01029{bottom:39.333333pt;}
.y39_c01029{bottom:81.217333pt;}
.y38_c01029{bottom:95.829333pt;}
.y37_c01029{bottom:110.441333pt;}
.y36_c01029{bottom:125.053333pt;}
.y35_c01029{bottom:139.665333pt;}
.y34_c01029{bottom:154.277333pt;}
.y33_c01029{bottom:168.889333pt;}
.y32_c01029{bottom:183.500000pt;}
.y31_c01029{bottom:198.112000pt;}
.y30_c01029{bottom:212.724000pt;}
.y2f_c01029{bottom:227.336000pt;}
.y2e_c01029{bottom:241.948000pt;}
.y2d_c01029{bottom:256.560000pt;}
.y2c_c01029{bottom:271.172000pt;}
.y2b_c01029{bottom:285.784000pt;}
.y2a_c01029{bottom:300.396000pt;}
.y29_c01029{bottom:315.008000pt;}
.y28_c01029{bottom:329.620000pt;}
.y27_c01029{bottom:344.230667pt;}
.y26_c01029{bottom:358.842667pt;}
.y25_c01029{bottom:373.454667pt;}
.y24_c01029{bottom:388.066667pt;}
.y23_c01029{bottom:402.678667pt;}
.y22_c01029{bottom:417.290667pt;}
.y21_c01029{bottom:431.902667pt;}
.y20_c01029{bottom:461.126667pt;}
.y1f_c01029{bottom:475.738667pt;}
.y1e_c01029{bottom:490.349333pt;}
.y1d_c01029{bottom:504.961333pt;}
.y1c_c01029{bottom:519.573333pt;}
.y1b_c01029{bottom:534.185333pt;}
.y1a_c01029{bottom:563.409333pt;}
.y19_c01029{bottom:578.021333pt;}
.y18_c01029{bottom:592.633333pt;}
.y17_c01029{bottom:607.245333pt;}
.y16_c01029{bottom:621.857333pt;}
.y15_c01029{bottom:636.469333pt;}
.y14_c01029{bottom:665.692000pt;}
.y13_c01029{bottom:680.304000pt;}
.y12_c01029{bottom:694.916000pt;}
.y11_c01029{bottom:709.528000pt;}
.y10_c01029{bottom:738.752000pt;}
.yf_c01029{bottom:753.364000pt;}
.ye_c01029{bottom:767.976000pt;}
.yd_c01029{bottom:782.588000pt;}
.yc_c01029{bottom:811.810667pt;}
.yb_c01029{bottom:826.422667pt;}
.ya_c01029{bottom:841.034667pt;}
.y9_c01029{bottom:855.646667pt;}
.y8_c01029{bottom:870.258667pt;}
.y7_c01029{bottom:884.870667pt;}
.y6_c01029{bottom:899.482667pt;}
.y5_c01029{bottom:928.706667pt;}
.y4_c01029{bottom:943.317333pt;}
.y3_c01029{bottom:957.929333pt;}
.y2_c01029{bottom:987.153333pt;}
.y1_c01029{bottom:1001.765333pt;}
.h2_c01029{height:31.280681pt;}
.h3_c01029{height:32.006363pt;}
.h4_c01029{height:46.518078pt;}
.h0_c01029{height:1122.520000pt;}
.h1_c01029{height:1122.666667pt;}
.w0_c01029{width:793.706667pt;}
.w1_c01029{width:794.000000pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:121.886667pt;}
.x2_c01029{left:127.796000pt;}
.x3_c01029{left:180.974667pt;}
.x6_c01029{left:204.609333pt;}
.x4_c01029{left:216.426667pt;}
.x5_c01029{left:245.969333pt;}
.x7_c01029{left:386.888000pt;}
}





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

.ir_c01030:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01030;src:url('chunks/assets/font_a8a97a2dc5e470cc1a2059a1.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01030;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01030;src:url('chunks/assets/font_59aadb8e1b3d237aa2d00341.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01030;src:url('chunks/assets/font_e9823163bb26a49ca8fbd91f.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls3_c01030{letter-spacing:0.000000px;}
.ls0_c01030{letter-spacing:0.087998px;}
.ls1_c01030{letter-spacing:0.098482px;}
.ls2_c01030{letter-spacing:0.104482px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01030{word-spacing:-33.713438px;}
.ws0_c01030{word-spacing:-26.575517px;}
.ws2_c01030{word-spacing:-26.487518px;}
.wsd_c01030{word-spacing:-21.553319px;}
.wsc_c01030{word-spacing:-21.519216px;}
.ws9_c01030{word-spacing:-18.769538px;}
.wsb_c01030{word-spacing:-16.019861px;}
.ws8_c01030{word-spacing:-14.943900px;}
.wse_c01030{word-spacing:-14.107042px;}
.wsf_c01030{word-spacing:-12.074671px;}
.ws6_c01030{word-spacing:-9.988424px;}
.ws7_c01030{word-spacing:-9.987499px;}
.wsa_c01030{word-spacing:-4.536144px;}
.ws1_c01030{word-spacing:0.000000px;}
.ws3_c01030{word-spacing:0.043999px;}
.ws11_c01030{word-spacing:0.175997px;}
.ws4_c01030{word-spacing:0.213446px;}
.ws12_c01030{word-spacing:0.219446px;}
.ws5_c01030{word-spacing:43.038600px;}
._3_c01030{margin-left:-3.591852px;}
._1_c01030{margin-left:-1.549390px;}
._0_c01030{width:1.041538px;}
._2_c01030{width:19.935816px;}
._4_c01030{width:40.109428px;}
.fc5_c01030{color:rgb(0,0,207);}
.fc6_c01030{color:rgb(6,69,173);}
.fc4_c01030{color:rgb(207,92,0);}
.fc3_c01030{color:rgb(143,89,3);}
.fc2_c01030{color:rgb(79,153,5);}
.fc1_c01030{color:rgb(0,0,0);}
.fc0_c01030{color:rgb(33,74,135);}
.fs0_c01030{font-size:43.999200px;}
.fs2_c01030{font-size:59.775600px;}
.fs1_c01030{font-size:86.077200px;}
.y0_c01030{bottom:0.000000px;}
.y1e_c01030{bottom:44.250000px;}
.y1d_c01030{bottom:114.927000px;}
.y1c_c01030{bottom:131.365500px;}
.y1b_c01030{bottom:147.430500px;}
.y1a_c01030{bottom:192.424500px;}
.y19_c01030{bottom:210.357000px;}
.y18_c01030{bottom:228.291000px;}
.y17_c01030{bottom:246.223500px;}
.y16_c01030{bottom:264.156000px;}
.y15_c01030{bottom:282.088500px;}
.y14_c01030{bottom:308.956500px;}
.y13_c01030{bottom:335.823000px;}
.y12_c01030{bottom:362.689500px;}
.y11_c01030{bottom:389.557500px;}
.y10_c01030{bottom:431.797500px;}
.yf_c01030{bottom:896.848500px;}
.ye_c01030{bottom:913.287000px;}
.yd_c01030{bottom:929.725500px;}
.yc_c01030{bottom:946.164000px;}
.yb_c01030{bottom:962.602500px;}
.ya_c01030{bottom:979.041000px;}
.y9_c01030{bottom:995.479500px;}
.y8_c01030{bottom:1011.918000px;}
.y7_c01030{bottom:1028.356500px;}
.y6_c01030{bottom:1044.795000px;}
.y5_c01030{bottom:1061.232000px;}
.y4_c01030{bottom:1094.109000px;}
.y3_c01030{bottom:1110.547500px;}
.y2_c01030{bottom:1126.986000px;}
.y1_c01030{bottom:1159.863000px;}
.h3_c01030{height:35.190766px;}
.h2_c01030{height:36.007158px;}
.h5_c01030{height:40.511979px;}
.h6_c01030{height:52.332837px;}
.h4_c01030{height:58.337477px;}
.h0_c01030{height:1262.835000px;}
.h1_c01030{height:1263.000000px;}
.w0_c01030{width:892.920000px;}
.w1_c01030{width:893.250000px;}
.x0_c01030{left:0.000000px;}
.x3_c01030{left:127.558500px;}
.x1_c01030{left:137.122500px;}
.x2_c01030{left:177.007500px;}
.x4_c01030{left:435.249000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls3_c01030{letter-spacing:0.000000pt;}
.ls0_c01030{letter-spacing:0.078221pt;}
.ls1_c01030{letter-spacing:0.087539pt;}
.ls2_c01030{letter-spacing:0.092873pt;}
.ws10_c01030{word-spacing:-29.967501pt;}
.ws0_c01030{word-spacing:-23.622682pt;}
.ws2_c01030{word-spacing:-23.544461pt;}
.wsd_c01030{word-spacing:-19.158506pt;}
.wsc_c01030{word-spacing:-19.128192pt;}
.ws9_c01030{word-spacing:-16.684034pt;}
.wsb_c01030{word-spacing:-14.239876pt;}
.ws8_c01030{word-spacing:-13.283467pt;}
.wse_c01030{word-spacing:-12.539593pt;}
.wsf_c01030{word-spacing:-10.733041pt;}
.ws6_c01030{word-spacing:-8.878599pt;}
.ws7_c01030{word-spacing:-8.877777pt;}
.wsa_c01030{word-spacing:-4.032128pt;}
.ws1_c01030{word-spacing:0.000000pt;}
.ws3_c01030{word-spacing:0.039110pt;}
.ws11_c01030{word-spacing:0.156442pt;}
.ws4_c01030{word-spacing:0.189730pt;}
.ws12_c01030{word-spacing:0.195063pt;}
.ws5_c01030{word-spacing:38.256533pt;}
._3_c01030{margin-left:-3.192757pt;}
._1_c01030{margin-left:-1.377235pt;}
._0_c01030{width:0.925811pt;}
._2_c01030{width:17.720725pt;}
._4_c01030{width:35.652825pt;}
.fs0_c01030{font-size:39.110400pt;}
.fs2_c01030{font-size:53.133867pt;}
.fs1_c01030{font-size:76.513067pt;}
.y0_c01030{bottom:0.000000pt;}
.y1e_c01030{bottom:39.333333pt;}
.y1d_c01030{bottom:102.157333pt;}
.y1c_c01030{bottom:116.769333pt;}
.y1b_c01030{bottom:131.049333pt;}
.y1a_c01030{bottom:171.044000pt;}
.y19_c01030{bottom:186.984000pt;}
.y18_c01030{bottom:202.925333pt;}
.y17_c01030{bottom:218.865333pt;}
.y16_c01030{bottom:234.805333pt;}
.y15_c01030{bottom:250.745333pt;}
.y14_c01030{bottom:274.628000pt;}
.y13_c01030{bottom:298.509333pt;}
.y12_c01030{bottom:322.390667pt;}
.y11_c01030{bottom:346.273333pt;}
.y10_c01030{bottom:383.820000pt;}
.yf_c01030{bottom:797.198667pt;}
.ye_c01030{bottom:811.810667pt;}
.yd_c01030{bottom:826.422667pt;}
.yc_c01030{bottom:841.034667pt;}
.yb_c01030{bottom:855.646667pt;}
.ya_c01030{bottom:870.258667pt;}
.y9_c01030{bottom:884.870667pt;}
.y8_c01030{bottom:899.482667pt;}
.y7_c01030{bottom:914.094667pt;}
.y6_c01030{bottom:928.706667pt;}
.y5_c01030{bottom:943.317333pt;}
.y4_c01030{bottom:972.541333pt;}
.y3_c01030{bottom:987.153333pt;}
.y2_c01030{bottom:1001.765333pt;}
.y1_c01030{bottom:1030.989333pt;}
.h3_c01030{height:31.280681pt;}
.h2_c01030{height:32.006363pt;}
.h5_c01030{height:36.010648pt;}
.h6_c01030{height:46.518078pt;}
.h4_c01030{height:51.855535pt;}
.h0_c01030{height:1122.520000pt;}
.h1_c01030{height:1122.666667pt;}
.w0_c01030{width:793.706667pt;}
.w1_c01030{width:794.000000pt;}
.x0_c01030{left:0.000000pt;}
.x3_c01030{left:113.385333pt;}
.x1_c01030{left:121.886667pt;}
.x2_c01030{left:157.340000pt;}
.x4_c01030{left:386.888000pt;}
}





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

.ir_c01031:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_44e70938990145f6bb3725a7.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01031;src:url('chunks/assets/font_d9b35836d9af6d39ab220415.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01031;src:url('chunks/assets/font_754d40453d9536399c563bd8.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01031;src:url('chunks/assets/font_410fe46a354c0ced6c8b5f46.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls4_c01031{letter-spacing:0.000000px;}
.ls0_c01031{letter-spacing:0.087998px;}
.ls2_c01031{letter-spacing:0.098482px;}
.ls1_c01031{letter-spacing:0.104482px;}
.ls3_c01031{letter-spacing:26.690482px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01031{word-spacing:-26.575517px;}
.ws5_c01031{word-spacing:-26.487518px;}
.ws0_c01031{word-spacing:0.000000px;}
.ws8_c01031{word-spacing:0.043999px;}
.ws6_c01031{word-spacing:0.056767px;}
.ws3_c01031{word-spacing:0.073250px;}
.ws4_c01031{word-spacing:0.083734px;}
.ws2_c01031{word-spacing:0.175997px;}
.ws7_c01031{word-spacing:0.202963px;}
.wsa_c01031{word-spacing:0.213446px;}
.ws9_c01031{word-spacing:0.219446px;}
._4_c01031{width:1.041538px;}
._1_c01031{width:53.283031px;}
._0_c01031{width:79.858548px;}
._3_c01031{width:106.654061px;}
._2_c01031{width:133.452408px;}
.fc5_c01031{color:rgb(207,92,0);}
.fc4_c01031{color:rgb(0,0,207);}
.fc3_c01031{color:rgb(79,153,5);}
.fc2_c01031{color:rgb(33,74,135);}
.fc1_c01031{color:rgb(0,0,0);}
.fc0_c01031{color:rgb(143,89,3);}
.fs0_c01031{font-size:43.999200px;}
.fs1_c01031{font-size:59.775600px;}
.y0_c01031{bottom:0.000000px;}
.y28_c01031{bottom:44.250000px;}
.y27_c01031{bottom:453.013500px;}
.y26_c01031{bottom:469.452000px;}
.y25_c01031{bottom:485.890500px;}
.y24_c01031{bottom:502.329000px;}
.y23_c01031{bottom:518.767500px;}
.y22_c01031{bottom:535.206000px;}
.y21_c01031{bottom:551.643000px;}
.y20_c01031{bottom:568.081500px;}
.y1f_c01031{bottom:584.520000px;}
.y1e_c01031{bottom:600.958500px;}
.y1d_c01031{bottom:617.397000px;}
.y1c_c01031{bottom:650.274000px;}
.y1b_c01031{bottom:666.712500px;}
.y1a_c01031{bottom:683.151000px;}
.y19_c01031{bottom:716.028000px;}
.y18_c01031{bottom:732.465000px;}
.y17_c01031{bottom:748.903500px;}
.y16_c01031{bottom:765.342000px;}
.y15_c01031{bottom:781.780500px;}
.y14_c01031{bottom:798.219000px;}
.y13_c01031{bottom:814.657500px;}
.y12_c01031{bottom:863.973000px;}
.y11_c01031{bottom:880.411500px;}
.y10_c01031{bottom:896.848500px;}
.yf_c01031{bottom:913.287000px;}
.ye_c01031{bottom:929.725500px;}
.yd_c01031{bottom:946.164000px;}
.yc_c01031{bottom:962.602500px;}
.yb_c01031{bottom:979.041000px;}
.ya_c01031{bottom:995.479500px;}
.y9_c01031{bottom:1011.918000px;}
.y8_c01031{bottom:1028.356500px;}
.y7_c01031{bottom:1044.795000px;}
.y6_c01031{bottom:1061.232000px;}
.y5_c01031{bottom:1077.670500px;}
.y4_c01031{bottom:1094.109000px;}
.y3_c01031{bottom:1110.547500px;}
.y2_c01031{bottom:1143.424500px;}
.y1_c01031{bottom:1159.863000px;}
.h2_c01031{height:35.190766px;}
.h3_c01031{height:36.007158px;}
.h4_c01031{height:52.332837px;}
.h0_c01031{height:1262.835000px;}
.h1_c01031{height:1263.000000px;}
.w0_c01031{width:892.920000px;}
.w1_c01031{width:893.250000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:137.122500px;}
.x2_c01031{left:143.770500px;}
.x3_c01031{left:177.007500px;}
.x4_c01031{left:435.249000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls4_c01031{letter-spacing:0.000000pt;}
.ls0_c01031{letter-spacing:0.078221pt;}
.ls2_c01031{letter-spacing:0.087539pt;}
.ls1_c01031{letter-spacing:0.092873pt;}
.ls3_c01031{letter-spacing:23.724873pt;}
.ws1_c01031{word-spacing:-23.622682pt;}
.ws5_c01031{word-spacing:-23.544461pt;}
.ws0_c01031{word-spacing:0.000000pt;}
.ws8_c01031{word-spacing:0.039110pt;}
.ws6_c01031{word-spacing:0.050460pt;}
.ws3_c01031{word-spacing:0.065111pt;}
.ws4_c01031{word-spacing:0.074430pt;}
.ws2_c01031{word-spacing:0.156442pt;}
.ws7_c01031{word-spacing:0.180412pt;}
.wsa_c01031{word-spacing:0.189730pt;}
.ws9_c01031{word-spacing:0.195063pt;}
._4_c01031{width:0.925811pt;}
._1_c01031{width:47.362694pt;}
._0_c01031{width:70.985376pt;}
._3_c01031{width:94.803610pt;}
._2_c01031{width:118.624363pt;}
.fs0_c01031{font-size:39.110400pt;}
.fs1_c01031{font-size:53.133867pt;}
.y0_c01031{bottom:0.000000pt;}
.y28_c01031{bottom:39.333333pt;}
.y27_c01031{bottom:402.678667pt;}
.y26_c01031{bottom:417.290667pt;}
.y25_c01031{bottom:431.902667pt;}
.y24_c01031{bottom:446.514667pt;}
.y23_c01031{bottom:461.126667pt;}
.y22_c01031{bottom:475.738667pt;}
.y21_c01031{bottom:490.349333pt;}
.y20_c01031{bottom:504.961333pt;}
.y1f_c01031{bottom:519.573333pt;}
.y1e_c01031{bottom:534.185333pt;}
.y1d_c01031{bottom:548.797333pt;}
.y1c_c01031{bottom:578.021333pt;}
.y1b_c01031{bottom:592.633333pt;}
.y1a_c01031{bottom:607.245333pt;}
.y19_c01031{bottom:636.469333pt;}
.y18_c01031{bottom:651.080000pt;}
.y17_c01031{bottom:665.692000pt;}
.y16_c01031{bottom:680.304000pt;}
.y15_c01031{bottom:694.916000pt;}
.y14_c01031{bottom:709.528000pt;}
.y13_c01031{bottom:724.140000pt;}
.y12_c01031{bottom:767.976000pt;}
.y11_c01031{bottom:782.588000pt;}
.y10_c01031{bottom:797.198667pt;}
.yf_c01031{bottom:811.810667pt;}
.ye_c01031{bottom:826.422667pt;}
.yd_c01031{bottom:841.034667pt;}
.yc_c01031{bottom:855.646667pt;}
.yb_c01031{bottom:870.258667pt;}
.ya_c01031{bottom:884.870667pt;}
.y9_c01031{bottom:899.482667pt;}
.y8_c01031{bottom:914.094667pt;}
.y7_c01031{bottom:928.706667pt;}
.y6_c01031{bottom:943.317333pt;}
.y5_c01031{bottom:957.929333pt;}
.y4_c01031{bottom:972.541333pt;}
.y3_c01031{bottom:987.153333pt;}
.y2_c01031{bottom:1016.377333pt;}
.y1_c01031{bottom:1030.989333pt;}
.h2_c01031{height:31.280681pt;}
.h3_c01031{height:32.006363pt;}
.h4_c01031{height:46.518078pt;}
.h0_c01031{height:1122.520000pt;}
.h1_c01031{height:1122.666667pt;}
.w0_c01031{width:793.706667pt;}
.w1_c01031{width:794.000000pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:121.886667pt;}
.x2_c01031{left:127.796000pt;}
.x3_c01031{left:157.340000pt;}
.x4_c01031{left:386.888000pt;}
}





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

.ir_c01032:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_0cd6ce265816dfa9b865eb82.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01032;src:url('chunks/assets/font_ebdfee3423ae12a802106f8e.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01032;src:url('chunks/assets/font_e9823163bb26a49ca8fbd91f.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01032;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01032;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01032{font-family:ff5_c01032;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls3_c01032{letter-spacing:0.000000px;}
.ls0_c01032{letter-spacing:0.087998px;}
.ls2_c01032{letter-spacing:0.098482px;}
.ls1_c01032{letter-spacing:0.104482px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01032{word-spacing:-33.713438px;}
.ws2_c01032{word-spacing:-26.575517px;}
.wse_c01032{word-spacing:-26.487518px;}
.ws9_c01032{word-spacing:-21.553319px;}
.ws8_c01032{word-spacing:-21.519216px;}
.ws5_c01032{word-spacing:-18.769538px;}
.ws7_c01032{word-spacing:-17.633802px;}
.ws4_c01032{word-spacing:-14.943900px;}
.wsa_c01032{word-spacing:-14.107042px;}
.wsb_c01032{word-spacing:-12.074671px;}
.ws1_c01032{word-spacing:-9.988424px;}
.ws3_c01032{word-spacing:-9.987499px;}
.ws6_c01032{word-spacing:-7.686144px;}
.ws12_c01032{word-spacing:0.000000px;}
.wsf_c01032{word-spacing:0.043999px;}
.ws15_c01032{word-spacing:0.056767px;}
.ws13_c01032{word-spacing:0.073250px;}
.ws14_c01032{word-spacing:0.083734px;}
.wsd_c01032{word-spacing:0.175997px;}
.ws16_c01032{word-spacing:0.202963px;}
.ws10_c01032{word-spacing:0.213446px;}
.ws11_c01032{word-spacing:0.219446px;}
.ws0_c01032{word-spacing:43.038600px;}
._2_c01032{margin-left:-3.591852px;}
._0_c01032{margin-left:-1.549390px;}
._4_c01032{width:1.005737px;}
._1_c01032{width:19.935816px;}
._3_c01032{width:40.109428px;}
._6_c01032{width:53.283031px;}
._5_c01032{width:79.858548px;}
._7_c01032{width:133.452408px;}
.fc6_c01032{color:rgb(0,0,207);}
.fc5_c01032{color:rgb(79,153,5);}
.fc3_c01032{color:rgb(33,74,135);}
.fc2_c01032{color:rgb(143,89,3);}
.fc4_c01032{color:rgb(207,92,0);}
.fc1_c01032{color:rgb(6,69,173);}
.fc0_c01032{color:rgb(0,0,0);}
.fs2_c01032{font-size:43.999200px;}
.fs1_c01032{font-size:59.775600px;}
.fs0_c01032{font-size:86.077200px;}
.y0_c01032{bottom:0.000000px;}
.y20_c01032{bottom:44.250000px;}
.y1f_c01032{bottom:86.982000px;}
.y1e_c01032{bottom:103.420500px;}
.y1d_c01032{bottom:119.859000px;}
.y1c_c01032{bottom:136.297500px;}
.y1b_c01032{bottom:152.736000px;}
.y1a_c01032{bottom:169.174500px;}
.y19_c01032{bottom:185.613000px;}
.y18_c01032{bottom:202.051500px;}
.y17_c01032{bottom:218.490000px;}
.y16_c01032{bottom:234.927000px;}
.y15_c01032{bottom:251.365500px;}
.y14_c01032{bottom:267.804000px;}
.y13_c01032{bottom:284.242500px;}
.y12_c01032{bottom:300.681000px;}
.y11_c01032{bottom:317.119500px;}
.y10_c01032{bottom:349.996500px;}
.yf_c01032{bottom:366.435000px;}
.ye_c01032{bottom:415.749000px;}
.yd_c01032{bottom:432.187500px;}
.yc_c01032{bottom:448.252500px;}
.yb_c01032{bottom:493.890000px;}
.ya_c01032{bottom:511.822500px;}
.y9_c01032{bottom:529.756500px;}
.y8_c01032{bottom:547.689000px;}
.y7_c01032{bottom:565.621500px;}
.y6_c01032{bottom:583.554000px;}
.y5_c01032{bottom:610.633500px;}
.y4_c01032{bottom:637.714500px;}
.y3_c01032{bottom:664.794000px;}
.y2_c01032{bottom:691.873500px;}
.y1_c01032{bottom:734.407500px;}
.h5_c01032{height:35.190766px;}
.h6_c01032{height:36.007158px;}
.h3_c01032{height:40.511979px;}
.h4_c01032{height:52.332837px;}
.h2_c01032{height:58.337477px;}
.h0_c01032{height:1262.835000px;}
.h1_c01032{height:1263.000000px;}
.w0_c01032{width:892.920000px;}
.w1_c01032{width:893.250000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:127.558500px;}
.x2_c01032{left:137.122500px;}
.x3_c01032{left:143.770500px;}
.x4_c01032{left:435.249000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls3_c01032{letter-spacing:0.000000pt;}
.ls0_c01032{letter-spacing:0.078221pt;}
.ls2_c01032{letter-spacing:0.087539pt;}
.ls1_c01032{letter-spacing:0.092873pt;}
.wsc_c01032{word-spacing:-29.967501pt;}
.ws2_c01032{word-spacing:-23.622682pt;}
.wse_c01032{word-spacing:-23.544461pt;}
.ws9_c01032{word-spacing:-19.158506pt;}
.ws8_c01032{word-spacing:-19.128192pt;}
.ws5_c01032{word-spacing:-16.684034pt;}
.ws7_c01032{word-spacing:-15.674491pt;}
.ws4_c01032{word-spacing:-13.283467pt;}
.wsa_c01032{word-spacing:-12.539593pt;}
.wsb_c01032{word-spacing:-10.733041pt;}
.ws1_c01032{word-spacing:-8.878599pt;}
.ws3_c01032{word-spacing:-8.877777pt;}
.ws6_c01032{word-spacing:-6.832128pt;}
.ws12_c01032{word-spacing:0.000000pt;}
.wsf_c01032{word-spacing:0.039110pt;}
.ws15_c01032{word-spacing:0.050460pt;}
.ws13_c01032{word-spacing:0.065111pt;}
.ws14_c01032{word-spacing:0.074430pt;}
.wsd_c01032{word-spacing:0.156442pt;}
.ws16_c01032{word-spacing:0.180412pt;}
.ws10_c01032{word-spacing:0.189730pt;}
.ws11_c01032{word-spacing:0.195063pt;}
.ws0_c01032{word-spacing:38.256533pt;}
._2_c01032{margin-left:-3.192757pt;}
._0_c01032{margin-left:-1.377235pt;}
._4_c01032{width:0.893988pt;}
._1_c01032{width:17.720725pt;}
._3_c01032{width:35.652825pt;}
._6_c01032{width:47.362694pt;}
._5_c01032{width:70.985376pt;}
._7_c01032{width:118.624363pt;}
.fs2_c01032{font-size:39.110400pt;}
.fs1_c01032{font-size:53.133867pt;}
.fs0_c01032{font-size:76.513067pt;}
.y0_c01032{bottom:0.000000pt;}
.y20_c01032{bottom:39.333333pt;}
.y1f_c01032{bottom:77.317333pt;}
.y1e_c01032{bottom:91.929333pt;}
.y1d_c01032{bottom:106.541333pt;}
.y1c_c01032{bottom:121.153333pt;}
.y1b_c01032{bottom:135.765333pt;}
.y1a_c01032{bottom:150.377333pt;}
.y19_c01032{bottom:164.989333pt;}
.y18_c01032{bottom:179.601333pt;}
.y17_c01032{bottom:194.213333pt;}
.y16_c01032{bottom:208.824000pt;}
.y15_c01032{bottom:223.436000pt;}
.y14_c01032{bottom:238.048000pt;}
.y13_c01032{bottom:252.660000pt;}
.y12_c01032{bottom:267.272000pt;}
.y11_c01032{bottom:281.884000pt;}
.y10_c01032{bottom:311.108000pt;}
.yf_c01032{bottom:325.720000pt;}
.ye_c01032{bottom:369.554667pt;}
.yd_c01032{bottom:384.166667pt;}
.yc_c01032{bottom:398.446667pt;}
.yb_c01032{bottom:439.013333pt;}
.ya_c01032{bottom:454.953333pt;}
.y9_c01032{bottom:470.894667pt;}
.y8_c01032{bottom:486.834667pt;}
.y7_c01032{bottom:502.774667pt;}
.y6_c01032{bottom:518.714667pt;}
.y5_c01032{bottom:542.785333pt;}
.y4_c01032{bottom:566.857333pt;}
.y3_c01032{bottom:590.928000pt;}
.y2_c01032{bottom:614.998667pt;}
.y1_c01032{bottom:652.806667pt;}
.h5_c01032{height:31.280681pt;}
.h6_c01032{height:32.006363pt;}
.h3_c01032{height:36.010648pt;}
.h4_c01032{height:46.518078pt;}
.h2_c01032{height:51.855535pt;}
.h0_c01032{height:1122.520000pt;}
.h1_c01032{height:1122.666667pt;}
.w0_c01032{width:793.706667pt;}
.w1_c01032{width:794.000000pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:113.385333pt;}
.x2_c01032{left:121.886667pt;}
.x3_c01032{left:127.796000pt;}
.x4_c01032{left:386.888000pt;}
}





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

.ir_c01033:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_34d86a1f595972be212693a8.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01033;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01033;src:url('chunks/assets/font_04c83462af8fc0c155024a0e.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01033;src:url('chunks/assets/font_a6c87ff3f8b87918dbf9a534.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01033;src:url('chunks/assets/font_a1a1bbb4eb4d521aadf14dfe.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01033{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls4_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:0.087998px;}
.ls2_c01033{letter-spacing:0.098482px;}
.ls3_c01033{letter-spacing:0.104482px;}
.ls1_c01033{letter-spacing:26.690482px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01033{word-spacing:-26.575517px;}
.ws4_c01033{word-spacing:-26.487518px;}
.wse_c01033{word-spacing:-21.553319px;}
.wsd_c01033{word-spacing:-21.519216px;}
.wsa_c01033{word-spacing:-18.769538px;}
.wsc_c01033{word-spacing:-17.633802px;}
.ws9_c01033{word-spacing:-14.943900px;}
.wsf_c01033{word-spacing:-14.107042px;}
.ws10_c01033{word-spacing:-12.074671px;}
.ws7_c01033{word-spacing:-9.988424px;}
.ws8_c01033{word-spacing:-9.987499px;}
.wsb_c01033{word-spacing:-7.686144px;}
.ws3_c01033{word-spacing:0.000000px;}
.ws0_c01033{word-spacing:0.043999px;}
.ws5_c01033{word-spacing:0.213446px;}
.ws1_c01033{word-spacing:0.219446px;}
.ws6_c01033{word-spacing:43.038600px;}
._4_c01033{margin-left:-3.591852px;}
._2_c01033{margin-left:-1.549390px;}
._1_c01033{width:1.041538px;}
._3_c01033{width:19.935816px;}
._5_c01033{width:40.109428px;}
._0_c01033{width:80.078544px;}
.fc5_c01033{color:rgb(79,153,5);}
.fc4_c01033{color:rgb(143,89,3);}
.fc3_c01033{color:rgb(0,0,0);}
.fc6_c01033{color:rgb(6,69,173);}
.fc2_c01033{color:rgb(207,92,0);}
.fc1_c01033{color:rgb(0,0,207);}
.fc0_c01033{color:rgb(33,74,135);}
.fs0_c01033{font-size:43.999200px;}
.fs2_c01033{font-size:59.775600px;}
.fs1_c01033{font-size:86.077200px;}
.y0_c01033{bottom:0.000000px;}
.y20_c01033{bottom:44.250000px;}
.y1f_c01033{bottom:82.051500px;}
.y1e_c01033{bottom:99.984000px;}
.y1d_c01033{bottom:117.916500px;}
.y1c_c01033{bottom:135.849000px;}
.y1b_c01033{bottom:162.501000px;}
.y1a_c01033{bottom:189.151500px;}
.y19_c01033{bottom:215.802000px;}
.y18_c01033{bottom:242.454000px;}
.y17_c01033{bottom:284.478000px;}
.y16_c01033{bottom:748.903500px;}
.y15_c01033{bottom:765.342000px;}
.y14_c01033{bottom:781.780500px;}
.y13_c01033{bottom:798.219000px;}
.y12_c01033{bottom:814.657500px;}
.y11_c01033{bottom:831.096000px;}
.y10_c01033{bottom:847.534500px;}
.yf_c01033{bottom:863.973000px;}
.ye_c01033{bottom:880.411500px;}
.yd_c01033{bottom:896.848500px;}
.yc_c01033{bottom:913.287000px;}
.yb_c01033{bottom:946.164000px;}
.ya_c01033{bottom:962.602500px;}
.y9_c01033{bottom:979.041000px;}
.y8_c01033{bottom:1011.918000px;}
.y7_c01033{bottom:1028.356500px;}
.y6_c01033{bottom:1044.795000px;}
.y5_c01033{bottom:1061.232000px;}
.y4_c01033{bottom:1077.670500px;}
.y3_c01033{bottom:1094.109000px;}
.y2_c01033{bottom:1110.547500px;}
.y1_c01033{bottom:1159.863000px;}
.h3_c01033{height:35.190766px;}
.h2_c01033{height:36.007158px;}
.h5_c01033{height:40.511979px;}
.h6_c01033{height:52.332837px;}
.h4_c01033{height:58.337477px;}
.h0_c01033{height:1262.835000px;}
.h1_c01033{height:1263.000000px;}
.w0_c01033{width:892.920000px;}
.w1_c01033{width:893.250000px;}
.x0_c01033{left:0.000000px;}
.x4_c01033{left:127.558500px;}
.x2_c01033{left:137.122500px;}
.x1_c01033{left:143.770500px;}
.x3_c01033{left:177.007500px;}
.x5_c01033{left:435.249000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls4_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.078221pt;}
.ls2_c01033{letter-spacing:0.087539pt;}
.ls3_c01033{letter-spacing:0.092873pt;}
.ls1_c01033{letter-spacing:23.724873pt;}
.ws2_c01033{word-spacing:-23.622682pt;}
.ws4_c01033{word-spacing:-23.544461pt;}
.wse_c01033{word-spacing:-19.158506pt;}
.wsd_c01033{word-spacing:-19.128192pt;}
.wsa_c01033{word-spacing:-16.684034pt;}
.wsc_c01033{word-spacing:-15.674491pt;}
.ws9_c01033{word-spacing:-13.283467pt;}
.wsf_c01033{word-spacing:-12.539593pt;}
.ws10_c01033{word-spacing:-10.733041pt;}
.ws7_c01033{word-spacing:-8.878599pt;}
.ws8_c01033{word-spacing:-8.877777pt;}
.wsb_c01033{word-spacing:-6.832128pt;}
.ws3_c01033{word-spacing:0.000000pt;}
.ws0_c01033{word-spacing:0.039110pt;}
.ws5_c01033{word-spacing:0.189730pt;}
.ws1_c01033{word-spacing:0.195063pt;}
.ws6_c01033{word-spacing:38.256533pt;}
._4_c01033{margin-left:-3.192757pt;}
._2_c01033{margin-left:-1.377235pt;}
._1_c01033{width:0.925811pt;}
._3_c01033{width:17.720725pt;}
._5_c01033{width:35.652825pt;}
._0_c01033{width:71.180928pt;}
.fs0_c01033{font-size:39.110400pt;}
.fs2_c01033{font-size:53.133867pt;}
.fs1_c01033{font-size:76.513067pt;}
.y0_c01033{bottom:0.000000pt;}
.y20_c01033{bottom:39.333333pt;}
.y1f_c01033{bottom:72.934667pt;}
.y1e_c01033{bottom:88.874667pt;}
.y1d_c01033{bottom:104.814667pt;}
.y1c_c01033{bottom:120.754667pt;}
.y1b_c01033{bottom:144.445333pt;}
.y1a_c01033{bottom:168.134667pt;}
.y19_c01033{bottom:191.824000pt;}
.y18_c01033{bottom:215.514667pt;}
.y17_c01033{bottom:252.869333pt;}
.y16_c01033{bottom:665.692000pt;}
.y15_c01033{bottom:680.304000pt;}
.y14_c01033{bottom:694.916000pt;}
.y13_c01033{bottom:709.528000pt;}
.y12_c01033{bottom:724.140000pt;}
.y11_c01033{bottom:738.752000pt;}
.y10_c01033{bottom:753.364000pt;}
.yf_c01033{bottom:767.976000pt;}
.ye_c01033{bottom:782.588000pt;}
.yd_c01033{bottom:797.198667pt;}
.yc_c01033{bottom:811.810667pt;}
.yb_c01033{bottom:841.034667pt;}
.ya_c01033{bottom:855.646667pt;}
.y9_c01033{bottom:870.258667pt;}
.y8_c01033{bottom:899.482667pt;}
.y7_c01033{bottom:914.094667pt;}
.y6_c01033{bottom:928.706667pt;}
.y5_c01033{bottom:943.317333pt;}
.y4_c01033{bottom:957.929333pt;}
.y3_c01033{bottom:972.541333pt;}
.y2_c01033{bottom:987.153333pt;}
.y1_c01033{bottom:1030.989333pt;}
.h3_c01033{height:31.280681pt;}
.h2_c01033{height:32.006363pt;}
.h5_c01033{height:36.010648pt;}
.h6_c01033{height:46.518078pt;}
.h4_c01033{height:51.855535pt;}
.h0_c01033{height:1122.520000pt;}
.h1_c01033{height:1122.666667pt;}
.w0_c01033{width:793.706667pt;}
.w1_c01033{width:794.000000pt;}
.x0_c01033{left:0.000000pt;}
.x4_c01033{left:113.385333pt;}
.x2_c01033{left:121.886667pt;}
.x1_c01033{left:127.796000pt;}
.x3_c01033{left:157.340000pt;}
.x5_c01033{left:386.888000pt;}
}





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

.ir_c01034:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_e33fe2470a56ba3cca1210a6.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01034;src:url('chunks/assets/font_59b603cdd2261fb057589f31.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01034;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01034;src:url('chunks/assets/font_3e567a330e8c55ce9a7a673b.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls4_c01034{letter-spacing:0.000000px;}
.ls1_c01034{letter-spacing:0.087998px;}
.ls2_c01034{letter-spacing:0.098482px;}
.ls0_c01034{letter-spacing:0.104482px;}
.ls3_c01034{letter-spacing:26.690482px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01034{word-spacing:-33.713438px;}
.ws4_c01034{word-spacing:-26.575517px;}
.ws3_c01034{word-spacing:-26.487518px;}
.ws0_c01034{word-spacing:-18.769538px;}
.ws8_c01034{word-spacing:0.000000px;}
.ws5_c01034{word-spacing:0.043999px;}
.wsb_c01034{word-spacing:0.056767px;}
.ws9_c01034{word-spacing:0.073250px;}
.wsa_c01034{word-spacing:0.083734px;}
.ws2_c01034{word-spacing:0.175997px;}
.wsc_c01034{word-spacing:0.202963px;}
.ws6_c01034{word-spacing:0.213446px;}
.ws7_c01034{word-spacing:0.219446px;}
._0_c01034{margin-left:-3.825638px;}
._1_c01034{width:1.005737px;}
._3_c01034{width:53.283031px;}
._2_c01034{width:79.858548px;}
._4_c01034{width:133.452408px;}
.fc5_c01034{color:rgb(0,0,207);}
.fc4_c01034{color:rgb(79,153,5);}
.fc3_c01034{color:rgb(207,92,0);}
.fc2_c01034{color:rgb(33,74,135);}
.fc1_c01034{color:rgb(143,89,3);}
.fc0_c01034{color:rgb(0,0,0);}
.fs1_c01034{font-size:43.999200px;}
.fs0_c01034{font-size:59.775600px;}
.y0_c01034{bottom:0.000000px;}
.y2d_c01034{bottom:44.250000px;}
.y2c_c01034{bottom:96.919500px;}
.y2b_c01034{bottom:113.358000px;}
.y2a_c01034{bottom:129.796500px;}
.y29_c01034{bottom:146.235000px;}
.y28_c01034{bottom:162.673500px;}
.y27_c01034{bottom:179.112000px;}
.y26_c01034{bottom:195.550500px;}
.y25_c01034{bottom:211.989000px;}
.y24_c01034{bottom:228.427500px;}
.y23_c01034{bottom:244.866000px;}
.y22_c01034{bottom:261.304500px;}
.y21_c01034{bottom:294.180000px;}
.y20_c01034{bottom:310.618500px;}
.y1f_c01034{bottom:327.057000px;}
.y1e_c01034{bottom:359.934000px;}
.y1d_c01034{bottom:376.372500px;}
.y1c_c01034{bottom:392.811000px;}
.y1b_c01034{bottom:409.249500px;}
.y1a_c01034{bottom:425.688000px;}
.y19_c01034{bottom:442.125000px;}
.y18_c01034{bottom:458.563500px;}
.y17_c01034{bottom:507.879000px;}
.y16_c01034{bottom:524.317500px;}
.y15_c01034{bottom:540.756000px;}
.y14_c01034{bottom:557.194500px;}
.y13_c01034{bottom:573.633000px;}
.y12_c01034{bottom:590.071500px;}
.y11_c01034{bottom:606.508500px;}
.y10_c01034{bottom:622.947000px;}
.yf_c01034{bottom:639.385500px;}
.ye_c01034{bottom:655.824000px;}
.yd_c01034{bottom:672.262500px;}
.yc_c01034{bottom:688.701000px;}
.yb_c01034{bottom:705.139500px;}
.ya_c01034{bottom:721.578000px;}
.y9_c01034{bottom:738.016500px;}
.y8_c01034{bottom:754.455000px;}
.y7_c01034{bottom:787.330500px;}
.y6_c01034{bottom:803.769000px;}
.y5_c01034{bottom:853.084500px;}
.y4_c01034{bottom:869.523000px;}
.y3_c01034{bottom:885.588000px;}
.y2_c01034{bottom:1141.930500px;}
.y1_c01034{bottom:1159.863000px;}
.h3_c01034{height:35.190766px;}
.h4_c01034{height:36.007158px;}
.h2_c01034{height:52.332837px;}
.h0_c01034{height:1262.835000px;}
.h1_c01034{height:1263.000000px;}
.w0_c01034{width:892.920000px;}
.w1_c01034{width:893.250000px;}
.x0_c01034{left:0.000000px;}
.x1_c01034{left:127.558500px;}
.x2_c01034{left:137.122500px;}
.x3_c01034{left:143.770500px;}
.x4_c01034{left:177.007500px;}
.x5_c01034{left:435.249000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls4_c01034{letter-spacing:0.000000pt;}
.ls1_c01034{letter-spacing:0.078221pt;}
.ls2_c01034{letter-spacing:0.087539pt;}
.ls0_c01034{letter-spacing:0.092873pt;}
.ls3_c01034{letter-spacing:23.724873pt;}
.ws1_c01034{word-spacing:-29.967501pt;}
.ws4_c01034{word-spacing:-23.622682pt;}
.ws3_c01034{word-spacing:-23.544461pt;}
.ws0_c01034{word-spacing:-16.684034pt;}
.ws8_c01034{word-spacing:0.000000pt;}
.ws5_c01034{word-spacing:0.039110pt;}
.wsb_c01034{word-spacing:0.050460pt;}
.ws9_c01034{word-spacing:0.065111pt;}
.wsa_c01034{word-spacing:0.074430pt;}
.ws2_c01034{word-spacing:0.156442pt;}
.wsc_c01034{word-spacing:0.180412pt;}
.ws6_c01034{word-spacing:0.189730pt;}
.ws7_c01034{word-spacing:0.195063pt;}
._0_c01034{margin-left:-3.400567pt;}
._1_c01034{width:0.893988pt;}
._3_c01034{width:47.362694pt;}
._2_c01034{width:70.985376pt;}
._4_c01034{width:118.624363pt;}
.fs1_c01034{font-size:39.110400pt;}
.fs0_c01034{font-size:53.133867pt;}
.y0_c01034{bottom:0.000000pt;}
.y2d_c01034{bottom:39.333333pt;}
.y2c_c01034{bottom:86.150667pt;}
.y2b_c01034{bottom:100.762667pt;}
.y2a_c01034{bottom:115.374667pt;}
.y29_c01034{bottom:129.986667pt;}
.y28_c01034{bottom:144.598667pt;}
.y27_c01034{bottom:159.210667pt;}
.y26_c01034{bottom:173.822667pt;}
.y25_c01034{bottom:188.434667pt;}
.y24_c01034{bottom:203.046667pt;}
.y23_c01034{bottom:217.658667pt;}
.y22_c01034{bottom:232.270667pt;}
.y21_c01034{bottom:261.493333pt;}
.y20_c01034{bottom:276.105333pt;}
.y1f_c01034{bottom:290.717333pt;}
.y1e_c01034{bottom:319.941333pt;}
.y1d_c01034{bottom:334.553333pt;}
.y1c_c01034{bottom:349.165333pt;}
.y1b_c01034{bottom:363.777333pt;}
.y1a_c01034{bottom:378.389333pt;}
.y19_c01034{bottom:393.000000pt;}
.y18_c01034{bottom:407.612000pt;}
.y17_c01034{bottom:451.448000pt;}
.y16_c01034{bottom:466.060000pt;}
.y15_c01034{bottom:480.672000pt;}
.y14_c01034{bottom:495.284000pt;}
.y13_c01034{bottom:509.896000pt;}
.y12_c01034{bottom:524.508000pt;}
.y11_c01034{bottom:539.118667pt;}
.y10_c01034{bottom:553.730667pt;}
.yf_c01034{bottom:568.342667pt;}
.ye_c01034{bottom:582.954667pt;}
.yd_c01034{bottom:597.566667pt;}
.yc_c01034{bottom:612.178667pt;}
.yb_c01034{bottom:626.790667pt;}
.ya_c01034{bottom:641.402667pt;}
.y9_c01034{bottom:656.014667pt;}
.y8_c01034{bottom:670.626667pt;}
.y7_c01034{bottom:699.849333pt;}
.y6_c01034{bottom:714.461333pt;}
.y5_c01034{bottom:758.297333pt;}
.y4_c01034{bottom:772.909333pt;}
.y3_c01034{bottom:787.189333pt;}
.y2_c01034{bottom:1015.049333pt;}
.y1_c01034{bottom:1030.989333pt;}
.h3_c01034{height:31.280681pt;}
.h4_c01034{height:32.006363pt;}
.h2_c01034{height:46.518078pt;}
.h0_c01034{height:1122.520000pt;}
.h1_c01034{height:1122.666667pt;}
.w0_c01034{width:793.706667pt;}
.w1_c01034{width:794.000000pt;}
.x0_c01034{left:0.000000pt;}
.x1_c01034{left:113.385333pt;}
.x2_c01034{left:121.886667pt;}
.x3_c01034{left:127.796000pt;}
.x4_c01034{left:157.340000pt;}
.x5_c01034{left:386.888000pt;}
}





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

.ir_c01035:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_10ee356930b2aca4029f8b23.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01035;src:url('chunks/assets/font_69f1d16a5f2cf55bb358a9e9.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01035;src:url('chunks/assets/font_d671f11f147e6881a3d89def.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01035;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01035;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01035{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls3_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:0.087998px;}
.ls2_c01035{letter-spacing:0.098482px;}
.ls1_c01035{letter-spacing:0.104482px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01035{word-spacing:-33.713438px;}
.ws2_c01035{word-spacing:-26.575517px;}
.wse_c01035{word-spacing:-26.487518px;}
.ws9_c01035{word-spacing:-21.553319px;}
.ws8_c01035{word-spacing:-21.519216px;}
.ws7_c01035{word-spacing:-19.247743px;}
.ws5_c01035{word-spacing:-18.769538px;}
.ws4_c01035{word-spacing:-14.943900px;}
.wsa_c01035{word-spacing:-14.107042px;}
.wsb_c01035{word-spacing:-12.074671px;}
.ws6_c01035{word-spacing:-10.230144px;}
.ws1_c01035{word-spacing:-9.988424px;}
.ws3_c01035{word-spacing:-9.987499px;}
.ws12_c01035{word-spacing:0.000000px;}
.wsf_c01035{word-spacing:0.043999px;}
.ws15_c01035{word-spacing:0.056767px;}
.ws13_c01035{word-spacing:0.073250px;}
.ws14_c01035{word-spacing:0.083734px;}
.wsd_c01035{word-spacing:0.175997px;}
.ws16_c01035{word-spacing:0.202963px;}
.ws10_c01035{word-spacing:0.213446px;}
.ws11_c01035{word-spacing:0.219446px;}
.ws0_c01035{word-spacing:43.038600px;}
._2_c01035{margin-left:-3.591852px;}
._0_c01035{margin-left:-1.549390px;}
._4_c01035{width:1.005737px;}
._1_c01035{width:19.935816px;}
._3_c01035{width:40.109428px;}
._6_c01035{width:53.283031px;}
._5_c01035{width:79.858548px;}
._7_c01035{width:133.452408px;}
.fc6_c01035{color:rgb(0,0,207);}
.fc5_c01035{color:rgb(79,153,5);}
.fc3_c01035{color:rgb(33,74,135);}
.fc2_c01035{color:rgb(143,89,3);}
.fc4_c01035{color:rgb(207,92,0);}
.fc1_c01035{color:rgb(6,69,173);}
.fc0_c01035{color:rgb(0,0,0);}
.fs2_c01035{font-size:43.999200px;}
.fs1_c01035{font-size:59.775600px;}
.fs0_c01035{font-size:86.077200px;}
.y0_c01035{bottom:0.000000px;}
.y20_c01035{bottom:44.250000px;}
.y1f_c01035{bottom:86.982000px;}
.y1e_c01035{bottom:103.420500px;}
.y1d_c01035{bottom:119.859000px;}
.y1c_c01035{bottom:136.297500px;}
.y1b_c01035{bottom:152.736000px;}
.y1a_c01035{bottom:169.174500px;}
.y19_c01035{bottom:185.613000px;}
.y18_c01035{bottom:202.051500px;}
.y17_c01035{bottom:218.490000px;}
.y16_c01035{bottom:234.927000px;}
.y15_c01035{bottom:251.365500px;}
.y14_c01035{bottom:267.804000px;}
.y13_c01035{bottom:284.242500px;}
.y12_c01035{bottom:300.681000px;}
.y11_c01035{bottom:317.119500px;}
.y10_c01035{bottom:349.996500px;}
.yf_c01035{bottom:366.435000px;}
.ye_c01035{bottom:415.749000px;}
.yd_c01035{bottom:432.187500px;}
.yc_c01035{bottom:448.252500px;}
.yb_c01035{bottom:493.890000px;}
.ya_c01035{bottom:511.822500px;}
.y9_c01035{bottom:529.756500px;}
.y8_c01035{bottom:547.689000px;}
.y7_c01035{bottom:565.621500px;}
.y6_c01035{bottom:583.554000px;}
.y5_c01035{bottom:610.633500px;}
.y4_c01035{bottom:637.714500px;}
.y3_c01035{bottom:664.794000px;}
.y2_c01035{bottom:691.873500px;}
.y1_c01035{bottom:734.407500px;}
.h5_c01035{height:35.190766px;}
.h6_c01035{height:36.007158px;}
.h3_c01035{height:40.511979px;}
.h4_c01035{height:52.332837px;}
.h2_c01035{height:58.337477px;}
.h0_c01035{height:1262.835000px;}
.h1_c01035{height:1263.000000px;}
.w0_c01035{width:892.920000px;}
.w1_c01035{width:893.250000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:127.558500px;}
.x2_c01035{left:137.122500px;}
.x3_c01035{left:143.770500px;}
.x4_c01035{left:435.249000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls3_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:0.078221pt;}
.ls2_c01035{letter-spacing:0.087539pt;}
.ls1_c01035{letter-spacing:0.092873pt;}
.wsc_c01035{word-spacing:-29.967501pt;}
.ws2_c01035{word-spacing:-23.622682pt;}
.wse_c01035{word-spacing:-23.544461pt;}
.ws9_c01035{word-spacing:-19.158506pt;}
.ws8_c01035{word-spacing:-19.128192pt;}
.ws7_c01035{word-spacing:-17.109105pt;}
.ws5_c01035{word-spacing:-16.684034pt;}
.ws4_c01035{word-spacing:-13.283467pt;}
.wsa_c01035{word-spacing:-12.539593pt;}
.wsb_c01035{word-spacing:-10.733041pt;}
.ws6_c01035{word-spacing:-9.093461pt;}
.ws1_c01035{word-spacing:-8.878599pt;}
.ws3_c01035{word-spacing:-8.877777pt;}
.ws12_c01035{word-spacing:0.000000pt;}
.wsf_c01035{word-spacing:0.039110pt;}
.ws15_c01035{word-spacing:0.050460pt;}
.ws13_c01035{word-spacing:0.065111pt;}
.ws14_c01035{word-spacing:0.074430pt;}
.wsd_c01035{word-spacing:0.156442pt;}
.ws16_c01035{word-spacing:0.180412pt;}
.ws10_c01035{word-spacing:0.189730pt;}
.ws11_c01035{word-spacing:0.195063pt;}
.ws0_c01035{word-spacing:38.256533pt;}
._2_c01035{margin-left:-3.192757pt;}
._0_c01035{margin-left:-1.377235pt;}
._4_c01035{width:0.893988pt;}
._1_c01035{width:17.720725pt;}
._3_c01035{width:35.652825pt;}
._6_c01035{width:47.362694pt;}
._5_c01035{width:70.985376pt;}
._7_c01035{width:118.624363pt;}
.fs2_c01035{font-size:39.110400pt;}
.fs1_c01035{font-size:53.133867pt;}
.fs0_c01035{font-size:76.513067pt;}
.y0_c01035{bottom:0.000000pt;}
.y20_c01035{bottom:39.333333pt;}
.y1f_c01035{bottom:77.317333pt;}
.y1e_c01035{bottom:91.929333pt;}
.y1d_c01035{bottom:106.541333pt;}
.y1c_c01035{bottom:121.153333pt;}
.y1b_c01035{bottom:135.765333pt;}
.y1a_c01035{bottom:150.377333pt;}
.y19_c01035{bottom:164.989333pt;}
.y18_c01035{bottom:179.601333pt;}
.y17_c01035{bottom:194.213333pt;}
.y16_c01035{bottom:208.824000pt;}
.y15_c01035{bottom:223.436000pt;}
.y14_c01035{bottom:238.048000pt;}
.y13_c01035{bottom:252.660000pt;}
.y12_c01035{bottom:267.272000pt;}
.y11_c01035{bottom:281.884000pt;}
.y10_c01035{bottom:311.108000pt;}
.yf_c01035{bottom:325.720000pt;}
.ye_c01035{bottom:369.554667pt;}
.yd_c01035{bottom:384.166667pt;}
.yc_c01035{bottom:398.446667pt;}
.yb_c01035{bottom:439.013333pt;}
.ya_c01035{bottom:454.953333pt;}
.y9_c01035{bottom:470.894667pt;}
.y8_c01035{bottom:486.834667pt;}
.y7_c01035{bottom:502.774667pt;}
.y6_c01035{bottom:518.714667pt;}
.y5_c01035{bottom:542.785333pt;}
.y4_c01035{bottom:566.857333pt;}
.y3_c01035{bottom:590.928000pt;}
.y2_c01035{bottom:614.998667pt;}
.y1_c01035{bottom:652.806667pt;}
.h5_c01035{height:31.280681pt;}
.h6_c01035{height:32.006363pt;}
.h3_c01035{height:36.010648pt;}
.h4_c01035{height:46.518078pt;}
.h2_c01035{height:51.855535pt;}
.h0_c01035{height:1122.520000pt;}
.h1_c01035{height:1122.666667pt;}
.w0_c01035{width:793.706667pt;}
.w1_c01035{width:794.000000pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:113.385333pt;}
.x2_c01035{left:121.886667pt;}
.x3_c01035{left:127.796000pt;}
.x4_c01035{left:386.888000pt;}
}





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

.ir_c01036:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_a4394b6a6e651e2327690462.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01036;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01036;src:url('chunks/assets/font_fc9b8d1cfe68912b31f09fbe.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01036;src:url('chunks/assets/font_29f2e99db42db7f0c6402568.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01036;src:url('chunks/assets/font_d8a5ad78dc9d52c186ec8008.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01036{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls4_c01036{letter-spacing:0.000000px;}
.ls0_c01036{letter-spacing:0.087998px;}
.ls2_c01036{letter-spacing:0.098482px;}
.ls3_c01036{letter-spacing:0.104482px;}
.ls1_c01036{letter-spacing:26.690482px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01036{word-spacing:-26.575517px;}
.ws4_c01036{word-spacing:-26.487518px;}
.wsa_c01036{word-spacing:-18.769538px;}
.wsd_c01036{word-spacing:-15.601432px;}
.ws9_c01036{word-spacing:-14.943900px;}
.wse_c01036{word-spacing:-13.808164px;}
.wsc_c01036{word-spacing:-13.748388px;}
.ws7_c01036{word-spacing:-9.988424px;}
.ws8_c01036{word-spacing:-9.987499px;}
.ws3_c01036{word-spacing:0.000000px;}
.wsb_c01036{word-spacing:0.017856px;}
.ws0_c01036{word-spacing:0.043999px;}
.ws5_c01036{word-spacing:0.213446px;}
.ws1_c01036{word-spacing:0.219446px;}
.ws6_c01036{word-spacing:43.038600px;}
._4_c01036{margin-left:-6.580632px;}
._8_c01036{margin-left:-4.656358px;}
._6_c01036{margin-left:-2.998955px;}
._2_c01036{margin-left:-1.549390px;}
._1_c01036{width:1.041538px;}
._3_c01036{width:19.935816px;}
._7_c01036{width:21.220338px;}
._5_c01036{width:29.529146px;}
._0_c01036{width:53.503027px;}
.fc5_c01036{color:rgb(79,153,5);}
.fc4_c01036{color:rgb(143,89,3);}
.fc3_c01036{color:rgb(0,0,0);}
.fc6_c01036{color:rgb(6,69,173);}
.fc2_c01036{color:rgb(207,92,0);}
.fc1_c01036{color:rgb(0,0,207);}
.fc0_c01036{color:rgb(33,74,135);}
.fs0_c01036{font-size:43.999200px;}
.fs2_c01036{font-size:59.775600px;}
.fs1_c01036{font-size:86.077200px;}
.y0_c01036{bottom:0.000000px;}
.y20_c01036{bottom:44.250000px;}
.y1f_c01036{bottom:82.051500px;}
.y1e_c01036{bottom:99.984000px;}
.y1d_c01036{bottom:117.916500px;}
.y1c_c01036{bottom:135.849000px;}
.y1b_c01036{bottom:162.501000px;}
.y1a_c01036{bottom:189.151500px;}
.y19_c01036{bottom:215.802000px;}
.y18_c01036{bottom:242.454000px;}
.y17_c01036{bottom:284.478000px;}
.y16_c01036{bottom:748.903500px;}
.y15_c01036{bottom:765.342000px;}
.y14_c01036{bottom:781.780500px;}
.y13_c01036{bottom:798.219000px;}
.y12_c01036{bottom:814.657500px;}
.y11_c01036{bottom:831.096000px;}
.y10_c01036{bottom:847.534500px;}
.yf_c01036{bottom:863.973000px;}
.ye_c01036{bottom:880.411500px;}
.yd_c01036{bottom:896.848500px;}
.yc_c01036{bottom:913.287000px;}
.yb_c01036{bottom:946.164000px;}
.ya_c01036{bottom:962.602500px;}
.y9_c01036{bottom:979.041000px;}
.y8_c01036{bottom:1011.918000px;}
.y7_c01036{bottom:1028.356500px;}
.y6_c01036{bottom:1044.795000px;}
.y5_c01036{bottom:1061.232000px;}
.y4_c01036{bottom:1077.670500px;}
.y3_c01036{bottom:1094.109000px;}
.y2_c01036{bottom:1110.547500px;}
.y1_c01036{bottom:1159.863000px;}
.h3_c01036{height:35.190766px;}
.h2_c01036{height:36.007158px;}
.h5_c01036{height:40.511979px;}
.h6_c01036{height:52.332837px;}
.h4_c01036{height:58.337477px;}
.h0_c01036{height:1262.835000px;}
.h1_c01036{height:1263.000000px;}
.w0_c01036{width:892.920000px;}
.w1_c01036{width:893.250000px;}
.x0_c01036{left:0.000000px;}
.x4_c01036{left:127.558500px;}
.x2_c01036{left:137.122500px;}
.x1_c01036{left:143.770500px;}
.x3_c01036{left:177.007500px;}
.x5_c01036{left:435.249000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls4_c01036{letter-spacing:0.000000pt;}
.ls0_c01036{letter-spacing:0.078221pt;}
.ls2_c01036{letter-spacing:0.087539pt;}
.ls3_c01036{letter-spacing:0.092873pt;}
.ls1_c01036{letter-spacing:23.724873pt;}
.ws2_c01036{word-spacing:-23.622682pt;}
.ws4_c01036{word-spacing:-23.544461pt;}
.wsa_c01036{word-spacing:-16.684034pt;}
.wsd_c01036{word-spacing:-13.867939pt;}
.ws9_c01036{word-spacing:-13.283467pt;}
.wse_c01036{word-spacing:-12.273923pt;}
.wsc_c01036{word-spacing:-12.220789pt;}
.ws7_c01036{word-spacing:-8.878599pt;}
.ws8_c01036{word-spacing:-8.877777pt;}
.ws3_c01036{word-spacing:0.000000pt;}
.wsb_c01036{word-spacing:0.015872pt;}
.ws0_c01036{word-spacing:0.039110pt;}
.ws5_c01036{word-spacing:0.189730pt;}
.ws1_c01036{word-spacing:0.195063pt;}
.ws6_c01036{word-spacing:38.256533pt;}
._4_c01036{margin-left:-5.849451pt;}
._8_c01036{margin-left:-4.138985pt;}
._6_c01036{margin-left:-2.665738pt;}
._2_c01036{margin-left:-1.377235pt;}
._1_c01036{width:0.925811pt;}
._3_c01036{width:17.720725pt;}
._7_c01036{width:18.862523pt;}
._5_c01036{width:26.248130pt;}
._0_c01036{width:47.558246pt;}
.fs0_c01036{font-size:39.110400pt;}
.fs2_c01036{font-size:53.133867pt;}
.fs1_c01036{font-size:76.513067pt;}
.y0_c01036{bottom:0.000000pt;}
.y20_c01036{bottom:39.333333pt;}
.y1f_c01036{bottom:72.934667pt;}
.y1e_c01036{bottom:88.874667pt;}
.y1d_c01036{bottom:104.814667pt;}
.y1c_c01036{bottom:120.754667pt;}
.y1b_c01036{bottom:144.445333pt;}
.y1a_c01036{bottom:168.134667pt;}
.y19_c01036{bottom:191.824000pt;}
.y18_c01036{bottom:215.514667pt;}
.y17_c01036{bottom:252.869333pt;}
.y16_c01036{bottom:665.692000pt;}
.y15_c01036{bottom:680.304000pt;}
.y14_c01036{bottom:694.916000pt;}
.y13_c01036{bottom:709.528000pt;}
.y12_c01036{bottom:724.140000pt;}
.y11_c01036{bottom:738.752000pt;}
.y10_c01036{bottom:753.364000pt;}
.yf_c01036{bottom:767.976000pt;}
.ye_c01036{bottom:782.588000pt;}
.yd_c01036{bottom:797.198667pt;}
.yc_c01036{bottom:811.810667pt;}
.yb_c01036{bottom:841.034667pt;}
.ya_c01036{bottom:855.646667pt;}
.y9_c01036{bottom:870.258667pt;}
.y8_c01036{bottom:899.482667pt;}
.y7_c01036{bottom:914.094667pt;}
.y6_c01036{bottom:928.706667pt;}
.y5_c01036{bottom:943.317333pt;}
.y4_c01036{bottom:957.929333pt;}
.y3_c01036{bottom:972.541333pt;}
.y2_c01036{bottom:987.153333pt;}
.y1_c01036{bottom:1030.989333pt;}
.h3_c01036{height:31.280681pt;}
.h2_c01036{height:32.006363pt;}
.h5_c01036{height:36.010648pt;}
.h6_c01036{height:46.518078pt;}
.h4_c01036{height:51.855535pt;}
.h0_c01036{height:1122.520000pt;}
.h1_c01036{height:1122.666667pt;}
.w0_c01036{width:793.706667pt;}
.w1_c01036{width:794.000000pt;}
.x0_c01036{left:0.000000pt;}
.x4_c01036{left:113.385333pt;}
.x2_c01036{left:121.886667pt;}
.x1_c01036{left:127.796000pt;}
.x3_c01036{left:157.340000pt;}
.x5_c01036{left:386.888000pt;}
}





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

.ir_c01037:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_3c5d3cb30a623f9cc018f352.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01037;src:url('chunks/assets/font_4ec809ce1e4a0a7521c2f4e3.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01037;src:url('chunks/assets/font_d3d5177002b8748e47e81f8f.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01037;src:url('chunks/assets/font_75ef4c695f77d690794e2486.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls4_c01037{letter-spacing:0.000000px;}
.ls0_c01037{letter-spacing:0.087998px;}
.ls2_c01037{letter-spacing:0.098482px;}
.ls1_c01037{letter-spacing:0.104482px;}
.ls3_c01037{letter-spacing:26.690482px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01037{word-spacing:-26.575517px;}
.wsb_c01037{word-spacing:-26.487518px;}
.ws6_c01037{word-spacing:-21.399665px;}
.ws5_c01037{word-spacing:-21.280114px;}
.ws7_c01037{word-spacing:-18.889090px;}
.ws9_c01037{word-spacing:-18.769538px;}
.ws8_c01037{word-spacing:-18.410885px;}
.ws1_c01037{word-spacing:-16.199188px;}
.ws2_c01037{word-spacing:-16.139412px;}
.ws4_c01037{word-spacing:-14.048882px;}
.ws0_c01037{word-spacing:-10.580281px;}
.wsf_c01037{word-spacing:0.000000px;}
.ws11_c01037{word-spacing:0.036900px;}
.wsc_c01037{word-spacing:0.043999px;}
.ws10_c01037{word-spacing:0.053933px;}
.ws13_c01037{word-spacing:0.064416px;}
.ws12_c01037{word-spacing:0.070416px;}
.wsa_c01037{word-spacing:0.175997px;}
.wse_c01037{word-spacing:0.213446px;}
.wsd_c01037{word-spacing:0.219446px;}
._1_c01037{margin-left:-7.651277px;}
._0_c01037{margin-left:-4.124516px;}
._7_c01037{width:1.005737px;}
._4_c01037{width:13.669506px;}
._2_c01037{width:18.530436px;}
._5_c01037{width:19.785724px;}
._6_c01037{width:21.339889px;}
._3_c01037{width:27.739240px;}
._8_c01037{width:80.034545px;}
.fc6_c01037{color:rgb(0,0,207);}
.fc5_c01037{color:rgb(79,153,5);}
.fc3_c01037{color:rgb(33,74,135);}
.fc2_c01037{color:rgb(143,89,3);}
.fc4_c01037{color:rgb(207,92,0);}
.fc1_c01037{color:rgb(6,69,173);}
.fc0_c01037{color:rgb(0,0,0);}
.fs1_c01037{font-size:43.999200px;}
.fs0_c01037{font-size:59.775600px;}
.y0_c01037{bottom:0.000000px;}
.y37_c01037{bottom:44.250000px;}
.y36_c01037{bottom:82.051500px;}
.y35_c01037{bottom:98.490000px;}
.y34_c01037{bottom:114.927000px;}
.y33_c01037{bottom:131.365500px;}
.y32_c01037{bottom:147.804000px;}
.y31_c01037{bottom:164.242500px;}
.y30_c01037{bottom:197.119500px;}
.y2f_c01037{bottom:213.558000px;}
.y2e_c01037{bottom:229.996500px;}
.y2d_c01037{bottom:246.435000px;}
.y2c_c01037{bottom:262.873500px;}
.y2b_c01037{bottom:279.310500px;}
.y2a_c01037{bottom:312.187500px;}
.y29_c01037{bottom:328.626000px;}
.y28_c01037{bottom:345.064500px;}
.y27_c01037{bottom:361.503000px;}
.y26_c01037{bottom:394.380000px;}
.y25_c01037{bottom:410.818500px;}
.y24_c01037{bottom:427.257000px;}
.y23_c01037{bottom:443.694000px;}
.y22_c01037{bottom:476.571000px;}
.y21_c01037{bottom:493.009500px;}
.y20_c01037{bottom:509.448000px;}
.y1f_c01037{bottom:525.886500px;}
.y1e_c01037{bottom:542.325000px;}
.y1d_c01037{bottom:558.763500px;}
.y1c_c01037{bottom:575.202000px;}
.y1b_c01037{bottom:608.079000px;}
.y1a_c01037{bottom:624.516000px;}
.y19_c01037{bottom:640.954500px;}
.y18_c01037{bottom:673.831500px;}
.y17_c01037{bottom:690.270000px;}
.y16_c01037{bottom:739.585500px;}
.y15_c01037{bottom:756.024000px;}
.y14_c01037{bottom:788.899500px;}
.y13_c01037{bottom:805.338000px;}
.y12_c01037{bottom:821.776500px;}
.y11_c01037{bottom:838.215000px;}
.y10_c01037{bottom:871.092000px;}
.yf_c01037{bottom:887.530500px;}
.ye_c01037{bottom:903.969000px;}
.yd_c01037{bottom:920.407500px;}
.yc_c01037{bottom:936.846000px;}
.yb_c01037{bottom:953.284500px;}
.ya_c01037{bottom:969.721500px;}
.y9_c01037{bottom:986.160000px;}
.y8_c01037{bottom:1002.225000px;}
.y7_c01037{bottom:1052.266500px;}
.y6_c01037{bottom:1070.199000px;}
.y5_c01037{bottom:1088.131500px;}
.y4_c01037{bottom:1106.064000px;}
.y3_c01037{bottom:1123.998000px;}
.y2_c01037{bottom:1141.930500px;}
.y1_c01037{bottom:1159.863000px;}
.h3_c01037{height:35.190766px;}
.h4_c01037{height:36.007158px;}
.h2_c01037{height:52.332837px;}
.h0_c01037{height:1262.835000px;}
.h1_c01037{height:1263.000000px;}
.w0_c01037{width:892.920000px;}
.w1_c01037{width:893.250000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:127.558500px;}
.x2_c01037{left:137.122500px;}
.x3_c01037{left:143.770500px;}
.x4_c01037{left:203.596500px;}
.x5_c01037{left:435.249000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls4_c01037{letter-spacing:0.000000pt;}
.ls0_c01037{letter-spacing:0.078221pt;}
.ls2_c01037{letter-spacing:0.087539pt;}
.ls1_c01037{letter-spacing:0.092873pt;}
.ls3_c01037{letter-spacing:23.724873pt;}
.ws3_c01037{word-spacing:-23.622682pt;}
.wsb_c01037{word-spacing:-23.544461pt;}
.ws6_c01037{word-spacing:-19.021924pt;}
.ws5_c01037{word-spacing:-18.915657pt;}
.ws7_c01037{word-spacing:-16.790302pt;}
.ws9_c01037{word-spacing:-16.684034pt;}
.ws8_c01037{word-spacing:-16.365231pt;}
.ws1_c01037{word-spacing:-14.399278pt;}
.ws2_c01037{word-spacing:-14.346144pt;}
.ws4_c01037{word-spacing:-12.487895pt;}
.ws0_c01037{word-spacing:-9.404694pt;}
.wsf_c01037{word-spacing:0.000000pt;}
.ws11_c01037{word-spacing:0.032800pt;}
.wsc_c01037{word-spacing:0.039110pt;}
.ws10_c01037{word-spacing:0.047940pt;}
.ws13_c01037{word-spacing:0.057259pt;}
.ws12_c01037{word-spacing:0.062592pt;}
.wsa_c01037{word-spacing:0.156442pt;}
.wse_c01037{word-spacing:0.189730pt;}
.wsd_c01037{word-spacing:0.195063pt;}
._1_c01037{margin-left:-6.801135pt;}
._0_c01037{margin-left:-3.666237pt;}
._7_c01037{width:0.893988pt;}
._4_c01037{width:12.150672pt;}
._2_c01037{width:16.471499pt;}
._5_c01037{width:17.587310pt;}
._6_c01037{width:18.968790pt;}
._3_c01037{width:24.657102pt;}
._8_c01037{width:71.141818pt;}
.fs1_c01037{font-size:39.110400pt;}
.fs0_c01037{font-size:53.133867pt;}
.y0_c01037{bottom:0.000000pt;}
.y37_c01037{bottom:39.333333pt;}
.y36_c01037{bottom:72.934667pt;}
.y35_c01037{bottom:87.546667pt;}
.y34_c01037{bottom:102.157333pt;}
.y33_c01037{bottom:116.769333pt;}
.y32_c01037{bottom:131.381333pt;}
.y31_c01037{bottom:145.993333pt;}
.y30_c01037{bottom:175.217333pt;}
.y2f_c01037{bottom:189.829333pt;}
.y2e_c01037{bottom:204.441333pt;}
.y2d_c01037{bottom:219.053333pt;}
.y2c_c01037{bottom:233.665333pt;}
.y2b_c01037{bottom:248.276000pt;}
.y2a_c01037{bottom:277.500000pt;}
.y29_c01037{bottom:292.112000pt;}
.y28_c01037{bottom:306.724000pt;}
.y27_c01037{bottom:321.336000pt;}
.y26_c01037{bottom:350.560000pt;}
.y25_c01037{bottom:365.172000pt;}
.y24_c01037{bottom:379.784000pt;}
.y23_c01037{bottom:394.394667pt;}
.y22_c01037{bottom:423.618667pt;}
.y21_c01037{bottom:438.230667pt;}
.y20_c01037{bottom:452.842667pt;}
.y1f_c01037{bottom:467.454667pt;}
.y1e_c01037{bottom:482.066667pt;}
.y1d_c01037{bottom:496.678667pt;}
.y1c_c01037{bottom:511.290667pt;}
.y1b_c01037{bottom:540.514667pt;}
.y1a_c01037{bottom:555.125333pt;}
.y19_c01037{bottom:569.737333pt;}
.y18_c01037{bottom:598.961333pt;}
.y17_c01037{bottom:613.573333pt;}
.y16_c01037{bottom:657.409333pt;}
.y15_c01037{bottom:672.021333pt;}
.y14_c01037{bottom:701.244000pt;}
.y13_c01037{bottom:715.856000pt;}
.y12_c01037{bottom:730.468000pt;}
.y11_c01037{bottom:745.080000pt;}
.y10_c01037{bottom:774.304000pt;}
.yf_c01037{bottom:788.916000pt;}
.ye_c01037{bottom:803.528000pt;}
.yd_c01037{bottom:818.140000pt;}
.yc_c01037{bottom:832.752000pt;}
.yb_c01037{bottom:847.364000pt;}
.ya_c01037{bottom:861.974667pt;}
.y9_c01037{bottom:876.586667pt;}
.y8_c01037{bottom:890.866667pt;}
.y7_c01037{bottom:935.348000pt;}
.y6_c01037{bottom:951.288000pt;}
.y5_c01037{bottom:967.228000pt;}
.y4_c01037{bottom:983.168000pt;}
.y3_c01037{bottom:999.109333pt;}
.y2_c01037{bottom:1015.049333pt;}
.y1_c01037{bottom:1030.989333pt;}
.h3_c01037{height:31.280681pt;}
.h4_c01037{height:32.006363pt;}
.h2_c01037{height:46.518078pt;}
.h0_c01037{height:1122.520000pt;}
.h1_c01037{height:1122.666667pt;}
.w0_c01037{width:793.706667pt;}
.w1_c01037{width:794.000000pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:113.385333pt;}
.x2_c01037{left:121.886667pt;}
.x3_c01037{left:127.796000pt;}
.x4_c01037{left:180.974667pt;}
.x5_c01037{left:386.888000pt;}
}





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

.ir_c01038:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_210afd1bdcfd34919c44ca91.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01038;src:url('chunks/assets/font_c8bd5cffe450a66baf3ea2a8.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01038;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01038;src:url('chunks/assets/font_e8db3621a32f12a6c34592cf.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls3_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:0.087998px;}
.ls2_c01038{letter-spacing:0.098482px;}
.ls1_c01038{letter-spacing:0.104482px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:-26.575517px;}
.ws1_c01038{word-spacing:-26.487518px;}
.ws3_c01038{word-spacing:0.000000px;}
.ws2_c01038{word-spacing:0.043999px;}
.ws4_c01038{word-spacing:0.056767px;}
.ws5_c01038{word-spacing:0.213446px;}
._0_c01038{width:1.028438px;}
.fc5_c01038{color:rgb(0,0,207);}
.fc4_c01038{color:rgb(79,153,5);}
.fc3_c01038{color:rgb(33,74,135);}
.fc2_c01038{color:rgb(207,92,0);}
.fc1_c01038{color:rgb(143,89,3);}
.fc0_c01038{color:rgb(0,0,0);}
.fs0_c01038{font-size:43.999200px;}
.fs1_c01038{font-size:59.775600px;}
.y0_c01038{bottom:0.000000px;}
.y29_c01038{bottom:44.250000px;}
.y28_c01038{bottom:469.452000px;}
.y27_c01038{bottom:485.890500px;}
.y26_c01038{bottom:502.329000px;}
.y25_c01038{bottom:518.767500px;}
.y24_c01038{bottom:535.206000px;}
.y23_c01038{bottom:551.643000px;}
.y22_c01038{bottom:568.081500px;}
.y21_c01038{bottom:584.520000px;}
.y20_c01038{bottom:600.958500px;}
.y1f_c01038{bottom:617.397000px;}
.y1e_c01038{bottom:633.835500px;}
.y1d_c01038{bottom:666.712500px;}
.y1c_c01038{bottom:683.151000px;}
.y1b_c01038{bottom:699.589500px;}
.y1a_c01038{bottom:732.465000px;}
.y19_c01038{bottom:748.903500px;}
.y18_c01038{bottom:765.342000px;}
.y17_c01038{bottom:781.780500px;}
.y16_c01038{bottom:798.219000px;}
.y15_c01038{bottom:814.657500px;}
.y14_c01038{bottom:831.096000px;}
.y13_c01038{bottom:847.534500px;}
.y12_c01038{bottom:863.973000px;}
.y11_c01038{bottom:880.411500px;}
.y10_c01038{bottom:896.848500px;}
.yf_c01038{bottom:913.287000px;}
.ye_c01038{bottom:929.725500px;}
.yd_c01038{bottom:946.164000px;}
.yc_c01038{bottom:962.602500px;}
.yb_c01038{bottom:979.041000px;}
.ya_c01038{bottom:995.479500px;}
.y9_c01038{bottom:1011.918000px;}
.y8_c01038{bottom:1028.356500px;}
.y7_c01038{bottom:1044.795000px;}
.y6_c01038{bottom:1061.232000px;}
.y5_c01038{bottom:1077.670500px;}
.y4_c01038{bottom:1094.109000px;}
.y3_c01038{bottom:1110.547500px;}
.y2_c01038{bottom:1126.986000px;}
.y1_c01038{bottom:1143.424500px;}
.h3_c01038{height:35.190766px;}
.h2_c01038{height:36.007158px;}
.h4_c01038{height:52.332837px;}
.h0_c01038{height:1262.835000px;}
.h1_c01038{height:1263.000000px;}
.w0_c01038{width:892.920000px;}
.w1_c01038{width:893.250000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:137.122500px;}
.x5_c01038{left:177.007500px;}
.x4_c01038{left:230.185500px;}
.x2_c01038{left:243.480000px;}
.x3_c01038{left:276.715500px;}
.x6_c01038{left:435.249000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls3_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:0.078221pt;}
.ls2_c01038{letter-spacing:0.087539pt;}
.ls1_c01038{letter-spacing:0.092873pt;}
.ws0_c01038{word-spacing:-23.622682pt;}
.ws1_c01038{word-spacing:-23.544461pt;}
.ws3_c01038{word-spacing:0.000000pt;}
.ws2_c01038{word-spacing:0.039110pt;}
.ws4_c01038{word-spacing:0.050460pt;}
.ws5_c01038{word-spacing:0.189730pt;}
._0_c01038{width:0.914167pt;}
.fs0_c01038{font-size:39.110400pt;}
.fs1_c01038{font-size:53.133867pt;}
.y0_c01038{bottom:0.000000pt;}
.y29_c01038{bottom:39.333333pt;}
.y28_c01038{bottom:417.290667pt;}
.y27_c01038{bottom:431.902667pt;}
.y26_c01038{bottom:446.514667pt;}
.y25_c01038{bottom:461.126667pt;}
.y24_c01038{bottom:475.738667pt;}
.y23_c01038{bottom:490.349333pt;}
.y22_c01038{bottom:504.961333pt;}
.y21_c01038{bottom:519.573333pt;}
.y20_c01038{bottom:534.185333pt;}
.y1f_c01038{bottom:548.797333pt;}
.y1e_c01038{bottom:563.409333pt;}
.y1d_c01038{bottom:592.633333pt;}
.y1c_c01038{bottom:607.245333pt;}
.y1b_c01038{bottom:621.857333pt;}
.y1a_c01038{bottom:651.080000pt;}
.y19_c01038{bottom:665.692000pt;}
.y18_c01038{bottom:680.304000pt;}
.y17_c01038{bottom:694.916000pt;}
.y16_c01038{bottom:709.528000pt;}
.y15_c01038{bottom:724.140000pt;}
.y14_c01038{bottom:738.752000pt;}
.y13_c01038{bottom:753.364000pt;}
.y12_c01038{bottom:767.976000pt;}
.y11_c01038{bottom:782.588000pt;}
.y10_c01038{bottom:797.198667pt;}
.yf_c01038{bottom:811.810667pt;}
.ye_c01038{bottom:826.422667pt;}
.yd_c01038{bottom:841.034667pt;}
.yc_c01038{bottom:855.646667pt;}
.yb_c01038{bottom:870.258667pt;}
.ya_c01038{bottom:884.870667pt;}
.y9_c01038{bottom:899.482667pt;}
.y8_c01038{bottom:914.094667pt;}
.y7_c01038{bottom:928.706667pt;}
.y6_c01038{bottom:943.317333pt;}
.y5_c01038{bottom:957.929333pt;}
.y4_c01038{bottom:972.541333pt;}
.y3_c01038{bottom:987.153333pt;}
.y2_c01038{bottom:1001.765333pt;}
.y1_c01038{bottom:1016.377333pt;}
.h3_c01038{height:31.280681pt;}
.h2_c01038{height:32.006363pt;}
.h4_c01038{height:46.518078pt;}
.h0_c01038{height:1122.520000pt;}
.h1_c01038{height:1122.666667pt;}
.w0_c01038{width:793.706667pt;}
.w1_c01038{width:794.000000pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:121.886667pt;}
.x5_c01038{left:157.340000pt;}
.x4_c01038{left:204.609333pt;}
.x2_c01038{left:216.426667pt;}
.x3_c01038{left:245.969333pt;}
.x6_c01038{left:386.888000pt;}
}





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

.ir_c01039:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_969a775dc7b6a22bfe2b9a4c.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01039;src:url('chunks/assets/font_32732a4a10a02b76384567df.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01039;src:url('chunks/assets/font_e037351216ff32256d61b3fd.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01039;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01039;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01039{font-family:ff5_c01039;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01039{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01039{vertical-align:0.000000px;}
.ls3_c01039{letter-spacing:0.000000px;}
.ls0_c01039{letter-spacing:0.087998px;}
.ls2_c01039{letter-spacing:0.098482px;}
.ls1_c01039{letter-spacing:0.104482px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01039{word-spacing:-33.713438px;}
.ws2_c01039{word-spacing:-26.575517px;}
.wse_c01039{word-spacing:-26.487518px;}
.ws9_c01039{word-spacing:-21.553319px;}
.ws8_c01039{word-spacing:-21.519216px;}
.ws5_c01039{word-spacing:-18.769538px;}
.ws7_c01039{word-spacing:-16.019861px;}
.ws4_c01039{word-spacing:-14.943900px;}
.wsa_c01039{word-spacing:-14.107042px;}
.wsb_c01039{word-spacing:-12.074671px;}
.ws1_c01039{word-spacing:-9.988424px;}
.ws3_c01039{word-spacing:-9.987499px;}
.ws6_c01039{word-spacing:-4.536144px;}
.ws12_c01039{word-spacing:0.000000px;}
.wsf_c01039{word-spacing:0.043999px;}
.ws15_c01039{word-spacing:0.056767px;}
.ws13_c01039{word-spacing:0.073250px;}
.ws14_c01039{word-spacing:0.083734px;}
.wsd_c01039{word-spacing:0.175997px;}
.ws16_c01039{word-spacing:0.202963px;}
.ws10_c01039{word-spacing:0.213446px;}
.ws11_c01039{word-spacing:0.219446px;}
.ws0_c01039{word-spacing:43.038600px;}
._2_c01039{margin-left:-6.580632px;}
._4_c01039{margin-left:-3.825638px;}
._0_c01039{margin-left:-1.549390px;}
._5_c01039{width:1.005737px;}
._1_c01039{width:19.935816px;}
._3_c01039{width:40.109428px;}
._7_c01039{width:53.283031px;}
._6_c01039{width:79.858548px;}
._8_c01039{width:133.452408px;}
.fc6_c01039{color:rgb(0,0,207);}
.fc5_c01039{color:rgb(79,153,5);}
.fc3_c01039{color:rgb(33,74,135);}
.fc2_c01039{color:rgb(143,89,3);}
.fc4_c01039{color:rgb(207,92,0);}
.fc1_c01039{color:rgb(6,69,173);}
.fc0_c01039{color:rgb(0,0,0);}
.fs2_c01039{font-size:43.999200px;}
.fs1_c01039{font-size:59.775600px;}
.fs0_c01039{font-size:86.077200px;}
.y0_c01039{bottom:0.000000px;}
.y20_c01039{bottom:44.250000px;}
.y1f_c01039{bottom:86.982000px;}
.y1e_c01039{bottom:103.420500px;}
.y1d_c01039{bottom:119.859000px;}
.y1c_c01039{bottom:136.297500px;}
.y1b_c01039{bottom:152.736000px;}
.y1a_c01039{bottom:169.174500px;}
.y19_c01039{bottom:185.613000px;}
.y18_c01039{bottom:202.051500px;}
.y17_c01039{bottom:218.490000px;}
.y16_c01039{bottom:234.927000px;}
.y15_c01039{bottom:251.365500px;}
.y14_c01039{bottom:267.804000px;}
.y13_c01039{bottom:284.242500px;}
.y12_c01039{bottom:300.681000px;}
.y11_c01039{bottom:317.119500px;}
.y10_c01039{bottom:349.996500px;}
.yf_c01039{bottom:366.435000px;}
.ye_c01039{bottom:415.749000px;}
.yd_c01039{bottom:432.187500px;}
.yc_c01039{bottom:448.252500px;}
.yb_c01039{bottom:493.890000px;}
.ya_c01039{bottom:511.822500px;}
.y9_c01039{bottom:529.756500px;}
.y8_c01039{bottom:547.689000px;}
.y7_c01039{bottom:565.621500px;}
.y6_c01039{bottom:583.554000px;}
.y5_c01039{bottom:610.633500px;}
.y4_c01039{bottom:637.714500px;}
.y3_c01039{bottom:664.794000px;}
.y2_c01039{bottom:691.873500px;}
.y1_c01039{bottom:734.407500px;}
.h5_c01039{height:35.190766px;}
.h6_c01039{height:36.007158px;}
.h3_c01039{height:40.511979px;}
.h4_c01039{height:52.332837px;}
.h2_c01039{height:58.337477px;}
.h0_c01039{height:1262.835000px;}
.h1_c01039{height:1263.000000px;}
.w0_c01039{width:892.920000px;}
.w1_c01039{width:893.250000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:127.558500px;}
.x2_c01039{left:137.122500px;}
.x3_c01039{left:143.770500px;}
.x4_c01039{left:435.249000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls3_c01039{letter-spacing:0.000000pt;}
.ls0_c01039{letter-spacing:0.078221pt;}
.ls2_c01039{letter-spacing:0.087539pt;}
.ls1_c01039{letter-spacing:0.092873pt;}
.wsc_c01039{word-spacing:-29.967501pt;}
.ws2_c01039{word-spacing:-23.622682pt;}
.wse_c01039{word-spacing:-23.544461pt;}
.ws9_c01039{word-spacing:-19.158506pt;}
.ws8_c01039{word-spacing:-19.128192pt;}
.ws5_c01039{word-spacing:-16.684034pt;}
.ws7_c01039{word-spacing:-14.239876pt;}
.ws4_c01039{word-spacing:-13.283467pt;}
.wsa_c01039{word-spacing:-12.539593pt;}
.wsb_c01039{word-spacing:-10.733041pt;}
.ws1_c01039{word-spacing:-8.878599pt;}
.ws3_c01039{word-spacing:-8.877777pt;}
.ws6_c01039{word-spacing:-4.032128pt;}
.ws12_c01039{word-spacing:0.000000pt;}
.wsf_c01039{word-spacing:0.039110pt;}
.ws15_c01039{word-spacing:0.050460pt;}
.ws13_c01039{word-spacing:0.065111pt;}
.ws14_c01039{word-spacing:0.074430pt;}
.wsd_c01039{word-spacing:0.156442pt;}
.ws16_c01039{word-spacing:0.180412pt;}
.ws10_c01039{word-spacing:0.189730pt;}
.ws11_c01039{word-spacing:0.195063pt;}
.ws0_c01039{word-spacing:38.256533pt;}
._2_c01039{margin-left:-5.849451pt;}
._4_c01039{margin-left:-3.400567pt;}
._0_c01039{margin-left:-1.377235pt;}
._5_c01039{width:0.893988pt;}
._1_c01039{width:17.720725pt;}
._3_c01039{width:35.652825pt;}
._7_c01039{width:47.362694pt;}
._6_c01039{width:70.985376pt;}
._8_c01039{width:118.624363pt;}
.fs2_c01039{font-size:39.110400pt;}
.fs1_c01039{font-size:53.133867pt;}
.fs0_c01039{font-size:76.513067pt;}
.y0_c01039{bottom:0.000000pt;}
.y20_c01039{bottom:39.333333pt;}
.y1f_c01039{bottom:77.317333pt;}
.y1e_c01039{bottom:91.929333pt;}
.y1d_c01039{bottom:106.541333pt;}
.y1c_c01039{bottom:121.153333pt;}
.y1b_c01039{bottom:135.765333pt;}
.y1a_c01039{bottom:150.377333pt;}
.y19_c01039{bottom:164.989333pt;}
.y18_c01039{bottom:179.601333pt;}
.y17_c01039{bottom:194.213333pt;}
.y16_c01039{bottom:208.824000pt;}
.y15_c01039{bottom:223.436000pt;}
.y14_c01039{bottom:238.048000pt;}
.y13_c01039{bottom:252.660000pt;}
.y12_c01039{bottom:267.272000pt;}
.y11_c01039{bottom:281.884000pt;}
.y10_c01039{bottom:311.108000pt;}
.yf_c01039{bottom:325.720000pt;}
.ye_c01039{bottom:369.554667pt;}
.yd_c01039{bottom:384.166667pt;}
.yc_c01039{bottom:398.446667pt;}
.yb_c01039{bottom:439.013333pt;}
.ya_c01039{bottom:454.953333pt;}
.y9_c01039{bottom:470.894667pt;}
.y8_c01039{bottom:486.834667pt;}
.y7_c01039{bottom:502.774667pt;}
.y6_c01039{bottom:518.714667pt;}
.y5_c01039{bottom:542.785333pt;}
.y4_c01039{bottom:566.857333pt;}
.y3_c01039{bottom:590.928000pt;}
.y2_c01039{bottom:614.998667pt;}
.y1_c01039{bottom:652.806667pt;}
.h5_c01039{height:31.280681pt;}
.h6_c01039{height:32.006363pt;}
.h3_c01039{height:36.010648pt;}
.h4_c01039{height:46.518078pt;}
.h2_c01039{height:51.855535pt;}
.h0_c01039{height:1122.520000pt;}
.h1_c01039{height:1122.666667pt;}
.w0_c01039{width:793.706667pt;}
.w1_c01039{width:794.000000pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:113.385333pt;}
.x2_c01039{left:121.886667pt;}
.x3_c01039{left:127.796000pt;}
.x4_c01039{left:386.888000pt;}
}





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

.ir_c01040:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_62439dbe8f7fc08af3dabf00.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01040;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01040;src:url('chunks/assets/font_67632dd26b3b250cbc43ddbe.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01040;src:url('chunks/assets/font_969a775dc7b6a22bfe2b9a4c.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01040;src:url('chunks/assets/font_1315764784d035b5125aad13.woff2')format("woff");}.ff5_c01040{font-family:ff5_c01040;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls4_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:0.087998px;}
.ls2_c01040{letter-spacing:0.098482px;}
.ls3_c01040{letter-spacing:0.104482px;}
.ls1_c01040{letter-spacing:26.690482px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01040{word-spacing:-26.575517px;}
.ws4_c01040{word-spacing:-26.487518px;}
.wse_c01040{word-spacing:-21.553319px;}
.wsd_c01040{word-spacing:-21.519216px;}
.wsa_c01040{word-spacing:-18.769538px;}
.wsc_c01040{word-spacing:-17.633802px;}
.ws9_c01040{word-spacing:-14.943900px;}
.wsf_c01040{word-spacing:-14.107042px;}
.ws10_c01040{word-spacing:-12.074671px;}
.ws7_c01040{word-spacing:-9.988424px;}
.ws8_c01040{word-spacing:-9.987499px;}
.wsb_c01040{word-spacing:-7.686144px;}
.ws3_c01040{word-spacing:0.000000px;}
.ws0_c01040{word-spacing:0.043999px;}
.ws5_c01040{word-spacing:0.213446px;}
.ws1_c01040{word-spacing:0.219446px;}
.ws6_c01040{word-spacing:43.038600px;}
._4_c01040{margin-left:-6.580632px;}
._2_c01040{margin-left:-1.549390px;}
._1_c01040{width:1.041538px;}
._3_c01040{width:19.935816px;}
._5_c01040{width:40.109428px;}
._0_c01040{width:80.034545px;}
.fc5_c01040{color:rgb(79,153,5);}
.fc4_c01040{color:rgb(143,89,3);}
.fc3_c01040{color:rgb(0,0,0);}
.fc6_c01040{color:rgb(6,69,173);}
.fc2_c01040{color:rgb(207,92,0);}
.fc1_c01040{color:rgb(0,0,207);}
.fc0_c01040{color:rgb(33,74,135);}
.fs0_c01040{font-size:43.999200px;}
.fs2_c01040{font-size:59.775600px;}
.fs1_c01040{font-size:86.077200px;}
.y0_c01040{bottom:0.000000px;}
.y20_c01040{bottom:44.250000px;}
.y1f_c01040{bottom:82.051500px;}
.y1e_c01040{bottom:99.984000px;}
.y1d_c01040{bottom:117.916500px;}
.y1c_c01040{bottom:135.849000px;}
.y1b_c01040{bottom:162.501000px;}
.y1a_c01040{bottom:189.151500px;}
.y19_c01040{bottom:215.802000px;}
.y18_c01040{bottom:242.454000px;}
.y17_c01040{bottom:284.478000px;}
.y16_c01040{bottom:748.903500px;}
.y15_c01040{bottom:765.342000px;}
.y14_c01040{bottom:781.780500px;}
.y13_c01040{bottom:798.219000px;}
.y12_c01040{bottom:814.657500px;}
.y11_c01040{bottom:831.096000px;}
.y10_c01040{bottom:847.534500px;}
.yf_c01040{bottom:863.973000px;}
.ye_c01040{bottom:880.411500px;}
.yd_c01040{bottom:896.848500px;}
.yc_c01040{bottom:913.287000px;}
.yb_c01040{bottom:946.164000px;}
.ya_c01040{bottom:962.602500px;}
.y9_c01040{bottom:979.041000px;}
.y8_c01040{bottom:1011.918000px;}
.y7_c01040{bottom:1028.356500px;}
.y6_c01040{bottom:1044.795000px;}
.y5_c01040{bottom:1061.232000px;}
.y4_c01040{bottom:1077.670500px;}
.y3_c01040{bottom:1094.109000px;}
.y2_c01040{bottom:1110.547500px;}
.y1_c01040{bottom:1159.863000px;}
.h3_c01040{height:35.190766px;}
.h2_c01040{height:36.007158px;}
.h5_c01040{height:40.511979px;}
.h6_c01040{height:52.332837px;}
.h4_c01040{height:58.337477px;}
.h0_c01040{height:1262.835000px;}
.h1_c01040{height:1263.000000px;}
.w0_c01040{width:892.920000px;}
.w1_c01040{width:893.250000px;}
.x0_c01040{left:0.000000px;}
.x4_c01040{left:127.558500px;}
.x2_c01040{left:137.122500px;}
.x1_c01040{left:143.770500px;}
.x3_c01040{left:177.007500px;}
.x5_c01040{left:435.249000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls4_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:0.078221pt;}
.ls2_c01040{letter-spacing:0.087539pt;}
.ls3_c01040{letter-spacing:0.092873pt;}
.ls1_c01040{letter-spacing:23.724873pt;}
.ws2_c01040{word-spacing:-23.622682pt;}
.ws4_c01040{word-spacing:-23.544461pt;}
.wse_c01040{word-spacing:-19.158506pt;}
.wsd_c01040{word-spacing:-19.128192pt;}
.wsa_c01040{word-spacing:-16.684034pt;}
.wsc_c01040{word-spacing:-15.674491pt;}
.ws9_c01040{word-spacing:-13.283467pt;}
.wsf_c01040{word-spacing:-12.539593pt;}
.ws10_c01040{word-spacing:-10.733041pt;}
.ws7_c01040{word-spacing:-8.878599pt;}
.ws8_c01040{word-spacing:-8.877777pt;}
.wsb_c01040{word-spacing:-6.832128pt;}
.ws3_c01040{word-spacing:0.000000pt;}
.ws0_c01040{word-spacing:0.039110pt;}
.ws5_c01040{word-spacing:0.189730pt;}
.ws1_c01040{word-spacing:0.195063pt;}
.ws6_c01040{word-spacing:38.256533pt;}
._4_c01040{margin-left:-5.849451pt;}
._2_c01040{margin-left:-1.377235pt;}
._1_c01040{width:0.925811pt;}
._3_c01040{width:17.720725pt;}
._5_c01040{width:35.652825pt;}
._0_c01040{width:71.141818pt;}
.fs0_c01040{font-size:39.110400pt;}
.fs2_c01040{font-size:53.133867pt;}
.fs1_c01040{font-size:76.513067pt;}
.y0_c01040{bottom:0.000000pt;}
.y20_c01040{bottom:39.333333pt;}
.y1f_c01040{bottom:72.934667pt;}
.y1e_c01040{bottom:88.874667pt;}
.y1d_c01040{bottom:104.814667pt;}
.y1c_c01040{bottom:120.754667pt;}
.y1b_c01040{bottom:144.445333pt;}
.y1a_c01040{bottom:168.134667pt;}
.y19_c01040{bottom:191.824000pt;}
.y18_c01040{bottom:215.514667pt;}
.y17_c01040{bottom:252.869333pt;}
.y16_c01040{bottom:665.692000pt;}
.y15_c01040{bottom:680.304000pt;}
.y14_c01040{bottom:694.916000pt;}
.y13_c01040{bottom:709.528000pt;}
.y12_c01040{bottom:724.140000pt;}
.y11_c01040{bottom:738.752000pt;}
.y10_c01040{bottom:753.364000pt;}
.yf_c01040{bottom:767.976000pt;}
.ye_c01040{bottom:782.588000pt;}
.yd_c01040{bottom:797.198667pt;}
.yc_c01040{bottom:811.810667pt;}
.yb_c01040{bottom:841.034667pt;}
.ya_c01040{bottom:855.646667pt;}
.y9_c01040{bottom:870.258667pt;}
.y8_c01040{bottom:899.482667pt;}
.y7_c01040{bottom:914.094667pt;}
.y6_c01040{bottom:928.706667pt;}
.y5_c01040{bottom:943.317333pt;}
.y4_c01040{bottom:957.929333pt;}
.y3_c01040{bottom:972.541333pt;}
.y2_c01040{bottom:987.153333pt;}
.y1_c01040{bottom:1030.989333pt;}
.h3_c01040{height:31.280681pt;}
.h2_c01040{height:32.006363pt;}
.h5_c01040{height:36.010648pt;}
.h6_c01040{height:46.518078pt;}
.h4_c01040{height:51.855535pt;}
.h0_c01040{height:1122.520000pt;}
.h1_c01040{height:1122.666667pt;}
.w0_c01040{width:793.706667pt;}
.w1_c01040{width:794.000000pt;}
.x0_c01040{left:0.000000pt;}
.x4_c01040{left:113.385333pt;}
.x2_c01040{left:121.886667pt;}
.x1_c01040{left:127.796000pt;}
.x3_c01040{left:157.340000pt;}
.x5_c01040{left:386.888000pt;}
}





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

.ir_c01041:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_2b421a0880c10a3bac59f5fe.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01041;src:url('chunks/assets/font_4e8fe957f8b63d8e9cc77a98.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01041;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01041;src:url('chunks/assets/font_949338d9a834390d7877457d.woff2')format("woff");}.ff4_c01041{font-family:ff4_c01041;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls4_c01041{letter-spacing:0.000000px;}
.ls1_c01041{letter-spacing:0.087998px;}
.ls2_c01041{letter-spacing:0.098482px;}
.ls0_c01041{letter-spacing:0.104482px;}
.ls3_c01041{letter-spacing:26.690482px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01041{word-spacing:-33.713438px;}
.ws4_c01041{word-spacing:-26.575517px;}
.ws3_c01041{word-spacing:-26.487518px;}
.ws0_c01041{word-spacing:-18.769538px;}
.ws8_c01041{word-spacing:0.000000px;}
.ws5_c01041{word-spacing:0.043999px;}
.wsb_c01041{word-spacing:0.056767px;}
.ws9_c01041{word-spacing:0.073250px;}
.wsa_c01041{word-spacing:0.083734px;}
.ws2_c01041{word-spacing:0.175997px;}
.wsc_c01041{word-spacing:0.202963px;}
.ws6_c01041{word-spacing:0.213446px;}
.ws7_c01041{word-spacing:0.219446px;}
._0_c01041{margin-left:-3.825638px;}
._1_c01041{width:1.005737px;}
._3_c01041{width:53.283031px;}
._2_c01041{width:79.858548px;}
._4_c01041{width:133.452408px;}
.fc5_c01041{color:rgb(0,0,207);}
.fc4_c01041{color:rgb(79,153,5);}
.fc3_c01041{color:rgb(207,92,0);}
.fc2_c01041{color:rgb(33,74,135);}
.fc1_c01041{color:rgb(143,89,3);}
.fc0_c01041{color:rgb(0,0,0);}
.fs1_c01041{font-size:43.999200px;}
.fs0_c01041{font-size:59.775600px;}
.y0_c01041{bottom:0.000000px;}
.y2d_c01041{bottom:44.250000px;}
.y2c_c01041{bottom:96.919500px;}
.y2b_c01041{bottom:113.358000px;}
.y2a_c01041{bottom:129.796500px;}
.y29_c01041{bottom:146.235000px;}
.y28_c01041{bottom:162.673500px;}
.y27_c01041{bottom:179.112000px;}
.y26_c01041{bottom:195.550500px;}
.y25_c01041{bottom:211.989000px;}
.y24_c01041{bottom:228.427500px;}
.y23_c01041{bottom:244.866000px;}
.y22_c01041{bottom:261.304500px;}
.y21_c01041{bottom:294.180000px;}
.y20_c01041{bottom:310.618500px;}
.y1f_c01041{bottom:327.057000px;}
.y1e_c01041{bottom:359.934000px;}
.y1d_c01041{bottom:376.372500px;}
.y1c_c01041{bottom:392.811000px;}
.y1b_c01041{bottom:409.249500px;}
.y1a_c01041{bottom:425.688000px;}
.y19_c01041{bottom:442.125000px;}
.y18_c01041{bottom:458.563500px;}
.y17_c01041{bottom:507.879000px;}
.y16_c01041{bottom:524.317500px;}
.y15_c01041{bottom:540.756000px;}
.y14_c01041{bottom:557.194500px;}
.y13_c01041{bottom:573.633000px;}
.y12_c01041{bottom:590.071500px;}
.y11_c01041{bottom:606.508500px;}
.y10_c01041{bottom:622.947000px;}
.yf_c01041{bottom:639.385500px;}
.ye_c01041{bottom:655.824000px;}
.yd_c01041{bottom:672.262500px;}
.yc_c01041{bottom:688.701000px;}
.yb_c01041{bottom:705.139500px;}
.ya_c01041{bottom:721.578000px;}
.y9_c01041{bottom:738.016500px;}
.y8_c01041{bottom:754.455000px;}
.y7_c01041{bottom:787.330500px;}
.y6_c01041{bottom:803.769000px;}
.y5_c01041{bottom:853.084500px;}
.y4_c01041{bottom:869.523000px;}
.y3_c01041{bottom:885.588000px;}
.y2_c01041{bottom:1141.930500px;}
.y1_c01041{bottom:1159.863000px;}
.h3_c01041{height:35.190766px;}
.h4_c01041{height:36.007158px;}
.h2_c01041{height:52.332837px;}
.h0_c01041{height:1262.835000px;}
.h1_c01041{height:1263.000000px;}
.w0_c01041{width:892.920000px;}
.w1_c01041{width:893.250000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:127.558500px;}
.x2_c01041{left:137.122500px;}
.x3_c01041{left:143.770500px;}
.x4_c01041{left:177.007500px;}
.x5_c01041{left:435.249000px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls4_c01041{letter-spacing:0.000000pt;}
.ls1_c01041{letter-spacing:0.078221pt;}
.ls2_c01041{letter-spacing:0.087539pt;}
.ls0_c01041{letter-spacing:0.092873pt;}
.ls3_c01041{letter-spacing:23.724873pt;}
.ws1_c01041{word-spacing:-29.967501pt;}
.ws4_c01041{word-spacing:-23.622682pt;}
.ws3_c01041{word-spacing:-23.544461pt;}
.ws0_c01041{word-spacing:-16.684034pt;}
.ws8_c01041{word-spacing:0.000000pt;}
.ws5_c01041{word-spacing:0.039110pt;}
.wsb_c01041{word-spacing:0.050460pt;}
.ws9_c01041{word-spacing:0.065111pt;}
.wsa_c01041{word-spacing:0.074430pt;}
.ws2_c01041{word-spacing:0.156442pt;}
.wsc_c01041{word-spacing:0.180412pt;}
.ws6_c01041{word-spacing:0.189730pt;}
.ws7_c01041{word-spacing:0.195063pt;}
._0_c01041{margin-left:-3.400567pt;}
._1_c01041{width:0.893988pt;}
._3_c01041{width:47.362694pt;}
._2_c01041{width:70.985376pt;}
._4_c01041{width:118.624363pt;}
.fs1_c01041{font-size:39.110400pt;}
.fs0_c01041{font-size:53.133867pt;}
.y0_c01041{bottom:0.000000pt;}
.y2d_c01041{bottom:39.333333pt;}
.y2c_c01041{bottom:86.150667pt;}
.y2b_c01041{bottom:100.762667pt;}
.y2a_c01041{bottom:115.374667pt;}
.y29_c01041{bottom:129.986667pt;}
.y28_c01041{bottom:144.598667pt;}
.y27_c01041{bottom:159.210667pt;}
.y26_c01041{bottom:173.822667pt;}
.y25_c01041{bottom:188.434667pt;}
.y24_c01041{bottom:203.046667pt;}
.y23_c01041{bottom:217.658667pt;}
.y22_c01041{bottom:232.270667pt;}
.y21_c01041{bottom:261.493333pt;}
.y20_c01041{bottom:276.105333pt;}
.y1f_c01041{bottom:290.717333pt;}
.y1e_c01041{bottom:319.941333pt;}
.y1d_c01041{bottom:334.553333pt;}
.y1c_c01041{bottom:349.165333pt;}
.y1b_c01041{bottom:363.777333pt;}
.y1a_c01041{bottom:378.389333pt;}
.y19_c01041{bottom:393.000000pt;}
.y18_c01041{bottom:407.612000pt;}
.y17_c01041{bottom:451.448000pt;}
.y16_c01041{bottom:466.060000pt;}
.y15_c01041{bottom:480.672000pt;}
.y14_c01041{bottom:495.284000pt;}
.y13_c01041{bottom:509.896000pt;}
.y12_c01041{bottom:524.508000pt;}
.y11_c01041{bottom:539.118667pt;}
.y10_c01041{bottom:553.730667pt;}
.yf_c01041{bottom:568.342667pt;}
.ye_c01041{bottom:582.954667pt;}
.yd_c01041{bottom:597.566667pt;}
.yc_c01041{bottom:612.178667pt;}
.yb_c01041{bottom:626.790667pt;}
.ya_c01041{bottom:641.402667pt;}
.y9_c01041{bottom:656.014667pt;}
.y8_c01041{bottom:670.626667pt;}
.y7_c01041{bottom:699.849333pt;}
.y6_c01041{bottom:714.461333pt;}
.y5_c01041{bottom:758.297333pt;}
.y4_c01041{bottom:772.909333pt;}
.y3_c01041{bottom:787.189333pt;}
.y2_c01041{bottom:1015.049333pt;}
.y1_c01041{bottom:1030.989333pt;}
.h3_c01041{height:31.280681pt;}
.h4_c01041{height:32.006363pt;}
.h2_c01041{height:46.518078pt;}
.h0_c01041{height:1122.520000pt;}
.h1_c01041{height:1122.666667pt;}
.w0_c01041{width:793.706667pt;}
.w1_c01041{width:794.000000pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:113.385333pt;}
.x2_c01041{left:121.886667pt;}
.x3_c01041{left:127.796000pt;}
.x4_c01041{left:157.340000pt;}
.x5_c01041{left:386.888000pt;}
}





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

.ir_c01042:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_28f73d62cd4e4aadf8c388dc.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01042;src:url('chunks/assets/font_de1325fc8229248aa8957743.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01042;src:url('chunks/assets/font_3e98cf3aaeefba7ea667eb71.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01042;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01042;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls3_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:0.087998px;}
.ls2_c01042{letter-spacing:0.098482px;}
.ls1_c01042{letter-spacing:0.104482px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01042{word-spacing:-33.713438px;}
.ws2_c01042{word-spacing:-26.575517px;}
.wse_c01042{word-spacing:-26.487518px;}
.ws9_c01042{word-spacing:-21.553319px;}
.ws8_c01042{word-spacing:-21.519216px;}
.ws5_c01042{word-spacing:-18.769538px;}
.ws7_c01042{word-spacing:-17.633802px;}
.ws4_c01042{word-spacing:-14.943900px;}
.wsa_c01042{word-spacing:-14.107042px;}
.wsb_c01042{word-spacing:-12.074671px;}
.ws1_c01042{word-spacing:-9.988424px;}
.ws3_c01042{word-spacing:-9.987499px;}
.ws6_c01042{word-spacing:-7.686144px;}
.ws12_c01042{word-spacing:0.000000px;}
.wsf_c01042{word-spacing:0.043999px;}
.ws15_c01042{word-spacing:0.056767px;}
.ws13_c01042{word-spacing:0.073250px;}
.ws14_c01042{word-spacing:0.083734px;}
.wsd_c01042{word-spacing:0.175997px;}
.ws16_c01042{word-spacing:0.202963px;}
.ws10_c01042{word-spacing:0.213446px;}
.ws11_c01042{word-spacing:0.219446px;}
.ws0_c01042{word-spacing:43.038600px;}
._2_c01042{margin-left:-6.580632px;}
._4_c01042{margin-left:-3.825638px;}
._0_c01042{margin-left:-1.549390px;}
._5_c01042{width:1.005737px;}
._1_c01042{width:19.935816px;}
._3_c01042{width:40.109428px;}
._7_c01042{width:53.283031px;}
._6_c01042{width:79.858548px;}
._8_c01042{width:133.452408px;}
.fc6_c01042{color:rgb(0,0,207);}
.fc5_c01042{color:rgb(79,153,5);}
.fc3_c01042{color:rgb(33,74,135);}
.fc2_c01042{color:rgb(143,89,3);}
.fc4_c01042{color:rgb(207,92,0);}
.fc1_c01042{color:rgb(6,69,173);}
.fc0_c01042{color:rgb(0,0,0);}
.fs2_c01042{font-size:43.999200px;}
.fs1_c01042{font-size:59.775600px;}
.fs0_c01042{font-size:86.077200px;}
.y0_c01042{bottom:0.000000px;}
.y20_c01042{bottom:44.250000px;}
.y1f_c01042{bottom:86.982000px;}
.y1e_c01042{bottom:103.420500px;}
.y1d_c01042{bottom:119.859000px;}
.y1c_c01042{bottom:136.297500px;}
.y1b_c01042{bottom:152.736000px;}
.y1a_c01042{bottom:169.174500px;}
.y19_c01042{bottom:185.613000px;}
.y18_c01042{bottom:202.051500px;}
.y17_c01042{bottom:218.490000px;}
.y16_c01042{bottom:234.927000px;}
.y15_c01042{bottom:251.365500px;}
.y14_c01042{bottom:267.804000px;}
.y13_c01042{bottom:284.242500px;}
.y12_c01042{bottom:300.681000px;}
.y11_c01042{bottom:317.119500px;}
.y10_c01042{bottom:349.996500px;}
.yf_c01042{bottom:366.435000px;}
.ye_c01042{bottom:415.749000px;}
.yd_c01042{bottom:432.187500px;}
.yc_c01042{bottom:448.252500px;}
.yb_c01042{bottom:493.890000px;}
.ya_c01042{bottom:511.822500px;}
.y9_c01042{bottom:529.756500px;}
.y8_c01042{bottom:547.689000px;}
.y7_c01042{bottom:565.621500px;}
.y6_c01042{bottom:583.554000px;}
.y5_c01042{bottom:610.633500px;}
.y4_c01042{bottom:637.714500px;}
.y3_c01042{bottom:664.794000px;}
.y2_c01042{bottom:691.873500px;}
.y1_c01042{bottom:734.407500px;}
.h5_c01042{height:35.190766px;}
.h6_c01042{height:36.007158px;}
.h3_c01042{height:40.511979px;}
.h4_c01042{height:52.332837px;}
.h2_c01042{height:58.337477px;}
.h0_c01042{height:1262.835000px;}
.h1_c01042{height:1263.000000px;}
.w0_c01042{width:892.920000px;}
.w1_c01042{width:893.250000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:127.558500px;}
.x2_c01042{left:137.122500px;}
.x3_c01042{left:143.770500px;}
.x4_c01042{left:435.249000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls3_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:0.078221pt;}
.ls2_c01042{letter-spacing:0.087539pt;}
.ls1_c01042{letter-spacing:0.092873pt;}
.wsc_c01042{word-spacing:-29.967501pt;}
.ws2_c01042{word-spacing:-23.622682pt;}
.wse_c01042{word-spacing:-23.544461pt;}
.ws9_c01042{word-spacing:-19.158506pt;}
.ws8_c01042{word-spacing:-19.128192pt;}
.ws5_c01042{word-spacing:-16.684034pt;}
.ws7_c01042{word-spacing:-15.674491pt;}
.ws4_c01042{word-spacing:-13.283467pt;}
.wsa_c01042{word-spacing:-12.539593pt;}
.wsb_c01042{word-spacing:-10.733041pt;}
.ws1_c01042{word-spacing:-8.878599pt;}
.ws3_c01042{word-spacing:-8.877777pt;}
.ws6_c01042{word-spacing:-6.832128pt;}
.ws12_c01042{word-spacing:0.000000pt;}
.wsf_c01042{word-spacing:0.039110pt;}
.ws15_c01042{word-spacing:0.050460pt;}
.ws13_c01042{word-spacing:0.065111pt;}
.ws14_c01042{word-spacing:0.074430pt;}
.wsd_c01042{word-spacing:0.156442pt;}
.ws16_c01042{word-spacing:0.180412pt;}
.ws10_c01042{word-spacing:0.189730pt;}
.ws11_c01042{word-spacing:0.195063pt;}
.ws0_c01042{word-spacing:38.256533pt;}
._2_c01042{margin-left:-5.849451pt;}
._4_c01042{margin-left:-3.400567pt;}
._0_c01042{margin-left:-1.377235pt;}
._5_c01042{width:0.893988pt;}
._1_c01042{width:17.720725pt;}
._3_c01042{width:35.652825pt;}
._7_c01042{width:47.362694pt;}
._6_c01042{width:70.985376pt;}
._8_c01042{width:118.624363pt;}
.fs2_c01042{font-size:39.110400pt;}
.fs1_c01042{font-size:53.133867pt;}
.fs0_c01042{font-size:76.513067pt;}
.y0_c01042{bottom:0.000000pt;}
.y20_c01042{bottom:39.333333pt;}
.y1f_c01042{bottom:77.317333pt;}
.y1e_c01042{bottom:91.929333pt;}
.y1d_c01042{bottom:106.541333pt;}
.y1c_c01042{bottom:121.153333pt;}
.y1b_c01042{bottom:135.765333pt;}
.y1a_c01042{bottom:150.377333pt;}
.y19_c01042{bottom:164.989333pt;}
.y18_c01042{bottom:179.601333pt;}
.y17_c01042{bottom:194.213333pt;}
.y16_c01042{bottom:208.824000pt;}
.y15_c01042{bottom:223.436000pt;}
.y14_c01042{bottom:238.048000pt;}
.y13_c01042{bottom:252.660000pt;}
.y12_c01042{bottom:267.272000pt;}
.y11_c01042{bottom:281.884000pt;}
.y10_c01042{bottom:311.108000pt;}
.yf_c01042{bottom:325.720000pt;}
.ye_c01042{bottom:369.554667pt;}
.yd_c01042{bottom:384.166667pt;}
.yc_c01042{bottom:398.446667pt;}
.yb_c01042{bottom:439.013333pt;}
.ya_c01042{bottom:454.953333pt;}
.y9_c01042{bottom:470.894667pt;}
.y8_c01042{bottom:486.834667pt;}
.y7_c01042{bottom:502.774667pt;}
.y6_c01042{bottom:518.714667pt;}
.y5_c01042{bottom:542.785333pt;}
.y4_c01042{bottom:566.857333pt;}
.y3_c01042{bottom:590.928000pt;}
.y2_c01042{bottom:614.998667pt;}
.y1_c01042{bottom:652.806667pt;}
.h5_c01042{height:31.280681pt;}
.h6_c01042{height:32.006363pt;}
.h3_c01042{height:36.010648pt;}
.h4_c01042{height:46.518078pt;}
.h2_c01042{height:51.855535pt;}
.h0_c01042{height:1122.520000pt;}
.h1_c01042{height:1122.666667pt;}
.w0_c01042{width:793.706667pt;}
.w1_c01042{width:794.000000pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:113.385333pt;}
.x2_c01042{left:121.886667pt;}
.x3_c01042{left:127.796000pt;}
.x4_c01042{left:386.888000pt;}
}





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

.ir_c01043:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_84a51990fb62d9e6ba249313.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01043;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01043;src:url('chunks/assets/font_58389d30f867e5ca680fc036.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01043;src:url('chunks/assets/font_1ef3e6ce3f4c76ba54eea0f5.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01043;src:url('chunks/assets/font_1315764784d035b5125aad13.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01043{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls4_c01043{letter-spacing:0.000000px;}
.ls0_c01043{letter-spacing:0.087998px;}
.ls2_c01043{letter-spacing:0.098482px;}
.ls3_c01043{letter-spacing:0.104482px;}
.ls1_c01043{letter-spacing:26.690482px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01043{word-spacing:-26.575517px;}
.ws4_c01043{word-spacing:-26.487518px;}
.wse_c01043{word-spacing:-21.553319px;}
.wsd_c01043{word-spacing:-21.519216px;}
.wsc_c01043{word-spacing:-19.247743px;}
.wsa_c01043{word-spacing:-18.769538px;}
.ws9_c01043{word-spacing:-14.943900px;}
.wsf_c01043{word-spacing:-14.107042px;}
.ws10_c01043{word-spacing:-12.074671px;}
.wsb_c01043{word-spacing:-10.230144px;}
.ws7_c01043{word-spacing:-9.988424px;}
.ws8_c01043{word-spacing:-9.987499px;}
.ws3_c01043{word-spacing:0.000000px;}
.ws0_c01043{word-spacing:0.043999px;}
.ws5_c01043{word-spacing:0.213446px;}
.ws1_c01043{word-spacing:0.219446px;}
.ws6_c01043{word-spacing:43.038600px;}
._4_c01043{margin-left:-6.580632px;}
._2_c01043{margin-left:-1.549390px;}
._1_c01043{width:1.041538px;}
._3_c01043{width:19.935816px;}
._5_c01043{width:40.109428px;}
._0_c01043{width:53.459028px;}
.fc5_c01043{color:rgb(79,153,5);}
.fc4_c01043{color:rgb(143,89,3);}
.fc3_c01043{color:rgb(0,0,0);}
.fc6_c01043{color:rgb(6,69,173);}
.fc2_c01043{color:rgb(207,92,0);}
.fc1_c01043{color:rgb(0,0,207);}
.fc0_c01043{color:rgb(33,74,135);}
.fs0_c01043{font-size:43.999200px;}
.fs2_c01043{font-size:59.775600px;}
.fs1_c01043{font-size:86.077200px;}
.y0_c01043{bottom:0.000000px;}
.y20_c01043{bottom:44.250000px;}
.y1f_c01043{bottom:82.051500px;}
.y1e_c01043{bottom:99.984000px;}
.y1d_c01043{bottom:117.916500px;}
.y1c_c01043{bottom:135.849000px;}
.y1b_c01043{bottom:162.501000px;}
.y1a_c01043{bottom:189.151500px;}
.y19_c01043{bottom:215.802000px;}
.y18_c01043{bottom:242.454000px;}
.y17_c01043{bottom:284.478000px;}
.y16_c01043{bottom:748.903500px;}
.y15_c01043{bottom:765.342000px;}
.y14_c01043{bottom:781.780500px;}
.y13_c01043{bottom:798.219000px;}
.y12_c01043{bottom:814.657500px;}
.y11_c01043{bottom:831.096000px;}
.y10_c01043{bottom:847.534500px;}
.yf_c01043{bottom:863.973000px;}
.ye_c01043{bottom:880.411500px;}
.yd_c01043{bottom:896.848500px;}
.yc_c01043{bottom:913.287000px;}
.yb_c01043{bottom:946.164000px;}
.ya_c01043{bottom:962.602500px;}
.y9_c01043{bottom:979.041000px;}
.y8_c01043{bottom:1011.918000px;}
.y7_c01043{bottom:1028.356500px;}
.y6_c01043{bottom:1044.795000px;}
.y5_c01043{bottom:1061.232000px;}
.y4_c01043{bottom:1077.670500px;}
.y3_c01043{bottom:1094.109000px;}
.y2_c01043{bottom:1110.547500px;}
.y1_c01043{bottom:1159.863000px;}
.h3_c01043{height:35.190766px;}
.h2_c01043{height:36.007158px;}
.h5_c01043{height:40.511979px;}
.h6_c01043{height:52.332837px;}
.h4_c01043{height:58.337477px;}
.h0_c01043{height:1262.835000px;}
.h1_c01043{height:1263.000000px;}
.w0_c01043{width:892.920000px;}
.w1_c01043{width:893.250000px;}
.x0_c01043{left:0.000000px;}
.x4_c01043{left:127.558500px;}
.x2_c01043{left:137.122500px;}
.x1_c01043{left:143.770500px;}
.x3_c01043{left:177.007500px;}
.x5_c01043{left:435.249000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls4_c01043{letter-spacing:0.000000pt;}
.ls0_c01043{letter-spacing:0.078221pt;}
.ls2_c01043{letter-spacing:0.087539pt;}
.ls3_c01043{letter-spacing:0.092873pt;}
.ls1_c01043{letter-spacing:23.724873pt;}
.ws2_c01043{word-spacing:-23.622682pt;}
.ws4_c01043{word-spacing:-23.544461pt;}
.wse_c01043{word-spacing:-19.158506pt;}
.wsd_c01043{word-spacing:-19.128192pt;}
.wsc_c01043{word-spacing:-17.109105pt;}
.wsa_c01043{word-spacing:-16.684034pt;}
.ws9_c01043{word-spacing:-13.283467pt;}
.wsf_c01043{word-spacing:-12.539593pt;}
.ws10_c01043{word-spacing:-10.733041pt;}
.wsb_c01043{word-spacing:-9.093461pt;}
.ws7_c01043{word-spacing:-8.878599pt;}
.ws8_c01043{word-spacing:-8.877777pt;}
.ws3_c01043{word-spacing:0.000000pt;}
.ws0_c01043{word-spacing:0.039110pt;}
.ws5_c01043{word-spacing:0.189730pt;}
.ws1_c01043{word-spacing:0.195063pt;}
.ws6_c01043{word-spacing:38.256533pt;}
._4_c01043{margin-left:-5.849451pt;}
._2_c01043{margin-left:-1.377235pt;}
._1_c01043{width:0.925811pt;}
._3_c01043{width:17.720725pt;}
._5_c01043{width:35.652825pt;}
._0_c01043{width:47.519136pt;}
.fs0_c01043{font-size:39.110400pt;}
.fs2_c01043{font-size:53.133867pt;}
.fs1_c01043{font-size:76.513067pt;}
.y0_c01043{bottom:0.000000pt;}
.y20_c01043{bottom:39.333333pt;}
.y1f_c01043{bottom:72.934667pt;}
.y1e_c01043{bottom:88.874667pt;}
.y1d_c01043{bottom:104.814667pt;}
.y1c_c01043{bottom:120.754667pt;}
.y1b_c01043{bottom:144.445333pt;}
.y1a_c01043{bottom:168.134667pt;}
.y19_c01043{bottom:191.824000pt;}
.y18_c01043{bottom:215.514667pt;}
.y17_c01043{bottom:252.869333pt;}
.y16_c01043{bottom:665.692000pt;}
.y15_c01043{bottom:680.304000pt;}
.y14_c01043{bottom:694.916000pt;}
.y13_c01043{bottom:709.528000pt;}
.y12_c01043{bottom:724.140000pt;}
.y11_c01043{bottom:738.752000pt;}
.y10_c01043{bottom:753.364000pt;}
.yf_c01043{bottom:767.976000pt;}
.ye_c01043{bottom:782.588000pt;}
.yd_c01043{bottom:797.198667pt;}
.yc_c01043{bottom:811.810667pt;}
.yb_c01043{bottom:841.034667pt;}
.ya_c01043{bottom:855.646667pt;}
.y9_c01043{bottom:870.258667pt;}
.y8_c01043{bottom:899.482667pt;}
.y7_c01043{bottom:914.094667pt;}
.y6_c01043{bottom:928.706667pt;}
.y5_c01043{bottom:943.317333pt;}
.y4_c01043{bottom:957.929333pt;}
.y3_c01043{bottom:972.541333pt;}
.y2_c01043{bottom:987.153333pt;}
.y1_c01043{bottom:1030.989333pt;}
.h3_c01043{height:31.280681pt;}
.h2_c01043{height:32.006363pt;}
.h5_c01043{height:36.010648pt;}
.h6_c01043{height:46.518078pt;}
.h4_c01043{height:51.855535pt;}
.h0_c01043{height:1122.520000pt;}
.h1_c01043{height:1122.666667pt;}
.w0_c01043{width:793.706667pt;}
.w1_c01043{width:794.000000pt;}
.x0_c01043{left:0.000000pt;}
.x4_c01043{left:113.385333pt;}
.x2_c01043{left:121.886667pt;}
.x1_c01043{left:127.796000pt;}
.x3_c01043{left:157.340000pt;}
.x5_c01043{left:386.888000pt;}
}





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

.ir_c01044:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_5f87cff6cba339a8b09316c8.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01044;src:url('chunks/assets/font_0b93d1a3ec3cd27e680c5064.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01044;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01044;src:url('chunks/assets/font_af71be8a30b7696d1ce0c68d.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls4_c01044{letter-spacing:0.000000px;}
.ls1_c01044{letter-spacing:0.087998px;}
.ls2_c01044{letter-spacing:0.098482px;}
.ls0_c01044{letter-spacing:0.104482px;}
.ls3_c01044{letter-spacing:26.690482px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01044{word-spacing:-33.713438px;}
.ws4_c01044{word-spacing:-26.575517px;}
.ws3_c01044{word-spacing:-26.487518px;}
.ws0_c01044{word-spacing:-18.769538px;}
.ws8_c01044{word-spacing:0.000000px;}
.ws5_c01044{word-spacing:0.043999px;}
.wsb_c01044{word-spacing:0.056767px;}
.ws9_c01044{word-spacing:0.073250px;}
.wsa_c01044{word-spacing:0.083734px;}
.ws2_c01044{word-spacing:0.175997px;}
.wsc_c01044{word-spacing:0.202963px;}
.ws6_c01044{word-spacing:0.213446px;}
.ws7_c01044{word-spacing:0.219446px;}
._0_c01044{margin-left:-3.825638px;}
._1_c01044{width:1.005737px;}
._3_c01044{width:53.283031px;}
._2_c01044{width:79.858548px;}
._4_c01044{width:133.452408px;}
.fc5_c01044{color:rgb(0,0,207);}
.fc4_c01044{color:rgb(79,153,5);}
.fc3_c01044{color:rgb(207,92,0);}
.fc2_c01044{color:rgb(33,74,135);}
.fc1_c01044{color:rgb(143,89,3);}
.fc0_c01044{color:rgb(0,0,0);}
.fs1_c01044{font-size:43.999200px;}
.fs0_c01044{font-size:59.775600px;}
.y0_c01044{bottom:0.000000px;}
.y2d_c01044{bottom:44.250000px;}
.y2c_c01044{bottom:96.919500px;}
.y2b_c01044{bottom:113.358000px;}
.y2a_c01044{bottom:129.796500px;}
.y29_c01044{bottom:146.235000px;}
.y28_c01044{bottom:162.673500px;}
.y27_c01044{bottom:179.112000px;}
.y26_c01044{bottom:195.550500px;}
.y25_c01044{bottom:211.989000px;}
.y24_c01044{bottom:228.427500px;}
.y23_c01044{bottom:244.866000px;}
.y22_c01044{bottom:261.304500px;}
.y21_c01044{bottom:294.180000px;}
.y20_c01044{bottom:310.618500px;}
.y1f_c01044{bottom:327.057000px;}
.y1e_c01044{bottom:359.934000px;}
.y1d_c01044{bottom:376.372500px;}
.y1c_c01044{bottom:392.811000px;}
.y1b_c01044{bottom:409.249500px;}
.y1a_c01044{bottom:425.688000px;}
.y19_c01044{bottom:442.125000px;}
.y18_c01044{bottom:458.563500px;}
.y17_c01044{bottom:507.879000px;}
.y16_c01044{bottom:524.317500px;}
.y15_c01044{bottom:540.756000px;}
.y14_c01044{bottom:557.194500px;}
.y13_c01044{bottom:573.633000px;}
.y12_c01044{bottom:590.071500px;}
.y11_c01044{bottom:606.508500px;}
.y10_c01044{bottom:622.947000px;}
.yf_c01044{bottom:639.385500px;}
.ye_c01044{bottom:655.824000px;}
.yd_c01044{bottom:672.262500px;}
.yc_c01044{bottom:688.701000px;}
.yb_c01044{bottom:705.139500px;}
.ya_c01044{bottom:721.578000px;}
.y9_c01044{bottom:738.016500px;}
.y8_c01044{bottom:754.455000px;}
.y7_c01044{bottom:787.330500px;}
.y6_c01044{bottom:803.769000px;}
.y5_c01044{bottom:853.084500px;}
.y4_c01044{bottom:869.523000px;}
.y3_c01044{bottom:885.588000px;}
.y2_c01044{bottom:1141.930500px;}
.y1_c01044{bottom:1159.863000px;}
.h3_c01044{height:35.190766px;}
.h4_c01044{height:36.007158px;}
.h2_c01044{height:52.332837px;}
.h0_c01044{height:1262.835000px;}
.h1_c01044{height:1263.000000px;}
.w0_c01044{width:892.920000px;}
.w1_c01044{width:893.250000px;}
.x0_c01044{left:0.000000px;}
.x1_c01044{left:127.558500px;}
.x2_c01044{left:137.122500px;}
.x3_c01044{left:143.770500px;}
.x4_c01044{left:177.007500px;}
.x5_c01044{left:435.249000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls4_c01044{letter-spacing:0.000000pt;}
.ls1_c01044{letter-spacing:0.078221pt;}
.ls2_c01044{letter-spacing:0.087539pt;}
.ls0_c01044{letter-spacing:0.092873pt;}
.ls3_c01044{letter-spacing:23.724873pt;}
.ws1_c01044{word-spacing:-29.967501pt;}
.ws4_c01044{word-spacing:-23.622682pt;}
.ws3_c01044{word-spacing:-23.544461pt;}
.ws0_c01044{word-spacing:-16.684034pt;}
.ws8_c01044{word-spacing:0.000000pt;}
.ws5_c01044{word-spacing:0.039110pt;}
.wsb_c01044{word-spacing:0.050460pt;}
.ws9_c01044{word-spacing:0.065111pt;}
.wsa_c01044{word-spacing:0.074430pt;}
.ws2_c01044{word-spacing:0.156442pt;}
.wsc_c01044{word-spacing:0.180412pt;}
.ws6_c01044{word-spacing:0.189730pt;}
.ws7_c01044{word-spacing:0.195063pt;}
._0_c01044{margin-left:-3.400567pt;}
._1_c01044{width:0.893988pt;}
._3_c01044{width:47.362694pt;}
._2_c01044{width:70.985376pt;}
._4_c01044{width:118.624363pt;}
.fs1_c01044{font-size:39.110400pt;}
.fs0_c01044{font-size:53.133867pt;}
.y0_c01044{bottom:0.000000pt;}
.y2d_c01044{bottom:39.333333pt;}
.y2c_c01044{bottom:86.150667pt;}
.y2b_c01044{bottom:100.762667pt;}
.y2a_c01044{bottom:115.374667pt;}
.y29_c01044{bottom:129.986667pt;}
.y28_c01044{bottom:144.598667pt;}
.y27_c01044{bottom:159.210667pt;}
.y26_c01044{bottom:173.822667pt;}
.y25_c01044{bottom:188.434667pt;}
.y24_c01044{bottom:203.046667pt;}
.y23_c01044{bottom:217.658667pt;}
.y22_c01044{bottom:232.270667pt;}
.y21_c01044{bottom:261.493333pt;}
.y20_c01044{bottom:276.105333pt;}
.y1f_c01044{bottom:290.717333pt;}
.y1e_c01044{bottom:319.941333pt;}
.y1d_c01044{bottom:334.553333pt;}
.y1c_c01044{bottom:349.165333pt;}
.y1b_c01044{bottom:363.777333pt;}
.y1a_c01044{bottom:378.389333pt;}
.y19_c01044{bottom:393.000000pt;}
.y18_c01044{bottom:407.612000pt;}
.y17_c01044{bottom:451.448000pt;}
.y16_c01044{bottom:466.060000pt;}
.y15_c01044{bottom:480.672000pt;}
.y14_c01044{bottom:495.284000pt;}
.y13_c01044{bottom:509.896000pt;}
.y12_c01044{bottom:524.508000pt;}
.y11_c01044{bottom:539.118667pt;}
.y10_c01044{bottom:553.730667pt;}
.yf_c01044{bottom:568.342667pt;}
.ye_c01044{bottom:582.954667pt;}
.yd_c01044{bottom:597.566667pt;}
.yc_c01044{bottom:612.178667pt;}
.yb_c01044{bottom:626.790667pt;}
.ya_c01044{bottom:641.402667pt;}
.y9_c01044{bottom:656.014667pt;}
.y8_c01044{bottom:670.626667pt;}
.y7_c01044{bottom:699.849333pt;}
.y6_c01044{bottom:714.461333pt;}
.y5_c01044{bottom:758.297333pt;}
.y4_c01044{bottom:772.909333pt;}
.y3_c01044{bottom:787.189333pt;}
.y2_c01044{bottom:1015.049333pt;}
.y1_c01044{bottom:1030.989333pt;}
.h3_c01044{height:31.280681pt;}
.h4_c01044{height:32.006363pt;}
.h2_c01044{height:46.518078pt;}
.h0_c01044{height:1122.520000pt;}
.h1_c01044{height:1122.666667pt;}
.w0_c01044{width:793.706667pt;}
.w1_c01044{width:794.000000pt;}
.x0_c01044{left:0.000000pt;}
.x1_c01044{left:113.385333pt;}
.x2_c01044{left:121.886667pt;}
.x3_c01044{left:127.796000pt;}
.x4_c01044{left:157.340000pt;}
.x5_c01044{left:386.888000pt;}
}





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

.ir_c01045:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_4f987c43de0e197187f31934.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01045;src:url('chunks/assets/font_899cebaf212f14149d047064.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01045;src:url('chunks/assets/font_82446ae354963582a6e8d969.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01045;src:url('chunks/assets/font_01a278029ab4d5444f6f045d.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01045;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls3_c01045{letter-spacing:0.000000px;}
.ls0_c01045{letter-spacing:0.087998px;}
.ls2_c01045{letter-spacing:0.098482px;}
.ls1_c01045{letter-spacing:0.104482px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01045{word-spacing:-26.575517px;}
.ws15_c01045{word-spacing:-26.487518px;}
.wsf_c01045{word-spacing:-19.925909px;}
.wse_c01045{word-spacing:-19.845499px;}
.ws6_c01045{word-spacing:-18.769538px;}
.ws13_c01045{word-spacing:-18.590212px;}
.ws10_c01045{word-spacing:-18.171782px;}
.ws5_c01045{word-spacing:-17.753353px;}
.ws12_c01045{word-spacing:-17.693578px;}
.wsc_c01045{word-spacing:-17.036046px;}
.wsd_c01045{word-spacing:-17.011222px;}
.wsa_c01045{word-spacing:-15.601432px;}
.ws11_c01045{word-spacing:-15.063451px;}
.ws7_c01045{word-spacing:-14.943900px;}
.ws4_c01045{word-spacing:-13.927715px;}
.wsb_c01045{word-spacing:-13.808164px;}
.ws9_c01045{word-spacing:-13.748388px;}
.ws1_c01045{word-spacing:-9.988424px;}
.ws3_c01045{word-spacing:-9.987499px;}
.ws19_c01045{word-spacing:0.000000px;}
.ws8_c01045{word-spacing:0.017856px;}
.ws16_c01045{word-spacing:0.043999px;}
.ws14_c01045{word-spacing:0.175997px;}
.ws18_c01045{word-spacing:0.213446px;}
.ws17_c01045{word-spacing:0.219446px;}
.ws0_c01045{word-spacing:43.038600px;}
._1_c01045{margin-left:-9.468492px;}
._2_c01045{margin-left:-7.919102px;}
._4_c01045{margin-left:-5.678682px;}
._8_c01045{margin-left:-4.124516px;}
._7_c01045{margin-left:-2.998955px;}
._0_c01045{margin-left:-1.549390px;}
._d_c01045{width:1.005737px;}
._c_c01045{width:16.173962px;}
._9_c01045{width:17.693578px;}
._5_c01045{width:19.930500px;}
._3_c01045{width:21.991631px;}
._b_c01045{width:23.073382px;}
._a_c01045{width:25.925671px;}
._6_c01045{width:29.529146px;}
.fc5_c01045{color:rgb(79,153,5);}
.fc3_c01045{color:rgb(33,74,135);}
.fc2_c01045{color:rgb(143,89,3);}
.fc4_c01045{color:rgb(207,92,0);}
.fc1_c01045{color:rgb(6,69,173);}
.fc0_c01045{color:rgb(0,0,0);}
.fs2_c01045{font-size:43.999200px;}
.fs1_c01045{font-size:59.775600px;}
.fs0_c01045{font-size:86.077200px;}
.y0_c01045{bottom:0.000000px;}
.y20_c01045{bottom:44.250000px;}
.y1f_c01045{bottom:98.490000px;}
.y1e_c01045{bottom:114.927000px;}
.y1d_c01045{bottom:131.365500px;}
.y1c_c01045{bottom:147.804000px;}
.y1b_c01045{bottom:180.681000px;}
.y1a_c01045{bottom:197.119500px;}
.y19_c01045{bottom:213.558000px;}
.y18_c01045{bottom:229.996500px;}
.y17_c01045{bottom:246.435000px;}
.y16_c01045{bottom:262.873500px;}
.y15_c01045{bottom:279.310500px;}
.y14_c01045{bottom:295.749000px;}
.y13_c01045{bottom:311.814000px;}
.y12_c01045{bottom:360.214500px;}
.y11_c01045{bottom:378.147000px;}
.y10_c01045{bottom:396.079500px;}
.yf_c01045{bottom:414.012000px;}
.ye_c01045{bottom:431.946000px;}
.yd_c01045{bottom:449.878500px;}
.yc_c01045{bottom:467.811000px;}
.yb_c01045{bottom:485.743500px;}
.ya_c01045{bottom:512.721000px;}
.y9_c01045{bottom:530.653500px;}
.y8_c01045{bottom:548.586000px;}
.y7_c01045{bottom:566.518500px;}
.y6_c01045{bottom:593.496000px;}
.y5_c01045{bottom:620.472000px;}
.y4_c01045{bottom:638.404500px;}
.y3_c01045{bottom:665.382000px;}
.y2_c01045{bottom:692.358000px;}
.y1_c01045{bottom:734.742000px;}
.h6_c01045{height:35.190766px;}
.h7_c01045{height:36.007158px;}
.h3_c01045{height:40.511979px;}
.h5_c01045{height:52.326837px;}
.h4_c01045{height:52.332837px;}
.h2_c01045{height:58.337477px;}
.h0_c01045{height:1262.835000px;}
.h1_c01045{height:1263.000000px;}
.w0_c01045{width:892.920000px;}
.w1_c01045{width:893.250000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:127.558500px;}
.x2_c01045{left:137.122500px;}
.x3_c01045{left:435.249000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls3_c01045{letter-spacing:0.000000pt;}
.ls0_c01045{letter-spacing:0.078221pt;}
.ls2_c01045{letter-spacing:0.087539pt;}
.ls1_c01045{letter-spacing:0.092873pt;}
.ws2_c01045{word-spacing:-23.622682pt;}
.ws15_c01045{word-spacing:-23.544461pt;}
.wsf_c01045{word-spacing:-17.711919pt;}
.wse_c01045{word-spacing:-17.640444pt;}
.ws6_c01045{word-spacing:-16.684034pt;}
.ws13_c01045{word-spacing:-16.524633pt;}
.ws10_c01045{word-spacing:-16.152695pt;}
.ws5_c01045{word-spacing:-15.780758pt;}
.ws12_c01045{word-spacing:-15.727625pt;}
.wsc_c01045{word-spacing:-15.143152pt;}
.wsd_c01045{word-spacing:-15.121086pt;}
.wsa_c01045{word-spacing:-13.867939pt;}
.ws11_c01045{word-spacing:-13.389734pt;}
.ws7_c01045{word-spacing:-13.283467pt;}
.ws4_c01045{word-spacing:-12.380191pt;}
.wsb_c01045{word-spacing:-12.273923pt;}
.ws9_c01045{word-spacing:-12.220789pt;}
.ws1_c01045{word-spacing:-8.878599pt;}
.ws3_c01045{word-spacing:-8.877777pt;}
.ws19_c01045{word-spacing:0.000000pt;}
.ws8_c01045{word-spacing:0.015872pt;}
.ws16_c01045{word-spacing:0.039110pt;}
.ws14_c01045{word-spacing:0.156442pt;}
.ws18_c01045{word-spacing:0.189730pt;}
.ws17_c01045{word-spacing:0.195063pt;}
.ws0_c01045{word-spacing:38.256533pt;}
._1_c01045{margin-left:-8.416437pt;}
._2_c01045{margin-left:-7.039202pt;}
._4_c01045{margin-left:-5.047717pt;}
._8_c01045{margin-left:-3.666237pt;}
._7_c01045{margin-left:-2.665738pt;}
._0_c01045{margin-left:-1.377235pt;}
._d_c01045{width:0.893988pt;}
._c_c01045{width:14.376855pt;}
._9_c01045{width:15.727625pt;}
._5_c01045{width:17.716000pt;}
._3_c01045{width:19.548116pt;}
._b_c01045{width:20.509673pt;}
._a_c01045{width:23.045041pt;}
._6_c01045{width:26.248130pt;}
.fs2_c01045{font-size:39.110400pt;}
.fs1_c01045{font-size:53.133867pt;}
.fs0_c01045{font-size:76.513067pt;}
.y0_c01045{bottom:0.000000pt;}
.y20_c01045{bottom:39.333333pt;}
.y1f_c01045{bottom:87.546667pt;}
.y1e_c01045{bottom:102.157333pt;}
.y1d_c01045{bottom:116.769333pt;}
.y1c_c01045{bottom:131.381333pt;}
.y1b_c01045{bottom:160.605333pt;}
.y1a_c01045{bottom:175.217333pt;}
.y19_c01045{bottom:189.829333pt;}
.y18_c01045{bottom:204.441333pt;}
.y17_c01045{bottom:219.053333pt;}
.y16_c01045{bottom:233.665333pt;}
.y15_c01045{bottom:248.276000pt;}
.y14_c01045{bottom:262.888000pt;}
.y13_c01045{bottom:277.168000pt;}
.y12_c01045{bottom:320.190667pt;}
.y11_c01045{bottom:336.130667pt;}
.y10_c01045{bottom:352.070667pt;}
.yf_c01045{bottom:368.010667pt;}
.ye_c01045{bottom:383.952000pt;}
.yd_c01045{bottom:399.892000pt;}
.yc_c01045{bottom:415.832000pt;}
.yb_c01045{bottom:431.772000pt;}
.ya_c01045{bottom:455.752000pt;}
.y9_c01045{bottom:471.692000pt;}
.y8_c01045{bottom:487.632000pt;}
.y7_c01045{bottom:503.572000pt;}
.y6_c01045{bottom:527.552000pt;}
.y5_c01045{bottom:551.530667pt;}
.y4_c01045{bottom:567.470667pt;}
.y3_c01045{bottom:591.450667pt;}
.y2_c01045{bottom:615.429333pt;}
.y1_c01045{bottom:653.104000pt;}
.h6_c01045{height:31.280681pt;}
.h7_c01045{height:32.006363pt;}
.h3_c01045{height:36.010648pt;}
.h5_c01045{height:46.512744pt;}
.h4_c01045{height:46.518078pt;}
.h2_c01045{height:51.855535pt;}
.h0_c01045{height:1122.520000pt;}
.h1_c01045{height:1122.666667pt;}
.w0_c01045{width:793.706667pt;}
.w1_c01045{width:794.000000pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:113.385333pt;}
.x2_c01045{left:121.886667pt;}
.x3_c01045{left:386.888000pt;}
}





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

.ir_c01046:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_19ddc181d9ce6919e38f0642.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01046;src:url('chunks/assets/font_2d89d84ebbf76c71ce5c565d.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01046;src:url('chunks/assets/font_6c8a259221720e57794474b2.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01046;src:url('chunks/assets/font_bdeb4870cee2c89b45fe7a1e.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls5_c01046{letter-spacing:0.000000px;}
.ls0_c01046{letter-spacing:0.087998px;}
.ls2_c01046{letter-spacing:0.098482px;}
.ls1_c01046{letter-spacing:0.104482px;}
.ls4_c01046{letter-spacing:0.146482px;}
.ls3_c01046{letter-spacing:26.690482px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:-26.575517px;}
.ws8_c01046{word-spacing:-26.487518px;}
.ws3_c01046{word-spacing:0.000000px;}
.ws5_c01046{word-spacing:0.036900px;}
.ws1_c01046{word-spacing:0.043999px;}
.ws4_c01046{word-spacing:0.053933px;}
.wsb_c01046{word-spacing:0.056767px;}
.ws9_c01046{word-spacing:0.064416px;}
.ws6_c01046{word-spacing:0.070416px;}
.ws2_c01046{word-spacing:0.175997px;}
.wsa_c01046{word-spacing:0.213446px;}
.ws7_c01046{word-spacing:0.219446px;}
.fc5_c01046{color:rgb(0,0,207);}
.fc4_c01046{color:rgb(207,92,0);}
.fc3_c01046{color:rgb(79,153,5);}
.fc2_c01046{color:rgb(33,74,135);}
.fc1_c01046{color:rgb(143,89,3);}
.fc0_c01046{color:rgb(0,0,0);}
.fs0_c01046{font-size:43.999200px;}
.fs1_c01046{font-size:59.775600px;}
.y0_c01046{bottom:0.000000px;}
.y37_c01046{bottom:44.250000px;}
.y36_c01046{bottom:91.369500px;}
.y35_c01046{bottom:107.808000px;}
.y34_c01046{bottom:124.246500px;}
.y33_c01046{bottom:140.685000px;}
.y32_c01046{bottom:157.123500px;}
.y31_c01046{bottom:173.562000px;}
.y30_c01046{bottom:190.000500px;}
.y2f_c01046{bottom:206.437500px;}
.y2e_c01046{bottom:222.876000px;}
.y2d_c01046{bottom:239.314500px;}
.y2c_c01046{bottom:255.753000px;}
.y2b_c01046{bottom:272.191500px;}
.y2a_c01046{bottom:305.068500px;}
.y29_c01046{bottom:321.507000px;}
.y28_c01046{bottom:354.384000px;}
.y27_c01046{bottom:370.822500px;}
.y26_c01046{bottom:403.698000px;}
.y25_c01046{bottom:436.575000px;}
.y24_c01046{bottom:453.013500px;}
.y23_c01046{bottom:469.452000px;}
.y22_c01046{bottom:485.890500px;}
.y21_c01046{bottom:502.329000px;}
.y20_c01046{bottom:518.767500px;}
.y1f_c01046{bottom:535.206000px;}
.y1e_c01046{bottom:551.643000px;}
.y1d_c01046{bottom:568.081500px;}
.y1c_c01046{bottom:600.958500px;}
.y1b_c01046{bottom:617.397000px;}
.y1a_c01046{bottom:633.835500px;}
.y19_c01046{bottom:650.274000px;}
.y18_c01046{bottom:666.712500px;}
.y17_c01046{bottom:683.151000px;}
.y16_c01046{bottom:716.028000px;}
.y15_c01046{bottom:732.465000px;}
.y14_c01046{bottom:748.903500px;}
.y13_c01046{bottom:765.342000px;}
.y12_c01046{bottom:798.219000px;}
.y11_c01046{bottom:814.657500px;}
.y10_c01046{bottom:831.096000px;}
.yf_c01046{bottom:847.534500px;}
.ye_c01046{bottom:880.411500px;}
.yd_c01046{bottom:896.848500px;}
.yc_c01046{bottom:913.287000px;}
.yb_c01046{bottom:929.725500px;}
.ya_c01046{bottom:946.164000px;}
.y9_c01046{bottom:962.602500px;}
.y8_c01046{bottom:979.041000px;}
.y7_c01046{bottom:1011.918000px;}
.y6_c01046{bottom:1028.356500px;}
.y5_c01046{bottom:1044.795000px;}
.y4_c01046{bottom:1077.670500px;}
.y3_c01046{bottom:1094.109000px;}
.y2_c01046{bottom:1143.424500px;}
.y1_c01046{bottom:1159.863000px;}
.h3_c01046{height:35.190766px;}
.h2_c01046{height:36.007158px;}
.h4_c01046{height:52.332837px;}
.h0_c01046{height:1262.835000px;}
.h1_c01046{height:1263.000000px;}
.w0_c01046{width:892.920000px;}
.w1_c01046{width:893.250000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:137.122500px;}
.x2_c01046{left:143.770500px;}
.x3_c01046{left:203.596500px;}
.x4_c01046{left:230.185500px;}
.x5_c01046{left:435.249000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls5_c01046{letter-spacing:0.000000pt;}
.ls0_c01046{letter-spacing:0.078221pt;}
.ls2_c01046{letter-spacing:0.087539pt;}
.ls1_c01046{letter-spacing:0.092873pt;}
.ls4_c01046{letter-spacing:0.130206pt;}
.ls3_c01046{letter-spacing:23.724873pt;}
.ws0_c01046{word-spacing:-23.622682pt;}
.ws8_c01046{word-spacing:-23.544461pt;}
.ws3_c01046{word-spacing:0.000000pt;}
.ws5_c01046{word-spacing:0.032800pt;}
.ws1_c01046{word-spacing:0.039110pt;}
.ws4_c01046{word-spacing:0.047940pt;}
.wsb_c01046{word-spacing:0.050460pt;}
.ws9_c01046{word-spacing:0.057259pt;}
.ws6_c01046{word-spacing:0.062592pt;}
.ws2_c01046{word-spacing:0.156442pt;}
.wsa_c01046{word-spacing:0.189730pt;}
.ws7_c01046{word-spacing:0.195063pt;}
.fs0_c01046{font-size:39.110400pt;}
.fs1_c01046{font-size:53.133867pt;}
.y0_c01046{bottom:0.000000pt;}
.y37_c01046{bottom:39.333333pt;}
.y36_c01046{bottom:81.217333pt;}
.y35_c01046{bottom:95.829333pt;}
.y34_c01046{bottom:110.441333pt;}
.y33_c01046{bottom:125.053333pt;}
.y32_c01046{bottom:139.665333pt;}
.y31_c01046{bottom:154.277333pt;}
.y30_c01046{bottom:168.889333pt;}
.y2f_c01046{bottom:183.500000pt;}
.y2e_c01046{bottom:198.112000pt;}
.y2d_c01046{bottom:212.724000pt;}
.y2c_c01046{bottom:227.336000pt;}
.y2b_c01046{bottom:241.948000pt;}
.y2a_c01046{bottom:271.172000pt;}
.y29_c01046{bottom:285.784000pt;}
.y28_c01046{bottom:315.008000pt;}
.y27_c01046{bottom:329.620000pt;}
.y26_c01046{bottom:358.842667pt;}
.y25_c01046{bottom:388.066667pt;}
.y24_c01046{bottom:402.678667pt;}
.y23_c01046{bottom:417.290667pt;}
.y22_c01046{bottom:431.902667pt;}
.y21_c01046{bottom:446.514667pt;}
.y20_c01046{bottom:461.126667pt;}
.y1f_c01046{bottom:475.738667pt;}
.y1e_c01046{bottom:490.349333pt;}
.y1d_c01046{bottom:504.961333pt;}
.y1c_c01046{bottom:534.185333pt;}
.y1b_c01046{bottom:548.797333pt;}
.y1a_c01046{bottom:563.409333pt;}
.y19_c01046{bottom:578.021333pt;}
.y18_c01046{bottom:592.633333pt;}
.y17_c01046{bottom:607.245333pt;}
.y16_c01046{bottom:636.469333pt;}
.y15_c01046{bottom:651.080000pt;}
.y14_c01046{bottom:665.692000pt;}
.y13_c01046{bottom:680.304000pt;}
.y12_c01046{bottom:709.528000pt;}
.y11_c01046{bottom:724.140000pt;}
.y10_c01046{bottom:738.752000pt;}
.yf_c01046{bottom:753.364000pt;}
.ye_c01046{bottom:782.588000pt;}
.yd_c01046{bottom:797.198667pt;}
.yc_c01046{bottom:811.810667pt;}
.yb_c01046{bottom:826.422667pt;}
.ya_c01046{bottom:841.034667pt;}
.y9_c01046{bottom:855.646667pt;}
.y8_c01046{bottom:870.258667pt;}
.y7_c01046{bottom:899.482667pt;}
.y6_c01046{bottom:914.094667pt;}
.y5_c01046{bottom:928.706667pt;}
.y4_c01046{bottom:957.929333pt;}
.y3_c01046{bottom:972.541333pt;}
.y2_c01046{bottom:1016.377333pt;}
.y1_c01046{bottom:1030.989333pt;}
.h3_c01046{height:31.280681pt;}
.h2_c01046{height:32.006363pt;}
.h4_c01046{height:46.518078pt;}
.h0_c01046{height:1122.520000pt;}
.h1_c01046{height:1122.666667pt;}
.w0_c01046{width:793.706667pt;}
.w1_c01046{width:794.000000pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:121.886667pt;}
.x2_c01046{left:127.796000pt;}
.x3_c01046{left:180.974667pt;}
.x4_c01046{left:204.609333pt;}
.x5_c01046{left:386.888000pt;}
}





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

.ir_c01047:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_f9f000fe66948448c6f02409.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01047;src:url('chunks/assets/font_2daa3d3ee72f2f6648243da9.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01047;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01047;src:url('chunks/assets/font_79e04a76fa3a0cb8813a2d5b.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01047;src:url('chunks/assets/font_7237b9b1b507610ab8857f95.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01047{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls3_c01047{letter-spacing:0.000000px;}
.ls0_c01047{letter-spacing:0.087998px;}
.ls2_c01047{letter-spacing:0.098482px;}
.ls1_c01047{letter-spacing:0.104482px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c01047{word-spacing:-33.713438px;}
.ws1_c01047{word-spacing:-26.575517px;}
.ws0_c01047{word-spacing:-26.487518px;}
.wsf_c01047{word-spacing:-21.553319px;}
.wse_c01047{word-spacing:-21.519216px;}
.wsb_c01047{word-spacing:-18.769538px;}
.ws9_c01047{word-spacing:-18.351109px;}
.wsd_c01047{word-spacing:-16.019861px;}
.wsa_c01047{word-spacing:-14.943900px;}
.ws8_c01047{word-spacing:-14.525471px;}
.ws10_c01047{word-spacing:-14.107042px;}
.ws11_c01047{word-spacing:-12.074671px;}
.ws6_c01047{word-spacing:-9.988424px;}
.ws7_c01047{word-spacing:-9.987499px;}
.wsc_c01047{word-spacing:-4.536144px;}
.ws2_c01047{word-spacing:0.000000px;}
.ws3_c01047{word-spacing:0.043999px;}
.ws4_c01047{word-spacing:0.213446px;}
.ws5_c01047{word-spacing:43.038600px;}
._2_c01047{margin-left:-9.468492px;}
._3_c01047{margin-left:-7.919102px;}
._5_c01047{margin-left:-5.738458px;}
._8_c01047{margin-left:-3.825638px;}
._1_c01047{margin-left:-1.549390px;}
._0_c01047{width:1.041538px;}
._6_c01047{width:13.941238px;}
._4_c01047{width:20.873387px;}
._7_c01047{width:40.109428px;}
.fc5_c01047{color:rgb(0,0,207);}
.fc4_c01047{color:rgb(79,153,5);}
.fc6_c01047{color:rgb(6,69,173);}
.fc3_c01047{color:rgb(207,92,0);}
.fc2_c01047{color:rgb(143,89,3);}
.fc1_c01047{color:rgb(0,0,0);}
.fc0_c01047{color:rgb(33,74,135);}
.fs0_c01047{font-size:43.999200px;}
.fs2_c01047{font-size:59.775600px;}
.fs1_c01047{font-size:86.077200px;}
.y0_c01047{bottom:0.000000px;}
.y20_c01047{bottom:44.250000px;}
.y1f_c01047{bottom:82.051500px;}
.y1e_c01047{bottom:99.984000px;}
.y1d_c01047{bottom:117.916500px;}
.y1c_c01047{bottom:135.849000px;}
.y1b_c01047{bottom:153.781500px;}
.y1a_c01047{bottom:171.714000px;}
.y19_c01047{bottom:201.343500px;}
.y18_c01047{bottom:230.973000px;}
.y17_c01047{bottom:248.905500px;}
.y16_c01047{bottom:278.535000px;}
.y15_c01047{bottom:308.163000px;}
.y14_c01047{bottom:354.387000px;}
.y13_c01047{bottom:831.096000px;}
.y12_c01047{bottom:847.534500px;}
.y11_c01047{bottom:863.973000px;}
.y10_c01047{bottom:880.411500px;}
.yf_c01047{bottom:896.848500px;}
.ye_c01047{bottom:913.287000px;}
.yd_c01047{bottom:929.725500px;}
.yc_c01047{bottom:946.164000px;}
.yb_c01047{bottom:962.602500px;}
.ya_c01047{bottom:979.041000px;}
.y9_c01047{bottom:995.479500px;}
.y8_c01047{bottom:1028.356500px;}
.y7_c01047{bottom:1044.795000px;}
.y6_c01047{bottom:1061.232000px;}
.y5_c01047{bottom:1094.109000px;}
.y4_c01047{bottom:1110.547500px;}
.y3_c01047{bottom:1126.986000px;}
.y2_c01047{bottom:1143.424500px;}
.y1_c01047{bottom:1159.863000px;}
.h3_c01047{height:35.190766px;}
.h2_c01047{height:36.007158px;}
.h5_c01047{height:40.511979px;}
.h6_c01047{height:52.332837px;}
.h4_c01047{height:58.337477px;}
.h0_c01047{height:1262.835000px;}
.h1_c01047{height:1263.000000px;}
.w0_c01047{width:892.920000px;}
.w1_c01047{width:893.250000px;}
.x0_c01047{left:0.000000px;}
.x3_c01047{left:127.558500px;}
.x1_c01047{left:137.122500px;}
.x2_c01047{left:177.007500px;}
.x4_c01047{left:435.249000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls3_c01047{letter-spacing:0.000000pt;}
.ls0_c01047{letter-spacing:0.078221pt;}
.ls2_c01047{letter-spacing:0.087539pt;}
.ls1_c01047{letter-spacing:0.092873pt;}
.ws12_c01047{word-spacing:-29.967501pt;}
.ws1_c01047{word-spacing:-23.622682pt;}
.ws0_c01047{word-spacing:-23.544461pt;}
.wsf_c01047{word-spacing:-19.158506pt;}
.wse_c01047{word-spacing:-19.128192pt;}
.wsb_c01047{word-spacing:-16.684034pt;}
.ws9_c01047{word-spacing:-16.312097pt;}
.wsd_c01047{word-spacing:-14.239876pt;}
.wsa_c01047{word-spacing:-13.283467pt;}
.ws8_c01047{word-spacing:-12.911530pt;}
.ws10_c01047{word-spacing:-12.539593pt;}
.ws11_c01047{word-spacing:-10.733041pt;}
.ws6_c01047{word-spacing:-8.878599pt;}
.ws7_c01047{word-spacing:-8.877777pt;}
.wsc_c01047{word-spacing:-4.032128pt;}
.ws2_c01047{word-spacing:0.000000pt;}
.ws3_c01047{word-spacing:0.039110pt;}
.ws4_c01047{word-spacing:0.189730pt;}
.ws5_c01047{word-spacing:38.256533pt;}
._2_c01047{margin-left:-8.416437pt;}
._3_c01047{margin-left:-7.039202pt;}
._5_c01047{margin-left:-5.100851pt;}
._8_c01047{margin-left:-3.400567pt;}
._1_c01047{margin-left:-1.377235pt;}
._0_c01047{width:0.925811pt;}
._6_c01047{width:12.392211pt;}
._4_c01047{width:18.554122pt;}
._7_c01047{width:35.652825pt;}
.fs0_c01047{font-size:39.110400pt;}
.fs2_c01047{font-size:53.133867pt;}
.fs1_c01047{font-size:76.513067pt;}
.y0_c01047{bottom:0.000000pt;}
.y20_c01047{bottom:39.333333pt;}
.y1f_c01047{bottom:72.934667pt;}
.y1e_c01047{bottom:88.874667pt;}
.y1d_c01047{bottom:104.814667pt;}
.y1c_c01047{bottom:120.754667pt;}
.y1b_c01047{bottom:136.694667pt;}
.y1a_c01047{bottom:152.634667pt;}
.y19_c01047{bottom:178.972000pt;}
.y18_c01047{bottom:205.309333pt;}
.y17_c01047{bottom:221.249333pt;}
.y16_c01047{bottom:247.586667pt;}
.y15_c01047{bottom:273.922667pt;}
.y14_c01047{bottom:315.010667pt;}
.y13_c01047{bottom:738.752000pt;}
.y12_c01047{bottom:753.364000pt;}
.y11_c01047{bottom:767.976000pt;}
.y10_c01047{bottom:782.588000pt;}
.yf_c01047{bottom:797.198667pt;}
.ye_c01047{bottom:811.810667pt;}
.yd_c01047{bottom:826.422667pt;}
.yc_c01047{bottom:841.034667pt;}
.yb_c01047{bottom:855.646667pt;}
.ya_c01047{bottom:870.258667pt;}
.y9_c01047{bottom:884.870667pt;}
.y8_c01047{bottom:914.094667pt;}
.y7_c01047{bottom:928.706667pt;}
.y6_c01047{bottom:943.317333pt;}
.y5_c01047{bottom:972.541333pt;}
.y4_c01047{bottom:987.153333pt;}
.y3_c01047{bottom:1001.765333pt;}
.y2_c01047{bottom:1016.377333pt;}
.y1_c01047{bottom:1030.989333pt;}
.h3_c01047{height:31.280681pt;}
.h2_c01047{height:32.006363pt;}
.h5_c01047{height:36.010648pt;}
.h6_c01047{height:46.518078pt;}
.h4_c01047{height:51.855535pt;}
.h0_c01047{height:1122.520000pt;}
.h1_c01047{height:1122.666667pt;}
.w0_c01047{width:793.706667pt;}
.w1_c01047{width:794.000000pt;}
.x0_c01047{left:0.000000pt;}
.x3_c01047{left:113.385333pt;}
.x1_c01047{left:121.886667pt;}
.x2_c01047{left:157.340000pt;}
.x4_c01047{left:386.888000pt;}
}





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

.ir_c01048:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_d5448d57b44c5bcec87428dc.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01048;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01048;src:url('chunks/assets/font_eaeb0f91a096fcc2091ae716.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01048;src:url('chunks/assets/font_0a712317bb7ba9ab51aca014.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls4_c01048{letter-spacing:0.000000px;}
.ls1_c01048{letter-spacing:0.087998px;}
.ls2_c01048{letter-spacing:0.098482px;}
.ls0_c01048{letter-spacing:0.104482px;}
.ls3_c01048{letter-spacing:26.690482px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01048{word-spacing:-26.575517px;}
.ws1_c01048{word-spacing:-26.487518px;}
.ws6_c01048{word-spacing:0.000000px;}
.ws3_c01048{word-spacing:0.043999px;}
.ws9_c01048{word-spacing:0.056767px;}
.ws7_c01048{word-spacing:0.073250px;}
.ws8_c01048{word-spacing:0.083734px;}
.ws0_c01048{word-spacing:0.175997px;}
.wsa_c01048{word-spacing:0.202963px;}
.ws4_c01048{word-spacing:0.213446px;}
.ws5_c01048{word-spacing:0.219446px;}
._0_c01048{width:1.005737px;}
._2_c01048{width:53.283031px;}
._1_c01048{width:79.858548px;}
._3_c01048{width:133.452408px;}
.fc5_c01048{color:rgb(0,0,207);}
.fc4_c01048{color:rgb(79,153,5);}
.fc3_c01048{color:rgb(207,92,0);}
.fc2_c01048{color:rgb(0,0,0);}
.fc1_c01048{color:rgb(33,74,135);}
.fc0_c01048{color:rgb(143,89,3);}
.fs0_c01048{font-size:43.999200px;}
.fs1_c01048{font-size:59.775600px;}
.y0_c01048{bottom:0.000000px;}
.y2b_c01048{bottom:44.250000px;}
.y2a_c01048{bottom:350.722500px;}
.y29_c01048{bottom:367.161000px;}
.y28_c01048{bottom:383.599500px;}
.y27_c01048{bottom:400.038000px;}
.y26_c01048{bottom:416.475000px;}
.y25_c01048{bottom:432.913500px;}
.y24_c01048{bottom:449.352000px;}
.y23_c01048{bottom:465.790500px;}
.y22_c01048{bottom:482.229000px;}
.y21_c01048{bottom:498.667500px;}
.y20_c01048{bottom:515.106000px;}
.y1f_c01048{bottom:547.983000px;}
.y1e_c01048{bottom:564.421500px;}
.y1d_c01048{bottom:580.858500px;}
.y1c_c01048{bottom:613.735500px;}
.y1b_c01048{bottom:630.174000px;}
.y1a_c01048{bottom:646.612500px;}
.y19_c01048{bottom:663.051000px;}
.y18_c01048{bottom:679.489500px;}
.y17_c01048{bottom:695.928000px;}
.y16_c01048{bottom:712.366500px;}
.y15_c01048{bottom:761.680500px;}
.y14_c01048{bottom:778.119000px;}
.y13_c01048{bottom:794.557500px;}
.y12_c01048{bottom:810.996000px;}
.y11_c01048{bottom:827.434500px;}
.y10_c01048{bottom:843.873000px;}
.yf_c01048{bottom:860.311500px;}
.ye_c01048{bottom:876.750000px;}
.yd_c01048{bottom:893.188500px;}
.yc_c01048{bottom:909.627000px;}
.yb_c01048{bottom:926.064000px;}
.ya_c01048{bottom:942.502500px;}
.y9_c01048{bottom:958.941000px;}
.y8_c01048{bottom:975.379500px;}
.y7_c01048{bottom:991.818000px;}
.y6_c01048{bottom:1008.256500px;}
.y5_c01048{bottom:1041.133500px;}
.y4_c01048{bottom:1057.572000px;}
.y3_c01048{bottom:1106.886000px;}
.y2_c01048{bottom:1123.324500px;}
.y1_c01048{bottom:1139.389500px;}
.h2_c01048{height:35.190766px;}
.h3_c01048{height:36.007158px;}
.h4_c01048{height:52.332837px;}
.h0_c01048{height:1262.835000px;}
.h1_c01048{height:1263.000000px;}
.w0_c01048{width:892.920000px;}
.w1_c01048{width:893.250000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:137.122500px;}
.x2_c01048{left:143.770500px;}
.x3_c01048{left:177.007500px;}
.x4_c01048{left:435.249000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls4_c01048{letter-spacing:0.000000pt;}
.ls1_c01048{letter-spacing:0.078221pt;}
.ls2_c01048{letter-spacing:0.087539pt;}
.ls0_c01048{letter-spacing:0.092873pt;}
.ls3_c01048{letter-spacing:23.724873pt;}
.ws2_c01048{word-spacing:-23.622682pt;}
.ws1_c01048{word-spacing:-23.544461pt;}
.ws6_c01048{word-spacing:0.000000pt;}
.ws3_c01048{word-spacing:0.039110pt;}
.ws9_c01048{word-spacing:0.050460pt;}
.ws7_c01048{word-spacing:0.065111pt;}
.ws8_c01048{word-spacing:0.074430pt;}
.ws0_c01048{word-spacing:0.156442pt;}
.wsa_c01048{word-spacing:0.180412pt;}
.ws4_c01048{word-spacing:0.189730pt;}
.ws5_c01048{word-spacing:0.195063pt;}
._0_c01048{width:0.893988pt;}
._2_c01048{width:47.362694pt;}
._1_c01048{width:70.985376pt;}
._3_c01048{width:118.624363pt;}
.fs0_c01048{font-size:39.110400pt;}
.fs1_c01048{font-size:53.133867pt;}
.y0_c01048{bottom:0.000000pt;}
.y2b_c01048{bottom:39.333333pt;}
.y2a_c01048{bottom:311.753333pt;}
.y29_c01048{bottom:326.365333pt;}
.y28_c01048{bottom:340.977333pt;}
.y27_c01048{bottom:355.589333pt;}
.y26_c01048{bottom:370.200000pt;}
.y25_c01048{bottom:384.812000pt;}
.y24_c01048{bottom:399.424000pt;}
.y23_c01048{bottom:414.036000pt;}
.y22_c01048{bottom:428.648000pt;}
.y21_c01048{bottom:443.260000pt;}
.y20_c01048{bottom:457.872000pt;}
.y1f_c01048{bottom:487.096000pt;}
.y1e_c01048{bottom:501.708000pt;}
.y1d_c01048{bottom:516.318667pt;}
.y1c_c01048{bottom:545.542667pt;}
.y1b_c01048{bottom:560.154667pt;}
.y1a_c01048{bottom:574.766667pt;}
.y19_c01048{bottom:589.378667pt;}
.y18_c01048{bottom:603.990667pt;}
.y17_c01048{bottom:618.602667pt;}
.y16_c01048{bottom:633.214667pt;}
.y15_c01048{bottom:677.049333pt;}
.y14_c01048{bottom:691.661333pt;}
.y13_c01048{bottom:706.273333pt;}
.y12_c01048{bottom:720.885333pt;}
.y11_c01048{bottom:735.497333pt;}
.y10_c01048{bottom:750.109333pt;}
.yf_c01048{bottom:764.721333pt;}
.ye_c01048{bottom:779.333333pt;}
.yd_c01048{bottom:793.945333pt;}
.yc_c01048{bottom:808.557333pt;}
.yb_c01048{bottom:823.168000pt;}
.ya_c01048{bottom:837.780000pt;}
.y9_c01048{bottom:852.392000pt;}
.y8_c01048{bottom:867.004000pt;}
.y7_c01048{bottom:881.616000pt;}
.y6_c01048{bottom:896.228000pt;}
.y5_c01048{bottom:925.452000pt;}
.y4_c01048{bottom:940.064000pt;}
.y3_c01048{bottom:983.898667pt;}
.y2_c01048{bottom:998.510667pt;}
.y1_c01048{bottom:1012.790667pt;}
.h2_c01048{height:31.280681pt;}
.h3_c01048{height:32.006363pt;}
.h4_c01048{height:46.518078pt;}
.h0_c01048{height:1122.520000pt;}
.h1_c01048{height:1122.666667pt;}
.w0_c01048{width:793.706667pt;}
.w1_c01048{width:794.000000pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:121.886667pt;}
.x2_c01048{left:127.796000pt;}
.x3_c01048{left:157.340000pt;}
.x4_c01048{left:386.888000pt;}
}





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

.ir_c01049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_452bc073c7f233dda4612d21.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01049;src:url('chunks/assets/font_eb6fe4ace32c843279632c1a.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01049;src:url('chunks/assets/font_39caa0cd8785a4970748a536.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01049;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01049;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls3_c01049{letter-spacing:0.000000px;}
.ls0_c01049{letter-spacing:0.087998px;}
.ls2_c01049{letter-spacing:0.098482px;}
.ls1_c01049{letter-spacing:0.104482px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01049{word-spacing:-33.713438px;}
.ws2_c01049{word-spacing:-26.575517px;}
.ws10_c01049{word-spacing:-26.487518px;}
.wsb_c01049{word-spacing:-21.553319px;}
.wsa_c01049{word-spacing:-21.519216px;}
.ws7_c01049{word-spacing:-18.769538px;}
.ws9_c01049{word-spacing:-17.633802px;}
.ws6_c01049{word-spacing:-14.943900px;}
.wsc_c01049{word-spacing:-14.107042px;}
.ws5_c01049{word-spacing:-12.373549px;}
.wsd_c01049{word-spacing:-12.074671px;}
.ws1_c01049{word-spacing:-9.988424px;}
.ws3_c01049{word-spacing:-9.987499px;}
.ws4_c01049{word-spacing:-8.607686px;}
.ws8_c01049{word-spacing:-7.686144px;}
.ws14_c01049{word-spacing:0.000000px;}
.ws11_c01049{word-spacing:0.043999px;}
.ws17_c01049{word-spacing:0.056767px;}
.ws15_c01049{word-spacing:0.073250px;}
.ws16_c01049{word-spacing:0.083734px;}
.wsf_c01049{word-spacing:0.175997px;}
.ws18_c01049{word-spacing:0.202963px;}
.ws12_c01049{word-spacing:0.213446px;}
.ws13_c01049{word-spacing:0.219446px;}
.ws0_c01049{word-spacing:43.038600px;}
._1_c01049{margin-left:-9.468492px;}
._2_c01049{margin-left:-7.919102px;}
._5_c01049{margin-left:-5.917784px;}
._8_c01049{margin-left:-3.825638px;}
._0_c01049{margin-left:-1.549390px;}
._9_c01049{width:1.005737px;}
._6_c01049{width:19.930500px;}
._4_c01049{width:22.894055px;}
._3_c01049{width:32.757602px;}
._7_c01049{width:40.109428px;}
._b_c01049{width:53.283031px;}
._a_c01049{width:79.858548px;}
._c_c01049{width:133.452408px;}
.fc6_c01049{color:rgb(0,0,207);}
.fc5_c01049{color:rgb(79,153,5);}
.fc3_c01049{color:rgb(33,74,135);}
.fc2_c01049{color:rgb(143,89,3);}
.fc4_c01049{color:rgb(207,92,0);}
.fc1_c01049{color:rgb(6,69,173);}
.fc0_c01049{color:rgb(0,0,0);}
.fs2_c01049{font-size:43.999200px;}
.fs1_c01049{font-size:59.775600px;}
.fs0_c01049{font-size:86.077200px;}
.y0_c01049{bottom:0.000000px;}
.y20_c01049{bottom:44.250000px;}
.y1f_c01049{bottom:86.982000px;}
.y1e_c01049{bottom:103.420500px;}
.y1d_c01049{bottom:119.859000px;}
.y1c_c01049{bottom:136.297500px;}
.y1b_c01049{bottom:152.736000px;}
.y1a_c01049{bottom:169.174500px;}
.y19_c01049{bottom:185.613000px;}
.y18_c01049{bottom:202.051500px;}
.y17_c01049{bottom:218.490000px;}
.y16_c01049{bottom:234.927000px;}
.y15_c01049{bottom:251.365500px;}
.y14_c01049{bottom:267.804000px;}
.y13_c01049{bottom:284.242500px;}
.y12_c01049{bottom:300.681000px;}
.y11_c01049{bottom:333.558000px;}
.y10_c01049{bottom:349.996500px;}
.yf_c01049{bottom:399.310500px;}
.ye_c01049{bottom:415.749000px;}
.yd_c01049{bottom:431.814000px;}
.yc_c01049{bottom:477.118500px;}
.yb_c01049{bottom:495.051000px;}
.ya_c01049{bottom:512.983500px;}
.y9_c01049{bottom:530.916000px;}
.y8_c01049{bottom:548.848500px;}
.y7_c01049{bottom:566.781000px;}
.y6_c01049{bottom:593.728500px;}
.y5_c01049{bottom:620.674500px;}
.y4_c01049{bottom:638.607000px;}
.y3_c01049{bottom:665.553000px;}
.y2_c01049{bottom:692.500500px;}
.y1_c01049{bottom:734.839500px;}
.h5_c01049{height:35.190766px;}
.h6_c01049{height:36.007158px;}
.h3_c01049{height:40.511979px;}
.h4_c01049{height:52.332837px;}
.h2_c01049{height:58.337477px;}
.h0_c01049{height:1262.835000px;}
.h1_c01049{height:1263.000000px;}
.w0_c01049{width:892.920000px;}
.w1_c01049{width:893.250000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:127.558500px;}
.x2_c01049{left:137.122500px;}
.x3_c01049{left:143.770500px;}
.x4_c01049{left:435.249000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls3_c01049{letter-spacing:0.000000pt;}
.ls0_c01049{letter-spacing:0.078221pt;}
.ls2_c01049{letter-spacing:0.087539pt;}
.ls1_c01049{letter-spacing:0.092873pt;}
.wse_c01049{word-spacing:-29.967501pt;}
.ws2_c01049{word-spacing:-23.622682pt;}
.ws10_c01049{word-spacing:-23.544461pt;}
.wsb_c01049{word-spacing:-19.158506pt;}
.wsa_c01049{word-spacing:-19.128192pt;}
.ws7_c01049{word-spacing:-16.684034pt;}
.ws9_c01049{word-spacing:-15.674491pt;}
.ws6_c01049{word-spacing:-13.283467pt;}
.wsc_c01049{word-spacing:-12.539593pt;}
.ws5_c01049{word-spacing:-10.998710pt;}
.wsd_c01049{word-spacing:-10.733041pt;}
.ws1_c01049{word-spacing:-8.878599pt;}
.ws3_c01049{word-spacing:-8.877777pt;}
.ws4_c01049{word-spacing:-7.651277pt;}
.ws8_c01049{word-spacing:-6.832128pt;}
.ws14_c01049{word-spacing:0.000000pt;}
.ws11_c01049{word-spacing:0.039110pt;}
.ws17_c01049{word-spacing:0.050460pt;}
.ws15_c01049{word-spacing:0.065111pt;}
.ws16_c01049{word-spacing:0.074430pt;}
.wsf_c01049{word-spacing:0.156442pt;}
.ws18_c01049{word-spacing:0.180412pt;}
.ws12_c01049{word-spacing:0.189730pt;}
.ws13_c01049{word-spacing:0.195063pt;}
.ws0_c01049{word-spacing:38.256533pt;}
._1_c01049{margin-left:-8.416437pt;}
._2_c01049{margin-left:-7.039202pt;}
._5_c01049{margin-left:-5.260253pt;}
._8_c01049{margin-left:-3.400567pt;}
._0_c01049{margin-left:-1.377235pt;}
._9_c01049{width:0.893988pt;}
._6_c01049{width:17.716000pt;}
._4_c01049{width:20.350271pt;}
._3_c01049{width:29.117869pt;}
._7_c01049{width:35.652825pt;}
._b_c01049{width:47.362694pt;}
._a_c01049{width:70.985376pt;}
._c_c01049{width:118.624363pt;}
.fs2_c01049{font-size:39.110400pt;}
.fs1_c01049{font-size:53.133867pt;}
.fs0_c01049{font-size:76.513067pt;}
.y0_c01049{bottom:0.000000pt;}
.y20_c01049{bottom:39.333333pt;}
.y1f_c01049{bottom:77.317333pt;}
.y1e_c01049{bottom:91.929333pt;}
.y1d_c01049{bottom:106.541333pt;}
.y1c_c01049{bottom:121.153333pt;}
.y1b_c01049{bottom:135.765333pt;}
.y1a_c01049{bottom:150.377333pt;}
.y19_c01049{bottom:164.989333pt;}
.y18_c01049{bottom:179.601333pt;}
.y17_c01049{bottom:194.213333pt;}
.y16_c01049{bottom:208.824000pt;}
.y15_c01049{bottom:223.436000pt;}
.y14_c01049{bottom:238.048000pt;}
.y13_c01049{bottom:252.660000pt;}
.y12_c01049{bottom:267.272000pt;}
.y11_c01049{bottom:296.496000pt;}
.y10_c01049{bottom:311.108000pt;}
.yf_c01049{bottom:354.942667pt;}
.ye_c01049{bottom:369.554667pt;}
.yd_c01049{bottom:383.834667pt;}
.yc_c01049{bottom:424.105333pt;}
.yb_c01049{bottom:440.045333pt;}
.ya_c01049{bottom:455.985333pt;}
.y9_c01049{bottom:471.925333pt;}
.y8_c01049{bottom:487.865333pt;}
.y7_c01049{bottom:503.805333pt;}
.y6_c01049{bottom:527.758667pt;}
.y5_c01049{bottom:551.710667pt;}
.y4_c01049{bottom:567.650667pt;}
.y3_c01049{bottom:591.602667pt;}
.y2_c01049{bottom:615.556000pt;}
.y1_c01049{bottom:653.190667pt;}
.h5_c01049{height:31.280681pt;}
.h6_c01049{height:32.006363pt;}
.h3_c01049{height:36.010648pt;}
.h4_c01049{height:46.518078pt;}
.h2_c01049{height:51.855535pt;}
.h0_c01049{height:1122.520000pt;}
.h1_c01049{height:1122.666667pt;}
.w0_c01049{width:793.706667pt;}
.w1_c01049{width:794.000000pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:113.385333pt;}
.x2_c01049{left:121.886667pt;}
.x3_c01049{left:127.796000pt;}
.x4_c01049{left:386.888000pt;}
}





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

.ir_c01050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_874c8dc50e031a5383a4e998.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01050;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01050;src:url('chunks/assets/font_854c7bebdf1402678490af14.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01050;src:url('chunks/assets/font_6fd6be95740628419fad9c3f.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01050;src:url('chunks/assets/font_f4ee98c9cb23770691ff50aa.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls4_c01050{letter-spacing:0.000000px;}
.ls0_c01050{letter-spacing:0.087998px;}
.ls1_c01050{letter-spacing:0.098482px;}
.ls3_c01050{letter-spacing:0.104482px;}
.ls2_c01050{letter-spacing:26.690482px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01050{word-spacing:-26.575517px;}
.ws5_c01050{word-spacing:-26.487518px;}
.wsb_c01050{word-spacing:-22.176748px;}
.ws11_c01050{word-spacing:-21.553319px;}
.ws10_c01050{word-spacing:-21.519216px;}
.wsd_c01050{word-spacing:-18.769538px;}
.wsa_c01050{word-spacing:-18.410885px;}
.wsf_c01050{word-spacing:-17.633802px;}
.wsc_c01050{word-spacing:-14.943900px;}
.ws12_c01050{word-spacing:-14.107042px;}
.ws8_c01050{word-spacing:-9.988424px;}
.ws9_c01050{word-spacing:-9.987499px;}
.wse_c01050{word-spacing:-7.686144px;}
.ws4_c01050{word-spacing:0.000000px;}
.ws1_c01050{word-spacing:0.043999px;}
.ws0_c01050{word-spacing:0.073250px;}
.ws6_c01050{word-spacing:0.213446px;}
.ws2_c01050{word-spacing:0.219446px;}
.ws7_c01050{word-spacing:43.038600px;}
._4_c01050{margin-left:-9.468492px;}
._5_c01050{margin-left:-7.919102px;}
._7_c01050{margin-left:-5.379804px;}
._3_c01050{margin-left:-1.549390px;}
._2_c01050{width:1.117622px;}
._6_c01050{width:18.260801px;}
._8_c01050{width:19.930500px;}
._0_c01050{width:79.858548px;}
._1_c01050{width:106.830058px;}
.fc5_c01050{color:rgb(79,153,5);}
.fc4_c01050{color:rgb(143,89,3);}
.fc6_c01050{color:rgb(6,69,173);}
.fc3_c01050{color:rgb(207,92,0);}
.fc2_c01050{color:rgb(0,0,0);}
.fc1_c01050{color:rgb(0,0,207);}
.fc0_c01050{color:rgb(33,74,135);}
.fs0_c01050{font-size:43.999200px;}
.fs2_c01050{font-size:59.775600px;}
.fs1_c01050{font-size:86.077200px;}
.y0_c01050{bottom:0.000000px;}
.y20_c01050{bottom:44.250000px;}
.y1f_c01050{bottom:82.051500px;}
.y1e_c01050{bottom:99.984000px;}
.y1d_c01050{bottom:117.916500px;}
.y1c_c01050{bottom:144.757500px;}
.y1b_c01050{bottom:171.597000px;}
.y1a_c01050{bottom:198.438000px;}
.y19_c01050{bottom:225.277500px;}
.y18_c01050{bottom:267.492000px;}
.y17_c01050{bottom:732.465000px;}
.y16_c01050{bottom:748.903500px;}
.y15_c01050{bottom:765.342000px;}
.y14_c01050{bottom:781.780500px;}
.y13_c01050{bottom:798.219000px;}
.y12_c01050{bottom:814.657500px;}
.y11_c01050{bottom:831.096000px;}
.y10_c01050{bottom:847.534500px;}
.yf_c01050{bottom:863.973000px;}
.ye_c01050{bottom:880.411500px;}
.yd_c01050{bottom:896.848500px;}
.yc_c01050{bottom:929.725500px;}
.yb_c01050{bottom:946.164000px;}
.ya_c01050{bottom:962.602500px;}
.y9_c01050{bottom:995.479500px;}
.y8_c01050{bottom:1011.918000px;}
.y7_c01050{bottom:1028.356500px;}
.y6_c01050{bottom:1044.795000px;}
.y5_c01050{bottom:1061.232000px;}
.y4_c01050{bottom:1077.670500px;}
.y3_c01050{bottom:1094.109000px;}
.y2_c01050{bottom:1143.424500px;}
.y1_c01050{bottom:1159.863000px;}
.h3_c01050{height:35.190766px;}
.h2_c01050{height:36.007158px;}
.h5_c01050{height:40.511979px;}
.h6_c01050{height:52.332837px;}
.h4_c01050{height:58.337477px;}
.h0_c01050{height:1262.835000px;}
.h1_c01050{height:1263.000000px;}
.w0_c01050{width:892.920000px;}
.w1_c01050{width:893.250000px;}
.x0_c01050{left:0.000000px;}
.x4_c01050{left:127.558500px;}
.x2_c01050{left:137.122500px;}
.x1_c01050{left:143.770500px;}
.x3_c01050{left:177.007500px;}
.x5_c01050{left:435.249000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls4_c01050{letter-spacing:0.000000pt;}
.ls0_c01050{letter-spacing:0.078221pt;}
.ls1_c01050{letter-spacing:0.087539pt;}
.ls3_c01050{letter-spacing:0.092873pt;}
.ls2_c01050{letter-spacing:23.724873pt;}
.ws3_c01050{word-spacing:-23.622682pt;}
.ws5_c01050{word-spacing:-23.544461pt;}
.wsb_c01050{word-spacing:-19.712665pt;}
.ws11_c01050{word-spacing:-19.158506pt;}
.ws10_c01050{word-spacing:-19.128192pt;}
.wsd_c01050{word-spacing:-16.684034pt;}
.wsa_c01050{word-spacing:-16.365231pt;}
.wsf_c01050{word-spacing:-15.674491pt;}
.wsc_c01050{word-spacing:-13.283467pt;}
.ws12_c01050{word-spacing:-12.539593pt;}
.ws8_c01050{word-spacing:-8.878599pt;}
.ws9_c01050{word-spacing:-8.877777pt;}
.wse_c01050{word-spacing:-6.832128pt;}
.ws4_c01050{word-spacing:0.000000pt;}
.ws1_c01050{word-spacing:0.039110pt;}
.ws0_c01050{word-spacing:0.065111pt;}
.ws6_c01050{word-spacing:0.189730pt;}
.ws2_c01050{word-spacing:0.195063pt;}
.ws7_c01050{word-spacing:38.256533pt;}
._4_c01050{margin-left:-8.416437pt;}
._5_c01050{margin-left:-7.039202pt;}
._7_c01050{margin-left:-4.782048pt;}
._3_c01050{margin-left:-1.377235pt;}
._2_c01050{width:0.993442pt;}
._6_c01050{width:16.231823pt;}
._8_c01050{width:17.716000pt;}
._0_c01050{width:70.985376pt;}
._1_c01050{width:94.960051pt;}
.fs0_c01050{font-size:39.110400pt;}
.fs2_c01050{font-size:53.133867pt;}
.fs1_c01050{font-size:76.513067pt;}
.y0_c01050{bottom:0.000000pt;}
.y20_c01050{bottom:39.333333pt;}
.y1f_c01050{bottom:72.934667pt;}
.y1e_c01050{bottom:88.874667pt;}
.y1d_c01050{bottom:104.814667pt;}
.y1c_c01050{bottom:128.673333pt;}
.y1b_c01050{bottom:152.530667pt;}
.y1a_c01050{bottom:176.389333pt;}
.y19_c01050{bottom:200.246667pt;}
.y18_c01050{bottom:237.770667pt;}
.y17_c01050{bottom:651.080000pt;}
.y16_c01050{bottom:665.692000pt;}
.y15_c01050{bottom:680.304000pt;}
.y14_c01050{bottom:694.916000pt;}
.y13_c01050{bottom:709.528000pt;}
.y12_c01050{bottom:724.140000pt;}
.y11_c01050{bottom:738.752000pt;}
.y10_c01050{bottom:753.364000pt;}
.yf_c01050{bottom:767.976000pt;}
.ye_c01050{bottom:782.588000pt;}
.yd_c01050{bottom:797.198667pt;}
.yc_c01050{bottom:826.422667pt;}
.yb_c01050{bottom:841.034667pt;}
.ya_c01050{bottom:855.646667pt;}
.y9_c01050{bottom:884.870667pt;}
.y8_c01050{bottom:899.482667pt;}
.y7_c01050{bottom:914.094667pt;}
.y6_c01050{bottom:928.706667pt;}
.y5_c01050{bottom:943.317333pt;}
.y4_c01050{bottom:957.929333pt;}
.y3_c01050{bottom:972.541333pt;}
.y2_c01050{bottom:1016.377333pt;}
.y1_c01050{bottom:1030.989333pt;}
.h3_c01050{height:31.280681pt;}
.h2_c01050{height:32.006363pt;}
.h5_c01050{height:36.010648pt;}
.h6_c01050{height:46.518078pt;}
.h4_c01050{height:51.855535pt;}
.h0_c01050{height:1122.520000pt;}
.h1_c01050{height:1122.666667pt;}
.w0_c01050{width:793.706667pt;}
.w1_c01050{width:794.000000pt;}
.x0_c01050{left:0.000000pt;}
.x4_c01050{left:113.385333pt;}
.x2_c01050{left:121.886667pt;}
.x1_c01050{left:127.796000pt;}
.x3_c01050{left:157.340000pt;}
.x5_c01050{left:386.888000pt;}
}





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

.ir_c01051:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_7494e4fb8a5e4d88f51d316b.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01051;src:url('chunks/assets/font_3ab53eb728c02847adb1aff6.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01051;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01051;src:url('chunks/assets/font_d022499bea82f7c4ca7a4492.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls4_c01051{letter-spacing:0.000000px;}
.ls1_c01051{letter-spacing:0.087998px;}
.ls2_c01051{letter-spacing:0.098482px;}
.ls0_c01051{letter-spacing:0.104482px;}
.ls3_c01051{letter-spacing:26.690482px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01051{word-spacing:-33.713438px;}
.ws5_c01051{word-spacing:-26.575517px;}
.ws4_c01051{word-spacing:-26.487518px;}
.ws1_c01051{word-spacing:-18.769538px;}
.ws0_c01051{word-spacing:-12.074671px;}
.ws9_c01051{word-spacing:0.000000px;}
.ws6_c01051{word-spacing:0.043999px;}
.wsc_c01051{word-spacing:0.056767px;}
.wsa_c01051{word-spacing:0.073250px;}
.wsb_c01051{word-spacing:0.083734px;}
.ws3_c01051{word-spacing:0.175997px;}
.wsd_c01051{word-spacing:0.202963px;}
.ws7_c01051{word-spacing:0.213446px;}
.ws8_c01051{word-spacing:0.219446px;}
._1_c01051{margin-left:-3.825638px;}
._2_c01051{width:1.005737px;}
._0_c01051{width:40.109428px;}
._4_c01051{width:53.283031px;}
._3_c01051{width:79.858548px;}
._6_c01051{width:106.830058px;}
._5_c01051{width:133.452408px;}
.fc5_c01051{color:rgb(0,0,207);}
.fc4_c01051{color:rgb(79,153,5);}
.fc3_c01051{color:rgb(207,92,0);}
.fc2_c01051{color:rgb(33,74,135);}
.fc1_c01051{color:rgb(143,89,3);}
.fc0_c01051{color:rgb(0,0,0);}
.fs1_c01051{font-size:43.999200px;}
.fs0_c01051{font-size:59.775600px;}
.y0_c01051{bottom:0.000000px;}
.y2e_c01051{bottom:44.250000px;}
.y2d_c01051{bottom:96.919500px;}
.y2c_c01051{bottom:113.358000px;}
.y2b_c01051{bottom:129.796500px;}
.y2a_c01051{bottom:146.235000px;}
.y29_c01051{bottom:162.673500px;}
.y28_c01051{bottom:179.112000px;}
.y27_c01051{bottom:195.550500px;}
.y26_c01051{bottom:211.989000px;}
.y25_c01051{bottom:228.427500px;}
.y24_c01051{bottom:244.866000px;}
.y23_c01051{bottom:261.304500px;}
.y22_c01051{bottom:294.180000px;}
.y21_c01051{bottom:310.618500px;}
.y20_c01051{bottom:327.057000px;}
.y1f_c01051{bottom:359.934000px;}
.y1e_c01051{bottom:376.372500px;}
.y1d_c01051{bottom:392.811000px;}
.y1c_c01051{bottom:409.249500px;}
.y1b_c01051{bottom:425.688000px;}
.y1a_c01051{bottom:442.125000px;}
.y19_c01051{bottom:458.563500px;}
.y18_c01051{bottom:507.879000px;}
.y17_c01051{bottom:524.317500px;}
.y16_c01051{bottom:540.756000px;}
.y15_c01051{bottom:557.194500px;}
.y14_c01051{bottom:573.633000px;}
.y13_c01051{bottom:590.071500px;}
.y12_c01051{bottom:606.508500px;}
.y11_c01051{bottom:622.947000px;}
.y10_c01051{bottom:639.385500px;}
.yf_c01051{bottom:655.824000px;}
.ye_c01051{bottom:672.262500px;}
.yd_c01051{bottom:688.701000px;}
.yc_c01051{bottom:705.139500px;}
.yb_c01051{bottom:721.578000px;}
.ya_c01051{bottom:738.016500px;}
.y9_c01051{bottom:754.455000px;}
.y8_c01051{bottom:787.330500px;}
.y7_c01051{bottom:803.769000px;}
.y6_c01051{bottom:853.084500px;}
.y5_c01051{bottom:869.523000px;}
.y4_c01051{bottom:885.588000px;}
.y3_c01051{bottom:1123.998000px;}
.y2_c01051{bottom:1141.930500px;}
.y1_c01051{bottom:1159.863000px;}
.h3_c01051{height:35.190766px;}
.h4_c01051{height:36.007158px;}
.h2_c01051{height:52.332837px;}
.h0_c01051{height:1262.835000px;}
.h1_c01051{height:1263.000000px;}
.w0_c01051{width:892.920000px;}
.w1_c01051{width:893.250000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:127.558500px;}
.x2_c01051{left:137.122500px;}
.x3_c01051{left:143.770500px;}
.x4_c01051{left:177.007500px;}
.x5_c01051{left:435.249000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls4_c01051{letter-spacing:0.000000pt;}
.ls1_c01051{letter-spacing:0.078221pt;}
.ls2_c01051{letter-spacing:0.087539pt;}
.ls0_c01051{letter-spacing:0.092873pt;}
.ls3_c01051{letter-spacing:23.724873pt;}
.ws2_c01051{word-spacing:-29.967501pt;}
.ws5_c01051{word-spacing:-23.622682pt;}
.ws4_c01051{word-spacing:-23.544461pt;}
.ws1_c01051{word-spacing:-16.684034pt;}
.ws0_c01051{word-spacing:-10.733041pt;}
.ws9_c01051{word-spacing:0.000000pt;}
.ws6_c01051{word-spacing:0.039110pt;}
.wsc_c01051{word-spacing:0.050460pt;}
.wsa_c01051{word-spacing:0.065111pt;}
.wsb_c01051{word-spacing:0.074430pt;}
.ws3_c01051{word-spacing:0.156442pt;}
.wsd_c01051{word-spacing:0.180412pt;}
.ws7_c01051{word-spacing:0.189730pt;}
.ws8_c01051{word-spacing:0.195063pt;}
._1_c01051{margin-left:-3.400567pt;}
._2_c01051{width:0.893988pt;}
._0_c01051{width:35.652825pt;}
._4_c01051{width:47.362694pt;}
._3_c01051{width:70.985376pt;}
._6_c01051{width:94.960051pt;}
._5_c01051{width:118.624363pt;}
.fs1_c01051{font-size:39.110400pt;}
.fs0_c01051{font-size:53.133867pt;}
.y0_c01051{bottom:0.000000pt;}
.y2e_c01051{bottom:39.333333pt;}
.y2d_c01051{bottom:86.150667pt;}
.y2c_c01051{bottom:100.762667pt;}
.y2b_c01051{bottom:115.374667pt;}
.y2a_c01051{bottom:129.986667pt;}
.y29_c01051{bottom:144.598667pt;}
.y28_c01051{bottom:159.210667pt;}
.y27_c01051{bottom:173.822667pt;}
.y26_c01051{bottom:188.434667pt;}
.y25_c01051{bottom:203.046667pt;}
.y24_c01051{bottom:217.658667pt;}
.y23_c01051{bottom:232.270667pt;}
.y22_c01051{bottom:261.493333pt;}
.y21_c01051{bottom:276.105333pt;}
.y20_c01051{bottom:290.717333pt;}
.y1f_c01051{bottom:319.941333pt;}
.y1e_c01051{bottom:334.553333pt;}
.y1d_c01051{bottom:349.165333pt;}
.y1c_c01051{bottom:363.777333pt;}
.y1b_c01051{bottom:378.389333pt;}
.y1a_c01051{bottom:393.000000pt;}
.y19_c01051{bottom:407.612000pt;}
.y18_c01051{bottom:451.448000pt;}
.y17_c01051{bottom:466.060000pt;}
.y16_c01051{bottom:480.672000pt;}
.y15_c01051{bottom:495.284000pt;}
.y14_c01051{bottom:509.896000pt;}
.y13_c01051{bottom:524.508000pt;}
.y12_c01051{bottom:539.118667pt;}
.y11_c01051{bottom:553.730667pt;}
.y10_c01051{bottom:568.342667pt;}
.yf_c01051{bottom:582.954667pt;}
.ye_c01051{bottom:597.566667pt;}
.yd_c01051{bottom:612.178667pt;}
.yc_c01051{bottom:626.790667pt;}
.yb_c01051{bottom:641.402667pt;}
.ya_c01051{bottom:656.014667pt;}
.y9_c01051{bottom:670.626667pt;}
.y8_c01051{bottom:699.849333pt;}
.y7_c01051{bottom:714.461333pt;}
.y6_c01051{bottom:758.297333pt;}
.y5_c01051{bottom:772.909333pt;}
.y4_c01051{bottom:787.189333pt;}
.y3_c01051{bottom:999.109333pt;}
.y2_c01051{bottom:1015.049333pt;}
.y1_c01051{bottom:1030.989333pt;}
.h3_c01051{height:31.280681pt;}
.h4_c01051{height:32.006363pt;}
.h2_c01051{height:46.518078pt;}
.h0_c01051{height:1122.520000pt;}
.h1_c01051{height:1122.666667pt;}
.w0_c01051{width:793.706667pt;}
.w1_c01051{width:794.000000pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:113.385333pt;}
.x2_c01051{left:121.886667pt;}
.x3_c01051{left:127.796000pt;}
.x4_c01051{left:157.340000pt;}
.x5_c01051{left:386.888000pt;}
}





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

.ir_c01052:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_9fd848c374e3972ca977dd75.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01052;src:url('chunks/assets/font_81b261eee6ffde93089643c9.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01052;src:url('chunks/assets/font_31a882e0189a1262b8d86103.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01052;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01052;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls3_c01052{letter-spacing:0.000000px;}
.ls0_c01052{letter-spacing:0.087998px;}
.ls2_c01052{letter-spacing:0.098482px;}
.ls1_c01052{letter-spacing:0.104482px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01052{word-spacing:-33.713438px;}
.ws2_c01052{word-spacing:-26.575517px;}
.ws10_c01052{word-spacing:-26.487518px;}
.wsb_c01052{word-spacing:-21.553319px;}
.wsa_c01052{word-spacing:-21.519216px;}
.ws9_c01052{word-spacing:-19.247743px;}
.ws7_c01052{word-spacing:-18.769538px;}
.ws5_c01052{word-spacing:-17.574026px;}
.ws6_c01052{word-spacing:-14.943900px;}
.wsc_c01052{word-spacing:-14.107042px;}
.ws4_c01052{word-spacing:-13.748388px;}
.wsd_c01052{word-spacing:-12.074671px;}
.ws8_c01052{word-spacing:-10.230144px;}
.ws1_c01052{word-spacing:-9.988424px;}
.ws3_c01052{word-spacing:-9.987499px;}
.ws14_c01052{word-spacing:0.000000px;}
.ws11_c01052{word-spacing:0.043999px;}
.ws17_c01052{word-spacing:0.056767px;}
.ws15_c01052{word-spacing:0.073250px;}
.ws16_c01052{word-spacing:0.083734px;}
.wsf_c01052{word-spacing:0.175997px;}
.ws18_c01052{word-spacing:0.202963px;}
.ws12_c01052{word-spacing:0.213446px;}
.ws13_c01052{word-spacing:0.219446px;}
.ws0_c01052{word-spacing:43.038600px;}
._1_c01052{margin-left:-9.468492px;}
._2_c01052{margin-left:-7.919102px;}
._4_c01052{margin-left:-5.499355px;}
._7_c01052{margin-left:-3.825638px;}
._0_c01052{margin-left:-1.549390px;}
._8_c01052{width:1.005737px;}
._5_c01052{width:19.930500px;}
._3_c01052{width:22.424304px;}
._6_c01052{width:40.109428px;}
._a_c01052{width:53.283031px;}
._9_c01052{width:79.858548px;}
._b_c01052{width:133.452408px;}
.fc6_c01052{color:rgb(0,0,207);}
.fc5_c01052{color:rgb(79,153,5);}
.fc3_c01052{color:rgb(33,74,135);}
.fc2_c01052{color:rgb(143,89,3);}
.fc4_c01052{color:rgb(207,92,0);}
.fc1_c01052{color:rgb(6,69,173);}
.fc0_c01052{color:rgb(0,0,0);}
.fs2_c01052{font-size:43.999200px;}
.fs1_c01052{font-size:59.775600px;}
.fs0_c01052{font-size:86.077200px;}
.y0_c01052{bottom:0.000000px;}
.y20_c01052{bottom:44.250000px;}
.y1f_c01052{bottom:86.982000px;}
.y1e_c01052{bottom:103.420500px;}
.y1d_c01052{bottom:119.859000px;}
.y1c_c01052{bottom:136.297500px;}
.y1b_c01052{bottom:152.736000px;}
.y1a_c01052{bottom:169.174500px;}
.y19_c01052{bottom:185.613000px;}
.y18_c01052{bottom:202.051500px;}
.y17_c01052{bottom:218.490000px;}
.y16_c01052{bottom:234.927000px;}
.y15_c01052{bottom:251.365500px;}
.y14_c01052{bottom:267.804000px;}
.y13_c01052{bottom:284.242500px;}
.y12_c01052{bottom:300.681000px;}
.y11_c01052{bottom:333.558000px;}
.y10_c01052{bottom:349.996500px;}
.yf_c01052{bottom:399.310500px;}
.ye_c01052{bottom:415.749000px;}
.yd_c01052{bottom:431.814000px;}
.yc_c01052{bottom:477.118500px;}
.yb_c01052{bottom:495.051000px;}
.ya_c01052{bottom:512.983500px;}
.y9_c01052{bottom:530.916000px;}
.y8_c01052{bottom:548.848500px;}
.y7_c01052{bottom:566.781000px;}
.y6_c01052{bottom:593.728500px;}
.y5_c01052{bottom:620.674500px;}
.y4_c01052{bottom:638.607000px;}
.y3_c01052{bottom:665.553000px;}
.y2_c01052{bottom:692.500500px;}
.y1_c01052{bottom:734.839500px;}
.h5_c01052{height:35.190766px;}
.h6_c01052{height:36.007158px;}
.h3_c01052{height:40.511979px;}
.h4_c01052{height:52.332837px;}
.h2_c01052{height:58.337477px;}
.h0_c01052{height:1262.835000px;}
.h1_c01052{height:1263.000000px;}
.w0_c01052{width:892.920000px;}
.w1_c01052{width:893.250000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:127.558500px;}
.x2_c01052{left:137.122500px;}
.x3_c01052{left:143.770500px;}
.x4_c01052{left:435.249000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls3_c01052{letter-spacing:0.000000pt;}
.ls0_c01052{letter-spacing:0.078221pt;}
.ls2_c01052{letter-spacing:0.087539pt;}
.ls1_c01052{letter-spacing:0.092873pt;}
.wse_c01052{word-spacing:-29.967501pt;}
.ws2_c01052{word-spacing:-23.622682pt;}
.ws10_c01052{word-spacing:-23.544461pt;}
.wsb_c01052{word-spacing:-19.158506pt;}
.wsa_c01052{word-spacing:-19.128192pt;}
.ws9_c01052{word-spacing:-17.109105pt;}
.ws7_c01052{word-spacing:-16.684034pt;}
.ws5_c01052{word-spacing:-15.621357pt;}
.ws6_c01052{word-spacing:-13.283467pt;}
.wsc_c01052{word-spacing:-12.539593pt;}
.ws4_c01052{word-spacing:-12.220789pt;}
.wsd_c01052{word-spacing:-10.733041pt;}
.ws8_c01052{word-spacing:-9.093461pt;}
.ws1_c01052{word-spacing:-8.878599pt;}
.ws3_c01052{word-spacing:-8.877777pt;}
.ws14_c01052{word-spacing:0.000000pt;}
.ws11_c01052{word-spacing:0.039110pt;}
.ws17_c01052{word-spacing:0.050460pt;}
.ws15_c01052{word-spacing:0.065111pt;}
.ws16_c01052{word-spacing:0.074430pt;}
.wsf_c01052{word-spacing:0.156442pt;}
.ws18_c01052{word-spacing:0.180412pt;}
.ws12_c01052{word-spacing:0.189730pt;}
.ws13_c01052{word-spacing:0.195063pt;}
.ws0_c01052{word-spacing:38.256533pt;}
._1_c01052{margin-left:-8.416437pt;}
._2_c01052{margin-left:-7.039202pt;}
._4_c01052{margin-left:-4.888316pt;}
._7_c01052{margin-left:-3.400567pt;}
._0_c01052{margin-left:-1.377235pt;}
._8_c01052{width:0.893988pt;}
._5_c01052{width:17.716000pt;}
._3_c01052{width:19.932715pt;}
._6_c01052{width:35.652825pt;}
._a_c01052{width:47.362694pt;}
._9_c01052{width:70.985376pt;}
._b_c01052{width:118.624363pt;}
.fs2_c01052{font-size:39.110400pt;}
.fs1_c01052{font-size:53.133867pt;}
.fs0_c01052{font-size:76.513067pt;}
.y0_c01052{bottom:0.000000pt;}
.y20_c01052{bottom:39.333333pt;}
.y1f_c01052{bottom:77.317333pt;}
.y1e_c01052{bottom:91.929333pt;}
.y1d_c01052{bottom:106.541333pt;}
.y1c_c01052{bottom:121.153333pt;}
.y1b_c01052{bottom:135.765333pt;}
.y1a_c01052{bottom:150.377333pt;}
.y19_c01052{bottom:164.989333pt;}
.y18_c01052{bottom:179.601333pt;}
.y17_c01052{bottom:194.213333pt;}
.y16_c01052{bottom:208.824000pt;}
.y15_c01052{bottom:223.436000pt;}
.y14_c01052{bottom:238.048000pt;}
.y13_c01052{bottom:252.660000pt;}
.y12_c01052{bottom:267.272000pt;}
.y11_c01052{bottom:296.496000pt;}
.y10_c01052{bottom:311.108000pt;}
.yf_c01052{bottom:354.942667pt;}
.ye_c01052{bottom:369.554667pt;}
.yd_c01052{bottom:383.834667pt;}
.yc_c01052{bottom:424.105333pt;}
.yb_c01052{bottom:440.045333pt;}
.ya_c01052{bottom:455.985333pt;}
.y9_c01052{bottom:471.925333pt;}
.y8_c01052{bottom:487.865333pt;}
.y7_c01052{bottom:503.805333pt;}
.y6_c01052{bottom:527.758667pt;}
.y5_c01052{bottom:551.710667pt;}
.y4_c01052{bottom:567.650667pt;}
.y3_c01052{bottom:591.602667pt;}
.y2_c01052{bottom:615.556000pt;}
.y1_c01052{bottom:653.190667pt;}
.h5_c01052{height:31.280681pt;}
.h6_c01052{height:32.006363pt;}
.h3_c01052{height:36.010648pt;}
.h4_c01052{height:46.518078pt;}
.h2_c01052{height:51.855535pt;}
.h0_c01052{height:1122.520000pt;}
.h1_c01052{height:1122.666667pt;}
.w0_c01052{width:793.706667pt;}
.w1_c01052{width:794.000000pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:113.385333pt;}
.x2_c01052{left:121.886667pt;}
.x3_c01052{left:127.796000pt;}
.x4_c01052{left:386.888000pt;}
}





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

.ir_c01053:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_c5710d1f6e97ddea4b323a76.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01053;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01053;src:url('chunks/assets/font_3026507626a317e4db931b8a.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01053;src:url('chunks/assets/font_d239ab92bd6e9cb09085a811.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01053;src:url('chunks/assets/font_3911a41bb7b5a930de8a8bef.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls4_c01053{letter-spacing:0.000000px;}
.ls0_c01053{letter-spacing:0.087998px;}
.ls1_c01053{letter-spacing:0.098482px;}
.ls3_c01053{letter-spacing:0.104482px;}
.ls2_c01053{letter-spacing:26.690482px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01053{word-spacing:-26.575517px;}
.ws5_c01053{word-spacing:-26.487518px;}
.wsb_c01053{word-spacing:-18.769538px;}
.wse_c01053{word-spacing:-15.601432px;}
.wsa_c01053{word-spacing:-14.943900px;}
.wsd_c01053{word-spacing:-13.748388px;}
.ws8_c01053{word-spacing:-9.988424px;}
.ws9_c01053{word-spacing:-9.987499px;}
.ws4_c01053{word-spacing:0.000000px;}
.wsc_c01053{word-spacing:0.017856px;}
.ws1_c01053{word-spacing:0.043999px;}
.ws0_c01053{word-spacing:0.073250px;}
.ws6_c01053{word-spacing:0.213446px;}
.ws2_c01053{word-spacing:0.219446px;}
.ws7_c01053{word-spacing:43.038600px;}
._4_c01053{margin-left:-4.423394px;}
._6_c01053{margin-left:-2.998955px;}
._2_c01053{margin-left:-1.549390px;}
._1_c01053{width:1.128106px;}
._3_c01053{width:19.935816px;}
._5_c01053{width:29.529146px;}
._0_c01053{width:79.858548px;}
.fc5_c01053{color:rgb(79,153,5);}
.fc4_c01053{color:rgb(143,89,3);}
.fc6_c01053{color:rgb(6,69,173);}
.fc3_c01053{color:rgb(207,92,0);}
.fc2_c01053{color:rgb(0,0,0);}
.fc1_c01053{color:rgb(0,0,207);}
.fc0_c01053{color:rgb(33,74,135);}
.fs0_c01053{font-size:43.999200px;}
.fs2_c01053{font-size:59.775600px;}
.fs1_c01053{font-size:86.077200px;}
.y0_c01053{bottom:0.000000px;}
.y1f_c01053{bottom:44.250000px;}
.y1e_c01053{bottom:82.051500px;}
.y1d_c01053{bottom:99.984000px;}
.y1c_c01053{bottom:128.686500px;}
.y1b_c01053{bottom:157.390500px;}
.y1a_c01053{bottom:186.093000px;}
.y19_c01053{bottom:214.797000px;}
.y18_c01053{bottom:259.680000px;}
.y17_c01053{bottom:732.465000px;}
.y16_c01053{bottom:748.903500px;}
.y15_c01053{bottom:765.342000px;}
.y14_c01053{bottom:781.780500px;}
.y13_c01053{bottom:798.219000px;}
.y12_c01053{bottom:814.657500px;}
.y11_c01053{bottom:831.096000px;}
.y10_c01053{bottom:847.534500px;}
.yf_c01053{bottom:863.973000px;}
.ye_c01053{bottom:880.411500px;}
.yd_c01053{bottom:896.848500px;}
.yc_c01053{bottom:929.725500px;}
.yb_c01053{bottom:946.164000px;}
.ya_c01053{bottom:962.602500px;}
.y9_c01053{bottom:995.479500px;}
.y8_c01053{bottom:1011.918000px;}
.y7_c01053{bottom:1028.356500px;}
.y6_c01053{bottom:1044.795000px;}
.y5_c01053{bottom:1061.232000px;}
.y4_c01053{bottom:1077.670500px;}
.y3_c01053{bottom:1094.109000px;}
.y2_c01053{bottom:1143.424500px;}
.y1_c01053{bottom:1159.863000px;}
.h3_c01053{height:35.190766px;}
.h2_c01053{height:36.007158px;}
.h5_c01053{height:40.511979px;}
.h6_c01053{height:52.332837px;}
.h4_c01053{height:58.337477px;}
.h0_c01053{height:1262.835000px;}
.h1_c01053{height:1263.000000px;}
.w0_c01053{width:892.920000px;}
.w1_c01053{width:893.250000px;}
.x0_c01053{left:0.000000px;}
.x4_c01053{left:127.558500px;}
.x2_c01053{left:137.122500px;}
.x1_c01053{left:143.770500px;}
.x3_c01053{left:177.007500px;}
.x5_c01053{left:435.249000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls4_c01053{letter-spacing:0.000000pt;}
.ls0_c01053{letter-spacing:0.078221pt;}
.ls1_c01053{letter-spacing:0.087539pt;}
.ls3_c01053{letter-spacing:0.092873pt;}
.ls2_c01053{letter-spacing:23.724873pt;}
.ws3_c01053{word-spacing:-23.622682pt;}
.ws5_c01053{word-spacing:-23.544461pt;}
.wsb_c01053{word-spacing:-16.684034pt;}
.wse_c01053{word-spacing:-13.867939pt;}
.wsa_c01053{word-spacing:-13.283467pt;}
.wsd_c01053{word-spacing:-12.220789pt;}
.ws8_c01053{word-spacing:-8.878599pt;}
.ws9_c01053{word-spacing:-8.877777pt;}
.ws4_c01053{word-spacing:0.000000pt;}
.wsc_c01053{word-spacing:0.015872pt;}
.ws1_c01053{word-spacing:0.039110pt;}
.ws0_c01053{word-spacing:0.065111pt;}
.ws6_c01053{word-spacing:0.189730pt;}
.ws2_c01053{word-spacing:0.195063pt;}
.ws7_c01053{word-spacing:38.256533pt;}
._4_c01053{margin-left:-3.931906pt;}
._6_c01053{margin-left:-2.665738pt;}
._2_c01053{margin-left:-1.377235pt;}
._1_c01053{width:1.002761pt;}
._3_c01053{width:17.720725pt;}
._5_c01053{width:26.248130pt;}
._0_c01053{width:70.985376pt;}
.fs0_c01053{font-size:39.110400pt;}
.fs2_c01053{font-size:53.133867pt;}
.fs1_c01053{font-size:76.513067pt;}
.y0_c01053{bottom:0.000000pt;}
.y1f_c01053{bottom:39.333333pt;}
.y1e_c01053{bottom:72.934667pt;}
.y1d_c01053{bottom:88.874667pt;}
.y1c_c01053{bottom:114.388000pt;}
.y1b_c01053{bottom:139.902667pt;}
.y1a_c01053{bottom:165.416000pt;}
.y19_c01053{bottom:190.930667pt;}
.y18_c01053{bottom:230.826667pt;}
.y17_c01053{bottom:651.080000pt;}
.y16_c01053{bottom:665.692000pt;}
.y15_c01053{bottom:680.304000pt;}
.y14_c01053{bottom:694.916000pt;}
.y13_c01053{bottom:709.528000pt;}
.y12_c01053{bottom:724.140000pt;}
.y11_c01053{bottom:738.752000pt;}
.y10_c01053{bottom:753.364000pt;}
.yf_c01053{bottom:767.976000pt;}
.ye_c01053{bottom:782.588000pt;}
.yd_c01053{bottom:797.198667pt;}
.yc_c01053{bottom:826.422667pt;}
.yb_c01053{bottom:841.034667pt;}
.ya_c01053{bottom:855.646667pt;}
.y9_c01053{bottom:884.870667pt;}
.y8_c01053{bottom:899.482667pt;}
.y7_c01053{bottom:914.094667pt;}
.y6_c01053{bottom:928.706667pt;}
.y5_c01053{bottom:943.317333pt;}
.y4_c01053{bottom:957.929333pt;}
.y3_c01053{bottom:972.541333pt;}
.y2_c01053{bottom:1016.377333pt;}
.y1_c01053{bottom:1030.989333pt;}
.h3_c01053{height:31.280681pt;}
.h2_c01053{height:32.006363pt;}
.h5_c01053{height:36.010648pt;}
.h6_c01053{height:46.518078pt;}
.h4_c01053{height:51.855535pt;}
.h0_c01053{height:1122.520000pt;}
.h1_c01053{height:1122.666667pt;}
.w0_c01053{width:793.706667pt;}
.w1_c01053{width:794.000000pt;}
.x0_c01053{left:0.000000pt;}
.x4_c01053{left:113.385333pt;}
.x2_c01053{left:121.886667pt;}
.x1_c01053{left:127.796000pt;}
.x3_c01053{left:157.340000pt;}
.x5_c01053{left:386.888000pt;}
}





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

.ir_c01054:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_ef6b3f62570f1769c4f15855.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01054;src:url('chunks/assets/font_c9dfc270dfbf4f2f30a7ada9.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01054;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01054;src:url('chunks/assets/font_6824f4a6bbb40a4c232b1411.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01054{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls3_c01054{letter-spacing:0.000000px;}
.ls0_c01054{letter-spacing:0.087998px;}
.ls2_c01054{letter-spacing:0.098482px;}
.ls1_c01054{letter-spacing:0.104482px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01054{word-spacing:-26.575517px;}
.ws10_c01054{word-spacing:-26.487518px;}
.wsc_c01054{word-spacing:-22.176748px;}
.wse_c01054{word-spacing:-19.546621px;}
.ws1_c01054{word-spacing:-18.769538px;}
.wsb_c01054{word-spacing:-17.215373px;}
.ws5_c01054{word-spacing:-16.796944px;}
.ws6_c01054{word-spacing:-16.737168px;}
.ws7_c01054{word-spacing:-16.498066px;}
.wsd_c01054{word-spacing:-14.947366px;}
.ws8_c01054{word-spacing:-14.884124px;}
.wsa_c01054{word-spacing:-13.927715px;}
.ws0_c01054{word-spacing:-13.808164px;}
.ws3_c01054{word-spacing:-13.689330px;}
.ws4_c01054{word-spacing:-13.688612px;}
.ws2_c01054{word-spacing:-13.628837px;}
.ws14_c01054{word-spacing:0.000000px;}
.ws16_c01054{word-spacing:0.036900px;}
.ws11_c01054{word-spacing:0.043999px;}
.ws15_c01054{word-spacing:0.053933px;}
.ws17_c01054{word-spacing:0.070416px;}
.wsf_c01054{word-spacing:0.175997px;}
.ws13_c01054{word-spacing:0.213446px;}
.ws12_c01054{word-spacing:0.219446px;}
._2_c01054{margin-left:-7.238987px;}
._1_c01054{margin-left:-4.656358px;}
._3_c01054{margin-left:-3.258978px;}
._8_c01054{width:1.005737px;}
._7_c01054{width:19.666172px;}
._0_c01054{width:21.220338px;}
._6_c01054{width:24.567772px;}
._4_c01054{width:25.705552px;}
._5_c01054{width:26.779469px;}
.fc6_c01054{color:rgb(0,0,207);}
.fc5_c01054{color:rgb(79,153,5);}
.fc3_c01054{color:rgb(33,74,135);}
.fc2_c01054{color:rgb(143,89,3);}
.fc4_c01054{color:rgb(207,92,0);}
.fc1_c01054{color:rgb(6,69,173);}
.fc0_c01054{color:rgb(0,0,0);}
.fs1_c01054{font-size:43.999200px;}
.fs0_c01054{font-size:59.775600px;}
.y0_c01054{bottom:0.000000px;}
.y27_c01054{bottom:44.250000px;}
.y26_c01054{bottom:82.051500px;}
.y25_c01054{bottom:98.490000px;}
.y24_c01054{bottom:114.927000px;}
.y23_c01054{bottom:131.365500px;}
.y22_c01054{bottom:147.804000px;}
.y21_c01054{bottom:164.242500px;}
.y20_c01054{bottom:197.119500px;}
.y1f_c01054{bottom:213.558000px;}
.y1e_c01054{bottom:229.996500px;}
.y1d_c01054{bottom:262.873500px;}
.y1c_c01054{bottom:279.310500px;}
.y1b_c01054{bottom:328.626000px;}
.y1a_c01054{bottom:345.064500px;}
.y19_c01054{bottom:377.941500px;}
.y18_c01054{bottom:394.380000px;}
.y17_c01054{bottom:410.818500px;}
.y16_c01054{bottom:427.257000px;}
.y15_c01054{bottom:460.132500px;}
.y14_c01054{bottom:476.571000px;}
.y13_c01054{bottom:493.009500px;}
.y12_c01054{bottom:509.448000px;}
.y11_c01054{bottom:525.886500px;}
.y10_c01054{bottom:542.325000px;}
.yf_c01054{bottom:558.763500px;}
.ye_c01054{bottom:575.202000px;}
.yd_c01054{bottom:591.267000px;}
.yc_c01054{bottom:639.441000px;}
.yb_c01054{bottom:657.373500px;}
.ya_c01054{bottom:675.306000px;}
.y9_c01054{bottom:693.238500px;}
.y8_c01054{bottom:711.172500px;}
.y7_c01054{bottom:1043.305500px;}
.y6_c01054{bottom:1061.238000px;}
.y5_c01054{bottom:1079.170500px;}
.y4_c01054{bottom:1097.103000px;}
.y3_c01054{bottom:1115.037000px;}
.y2_c01054{bottom:1141.930500px;}
.y1_c01054{bottom:1159.863000px;}
.h3_c01054{height:35.190766px;}
.h4_c01054{height:36.007158px;}
.h2_c01054{height:52.332837px;}
.h0_c01054{height:1262.835000px;}
.h1_c01054{height:1263.000000px;}
.w0_c01054{width:892.920000px;}
.w1_c01054{width:893.250000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:127.558500px;}
.x2_c01054{left:137.122500px;}
.x3_c01054{left:143.770500px;}
.x4_c01054{left:435.249000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls3_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:0.078221pt;}
.ls2_c01054{letter-spacing:0.087539pt;}
.ls1_c01054{letter-spacing:0.092873pt;}
.ws9_c01054{word-spacing:-23.622682pt;}
.ws10_c01054{word-spacing:-23.544461pt;}
.wsc_c01054{word-spacing:-19.712665pt;}
.wse_c01054{word-spacing:-17.374774pt;}
.ws1_c01054{word-spacing:-16.684034pt;}
.wsb_c01054{word-spacing:-15.302554pt;}
.ws5_c01054{word-spacing:-14.930617pt;}
.ws6_c01054{word-spacing:-14.877483pt;}
.ws7_c01054{word-spacing:-14.664947pt;}
.wsd_c01054{word-spacing:-13.286547pt;}
.ws8_c01054{word-spacing:-13.230333pt;}
.wsa_c01054{word-spacing:-12.380191pt;}
.ws0_c01054{word-spacing:-12.273923pt;}
.ws3_c01054{word-spacing:-12.168293pt;}
.ws4_c01054{word-spacing:-12.167655pt;}
.ws2_c01054{word-spacing:-12.114522pt;}
.ws14_c01054{word-spacing:0.000000pt;}
.ws16_c01054{word-spacing:0.032800pt;}
.ws11_c01054{word-spacing:0.039110pt;}
.ws15_c01054{word-spacing:0.047940pt;}
.ws17_c01054{word-spacing:0.062592pt;}
.wsf_c01054{word-spacing:0.156442pt;}
.ws13_c01054{word-spacing:0.189730pt;}
.ws12_c01054{word-spacing:0.195063pt;}
._2_c01054{margin-left:-6.434655pt;}
._1_c01054{margin-left:-4.138985pt;}
._3_c01054{margin-left:-2.896869pt;}
._8_c01054{width:0.893988pt;}
._7_c01054{width:17.481042pt;}
._0_c01054{width:18.862523pt;}
._6_c01054{width:21.838019pt;}
._4_c01054{width:22.849379pt;}
._5_c01054{width:23.803972pt;}
.fs1_c01054{font-size:39.110400pt;}
.fs0_c01054{font-size:53.133867pt;}
.y0_c01054{bottom:0.000000pt;}
.y27_c01054{bottom:39.333333pt;}
.y26_c01054{bottom:72.934667pt;}
.y25_c01054{bottom:87.546667pt;}
.y24_c01054{bottom:102.157333pt;}
.y23_c01054{bottom:116.769333pt;}
.y22_c01054{bottom:131.381333pt;}
.y21_c01054{bottom:145.993333pt;}
.y20_c01054{bottom:175.217333pt;}
.y1f_c01054{bottom:189.829333pt;}
.y1e_c01054{bottom:204.441333pt;}
.y1d_c01054{bottom:233.665333pt;}
.y1c_c01054{bottom:248.276000pt;}
.y1b_c01054{bottom:292.112000pt;}
.y1a_c01054{bottom:306.724000pt;}
.y19_c01054{bottom:335.948000pt;}
.y18_c01054{bottom:350.560000pt;}
.y17_c01054{bottom:365.172000pt;}
.y16_c01054{bottom:379.784000pt;}
.y15_c01054{bottom:409.006667pt;}
.y14_c01054{bottom:423.618667pt;}
.y13_c01054{bottom:438.230667pt;}
.y12_c01054{bottom:452.842667pt;}
.y11_c01054{bottom:467.454667pt;}
.y10_c01054{bottom:482.066667pt;}
.yf_c01054{bottom:496.678667pt;}
.ye_c01054{bottom:511.290667pt;}
.yd_c01054{bottom:525.570667pt;}
.yc_c01054{bottom:568.392000pt;}
.yb_c01054{bottom:584.332000pt;}
.ya_c01054{bottom:600.272000pt;}
.y9_c01054{bottom:616.212000pt;}
.y8_c01054{bottom:632.153333pt;}
.y7_c01054{bottom:927.382667pt;}
.y6_c01054{bottom:943.322667pt;}
.y5_c01054{bottom:959.262667pt;}
.y4_c01054{bottom:975.202667pt;}
.y3_c01054{bottom:991.144000pt;}
.y2_c01054{bottom:1015.049333pt;}
.y1_c01054{bottom:1030.989333pt;}
.h3_c01054{height:31.280681pt;}
.h4_c01054{height:32.006363pt;}
.h2_c01054{height:46.518078pt;}
.h0_c01054{height:1122.520000pt;}
.h1_c01054{height:1122.666667pt;}
.w0_c01054{width:793.706667pt;}
.w1_c01054{width:794.000000pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:113.385333pt;}
.x2_c01054{left:121.886667pt;}
.x3_c01054{left:127.796000pt;}
.x4_c01054{left:386.888000pt;}
}





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

.ir_c01055:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_8d39d14d762e944318e8bed6.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01055;src:url('chunks/assets/font_30736db7cce01821bb729d5c.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01055;src:url('chunks/assets/font_ca92d55c809cae1f9162231c.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01055;src:url('chunks/assets/font_b9fb12b9abf780b78f428124.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls5_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:0.087998px;}
.ls2_c01055{letter-spacing:0.098482px;}
.ls1_c01055{letter-spacing:0.104482px;}
.ls4_c01055{letter-spacing:0.140482px;}
.ls3_c01055{letter-spacing:0.146482px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:-26.575517px;}
.ws1_c01055{word-spacing:-26.487518px;}
.ws2_c01055{word-spacing:0.000000px;}
.ws5_c01055{word-spacing:0.036900px;}
.ws3_c01055{word-spacing:0.043999px;}
.wsc_c01055{word-spacing:0.046834px;}
.ws4_c01055{word-spacing:0.053933px;}
.ws7_c01055{word-spacing:0.064416px;}
.ws6_c01055{word-spacing:0.070416px;}
.ws9_c01055{word-spacing:0.073800px;}
.wsa_c01055{word-spacing:0.084283px;}
.ws8_c01055{word-spacing:0.090283px;}
.wsd_c01055{word-spacing:0.175997px;}
.wsb_c01055{word-spacing:26.659800px;}
._0_c01055{width:1.005187px;}
.fc5_c01055{color:rgb(0,0,207);}
.fc4_c01055{color:rgb(207,92,0);}
.fc3_c01055{color:rgb(79,153,5);}
.fc2_c01055{color:rgb(143,89,3);}
.fc1_c01055{color:rgb(0,0,0);}
.fc0_c01055{color:rgb(33,74,135);}
.fs0_c01055{font-size:43.999200px;}
.fs1_c01055{font-size:59.775600px;}
.y0_c01055{bottom:0.000000px;}
.y3a_c01055{bottom:44.250000px;}
.y39_c01055{bottom:91.369500px;}
.y38_c01055{bottom:107.808000px;}
.y37_c01055{bottom:124.246500px;}
.y36_c01055{bottom:140.685000px;}
.y35_c01055{bottom:157.123500px;}
.y34_c01055{bottom:173.562000px;}
.y33_c01055{bottom:190.000500px;}
.y32_c01055{bottom:206.437500px;}
.y31_c01055{bottom:222.876000px;}
.y30_c01055{bottom:255.753000px;}
.y2f_c01055{bottom:272.191500px;}
.y2e_c01055{bottom:288.630000px;}
.y2d_c01055{bottom:305.068500px;}
.y2c_c01055{bottom:321.507000px;}
.y2b_c01055{bottom:337.945500px;}
.y2a_c01055{bottom:354.384000px;}
.y29_c01055{bottom:387.259500px;}
.y28_c01055{bottom:403.698000px;}
.y27_c01055{bottom:420.136500px;}
.y26_c01055{bottom:436.575000px;}
.y25_c01055{bottom:453.013500px;}
.y24_c01055{bottom:469.452000px;}
.y23_c01055{bottom:485.890500px;}
.y22_c01055{bottom:502.329000px;}
.y21_c01055{bottom:518.767500px;}
.y20_c01055{bottom:535.206000px;}
.y1f_c01055{bottom:551.643000px;}
.y1e_c01055{bottom:568.081500px;}
.y1d_c01055{bottom:584.520000px;}
.y1c_c01055{bottom:600.958500px;}
.y1b_c01055{bottom:633.835500px;}
.y1a_c01055{bottom:650.274000px;}
.y19_c01055{bottom:666.712500px;}
.y18_c01055{bottom:683.151000px;}
.y17_c01055{bottom:716.028000px;}
.y16_c01055{bottom:732.465000px;}
.y15_c01055{bottom:748.903500px;}
.y14_c01055{bottom:765.342000px;}
.y13_c01055{bottom:781.780500px;}
.y12_c01055{bottom:798.219000px;}
.y11_c01055{bottom:814.657500px;}
.y10_c01055{bottom:847.534500px;}
.yf_c01055{bottom:880.411500px;}
.ye_c01055{bottom:896.848500px;}
.yd_c01055{bottom:913.287000px;}
.yc_c01055{bottom:929.725500px;}
.yb_c01055{bottom:946.164000px;}
.ya_c01055{bottom:962.602500px;}
.y9_c01055{bottom:995.479500px;}
.y8_c01055{bottom:1011.918000px;}
.y7_c01055{bottom:1028.356500px;}
.y6_c01055{bottom:1044.795000px;}
.y5_c01055{bottom:1077.670500px;}
.y4_c01055{bottom:1094.109000px;}
.y3_c01055{bottom:1110.547500px;}
.y2_c01055{bottom:1126.986000px;}
.y1_c01055{bottom:1159.863000px;}
.h3_c01055{height:35.190766px;}
.h2_c01055{height:36.007158px;}
.h4_c01055{height:52.332837px;}
.h0_c01055{height:1262.835000px;}
.h1_c01055{height:1263.000000px;}
.w0_c01055{width:892.920000px;}
.w1_c01055{width:893.250000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:137.122500px;}
.x3_c01055{left:143.770500px;}
.x5_c01055{left:196.948500px;}
.x2_c01055{left:203.596500px;}
.x4_c01055{left:223.537500px;}
.x6_c01055{left:435.249000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls5_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:0.078221pt;}
.ls2_c01055{letter-spacing:0.087539pt;}
.ls1_c01055{letter-spacing:0.092873pt;}
.ls4_c01055{letter-spacing:0.124873pt;}
.ls3_c01055{letter-spacing:0.130206pt;}
.ws0_c01055{word-spacing:-23.622682pt;}
.ws1_c01055{word-spacing:-23.544461pt;}
.ws2_c01055{word-spacing:0.000000pt;}
.ws5_c01055{word-spacing:0.032800pt;}
.ws3_c01055{word-spacing:0.039110pt;}
.wsc_c01055{word-spacing:0.041630pt;}
.ws4_c01055{word-spacing:0.047940pt;}
.ws7_c01055{word-spacing:0.057259pt;}
.ws6_c01055{word-spacing:0.062592pt;}
.ws9_c01055{word-spacing:0.065600pt;}
.wsa_c01055{word-spacing:0.074918pt;}
.ws8_c01055{word-spacing:0.080252pt;}
.wsd_c01055{word-spacing:0.156442pt;}
.wsb_c01055{word-spacing:23.697600pt;}
._0_c01055{width:0.893500pt;}
.fs0_c01055{font-size:39.110400pt;}
.fs1_c01055{font-size:53.133867pt;}
.y0_c01055{bottom:0.000000pt;}
.y3a_c01055{bottom:39.333333pt;}
.y39_c01055{bottom:81.217333pt;}
.y38_c01055{bottom:95.829333pt;}
.y37_c01055{bottom:110.441333pt;}
.y36_c01055{bottom:125.053333pt;}
.y35_c01055{bottom:139.665333pt;}
.y34_c01055{bottom:154.277333pt;}
.y33_c01055{bottom:168.889333pt;}
.y32_c01055{bottom:183.500000pt;}
.y31_c01055{bottom:198.112000pt;}
.y30_c01055{bottom:227.336000pt;}
.y2f_c01055{bottom:241.948000pt;}
.y2e_c01055{bottom:256.560000pt;}
.y2d_c01055{bottom:271.172000pt;}
.y2c_c01055{bottom:285.784000pt;}
.y2b_c01055{bottom:300.396000pt;}
.y2a_c01055{bottom:315.008000pt;}
.y29_c01055{bottom:344.230667pt;}
.y28_c01055{bottom:358.842667pt;}
.y27_c01055{bottom:373.454667pt;}
.y26_c01055{bottom:388.066667pt;}
.y25_c01055{bottom:402.678667pt;}
.y24_c01055{bottom:417.290667pt;}
.y23_c01055{bottom:431.902667pt;}
.y22_c01055{bottom:446.514667pt;}
.y21_c01055{bottom:461.126667pt;}
.y20_c01055{bottom:475.738667pt;}
.y1f_c01055{bottom:490.349333pt;}
.y1e_c01055{bottom:504.961333pt;}
.y1d_c01055{bottom:519.573333pt;}
.y1c_c01055{bottom:534.185333pt;}
.y1b_c01055{bottom:563.409333pt;}
.y1a_c01055{bottom:578.021333pt;}
.y19_c01055{bottom:592.633333pt;}
.y18_c01055{bottom:607.245333pt;}
.y17_c01055{bottom:636.469333pt;}
.y16_c01055{bottom:651.080000pt;}
.y15_c01055{bottom:665.692000pt;}
.y14_c01055{bottom:680.304000pt;}
.y13_c01055{bottom:694.916000pt;}
.y12_c01055{bottom:709.528000pt;}
.y11_c01055{bottom:724.140000pt;}
.y10_c01055{bottom:753.364000pt;}
.yf_c01055{bottom:782.588000pt;}
.ye_c01055{bottom:797.198667pt;}
.yd_c01055{bottom:811.810667pt;}
.yc_c01055{bottom:826.422667pt;}
.yb_c01055{bottom:841.034667pt;}
.ya_c01055{bottom:855.646667pt;}
.y9_c01055{bottom:884.870667pt;}
.y8_c01055{bottom:899.482667pt;}
.y7_c01055{bottom:914.094667pt;}
.y6_c01055{bottom:928.706667pt;}
.y5_c01055{bottom:957.929333pt;}
.y4_c01055{bottom:972.541333pt;}
.y3_c01055{bottom:987.153333pt;}
.y2_c01055{bottom:1001.765333pt;}
.y1_c01055{bottom:1030.989333pt;}
.h3_c01055{height:31.280681pt;}
.h2_c01055{height:32.006363pt;}
.h4_c01055{height:46.518078pt;}
.h0_c01055{height:1122.520000pt;}
.h1_c01055{height:1122.666667pt;}
.w0_c01055{width:793.706667pt;}
.w1_c01055{width:794.000000pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:121.886667pt;}
.x3_c01055{left:127.796000pt;}
.x5_c01055{left:175.065333pt;}
.x2_c01055{left:180.974667pt;}
.x4_c01055{left:198.700000pt;}
.x6_c01055{left:386.888000pt;}
}





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

.ir_c01056:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_2064ce2d887d243cafee51f4.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01056;src:url('chunks/assets/font_eadbde3d72a30416dc1bf144.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01056;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01056;src:url('chunks/assets/font_3a7ed5b01c95c9c5be5daad0.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01056;src:url('chunks/assets/font_2989febc1add380dc79dac15.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls3_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:0.087998px;}
.ls2_c01056{letter-spacing:0.098482px;}
.ls1_c01056{letter-spacing:0.104482px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-26.575517px;}
.ws3_c01056{word-spacing:-26.487518px;}
.ws9_c01056{word-spacing:-18.769538px;}
.ws8_c01056{word-spacing:-14.943900px;}
.ws6_c01056{word-spacing:-9.988424px;}
.ws7_c01056{word-spacing:-9.987499px;}
.ws2_c01056{word-spacing:0.000000px;}
.ws1_c01056{word-spacing:0.043999px;}
.ws4_c01056{word-spacing:0.213446px;}
.ws5_c01056{word-spacing:43.038600px;}
._2_c01056{margin-left:-3.184856px;}
._1_c01056{margin-left:-1.549390px;}
._0_c01056{width:1.041538px;}
._3_c01056{width:19.935816px;}
.fc5_c01056{color:rgb(0,0,207);}
.fc4_c01056{color:rgb(207,92,0);}
.fc3_c01056{color:rgb(79,153,5);}
.fc2_c01056{color:rgb(0,0,0);}
.fc1_c01056{color:rgb(143,89,3);}
.fc0_c01056{color:rgb(33,74,135);}
.fs0_c01056{font-size:43.999200px;}
.fs2_c01056{font-size:59.775600px;}
.fs1_c01056{font-size:86.077200px;}
.y0_c01056{bottom:0.000000px;}
.y23_c01056{bottom:44.250000px;}
.y22_c01056{bottom:82.051500px;}
.y21_c01056{bottom:109.861500px;}
.y20_c01056{bottom:137.673000px;}
.y1f_c01056{bottom:181.266000px;}
.y1e_c01056{bottom:650.274000px;}
.y1d_c01056{bottom:666.712500px;}
.y1c_c01056{bottom:683.151000px;}
.y1b_c01056{bottom:699.589500px;}
.y1a_c01056{bottom:716.028000px;}
.y19_c01056{bottom:732.465000px;}
.y18_c01056{bottom:748.903500px;}
.y17_c01056{bottom:765.342000px;}
.y16_c01056{bottom:781.780500px;}
.y15_c01056{bottom:798.219000px;}
.y14_c01056{bottom:814.657500px;}
.y13_c01056{bottom:847.534500px;}
.y12_c01056{bottom:863.973000px;}
.y11_c01056{bottom:880.411500px;}
.y10_c01056{bottom:913.287000px;}
.yf_c01056{bottom:929.725500px;}
.ye_c01056{bottom:946.164000px;}
.yd_c01056{bottom:962.602500px;}
.yc_c01056{bottom:979.041000px;}
.yb_c01056{bottom:995.479500px;}
.ya_c01056{bottom:1011.918000px;}
.y9_c01056{bottom:1028.356500px;}
.y8_c01056{bottom:1044.795000px;}
.y7_c01056{bottom:1061.232000px;}
.y6_c01056{bottom:1077.670500px;}
.y5_c01056{bottom:1094.109000px;}
.y4_c01056{bottom:1110.547500px;}
.y3_c01056{bottom:1126.986000px;}
.y2_c01056{bottom:1143.424500px;}
.y1_c01056{bottom:1159.863000px;}
.h3_c01056{height:35.190766px;}
.h2_c01056{height:36.007158px;}
.h5_c01056{height:40.511979px;}
.h6_c01056{height:52.332837px;}
.h4_c01056{height:58.337477px;}
.h0_c01056{height:1262.835000px;}
.h1_c01056{height:1263.000000px;}
.w0_c01056{width:892.920000px;}
.w1_c01056{width:893.250000px;}
.x0_c01056{left:0.000000px;}
.x4_c01056{left:127.558500px;}
.x2_c01056{left:137.122500px;}
.x3_c01056{left:177.007500px;}
.x1_c01056{left:196.948500px;}
.x5_c01056{left:435.249000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls3_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:0.078221pt;}
.ls2_c01056{letter-spacing:0.087539pt;}
.ls1_c01056{letter-spacing:0.092873pt;}
.ws0_c01056{word-spacing:-23.622682pt;}
.ws3_c01056{word-spacing:-23.544461pt;}
.ws9_c01056{word-spacing:-16.684034pt;}
.ws8_c01056{word-spacing:-13.283467pt;}
.ws6_c01056{word-spacing:-8.878599pt;}
.ws7_c01056{word-spacing:-8.877777pt;}
.ws2_c01056{word-spacing:0.000000pt;}
.ws1_c01056{word-spacing:0.039110pt;}
.ws4_c01056{word-spacing:0.189730pt;}
.ws5_c01056{word-spacing:38.256533pt;}
._2_c01056{margin-left:-2.830983pt;}
._1_c01056{margin-left:-1.377235pt;}
._0_c01056{width:0.925811pt;}
._3_c01056{width:17.720725pt;}
.fs0_c01056{font-size:39.110400pt;}
.fs2_c01056{font-size:53.133867pt;}
.fs1_c01056{font-size:76.513067pt;}
.y0_c01056{bottom:0.000000pt;}
.y23_c01056{bottom:39.333333pt;}
.y22_c01056{bottom:72.934667pt;}
.y21_c01056{bottom:97.654667pt;}
.y20_c01056{bottom:122.376000pt;}
.y1f_c01056{bottom:161.125333pt;}
.y1e_c01056{bottom:578.021333pt;}
.y1d_c01056{bottom:592.633333pt;}
.y1c_c01056{bottom:607.245333pt;}
.y1b_c01056{bottom:621.857333pt;}
.y1a_c01056{bottom:636.469333pt;}
.y19_c01056{bottom:651.080000pt;}
.y18_c01056{bottom:665.692000pt;}
.y17_c01056{bottom:680.304000pt;}
.y16_c01056{bottom:694.916000pt;}
.y15_c01056{bottom:709.528000pt;}
.y14_c01056{bottom:724.140000pt;}
.y13_c01056{bottom:753.364000pt;}
.y12_c01056{bottom:767.976000pt;}
.y11_c01056{bottom:782.588000pt;}
.y10_c01056{bottom:811.810667pt;}
.yf_c01056{bottom:826.422667pt;}
.ye_c01056{bottom:841.034667pt;}
.yd_c01056{bottom:855.646667pt;}
.yc_c01056{bottom:870.258667pt;}
.yb_c01056{bottom:884.870667pt;}
.ya_c01056{bottom:899.482667pt;}
.y9_c01056{bottom:914.094667pt;}
.y8_c01056{bottom:928.706667pt;}
.y7_c01056{bottom:943.317333pt;}
.y6_c01056{bottom:957.929333pt;}
.y5_c01056{bottom:972.541333pt;}
.y4_c01056{bottom:987.153333pt;}
.y3_c01056{bottom:1001.765333pt;}
.y2_c01056{bottom:1016.377333pt;}
.y1_c01056{bottom:1030.989333pt;}
.h3_c01056{height:31.280681pt;}
.h2_c01056{height:32.006363pt;}
.h5_c01056{height:36.010648pt;}
.h6_c01056{height:46.518078pt;}
.h4_c01056{height:51.855535pt;}
.h0_c01056{height:1122.520000pt;}
.h1_c01056{height:1122.666667pt;}
.w0_c01056{width:793.706667pt;}
.w1_c01056{width:794.000000pt;}
.x0_c01056{left:0.000000pt;}
.x4_c01056{left:113.385333pt;}
.x2_c01056{left:121.886667pt;}
.x3_c01056{left:157.340000pt;}
.x1_c01056{left:175.065333pt;}
.x5_c01056{left:386.888000pt;}
}





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

.ir_c01057:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_c07d514bddcb12c6d36e029f.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01057;src:url('chunks/assets/font_72ec4f0a8b0b833a8a73143d.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01057;src:url('chunks/assets/font_c9dfc270dfbf4f2f30a7ada9.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01057;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01057;src:url('chunks/assets/font_5cf89f9a1e96f7d458394dab.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls3_c01057{letter-spacing:0.000000px;}
.ls0_c01057{letter-spacing:0.087998px;}
.ls2_c01057{letter-spacing:0.098482px;}
.ls1_c01057{letter-spacing:0.104482px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01057{word-spacing:-26.575517px;}
.ws12_c01057{word-spacing:-26.487518px;}
.ws3_c01057{word-spacing:-23.252708px;}
.wse_c01057{word-spacing:-22.176748px;}
.ws8_c01057{word-spacing:-19.965050px;}
.ws10_c01057{word-spacing:-19.546621px;}
.ws1_c01057{word-spacing:-18.769538px;}
.ws6_c01057{word-spacing:-17.992456px;}
.ws5_c01057{word-spacing:-17.966455px;}
.ws7_c01057{word-spacing:-17.932680px;}
.wsd_c01057{word-spacing:-17.215373px;}
.ws4_c01057{word-spacing:-17.036046px;}
.ws9_c01057{word-spacing:-16.976270px;}
.wsf_c01057{word-spacing:-14.947366px;}
.ws0_c01057{word-spacing:-14.943900px;}
.wsa_c01057{word-spacing:-14.884124px;}
.wsc_c01057{word-spacing:-13.927715px;}
.ws2_c01057{word-spacing:-12.252144px;}
.ws16_c01057{word-spacing:0.000000px;}
.ws18_c01057{word-spacing:0.036900px;}
.ws13_c01057{word-spacing:0.043999px;}
.ws17_c01057{word-spacing:0.053933px;}
.ws19_c01057{word-spacing:0.070416px;}
.ws11_c01057{word-spacing:0.175997px;}
.ws15_c01057{word-spacing:0.213446px;}
.ws14_c01057{word-spacing:0.219446px;}
._4_c01057{margin-left:-4.662497px;}
._3_c01057{margin-left:-3.266360px;}
._1_c01057{margin-left:-1.075961px;}
._7_c01057{width:1.005737px;}
._2_c01057{width:18.171782px;}
._0_c01057{width:19.930500px;}
._6_c01057{width:23.988268px;}
._5_c01057{width:25.207051px;}
.fc6_c01057{color:rgb(0,0,207);}
.fc5_c01057{color:rgb(79,153,5);}
.fc3_c01057{color:rgb(33,74,135);}
.fc2_c01057{color:rgb(143,89,3);}
.fc4_c01057{color:rgb(207,92,0);}
.fc1_c01057{color:rgb(6,69,173);}
.fc0_c01057{color:rgb(0,0,0);}
.fs1_c01057{font-size:43.999200px;}
.fs0_c01057{font-size:59.775600px;}
.y0_c01057{bottom:0.000000px;}
.y26_c01057{bottom:44.250000px;}
.y25_c01057{bottom:86.982000px;}
.y24_c01057{bottom:103.420500px;}
.y23_c01057{bottom:119.859000px;}
.y22_c01057{bottom:136.297500px;}
.y21_c01057{bottom:169.174500px;}
.y20_c01057{bottom:185.613000px;}
.y1f_c01057{bottom:202.051500px;}
.y1e_c01057{bottom:234.927000px;}
.y1d_c01057{bottom:251.365500px;}
.y1c_c01057{bottom:300.681000px;}
.y1b_c01057{bottom:317.119500px;}
.y1a_c01057{bottom:349.996500px;}
.y19_c01057{bottom:366.435000px;}
.y18_c01057{bottom:382.873500px;}
.y17_c01057{bottom:399.310500px;}
.y16_c01057{bottom:432.187500px;}
.y15_c01057{bottom:448.626000px;}
.y14_c01057{bottom:465.064500px;}
.y13_c01057{bottom:481.503000px;}
.y12_c01057{bottom:497.941500px;}
.y11_c01057{bottom:514.380000px;}
.y10_c01057{bottom:530.818500px;}
.yf_c01057{bottom:547.257000px;}
.ye_c01057{bottom:563.320500px;}
.yd_c01057{bottom:611.911500px;}
.yc_c01057{bottom:629.844000px;}
.yb_c01057{bottom:647.776500px;}
.ya_c01057{bottom:665.710500px;}
.y9_c01057{bottom:683.643000px;}
.y8_c01057{bottom:1016.094000px;}
.y7_c01057{bottom:1034.026500px;}
.y6_c01057{bottom:1051.959000px;}
.y5_c01057{bottom:1079.011500px;}
.y4_c01057{bottom:1096.944000px;}
.y3_c01057{bottom:1114.878000px;}
.y2_c01057{bottom:1132.810500px;}
.y1_c01057{bottom:1159.863000px;}
.h3_c01057{height:35.190766px;}
.h4_c01057{height:36.007158px;}
.h2_c01057{height:52.332837px;}
.h0_c01057{height:1262.835000px;}
.h1_c01057{height:1263.000000px;}
.w0_c01057{width:892.920000px;}
.w1_c01057{width:893.250000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:127.558500px;}
.x2_c01057{left:137.122500px;}
.x3_c01057{left:143.770500px;}
.x4_c01057{left:435.249000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls3_c01057{letter-spacing:0.000000pt;}
.ls0_c01057{letter-spacing:0.078221pt;}
.ls2_c01057{letter-spacing:0.087539pt;}
.ls1_c01057{letter-spacing:0.092873pt;}
.wsb_c01057{word-spacing:-23.622682pt;}
.ws12_c01057{word-spacing:-23.544461pt;}
.ws3_c01057{word-spacing:-20.669074pt;}
.wse_c01057{word-spacing:-19.712665pt;}
.ws8_c01057{word-spacing:-17.746711pt;}
.ws10_c01057{word-spacing:-17.374774pt;}
.ws1_c01057{word-spacing:-16.684034pt;}
.ws6_c01057{word-spacing:-15.993294pt;}
.ws5_c01057{word-spacing:-15.970182pt;}
.ws7_c01057{word-spacing:-15.940160pt;}
.wsd_c01057{word-spacing:-15.302554pt;}
.ws4_c01057{word-spacing:-15.143152pt;}
.ws9_c01057{word-spacing:-15.090018pt;}
.wsf_c01057{word-spacing:-13.286547pt;}
.ws0_c01057{word-spacing:-13.283467pt;}
.wsa_c01057{word-spacing:-13.230333pt;}
.wsc_c01057{word-spacing:-12.380191pt;}
.ws2_c01057{word-spacing:-10.890795pt;}
.ws16_c01057{word-spacing:0.000000pt;}
.ws18_c01057{word-spacing:0.032800pt;}
.ws13_c01057{word-spacing:0.039110pt;}
.ws17_c01057{word-spacing:0.047940pt;}
.ws19_c01057{word-spacing:0.062592pt;}
.ws11_c01057{word-spacing:0.156442pt;}
.ws15_c01057{word-spacing:0.189730pt;}
.ws14_c01057{word-spacing:0.195063pt;}
._4_c01057{margin-left:-4.144442pt;}
._3_c01057{margin-left:-2.903431pt;}
._1_c01057{margin-left:-0.956410pt;}
._7_c01057{width:0.893988pt;}
._2_c01057{width:16.152695pt;}
._0_c01057{width:17.716000pt;}
._6_c01057{width:21.322905pt;}
._5_c01057{width:22.406268pt;}
.fs1_c01057{font-size:39.110400pt;}
.fs0_c01057{font-size:53.133867pt;}
.y0_c01057{bottom:0.000000pt;}
.y26_c01057{bottom:39.333333pt;}
.y25_c01057{bottom:77.317333pt;}
.y24_c01057{bottom:91.929333pt;}
.y23_c01057{bottom:106.541333pt;}
.y22_c01057{bottom:121.153333pt;}
.y21_c01057{bottom:150.377333pt;}
.y20_c01057{bottom:164.989333pt;}
.y1f_c01057{bottom:179.601333pt;}
.y1e_c01057{bottom:208.824000pt;}
.y1d_c01057{bottom:223.436000pt;}
.y1c_c01057{bottom:267.272000pt;}
.y1b_c01057{bottom:281.884000pt;}
.y1a_c01057{bottom:311.108000pt;}
.y19_c01057{bottom:325.720000pt;}
.y18_c01057{bottom:340.332000pt;}
.y17_c01057{bottom:354.942667pt;}
.y16_c01057{bottom:384.166667pt;}
.y15_c01057{bottom:398.778667pt;}
.y14_c01057{bottom:413.390667pt;}
.y13_c01057{bottom:428.002667pt;}
.y12_c01057{bottom:442.614667pt;}
.y11_c01057{bottom:457.226667pt;}
.y10_c01057{bottom:471.838667pt;}
.yf_c01057{bottom:486.450667pt;}
.ye_c01057{bottom:500.729333pt;}
.yd_c01057{bottom:543.921333pt;}
.yc_c01057{bottom:559.861333pt;}
.yb_c01057{bottom:575.801333pt;}
.ya_c01057{bottom:591.742667pt;}
.y9_c01057{bottom:607.682667pt;}
.y8_c01057{bottom:903.194667pt;}
.y7_c01057{bottom:919.134667pt;}
.y6_c01057{bottom:935.074667pt;}
.y5_c01057{bottom:959.121333pt;}
.y4_c01057{bottom:975.061333pt;}
.y3_c01057{bottom:991.002667pt;}
.y2_c01057{bottom:1006.942667pt;}
.y1_c01057{bottom:1030.989333pt;}
.h3_c01057{height:31.280681pt;}
.h4_c01057{height:32.006363pt;}
.h2_c01057{height:46.518078pt;}
.h0_c01057{height:1122.520000pt;}
.h1_c01057{height:1122.666667pt;}
.w0_c01057{width:793.706667pt;}
.w1_c01057{width:794.000000pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:113.385333pt;}
.x2_c01057{left:121.886667pt;}
.x3_c01057{left:127.796000pt;}
.x4_c01057{left:386.888000pt;}
}





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

.ir_c01058:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_1aa37e389c2fdefd218cdacc.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01058;src:url('chunks/assets/font_d114c41b6b9dab08c31ffdf8.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01058;src:url('chunks/assets/font_be531947c6814f140bec1c26.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01058;src:url('chunks/assets/font_a4b3ab96317191234b89f943.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls3_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:0.087998px;}
.ls2_c01058{letter-spacing:0.098482px;}
.ls1_c01058{letter-spacing:0.104482px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:-26.575517px;}
.ws1_c01058{word-spacing:-26.487518px;}
.ws2_c01058{word-spacing:0.000000px;}
.ws5_c01058{word-spacing:0.043999px;}
.ws4_c01058{word-spacing:0.047383px;}
.ws3_c01058{word-spacing:0.053933px;}
.ws6_c01058{word-spacing:0.213446px;}
._1_c01058{width:1.068173px;}
._0_c01058{width:106.830058px;}
.fc5_c01058{color:rgb(0,0,207);}
.fc4_c01058{color:rgb(207,92,0);}
.fc3_c01058{color:rgb(79,153,5);}
.fc2_c01058{color:rgb(33,74,135);}
.fc1_c01058{color:rgb(143,89,3);}
.fc0_c01058{color:rgb(0,0,0);}
.fs0_c01058{font-size:43.999200px;}
.fs1_c01058{font-size:59.775600px;}
.y0_c01058{bottom:0.000000px;}
.y3b_c01058{bottom:44.250000px;}
.y3a_c01058{bottom:91.369500px;}
.y39_c01058{bottom:107.808000px;}
.y38_c01058{bottom:140.685000px;}
.y37_c01058{bottom:157.123500px;}
.y36_c01058{bottom:173.562000px;}
.y35_c01058{bottom:206.437500px;}
.y34_c01058{bottom:222.876000px;}
.y33_c01058{bottom:239.314500px;}
.y32_c01058{bottom:255.753000px;}
.y31_c01058{bottom:272.191500px;}
.y30_c01058{bottom:288.630000px;}
.y2f_c01058{bottom:305.068500px;}
.y2e_c01058{bottom:321.507000px;}
.y2d_c01058{bottom:337.945500px;}
.y2c_c01058{bottom:354.384000px;}
.y2b_c01058{bottom:370.822500px;}
.y2a_c01058{bottom:387.259500px;}
.y29_c01058{bottom:403.698000px;}
.y28_c01058{bottom:420.136500px;}
.y27_c01058{bottom:436.575000px;}
.y26_c01058{bottom:453.013500px;}
.y25_c01058{bottom:469.452000px;}
.y24_c01058{bottom:485.890500px;}
.y23_c01058{bottom:502.329000px;}
.y22_c01058{bottom:518.767500px;}
.y21_c01058{bottom:535.206000px;}
.y20_c01058{bottom:551.643000px;}
.y1f_c01058{bottom:568.081500px;}
.y1e_c01058{bottom:584.520000px;}
.y1d_c01058{bottom:600.958500px;}
.y1c_c01058{bottom:617.397000px;}
.y1b_c01058{bottom:650.274000px;}
.y1a_c01058{bottom:666.712500px;}
.y19_c01058{bottom:683.151000px;}
.y18_c01058{bottom:699.589500px;}
.y17_c01058{bottom:716.028000px;}
.y16_c01058{bottom:732.465000px;}
.y15_c01058{bottom:765.342000px;}
.y14_c01058{bottom:781.780500px;}
.y13_c01058{bottom:798.219000px;}
.y12_c01058{bottom:814.657500px;}
.y11_c01058{bottom:847.534500px;}
.y10_c01058{bottom:863.973000px;}
.yf_c01058{bottom:880.411500px;}
.ye_c01058{bottom:896.848500px;}
.yd_c01058{bottom:913.287000px;}
.yc_c01058{bottom:929.725500px;}
.yb_c01058{bottom:962.602500px;}
.ya_c01058{bottom:979.041000px;}
.y9_c01058{bottom:995.479500px;}
.y8_c01058{bottom:1011.918000px;}
.y7_c01058{bottom:1044.795000px;}
.y6_c01058{bottom:1061.232000px;}
.y5_c01058{bottom:1077.670500px;}
.y4_c01058{bottom:1094.109000px;}
.y3_c01058{bottom:1126.986000px;}
.y2_c01058{bottom:1143.424500px;}
.y1_c01058{bottom:1159.863000px;}
.h3_c01058{height:35.190766px;}
.h2_c01058{height:36.007158px;}
.h4_c01058{height:52.332837px;}
.h0_c01058{height:1262.835000px;}
.h1_c01058{height:1263.000000px;}
.w0_c01058{width:892.920000px;}
.w1_c01058{width:893.250000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:137.122500px;}
.x3_c01058{left:143.770500px;}
.x5_c01058{left:196.948500px;}
.x2_c01058{left:203.596500px;}
.x4_c01058{left:210.243000px;}
.x6_c01058{left:435.249000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls3_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:0.078221pt;}
.ls2_c01058{letter-spacing:0.087539pt;}
.ls1_c01058{letter-spacing:0.092873pt;}
.ws0_c01058{word-spacing:-23.622682pt;}
.ws1_c01058{word-spacing:-23.544461pt;}
.ws2_c01058{word-spacing:0.000000pt;}
.ws5_c01058{word-spacing:0.039110pt;}
.ws4_c01058{word-spacing:0.042118pt;}
.ws3_c01058{word-spacing:0.047940pt;}
.ws6_c01058{word-spacing:0.189730pt;}
._1_c01058{width:0.949487pt;}
._0_c01058{width:94.960051pt;}
.fs0_c01058{font-size:39.110400pt;}
.fs1_c01058{font-size:53.133867pt;}
.y0_c01058{bottom:0.000000pt;}
.y3b_c01058{bottom:39.333333pt;}
.y3a_c01058{bottom:81.217333pt;}
.y39_c01058{bottom:95.829333pt;}
.y38_c01058{bottom:125.053333pt;}
.y37_c01058{bottom:139.665333pt;}
.y36_c01058{bottom:154.277333pt;}
.y35_c01058{bottom:183.500000pt;}
.y34_c01058{bottom:198.112000pt;}
.y33_c01058{bottom:212.724000pt;}
.y32_c01058{bottom:227.336000pt;}
.y31_c01058{bottom:241.948000pt;}
.y30_c01058{bottom:256.560000pt;}
.y2f_c01058{bottom:271.172000pt;}
.y2e_c01058{bottom:285.784000pt;}
.y2d_c01058{bottom:300.396000pt;}
.y2c_c01058{bottom:315.008000pt;}
.y2b_c01058{bottom:329.620000pt;}
.y2a_c01058{bottom:344.230667pt;}
.y29_c01058{bottom:358.842667pt;}
.y28_c01058{bottom:373.454667pt;}
.y27_c01058{bottom:388.066667pt;}
.y26_c01058{bottom:402.678667pt;}
.y25_c01058{bottom:417.290667pt;}
.y24_c01058{bottom:431.902667pt;}
.y23_c01058{bottom:446.514667pt;}
.y22_c01058{bottom:461.126667pt;}
.y21_c01058{bottom:475.738667pt;}
.y20_c01058{bottom:490.349333pt;}
.y1f_c01058{bottom:504.961333pt;}
.y1e_c01058{bottom:519.573333pt;}
.y1d_c01058{bottom:534.185333pt;}
.y1c_c01058{bottom:548.797333pt;}
.y1b_c01058{bottom:578.021333pt;}
.y1a_c01058{bottom:592.633333pt;}
.y19_c01058{bottom:607.245333pt;}
.y18_c01058{bottom:621.857333pt;}
.y17_c01058{bottom:636.469333pt;}
.y16_c01058{bottom:651.080000pt;}
.y15_c01058{bottom:680.304000pt;}
.y14_c01058{bottom:694.916000pt;}
.y13_c01058{bottom:709.528000pt;}
.y12_c01058{bottom:724.140000pt;}
.y11_c01058{bottom:753.364000pt;}
.y10_c01058{bottom:767.976000pt;}
.yf_c01058{bottom:782.588000pt;}
.ye_c01058{bottom:797.198667pt;}
.yd_c01058{bottom:811.810667pt;}
.yc_c01058{bottom:826.422667pt;}
.yb_c01058{bottom:855.646667pt;}
.ya_c01058{bottom:870.258667pt;}
.y9_c01058{bottom:884.870667pt;}
.y8_c01058{bottom:899.482667pt;}
.y7_c01058{bottom:928.706667pt;}
.y6_c01058{bottom:943.317333pt;}
.y5_c01058{bottom:957.929333pt;}
.y4_c01058{bottom:972.541333pt;}
.y3_c01058{bottom:1001.765333pt;}
.y2_c01058{bottom:1016.377333pt;}
.y1_c01058{bottom:1030.989333pt;}
.h3_c01058{height:31.280681pt;}
.h2_c01058{height:32.006363pt;}
.h4_c01058{height:46.518078pt;}
.h0_c01058{height:1122.520000pt;}
.h1_c01058{height:1122.666667pt;}
.w0_c01058{width:793.706667pt;}
.w1_c01058{width:794.000000pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:121.886667pt;}
.x3_c01058{left:127.796000pt;}
.x5_c01058{left:175.065333pt;}
.x2_c01058{left:180.974667pt;}
.x4_c01058{left:186.882667pt;}
.x6_c01058{left:386.888000pt;}
}





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

.ir_c01059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_32fe8cdcafcdc0e291409eb1.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01059;src:url('chunks/assets/font_28972cab3f70ac0fbd18cabf.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01059;src:url('chunks/assets/font_6e636653fe41f84e69e1a241.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01059;src:url('chunks/assets/font_ba44c515413d8d8614f53ce3.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls3_c01059{letter-spacing:0.000000px;}
.ls0_c01059{letter-spacing:0.087998px;}
.ls2_c01059{letter-spacing:0.098482px;}
.ls1_c01059{letter-spacing:0.104482px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:-26.575517px;}
.ws1_c01059{word-spacing:-26.487518px;}
.wsc_c01059{word-spacing:-21.280114px;}
.ws6_c01059{word-spacing:-18.769538px;}
.ws9_c01059{word-spacing:-15.601432px;}
.wsb_c01059{word-spacing:-15.422105px;}
.ws5_c01059{word-spacing:-14.943900px;}
.wsa_c01059{word-spacing:-13.808164px;}
.ws8_c01059{word-spacing:-13.748388px;}
.ws3_c01059{word-spacing:-9.988424px;}
.ws4_c01059{word-spacing:-9.987499px;}
.wsd_c01059{word-spacing:0.000000px;}
.ws7_c01059{word-spacing:0.017856px;}
.ws2_c01059{word-spacing:43.038600px;}
._5_c01059{margin-left:-4.656358px;}
._1_c01059{margin-left:-3.184856px;}
._0_c01059{margin-left:-1.549390px;}
._6_c01059{width:18.775733px;}
._2_c01059{width:19.935816px;}
._4_c01059{width:21.220338px;}
._3_c01059{width:29.529146px;}
.fc5_c01059{color:rgb(0,0,207);}
.fc6_c01059{color:rgb(6,69,173);}
.fc4_c01059{color:rgb(207,92,0);}
.fc3_c01059{color:rgb(79,153,5);}
.fc2_c01059{color:rgb(33,74,135);}
.fc1_c01059{color:rgb(143,89,3);}
.fc0_c01059{color:rgb(0,0,0);}
.fs0_c01059{font-size:43.999200px;}
.fs2_c01059{font-size:59.775600px;}
.fs1_c01059{font-size:86.077200px;}
.y0_c01059{bottom:0.000000px;}
.y16_c01059{bottom:44.250000px;}
.y15_c01059{bottom:82.051500px;}
.y14_c01059{bottom:99.984000px;}
.y13_c01059{bottom:117.916500px;}
.y12_c01059{bottom:164.914500px;}
.y11_c01059{bottom:182.847000px;}
.y10_c01059{bottom:200.779500px;}
.yf_c01059{bottom:218.713500px;}
.ye_c01059{bottom:265.711500px;}
.yd_c01059{bottom:312.709500px;}
.yc_c01059{bottom:359.707500px;}
.yb_c01059{bottom:406.705500px;}
.ya_c01059{bottom:478.066500px;}
.y9_c01059{bottom:1028.356500px;}
.y8_c01059{bottom:1044.795000px;}
.y7_c01059{bottom:1061.232000px;}
.y6_c01059{bottom:1077.670500px;}
.y5_c01059{bottom:1094.109000px;}
.y4_c01059{bottom:1110.547500px;}
.y3_c01059{bottom:1126.986000px;}
.y2_c01059{bottom:1143.424500px;}
.y1_c01059{bottom:1159.863000px;}
.h2_c01059{height:36.007158px;}
.h4_c01059{height:40.511979px;}
.h5_c01059{height:52.332837px;}
.h3_c01059{height:58.337477px;}
.h0_c01059{height:1262.835000px;}
.h1_c01059{height:1263.000000px;}
.w0_c01059{width:892.920000px;}
.w1_c01059{width:893.250000px;}
.x0_c01059{left:0.000000px;}
.x3_c01059{left:127.558500px;}
.x1_c01059{left:137.122500px;}
.x2_c01059{left:177.007500px;}
.x4_c01059{left:435.249000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls3_c01059{letter-spacing:0.000000pt;}
.ls0_c01059{letter-spacing:0.078221pt;}
.ls2_c01059{letter-spacing:0.087539pt;}
.ls1_c01059{letter-spacing:0.092873pt;}
.ws0_c01059{word-spacing:-23.622682pt;}
.ws1_c01059{word-spacing:-23.544461pt;}
.wsc_c01059{word-spacing:-18.915657pt;}
.ws6_c01059{word-spacing:-16.684034pt;}
.ws9_c01059{word-spacing:-13.867939pt;}
.wsb_c01059{word-spacing:-13.708538pt;}
.ws5_c01059{word-spacing:-13.283467pt;}
.wsa_c01059{word-spacing:-12.273923pt;}
.ws8_c01059{word-spacing:-12.220789pt;}
.ws3_c01059{word-spacing:-8.878599pt;}
.ws4_c01059{word-spacing:-8.877777pt;}
.wsd_c01059{word-spacing:0.000000pt;}
.ws7_c01059{word-spacing:0.015872pt;}
.ws2_c01059{word-spacing:38.256533pt;}
._5_c01059{margin-left:-4.138985pt;}
._1_c01059{margin-left:-2.830983pt;}
._0_c01059{margin-left:-1.377235pt;}
._6_c01059{width:16.689540pt;}
._2_c01059{width:17.720725pt;}
._4_c01059{width:18.862523pt;}
._3_c01059{width:26.248130pt;}
.fs0_c01059{font-size:39.110400pt;}
.fs2_c01059{font-size:53.133867pt;}
.fs1_c01059{font-size:76.513067pt;}
.y0_c01059{bottom:0.000000pt;}
.y16_c01059{bottom:39.333333pt;}
.y15_c01059{bottom:72.934667pt;}
.y14_c01059{bottom:88.874667pt;}
.y13_c01059{bottom:104.814667pt;}
.y12_c01059{bottom:146.590667pt;}
.y11_c01059{bottom:162.530667pt;}
.y10_c01059{bottom:178.470667pt;}
.yf_c01059{bottom:194.412000pt;}
.ye_c01059{bottom:236.188000pt;}
.yd_c01059{bottom:277.964000pt;}
.yc_c01059{bottom:319.740000pt;}
.yb_c01059{bottom:361.516000pt;}
.ya_c01059{bottom:424.948000pt;}
.y9_c01059{bottom:914.094667pt;}
.y8_c01059{bottom:928.706667pt;}
.y7_c01059{bottom:943.317333pt;}
.y6_c01059{bottom:957.929333pt;}
.y5_c01059{bottom:972.541333pt;}
.y4_c01059{bottom:987.153333pt;}
.y3_c01059{bottom:1001.765333pt;}
.y2_c01059{bottom:1016.377333pt;}
.y1_c01059{bottom:1030.989333pt;}
.h2_c01059{height:32.006363pt;}
.h4_c01059{height:36.010648pt;}
.h5_c01059{height:46.518078pt;}
.h3_c01059{height:51.855535pt;}
.h0_c01059{height:1122.520000pt;}
.h1_c01059{height:1122.666667pt;}
.w0_c01059{width:793.706667pt;}
.w1_c01059{width:794.000000pt;}
.x0_c01059{left:0.000000pt;}
.x3_c01059{left:113.385333pt;}
.x1_c01059{left:121.886667pt;}
.x2_c01059{left:157.340000pt;}
.x4_c01059{left:386.888000pt;}
}





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

.ir_c01060:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_26076070c5eac2f537dca718.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01060;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01060;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01060;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls3_c01060{letter-spacing:0.000000px;}
.ls0_c01060{letter-spacing:0.087998px;}
.ls2_c01060{letter-spacing:0.098482px;}
.ls1_c01060{letter-spacing:0.104482px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01060{word-spacing:-26.575517px;}
.ws9_c01060{word-spacing:-26.487518px;}
.ws4_c01060{word-spacing:-22.176748px;}
.ws6_c01060{word-spacing:-19.546621px;}
.ws7_c01060{word-spacing:-18.769538px;}
.ws3_c01060{word-spacing:-17.215373px;}
.ws5_c01060{word-spacing:-14.947366px;}
.ws0_c01060{word-spacing:-14.884124px;}
.ws2_c01060{word-spacing:-13.927715px;}
.wsd_c01060{word-spacing:0.000000px;}
.wsf_c01060{word-spacing:0.036900px;}
.wsa_c01060{word-spacing:0.043999px;}
.wse_c01060{word-spacing:0.053933px;}
.ws10_c01060{word-spacing:0.070416px;}
.ws8_c01060{word-spacing:0.175997px;}
.wsc_c01060{word-spacing:0.213446px;}
.wsb_c01060{word-spacing:0.219446px;}
._2_c01060{margin-left:-3.646312px;}
._3_c01060{width:1.005737px;}
._1_c01060{width:19.606397px;}
._0_c01060{width:24.567772px;}
.fc5_c01060{color:rgb(0,0,207);}
.fc4_c01060{color:rgb(79,153,5);}
.fc3_c01060{color:rgb(207,92,0);}
.fc2_c01060{color:rgb(33,74,135);}
.fc1_c01060{color:rgb(143,89,3);}
.fc0_c01060{color:rgb(0,0,0);}
.fs1_c01060{font-size:43.999200px;}
.fs0_c01060{font-size:59.775600px;}
.y0_c01060{bottom:0.000000px;}
.y27_c01060{bottom:44.250000px;}
.y26_c01060{bottom:82.051500px;}
.y25_c01060{bottom:98.490000px;}
.y24_c01060{bottom:131.365500px;}
.y23_c01060{bottom:147.804000px;}
.y22_c01060{bottom:164.242500px;}
.y21_c01060{bottom:180.681000px;}
.y20_c01060{bottom:213.558000px;}
.y1f_c01060{bottom:229.996500px;}
.y1e_c01060{bottom:246.435000px;}
.y1d_c01060{bottom:262.873500px;}
.y1c_c01060{bottom:279.310500px;}
.y1b_c01060{bottom:295.749000px;}
.y1a_c01060{bottom:312.187500px;}
.y19_c01060{bottom:345.064500px;}
.y18_c01060{bottom:361.503000px;}
.y17_c01060{bottom:377.941500px;}
.y16_c01060{bottom:410.818500px;}
.y15_c01060{bottom:427.257000px;}
.y14_c01060{bottom:476.571000px;}
.y13_c01060{bottom:493.009500px;}
.y12_c01060{bottom:525.886500px;}
.y11_c01060{bottom:542.325000px;}
.y10_c01060{bottom:558.763500px;}
.yf_c01060{bottom:575.202000px;}
.ye_c01060{bottom:608.079000px;}
.yd_c01060{bottom:624.516000px;}
.yc_c01060{bottom:640.954500px;}
.yb_c01060{bottom:657.393000px;}
.ya_c01060{bottom:673.831500px;}
.y9_c01060{bottom:690.270000px;}
.y8_c01060{bottom:706.708500px;}
.y7_c01060{bottom:723.147000px;}
.y6_c01060{bottom:739.212000px;}
.y5_c01060{bottom:785.017500px;}
.y4_c01060{bottom:802.950000px;}
.y3_c01060{bottom:820.882500px;}
.y2_c01060{bottom:838.816500px;}
.y1_c01060{bottom:856.749000px;}
.h3_c01060{height:35.190766px;}
.h4_c01060{height:36.007158px;}
.h2_c01060{height:52.332837px;}
.h0_c01060{height:1262.835000px;}
.h1_c01060{height:1263.000000px;}
.w0_c01060{width:892.920000px;}
.w1_c01060{width:893.250000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:127.558500px;}
.x2_c01060{left:137.122500px;}
.x3_c01060{left:143.770500px;}
.x4_c01060{left:203.596500px;}
.x5_c01060{left:435.249000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls3_c01060{letter-spacing:0.000000pt;}
.ls0_c01060{letter-spacing:0.078221pt;}
.ls2_c01060{letter-spacing:0.087539pt;}
.ls1_c01060{letter-spacing:0.092873pt;}
.ws1_c01060{word-spacing:-23.622682pt;}
.ws9_c01060{word-spacing:-23.544461pt;}
.ws4_c01060{word-spacing:-19.712665pt;}
.ws6_c01060{word-spacing:-17.374774pt;}
.ws7_c01060{word-spacing:-16.684034pt;}
.ws3_c01060{word-spacing:-15.302554pt;}
.ws5_c01060{word-spacing:-13.286547pt;}
.ws0_c01060{word-spacing:-13.230333pt;}
.ws2_c01060{word-spacing:-12.380191pt;}
.wsd_c01060{word-spacing:0.000000pt;}
.wsf_c01060{word-spacing:0.032800pt;}
.wsa_c01060{word-spacing:0.039110pt;}
.wse_c01060{word-spacing:0.047940pt;}
.ws10_c01060{word-spacing:0.062592pt;}
.ws8_c01060{word-spacing:0.156442pt;}
.wsc_c01060{word-spacing:0.189730pt;}
.wsb_c01060{word-spacing:0.195063pt;}
._2_c01060{margin-left:-3.241166pt;}
._3_c01060{width:0.893988pt;}
._1_c01060{width:17.427908pt;}
._0_c01060{width:21.838019pt;}
.fs1_c01060{font-size:39.110400pt;}
.fs0_c01060{font-size:53.133867pt;}
.y0_c01060{bottom:0.000000pt;}
.y27_c01060{bottom:39.333333pt;}
.y26_c01060{bottom:72.934667pt;}
.y25_c01060{bottom:87.546667pt;}
.y24_c01060{bottom:116.769333pt;}
.y23_c01060{bottom:131.381333pt;}
.y22_c01060{bottom:145.993333pt;}
.y21_c01060{bottom:160.605333pt;}
.y20_c01060{bottom:189.829333pt;}
.y1f_c01060{bottom:204.441333pt;}
.y1e_c01060{bottom:219.053333pt;}
.y1d_c01060{bottom:233.665333pt;}
.y1c_c01060{bottom:248.276000pt;}
.y1b_c01060{bottom:262.888000pt;}
.y1a_c01060{bottom:277.500000pt;}
.y19_c01060{bottom:306.724000pt;}
.y18_c01060{bottom:321.336000pt;}
.y17_c01060{bottom:335.948000pt;}
.y16_c01060{bottom:365.172000pt;}
.y15_c01060{bottom:379.784000pt;}
.y14_c01060{bottom:423.618667pt;}
.y13_c01060{bottom:438.230667pt;}
.y12_c01060{bottom:467.454667pt;}
.y11_c01060{bottom:482.066667pt;}
.y10_c01060{bottom:496.678667pt;}
.yf_c01060{bottom:511.290667pt;}
.ye_c01060{bottom:540.514667pt;}
.yd_c01060{bottom:555.125333pt;}
.yc_c01060{bottom:569.737333pt;}
.yb_c01060{bottom:584.349333pt;}
.ya_c01060{bottom:598.961333pt;}
.y9_c01060{bottom:613.573333pt;}
.y8_c01060{bottom:628.185333pt;}
.y7_c01060{bottom:642.797333pt;}
.y6_c01060{bottom:657.077333pt;}
.y5_c01060{bottom:697.793333pt;}
.y4_c01060{bottom:713.733333pt;}
.y3_c01060{bottom:729.673333pt;}
.y2_c01060{bottom:745.614667pt;}
.y1_c01060{bottom:761.554667pt;}
.h3_c01060{height:31.280681pt;}
.h4_c01060{height:32.006363pt;}
.h2_c01060{height:46.518078pt;}
.h0_c01060{height:1122.520000pt;}
.h1_c01060{height:1122.666667pt;}
.w0_c01060{width:793.706667pt;}
.w1_c01060{width:794.000000pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:113.385333pt;}
.x2_c01060{left:121.886667pt;}
.x3_c01060{left:127.796000pt;}
.x4_c01060{left:180.974667pt;}
.x5_c01060{left:386.888000pt;}
}





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

.ir_c01061:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_5b55116730e55beb240a1a4a.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01061;src:url('chunks/assets/font_bacdde7e4b70912e1f78c379.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01061;src:url('chunks/assets/font_cd9ed32a5c5c759a6ea0e524.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01061;src:url('chunks/assets/font_05c5059b288765ce5cc6bad8.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls3_c01061{letter-spacing:0.000000px;}
.ls0_c01061{letter-spacing:0.087998px;}
.ls1_c01061{letter-spacing:0.098482px;}
.ls2_c01061{letter-spacing:0.104482px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:-26.575517px;}
.ws1_c01061{word-spacing:-26.487518px;}
.ws2_c01061{word-spacing:0.000000px;}
.ws7_c01061{word-spacing:0.043999px;}
.ws3_c01061{word-spacing:0.053933px;}
.ws6_c01061{word-spacing:0.057317px;}
.ws4_c01061{word-spacing:0.213446px;}
.ws5_c01061{word-spacing:0.219446px;}
._0_c01061{width:1.068173px;}
.fc5_c01061{color:rgb(79,153,5);}
.fc4_c01061{color:rgb(0,0,207);}
.fc3_c01061{color:rgb(207,92,0);}
.fc2_c01061{color:rgb(0,0,0);}
.fc1_c01061{color:rgb(143,89,3);}
.fc0_c01061{color:rgb(33,74,135);}
.fs0_c01061{font-size:43.999200px;}
.fs1_c01061{font-size:59.775600px;}
.y0_c01061{bottom:0.000000px;}
.y3d_c01061{bottom:44.250000px;}
.y3c_c01061{bottom:91.369500px;}
.y3b_c01061{bottom:107.808000px;}
.y3a_c01061{bottom:124.246500px;}
.y39_c01061{bottom:140.685000px;}
.y38_c01061{bottom:157.123500px;}
.y37_c01061{bottom:173.562000px;}
.y36_c01061{bottom:190.000500px;}
.y35_c01061{bottom:206.437500px;}
.y34_c01061{bottom:222.876000px;}
.y33_c01061{bottom:239.314500px;}
.y32_c01061{bottom:272.191500px;}
.y31_c01061{bottom:288.630000px;}
.y30_c01061{bottom:305.068500px;}
.y2f_c01061{bottom:337.945500px;}
.y2e_c01061{bottom:354.384000px;}
.y2d_c01061{bottom:370.822500px;}
.y2c_c01061{bottom:387.259500px;}
.y2b_c01061{bottom:403.698000px;}
.y2a_c01061{bottom:420.136500px;}
.y29_c01061{bottom:436.575000px;}
.y28_c01061{bottom:453.013500px;}
.y27_c01061{bottom:469.452000px;}
.y26_c01061{bottom:485.890500px;}
.y25_c01061{bottom:502.329000px;}
.y24_c01061{bottom:518.767500px;}
.y23_c01061{bottom:535.206000px;}
.y22_c01061{bottom:551.643000px;}
.y21_c01061{bottom:568.081500px;}
.y20_c01061{bottom:584.520000px;}
.y1f_c01061{bottom:600.958500px;}
.y1e_c01061{bottom:617.397000px;}
.y1d_c01061{bottom:633.835500px;}
.y1c_c01061{bottom:650.274000px;}
.y1b_c01061{bottom:666.712500px;}
.y1a_c01061{bottom:683.151000px;}
.y19_c01061{bottom:699.589500px;}
.y18_c01061{bottom:716.028000px;}
.y17_c01061{bottom:732.465000px;}
.y16_c01061{bottom:748.903500px;}
.y15_c01061{bottom:781.780500px;}
.y14_c01061{bottom:798.219000px;}
.y13_c01061{bottom:814.657500px;}
.y12_c01061{bottom:831.096000px;}
.y11_c01061{bottom:847.534500px;}
.y10_c01061{bottom:863.973000px;}
.yf_c01061{bottom:896.848500px;}
.ye_c01061{bottom:913.287000px;}
.yd_c01061{bottom:929.725500px;}
.yc_c01061{bottom:946.164000px;}
.yb_c01061{bottom:962.602500px;}
.ya_c01061{bottom:979.041000px;}
.y9_c01061{bottom:995.479500px;}
.y8_c01061{bottom:1028.356500px;}
.y7_c01061{bottom:1044.795000px;}
.y6_c01061{bottom:1061.232000px;}
.y5_c01061{bottom:1077.670500px;}
.y4_c01061{bottom:1094.109000px;}
.y3_c01061{bottom:1110.547500px;}
.y2_c01061{bottom:1143.424500px;}
.y1_c01061{bottom:1159.863000px;}
.h3_c01061{height:35.190766px;}
.h2_c01061{height:36.007158px;}
.h4_c01061{height:52.332837px;}
.h0_c01061{height:1262.835000px;}
.h1_c01061{height:1263.000000px;}
.w0_c01061{width:892.920000px;}
.w1_c01061{width:893.250000px;}
.x0_c01061{left:0.000000px;}
.x2_c01061{left:137.122500px;}
.x3_c01061{left:143.770500px;}
.x6_c01061{left:177.007500px;}
.x5_c01061{left:196.948500px;}
.x1_c01061{left:203.596500px;}
.x4_c01061{left:210.243000px;}
.x7_c01061{left:435.249000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls3_c01061{letter-spacing:0.000000pt;}
.ls0_c01061{letter-spacing:0.078221pt;}
.ls1_c01061{letter-spacing:0.087539pt;}
.ls2_c01061{letter-spacing:0.092873pt;}
.ws0_c01061{word-spacing:-23.622682pt;}
.ws1_c01061{word-spacing:-23.544461pt;}
.ws2_c01061{word-spacing:0.000000pt;}
.ws7_c01061{word-spacing:0.039110pt;}
.ws3_c01061{word-spacing:0.047940pt;}
.ws6_c01061{word-spacing:0.050948pt;}
.ws4_c01061{word-spacing:0.189730pt;}
.ws5_c01061{word-spacing:0.195063pt;}
._0_c01061{width:0.949487pt;}
.fs0_c01061{font-size:39.110400pt;}
.fs1_c01061{font-size:53.133867pt;}
.y0_c01061{bottom:0.000000pt;}
.y3d_c01061{bottom:39.333333pt;}
.y3c_c01061{bottom:81.217333pt;}
.y3b_c01061{bottom:95.829333pt;}
.y3a_c01061{bottom:110.441333pt;}
.y39_c01061{bottom:125.053333pt;}
.y38_c01061{bottom:139.665333pt;}
.y37_c01061{bottom:154.277333pt;}
.y36_c01061{bottom:168.889333pt;}
.y35_c01061{bottom:183.500000pt;}
.y34_c01061{bottom:198.112000pt;}
.y33_c01061{bottom:212.724000pt;}
.y32_c01061{bottom:241.948000pt;}
.y31_c01061{bottom:256.560000pt;}
.y30_c01061{bottom:271.172000pt;}
.y2f_c01061{bottom:300.396000pt;}
.y2e_c01061{bottom:315.008000pt;}
.y2d_c01061{bottom:329.620000pt;}
.y2c_c01061{bottom:344.230667pt;}
.y2b_c01061{bottom:358.842667pt;}
.y2a_c01061{bottom:373.454667pt;}
.y29_c01061{bottom:388.066667pt;}
.y28_c01061{bottom:402.678667pt;}
.y27_c01061{bottom:417.290667pt;}
.y26_c01061{bottom:431.902667pt;}
.y25_c01061{bottom:446.514667pt;}
.y24_c01061{bottom:461.126667pt;}
.y23_c01061{bottom:475.738667pt;}
.y22_c01061{bottom:490.349333pt;}
.y21_c01061{bottom:504.961333pt;}
.y20_c01061{bottom:519.573333pt;}
.y1f_c01061{bottom:534.185333pt;}
.y1e_c01061{bottom:548.797333pt;}
.y1d_c01061{bottom:563.409333pt;}
.y1c_c01061{bottom:578.021333pt;}
.y1b_c01061{bottom:592.633333pt;}
.y1a_c01061{bottom:607.245333pt;}
.y19_c01061{bottom:621.857333pt;}
.y18_c01061{bottom:636.469333pt;}
.y17_c01061{bottom:651.080000pt;}
.y16_c01061{bottom:665.692000pt;}
.y15_c01061{bottom:694.916000pt;}
.y14_c01061{bottom:709.528000pt;}
.y13_c01061{bottom:724.140000pt;}
.y12_c01061{bottom:738.752000pt;}
.y11_c01061{bottom:753.364000pt;}
.y10_c01061{bottom:767.976000pt;}
.yf_c01061{bottom:797.198667pt;}
.ye_c01061{bottom:811.810667pt;}
.yd_c01061{bottom:826.422667pt;}
.yc_c01061{bottom:841.034667pt;}
.yb_c01061{bottom:855.646667pt;}
.ya_c01061{bottom:870.258667pt;}
.y9_c01061{bottom:884.870667pt;}
.y8_c01061{bottom:914.094667pt;}
.y7_c01061{bottom:928.706667pt;}
.y6_c01061{bottom:943.317333pt;}
.y5_c01061{bottom:957.929333pt;}
.y4_c01061{bottom:972.541333pt;}
.y3_c01061{bottom:987.153333pt;}
.y2_c01061{bottom:1016.377333pt;}
.y1_c01061{bottom:1030.989333pt;}
.h3_c01061{height:31.280681pt;}
.h2_c01061{height:32.006363pt;}
.h4_c01061{height:46.518078pt;}
.h0_c01061{height:1122.520000pt;}
.h1_c01061{height:1122.666667pt;}
.w0_c01061{width:793.706667pt;}
.w1_c01061{width:794.000000pt;}
.x0_c01061{left:0.000000pt;}
.x2_c01061{left:121.886667pt;}
.x3_c01061{left:127.796000pt;}
.x6_c01061{left:157.340000pt;}
.x5_c01061{left:175.065333pt;}
.x1_c01061{left:180.974667pt;}
.x4_c01061{left:186.882667pt;}
.x7_c01061{left:386.888000pt;}
}





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

.ir_c01062:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_1c53ff700682f136739c1354.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01062;src:url('chunks/assets/font_d67c31747e429ea43c7ea409.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01062;src:url('chunks/assets/font_07950315659d8b1f90b956a8.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:0.087998px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:-26.575517px;}
.wsc_c01062{word-spacing:-21.339889px;}
.ws7_c01062{word-spacing:-21.041011px;}
.ws8_c01062{word-spacing:-19.307519px;}
.wsb_c01062{word-spacing:-19.008641px;}
.ws5_c01062{word-spacing:-18.769538px;}
.ws9_c01062{word-spacing:-17.633802px;}
.wsd_c01062{word-spacing:-15.900310px;}
.ws4_c01062{word-spacing:-14.943900px;}
.wsa_c01062{word-spacing:-12.851754px;}
.ws6_c01062{word-spacing:-11.136144px;}
.ws2_c01062{word-spacing:-9.988424px;}
.ws3_c01062{word-spacing:-9.987499px;}
.wse_c01062{word-spacing:0.000000px;}
.ws1_c01062{word-spacing:43.038600px;}
._5_c01062{margin-left:-4.872365px;}
._2_c01062{margin-left:-3.376273px;}
._0_c01062{margin-left:-1.549390px;}
._1_c01062{width:19.935816px;}
._3_c01062{width:23.133157px;}
._4_c01062{width:38.191832px;}
.fc3_c01062{color:rgb(6,69,173);}
.fc2_c01062{color:rgb(0,0,0);}
.fc1_c01062{color:rgb(143,89,3);}
.fc0_c01062{color:rgb(33,74,135);}
.fs0_c01062{font-size:43.999200px;}
.fs2_c01062{font-size:59.775600px;}
.fs1_c01062{font-size:86.077200px;}
.y0_c01062{bottom:0.000000px;}
.y10_c01062{bottom:44.250000px;}
.yf_c01062{bottom:82.051500px;}
.ye_c01062{bottom:99.984000px;}
.yd_c01062{bottom:433.005000px;}
.yc_c01062{bottom:450.937500px;}
.yb_c01062{bottom:468.870000px;}
.ya_c01062{bottom:486.804000px;}
.y9_c01062{bottom:504.736500px;}
.y8_c01062{bottom:522.669000px;}
.y7_c01062{bottom:540.601500px;}
.y6_c01062{bottom:567.939000px;}
.y5_c01062{bottom:595.278000px;}
.y4_c01062{bottom:622.615500px;}
.y3_c01062{bottom:649.953000px;}
.y2_c01062{bottom:692.860500px;}
.y1_c01062{bottom:1159.863000px;}
.h2_c01062{height:36.007158px;}
.h4_c01062{height:40.511979px;}
.h5_c01062{height:52.332837px;}
.h3_c01062{height:58.337477px;}
.h0_c01062{height:1262.835000px;}
.h1_c01062{height:1263.000000px;}
.w0_c01062{width:892.920000px;}
.w1_c01062{width:893.250000px;}
.x0_c01062{left:0.000000px;}
.x2_c01062{left:127.558500px;}
.x1_c01062{left:177.007500px;}
.x3_c01062{left:435.249000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:0.078221pt;}
.ws0_c01062{word-spacing:-23.622682pt;}
.wsc_c01062{word-spacing:-18.968790pt;}
.ws7_c01062{word-spacing:-18.703121pt;}
.ws8_c01062{word-spacing:-17.162239pt;}
.wsb_c01062{word-spacing:-16.896570pt;}
.ws5_c01062{word-spacing:-16.684034pt;}
.ws9_c01062{word-spacing:-15.674491pt;}
.wsd_c01062{word-spacing:-14.133609pt;}
.ws4_c01062{word-spacing:-13.283467pt;}
.wsa_c01062{word-spacing:-11.423781pt;}
.ws6_c01062{word-spacing:-9.898795pt;}
.ws2_c01062{word-spacing:-8.878599pt;}
.ws3_c01062{word-spacing:-8.877777pt;}
.wse_c01062{word-spacing:0.000000pt;}
.ws1_c01062{word-spacing:38.256533pt;}
._5_c01062{margin-left:-4.330991pt;}
._2_c01062{margin-left:-3.001132pt;}
._0_c01062{margin-left:-1.377235pt;}
._1_c01062{width:17.720725pt;}
._3_c01062{width:20.562806pt;}
._4_c01062{width:33.948295pt;}
.fs0_c01062{font-size:39.110400pt;}
.fs2_c01062{font-size:53.133867pt;}
.fs1_c01062{font-size:76.513067pt;}
.y0_c01062{bottom:0.000000pt;}
.y10_c01062{bottom:39.333333pt;}
.yf_c01062{bottom:72.934667pt;}
.ye_c01062{bottom:88.874667pt;}
.yd_c01062{bottom:384.893333pt;}
.yc_c01062{bottom:400.833333pt;}
.yb_c01062{bottom:416.773333pt;}
.ya_c01062{bottom:432.714667pt;}
.y9_c01062{bottom:448.654667pt;}
.y8_c01062{bottom:464.594667pt;}
.y7_c01062{bottom:480.534667pt;}
.y6_c01062{bottom:504.834667pt;}
.y5_c01062{bottom:529.136000pt;}
.y4_c01062{bottom:553.436000pt;}
.y3_c01062{bottom:577.736000pt;}
.y2_c01062{bottom:615.876000pt;}
.y1_c01062{bottom:1030.989333pt;}
.h2_c01062{height:32.006363pt;}
.h4_c01062{height:36.010648pt;}
.h5_c01062{height:46.518078pt;}
.h3_c01062{height:51.855535pt;}
.h0_c01062{height:1122.520000pt;}
.h1_c01062{height:1122.666667pt;}
.w0_c01062{width:793.706667pt;}
.w1_c01062{width:794.000000pt;}
.x0_c01062{left:0.000000pt;}
.x2_c01062{left:113.385333pt;}
.x1_c01062{left:157.340000pt;}
.x3_c01062{left:386.888000pt;}
}





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

.ir_c01063:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_4da048929877ab1d3bff3ab0.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01063;src:url('chunks/assets/font_60effe0a6d799f898070ec01.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01063;src:url('chunks/assets/font_09b99e44534fbf2850121c32.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01063;src:url('chunks/assets/font_aca3f882eb7c5767c2691ee7.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01063{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01063{vertical-align:0.000000px;}
.ls3_c01063{letter-spacing:0.000000px;}
.ls0_c01063{letter-spacing:0.087998px;}
.ls2_c01063{letter-spacing:0.098482px;}
.ls1_c01063{letter-spacing:0.104482px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01063{word-spacing:-26.575517px;}
.wsa_c01063{word-spacing:-26.487518px;}
.ws1_c01063{word-spacing:-22.947280px;}
.ws2_c01063{word-spacing:-22.894055px;}
.ws4_c01063{word-spacing:-20.383480px;}
.ws7_c01063{word-spacing:-19.785724px;}
.ws8_c01063{word-spacing:-18.769538px;}
.ws0_c01063{word-spacing:-15.720983px;}
.ws3_c01063{word-spacing:-15.601432px;}
.ws5_c01063{word-spacing:-14.645022px;}
.ws6_c01063{word-spacing:-7.405366px;}
.wsf_c01063{word-spacing:0.000000px;}
.ws11_c01063{word-spacing:0.036900px;}
.wsc_c01063{word-spacing:0.043999px;}
.ws10_c01063{word-spacing:0.053933px;}
.ws12_c01063{word-spacing:0.070416px;}
.ws13_c01063{word-spacing:0.074350px;}
.ws9_c01063{word-spacing:0.175997px;}
.wse_c01063{word-spacing:0.213446px;}
.wsd_c01063{word-spacing:0.219446px;}
._2_c01063{margin-left:-3.347434px;}
._4_c01063{width:1.005737px;}
._1_c01063{width:19.128192px;}
._0_c01063{width:28.931390px;}
._3_c01063{width:32.839632px;}
._5_c01063{width:106.918056px;}
.fc6_c01063{color:rgb(0,0,207);}
.fc5_c01063{color:rgb(79,153,5);}
.fc3_c01063{color:rgb(33,74,135);}
.fc2_c01063{color:rgb(143,89,3);}
.fc4_c01063{color:rgb(207,92,0);}
.fc1_c01063{color:rgb(6,69,173);}
.fc0_c01063{color:rgb(0,0,0);}
.fs1_c01063{font-size:43.999200px;}
.fs0_c01063{font-size:59.775600px;}
.y0_c01063{bottom:0.000000px;}
.y37_c01063{bottom:44.250000px;}
.y36_c01063{bottom:82.051500px;}
.y35_c01063{bottom:98.490000px;}
.y34_c01063{bottom:114.927000px;}
.y33_c01063{bottom:131.365500px;}
.y32_c01063{bottom:147.804000px;}
.y31_c01063{bottom:164.242500px;}
.y30_c01063{bottom:197.119500px;}
.y2f_c01063{bottom:213.558000px;}
.y2e_c01063{bottom:229.996500px;}
.y2d_c01063{bottom:246.435000px;}
.y2c_c01063{bottom:262.873500px;}
.y2b_c01063{bottom:279.310500px;}
.y2a_c01063{bottom:312.187500px;}
.y29_c01063{bottom:328.626000px;}
.y28_c01063{bottom:345.064500px;}
.y27_c01063{bottom:361.503000px;}
.y26_c01063{bottom:394.380000px;}
.y25_c01063{bottom:410.818500px;}
.y24_c01063{bottom:427.257000px;}
.y23_c01063{bottom:443.694000px;}
.y22_c01063{bottom:476.571000px;}
.y21_c01063{bottom:493.009500px;}
.y20_c01063{bottom:509.448000px;}
.y1f_c01063{bottom:525.886500px;}
.y1e_c01063{bottom:542.325000px;}
.y1d_c01063{bottom:558.763500px;}
.y1c_c01063{bottom:575.202000px;}
.y1b_c01063{bottom:608.079000px;}
.y1a_c01063{bottom:624.516000px;}
.y19_c01063{bottom:640.954500px;}
.y18_c01063{bottom:673.831500px;}
.y17_c01063{bottom:690.270000px;}
.y16_c01063{bottom:739.585500px;}
.y15_c01063{bottom:756.024000px;}
.y14_c01063{bottom:788.899500px;}
.y13_c01063{bottom:805.338000px;}
.y12_c01063{bottom:821.776500px;}
.y11_c01063{bottom:838.215000px;}
.y10_c01063{bottom:871.092000px;}
.yf_c01063{bottom:887.530500px;}
.ye_c01063{bottom:903.969000px;}
.yd_c01063{bottom:920.407500px;}
.yc_c01063{bottom:936.846000px;}
.yb_c01063{bottom:953.284500px;}
.ya_c01063{bottom:969.721500px;}
.y9_c01063{bottom:986.160000px;}
.y8_c01063{bottom:1002.225000px;}
.y7_c01063{bottom:1052.266500px;}
.y6_c01063{bottom:1070.199000px;}
.y5_c01063{bottom:1088.131500px;}
.y4_c01063{bottom:1106.064000px;}
.y3_c01063{bottom:1123.998000px;}
.y2_c01063{bottom:1141.930500px;}
.y1_c01063{bottom:1159.863000px;}
.h3_c01063{height:35.190766px;}
.h4_c01063{height:36.007158px;}
.h2_c01063{height:52.332837px;}
.h0_c01063{height:1262.835000px;}
.h1_c01063{height:1263.000000px;}
.w0_c01063{width:892.920000px;}
.w1_c01063{width:893.250000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:127.558500px;}
.x2_c01063{left:137.122500px;}
.x3_c01063{left:143.770500px;}
.x6_c01063{left:170.359500px;}
.x4_c01063{left:203.596500px;}
.x5_c01063{left:216.891000px;}
.x7_c01063{left:435.249000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls3_c01063{letter-spacing:0.000000pt;}
.ls0_c01063{letter-spacing:0.078221pt;}
.ls2_c01063{letter-spacing:0.087539pt;}
.ls1_c01063{letter-spacing:0.092873pt;}
.wsb_c01063{word-spacing:-23.622682pt;}
.wsa_c01063{word-spacing:-23.544461pt;}
.ws1_c01063{word-spacing:-20.397582pt;}
.ws2_c01063{word-spacing:-20.350271pt;}
.ws4_c01063{word-spacing:-18.118649pt;}
.ws7_c01063{word-spacing:-17.587310pt;}
.ws8_c01063{word-spacing:-16.684034pt;}
.ws0_c01063{word-spacing:-13.974207pt;}
.ws3_c01063{word-spacing:-13.867939pt;}
.ws5_c01063{word-spacing:-13.017797pt;}
.ws6_c01063{word-spacing:-6.582547pt;}
.wsf_c01063{word-spacing:0.000000pt;}
.ws11_c01063{word-spacing:0.032800pt;}
.wsc_c01063{word-spacing:0.039110pt;}
.ws10_c01063{word-spacing:0.047940pt;}
.ws12_c01063{word-spacing:0.062592pt;}
.ws13_c01063{word-spacing:0.066089pt;}
.ws9_c01063{word-spacing:0.156442pt;}
.wse_c01063{word-spacing:0.189730pt;}
.wsd_c01063{word-spacing:0.195063pt;}
._2_c01063{margin-left:-2.975497pt;}
._4_c01063{width:0.893988pt;}
._1_c01063{width:17.002837pt;}
._0_c01063{width:25.716791pt;}
._3_c01063{width:29.190784pt;}
._5_c01063{width:95.038272pt;}
.fs1_c01063{font-size:39.110400pt;}
.fs0_c01063{font-size:53.133867pt;}
.y0_c01063{bottom:0.000000pt;}
.y37_c01063{bottom:39.333333pt;}
.y36_c01063{bottom:72.934667pt;}
.y35_c01063{bottom:87.546667pt;}
.y34_c01063{bottom:102.157333pt;}
.y33_c01063{bottom:116.769333pt;}
.y32_c01063{bottom:131.381333pt;}
.y31_c01063{bottom:145.993333pt;}
.y30_c01063{bottom:175.217333pt;}
.y2f_c01063{bottom:189.829333pt;}
.y2e_c01063{bottom:204.441333pt;}
.y2d_c01063{bottom:219.053333pt;}
.y2c_c01063{bottom:233.665333pt;}
.y2b_c01063{bottom:248.276000pt;}
.y2a_c01063{bottom:277.500000pt;}
.y29_c01063{bottom:292.112000pt;}
.y28_c01063{bottom:306.724000pt;}
.y27_c01063{bottom:321.336000pt;}
.y26_c01063{bottom:350.560000pt;}
.y25_c01063{bottom:365.172000pt;}
.y24_c01063{bottom:379.784000pt;}
.y23_c01063{bottom:394.394667pt;}
.y22_c01063{bottom:423.618667pt;}
.y21_c01063{bottom:438.230667pt;}
.y20_c01063{bottom:452.842667pt;}
.y1f_c01063{bottom:467.454667pt;}
.y1e_c01063{bottom:482.066667pt;}
.y1d_c01063{bottom:496.678667pt;}
.y1c_c01063{bottom:511.290667pt;}
.y1b_c01063{bottom:540.514667pt;}
.y1a_c01063{bottom:555.125333pt;}
.y19_c01063{bottom:569.737333pt;}
.y18_c01063{bottom:598.961333pt;}
.y17_c01063{bottom:613.573333pt;}
.y16_c01063{bottom:657.409333pt;}
.y15_c01063{bottom:672.021333pt;}
.y14_c01063{bottom:701.244000pt;}
.y13_c01063{bottom:715.856000pt;}
.y12_c01063{bottom:730.468000pt;}
.y11_c01063{bottom:745.080000pt;}
.y10_c01063{bottom:774.304000pt;}
.yf_c01063{bottom:788.916000pt;}
.ye_c01063{bottom:803.528000pt;}
.yd_c01063{bottom:818.140000pt;}
.yc_c01063{bottom:832.752000pt;}
.yb_c01063{bottom:847.364000pt;}
.ya_c01063{bottom:861.974667pt;}
.y9_c01063{bottom:876.586667pt;}
.y8_c01063{bottom:890.866667pt;}
.y7_c01063{bottom:935.348000pt;}
.y6_c01063{bottom:951.288000pt;}
.y5_c01063{bottom:967.228000pt;}
.y4_c01063{bottom:983.168000pt;}
.y3_c01063{bottom:999.109333pt;}
.y2_c01063{bottom:1015.049333pt;}
.y1_c01063{bottom:1030.989333pt;}
.h3_c01063{height:31.280681pt;}
.h4_c01063{height:32.006363pt;}
.h2_c01063{height:46.518078pt;}
.h0_c01063{height:1122.520000pt;}
.h1_c01063{height:1122.666667pt;}
.w0_c01063{width:793.706667pt;}
.w1_c01063{width:794.000000pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:113.385333pt;}
.x2_c01063{left:121.886667pt;}
.x3_c01063{left:127.796000pt;}
.x6_c01063{left:151.430667pt;}
.x4_c01063{left:180.974667pt;}
.x5_c01063{left:192.792000pt;}
.x7_c01063{left:386.888000pt;}
}





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

.ir_c01064:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_baa879445259a3b9329eec85.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01064;src:url('chunks/assets/font_b3906b492e8bb589073bbd01.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01064;src:url('chunks/assets/font_f542dbfebdde07fbb40cd38d.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01064;src:url('chunks/assets/font_3928e0e5b8ca1fcea0fa04d9.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:1.020996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01064;src:url('chunks/assets/font_b9fb12b9abf780b78f428124.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls3_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:0.087998px;}
.ls1_c01064{letter-spacing:0.098482px;}
.ls2_c01064{letter-spacing:0.104482px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:-26.575517px;}
.ws1_c01064{word-spacing:-26.487518px;}
.ws7_c01064{word-spacing:0.000000px;}
.ws9_c01064{word-spacing:0.043999px;}
.ws2_c01064{word-spacing:0.046834px;}
.ws5_c01064{word-spacing:0.052834px;}
.ws6_c01064{word-spacing:0.066701px;}
.wsb_c01064{word-spacing:0.175997px;}
.ws8_c01064{word-spacing:0.212897px;}
.ws3_c01064{word-spacing:0.213446px;}
.ws4_c01064{word-spacing:0.219446px;}
.wsa_c01064{word-spacing:0.219996px;}
._0_c01064{width:1.024505px;}
.fc5_c01064{color:rgb(79,153,5);}
.fc4_c01064{color:rgb(143,89,3);}
.fc3_c01064{color:rgb(0,0,207);}
.fc2_c01064{color:rgb(207,92,0);}
.fc1_c01064{color:rgb(0,0,0);}
.fc0_c01064{color:rgb(33,74,135);}
.fs0_c01064{font-size:43.999200px;}
.fs1_c01064{font-size:59.775600px;}
.y0_c01064{bottom:0.000000px;}
.y3a_c01064{bottom:44.250000px;}
.y39_c01064{bottom:91.369500px;}
.y38_c01064{bottom:124.246500px;}
.y37_c01064{bottom:140.685000px;}
.y36_c01064{bottom:157.123500px;}
.y35_c01064{bottom:190.000500px;}
.y34_c01064{bottom:206.437500px;}
.y33_c01064{bottom:222.876000px;}
.y32_c01064{bottom:239.314500px;}
.y31_c01064{bottom:255.753000px;}
.y30_c01064{bottom:272.191500px;}
.y2f_c01064{bottom:288.630000px;}
.y2e_c01064{bottom:305.068500px;}
.y2d_c01064{bottom:321.507000px;}
.y2c_c01064{bottom:337.945500px;}
.y2b_c01064{bottom:354.384000px;}
.y2a_c01064{bottom:370.822500px;}
.y29_c01064{bottom:387.259500px;}
.y28_c01064{bottom:403.698000px;}
.y27_c01064{bottom:420.136500px;}
.y26_c01064{bottom:436.575000px;}
.y25_c01064{bottom:453.013500px;}
.y24_c01064{bottom:469.452000px;}
.y23_c01064{bottom:485.890500px;}
.y22_c01064{bottom:518.767500px;}
.y21_c01064{bottom:535.206000px;}
.y20_c01064{bottom:551.643000px;}
.y1f_c01064{bottom:568.081500px;}
.y1e_c01064{bottom:600.958500px;}
.y1d_c01064{bottom:617.397000px;}
.y1c_c01064{bottom:633.835500px;}
.y1b_c01064{bottom:650.274000px;}
.y1a_c01064{bottom:666.712500px;}
.y19_c01064{bottom:683.151000px;}
.y18_c01064{bottom:699.589500px;}
.y17_c01064{bottom:748.903500px;}
.y16_c01064{bottom:765.342000px;}
.y15_c01064{bottom:781.780500px;}
.y14_c01064{bottom:798.219000px;}
.y13_c01064{bottom:831.096000px;}
.y12_c01064{bottom:847.534500px;}
.y11_c01064{bottom:863.973000px;}
.y10_c01064{bottom:896.848500px;}
.yf_c01064{bottom:913.287000px;}
.ye_c01064{bottom:929.725500px;}
.yd_c01064{bottom:946.164000px;}
.yc_c01064{bottom:962.602500px;}
.yb_c01064{bottom:979.041000px;}
.ya_c01064{bottom:1011.918000px;}
.y9_c01064{bottom:1028.356500px;}
.y8_c01064{bottom:1044.795000px;}
.y7_c01064{bottom:1061.232000px;}
.y6_c01064{bottom:1077.670500px;}
.y5_c01064{bottom:1094.109000px;}
.y4_c01064{bottom:1110.547500px;}
.y3_c01064{bottom:1126.986000px;}
.y2_c01064{bottom:1143.424500px;}
.y1_c01064{bottom:1159.863000px;}
.h3_c01064{height:35.190766px;}
.h4_c01064{height:35.770834px;}
.h2_c01064{height:36.007158px;}
.h5_c01064{height:52.332837px;}
.h0_c01064{height:1262.835000px;}
.h1_c01064{height:1263.000000px;}
.w0_c01064{width:892.920000px;}
.w1_c01064{width:893.250000px;}
.x0_c01064{left:0.000000px;}
.x3_c01064{left:137.122500px;}
.x2_c01064{left:143.770500px;}
.x1_c01064{left:170.359500px;}
.x5_c01064{left:196.948500px;}
.x4_c01064{left:203.596500px;}
.x6_c01064{left:435.249000px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls3_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:0.078221pt;}
.ls1_c01064{letter-spacing:0.087539pt;}
.ls2_c01064{letter-spacing:0.092873pt;}
.ws0_c01064{word-spacing:-23.622682pt;}
.ws1_c01064{word-spacing:-23.544461pt;}
.ws7_c01064{word-spacing:0.000000pt;}
.ws9_c01064{word-spacing:0.039110pt;}
.ws2_c01064{word-spacing:0.041630pt;}
.ws5_c01064{word-spacing:0.046963pt;}
.ws6_c01064{word-spacing:0.059290pt;}
.wsb_c01064{word-spacing:0.156442pt;}
.ws8_c01064{word-spacing:0.189242pt;}
.ws3_c01064{word-spacing:0.189730pt;}
.ws4_c01064{word-spacing:0.195063pt;}
.wsa_c01064{word-spacing:0.195552pt;}
._0_c01064{width:0.910671pt;}
.fs0_c01064{font-size:39.110400pt;}
.fs1_c01064{font-size:53.133867pt;}
.y0_c01064{bottom:0.000000pt;}
.y3a_c01064{bottom:39.333333pt;}
.y39_c01064{bottom:81.217333pt;}
.y38_c01064{bottom:110.441333pt;}
.y37_c01064{bottom:125.053333pt;}
.y36_c01064{bottom:139.665333pt;}
.y35_c01064{bottom:168.889333pt;}
.y34_c01064{bottom:183.500000pt;}
.y33_c01064{bottom:198.112000pt;}
.y32_c01064{bottom:212.724000pt;}
.y31_c01064{bottom:227.336000pt;}
.y30_c01064{bottom:241.948000pt;}
.y2f_c01064{bottom:256.560000pt;}
.y2e_c01064{bottom:271.172000pt;}
.y2d_c01064{bottom:285.784000pt;}
.y2c_c01064{bottom:300.396000pt;}
.y2b_c01064{bottom:315.008000pt;}
.y2a_c01064{bottom:329.620000pt;}
.y29_c01064{bottom:344.230667pt;}
.y28_c01064{bottom:358.842667pt;}
.y27_c01064{bottom:373.454667pt;}
.y26_c01064{bottom:388.066667pt;}
.y25_c01064{bottom:402.678667pt;}
.y24_c01064{bottom:417.290667pt;}
.y23_c01064{bottom:431.902667pt;}
.y22_c01064{bottom:461.126667pt;}
.y21_c01064{bottom:475.738667pt;}
.y20_c01064{bottom:490.349333pt;}
.y1f_c01064{bottom:504.961333pt;}
.y1e_c01064{bottom:534.185333pt;}
.y1d_c01064{bottom:548.797333pt;}
.y1c_c01064{bottom:563.409333pt;}
.y1b_c01064{bottom:578.021333pt;}
.y1a_c01064{bottom:592.633333pt;}
.y19_c01064{bottom:607.245333pt;}
.y18_c01064{bottom:621.857333pt;}
.y17_c01064{bottom:665.692000pt;}
.y16_c01064{bottom:680.304000pt;}
.y15_c01064{bottom:694.916000pt;}
.y14_c01064{bottom:709.528000pt;}
.y13_c01064{bottom:738.752000pt;}
.y12_c01064{bottom:753.364000pt;}
.y11_c01064{bottom:767.976000pt;}
.y10_c01064{bottom:797.198667pt;}
.yf_c01064{bottom:811.810667pt;}
.ye_c01064{bottom:826.422667pt;}
.yd_c01064{bottom:841.034667pt;}
.yc_c01064{bottom:855.646667pt;}
.yb_c01064{bottom:870.258667pt;}
.ya_c01064{bottom:899.482667pt;}
.y9_c01064{bottom:914.094667pt;}
.y8_c01064{bottom:928.706667pt;}
.y7_c01064{bottom:943.317333pt;}
.y6_c01064{bottom:957.929333pt;}
.y5_c01064{bottom:972.541333pt;}
.y4_c01064{bottom:987.153333pt;}
.y3_c01064{bottom:1001.765333pt;}
.y2_c01064{bottom:1016.377333pt;}
.y1_c01064{bottom:1030.989333pt;}
.h3_c01064{height:31.280681pt;}
.h4_c01064{height:31.796297pt;}
.h2_c01064{height:32.006363pt;}
.h5_c01064{height:46.518078pt;}
.h0_c01064{height:1122.520000pt;}
.h1_c01064{height:1122.666667pt;}
.w0_c01064{width:793.706667pt;}
.w1_c01064{width:794.000000pt;}
.x0_c01064{left:0.000000pt;}
.x3_c01064{left:121.886667pt;}
.x2_c01064{left:127.796000pt;}
.x1_c01064{left:151.430667pt;}
.x5_c01064{left:175.065333pt;}
.x4_c01064{left:180.974667pt;}
.x6_c01064{left:386.888000pt;}
}





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

.ir_c01065:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_00aea30186f61476942b948d.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01065;src:url('chunks/assets/font_28972cab3f70ac0fbd18cabf.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01065;src:url('chunks/assets/font_e17a640db0ed4c75e810ac26.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01065;src:url('chunks/assets/font_1b229f4ed212371a72a222a9.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls3_c01065{letter-spacing:0.000000px;}
.ls0_c01065{letter-spacing:0.087998px;}
.ls1_c01065{letter-spacing:0.098482px;}
.ls2_c01065{letter-spacing:0.104482px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:-26.575517px;}
.ws1_c01065{word-spacing:-26.487518px;}
.wse_c01065{word-spacing:-19.965050px;}
.ws6_c01065{word-spacing:-18.769538px;}
.wsb_c01065{word-spacing:-15.780758px;}
.ws9_c01065{word-spacing:-15.601432px;}
.wsd_c01065{word-spacing:-15.481880px;}
.wsc_c01065{word-spacing:-15.422105px;}
.ws5_c01065{word-spacing:-14.943900px;}
.wsa_c01065{word-spacing:-13.808164px;}
.ws8_c01065{word-spacing:-13.748388px;}
.ws3_c01065{word-spacing:-9.988424px;}
.ws4_c01065{word-spacing:-9.987499px;}
.wsf_c01065{word-spacing:0.000000px;}
.ws7_c01065{word-spacing:0.017856px;}
.ws2_c01065{word-spacing:43.038600px;}
._1_c01065{margin-left:-7.833025px;}
._6_c01065{margin-left:-4.656358px;}
._4_c01065{margin-left:-2.998955px;}
._0_c01065{margin-left:-1.549390px;}
._8_c01065{width:12.744048px;}
._2_c01065{width:19.935816px;}
._5_c01065{width:21.220338px;}
._7_c01065{width:25.643732px;}
._3_c01065{width:29.529146px;}
.fc5_c01065{color:rgb(0,0,207);}
.fc6_c01065{color:rgb(6,69,173);}
.fc4_c01065{color:rgb(207,92,0);}
.fc3_c01065{color:rgb(79,153,5);}
.fc2_c01065{color:rgb(33,74,135);}
.fc1_c01065{color:rgb(143,89,3);}
.fc0_c01065{color:rgb(0,0,0);}
.fs0_c01065{font-size:43.999200px;}
.fs2_c01065{font-size:59.775600px;}
.fs1_c01065{font-size:86.077200px;}
.y0_c01065{bottom:0.000000px;}
.y18_c01065{bottom:44.250000px;}
.y17_c01065{bottom:82.051500px;}
.y16_c01065{bottom:99.984000px;}
.y15_c01065{bottom:117.916500px;}
.y14_c01065{bottom:135.849000px;}
.y13_c01065{bottom:179.629500px;}
.y12_c01065{bottom:197.563500px;}
.y11_c01065{bottom:215.496000px;}
.y10_c01065{bottom:233.428500px;}
.yf_c01065{bottom:277.209000px;}
.ye_c01065{bottom:320.991000px;}
.yd_c01065{bottom:364.771500px;}
.yc_c01065{bottom:408.552000px;}
.yb_c01065{bottom:475.257000px;}
.ya_c01065{bottom:1011.918000px;}
.y9_c01065{bottom:1028.356500px;}
.y8_c01065{bottom:1044.795000px;}
.y7_c01065{bottom:1061.232000px;}
.y6_c01065{bottom:1077.670500px;}
.y5_c01065{bottom:1094.109000px;}
.y4_c01065{bottom:1110.547500px;}
.y3_c01065{bottom:1126.986000px;}
.y2_c01065{bottom:1143.424500px;}
.y1_c01065{bottom:1159.863000px;}
.h2_c01065{height:36.007158px;}
.h4_c01065{height:40.511979px;}
.h5_c01065{height:52.332837px;}
.h3_c01065{height:58.337477px;}
.h0_c01065{height:1262.835000px;}
.h1_c01065{height:1263.000000px;}
.w0_c01065{width:892.920000px;}
.w1_c01065{width:893.250000px;}
.x0_c01065{left:0.000000px;}
.x3_c01065{left:127.558500px;}
.x1_c01065{left:137.122500px;}
.x2_c01065{left:177.007500px;}
.x4_c01065{left:435.249000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls3_c01065{letter-spacing:0.000000pt;}
.ls0_c01065{letter-spacing:0.078221pt;}
.ls1_c01065{letter-spacing:0.087539pt;}
.ls2_c01065{letter-spacing:0.092873pt;}
.ws0_c01065{word-spacing:-23.622682pt;}
.ws1_c01065{word-spacing:-23.544461pt;}
.wse_c01065{word-spacing:-17.746711pt;}
.ws6_c01065{word-spacing:-16.684034pt;}
.wsb_c01065{word-spacing:-14.027341pt;}
.ws9_c01065{word-spacing:-13.867939pt;}
.wsd_c01065{word-spacing:-13.761671pt;}
.wsc_c01065{word-spacing:-13.708538pt;}
.ws5_c01065{word-spacing:-13.283467pt;}
.wsa_c01065{word-spacing:-12.273923pt;}
.ws8_c01065{word-spacing:-12.220789pt;}
.ws3_c01065{word-spacing:-8.878599pt;}
.ws4_c01065{word-spacing:-8.877777pt;}
.wsf_c01065{word-spacing:0.000000pt;}
.ws7_c01065{word-spacing:0.015872pt;}
.ws2_c01065{word-spacing:38.256533pt;}
._1_c01065{margin-left:-6.962689pt;}
._6_c01065{margin-left:-4.138985pt;}
._4_c01065{margin-left:-2.665738pt;}
._0_c01065{margin-left:-1.377235pt;}
._8_c01065{width:11.328043pt;}
._2_c01065{width:17.720725pt;}
._5_c01065{width:18.862523pt;}
._7_c01065{width:22.794429pt;}
._3_c01065{width:26.248130pt;}
.fs0_c01065{font-size:39.110400pt;}
.fs2_c01065{font-size:53.133867pt;}
.fs1_c01065{font-size:76.513067pt;}
.y0_c01065{bottom:0.000000pt;}
.y18_c01065{bottom:39.333333pt;}
.y17_c01065{bottom:72.934667pt;}
.y16_c01065{bottom:88.874667pt;}
.y15_c01065{bottom:104.814667pt;}
.y14_c01065{bottom:120.754667pt;}
.y13_c01065{bottom:159.670667pt;}
.y12_c01065{bottom:175.612000pt;}
.y11_c01065{bottom:191.552000pt;}
.y10_c01065{bottom:207.492000pt;}
.yf_c01065{bottom:246.408000pt;}
.ye_c01065{bottom:285.325333pt;}
.yd_c01065{bottom:324.241333pt;}
.yc_c01065{bottom:363.157333pt;}
.yb_c01065{bottom:422.450667pt;}
.ya_c01065{bottom:899.482667pt;}
.y9_c01065{bottom:914.094667pt;}
.y8_c01065{bottom:928.706667pt;}
.y7_c01065{bottom:943.317333pt;}
.y6_c01065{bottom:957.929333pt;}
.y5_c01065{bottom:972.541333pt;}
.y4_c01065{bottom:987.153333pt;}
.y3_c01065{bottom:1001.765333pt;}
.y2_c01065{bottom:1016.377333pt;}
.y1_c01065{bottom:1030.989333pt;}
.h2_c01065{height:32.006363pt;}
.h4_c01065{height:36.010648pt;}
.h5_c01065{height:46.518078pt;}
.h3_c01065{height:51.855535pt;}
.h0_c01065{height:1122.520000pt;}
.h1_c01065{height:1122.666667pt;}
.w0_c01065{width:793.706667pt;}
.w1_c01065{width:794.000000pt;}
.x0_c01065{left:0.000000pt;}
.x3_c01065{left:113.385333pt;}
.x1_c01065{left:121.886667pt;}
.x2_c01065{left:157.340000pt;}
.x4_c01065{left:386.888000pt;}
}





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

.ir_c01066:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_0d0b53445dc6812d43d79eae.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01066;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01066;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls3_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:0.087998px;}
.ls2_c01066{letter-spacing:0.098482px;}
.ls1_c01066{letter-spacing:0.104482px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01066{word-spacing:-33.713438px;}
.ws1_c01066{word-spacing:-26.575517px;}
.wsa_c01066{word-spacing:-26.487518px;}
.ws7_c01066{word-spacing:-18.769538px;}
.ws4_c01066{word-spacing:-17.574026px;}
.ws3_c01066{word-spacing:-17.215373px;}
.ws6_c01066{word-spacing:-16.199188px;}
.ws0_c01066{word-spacing:-14.884124px;}
.ws2_c01066{word-spacing:-13.927715px;}
.ws5_c01066{word-spacing:-10.351366px;}
.wse_c01066{word-spacing:0.000000px;}
.ws10_c01066{word-spacing:0.036900px;}
.wsb_c01066{word-spacing:0.043999px;}
.wsf_c01066{word-spacing:0.053933px;}
.ws11_c01066{word-spacing:0.070416px;}
.ws9_c01066{word-spacing:0.175997px;}
.wsd_c01066{word-spacing:0.213446px;}
.wsc_c01066{word-spacing:0.219446px;}
._2_c01066{margin-left:-3.825638px;}
._3_c01066{width:1.005737px;}
._0_c01066{width:24.567772px;}
._1_c01066{width:27.676103px;}
.fc5_c01066{color:rgb(0,0,207);}
.fc4_c01066{color:rgb(79,153,5);}
.fc3_c01066{color:rgb(207,92,0);}
.fc2_c01066{color:rgb(33,74,135);}
.fc1_c01066{color:rgb(143,89,3);}
.fc0_c01066{color:rgb(0,0,0);}
.fs1_c01066{font-size:43.999200px;}
.fs0_c01066{font-size:59.775600px;}
.y0_c01066{bottom:0.000000px;}
.y27_c01066{bottom:44.250000px;}
.y26_c01066{bottom:82.051500px;}
.y25_c01066{bottom:114.927000px;}
.y24_c01066{bottom:131.365500px;}
.y23_c01066{bottom:147.804000px;}
.y22_c01066{bottom:164.242500px;}
.y21_c01066{bottom:197.119500px;}
.y20_c01066{bottom:213.558000px;}
.y1f_c01066{bottom:229.996500px;}
.y1e_c01066{bottom:246.435000px;}
.y1d_c01066{bottom:262.873500px;}
.y1c_c01066{bottom:279.310500px;}
.y1b_c01066{bottom:295.749000px;}
.y1a_c01066{bottom:328.626000px;}
.y19_c01066{bottom:345.064500px;}
.y18_c01066{bottom:361.503000px;}
.y17_c01066{bottom:394.380000px;}
.y16_c01066{bottom:410.818500px;}
.y15_c01066{bottom:460.132500px;}
.y14_c01066{bottom:476.571000px;}
.y13_c01066{bottom:509.448000px;}
.y12_c01066{bottom:525.886500px;}
.y11_c01066{bottom:542.325000px;}
.y10_c01066{bottom:558.763500px;}
.yf_c01066{bottom:591.640500px;}
.ye_c01066{bottom:608.079000px;}
.yd_c01066{bottom:624.516000px;}
.yc_c01066{bottom:640.954500px;}
.yb_c01066{bottom:657.393000px;}
.ya_c01066{bottom:673.831500px;}
.y9_c01066{bottom:690.270000px;}
.y8_c01066{bottom:706.708500px;}
.y7_c01066{bottom:722.773500px;}
.y6_c01066{bottom:766.867500px;}
.y5_c01066{bottom:784.800000px;}
.y4_c01066{bottom:802.732500px;}
.y3_c01066{bottom:820.665000px;}
.y2_c01066{bottom:838.597500px;}
.y1_c01066{bottom:856.530000px;}
.h3_c01066{height:35.190766px;}
.h4_c01066{height:36.007158px;}
.h2_c01066{height:52.332837px;}
.h0_c01066{height:1262.835000px;}
.h1_c01066{height:1263.000000px;}
.w0_c01066{width:892.920000px;}
.w1_c01066{width:893.250000px;}
.x0_c01066{left:0.000000px;}
.x1_c01066{left:127.558500px;}
.x2_c01066{left:137.122500px;}
.x3_c01066{left:143.770500px;}
.x4_c01066{left:435.249000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls3_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:0.078221pt;}
.ls2_c01066{letter-spacing:0.087539pt;}
.ls1_c01066{letter-spacing:0.092873pt;}
.ws8_c01066{word-spacing:-29.967501pt;}
.ws1_c01066{word-spacing:-23.622682pt;}
.wsa_c01066{word-spacing:-23.544461pt;}
.ws7_c01066{word-spacing:-16.684034pt;}
.ws4_c01066{word-spacing:-15.621357pt;}
.ws3_c01066{word-spacing:-15.302554pt;}
.ws6_c01066{word-spacing:-14.399278pt;}
.ws0_c01066{word-spacing:-13.230333pt;}
.ws2_c01066{word-spacing:-12.380191pt;}
.ws5_c01066{word-spacing:-9.201214pt;}
.wse_c01066{word-spacing:0.000000pt;}
.ws10_c01066{word-spacing:0.032800pt;}
.wsb_c01066{word-spacing:0.039110pt;}
.wsf_c01066{word-spacing:0.047940pt;}
.ws11_c01066{word-spacing:0.062592pt;}
.ws9_c01066{word-spacing:0.156442pt;}
.wsd_c01066{word-spacing:0.189730pt;}
.wsc_c01066{word-spacing:0.195063pt;}
._2_c01066{margin-left:-3.400567pt;}
._3_c01066{width:0.893988pt;}
._0_c01066{width:21.838019pt;}
._1_c01066{width:24.600980pt;}
.fs1_c01066{font-size:39.110400pt;}
.fs0_c01066{font-size:53.133867pt;}
.y0_c01066{bottom:0.000000pt;}
.y27_c01066{bottom:39.333333pt;}
.y26_c01066{bottom:72.934667pt;}
.y25_c01066{bottom:102.157333pt;}
.y24_c01066{bottom:116.769333pt;}
.y23_c01066{bottom:131.381333pt;}
.y22_c01066{bottom:145.993333pt;}
.y21_c01066{bottom:175.217333pt;}
.y20_c01066{bottom:189.829333pt;}
.y1f_c01066{bottom:204.441333pt;}
.y1e_c01066{bottom:219.053333pt;}
.y1d_c01066{bottom:233.665333pt;}
.y1c_c01066{bottom:248.276000pt;}
.y1b_c01066{bottom:262.888000pt;}
.y1a_c01066{bottom:292.112000pt;}
.y19_c01066{bottom:306.724000pt;}
.y18_c01066{bottom:321.336000pt;}
.y17_c01066{bottom:350.560000pt;}
.y16_c01066{bottom:365.172000pt;}
.y15_c01066{bottom:409.006667pt;}
.y14_c01066{bottom:423.618667pt;}
.y13_c01066{bottom:452.842667pt;}
.y12_c01066{bottom:467.454667pt;}
.y11_c01066{bottom:482.066667pt;}
.y10_c01066{bottom:496.678667pt;}
.yf_c01066{bottom:525.902667pt;}
.ye_c01066{bottom:540.514667pt;}
.yd_c01066{bottom:555.125333pt;}
.yc_c01066{bottom:569.737333pt;}
.yb_c01066{bottom:584.349333pt;}
.ya_c01066{bottom:598.961333pt;}
.y9_c01066{bottom:613.573333pt;}
.y8_c01066{bottom:628.185333pt;}
.y7_c01066{bottom:642.465333pt;}
.y6_c01066{bottom:681.660000pt;}
.y5_c01066{bottom:697.600000pt;}
.y4_c01066{bottom:713.540000pt;}
.y3_c01066{bottom:729.480000pt;}
.y2_c01066{bottom:745.420000pt;}
.y1_c01066{bottom:761.360000pt;}
.h3_c01066{height:31.280681pt;}
.h4_c01066{height:32.006363pt;}
.h2_c01066{height:46.518078pt;}
.h0_c01066{height:1122.520000pt;}
.h1_c01066{height:1122.666667pt;}
.w0_c01066{width:793.706667pt;}
.w1_c01066{width:794.000000pt;}
.x0_c01066{left:0.000000pt;}
.x1_c01066{left:113.385333pt;}
.x2_c01066{left:121.886667pt;}
.x3_c01066{left:127.796000pt;}
.x4_c01066{left:386.888000pt;}
}





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

.ir_c01067:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_c73c7fcd87fcf8fd2d00a1ac.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01067;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01067;src:url('chunks/assets/font_6934ebb7f9249825760efc90.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01067;src:url('chunks/assets/font_2ada0802c765799140ff0ce4.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls4_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:0.087998px;}
.ls2_c01067{letter-spacing:0.098482px;}
.ls1_c01067{letter-spacing:0.104482px;}
.ls3_c01067{letter-spacing:26.690482px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:-26.575517px;}
.ws1_c01067{word-spacing:-26.487518px;}
.ws2_c01067{word-spacing:0.000000px;}
.ws8_c01067{word-spacing:0.043999px;}
.ws3_c01067{word-spacing:0.053933px;}
.ws7_c01067{word-spacing:0.056767px;}
.ws4_c01067{word-spacing:0.064416px;}
.ws5_c01067{word-spacing:0.070416px;}
.ws9_c01067{word-spacing:0.213446px;}
.ws6_c01067{word-spacing:0.219446px;}
._0_c01067{width:1.014240px;}
.fc5_c01067{color:rgb(0,0,207);}
.fc4_c01067{color:rgb(207,92,0);}
.fc3_c01067{color:rgb(143,89,3);}
.fc2_c01067{color:rgb(0,0,0);}
.fc1_c01067{color:rgb(79,153,5);}
.fc0_c01067{color:rgb(33,74,135);}
.fs0_c01067{font-size:43.999200px;}
.fs1_c01067{font-size:59.775600px;}
.y0_c01067{bottom:0.000000px;}
.y3b_c01067{bottom:44.250000px;}
.y3a_c01067{bottom:91.369500px;}
.y39_c01067{bottom:107.808000px;}
.y38_c01067{bottom:124.246500px;}
.y37_c01067{bottom:140.685000px;}
.y36_c01067{bottom:173.562000px;}
.y35_c01067{bottom:190.000500px;}
.y34_c01067{bottom:206.437500px;}
.y33_c01067{bottom:239.314500px;}
.y32_c01067{bottom:255.753000px;}
.y31_c01067{bottom:272.191500px;}
.y30_c01067{bottom:288.630000px;}
.y2f_c01067{bottom:305.068500px;}
.y2e_c01067{bottom:321.507000px;}
.y2d_c01067{bottom:337.945500px;}
.y2c_c01067{bottom:354.384000px;}
.y2b_c01067{bottom:370.822500px;}
.y2a_c01067{bottom:387.259500px;}
.y29_c01067{bottom:403.698000px;}
.y28_c01067{bottom:420.136500px;}
.y27_c01067{bottom:436.575000px;}
.y26_c01067{bottom:453.013500px;}
.y25_c01067{bottom:469.452000px;}
.y24_c01067{bottom:485.890500px;}
.y23_c01067{bottom:502.329000px;}
.y22_c01067{bottom:518.767500px;}
.y21_c01067{bottom:535.206000px;}
.y20_c01067{bottom:551.643000px;}
.y1f_c01067{bottom:568.081500px;}
.y1e_c01067{bottom:584.520000px;}
.y1d_c01067{bottom:600.958500px;}
.y1c_c01067{bottom:617.397000px;}
.y1b_c01067{bottom:633.835500px;}
.y1a_c01067{bottom:650.274000px;}
.y19_c01067{bottom:666.712500px;}
.y18_c01067{bottom:699.589500px;}
.y17_c01067{bottom:716.028000px;}
.y16_c01067{bottom:732.465000px;}
.y15_c01067{bottom:748.903500px;}
.y14_c01067{bottom:765.342000px;}
.y13_c01067{bottom:781.780500px;}
.y12_c01067{bottom:831.096000px;}
.y11_c01067{bottom:847.534500px;}
.y10_c01067{bottom:863.973000px;}
.yf_c01067{bottom:880.411500px;}
.ye_c01067{bottom:896.848500px;}
.yd_c01067{bottom:913.287000px;}
.yc_c01067{bottom:929.725500px;}
.yb_c01067{bottom:946.164000px;}
.ya_c01067{bottom:979.041000px;}
.y9_c01067{bottom:1011.918000px;}
.y8_c01067{bottom:1028.356500px;}
.y7_c01067{bottom:1044.795000px;}
.y6_c01067{bottom:1061.232000px;}
.y5_c01067{bottom:1077.670500px;}
.y4_c01067{bottom:1094.109000px;}
.y3_c01067{bottom:1126.986000px;}
.y2_c01067{bottom:1143.424500px;}
.y1_c01067{bottom:1159.863000px;}
.h3_c01067{height:35.190766px;}
.h2_c01067{height:36.007158px;}
.h4_c01067{height:52.332837px;}
.h0_c01067{height:1262.835000px;}
.h1_c01067{height:1263.000000px;}
.w0_c01067{width:892.920000px;}
.w1_c01067{width:893.250000px;}
.x0_c01067{left:0.000000px;}
.x2_c01067{left:137.122500px;}
.x3_c01067{left:143.770500px;}
.x4_c01067{left:177.007500px;}
.x6_c01067{left:196.948500px;}
.x1_c01067{left:203.596500px;}
.x5_c01067{left:210.243000px;}
.x7_c01067{left:435.249000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls4_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:0.078221pt;}
.ls2_c01067{letter-spacing:0.087539pt;}
.ls1_c01067{letter-spacing:0.092873pt;}
.ls3_c01067{letter-spacing:23.724873pt;}
.ws0_c01067{word-spacing:-23.622682pt;}
.ws1_c01067{word-spacing:-23.544461pt;}
.ws2_c01067{word-spacing:0.000000pt;}
.ws8_c01067{word-spacing:0.039110pt;}
.ws3_c01067{word-spacing:0.047940pt;}
.ws7_c01067{word-spacing:0.050460pt;}
.ws4_c01067{word-spacing:0.057259pt;}
.ws5_c01067{word-spacing:0.062592pt;}
.ws9_c01067{word-spacing:0.189730pt;}
.ws6_c01067{word-spacing:0.195063pt;}
._0_c01067{width:0.901547pt;}
.fs0_c01067{font-size:39.110400pt;}
.fs1_c01067{font-size:53.133867pt;}
.y0_c01067{bottom:0.000000pt;}
.y3b_c01067{bottom:39.333333pt;}
.y3a_c01067{bottom:81.217333pt;}
.y39_c01067{bottom:95.829333pt;}
.y38_c01067{bottom:110.441333pt;}
.y37_c01067{bottom:125.053333pt;}
.y36_c01067{bottom:154.277333pt;}
.y35_c01067{bottom:168.889333pt;}
.y34_c01067{bottom:183.500000pt;}
.y33_c01067{bottom:212.724000pt;}
.y32_c01067{bottom:227.336000pt;}
.y31_c01067{bottom:241.948000pt;}
.y30_c01067{bottom:256.560000pt;}
.y2f_c01067{bottom:271.172000pt;}
.y2e_c01067{bottom:285.784000pt;}
.y2d_c01067{bottom:300.396000pt;}
.y2c_c01067{bottom:315.008000pt;}
.y2b_c01067{bottom:329.620000pt;}
.y2a_c01067{bottom:344.230667pt;}
.y29_c01067{bottom:358.842667pt;}
.y28_c01067{bottom:373.454667pt;}
.y27_c01067{bottom:388.066667pt;}
.y26_c01067{bottom:402.678667pt;}
.y25_c01067{bottom:417.290667pt;}
.y24_c01067{bottom:431.902667pt;}
.y23_c01067{bottom:446.514667pt;}
.y22_c01067{bottom:461.126667pt;}
.y21_c01067{bottom:475.738667pt;}
.y20_c01067{bottom:490.349333pt;}
.y1f_c01067{bottom:504.961333pt;}
.y1e_c01067{bottom:519.573333pt;}
.y1d_c01067{bottom:534.185333pt;}
.y1c_c01067{bottom:548.797333pt;}
.y1b_c01067{bottom:563.409333pt;}
.y1a_c01067{bottom:578.021333pt;}
.y19_c01067{bottom:592.633333pt;}
.y18_c01067{bottom:621.857333pt;}
.y17_c01067{bottom:636.469333pt;}
.y16_c01067{bottom:651.080000pt;}
.y15_c01067{bottom:665.692000pt;}
.y14_c01067{bottom:680.304000pt;}
.y13_c01067{bottom:694.916000pt;}
.y12_c01067{bottom:738.752000pt;}
.y11_c01067{bottom:753.364000pt;}
.y10_c01067{bottom:767.976000pt;}
.yf_c01067{bottom:782.588000pt;}
.ye_c01067{bottom:797.198667pt;}
.yd_c01067{bottom:811.810667pt;}
.yc_c01067{bottom:826.422667pt;}
.yb_c01067{bottom:841.034667pt;}
.ya_c01067{bottom:870.258667pt;}
.y9_c01067{bottom:899.482667pt;}
.y8_c01067{bottom:914.094667pt;}
.y7_c01067{bottom:928.706667pt;}
.y6_c01067{bottom:943.317333pt;}
.y5_c01067{bottom:957.929333pt;}
.y4_c01067{bottom:972.541333pt;}
.y3_c01067{bottom:1001.765333pt;}
.y2_c01067{bottom:1016.377333pt;}
.y1_c01067{bottom:1030.989333pt;}
.h3_c01067{height:31.280681pt;}
.h2_c01067{height:32.006363pt;}
.h4_c01067{height:46.518078pt;}
.h0_c01067{height:1122.520000pt;}
.h1_c01067{height:1122.666667pt;}
.w0_c01067{width:793.706667pt;}
.w1_c01067{width:794.000000pt;}
.x0_c01067{left:0.000000pt;}
.x2_c01067{left:121.886667pt;}
.x3_c01067{left:127.796000pt;}
.x4_c01067{left:157.340000pt;}
.x6_c01067{left:175.065333pt;}
.x1_c01067{left:180.974667pt;}
.x5_c01067{left:186.882667pt;}
.x7_c01067{left:386.888000pt;}
}





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

.ir_c01068:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_b280071784c02fff0f522d8c.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01068;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01068;src:url('chunks/assets/font_99ca1ec798fd918b3e732319.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01068;src:url('chunks/assets/font_d2e05c93430b796640d902cc.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01068{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls3_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:0.087998px;}
.ls1_c01068{letter-spacing:0.098482px;}
.ls2_c01068{letter-spacing:0.104482px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01068{word-spacing:-33.713438px;}
.ws0_c01068{word-spacing:-26.575517px;}
.ws1_c01068{word-spacing:-26.487518px;}
.wsb_c01068{word-spacing:-19.725948px;}
.ws6_c01068{word-spacing:-18.769538px;}
.wsd_c01068{word-spacing:-15.960085px;}
.wsc_c01068{word-spacing:-15.900310px;}
.wse_c01068{word-spacing:-15.840534px;}
.ws10_c01068{word-spacing:-15.661207px;}
.ws9_c01068{word-spacing:-15.601432px;}
.ws5_c01068{word-spacing:-14.943900px;}
.wsa_c01068{word-spacing:-13.808164px;}
.ws8_c01068{word-spacing:-13.748388px;}
.ws3_c01068{word-spacing:-9.988424px;}
.ws4_c01068{word-spacing:-9.987499px;}
.ws11_c01068{word-spacing:0.000000px;}
.ws7_c01068{word-spacing:0.017856px;}
.ws2_c01068{word-spacing:43.038600px;}
._1_c01068{margin-left:-7.833025px;}
._6_c01068{margin-left:-4.656358px;}
._4_c01068{margin-left:-2.998955px;}
._0_c01068{margin-left:-1.549390px;}
._2_c01068{width:19.935816px;}
._5_c01068{width:21.220338px;}
._3_c01068{width:29.529146px;}
.fc5_c01068{color:rgb(0,0,207);}
.fc6_c01068{color:rgb(6,69,173);}
.fc4_c01068{color:rgb(207,92,0);}
.fc3_c01068{color:rgb(79,153,5);}
.fc2_c01068{color:rgb(33,74,135);}
.fc1_c01068{color:rgb(143,89,3);}
.fc0_c01068{color:rgb(0,0,0);}
.fs0_c01068{font-size:43.999200px;}
.fs2_c01068{font-size:59.775600px;}
.fs1_c01068{font-size:86.077200px;}
.y0_c01068{bottom:0.000000px;}
.y15_c01068{bottom:44.250000px;}
.y14_c01068{bottom:82.051500px;}
.y13_c01068{bottom:99.984000px;}
.y12_c01068{bottom:117.916500px;}
.y11_c01068{bottom:135.849000px;}
.y10_c01068{bottom:184.246500px;}
.yf_c01068{bottom:202.179000px;}
.ye_c01068{bottom:220.111500px;}
.yd_c01068{bottom:238.044000px;}
.yc_c01068{bottom:286.441500px;}
.yb_c01068{bottom:334.837500px;}
.ya_c01068{bottom:383.235000px;}
.y9_c01068{bottom:431.632500px;}
.y8_c01068{bottom:505.017000px;}
.y7_c01068{bottom:1061.232000px;}
.y6_c01068{bottom:1077.670500px;}
.y5_c01068{bottom:1094.109000px;}
.y4_c01068{bottom:1110.547500px;}
.y3_c01068{bottom:1126.986000px;}
.y2_c01068{bottom:1143.424500px;}
.y1_c01068{bottom:1159.863000px;}
.h2_c01068{height:36.007158px;}
.h4_c01068{height:40.511979px;}
.h5_c01068{height:52.332837px;}
.h3_c01068{height:58.337477px;}
.h0_c01068{height:1262.835000px;}
.h1_c01068{height:1263.000000px;}
.w0_c01068{width:892.920000px;}
.w1_c01068{width:893.250000px;}
.x0_c01068{left:0.000000px;}
.x3_c01068{left:127.558500px;}
.x1_c01068{left:137.122500px;}
.x2_c01068{left:177.007500px;}
.x4_c01068{left:435.249000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls3_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:0.078221pt;}
.ls1_c01068{letter-spacing:0.087539pt;}
.ls2_c01068{letter-spacing:0.092873pt;}
.wsf_c01068{word-spacing:-29.967501pt;}
.ws0_c01068{word-spacing:-23.622682pt;}
.ws1_c01068{word-spacing:-23.544461pt;}
.wsb_c01068{word-spacing:-17.534176pt;}
.ws6_c01068{word-spacing:-16.684034pt;}
.wsd_c01068{word-spacing:-14.186742pt;}
.wsc_c01068{word-spacing:-14.133609pt;}
.wse_c01068{word-spacing:-14.080475pt;}
.ws10_c01068{word-spacing:-13.921073pt;}
.ws9_c01068{word-spacing:-13.867939pt;}
.ws5_c01068{word-spacing:-13.283467pt;}
.wsa_c01068{word-spacing:-12.273923pt;}
.ws8_c01068{word-spacing:-12.220789pt;}
.ws3_c01068{word-spacing:-8.878599pt;}
.ws4_c01068{word-spacing:-8.877777pt;}
.ws11_c01068{word-spacing:0.000000pt;}
.ws7_c01068{word-spacing:0.015872pt;}
.ws2_c01068{word-spacing:38.256533pt;}
._1_c01068{margin-left:-6.962689pt;}
._6_c01068{margin-left:-4.138985pt;}
._4_c01068{margin-left:-2.665738pt;}
._0_c01068{margin-left:-1.377235pt;}
._2_c01068{width:17.720725pt;}
._5_c01068{width:18.862523pt;}
._3_c01068{width:26.248130pt;}
.fs0_c01068{font-size:39.110400pt;}
.fs2_c01068{font-size:53.133867pt;}
.fs1_c01068{font-size:76.513067pt;}
.y0_c01068{bottom:0.000000pt;}
.y15_c01068{bottom:39.333333pt;}
.y14_c01068{bottom:72.934667pt;}
.y13_c01068{bottom:88.874667pt;}
.y12_c01068{bottom:104.814667pt;}
.y11_c01068{bottom:120.754667pt;}
.y10_c01068{bottom:163.774667pt;}
.yf_c01068{bottom:179.714667pt;}
.ye_c01068{bottom:195.654667pt;}
.yd_c01068{bottom:211.594667pt;}
.yc_c01068{bottom:254.614667pt;}
.yb_c01068{bottom:297.633333pt;}
.ya_c01068{bottom:340.653333pt;}
.y9_c01068{bottom:383.673333pt;}
.y8_c01068{bottom:448.904000pt;}
.y7_c01068{bottom:943.317333pt;}
.y6_c01068{bottom:957.929333pt;}
.y5_c01068{bottom:972.541333pt;}
.y4_c01068{bottom:987.153333pt;}
.y3_c01068{bottom:1001.765333pt;}
.y2_c01068{bottom:1016.377333pt;}
.y1_c01068{bottom:1030.989333pt;}
.h2_c01068{height:32.006363pt;}
.h4_c01068{height:36.010648pt;}
.h5_c01068{height:46.518078pt;}
.h3_c01068{height:51.855535pt;}
.h0_c01068{height:1122.520000pt;}
.h1_c01068{height:1122.666667pt;}
.w0_c01068{width:793.706667pt;}
.w1_c01068{width:794.000000pt;}
.x0_c01068{left:0.000000pt;}
.x3_c01068{left:113.385333pt;}
.x1_c01068{left:121.886667pt;}
.x2_c01068{left:157.340000pt;}
.x4_c01068{left:386.888000pt;}
}





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

.ir_c01069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_a5eb08a6c2d33f12981155ab.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01069;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01069;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01069;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01069{vertical-align:0.000000px;}
.ls3_c01069{letter-spacing:0.000000px;}
.ls0_c01069{letter-spacing:0.087998px;}
.ls2_c01069{letter-spacing:0.098482px;}
.ls1_c01069{letter-spacing:0.104482px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01069{word-spacing:-33.713438px;}
.ws1_c01069{word-spacing:-26.575517px;}
.wsa_c01069{word-spacing:-26.487518px;}
.ws7_c01069{word-spacing:-18.769538px;}
.ws4_c01069{word-spacing:-17.574026px;}
.ws3_c01069{word-spacing:-17.215373px;}
.ws6_c01069{word-spacing:-16.199188px;}
.ws0_c01069{word-spacing:-14.884124px;}
.ws2_c01069{word-spacing:-13.927715px;}
.ws5_c01069{word-spacing:-10.351366px;}
.wse_c01069{word-spacing:0.000000px;}
.ws10_c01069{word-spacing:0.036900px;}
.wsb_c01069{word-spacing:0.043999px;}
.wsf_c01069{word-spacing:0.053933px;}
.ws11_c01069{word-spacing:0.070416px;}
.ws9_c01069{word-spacing:0.175997px;}
.wsd_c01069{word-spacing:0.213446px;}
.wsc_c01069{word-spacing:0.219446px;}
._2_c01069{margin-left:-3.825638px;}
._3_c01069{width:1.005737px;}
._0_c01069{width:24.567772px;}
._1_c01069{width:27.676103px;}
.fc5_c01069{color:rgb(0,0,207);}
.fc4_c01069{color:rgb(79,153,5);}
.fc3_c01069{color:rgb(207,92,0);}
.fc2_c01069{color:rgb(33,74,135);}
.fc1_c01069{color:rgb(143,89,3);}
.fc0_c01069{color:rgb(0,0,0);}
.fs1_c01069{font-size:43.999200px;}
.fs0_c01069{font-size:59.775600px;}
.y0_c01069{bottom:0.000000px;}
.y27_c01069{bottom:44.250000px;}
.y26_c01069{bottom:82.051500px;}
.y25_c01069{bottom:114.927000px;}
.y24_c01069{bottom:131.365500px;}
.y23_c01069{bottom:147.804000px;}
.y22_c01069{bottom:164.242500px;}
.y21_c01069{bottom:197.119500px;}
.y20_c01069{bottom:213.558000px;}
.y1f_c01069{bottom:229.996500px;}
.y1e_c01069{bottom:246.435000px;}
.y1d_c01069{bottom:262.873500px;}
.y1c_c01069{bottom:279.310500px;}
.y1b_c01069{bottom:295.749000px;}
.y1a_c01069{bottom:328.626000px;}
.y19_c01069{bottom:345.064500px;}
.y18_c01069{bottom:361.503000px;}
.y17_c01069{bottom:394.380000px;}
.y16_c01069{bottom:410.818500px;}
.y15_c01069{bottom:460.132500px;}
.y14_c01069{bottom:476.571000px;}
.y13_c01069{bottom:509.448000px;}
.y12_c01069{bottom:525.886500px;}
.y11_c01069{bottom:542.325000px;}
.y10_c01069{bottom:558.763500px;}
.yf_c01069{bottom:591.640500px;}
.ye_c01069{bottom:608.079000px;}
.yd_c01069{bottom:624.516000px;}
.yc_c01069{bottom:640.954500px;}
.yb_c01069{bottom:657.393000px;}
.ya_c01069{bottom:673.831500px;}
.y9_c01069{bottom:690.270000px;}
.y8_c01069{bottom:706.708500px;}
.y7_c01069{bottom:722.773500px;}
.y6_c01069{bottom:766.867500px;}
.y5_c01069{bottom:784.800000px;}
.y4_c01069{bottom:802.732500px;}
.y3_c01069{bottom:820.665000px;}
.y2_c01069{bottom:838.597500px;}
.y1_c01069{bottom:856.530000px;}
.h3_c01069{height:35.190766px;}
.h4_c01069{height:36.007158px;}
.h2_c01069{height:52.332837px;}
.h0_c01069{height:1262.835000px;}
.h1_c01069{height:1263.000000px;}
.w0_c01069{width:892.920000px;}
.w1_c01069{width:893.250000px;}
.x0_c01069{left:0.000000px;}
.x1_c01069{left:127.558500px;}
.x2_c01069{left:137.122500px;}
.x3_c01069{left:143.770500px;}
.x4_c01069{left:435.249000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls3_c01069{letter-spacing:0.000000pt;}
.ls0_c01069{letter-spacing:0.078221pt;}
.ls2_c01069{letter-spacing:0.087539pt;}
.ls1_c01069{letter-spacing:0.092873pt;}
.ws8_c01069{word-spacing:-29.967501pt;}
.ws1_c01069{word-spacing:-23.622682pt;}
.wsa_c01069{word-spacing:-23.544461pt;}
.ws7_c01069{word-spacing:-16.684034pt;}
.ws4_c01069{word-spacing:-15.621357pt;}
.ws3_c01069{word-spacing:-15.302554pt;}
.ws6_c01069{word-spacing:-14.399278pt;}
.ws0_c01069{word-spacing:-13.230333pt;}
.ws2_c01069{word-spacing:-12.380191pt;}
.ws5_c01069{word-spacing:-9.201214pt;}
.wse_c01069{word-spacing:0.000000pt;}
.ws10_c01069{word-spacing:0.032800pt;}
.wsb_c01069{word-spacing:0.039110pt;}
.wsf_c01069{word-spacing:0.047940pt;}
.ws11_c01069{word-spacing:0.062592pt;}
.ws9_c01069{word-spacing:0.156442pt;}
.wsd_c01069{word-spacing:0.189730pt;}
.wsc_c01069{word-spacing:0.195063pt;}
._2_c01069{margin-left:-3.400567pt;}
._3_c01069{width:0.893988pt;}
._0_c01069{width:21.838019pt;}
._1_c01069{width:24.600980pt;}
.fs1_c01069{font-size:39.110400pt;}
.fs0_c01069{font-size:53.133867pt;}
.y0_c01069{bottom:0.000000pt;}
.y27_c01069{bottom:39.333333pt;}
.y26_c01069{bottom:72.934667pt;}
.y25_c01069{bottom:102.157333pt;}
.y24_c01069{bottom:116.769333pt;}
.y23_c01069{bottom:131.381333pt;}
.y22_c01069{bottom:145.993333pt;}
.y21_c01069{bottom:175.217333pt;}
.y20_c01069{bottom:189.829333pt;}
.y1f_c01069{bottom:204.441333pt;}
.y1e_c01069{bottom:219.053333pt;}
.y1d_c01069{bottom:233.665333pt;}
.y1c_c01069{bottom:248.276000pt;}
.y1b_c01069{bottom:262.888000pt;}
.y1a_c01069{bottom:292.112000pt;}
.y19_c01069{bottom:306.724000pt;}
.y18_c01069{bottom:321.336000pt;}
.y17_c01069{bottom:350.560000pt;}
.y16_c01069{bottom:365.172000pt;}
.y15_c01069{bottom:409.006667pt;}
.y14_c01069{bottom:423.618667pt;}
.y13_c01069{bottom:452.842667pt;}
.y12_c01069{bottom:467.454667pt;}
.y11_c01069{bottom:482.066667pt;}
.y10_c01069{bottom:496.678667pt;}
.yf_c01069{bottom:525.902667pt;}
.ye_c01069{bottom:540.514667pt;}
.yd_c01069{bottom:555.125333pt;}
.yc_c01069{bottom:569.737333pt;}
.yb_c01069{bottom:584.349333pt;}
.ya_c01069{bottom:598.961333pt;}
.y9_c01069{bottom:613.573333pt;}
.y8_c01069{bottom:628.185333pt;}
.y7_c01069{bottom:642.465333pt;}
.y6_c01069{bottom:681.660000pt;}
.y5_c01069{bottom:697.600000pt;}
.y4_c01069{bottom:713.540000pt;}
.y3_c01069{bottom:729.480000pt;}
.y2_c01069{bottom:745.420000pt;}
.y1_c01069{bottom:761.360000pt;}
.h3_c01069{height:31.280681pt;}
.h4_c01069{height:32.006363pt;}
.h2_c01069{height:46.518078pt;}
.h0_c01069{height:1122.520000pt;}
.h1_c01069{height:1122.666667pt;}
.w0_c01069{width:793.706667pt;}
.w1_c01069{width:794.000000pt;}
.x0_c01069{left:0.000000pt;}
.x1_c01069{left:113.385333pt;}
.x2_c01069{left:121.886667pt;}
.x3_c01069{left:127.796000pt;}
.x4_c01069{left:386.888000pt;}
}





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

.ir_c01070:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_12f47c82246de2483b08af18.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01070;src:url('chunks/assets/font_d7de382ba545bc543f39d21f.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01070;src:url('chunks/assets/font_224593870d2e81eba27f73b9.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01070;src:url('chunks/assets/font_042a7a21c4d15f4f82b3e001.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01070{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls4_c01070{letter-spacing:0.000000px;}
.ls0_c01070{letter-spacing:0.087998px;}
.ls2_c01070{letter-spacing:0.098482px;}
.ls1_c01070{letter-spacing:0.104482px;}
.ls3_c01070{letter-spacing:26.690482px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:-26.575517px;}
.ws1_c01070{word-spacing:-26.487518px;}
.ws2_c01070{word-spacing:0.000000px;}
.ws8_c01070{word-spacing:0.043999px;}
.ws3_c01070{word-spacing:0.053933px;}
.ws5_c01070{word-spacing:0.064416px;}
.ws4_c01070{word-spacing:0.070416px;}
.ws7_c01070{word-spacing:0.073250px;}
.ws9_c01070{word-spacing:0.213446px;}
.ws6_c01070{word-spacing:0.219446px;}
._0_c01070{width:1.014240px;}
.fc5_c01070{color:rgb(0,0,207);}
.fc4_c01070{color:rgb(207,92,0);}
.fc3_c01070{color:rgb(143,89,3);}
.fc2_c01070{color:rgb(0,0,0);}
.fc1_c01070{color:rgb(79,153,5);}
.fc0_c01070{color:rgb(33,74,135);}
.fs0_c01070{font-size:43.999200px;}
.fs1_c01070{font-size:59.775600px;}
.y0_c01070{bottom:0.000000px;}
.y3c_c01070{bottom:44.250000px;}
.y3b_c01070{bottom:91.369500px;}
.y3a_c01070{bottom:107.808000px;}
.y39_c01070{bottom:124.246500px;}
.y38_c01070{bottom:140.685000px;}
.y37_c01070{bottom:157.123500px;}
.y36_c01070{bottom:190.000500px;}
.y35_c01070{bottom:206.437500px;}
.y34_c01070{bottom:222.876000px;}
.y33_c01070{bottom:255.753000px;}
.y32_c01070{bottom:272.191500px;}
.y31_c01070{bottom:288.630000px;}
.y30_c01070{bottom:305.068500px;}
.y2f_c01070{bottom:321.507000px;}
.y2e_c01070{bottom:337.945500px;}
.y2d_c01070{bottom:354.384000px;}
.y2c_c01070{bottom:370.822500px;}
.y2b_c01070{bottom:387.259500px;}
.y2a_c01070{bottom:403.698000px;}
.y29_c01070{bottom:420.136500px;}
.y28_c01070{bottom:436.575000px;}
.y27_c01070{bottom:453.013500px;}
.y26_c01070{bottom:469.452000px;}
.y25_c01070{bottom:485.890500px;}
.y24_c01070{bottom:502.329000px;}
.y23_c01070{bottom:518.767500px;}
.y22_c01070{bottom:535.206000px;}
.y21_c01070{bottom:551.643000px;}
.y20_c01070{bottom:568.081500px;}
.y1f_c01070{bottom:584.520000px;}
.y1e_c01070{bottom:600.958500px;}
.y1d_c01070{bottom:617.397000px;}
.y1c_c01070{bottom:633.835500px;}
.y1b_c01070{bottom:650.274000px;}
.y1a_c01070{bottom:666.712500px;}
.y19_c01070{bottom:683.151000px;}
.y18_c01070{bottom:716.028000px;}
.y17_c01070{bottom:732.465000px;}
.y16_c01070{bottom:748.903500px;}
.y15_c01070{bottom:765.342000px;}
.y14_c01070{bottom:781.780500px;}
.y13_c01070{bottom:798.219000px;}
.y12_c01070{bottom:831.096000px;}
.y11_c01070{bottom:847.534500px;}
.y10_c01070{bottom:863.973000px;}
.yf_c01070{bottom:880.411500px;}
.ye_c01070{bottom:896.848500px;}
.yd_c01070{bottom:913.287000px;}
.yc_c01070{bottom:929.725500px;}
.yb_c01070{bottom:946.164000px;}
.ya_c01070{bottom:979.041000px;}
.y9_c01070{bottom:1011.918000px;}
.y8_c01070{bottom:1028.356500px;}
.y7_c01070{bottom:1044.795000px;}
.y6_c01070{bottom:1061.232000px;}
.y5_c01070{bottom:1077.670500px;}
.y4_c01070{bottom:1094.109000px;}
.y3_c01070{bottom:1126.986000px;}
.y2_c01070{bottom:1143.424500px;}
.y1_c01070{bottom:1159.863000px;}
.h3_c01070{height:35.190766px;}
.h2_c01070{height:36.007158px;}
.h4_c01070{height:52.332837px;}
.h0_c01070{height:1262.835000px;}
.h1_c01070{height:1263.000000px;}
.w0_c01070{width:892.920000px;}
.w1_c01070{width:893.250000px;}
.x0_c01070{left:0.000000px;}
.x2_c01070{left:137.122500px;}
.x3_c01070{left:143.770500px;}
.x4_c01070{left:177.007500px;}
.x6_c01070{left:196.948500px;}
.x1_c01070{left:203.596500px;}
.x5_c01070{left:210.243000px;}
.x7_c01070{left:435.249000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls4_c01070{letter-spacing:0.000000pt;}
.ls0_c01070{letter-spacing:0.078221pt;}
.ls2_c01070{letter-spacing:0.087539pt;}
.ls1_c01070{letter-spacing:0.092873pt;}
.ls3_c01070{letter-spacing:23.724873pt;}
.ws0_c01070{word-spacing:-23.622682pt;}
.ws1_c01070{word-spacing:-23.544461pt;}
.ws2_c01070{word-spacing:0.000000pt;}
.ws8_c01070{word-spacing:0.039110pt;}
.ws3_c01070{word-spacing:0.047940pt;}
.ws5_c01070{word-spacing:0.057259pt;}
.ws4_c01070{word-spacing:0.062592pt;}
.ws7_c01070{word-spacing:0.065111pt;}
.ws9_c01070{word-spacing:0.189730pt;}
.ws6_c01070{word-spacing:0.195063pt;}
._0_c01070{width:0.901547pt;}
.fs0_c01070{font-size:39.110400pt;}
.fs1_c01070{font-size:53.133867pt;}
.y0_c01070{bottom:0.000000pt;}
.y3c_c01070{bottom:39.333333pt;}
.y3b_c01070{bottom:81.217333pt;}
.y3a_c01070{bottom:95.829333pt;}
.y39_c01070{bottom:110.441333pt;}
.y38_c01070{bottom:125.053333pt;}
.y37_c01070{bottom:139.665333pt;}
.y36_c01070{bottom:168.889333pt;}
.y35_c01070{bottom:183.500000pt;}
.y34_c01070{bottom:198.112000pt;}
.y33_c01070{bottom:227.336000pt;}
.y32_c01070{bottom:241.948000pt;}
.y31_c01070{bottom:256.560000pt;}
.y30_c01070{bottom:271.172000pt;}
.y2f_c01070{bottom:285.784000pt;}
.y2e_c01070{bottom:300.396000pt;}
.y2d_c01070{bottom:315.008000pt;}
.y2c_c01070{bottom:329.620000pt;}
.y2b_c01070{bottom:344.230667pt;}
.y2a_c01070{bottom:358.842667pt;}
.y29_c01070{bottom:373.454667pt;}
.y28_c01070{bottom:388.066667pt;}
.y27_c01070{bottom:402.678667pt;}
.y26_c01070{bottom:417.290667pt;}
.y25_c01070{bottom:431.902667pt;}
.y24_c01070{bottom:446.514667pt;}
.y23_c01070{bottom:461.126667pt;}
.y22_c01070{bottom:475.738667pt;}
.y21_c01070{bottom:490.349333pt;}
.y20_c01070{bottom:504.961333pt;}
.y1f_c01070{bottom:519.573333pt;}
.y1e_c01070{bottom:534.185333pt;}
.y1d_c01070{bottom:548.797333pt;}
.y1c_c01070{bottom:563.409333pt;}
.y1b_c01070{bottom:578.021333pt;}
.y1a_c01070{bottom:592.633333pt;}
.y19_c01070{bottom:607.245333pt;}
.y18_c01070{bottom:636.469333pt;}
.y17_c01070{bottom:651.080000pt;}
.y16_c01070{bottom:665.692000pt;}
.y15_c01070{bottom:680.304000pt;}
.y14_c01070{bottom:694.916000pt;}
.y13_c01070{bottom:709.528000pt;}
.y12_c01070{bottom:738.752000pt;}
.y11_c01070{bottom:753.364000pt;}
.y10_c01070{bottom:767.976000pt;}
.yf_c01070{bottom:782.588000pt;}
.ye_c01070{bottom:797.198667pt;}
.yd_c01070{bottom:811.810667pt;}
.yc_c01070{bottom:826.422667pt;}
.yb_c01070{bottom:841.034667pt;}
.ya_c01070{bottom:870.258667pt;}
.y9_c01070{bottom:899.482667pt;}
.y8_c01070{bottom:914.094667pt;}
.y7_c01070{bottom:928.706667pt;}
.y6_c01070{bottom:943.317333pt;}
.y5_c01070{bottom:957.929333pt;}
.y4_c01070{bottom:972.541333pt;}
.y3_c01070{bottom:1001.765333pt;}
.y2_c01070{bottom:1016.377333pt;}
.y1_c01070{bottom:1030.989333pt;}
.h3_c01070{height:31.280681pt;}
.h2_c01070{height:32.006363pt;}
.h4_c01070{height:46.518078pt;}
.h0_c01070{height:1122.520000pt;}
.h1_c01070{height:1122.666667pt;}
.w0_c01070{width:793.706667pt;}
.w1_c01070{width:794.000000pt;}
.x0_c01070{left:0.000000pt;}
.x2_c01070{left:121.886667pt;}
.x3_c01070{left:127.796000pt;}
.x4_c01070{left:157.340000pt;}
.x6_c01070{left:175.065333pt;}
.x1_c01070{left:180.974667pt;}
.x5_c01070{left:186.882667pt;}
.x7_c01070{left:386.888000pt;}
}





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

.ir_c01071:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_496a338c0d0965d9f479126d.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01071;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01071;src:url('chunks/assets/font_3cfe33fee2fe050fe8d315d4.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01071;src:url('chunks/assets/font_2acd534763fb2bd5eb26e558.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls3_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:0.087998px;}
.ls1_c01071{letter-spacing:0.098482px;}
.ls2_c01071{letter-spacing:0.104482px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:-26.575517px;}
.ws1_c01071{word-spacing:-26.487518px;}
.ws6_c01071{word-spacing:-18.769538px;}
.wsc_c01071{word-spacing:-17.454475px;}
.wsd_c01071{word-spacing:-17.394700px;}
.wsb_c01071{word-spacing:-17.215373px;}
.ws9_c01071{word-spacing:-15.601432px;}
.ws5_c01071{word-spacing:-14.943900px;}
.wsa_c01071{word-spacing:-13.808164px;}
.ws8_c01071{word-spacing:-13.748388px;}
.wse_c01071{word-spacing:-13.031081px;}
.wsf_c01071{word-spacing:-12.971305px;}
.ws3_c01071{word-spacing:-9.988424px;}
.ws4_c01071{word-spacing:-9.987499px;}
.ws10_c01071{word-spacing:0.000000px;}
.ws7_c01071{word-spacing:0.017856px;}
.ws2_c01071{word-spacing:43.038600px;}
._1_c01071{margin-left:-7.833025px;}
._6_c01071{margin-left:-4.656358px;}
._2_c01071{margin-left:-3.184856px;}
._0_c01071{margin-left:-1.549390px;}
._3_c01071{width:19.935816px;}
._5_c01071{width:21.220338px;}
._7_c01071{width:22.595177px;}
._4_c01071{width:29.529146px;}
._8_c01071{width:37.277333px;}
.fc5_c01071{color:rgb(79,153,5);}
.fc4_c01071{color:rgb(33,74,135);}
.fc3_c01071{color:rgb(0,0,207);}
.fc6_c01071{color:rgb(6,69,173);}
.fc2_c01071{color:rgb(207,92,0);}
.fc1_c01071{color:rgb(143,89,3);}
.fc0_c01071{color:rgb(0,0,0);}
.fs0_c01071{font-size:43.999200px;}
.fs2_c01071{font-size:59.775600px;}
.fs1_c01071{font-size:86.077200px;}
.y0_c01071{bottom:0.000000px;}
.y14_c01071{bottom:44.250000px;}
.y13_c01071{bottom:82.051500px;}
.y12_c01071{bottom:99.984000px;}
.y11_c01071{bottom:117.916500px;}
.y10_c01071{bottom:135.849000px;}
.yf_c01071{bottom:185.784000px;}
.ye_c01071{bottom:203.718000px;}
.yd_c01071{bottom:221.650500px;}
.yc_c01071{bottom:239.583000px;}
.yb_c01071{bottom:289.518000px;}
.ya_c01071{bottom:339.454500px;}
.y9_c01071{bottom:389.389500px;}
.y8_c01071{bottom:439.326000px;}
.y7_c01071{bottom:514.936500px;}
.y6_c01071{bottom:1077.670500px;}
.y5_c01071{bottom:1094.109000px;}
.y4_c01071{bottom:1110.547500px;}
.y3_c01071{bottom:1126.986000px;}
.y2_c01071{bottom:1143.424500px;}
.y1_c01071{bottom:1159.863000px;}
.h2_c01071{height:36.007158px;}
.h4_c01071{height:40.511979px;}
.h5_c01071{height:52.332837px;}
.h3_c01071{height:58.337477px;}
.h0_c01071{height:1262.835000px;}
.h1_c01071{height:1263.000000px;}
.w0_c01071{width:892.920000px;}
.w1_c01071{width:893.250000px;}
.x0_c01071{left:0.000000px;}
.x3_c01071{left:127.558500px;}
.x1_c01071{left:137.122500px;}
.x2_c01071{left:177.007500px;}
.x4_c01071{left:435.249000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls3_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:0.078221pt;}
.ls1_c01071{letter-spacing:0.087539pt;}
.ls2_c01071{letter-spacing:0.092873pt;}
.ws0_c01071{word-spacing:-23.622682pt;}
.ws1_c01071{word-spacing:-23.544461pt;}
.ws6_c01071{word-spacing:-16.684034pt;}
.wsc_c01071{word-spacing:-15.515089pt;}
.wsd_c01071{word-spacing:-15.461955pt;}
.wsb_c01071{word-spacing:-15.302554pt;}
.ws9_c01071{word-spacing:-13.867939pt;}
.ws5_c01071{word-spacing:-13.283467pt;}
.wsa_c01071{word-spacing:-12.273923pt;}
.ws8_c01071{word-spacing:-12.220789pt;}
.wse_c01071{word-spacing:-11.583183pt;}
.wsf_c01071{word-spacing:-11.530049pt;}
.ws3_c01071{word-spacing:-8.878599pt;}
.ws4_c01071{word-spacing:-8.877777pt;}
.ws10_c01071{word-spacing:0.000000pt;}
.ws7_c01071{word-spacing:0.015872pt;}
.ws2_c01071{word-spacing:38.256533pt;}
._1_c01071{margin-left:-6.962689pt;}
._6_c01071{margin-left:-4.138985pt;}
._2_c01071{margin-left:-2.830983pt;}
._0_c01071{margin-left:-1.377235pt;}
._3_c01071{width:17.720725pt;}
._5_c01071{width:18.862523pt;}
._7_c01071{width:20.084602pt;}
._4_c01071{width:26.248130pt;}
._8_c01071{width:33.135407pt;}
.fs0_c01071{font-size:39.110400pt;}
.fs2_c01071{font-size:53.133867pt;}
.fs1_c01071{font-size:76.513067pt;}
.y0_c01071{bottom:0.000000pt;}
.y14_c01071{bottom:39.333333pt;}
.y13_c01071{bottom:72.934667pt;}
.y12_c01071{bottom:88.874667pt;}
.y11_c01071{bottom:104.814667pt;}
.y10_c01071{bottom:120.754667pt;}
.yf_c01071{bottom:165.141333pt;}
.ye_c01071{bottom:181.082667pt;}
.yd_c01071{bottom:197.022667pt;}
.yc_c01071{bottom:212.962667pt;}
.yb_c01071{bottom:257.349333pt;}
.ya_c01071{bottom:301.737333pt;}
.y9_c01071{bottom:346.124000pt;}
.y8_c01071{bottom:390.512000pt;}
.y7_c01071{bottom:457.721333pt;}
.y6_c01071{bottom:957.929333pt;}
.y5_c01071{bottom:972.541333pt;}
.y4_c01071{bottom:987.153333pt;}
.y3_c01071{bottom:1001.765333pt;}
.y2_c01071{bottom:1016.377333pt;}
.y1_c01071{bottom:1030.989333pt;}
.h2_c01071{height:32.006363pt;}
.h4_c01071{height:36.010648pt;}
.h5_c01071{height:46.518078pt;}
.h3_c01071{height:51.855535pt;}
.h0_c01071{height:1122.520000pt;}
.h1_c01071{height:1122.666667pt;}
.w0_c01071{width:793.706667pt;}
.w1_c01071{width:794.000000pt;}
.x0_c01071{left:0.000000pt;}
.x3_c01071{left:113.385333pt;}
.x1_c01071{left:121.886667pt;}
.x2_c01071{left:157.340000pt;}
.x4_c01071{left:386.888000pt;}
}





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

.ir_c01072:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_de1e7952488326b6dca93a0f.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01072;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01072;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01072;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls3_c01072{letter-spacing:0.000000px;}
.ls0_c01072{letter-spacing:0.087998px;}
.ls2_c01072{letter-spacing:0.098482px;}
.ls1_c01072{letter-spacing:0.104482px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01072{word-spacing:-33.713438px;}
.ws1_c01072{word-spacing:-26.575517px;}
.wsa_c01072{word-spacing:-26.487518px;}
.ws7_c01072{word-spacing:-18.769538px;}
.ws4_c01072{word-spacing:-17.574026px;}
.ws3_c01072{word-spacing:-17.215373px;}
.ws6_c01072{word-spacing:-16.199188px;}
.ws0_c01072{word-spacing:-14.884124px;}
.ws2_c01072{word-spacing:-13.927715px;}
.ws5_c01072{word-spacing:-10.351366px;}
.wse_c01072{word-spacing:0.000000px;}
.ws10_c01072{word-spacing:0.036900px;}
.wsb_c01072{word-spacing:0.043999px;}
.wsf_c01072{word-spacing:0.053933px;}
.ws11_c01072{word-spacing:0.070416px;}
.ws9_c01072{word-spacing:0.175997px;}
.wsd_c01072{word-spacing:0.213446px;}
.wsc_c01072{word-spacing:0.219446px;}
._2_c01072{margin-left:-3.825638px;}
._3_c01072{width:1.005737px;}
._0_c01072{width:24.567772px;}
._1_c01072{width:27.676103px;}
.fc5_c01072{color:rgb(0,0,207);}
.fc4_c01072{color:rgb(79,153,5);}
.fc3_c01072{color:rgb(207,92,0);}
.fc2_c01072{color:rgb(33,74,135);}
.fc1_c01072{color:rgb(143,89,3);}
.fc0_c01072{color:rgb(0,0,0);}
.fs1_c01072{font-size:43.999200px;}
.fs0_c01072{font-size:59.775600px;}
.y0_c01072{bottom:0.000000px;}
.y27_c01072{bottom:44.250000px;}
.y26_c01072{bottom:82.051500px;}
.y25_c01072{bottom:114.927000px;}
.y24_c01072{bottom:131.365500px;}
.y23_c01072{bottom:147.804000px;}
.y22_c01072{bottom:164.242500px;}
.y21_c01072{bottom:197.119500px;}
.y20_c01072{bottom:213.558000px;}
.y1f_c01072{bottom:229.996500px;}
.y1e_c01072{bottom:246.435000px;}
.y1d_c01072{bottom:262.873500px;}
.y1c_c01072{bottom:279.310500px;}
.y1b_c01072{bottom:295.749000px;}
.y1a_c01072{bottom:328.626000px;}
.y19_c01072{bottom:345.064500px;}
.y18_c01072{bottom:361.503000px;}
.y17_c01072{bottom:394.380000px;}
.y16_c01072{bottom:410.818500px;}
.y15_c01072{bottom:460.132500px;}
.y14_c01072{bottom:476.571000px;}
.y13_c01072{bottom:509.448000px;}
.y12_c01072{bottom:525.886500px;}
.y11_c01072{bottom:542.325000px;}
.y10_c01072{bottom:558.763500px;}
.yf_c01072{bottom:591.640500px;}
.ye_c01072{bottom:608.079000px;}
.yd_c01072{bottom:624.516000px;}
.yc_c01072{bottom:640.954500px;}
.yb_c01072{bottom:657.393000px;}
.ya_c01072{bottom:673.831500px;}
.y9_c01072{bottom:690.270000px;}
.y8_c01072{bottom:706.708500px;}
.y7_c01072{bottom:722.773500px;}
.y6_c01072{bottom:766.867500px;}
.y5_c01072{bottom:784.800000px;}
.y4_c01072{bottom:802.732500px;}
.y3_c01072{bottom:820.665000px;}
.y2_c01072{bottom:838.597500px;}
.y1_c01072{bottom:856.530000px;}
.h3_c01072{height:35.190766px;}
.h4_c01072{height:36.007158px;}
.h2_c01072{height:52.332837px;}
.h0_c01072{height:1262.835000px;}
.h1_c01072{height:1263.000000px;}
.w0_c01072{width:892.920000px;}
.w1_c01072{width:893.250000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:127.558500px;}
.x2_c01072{left:137.122500px;}
.x3_c01072{left:143.770500px;}
.x4_c01072{left:435.249000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls3_c01072{letter-spacing:0.000000pt;}
.ls0_c01072{letter-spacing:0.078221pt;}
.ls2_c01072{letter-spacing:0.087539pt;}
.ls1_c01072{letter-spacing:0.092873pt;}
.ws8_c01072{word-spacing:-29.967501pt;}
.ws1_c01072{word-spacing:-23.622682pt;}
.wsa_c01072{word-spacing:-23.544461pt;}
.ws7_c01072{word-spacing:-16.684034pt;}
.ws4_c01072{word-spacing:-15.621357pt;}
.ws3_c01072{word-spacing:-15.302554pt;}
.ws6_c01072{word-spacing:-14.399278pt;}
.ws0_c01072{word-spacing:-13.230333pt;}
.ws2_c01072{word-spacing:-12.380191pt;}
.ws5_c01072{word-spacing:-9.201214pt;}
.wse_c01072{word-spacing:0.000000pt;}
.ws10_c01072{word-spacing:0.032800pt;}
.wsb_c01072{word-spacing:0.039110pt;}
.wsf_c01072{word-spacing:0.047940pt;}
.ws11_c01072{word-spacing:0.062592pt;}
.ws9_c01072{word-spacing:0.156442pt;}
.wsd_c01072{word-spacing:0.189730pt;}
.wsc_c01072{word-spacing:0.195063pt;}
._2_c01072{margin-left:-3.400567pt;}
._3_c01072{width:0.893988pt;}
._0_c01072{width:21.838019pt;}
._1_c01072{width:24.600980pt;}
.fs1_c01072{font-size:39.110400pt;}
.fs0_c01072{font-size:53.133867pt;}
.y0_c01072{bottom:0.000000pt;}
.y27_c01072{bottom:39.333333pt;}
.y26_c01072{bottom:72.934667pt;}
.y25_c01072{bottom:102.157333pt;}
.y24_c01072{bottom:116.769333pt;}
.y23_c01072{bottom:131.381333pt;}
.y22_c01072{bottom:145.993333pt;}
.y21_c01072{bottom:175.217333pt;}
.y20_c01072{bottom:189.829333pt;}
.y1f_c01072{bottom:204.441333pt;}
.y1e_c01072{bottom:219.053333pt;}
.y1d_c01072{bottom:233.665333pt;}
.y1c_c01072{bottom:248.276000pt;}
.y1b_c01072{bottom:262.888000pt;}
.y1a_c01072{bottom:292.112000pt;}
.y19_c01072{bottom:306.724000pt;}
.y18_c01072{bottom:321.336000pt;}
.y17_c01072{bottom:350.560000pt;}
.y16_c01072{bottom:365.172000pt;}
.y15_c01072{bottom:409.006667pt;}
.y14_c01072{bottom:423.618667pt;}
.y13_c01072{bottom:452.842667pt;}
.y12_c01072{bottom:467.454667pt;}
.y11_c01072{bottom:482.066667pt;}
.y10_c01072{bottom:496.678667pt;}
.yf_c01072{bottom:525.902667pt;}
.ye_c01072{bottom:540.514667pt;}
.yd_c01072{bottom:555.125333pt;}
.yc_c01072{bottom:569.737333pt;}
.yb_c01072{bottom:584.349333pt;}
.ya_c01072{bottom:598.961333pt;}
.y9_c01072{bottom:613.573333pt;}
.y8_c01072{bottom:628.185333pt;}
.y7_c01072{bottom:642.465333pt;}
.y6_c01072{bottom:681.660000pt;}
.y5_c01072{bottom:697.600000pt;}
.y4_c01072{bottom:713.540000pt;}
.y3_c01072{bottom:729.480000pt;}
.y2_c01072{bottom:745.420000pt;}
.y1_c01072{bottom:761.360000pt;}
.h3_c01072{height:31.280681pt;}
.h4_c01072{height:32.006363pt;}
.h2_c01072{height:46.518078pt;}
.h0_c01072{height:1122.520000pt;}
.h1_c01072{height:1122.666667pt;}
.w0_c01072{width:793.706667pt;}
.w1_c01072{width:794.000000pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:113.385333pt;}
.x2_c01072{left:121.886667pt;}
.x3_c01072{left:127.796000pt;}
.x4_c01072{left:386.888000pt;}
}





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

.ir_c01073:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_eb86c72b16feb3d7500c6ef4.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01073;src:url('chunks/assets/font_d7de382ba545bc543f39d21f.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01073;src:url('chunks/assets/font_2dd1dee501183201c923c493.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01073;src:url('chunks/assets/font_bdeb4870cee2c89b45fe7a1e.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls4_c01073{letter-spacing:0.000000px;}
.ls0_c01073{letter-spacing:0.087998px;}
.ls1_c01073{letter-spacing:0.098482px;}
.ls2_c01073{letter-spacing:0.104482px;}
.ls3_c01073{letter-spacing:26.690482px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:-26.575517px;}
.ws1_c01073{word-spacing:-26.487518px;}
.ws2_c01073{word-spacing:0.000000px;}
.ws6_c01073{word-spacing:0.043999px;}
.ws3_c01073{word-spacing:0.053933px;}
.ws4_c01073{word-spacing:0.064416px;}
.ws5_c01073{word-spacing:0.070416px;}
.ws8_c01073{word-spacing:0.073800px;}
.ws7_c01073{word-spacing:0.213446px;}
._1_c01073{width:1.084656px;}
._0_c01073{width:106.830058px;}
.fc5_c01073{color:rgb(0,0,207);}
.fc4_c01073{color:rgb(207,92,0);}
.fc3_c01073{color:rgb(143,89,3);}
.fc2_c01073{color:rgb(0,0,0);}
.fc1_c01073{color:rgb(79,153,5);}
.fc0_c01073{color:rgb(33,74,135);}
.fs0_c01073{font-size:43.999200px;}
.fs1_c01073{font-size:59.775600px;}
.y0_c01073{bottom:0.000000px;}
.y3c_c01073{bottom:44.250000px;}
.y3b_c01073{bottom:91.369500px;}
.y3a_c01073{bottom:107.808000px;}
.y39_c01073{bottom:124.246500px;}
.y38_c01073{bottom:140.685000px;}
.y37_c01073{bottom:157.123500px;}
.y36_c01073{bottom:190.000500px;}
.y35_c01073{bottom:206.437500px;}
.y34_c01073{bottom:222.876000px;}
.y33_c01073{bottom:255.753000px;}
.y32_c01073{bottom:272.191500px;}
.y31_c01073{bottom:288.630000px;}
.y30_c01073{bottom:305.068500px;}
.y2f_c01073{bottom:321.507000px;}
.y2e_c01073{bottom:337.945500px;}
.y2d_c01073{bottom:354.384000px;}
.y2c_c01073{bottom:370.822500px;}
.y2b_c01073{bottom:387.259500px;}
.y2a_c01073{bottom:403.698000px;}
.y29_c01073{bottom:420.136500px;}
.y28_c01073{bottom:436.575000px;}
.y27_c01073{bottom:453.013500px;}
.y26_c01073{bottom:469.452000px;}
.y25_c01073{bottom:485.890500px;}
.y24_c01073{bottom:502.329000px;}
.y23_c01073{bottom:518.767500px;}
.y22_c01073{bottom:535.206000px;}
.y21_c01073{bottom:551.643000px;}
.y20_c01073{bottom:568.081500px;}
.y1f_c01073{bottom:584.520000px;}
.y1e_c01073{bottom:600.958500px;}
.y1d_c01073{bottom:617.397000px;}
.y1c_c01073{bottom:633.835500px;}
.y1b_c01073{bottom:650.274000px;}
.y1a_c01073{bottom:666.712500px;}
.y19_c01073{bottom:683.151000px;}
.y18_c01073{bottom:716.028000px;}
.y17_c01073{bottom:732.465000px;}
.y16_c01073{bottom:748.903500px;}
.y15_c01073{bottom:765.342000px;}
.y14_c01073{bottom:781.780500px;}
.y13_c01073{bottom:798.219000px;}
.y12_c01073{bottom:831.096000px;}
.y11_c01073{bottom:847.534500px;}
.y10_c01073{bottom:863.973000px;}
.yf_c01073{bottom:880.411500px;}
.ye_c01073{bottom:896.848500px;}
.yd_c01073{bottom:913.287000px;}
.yc_c01073{bottom:929.725500px;}
.yb_c01073{bottom:946.164000px;}
.ya_c01073{bottom:979.041000px;}
.y9_c01073{bottom:1011.918000px;}
.y8_c01073{bottom:1028.356500px;}
.y7_c01073{bottom:1044.795000px;}
.y6_c01073{bottom:1061.232000px;}
.y5_c01073{bottom:1077.670500px;}
.y4_c01073{bottom:1094.109000px;}
.y3_c01073{bottom:1126.986000px;}
.y2_c01073{bottom:1143.424500px;}
.y1_c01073{bottom:1159.863000px;}
.h3_c01073{height:35.190766px;}
.h2_c01073{height:36.007158px;}
.h4_c01073{height:52.332837px;}
.h0_c01073{height:1262.835000px;}
.h1_c01073{height:1263.000000px;}
.w0_c01073{width:892.920000px;}
.w1_c01073{width:893.250000px;}
.x0_c01073{left:0.000000px;}
.x2_c01073{left:137.122500px;}
.x3_c01073{left:143.770500px;}
.x4_c01073{left:177.007500px;}
.x6_c01073{left:196.948500px;}
.x1_c01073{left:203.596500px;}
.x5_c01073{left:210.243000px;}
.x7_c01073{left:435.249000px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls4_c01073{letter-spacing:0.000000pt;}
.ls0_c01073{letter-spacing:0.078221pt;}
.ls1_c01073{letter-spacing:0.087539pt;}
.ls2_c01073{letter-spacing:0.092873pt;}
.ls3_c01073{letter-spacing:23.724873pt;}
.ws0_c01073{word-spacing:-23.622682pt;}
.ws1_c01073{word-spacing:-23.544461pt;}
.ws2_c01073{word-spacing:0.000000pt;}
.ws6_c01073{word-spacing:0.039110pt;}
.ws3_c01073{word-spacing:0.047940pt;}
.ws4_c01073{word-spacing:0.057259pt;}
.ws5_c01073{word-spacing:0.062592pt;}
.ws8_c01073{word-spacing:0.065600pt;}
.ws7_c01073{word-spacing:0.189730pt;}
._1_c01073{width:0.964139pt;}
._0_c01073{width:94.960051pt;}
.fs0_c01073{font-size:39.110400pt;}
.fs1_c01073{font-size:53.133867pt;}
.y0_c01073{bottom:0.000000pt;}
.y3c_c01073{bottom:39.333333pt;}
.y3b_c01073{bottom:81.217333pt;}
.y3a_c01073{bottom:95.829333pt;}
.y39_c01073{bottom:110.441333pt;}
.y38_c01073{bottom:125.053333pt;}
.y37_c01073{bottom:139.665333pt;}
.y36_c01073{bottom:168.889333pt;}
.y35_c01073{bottom:183.500000pt;}
.y34_c01073{bottom:198.112000pt;}
.y33_c01073{bottom:227.336000pt;}
.y32_c01073{bottom:241.948000pt;}
.y31_c01073{bottom:256.560000pt;}
.y30_c01073{bottom:271.172000pt;}
.y2f_c01073{bottom:285.784000pt;}
.y2e_c01073{bottom:300.396000pt;}
.y2d_c01073{bottom:315.008000pt;}
.y2c_c01073{bottom:329.620000pt;}
.y2b_c01073{bottom:344.230667pt;}
.y2a_c01073{bottom:358.842667pt;}
.y29_c01073{bottom:373.454667pt;}
.y28_c01073{bottom:388.066667pt;}
.y27_c01073{bottom:402.678667pt;}
.y26_c01073{bottom:417.290667pt;}
.y25_c01073{bottom:431.902667pt;}
.y24_c01073{bottom:446.514667pt;}
.y23_c01073{bottom:461.126667pt;}
.y22_c01073{bottom:475.738667pt;}
.y21_c01073{bottom:490.349333pt;}
.y20_c01073{bottom:504.961333pt;}
.y1f_c01073{bottom:519.573333pt;}
.y1e_c01073{bottom:534.185333pt;}
.y1d_c01073{bottom:548.797333pt;}
.y1c_c01073{bottom:563.409333pt;}
.y1b_c01073{bottom:578.021333pt;}
.y1a_c01073{bottom:592.633333pt;}
.y19_c01073{bottom:607.245333pt;}
.y18_c01073{bottom:636.469333pt;}
.y17_c01073{bottom:651.080000pt;}
.y16_c01073{bottom:665.692000pt;}
.y15_c01073{bottom:680.304000pt;}
.y14_c01073{bottom:694.916000pt;}
.y13_c01073{bottom:709.528000pt;}
.y12_c01073{bottom:738.752000pt;}
.y11_c01073{bottom:753.364000pt;}
.y10_c01073{bottom:767.976000pt;}
.yf_c01073{bottom:782.588000pt;}
.ye_c01073{bottom:797.198667pt;}
.yd_c01073{bottom:811.810667pt;}
.yc_c01073{bottom:826.422667pt;}
.yb_c01073{bottom:841.034667pt;}
.ya_c01073{bottom:870.258667pt;}
.y9_c01073{bottom:899.482667pt;}
.y8_c01073{bottom:914.094667pt;}
.y7_c01073{bottom:928.706667pt;}
.y6_c01073{bottom:943.317333pt;}
.y5_c01073{bottom:957.929333pt;}
.y4_c01073{bottom:972.541333pt;}
.y3_c01073{bottom:1001.765333pt;}
.y2_c01073{bottom:1016.377333pt;}
.y1_c01073{bottom:1030.989333pt;}
.h3_c01073{height:31.280681pt;}
.h2_c01073{height:32.006363pt;}
.h4_c01073{height:46.518078pt;}
.h0_c01073{height:1122.520000pt;}
.h1_c01073{height:1122.666667pt;}
.w0_c01073{width:793.706667pt;}
.w1_c01073{width:794.000000pt;}
.x0_c01073{left:0.000000pt;}
.x2_c01073{left:121.886667pt;}
.x3_c01073{left:127.796000pt;}
.x4_c01073{left:157.340000pt;}
.x6_c01073{left:175.065333pt;}
.x1_c01073{left:180.974667pt;}
.x5_c01073{left:186.882667pt;}
.x7_c01073{left:386.888000pt;}
}





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

.ir_c01074:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_ee3ea83c1a6198f57932ae43.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01074;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01074;src:url('chunks/assets/font_a443037fb23390a09a530a4a.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01074;src:url('chunks/assets/font_1705cf1c6f3e0752e5f149ad.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls3_c01074{letter-spacing:0.000000px;}
.ls0_c01074{letter-spacing:0.087998px;}
.ls1_c01074{letter-spacing:0.098482px;}
.ls2_c01074{letter-spacing:0.104482px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c01074{word-spacing:-33.713438px;}
.ws0_c01074{word-spacing:-26.575517px;}
.ws1_c01074{word-spacing:-26.487518px;}
.wsc_c01074{word-spacing:-22.296299px;}
.wsf_c01074{word-spacing:-21.160562px;}
.ws6_c01074{word-spacing:-18.769538px;}
.wse_c01074{word-spacing:-18.410885px;}
.ws9_c01074{word-spacing:-15.601432px;}
.ws5_c01074{word-spacing:-14.943900px;}
.wsa_c01074{word-spacing:-13.808164px;}
.ws8_c01074{word-spacing:-13.748388px;}
.wsb_c01074{word-spacing:-12.014896px;}
.ws3_c01074{word-spacing:-9.988424px;}
.ws4_c01074{word-spacing:-9.987499px;}
.ws10_c01074{word-spacing:0.000000px;}
.ws7_c01074{word-spacing:0.017856px;}
.ws2_c01074{word-spacing:43.038600px;}
._1_c01074{margin-left:-7.833025px;}
._6_c01074{margin-left:-4.656358px;}
._2_c01074{margin-left:-3.184856px;}
._0_c01074{margin-left:-1.549390px;}
._8_c01074{width:12.791978px;}
._7_c01074{width:18.171782px;}
._3_c01074{width:19.935816px;}
._5_c01074{width:21.220338px;}
._4_c01074{width:29.529146px;}
.fc5_c01074{color:rgb(79,153,5);}
.fc4_c01074{color:rgb(33,74,135);}
.fc3_c01074{color:rgb(0,0,207);}
.fc6_c01074{color:rgb(6,69,173);}
.fc2_c01074{color:rgb(207,92,0);}
.fc1_c01074{color:rgb(143,89,3);}
.fc0_c01074{color:rgb(0,0,0);}
.fs0_c01074{font-size:43.999200px;}
.fs2_c01074{font-size:59.775600px;}
.fs1_c01074{font-size:86.077200px;}
.y0_c01074{bottom:0.000000px;}
.y15_c01074{bottom:44.250000px;}
.y14_c01074{bottom:82.051500px;}
.y13_c01074{bottom:99.984000px;}
.y12_c01074{bottom:117.916500px;}
.y11_c01074{bottom:135.849000px;}
.y10_c01074{bottom:153.781500px;}
.yf_c01074{bottom:202.039500px;}
.ye_c01074{bottom:219.972000px;}
.yd_c01074{bottom:237.904500px;}
.yc_c01074{bottom:255.837000px;}
.yb_c01074{bottom:304.095000px;}
.ya_c01074{bottom:352.351500px;}
.y9_c01074{bottom:400.608000px;}
.y8_c01074{bottom:448.866000px;}
.y7_c01074{bottom:522.048000px;}
.y6_c01074{bottom:1077.670500px;}
.y5_c01074{bottom:1094.109000px;}
.y4_c01074{bottom:1110.547500px;}
.y3_c01074{bottom:1126.986000px;}
.y2_c01074{bottom:1143.424500px;}
.y1_c01074{bottom:1159.863000px;}
.h2_c01074{height:36.007158px;}
.h4_c01074{height:40.511979px;}
.h5_c01074{height:52.332837px;}
.h3_c01074{height:58.337477px;}
.h0_c01074{height:1262.835000px;}
.h1_c01074{height:1263.000000px;}
.w0_c01074{width:892.920000px;}
.w1_c01074{width:893.250000px;}
.x0_c01074{left:0.000000px;}
.x3_c01074{left:127.558500px;}
.x1_c01074{left:137.122500px;}
.x2_c01074{left:177.007500px;}
.x4_c01074{left:435.249000px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls3_c01074{letter-spacing:0.000000pt;}
.ls0_c01074{letter-spacing:0.078221pt;}
.ls1_c01074{letter-spacing:0.087539pt;}
.ls2_c01074{letter-spacing:0.092873pt;}
.wsd_c01074{word-spacing:-29.967501pt;}
.ws0_c01074{word-spacing:-23.622682pt;}
.ws1_c01074{word-spacing:-23.544461pt;}
.wsc_c01074{word-spacing:-19.818932pt;}
.wsf_c01074{word-spacing:-18.809389pt;}
.ws6_c01074{word-spacing:-16.684034pt;}
.wse_c01074{word-spacing:-16.365231pt;}
.ws9_c01074{word-spacing:-13.867939pt;}
.ws5_c01074{word-spacing:-13.283467pt;}
.wsa_c01074{word-spacing:-12.273923pt;}
.ws8_c01074{word-spacing:-12.220789pt;}
.wsb_c01074{word-spacing:-10.679907pt;}
.ws3_c01074{word-spacing:-8.878599pt;}
.ws4_c01074{word-spacing:-8.877777pt;}
.ws10_c01074{word-spacing:0.000000pt;}
.ws7_c01074{word-spacing:0.015872pt;}
.ws2_c01074{word-spacing:38.256533pt;}
._1_c01074{margin-left:-6.962689pt;}
._6_c01074{margin-left:-4.138985pt;}
._2_c01074{margin-left:-2.830983pt;}
._0_c01074{margin-left:-1.377235pt;}
._8_c01074{width:11.370647pt;}
._7_c01074{width:16.152695pt;}
._3_c01074{width:17.720725pt;}
._5_c01074{width:18.862523pt;}
._4_c01074{width:26.248130pt;}
.fs0_c01074{font-size:39.110400pt;}
.fs2_c01074{font-size:53.133867pt;}
.fs1_c01074{font-size:76.513067pt;}
.y0_c01074{bottom:0.000000pt;}
.y15_c01074{bottom:39.333333pt;}
.y14_c01074{bottom:72.934667pt;}
.y13_c01074{bottom:88.874667pt;}
.y12_c01074{bottom:104.814667pt;}
.y11_c01074{bottom:120.754667pt;}
.y10_c01074{bottom:136.694667pt;}
.yf_c01074{bottom:179.590667pt;}
.ye_c01074{bottom:195.530667pt;}
.yd_c01074{bottom:211.470667pt;}
.yc_c01074{bottom:227.410667pt;}
.yb_c01074{bottom:270.306667pt;}
.ya_c01074{bottom:313.201333pt;}
.y9_c01074{bottom:356.096000pt;}
.y8_c01074{bottom:398.992000pt;}
.y7_c01074{bottom:464.042667pt;}
.y6_c01074{bottom:957.929333pt;}
.y5_c01074{bottom:972.541333pt;}
.y4_c01074{bottom:987.153333pt;}
.y3_c01074{bottom:1001.765333pt;}
.y2_c01074{bottom:1016.377333pt;}
.y1_c01074{bottom:1030.989333pt;}
.h2_c01074{height:32.006363pt;}
.h4_c01074{height:36.010648pt;}
.h5_c01074{height:46.518078pt;}
.h3_c01074{height:51.855535pt;}
.h0_c01074{height:1122.520000pt;}
.h1_c01074{height:1122.666667pt;}
.w0_c01074{width:793.706667pt;}
.w1_c01074{width:794.000000pt;}
.x0_c01074{left:0.000000pt;}
.x3_c01074{left:113.385333pt;}
.x1_c01074{left:121.886667pt;}
.x2_c01074{left:157.340000pt;}
.x4_c01074{left:386.888000pt;}
}





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

.ir_c01075:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_0d0b53445dc6812d43d79eae.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01075;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01075;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01075;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls3_c01075{letter-spacing:0.000000px;}
.ls0_c01075{letter-spacing:0.087998px;}
.ls2_c01075{letter-spacing:0.098482px;}
.ls1_c01075{letter-spacing:0.104482px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01075{word-spacing:-33.713438px;}
.ws1_c01075{word-spacing:-26.575517px;}
.wsa_c01075{word-spacing:-26.487518px;}
.ws7_c01075{word-spacing:-18.769538px;}
.ws4_c01075{word-spacing:-17.574026px;}
.ws3_c01075{word-spacing:-17.215373px;}
.ws6_c01075{word-spacing:-16.199188px;}
.ws0_c01075{word-spacing:-14.884124px;}
.ws2_c01075{word-spacing:-13.927715px;}
.ws5_c01075{word-spacing:-10.351366px;}
.wse_c01075{word-spacing:0.000000px;}
.ws10_c01075{word-spacing:0.036900px;}
.wsb_c01075{word-spacing:0.043999px;}
.wsf_c01075{word-spacing:0.053933px;}
.ws11_c01075{word-spacing:0.070416px;}
.ws9_c01075{word-spacing:0.175997px;}
.wsd_c01075{word-spacing:0.213446px;}
.wsc_c01075{word-spacing:0.219446px;}
._2_c01075{margin-left:-3.825638px;}
._3_c01075{width:1.005737px;}
._0_c01075{width:24.567772px;}
._1_c01075{width:27.676103px;}
.fc5_c01075{color:rgb(0,0,207);}
.fc4_c01075{color:rgb(79,153,5);}
.fc3_c01075{color:rgb(207,92,0);}
.fc2_c01075{color:rgb(33,74,135);}
.fc1_c01075{color:rgb(143,89,3);}
.fc0_c01075{color:rgb(0,0,0);}
.fs1_c01075{font-size:43.999200px;}
.fs0_c01075{font-size:59.775600px;}
.y0_c01075{bottom:0.000000px;}
.y27_c01075{bottom:44.250000px;}
.y26_c01075{bottom:82.051500px;}
.y25_c01075{bottom:114.927000px;}
.y24_c01075{bottom:131.365500px;}
.y23_c01075{bottom:147.804000px;}
.y22_c01075{bottom:164.242500px;}
.y21_c01075{bottom:197.119500px;}
.y20_c01075{bottom:213.558000px;}
.y1f_c01075{bottom:229.996500px;}
.y1e_c01075{bottom:246.435000px;}
.y1d_c01075{bottom:262.873500px;}
.y1c_c01075{bottom:279.310500px;}
.y1b_c01075{bottom:295.749000px;}
.y1a_c01075{bottom:328.626000px;}
.y19_c01075{bottom:345.064500px;}
.y18_c01075{bottom:361.503000px;}
.y17_c01075{bottom:394.380000px;}
.y16_c01075{bottom:410.818500px;}
.y15_c01075{bottom:460.132500px;}
.y14_c01075{bottom:476.571000px;}
.y13_c01075{bottom:509.448000px;}
.y12_c01075{bottom:525.886500px;}
.y11_c01075{bottom:542.325000px;}
.y10_c01075{bottom:558.763500px;}
.yf_c01075{bottom:591.640500px;}
.ye_c01075{bottom:608.079000px;}
.yd_c01075{bottom:624.516000px;}
.yc_c01075{bottom:640.954500px;}
.yb_c01075{bottom:657.393000px;}
.ya_c01075{bottom:673.831500px;}
.y9_c01075{bottom:690.270000px;}
.y8_c01075{bottom:706.708500px;}
.y7_c01075{bottom:722.773500px;}
.y6_c01075{bottom:766.867500px;}
.y5_c01075{bottom:784.800000px;}
.y4_c01075{bottom:802.732500px;}
.y3_c01075{bottom:820.665000px;}
.y2_c01075{bottom:838.597500px;}
.y1_c01075{bottom:856.530000px;}
.h3_c01075{height:35.190766px;}
.h4_c01075{height:36.007158px;}
.h2_c01075{height:52.332837px;}
.h0_c01075{height:1262.835000px;}
.h1_c01075{height:1263.000000px;}
.w0_c01075{width:892.920000px;}
.w1_c01075{width:893.250000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:127.558500px;}
.x2_c01075{left:137.122500px;}
.x3_c01075{left:143.770500px;}
.x4_c01075{left:435.249000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls3_c01075{letter-spacing:0.000000pt;}
.ls0_c01075{letter-spacing:0.078221pt;}
.ls2_c01075{letter-spacing:0.087539pt;}
.ls1_c01075{letter-spacing:0.092873pt;}
.ws8_c01075{word-spacing:-29.967501pt;}
.ws1_c01075{word-spacing:-23.622682pt;}
.wsa_c01075{word-spacing:-23.544461pt;}
.ws7_c01075{word-spacing:-16.684034pt;}
.ws4_c01075{word-spacing:-15.621357pt;}
.ws3_c01075{word-spacing:-15.302554pt;}
.ws6_c01075{word-spacing:-14.399278pt;}
.ws0_c01075{word-spacing:-13.230333pt;}
.ws2_c01075{word-spacing:-12.380191pt;}
.ws5_c01075{word-spacing:-9.201214pt;}
.wse_c01075{word-spacing:0.000000pt;}
.ws10_c01075{word-spacing:0.032800pt;}
.wsb_c01075{word-spacing:0.039110pt;}
.wsf_c01075{word-spacing:0.047940pt;}
.ws11_c01075{word-spacing:0.062592pt;}
.ws9_c01075{word-spacing:0.156442pt;}
.wsd_c01075{word-spacing:0.189730pt;}
.wsc_c01075{word-spacing:0.195063pt;}
._2_c01075{margin-left:-3.400567pt;}
._3_c01075{width:0.893988pt;}
._0_c01075{width:21.838019pt;}
._1_c01075{width:24.600980pt;}
.fs1_c01075{font-size:39.110400pt;}
.fs0_c01075{font-size:53.133867pt;}
.y0_c01075{bottom:0.000000pt;}
.y27_c01075{bottom:39.333333pt;}
.y26_c01075{bottom:72.934667pt;}
.y25_c01075{bottom:102.157333pt;}
.y24_c01075{bottom:116.769333pt;}
.y23_c01075{bottom:131.381333pt;}
.y22_c01075{bottom:145.993333pt;}
.y21_c01075{bottom:175.217333pt;}
.y20_c01075{bottom:189.829333pt;}
.y1f_c01075{bottom:204.441333pt;}
.y1e_c01075{bottom:219.053333pt;}
.y1d_c01075{bottom:233.665333pt;}
.y1c_c01075{bottom:248.276000pt;}
.y1b_c01075{bottom:262.888000pt;}
.y1a_c01075{bottom:292.112000pt;}
.y19_c01075{bottom:306.724000pt;}
.y18_c01075{bottom:321.336000pt;}
.y17_c01075{bottom:350.560000pt;}
.y16_c01075{bottom:365.172000pt;}
.y15_c01075{bottom:409.006667pt;}
.y14_c01075{bottom:423.618667pt;}
.y13_c01075{bottom:452.842667pt;}
.y12_c01075{bottom:467.454667pt;}
.y11_c01075{bottom:482.066667pt;}
.y10_c01075{bottom:496.678667pt;}
.yf_c01075{bottom:525.902667pt;}
.ye_c01075{bottom:540.514667pt;}
.yd_c01075{bottom:555.125333pt;}
.yc_c01075{bottom:569.737333pt;}
.yb_c01075{bottom:584.349333pt;}
.ya_c01075{bottom:598.961333pt;}
.y9_c01075{bottom:613.573333pt;}
.y8_c01075{bottom:628.185333pt;}
.y7_c01075{bottom:642.465333pt;}
.y6_c01075{bottom:681.660000pt;}
.y5_c01075{bottom:697.600000pt;}
.y4_c01075{bottom:713.540000pt;}
.y3_c01075{bottom:729.480000pt;}
.y2_c01075{bottom:745.420000pt;}
.y1_c01075{bottom:761.360000pt;}
.h3_c01075{height:31.280681pt;}
.h4_c01075{height:32.006363pt;}
.h2_c01075{height:46.518078pt;}
.h0_c01075{height:1122.520000pt;}
.h1_c01075{height:1122.666667pt;}
.w0_c01075{width:793.706667pt;}
.w1_c01075{width:794.000000pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:113.385333pt;}
.x2_c01075{left:121.886667pt;}
.x3_c01075{left:127.796000pt;}
.x4_c01075{left:386.888000pt;}
}





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

.ir_c01076:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_9688b943a6af27beb94855c2.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01076;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01076;src:url('chunks/assets/font_fd4377e878218b44e4f8a391.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01076;src:url('chunks/assets/font_d1763b9f7beadb7e82c6a059.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls4_c01076{letter-spacing:0.000000px;}
.ls0_c01076{letter-spacing:0.087998px;}
.ls2_c01076{letter-spacing:0.098482px;}
.ls1_c01076{letter-spacing:0.104482px;}
.ls3_c01076{letter-spacing:26.690482px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:-26.575517px;}
.ws1_c01076{word-spacing:-26.487518px;}
.ws2_c01076{word-spacing:0.000000px;}
.ws6_c01076{word-spacing:0.043999px;}
.ws3_c01076{word-spacing:0.053933px;}
.ws5_c01076{word-spacing:0.064416px;}
.ws4_c01076{word-spacing:0.070416px;}
.ws8_c01076{word-spacing:0.099667px;}
.ws9_c01076{word-spacing:0.213446px;}
.ws7_c01076{word-spacing:0.219446px;}
._1_c01076{width:1.026154px;}
._0_c01076{width:53.767022px;}
.fc5_c01076{color:rgb(0,0,207);}
.fc4_c01076{color:rgb(207,92,0);}
.fc3_c01076{color:rgb(143,89,3);}
.fc2_c01076{color:rgb(0,0,0);}
.fc1_c01076{color:rgb(79,153,5);}
.fc0_c01076{color:rgb(33,74,135);}
.fs0_c01076{font-size:43.999200px;}
.fs1_c01076{font-size:59.775600px;}
.y0_c01076{bottom:0.000000px;}
.y3b_c01076{bottom:44.250000px;}
.y3a_c01076{bottom:91.369500px;}
.y39_c01076{bottom:107.808000px;}
.y38_c01076{bottom:124.246500px;}
.y37_c01076{bottom:140.685000px;}
.y36_c01076{bottom:173.562000px;}
.y35_c01076{bottom:190.000500px;}
.y34_c01076{bottom:206.437500px;}
.y33_c01076{bottom:255.753000px;}
.y32_c01076{bottom:272.191500px;}
.y31_c01076{bottom:288.630000px;}
.y30_c01076{bottom:305.068500px;}
.y2f_c01076{bottom:321.507000px;}
.y2e_c01076{bottom:337.945500px;}
.y2d_c01076{bottom:354.384000px;}
.y2c_c01076{bottom:370.822500px;}
.y2b_c01076{bottom:387.259500px;}
.y2a_c01076{bottom:403.698000px;}
.y29_c01076{bottom:420.136500px;}
.y28_c01076{bottom:436.575000px;}
.y27_c01076{bottom:453.013500px;}
.y26_c01076{bottom:469.452000px;}
.y25_c01076{bottom:485.890500px;}
.y24_c01076{bottom:502.329000px;}
.y23_c01076{bottom:518.767500px;}
.y22_c01076{bottom:535.206000px;}
.y21_c01076{bottom:551.643000px;}
.y20_c01076{bottom:568.081500px;}
.y1f_c01076{bottom:584.520000px;}
.y1e_c01076{bottom:600.958500px;}
.y1d_c01076{bottom:617.397000px;}
.y1c_c01076{bottom:633.835500px;}
.y1b_c01076{bottom:650.274000px;}
.y1a_c01076{bottom:666.712500px;}
.y19_c01076{bottom:683.151000px;}
.y18_c01076{bottom:716.028000px;}
.y17_c01076{bottom:732.465000px;}
.y16_c01076{bottom:748.903500px;}
.y15_c01076{bottom:765.342000px;}
.y14_c01076{bottom:781.780500px;}
.y13_c01076{bottom:798.219000px;}
.y12_c01076{bottom:831.096000px;}
.y11_c01076{bottom:847.534500px;}
.y10_c01076{bottom:863.973000px;}
.yf_c01076{bottom:880.411500px;}
.ye_c01076{bottom:896.848500px;}
.yd_c01076{bottom:913.287000px;}
.yc_c01076{bottom:929.725500px;}
.yb_c01076{bottom:946.164000px;}
.ya_c01076{bottom:979.041000px;}
.y9_c01076{bottom:1011.918000px;}
.y8_c01076{bottom:1028.356500px;}
.y7_c01076{bottom:1044.795000px;}
.y6_c01076{bottom:1061.232000px;}
.y5_c01076{bottom:1077.670500px;}
.y4_c01076{bottom:1094.109000px;}
.y3_c01076{bottom:1126.986000px;}
.y2_c01076{bottom:1143.424500px;}
.y1_c01076{bottom:1159.863000px;}
.h3_c01076{height:35.190766px;}
.h2_c01076{height:36.007158px;}
.h4_c01076{height:52.332837px;}
.h0_c01076{height:1262.835000px;}
.h1_c01076{height:1263.000000px;}
.w0_c01076{width:892.920000px;}
.w1_c01076{width:893.250000px;}
.x0_c01076{left:0.000000px;}
.x2_c01076{left:137.122500px;}
.x3_c01076{left:143.770500px;}
.x4_c01076{left:177.007500px;}
.x6_c01076{left:196.948500px;}
.x1_c01076{left:203.596500px;}
.x5_c01076{left:210.243000px;}
.x7_c01076{left:435.249000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls4_c01076{letter-spacing:0.000000pt;}
.ls0_c01076{letter-spacing:0.078221pt;}
.ls2_c01076{letter-spacing:0.087539pt;}
.ls1_c01076{letter-spacing:0.092873pt;}
.ls3_c01076{letter-spacing:23.724873pt;}
.ws0_c01076{word-spacing:-23.622682pt;}
.ws1_c01076{word-spacing:-23.544461pt;}
.ws2_c01076{word-spacing:0.000000pt;}
.ws6_c01076{word-spacing:0.039110pt;}
.ws3_c01076{word-spacing:0.047940pt;}
.ws5_c01076{word-spacing:0.057259pt;}
.ws4_c01076{word-spacing:0.062592pt;}
.ws8_c01076{word-spacing:0.088593pt;}
.ws9_c01076{word-spacing:0.189730pt;}
.ws7_c01076{word-spacing:0.195063pt;}
._1_c01076{width:0.912137pt;}
._0_c01076{width:47.792909pt;}
.fs0_c01076{font-size:39.110400pt;}
.fs1_c01076{font-size:53.133867pt;}
.y0_c01076{bottom:0.000000pt;}
.y3b_c01076{bottom:39.333333pt;}
.y3a_c01076{bottom:81.217333pt;}
.y39_c01076{bottom:95.829333pt;}
.y38_c01076{bottom:110.441333pt;}
.y37_c01076{bottom:125.053333pt;}
.y36_c01076{bottom:154.277333pt;}
.y35_c01076{bottom:168.889333pt;}
.y34_c01076{bottom:183.500000pt;}
.y33_c01076{bottom:227.336000pt;}
.y32_c01076{bottom:241.948000pt;}
.y31_c01076{bottom:256.560000pt;}
.y30_c01076{bottom:271.172000pt;}
.y2f_c01076{bottom:285.784000pt;}
.y2e_c01076{bottom:300.396000pt;}
.y2d_c01076{bottom:315.008000pt;}
.y2c_c01076{bottom:329.620000pt;}
.y2b_c01076{bottom:344.230667pt;}
.y2a_c01076{bottom:358.842667pt;}
.y29_c01076{bottom:373.454667pt;}
.y28_c01076{bottom:388.066667pt;}
.y27_c01076{bottom:402.678667pt;}
.y26_c01076{bottom:417.290667pt;}
.y25_c01076{bottom:431.902667pt;}
.y24_c01076{bottom:446.514667pt;}
.y23_c01076{bottom:461.126667pt;}
.y22_c01076{bottom:475.738667pt;}
.y21_c01076{bottom:490.349333pt;}
.y20_c01076{bottom:504.961333pt;}
.y1f_c01076{bottom:519.573333pt;}
.y1e_c01076{bottom:534.185333pt;}
.y1d_c01076{bottom:548.797333pt;}
.y1c_c01076{bottom:563.409333pt;}
.y1b_c01076{bottom:578.021333pt;}
.y1a_c01076{bottom:592.633333pt;}
.y19_c01076{bottom:607.245333pt;}
.y18_c01076{bottom:636.469333pt;}
.y17_c01076{bottom:651.080000pt;}
.y16_c01076{bottom:665.692000pt;}
.y15_c01076{bottom:680.304000pt;}
.y14_c01076{bottom:694.916000pt;}
.y13_c01076{bottom:709.528000pt;}
.y12_c01076{bottom:738.752000pt;}
.y11_c01076{bottom:753.364000pt;}
.y10_c01076{bottom:767.976000pt;}
.yf_c01076{bottom:782.588000pt;}
.ye_c01076{bottom:797.198667pt;}
.yd_c01076{bottom:811.810667pt;}
.yc_c01076{bottom:826.422667pt;}
.yb_c01076{bottom:841.034667pt;}
.ya_c01076{bottom:870.258667pt;}
.y9_c01076{bottom:899.482667pt;}
.y8_c01076{bottom:914.094667pt;}
.y7_c01076{bottom:928.706667pt;}
.y6_c01076{bottom:943.317333pt;}
.y5_c01076{bottom:957.929333pt;}
.y4_c01076{bottom:972.541333pt;}
.y3_c01076{bottom:1001.765333pt;}
.y2_c01076{bottom:1016.377333pt;}
.y1_c01076{bottom:1030.989333pt;}
.h3_c01076{height:31.280681pt;}
.h2_c01076{height:32.006363pt;}
.h4_c01076{height:46.518078pt;}
.h0_c01076{height:1122.520000pt;}
.h1_c01076{height:1122.666667pt;}
.w0_c01076{width:793.706667pt;}
.w1_c01076{width:794.000000pt;}
.x0_c01076{left:0.000000pt;}
.x2_c01076{left:121.886667pt;}
.x3_c01076{left:127.796000pt;}
.x4_c01076{left:157.340000pt;}
.x6_c01076{left:175.065333pt;}
.x1_c01076{left:180.974667pt;}
.x5_c01076{left:186.882667pt;}
.x7_c01076{left:386.888000pt;}
}





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

.ir_c01077:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_648e9175fd7ab479cb3d4089.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01077;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01077;src:url('chunks/assets/font_6a771ee43343538e5bae4195.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01077;src:url('chunks/assets/font_b96983d4b36194469f2eeca0.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01077{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01077{vertical-align:0.000000px;}
.ls3_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:0.087998px;}
.ls1_c01077{letter-spacing:0.098482px;}
.ls2_c01077{letter-spacing:0.104482px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:-26.575517px;}
.ws1_c01077{word-spacing:-26.487518px;}
.wsb_c01077{word-spacing:-19.307519px;}
.ws6_c01077{word-spacing:-18.769538px;}
.wsd_c01077{word-spacing:-18.410885px;}
.wse_c01077{word-spacing:-18.351109px;}
.wsc_c01077{word-spacing:-18.231558px;}
.wsf_c01077{word-spacing:-16.916495px;}
.ws9_c01077{word-spacing:-15.601432px;}
.ws5_c01077{word-spacing:-14.943900px;}
.wsa_c01077{word-spacing:-13.808164px;}
.ws8_c01077{word-spacing:-13.748388px;}
.ws3_c01077{word-spacing:-9.988424px;}
.ws4_c01077{word-spacing:-9.987499px;}
.ws10_c01077{word-spacing:0.000000px;}
.ws7_c01077{word-spacing:0.017856px;}
.ws2_c01077{word-spacing:43.038600px;}
._1_c01077{margin-left:-7.833025px;}
._6_c01077{margin-left:-4.656358px;}
._4_c01077{margin-left:-2.998955px;}
._0_c01077{margin-left:-1.549390px;}
._2_c01077{width:19.935816px;}
._5_c01077{width:21.220338px;}
._7_c01077{width:24.812386px;}
._3_c01077{width:29.529146px;}
.fc5_c01077{color:rgb(0,0,207);}
.fc6_c01077{color:rgb(6,69,173);}
.fc4_c01077{color:rgb(207,92,0);}
.fc3_c01077{color:rgb(79,153,5);}
.fc2_c01077{color:rgb(33,74,135);}
.fc1_c01077{color:rgb(143,89,3);}
.fc0_c01077{color:rgb(0,0,0);}
.fs0_c01077{font-size:43.999200px;}
.fs2_c01077{font-size:59.775600px;}
.fs1_c01077{font-size:86.077200px;}
.y0_c01077{bottom:0.000000px;}
.y15_c01077{bottom:44.250000px;}
.y14_c01077{bottom:82.051500px;}
.y13_c01077{bottom:99.984000px;}
.y12_c01077{bottom:117.916500px;}
.y11_c01077{bottom:135.849000px;}
.y10_c01077{bottom:184.246500px;}
.yf_c01077{bottom:202.179000px;}
.ye_c01077{bottom:220.111500px;}
.yd_c01077{bottom:238.044000px;}
.yc_c01077{bottom:286.441500px;}
.yb_c01077{bottom:334.837500px;}
.ya_c01077{bottom:383.235000px;}
.y9_c01077{bottom:431.632500px;}
.y8_c01077{bottom:505.017000px;}
.y7_c01077{bottom:1061.232000px;}
.y6_c01077{bottom:1077.670500px;}
.y5_c01077{bottom:1094.109000px;}
.y4_c01077{bottom:1110.547500px;}
.y3_c01077{bottom:1126.986000px;}
.y2_c01077{bottom:1143.424500px;}
.y1_c01077{bottom:1159.863000px;}
.h2_c01077{height:36.007158px;}
.h4_c01077{height:40.511979px;}
.h5_c01077{height:52.332837px;}
.h3_c01077{height:58.337477px;}
.h0_c01077{height:1262.835000px;}
.h1_c01077{height:1263.000000px;}
.w0_c01077{width:892.920000px;}
.w1_c01077{width:893.250000px;}
.x0_c01077{left:0.000000px;}
.x3_c01077{left:127.558500px;}
.x1_c01077{left:137.122500px;}
.x2_c01077{left:177.007500px;}
.x4_c01077{left:435.249000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls3_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:0.078221pt;}
.ls1_c01077{letter-spacing:0.087539pt;}
.ls2_c01077{letter-spacing:0.092873pt;}
.ws0_c01077{word-spacing:-23.622682pt;}
.ws1_c01077{word-spacing:-23.544461pt;}
.wsb_c01077{word-spacing:-17.162239pt;}
.ws6_c01077{word-spacing:-16.684034pt;}
.wsd_c01077{word-spacing:-16.365231pt;}
.wse_c01077{word-spacing:-16.312097pt;}
.wsc_c01077{word-spacing:-16.205829pt;}
.wsf_c01077{word-spacing:-15.036884pt;}
.ws9_c01077{word-spacing:-13.867939pt;}
.ws5_c01077{word-spacing:-13.283467pt;}
.wsa_c01077{word-spacing:-12.273923pt;}
.ws8_c01077{word-spacing:-12.220789pt;}
.ws3_c01077{word-spacing:-8.878599pt;}
.ws4_c01077{word-spacing:-8.877777pt;}
.ws10_c01077{word-spacing:0.000000pt;}
.ws7_c01077{word-spacing:0.015872pt;}
.ws2_c01077{word-spacing:38.256533pt;}
._1_c01077{margin-left:-6.962689pt;}
._6_c01077{margin-left:-4.138985pt;}
._4_c01077{margin-left:-2.665738pt;}
._0_c01077{margin-left:-1.377235pt;}
._2_c01077{width:17.720725pt;}
._5_c01077{width:18.862523pt;}
._7_c01077{width:22.055454pt;}
._3_c01077{width:26.248130pt;}
.fs0_c01077{font-size:39.110400pt;}
.fs2_c01077{font-size:53.133867pt;}
.fs1_c01077{font-size:76.513067pt;}
.y0_c01077{bottom:0.000000pt;}
.y15_c01077{bottom:39.333333pt;}
.y14_c01077{bottom:72.934667pt;}
.y13_c01077{bottom:88.874667pt;}
.y12_c01077{bottom:104.814667pt;}
.y11_c01077{bottom:120.754667pt;}
.y10_c01077{bottom:163.774667pt;}
.yf_c01077{bottom:179.714667pt;}
.ye_c01077{bottom:195.654667pt;}
.yd_c01077{bottom:211.594667pt;}
.yc_c01077{bottom:254.614667pt;}
.yb_c01077{bottom:297.633333pt;}
.ya_c01077{bottom:340.653333pt;}
.y9_c01077{bottom:383.673333pt;}
.y8_c01077{bottom:448.904000pt;}
.y7_c01077{bottom:943.317333pt;}
.y6_c01077{bottom:957.929333pt;}
.y5_c01077{bottom:972.541333pt;}
.y4_c01077{bottom:987.153333pt;}
.y3_c01077{bottom:1001.765333pt;}
.y2_c01077{bottom:1016.377333pt;}
.y1_c01077{bottom:1030.989333pt;}
.h2_c01077{height:32.006363pt;}
.h4_c01077{height:36.010648pt;}
.h5_c01077{height:46.518078pt;}
.h3_c01077{height:51.855535pt;}
.h0_c01077{height:1122.520000pt;}
.h1_c01077{height:1122.666667pt;}
.w0_c01077{width:793.706667pt;}
.w1_c01077{width:794.000000pt;}
.x0_c01077{left:0.000000pt;}
.x3_c01077{left:113.385333pt;}
.x1_c01077{left:121.886667pt;}
.x2_c01077{left:157.340000pt;}
.x4_c01077{left:386.888000pt;}
}





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

.ir_c01078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_83bb73416ecaa6fdda137217.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01078;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01078;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01078;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls3_c01078{letter-spacing:0.000000px;}
.ls0_c01078{letter-spacing:0.087998px;}
.ls2_c01078{letter-spacing:0.098482px;}
.ls1_c01078{letter-spacing:0.104482px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01078{word-spacing:-33.713438px;}
.ws1_c01078{word-spacing:-26.575517px;}
.wsa_c01078{word-spacing:-26.487518px;}
.ws7_c01078{word-spacing:-18.769538px;}
.ws4_c01078{word-spacing:-17.574026px;}
.ws3_c01078{word-spacing:-17.215373px;}
.ws6_c01078{word-spacing:-16.199188px;}
.ws0_c01078{word-spacing:-14.884124px;}
.ws2_c01078{word-spacing:-13.927715px;}
.ws5_c01078{word-spacing:-10.351366px;}
.wse_c01078{word-spacing:0.000000px;}
.ws10_c01078{word-spacing:0.036900px;}
.wsb_c01078{word-spacing:0.043999px;}
.wsf_c01078{word-spacing:0.053933px;}
.ws11_c01078{word-spacing:0.070416px;}
.ws9_c01078{word-spacing:0.175997px;}
.wsd_c01078{word-spacing:0.213446px;}
.wsc_c01078{word-spacing:0.219446px;}
._2_c01078{margin-left:-3.825638px;}
._3_c01078{width:1.005737px;}
._0_c01078{width:24.567772px;}
._1_c01078{width:27.676103px;}
.fc5_c01078{color:rgb(0,0,207);}
.fc4_c01078{color:rgb(79,153,5);}
.fc3_c01078{color:rgb(207,92,0);}
.fc2_c01078{color:rgb(33,74,135);}
.fc1_c01078{color:rgb(143,89,3);}
.fc0_c01078{color:rgb(0,0,0);}
.fs1_c01078{font-size:43.999200px;}
.fs0_c01078{font-size:59.775600px;}
.y0_c01078{bottom:0.000000px;}
.y27_c01078{bottom:44.250000px;}
.y26_c01078{bottom:82.051500px;}
.y25_c01078{bottom:114.927000px;}
.y24_c01078{bottom:131.365500px;}
.y23_c01078{bottom:147.804000px;}
.y22_c01078{bottom:164.242500px;}
.y21_c01078{bottom:197.119500px;}
.y20_c01078{bottom:213.558000px;}
.y1f_c01078{bottom:229.996500px;}
.y1e_c01078{bottom:246.435000px;}
.y1d_c01078{bottom:262.873500px;}
.y1c_c01078{bottom:279.310500px;}
.y1b_c01078{bottom:295.749000px;}
.y1a_c01078{bottom:328.626000px;}
.y19_c01078{bottom:345.064500px;}
.y18_c01078{bottom:361.503000px;}
.y17_c01078{bottom:394.380000px;}
.y16_c01078{bottom:410.818500px;}
.y15_c01078{bottom:460.132500px;}
.y14_c01078{bottom:476.571000px;}
.y13_c01078{bottom:509.448000px;}
.y12_c01078{bottom:525.886500px;}
.y11_c01078{bottom:542.325000px;}
.y10_c01078{bottom:558.763500px;}
.yf_c01078{bottom:591.640500px;}
.ye_c01078{bottom:608.079000px;}
.yd_c01078{bottom:624.516000px;}
.yc_c01078{bottom:640.954500px;}
.yb_c01078{bottom:657.393000px;}
.ya_c01078{bottom:673.831500px;}
.y9_c01078{bottom:690.270000px;}
.y8_c01078{bottom:706.708500px;}
.y7_c01078{bottom:722.773500px;}
.y6_c01078{bottom:766.867500px;}
.y5_c01078{bottom:784.800000px;}
.y4_c01078{bottom:802.732500px;}
.y3_c01078{bottom:820.665000px;}
.y2_c01078{bottom:838.597500px;}
.y1_c01078{bottom:856.530000px;}
.h3_c01078{height:35.190766px;}
.h4_c01078{height:36.007158px;}
.h2_c01078{height:52.332837px;}
.h0_c01078{height:1262.835000px;}
.h1_c01078{height:1263.000000px;}
.w0_c01078{width:892.920000px;}
.w1_c01078{width:893.250000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:127.558500px;}
.x2_c01078{left:137.122500px;}
.x3_c01078{left:143.770500px;}
.x4_c01078{left:435.249000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls3_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:0.078221pt;}
.ls2_c01078{letter-spacing:0.087539pt;}
.ls1_c01078{letter-spacing:0.092873pt;}
.ws8_c01078{word-spacing:-29.967501pt;}
.ws1_c01078{word-spacing:-23.622682pt;}
.wsa_c01078{word-spacing:-23.544461pt;}
.ws7_c01078{word-spacing:-16.684034pt;}
.ws4_c01078{word-spacing:-15.621357pt;}
.ws3_c01078{word-spacing:-15.302554pt;}
.ws6_c01078{word-spacing:-14.399278pt;}
.ws0_c01078{word-spacing:-13.230333pt;}
.ws2_c01078{word-spacing:-12.380191pt;}
.ws5_c01078{word-spacing:-9.201214pt;}
.wse_c01078{word-spacing:0.000000pt;}
.ws10_c01078{word-spacing:0.032800pt;}
.wsb_c01078{word-spacing:0.039110pt;}
.wsf_c01078{word-spacing:0.047940pt;}
.ws11_c01078{word-spacing:0.062592pt;}
.ws9_c01078{word-spacing:0.156442pt;}
.wsd_c01078{word-spacing:0.189730pt;}
.wsc_c01078{word-spacing:0.195063pt;}
._2_c01078{margin-left:-3.400567pt;}
._3_c01078{width:0.893988pt;}
._0_c01078{width:21.838019pt;}
._1_c01078{width:24.600980pt;}
.fs1_c01078{font-size:39.110400pt;}
.fs0_c01078{font-size:53.133867pt;}
.y0_c01078{bottom:0.000000pt;}
.y27_c01078{bottom:39.333333pt;}
.y26_c01078{bottom:72.934667pt;}
.y25_c01078{bottom:102.157333pt;}
.y24_c01078{bottom:116.769333pt;}
.y23_c01078{bottom:131.381333pt;}
.y22_c01078{bottom:145.993333pt;}
.y21_c01078{bottom:175.217333pt;}
.y20_c01078{bottom:189.829333pt;}
.y1f_c01078{bottom:204.441333pt;}
.y1e_c01078{bottom:219.053333pt;}
.y1d_c01078{bottom:233.665333pt;}
.y1c_c01078{bottom:248.276000pt;}
.y1b_c01078{bottom:262.888000pt;}
.y1a_c01078{bottom:292.112000pt;}
.y19_c01078{bottom:306.724000pt;}
.y18_c01078{bottom:321.336000pt;}
.y17_c01078{bottom:350.560000pt;}
.y16_c01078{bottom:365.172000pt;}
.y15_c01078{bottom:409.006667pt;}
.y14_c01078{bottom:423.618667pt;}
.y13_c01078{bottom:452.842667pt;}
.y12_c01078{bottom:467.454667pt;}
.y11_c01078{bottom:482.066667pt;}
.y10_c01078{bottom:496.678667pt;}
.yf_c01078{bottom:525.902667pt;}
.ye_c01078{bottom:540.514667pt;}
.yd_c01078{bottom:555.125333pt;}
.yc_c01078{bottom:569.737333pt;}
.yb_c01078{bottom:584.349333pt;}
.ya_c01078{bottom:598.961333pt;}
.y9_c01078{bottom:613.573333pt;}
.y8_c01078{bottom:628.185333pt;}
.y7_c01078{bottom:642.465333pt;}
.y6_c01078{bottom:681.660000pt;}
.y5_c01078{bottom:697.600000pt;}
.y4_c01078{bottom:713.540000pt;}
.y3_c01078{bottom:729.480000pt;}
.y2_c01078{bottom:745.420000pt;}
.y1_c01078{bottom:761.360000pt;}
.h3_c01078{height:31.280681pt;}
.h4_c01078{height:32.006363pt;}
.h2_c01078{height:46.518078pt;}
.h0_c01078{height:1122.520000pt;}
.h1_c01078{height:1122.666667pt;}
.w0_c01078{width:793.706667pt;}
.w1_c01078{width:794.000000pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:113.385333pt;}
.x2_c01078{left:121.886667pt;}
.x3_c01078{left:127.796000pt;}
.x4_c01078{left:386.888000pt;}
}





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

.ir_c01079:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_cdef245b0e0c51e49c4dc1bc.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01079;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01079;src:url('chunks/assets/font_584687ff851267da110d0876.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01079;src:url('chunks/assets/font_e8c7d8902c7dee9a22a678d1.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls4_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:0.087998px;}
.ls2_c01079{letter-spacing:0.098482px;}
.ls1_c01079{letter-spacing:0.104482px;}
.ls3_c01079{letter-spacing:26.690482px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:-26.575517px;}
.ws1_c01079{word-spacing:-26.487518px;}
.ws2_c01079{word-spacing:0.000000px;}
.ws6_c01079{word-spacing:0.043999px;}
.ws3_c01079{word-spacing:0.053933px;}
.ws5_c01079{word-spacing:0.064416px;}
.ws4_c01079{word-spacing:0.070416px;}
.ws8_c01079{word-spacing:0.099667px;}
.ws9_c01079{word-spacing:0.213446px;}
.ws7_c01079{word-spacing:0.219446px;}
._1_c01079{width:1.000618px;}
._0_c01079{width:53.767022px;}
.fc5_c01079{color:rgb(0,0,207);}
.fc4_c01079{color:rgb(207,92,0);}
.fc3_c01079{color:rgb(143,89,3);}
.fc2_c01079{color:rgb(0,0,0);}
.fc1_c01079{color:rgb(79,153,5);}
.fc0_c01079{color:rgb(33,74,135);}
.fs0_c01079{font-size:43.999200px;}
.fs1_c01079{font-size:59.775600px;}
.y0_c01079{bottom:0.000000px;}
.y3a_c01079{bottom:44.250000px;}
.y39_c01079{bottom:91.369500px;}
.y38_c01079{bottom:107.808000px;}
.y37_c01079{bottom:124.246500px;}
.y36_c01079{bottom:157.123500px;}
.y35_c01079{bottom:173.562000px;}
.y34_c01079{bottom:190.000500px;}
.y33_c01079{bottom:255.753000px;}
.y32_c01079{bottom:272.191500px;}
.y31_c01079{bottom:288.630000px;}
.y30_c01079{bottom:305.068500px;}
.y2f_c01079{bottom:321.507000px;}
.y2e_c01079{bottom:337.945500px;}
.y2d_c01079{bottom:354.384000px;}
.y2c_c01079{bottom:370.822500px;}
.y2b_c01079{bottom:387.259500px;}
.y2a_c01079{bottom:403.698000px;}
.y29_c01079{bottom:420.136500px;}
.y28_c01079{bottom:436.575000px;}
.y27_c01079{bottom:453.013500px;}
.y26_c01079{bottom:469.452000px;}
.y25_c01079{bottom:485.890500px;}
.y24_c01079{bottom:502.329000px;}
.y23_c01079{bottom:518.767500px;}
.y22_c01079{bottom:535.206000px;}
.y21_c01079{bottom:551.643000px;}
.y20_c01079{bottom:568.081500px;}
.y1f_c01079{bottom:584.520000px;}
.y1e_c01079{bottom:600.958500px;}
.y1d_c01079{bottom:617.397000px;}
.y1c_c01079{bottom:633.835500px;}
.y1b_c01079{bottom:650.274000px;}
.y1a_c01079{bottom:666.712500px;}
.y19_c01079{bottom:683.151000px;}
.y18_c01079{bottom:716.028000px;}
.y17_c01079{bottom:732.465000px;}
.y16_c01079{bottom:748.903500px;}
.y15_c01079{bottom:765.342000px;}
.y14_c01079{bottom:781.780500px;}
.y13_c01079{bottom:798.219000px;}
.y12_c01079{bottom:831.096000px;}
.y11_c01079{bottom:847.534500px;}
.y10_c01079{bottom:863.973000px;}
.yf_c01079{bottom:880.411500px;}
.ye_c01079{bottom:896.848500px;}
.yd_c01079{bottom:913.287000px;}
.yc_c01079{bottom:929.725500px;}
.yb_c01079{bottom:946.164000px;}
.ya_c01079{bottom:979.041000px;}
.y9_c01079{bottom:1011.918000px;}
.y8_c01079{bottom:1028.356500px;}
.y7_c01079{bottom:1044.795000px;}
.y6_c01079{bottom:1061.232000px;}
.y5_c01079{bottom:1077.670500px;}
.y4_c01079{bottom:1094.109000px;}
.y3_c01079{bottom:1126.986000px;}
.y2_c01079{bottom:1143.424500px;}
.y1_c01079{bottom:1159.863000px;}
.h3_c01079{height:35.190766px;}
.h2_c01079{height:36.007158px;}
.h4_c01079{height:52.332837px;}
.h0_c01079{height:1262.835000px;}
.h1_c01079{height:1263.000000px;}
.w0_c01079{width:892.920000px;}
.w1_c01079{width:893.250000px;}
.x0_c01079{left:0.000000px;}
.x2_c01079{left:137.122500px;}
.x3_c01079{left:143.770500px;}
.x4_c01079{left:177.007500px;}
.x6_c01079{left:196.948500px;}
.x1_c01079{left:203.596500px;}
.x5_c01079{left:210.243000px;}
.x7_c01079{left:435.249000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls4_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:0.078221pt;}
.ls2_c01079{letter-spacing:0.087539pt;}
.ls1_c01079{letter-spacing:0.092873pt;}
.ls3_c01079{letter-spacing:23.724873pt;}
.ws0_c01079{word-spacing:-23.622682pt;}
.ws1_c01079{word-spacing:-23.544461pt;}
.ws2_c01079{word-spacing:0.000000pt;}
.ws6_c01079{word-spacing:0.039110pt;}
.ws3_c01079{word-spacing:0.047940pt;}
.ws5_c01079{word-spacing:0.057259pt;}
.ws4_c01079{word-spacing:0.062592pt;}
.ws8_c01079{word-spacing:0.088593pt;}
.ws9_c01079{word-spacing:0.189730pt;}
.ws7_c01079{word-spacing:0.195063pt;}
._1_c01079{width:0.889438pt;}
._0_c01079{width:47.792909pt;}
.fs0_c01079{font-size:39.110400pt;}
.fs1_c01079{font-size:53.133867pt;}
.y0_c01079{bottom:0.000000pt;}
.y3a_c01079{bottom:39.333333pt;}
.y39_c01079{bottom:81.217333pt;}
.y38_c01079{bottom:95.829333pt;}
.y37_c01079{bottom:110.441333pt;}
.y36_c01079{bottom:139.665333pt;}
.y35_c01079{bottom:154.277333pt;}
.y34_c01079{bottom:168.889333pt;}
.y33_c01079{bottom:227.336000pt;}
.y32_c01079{bottom:241.948000pt;}
.y31_c01079{bottom:256.560000pt;}
.y30_c01079{bottom:271.172000pt;}
.y2f_c01079{bottom:285.784000pt;}
.y2e_c01079{bottom:300.396000pt;}
.y2d_c01079{bottom:315.008000pt;}
.y2c_c01079{bottom:329.620000pt;}
.y2b_c01079{bottom:344.230667pt;}
.y2a_c01079{bottom:358.842667pt;}
.y29_c01079{bottom:373.454667pt;}
.y28_c01079{bottom:388.066667pt;}
.y27_c01079{bottom:402.678667pt;}
.y26_c01079{bottom:417.290667pt;}
.y25_c01079{bottom:431.902667pt;}
.y24_c01079{bottom:446.514667pt;}
.y23_c01079{bottom:461.126667pt;}
.y22_c01079{bottom:475.738667pt;}
.y21_c01079{bottom:490.349333pt;}
.y20_c01079{bottom:504.961333pt;}
.y1f_c01079{bottom:519.573333pt;}
.y1e_c01079{bottom:534.185333pt;}
.y1d_c01079{bottom:548.797333pt;}
.y1c_c01079{bottom:563.409333pt;}
.y1b_c01079{bottom:578.021333pt;}
.y1a_c01079{bottom:592.633333pt;}
.y19_c01079{bottom:607.245333pt;}
.y18_c01079{bottom:636.469333pt;}
.y17_c01079{bottom:651.080000pt;}
.y16_c01079{bottom:665.692000pt;}
.y15_c01079{bottom:680.304000pt;}
.y14_c01079{bottom:694.916000pt;}
.y13_c01079{bottom:709.528000pt;}
.y12_c01079{bottom:738.752000pt;}
.y11_c01079{bottom:753.364000pt;}
.y10_c01079{bottom:767.976000pt;}
.yf_c01079{bottom:782.588000pt;}
.ye_c01079{bottom:797.198667pt;}
.yd_c01079{bottom:811.810667pt;}
.yc_c01079{bottom:826.422667pt;}
.yb_c01079{bottom:841.034667pt;}
.ya_c01079{bottom:870.258667pt;}
.y9_c01079{bottom:899.482667pt;}
.y8_c01079{bottom:914.094667pt;}
.y7_c01079{bottom:928.706667pt;}
.y6_c01079{bottom:943.317333pt;}
.y5_c01079{bottom:957.929333pt;}
.y4_c01079{bottom:972.541333pt;}
.y3_c01079{bottom:1001.765333pt;}
.y2_c01079{bottom:1016.377333pt;}
.y1_c01079{bottom:1030.989333pt;}
.h3_c01079{height:31.280681pt;}
.h2_c01079{height:32.006363pt;}
.h4_c01079{height:46.518078pt;}
.h0_c01079{height:1122.520000pt;}
.h1_c01079{height:1122.666667pt;}
.w0_c01079{width:793.706667pt;}
.w1_c01079{width:794.000000pt;}
.x0_c01079{left:0.000000pt;}
.x2_c01079{left:121.886667pt;}
.x3_c01079{left:127.796000pt;}
.x4_c01079{left:157.340000pt;}
.x6_c01079{left:175.065333pt;}
.x1_c01079{left:180.974667pt;}
.x5_c01079{left:186.882667pt;}
.x7_c01079{left:386.888000pt;}
}





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

.ir_c01080:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_48e3e9c82f25853afafead4e.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01080;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01080;src:url('chunks/assets/font_e4f24e43e935bb558447335f.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01080;src:url('chunks/assets/font_364df5c8ab532300659ff82c.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01080{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls3_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:0.087998px;}
.ls1_c01080{letter-spacing:0.098482px;}
.ls2_c01080{letter-spacing:0.104482px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:-26.575517px;}
.ws1_c01080{word-spacing:-26.487518px;}
.wsb_c01080{word-spacing:-19.486846px;}
.ws6_c01080{word-spacing:-18.769538px;}
.wsf_c01080{word-spacing:-17.514251px;}
.ws10_c01080{word-spacing:-17.454475px;}
.wsd_c01080{word-spacing:-17.334924px;}
.wse_c01080{word-spacing:-17.275148px;}
.wsc_c01080{word-spacing:-16.856719px;}
.ws9_c01080{word-spacing:-15.601432px;}
.ws5_c01080{word-spacing:-14.943900px;}
.wsa_c01080{word-spacing:-13.808164px;}
.ws8_c01080{word-spacing:-13.748388px;}
.ws3_c01080{word-spacing:-9.988424px;}
.ws4_c01080{word-spacing:-9.987499px;}
.ws11_c01080{word-spacing:0.000000px;}
.ws7_c01080{word-spacing:0.017856px;}
.ws2_c01080{word-spacing:43.038600px;}
._1_c01080{margin-left:-7.833025px;}
._6_c01080{margin-left:-4.656358px;}
._4_c01080{margin-left:-2.998955px;}
._0_c01080{margin-left:-1.549390px;}
._7_c01080{width:15.780758px;}
._2_c01080{width:19.935816px;}
._5_c01080{width:21.220338px;}
._8_c01080{width:23.726140px;}
._3_c01080{width:29.529146px;}
.fc5_c01080{color:rgb(0,0,207);}
.fc6_c01080{color:rgb(6,69,173);}
.fc4_c01080{color:rgb(207,92,0);}
.fc3_c01080{color:rgb(79,153,5);}
.fc2_c01080{color:rgb(33,74,135);}
.fc1_c01080{color:rgb(143,89,3);}
.fc0_c01080{color:rgb(0,0,0);}
.fs0_c01080{font-size:43.999200px;}
.fs2_c01080{font-size:59.775600px;}
.fs1_c01080{font-size:86.077200px;}
.y0_c01080{bottom:0.000000px;}
.y16_c01080{bottom:44.250000px;}
.y15_c01080{bottom:82.051500px;}
.y14_c01080{bottom:99.984000px;}
.y13_c01080{bottom:117.916500px;}
.y12_c01080{bottom:135.849000px;}
.y11_c01080{bottom:182.707500px;}
.y10_c01080{bottom:200.640000px;}
.yf_c01080{bottom:218.572500px;}
.ye_c01080{bottom:236.505000px;}
.yd_c01080{bottom:283.363500px;}
.yc_c01080{bottom:330.222000px;}
.yb_c01080{bottom:377.080500px;}
.ya_c01080{bottom:423.939000px;}
.y9_c01080{bottom:495.097500px;}
.y8_c01080{bottom:1044.795000px;}
.y7_c01080{bottom:1061.232000px;}
.y6_c01080{bottom:1077.670500px;}
.y5_c01080{bottom:1094.109000px;}
.y4_c01080{bottom:1110.547500px;}
.y3_c01080{bottom:1126.986000px;}
.y2_c01080{bottom:1143.424500px;}
.y1_c01080{bottom:1159.863000px;}
.h2_c01080{height:36.007158px;}
.h4_c01080{height:40.511979px;}
.h5_c01080{height:52.332837px;}
.h3_c01080{height:58.337477px;}
.h0_c01080{height:1262.835000px;}
.h1_c01080{height:1263.000000px;}
.w0_c01080{width:892.920000px;}
.w1_c01080{width:893.250000px;}
.x0_c01080{left:0.000000px;}
.x3_c01080{left:127.558500px;}
.x1_c01080{left:137.122500px;}
.x2_c01080{left:177.007500px;}
.x4_c01080{left:435.249000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls3_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:0.078221pt;}
.ls1_c01080{letter-spacing:0.087539pt;}
.ls2_c01080{letter-spacing:0.092873pt;}
.ws0_c01080{word-spacing:-23.622682pt;}
.ws1_c01080{word-spacing:-23.544461pt;}
.wsb_c01080{word-spacing:-17.321641pt;}
.ws6_c01080{word-spacing:-16.684034pt;}
.wsf_c01080{word-spacing:-15.568223pt;}
.ws10_c01080{word-spacing:-15.515089pt;}
.wsd_c01080{word-spacing:-15.408821pt;}
.wse_c01080{word-spacing:-15.355687pt;}
.wsc_c01080{word-spacing:-14.983750pt;}
.ws9_c01080{word-spacing:-13.867939pt;}
.ws5_c01080{word-spacing:-13.283467pt;}
.wsa_c01080{word-spacing:-12.273923pt;}
.ws8_c01080{word-spacing:-12.220789pt;}
.ws3_c01080{word-spacing:-8.878599pt;}
.ws4_c01080{word-spacing:-8.877777pt;}
.ws11_c01080{word-spacing:0.000000pt;}
.ws7_c01080{word-spacing:0.015872pt;}
.ws2_c01080{word-spacing:38.256533pt;}
._1_c01080{margin-left:-6.962689pt;}
._6_c01080{margin-left:-4.138985pt;}
._4_c01080{margin-left:-2.665738pt;}
._0_c01080{margin-left:-1.377235pt;}
._7_c01080{width:14.027341pt;}
._2_c01080{width:17.720725pt;}
._5_c01080{width:18.862523pt;}
._8_c01080{width:21.089902pt;}
._3_c01080{width:26.248130pt;}
.fs0_c01080{font-size:39.110400pt;}
.fs2_c01080{font-size:53.133867pt;}
.fs1_c01080{font-size:76.513067pt;}
.y0_c01080{bottom:0.000000pt;}
.y16_c01080{bottom:39.333333pt;}
.y15_c01080{bottom:72.934667pt;}
.y14_c01080{bottom:88.874667pt;}
.y13_c01080{bottom:104.814667pt;}
.y12_c01080{bottom:120.754667pt;}
.y11_c01080{bottom:162.406667pt;}
.y10_c01080{bottom:178.346667pt;}
.yf_c01080{bottom:194.286667pt;}
.ye_c01080{bottom:210.226667pt;}
.yd_c01080{bottom:251.878667pt;}
.yc_c01080{bottom:293.530667pt;}
.yb_c01080{bottom:335.182667pt;}
.ya_c01080{bottom:376.834667pt;}
.y9_c01080{bottom:440.086667pt;}
.y8_c01080{bottom:928.706667pt;}
.y7_c01080{bottom:943.317333pt;}
.y6_c01080{bottom:957.929333pt;}
.y5_c01080{bottom:972.541333pt;}
.y4_c01080{bottom:987.153333pt;}
.y3_c01080{bottom:1001.765333pt;}
.y2_c01080{bottom:1016.377333pt;}
.y1_c01080{bottom:1030.989333pt;}
.h2_c01080{height:32.006363pt;}
.h4_c01080{height:36.010648pt;}
.h5_c01080{height:46.518078pt;}
.h3_c01080{height:51.855535pt;}
.h0_c01080{height:1122.520000pt;}
.h1_c01080{height:1122.666667pt;}
.w0_c01080{width:793.706667pt;}
.w1_c01080{width:794.000000pt;}
.x0_c01080{left:0.000000pt;}
.x3_c01080{left:113.385333pt;}
.x1_c01080{left:121.886667pt;}
.x2_c01080{left:157.340000pt;}
.x4_c01080{left:386.888000pt;}
}





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

.ir_c01081:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_6592971f058185f065384e5a.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01081;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01081;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01081;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls3_c01081{letter-spacing:0.000000px;}
.ls0_c01081{letter-spacing:0.087998px;}
.ls2_c01081{letter-spacing:0.098482px;}
.ls1_c01081{letter-spacing:0.104482px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01081{word-spacing:-33.713438px;}
.ws1_c01081{word-spacing:-26.575517px;}
.wsa_c01081{word-spacing:-26.487518px;}
.ws7_c01081{word-spacing:-18.769538px;}
.ws4_c01081{word-spacing:-17.574026px;}
.ws3_c01081{word-spacing:-17.215373px;}
.ws6_c01081{word-spacing:-16.199188px;}
.ws0_c01081{word-spacing:-14.884124px;}
.ws2_c01081{word-spacing:-13.927715px;}
.ws5_c01081{word-spacing:-10.351366px;}
.wse_c01081{word-spacing:0.000000px;}
.ws10_c01081{word-spacing:0.036900px;}
.wsb_c01081{word-spacing:0.043999px;}
.wsf_c01081{word-spacing:0.053933px;}
.ws11_c01081{word-spacing:0.070416px;}
.ws9_c01081{word-spacing:0.175997px;}
.wsd_c01081{word-spacing:0.213446px;}
.wsc_c01081{word-spacing:0.219446px;}
._2_c01081{margin-left:-3.825638px;}
._3_c01081{width:1.005737px;}
._0_c01081{width:24.567772px;}
._1_c01081{width:27.676103px;}
.fc5_c01081{color:rgb(0,0,207);}
.fc4_c01081{color:rgb(79,153,5);}
.fc3_c01081{color:rgb(207,92,0);}
.fc2_c01081{color:rgb(33,74,135);}
.fc1_c01081{color:rgb(143,89,3);}
.fc0_c01081{color:rgb(0,0,0);}
.fs1_c01081{font-size:43.999200px;}
.fs0_c01081{font-size:59.775600px;}
.y0_c01081{bottom:0.000000px;}
.y27_c01081{bottom:44.250000px;}
.y26_c01081{bottom:82.051500px;}
.y25_c01081{bottom:114.927000px;}
.y24_c01081{bottom:131.365500px;}
.y23_c01081{bottom:147.804000px;}
.y22_c01081{bottom:164.242500px;}
.y21_c01081{bottom:197.119500px;}
.y20_c01081{bottom:213.558000px;}
.y1f_c01081{bottom:229.996500px;}
.y1e_c01081{bottom:246.435000px;}
.y1d_c01081{bottom:262.873500px;}
.y1c_c01081{bottom:279.310500px;}
.y1b_c01081{bottom:295.749000px;}
.y1a_c01081{bottom:328.626000px;}
.y19_c01081{bottom:345.064500px;}
.y18_c01081{bottom:361.503000px;}
.y17_c01081{bottom:394.380000px;}
.y16_c01081{bottom:410.818500px;}
.y15_c01081{bottom:460.132500px;}
.y14_c01081{bottom:476.571000px;}
.y13_c01081{bottom:509.448000px;}
.y12_c01081{bottom:525.886500px;}
.y11_c01081{bottom:542.325000px;}
.y10_c01081{bottom:558.763500px;}
.yf_c01081{bottom:591.640500px;}
.ye_c01081{bottom:608.079000px;}
.yd_c01081{bottom:624.516000px;}
.yc_c01081{bottom:640.954500px;}
.yb_c01081{bottom:657.393000px;}
.ya_c01081{bottom:673.831500px;}
.y9_c01081{bottom:690.270000px;}
.y8_c01081{bottom:706.708500px;}
.y7_c01081{bottom:722.773500px;}
.y6_c01081{bottom:766.867500px;}
.y5_c01081{bottom:784.800000px;}
.y4_c01081{bottom:802.732500px;}
.y3_c01081{bottom:820.665000px;}
.y2_c01081{bottom:838.597500px;}
.y1_c01081{bottom:856.530000px;}
.h3_c01081{height:35.190766px;}
.h4_c01081{height:36.007158px;}
.h2_c01081{height:52.332837px;}
.h0_c01081{height:1262.835000px;}
.h1_c01081{height:1263.000000px;}
.w0_c01081{width:892.920000px;}
.w1_c01081{width:893.250000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:127.558500px;}
.x2_c01081{left:137.122500px;}
.x3_c01081{left:143.770500px;}
.x4_c01081{left:435.249000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls3_c01081{letter-spacing:0.000000pt;}
.ls0_c01081{letter-spacing:0.078221pt;}
.ls2_c01081{letter-spacing:0.087539pt;}
.ls1_c01081{letter-spacing:0.092873pt;}
.ws8_c01081{word-spacing:-29.967501pt;}
.ws1_c01081{word-spacing:-23.622682pt;}
.wsa_c01081{word-spacing:-23.544461pt;}
.ws7_c01081{word-spacing:-16.684034pt;}
.ws4_c01081{word-spacing:-15.621357pt;}
.ws3_c01081{word-spacing:-15.302554pt;}
.ws6_c01081{word-spacing:-14.399278pt;}
.ws0_c01081{word-spacing:-13.230333pt;}
.ws2_c01081{word-spacing:-12.380191pt;}
.ws5_c01081{word-spacing:-9.201214pt;}
.wse_c01081{word-spacing:0.000000pt;}
.ws10_c01081{word-spacing:0.032800pt;}
.wsb_c01081{word-spacing:0.039110pt;}
.wsf_c01081{word-spacing:0.047940pt;}
.ws11_c01081{word-spacing:0.062592pt;}
.ws9_c01081{word-spacing:0.156442pt;}
.wsd_c01081{word-spacing:0.189730pt;}
.wsc_c01081{word-spacing:0.195063pt;}
._2_c01081{margin-left:-3.400567pt;}
._3_c01081{width:0.893988pt;}
._0_c01081{width:21.838019pt;}
._1_c01081{width:24.600980pt;}
.fs1_c01081{font-size:39.110400pt;}
.fs0_c01081{font-size:53.133867pt;}
.y0_c01081{bottom:0.000000pt;}
.y27_c01081{bottom:39.333333pt;}
.y26_c01081{bottom:72.934667pt;}
.y25_c01081{bottom:102.157333pt;}
.y24_c01081{bottom:116.769333pt;}
.y23_c01081{bottom:131.381333pt;}
.y22_c01081{bottom:145.993333pt;}
.y21_c01081{bottom:175.217333pt;}
.y20_c01081{bottom:189.829333pt;}
.y1f_c01081{bottom:204.441333pt;}
.y1e_c01081{bottom:219.053333pt;}
.y1d_c01081{bottom:233.665333pt;}
.y1c_c01081{bottom:248.276000pt;}
.y1b_c01081{bottom:262.888000pt;}
.y1a_c01081{bottom:292.112000pt;}
.y19_c01081{bottom:306.724000pt;}
.y18_c01081{bottom:321.336000pt;}
.y17_c01081{bottom:350.560000pt;}
.y16_c01081{bottom:365.172000pt;}
.y15_c01081{bottom:409.006667pt;}
.y14_c01081{bottom:423.618667pt;}
.y13_c01081{bottom:452.842667pt;}
.y12_c01081{bottom:467.454667pt;}
.y11_c01081{bottom:482.066667pt;}
.y10_c01081{bottom:496.678667pt;}
.yf_c01081{bottom:525.902667pt;}
.ye_c01081{bottom:540.514667pt;}
.yd_c01081{bottom:555.125333pt;}
.yc_c01081{bottom:569.737333pt;}
.yb_c01081{bottom:584.349333pt;}
.ya_c01081{bottom:598.961333pt;}
.y9_c01081{bottom:613.573333pt;}
.y8_c01081{bottom:628.185333pt;}
.y7_c01081{bottom:642.465333pt;}
.y6_c01081{bottom:681.660000pt;}
.y5_c01081{bottom:697.600000pt;}
.y4_c01081{bottom:713.540000pt;}
.y3_c01081{bottom:729.480000pt;}
.y2_c01081{bottom:745.420000pt;}
.y1_c01081{bottom:761.360000pt;}
.h3_c01081{height:31.280681pt;}
.h4_c01081{height:32.006363pt;}
.h2_c01081{height:46.518078pt;}
.h0_c01081{height:1122.520000pt;}
.h1_c01081{height:1122.666667pt;}
.w0_c01081{width:793.706667pt;}
.w1_c01081{width:794.000000pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:113.385333pt;}
.x2_c01081{left:121.886667pt;}
.x3_c01081{left:127.796000pt;}
.x4_c01081{left:386.888000pt;}
}





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

.ir_c01082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_1d6d83995784b7e8b51a5c8d.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01082;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01082;src:url('chunks/assets/font_c999d55457dd209c4609f464.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01082;src:url('chunks/assets/font_71966fd139ed7e919b6651c0.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls4_c01082{letter-spacing:0.000000px;}
.ls0_c01082{letter-spacing:0.087998px;}
.ls1_c01082{letter-spacing:0.098482px;}
.ls2_c01082{letter-spacing:0.104482px;}
.ls3_c01082{letter-spacing:26.690482px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01082{word-spacing:-26.575517px;}
.ws1_c01082{word-spacing:-26.487518px;}
.ws2_c01082{word-spacing:0.000000px;}
.ws8_c01082{word-spacing:0.043999px;}
.ws3_c01082{word-spacing:0.053933px;}
.ws5_c01082{word-spacing:0.064416px;}
.ws4_c01082{word-spacing:0.070416px;}
.ws7_c01082{word-spacing:0.072701px;}
.ws6_c01082{word-spacing:0.213446px;}
._1_c01082{width:1.084656px;}
._0_c01082{width:106.830058px;}
.fc5_c01082{color:rgb(0,0,207);}
.fc4_c01082{color:rgb(207,92,0);}
.fc3_c01082{color:rgb(143,89,3);}
.fc2_c01082{color:rgb(0,0,0);}
.fc1_c01082{color:rgb(79,153,5);}
.fc0_c01082{color:rgb(33,74,135);}
.fs0_c01082{font-size:43.999200px;}
.fs1_c01082{font-size:59.775600px;}
.y0_c01082{bottom:0.000000px;}
.y3b_c01082{bottom:44.250000px;}
.y3a_c01082{bottom:91.369500px;}
.y39_c01082{bottom:107.808000px;}
.y38_c01082{bottom:124.246500px;}
.y37_c01082{bottom:140.685000px;}
.y36_c01082{bottom:173.562000px;}
.y35_c01082{bottom:190.000500px;}
.y34_c01082{bottom:206.437500px;}
.y33_c01082{bottom:255.753000px;}
.y32_c01082{bottom:272.191500px;}
.y31_c01082{bottom:288.630000px;}
.y30_c01082{bottom:305.068500px;}
.y2f_c01082{bottom:321.507000px;}
.y2e_c01082{bottom:337.945500px;}
.y2d_c01082{bottom:354.384000px;}
.y2c_c01082{bottom:370.822500px;}
.y2b_c01082{bottom:387.259500px;}
.y2a_c01082{bottom:403.698000px;}
.y29_c01082{bottom:420.136500px;}
.y28_c01082{bottom:436.575000px;}
.y27_c01082{bottom:453.013500px;}
.y26_c01082{bottom:469.452000px;}
.y25_c01082{bottom:485.890500px;}
.y24_c01082{bottom:502.329000px;}
.y23_c01082{bottom:518.767500px;}
.y22_c01082{bottom:535.206000px;}
.y21_c01082{bottom:551.643000px;}
.y20_c01082{bottom:568.081500px;}
.y1f_c01082{bottom:584.520000px;}
.y1e_c01082{bottom:600.958500px;}
.y1d_c01082{bottom:617.397000px;}
.y1c_c01082{bottom:633.835500px;}
.y1b_c01082{bottom:650.274000px;}
.y1a_c01082{bottom:666.712500px;}
.y19_c01082{bottom:683.151000px;}
.y18_c01082{bottom:716.028000px;}
.y17_c01082{bottom:732.465000px;}
.y16_c01082{bottom:748.903500px;}
.y15_c01082{bottom:765.342000px;}
.y14_c01082{bottom:781.780500px;}
.y13_c01082{bottom:798.219000px;}
.y12_c01082{bottom:831.096000px;}
.y11_c01082{bottom:847.534500px;}
.y10_c01082{bottom:863.973000px;}
.yf_c01082{bottom:880.411500px;}
.ye_c01082{bottom:896.848500px;}
.yd_c01082{bottom:913.287000px;}
.yc_c01082{bottom:929.725500px;}
.yb_c01082{bottom:946.164000px;}
.ya_c01082{bottom:979.041000px;}
.y9_c01082{bottom:1011.918000px;}
.y8_c01082{bottom:1028.356500px;}
.y7_c01082{bottom:1044.795000px;}
.y6_c01082{bottom:1061.232000px;}
.y5_c01082{bottom:1077.670500px;}
.y4_c01082{bottom:1094.109000px;}
.y3_c01082{bottom:1126.986000px;}
.y2_c01082{bottom:1143.424500px;}
.y1_c01082{bottom:1159.863000px;}
.h3_c01082{height:35.190766px;}
.h2_c01082{height:36.007158px;}
.h4_c01082{height:52.332837px;}
.h0_c01082{height:1262.835000px;}
.h1_c01082{height:1263.000000px;}
.w0_c01082{width:892.920000px;}
.w1_c01082{width:893.250000px;}
.x0_c01082{left:0.000000px;}
.x2_c01082{left:137.122500px;}
.x3_c01082{left:143.770500px;}
.x4_c01082{left:177.007500px;}
.x6_c01082{left:196.948500px;}
.x1_c01082{left:203.596500px;}
.x5_c01082{left:210.243000px;}
.x7_c01082{left:435.249000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls4_c01082{letter-spacing:0.000000pt;}
.ls0_c01082{letter-spacing:0.078221pt;}
.ls1_c01082{letter-spacing:0.087539pt;}
.ls2_c01082{letter-spacing:0.092873pt;}
.ls3_c01082{letter-spacing:23.724873pt;}
.ws0_c01082{word-spacing:-23.622682pt;}
.ws1_c01082{word-spacing:-23.544461pt;}
.ws2_c01082{word-spacing:0.000000pt;}
.ws8_c01082{word-spacing:0.039110pt;}
.ws3_c01082{word-spacing:0.047940pt;}
.ws5_c01082{word-spacing:0.057259pt;}
.ws4_c01082{word-spacing:0.062592pt;}
.ws7_c01082{word-spacing:0.064623pt;}
.ws6_c01082{word-spacing:0.189730pt;}
._1_c01082{width:0.964139pt;}
._0_c01082{width:94.960051pt;}
.fs0_c01082{font-size:39.110400pt;}
.fs1_c01082{font-size:53.133867pt;}
.y0_c01082{bottom:0.000000pt;}
.y3b_c01082{bottom:39.333333pt;}
.y3a_c01082{bottom:81.217333pt;}
.y39_c01082{bottom:95.829333pt;}
.y38_c01082{bottom:110.441333pt;}
.y37_c01082{bottom:125.053333pt;}
.y36_c01082{bottom:154.277333pt;}
.y35_c01082{bottom:168.889333pt;}
.y34_c01082{bottom:183.500000pt;}
.y33_c01082{bottom:227.336000pt;}
.y32_c01082{bottom:241.948000pt;}
.y31_c01082{bottom:256.560000pt;}
.y30_c01082{bottom:271.172000pt;}
.y2f_c01082{bottom:285.784000pt;}
.y2e_c01082{bottom:300.396000pt;}
.y2d_c01082{bottom:315.008000pt;}
.y2c_c01082{bottom:329.620000pt;}
.y2b_c01082{bottom:344.230667pt;}
.y2a_c01082{bottom:358.842667pt;}
.y29_c01082{bottom:373.454667pt;}
.y28_c01082{bottom:388.066667pt;}
.y27_c01082{bottom:402.678667pt;}
.y26_c01082{bottom:417.290667pt;}
.y25_c01082{bottom:431.902667pt;}
.y24_c01082{bottom:446.514667pt;}
.y23_c01082{bottom:461.126667pt;}
.y22_c01082{bottom:475.738667pt;}
.y21_c01082{bottom:490.349333pt;}
.y20_c01082{bottom:504.961333pt;}
.y1f_c01082{bottom:519.573333pt;}
.y1e_c01082{bottom:534.185333pt;}
.y1d_c01082{bottom:548.797333pt;}
.y1c_c01082{bottom:563.409333pt;}
.y1b_c01082{bottom:578.021333pt;}
.y1a_c01082{bottom:592.633333pt;}
.y19_c01082{bottom:607.245333pt;}
.y18_c01082{bottom:636.469333pt;}
.y17_c01082{bottom:651.080000pt;}
.y16_c01082{bottom:665.692000pt;}
.y15_c01082{bottom:680.304000pt;}
.y14_c01082{bottom:694.916000pt;}
.y13_c01082{bottom:709.528000pt;}
.y12_c01082{bottom:738.752000pt;}
.y11_c01082{bottom:753.364000pt;}
.y10_c01082{bottom:767.976000pt;}
.yf_c01082{bottom:782.588000pt;}
.ye_c01082{bottom:797.198667pt;}
.yd_c01082{bottom:811.810667pt;}
.yc_c01082{bottom:826.422667pt;}
.yb_c01082{bottom:841.034667pt;}
.ya_c01082{bottom:870.258667pt;}
.y9_c01082{bottom:899.482667pt;}
.y8_c01082{bottom:914.094667pt;}
.y7_c01082{bottom:928.706667pt;}
.y6_c01082{bottom:943.317333pt;}
.y5_c01082{bottom:957.929333pt;}
.y4_c01082{bottom:972.541333pt;}
.y3_c01082{bottom:1001.765333pt;}
.y2_c01082{bottom:1016.377333pt;}
.y1_c01082{bottom:1030.989333pt;}
.h3_c01082{height:31.280681pt;}
.h2_c01082{height:32.006363pt;}
.h4_c01082{height:46.518078pt;}
.h0_c01082{height:1122.520000pt;}
.h1_c01082{height:1122.666667pt;}
.w0_c01082{width:793.706667pt;}
.w1_c01082{width:794.000000pt;}
.x0_c01082{left:0.000000pt;}
.x2_c01082{left:121.886667pt;}
.x3_c01082{left:127.796000pt;}
.x4_c01082{left:157.340000pt;}
.x6_c01082{left:175.065333pt;}
.x1_c01082{left:180.974667pt;}
.x5_c01082{left:186.882667pt;}
.x7_c01082{left:386.888000pt;}
}





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

.ir_c01083:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_1abc5f7091720db7ea8b7bc1.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01083;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01083;src:url('chunks/assets/font_d4249858a7481a4e7e7d996d.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01083;src:url('chunks/assets/font_c55c75085880b71accffba77.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01083{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls3_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:0.087998px;}
.ls1_c01083{letter-spacing:0.098482px;}
.ls2_c01083{letter-spacing:0.104482px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:-26.575517px;}
.ws1_c01083{word-spacing:-26.487518px;}
.ws6_c01083{word-spacing:-18.769538px;}
.wsc_c01083{word-spacing:-17.454475px;}
.wsd_c01083{word-spacing:-17.394700px;}
.wsb_c01083{word-spacing:-16.677392px;}
.ws9_c01083{word-spacing:-15.601432px;}
.ws5_c01083{word-spacing:-14.943900px;}
.wsa_c01083{word-spacing:-13.808164px;}
.ws8_c01083{word-spacing:-13.748388px;}
.wse_c01083{word-spacing:-13.031081px;}
.wsf_c01083{word-spacing:-12.971305px;}
.ws3_c01083{word-spacing:-9.988424px;}
.ws4_c01083{word-spacing:-9.987499px;}
.ws10_c01083{word-spacing:0.000000px;}
.ws7_c01083{word-spacing:0.017856px;}
.ws2_c01083{word-spacing:43.038600px;}
._1_c01083{margin-left:-7.833025px;}
._6_c01083{margin-left:-4.656358px;}
._4_c01083{margin-left:-2.998955px;}
._0_c01083{margin-left:-1.549390px;}
._8_c01083{width:18.590212px;}
._2_c01083{width:19.935816px;}
._5_c01083{width:21.220338px;}
._7_c01083{width:24.089567px;}
._3_c01083{width:29.529146px;}
._9_c01083{width:37.277333px;}
.fc5_c01083{color:rgb(0,0,207);}
.fc6_c01083{color:rgb(6,69,173);}
.fc4_c01083{color:rgb(207,92,0);}
.fc3_c01083{color:rgb(79,153,5);}
.fc2_c01083{color:rgb(33,74,135);}
.fc1_c01083{color:rgb(143,89,3);}
.fc0_c01083{color:rgb(0,0,0);}
.fs0_c01083{font-size:43.999200px;}
.fs2_c01083{font-size:59.775600px;}
.fs1_c01083{font-size:86.077200px;}
.y0_c01083{bottom:0.000000px;}
.y15_c01083{bottom:44.250000px;}
.y14_c01083{bottom:82.051500px;}
.y13_c01083{bottom:99.984000px;}
.y12_c01083{bottom:117.916500px;}
.y11_c01083{bottom:135.849000px;}
.y10_c01083{bottom:184.246500px;}
.yf_c01083{bottom:202.179000px;}
.ye_c01083{bottom:220.111500px;}
.yd_c01083{bottom:238.044000px;}
.yc_c01083{bottom:286.441500px;}
.yb_c01083{bottom:334.837500px;}
.ya_c01083{bottom:383.235000px;}
.y9_c01083{bottom:431.632500px;}
.y8_c01083{bottom:505.017000px;}
.y7_c01083{bottom:1061.232000px;}
.y6_c01083{bottom:1077.670500px;}
.y5_c01083{bottom:1094.109000px;}
.y4_c01083{bottom:1110.547500px;}
.y3_c01083{bottom:1126.986000px;}
.y2_c01083{bottom:1143.424500px;}
.y1_c01083{bottom:1159.863000px;}
.h2_c01083{height:36.007158px;}
.h4_c01083{height:40.511979px;}
.h5_c01083{height:52.332837px;}
.h3_c01083{height:58.337477px;}
.h0_c01083{height:1262.835000px;}
.h1_c01083{height:1263.000000px;}
.w0_c01083{width:892.920000px;}
.w1_c01083{width:893.250000px;}
.x0_c01083{left:0.000000px;}
.x3_c01083{left:127.558500px;}
.x1_c01083{left:137.122500px;}
.x2_c01083{left:177.007500px;}
.x4_c01083{left:435.249000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls3_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:0.078221pt;}
.ls1_c01083{letter-spacing:0.087539pt;}
.ls2_c01083{letter-spacing:0.092873pt;}
.ws0_c01083{word-spacing:-23.622682pt;}
.ws1_c01083{word-spacing:-23.544461pt;}
.ws6_c01083{word-spacing:-16.684034pt;}
.wsc_c01083{word-spacing:-15.515089pt;}
.wsd_c01083{word-spacing:-15.461955pt;}
.wsb_c01083{word-spacing:-14.824349pt;}
.ws9_c01083{word-spacing:-13.867939pt;}
.ws5_c01083{word-spacing:-13.283467pt;}
.wsa_c01083{word-spacing:-12.273923pt;}
.ws8_c01083{word-spacing:-12.220789pt;}
.wse_c01083{word-spacing:-11.583183pt;}
.wsf_c01083{word-spacing:-11.530049pt;}
.ws3_c01083{word-spacing:-8.878599pt;}
.ws4_c01083{word-spacing:-8.877777pt;}
.ws10_c01083{word-spacing:0.000000pt;}
.ws7_c01083{word-spacing:0.015872pt;}
.ws2_c01083{word-spacing:38.256533pt;}
._1_c01083{margin-left:-6.962689pt;}
._6_c01083{margin-left:-4.138985pt;}
._4_c01083{margin-left:-2.665738pt;}
._0_c01083{margin-left:-1.377235pt;}
._8_c01083{width:16.524633pt;}
._2_c01083{width:17.720725pt;}
._5_c01083{width:18.862523pt;}
._7_c01083{width:21.412948pt;}
._3_c01083{width:26.248130pt;}
._9_c01083{width:33.135407pt;}
.fs0_c01083{font-size:39.110400pt;}
.fs2_c01083{font-size:53.133867pt;}
.fs1_c01083{font-size:76.513067pt;}
.y0_c01083{bottom:0.000000pt;}
.y15_c01083{bottom:39.333333pt;}
.y14_c01083{bottom:72.934667pt;}
.y13_c01083{bottom:88.874667pt;}
.y12_c01083{bottom:104.814667pt;}
.y11_c01083{bottom:120.754667pt;}
.y10_c01083{bottom:163.774667pt;}
.yf_c01083{bottom:179.714667pt;}
.ye_c01083{bottom:195.654667pt;}
.yd_c01083{bottom:211.594667pt;}
.yc_c01083{bottom:254.614667pt;}
.yb_c01083{bottom:297.633333pt;}
.ya_c01083{bottom:340.653333pt;}
.y9_c01083{bottom:383.673333pt;}
.y8_c01083{bottom:448.904000pt;}
.y7_c01083{bottom:943.317333pt;}
.y6_c01083{bottom:957.929333pt;}
.y5_c01083{bottom:972.541333pt;}
.y4_c01083{bottom:987.153333pt;}
.y3_c01083{bottom:1001.765333pt;}
.y2_c01083{bottom:1016.377333pt;}
.y1_c01083{bottom:1030.989333pt;}
.h2_c01083{height:32.006363pt;}
.h4_c01083{height:36.010648pt;}
.h5_c01083{height:46.518078pt;}
.h3_c01083{height:51.855535pt;}
.h0_c01083{height:1122.520000pt;}
.h1_c01083{height:1122.666667pt;}
.w0_c01083{width:793.706667pt;}
.w1_c01083{width:794.000000pt;}
.x0_c01083{left:0.000000pt;}
.x3_c01083{left:113.385333pt;}
.x1_c01083{left:121.886667pt;}
.x2_c01083{left:157.340000pt;}
.x4_c01083{left:386.888000pt;}
}





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

.ir_c01084:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_bec8fcc98f576bc1d2abafdc.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01084;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01084;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01084;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls3_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:0.087998px;}
.ls2_c01084{letter-spacing:0.098482px;}
.ls1_c01084{letter-spacing:0.104482px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01084{word-spacing:-33.713438px;}
.ws1_c01084{word-spacing:-26.575517px;}
.wsa_c01084{word-spacing:-26.487518px;}
.ws7_c01084{word-spacing:-18.769538px;}
.ws4_c01084{word-spacing:-17.574026px;}
.ws3_c01084{word-spacing:-17.215373px;}
.ws6_c01084{word-spacing:-16.199188px;}
.ws0_c01084{word-spacing:-14.884124px;}
.ws2_c01084{word-spacing:-13.927715px;}
.ws5_c01084{word-spacing:-10.351366px;}
.wse_c01084{word-spacing:0.000000px;}
.ws10_c01084{word-spacing:0.036900px;}
.wsb_c01084{word-spacing:0.043999px;}
.wsf_c01084{word-spacing:0.053933px;}
.ws11_c01084{word-spacing:0.070416px;}
.ws9_c01084{word-spacing:0.175997px;}
.wsd_c01084{word-spacing:0.213446px;}
.wsc_c01084{word-spacing:0.219446px;}
._2_c01084{margin-left:-3.825638px;}
._3_c01084{width:1.005737px;}
._0_c01084{width:24.567772px;}
._1_c01084{width:27.676103px;}
.fc5_c01084{color:rgb(0,0,207);}
.fc4_c01084{color:rgb(79,153,5);}
.fc3_c01084{color:rgb(207,92,0);}
.fc2_c01084{color:rgb(33,74,135);}
.fc1_c01084{color:rgb(143,89,3);}
.fc0_c01084{color:rgb(0,0,0);}
.fs1_c01084{font-size:43.999200px;}
.fs0_c01084{font-size:59.775600px;}
.y0_c01084{bottom:0.000000px;}
.y27_c01084{bottom:44.250000px;}
.y26_c01084{bottom:82.051500px;}
.y25_c01084{bottom:114.927000px;}
.y24_c01084{bottom:131.365500px;}
.y23_c01084{bottom:147.804000px;}
.y22_c01084{bottom:164.242500px;}
.y21_c01084{bottom:197.119500px;}
.y20_c01084{bottom:213.558000px;}
.y1f_c01084{bottom:229.996500px;}
.y1e_c01084{bottom:246.435000px;}
.y1d_c01084{bottom:262.873500px;}
.y1c_c01084{bottom:279.310500px;}
.y1b_c01084{bottom:295.749000px;}
.y1a_c01084{bottom:328.626000px;}
.y19_c01084{bottom:345.064500px;}
.y18_c01084{bottom:361.503000px;}
.y17_c01084{bottom:394.380000px;}
.y16_c01084{bottom:410.818500px;}
.y15_c01084{bottom:460.132500px;}
.y14_c01084{bottom:476.571000px;}
.y13_c01084{bottom:509.448000px;}
.y12_c01084{bottom:525.886500px;}
.y11_c01084{bottom:542.325000px;}
.y10_c01084{bottom:558.763500px;}
.yf_c01084{bottom:591.640500px;}
.ye_c01084{bottom:608.079000px;}
.yd_c01084{bottom:624.516000px;}
.yc_c01084{bottom:640.954500px;}
.yb_c01084{bottom:657.393000px;}
.ya_c01084{bottom:673.831500px;}
.y9_c01084{bottom:690.270000px;}
.y8_c01084{bottom:706.708500px;}
.y7_c01084{bottom:722.773500px;}
.y6_c01084{bottom:766.867500px;}
.y5_c01084{bottom:784.800000px;}
.y4_c01084{bottom:802.732500px;}
.y3_c01084{bottom:820.665000px;}
.y2_c01084{bottom:838.597500px;}
.y1_c01084{bottom:856.530000px;}
.h3_c01084{height:35.190766px;}
.h4_c01084{height:36.007158px;}
.h2_c01084{height:52.332837px;}
.h0_c01084{height:1262.835000px;}
.h1_c01084{height:1263.000000px;}
.w0_c01084{width:892.920000px;}
.w1_c01084{width:893.250000px;}
.x0_c01084{left:0.000000px;}
.x1_c01084{left:127.558500px;}
.x2_c01084{left:137.122500px;}
.x3_c01084{left:143.770500px;}
.x4_c01084{left:435.249000px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls3_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:0.078221pt;}
.ls2_c01084{letter-spacing:0.087539pt;}
.ls1_c01084{letter-spacing:0.092873pt;}
.ws8_c01084{word-spacing:-29.967501pt;}
.ws1_c01084{word-spacing:-23.622682pt;}
.wsa_c01084{word-spacing:-23.544461pt;}
.ws7_c01084{word-spacing:-16.684034pt;}
.ws4_c01084{word-spacing:-15.621357pt;}
.ws3_c01084{word-spacing:-15.302554pt;}
.ws6_c01084{word-spacing:-14.399278pt;}
.ws0_c01084{word-spacing:-13.230333pt;}
.ws2_c01084{word-spacing:-12.380191pt;}
.ws5_c01084{word-spacing:-9.201214pt;}
.wse_c01084{word-spacing:0.000000pt;}
.ws10_c01084{word-spacing:0.032800pt;}
.wsb_c01084{word-spacing:0.039110pt;}
.wsf_c01084{word-spacing:0.047940pt;}
.ws11_c01084{word-spacing:0.062592pt;}
.ws9_c01084{word-spacing:0.156442pt;}
.wsd_c01084{word-spacing:0.189730pt;}
.wsc_c01084{word-spacing:0.195063pt;}
._2_c01084{margin-left:-3.400567pt;}
._3_c01084{width:0.893988pt;}
._0_c01084{width:21.838019pt;}
._1_c01084{width:24.600980pt;}
.fs1_c01084{font-size:39.110400pt;}
.fs0_c01084{font-size:53.133867pt;}
.y0_c01084{bottom:0.000000pt;}
.y27_c01084{bottom:39.333333pt;}
.y26_c01084{bottom:72.934667pt;}
.y25_c01084{bottom:102.157333pt;}
.y24_c01084{bottom:116.769333pt;}
.y23_c01084{bottom:131.381333pt;}
.y22_c01084{bottom:145.993333pt;}
.y21_c01084{bottom:175.217333pt;}
.y20_c01084{bottom:189.829333pt;}
.y1f_c01084{bottom:204.441333pt;}
.y1e_c01084{bottom:219.053333pt;}
.y1d_c01084{bottom:233.665333pt;}
.y1c_c01084{bottom:248.276000pt;}
.y1b_c01084{bottom:262.888000pt;}
.y1a_c01084{bottom:292.112000pt;}
.y19_c01084{bottom:306.724000pt;}
.y18_c01084{bottom:321.336000pt;}
.y17_c01084{bottom:350.560000pt;}
.y16_c01084{bottom:365.172000pt;}
.y15_c01084{bottom:409.006667pt;}
.y14_c01084{bottom:423.618667pt;}
.y13_c01084{bottom:452.842667pt;}
.y12_c01084{bottom:467.454667pt;}
.y11_c01084{bottom:482.066667pt;}
.y10_c01084{bottom:496.678667pt;}
.yf_c01084{bottom:525.902667pt;}
.ye_c01084{bottom:540.514667pt;}
.yd_c01084{bottom:555.125333pt;}
.yc_c01084{bottom:569.737333pt;}
.yb_c01084{bottom:584.349333pt;}
.ya_c01084{bottom:598.961333pt;}
.y9_c01084{bottom:613.573333pt;}
.y8_c01084{bottom:628.185333pt;}
.y7_c01084{bottom:642.465333pt;}
.y6_c01084{bottom:681.660000pt;}
.y5_c01084{bottom:697.600000pt;}
.y4_c01084{bottom:713.540000pt;}
.y3_c01084{bottom:729.480000pt;}
.y2_c01084{bottom:745.420000pt;}
.y1_c01084{bottom:761.360000pt;}
.h3_c01084{height:31.280681pt;}
.h4_c01084{height:32.006363pt;}
.h2_c01084{height:46.518078pt;}
.h0_c01084{height:1122.520000pt;}
.h1_c01084{height:1122.666667pt;}
.w0_c01084{width:793.706667pt;}
.w1_c01084{width:794.000000pt;}
.x0_c01084{left:0.000000pt;}
.x1_c01084{left:113.385333pt;}
.x2_c01084{left:121.886667pt;}
.x3_c01084{left:127.796000pt;}
.x4_c01084{left:386.888000pt;}
}





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

.ir_c01085:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_d52b3e8ae37dd5022efa0289.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01085;src:url('chunks/assets/font_d7de382ba545bc543f39d21f.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01085;src:url('chunks/assets/font_37a843773e3a4d7e4b9c3892.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01085;src:url('chunks/assets/font_2ada0802c765799140ff0ce4.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls4_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:0.087998px;}
.ls2_c01085{letter-spacing:0.098482px;}
.ls1_c01085{letter-spacing:0.104482px;}
.ls3_c01085{letter-spacing:26.690482px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:-26.575517px;}
.ws1_c01085{word-spacing:-26.487518px;}
.ws2_c01085{word-spacing:0.000000px;}
.ws8_c01085{word-spacing:0.043999px;}
.ws3_c01085{word-spacing:0.053933px;}
.ws5_c01085{word-spacing:0.064416px;}
.ws4_c01085{word-spacing:0.070416px;}
.ws7_c01085{word-spacing:0.073250px;}
.ws9_c01085{word-spacing:0.213446px;}
.ws6_c01085{word-spacing:0.219446px;}
._1_c01085{width:1.041538px;}
._0_c01085{width:80.166542px;}
.fc5_c01085{color:rgb(0,0,207);}
.fc4_c01085{color:rgb(207,92,0);}
.fc3_c01085{color:rgb(143,89,3);}
.fc2_c01085{color:rgb(0,0,0);}
.fc1_c01085{color:rgb(79,153,5);}
.fc0_c01085{color:rgb(33,74,135);}
.fs0_c01085{font-size:43.999200px;}
.fs1_c01085{font-size:59.775600px;}
.y0_c01085{bottom:0.000000px;}
.y3c_c01085{bottom:44.250000px;}
.y3b_c01085{bottom:91.369500px;}
.y3a_c01085{bottom:107.808000px;}
.y39_c01085{bottom:124.246500px;}
.y38_c01085{bottom:140.685000px;}
.y37_c01085{bottom:157.123500px;}
.y36_c01085{bottom:190.000500px;}
.y35_c01085{bottom:206.437500px;}
.y34_c01085{bottom:222.876000px;}
.y33_c01085{bottom:272.191500px;}
.y32_c01085{bottom:288.630000px;}
.y31_c01085{bottom:305.068500px;}
.y30_c01085{bottom:321.507000px;}
.y2f_c01085{bottom:337.945500px;}
.y2e_c01085{bottom:354.384000px;}
.y2d_c01085{bottom:370.822500px;}
.y2c_c01085{bottom:387.259500px;}
.y2b_c01085{bottom:403.698000px;}
.y2a_c01085{bottom:420.136500px;}
.y29_c01085{bottom:436.575000px;}
.y28_c01085{bottom:453.013500px;}
.y27_c01085{bottom:469.452000px;}
.y26_c01085{bottom:485.890500px;}
.y25_c01085{bottom:502.329000px;}
.y24_c01085{bottom:518.767500px;}
.y23_c01085{bottom:535.206000px;}
.y22_c01085{bottom:551.643000px;}
.y21_c01085{bottom:568.081500px;}
.y20_c01085{bottom:584.520000px;}
.y1f_c01085{bottom:600.958500px;}
.y1e_c01085{bottom:617.397000px;}
.y1d_c01085{bottom:633.835500px;}
.y1c_c01085{bottom:650.274000px;}
.y1b_c01085{bottom:666.712500px;}
.y1a_c01085{bottom:683.151000px;}
.y19_c01085{bottom:699.589500px;}
.y18_c01085{bottom:732.465000px;}
.y17_c01085{bottom:748.903500px;}
.y16_c01085{bottom:765.342000px;}
.y15_c01085{bottom:781.780500px;}
.y14_c01085{bottom:798.219000px;}
.y13_c01085{bottom:814.657500px;}
.y12_c01085{bottom:847.534500px;}
.y11_c01085{bottom:863.973000px;}
.y10_c01085{bottom:880.411500px;}
.yf_c01085{bottom:896.848500px;}
.ye_c01085{bottom:913.287000px;}
.yd_c01085{bottom:929.725500px;}
.yc_c01085{bottom:946.164000px;}
.yb_c01085{bottom:962.602500px;}
.ya_c01085{bottom:979.041000px;}
.y9_c01085{bottom:1011.918000px;}
.y8_c01085{bottom:1028.356500px;}
.y7_c01085{bottom:1044.795000px;}
.y6_c01085{bottom:1061.232000px;}
.y5_c01085{bottom:1077.670500px;}
.y4_c01085{bottom:1094.109000px;}
.y3_c01085{bottom:1126.986000px;}
.y2_c01085{bottom:1143.424500px;}
.y1_c01085{bottom:1159.863000px;}
.h3_c01085{height:35.190766px;}
.h2_c01085{height:36.007158px;}
.h4_c01085{height:52.332837px;}
.h0_c01085{height:1262.835000px;}
.h1_c01085{height:1263.000000px;}
.w0_c01085{width:892.920000px;}
.w1_c01085{width:893.250000px;}
.x0_c01085{left:0.000000px;}
.x2_c01085{left:137.122500px;}
.x3_c01085{left:143.770500px;}
.x4_c01085{left:177.007500px;}
.x6_c01085{left:196.948500px;}
.x1_c01085{left:203.596500px;}
.x5_c01085{left:210.243000px;}
.x7_c01085{left:435.249000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls4_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:0.078221pt;}
.ls2_c01085{letter-spacing:0.087539pt;}
.ls1_c01085{letter-spacing:0.092873pt;}
.ls3_c01085{letter-spacing:23.724873pt;}
.ws0_c01085{word-spacing:-23.622682pt;}
.ws1_c01085{word-spacing:-23.544461pt;}
.ws2_c01085{word-spacing:0.000000pt;}
.ws8_c01085{word-spacing:0.039110pt;}
.ws3_c01085{word-spacing:0.047940pt;}
.ws5_c01085{word-spacing:0.057259pt;}
.ws4_c01085{word-spacing:0.062592pt;}
.ws7_c01085{word-spacing:0.065111pt;}
.ws9_c01085{word-spacing:0.189730pt;}
.ws6_c01085{word-spacing:0.195063pt;}
._1_c01085{width:0.925811pt;}
._0_c01085{width:71.259149pt;}
.fs0_c01085{font-size:39.110400pt;}
.fs1_c01085{font-size:53.133867pt;}
.y0_c01085{bottom:0.000000pt;}
.y3c_c01085{bottom:39.333333pt;}
.y3b_c01085{bottom:81.217333pt;}
.y3a_c01085{bottom:95.829333pt;}
.y39_c01085{bottom:110.441333pt;}
.y38_c01085{bottom:125.053333pt;}
.y37_c01085{bottom:139.665333pt;}
.y36_c01085{bottom:168.889333pt;}
.y35_c01085{bottom:183.500000pt;}
.y34_c01085{bottom:198.112000pt;}
.y33_c01085{bottom:241.948000pt;}
.y32_c01085{bottom:256.560000pt;}
.y31_c01085{bottom:271.172000pt;}
.y30_c01085{bottom:285.784000pt;}
.y2f_c01085{bottom:300.396000pt;}
.y2e_c01085{bottom:315.008000pt;}
.y2d_c01085{bottom:329.620000pt;}
.y2c_c01085{bottom:344.230667pt;}
.y2b_c01085{bottom:358.842667pt;}
.y2a_c01085{bottom:373.454667pt;}
.y29_c01085{bottom:388.066667pt;}
.y28_c01085{bottom:402.678667pt;}
.y27_c01085{bottom:417.290667pt;}
.y26_c01085{bottom:431.902667pt;}
.y25_c01085{bottom:446.514667pt;}
.y24_c01085{bottom:461.126667pt;}
.y23_c01085{bottom:475.738667pt;}
.y22_c01085{bottom:490.349333pt;}
.y21_c01085{bottom:504.961333pt;}
.y20_c01085{bottom:519.573333pt;}
.y1f_c01085{bottom:534.185333pt;}
.y1e_c01085{bottom:548.797333pt;}
.y1d_c01085{bottom:563.409333pt;}
.y1c_c01085{bottom:578.021333pt;}
.y1b_c01085{bottom:592.633333pt;}
.y1a_c01085{bottom:607.245333pt;}
.y19_c01085{bottom:621.857333pt;}
.y18_c01085{bottom:651.080000pt;}
.y17_c01085{bottom:665.692000pt;}
.y16_c01085{bottom:680.304000pt;}
.y15_c01085{bottom:694.916000pt;}
.y14_c01085{bottom:709.528000pt;}
.y13_c01085{bottom:724.140000pt;}
.y12_c01085{bottom:753.364000pt;}
.y11_c01085{bottom:767.976000pt;}
.y10_c01085{bottom:782.588000pt;}
.yf_c01085{bottom:797.198667pt;}
.ye_c01085{bottom:811.810667pt;}
.yd_c01085{bottom:826.422667pt;}
.yc_c01085{bottom:841.034667pt;}
.yb_c01085{bottom:855.646667pt;}
.ya_c01085{bottom:870.258667pt;}
.y9_c01085{bottom:899.482667pt;}
.y8_c01085{bottom:914.094667pt;}
.y7_c01085{bottom:928.706667pt;}
.y6_c01085{bottom:943.317333pt;}
.y5_c01085{bottom:957.929333pt;}
.y4_c01085{bottom:972.541333pt;}
.y3_c01085{bottom:1001.765333pt;}
.y2_c01085{bottom:1016.377333pt;}
.y1_c01085{bottom:1030.989333pt;}
.h3_c01085{height:31.280681pt;}
.h2_c01085{height:32.006363pt;}
.h4_c01085{height:46.518078pt;}
.h0_c01085{height:1122.520000pt;}
.h1_c01085{height:1122.666667pt;}
.w0_c01085{width:793.706667pt;}
.w1_c01085{width:794.000000pt;}
.x0_c01085{left:0.000000pt;}
.x2_c01085{left:121.886667pt;}
.x3_c01085{left:127.796000pt;}
.x4_c01085{left:157.340000pt;}
.x6_c01085{left:175.065333pt;}
.x1_c01085{left:180.974667pt;}
.x5_c01085{left:186.882667pt;}
.x7_c01085{left:386.888000pt;}
}





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

.ir_c01086:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_6ae83af97127ce1b363c674c.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01086;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01086;src:url('chunks/assets/font_1d37b68d76b8c61e39025b73.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01086;src:url('chunks/assets/font_a6a0f7328e4f0bf2ff706b04.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01086{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls3_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:0.087998px;}
.ls1_c01086{letter-spacing:0.098482px;}
.ls2_c01086{letter-spacing:0.104482px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:-26.575517px;}
.ws1_c01086{word-spacing:-26.487518px;}
.ws6_c01086{word-spacing:-18.769538px;}
.wse_c01086{word-spacing:-16.976270px;}
.wsb_c01086{word-spacing:-16.378514px;}
.ws9_c01086{word-spacing:-15.601432px;}
.ws5_c01086{word-spacing:-14.943900px;}
.wsd_c01086{word-spacing:-13.987490px;}
.wsc_c01086{word-spacing:-13.927715px;}
.wsa_c01086{word-spacing:-13.808164px;}
.ws8_c01086{word-spacing:-13.748388px;}
.ws3_c01086{word-spacing:-9.988424px;}
.ws4_c01086{word-spacing:-9.987499px;}
.wsf_c01086{word-spacing:0.000000px;}
.ws7_c01086{word-spacing:0.017856px;}
.ws2_c01086{word-spacing:43.038600px;}
._1_c01086{margin-left:-7.833025px;}
._6_c01086{margin-left:-4.656358px;}
._4_c01086{margin-left:-2.998955px;}
._0_c01086{margin-left:-1.549390px;}
._2_c01086{width:19.935816px;}
._5_c01086{width:21.220338px;}
._8_c01086{width:23.133157px;}
._7_c01086{width:24.567772px;}
._9_c01086{width:25.716728px;}
._3_c01086{width:29.529146px;}
.fc5_c01086{color:rgb(79,153,5);}
.fc4_c01086{color:rgb(33,74,135);}
.fc3_c01086{color:rgb(0,0,207);}
.fc6_c01086{color:rgb(6,69,173);}
.fc2_c01086{color:rgb(207,92,0);}
.fc1_c01086{color:rgb(143,89,3);}
.fc0_c01086{color:rgb(0,0,0);}
.fs0_c01086{font-size:43.999200px;}
.fs2_c01086{font-size:59.775600px;}
.fs1_c01086{font-size:86.077200px;}
.y0_c01086{bottom:0.000000px;}
.y14_c01086{bottom:44.250000px;}
.y13_c01086{bottom:82.051500px;}
.y12_c01086{bottom:99.984000px;}
.y11_c01086{bottom:117.916500px;}
.y10_c01086{bottom:135.849000px;}
.yf_c01086{bottom:185.784000px;}
.ye_c01086{bottom:203.718000px;}
.yd_c01086{bottom:221.650500px;}
.yc_c01086{bottom:239.583000px;}
.yb_c01086{bottom:289.518000px;}
.ya_c01086{bottom:339.454500px;}
.y9_c01086{bottom:389.389500px;}
.y8_c01086{bottom:439.326000px;}
.y7_c01086{bottom:514.936500px;}
.y6_c01086{bottom:1077.670500px;}
.y5_c01086{bottom:1094.109000px;}
.y4_c01086{bottom:1110.547500px;}
.y3_c01086{bottom:1126.986000px;}
.y2_c01086{bottom:1143.424500px;}
.y1_c01086{bottom:1159.863000px;}
.h2_c01086{height:36.007158px;}
.h4_c01086{height:40.511979px;}
.h5_c01086{height:52.332837px;}
.h3_c01086{height:58.337477px;}
.h0_c01086{height:1262.835000px;}
.h1_c01086{height:1263.000000px;}
.w0_c01086{width:892.920000px;}
.w1_c01086{width:893.250000px;}
.x0_c01086{left:0.000000px;}
.x3_c01086{left:127.558500px;}
.x1_c01086{left:137.122500px;}
.x2_c01086{left:177.007500px;}
.x4_c01086{left:435.249000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls3_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:0.078221pt;}
.ls1_c01086{letter-spacing:0.087539pt;}
.ls2_c01086{letter-spacing:0.092873pt;}
.ws0_c01086{word-spacing:-23.622682pt;}
.ws1_c01086{word-spacing:-23.544461pt;}
.ws6_c01086{word-spacing:-16.684034pt;}
.wse_c01086{word-spacing:-15.090018pt;}
.wsb_c01086{word-spacing:-14.558679pt;}
.ws9_c01086{word-spacing:-13.867939pt;}
.ws5_c01086{word-spacing:-13.283467pt;}
.wsd_c01086{word-spacing:-12.433325pt;}
.wsc_c01086{word-spacing:-12.380191pt;}
.wsa_c01086{word-spacing:-12.273923pt;}
.ws8_c01086{word-spacing:-12.220789pt;}
.ws3_c01086{word-spacing:-8.878599pt;}
.ws4_c01086{word-spacing:-8.877777pt;}
.wsf_c01086{word-spacing:0.000000pt;}
.ws7_c01086{word-spacing:0.015872pt;}
.ws2_c01086{word-spacing:38.256533pt;}
._1_c01086{margin-left:-6.962689pt;}
._6_c01086{margin-left:-4.138985pt;}
._4_c01086{margin-left:-2.665738pt;}
._0_c01086{margin-left:-1.377235pt;}
._2_c01086{width:17.720725pt;}
._5_c01086{width:18.862523pt;}
._8_c01086{width:20.562806pt;}
._7_c01086{width:21.838019pt;}
._9_c01086{width:22.859314pt;}
._3_c01086{width:26.248130pt;}
.fs0_c01086{font-size:39.110400pt;}
.fs2_c01086{font-size:53.133867pt;}
.fs1_c01086{font-size:76.513067pt;}
.y0_c01086{bottom:0.000000pt;}
.y14_c01086{bottom:39.333333pt;}
.y13_c01086{bottom:72.934667pt;}
.y12_c01086{bottom:88.874667pt;}
.y11_c01086{bottom:104.814667pt;}
.y10_c01086{bottom:120.754667pt;}
.yf_c01086{bottom:165.141333pt;}
.ye_c01086{bottom:181.082667pt;}
.yd_c01086{bottom:197.022667pt;}
.yc_c01086{bottom:212.962667pt;}
.yb_c01086{bottom:257.349333pt;}
.ya_c01086{bottom:301.737333pt;}
.y9_c01086{bottom:346.124000pt;}
.y8_c01086{bottom:390.512000pt;}
.y7_c01086{bottom:457.721333pt;}
.y6_c01086{bottom:957.929333pt;}
.y5_c01086{bottom:972.541333pt;}
.y4_c01086{bottom:987.153333pt;}
.y3_c01086{bottom:1001.765333pt;}
.y2_c01086{bottom:1016.377333pt;}
.y1_c01086{bottom:1030.989333pt;}
.h2_c01086{height:32.006363pt;}
.h4_c01086{height:36.010648pt;}
.h5_c01086{height:46.518078pt;}
.h3_c01086{height:51.855535pt;}
.h0_c01086{height:1122.520000pt;}
.h1_c01086{height:1122.666667pt;}
.w0_c01086{width:793.706667pt;}
.w1_c01086{width:794.000000pt;}
.x0_c01086{left:0.000000pt;}
.x3_c01086{left:113.385333pt;}
.x1_c01086{left:121.886667pt;}
.x2_c01086{left:157.340000pt;}
.x4_c01086{left:386.888000pt;}
}





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

.ir_c01087:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_bec8fcc98f576bc1d2abafdc.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01087;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01087;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01087;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls3_c01087{letter-spacing:0.000000px;}
.ls0_c01087{letter-spacing:0.087998px;}
.ls2_c01087{letter-spacing:0.098482px;}
.ls1_c01087{letter-spacing:0.104482px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01087{word-spacing:-33.713438px;}
.ws1_c01087{word-spacing:-26.575517px;}
.wsa_c01087{word-spacing:-26.487518px;}
.ws7_c01087{word-spacing:-18.769538px;}
.ws4_c01087{word-spacing:-17.574026px;}
.ws3_c01087{word-spacing:-17.215373px;}
.ws6_c01087{word-spacing:-16.199188px;}
.ws0_c01087{word-spacing:-14.884124px;}
.ws2_c01087{word-spacing:-13.927715px;}
.ws5_c01087{word-spacing:-10.351366px;}
.wse_c01087{word-spacing:0.000000px;}
.ws10_c01087{word-spacing:0.036900px;}
.wsb_c01087{word-spacing:0.043999px;}
.wsf_c01087{word-spacing:0.053933px;}
.ws11_c01087{word-spacing:0.070416px;}
.ws9_c01087{word-spacing:0.175997px;}
.wsd_c01087{word-spacing:0.213446px;}
.wsc_c01087{word-spacing:0.219446px;}
._2_c01087{margin-left:-3.825638px;}
._3_c01087{width:1.005737px;}
._0_c01087{width:24.567772px;}
._1_c01087{width:27.676103px;}
.fc5_c01087{color:rgb(0,0,207);}
.fc4_c01087{color:rgb(79,153,5);}
.fc3_c01087{color:rgb(207,92,0);}
.fc2_c01087{color:rgb(33,74,135);}
.fc1_c01087{color:rgb(143,89,3);}
.fc0_c01087{color:rgb(0,0,0);}
.fs1_c01087{font-size:43.999200px;}
.fs0_c01087{font-size:59.775600px;}
.y0_c01087{bottom:0.000000px;}
.y27_c01087{bottom:44.250000px;}
.y26_c01087{bottom:82.051500px;}
.y25_c01087{bottom:114.927000px;}
.y24_c01087{bottom:131.365500px;}
.y23_c01087{bottom:147.804000px;}
.y22_c01087{bottom:164.242500px;}
.y21_c01087{bottom:197.119500px;}
.y20_c01087{bottom:213.558000px;}
.y1f_c01087{bottom:229.996500px;}
.y1e_c01087{bottom:246.435000px;}
.y1d_c01087{bottom:262.873500px;}
.y1c_c01087{bottom:279.310500px;}
.y1b_c01087{bottom:295.749000px;}
.y1a_c01087{bottom:328.626000px;}
.y19_c01087{bottom:345.064500px;}
.y18_c01087{bottom:361.503000px;}
.y17_c01087{bottom:394.380000px;}
.y16_c01087{bottom:410.818500px;}
.y15_c01087{bottom:460.132500px;}
.y14_c01087{bottom:476.571000px;}
.y13_c01087{bottom:509.448000px;}
.y12_c01087{bottom:525.886500px;}
.y11_c01087{bottom:542.325000px;}
.y10_c01087{bottom:558.763500px;}
.yf_c01087{bottom:591.640500px;}
.ye_c01087{bottom:608.079000px;}
.yd_c01087{bottom:624.516000px;}
.yc_c01087{bottom:640.954500px;}
.yb_c01087{bottom:657.393000px;}
.ya_c01087{bottom:673.831500px;}
.y9_c01087{bottom:690.270000px;}
.y8_c01087{bottom:706.708500px;}
.y7_c01087{bottom:722.773500px;}
.y6_c01087{bottom:766.867500px;}
.y5_c01087{bottom:784.800000px;}
.y4_c01087{bottom:802.732500px;}
.y3_c01087{bottom:820.665000px;}
.y2_c01087{bottom:838.597500px;}
.y1_c01087{bottom:856.530000px;}
.h3_c01087{height:35.190766px;}
.h4_c01087{height:36.007158px;}
.h2_c01087{height:52.332837px;}
.h0_c01087{height:1262.835000px;}
.h1_c01087{height:1263.000000px;}
.w0_c01087{width:892.920000px;}
.w1_c01087{width:893.250000px;}
.x0_c01087{left:0.000000px;}
.x1_c01087{left:127.558500px;}
.x2_c01087{left:137.122500px;}
.x3_c01087{left:143.770500px;}
.x4_c01087{left:435.249000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls3_c01087{letter-spacing:0.000000pt;}
.ls0_c01087{letter-spacing:0.078221pt;}
.ls2_c01087{letter-spacing:0.087539pt;}
.ls1_c01087{letter-spacing:0.092873pt;}
.ws8_c01087{word-spacing:-29.967501pt;}
.ws1_c01087{word-spacing:-23.622682pt;}
.wsa_c01087{word-spacing:-23.544461pt;}
.ws7_c01087{word-spacing:-16.684034pt;}
.ws4_c01087{word-spacing:-15.621357pt;}
.ws3_c01087{word-spacing:-15.302554pt;}
.ws6_c01087{word-spacing:-14.399278pt;}
.ws0_c01087{word-spacing:-13.230333pt;}
.ws2_c01087{word-spacing:-12.380191pt;}
.ws5_c01087{word-spacing:-9.201214pt;}
.wse_c01087{word-spacing:0.000000pt;}
.ws10_c01087{word-spacing:0.032800pt;}
.wsb_c01087{word-spacing:0.039110pt;}
.wsf_c01087{word-spacing:0.047940pt;}
.ws11_c01087{word-spacing:0.062592pt;}
.ws9_c01087{word-spacing:0.156442pt;}
.wsd_c01087{word-spacing:0.189730pt;}
.wsc_c01087{word-spacing:0.195063pt;}
._2_c01087{margin-left:-3.400567pt;}
._3_c01087{width:0.893988pt;}
._0_c01087{width:21.838019pt;}
._1_c01087{width:24.600980pt;}
.fs1_c01087{font-size:39.110400pt;}
.fs0_c01087{font-size:53.133867pt;}
.y0_c01087{bottom:0.000000pt;}
.y27_c01087{bottom:39.333333pt;}
.y26_c01087{bottom:72.934667pt;}
.y25_c01087{bottom:102.157333pt;}
.y24_c01087{bottom:116.769333pt;}
.y23_c01087{bottom:131.381333pt;}
.y22_c01087{bottom:145.993333pt;}
.y21_c01087{bottom:175.217333pt;}
.y20_c01087{bottom:189.829333pt;}
.y1f_c01087{bottom:204.441333pt;}
.y1e_c01087{bottom:219.053333pt;}
.y1d_c01087{bottom:233.665333pt;}
.y1c_c01087{bottom:248.276000pt;}
.y1b_c01087{bottom:262.888000pt;}
.y1a_c01087{bottom:292.112000pt;}
.y19_c01087{bottom:306.724000pt;}
.y18_c01087{bottom:321.336000pt;}
.y17_c01087{bottom:350.560000pt;}
.y16_c01087{bottom:365.172000pt;}
.y15_c01087{bottom:409.006667pt;}
.y14_c01087{bottom:423.618667pt;}
.y13_c01087{bottom:452.842667pt;}
.y12_c01087{bottom:467.454667pt;}
.y11_c01087{bottom:482.066667pt;}
.y10_c01087{bottom:496.678667pt;}
.yf_c01087{bottom:525.902667pt;}
.ye_c01087{bottom:540.514667pt;}
.yd_c01087{bottom:555.125333pt;}
.yc_c01087{bottom:569.737333pt;}
.yb_c01087{bottom:584.349333pt;}
.ya_c01087{bottom:598.961333pt;}
.y9_c01087{bottom:613.573333pt;}
.y8_c01087{bottom:628.185333pt;}
.y7_c01087{bottom:642.465333pt;}
.y6_c01087{bottom:681.660000pt;}
.y5_c01087{bottom:697.600000pt;}
.y4_c01087{bottom:713.540000pt;}
.y3_c01087{bottom:729.480000pt;}
.y2_c01087{bottom:745.420000pt;}
.y1_c01087{bottom:761.360000pt;}
.h3_c01087{height:31.280681pt;}
.h4_c01087{height:32.006363pt;}
.h2_c01087{height:46.518078pt;}
.h0_c01087{height:1122.520000pt;}
.h1_c01087{height:1122.666667pt;}
.w0_c01087{width:793.706667pt;}
.w1_c01087{width:794.000000pt;}
.x0_c01087{left:0.000000pt;}
.x1_c01087{left:113.385333pt;}
.x2_c01087{left:121.886667pt;}
.x3_c01087{left:127.796000pt;}
.x4_c01087{left:386.888000pt;}
}





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

.ir_c01088:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_d52b3e8ae37dd5022efa0289.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01088;src:url('chunks/assets/font_d7de382ba545bc543f39d21f.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01088;src:url('chunks/assets/font_7a8155254db2961fca60d0d3.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01088;src:url('chunks/assets/font_f73aeb738942a45b21d41e1c.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls4_c01088{letter-spacing:0.000000px;}
.ls0_c01088{letter-spacing:0.087998px;}
.ls1_c01088{letter-spacing:0.098482px;}
.ls2_c01088{letter-spacing:0.104482px;}
.ls3_c01088{letter-spacing:26.690482px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:-26.575517px;}
.ws1_c01088{word-spacing:-26.487518px;}
.ws2_c01088{word-spacing:0.000000px;}
.ws5_c01088{word-spacing:0.043999px;}
.ws3_c01088{word-spacing:0.053933px;}
.ws6_c01088{word-spacing:0.064416px;}
.ws4_c01088{word-spacing:0.070416px;}
.ws8_c01088{word-spacing:0.083184px;}
.ws7_c01088{word-spacing:0.213446px;}
._1_c01088{width:1.057690px;}
._0_c01088{width:53.635025px;}
.fc5_c01088{color:rgb(0,0,207);}
.fc4_c01088{color:rgb(207,92,0);}
.fc3_c01088{color:rgb(143,89,3);}
.fc2_c01088{color:rgb(0,0,0);}
.fc1_c01088{color:rgb(79,153,5);}
.fc0_c01088{color:rgb(33,74,135);}
.fs0_c01088{font-size:43.999200px;}
.fs1_c01088{font-size:59.775600px;}
.y0_c01088{bottom:0.000000px;}
.y3c_c01088{bottom:44.250000px;}
.y3b_c01088{bottom:91.369500px;}
.y3a_c01088{bottom:107.808000px;}
.y39_c01088{bottom:124.246500px;}
.y38_c01088{bottom:140.685000px;}
.y37_c01088{bottom:157.123500px;}
.y36_c01088{bottom:190.000500px;}
.y35_c01088{bottom:206.437500px;}
.y34_c01088{bottom:222.876000px;}
.y33_c01088{bottom:272.191500px;}
.y32_c01088{bottom:288.630000px;}
.y31_c01088{bottom:305.068500px;}
.y30_c01088{bottom:321.507000px;}
.y2f_c01088{bottom:337.945500px;}
.y2e_c01088{bottom:354.384000px;}
.y2d_c01088{bottom:370.822500px;}
.y2c_c01088{bottom:387.259500px;}
.y2b_c01088{bottom:403.698000px;}
.y2a_c01088{bottom:420.136500px;}
.y29_c01088{bottom:436.575000px;}
.y28_c01088{bottom:453.013500px;}
.y27_c01088{bottom:469.452000px;}
.y26_c01088{bottom:485.890500px;}
.y25_c01088{bottom:502.329000px;}
.y24_c01088{bottom:518.767500px;}
.y23_c01088{bottom:535.206000px;}
.y22_c01088{bottom:551.643000px;}
.y21_c01088{bottom:568.081500px;}
.y20_c01088{bottom:584.520000px;}
.y1f_c01088{bottom:600.958500px;}
.y1e_c01088{bottom:617.397000px;}
.y1d_c01088{bottom:633.835500px;}
.y1c_c01088{bottom:650.274000px;}
.y1b_c01088{bottom:666.712500px;}
.y1a_c01088{bottom:683.151000px;}
.y19_c01088{bottom:699.589500px;}
.y18_c01088{bottom:732.465000px;}
.y17_c01088{bottom:748.903500px;}
.y16_c01088{bottom:765.342000px;}
.y15_c01088{bottom:781.780500px;}
.y14_c01088{bottom:798.219000px;}
.y13_c01088{bottom:814.657500px;}
.y12_c01088{bottom:847.534500px;}
.y11_c01088{bottom:863.973000px;}
.y10_c01088{bottom:880.411500px;}
.yf_c01088{bottom:896.848500px;}
.ye_c01088{bottom:913.287000px;}
.yd_c01088{bottom:929.725500px;}
.yc_c01088{bottom:946.164000px;}
.yb_c01088{bottom:962.602500px;}
.ya_c01088{bottom:979.041000px;}
.y9_c01088{bottom:1011.918000px;}
.y8_c01088{bottom:1028.356500px;}
.y7_c01088{bottom:1044.795000px;}
.y6_c01088{bottom:1061.232000px;}
.y5_c01088{bottom:1077.670500px;}
.y4_c01088{bottom:1094.109000px;}
.y3_c01088{bottom:1126.986000px;}
.y2_c01088{bottom:1143.424500px;}
.y1_c01088{bottom:1159.863000px;}
.h3_c01088{height:35.190766px;}
.h2_c01088{height:36.007158px;}
.h4_c01088{height:52.332837px;}
.h0_c01088{height:1262.835000px;}
.h1_c01088{height:1263.000000px;}
.w0_c01088{width:892.920000px;}
.w1_c01088{width:893.250000px;}
.x0_c01088{left:0.000000px;}
.x2_c01088{left:137.122500px;}
.x3_c01088{left:143.770500px;}
.x4_c01088{left:177.007500px;}
.x6_c01088{left:196.948500px;}
.x1_c01088{left:203.596500px;}
.x5_c01088{left:210.243000px;}
.x7_c01088{left:435.249000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls4_c01088{letter-spacing:0.000000pt;}
.ls0_c01088{letter-spacing:0.078221pt;}
.ls1_c01088{letter-spacing:0.087539pt;}
.ls2_c01088{letter-spacing:0.092873pt;}
.ls3_c01088{letter-spacing:23.724873pt;}
.ws0_c01088{word-spacing:-23.622682pt;}
.ws1_c01088{word-spacing:-23.544461pt;}
.ws2_c01088{word-spacing:0.000000pt;}
.ws5_c01088{word-spacing:0.039110pt;}
.ws3_c01088{word-spacing:0.047940pt;}
.ws6_c01088{word-spacing:0.057259pt;}
.ws4_c01088{word-spacing:0.062592pt;}
.ws8_c01088{word-spacing:0.073941pt;}
.ws7_c01088{word-spacing:0.189730pt;}
._1_c01088{width:0.940169pt;}
._0_c01088{width:47.675578pt;}
.fs0_c01088{font-size:39.110400pt;}
.fs1_c01088{font-size:53.133867pt;}
.y0_c01088{bottom:0.000000pt;}
.y3c_c01088{bottom:39.333333pt;}
.y3b_c01088{bottom:81.217333pt;}
.y3a_c01088{bottom:95.829333pt;}
.y39_c01088{bottom:110.441333pt;}
.y38_c01088{bottom:125.053333pt;}
.y37_c01088{bottom:139.665333pt;}
.y36_c01088{bottom:168.889333pt;}
.y35_c01088{bottom:183.500000pt;}
.y34_c01088{bottom:198.112000pt;}
.y33_c01088{bottom:241.948000pt;}
.y32_c01088{bottom:256.560000pt;}
.y31_c01088{bottom:271.172000pt;}
.y30_c01088{bottom:285.784000pt;}
.y2f_c01088{bottom:300.396000pt;}
.y2e_c01088{bottom:315.008000pt;}
.y2d_c01088{bottom:329.620000pt;}
.y2c_c01088{bottom:344.230667pt;}
.y2b_c01088{bottom:358.842667pt;}
.y2a_c01088{bottom:373.454667pt;}
.y29_c01088{bottom:388.066667pt;}
.y28_c01088{bottom:402.678667pt;}
.y27_c01088{bottom:417.290667pt;}
.y26_c01088{bottom:431.902667pt;}
.y25_c01088{bottom:446.514667pt;}
.y24_c01088{bottom:461.126667pt;}
.y23_c01088{bottom:475.738667pt;}
.y22_c01088{bottom:490.349333pt;}
.y21_c01088{bottom:504.961333pt;}
.y20_c01088{bottom:519.573333pt;}
.y1f_c01088{bottom:534.185333pt;}
.y1e_c01088{bottom:548.797333pt;}
.y1d_c01088{bottom:563.409333pt;}
.y1c_c01088{bottom:578.021333pt;}
.y1b_c01088{bottom:592.633333pt;}
.y1a_c01088{bottom:607.245333pt;}
.y19_c01088{bottom:621.857333pt;}
.y18_c01088{bottom:651.080000pt;}
.y17_c01088{bottom:665.692000pt;}
.y16_c01088{bottom:680.304000pt;}
.y15_c01088{bottom:694.916000pt;}
.y14_c01088{bottom:709.528000pt;}
.y13_c01088{bottom:724.140000pt;}
.y12_c01088{bottom:753.364000pt;}
.y11_c01088{bottom:767.976000pt;}
.y10_c01088{bottom:782.588000pt;}
.yf_c01088{bottom:797.198667pt;}
.ye_c01088{bottom:811.810667pt;}
.yd_c01088{bottom:826.422667pt;}
.yc_c01088{bottom:841.034667pt;}
.yb_c01088{bottom:855.646667pt;}
.ya_c01088{bottom:870.258667pt;}
.y9_c01088{bottom:899.482667pt;}
.y8_c01088{bottom:914.094667pt;}
.y7_c01088{bottom:928.706667pt;}
.y6_c01088{bottom:943.317333pt;}
.y5_c01088{bottom:957.929333pt;}
.y4_c01088{bottom:972.541333pt;}
.y3_c01088{bottom:1001.765333pt;}
.y2_c01088{bottom:1016.377333pt;}
.y1_c01088{bottom:1030.989333pt;}
.h3_c01088{height:31.280681pt;}
.h2_c01088{height:32.006363pt;}
.h4_c01088{height:46.518078pt;}
.h0_c01088{height:1122.520000pt;}
.h1_c01088{height:1122.666667pt;}
.w0_c01088{width:793.706667pt;}
.w1_c01088{width:794.000000pt;}
.x0_c01088{left:0.000000pt;}
.x2_c01088{left:121.886667pt;}
.x3_c01088{left:127.796000pt;}
.x4_c01088{left:157.340000pt;}
.x6_c01088{left:175.065333pt;}
.x1_c01088{left:180.974667pt;}
.x5_c01088{left:186.882667pt;}
.x7_c01088{left:386.888000pt;}
}





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

.ir_c01089:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_e7918a03d9ee2e4c9a6895f8.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01089;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01089;src:url('chunks/assets/font_b5c8f309e355b8ff31ece33c.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01089;src:url('chunks/assets/font_3db63316e88a7635d4592571.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01089{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls3_c01089{letter-spacing:0.000000px;}
.ls0_c01089{letter-spacing:0.087998px;}
.ls1_c01089{letter-spacing:0.098482px;}
.ls2_c01089{letter-spacing:0.104482px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:-26.575517px;}
.ws1_c01089{word-spacing:-26.487518px;}
.wse_c01089{word-spacing:-19.965050px;}
.ws6_c01089{word-spacing:-18.769538px;}
.ws9_c01089{word-spacing:-15.601432px;}
.wsd_c01089{word-spacing:-15.481880px;}
.wsc_c01089{word-spacing:-15.422105px;}
.wsb_c01089{word-spacing:-15.302554px;}
.ws5_c01089{word-spacing:-14.943900px;}
.wsa_c01089{word-spacing:-13.808164px;}
.ws8_c01089{word-spacing:-13.748388px;}
.ws3_c01089{word-spacing:-9.988424px;}
.ws4_c01089{word-spacing:-9.987499px;}
.wsf_c01089{word-spacing:0.000000px;}
.ws7_c01089{word-spacing:0.017856px;}
.ws2_c01089{word-spacing:43.038600px;}
._1_c01089{margin-left:-7.833025px;}
._6_c01089{margin-left:-4.656358px;}
._4_c01089{margin-left:-2.998955px;}
._0_c01089{margin-left:-1.549390px;}
._8_c01089{width:12.744048px;}
._2_c01089{width:19.935816px;}
._5_c01089{width:21.220338px;}
._7_c01089{width:26.899020px;}
._3_c01089{width:29.529146px;}
.fc5_c01089{color:rgb(79,153,5);}
.fc4_c01089{color:rgb(33,74,135);}
.fc3_c01089{color:rgb(0,0,207);}
.fc6_c01089{color:rgb(6,69,173);}
.fc2_c01089{color:rgb(207,92,0);}
.fc1_c01089{color:rgb(143,89,3);}
.fc0_c01089{color:rgb(0,0,0);}
.fs0_c01089{font-size:43.999200px;}
.fs2_c01089{font-size:59.775600px;}
.fs1_c01089{font-size:86.077200px;}
.y0_c01089{bottom:0.000000px;}
.y14_c01089{bottom:44.250000px;}
.y13_c01089{bottom:82.051500px;}
.y12_c01089{bottom:99.984000px;}
.y11_c01089{bottom:117.916500px;}
.y10_c01089{bottom:135.849000px;}
.yf_c01089{bottom:185.784000px;}
.ye_c01089{bottom:203.718000px;}
.yd_c01089{bottom:221.650500px;}
.yc_c01089{bottom:239.583000px;}
.yb_c01089{bottom:289.518000px;}
.ya_c01089{bottom:339.454500px;}
.y9_c01089{bottom:389.389500px;}
.y8_c01089{bottom:439.326000px;}
.y7_c01089{bottom:514.936500px;}
.y6_c01089{bottom:1077.670500px;}
.y5_c01089{bottom:1094.109000px;}
.y4_c01089{bottom:1110.547500px;}
.y3_c01089{bottom:1126.986000px;}
.y2_c01089{bottom:1143.424500px;}
.y1_c01089{bottom:1159.863000px;}
.h2_c01089{height:36.007158px;}
.h4_c01089{height:40.511979px;}
.h5_c01089{height:52.332837px;}
.h3_c01089{height:58.337477px;}
.h0_c01089{height:1262.835000px;}
.h1_c01089{height:1263.000000px;}
.w0_c01089{width:892.920000px;}
.w1_c01089{width:893.250000px;}
.x0_c01089{left:0.000000px;}
.x3_c01089{left:127.558500px;}
.x1_c01089{left:137.122500px;}
.x2_c01089{left:177.007500px;}
.x4_c01089{left:435.249000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls3_c01089{letter-spacing:0.000000pt;}
.ls0_c01089{letter-spacing:0.078221pt;}
.ls1_c01089{letter-spacing:0.087539pt;}
.ls2_c01089{letter-spacing:0.092873pt;}
.ws0_c01089{word-spacing:-23.622682pt;}
.ws1_c01089{word-spacing:-23.544461pt;}
.wse_c01089{word-spacing:-17.746711pt;}
.ws6_c01089{word-spacing:-16.684034pt;}
.ws9_c01089{word-spacing:-13.867939pt;}
.wsd_c01089{word-spacing:-13.761671pt;}
.wsc_c01089{word-spacing:-13.708538pt;}
.wsb_c01089{word-spacing:-13.602270pt;}
.ws5_c01089{word-spacing:-13.283467pt;}
.wsa_c01089{word-spacing:-12.273923pt;}
.ws8_c01089{word-spacing:-12.220789pt;}
.ws3_c01089{word-spacing:-8.878599pt;}
.ws4_c01089{word-spacing:-8.877777pt;}
.wsf_c01089{word-spacing:0.000000pt;}
.ws7_c01089{word-spacing:0.015872pt;}
.ws2_c01089{word-spacing:38.256533pt;}
._1_c01089{margin-left:-6.962689pt;}
._6_c01089{margin-left:-4.138985pt;}
._4_c01089{margin-left:-2.665738pt;}
._0_c01089{margin-left:-1.377235pt;}
._8_c01089{width:11.328043pt;}
._2_c01089{width:17.720725pt;}
._5_c01089{width:18.862523pt;}
._7_c01089{width:23.910240pt;}
._3_c01089{width:26.248130pt;}
.fs0_c01089{font-size:39.110400pt;}
.fs2_c01089{font-size:53.133867pt;}
.fs1_c01089{font-size:76.513067pt;}
.y0_c01089{bottom:0.000000pt;}
.y14_c01089{bottom:39.333333pt;}
.y13_c01089{bottom:72.934667pt;}
.y12_c01089{bottom:88.874667pt;}
.y11_c01089{bottom:104.814667pt;}
.y10_c01089{bottom:120.754667pt;}
.yf_c01089{bottom:165.141333pt;}
.ye_c01089{bottom:181.082667pt;}
.yd_c01089{bottom:197.022667pt;}
.yc_c01089{bottom:212.962667pt;}
.yb_c01089{bottom:257.349333pt;}
.ya_c01089{bottom:301.737333pt;}
.y9_c01089{bottom:346.124000pt;}
.y8_c01089{bottom:390.512000pt;}
.y7_c01089{bottom:457.721333pt;}
.y6_c01089{bottom:957.929333pt;}
.y5_c01089{bottom:972.541333pt;}
.y4_c01089{bottom:987.153333pt;}
.y3_c01089{bottom:1001.765333pt;}
.y2_c01089{bottom:1016.377333pt;}
.y1_c01089{bottom:1030.989333pt;}
.h2_c01089{height:32.006363pt;}
.h4_c01089{height:36.010648pt;}
.h5_c01089{height:46.518078pt;}
.h3_c01089{height:51.855535pt;}
.h0_c01089{height:1122.520000pt;}
.h1_c01089{height:1122.666667pt;}
.w0_c01089{width:793.706667pt;}
.w1_c01089{width:794.000000pt;}
.x0_c01089{left:0.000000pt;}
.x3_c01089{left:113.385333pt;}
.x1_c01089{left:121.886667pt;}
.x2_c01089{left:157.340000pt;}
.x4_c01089{left:386.888000pt;}
}





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

.ir_c01090:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_5df7122444de77c0a45b904d.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01090;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01090;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01090;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.ls3_c01090{letter-spacing:0.000000px;}
.ls0_c01090{letter-spacing:0.087998px;}
.ls2_c01090{letter-spacing:0.098482px;}
.ls1_c01090{letter-spacing:0.104482px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01090{word-spacing:-33.713438px;}
.ws1_c01090{word-spacing:-26.575517px;}
.wsa_c01090{word-spacing:-26.487518px;}
.ws7_c01090{word-spacing:-18.769538px;}
.ws4_c01090{word-spacing:-17.574026px;}
.ws3_c01090{word-spacing:-17.215373px;}
.ws6_c01090{word-spacing:-16.199188px;}
.ws0_c01090{word-spacing:-14.884124px;}
.ws2_c01090{word-spacing:-13.927715px;}
.ws5_c01090{word-spacing:-10.351366px;}
.wse_c01090{word-spacing:0.000000px;}
.ws10_c01090{word-spacing:0.036900px;}
.wsb_c01090{word-spacing:0.043999px;}
.wsf_c01090{word-spacing:0.053933px;}
.ws11_c01090{word-spacing:0.070416px;}
.ws9_c01090{word-spacing:0.175997px;}
.wsd_c01090{word-spacing:0.213446px;}
.wsc_c01090{word-spacing:0.219446px;}
._2_c01090{margin-left:-3.825638px;}
._3_c01090{width:1.005737px;}
._0_c01090{width:24.567772px;}
._1_c01090{width:27.676103px;}
.fc5_c01090{color:rgb(0,0,207);}
.fc4_c01090{color:rgb(79,153,5);}
.fc3_c01090{color:rgb(207,92,0);}
.fc2_c01090{color:rgb(33,74,135);}
.fc1_c01090{color:rgb(143,89,3);}
.fc0_c01090{color:rgb(0,0,0);}
.fs1_c01090{font-size:43.999200px;}
.fs0_c01090{font-size:59.775600px;}
.y0_c01090{bottom:0.000000px;}
.y27_c01090{bottom:44.250000px;}
.y26_c01090{bottom:82.051500px;}
.y25_c01090{bottom:114.927000px;}
.y24_c01090{bottom:131.365500px;}
.y23_c01090{bottom:147.804000px;}
.y22_c01090{bottom:164.242500px;}
.y21_c01090{bottom:197.119500px;}
.y20_c01090{bottom:213.558000px;}
.y1f_c01090{bottom:229.996500px;}
.y1e_c01090{bottom:246.435000px;}
.y1d_c01090{bottom:262.873500px;}
.y1c_c01090{bottom:279.310500px;}
.y1b_c01090{bottom:295.749000px;}
.y1a_c01090{bottom:328.626000px;}
.y19_c01090{bottom:345.064500px;}
.y18_c01090{bottom:361.503000px;}
.y17_c01090{bottom:394.380000px;}
.y16_c01090{bottom:410.818500px;}
.y15_c01090{bottom:460.132500px;}
.y14_c01090{bottom:476.571000px;}
.y13_c01090{bottom:509.448000px;}
.y12_c01090{bottom:525.886500px;}
.y11_c01090{bottom:542.325000px;}
.y10_c01090{bottom:558.763500px;}
.yf_c01090{bottom:591.640500px;}
.ye_c01090{bottom:608.079000px;}
.yd_c01090{bottom:624.516000px;}
.yc_c01090{bottom:640.954500px;}
.yb_c01090{bottom:657.393000px;}
.ya_c01090{bottom:673.831500px;}
.y9_c01090{bottom:690.270000px;}
.y8_c01090{bottom:706.708500px;}
.y7_c01090{bottom:722.773500px;}
.y6_c01090{bottom:766.867500px;}
.y5_c01090{bottom:784.800000px;}
.y4_c01090{bottom:802.732500px;}
.y3_c01090{bottom:820.665000px;}
.y2_c01090{bottom:838.597500px;}
.y1_c01090{bottom:856.530000px;}
.h3_c01090{height:35.190766px;}
.h4_c01090{height:36.007158px;}
.h2_c01090{height:52.332837px;}
.h0_c01090{height:1262.835000px;}
.h1_c01090{height:1263.000000px;}
.w0_c01090{width:892.920000px;}
.w1_c01090{width:893.250000px;}
.x0_c01090{left:0.000000px;}
.x1_c01090{left:127.558500px;}
.x2_c01090{left:137.122500px;}
.x3_c01090{left:143.770500px;}
.x4_c01090{left:435.249000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls3_c01090{letter-spacing:0.000000pt;}
.ls0_c01090{letter-spacing:0.078221pt;}
.ls2_c01090{letter-spacing:0.087539pt;}
.ls1_c01090{letter-spacing:0.092873pt;}
.ws8_c01090{word-spacing:-29.967501pt;}
.ws1_c01090{word-spacing:-23.622682pt;}
.wsa_c01090{word-spacing:-23.544461pt;}
.ws7_c01090{word-spacing:-16.684034pt;}
.ws4_c01090{word-spacing:-15.621357pt;}
.ws3_c01090{word-spacing:-15.302554pt;}
.ws6_c01090{word-spacing:-14.399278pt;}
.ws0_c01090{word-spacing:-13.230333pt;}
.ws2_c01090{word-spacing:-12.380191pt;}
.ws5_c01090{word-spacing:-9.201214pt;}
.wse_c01090{word-spacing:0.000000pt;}
.ws10_c01090{word-spacing:0.032800pt;}
.wsb_c01090{word-spacing:0.039110pt;}
.wsf_c01090{word-spacing:0.047940pt;}
.ws11_c01090{word-spacing:0.062592pt;}
.ws9_c01090{word-spacing:0.156442pt;}
.wsd_c01090{word-spacing:0.189730pt;}
.wsc_c01090{word-spacing:0.195063pt;}
._2_c01090{margin-left:-3.400567pt;}
._3_c01090{width:0.893988pt;}
._0_c01090{width:21.838019pt;}
._1_c01090{width:24.600980pt;}
.fs1_c01090{font-size:39.110400pt;}
.fs0_c01090{font-size:53.133867pt;}
.y0_c01090{bottom:0.000000pt;}
.y27_c01090{bottom:39.333333pt;}
.y26_c01090{bottom:72.934667pt;}
.y25_c01090{bottom:102.157333pt;}
.y24_c01090{bottom:116.769333pt;}
.y23_c01090{bottom:131.381333pt;}
.y22_c01090{bottom:145.993333pt;}
.y21_c01090{bottom:175.217333pt;}
.y20_c01090{bottom:189.829333pt;}
.y1f_c01090{bottom:204.441333pt;}
.y1e_c01090{bottom:219.053333pt;}
.y1d_c01090{bottom:233.665333pt;}
.y1c_c01090{bottom:248.276000pt;}
.y1b_c01090{bottom:262.888000pt;}
.y1a_c01090{bottom:292.112000pt;}
.y19_c01090{bottom:306.724000pt;}
.y18_c01090{bottom:321.336000pt;}
.y17_c01090{bottom:350.560000pt;}
.y16_c01090{bottom:365.172000pt;}
.y15_c01090{bottom:409.006667pt;}
.y14_c01090{bottom:423.618667pt;}
.y13_c01090{bottom:452.842667pt;}
.y12_c01090{bottom:467.454667pt;}
.y11_c01090{bottom:482.066667pt;}
.y10_c01090{bottom:496.678667pt;}
.yf_c01090{bottom:525.902667pt;}
.ye_c01090{bottom:540.514667pt;}
.yd_c01090{bottom:555.125333pt;}
.yc_c01090{bottom:569.737333pt;}
.yb_c01090{bottom:584.349333pt;}
.ya_c01090{bottom:598.961333pt;}
.y9_c01090{bottom:613.573333pt;}
.y8_c01090{bottom:628.185333pt;}
.y7_c01090{bottom:642.465333pt;}
.y6_c01090{bottom:681.660000pt;}
.y5_c01090{bottom:697.600000pt;}
.y4_c01090{bottom:713.540000pt;}
.y3_c01090{bottom:729.480000pt;}
.y2_c01090{bottom:745.420000pt;}
.y1_c01090{bottom:761.360000pt;}
.h3_c01090{height:31.280681pt;}
.h4_c01090{height:32.006363pt;}
.h2_c01090{height:46.518078pt;}
.h0_c01090{height:1122.520000pt;}
.h1_c01090{height:1122.666667pt;}
.w0_c01090{width:793.706667pt;}
.w1_c01090{width:794.000000pt;}
.x0_c01090{left:0.000000pt;}
.x1_c01090{left:113.385333pt;}
.x2_c01090{left:121.886667pt;}
.x3_c01090{left:127.796000pt;}
.x4_c01090{left:386.888000pt;}
}





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

.ir_c01091:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_e0fac16f29aebfd1ac146688.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01091;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01091;src:url('chunks/assets/font_2ccd870d6e987c122c1133b1.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01091;src:url('chunks/assets/font_05226c4291198e5adb66b77d.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls4_c01091{letter-spacing:0.000000px;}
.ls0_c01091{letter-spacing:0.087998px;}
.ls2_c01091{letter-spacing:0.098482px;}
.ls1_c01091{letter-spacing:0.104482px;}
.ls3_c01091{letter-spacing:26.690482px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:-26.575517px;}
.ws1_c01091{word-spacing:-26.487518px;}
.ws2_c01091{word-spacing:0.000000px;}
.ws6_c01091{word-spacing:0.043999px;}
.ws3_c01091{word-spacing:0.053933px;}
.ws4_c01091{word-spacing:0.064416px;}
.ws5_c01091{word-spacing:0.070416px;}
.ws8_c01091{word-spacing:0.083734px;}
.ws9_c01091{word-spacing:0.213446px;}
.ws7_c01091{word-spacing:0.219446px;}
._1_c01091{width:1.003757px;}
._0_c01091{width:53.591026px;}
.fc5_c01091{color:rgb(0,0,207);}
.fc4_c01091{color:rgb(207,92,0);}
.fc3_c01091{color:rgb(143,89,3);}
.fc2_c01091{color:rgb(0,0,0);}
.fc1_c01091{color:rgb(79,153,5);}
.fc0_c01091{color:rgb(33,74,135);}
.fs0_c01091{font-size:43.999200px;}
.fs1_c01091{font-size:59.775600px;}
.y0_c01091{bottom:0.000000px;}
.y3b_c01091{bottom:44.250000px;}
.y3a_c01091{bottom:91.369500px;}
.y39_c01091{bottom:107.808000px;}
.y38_c01091{bottom:124.246500px;}
.y37_c01091{bottom:140.685000px;}
.y36_c01091{bottom:173.562000px;}
.y35_c01091{bottom:190.000500px;}
.y34_c01091{bottom:206.437500px;}
.y33_c01091{bottom:255.753000px;}
.y32_c01091{bottom:272.191500px;}
.y31_c01091{bottom:288.630000px;}
.y30_c01091{bottom:305.068500px;}
.y2f_c01091{bottom:321.507000px;}
.y2e_c01091{bottom:337.945500px;}
.y2d_c01091{bottom:354.384000px;}
.y2c_c01091{bottom:370.822500px;}
.y2b_c01091{bottom:387.259500px;}
.y2a_c01091{bottom:403.698000px;}
.y29_c01091{bottom:420.136500px;}
.y28_c01091{bottom:436.575000px;}
.y27_c01091{bottom:453.013500px;}
.y26_c01091{bottom:469.452000px;}
.y25_c01091{bottom:485.890500px;}
.y24_c01091{bottom:502.329000px;}
.y23_c01091{bottom:518.767500px;}
.y22_c01091{bottom:535.206000px;}
.y21_c01091{bottom:551.643000px;}
.y20_c01091{bottom:568.081500px;}
.y1f_c01091{bottom:584.520000px;}
.y1e_c01091{bottom:600.958500px;}
.y1d_c01091{bottom:617.397000px;}
.y1c_c01091{bottom:633.835500px;}
.y1b_c01091{bottom:650.274000px;}
.y1a_c01091{bottom:666.712500px;}
.y19_c01091{bottom:683.151000px;}
.y18_c01091{bottom:716.028000px;}
.y17_c01091{bottom:732.465000px;}
.y16_c01091{bottom:748.903500px;}
.y15_c01091{bottom:765.342000px;}
.y14_c01091{bottom:781.780500px;}
.y13_c01091{bottom:798.219000px;}
.y12_c01091{bottom:831.096000px;}
.y11_c01091{bottom:847.534500px;}
.y10_c01091{bottom:863.973000px;}
.yf_c01091{bottom:880.411500px;}
.ye_c01091{bottom:896.848500px;}
.yd_c01091{bottom:913.287000px;}
.yc_c01091{bottom:929.725500px;}
.yb_c01091{bottom:946.164000px;}
.ya_c01091{bottom:979.041000px;}
.y9_c01091{bottom:1011.918000px;}
.y8_c01091{bottom:1028.356500px;}
.y7_c01091{bottom:1044.795000px;}
.y6_c01091{bottom:1061.232000px;}
.y5_c01091{bottom:1077.670500px;}
.y4_c01091{bottom:1094.109000px;}
.y3_c01091{bottom:1126.986000px;}
.y2_c01091{bottom:1143.424500px;}
.y1_c01091{bottom:1159.863000px;}
.h3_c01091{height:35.190766px;}
.h2_c01091{height:36.007158px;}
.h4_c01091{height:52.332837px;}
.h0_c01091{height:1262.835000px;}
.h1_c01091{height:1263.000000px;}
.w0_c01091{width:892.920000px;}
.w1_c01091{width:893.250000px;}
.x0_c01091{left:0.000000px;}
.x2_c01091{left:137.122500px;}
.x3_c01091{left:143.770500px;}
.x4_c01091{left:177.007500px;}
.x6_c01091{left:196.948500px;}
.x1_c01091{left:203.596500px;}
.x5_c01091{left:210.243000px;}
.x7_c01091{left:435.249000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls4_c01091{letter-spacing:0.000000pt;}
.ls0_c01091{letter-spacing:0.078221pt;}
.ls2_c01091{letter-spacing:0.087539pt;}
.ls1_c01091{letter-spacing:0.092873pt;}
.ls3_c01091{letter-spacing:23.724873pt;}
.ws0_c01091{word-spacing:-23.622682pt;}
.ws1_c01091{word-spacing:-23.544461pt;}
.ws2_c01091{word-spacing:0.000000pt;}
.ws6_c01091{word-spacing:0.039110pt;}
.ws3_c01091{word-spacing:0.047940pt;}
.ws4_c01091{word-spacing:0.057259pt;}
.ws5_c01091{word-spacing:0.062592pt;}
.ws8_c01091{word-spacing:0.074430pt;}
.ws9_c01091{word-spacing:0.189730pt;}
.ws7_c01091{word-spacing:0.195063pt;}
._1_c01091{width:0.892228pt;}
._0_c01091{width:47.636467pt;}
.fs0_c01091{font-size:39.110400pt;}
.fs1_c01091{font-size:53.133867pt;}
.y0_c01091{bottom:0.000000pt;}
.y3b_c01091{bottom:39.333333pt;}
.y3a_c01091{bottom:81.217333pt;}
.y39_c01091{bottom:95.829333pt;}
.y38_c01091{bottom:110.441333pt;}
.y37_c01091{bottom:125.053333pt;}
.y36_c01091{bottom:154.277333pt;}
.y35_c01091{bottom:168.889333pt;}
.y34_c01091{bottom:183.500000pt;}
.y33_c01091{bottom:227.336000pt;}
.y32_c01091{bottom:241.948000pt;}
.y31_c01091{bottom:256.560000pt;}
.y30_c01091{bottom:271.172000pt;}
.y2f_c01091{bottom:285.784000pt;}
.y2e_c01091{bottom:300.396000pt;}
.y2d_c01091{bottom:315.008000pt;}
.y2c_c01091{bottom:329.620000pt;}
.y2b_c01091{bottom:344.230667pt;}
.y2a_c01091{bottom:358.842667pt;}
.y29_c01091{bottom:373.454667pt;}
.y28_c01091{bottom:388.066667pt;}
.y27_c01091{bottom:402.678667pt;}
.y26_c01091{bottom:417.290667pt;}
.y25_c01091{bottom:431.902667pt;}
.y24_c01091{bottom:446.514667pt;}
.y23_c01091{bottom:461.126667pt;}
.y22_c01091{bottom:475.738667pt;}
.y21_c01091{bottom:490.349333pt;}
.y20_c01091{bottom:504.961333pt;}
.y1f_c01091{bottom:519.573333pt;}
.y1e_c01091{bottom:534.185333pt;}
.y1d_c01091{bottom:548.797333pt;}
.y1c_c01091{bottom:563.409333pt;}
.y1b_c01091{bottom:578.021333pt;}
.y1a_c01091{bottom:592.633333pt;}
.y19_c01091{bottom:607.245333pt;}
.y18_c01091{bottom:636.469333pt;}
.y17_c01091{bottom:651.080000pt;}
.y16_c01091{bottom:665.692000pt;}
.y15_c01091{bottom:680.304000pt;}
.y14_c01091{bottom:694.916000pt;}
.y13_c01091{bottom:709.528000pt;}
.y12_c01091{bottom:738.752000pt;}
.y11_c01091{bottom:753.364000pt;}
.y10_c01091{bottom:767.976000pt;}
.yf_c01091{bottom:782.588000pt;}
.ye_c01091{bottom:797.198667pt;}
.yd_c01091{bottom:811.810667pt;}
.yc_c01091{bottom:826.422667pt;}
.yb_c01091{bottom:841.034667pt;}
.ya_c01091{bottom:870.258667pt;}
.y9_c01091{bottom:899.482667pt;}
.y8_c01091{bottom:914.094667pt;}
.y7_c01091{bottom:928.706667pt;}
.y6_c01091{bottom:943.317333pt;}
.y5_c01091{bottom:957.929333pt;}
.y4_c01091{bottom:972.541333pt;}
.y3_c01091{bottom:1001.765333pt;}
.y2_c01091{bottom:1016.377333pt;}
.y1_c01091{bottom:1030.989333pt;}
.h3_c01091{height:31.280681pt;}
.h2_c01091{height:32.006363pt;}
.h4_c01091{height:46.518078pt;}
.h0_c01091{height:1122.520000pt;}
.h1_c01091{height:1122.666667pt;}
.w0_c01091{width:793.706667pt;}
.w1_c01091{width:794.000000pt;}
.x0_c01091{left:0.000000pt;}
.x2_c01091{left:121.886667pt;}
.x3_c01091{left:127.796000pt;}
.x4_c01091{left:157.340000pt;}
.x6_c01091{left:175.065333pt;}
.x1_c01091{left:180.974667pt;}
.x5_c01091{left:186.882667pt;}
.x7_c01091{left:386.888000pt;}
}





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

.ir_c01092:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_e3b638acb5a550b487b7e2cc.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01092;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01092;src:url('chunks/assets/font_5c92e11ea5e1b1f6d10942bb.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01092;src:url('chunks/assets/font_52a52978b23e24bf1261ba81.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01092{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls3_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:0.087998px;}
.ls1_c01092{letter-spacing:0.098482px;}
.ls2_c01092{letter-spacing:0.104482px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:-26.575517px;}
.ws1_c01092{word-spacing:-26.487518px;}
.ws6_c01092{word-spacing:-18.769538px;}
.wsc_c01092{word-spacing:-16.677392px;}
.wsb_c01092{word-spacing:-16.617617px;}
.ws9_c01092{word-spacing:-15.601432px;}
.ws5_c01092{word-spacing:-14.943900px;}
.wsd_c01092{word-spacing:-14.166817px;}
.wsa_c01092{word-spacing:-13.808164px;}
.ws8_c01092{word-spacing:-13.748388px;}
.ws3_c01092{word-spacing:-9.988424px;}
.ws4_c01092{word-spacing:-9.987499px;}
.wse_c01092{word-spacing:0.000000px;}
.ws7_c01092{word-spacing:0.017856px;}
.ws2_c01092{word-spacing:43.038600px;}
._1_c01092{margin-left:-7.833025px;}
._6_c01092{margin-left:-4.656358px;}
._4_c01092{margin-left:-2.998955px;}
._0_c01092{margin-left:-1.549390px;}
._8_c01092{width:18.231558px;}
._2_c01092{width:19.935816px;}
._5_c01092{width:21.220338px;}
._7_c01092{width:24.209118px;}
._3_c01092{width:29.529146px;}
._9_c01092{width:33.319192px;}
.fc5_c01092{color:rgb(0,0,207);}
.fc6_c01092{color:rgb(6,69,173);}
.fc4_c01092{color:rgb(207,92,0);}
.fc3_c01092{color:rgb(79,153,5);}
.fc2_c01092{color:rgb(33,74,135);}
.fc1_c01092{color:rgb(143,89,3);}
.fc0_c01092{color:rgb(0,0,0);}
.fs0_c01092{font-size:43.999200px;}
.fs2_c01092{font-size:59.775600px;}
.fs1_c01092{font-size:86.077200px;}
.y0_c01092{bottom:0.000000px;}
.y15_c01092{bottom:44.250000px;}
.y14_c01092{bottom:82.051500px;}
.y13_c01092{bottom:99.984000px;}
.y12_c01092{bottom:117.916500px;}
.y11_c01092{bottom:135.849000px;}
.y10_c01092{bottom:184.246500px;}
.yf_c01092{bottom:202.179000px;}
.ye_c01092{bottom:220.111500px;}
.yd_c01092{bottom:238.044000px;}
.yc_c01092{bottom:286.441500px;}
.yb_c01092{bottom:334.837500px;}
.ya_c01092{bottom:383.235000px;}
.y9_c01092{bottom:431.632500px;}
.y8_c01092{bottom:505.017000px;}
.y7_c01092{bottom:1061.232000px;}
.y6_c01092{bottom:1077.670500px;}
.y5_c01092{bottom:1094.109000px;}
.y4_c01092{bottom:1110.547500px;}
.y3_c01092{bottom:1126.986000px;}
.y2_c01092{bottom:1143.424500px;}
.y1_c01092{bottom:1159.863000px;}
.h2_c01092{height:36.007158px;}
.h4_c01092{height:40.511979px;}
.h5_c01092{height:52.332837px;}
.h3_c01092{height:58.337477px;}
.h0_c01092{height:1262.835000px;}
.h1_c01092{height:1263.000000px;}
.w0_c01092{width:892.920000px;}
.w1_c01092{width:893.250000px;}
.x0_c01092{left:0.000000px;}
.x3_c01092{left:127.558500px;}
.x1_c01092{left:137.122500px;}
.x2_c01092{left:177.007500px;}
.x4_c01092{left:435.249000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls3_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:0.078221pt;}
.ls1_c01092{letter-spacing:0.087539pt;}
.ls2_c01092{letter-spacing:0.092873pt;}
.ws0_c01092{word-spacing:-23.622682pt;}
.ws1_c01092{word-spacing:-23.544461pt;}
.ws6_c01092{word-spacing:-16.684034pt;}
.wsc_c01092{word-spacing:-14.824349pt;}
.wsb_c01092{word-spacing:-14.771215pt;}
.ws9_c01092{word-spacing:-13.867939pt;}
.ws5_c01092{word-spacing:-13.283467pt;}
.wsd_c01092{word-spacing:-12.592726pt;}
.wsa_c01092{word-spacing:-12.273923pt;}
.ws8_c01092{word-spacing:-12.220789pt;}
.ws3_c01092{word-spacing:-8.878599pt;}
.ws4_c01092{word-spacing:-8.877777pt;}
.wse_c01092{word-spacing:0.000000pt;}
.ws7_c01092{word-spacing:0.015872pt;}
.ws2_c01092{word-spacing:38.256533pt;}
._1_c01092{margin-left:-6.962689pt;}
._6_c01092{margin-left:-4.138985pt;}
._4_c01092{margin-left:-2.665738pt;}
._0_c01092{margin-left:-1.377235pt;}
._8_c01092{width:16.205829pt;}
._2_c01092{width:17.720725pt;}
._5_c01092{width:18.862523pt;}
._7_c01092{width:21.519216pt;}
._3_c01092{width:26.248130pt;}
._9_c01092{width:29.617059pt;}
.fs0_c01092{font-size:39.110400pt;}
.fs2_c01092{font-size:53.133867pt;}
.fs1_c01092{font-size:76.513067pt;}
.y0_c01092{bottom:0.000000pt;}
.y15_c01092{bottom:39.333333pt;}
.y14_c01092{bottom:72.934667pt;}
.y13_c01092{bottom:88.874667pt;}
.y12_c01092{bottom:104.814667pt;}
.y11_c01092{bottom:120.754667pt;}
.y10_c01092{bottom:163.774667pt;}
.yf_c01092{bottom:179.714667pt;}
.ye_c01092{bottom:195.654667pt;}
.yd_c01092{bottom:211.594667pt;}
.yc_c01092{bottom:254.614667pt;}
.yb_c01092{bottom:297.633333pt;}
.ya_c01092{bottom:340.653333pt;}
.y9_c01092{bottom:383.673333pt;}
.y8_c01092{bottom:448.904000pt;}
.y7_c01092{bottom:943.317333pt;}
.y6_c01092{bottom:957.929333pt;}
.y5_c01092{bottom:972.541333pt;}
.y4_c01092{bottom:987.153333pt;}
.y3_c01092{bottom:1001.765333pt;}
.y2_c01092{bottom:1016.377333pt;}
.y1_c01092{bottom:1030.989333pt;}
.h2_c01092{height:32.006363pt;}
.h4_c01092{height:36.010648pt;}
.h5_c01092{height:46.518078pt;}
.h3_c01092{height:51.855535pt;}
.h0_c01092{height:1122.520000pt;}
.h1_c01092{height:1122.666667pt;}
.w0_c01092{width:793.706667pt;}
.w1_c01092{width:794.000000pt;}
.x0_c01092{left:0.000000pt;}
.x3_c01092{left:113.385333pt;}
.x1_c01092{left:121.886667pt;}
.x2_c01092{left:157.340000pt;}
.x4_c01092{left:386.888000pt;}
}





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

.ir_c01093:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_a5f13a794f554a4eb89ee352.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01093;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01093;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01093;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.ls3_c01093{letter-spacing:0.000000px;}
.ls0_c01093{letter-spacing:0.087998px;}
.ls2_c01093{letter-spacing:0.098482px;}
.ls1_c01093{letter-spacing:0.104482px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01093{word-spacing:-33.713438px;}
.ws1_c01093{word-spacing:-26.575517px;}
.wsa_c01093{word-spacing:-26.487518px;}
.ws7_c01093{word-spacing:-18.769538px;}
.ws4_c01093{word-spacing:-17.574026px;}
.ws3_c01093{word-spacing:-17.215373px;}
.ws6_c01093{word-spacing:-16.199188px;}
.ws0_c01093{word-spacing:-14.884124px;}
.ws2_c01093{word-spacing:-13.927715px;}
.ws5_c01093{word-spacing:-10.351366px;}
.wse_c01093{word-spacing:0.000000px;}
.ws10_c01093{word-spacing:0.036900px;}
.wsb_c01093{word-spacing:0.043999px;}
.wsf_c01093{word-spacing:0.053933px;}
.ws11_c01093{word-spacing:0.070416px;}
.ws9_c01093{word-spacing:0.175997px;}
.wsd_c01093{word-spacing:0.213446px;}
.wsc_c01093{word-spacing:0.219446px;}
._2_c01093{margin-left:-3.825638px;}
._3_c01093{width:1.005737px;}
._0_c01093{width:24.567772px;}
._1_c01093{width:27.676103px;}
.fc5_c01093{color:rgb(0,0,207);}
.fc4_c01093{color:rgb(79,153,5);}
.fc3_c01093{color:rgb(207,92,0);}
.fc2_c01093{color:rgb(33,74,135);}
.fc1_c01093{color:rgb(143,89,3);}
.fc0_c01093{color:rgb(0,0,0);}
.fs1_c01093{font-size:43.999200px;}
.fs0_c01093{font-size:59.775600px;}
.y0_c01093{bottom:0.000000px;}
.y27_c01093{bottom:44.250000px;}
.y26_c01093{bottom:82.051500px;}
.y25_c01093{bottom:114.927000px;}
.y24_c01093{bottom:131.365500px;}
.y23_c01093{bottom:147.804000px;}
.y22_c01093{bottom:164.242500px;}
.y21_c01093{bottom:197.119500px;}
.y20_c01093{bottom:213.558000px;}
.y1f_c01093{bottom:229.996500px;}
.y1e_c01093{bottom:246.435000px;}
.y1d_c01093{bottom:262.873500px;}
.y1c_c01093{bottom:279.310500px;}
.y1b_c01093{bottom:295.749000px;}
.y1a_c01093{bottom:328.626000px;}
.y19_c01093{bottom:345.064500px;}
.y18_c01093{bottom:361.503000px;}
.y17_c01093{bottom:394.380000px;}
.y16_c01093{bottom:410.818500px;}
.y15_c01093{bottom:460.132500px;}
.y14_c01093{bottom:476.571000px;}
.y13_c01093{bottom:509.448000px;}
.y12_c01093{bottom:525.886500px;}
.y11_c01093{bottom:542.325000px;}
.y10_c01093{bottom:558.763500px;}
.yf_c01093{bottom:591.640500px;}
.ye_c01093{bottom:608.079000px;}
.yd_c01093{bottom:624.516000px;}
.yc_c01093{bottom:640.954500px;}
.yb_c01093{bottom:657.393000px;}
.ya_c01093{bottom:673.831500px;}
.y9_c01093{bottom:690.270000px;}
.y8_c01093{bottom:706.708500px;}
.y7_c01093{bottom:722.773500px;}
.y6_c01093{bottom:766.867500px;}
.y5_c01093{bottom:784.800000px;}
.y4_c01093{bottom:802.732500px;}
.y3_c01093{bottom:820.665000px;}
.y2_c01093{bottom:838.597500px;}
.y1_c01093{bottom:856.530000px;}
.h3_c01093{height:35.190766px;}
.h4_c01093{height:36.007158px;}
.h2_c01093{height:52.332837px;}
.h0_c01093{height:1262.835000px;}
.h1_c01093{height:1263.000000px;}
.w0_c01093{width:892.920000px;}
.w1_c01093{width:893.250000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:127.558500px;}
.x2_c01093{left:137.122500px;}
.x3_c01093{left:143.770500px;}
.x4_c01093{left:435.249000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls3_c01093{letter-spacing:0.000000pt;}
.ls0_c01093{letter-spacing:0.078221pt;}
.ls2_c01093{letter-spacing:0.087539pt;}
.ls1_c01093{letter-spacing:0.092873pt;}
.ws8_c01093{word-spacing:-29.967501pt;}
.ws1_c01093{word-spacing:-23.622682pt;}
.wsa_c01093{word-spacing:-23.544461pt;}
.ws7_c01093{word-spacing:-16.684034pt;}
.ws4_c01093{word-spacing:-15.621357pt;}
.ws3_c01093{word-spacing:-15.302554pt;}
.ws6_c01093{word-spacing:-14.399278pt;}
.ws0_c01093{word-spacing:-13.230333pt;}
.ws2_c01093{word-spacing:-12.380191pt;}
.ws5_c01093{word-spacing:-9.201214pt;}
.wse_c01093{word-spacing:0.000000pt;}
.ws10_c01093{word-spacing:0.032800pt;}
.wsb_c01093{word-spacing:0.039110pt;}
.wsf_c01093{word-spacing:0.047940pt;}
.ws11_c01093{word-spacing:0.062592pt;}
.ws9_c01093{word-spacing:0.156442pt;}
.wsd_c01093{word-spacing:0.189730pt;}
.wsc_c01093{word-spacing:0.195063pt;}
._2_c01093{margin-left:-3.400567pt;}
._3_c01093{width:0.893988pt;}
._0_c01093{width:21.838019pt;}
._1_c01093{width:24.600980pt;}
.fs1_c01093{font-size:39.110400pt;}
.fs0_c01093{font-size:53.133867pt;}
.y0_c01093{bottom:0.000000pt;}
.y27_c01093{bottom:39.333333pt;}
.y26_c01093{bottom:72.934667pt;}
.y25_c01093{bottom:102.157333pt;}
.y24_c01093{bottom:116.769333pt;}
.y23_c01093{bottom:131.381333pt;}
.y22_c01093{bottom:145.993333pt;}
.y21_c01093{bottom:175.217333pt;}
.y20_c01093{bottom:189.829333pt;}
.y1f_c01093{bottom:204.441333pt;}
.y1e_c01093{bottom:219.053333pt;}
.y1d_c01093{bottom:233.665333pt;}
.y1c_c01093{bottom:248.276000pt;}
.y1b_c01093{bottom:262.888000pt;}
.y1a_c01093{bottom:292.112000pt;}
.y19_c01093{bottom:306.724000pt;}
.y18_c01093{bottom:321.336000pt;}
.y17_c01093{bottom:350.560000pt;}
.y16_c01093{bottom:365.172000pt;}
.y15_c01093{bottom:409.006667pt;}
.y14_c01093{bottom:423.618667pt;}
.y13_c01093{bottom:452.842667pt;}
.y12_c01093{bottom:467.454667pt;}
.y11_c01093{bottom:482.066667pt;}
.y10_c01093{bottom:496.678667pt;}
.yf_c01093{bottom:525.902667pt;}
.ye_c01093{bottom:540.514667pt;}
.yd_c01093{bottom:555.125333pt;}
.yc_c01093{bottom:569.737333pt;}
.yb_c01093{bottom:584.349333pt;}
.ya_c01093{bottom:598.961333pt;}
.y9_c01093{bottom:613.573333pt;}
.y8_c01093{bottom:628.185333pt;}
.y7_c01093{bottom:642.465333pt;}
.y6_c01093{bottom:681.660000pt;}
.y5_c01093{bottom:697.600000pt;}
.y4_c01093{bottom:713.540000pt;}
.y3_c01093{bottom:729.480000pt;}
.y2_c01093{bottom:745.420000pt;}
.y1_c01093{bottom:761.360000pt;}
.h3_c01093{height:31.280681pt;}
.h4_c01093{height:32.006363pt;}
.h2_c01093{height:46.518078pt;}
.h0_c01093{height:1122.520000pt;}
.h1_c01093{height:1122.666667pt;}
.w0_c01093{width:793.706667pt;}
.w1_c01093{width:794.000000pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:113.385333pt;}
.x2_c01093{left:121.886667pt;}
.x3_c01093{left:127.796000pt;}
.x4_c01093{left:386.888000pt;}
}





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

.ir_c01094:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_6d52deac4c60db93615b8167.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01094;src:url('chunks/assets/font_362135eefc15936dad20ca63.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01094;src:url('chunks/assets/font_4e0f8e1e2618a5617ae8ed44.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01094;src:url('chunks/assets/font_a4b3ab96317191234b89f943.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls4_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:0.087998px;}
.ls2_c01094{letter-spacing:0.098482px;}
.ls1_c01094{letter-spacing:0.104482px;}
.ls3_c01094{letter-spacing:26.690482px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:-26.575517px;}
.ws1_c01094{word-spacing:-26.487518px;}
.ws2_c01094{word-spacing:0.000000px;}
.ws8_c01094{word-spacing:0.043999px;}
.ws3_c01094{word-spacing:0.053933px;}
.ws7_c01094{word-spacing:0.056767px;}
.ws4_c01094{word-spacing:0.064416px;}
.ws5_c01094{word-spacing:0.070416px;}
.ws9_c01094{word-spacing:0.213446px;}
.ws6_c01094{word-spacing:0.219446px;}
._1_c01094{width:1.030723px;}
._0_c01094{width:106.786058px;}
.fc5_c01094{color:rgb(0,0,207);}
.fc4_c01094{color:rgb(207,92,0);}
.fc3_c01094{color:rgb(143,89,3);}
.fc2_c01094{color:rgb(0,0,0);}
.fc1_c01094{color:rgb(79,153,5);}
.fc0_c01094{color:rgb(33,74,135);}
.fs0_c01094{font-size:43.999200px;}
.fs1_c01094{font-size:59.775600px;}
.y0_c01094{bottom:0.000000px;}
.y3b_c01094{bottom:44.250000px;}
.y3a_c01094{bottom:91.369500px;}
.y39_c01094{bottom:107.808000px;}
.y38_c01094{bottom:124.246500px;}
.y37_c01094{bottom:140.685000px;}
.y36_c01094{bottom:173.562000px;}
.y35_c01094{bottom:190.000500px;}
.y34_c01094{bottom:206.437500px;}
.y33_c01094{bottom:255.753000px;}
.y32_c01094{bottom:272.191500px;}
.y31_c01094{bottom:288.630000px;}
.y30_c01094{bottom:305.068500px;}
.y2f_c01094{bottom:321.507000px;}
.y2e_c01094{bottom:337.945500px;}
.y2d_c01094{bottom:354.384000px;}
.y2c_c01094{bottom:370.822500px;}
.y2b_c01094{bottom:387.259500px;}
.y2a_c01094{bottom:403.698000px;}
.y29_c01094{bottom:420.136500px;}
.y28_c01094{bottom:436.575000px;}
.y27_c01094{bottom:453.013500px;}
.y26_c01094{bottom:469.452000px;}
.y25_c01094{bottom:485.890500px;}
.y24_c01094{bottom:502.329000px;}
.y23_c01094{bottom:518.767500px;}
.y22_c01094{bottom:535.206000px;}
.y21_c01094{bottom:551.643000px;}
.y20_c01094{bottom:568.081500px;}
.y1f_c01094{bottom:584.520000px;}
.y1e_c01094{bottom:600.958500px;}
.y1d_c01094{bottom:617.397000px;}
.y1c_c01094{bottom:633.835500px;}
.y1b_c01094{bottom:650.274000px;}
.y1a_c01094{bottom:666.712500px;}
.y19_c01094{bottom:683.151000px;}
.y18_c01094{bottom:716.028000px;}
.y17_c01094{bottom:732.465000px;}
.y16_c01094{bottom:748.903500px;}
.y15_c01094{bottom:765.342000px;}
.y14_c01094{bottom:781.780500px;}
.y13_c01094{bottom:798.219000px;}
.y12_c01094{bottom:831.096000px;}
.y11_c01094{bottom:847.534500px;}
.y10_c01094{bottom:863.973000px;}
.yf_c01094{bottom:880.411500px;}
.ye_c01094{bottom:896.848500px;}
.yd_c01094{bottom:913.287000px;}
.yc_c01094{bottom:929.725500px;}
.yb_c01094{bottom:946.164000px;}
.ya_c01094{bottom:979.041000px;}
.y9_c01094{bottom:1011.918000px;}
.y8_c01094{bottom:1028.356500px;}
.y7_c01094{bottom:1044.795000px;}
.y6_c01094{bottom:1061.232000px;}
.y5_c01094{bottom:1077.670500px;}
.y4_c01094{bottom:1094.109000px;}
.y3_c01094{bottom:1126.986000px;}
.y2_c01094{bottom:1143.424500px;}
.y1_c01094{bottom:1159.863000px;}
.h3_c01094{height:35.190766px;}
.h2_c01094{height:36.007158px;}
.h4_c01094{height:52.332837px;}
.h0_c01094{height:1262.835000px;}
.h1_c01094{height:1263.000000px;}
.w0_c01094{width:892.920000px;}
.w1_c01094{width:893.250000px;}
.x0_c01094{left:0.000000px;}
.x2_c01094{left:137.122500px;}
.x3_c01094{left:143.770500px;}
.x4_c01094{left:177.007500px;}
.x6_c01094{left:196.948500px;}
.x1_c01094{left:203.596500px;}
.x5_c01094{left:210.243000px;}
.x7_c01094{left:435.249000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls4_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:0.078221pt;}
.ls2_c01094{letter-spacing:0.087539pt;}
.ls1_c01094{letter-spacing:0.092873pt;}
.ls3_c01094{letter-spacing:23.724873pt;}
.ws0_c01094{word-spacing:-23.622682pt;}
.ws1_c01094{word-spacing:-23.544461pt;}
.ws2_c01094{word-spacing:0.000000pt;}
.ws8_c01094{word-spacing:0.039110pt;}
.ws3_c01094{word-spacing:0.047940pt;}
.ws7_c01094{word-spacing:0.050460pt;}
.ws4_c01094{word-spacing:0.057259pt;}
.ws5_c01094{word-spacing:0.062592pt;}
.ws9_c01094{word-spacing:0.189730pt;}
.ws6_c01094{word-spacing:0.195063pt;}
._1_c01094{width:0.916198pt;}
._0_c01094{width:94.920941pt;}
.fs0_c01094{font-size:39.110400pt;}
.fs1_c01094{font-size:53.133867pt;}
.y0_c01094{bottom:0.000000pt;}
.y3b_c01094{bottom:39.333333pt;}
.y3a_c01094{bottom:81.217333pt;}
.y39_c01094{bottom:95.829333pt;}
.y38_c01094{bottom:110.441333pt;}
.y37_c01094{bottom:125.053333pt;}
.y36_c01094{bottom:154.277333pt;}
.y35_c01094{bottom:168.889333pt;}
.y34_c01094{bottom:183.500000pt;}
.y33_c01094{bottom:227.336000pt;}
.y32_c01094{bottom:241.948000pt;}
.y31_c01094{bottom:256.560000pt;}
.y30_c01094{bottom:271.172000pt;}
.y2f_c01094{bottom:285.784000pt;}
.y2e_c01094{bottom:300.396000pt;}
.y2d_c01094{bottom:315.008000pt;}
.y2c_c01094{bottom:329.620000pt;}
.y2b_c01094{bottom:344.230667pt;}
.y2a_c01094{bottom:358.842667pt;}
.y29_c01094{bottom:373.454667pt;}
.y28_c01094{bottom:388.066667pt;}
.y27_c01094{bottom:402.678667pt;}
.y26_c01094{bottom:417.290667pt;}
.y25_c01094{bottom:431.902667pt;}
.y24_c01094{bottom:446.514667pt;}
.y23_c01094{bottom:461.126667pt;}
.y22_c01094{bottom:475.738667pt;}
.y21_c01094{bottom:490.349333pt;}
.y20_c01094{bottom:504.961333pt;}
.y1f_c01094{bottom:519.573333pt;}
.y1e_c01094{bottom:534.185333pt;}
.y1d_c01094{bottom:548.797333pt;}
.y1c_c01094{bottom:563.409333pt;}
.y1b_c01094{bottom:578.021333pt;}
.y1a_c01094{bottom:592.633333pt;}
.y19_c01094{bottom:607.245333pt;}
.y18_c01094{bottom:636.469333pt;}
.y17_c01094{bottom:651.080000pt;}
.y16_c01094{bottom:665.692000pt;}
.y15_c01094{bottom:680.304000pt;}
.y14_c01094{bottom:694.916000pt;}
.y13_c01094{bottom:709.528000pt;}
.y12_c01094{bottom:738.752000pt;}
.y11_c01094{bottom:753.364000pt;}
.y10_c01094{bottom:767.976000pt;}
.yf_c01094{bottom:782.588000pt;}
.ye_c01094{bottom:797.198667pt;}
.yd_c01094{bottom:811.810667pt;}
.yc_c01094{bottom:826.422667pt;}
.yb_c01094{bottom:841.034667pt;}
.ya_c01094{bottom:870.258667pt;}
.y9_c01094{bottom:899.482667pt;}
.y8_c01094{bottom:914.094667pt;}
.y7_c01094{bottom:928.706667pt;}
.y6_c01094{bottom:943.317333pt;}
.y5_c01094{bottom:957.929333pt;}
.y4_c01094{bottom:972.541333pt;}
.y3_c01094{bottom:1001.765333pt;}
.y2_c01094{bottom:1016.377333pt;}
.y1_c01094{bottom:1030.989333pt;}
.h3_c01094{height:31.280681pt;}
.h2_c01094{height:32.006363pt;}
.h4_c01094{height:46.518078pt;}
.h0_c01094{height:1122.520000pt;}
.h1_c01094{height:1122.666667pt;}
.w0_c01094{width:793.706667pt;}
.w1_c01094{width:794.000000pt;}
.x0_c01094{left:0.000000pt;}
.x2_c01094{left:121.886667pt;}
.x3_c01094{left:127.796000pt;}
.x4_c01094{left:157.340000pt;}
.x6_c01094{left:175.065333pt;}
.x1_c01094{left:180.974667pt;}
.x5_c01094{left:186.882667pt;}
.x7_c01094{left:386.888000pt;}
}





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

.ir_c01095:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_c3437deb0973a1ad66f6208e.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01095;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01095;src:url('chunks/assets/font_b95e368ac496d9aae001e873.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01095;src:url('chunks/assets/font_e4febdce4ee2f6892d62a029.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01095{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.ls3_c01095{letter-spacing:0.000000px;}
.ls0_c01095{letter-spacing:0.087998px;}
.ls1_c01095{letter-spacing:0.098482px;}
.ls2_c01095{letter-spacing:0.104482px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01095{word-spacing:-26.575517px;}
.ws1_c01095{word-spacing:-26.487518px;}
.ws6_c01095{word-spacing:-18.769538px;}
.wsd_c01095{word-spacing:-17.454475px;}
.wse_c01095{word-spacing:-17.394700px;}
.ws9_c01095{word-spacing:-15.601432px;}
.ws5_c01095{word-spacing:-14.943900px;}
.wsa_c01095{word-spacing:-13.808164px;}
.ws8_c01095{word-spacing:-13.748388px;}
.wsf_c01095{word-spacing:-13.031081px;}
.ws10_c01095{word-spacing:-12.971305px;}
.wsb_c01095{word-spacing:-10.580281px;}
.wsc_c01095{word-spacing:-10.341179px;}
.ws3_c01095{word-spacing:-9.988424px;}
.ws4_c01095{word-spacing:-9.987499px;}
.ws11_c01095{word-spacing:0.000000px;}
.ws7_c01095{word-spacing:0.017856px;}
.ws2_c01095{word-spacing:43.038600px;}
._1_c01095{margin-left:-7.833025px;}
._3_c01095{margin-left:-4.667273px;}
._5_c01095{margin-left:-2.998955px;}
._0_c01095{margin-left:-1.549390px;}
._2_c01095{width:19.935816px;}
._6_c01095{width:21.220338px;}
._9_c01095{width:22.345900px;}
._8_c01095{width:24.398620px;}
._4_c01095{width:29.529146px;}
._7_c01095{width:33.892765px;}
._a_c01095{width:37.277333px;}
.fc5_c01095{color:rgb(0,0,207);}
.fc6_c01095{color:rgb(6,69,173);}
.fc4_c01095{color:rgb(207,92,0);}
.fc3_c01095{color:rgb(79,153,5);}
.fc2_c01095{color:rgb(33,74,135);}
.fc1_c01095{color:rgb(143,89,3);}
.fc0_c01095{color:rgb(0,0,0);}
.fs0_c01095{font-size:43.999200px;}
.fs2_c01095{font-size:59.775600px;}
.fs1_c01095{font-size:86.077200px;}
.y0_c01095{bottom:0.000000px;}
.y16_c01095{bottom:44.250000px;}
.y15_c01095{bottom:82.051500px;}
.y14_c01095{bottom:99.984000px;}
.y13_c01095{bottom:117.916500px;}
.y12_c01095{bottom:135.849000px;}
.y11_c01095{bottom:153.781500px;}
.y10_c01095{bottom:200.500500px;}
.yf_c01095{bottom:218.433000px;}
.ye_c01095{bottom:236.365500px;}
.yd_c01095{bottom:254.298000px;}
.yc_c01095{bottom:301.017000px;}
.yb_c01095{bottom:347.736000px;}
.ya_c01095{bottom:394.453500px;}
.y9_c01095{bottom:441.172500px;}
.y8_c01095{bottom:512.128500px;}
.y7_c01095{bottom:1061.232000px;}
.y6_c01095{bottom:1077.670500px;}
.y5_c01095{bottom:1094.109000px;}
.y4_c01095{bottom:1110.547500px;}
.y3_c01095{bottom:1126.986000px;}
.y2_c01095{bottom:1143.424500px;}
.y1_c01095{bottom:1159.863000px;}
.h2_c01095{height:36.007158px;}
.h4_c01095{height:40.511979px;}
.h5_c01095{height:52.332837px;}
.h3_c01095{height:58.337477px;}
.h0_c01095{height:1262.835000px;}
.h1_c01095{height:1263.000000px;}
.w0_c01095{width:892.920000px;}
.w1_c01095{width:893.250000px;}
.x0_c01095{left:0.000000px;}
.x3_c01095{left:127.558500px;}
.x1_c01095{left:137.122500px;}
.x2_c01095{left:177.007500px;}
.x4_c01095{left:435.249000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls3_c01095{letter-spacing:0.000000pt;}
.ls0_c01095{letter-spacing:0.078221pt;}
.ls1_c01095{letter-spacing:0.087539pt;}
.ls2_c01095{letter-spacing:0.092873pt;}
.ws0_c01095{word-spacing:-23.622682pt;}
.ws1_c01095{word-spacing:-23.544461pt;}
.ws6_c01095{word-spacing:-16.684034pt;}
.wsd_c01095{word-spacing:-15.515089pt;}
.wse_c01095{word-spacing:-15.461955pt;}
.ws9_c01095{word-spacing:-13.867939pt;}
.ws5_c01095{word-spacing:-13.283467pt;}
.wsa_c01095{word-spacing:-12.273923pt;}
.ws8_c01095{word-spacing:-12.220789pt;}
.wsf_c01095{word-spacing:-11.583183pt;}
.ws10_c01095{word-spacing:-11.530049pt;}
.wsb_c01095{word-spacing:-9.404694pt;}
.wsc_c01095{word-spacing:-9.192159pt;}
.ws3_c01095{word-spacing:-8.878599pt;}
.ws4_c01095{word-spacing:-8.877777pt;}
.ws11_c01095{word-spacing:0.000000pt;}
.ws7_c01095{word-spacing:0.015872pt;}
.ws2_c01095{word-spacing:38.256533pt;}
._1_c01095{margin-left:-6.962689pt;}
._3_c01095{margin-left:-4.148687pt;}
._5_c01095{margin-left:-2.665738pt;}
._0_c01095{margin-left:-1.377235pt;}
._2_c01095{width:17.720725pt;}
._6_c01095{width:18.862523pt;}
._9_c01095{width:19.863022pt;}
._8_c01095{width:21.687662pt;}
._4_c01095{width:26.248130pt;}
._7_c01095{width:30.126902pt;}
._a_c01095{width:33.135407pt;}
.fs0_c01095{font-size:39.110400pt;}
.fs2_c01095{font-size:53.133867pt;}
.fs1_c01095{font-size:76.513067pt;}
.y0_c01095{bottom:0.000000pt;}
.y16_c01095{bottom:39.333333pt;}
.y15_c01095{bottom:72.934667pt;}
.y14_c01095{bottom:88.874667pt;}
.y13_c01095{bottom:104.814667pt;}
.y12_c01095{bottom:120.754667pt;}
.y11_c01095{bottom:136.694667pt;}
.y10_c01095{bottom:178.222667pt;}
.yf_c01095{bottom:194.162667pt;}
.ye_c01095{bottom:210.102667pt;}
.yd_c01095{bottom:226.042667pt;}
.yc_c01095{bottom:267.570667pt;}
.yb_c01095{bottom:309.098667pt;}
.ya_c01095{bottom:350.625333pt;}
.y9_c01095{bottom:392.153333pt;}
.y8_c01095{bottom:455.225333pt;}
.y7_c01095{bottom:943.317333pt;}
.y6_c01095{bottom:957.929333pt;}
.y5_c01095{bottom:972.541333pt;}
.y4_c01095{bottom:987.153333pt;}
.y3_c01095{bottom:1001.765333pt;}
.y2_c01095{bottom:1016.377333pt;}
.y1_c01095{bottom:1030.989333pt;}
.h2_c01095{height:32.006363pt;}
.h4_c01095{height:36.010648pt;}
.h5_c01095{height:46.518078pt;}
.h3_c01095{height:51.855535pt;}
.h0_c01095{height:1122.520000pt;}
.h1_c01095{height:1122.666667pt;}
.w0_c01095{width:793.706667pt;}
.w1_c01095{width:794.000000pt;}
.x0_c01095{left:0.000000pt;}
.x3_c01095{left:113.385333pt;}
.x1_c01095{left:121.886667pt;}
.x2_c01095{left:157.340000pt;}
.x4_c01095{left:386.888000pt;}
}





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

.ir_c01096:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_83bb73416ecaa6fdda137217.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01096;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01096;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01096;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01096{font-family:ff4_c01096;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls3_c01096{letter-spacing:0.000000px;}
.ls0_c01096{letter-spacing:0.087998px;}
.ls2_c01096{letter-spacing:0.098482px;}
.ls1_c01096{letter-spacing:0.104482px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01096{word-spacing:-33.713438px;}
.ws1_c01096{word-spacing:-26.575517px;}
.wsa_c01096{word-spacing:-26.487518px;}
.ws7_c01096{word-spacing:-18.769538px;}
.ws4_c01096{word-spacing:-17.574026px;}
.ws3_c01096{word-spacing:-17.215373px;}
.ws6_c01096{word-spacing:-16.199188px;}
.ws0_c01096{word-spacing:-14.884124px;}
.ws2_c01096{word-spacing:-13.927715px;}
.ws5_c01096{word-spacing:-10.351366px;}
.wse_c01096{word-spacing:0.000000px;}
.ws10_c01096{word-spacing:0.036900px;}
.wsb_c01096{word-spacing:0.043999px;}
.wsf_c01096{word-spacing:0.053933px;}
.ws11_c01096{word-spacing:0.070416px;}
.ws9_c01096{word-spacing:0.175997px;}
.wsd_c01096{word-spacing:0.213446px;}
.wsc_c01096{word-spacing:0.219446px;}
._2_c01096{margin-left:-3.825638px;}
._3_c01096{width:1.005737px;}
._0_c01096{width:24.567772px;}
._1_c01096{width:27.676103px;}
.fc5_c01096{color:rgb(0,0,207);}
.fc4_c01096{color:rgb(79,153,5);}
.fc3_c01096{color:rgb(207,92,0);}
.fc2_c01096{color:rgb(33,74,135);}
.fc1_c01096{color:rgb(143,89,3);}
.fc0_c01096{color:rgb(0,0,0);}
.fs1_c01096{font-size:43.999200px;}
.fs0_c01096{font-size:59.775600px;}
.y0_c01096{bottom:0.000000px;}
.y27_c01096{bottom:44.250000px;}
.y26_c01096{bottom:82.051500px;}
.y25_c01096{bottom:114.927000px;}
.y24_c01096{bottom:131.365500px;}
.y23_c01096{bottom:147.804000px;}
.y22_c01096{bottom:164.242500px;}
.y21_c01096{bottom:197.119500px;}
.y20_c01096{bottom:213.558000px;}
.y1f_c01096{bottom:229.996500px;}
.y1e_c01096{bottom:246.435000px;}
.y1d_c01096{bottom:262.873500px;}
.y1c_c01096{bottom:279.310500px;}
.y1b_c01096{bottom:295.749000px;}
.y1a_c01096{bottom:328.626000px;}
.y19_c01096{bottom:345.064500px;}
.y18_c01096{bottom:361.503000px;}
.y17_c01096{bottom:394.380000px;}
.y16_c01096{bottom:410.818500px;}
.y15_c01096{bottom:460.132500px;}
.y14_c01096{bottom:476.571000px;}
.y13_c01096{bottom:509.448000px;}
.y12_c01096{bottom:525.886500px;}
.y11_c01096{bottom:542.325000px;}
.y10_c01096{bottom:558.763500px;}
.yf_c01096{bottom:591.640500px;}
.ye_c01096{bottom:608.079000px;}
.yd_c01096{bottom:624.516000px;}
.yc_c01096{bottom:640.954500px;}
.yb_c01096{bottom:657.393000px;}
.ya_c01096{bottom:673.831500px;}
.y9_c01096{bottom:690.270000px;}
.y8_c01096{bottom:706.708500px;}
.y7_c01096{bottom:722.773500px;}
.y6_c01096{bottom:766.867500px;}
.y5_c01096{bottom:784.800000px;}
.y4_c01096{bottom:802.732500px;}
.y3_c01096{bottom:820.665000px;}
.y2_c01096{bottom:838.597500px;}
.y1_c01096{bottom:856.530000px;}
.h3_c01096{height:35.190766px;}
.h4_c01096{height:36.007158px;}
.h2_c01096{height:52.332837px;}
.h0_c01096{height:1262.835000px;}
.h1_c01096{height:1263.000000px;}
.w0_c01096{width:892.920000px;}
.w1_c01096{width:893.250000px;}
.x0_c01096{left:0.000000px;}
.x1_c01096{left:127.558500px;}
.x2_c01096{left:137.122500px;}
.x3_c01096{left:143.770500px;}
.x4_c01096{left:435.249000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls3_c01096{letter-spacing:0.000000pt;}
.ls0_c01096{letter-spacing:0.078221pt;}
.ls2_c01096{letter-spacing:0.087539pt;}
.ls1_c01096{letter-spacing:0.092873pt;}
.ws8_c01096{word-spacing:-29.967501pt;}
.ws1_c01096{word-spacing:-23.622682pt;}
.wsa_c01096{word-spacing:-23.544461pt;}
.ws7_c01096{word-spacing:-16.684034pt;}
.ws4_c01096{word-spacing:-15.621357pt;}
.ws3_c01096{word-spacing:-15.302554pt;}
.ws6_c01096{word-spacing:-14.399278pt;}
.ws0_c01096{word-spacing:-13.230333pt;}
.ws2_c01096{word-spacing:-12.380191pt;}
.ws5_c01096{word-spacing:-9.201214pt;}
.wse_c01096{word-spacing:0.000000pt;}
.ws10_c01096{word-spacing:0.032800pt;}
.wsb_c01096{word-spacing:0.039110pt;}
.wsf_c01096{word-spacing:0.047940pt;}
.ws11_c01096{word-spacing:0.062592pt;}
.ws9_c01096{word-spacing:0.156442pt;}
.wsd_c01096{word-spacing:0.189730pt;}
.wsc_c01096{word-spacing:0.195063pt;}
._2_c01096{margin-left:-3.400567pt;}
._3_c01096{width:0.893988pt;}
._0_c01096{width:21.838019pt;}
._1_c01096{width:24.600980pt;}
.fs1_c01096{font-size:39.110400pt;}
.fs0_c01096{font-size:53.133867pt;}
.y0_c01096{bottom:0.000000pt;}
.y27_c01096{bottom:39.333333pt;}
.y26_c01096{bottom:72.934667pt;}
.y25_c01096{bottom:102.157333pt;}
.y24_c01096{bottom:116.769333pt;}
.y23_c01096{bottom:131.381333pt;}
.y22_c01096{bottom:145.993333pt;}
.y21_c01096{bottom:175.217333pt;}
.y20_c01096{bottom:189.829333pt;}
.y1f_c01096{bottom:204.441333pt;}
.y1e_c01096{bottom:219.053333pt;}
.y1d_c01096{bottom:233.665333pt;}
.y1c_c01096{bottom:248.276000pt;}
.y1b_c01096{bottom:262.888000pt;}
.y1a_c01096{bottom:292.112000pt;}
.y19_c01096{bottom:306.724000pt;}
.y18_c01096{bottom:321.336000pt;}
.y17_c01096{bottom:350.560000pt;}
.y16_c01096{bottom:365.172000pt;}
.y15_c01096{bottom:409.006667pt;}
.y14_c01096{bottom:423.618667pt;}
.y13_c01096{bottom:452.842667pt;}
.y12_c01096{bottom:467.454667pt;}
.y11_c01096{bottom:482.066667pt;}
.y10_c01096{bottom:496.678667pt;}
.yf_c01096{bottom:525.902667pt;}
.ye_c01096{bottom:540.514667pt;}
.yd_c01096{bottom:555.125333pt;}
.yc_c01096{bottom:569.737333pt;}
.yb_c01096{bottom:584.349333pt;}
.ya_c01096{bottom:598.961333pt;}
.y9_c01096{bottom:613.573333pt;}
.y8_c01096{bottom:628.185333pt;}
.y7_c01096{bottom:642.465333pt;}
.y6_c01096{bottom:681.660000pt;}
.y5_c01096{bottom:697.600000pt;}
.y4_c01096{bottom:713.540000pt;}
.y3_c01096{bottom:729.480000pt;}
.y2_c01096{bottom:745.420000pt;}
.y1_c01096{bottom:761.360000pt;}
.h3_c01096{height:31.280681pt;}
.h4_c01096{height:32.006363pt;}
.h2_c01096{height:46.518078pt;}
.h0_c01096{height:1122.520000pt;}
.h1_c01096{height:1122.666667pt;}
.w0_c01096{width:793.706667pt;}
.w1_c01096{width:794.000000pt;}
.x0_c01096{left:0.000000pt;}
.x1_c01096{left:113.385333pt;}
.x2_c01096{left:121.886667pt;}
.x3_c01096{left:127.796000pt;}
.x4_c01096{left:386.888000pt;}
}





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

.ir_c01097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_1754276a827ed9b8dc532f76.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01097;src:url('chunks/assets/font_e8897dfaa4df1774e777c6ad.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01097;src:url('chunks/assets/font_b532528d1e20259073ecda2e.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01097;src:url('chunks/assets/font_31e8a8f4a11ef0deed979b1d.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01097;src:url('chunks/assets/font_f73aeb738942a45b21d41e1c.woff2')format("woff");}.ff5_c01097{font-family:ff5_c01097;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01097{vertical-align:-12.258000px;}
.v0_c01097{vertical-align:0.000000px;}
.ls4_c01097{letter-spacing:0.000000px;}
.ls0_c01097{letter-spacing:0.087998px;}
.ls2_c01097{letter-spacing:0.098482px;}
.ls1_c01097{letter-spacing:0.104482px;}
.ls3_c01097{letter-spacing:26.690482px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:-26.575517px;}
.ws1_c01097{word-spacing:-26.487518px;}
.ws9_c01097{word-spacing:-19.176617px;}
.ws2_c01097{word-spacing:0.000000px;}
.ws8_c01097{word-spacing:0.043999px;}
.ws3_c01097{word-spacing:0.053933px;}
.ws7_c01097{word-spacing:0.056767px;}
.ws4_c01097{word-spacing:0.064416px;}
.ws5_c01097{word-spacing:0.070416px;}
.wsa_c01097{word-spacing:0.213446px;}
.ws6_c01097{word-spacing:0.219446px;}
._2_c01097{margin-left:-1997.451211px;}
._1_c01097{width:1.018505px;}
._0_c01097{width:80.386538px;}
.fc5_c01097{color:rgb(0,0,207);}
.fc4_c01097{color:rgb(207,92,0);}
.fc3_c01097{color:rgb(143,89,3);}
.fc2_c01097{color:rgb(0,0,0);}
.fc1_c01097{color:rgb(79,153,5);}
.fc0_c01097{color:rgb(33,74,135);}
.fs2_c01097{font-size:31.015800px;}
.fs1_c01097{font-size:37.218600px;}
.fs0_c01097{font-size:43.999200px;}
.fs3_c01097{font-size:59.775600px;}
.y0_c01097{bottom:0.000000px;}
.y3a_c01097{bottom:44.250000px;}
.y39_c01097{bottom:89.790000px;}
.y38_c01097{bottom:122.667000px;}
.y37_c01097{bottom:139.104000px;}
.y36_c01097{bottom:155.542500px;}
.y35_c01097{bottom:221.296500px;}
.y34_c01097{bottom:237.735000px;}
.y33_c01097{bottom:254.173500px;}
.y32_c01097{bottom:270.612000px;}
.y31_c01097{bottom:287.050500px;}
.y30_c01097{bottom:303.487500px;}
.y2f_c01097{bottom:319.926000px;}
.y2e_c01097{bottom:336.364500px;}
.y2d_c01097{bottom:352.803000px;}
.y2c_c01097{bottom:369.241500px;}
.y2b_c01097{bottom:385.680000px;}
.y2a_c01097{bottom:402.118500px;}
.y29_c01097{bottom:418.557000px;}
.y28_c01097{bottom:434.995500px;}
.y27_c01097{bottom:451.060500px;}
.y26_c01097{bottom:469.452000px;}
.y25_c01097{bottom:485.890500px;}
.y24_c01097{bottom:502.329000px;}
.y23_c01097{bottom:518.767500px;}
.y22_c01097{bottom:535.206000px;}
.y21_c01097{bottom:551.643000px;}
.y20_c01097{bottom:568.081500px;}
.y1f_c01097{bottom:584.520000px;}
.y1e_c01097{bottom:600.958500px;}
.y1d_c01097{bottom:617.397000px;}
.y1c_c01097{bottom:633.835500px;}
.y1b_c01097{bottom:650.274000px;}
.y1a_c01097{bottom:666.712500px;}
.y19_c01097{bottom:699.589500px;}
.y18_c01097{bottom:716.028000px;}
.y17_c01097{bottom:732.465000px;}
.y16_c01097{bottom:748.903500px;}
.y15_c01097{bottom:765.342000px;}
.y14_c01097{bottom:781.780500px;}
.y13_c01097{bottom:814.657500px;}
.y12_c01097{bottom:831.096000px;}
.y11_c01097{bottom:847.534500px;}
.y10_c01097{bottom:863.973000px;}
.yf_c01097{bottom:880.411500px;}
.ye_c01097{bottom:896.848500px;}
.yd_c01097{bottom:913.287000px;}
.yc_c01097{bottom:929.725500px;}
.yb_c01097{bottom:946.164000px;}
.ya_c01097{bottom:979.041000px;}
.y9_c01097{bottom:1011.918000px;}
.y8_c01097{bottom:1028.356500px;}
.y7_c01097{bottom:1044.795000px;}
.y6_c01097{bottom:1061.232000px;}
.y5_c01097{bottom:1077.670500px;}
.y4_c01097{bottom:1094.109000px;}
.y3_c01097{bottom:1126.986000px;}
.y2_c01097{bottom:1143.424500px;}
.y1_c01097{bottom:1159.863000px;}
.h3_c01097{height:35.190766px;}
.h2_c01097{height:36.007158px;}
.h4_c01097{height:52.332837px;}
.h0_c01097{height:1262.835000px;}
.h1_c01097{height:1263.000000px;}
.w0_c01097{width:892.920000px;}
.w1_c01097{width:893.250000px;}
.x0_c01097{left:0.000000px;}
.x2_c01097{left:137.122500px;}
.x4_c01097{left:143.770500px;}
.x6_c01097{left:163.713000px;}
.x3_c01097{left:177.007500px;}
.x7_c01097{left:196.948500px;}
.x1_c01097{left:203.596500px;}
.x5_c01097{left:210.243000px;}
.x8_c01097{left:435.249000px;}
@media print{
.v1_c01097{vertical-align:-10.896000pt;}
.v0_c01097{vertical-align:0.000000pt;}
.ls4_c01097{letter-spacing:0.000000pt;}
.ls0_c01097{letter-spacing:0.078221pt;}
.ls2_c01097{letter-spacing:0.087539pt;}
.ls1_c01097{letter-spacing:0.092873pt;}
.ls3_c01097{letter-spacing:23.724873pt;}
.ws0_c01097{word-spacing:-23.622682pt;}
.ws1_c01097{word-spacing:-23.544461pt;}
.ws9_c01097{word-spacing:-17.045882pt;}
.ws2_c01097{word-spacing:0.000000pt;}
.ws8_c01097{word-spacing:0.039110pt;}
.ws3_c01097{word-spacing:0.047940pt;}
.ws7_c01097{word-spacing:0.050460pt;}
.ws4_c01097{word-spacing:0.057259pt;}
.ws5_c01097{word-spacing:0.062592pt;}
.wsa_c01097{word-spacing:0.189730pt;}
.ws6_c01097{word-spacing:0.195063pt;}
._2_c01097{margin-left:-1775.512188pt;}
._1_c01097{width:0.905338pt;}
._0_c01097{width:71.454701pt;}
.fs2_c01097{font-size:27.569600pt;}
.fs1_c01097{font-size:33.083200pt;}
.fs0_c01097{font-size:39.110400pt;}
.fs3_c01097{font-size:53.133867pt;}
.y0_c01097{bottom:0.000000pt;}
.y3a_c01097{bottom:39.333333pt;}
.y39_c01097{bottom:79.813333pt;}
.y38_c01097{bottom:109.037333pt;}
.y37_c01097{bottom:123.648000pt;}
.y36_c01097{bottom:138.260000pt;}
.y35_c01097{bottom:196.708000pt;}
.y34_c01097{bottom:211.320000pt;}
.y33_c01097{bottom:225.932000pt;}
.y32_c01097{bottom:240.544000pt;}
.y31_c01097{bottom:255.156000pt;}
.y30_c01097{bottom:269.766667pt;}
.y2f_c01097{bottom:284.378667pt;}
.y2e_c01097{bottom:298.990667pt;}
.y2d_c01097{bottom:313.602667pt;}
.y2c_c01097{bottom:328.214667pt;}
.y2b_c01097{bottom:342.826667pt;}
.y2a_c01097{bottom:357.438667pt;}
.y29_c01097{bottom:372.050667pt;}
.y28_c01097{bottom:386.662667pt;}
.y27_c01097{bottom:400.942667pt;}
.y26_c01097{bottom:417.290667pt;}
.y25_c01097{bottom:431.902667pt;}
.y24_c01097{bottom:446.514667pt;}
.y23_c01097{bottom:461.126667pt;}
.y22_c01097{bottom:475.738667pt;}
.y21_c01097{bottom:490.349333pt;}
.y20_c01097{bottom:504.961333pt;}
.y1f_c01097{bottom:519.573333pt;}
.y1e_c01097{bottom:534.185333pt;}
.y1d_c01097{bottom:548.797333pt;}
.y1c_c01097{bottom:563.409333pt;}
.y1b_c01097{bottom:578.021333pt;}
.y1a_c01097{bottom:592.633333pt;}
.y19_c01097{bottom:621.857333pt;}
.y18_c01097{bottom:636.469333pt;}
.y17_c01097{bottom:651.080000pt;}
.y16_c01097{bottom:665.692000pt;}
.y15_c01097{bottom:680.304000pt;}
.y14_c01097{bottom:694.916000pt;}
.y13_c01097{bottom:724.140000pt;}
.y12_c01097{bottom:738.752000pt;}
.y11_c01097{bottom:753.364000pt;}
.y10_c01097{bottom:767.976000pt;}
.yf_c01097{bottom:782.588000pt;}
.ye_c01097{bottom:797.198667pt;}
.yd_c01097{bottom:811.810667pt;}
.yc_c01097{bottom:826.422667pt;}
.yb_c01097{bottom:841.034667pt;}
.ya_c01097{bottom:870.258667pt;}
.y9_c01097{bottom:899.482667pt;}
.y8_c01097{bottom:914.094667pt;}
.y7_c01097{bottom:928.706667pt;}
.y6_c01097{bottom:943.317333pt;}
.y5_c01097{bottom:957.929333pt;}
.y4_c01097{bottom:972.541333pt;}
.y3_c01097{bottom:1001.765333pt;}
.y2_c01097{bottom:1016.377333pt;}
.y1_c01097{bottom:1030.989333pt;}
.h3_c01097{height:31.280681pt;}
.h2_c01097{height:32.006363pt;}
.h4_c01097{height:46.518078pt;}
.h0_c01097{height:1122.520000pt;}
.h1_c01097{height:1122.666667pt;}
.w0_c01097{width:793.706667pt;}
.w1_c01097{width:794.000000pt;}
.x0_c01097{left:0.000000pt;}
.x2_c01097{left:121.886667pt;}
.x4_c01097{left:127.796000pt;}
.x6_c01097{left:145.522667pt;}
.x3_c01097{left:157.340000pt;}
.x7_c01097{left:175.065333pt;}
.x1_c01097{left:180.974667pt;}
.x5_c01097{left:186.882667pt;}
.x8_c01097{left:386.888000pt;}
}





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

.ir_c01098:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_2588d571be9d5879592df400.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01098;src:url('chunks/assets/font_28972cab3f70ac0fbd18cabf.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01098;src:url('chunks/assets/font_3a0ab41a3f92f88c00851f89.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01098;src:url('chunks/assets/font_e4febdce4ee2f6892d62a029.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01098{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls3_c01098{letter-spacing:0.000000px;}
.ls0_c01098{letter-spacing:0.087998px;}
.ls1_c01098{letter-spacing:0.098482px;}
.ls2_c01098{letter-spacing:0.104482px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c01098{word-spacing:-33.713438px;}
.ws0_c01098{word-spacing:-26.575517px;}
.ws1_c01098{word-spacing:-26.487518px;}
.wsd_c01098{word-spacing:-21.758318px;}
.ws6_c01098{word-spacing:-19.845499px;}
.ws8_c01098{word-spacing:-18.769538px;}
.ws5_c01098{word-spacing:-16.079636px;}
.wse_c01098{word-spacing:-15.960085px;}
.wsf_c01098{word-spacing:-15.900310px;}
.ws10_c01098{word-spacing:-15.840534px;}
.ws12_c01098{word-spacing:-15.661207px;}
.wsb_c01098{word-spacing:-15.601432px;}
.ws7_c01098{word-spacing:-14.943900px;}
.wsc_c01098{word-spacing:-13.808164px;}
.wsa_c01098{word-spacing:-13.748388px;}
.ws3_c01098{word-spacing:-9.988424px;}
.ws4_c01098{word-spacing:-9.987499px;}
.ws13_c01098{word-spacing:0.000000px;}
.ws9_c01098{word-spacing:0.017856px;}
.ws2_c01098{word-spacing:43.038600px;}
._1_c01098{margin-left:-7.833025px;}
._3_c01098{margin-left:-4.727048px;}
._5_c01098{margin-left:-2.998955px;}
._0_c01098{margin-left:-1.549390px;}
._7_c01098{width:16.617617px;}
._2_c01098{width:19.457552px;}
._6_c01098{width:21.220338px;}
._8_c01098{width:24.448220px;}
._4_c01098{width:29.529146px;}
.fc5_c01098{color:rgb(0,0,207);}
.fc6_c01098{color:rgb(6,69,173);}
.fc4_c01098{color:rgb(207,92,0);}
.fc3_c01098{color:rgb(79,153,5);}
.fc2_c01098{color:rgb(33,74,135);}
.fc1_c01098{color:rgb(143,89,3);}
.fc0_c01098{color:rgb(0,0,0);}
.fs0_c01098{font-size:43.999200px;}
.fs2_c01098{font-size:59.775600px;}
.fs1_c01098{font-size:86.077200px;}
.y0_c01098{bottom:0.000000px;}
.y19_c01098{bottom:44.250000px;}
.y18_c01098{bottom:82.051500px;}
.y17_c01098{bottom:99.984000px;}
.y16_c01098{bottom:117.916500px;}
.y15_c01098{bottom:135.849000px;}
.y14_c01098{bottom:153.781500px;}
.y13_c01098{bottom:195.885000px;}
.y12_c01098{bottom:213.817500px;}
.y11_c01098{bottom:231.750000px;}
.y10_c01098{bottom:249.682500px;}
.yf_c01098{bottom:291.784500px;}
.ye_c01098{bottom:333.888000px;}
.yd_c01098{bottom:375.990000px;}
.yc_c01098{bottom:418.092000px;}
.yb_c01098{bottom:482.367000px;}
.ya_c01098{bottom:1011.918000px;}
.y9_c01098{bottom:1028.356500px;}
.y8_c01098{bottom:1044.795000px;}
.y7_c01098{bottom:1061.232000px;}
.y6_c01098{bottom:1077.670500px;}
.y5_c01098{bottom:1094.109000px;}
.y4_c01098{bottom:1110.547500px;}
.y3_c01098{bottom:1126.986000px;}
.y2_c01098{bottom:1143.424500px;}
.y1_c01098{bottom:1159.863000px;}
.h2_c01098{height:36.007158px;}
.h4_c01098{height:40.511979px;}
.h5_c01098{height:52.332837px;}
.h3_c01098{height:58.337477px;}
.h0_c01098{height:1262.835000px;}
.h1_c01098{height:1263.000000px;}
.w0_c01098{width:892.920000px;}
.w1_c01098{width:893.250000px;}
.x0_c01098{left:0.000000px;}
.x3_c01098{left:127.558500px;}
.x1_c01098{left:137.122500px;}
.x2_c01098{left:177.007500px;}
.x4_c01098{left:435.249000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls3_c01098{letter-spacing:0.000000pt;}
.ls0_c01098{letter-spacing:0.078221pt;}
.ls1_c01098{letter-spacing:0.087539pt;}
.ls2_c01098{letter-spacing:0.092873pt;}
.ws11_c01098{word-spacing:-29.967501pt;}
.ws0_c01098{word-spacing:-23.622682pt;}
.ws1_c01098{word-spacing:-23.544461pt;}
.wsd_c01098{word-spacing:-19.340727pt;}
.ws6_c01098{word-spacing:-17.640444pt;}
.ws8_c01098{word-spacing:-16.684034pt;}
.ws5_c01098{word-spacing:-14.293010pt;}
.wse_c01098{word-spacing:-14.186742pt;}
.wsf_c01098{word-spacing:-14.133609pt;}
.ws10_c01098{word-spacing:-14.080475pt;}
.ws12_c01098{word-spacing:-13.921073pt;}
.wsb_c01098{word-spacing:-13.867939pt;}
.ws7_c01098{word-spacing:-13.283467pt;}
.wsc_c01098{word-spacing:-12.273923pt;}
.wsa_c01098{word-spacing:-12.220789pt;}
.ws3_c01098{word-spacing:-8.878599pt;}
.ws4_c01098{word-spacing:-8.877777pt;}
.ws13_c01098{word-spacing:0.000000pt;}
.ws9_c01098{word-spacing:0.015872pt;}
.ws2_c01098{word-spacing:38.256533pt;}
._1_c01098{margin-left:-6.962689pt;}
._3_c01098{margin-left:-4.201821pt;}
._5_c01098{margin-left:-2.665738pt;}
._0_c01098{margin-left:-1.377235pt;}
._7_c01098{width:14.771215pt;}
._2_c01098{width:17.295602pt;}
._6_c01098{width:18.862523pt;}
._8_c01098{width:21.731751pt;}
._4_c01098{width:26.248130pt;}
.fs0_c01098{font-size:39.110400pt;}
.fs2_c01098{font-size:53.133867pt;}
.fs1_c01098{font-size:76.513067pt;}
.y0_c01098{bottom:0.000000pt;}
.y19_c01098{bottom:39.333333pt;}
.y18_c01098{bottom:72.934667pt;}
.y17_c01098{bottom:88.874667pt;}
.y16_c01098{bottom:104.814667pt;}
.y15_c01098{bottom:120.754667pt;}
.y14_c01098{bottom:136.694667pt;}
.y13_c01098{bottom:174.120000pt;}
.y12_c01098{bottom:190.060000pt;}
.y11_c01098{bottom:206.000000pt;}
.y10_c01098{bottom:221.940000pt;}
.yf_c01098{bottom:259.364000pt;}
.ye_c01098{bottom:296.789333pt;}
.yd_c01098{bottom:334.213333pt;}
.yc_c01098{bottom:371.637333pt;}
.yb_c01098{bottom:428.770667pt;}
.ya_c01098{bottom:899.482667pt;}
.y9_c01098{bottom:914.094667pt;}
.y8_c01098{bottom:928.706667pt;}
.y7_c01098{bottom:943.317333pt;}
.y6_c01098{bottom:957.929333pt;}
.y5_c01098{bottom:972.541333pt;}
.y4_c01098{bottom:987.153333pt;}
.y3_c01098{bottom:1001.765333pt;}
.y2_c01098{bottom:1016.377333pt;}
.y1_c01098{bottom:1030.989333pt;}
.h2_c01098{height:32.006363pt;}
.h4_c01098{height:36.010648pt;}
.h5_c01098{height:46.518078pt;}
.h3_c01098{height:51.855535pt;}
.h0_c01098{height:1122.520000pt;}
.h1_c01098{height:1122.666667pt;}
.w0_c01098{width:793.706667pt;}
.w1_c01098{width:794.000000pt;}
.x0_c01098{left:0.000000pt;}
.x3_c01098{left:113.385333pt;}
.x1_c01098{left:121.886667pt;}
.x2_c01098{left:157.340000pt;}
.x4_c01098{left:386.888000pt;}
}





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

.ir_c01099:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_9e21e5e42f3f70d27b853f09.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01099;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01099;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01099;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01099{font-family:ff4_c01099;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls3_c01099{letter-spacing:0.000000px;}
.ls0_c01099{letter-spacing:0.087998px;}
.ls2_c01099{letter-spacing:0.098482px;}
.ls1_c01099{letter-spacing:0.104482px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01099{word-spacing:-33.713438px;}
.ws1_c01099{word-spacing:-26.575517px;}
.wsa_c01099{word-spacing:-26.487518px;}
.ws7_c01099{word-spacing:-18.769538px;}
.ws4_c01099{word-spacing:-17.574026px;}
.ws3_c01099{word-spacing:-17.215373px;}
.ws6_c01099{word-spacing:-16.199188px;}
.ws0_c01099{word-spacing:-14.884124px;}
.ws2_c01099{word-spacing:-13.927715px;}
.ws5_c01099{word-spacing:-10.351366px;}
.wse_c01099{word-spacing:0.000000px;}
.ws10_c01099{word-spacing:0.036900px;}
.wsb_c01099{word-spacing:0.043999px;}
.wsf_c01099{word-spacing:0.053933px;}
.ws11_c01099{word-spacing:0.070416px;}
.ws9_c01099{word-spacing:0.175997px;}
.wsd_c01099{word-spacing:0.213446px;}
.wsc_c01099{word-spacing:0.219446px;}
._2_c01099{margin-left:-3.825638px;}
._3_c01099{width:1.005737px;}
._0_c01099{width:24.567772px;}
._1_c01099{width:27.676103px;}
.fc5_c01099{color:rgb(0,0,207);}
.fc4_c01099{color:rgb(79,153,5);}
.fc3_c01099{color:rgb(207,92,0);}
.fc2_c01099{color:rgb(33,74,135);}
.fc1_c01099{color:rgb(143,89,3);}
.fc0_c01099{color:rgb(0,0,0);}
.fs1_c01099{font-size:43.999200px;}
.fs0_c01099{font-size:59.775600px;}
.y0_c01099{bottom:0.000000px;}
.y27_c01099{bottom:44.250000px;}
.y26_c01099{bottom:82.051500px;}
.y25_c01099{bottom:114.927000px;}
.y24_c01099{bottom:131.365500px;}
.y23_c01099{bottom:147.804000px;}
.y22_c01099{bottom:164.242500px;}
.y21_c01099{bottom:197.119500px;}
.y20_c01099{bottom:213.558000px;}
.y1f_c01099{bottom:229.996500px;}
.y1e_c01099{bottom:246.435000px;}
.y1d_c01099{bottom:262.873500px;}
.y1c_c01099{bottom:279.310500px;}
.y1b_c01099{bottom:295.749000px;}
.y1a_c01099{bottom:328.626000px;}
.y19_c01099{bottom:345.064500px;}
.y18_c01099{bottom:361.503000px;}
.y17_c01099{bottom:394.380000px;}
.y16_c01099{bottom:410.818500px;}
.y15_c01099{bottom:460.132500px;}
.y14_c01099{bottom:476.571000px;}
.y13_c01099{bottom:509.448000px;}
.y12_c01099{bottom:525.886500px;}
.y11_c01099{bottom:542.325000px;}
.y10_c01099{bottom:558.763500px;}
.yf_c01099{bottom:591.640500px;}
.ye_c01099{bottom:608.079000px;}
.yd_c01099{bottom:624.516000px;}
.yc_c01099{bottom:640.954500px;}
.yb_c01099{bottom:657.393000px;}
.ya_c01099{bottom:673.831500px;}
.y9_c01099{bottom:690.270000px;}
.y8_c01099{bottom:706.708500px;}
.y7_c01099{bottom:722.773500px;}
.y6_c01099{bottom:766.867500px;}
.y5_c01099{bottom:784.800000px;}
.y4_c01099{bottom:802.732500px;}
.y3_c01099{bottom:820.665000px;}
.y2_c01099{bottom:838.597500px;}
.y1_c01099{bottom:856.530000px;}
.h3_c01099{height:35.190766px;}
.h4_c01099{height:36.007158px;}
.h2_c01099{height:52.332837px;}
.h0_c01099{height:1262.835000px;}
.h1_c01099{height:1263.000000px;}
.w0_c01099{width:892.920000px;}
.w1_c01099{width:893.250000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:127.558500px;}
.x2_c01099{left:137.122500px;}
.x3_c01099{left:143.770500px;}
.x4_c01099{left:435.249000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls3_c01099{letter-spacing:0.000000pt;}
.ls0_c01099{letter-spacing:0.078221pt;}
.ls2_c01099{letter-spacing:0.087539pt;}
.ls1_c01099{letter-spacing:0.092873pt;}
.ws8_c01099{word-spacing:-29.967501pt;}
.ws1_c01099{word-spacing:-23.622682pt;}
.wsa_c01099{word-spacing:-23.544461pt;}
.ws7_c01099{word-spacing:-16.684034pt;}
.ws4_c01099{word-spacing:-15.621357pt;}
.ws3_c01099{word-spacing:-15.302554pt;}
.ws6_c01099{word-spacing:-14.399278pt;}
.ws0_c01099{word-spacing:-13.230333pt;}
.ws2_c01099{word-spacing:-12.380191pt;}
.ws5_c01099{word-spacing:-9.201214pt;}
.wse_c01099{word-spacing:0.000000pt;}
.ws10_c01099{word-spacing:0.032800pt;}
.wsb_c01099{word-spacing:0.039110pt;}
.wsf_c01099{word-spacing:0.047940pt;}
.ws11_c01099{word-spacing:0.062592pt;}
.ws9_c01099{word-spacing:0.156442pt;}
.wsd_c01099{word-spacing:0.189730pt;}
.wsc_c01099{word-spacing:0.195063pt;}
._2_c01099{margin-left:-3.400567pt;}
._3_c01099{width:0.893988pt;}
._0_c01099{width:21.838019pt;}
._1_c01099{width:24.600980pt;}
.fs1_c01099{font-size:39.110400pt;}
.fs0_c01099{font-size:53.133867pt;}
.y0_c01099{bottom:0.000000pt;}
.y27_c01099{bottom:39.333333pt;}
.y26_c01099{bottom:72.934667pt;}
.y25_c01099{bottom:102.157333pt;}
.y24_c01099{bottom:116.769333pt;}
.y23_c01099{bottom:131.381333pt;}
.y22_c01099{bottom:145.993333pt;}
.y21_c01099{bottom:175.217333pt;}
.y20_c01099{bottom:189.829333pt;}
.y1f_c01099{bottom:204.441333pt;}
.y1e_c01099{bottom:219.053333pt;}
.y1d_c01099{bottom:233.665333pt;}
.y1c_c01099{bottom:248.276000pt;}
.y1b_c01099{bottom:262.888000pt;}
.y1a_c01099{bottom:292.112000pt;}
.y19_c01099{bottom:306.724000pt;}
.y18_c01099{bottom:321.336000pt;}
.y17_c01099{bottom:350.560000pt;}
.y16_c01099{bottom:365.172000pt;}
.y15_c01099{bottom:409.006667pt;}
.y14_c01099{bottom:423.618667pt;}
.y13_c01099{bottom:452.842667pt;}
.y12_c01099{bottom:467.454667pt;}
.y11_c01099{bottom:482.066667pt;}
.y10_c01099{bottom:496.678667pt;}
.yf_c01099{bottom:525.902667pt;}
.ye_c01099{bottom:540.514667pt;}
.yd_c01099{bottom:555.125333pt;}
.yc_c01099{bottom:569.737333pt;}
.yb_c01099{bottom:584.349333pt;}
.ya_c01099{bottom:598.961333pt;}
.y9_c01099{bottom:613.573333pt;}
.y8_c01099{bottom:628.185333pt;}
.y7_c01099{bottom:642.465333pt;}
.y6_c01099{bottom:681.660000pt;}
.y5_c01099{bottom:697.600000pt;}
.y4_c01099{bottom:713.540000pt;}
.y3_c01099{bottom:729.480000pt;}
.y2_c01099{bottom:745.420000pt;}
.y1_c01099{bottom:761.360000pt;}
.h3_c01099{height:31.280681pt;}
.h4_c01099{height:32.006363pt;}
.h2_c01099{height:46.518078pt;}
.h0_c01099{height:1122.520000pt;}
.h1_c01099{height:1122.666667pt;}
.w0_c01099{width:793.706667pt;}
.w1_c01099{width:794.000000pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:113.385333pt;}
.x2_c01099{left:121.886667pt;}
.x3_c01099{left:127.796000pt;}
.x4_c01099{left:386.888000pt;}
}





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

.ir_c01100:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_543266717e646a4b383bee6f.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01100;src:url('chunks/assets/font_6bc0a2d28254634428046347.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01100;src:url('chunks/assets/font_e30855e8600fbefff8d2b29d.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01100;src:url('chunks/assets/font_114fc02685ad25f3813ec719.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls4_c01100{letter-spacing:0.000000px;}
.ls0_c01100{letter-spacing:0.087998px;}
.ls2_c01100{letter-spacing:0.098482px;}
.ls1_c01100{letter-spacing:0.104482px;}
.ls3_c01100{letter-spacing:26.690482px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:-26.575517px;}
.ws1_c01100{word-spacing:-26.487518px;}
.ws2_c01100{word-spacing:0.000000px;}
.ws6_c01100{word-spacing:0.043999px;}
.ws3_c01100{word-spacing:0.053933px;}
.ws5_c01100{word-spacing:0.064416px;}
.ws4_c01100{word-spacing:0.070416px;}
.ws8_c01100{word-spacing:0.072701px;}
.ws9_c01100{word-spacing:0.213446px;}
.ws7_c01100{word-spacing:0.219446px;}
._1_c01100{width:1.014240px;}
._0_c01100{width:80.342539px;}
.fc5_c01100{color:rgb(0,0,207);}
.fc4_c01100{color:rgb(207,92,0);}
.fc3_c01100{color:rgb(143,89,3);}
.fc2_c01100{color:rgb(0,0,0);}
.fc1_c01100{color:rgb(79,153,5);}
.fc0_c01100{color:rgb(33,74,135);}
.fs0_c01100{font-size:43.999200px;}
.fs1_c01100{font-size:59.775600px;}
.y0_c01100{bottom:0.000000px;}
.y3c_c01100{bottom:44.250000px;}
.y3b_c01100{bottom:91.369500px;}
.y3a_c01100{bottom:107.808000px;}
.y39_c01100{bottom:124.246500px;}
.y38_c01100{bottom:140.685000px;}
.y37_c01100{bottom:173.562000px;}
.y36_c01100{bottom:190.000500px;}
.y35_c01100{bottom:206.437500px;}
.y34_c01100{bottom:255.753000px;}
.y33_c01100{bottom:272.191500px;}
.y32_c01100{bottom:288.630000px;}
.y31_c01100{bottom:305.068500px;}
.y30_c01100{bottom:321.507000px;}
.y2f_c01100{bottom:337.945500px;}
.y2e_c01100{bottom:354.384000px;}
.y2d_c01100{bottom:370.822500px;}
.y2c_c01100{bottom:387.259500px;}
.y2b_c01100{bottom:403.698000px;}
.y2a_c01100{bottom:420.136500px;}
.y29_c01100{bottom:436.575000px;}
.y28_c01100{bottom:453.013500px;}
.y27_c01100{bottom:469.452000px;}
.y26_c01100{bottom:485.890500px;}
.y25_c01100{bottom:502.329000px;}
.y24_c01100{bottom:518.767500px;}
.y23_c01100{bottom:535.206000px;}
.y22_c01100{bottom:551.643000px;}
.y21_c01100{bottom:568.081500px;}
.y20_c01100{bottom:584.520000px;}
.y1f_c01100{bottom:600.958500px;}
.y1e_c01100{bottom:617.397000px;}
.y1d_c01100{bottom:633.835500px;}
.y1c_c01100{bottom:650.274000px;}
.y1b_c01100{bottom:666.712500px;}
.y1a_c01100{bottom:683.151000px;}
.y19_c01100{bottom:716.028000px;}
.y18_c01100{bottom:732.465000px;}
.y17_c01100{bottom:748.903500px;}
.y16_c01100{bottom:765.342000px;}
.y15_c01100{bottom:781.780500px;}
.y14_c01100{bottom:798.219000px;}
.y13_c01100{bottom:831.096000px;}
.y12_c01100{bottom:847.534500px;}
.y11_c01100{bottom:863.973000px;}
.y10_c01100{bottom:880.411500px;}
.yf_c01100{bottom:896.848500px;}
.ye_c01100{bottom:913.287000px;}
.yd_c01100{bottom:929.725500px;}
.yc_c01100{bottom:946.164000px;}
.yb_c01100{bottom:962.602500px;}
.ya_c01100{bottom:979.041000px;}
.y9_c01100{bottom:1011.918000px;}
.y8_c01100{bottom:1028.356500px;}
.y7_c01100{bottom:1044.795000px;}
.y6_c01100{bottom:1061.232000px;}
.y5_c01100{bottom:1077.670500px;}
.y4_c01100{bottom:1094.109000px;}
.y3_c01100{bottom:1126.986000px;}
.y2_c01100{bottom:1143.424500px;}
.y1_c01100{bottom:1159.863000px;}
.h3_c01100{height:35.190766px;}
.h2_c01100{height:36.007158px;}
.h4_c01100{height:52.332837px;}
.h0_c01100{height:1262.835000px;}
.h1_c01100{height:1263.000000px;}
.w0_c01100{width:892.920000px;}
.w1_c01100{width:893.250000px;}
.x0_c01100{left:0.000000px;}
.x2_c01100{left:137.122500px;}
.x4_c01100{left:143.770500px;}
.x3_c01100{left:170.359500px;}
.x5_c01100{left:177.007500px;}
.x7_c01100{left:196.948500px;}
.x1_c01100{left:203.596500px;}
.x6_c01100{left:210.243000px;}
.x8_c01100{left:435.249000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls4_c01100{letter-spacing:0.000000pt;}
.ls0_c01100{letter-spacing:0.078221pt;}
.ls2_c01100{letter-spacing:0.087539pt;}
.ls1_c01100{letter-spacing:0.092873pt;}
.ls3_c01100{letter-spacing:23.724873pt;}
.ws0_c01100{word-spacing:-23.622682pt;}
.ws1_c01100{word-spacing:-23.544461pt;}
.ws2_c01100{word-spacing:0.000000pt;}
.ws6_c01100{word-spacing:0.039110pt;}
.ws3_c01100{word-spacing:0.047940pt;}
.ws5_c01100{word-spacing:0.057259pt;}
.ws4_c01100{word-spacing:0.062592pt;}
.ws8_c01100{word-spacing:0.064623pt;}
.ws9_c01100{word-spacing:0.189730pt;}
.ws7_c01100{word-spacing:0.195063pt;}
._1_c01100{width:0.901547pt;}
._0_c01100{width:71.415590pt;}
.fs0_c01100{font-size:39.110400pt;}
.fs1_c01100{font-size:53.133867pt;}
.y0_c01100{bottom:0.000000pt;}
.y3c_c01100{bottom:39.333333pt;}
.y3b_c01100{bottom:81.217333pt;}
.y3a_c01100{bottom:95.829333pt;}
.y39_c01100{bottom:110.441333pt;}
.y38_c01100{bottom:125.053333pt;}
.y37_c01100{bottom:154.277333pt;}
.y36_c01100{bottom:168.889333pt;}
.y35_c01100{bottom:183.500000pt;}
.y34_c01100{bottom:227.336000pt;}
.y33_c01100{bottom:241.948000pt;}
.y32_c01100{bottom:256.560000pt;}
.y31_c01100{bottom:271.172000pt;}
.y30_c01100{bottom:285.784000pt;}
.y2f_c01100{bottom:300.396000pt;}
.y2e_c01100{bottom:315.008000pt;}
.y2d_c01100{bottom:329.620000pt;}
.y2c_c01100{bottom:344.230667pt;}
.y2b_c01100{bottom:358.842667pt;}
.y2a_c01100{bottom:373.454667pt;}
.y29_c01100{bottom:388.066667pt;}
.y28_c01100{bottom:402.678667pt;}
.y27_c01100{bottom:417.290667pt;}
.y26_c01100{bottom:431.902667pt;}
.y25_c01100{bottom:446.514667pt;}
.y24_c01100{bottom:461.126667pt;}
.y23_c01100{bottom:475.738667pt;}
.y22_c01100{bottom:490.349333pt;}
.y21_c01100{bottom:504.961333pt;}
.y20_c01100{bottom:519.573333pt;}
.y1f_c01100{bottom:534.185333pt;}
.y1e_c01100{bottom:548.797333pt;}
.y1d_c01100{bottom:563.409333pt;}
.y1c_c01100{bottom:578.021333pt;}
.y1b_c01100{bottom:592.633333pt;}
.y1a_c01100{bottom:607.245333pt;}
.y19_c01100{bottom:636.469333pt;}
.y18_c01100{bottom:651.080000pt;}
.y17_c01100{bottom:665.692000pt;}
.y16_c01100{bottom:680.304000pt;}
.y15_c01100{bottom:694.916000pt;}
.y14_c01100{bottom:709.528000pt;}
.y13_c01100{bottom:738.752000pt;}
.y12_c01100{bottom:753.364000pt;}
.y11_c01100{bottom:767.976000pt;}
.y10_c01100{bottom:782.588000pt;}
.yf_c01100{bottom:797.198667pt;}
.ye_c01100{bottom:811.810667pt;}
.yd_c01100{bottom:826.422667pt;}
.yc_c01100{bottom:841.034667pt;}
.yb_c01100{bottom:855.646667pt;}
.ya_c01100{bottom:870.258667pt;}
.y9_c01100{bottom:899.482667pt;}
.y8_c01100{bottom:914.094667pt;}
.y7_c01100{bottom:928.706667pt;}
.y6_c01100{bottom:943.317333pt;}
.y5_c01100{bottom:957.929333pt;}
.y4_c01100{bottom:972.541333pt;}
.y3_c01100{bottom:1001.765333pt;}
.y2_c01100{bottom:1016.377333pt;}
.y1_c01100{bottom:1030.989333pt;}
.h3_c01100{height:31.280681pt;}
.h2_c01100{height:32.006363pt;}
.h4_c01100{height:46.518078pt;}
.h0_c01100{height:1122.520000pt;}
.h1_c01100{height:1122.666667pt;}
.w0_c01100{width:793.706667pt;}
.w1_c01100{width:794.000000pt;}
.x0_c01100{left:0.000000pt;}
.x2_c01100{left:121.886667pt;}
.x4_c01100{left:127.796000pt;}
.x3_c01100{left:151.430667pt;}
.x5_c01100{left:157.340000pt;}
.x7_c01100{left:175.065333pt;}
.x1_c01100{left:180.974667pt;}
.x6_c01100{left:186.882667pt;}
.x8_c01100{left:386.888000pt;}
}





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

.ir_c01101:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_11702ba4b11587626833fa71.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01101;src:url('chunks/assets/font_f60b4208b20d9787387fbce3.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01101;src:url('chunks/assets/font_c7257efebf3cc7b30ad2aee3.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01101;src:url('chunks/assets/font_4113dacab25441ab90c9aa2b.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01101{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01101{vertical-align:0.000000px;}
.ls3_c01101{letter-spacing:0.000000px;}
.ls0_c01101{letter-spacing:0.087998px;}
.ls1_c01101{letter-spacing:0.098482px;}
.ls2_c01101{letter-spacing:0.104482px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c01101{word-spacing:-33.713438px;}
.ws0_c01101{word-spacing:-26.575517px;}
.ws1_c01101{word-spacing:-26.487518px;}
.ws7_c01101{word-spacing:-18.769538px;}
.wsd_c01101{word-spacing:-16.378514px;}
.wsf_c01101{word-spacing:-15.960085px;}
.wse_c01101{word-spacing:-15.900310px;}
.ws10_c01101{word-spacing:-15.840534px;}
.ws6_c01101{word-spacing:-15.780758px;}
.ws12_c01101{word-spacing:-15.661207px;}
.wsb_c01101{word-spacing:-15.601432px;}
.ws8_c01101{word-spacing:-14.943900px;}
.wsc_c01101{word-spacing:-13.808164px;}
.wsa_c01101{word-spacing:-13.748388px;}
.ws5_c01101{word-spacing:-12.014896px;}
.ws3_c01101{word-spacing:-9.988424px;}
.ws4_c01101{word-spacing:-9.987499px;}
.ws13_c01101{word-spacing:0.000000px;}
.ws9_c01101{word-spacing:0.017856px;}
.ws2_c01101{word-spacing:43.038600px;}
._1_c01101{margin-left:-7.833025px;}
._3_c01101{margin-left:-4.727048px;}
._6_c01101{margin-left:-2.998955px;}
._0_c01101{margin-left:-1.549390px;}
._8_c01101{width:17.215373px;}
._4_c01101{width:19.930500px;}
._7_c01101{width:21.220338px;}
._2_c01101{width:25.928812px;}
._5_c01101{width:29.529146px;}
.fc5_c01101{color:rgb(0,0,207);}
.fc6_c01101{color:rgb(6,69,173);}
.fc4_c01101{color:rgb(207,92,0);}
.fc3_c01101{color:rgb(79,153,5);}
.fc2_c01101{color:rgb(33,74,135);}
.fc1_c01101{color:rgb(143,89,3);}
.fc0_c01101{color:rgb(0,0,0);}
.fs0_c01101{font-size:43.999200px;}
.fs2_c01101{font-size:59.775600px;}
.fs1_c01101{font-size:86.077200px;}
.y0_c01101{bottom:0.000000px;}
.y17_c01101{bottom:44.250000px;}
.y16_c01101{bottom:82.051500px;}
.y15_c01101{bottom:99.984000px;}
.y14_c01101{bottom:117.916500px;}
.y13_c01101{bottom:135.849000px;}
.y12_c01101{bottom:153.781500px;}
.y11_c01101{bottom:198.822000px;}
.y10_c01101{bottom:216.754500px;}
.yf_c01101{bottom:234.687000px;}
.ye_c01101{bottom:252.619500px;}
.yd_c01101{bottom:297.660000px;}
.yc_c01101{bottom:342.700500px;}
.yb_c01101{bottom:360.633000px;}
.ya_c01101{bottom:405.672000px;}
.y9_c01101{bottom:450.712500px;}
.y8_c01101{bottom:519.238500px;}
.y7_c01101{bottom:1061.232000px;}
.y6_c01101{bottom:1077.670500px;}
.y5_c01101{bottom:1094.109000px;}
.y4_c01101{bottom:1110.547500px;}
.y3_c01101{bottom:1126.986000px;}
.y2_c01101{bottom:1143.424500px;}
.y1_c01101{bottom:1159.863000px;}
.h2_c01101{height:36.007158px;}
.h4_c01101{height:40.511979px;}
.h5_c01101{height:52.332837px;}
.h3_c01101{height:58.337477px;}
.h0_c01101{height:1262.835000px;}
.h1_c01101{height:1263.000000px;}
.w0_c01101{width:892.920000px;}
.w1_c01101{width:893.250000px;}
.x0_c01101{left:0.000000px;}
.x3_c01101{left:127.558500px;}
.x1_c01101{left:137.122500px;}
.x2_c01101{left:177.007500px;}
.x4_c01101{left:435.249000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls3_c01101{letter-spacing:0.000000pt;}
.ls0_c01101{letter-spacing:0.078221pt;}
.ls1_c01101{letter-spacing:0.087539pt;}
.ls2_c01101{letter-spacing:0.092873pt;}
.ws11_c01101{word-spacing:-29.967501pt;}
.ws0_c01101{word-spacing:-23.622682pt;}
.ws1_c01101{word-spacing:-23.544461pt;}
.ws7_c01101{word-spacing:-16.684034pt;}
.wsd_c01101{word-spacing:-14.558679pt;}
.wsf_c01101{word-spacing:-14.186742pt;}
.wse_c01101{word-spacing:-14.133609pt;}
.ws10_c01101{word-spacing:-14.080475pt;}
.ws6_c01101{word-spacing:-14.027341pt;}
.ws12_c01101{word-spacing:-13.921073pt;}
.wsb_c01101{word-spacing:-13.867939pt;}
.ws8_c01101{word-spacing:-13.283467pt;}
.wsc_c01101{word-spacing:-12.273923pt;}
.wsa_c01101{word-spacing:-12.220789pt;}
.ws5_c01101{word-spacing:-10.679907pt;}
.ws3_c01101{word-spacing:-8.878599pt;}
.ws4_c01101{word-spacing:-8.877777pt;}
.ws13_c01101{word-spacing:0.000000pt;}
.ws9_c01101{word-spacing:0.015872pt;}
.ws2_c01101{word-spacing:38.256533pt;}
._1_c01101{margin-left:-6.962689pt;}
._3_c01101{margin-left:-4.201821pt;}
._6_c01101{margin-left:-2.665738pt;}
._0_c01101{margin-left:-1.377235pt;}
._8_c01101{width:15.302554pt;}
._4_c01101{width:17.716000pt;}
._7_c01101{width:18.862523pt;}
._2_c01101{width:23.047833pt;}
._5_c01101{width:26.248130pt;}
.fs0_c01101{font-size:39.110400pt;}
.fs2_c01101{font-size:53.133867pt;}
.fs1_c01101{font-size:76.513067pt;}
.y0_c01101{bottom:0.000000pt;}
.y17_c01101{bottom:39.333333pt;}
.y16_c01101{bottom:72.934667pt;}
.y15_c01101{bottom:88.874667pt;}
.y14_c01101{bottom:104.814667pt;}
.y13_c01101{bottom:120.754667pt;}
.y12_c01101{bottom:136.694667pt;}
.y11_c01101{bottom:176.730667pt;}
.y10_c01101{bottom:192.670667pt;}
.yf_c01101{bottom:208.610667pt;}
.ye_c01101{bottom:224.550667pt;}
.yd_c01101{bottom:264.586667pt;}
.yc_c01101{bottom:304.622667pt;}
.yb_c01101{bottom:320.562667pt;}
.ya_c01101{bottom:360.597333pt;}
.y9_c01101{bottom:400.633333pt;}
.y8_c01101{bottom:461.545333pt;}
.y7_c01101{bottom:943.317333pt;}
.y6_c01101{bottom:957.929333pt;}
.y5_c01101{bottom:972.541333pt;}
.y4_c01101{bottom:987.153333pt;}
.y3_c01101{bottom:1001.765333pt;}
.y2_c01101{bottom:1016.377333pt;}
.y1_c01101{bottom:1030.989333pt;}
.h2_c01101{height:32.006363pt;}
.h4_c01101{height:36.010648pt;}
.h5_c01101{height:46.518078pt;}
.h3_c01101{height:51.855535pt;}
.h0_c01101{height:1122.520000pt;}
.h1_c01101{height:1122.666667pt;}
.w0_c01101{width:793.706667pt;}
.w1_c01101{width:794.000000pt;}
.x0_c01101{left:0.000000pt;}
.x3_c01101{left:113.385333pt;}
.x1_c01101{left:121.886667pt;}
.x2_c01101{left:157.340000pt;}
.x4_c01101{left:386.888000pt;}
}





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

.ir_c01102:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_c0553623bd8340f2cf6efde8.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01102;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01102;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01102;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls3_c01102{letter-spacing:0.000000px;}
.ls0_c01102{letter-spacing:0.087998px;}
.ls2_c01102{letter-spacing:0.098482px;}
.ls1_c01102{letter-spacing:0.104482px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01102{word-spacing:-33.713438px;}
.ws1_c01102{word-spacing:-26.575517px;}
.wsa_c01102{word-spacing:-26.487518px;}
.ws7_c01102{word-spacing:-18.769538px;}
.ws4_c01102{word-spacing:-17.574026px;}
.ws3_c01102{word-spacing:-17.215373px;}
.ws6_c01102{word-spacing:-16.199188px;}
.ws0_c01102{word-spacing:-14.884124px;}
.ws2_c01102{word-spacing:-13.927715px;}
.ws5_c01102{word-spacing:-10.351366px;}
.wse_c01102{word-spacing:0.000000px;}
.ws10_c01102{word-spacing:0.036900px;}
.wsb_c01102{word-spacing:0.043999px;}
.wsf_c01102{word-spacing:0.053933px;}
.ws11_c01102{word-spacing:0.070416px;}
.ws9_c01102{word-spacing:0.175997px;}
.wsd_c01102{word-spacing:0.213446px;}
.wsc_c01102{word-spacing:0.219446px;}
._2_c01102{margin-left:-3.825638px;}
._3_c01102{width:1.005737px;}
._0_c01102{width:24.567772px;}
._1_c01102{width:27.676103px;}
.fc5_c01102{color:rgb(0,0,207);}
.fc4_c01102{color:rgb(79,153,5);}
.fc3_c01102{color:rgb(207,92,0);}
.fc2_c01102{color:rgb(33,74,135);}
.fc1_c01102{color:rgb(143,89,3);}
.fc0_c01102{color:rgb(0,0,0);}
.fs1_c01102{font-size:43.999200px;}
.fs0_c01102{font-size:59.775600px;}
.y0_c01102{bottom:0.000000px;}
.y27_c01102{bottom:44.250000px;}
.y26_c01102{bottom:82.051500px;}
.y25_c01102{bottom:114.927000px;}
.y24_c01102{bottom:131.365500px;}
.y23_c01102{bottom:147.804000px;}
.y22_c01102{bottom:164.242500px;}
.y21_c01102{bottom:197.119500px;}
.y20_c01102{bottom:213.558000px;}
.y1f_c01102{bottom:229.996500px;}
.y1e_c01102{bottom:246.435000px;}
.y1d_c01102{bottom:262.873500px;}
.y1c_c01102{bottom:279.310500px;}
.y1b_c01102{bottom:295.749000px;}
.y1a_c01102{bottom:328.626000px;}
.y19_c01102{bottom:345.064500px;}
.y18_c01102{bottom:361.503000px;}
.y17_c01102{bottom:394.380000px;}
.y16_c01102{bottom:410.818500px;}
.y15_c01102{bottom:460.132500px;}
.y14_c01102{bottom:476.571000px;}
.y13_c01102{bottom:509.448000px;}
.y12_c01102{bottom:525.886500px;}
.y11_c01102{bottom:542.325000px;}
.y10_c01102{bottom:558.763500px;}
.yf_c01102{bottom:591.640500px;}
.ye_c01102{bottom:608.079000px;}
.yd_c01102{bottom:624.516000px;}
.yc_c01102{bottom:640.954500px;}
.yb_c01102{bottom:657.393000px;}
.ya_c01102{bottom:673.831500px;}
.y9_c01102{bottom:690.270000px;}
.y8_c01102{bottom:706.708500px;}
.y7_c01102{bottom:722.773500px;}
.y6_c01102{bottom:766.867500px;}
.y5_c01102{bottom:784.800000px;}
.y4_c01102{bottom:802.732500px;}
.y3_c01102{bottom:820.665000px;}
.y2_c01102{bottom:838.597500px;}
.y1_c01102{bottom:856.530000px;}
.h3_c01102{height:35.190766px;}
.h4_c01102{height:36.007158px;}
.h2_c01102{height:52.332837px;}
.h0_c01102{height:1262.835000px;}
.h1_c01102{height:1263.000000px;}
.w0_c01102{width:892.920000px;}
.w1_c01102{width:893.250000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:127.558500px;}
.x2_c01102{left:137.122500px;}
.x3_c01102{left:143.770500px;}
.x4_c01102{left:435.249000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls3_c01102{letter-spacing:0.000000pt;}
.ls0_c01102{letter-spacing:0.078221pt;}
.ls2_c01102{letter-spacing:0.087539pt;}
.ls1_c01102{letter-spacing:0.092873pt;}
.ws8_c01102{word-spacing:-29.967501pt;}
.ws1_c01102{word-spacing:-23.622682pt;}
.wsa_c01102{word-spacing:-23.544461pt;}
.ws7_c01102{word-spacing:-16.684034pt;}
.ws4_c01102{word-spacing:-15.621357pt;}
.ws3_c01102{word-spacing:-15.302554pt;}
.ws6_c01102{word-spacing:-14.399278pt;}
.ws0_c01102{word-spacing:-13.230333pt;}
.ws2_c01102{word-spacing:-12.380191pt;}
.ws5_c01102{word-spacing:-9.201214pt;}
.wse_c01102{word-spacing:0.000000pt;}
.ws10_c01102{word-spacing:0.032800pt;}
.wsb_c01102{word-spacing:0.039110pt;}
.wsf_c01102{word-spacing:0.047940pt;}
.ws11_c01102{word-spacing:0.062592pt;}
.ws9_c01102{word-spacing:0.156442pt;}
.wsd_c01102{word-spacing:0.189730pt;}
.wsc_c01102{word-spacing:0.195063pt;}
._2_c01102{margin-left:-3.400567pt;}
._3_c01102{width:0.893988pt;}
._0_c01102{width:21.838019pt;}
._1_c01102{width:24.600980pt;}
.fs1_c01102{font-size:39.110400pt;}
.fs0_c01102{font-size:53.133867pt;}
.y0_c01102{bottom:0.000000pt;}
.y27_c01102{bottom:39.333333pt;}
.y26_c01102{bottom:72.934667pt;}
.y25_c01102{bottom:102.157333pt;}
.y24_c01102{bottom:116.769333pt;}
.y23_c01102{bottom:131.381333pt;}
.y22_c01102{bottom:145.993333pt;}
.y21_c01102{bottom:175.217333pt;}
.y20_c01102{bottom:189.829333pt;}
.y1f_c01102{bottom:204.441333pt;}
.y1e_c01102{bottom:219.053333pt;}
.y1d_c01102{bottom:233.665333pt;}
.y1c_c01102{bottom:248.276000pt;}
.y1b_c01102{bottom:262.888000pt;}
.y1a_c01102{bottom:292.112000pt;}
.y19_c01102{bottom:306.724000pt;}
.y18_c01102{bottom:321.336000pt;}
.y17_c01102{bottom:350.560000pt;}
.y16_c01102{bottom:365.172000pt;}
.y15_c01102{bottom:409.006667pt;}
.y14_c01102{bottom:423.618667pt;}
.y13_c01102{bottom:452.842667pt;}
.y12_c01102{bottom:467.454667pt;}
.y11_c01102{bottom:482.066667pt;}
.y10_c01102{bottom:496.678667pt;}
.yf_c01102{bottom:525.902667pt;}
.ye_c01102{bottom:540.514667pt;}
.yd_c01102{bottom:555.125333pt;}
.yc_c01102{bottom:569.737333pt;}
.yb_c01102{bottom:584.349333pt;}
.ya_c01102{bottom:598.961333pt;}
.y9_c01102{bottom:613.573333pt;}
.y8_c01102{bottom:628.185333pt;}
.y7_c01102{bottom:642.465333pt;}
.y6_c01102{bottom:681.660000pt;}
.y5_c01102{bottom:697.600000pt;}
.y4_c01102{bottom:713.540000pt;}
.y3_c01102{bottom:729.480000pt;}
.y2_c01102{bottom:745.420000pt;}
.y1_c01102{bottom:761.360000pt;}
.h3_c01102{height:31.280681pt;}
.h4_c01102{height:32.006363pt;}
.h2_c01102{height:46.518078pt;}
.h0_c01102{height:1122.520000pt;}
.h1_c01102{height:1122.666667pt;}
.w0_c01102{width:793.706667pt;}
.w1_c01102{width:794.000000pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:113.385333pt;}
.x2_c01102{left:121.886667pt;}
.x3_c01102{left:127.796000pt;}
.x4_c01102{left:386.888000pt;}
}





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

.ir_c01103:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_543266717e646a4b383bee6f.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01103;src:url('chunks/assets/font_e8897dfaa4df1774e777c6ad.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01103;src:url('chunks/assets/font_efcc1423fbe812ac03a881b7.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01103;src:url('chunks/assets/font_f67141a9ceee5ccb6790d202.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01103;src:url('chunks/assets/font_768e2ea01ac778d4791b7156.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c01103{vertical-align:-12.258000px;}
.v0_c01103{vertical-align:0.000000px;}
.ls4_c01103{letter-spacing:0.000000px;}
.ls0_c01103{letter-spacing:0.087998px;}
.ls1_c01103{letter-spacing:0.098482px;}
.ls2_c01103{letter-spacing:0.104482px;}
.ls3_c01103{letter-spacing:26.690482px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01103{word-spacing:-26.575517px;}
.ws1_c01103{word-spacing:-26.487518px;}
.wsa_c01103{word-spacing:-19.176617px;}
.ws2_c01103{word-spacing:0.000000px;}
.ws9_c01103{word-spacing:0.043999px;}
.ws3_c01103{word-spacing:0.053933px;}
.ws5_c01103{word-spacing:0.064416px;}
.ws4_c01103{word-spacing:0.070416px;}
.ws7_c01103{word-spacing:0.082634px;}
.ws6_c01103{word-spacing:0.213446px;}
.ws8_c01103{word-spacing:0.219446px;}
._5_c01103{margin-left:-2024.026728px;}
._1_c01103{margin-left:-615.551304px;}
._3_c01103{margin-left:-482.734752px;}
._4_c01103{margin-left:-376.388686px;}
._2_c01103{width:1.036637px;}
._0_c01103{width:53.811022px;}
.fc5_c01103{color:rgb(0,0,207);}
.fc4_c01103{color:rgb(207,92,0);}
.fc3_c01103{color:rgb(143,89,3);}
.fc2_c01103{color:rgb(0,0,0);}
.fc1_c01103{color:rgb(79,153,5);}
.fc0_c01103{color:rgb(33,74,135);}
.fs1_c01103{font-size:31.015800px;}
.fs2_c01103{font-size:37.218600px;}
.fs0_c01103{font-size:43.999200px;}
.fs3_c01103{font-size:59.775600px;}
.y0_c01103{bottom:0.000000px;}
.y3c_c01103{bottom:44.250000px;}
.y3b_c01103{bottom:107.349000px;}
.y3a_c01103{bottom:123.787500px;}
.y39_c01103{bottom:140.226000px;}
.y38_c01103{bottom:189.540000px;}
.y37_c01103{bottom:205.978500px;}
.y36_c01103{bottom:222.417000px;}
.y35_c01103{bottom:238.855500px;}
.y34_c01103{bottom:255.294000px;}
.y33_c01103{bottom:271.732500px;}
.y32_c01103{bottom:288.171000px;}
.y31_c01103{bottom:304.609500px;}
.y30_c01103{bottom:321.048000px;}
.y2f_c01103{bottom:337.486500px;}
.y2e_c01103{bottom:353.923500px;}
.y2d_c01103{bottom:370.362000px;}
.y2c_c01103{bottom:386.800500px;}
.y2b_c01103{bottom:403.239000px;}
.y2a_c01103{bottom:419.304000px;}
.y29_c01103{bottom:437.695500px;}
.y28_c01103{bottom:454.134000px;}
.y27_c01103{bottom:470.572500px;}
.y26_c01103{bottom:487.011000px;}
.y25_c01103{bottom:503.449500px;}
.y24_c01103{bottom:519.888000px;}
.y23_c01103{bottom:536.326500px;}
.y22_c01103{bottom:552.765000px;}
.y21_c01103{bottom:569.203500px;}
.y20_c01103{bottom:585.640500px;}
.y1f_c01103{bottom:602.079000px;}
.y1e_c01103{bottom:618.517500px;}
.y1d_c01103{bottom:634.956000px;}
.y1c_c01103{bottom:667.833000px;}
.y1b_c01103{bottom:684.271500px;}
.y1a_c01103{bottom:700.336500px;}
.y19_c01103{bottom:716.775000px;}
.y18_c01103{bottom:732.838500px;}
.y17_c01103{bottom:749.277000px;}
.y16_c01103{bottom:765.715500px;}
.y15_c01103{bottom:782.154000px;}
.y14_c01103{bottom:815.031000px;}
.y13_c01103{bottom:831.469500px;}
.y12_c01103{bottom:847.908000px;}
.y11_c01103{bottom:864.346500px;}
.y10_c01103{bottom:880.785000px;}
.yf_c01103{bottom:896.848500px;}
.ye_c01103{bottom:913.287000px;}
.yd_c01103{bottom:929.725500px;}
.yc_c01103{bottom:946.164000px;}
.yb_c01103{bottom:962.602500px;}
.ya_c01103{bottom:979.041000px;}
.y9_c01103{bottom:1011.918000px;}
.y8_c01103{bottom:1028.356500px;}
.y7_c01103{bottom:1044.795000px;}
.y6_c01103{bottom:1061.232000px;}
.y5_c01103{bottom:1077.670500px;}
.y4_c01103{bottom:1094.109000px;}
.y3_c01103{bottom:1126.986000px;}
.y2_c01103{bottom:1143.424500px;}
.y1_c01103{bottom:1159.863000px;}
.h3_c01103{height:35.190766px;}
.h2_c01103{height:36.007158px;}
.h4_c01103{height:52.332837px;}
.h0_c01103{height:1262.835000px;}
.h1_c01103{height:1263.000000px;}
.w0_c01103{width:892.920000px;}
.w1_c01103{width:893.250000px;}
.x0_c01103{left:0.000000px;}
.x2_c01103{left:137.122500px;}
.x4_c01103{left:143.770500px;}
.x7_c01103{left:163.713000px;}
.x5_c01103{left:170.359500px;}
.x6_c01103{left:177.007500px;}
.x3_c01103{left:190.302000px;}
.x9_c01103{left:196.948500px;}
.x1_c01103{left:203.596500px;}
.x8_c01103{left:210.243000px;}
.xa_c01103{left:435.249000px;}
@media print{
.v1_c01103{vertical-align:-10.896000pt;}
.v0_c01103{vertical-align:0.000000pt;}
.ls4_c01103{letter-spacing:0.000000pt;}
.ls0_c01103{letter-spacing:0.078221pt;}
.ls1_c01103{letter-spacing:0.087539pt;}
.ls2_c01103{letter-spacing:0.092873pt;}
.ls3_c01103{letter-spacing:23.724873pt;}
.ws0_c01103{word-spacing:-23.622682pt;}
.ws1_c01103{word-spacing:-23.544461pt;}
.wsa_c01103{word-spacing:-17.045882pt;}
.ws2_c01103{word-spacing:0.000000pt;}
.ws9_c01103{word-spacing:0.039110pt;}
.ws3_c01103{word-spacing:0.047940pt;}
.ws5_c01103{word-spacing:0.057259pt;}
.ws4_c01103{word-spacing:0.062592pt;}
.ws7_c01103{word-spacing:0.073453pt;}
.ws6_c01103{word-spacing:0.189730pt;}
.ws8_c01103{word-spacing:0.195063pt;}
._5_c01103{margin-left:-1799.134869pt;}
._1_c01103{margin-left:-547.156715pt;}
._3_c01103{margin-left:-429.097557pt;}
._4_c01103{margin-left:-334.567721pt;}
._2_c01103{width:0.921455pt;}
._0_c01103{width:47.832019pt;}
.fs1_c01103{font-size:27.569600pt;}
.fs2_c01103{font-size:33.083200pt;}
.fs0_c01103{font-size:39.110400pt;}
.fs3_c01103{font-size:53.133867pt;}
.y0_c01103{bottom:0.000000pt;}
.y3c_c01103{bottom:39.333333pt;}
.y3b_c01103{bottom:95.421333pt;}
.y3a_c01103{bottom:110.033333pt;}
.y39_c01103{bottom:124.645333pt;}
.y38_c01103{bottom:168.480000pt;}
.y37_c01103{bottom:183.092000pt;}
.y36_c01103{bottom:197.704000pt;}
.y35_c01103{bottom:212.316000pt;}
.y34_c01103{bottom:226.928000pt;}
.y33_c01103{bottom:241.540000pt;}
.y32_c01103{bottom:256.152000pt;}
.y31_c01103{bottom:270.764000pt;}
.y30_c01103{bottom:285.376000pt;}
.y2f_c01103{bottom:299.988000pt;}
.y2e_c01103{bottom:314.598667pt;}
.y2d_c01103{bottom:329.210667pt;}
.y2c_c01103{bottom:343.822667pt;}
.y2b_c01103{bottom:358.434667pt;}
.y2a_c01103{bottom:372.714667pt;}
.y29_c01103{bottom:389.062667pt;}
.y28_c01103{bottom:403.674667pt;}
.y27_c01103{bottom:418.286667pt;}
.y26_c01103{bottom:432.898667pt;}
.y25_c01103{bottom:447.510667pt;}
.y24_c01103{bottom:462.122667pt;}
.y23_c01103{bottom:476.734667pt;}
.y22_c01103{bottom:491.346667pt;}
.y21_c01103{bottom:505.958667pt;}
.y20_c01103{bottom:520.569333pt;}
.y1f_c01103{bottom:535.181333pt;}
.y1e_c01103{bottom:549.793333pt;}
.y1d_c01103{bottom:564.405333pt;}
.y1c_c01103{bottom:593.629333pt;}
.y1b_c01103{bottom:608.241333pt;}
.y1a_c01103{bottom:622.521333pt;}
.y19_c01103{bottom:637.133333pt;}
.y18_c01103{bottom:651.412000pt;}
.y17_c01103{bottom:666.024000pt;}
.y16_c01103{bottom:680.636000pt;}
.y15_c01103{bottom:695.248000pt;}
.y14_c01103{bottom:724.472000pt;}
.y13_c01103{bottom:739.084000pt;}
.y12_c01103{bottom:753.696000pt;}
.y11_c01103{bottom:768.308000pt;}
.y10_c01103{bottom:782.920000pt;}
.yf_c01103{bottom:797.198667pt;}
.ye_c01103{bottom:811.810667pt;}
.yd_c01103{bottom:826.422667pt;}
.yc_c01103{bottom:841.034667pt;}
.yb_c01103{bottom:855.646667pt;}
.ya_c01103{bottom:870.258667pt;}
.y9_c01103{bottom:899.482667pt;}
.y8_c01103{bottom:914.094667pt;}
.y7_c01103{bottom:928.706667pt;}
.y6_c01103{bottom:943.317333pt;}
.y5_c01103{bottom:957.929333pt;}
.y4_c01103{bottom:972.541333pt;}
.y3_c01103{bottom:1001.765333pt;}
.y2_c01103{bottom:1016.377333pt;}
.y1_c01103{bottom:1030.989333pt;}
.h3_c01103{height:31.280681pt;}
.h2_c01103{height:32.006363pt;}
.h4_c01103{height:46.518078pt;}
.h0_c01103{height:1122.520000pt;}
.h1_c01103{height:1122.666667pt;}
.w0_c01103{width:793.706667pt;}
.w1_c01103{width:794.000000pt;}
.x0_c01103{left:0.000000pt;}
.x2_c01103{left:121.886667pt;}
.x4_c01103{left:127.796000pt;}
.x7_c01103{left:145.522667pt;}
.x5_c01103{left:151.430667pt;}
.x6_c01103{left:157.340000pt;}
.x3_c01103{left:169.157333pt;}
.x9_c01103{left:175.065333pt;}
.x1_c01103{left:180.974667pt;}
.x8_c01103{left:186.882667pt;}
.xa_c01103{left:386.888000pt;}
}





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

.ir_c01104:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_e3a8617af83e60a53d935e3a.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01104;src:url('chunks/assets/font_28972cab3f70ac0fbd18cabf.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01104;src:url('chunks/assets/font_369521014206809ba85fd7da.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01104;src:url('chunks/assets/font_ab85a299ca5098a15b12847b.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01104{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls3_c01104{letter-spacing:0.000000px;}
.ls0_c01104{letter-spacing:0.087998px;}
.ls2_c01104{letter-spacing:0.098482px;}
.ls1_c01104{letter-spacing:0.104482px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:-26.575517px;}
.ws1_c01104{word-spacing:-26.487518px;}
.ws6_c01104{word-spacing:-18.769538px;}
.wsc_c01104{word-spacing:-16.976270px;}
.ws9_c01104{word-spacing:-15.601432px;}
.ws5_c01104{word-spacing:-14.943900px;}
.wsb_c01104{word-spacing:-14.884124px;}
.wsa_c01104{word-spacing:-13.808164px;}
.ws8_c01104{word-spacing:-13.748388px;}
.ws3_c01104{word-spacing:-9.988424px;}
.ws4_c01104{word-spacing:-9.987499px;}
.wsd_c01104{word-spacing:0.000000px;}
.ws7_c01104{word-spacing:0.017856px;}
.ws2_c01104{word-spacing:43.038600px;}
._1_c01104{margin-left:-7.833025px;}
._6_c01104{margin-left:-4.656358px;}
._4_c01104{margin-left:-2.998955px;}
._0_c01104{margin-left:-1.549390px;}
._2_c01104{width:19.935816px;}
._5_c01104{width:21.220338px;}
._7_c01104{width:24.939646px;}
._3_c01104{width:29.529146px;}
.fc5_c01104{color:rgb(0,0,207);}
.fc6_c01104{color:rgb(6,69,173);}
.fc4_c01104{color:rgb(207,92,0);}
.fc3_c01104{color:rgb(33,74,135);}
.fc2_c01104{color:rgb(79,153,5);}
.fc1_c01104{color:rgb(143,89,3);}
.fc0_c01104{color:rgb(0,0,0);}
.fs0_c01104{font-size:43.999200px;}
.fs2_c01104{font-size:59.775600px;}
.fs1_c01104{font-size:86.077200px;}
.y0_c01104{bottom:0.000000px;}
.y18_c01104{bottom:44.250000px;}
.y17_c01104{bottom:82.051500px;}
.y16_c01104{bottom:99.984000px;}
.y15_c01104{bottom:117.916500px;}
.y14_c01104{bottom:161.838000px;}
.y13_c01104{bottom:179.770500px;}
.y12_c01104{bottom:197.703000px;}
.y11_c01104{bottom:215.635500px;}
.y10_c01104{bottom:259.557000px;}
.yf_c01104{bottom:303.477000px;}
.ye_c01104{bottom:347.398500px;}
.yd_c01104{bottom:391.318500px;}
.yc_c01104{bottom:458.226000px;}
.yb_c01104{bottom:995.479500px;}
.ya_c01104{bottom:1011.918000px;}
.y9_c01104{bottom:1028.356500px;}
.y8_c01104{bottom:1044.795000px;}
.y7_c01104{bottom:1061.232000px;}
.y6_c01104{bottom:1077.670500px;}
.y5_c01104{bottom:1094.109000px;}
.y4_c01104{bottom:1110.547500px;}
.y3_c01104{bottom:1126.986000px;}
.y2_c01104{bottom:1143.424500px;}
.y1_c01104{bottom:1159.863000px;}
.h2_c01104{height:36.007158px;}
.h4_c01104{height:40.511979px;}
.h5_c01104{height:52.332837px;}
.h3_c01104{height:58.337477px;}
.h0_c01104{height:1262.835000px;}
.h1_c01104{height:1263.000000px;}
.w0_c01104{width:892.920000px;}
.w1_c01104{width:893.250000px;}
.x0_c01104{left:0.000000px;}
.x3_c01104{left:127.558500px;}
.x1_c01104{left:137.122500px;}
.x2_c01104{left:177.007500px;}
.x4_c01104{left:435.249000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls3_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:0.078221pt;}
.ls2_c01104{letter-spacing:0.087539pt;}
.ls1_c01104{letter-spacing:0.092873pt;}
.ws0_c01104{word-spacing:-23.622682pt;}
.ws1_c01104{word-spacing:-23.544461pt;}
.ws6_c01104{word-spacing:-16.684034pt;}
.wsc_c01104{word-spacing:-15.090018pt;}
.ws9_c01104{word-spacing:-13.867939pt;}
.ws5_c01104{word-spacing:-13.283467pt;}
.wsb_c01104{word-spacing:-13.230333pt;}
.wsa_c01104{word-spacing:-12.273923pt;}
.ws8_c01104{word-spacing:-12.220789pt;}
.ws3_c01104{word-spacing:-8.878599pt;}
.ws4_c01104{word-spacing:-8.877777pt;}
.wsd_c01104{word-spacing:0.000000pt;}
.ws7_c01104{word-spacing:0.015872pt;}
.ws2_c01104{word-spacing:38.256533pt;}
._1_c01104{margin-left:-6.962689pt;}
._6_c01104{margin-left:-4.138985pt;}
._4_c01104{margin-left:-2.665738pt;}
._0_c01104{margin-left:-1.377235pt;}
._2_c01104{width:17.720725pt;}
._5_c01104{width:18.862523pt;}
._7_c01104{width:22.168574pt;}
._3_c01104{width:26.248130pt;}
.fs0_c01104{font-size:39.110400pt;}
.fs2_c01104{font-size:53.133867pt;}
.fs1_c01104{font-size:76.513067pt;}
.y0_c01104{bottom:0.000000pt;}
.y18_c01104{bottom:39.333333pt;}
.y17_c01104{bottom:72.934667pt;}
.y16_c01104{bottom:88.874667pt;}
.y15_c01104{bottom:104.814667pt;}
.y14_c01104{bottom:143.856000pt;}
.y13_c01104{bottom:159.796000pt;}
.y12_c01104{bottom:175.736000pt;}
.y11_c01104{bottom:191.676000pt;}
.y10_c01104{bottom:230.717333pt;}
.yf_c01104{bottom:269.757333pt;}
.ye_c01104{bottom:308.798667pt;}
.yd_c01104{bottom:347.838667pt;}
.yc_c01104{bottom:407.312000pt;}
.yb_c01104{bottom:884.870667pt;}
.ya_c01104{bottom:899.482667pt;}
.y9_c01104{bottom:914.094667pt;}
.y8_c01104{bottom:928.706667pt;}
.y7_c01104{bottom:943.317333pt;}
.y6_c01104{bottom:957.929333pt;}
.y5_c01104{bottom:972.541333pt;}
.y4_c01104{bottom:987.153333pt;}
.y3_c01104{bottom:1001.765333pt;}
.y2_c01104{bottom:1016.377333pt;}
.y1_c01104{bottom:1030.989333pt;}
.h2_c01104{height:32.006363pt;}
.h4_c01104{height:36.010648pt;}
.h5_c01104{height:46.518078pt;}
.h3_c01104{height:51.855535pt;}
.h0_c01104{height:1122.520000pt;}
.h1_c01104{height:1122.666667pt;}
.w0_c01104{width:793.706667pt;}
.w1_c01104{width:794.000000pt;}
.x0_c01104{left:0.000000pt;}
.x3_c01104{left:113.385333pt;}
.x1_c01104{left:121.886667pt;}
.x2_c01104{left:157.340000pt;}
.x4_c01104{left:386.888000pt;}
}





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

.ir_c01105:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_9e21e5e42f3f70d27b853f09.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01105;src:url('chunks/assets/font_90ccce0f5ae411875d3eeb2f.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01105;src:url('chunks/assets/font_8d6695cc33493bc18f8132b6.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01105;src:url('chunks/assets/font_dc65e5e7807c1ee80fdac416.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls3_c01105{letter-spacing:0.000000px;}
.ls0_c01105{letter-spacing:0.087998px;}
.ls2_c01105{letter-spacing:0.098482px;}
.ls1_c01105{letter-spacing:0.104482px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01105{word-spacing:-33.713438px;}
.ws1_c01105{word-spacing:-26.575517px;}
.wsa_c01105{word-spacing:-26.487518px;}
.ws7_c01105{word-spacing:-18.769538px;}
.ws4_c01105{word-spacing:-17.574026px;}
.ws3_c01105{word-spacing:-17.215373px;}
.ws6_c01105{word-spacing:-16.199188px;}
.ws0_c01105{word-spacing:-14.884124px;}
.ws2_c01105{word-spacing:-13.927715px;}
.ws5_c01105{word-spacing:-10.351366px;}
.wse_c01105{word-spacing:0.000000px;}
.ws10_c01105{word-spacing:0.036900px;}
.wsb_c01105{word-spacing:0.043999px;}
.wsf_c01105{word-spacing:0.053933px;}
.ws11_c01105{word-spacing:0.070416px;}
.ws9_c01105{word-spacing:0.175997px;}
.wsd_c01105{word-spacing:0.213446px;}
.wsc_c01105{word-spacing:0.219446px;}
._2_c01105{margin-left:-3.825638px;}
._3_c01105{width:1.005737px;}
._0_c01105{width:24.567772px;}
._1_c01105{width:27.676103px;}
.fc5_c01105{color:rgb(0,0,207);}
.fc4_c01105{color:rgb(79,153,5);}
.fc3_c01105{color:rgb(207,92,0);}
.fc2_c01105{color:rgb(33,74,135);}
.fc1_c01105{color:rgb(143,89,3);}
.fc0_c01105{color:rgb(0,0,0);}
.fs1_c01105{font-size:43.999200px;}
.fs0_c01105{font-size:59.775600px;}
.y0_c01105{bottom:0.000000px;}
.y27_c01105{bottom:44.250000px;}
.y26_c01105{bottom:82.051500px;}
.y25_c01105{bottom:114.927000px;}
.y24_c01105{bottom:131.365500px;}
.y23_c01105{bottom:147.804000px;}
.y22_c01105{bottom:164.242500px;}
.y21_c01105{bottom:197.119500px;}
.y20_c01105{bottom:213.558000px;}
.y1f_c01105{bottom:229.996500px;}
.y1e_c01105{bottom:246.435000px;}
.y1d_c01105{bottom:262.873500px;}
.y1c_c01105{bottom:279.310500px;}
.y1b_c01105{bottom:295.749000px;}
.y1a_c01105{bottom:328.626000px;}
.y19_c01105{bottom:345.064500px;}
.y18_c01105{bottom:361.503000px;}
.y17_c01105{bottom:394.380000px;}
.y16_c01105{bottom:410.818500px;}
.y15_c01105{bottom:460.132500px;}
.y14_c01105{bottom:476.571000px;}
.y13_c01105{bottom:509.448000px;}
.y12_c01105{bottom:525.886500px;}
.y11_c01105{bottom:542.325000px;}
.y10_c01105{bottom:558.763500px;}
.yf_c01105{bottom:591.640500px;}
.ye_c01105{bottom:608.079000px;}
.yd_c01105{bottom:624.516000px;}
.yc_c01105{bottom:640.954500px;}
.yb_c01105{bottom:657.393000px;}
.ya_c01105{bottom:673.831500px;}
.y9_c01105{bottom:690.270000px;}
.y8_c01105{bottom:706.708500px;}
.y7_c01105{bottom:722.773500px;}
.y6_c01105{bottom:766.867500px;}
.y5_c01105{bottom:784.800000px;}
.y4_c01105{bottom:802.732500px;}
.y3_c01105{bottom:820.665000px;}
.y2_c01105{bottom:838.597500px;}
.y1_c01105{bottom:856.530000px;}
.h3_c01105{height:35.190766px;}
.h4_c01105{height:36.007158px;}
.h2_c01105{height:52.332837px;}
.h0_c01105{height:1262.835000px;}
.h1_c01105{height:1263.000000px;}
.w0_c01105{width:892.920000px;}
.w1_c01105{width:893.250000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:127.558500px;}
.x2_c01105{left:137.122500px;}
.x3_c01105{left:143.770500px;}
.x4_c01105{left:435.249000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls3_c01105{letter-spacing:0.000000pt;}
.ls0_c01105{letter-spacing:0.078221pt;}
.ls2_c01105{letter-spacing:0.087539pt;}
.ls1_c01105{letter-spacing:0.092873pt;}
.ws8_c01105{word-spacing:-29.967501pt;}
.ws1_c01105{word-spacing:-23.622682pt;}
.wsa_c01105{word-spacing:-23.544461pt;}
.ws7_c01105{word-spacing:-16.684034pt;}
.ws4_c01105{word-spacing:-15.621357pt;}
.ws3_c01105{word-spacing:-15.302554pt;}
.ws6_c01105{word-spacing:-14.399278pt;}
.ws0_c01105{word-spacing:-13.230333pt;}
.ws2_c01105{word-spacing:-12.380191pt;}
.ws5_c01105{word-spacing:-9.201214pt;}
.wse_c01105{word-spacing:0.000000pt;}
.ws10_c01105{word-spacing:0.032800pt;}
.wsb_c01105{word-spacing:0.039110pt;}
.wsf_c01105{word-spacing:0.047940pt;}
.ws11_c01105{word-spacing:0.062592pt;}
.ws9_c01105{word-spacing:0.156442pt;}
.wsd_c01105{word-spacing:0.189730pt;}
.wsc_c01105{word-spacing:0.195063pt;}
._2_c01105{margin-left:-3.400567pt;}
._3_c01105{width:0.893988pt;}
._0_c01105{width:21.838019pt;}
._1_c01105{width:24.600980pt;}
.fs1_c01105{font-size:39.110400pt;}
.fs0_c01105{font-size:53.133867pt;}
.y0_c01105{bottom:0.000000pt;}
.y27_c01105{bottom:39.333333pt;}
.y26_c01105{bottom:72.934667pt;}
.y25_c01105{bottom:102.157333pt;}
.y24_c01105{bottom:116.769333pt;}
.y23_c01105{bottom:131.381333pt;}
.y22_c01105{bottom:145.993333pt;}
.y21_c01105{bottom:175.217333pt;}
.y20_c01105{bottom:189.829333pt;}
.y1f_c01105{bottom:204.441333pt;}
.y1e_c01105{bottom:219.053333pt;}
.y1d_c01105{bottom:233.665333pt;}
.y1c_c01105{bottom:248.276000pt;}
.y1b_c01105{bottom:262.888000pt;}
.y1a_c01105{bottom:292.112000pt;}
.y19_c01105{bottom:306.724000pt;}
.y18_c01105{bottom:321.336000pt;}
.y17_c01105{bottom:350.560000pt;}
.y16_c01105{bottom:365.172000pt;}
.y15_c01105{bottom:409.006667pt;}
.y14_c01105{bottom:423.618667pt;}
.y13_c01105{bottom:452.842667pt;}
.y12_c01105{bottom:467.454667pt;}
.y11_c01105{bottom:482.066667pt;}
.y10_c01105{bottom:496.678667pt;}
.yf_c01105{bottom:525.902667pt;}
.ye_c01105{bottom:540.514667pt;}
.yd_c01105{bottom:555.125333pt;}
.yc_c01105{bottom:569.737333pt;}
.yb_c01105{bottom:584.349333pt;}
.ya_c01105{bottom:598.961333pt;}
.y9_c01105{bottom:613.573333pt;}
.y8_c01105{bottom:628.185333pt;}
.y7_c01105{bottom:642.465333pt;}
.y6_c01105{bottom:681.660000pt;}
.y5_c01105{bottom:697.600000pt;}
.y4_c01105{bottom:713.540000pt;}
.y3_c01105{bottom:729.480000pt;}
.y2_c01105{bottom:745.420000pt;}
.y1_c01105{bottom:761.360000pt;}
.h3_c01105{height:31.280681pt;}
.h4_c01105{height:32.006363pt;}
.h2_c01105{height:46.518078pt;}
.h0_c01105{height:1122.520000pt;}
.h1_c01105{height:1122.666667pt;}
.w0_c01105{width:793.706667pt;}
.w1_c01105{width:794.000000pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:113.385333pt;}
.x2_c01105{left:121.886667pt;}
.x3_c01105{left:127.796000pt;}
.x4_c01105{left:386.888000pt;}
}





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

.ir_c01106:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_0c2f8fceee2a2898e96c9830.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01106;src:url('chunks/assets/font_80206c2b50941805c35aa864.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01106;src:url('chunks/assets/font_6348a0dc9614314d4c01244d.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01106;src:url('chunks/assets/font_506683a8e4f6d04183c22fd0.woff2')format("woff");}.ff4_c01106{font-family:ff4_c01106;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls4_c01106{letter-spacing:0.000000px;}
.ls0_c01106{letter-spacing:0.087998px;}
.ls1_c01106{letter-spacing:0.098482px;}
.ls2_c01106{letter-spacing:0.104482px;}
.ls3_c01106{letter-spacing:26.690482px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01106{word-spacing:-26.575517px;}
.ws1_c01106{word-spacing:-26.487518px;}
.ws2_c01106{word-spacing:0.000000px;}
.ws6_c01106{word-spacing:0.043999px;}
.ws3_c01106{word-spacing:0.053933px;}
.ws4_c01106{word-spacing:0.070416px;}
.ws5_c01106{word-spacing:0.083734px;}
.ws7_c01106{word-spacing:0.213446px;}
._0_c01106{width:1.014240px;}
.fc5_c01106{color:rgb(0,0,207);}
.fc4_c01106{color:rgb(207,92,0);}
.fc3_c01106{color:rgb(143,89,3);}
.fc2_c01106{color:rgb(0,0,0);}
.fc1_c01106{color:rgb(79,153,5);}
.fc0_c01106{color:rgb(33,74,135);}
.fs0_c01106{font-size:43.999200px;}
.fs1_c01106{font-size:59.775600px;}
.y0_c01106{bottom:0.000000px;}
.y3c_c01106{bottom:44.250000px;}
.y3b_c01106{bottom:91.369500px;}
.y3a_c01106{bottom:107.808000px;}
.y39_c01106{bottom:124.246500px;}
.y38_c01106{bottom:140.685000px;}
.y37_c01106{bottom:157.123500px;}
.y36_c01106{bottom:173.562000px;}
.y35_c01106{bottom:190.000500px;}
.y34_c01106{bottom:206.437500px;}
.y33_c01106{bottom:222.876000px;}
.y32_c01106{bottom:255.753000px;}
.y31_c01106{bottom:272.191500px;}
.y30_c01106{bottom:288.630000px;}
.y2f_c01106{bottom:321.507000px;}
.y2e_c01106{bottom:337.945500px;}
.y2d_c01106{bottom:354.384000px;}
.y2c_c01106{bottom:370.822500px;}
.y2b_c01106{bottom:387.259500px;}
.y2a_c01106{bottom:403.698000px;}
.y29_c01106{bottom:420.136500px;}
.y28_c01106{bottom:436.575000px;}
.y27_c01106{bottom:453.013500px;}
.y26_c01106{bottom:469.452000px;}
.y25_c01106{bottom:485.890500px;}
.y24_c01106{bottom:502.329000px;}
.y23_c01106{bottom:518.767500px;}
.y22_c01106{bottom:535.206000px;}
.y21_c01106{bottom:551.643000px;}
.y20_c01106{bottom:568.081500px;}
.y1f_c01106{bottom:584.520000px;}
.y1e_c01106{bottom:600.958500px;}
.y1d_c01106{bottom:617.397000px;}
.y1c_c01106{bottom:633.835500px;}
.y1b_c01106{bottom:650.274000px;}
.y1a_c01106{bottom:666.712500px;}
.y19_c01106{bottom:683.151000px;}
.y18_c01106{bottom:699.589500px;}
.y17_c01106{bottom:716.028000px;}
.y16_c01106{bottom:732.465000px;}
.y15_c01106{bottom:765.342000px;}
.y14_c01106{bottom:781.780500px;}
.y13_c01106{bottom:798.219000px;}
.y12_c01106{bottom:814.657500px;}
.y11_c01106{bottom:831.096000px;}
.y10_c01106{bottom:847.534500px;}
.yf_c01106{bottom:880.411500px;}
.ye_c01106{bottom:896.848500px;}
.yd_c01106{bottom:913.287000px;}
.yc_c01106{bottom:929.725500px;}
.yb_c01106{bottom:946.164000px;}
.ya_c01106{bottom:979.041000px;}
.y9_c01106{bottom:1011.918000px;}
.y8_c01106{bottom:1028.356500px;}
.y7_c01106{bottom:1044.795000px;}
.y6_c01106{bottom:1061.232000px;}
.y5_c01106{bottom:1077.670500px;}
.y4_c01106{bottom:1094.109000px;}
.y3_c01106{bottom:1126.986000px;}
.y2_c01106{bottom:1143.424500px;}
.y1_c01106{bottom:1159.863000px;}
.h3_c01106{height:35.190766px;}
.h2_c01106{height:36.007158px;}
.h4_c01106{height:52.332837px;}
.h0_c01106{height:1262.835000px;}
.h1_c01106{height:1263.000000px;}
.w0_c01106{width:892.920000px;}
.w1_c01106{width:893.250000px;}
.x0_c01106{left:0.000000px;}
.x2_c01106{left:137.122500px;}
.x3_c01106{left:143.770500px;}
.x5_c01106{left:196.948500px;}
.x1_c01106{left:203.596500px;}
.x4_c01106{left:210.243000px;}
.x6_c01106{left:435.249000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls4_c01106{letter-spacing:0.000000pt;}
.ls0_c01106{letter-spacing:0.078221pt;}
.ls1_c01106{letter-spacing:0.087539pt;}
.ls2_c01106{letter-spacing:0.092873pt;}
.ls3_c01106{letter-spacing:23.724873pt;}
.ws0_c01106{word-spacing:-23.622682pt;}
.ws1_c01106{word-spacing:-23.544461pt;}
.ws2_c01106{word-spacing:0.000000pt;}
.ws6_c01106{word-spacing:0.039110pt;}
.ws3_c01106{word-spacing:0.047940pt;}
.ws4_c01106{word-spacing:0.062592pt;}
.ws5_c01106{word-spacing:0.074430pt;}
.ws7_c01106{word-spacing:0.189730pt;}
._0_c01106{width:0.901547pt;}
.fs0_c01106{font-size:39.110400pt;}
.fs1_c01106{font-size:53.133867pt;}
.y0_c01106{bottom:0.000000pt;}
.y3c_c01106{bottom:39.333333pt;}
.y3b_c01106{bottom:81.217333pt;}
.y3a_c01106{bottom:95.829333pt;}
.y39_c01106{bottom:110.441333pt;}
.y38_c01106{bottom:125.053333pt;}
.y37_c01106{bottom:139.665333pt;}
.y36_c01106{bottom:154.277333pt;}
.y35_c01106{bottom:168.889333pt;}
.y34_c01106{bottom:183.500000pt;}
.y33_c01106{bottom:198.112000pt;}
.y32_c01106{bottom:227.336000pt;}
.y31_c01106{bottom:241.948000pt;}
.y30_c01106{bottom:256.560000pt;}
.y2f_c01106{bottom:285.784000pt;}
.y2e_c01106{bottom:300.396000pt;}
.y2d_c01106{bottom:315.008000pt;}
.y2c_c01106{bottom:329.620000pt;}
.y2b_c01106{bottom:344.230667pt;}
.y2a_c01106{bottom:358.842667pt;}
.y29_c01106{bottom:373.454667pt;}
.y28_c01106{bottom:388.066667pt;}
.y27_c01106{bottom:402.678667pt;}
.y26_c01106{bottom:417.290667pt;}
.y25_c01106{bottom:431.902667pt;}
.y24_c01106{bottom:446.514667pt;}
.y23_c01106{bottom:461.126667pt;}
.y22_c01106{bottom:475.738667pt;}
.y21_c01106{bottom:490.349333pt;}
.y20_c01106{bottom:504.961333pt;}
.y1f_c01106{bottom:519.573333pt;}
.y1e_c01106{bottom:534.185333pt;}
.y1d_c01106{bottom:548.797333pt;}
.y1c_c01106{bottom:563.409333pt;}
.y1b_c01106{bottom:578.021333pt;}
.y1a_c01106{bottom:592.633333pt;}
.y19_c01106{bottom:607.245333pt;}
.y18_c01106{bottom:621.857333pt;}
.y17_c01106{bottom:636.469333pt;}
.y16_c01106{bottom:651.080000pt;}
.y15_c01106{bottom:680.304000pt;}
.y14_c01106{bottom:694.916000pt;}
.y13_c01106{bottom:709.528000pt;}
.y12_c01106{bottom:724.140000pt;}
.y11_c01106{bottom:738.752000pt;}
.y10_c01106{bottom:753.364000pt;}
.yf_c01106{bottom:782.588000pt;}
.ye_c01106{bottom:797.198667pt;}
.yd_c01106{bottom:811.810667pt;}
.yc_c01106{bottom:826.422667pt;}
.yb_c01106{bottom:841.034667pt;}
.ya_c01106{bottom:870.258667pt;}
.y9_c01106{bottom:899.482667pt;}
.y8_c01106{bottom:914.094667pt;}
.y7_c01106{bottom:928.706667pt;}
.y6_c01106{bottom:943.317333pt;}
.y5_c01106{bottom:957.929333pt;}
.y4_c01106{bottom:972.541333pt;}
.y3_c01106{bottom:1001.765333pt;}
.y2_c01106{bottom:1016.377333pt;}
.y1_c01106{bottom:1030.989333pt;}
.h3_c01106{height:31.280681pt;}
.h2_c01106{height:32.006363pt;}
.h4_c01106{height:46.518078pt;}
.h0_c01106{height:1122.520000pt;}
.h1_c01106{height:1122.666667pt;}
.w0_c01106{width:793.706667pt;}
.w1_c01106{width:794.000000pt;}
.x0_c01106{left:0.000000pt;}
.x2_c01106{left:121.886667pt;}
.x3_c01106{left:127.796000pt;}
.x5_c01106{left:175.065333pt;}
.x1_c01106{left:180.974667pt;}
.x4_c01106{left:186.882667pt;}
.x6_c01106{left:386.888000pt;}
}





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

.ir_c01107:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_91cfd0a10515cd4aa7e0600b.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01107;src:url('chunks/assets/font_b41055e6a18a206607400079.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01107;src:url('chunks/assets/font_f3001250f339f95ec0787d09.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01107;src:url('chunks/assets/font_01a278029ab4d5444f6f045d.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01107;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01107{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.ls3_c01107{letter-spacing:0.000000px;}
.ls0_c01107{letter-spacing:0.087998px;}
.ls2_c01107{letter-spacing:0.098482px;}
.ls1_c01107{letter-spacing:0.104482px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01107{word-spacing:-26.575517px;}
.ws10_c01107{word-spacing:-26.487518px;}
.ws8_c01107{word-spacing:-19.965050px;}
.ws9_c01107{word-spacing:-19.905275px;}
.ws5_c01107{word-spacing:-18.769538px;}
.wsc_c01107{word-spacing:-17.813129px;}
.wsd_c01107{word-spacing:-17.753353px;}
.wsa_c01107{word-spacing:-17.334924px;}
.wse_c01107{word-spacing:-16.677392px;}
.ws7_c01107{word-spacing:-15.900310px;}
.ws4_c01107{word-spacing:-14.943900px;}
.wsb_c01107{word-spacing:-10.077432px;}
.ws2_c01107{word-spacing:-9.988424px;}
.ws3_c01107{word-spacing:-9.987499px;}
.ws6_c01107{word-spacing:-4.302144px;}
.ws14_c01107{word-spacing:0.000000px;}
.ws11_c01107{word-spacing:0.043999px;}
.wsf_c01107{word-spacing:0.175997px;}
.ws13_c01107{word-spacing:0.213446px;}
.ws12_c01107{word-spacing:0.219446px;}
.ws1_c01107{word-spacing:43.038600px;}
._3_c01107{margin-left:-7.770828px;}
._2_c01107{margin-left:-4.727048px;}
._5_c01107{margin-left:-3.206504px;}
._0_c01107{margin-left:-1.549390px;}
._a_c01107{width:1.005737px;}
._4_c01107{width:16.766402px;}
._9_c01107{width:18.415661px;}
._1_c01107{width:19.935816px;}
._7_c01107{width:23.073382px;}
._6_c01107{width:24.847646px;}
._8_c01107{width:26.540366px;}
.fc5_c01107{color:rgb(79,153,5);}
.fc4_c01107{color:rgb(207,92,0);}
.fc3_c01107{color:rgb(6,69,173);}
.fc2_c01107{color:rgb(143,89,3);}
.fc1_c01107{color:rgb(0,0,0);}
.fc0_c01107{color:rgb(33,74,135);}
.fs0_c01107{font-size:43.999200px;}
.fs2_c01107{font-size:59.775600px;}
.fs1_c01107{font-size:86.077200px;}
.y0_c01107{bottom:0.000000px;}
.y1e_c01107{bottom:44.250000px;}
.y1d_c01107{bottom:114.927000px;}
.y1c_c01107{bottom:131.365500px;}
.y1b_c01107{bottom:164.242500px;}
.y1a_c01107{bottom:180.681000px;}
.y19_c01107{bottom:197.119500px;}
.y18_c01107{bottom:213.558000px;}
.y17_c01107{bottom:246.435000px;}
.y16_c01107{bottom:262.873500px;}
.y15_c01107{bottom:279.310500px;}
.y14_c01107{bottom:295.749000px;}
.y13_c01107{bottom:312.187500px;}
.y12_c01107{bottom:328.626000px;}
.y11_c01107{bottom:345.064500px;}
.y10_c01107{bottom:361.503000px;}
.yf_c01107{bottom:377.568000px;}
.ye_c01107{bottom:423.633000px;}
.yd_c01107{bottom:441.565500px;}
.yc_c01107{bottom:459.498000px;}
.yb_c01107{bottom:477.430500px;}
.ya_c01107{bottom:495.364500px;}
.y9_c01107{bottom:513.297000px;}
.y8_c01107{bottom:531.229500px;}
.y7_c01107{bottom:557.772000px;}
.y6_c01107{bottom:584.314500px;}
.y5_c01107{bottom:610.855500px;}
.y4_c01107{bottom:637.398000px;}
.y3_c01107{bottom:679.314000px;}
.y2_c01107{bottom:1143.424500px;}
.y1_c01107{bottom:1159.863000px;}
.h6_c01107{height:35.190766px;}
.h2_c01107{height:36.007158px;}
.h4_c01107{height:40.511979px;}
.h5_c01107{height:52.332837px;}
.h3_c01107{height:58.337477px;}
.h0_c01107{height:1262.835000px;}
.h1_c01107{height:1263.000000px;}
.w0_c01107{width:892.920000px;}
.w1_c01107{width:893.250000px;}
.x0_c01107{left:0.000000px;}
.x2_c01107{left:127.558500px;}
.x3_c01107{left:137.122500px;}
.x1_c01107{left:177.007500px;}
.x4_c01107{left:435.249000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls3_c01107{letter-spacing:0.000000pt;}
.ls0_c01107{letter-spacing:0.078221pt;}
.ls2_c01107{letter-spacing:0.087539pt;}
.ls1_c01107{letter-spacing:0.092873pt;}
.ws0_c01107{word-spacing:-23.622682pt;}
.ws10_c01107{word-spacing:-23.544461pt;}
.ws8_c01107{word-spacing:-17.746711pt;}
.ws9_c01107{word-spacing:-17.693578pt;}
.ws5_c01107{word-spacing:-16.684034pt;}
.wsc_c01107{word-spacing:-15.833892pt;}
.wsd_c01107{word-spacing:-15.780758pt;}
.wsa_c01107{word-spacing:-15.408821pt;}
.wse_c01107{word-spacing:-14.824349pt;}
.ws7_c01107{word-spacing:-14.133609pt;}
.ws4_c01107{word-spacing:-13.283467pt;}
.wsb_c01107{word-spacing:-8.957717pt;}
.ws2_c01107{word-spacing:-8.878599pt;}
.ws3_c01107{word-spacing:-8.877777pt;}
.ws6_c01107{word-spacing:-3.824128pt;}
.ws14_c01107{word-spacing:0.000000pt;}
.ws11_c01107{word-spacing:0.039110pt;}
.wsf_c01107{word-spacing:0.156442pt;}
.ws13_c01107{word-spacing:0.189730pt;}
.ws12_c01107{word-spacing:0.195063pt;}
.ws1_c01107{word-spacing:38.256533pt;}
._3_c01107{margin-left:-6.907403pt;}
._2_c01107{margin-left:-4.201821pt;}
._5_c01107{margin-left:-2.850226pt;}
._0_c01107{margin-left:-1.377235pt;}
._a_c01107{width:0.893988pt;}
._4_c01107{width:14.903469pt;}
._9_c01107{width:16.369476pt;}
._1_c01107{width:17.720725pt;}
._7_c01107{width:20.509673pt;}
._6_c01107{width:22.086797pt;}
._8_c01107{width:23.591437pt;}
.fs0_c01107{font-size:39.110400pt;}
.fs2_c01107{font-size:53.133867pt;}
.fs1_c01107{font-size:76.513067pt;}
.y0_c01107{bottom:0.000000pt;}
.y1e_c01107{bottom:39.333333pt;}
.y1d_c01107{bottom:102.157333pt;}
.y1c_c01107{bottom:116.769333pt;}
.y1b_c01107{bottom:145.993333pt;}
.y1a_c01107{bottom:160.605333pt;}
.y19_c01107{bottom:175.217333pt;}
.y18_c01107{bottom:189.829333pt;}
.y17_c01107{bottom:219.053333pt;}
.y16_c01107{bottom:233.665333pt;}
.y15_c01107{bottom:248.276000pt;}
.y14_c01107{bottom:262.888000pt;}
.y13_c01107{bottom:277.500000pt;}
.y12_c01107{bottom:292.112000pt;}
.y11_c01107{bottom:306.724000pt;}
.y10_c01107{bottom:321.336000pt;}
.yf_c01107{bottom:335.616000pt;}
.ye_c01107{bottom:376.562667pt;}
.yd_c01107{bottom:392.502667pt;}
.yc_c01107{bottom:408.442667pt;}
.yb_c01107{bottom:424.382667pt;}
.ya_c01107{bottom:440.324000pt;}
.y9_c01107{bottom:456.264000pt;}
.y8_c01107{bottom:472.204000pt;}
.y7_c01107{bottom:495.797333pt;}
.y6_c01107{bottom:519.390667pt;}
.y5_c01107{bottom:542.982667pt;}
.y4_c01107{bottom:566.576000pt;}
.y3_c01107{bottom:603.834667pt;}
.y2_c01107{bottom:1016.377333pt;}
.y1_c01107{bottom:1030.989333pt;}
.h6_c01107{height:31.280681pt;}
.h2_c01107{height:32.006363pt;}
.h4_c01107{height:36.010648pt;}
.h5_c01107{height:46.518078pt;}
.h3_c01107{height:51.855535pt;}
.h0_c01107{height:1122.520000pt;}
.h1_c01107{height:1122.666667pt;}
.w0_c01107{width:793.706667pt;}
.w1_c01107{width:794.000000pt;}
.x0_c01107{left:0.000000pt;}
.x2_c01107{left:113.385333pt;}
.x3_c01107{left:121.886667pt;}
.x1_c01107{left:157.340000pt;}
.x4_c01107{left:386.888000pt;}
}





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

.ir_c01108:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_7ef33456f82164acd25d6fe9.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01108;src:url('chunks/assets/font_7a5ca41bc03df19dbef982bb.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01108;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01108;src:url('chunks/assets/font_b0c7611ad4c00bfdb65cf50b.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls3_c01108{letter-spacing:0.000000px;}
.ls0_c01108{letter-spacing:0.087998px;}
.ls1_c01108{letter-spacing:0.098482px;}
.ls2_c01108{letter-spacing:0.104482px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01108{word-spacing:-26.575517px;}
.ws6_c01108{word-spacing:-26.487518px;}
.ws3_c01108{word-spacing:0.000000px;}
.ws0_c01108{word-spacing:0.043999px;}
.ws4_c01108{word-spacing:0.053933px;}
.ws7_c01108{word-spacing:0.056767px;}
.ws5_c01108{word-spacing:0.070416px;}
.ws2_c01108{word-spacing:0.175997px;}
.ws8_c01108{word-spacing:0.213446px;}
._0_c01108{width:1.028438px;}
.fc5_c01108{color:rgb(0,0,207);}
.fc4_c01108{color:rgb(207,92,0);}
.fc3_c01108{color:rgb(79,153,5);}
.fc2_c01108{color:rgb(33,74,135);}
.fc1_c01108{color:rgb(0,0,0);}
.fc0_c01108{color:rgb(143,89,3);}
.fs0_c01108{font-size:43.999200px;}
.fs1_c01108{font-size:59.775600px;}
.y0_c01108{bottom:0.000000px;}
.y2f_c01108{bottom:44.250000px;}
.y2e_c01108{bottom:337.945500px;}
.y2d_c01108{bottom:354.384000px;}
.y2c_c01108{bottom:370.822500px;}
.y2b_c01108{bottom:387.259500px;}
.y2a_c01108{bottom:403.698000px;}
.y29_c01108{bottom:420.136500px;}
.y28_c01108{bottom:436.575000px;}
.y27_c01108{bottom:453.013500px;}
.y26_c01108{bottom:469.452000px;}
.y25_c01108{bottom:485.890500px;}
.y24_c01108{bottom:502.329000px;}
.y23_c01108{bottom:535.206000px;}
.y22_c01108{bottom:551.643000px;}
.y21_c01108{bottom:568.081500px;}
.y20_c01108{bottom:600.958500px;}
.y1f_c01108{bottom:617.397000px;}
.y1e_c01108{bottom:633.835500px;}
.y1d_c01108{bottom:650.274000px;}
.y1c_c01108{bottom:666.712500px;}
.y1b_c01108{bottom:683.151000px;}
.y1a_c01108{bottom:699.589500px;}
.y19_c01108{bottom:716.028000px;}
.y18_c01108{bottom:732.465000px;}
.y17_c01108{bottom:748.903500px;}
.y16_c01108{bottom:765.342000px;}
.y15_c01108{bottom:781.780500px;}
.y14_c01108{bottom:798.219000px;}
.y13_c01108{bottom:814.657500px;}
.y12_c01108{bottom:831.096000px;}
.y11_c01108{bottom:847.534500px;}
.y10_c01108{bottom:863.973000px;}
.yf_c01108{bottom:880.411500px;}
.ye_c01108{bottom:896.848500px;}
.yd_c01108{bottom:913.287000px;}
.yc_c01108{bottom:929.725500px;}
.yb_c01108{bottom:946.164000px;}
.ya_c01108{bottom:962.602500px;}
.y9_c01108{bottom:979.041000px;}
.y8_c01108{bottom:995.479500px;}
.y7_c01108{bottom:1011.918000px;}
.y6_c01108{bottom:1028.356500px;}
.y5_c01108{bottom:1077.670500px;}
.y4_c01108{bottom:1094.109000px;}
.y3_c01108{bottom:1110.547500px;}
.y2_c01108{bottom:1143.424500px;}
.y1_c01108{bottom:1159.863000px;}
.h2_c01108{height:35.190766px;}
.h3_c01108{height:36.007158px;}
.h4_c01108{height:52.332837px;}
.h0_c01108{height:1262.835000px;}
.h1_c01108{height:1263.000000px;}
.w0_c01108{width:892.920000px;}
.w1_c01108{width:893.250000px;}
.x0_c01108{left:0.000000px;}
.x1_c01108{left:137.122500px;}
.x2_c01108{left:143.770500px;}
.x6_c01108{left:177.007500px;}
.x5_c01108{left:230.185500px;}
.x3_c01108{left:243.480000px;}
.x4_c01108{left:276.715500px;}
.x7_c01108{left:435.249000px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls3_c01108{letter-spacing:0.000000pt;}
.ls0_c01108{letter-spacing:0.078221pt;}
.ls1_c01108{letter-spacing:0.087539pt;}
.ls2_c01108{letter-spacing:0.092873pt;}
.ws1_c01108{word-spacing:-23.622682pt;}
.ws6_c01108{word-spacing:-23.544461pt;}
.ws3_c01108{word-spacing:0.000000pt;}
.ws0_c01108{word-spacing:0.039110pt;}
.ws4_c01108{word-spacing:0.047940pt;}
.ws7_c01108{word-spacing:0.050460pt;}
.ws5_c01108{word-spacing:0.062592pt;}
.ws2_c01108{word-spacing:0.156442pt;}
.ws8_c01108{word-spacing:0.189730pt;}
._0_c01108{width:0.914167pt;}
.fs0_c01108{font-size:39.110400pt;}
.fs1_c01108{font-size:53.133867pt;}
.y0_c01108{bottom:0.000000pt;}
.y2f_c01108{bottom:39.333333pt;}
.y2e_c01108{bottom:300.396000pt;}
.y2d_c01108{bottom:315.008000pt;}
.y2c_c01108{bottom:329.620000pt;}
.y2b_c01108{bottom:344.230667pt;}
.y2a_c01108{bottom:358.842667pt;}
.y29_c01108{bottom:373.454667pt;}
.y28_c01108{bottom:388.066667pt;}
.y27_c01108{bottom:402.678667pt;}
.y26_c01108{bottom:417.290667pt;}
.y25_c01108{bottom:431.902667pt;}
.y24_c01108{bottom:446.514667pt;}
.y23_c01108{bottom:475.738667pt;}
.y22_c01108{bottom:490.349333pt;}
.y21_c01108{bottom:504.961333pt;}
.y20_c01108{bottom:534.185333pt;}
.y1f_c01108{bottom:548.797333pt;}
.y1e_c01108{bottom:563.409333pt;}
.y1d_c01108{bottom:578.021333pt;}
.y1c_c01108{bottom:592.633333pt;}
.y1b_c01108{bottom:607.245333pt;}
.y1a_c01108{bottom:621.857333pt;}
.y19_c01108{bottom:636.469333pt;}
.y18_c01108{bottom:651.080000pt;}
.y17_c01108{bottom:665.692000pt;}
.y16_c01108{bottom:680.304000pt;}
.y15_c01108{bottom:694.916000pt;}
.y14_c01108{bottom:709.528000pt;}
.y13_c01108{bottom:724.140000pt;}
.y12_c01108{bottom:738.752000pt;}
.y11_c01108{bottom:753.364000pt;}
.y10_c01108{bottom:767.976000pt;}
.yf_c01108{bottom:782.588000pt;}
.ye_c01108{bottom:797.198667pt;}
.yd_c01108{bottom:811.810667pt;}
.yc_c01108{bottom:826.422667pt;}
.yb_c01108{bottom:841.034667pt;}
.ya_c01108{bottom:855.646667pt;}
.y9_c01108{bottom:870.258667pt;}
.y8_c01108{bottom:884.870667pt;}
.y7_c01108{bottom:899.482667pt;}
.y6_c01108{bottom:914.094667pt;}
.y5_c01108{bottom:957.929333pt;}
.y4_c01108{bottom:972.541333pt;}
.y3_c01108{bottom:987.153333pt;}
.y2_c01108{bottom:1016.377333pt;}
.y1_c01108{bottom:1030.989333pt;}
.h2_c01108{height:31.280681pt;}
.h3_c01108{height:32.006363pt;}
.h4_c01108{height:46.518078pt;}
.h0_c01108{height:1122.520000pt;}
.h1_c01108{height:1122.666667pt;}
.w0_c01108{width:793.706667pt;}
.w1_c01108{width:794.000000pt;}
.x0_c01108{left:0.000000pt;}
.x1_c01108{left:121.886667pt;}
.x2_c01108{left:127.796000pt;}
.x6_c01108{left:157.340000pt;}
.x5_c01108{left:204.609333pt;}
.x3_c01108{left:216.426667pt;}
.x4_c01108{left:245.969333pt;}
.x7_c01108{left:386.888000pt;}
}





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

.ir_c01109:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_040092d1997d0e9ad736cfa9.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01109;src:url('chunks/assets/font_cf2a57d66433f0b28f4ce2e6.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01109;src:url('chunks/assets/font_8202e9594c70be4844607f26.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01109;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01109;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01109{font-family:ff5_c01109;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01109{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.ls3_c01109{letter-spacing:0.000000px;}
.ls0_c01109{letter-spacing:0.087998px;}
.ls2_c01109{letter-spacing:0.098482px;}
.ls1_c01109{letter-spacing:0.104482px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01109{word-spacing:-33.713438px;}
.ws2_c01109{word-spacing:-26.575517px;}
.wse_c01109{word-spacing:-26.487518px;}
.ws9_c01109{word-spacing:-21.553319px;}
.ws8_c01109{word-spacing:-21.519216px;}
.ws5_c01109{word-spacing:-18.769538px;}
.ws7_c01109{word-spacing:-16.019861px;}
.ws4_c01109{word-spacing:-14.943900px;}
.wsa_c01109{word-spacing:-14.107042px;}
.wsb_c01109{word-spacing:-12.074671px;}
.ws1_c01109{word-spacing:-9.988424px;}
.ws3_c01109{word-spacing:-9.987499px;}
.ws6_c01109{word-spacing:-4.536144px;}
.ws12_c01109{word-spacing:0.000000px;}
.wsf_c01109{word-spacing:0.043999px;}
.ws15_c01109{word-spacing:0.056767px;}
.ws13_c01109{word-spacing:0.073250px;}
.ws14_c01109{word-spacing:0.083734px;}
.wsd_c01109{word-spacing:0.175997px;}
.ws16_c01109{word-spacing:0.202963px;}
.ws10_c01109{word-spacing:0.213446px;}
.ws11_c01109{word-spacing:0.219446px;}
.ws0_c01109{word-spacing:43.038600px;}
._3_c01109{margin-left:-3.825638px;}
._0_c01109{margin-left:-1.549390px;}
._4_c01109{width:1.005737px;}
._1_c01109{width:19.935816px;}
._2_c01109{width:40.109428px;}
._6_c01109{width:53.283031px;}
._5_c01109{width:79.858548px;}
._7_c01109{width:133.452408px;}
.fc6_c01109{color:rgb(0,0,207);}
.fc5_c01109{color:rgb(79,153,5);}
.fc3_c01109{color:rgb(33,74,135);}
.fc2_c01109{color:rgb(143,89,3);}
.fc4_c01109{color:rgb(207,92,0);}
.fc1_c01109{color:rgb(6,69,173);}
.fc0_c01109{color:rgb(0,0,0);}
.fs2_c01109{font-size:43.999200px;}
.fs1_c01109{font-size:59.775600px;}
.fs0_c01109{font-size:86.077200px;}
.y0_c01109{bottom:0.000000px;}
.y20_c01109{bottom:44.250000px;}
.y1f_c01109{bottom:86.982000px;}
.y1e_c01109{bottom:103.420500px;}
.y1d_c01109{bottom:119.859000px;}
.y1c_c01109{bottom:136.297500px;}
.y1b_c01109{bottom:152.736000px;}
.y1a_c01109{bottom:169.174500px;}
.y19_c01109{bottom:185.613000px;}
.y18_c01109{bottom:202.051500px;}
.y17_c01109{bottom:218.490000px;}
.y16_c01109{bottom:234.927000px;}
.y15_c01109{bottom:251.365500px;}
.y14_c01109{bottom:267.804000px;}
.y13_c01109{bottom:284.242500px;}
.y12_c01109{bottom:300.681000px;}
.y11_c01109{bottom:317.119500px;}
.y10_c01109{bottom:349.996500px;}
.yf_c01109{bottom:366.435000px;}
.ye_c01109{bottom:415.749000px;}
.yd_c01109{bottom:432.187500px;}
.yc_c01109{bottom:448.252500px;}
.yb_c01109{bottom:493.890000px;}
.ya_c01109{bottom:511.822500px;}
.y9_c01109{bottom:529.756500px;}
.y8_c01109{bottom:547.689000px;}
.y7_c01109{bottom:565.621500px;}
.y6_c01109{bottom:583.554000px;}
.y5_c01109{bottom:610.633500px;}
.y4_c01109{bottom:637.714500px;}
.y3_c01109{bottom:664.794000px;}
.y2_c01109{bottom:691.873500px;}
.y1_c01109{bottom:734.407500px;}
.h5_c01109{height:35.190766px;}
.h6_c01109{height:36.007158px;}
.h3_c01109{height:40.511979px;}
.h4_c01109{height:52.332837px;}
.h2_c01109{height:58.337477px;}
.h0_c01109{height:1262.835000px;}
.h1_c01109{height:1263.000000px;}
.w0_c01109{width:892.920000px;}
.w1_c01109{width:893.250000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:127.558500px;}
.x2_c01109{left:137.122500px;}
.x3_c01109{left:143.770500px;}
.x4_c01109{left:435.249000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls3_c01109{letter-spacing:0.000000pt;}
.ls0_c01109{letter-spacing:0.078221pt;}
.ls2_c01109{letter-spacing:0.087539pt;}
.ls1_c01109{letter-spacing:0.092873pt;}
.wsc_c01109{word-spacing:-29.967501pt;}
.ws2_c01109{word-spacing:-23.622682pt;}
.wse_c01109{word-spacing:-23.544461pt;}
.ws9_c01109{word-spacing:-19.158506pt;}
.ws8_c01109{word-spacing:-19.128192pt;}
.ws5_c01109{word-spacing:-16.684034pt;}
.ws7_c01109{word-spacing:-14.239876pt;}
.ws4_c01109{word-spacing:-13.283467pt;}
.wsa_c01109{word-spacing:-12.539593pt;}
.wsb_c01109{word-spacing:-10.733041pt;}
.ws1_c01109{word-spacing:-8.878599pt;}
.ws3_c01109{word-spacing:-8.877777pt;}
.ws6_c01109{word-spacing:-4.032128pt;}
.ws12_c01109{word-spacing:0.000000pt;}
.wsf_c01109{word-spacing:0.039110pt;}
.ws15_c01109{word-spacing:0.050460pt;}
.ws13_c01109{word-spacing:0.065111pt;}
.ws14_c01109{word-spacing:0.074430pt;}
.wsd_c01109{word-spacing:0.156442pt;}
.ws16_c01109{word-spacing:0.180412pt;}
.ws10_c01109{word-spacing:0.189730pt;}
.ws11_c01109{word-spacing:0.195063pt;}
.ws0_c01109{word-spacing:38.256533pt;}
._3_c01109{margin-left:-3.400567pt;}
._0_c01109{margin-left:-1.377235pt;}
._4_c01109{width:0.893988pt;}
._1_c01109{width:17.720725pt;}
._2_c01109{width:35.652825pt;}
._6_c01109{width:47.362694pt;}
._5_c01109{width:70.985376pt;}
._7_c01109{width:118.624363pt;}
.fs2_c01109{font-size:39.110400pt;}
.fs1_c01109{font-size:53.133867pt;}
.fs0_c01109{font-size:76.513067pt;}
.y0_c01109{bottom:0.000000pt;}
.y20_c01109{bottom:39.333333pt;}
.y1f_c01109{bottom:77.317333pt;}
.y1e_c01109{bottom:91.929333pt;}
.y1d_c01109{bottom:106.541333pt;}
.y1c_c01109{bottom:121.153333pt;}
.y1b_c01109{bottom:135.765333pt;}
.y1a_c01109{bottom:150.377333pt;}
.y19_c01109{bottom:164.989333pt;}
.y18_c01109{bottom:179.601333pt;}
.y17_c01109{bottom:194.213333pt;}
.y16_c01109{bottom:208.824000pt;}
.y15_c01109{bottom:223.436000pt;}
.y14_c01109{bottom:238.048000pt;}
.y13_c01109{bottom:252.660000pt;}
.y12_c01109{bottom:267.272000pt;}
.y11_c01109{bottom:281.884000pt;}
.y10_c01109{bottom:311.108000pt;}
.yf_c01109{bottom:325.720000pt;}
.ye_c01109{bottom:369.554667pt;}
.yd_c01109{bottom:384.166667pt;}
.yc_c01109{bottom:398.446667pt;}
.yb_c01109{bottom:439.013333pt;}
.ya_c01109{bottom:454.953333pt;}
.y9_c01109{bottom:470.894667pt;}
.y8_c01109{bottom:486.834667pt;}
.y7_c01109{bottom:502.774667pt;}
.y6_c01109{bottom:518.714667pt;}
.y5_c01109{bottom:542.785333pt;}
.y4_c01109{bottom:566.857333pt;}
.y3_c01109{bottom:590.928000pt;}
.y2_c01109{bottom:614.998667pt;}
.y1_c01109{bottom:652.806667pt;}
.h5_c01109{height:31.280681pt;}
.h6_c01109{height:32.006363pt;}
.h3_c01109{height:36.010648pt;}
.h4_c01109{height:46.518078pt;}
.h2_c01109{height:51.855535pt;}
.h0_c01109{height:1122.520000pt;}
.h1_c01109{height:1122.666667pt;}
.w0_c01109{width:793.706667pt;}
.w1_c01109{width:794.000000pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:113.385333pt;}
.x2_c01109{left:121.886667pt;}
.x3_c01109{left:127.796000pt;}
.x4_c01109{left:386.888000pt;}
}





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

.ir_c01110:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_a6294607b68d95a55ca52421.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01110;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01110;src:url('chunks/assets/font_d61d0fe49ac2cc707e506357.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01110;src:url('chunks/assets/font_231f5d42901f2451e71b2f5b.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01110;src:url('chunks/assets/font_89f014517f36813444074bc1.woff2')format("woff");}.ff5_c01110{font-family:ff5_c01110;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01110{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01110{vertical-align:0.000000px;}
.ls4_c01110{letter-spacing:0.000000px;}
.ls0_c01110{letter-spacing:0.087998px;}
.ls2_c01110{letter-spacing:0.098482px;}
.ls3_c01110{letter-spacing:0.104482px;}
.ls1_c01110{letter-spacing:26.690482px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c01110{word-spacing:-33.713438px;}
.ws2_c01110{word-spacing:-26.575517px;}
.ws4_c01110{word-spacing:-26.487518px;}
.wse_c01110{word-spacing:-21.553319px;}
.wsd_c01110{word-spacing:-21.519216px;}
.wsa_c01110{word-spacing:-18.769538px;}
.wsc_c01110{word-spacing:-17.633802px;}
.ws9_c01110{word-spacing:-14.943900px;}
.wsf_c01110{word-spacing:-14.107042px;}
.ws10_c01110{word-spacing:-12.074671px;}
.ws7_c01110{word-spacing:-9.988424px;}
.ws8_c01110{word-spacing:-9.987499px;}
.wsb_c01110{word-spacing:-7.686144px;}
.ws3_c01110{word-spacing:0.000000px;}
.ws0_c01110{word-spacing:0.043999px;}
.ws5_c01110{word-spacing:0.213446px;}
.ws1_c01110{word-spacing:0.219446px;}
.ws6_c01110{word-spacing:43.038600px;}
._1_c01110{margin-left:-1.549390px;}
._0_c01110{width:1.047206px;}
._2_c01110{width:19.935816px;}
._3_c01110{width:40.109428px;}
.fc5_c01110{color:rgb(79,153,5);}
.fc4_c01110{color:rgb(143,89,3);}
.fc3_c01110{color:rgb(0,0,0);}
.fc6_c01110{color:rgb(6,69,173);}
.fc2_c01110{color:rgb(207,92,0);}
.fc1_c01110{color:rgb(0,0,207);}
.fc0_c01110{color:rgb(33,74,135);}
.fs0_c01110{font-size:43.999200px;}
.fs2_c01110{font-size:59.775600px;}
.fs1_c01110{font-size:86.077200px;}
.y0_c01110{bottom:0.000000px;}
.y20_c01110{bottom:44.250000px;}
.y1f_c01110{bottom:82.051500px;}
.y1e_c01110{bottom:99.984000px;}
.y1d_c01110{bottom:117.916500px;}
.y1c_c01110{bottom:135.849000px;}
.y1b_c01110{bottom:162.501000px;}
.y1a_c01110{bottom:189.151500px;}
.y19_c01110{bottom:215.802000px;}
.y18_c01110{bottom:242.454000px;}
.y17_c01110{bottom:284.478000px;}
.y16_c01110{bottom:748.903500px;}
.y15_c01110{bottom:765.342000px;}
.y14_c01110{bottom:781.780500px;}
.y13_c01110{bottom:798.219000px;}
.y12_c01110{bottom:814.657500px;}
.y11_c01110{bottom:831.096000px;}
.y10_c01110{bottom:847.534500px;}
.yf_c01110{bottom:863.973000px;}
.ye_c01110{bottom:880.411500px;}
.yd_c01110{bottom:896.848500px;}
.yc_c01110{bottom:913.287000px;}
.yb_c01110{bottom:946.164000px;}
.ya_c01110{bottom:962.602500px;}
.y9_c01110{bottom:979.041000px;}
.y8_c01110{bottom:1011.918000px;}
.y7_c01110{bottom:1028.356500px;}
.y6_c01110{bottom:1044.795000px;}
.y5_c01110{bottom:1061.232000px;}
.y4_c01110{bottom:1077.670500px;}
.y3_c01110{bottom:1094.109000px;}
.y2_c01110{bottom:1110.547500px;}
.y1_c01110{bottom:1159.863000px;}
.h3_c01110{height:35.190766px;}
.h2_c01110{height:36.007158px;}
.h5_c01110{height:40.511979px;}
.h6_c01110{height:52.332837px;}
.h4_c01110{height:58.337477px;}
.h0_c01110{height:1262.835000px;}
.h1_c01110{height:1263.000000px;}
.w0_c01110{width:892.920000px;}
.w1_c01110{width:893.250000px;}
.x0_c01110{left:0.000000px;}
.x4_c01110{left:127.558500px;}
.x2_c01110{left:137.122500px;}
.x1_c01110{left:143.770500px;}
.x3_c01110{left:177.007500px;}
.x5_c01110{left:435.526500px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls4_c01110{letter-spacing:0.000000pt;}
.ls0_c01110{letter-spacing:0.078221pt;}
.ls2_c01110{letter-spacing:0.087539pt;}
.ls3_c01110{letter-spacing:0.092873pt;}
.ls1_c01110{letter-spacing:23.724873pt;}
.ws11_c01110{word-spacing:-29.967501pt;}
.ws2_c01110{word-spacing:-23.622682pt;}
.ws4_c01110{word-spacing:-23.544461pt;}
.wse_c01110{word-spacing:-19.158506pt;}
.wsd_c01110{word-spacing:-19.128192pt;}
.wsa_c01110{word-spacing:-16.684034pt;}
.wsc_c01110{word-spacing:-15.674491pt;}
.ws9_c01110{word-spacing:-13.283467pt;}
.wsf_c01110{word-spacing:-12.539593pt;}
.ws10_c01110{word-spacing:-10.733041pt;}
.ws7_c01110{word-spacing:-8.878599pt;}
.ws8_c01110{word-spacing:-8.877777pt;}
.wsb_c01110{word-spacing:-6.832128pt;}
.ws3_c01110{word-spacing:0.000000pt;}
.ws0_c01110{word-spacing:0.039110pt;}
.ws5_c01110{word-spacing:0.189730pt;}
.ws1_c01110{word-spacing:0.195063pt;}
.ws6_c01110{word-spacing:38.256533pt;}
._1_c01110{margin-left:-1.377235pt;}
._0_c01110{width:0.930850pt;}
._2_c01110{width:17.720725pt;}
._3_c01110{width:35.652825pt;}
.fs0_c01110{font-size:39.110400pt;}
.fs2_c01110{font-size:53.133867pt;}
.fs1_c01110{font-size:76.513067pt;}
.y0_c01110{bottom:0.000000pt;}
.y20_c01110{bottom:39.333333pt;}
.y1f_c01110{bottom:72.934667pt;}
.y1e_c01110{bottom:88.874667pt;}
.y1d_c01110{bottom:104.814667pt;}
.y1c_c01110{bottom:120.754667pt;}
.y1b_c01110{bottom:144.445333pt;}
.y1a_c01110{bottom:168.134667pt;}
.y19_c01110{bottom:191.824000pt;}
.y18_c01110{bottom:215.514667pt;}
.y17_c01110{bottom:252.869333pt;}
.y16_c01110{bottom:665.692000pt;}
.y15_c01110{bottom:680.304000pt;}
.y14_c01110{bottom:694.916000pt;}
.y13_c01110{bottom:709.528000pt;}
.y12_c01110{bottom:724.140000pt;}
.y11_c01110{bottom:738.752000pt;}
.y10_c01110{bottom:753.364000pt;}
.yf_c01110{bottom:767.976000pt;}
.ye_c01110{bottom:782.588000pt;}
.yd_c01110{bottom:797.198667pt;}
.yc_c01110{bottom:811.810667pt;}
.yb_c01110{bottom:841.034667pt;}
.ya_c01110{bottom:855.646667pt;}
.y9_c01110{bottom:870.258667pt;}
.y8_c01110{bottom:899.482667pt;}
.y7_c01110{bottom:914.094667pt;}
.y6_c01110{bottom:928.706667pt;}
.y5_c01110{bottom:943.317333pt;}
.y4_c01110{bottom:957.929333pt;}
.y3_c01110{bottom:972.541333pt;}
.y2_c01110{bottom:987.153333pt;}
.y1_c01110{bottom:1030.989333pt;}
.h3_c01110{height:31.280681pt;}
.h2_c01110{height:32.006363pt;}
.h5_c01110{height:36.010648pt;}
.h6_c01110{height:46.518078pt;}
.h4_c01110{height:51.855535pt;}
.h0_c01110{height:1122.520000pt;}
.h1_c01110{height:1122.666667pt;}
.w0_c01110{width:793.706667pt;}
.w1_c01110{width:794.000000pt;}
.x0_c01110{left:0.000000pt;}
.x4_c01110{left:113.385333pt;}
.x2_c01110{left:121.886667pt;}
.x1_c01110{left:127.796000pt;}
.x3_c01110{left:157.340000pt;}
.x5_c01110{left:387.134667pt;}
}





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

.ir_c01111:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_e6c31d2e1e7f45c3d0eef2ab.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01111;src:url('chunks/assets/font_2c2acdee963828701406321e.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01111;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01111;src:url('chunks/assets/font_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.ls4_c01111{letter-spacing:0.000000px;}
.ls1_c01111{letter-spacing:0.087998px;}
.ls2_c01111{letter-spacing:0.098482px;}
.ls0_c01111{letter-spacing:0.104482px;}
.ls3_c01111{letter-spacing:26.690482px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01111{word-spacing:-33.713438px;}
.ws4_c01111{word-spacing:-26.575517px;}
.ws3_c01111{word-spacing:-26.487518px;}
.ws0_c01111{word-spacing:-18.769538px;}
.ws8_c01111{word-spacing:0.000000px;}
.ws5_c01111{word-spacing:0.043999px;}
.wsb_c01111{word-spacing:0.056767px;}
.ws9_c01111{word-spacing:0.073250px;}
.wsa_c01111{word-spacing:0.083734px;}
.ws2_c01111{word-spacing:0.175997px;}
.wsc_c01111{word-spacing:0.202963px;}
.ws6_c01111{word-spacing:0.213446px;}
.ws7_c01111{word-spacing:0.219446px;}
._0_c01111{margin-left:-3.825638px;}
._1_c01111{width:1.005737px;}
._3_c01111{width:53.283031px;}
._2_c01111{width:79.858548px;}
._5_c01111{width:106.786058px;}
._4_c01111{width:133.452408px;}
.fc5_c01111{color:rgb(0,0,207);}
.fc4_c01111{color:rgb(79,153,5);}
.fc3_c01111{color:rgb(207,92,0);}
.fc2_c01111{color:rgb(33,74,135);}
.fc1_c01111{color:rgb(143,89,3);}
.fc0_c01111{color:rgb(0,0,0);}
.fs1_c01111{font-size:43.999200px;}
.fs0_c01111{font-size:59.775600px;}
.y0_c01111{bottom:0.000000px;}
.y2d_c01111{bottom:44.250000px;}
.y2c_c01111{bottom:96.919500px;}
.y2b_c01111{bottom:113.358000px;}
.y2a_c01111{bottom:129.796500px;}
.y29_c01111{bottom:146.235000px;}
.y28_c01111{bottom:162.673500px;}
.y27_c01111{bottom:179.112000px;}
.y26_c01111{bottom:195.550500px;}
.y25_c01111{bottom:211.989000px;}
.y24_c01111{bottom:228.427500px;}
.y23_c01111{bottom:244.866000px;}
.y22_c01111{bottom:261.304500px;}
.y21_c01111{bottom:294.180000px;}
.y20_c01111{bottom:310.618500px;}
.y1f_c01111{bottom:327.057000px;}
.y1e_c01111{bottom:359.934000px;}
.y1d_c01111{bottom:376.372500px;}
.y1c_c01111{bottom:392.811000px;}
.y1b_c01111{bottom:409.249500px;}
.y1a_c01111{bottom:425.688000px;}
.y19_c01111{bottom:442.125000px;}
.y18_c01111{bottom:458.563500px;}
.y17_c01111{bottom:507.879000px;}
.y16_c01111{bottom:524.317500px;}
.y15_c01111{bottom:540.756000px;}
.y14_c01111{bottom:557.194500px;}
.y13_c01111{bottom:573.633000px;}
.y12_c01111{bottom:590.071500px;}
.y11_c01111{bottom:606.508500px;}
.y10_c01111{bottom:622.947000px;}
.yf_c01111{bottom:639.385500px;}
.ye_c01111{bottom:655.824000px;}
.yd_c01111{bottom:672.262500px;}
.yc_c01111{bottom:688.701000px;}
.yb_c01111{bottom:705.139500px;}
.ya_c01111{bottom:721.578000px;}
.y9_c01111{bottom:738.016500px;}
.y8_c01111{bottom:754.455000px;}
.y7_c01111{bottom:787.330500px;}
.y6_c01111{bottom:803.769000px;}
.y5_c01111{bottom:853.084500px;}
.y4_c01111{bottom:869.523000px;}
.y3_c01111{bottom:885.588000px;}
.y2_c01111{bottom:1141.930500px;}
.y1_c01111{bottom:1159.863000px;}
.h3_c01111{height:35.190766px;}
.h4_c01111{height:36.007158px;}
.h2_c01111{height:52.332837px;}
.h0_c01111{height:1262.835000px;}
.h1_c01111{height:1263.000000px;}
.w0_c01111{width:892.920000px;}
.w1_c01111{width:893.250000px;}
.x0_c01111{left:0.000000px;}
.x1_c01111{left:127.558500px;}
.x2_c01111{left:137.122500px;}
.x3_c01111{left:143.770500px;}
.x4_c01111{left:177.007500px;}
.x5_c01111{left:435.249000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls4_c01111{letter-spacing:0.000000pt;}
.ls1_c01111{letter-spacing:0.078221pt;}
.ls2_c01111{letter-spacing:0.087539pt;}
.ls0_c01111{letter-spacing:0.092873pt;}
.ls3_c01111{letter-spacing:23.724873pt;}
.ws1_c01111{word-spacing:-29.967501pt;}
.ws4_c01111{word-spacing:-23.622682pt;}
.ws3_c01111{word-spacing:-23.544461pt;}
.ws0_c01111{word-spacing:-16.684034pt;}
.ws8_c01111{word-spacing:0.000000pt;}
.ws5_c01111{word-spacing:0.039110pt;}
.wsb_c01111{word-spacing:0.050460pt;}
.ws9_c01111{word-spacing:0.065111pt;}
.wsa_c01111{word-spacing:0.074430pt;}
.ws2_c01111{word-spacing:0.156442pt;}
.wsc_c01111{word-spacing:0.180412pt;}
.ws6_c01111{word-spacing:0.189730pt;}
.ws7_c01111{word-spacing:0.195063pt;}
._0_c01111{margin-left:-3.400567pt;}
._1_c01111{width:0.893988pt;}
._3_c01111{width:47.362694pt;}
._2_c01111{width:70.985376pt;}
._5_c01111{width:94.920941pt;}
._4_c01111{width:118.624363pt;}
.fs1_c01111{font-size:39.110400pt;}
.fs0_c01111{font-size:53.133867pt;}
.y0_c01111{bottom:0.000000pt;}
.y2d_c01111{bottom:39.333333pt;}
.y2c_c01111{bottom:86.150667pt;}
.y2b_c01111{bottom:100.762667pt;}
.y2a_c01111{bottom:115.374667pt;}
.y29_c01111{bottom:129.986667pt;}
.y28_c01111{bottom:144.598667pt;}
.y27_c01111{bottom:159.210667pt;}
.y26_c01111{bottom:173.822667pt;}
.y25_c01111{bottom:188.434667pt;}
.y24_c01111{bottom:203.046667pt;}
.y23_c01111{bottom:217.658667pt;}
.y22_c01111{bottom:232.270667pt;}
.y21_c01111{bottom:261.493333pt;}
.y20_c01111{bottom:276.105333pt;}
.y1f_c01111{bottom:290.717333pt;}
.y1e_c01111{bottom:319.941333pt;}
.y1d_c01111{bottom:334.553333pt;}
.y1c_c01111{bottom:349.165333pt;}
.y1b_c01111{bottom:363.777333pt;}
.y1a_c01111{bottom:378.389333pt;}
.y19_c01111{bottom:393.000000pt;}
.y18_c01111{bottom:407.612000pt;}
.y17_c01111{bottom:451.448000pt;}
.y16_c01111{bottom:466.060000pt;}
.y15_c01111{bottom:480.672000pt;}
.y14_c01111{bottom:495.284000pt;}
.y13_c01111{bottom:509.896000pt;}
.y12_c01111{bottom:524.508000pt;}
.y11_c01111{bottom:539.118667pt;}
.y10_c01111{bottom:553.730667pt;}
.yf_c01111{bottom:568.342667pt;}
.ye_c01111{bottom:582.954667pt;}
.yd_c01111{bottom:597.566667pt;}
.yc_c01111{bottom:612.178667pt;}
.yb_c01111{bottom:626.790667pt;}
.ya_c01111{bottom:641.402667pt;}
.y9_c01111{bottom:656.014667pt;}
.y8_c01111{bottom:670.626667pt;}
.y7_c01111{bottom:699.849333pt;}
.y6_c01111{bottom:714.461333pt;}
.y5_c01111{bottom:758.297333pt;}
.y4_c01111{bottom:772.909333pt;}
.y3_c01111{bottom:787.189333pt;}
.y2_c01111{bottom:1015.049333pt;}
.y1_c01111{bottom:1030.989333pt;}
.h3_c01111{height:31.280681pt;}
.h4_c01111{height:32.006363pt;}
.h2_c01111{height:46.518078pt;}
.h0_c01111{height:1122.520000pt;}
.h1_c01111{height:1122.666667pt;}
.w0_c01111{width:793.706667pt;}
.w1_c01111{width:794.000000pt;}
.x0_c01111{left:0.000000pt;}
.x1_c01111{left:113.385333pt;}
.x2_c01111{left:121.886667pt;}
.x3_c01111{left:127.796000pt;}
.x4_c01111{left:157.340000pt;}
.x5_c01111{left:386.888000pt;}
}





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

.ir_c01112:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_cd27eb957ec37bda63f32434.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01112;src:url('chunks/assets/font_394359d45ba138b707844c85.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01112;src:url('chunks/assets/font_03a48e5b5fd3e00aaedef1a0.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01112;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01112;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01112{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls3_c01112{letter-spacing:0.000000px;}
.ls0_c01112{letter-spacing:0.087998px;}
.ls2_c01112{letter-spacing:0.098482px;}
.ls1_c01112{letter-spacing:0.104482px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01112{word-spacing:-33.713438px;}
.ws2_c01112{word-spacing:-26.575517px;}
.wse_c01112{word-spacing:-26.487518px;}
.ws9_c01112{word-spacing:-21.553319px;}
.ws8_c01112{word-spacing:-21.519216px;}
.ws5_c01112{word-spacing:-18.769538px;}
.ws7_c01112{word-spacing:-17.633802px;}
.ws4_c01112{word-spacing:-14.943900px;}
.wsa_c01112{word-spacing:-14.107042px;}
.wsb_c01112{word-spacing:-12.074671px;}
.ws1_c01112{word-spacing:-9.988424px;}
.ws3_c01112{word-spacing:-9.987499px;}
.ws6_c01112{word-spacing:-7.686144px;}
.ws12_c01112{word-spacing:0.000000px;}
.wsf_c01112{word-spacing:0.043999px;}
.ws15_c01112{word-spacing:0.056767px;}
.ws13_c01112{word-spacing:0.073250px;}
.ws14_c01112{word-spacing:0.083734px;}
.wsd_c01112{word-spacing:0.175997px;}
.ws16_c01112{word-spacing:0.202963px;}
.ws10_c01112{word-spacing:0.213446px;}
.ws11_c01112{word-spacing:0.219446px;}
.ws0_c01112{word-spacing:42.952523px;}
._0_c01112{margin-left:-4.734246px;}
._5_c01112{margin-left:-3.287658px;}
._1_c01112{margin-left:-1.463312px;}
._6_c01112{width:1.005737px;}
._4_c01112{width:15.972059px;}
._2_c01112{width:19.935816px;}
._3_c01112{width:40.109428px;}
._8_c01112{width:53.283031px;}
._7_c01112{width:79.858548px;}
._9_c01112{width:133.452408px;}
.fc6_c01112{color:rgb(0,0,207);}
.fc5_c01112{color:rgb(79,153,5);}
.fc3_c01112{color:rgb(33,74,135);}
.fc2_c01112{color:rgb(143,89,3);}
.fc4_c01112{color:rgb(207,92,0);}
.fc1_c01112{color:rgb(6,69,173);}
.fc0_c01112{color:rgb(0,0,0);}
.fs2_c01112{font-size:43.999200px;}
.fs1_c01112{font-size:59.775600px;}
.fs0_c01112{font-size:86.077200px;}
.y0_c01112{bottom:0.000000px;}
.y20_c01112{bottom:44.250000px;}
.y1f_c01112{bottom:86.982000px;}
.y1e_c01112{bottom:103.420500px;}
.y1d_c01112{bottom:119.859000px;}
.y1c_c01112{bottom:136.297500px;}
.y1b_c01112{bottom:152.736000px;}
.y1a_c01112{bottom:169.174500px;}
.y19_c01112{bottom:185.613000px;}
.y18_c01112{bottom:202.051500px;}
.y17_c01112{bottom:218.490000px;}
.y16_c01112{bottom:234.927000px;}
.y15_c01112{bottom:251.365500px;}
.y14_c01112{bottom:267.804000px;}
.y13_c01112{bottom:284.242500px;}
.y12_c01112{bottom:300.681000px;}
.y11_c01112{bottom:317.119500px;}
.y10_c01112{bottom:349.996500px;}
.yf_c01112{bottom:366.435000px;}
.ye_c01112{bottom:415.749000px;}
.yd_c01112{bottom:432.187500px;}
.yc_c01112{bottom:448.252500px;}
.yb_c01112{bottom:493.890000px;}
.ya_c01112{bottom:511.822500px;}
.y9_c01112{bottom:529.756500px;}
.y8_c01112{bottom:547.689000px;}
.y7_c01112{bottom:565.621500px;}
.y6_c01112{bottom:583.554000px;}
.y5_c01112{bottom:610.633500px;}
.y4_c01112{bottom:637.714500px;}
.y3_c01112{bottom:664.794000px;}
.y2_c01112{bottom:691.873500px;}
.y1_c01112{bottom:734.407500px;}
.h5_c01112{height:35.190766px;}
.h6_c01112{height:36.007158px;}
.h3_c01112{height:40.511979px;}
.h4_c01112{height:52.332837px;}
.h2_c01112{height:58.337477px;}
.h0_c01112{height:1262.835000px;}
.h1_c01112{height:1263.000000px;}
.w0_c01112{width:892.920000px;}
.w1_c01112{width:893.250000px;}
.x0_c01112{left:0.000000px;}
.x1_c01112{left:127.558500px;}
.x2_c01112{left:137.122500px;}
.x3_c01112{left:143.770500px;}
.x4_c01112{left:435.249000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls3_c01112{letter-spacing:0.000000pt;}
.ls0_c01112{letter-spacing:0.078221pt;}
.ls2_c01112{letter-spacing:0.087539pt;}
.ls1_c01112{letter-spacing:0.092873pt;}
.wsc_c01112{word-spacing:-29.967501pt;}
.ws2_c01112{word-spacing:-23.622682pt;}
.wse_c01112{word-spacing:-23.544461pt;}
.ws9_c01112{word-spacing:-19.158506pt;}
.ws8_c01112{word-spacing:-19.128192pt;}
.ws5_c01112{word-spacing:-16.684034pt;}
.ws7_c01112{word-spacing:-15.674491pt;}
.ws4_c01112{word-spacing:-13.283467pt;}
.wsa_c01112{word-spacing:-12.539593pt;}
.wsb_c01112{word-spacing:-10.733041pt;}
.ws1_c01112{word-spacing:-8.878599pt;}
.ws3_c01112{word-spacing:-8.877777pt;}
.ws6_c01112{word-spacing:-6.832128pt;}
.ws12_c01112{word-spacing:0.000000pt;}
.wsf_c01112{word-spacing:0.039110pt;}
.ws15_c01112{word-spacing:0.050460pt;}
.ws13_c01112{word-spacing:0.065111pt;}
.ws14_c01112{word-spacing:0.074430pt;}
.wsd_c01112{word-spacing:0.156442pt;}
.ws16_c01112{word-spacing:0.180412pt;}
.ws10_c01112{word-spacing:0.189730pt;}
.ws11_c01112{word-spacing:0.195063pt;}
.ws0_c01112{word-spacing:38.180020pt;}
._0_c01112{margin-left:-4.208219pt;}
._5_c01112{margin-left:-2.922363pt;}
._1_c01112{margin-left:-1.300722pt;}
._6_c01112{width:0.893988pt;}
._4_c01112{width:14.197386pt;}
._2_c01112{width:17.720725pt;}
._3_c01112{width:35.652825pt;}
._8_c01112{width:47.362694pt;}
._7_c01112{width:70.985376pt;}
._9_c01112{width:118.624363pt;}
.fs2_c01112{font-size:39.110400pt;}
.fs1_c01112{font-size:53.133867pt;}
.fs0_c01112{font-size:76.513067pt;}
.y0_c01112{bottom:0.000000pt;}
.y20_c01112{bottom:39.333333pt;}
.y1f_c01112{bottom:77.317333pt;}
.y1e_c01112{bottom:91.929333pt;}
.y1d_c01112{bottom:106.541333pt;}
.y1c_c01112{bottom:121.153333pt;}
.y1b_c01112{bottom:135.765333pt;}
.y1a_c01112{bottom:150.377333pt;}
.y19_c01112{bottom:164.989333pt;}
.y18_c01112{bottom:179.601333pt;}
.y17_c01112{bottom:194.213333pt;}
.y16_c01112{bottom:208.824000pt;}
.y15_c01112{bottom:223.436000pt;}
.y14_c01112{bottom:238.048000pt;}
.y13_c01112{bottom:252.660000pt;}
.y12_c01112{bottom:267.272000pt;}
.y11_c01112{bottom:281.884000pt;}
.y10_c01112{bottom:311.108000pt;}
.yf_c01112{bottom:325.720000pt;}
.ye_c01112{bottom:369.554667pt;}
.yd_c01112{bottom:384.166667pt;}
.yc_c01112{bottom:398.446667pt;}
.yb_c01112{bottom:439.013333pt;}
.ya_c01112{bottom:454.953333pt;}
.y9_c01112{bottom:470.894667pt;}
.y8_c01112{bottom:486.834667pt;}
.y7_c01112{bottom:502.774667pt;}
.y6_c01112{bottom:518.714667pt;}
.y5_c01112{bottom:542.785333pt;}
.y4_c01112{bottom:566.857333pt;}
.y3_c01112{bottom:590.928000pt;}
.y2_c01112{bottom:614.998667pt;}
.y1_c01112{bottom:652.806667pt;}
.h5_c01112{height:31.280681pt;}
.h6_c01112{height:32.006363pt;}
.h3_c01112{height:36.010648pt;}
.h4_c01112{height:46.518078pt;}
.h2_c01112{height:51.855535pt;}
.h0_c01112{height:1122.520000pt;}
.h1_c01112{height:1122.666667pt;}
.w0_c01112{width:793.706667pt;}
.w1_c01112{width:794.000000pt;}
.x0_c01112{left:0.000000pt;}
.x1_c01112{left:113.385333pt;}
.x2_c01112{left:121.886667pt;}
.x3_c01112{left:127.796000pt;}
.x4_c01112{left:386.888000pt;}
}





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

.ir_c01113:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_e68be4b83d332de856724ffb.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01113;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01113;src:url('chunks/assets/font_6900e2d3a358500162311a9e.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01113;src:url('chunks/assets/font_f5ac39e86d1155e739ba24f7.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01113;src:url('chunks/assets/font_aa4be111badca5a8fc323654.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01113{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01113{vertical-align:0.000000px;}
.ls4_c01113{letter-spacing:0.000000px;}
.ls0_c01113{letter-spacing:0.087998px;}
.ls2_c01113{letter-spacing:0.098482px;}
.ls3_c01113{letter-spacing:0.104482px;}
.ls1_c01113{letter-spacing:26.690482px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01113{word-spacing:-26.575517px;}
.ws4_c01113{word-spacing:-26.487518px;}
.wse_c01113{word-spacing:-21.553319px;}
.wsd_c01113{word-spacing:-21.519216px;}
.wsc_c01113{word-spacing:-19.247743px;}
.wsa_c01113{word-spacing:-18.769538px;}
.ws9_c01113{word-spacing:-14.943900px;}
.wsf_c01113{word-spacing:-14.107042px;}
.ws10_c01113{word-spacing:-12.074671px;}
.wsb_c01113{word-spacing:-10.230144px;}
.ws7_c01113{word-spacing:-9.988424px;}
.ws8_c01113{word-spacing:-9.987499px;}
.ws3_c01113{word-spacing:0.000000px;}
.ws0_c01113{word-spacing:0.043999px;}
.ws5_c01113{word-spacing:0.213446px;}
.ws1_c01113{word-spacing:0.219446px;}
.ws6_c01113{word-spacing:43.038600px;}
._2_c01113{margin-left:-1.549390px;}
._1_c01113{width:1.063690px;}
._3_c01113{width:19.935816px;}
._4_c01113{width:40.109428px;}
._0_c01113{width:106.786058px;}
.fc5_c01113{color:rgb(79,153,5);}
.fc4_c01113{color:rgb(143,89,3);}
.fc3_c01113{color:rgb(0,0,0);}
.fc6_c01113{color:rgb(6,69,173);}
.fc2_c01113{color:rgb(207,92,0);}
.fc1_c01113{color:rgb(0,0,207);}
.fc0_c01113{color:rgb(33,74,135);}
.fs0_c01113{font-size:43.999200px;}
.fs2_c01113{font-size:59.775600px;}
.fs1_c01113{font-size:86.077200px;}
.y0_c01113{bottom:0.000000px;}
.y20_c01113{bottom:44.250000px;}
.y1f_c01113{bottom:82.051500px;}
.y1e_c01113{bottom:99.984000px;}
.y1d_c01113{bottom:117.916500px;}
.y1c_c01113{bottom:135.849000px;}
.y1b_c01113{bottom:162.501000px;}
.y1a_c01113{bottom:189.151500px;}
.y19_c01113{bottom:215.802000px;}
.y18_c01113{bottom:242.454000px;}
.y17_c01113{bottom:284.478000px;}
.y16_c01113{bottom:748.903500px;}
.y15_c01113{bottom:765.342000px;}
.y14_c01113{bottom:781.780500px;}
.y13_c01113{bottom:798.219000px;}
.y12_c01113{bottom:814.657500px;}
.y11_c01113{bottom:831.096000px;}
.y10_c01113{bottom:847.534500px;}
.yf_c01113{bottom:863.973000px;}
.ye_c01113{bottom:880.411500px;}
.yd_c01113{bottom:896.848500px;}
.yc_c01113{bottom:913.287000px;}
.yb_c01113{bottom:946.164000px;}
.ya_c01113{bottom:962.602500px;}
.y9_c01113{bottom:979.041000px;}
.y8_c01113{bottom:1011.918000px;}
.y7_c01113{bottom:1028.356500px;}
.y6_c01113{bottom:1044.795000px;}
.y5_c01113{bottom:1061.232000px;}
.y4_c01113{bottom:1077.670500px;}
.y3_c01113{bottom:1094.109000px;}
.y2_c01113{bottom:1110.547500px;}
.y1_c01113{bottom:1159.863000px;}
.h3_c01113{height:35.190766px;}
.h2_c01113{height:36.007158px;}
.h5_c01113{height:40.511979px;}
.h6_c01113{height:52.332837px;}
.h4_c01113{height:58.337477px;}
.h0_c01113{height:1262.835000px;}
.h1_c01113{height:1263.000000px;}
.w0_c01113{width:892.920000px;}
.w1_c01113{width:893.250000px;}
.x0_c01113{left:0.000000px;}
.x4_c01113{left:127.558500px;}
.x2_c01113{left:137.122500px;}
.x1_c01113{left:143.770500px;}
.x3_c01113{left:177.007500px;}
.x5_c01113{left:435.249000px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls4_c01113{letter-spacing:0.000000pt;}
.ls0_c01113{letter-spacing:0.078221pt;}
.ls2_c01113{letter-spacing:0.087539pt;}
.ls3_c01113{letter-spacing:0.092873pt;}
.ls1_c01113{letter-spacing:23.724873pt;}
.ws2_c01113{word-spacing:-23.622682pt;}
.ws4_c01113{word-spacing:-23.544461pt;}
.wse_c01113{word-spacing:-19.158506pt;}
.wsd_c01113{word-spacing:-19.128192pt;}
.wsc_c01113{word-spacing:-17.109105pt;}
.wsa_c01113{word-spacing:-16.684034pt;}
.ws9_c01113{word-spacing:-13.283467pt;}
.wsf_c01113{word-spacing:-12.539593pt;}
.ws10_c01113{word-spacing:-10.733041pt;}
.wsb_c01113{word-spacing:-9.093461pt;}
.ws7_c01113{word-spacing:-8.878599pt;}
.ws8_c01113{word-spacing:-8.877777pt;}
.ws3_c01113{word-spacing:0.000000pt;}
.ws0_c01113{word-spacing:0.039110pt;}
.ws5_c01113{word-spacing:0.189730pt;}
.ws1_c01113{word-spacing:0.195063pt;}
.ws6_c01113{word-spacing:38.256533pt;}
._2_c01113{margin-left:-1.377235pt;}
._1_c01113{width:0.945502pt;}
._3_c01113{width:17.720725pt;}
._4_c01113{width:35.652825pt;}
._0_c01113{width:94.920941pt;}
.fs0_c01113{font-size:39.110400pt;}
.fs2_c01113{font-size:53.133867pt;}
.fs1_c01113{font-size:76.513067pt;}
.y0_c01113{bottom:0.000000pt;}
.y20_c01113{bottom:39.333333pt;}
.y1f_c01113{bottom:72.934667pt;}
.y1e_c01113{bottom:88.874667pt;}
.y1d_c01113{bottom:104.814667pt;}
.y1c_c01113{bottom:120.754667pt;}
.y1b_c01113{bottom:144.445333pt;}
.y1a_c01113{bottom:168.134667pt;}
.y19_c01113{bottom:191.824000pt;}
.y18_c01113{bottom:215.514667pt;}
.y17_c01113{bottom:252.869333pt;}
.y16_c01113{bottom:665.692000pt;}
.y15_c01113{bottom:680.304000pt;}
.y14_c01113{bottom:694.916000pt;}
.y13_c01113{bottom:709.528000pt;}
.y12_c01113{bottom:724.140000pt;}
.y11_c01113{bottom:738.752000pt;}
.y10_c01113{bottom:753.364000pt;}
.yf_c01113{bottom:767.976000pt;}
.ye_c01113{bottom:782.588000pt;}
.yd_c01113{bottom:797.198667pt;}
.yc_c01113{bottom:811.810667pt;}
.yb_c01113{bottom:841.034667pt;}
.ya_c01113{bottom:855.646667pt;}
.y9_c01113{bottom:870.258667pt;}
.y8_c01113{bottom:899.482667pt;}
.y7_c01113{bottom:914.094667pt;}
.y6_c01113{bottom:928.706667pt;}
.y5_c01113{bottom:943.317333pt;}
.y4_c01113{bottom:957.929333pt;}
.y3_c01113{bottom:972.541333pt;}
.y2_c01113{bottom:987.153333pt;}
.y1_c01113{bottom:1030.989333pt;}
.h3_c01113{height:31.280681pt;}
.h2_c01113{height:32.006363pt;}
.h5_c01113{height:36.010648pt;}
.h6_c01113{height:46.518078pt;}
.h4_c01113{height:51.855535pt;}
.h0_c01113{height:1122.520000pt;}
.h1_c01113{height:1122.666667pt;}
.w0_c01113{width:793.706667pt;}
.w1_c01113{width:794.000000pt;}
.x0_c01113{left:0.000000pt;}
.x4_c01113{left:113.385333pt;}
.x2_c01113{left:121.886667pt;}
.x1_c01113{left:127.796000pt;}
.x3_c01113{left:157.340000pt;}
.x5_c01113{left:386.888000pt;}
}





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

.ir_c01114:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_07cc864c70c5ebcd1a347605.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01114;src:url('chunks/assets/font_7678402e37bd6fb978c3431f.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01114;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01114;src:url('chunks/assets/font_06bdf14132e1b2f6feaf4b88.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls4_c01114{letter-spacing:0.000000px;}
.ls1_c01114{letter-spacing:0.087998px;}
.ls2_c01114{letter-spacing:0.098482px;}
.ls0_c01114{letter-spacing:0.104482px;}
.ls3_c01114{letter-spacing:26.690482px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01114{word-spacing:-33.713438px;}
.ws4_c01114{word-spacing:-26.575517px;}
.ws3_c01114{word-spacing:-26.487518px;}
.ws0_c01114{word-spacing:-18.769538px;}
.ws8_c01114{word-spacing:0.000000px;}
.ws5_c01114{word-spacing:0.043999px;}
.wsb_c01114{word-spacing:0.056767px;}
.ws9_c01114{word-spacing:0.073250px;}
.wsa_c01114{word-spacing:0.083734px;}
.ws2_c01114{word-spacing:0.175997px;}
.wsc_c01114{word-spacing:0.202963px;}
.ws6_c01114{word-spacing:0.213446px;}
.ws7_c01114{word-spacing:0.219446px;}
._0_c01114{margin-left:-3.825638px;}
._1_c01114{width:1.005737px;}
._3_c01114{width:53.283031px;}
._2_c01114{width:79.858548px;}
._4_c01114{width:133.452408px;}
.fc5_c01114{color:rgb(0,0,207);}
.fc4_c01114{color:rgb(79,153,5);}
.fc3_c01114{color:rgb(207,92,0);}
.fc2_c01114{color:rgb(33,74,135);}
.fc1_c01114{color:rgb(143,89,3);}
.fc0_c01114{color:rgb(0,0,0);}
.fs1_c01114{font-size:43.999200px;}
.fs0_c01114{font-size:59.775600px;}
.y0_c01114{bottom:0.000000px;}
.y2d_c01114{bottom:44.250000px;}
.y2c_c01114{bottom:96.919500px;}
.y2b_c01114{bottom:113.358000px;}
.y2a_c01114{bottom:129.796500px;}
.y29_c01114{bottom:146.235000px;}
.y28_c01114{bottom:162.673500px;}
.y27_c01114{bottom:179.112000px;}
.y26_c01114{bottom:195.550500px;}
.y25_c01114{bottom:211.989000px;}
.y24_c01114{bottom:228.427500px;}
.y23_c01114{bottom:244.866000px;}
.y22_c01114{bottom:261.304500px;}
.y21_c01114{bottom:294.180000px;}
.y20_c01114{bottom:310.618500px;}
.y1f_c01114{bottom:327.057000px;}
.y1e_c01114{bottom:359.934000px;}
.y1d_c01114{bottom:376.372500px;}
.y1c_c01114{bottom:392.811000px;}
.y1b_c01114{bottom:409.249500px;}
.y1a_c01114{bottom:425.688000px;}
.y19_c01114{bottom:442.125000px;}
.y18_c01114{bottom:458.563500px;}
.y17_c01114{bottom:507.879000px;}
.y16_c01114{bottom:524.317500px;}
.y15_c01114{bottom:540.756000px;}
.y14_c01114{bottom:557.194500px;}
.y13_c01114{bottom:573.633000px;}
.y12_c01114{bottom:590.071500px;}
.y11_c01114{bottom:606.508500px;}
.y10_c01114{bottom:622.947000px;}
.yf_c01114{bottom:639.385500px;}
.ye_c01114{bottom:655.824000px;}
.yd_c01114{bottom:672.262500px;}
.yc_c01114{bottom:688.701000px;}
.yb_c01114{bottom:705.139500px;}
.ya_c01114{bottom:721.578000px;}
.y9_c01114{bottom:738.016500px;}
.y8_c01114{bottom:754.455000px;}
.y7_c01114{bottom:787.330500px;}
.y6_c01114{bottom:803.769000px;}
.y5_c01114{bottom:853.084500px;}
.y4_c01114{bottom:869.523000px;}
.y3_c01114{bottom:885.588000px;}
.y2_c01114{bottom:1141.930500px;}
.y1_c01114{bottom:1159.863000px;}
.h3_c01114{height:35.190766px;}
.h4_c01114{height:36.007158px;}
.h2_c01114{height:52.332837px;}
.h0_c01114{height:1262.835000px;}
.h1_c01114{height:1263.000000px;}
.w0_c01114{width:892.920000px;}
.w1_c01114{width:893.250000px;}
.x0_c01114{left:0.000000px;}
.x1_c01114{left:127.558500px;}
.x2_c01114{left:137.122500px;}
.x3_c01114{left:143.770500px;}
.x4_c01114{left:177.007500px;}
.x5_c01114{left:435.249000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls4_c01114{letter-spacing:0.000000pt;}
.ls1_c01114{letter-spacing:0.078221pt;}
.ls2_c01114{letter-spacing:0.087539pt;}
.ls0_c01114{letter-spacing:0.092873pt;}
.ls3_c01114{letter-spacing:23.724873pt;}
.ws1_c01114{word-spacing:-29.967501pt;}
.ws4_c01114{word-spacing:-23.622682pt;}
.ws3_c01114{word-spacing:-23.544461pt;}
.ws0_c01114{word-spacing:-16.684034pt;}
.ws8_c01114{word-spacing:0.000000pt;}
.ws5_c01114{word-spacing:0.039110pt;}
.wsb_c01114{word-spacing:0.050460pt;}
.ws9_c01114{word-spacing:0.065111pt;}
.wsa_c01114{word-spacing:0.074430pt;}
.ws2_c01114{word-spacing:0.156442pt;}
.wsc_c01114{word-spacing:0.180412pt;}
.ws6_c01114{word-spacing:0.189730pt;}
.ws7_c01114{word-spacing:0.195063pt;}
._0_c01114{margin-left:-3.400567pt;}
._1_c01114{width:0.893988pt;}
._3_c01114{width:47.362694pt;}
._2_c01114{width:70.985376pt;}
._4_c01114{width:118.624363pt;}
.fs1_c01114{font-size:39.110400pt;}
.fs0_c01114{font-size:53.133867pt;}
.y0_c01114{bottom:0.000000pt;}
.y2d_c01114{bottom:39.333333pt;}
.y2c_c01114{bottom:86.150667pt;}
.y2b_c01114{bottom:100.762667pt;}
.y2a_c01114{bottom:115.374667pt;}
.y29_c01114{bottom:129.986667pt;}
.y28_c01114{bottom:144.598667pt;}
.y27_c01114{bottom:159.210667pt;}
.y26_c01114{bottom:173.822667pt;}
.y25_c01114{bottom:188.434667pt;}
.y24_c01114{bottom:203.046667pt;}
.y23_c01114{bottom:217.658667pt;}
.y22_c01114{bottom:232.270667pt;}
.y21_c01114{bottom:261.493333pt;}
.y20_c01114{bottom:276.105333pt;}
.y1f_c01114{bottom:290.717333pt;}
.y1e_c01114{bottom:319.941333pt;}
.y1d_c01114{bottom:334.553333pt;}
.y1c_c01114{bottom:349.165333pt;}
.y1b_c01114{bottom:363.777333pt;}
.y1a_c01114{bottom:378.389333pt;}
.y19_c01114{bottom:393.000000pt;}
.y18_c01114{bottom:407.612000pt;}
.y17_c01114{bottom:451.448000pt;}
.y16_c01114{bottom:466.060000pt;}
.y15_c01114{bottom:480.672000pt;}
.y14_c01114{bottom:495.284000pt;}
.y13_c01114{bottom:509.896000pt;}
.y12_c01114{bottom:524.508000pt;}
.y11_c01114{bottom:539.118667pt;}
.y10_c01114{bottom:553.730667pt;}
.yf_c01114{bottom:568.342667pt;}
.ye_c01114{bottom:582.954667pt;}
.yd_c01114{bottom:597.566667pt;}
.yc_c01114{bottom:612.178667pt;}
.yb_c01114{bottom:626.790667pt;}
.ya_c01114{bottom:641.402667pt;}
.y9_c01114{bottom:656.014667pt;}
.y8_c01114{bottom:670.626667pt;}
.y7_c01114{bottom:699.849333pt;}
.y6_c01114{bottom:714.461333pt;}
.y5_c01114{bottom:758.297333pt;}
.y4_c01114{bottom:772.909333pt;}
.y3_c01114{bottom:787.189333pt;}
.y2_c01114{bottom:1015.049333pt;}
.y1_c01114{bottom:1030.989333pt;}
.h3_c01114{height:31.280681pt;}
.h4_c01114{height:32.006363pt;}
.h2_c01114{height:46.518078pt;}
.h0_c01114{height:1122.520000pt;}
.h1_c01114{height:1122.666667pt;}
.w0_c01114{width:793.706667pt;}
.w1_c01114{width:794.000000pt;}
.x0_c01114{left:0.000000pt;}
.x1_c01114{left:113.385333pt;}
.x2_c01114{left:121.886667pt;}
.x3_c01114{left:127.796000pt;}
.x4_c01114{left:157.340000pt;}
.x5_c01114{left:386.888000pt;}
}





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

.ir_c01115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_0d44556be89dc6266d52b6bb.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01115;src:url('chunks/assets/font_a45ffe5407f7e2c83a63c351.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01115;src:url('chunks/assets/font_b5890a5c44e39fcc8545faaa.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01115;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01115;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01115{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.ls3_c01115{letter-spacing:0.000000px;}
.ls0_c01115{letter-spacing:0.087998px;}
.ls2_c01115{letter-spacing:0.098482px;}
.ls1_c01115{letter-spacing:0.104482px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01115{word-spacing:-26.575517px;}
.ws12_c01115{word-spacing:-26.487518px;}
.ws5_c01115{word-spacing:-20.503031px;}
.wsa_c01115{word-spacing:-19.965050px;}
.wsb_c01115{word-spacing:-19.905275px;}
.ws7_c01115{word-spacing:-18.769538px;}
.wse_c01115{word-spacing:-17.813129px;}
.wsf_c01115{word-spacing:-17.753353px;}
.wsc_c01115{word-spacing:-17.334924px;}
.ws4_c01115{word-spacing:-16.737168px;}
.ws10_c01115{word-spacing:-16.677392px;}
.ws6_c01115{word-spacing:-14.943900px;}
.ws9_c01115{word-spacing:-12.732203px;}
.wsd_c01115{word-spacing:-10.077432px;}
.ws1_c01115{word-spacing:-9.988424px;}
.ws3_c01115{word-spacing:-9.987499px;}
.ws16_c01115{word-spacing:0.000000px;}
.ws13_c01115{word-spacing:0.043999px;}
.ws11_c01115{word-spacing:0.175997px;}
.ws15_c01115{word-spacing:0.213446px;}
.ws14_c01115{word-spacing:0.219446px;}
.ws8_c01115{word-spacing:2.057856px;}
.ws0_c01115{word-spacing:43.038600px;}
._3_c01115{margin-left:-7.770828px;}
._2_c01115{margin-left:-4.727048px;}
._5_c01115{margin-left:-3.206504px;}
._0_c01115{margin-left:-1.549390px;}
._9_c01115{width:1.005737px;}
._7_c01115{width:16.976270px;}
._1_c01115{width:19.101084px;}
._4_c01115{width:22.356074px;}
._6_c01115{width:24.847646px;}
._8_c01115{width:26.540366px;}
.fc5_c01115{color:rgb(79,153,5);}
.fc3_c01115{color:rgb(33,74,135);}
.fc2_c01115{color:rgb(143,89,3);}
.fc4_c01115{color:rgb(207,92,0);}
.fc1_c01115{color:rgb(6,69,173);}
.fc0_c01115{color:rgb(0,0,0);}
.fs2_c01115{font-size:43.999200px;}
.fs1_c01115{font-size:59.775600px;}
.fs0_c01115{font-size:86.077200px;}
.y0_c01115{bottom:0.000000px;}
.y1f_c01115{bottom:44.250000px;}
.y1e_c01115{bottom:82.051500px;}
.y1d_c01115{bottom:98.490000px;}
.y1c_c01115{bottom:147.804000px;}
.y1b_c01115{bottom:164.242500px;}
.y1a_c01115{bottom:197.119500px;}
.y19_c01115{bottom:213.558000px;}
.y18_c01115{bottom:229.996500px;}
.y17_c01115{bottom:246.435000px;}
.y16_c01115{bottom:279.310500px;}
.y15_c01115{bottom:295.749000px;}
.y14_c01115{bottom:312.187500px;}
.y13_c01115{bottom:328.626000px;}
.y12_c01115{bottom:345.064500px;}
.y11_c01115{bottom:361.503000px;}
.y10_c01115{bottom:377.941500px;}
.yf_c01115{bottom:394.380000px;}
.ye_c01115{bottom:410.445000px;}
.yd_c01115{bottom:458.862000px;}
.yc_c01115{bottom:476.794500px;}
.yb_c01115{bottom:494.727000px;}
.ya_c01115{bottom:512.659500px;}
.y9_c01115{bottom:530.593500px;}
.y8_c01115{bottom:548.526000px;}
.y7_c01115{bottom:566.458500px;}
.y6_c01115{bottom:593.442000px;}
.y5_c01115{bottom:620.425500px;}
.y4_c01115{bottom:638.358000px;}
.y3_c01115{bottom:665.341500px;}
.y2_c01115{bottom:692.325000px;}
.y1_c01115{bottom:734.719500px;}
.h5_c01115{height:35.190766px;}
.h6_c01115{height:36.007158px;}
.h3_c01115{height:40.511979px;}
.h4_c01115{height:52.332837px;}
.h2_c01115{height:58.337477px;}
.h0_c01115{height:1262.835000px;}
.h1_c01115{height:1263.000000px;}
.w0_c01115{width:892.920000px;}
.w1_c01115{width:893.250000px;}
.x0_c01115{left:0.000000px;}
.x1_c01115{left:127.558500px;}
.x2_c01115{left:137.122500px;}
.x3_c01115{left:435.249000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls3_c01115{letter-spacing:0.000000pt;}
.ls0_c01115{letter-spacing:0.078221pt;}
.ls2_c01115{letter-spacing:0.087539pt;}
.ls1_c01115{letter-spacing:0.092873pt;}
.ws2_c01115{word-spacing:-23.622682pt;}
.ws12_c01115{word-spacing:-23.544461pt;}
.ws5_c01115{word-spacing:-18.224916pt;}
.wsa_c01115{word-spacing:-17.746711pt;}
.wsb_c01115{word-spacing:-17.693578pt;}
.ws7_c01115{word-spacing:-16.684034pt;}
.wse_c01115{word-spacing:-15.833892pt;}
.wsf_c01115{word-spacing:-15.780758pt;}
.wsc_c01115{word-spacing:-15.408821pt;}
.ws4_c01115{word-spacing:-14.877483pt;}
.ws10_c01115{word-spacing:-14.824349pt;}
.ws6_c01115{word-spacing:-13.283467pt;}
.ws9_c01115{word-spacing:-11.317514pt;}
.wsd_c01115{word-spacing:-8.957717pt;}
.ws1_c01115{word-spacing:-8.878599pt;}
.ws3_c01115{word-spacing:-8.877777pt;}
.ws16_c01115{word-spacing:0.000000pt;}
.ws13_c01115{word-spacing:0.039110pt;}
.ws11_c01115{word-spacing:0.156442pt;}
.ws15_c01115{word-spacing:0.189730pt;}
.ws14_c01115{word-spacing:0.195063pt;}
.ws8_c01115{word-spacing:1.829205pt;}
.ws0_c01115{word-spacing:38.256533pt;}
._3_c01115{margin-left:-6.907403pt;}
._2_c01115{margin-left:-4.201821pt;}
._5_c01115{margin-left:-2.850226pt;}
._0_c01115{margin-left:-1.377235pt;}
._9_c01115{width:0.893988pt;}
._7_c01115{width:15.090018pt;}
._1_c01115{width:16.978741pt;}
._4_c01115{width:19.872066pt;}
._6_c01115{width:22.086797pt;}
._8_c01115{width:23.591437pt;}
.fs2_c01115{font-size:39.110400pt;}
.fs1_c01115{font-size:53.133867pt;}
.fs0_c01115{font-size:76.513067pt;}
.y0_c01115{bottom:0.000000pt;}
.y1f_c01115{bottom:39.333333pt;}
.y1e_c01115{bottom:72.934667pt;}
.y1d_c01115{bottom:87.546667pt;}
.y1c_c01115{bottom:131.381333pt;}
.y1b_c01115{bottom:145.993333pt;}
.y1a_c01115{bottom:175.217333pt;}
.y19_c01115{bottom:189.829333pt;}
.y18_c01115{bottom:204.441333pt;}
.y17_c01115{bottom:219.053333pt;}
.y16_c01115{bottom:248.276000pt;}
.y15_c01115{bottom:262.888000pt;}
.y14_c01115{bottom:277.500000pt;}
.y13_c01115{bottom:292.112000pt;}
.y12_c01115{bottom:306.724000pt;}
.y11_c01115{bottom:321.336000pt;}
.y10_c01115{bottom:335.948000pt;}
.yf_c01115{bottom:350.560000pt;}
.ye_c01115{bottom:364.840000pt;}
.yd_c01115{bottom:407.877333pt;}
.yc_c01115{bottom:423.817333pt;}
.yb_c01115{bottom:439.757333pt;}
.ya_c01115{bottom:455.697333pt;}
.y9_c01115{bottom:471.638667pt;}
.y8_c01115{bottom:487.578667pt;}
.y7_c01115{bottom:503.518667pt;}
.y6_c01115{bottom:527.504000pt;}
.y5_c01115{bottom:551.489333pt;}
.y4_c01115{bottom:567.429333pt;}
.y3_c01115{bottom:591.414667pt;}
.y2_c01115{bottom:615.400000pt;}
.y1_c01115{bottom:653.084000pt;}
.h5_c01115{height:31.280681pt;}
.h6_c01115{height:32.006363pt;}
.h3_c01115{height:36.010648pt;}
.h4_c01115{height:46.518078pt;}
.h2_c01115{height:51.855535pt;}
.h0_c01115{height:1122.520000pt;}
.h1_c01115{height:1122.666667pt;}
.w0_c01115{width:793.706667pt;}
.w1_c01115{width:794.000000pt;}
.x0_c01115{left:0.000000pt;}
.x1_c01115{left:113.385333pt;}
.x2_c01115{left:121.886667pt;}
.x3_c01115{left:386.888000pt;}
}





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

.ir_c01116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_b689955aec6e90cae8aaaf17.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01116;src:url('chunks/assets/font_7798422351bf64272b53a115.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01116;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01116;src:url('chunks/assets/font_fda369730bd6f50cb56151f8.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01116{vertical-align:0.000000px;}
.ls3_c01116{letter-spacing:0.000000px;}
.ls0_c01116{letter-spacing:0.087998px;}
.ls2_c01116{letter-spacing:0.098482px;}
.ls1_c01116{letter-spacing:0.104482px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01116{word-spacing:-26.575517px;}
.ws5_c01116{word-spacing:-26.487518px;}
.ws2_c01116{word-spacing:0.000000px;}
.ws6_c01116{word-spacing:0.043999px;}
.ws3_c01116{word-spacing:0.053933px;}
.ws7_c01116{word-spacing:0.056767px;}
.ws4_c01116{word-spacing:0.070416px;}
.ws0_c01116{word-spacing:0.175997px;}
.ws8_c01116{word-spacing:0.213446px;}
._0_c01116{width:1.028438px;}
.fc5_c01116{color:rgb(0,0,207);}
.fc4_c01116{color:rgb(207,92,0);}
.fc3_c01116{color:rgb(79,153,5);}
.fc2_c01116{color:rgb(33,74,135);}
.fc1_c01116{color:rgb(0,0,0);}
.fc0_c01116{color:rgb(143,89,3);}
.fs0_c01116{font-size:43.999200px;}
.fs1_c01116{font-size:59.775600px;}
.y0_c01116{bottom:0.000000px;}
.y2d_c01116{bottom:44.250000px;}
.y2c_c01116{bottom:370.822500px;}
.y2b_c01116{bottom:387.259500px;}
.y2a_c01116{bottom:403.698000px;}
.y29_c01116{bottom:420.136500px;}
.y28_c01116{bottom:436.575000px;}
.y27_c01116{bottom:453.013500px;}
.y26_c01116{bottom:469.452000px;}
.y25_c01116{bottom:485.890500px;}
.y24_c01116{bottom:502.329000px;}
.y23_c01116{bottom:518.767500px;}
.y22_c01116{bottom:535.206000px;}
.y21_c01116{bottom:568.081500px;}
.y20_c01116{bottom:584.520000px;}
.y1f_c01116{bottom:600.958500px;}
.y1e_c01116{bottom:633.835500px;}
.y1d_c01116{bottom:650.274000px;}
.y1c_c01116{bottom:666.712500px;}
.y1b_c01116{bottom:683.151000px;}
.y1a_c01116{bottom:699.589500px;}
.y19_c01116{bottom:716.028000px;}
.y18_c01116{bottom:732.465000px;}
.y17_c01116{bottom:748.903500px;}
.y16_c01116{bottom:765.342000px;}
.y15_c01116{bottom:781.780500px;}
.y14_c01116{bottom:798.219000px;}
.y13_c01116{bottom:814.657500px;}
.y12_c01116{bottom:831.096000px;}
.y11_c01116{bottom:847.534500px;}
.y10_c01116{bottom:863.973000px;}
.yf_c01116{bottom:880.411500px;}
.ye_c01116{bottom:896.848500px;}
.yd_c01116{bottom:913.287000px;}
.yc_c01116{bottom:929.725500px;}
.yb_c01116{bottom:946.164000px;}
.ya_c01116{bottom:962.602500px;}
.y9_c01116{bottom:979.041000px;}
.y8_c01116{bottom:995.479500px;}
.y7_c01116{bottom:1011.918000px;}
.y6_c01116{bottom:1028.356500px;}
.y5_c01116{bottom:1044.795000px;}
.y4_c01116{bottom:1061.232000px;}
.y3_c01116{bottom:1110.547500px;}
.y2_c01116{bottom:1126.986000px;}
.y1_c01116{bottom:1143.424500px;}
.h2_c01116{height:35.190766px;}
.h3_c01116{height:36.007158px;}
.h4_c01116{height:52.332837px;}
.h0_c01116{height:1262.835000px;}
.h1_c01116{height:1263.000000px;}
.w0_c01116{width:892.920000px;}
.w1_c01116{width:893.250000px;}
.x0_c01116{left:0.000000px;}
.x1_c01116{left:137.122500px;}
.x2_c01116{left:143.770500px;}
.x6_c01116{left:177.007500px;}
.x5_c01116{left:230.185500px;}
.x3_c01116{left:243.480000px;}
.x4_c01116{left:276.715500px;}
.x7_c01116{left:435.249000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls3_c01116{letter-spacing:0.000000pt;}
.ls0_c01116{letter-spacing:0.078221pt;}
.ls2_c01116{letter-spacing:0.087539pt;}
.ls1_c01116{letter-spacing:0.092873pt;}
.ws1_c01116{word-spacing:-23.622682pt;}
.ws5_c01116{word-spacing:-23.544461pt;}
.ws2_c01116{word-spacing:0.000000pt;}
.ws6_c01116{word-spacing:0.039110pt;}
.ws3_c01116{word-spacing:0.047940pt;}
.ws7_c01116{word-spacing:0.050460pt;}
.ws4_c01116{word-spacing:0.062592pt;}
.ws0_c01116{word-spacing:0.156442pt;}
.ws8_c01116{word-spacing:0.189730pt;}
._0_c01116{width:0.914167pt;}
.fs0_c01116{font-size:39.110400pt;}
.fs1_c01116{font-size:53.133867pt;}
.y0_c01116{bottom:0.000000pt;}
.y2d_c01116{bottom:39.333333pt;}
.y2c_c01116{bottom:329.620000pt;}
.y2b_c01116{bottom:344.230667pt;}
.y2a_c01116{bottom:358.842667pt;}
.y29_c01116{bottom:373.454667pt;}
.y28_c01116{bottom:388.066667pt;}
.y27_c01116{bottom:402.678667pt;}
.y26_c01116{bottom:417.290667pt;}
.y25_c01116{bottom:431.902667pt;}
.y24_c01116{bottom:446.514667pt;}
.y23_c01116{bottom:461.126667pt;}
.y22_c01116{bottom:475.738667pt;}
.y21_c01116{bottom:504.961333pt;}
.y20_c01116{bottom:519.573333pt;}
.y1f_c01116{bottom:534.185333pt;}
.y1e_c01116{bottom:563.409333pt;}
.y1d_c01116{bottom:578.021333pt;}
.y1c_c01116{bottom:592.633333pt;}
.y1b_c01116{bottom:607.245333pt;}
.y1a_c01116{bottom:621.857333pt;}
.y19_c01116{bottom:636.469333pt;}
.y18_c01116{bottom:651.080000pt;}
.y17_c01116{bottom:665.692000pt;}
.y16_c01116{bottom:680.304000pt;}
.y15_c01116{bottom:694.916000pt;}
.y14_c01116{bottom:709.528000pt;}
.y13_c01116{bottom:724.140000pt;}
.y12_c01116{bottom:738.752000pt;}
.y11_c01116{bottom:753.364000pt;}
.y10_c01116{bottom:767.976000pt;}
.yf_c01116{bottom:782.588000pt;}
.ye_c01116{bottom:797.198667pt;}
.yd_c01116{bottom:811.810667pt;}
.yc_c01116{bottom:826.422667pt;}
.yb_c01116{bottom:841.034667pt;}
.ya_c01116{bottom:855.646667pt;}
.y9_c01116{bottom:870.258667pt;}
.y8_c01116{bottom:884.870667pt;}
.y7_c01116{bottom:899.482667pt;}
.y6_c01116{bottom:914.094667pt;}
.y5_c01116{bottom:928.706667pt;}
.y4_c01116{bottom:943.317333pt;}
.y3_c01116{bottom:987.153333pt;}
.y2_c01116{bottom:1001.765333pt;}
.y1_c01116{bottom:1016.377333pt;}
.h2_c01116{height:31.280681pt;}
.h3_c01116{height:32.006363pt;}
.h4_c01116{height:46.518078pt;}
.h0_c01116{height:1122.520000pt;}
.h1_c01116{height:1122.666667pt;}
.w0_c01116{width:793.706667pt;}
.w1_c01116{width:794.000000pt;}
.x0_c01116{left:0.000000pt;}
.x1_c01116{left:121.886667pt;}
.x2_c01116{left:127.796000pt;}
.x6_c01116{left:157.340000pt;}
.x5_c01116{left:204.609333pt;}
.x3_c01116{left:216.426667pt;}
.x4_c01116{left:245.969333pt;}
.x7_c01116{left:386.888000pt;}
}





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

.ir_c01117:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_ddbaa5b6c14eb660657e5fd9.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01117;src:url('chunks/assets/font_e3927554f3e9178adaca920c.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01117;src:url('chunks/assets/font_325880d6a5f55132a1144a37.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01117;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01117{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls3_c01117{letter-spacing:0.000000px;}
.ls0_c01117{letter-spacing:0.087998px;}
.ls2_c01117{letter-spacing:0.098482px;}
.ls1_c01117{letter-spacing:0.104482px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01117{word-spacing:-33.713438px;}
.ws2_c01117{word-spacing:-26.575517px;}
.ws10_c01117{word-spacing:-26.487518px;}
.wsb_c01117{word-spacing:-21.553319px;}
.wsa_c01117{word-spacing:-21.519216px;}
.ws7_c01117{word-spacing:-18.769538px;}
.ws5_c01117{word-spacing:-16.916495px;}
.ws9_c01117{word-spacing:-16.019861px;}
.ws6_c01117{word-spacing:-14.943900px;}
.wsc_c01117{word-spacing:-14.107042px;}
.ws4_c01117{word-spacing:-13.150632px;}
.wsd_c01117{word-spacing:-12.074671px;}
.ws1_c01117{word-spacing:-9.988424px;}
.ws3_c01117{word-spacing:-9.987499px;}
.ws8_c01117{word-spacing:-4.536144px;}
.ws14_c01117{word-spacing:0.000000px;}
.ws11_c01117{word-spacing:0.043999px;}
.ws17_c01117{word-spacing:0.056767px;}
.ws15_c01117{word-spacing:0.073250px;}
.ws16_c01117{word-spacing:0.083734px;}
.wsf_c01117{word-spacing:0.175997px;}
.ws18_c01117{word-spacing:0.202963px;}
.ws12_c01117{word-spacing:0.213446px;}
.ws13_c01117{word-spacing:0.219446px;}
.ws0_c01117{word-spacing:43.038600px;}
._4_c01117{margin-left:-3.825638px;}
._0_c01117{margin-left:-1.549390px;}
._5_c01117{width:1.005737px;}
._2_c01117{width:19.930500px;}
._1_c01117{width:23.638548px;}
._3_c01117{width:40.109428px;}
._7_c01117{width:53.283031px;}
._6_c01117{width:79.858548px;}
._8_c01117{width:133.452408px;}
.fc6_c01117{color:rgb(0,0,207);}
.fc5_c01117{color:rgb(79,153,5);}
.fc3_c01117{color:rgb(33,74,135);}
.fc2_c01117{color:rgb(143,89,3);}
.fc4_c01117{color:rgb(207,92,0);}
.fc1_c01117{color:rgb(6,69,173);}
.fc0_c01117{color:rgb(0,0,0);}
.fs2_c01117{font-size:43.999200px;}
.fs1_c01117{font-size:59.775600px;}
.fs0_c01117{font-size:86.077200px;}
.y0_c01117{bottom:0.000000px;}
.y20_c01117{bottom:44.250000px;}
.y1f_c01117{bottom:86.982000px;}
.y1e_c01117{bottom:103.420500px;}
.y1d_c01117{bottom:119.859000px;}
.y1c_c01117{bottom:136.297500px;}
.y1b_c01117{bottom:152.736000px;}
.y1a_c01117{bottom:169.174500px;}
.y19_c01117{bottom:185.613000px;}
.y18_c01117{bottom:202.051500px;}
.y17_c01117{bottom:218.490000px;}
.y16_c01117{bottom:234.927000px;}
.y15_c01117{bottom:251.365500px;}
.y14_c01117{bottom:267.804000px;}
.y13_c01117{bottom:284.242500px;}
.y12_c01117{bottom:300.681000px;}
.y11_c01117{bottom:333.558000px;}
.y10_c01117{bottom:349.996500px;}
.yf_c01117{bottom:399.310500px;}
.ye_c01117{bottom:415.749000px;}
.yd_c01117{bottom:431.814000px;}
.yc_c01117{bottom:477.118500px;}
.yb_c01117{bottom:495.051000px;}
.ya_c01117{bottom:512.983500px;}
.y9_c01117{bottom:530.916000px;}
.y8_c01117{bottom:548.848500px;}
.y7_c01117{bottom:566.781000px;}
.y6_c01117{bottom:593.728500px;}
.y5_c01117{bottom:620.674500px;}
.y4_c01117{bottom:638.607000px;}
.y3_c01117{bottom:665.553000px;}
.y2_c01117{bottom:692.500500px;}
.y1_c01117{bottom:734.839500px;}
.h5_c01117{height:35.190766px;}
.h6_c01117{height:36.007158px;}
.h3_c01117{height:40.511979px;}
.h4_c01117{height:52.332837px;}
.h2_c01117{height:58.337477px;}
.h0_c01117{height:1262.835000px;}
.h1_c01117{height:1263.000000px;}
.w0_c01117{width:892.920000px;}
.w1_c01117{width:893.250000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:127.558500px;}
.x2_c01117{left:137.122500px;}
.x3_c01117{left:143.770500px;}
.x4_c01117{left:435.249000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls3_c01117{letter-spacing:0.000000pt;}
.ls0_c01117{letter-spacing:0.078221pt;}
.ls2_c01117{letter-spacing:0.087539pt;}
.ls1_c01117{letter-spacing:0.092873pt;}
.wse_c01117{word-spacing:-29.967501pt;}
.ws2_c01117{word-spacing:-23.622682pt;}
.ws10_c01117{word-spacing:-23.544461pt;}
.wsb_c01117{word-spacing:-19.158506pt;}
.wsa_c01117{word-spacing:-19.128192pt;}
.ws7_c01117{word-spacing:-16.684034pt;}
.ws5_c01117{word-spacing:-15.036884pt;}
.ws9_c01117{word-spacing:-14.239876pt;}
.ws6_c01117{word-spacing:-13.283467pt;}
.wsc_c01117{word-spacing:-12.539593pt;}
.ws4_c01117{word-spacing:-11.689451pt;}
.wsd_c01117{word-spacing:-10.733041pt;}
.ws1_c01117{word-spacing:-8.878599pt;}
.ws3_c01117{word-spacing:-8.877777pt;}
.ws8_c01117{word-spacing:-4.032128pt;}
.ws14_c01117{word-spacing:0.000000pt;}
.ws11_c01117{word-spacing:0.039110pt;}
.ws17_c01117{word-spacing:0.050460pt;}
.ws15_c01117{word-spacing:0.065111pt;}
.ws16_c01117{word-spacing:0.074430pt;}
.wsf_c01117{word-spacing:0.156442pt;}
.ws18_c01117{word-spacing:0.180412pt;}
.ws12_c01117{word-spacing:0.189730pt;}
.ws13_c01117{word-spacing:0.195063pt;}
.ws0_c01117{word-spacing:38.256533pt;}
._4_c01117{margin-left:-3.400567pt;}
._0_c01117{margin-left:-1.377235pt;}
._5_c01117{width:0.893988pt;}
._2_c01117{width:17.716000pt;}
._1_c01117{width:21.012043pt;}
._3_c01117{width:35.652825pt;}
._7_c01117{width:47.362694pt;}
._6_c01117{width:70.985376pt;}
._8_c01117{width:118.624363pt;}
.fs2_c01117{font-size:39.110400pt;}
.fs1_c01117{font-size:53.133867pt;}
.fs0_c01117{font-size:76.513067pt;}
.y0_c01117{bottom:0.000000pt;}
.y20_c01117{bottom:39.333333pt;}
.y1f_c01117{bottom:77.317333pt;}
.y1e_c01117{bottom:91.929333pt;}
.y1d_c01117{bottom:106.541333pt;}
.y1c_c01117{bottom:121.153333pt;}
.y1b_c01117{bottom:135.765333pt;}
.y1a_c01117{bottom:150.377333pt;}
.y19_c01117{bottom:164.989333pt;}
.y18_c01117{bottom:179.601333pt;}
.y17_c01117{bottom:194.213333pt;}
.y16_c01117{bottom:208.824000pt;}
.y15_c01117{bottom:223.436000pt;}
.y14_c01117{bottom:238.048000pt;}
.y13_c01117{bottom:252.660000pt;}
.y12_c01117{bottom:267.272000pt;}
.y11_c01117{bottom:296.496000pt;}
.y10_c01117{bottom:311.108000pt;}
.yf_c01117{bottom:354.942667pt;}
.ye_c01117{bottom:369.554667pt;}
.yd_c01117{bottom:383.834667pt;}
.yc_c01117{bottom:424.105333pt;}
.yb_c01117{bottom:440.045333pt;}
.ya_c01117{bottom:455.985333pt;}
.y9_c01117{bottom:471.925333pt;}
.y8_c01117{bottom:487.865333pt;}
.y7_c01117{bottom:503.805333pt;}
.y6_c01117{bottom:527.758667pt;}
.y5_c01117{bottom:551.710667pt;}
.y4_c01117{bottom:567.650667pt;}
.y3_c01117{bottom:591.602667pt;}
.y2_c01117{bottom:615.556000pt;}
.y1_c01117{bottom:653.190667pt;}
.h5_c01117{height:31.280681pt;}
.h6_c01117{height:32.006363pt;}
.h3_c01117{height:36.010648pt;}
.h4_c01117{height:46.518078pt;}
.h2_c01117{height:51.855535pt;}
.h0_c01117{height:1122.520000pt;}
.h1_c01117{height:1122.666667pt;}
.w0_c01117{width:793.706667pt;}
.w1_c01117{width:794.000000pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:113.385333pt;}
.x2_c01117{left:121.886667pt;}
.x3_c01117{left:127.796000pt;}
.x4_c01117{left:386.888000pt;}
}





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

.ir_c01118:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_f9c9dfc02f18023890e56ce6.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01118;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01118;src:url('chunks/assets/font_59f91a0959a580f65dbb9d81.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01118;src:url('chunks/assets/font_b04dc20c28253f4c5d6a3743.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01118;src:url('chunks/assets/font_6fa91127ebe600cff7077e65.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.ls4_c01118{letter-spacing:0.000000px;}
.ls0_c01118{letter-spacing:0.087998px;}
.ls1_c01118{letter-spacing:0.098482px;}
.ls3_c01118{letter-spacing:0.104482px;}
.ls2_c01118{letter-spacing:26.690482px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01118{word-spacing:-26.575517px;}
.ws5_c01118{word-spacing:-26.487518px;}
.ws11_c01118{word-spacing:-21.553319px;}
.ws10_c01118{word-spacing:-21.519216px;}
.wsb_c01118{word-spacing:-18.829314px;}
.wsd_c01118{word-spacing:-18.769538px;}
.wsf_c01118{word-spacing:-17.633802px;}
.wsa_c01118{word-spacing:-15.003676px;}
.wsc_c01118{word-spacing:-14.943900px;}
.ws8_c01118{word-spacing:-9.988424px;}
.ws9_c01118{word-spacing:-9.987499px;}
.wse_c01118{word-spacing:-7.686144px;}
.ws4_c01118{word-spacing:0.000000px;}
.ws1_c01118{word-spacing:0.043999px;}
.ws0_c01118{word-spacing:0.073250px;}
.ws6_c01118{word-spacing:0.213446px;}
.ws2_c01118{word-spacing:0.219446px;}
.ws7_c01118{word-spacing:43.038600px;}
._2_c01118{margin-left:-1.549390px;}
._1_c01118{width:1.047206px;}
._3_c01118{width:19.935592px;}
._0_c01118{width:79.858548px;}
.fc5_c01118{color:rgb(79,153,5);}
.fc4_c01118{color:rgb(143,89,3);}
.fc6_c01118{color:rgb(6,69,173);}
.fc3_c01118{color:rgb(207,92,0);}
.fc2_c01118{color:rgb(0,0,0);}
.fc1_c01118{color:rgb(0,0,207);}
.fc0_c01118{color:rgb(33,74,135);}
.fs0_c01118{font-size:43.999200px;}
.fs2_c01118{font-size:59.775600px;}
.fs1_c01118{font-size:86.077200px;}
.y0_c01118{bottom:0.000000px;}
.y20_c01118{bottom:44.250000px;}
.y1f_c01118{bottom:82.051500px;}
.y1e_c01118{bottom:99.984000px;}
.y1d_c01118{bottom:126.823500px;}
.y1c_c01118{bottom:153.664500px;}
.y1b_c01118{bottom:171.597000px;}
.y1a_c01118{bottom:198.438000px;}
.y19_c01118{bottom:225.277500px;}
.y18_c01118{bottom:267.492000px;}
.y17_c01118{bottom:732.465000px;}
.y16_c01118{bottom:748.903500px;}
.y15_c01118{bottom:765.342000px;}
.y14_c01118{bottom:781.780500px;}
.y13_c01118{bottom:798.219000px;}
.y12_c01118{bottom:814.657500px;}
.y11_c01118{bottom:831.096000px;}
.y10_c01118{bottom:847.534500px;}
.yf_c01118{bottom:863.973000px;}
.ye_c01118{bottom:880.411500px;}
.yd_c01118{bottom:896.848500px;}
.yc_c01118{bottom:929.725500px;}
.yb_c01118{bottom:946.164000px;}
.ya_c01118{bottom:962.602500px;}
.y9_c01118{bottom:995.479500px;}
.y8_c01118{bottom:1011.918000px;}
.y7_c01118{bottom:1028.356500px;}
.y6_c01118{bottom:1044.795000px;}
.y5_c01118{bottom:1061.232000px;}
.y4_c01118{bottom:1077.670500px;}
.y3_c01118{bottom:1094.109000px;}
.y2_c01118{bottom:1143.424500px;}
.y1_c01118{bottom:1159.863000px;}
.h3_c01118{height:35.190766px;}
.h2_c01118{height:36.007158px;}
.h5_c01118{height:40.511979px;}
.h6_c01118{height:52.332837px;}
.h4_c01118{height:58.337477px;}
.h0_c01118{height:1262.835000px;}
.h1_c01118{height:1263.000000px;}
.w0_c01118{width:892.920000px;}
.w1_c01118{width:893.250000px;}
.x0_c01118{left:0.000000px;}
.x4_c01118{left:127.558500px;}
.x2_c01118{left:137.122500px;}
.x1_c01118{left:143.770500px;}
.x3_c01118{left:177.007500px;}
.x5_c01118{left:435.249000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls4_c01118{letter-spacing:0.000000pt;}
.ls0_c01118{letter-spacing:0.078221pt;}
.ls1_c01118{letter-spacing:0.087539pt;}
.ls3_c01118{letter-spacing:0.092873pt;}
.ls2_c01118{letter-spacing:23.724873pt;}
.ws3_c01118{word-spacing:-23.622682pt;}
.ws5_c01118{word-spacing:-23.544461pt;}
.ws11_c01118{word-spacing:-19.158506pt;}
.ws10_c01118{word-spacing:-19.128192pt;}
.wsb_c01118{word-spacing:-16.737168pt;}
.wsd_c01118{word-spacing:-16.684034pt;}
.wsf_c01118{word-spacing:-15.674491pt;}
.wsa_c01118{word-spacing:-13.336601pt;}
.wsc_c01118{word-spacing:-13.283467pt;}
.ws8_c01118{word-spacing:-8.878599pt;}
.ws9_c01118{word-spacing:-8.877777pt;}
.wse_c01118{word-spacing:-6.832128pt;}
.ws4_c01118{word-spacing:0.000000pt;}
.ws1_c01118{word-spacing:0.039110pt;}
.ws0_c01118{word-spacing:0.065111pt;}
.ws6_c01118{word-spacing:0.189730pt;}
.ws2_c01118{word-spacing:0.195063pt;}
.ws7_c01118{word-spacing:38.256533pt;}
._2_c01118{margin-left:-1.377235pt;}
._1_c01118{width:0.930850pt;}
._3_c01118{width:17.720526pt;}
._0_c01118{width:70.985376pt;}
.fs0_c01118{font-size:39.110400pt;}
.fs2_c01118{font-size:53.133867pt;}
.fs1_c01118{font-size:76.513067pt;}
.y0_c01118{bottom:0.000000pt;}
.y20_c01118{bottom:39.333333pt;}
.y1f_c01118{bottom:72.934667pt;}
.y1e_c01118{bottom:88.874667pt;}
.y1d_c01118{bottom:112.732000pt;}
.y1c_c01118{bottom:136.590667pt;}
.y1b_c01118{bottom:152.530667pt;}
.y1a_c01118{bottom:176.389333pt;}
.y19_c01118{bottom:200.246667pt;}
.y18_c01118{bottom:237.770667pt;}
.y17_c01118{bottom:651.080000pt;}
.y16_c01118{bottom:665.692000pt;}
.y15_c01118{bottom:680.304000pt;}
.y14_c01118{bottom:694.916000pt;}
.y13_c01118{bottom:709.528000pt;}
.y12_c01118{bottom:724.140000pt;}
.y11_c01118{bottom:738.752000pt;}
.y10_c01118{bottom:753.364000pt;}
.yf_c01118{bottom:767.976000pt;}
.ye_c01118{bottom:782.588000pt;}
.yd_c01118{bottom:797.198667pt;}
.yc_c01118{bottom:826.422667pt;}
.yb_c01118{bottom:841.034667pt;}
.ya_c01118{bottom:855.646667pt;}
.y9_c01118{bottom:884.870667pt;}
.y8_c01118{bottom:899.482667pt;}
.y7_c01118{bottom:914.094667pt;}
.y6_c01118{bottom:928.706667pt;}
.y5_c01118{bottom:943.317333pt;}
.y4_c01118{bottom:957.929333pt;}
.y3_c01118{bottom:972.541333pt;}
.y2_c01118{bottom:1016.377333pt;}
.y1_c01118{bottom:1030.989333pt;}
.h3_c01118{height:31.280681pt;}
.h2_c01118{height:32.006363pt;}
.h5_c01118{height:36.010648pt;}
.h6_c01118{height:46.518078pt;}
.h4_c01118{height:51.855535pt;}
.h0_c01118{height:1122.520000pt;}
.h1_c01118{height:1122.666667pt;}
.w0_c01118{width:793.706667pt;}
.w1_c01118{width:794.000000pt;}
.x0_c01118{left:0.000000pt;}
.x4_c01118{left:113.385333pt;}
.x2_c01118{left:121.886667pt;}
.x1_c01118{left:127.796000pt;}
.x3_c01118{left:157.340000pt;}
.x5_c01118{left:386.888000pt;}
}





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

.ir_c01119:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_3b634c4d3f6b681f1cb03506.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01119;src:url('chunks/assets/font_96ec1ea5d764414b091c3e3b.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01119;src:url('chunks/assets/font_6f588d5d4fe49acd5dcd5bcd.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01119{vertical-align:0.000000px;}
.ls4_c01119{letter-spacing:0.000000px;}
.ls1_c01119{letter-spacing:0.087998px;}
.ls2_c01119{letter-spacing:0.098482px;}
.ls0_c01119{letter-spacing:0.104482px;}
.ls3_c01119{letter-spacing:26.690482px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01119{word-spacing:-33.713438px;}
.ws6_c01119{word-spacing:-26.575517px;}
.ws5_c01119{word-spacing:-26.487518px;}
.ws2_c01119{word-spacing:-18.769538px;}
.ws0_c01119{word-spacing:-14.107042px;}
.ws1_c01119{word-spacing:-12.074671px;}
.wsa_c01119{word-spacing:0.000000px;}
.ws7_c01119{word-spacing:0.043999px;}
.wsd_c01119{word-spacing:0.056767px;}
.wsb_c01119{word-spacing:0.073250px;}
.wsc_c01119{word-spacing:0.083734px;}
.ws4_c01119{word-spacing:0.175997px;}
.wse_c01119{word-spacing:0.202963px;}
.ws8_c01119{word-spacing:0.213446px;}
.ws9_c01119{word-spacing:0.219446px;}
._2_c01119{margin-left:-3.825638px;}
._3_c01119{width:1.005737px;}
._0_c01119{width:20.742133px;}
._1_c01119{width:40.109428px;}
._5_c01119{width:53.283031px;}
._4_c01119{width:79.858548px;}
._7_c01119{width:106.786058px;}
._6_c01119{width:133.452408px;}
.fc5_c01119{color:rgb(0,0,207);}
.fc4_c01119{color:rgb(79,153,5);}
.fc3_c01119{color:rgb(207,92,0);}
.fc2_c01119{color:rgb(33,74,135);}
.fc1_c01119{color:rgb(143,89,3);}
.fc0_c01119{color:rgb(0,0,0);}
.fs1_c01119{font-size:43.999200px;}
.fs0_c01119{font-size:59.775600px;}
.y0_c01119{bottom:0.000000px;}
.y2f_c01119{bottom:44.250000px;}
.y2e_c01119{bottom:96.919500px;}
.y2d_c01119{bottom:113.358000px;}
.y2c_c01119{bottom:129.796500px;}
.y2b_c01119{bottom:146.235000px;}
.y2a_c01119{bottom:162.673500px;}
.y29_c01119{bottom:179.112000px;}
.y28_c01119{bottom:195.550500px;}
.y27_c01119{bottom:211.989000px;}
.y26_c01119{bottom:228.427500px;}
.y25_c01119{bottom:244.866000px;}
.y24_c01119{bottom:261.304500px;}
.y23_c01119{bottom:294.180000px;}
.y22_c01119{bottom:310.618500px;}
.y21_c01119{bottom:327.057000px;}
.y20_c01119{bottom:359.934000px;}
.y1f_c01119{bottom:376.372500px;}
.y1e_c01119{bottom:392.811000px;}
.y1d_c01119{bottom:409.249500px;}
.y1c_c01119{bottom:425.688000px;}
.y1b_c01119{bottom:442.125000px;}
.y1a_c01119{bottom:458.563500px;}
.y19_c01119{bottom:507.879000px;}
.y18_c01119{bottom:524.317500px;}
.y17_c01119{bottom:540.756000px;}
.y16_c01119{bottom:557.194500px;}
.y15_c01119{bottom:573.633000px;}
.y14_c01119{bottom:590.071500px;}
.y13_c01119{bottom:606.508500px;}
.y12_c01119{bottom:622.947000px;}
.y11_c01119{bottom:639.385500px;}
.y10_c01119{bottom:655.824000px;}
.yf_c01119{bottom:672.262500px;}
.ye_c01119{bottom:688.701000px;}
.yd_c01119{bottom:705.139500px;}
.yc_c01119{bottom:721.578000px;}
.yb_c01119{bottom:738.016500px;}
.ya_c01119{bottom:754.455000px;}
.y9_c01119{bottom:787.330500px;}
.y8_c01119{bottom:803.769000px;}
.y7_c01119{bottom:853.084500px;}
.y6_c01119{bottom:869.523000px;}
.y5_c01119{bottom:885.588000px;}
.y4_c01119{bottom:1106.064000px;}
.y3_c01119{bottom:1123.998000px;}
.y2_c01119{bottom:1141.930500px;}
.y1_c01119{bottom:1159.863000px;}
.h3_c01119{height:35.190766px;}
.h4_c01119{height:36.007158px;}
.h2_c01119{height:52.332837px;}
.h0_c01119{height:1262.835000px;}
.h1_c01119{height:1263.000000px;}
.w0_c01119{width:892.920000px;}
.w1_c01119{width:893.250000px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:127.558500px;}
.x2_c01119{left:137.122500px;}
.x3_c01119{left:143.770500px;}
.x4_c01119{left:177.007500px;}
.x5_c01119{left:435.249000px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls4_c01119{letter-spacing:0.000000pt;}
.ls1_c01119{letter-spacing:0.078221pt;}
.ls2_c01119{letter-spacing:0.087539pt;}
.ls0_c01119{letter-spacing:0.092873pt;}
.ls3_c01119{letter-spacing:23.724873pt;}
.ws3_c01119{word-spacing:-29.967501pt;}
.ws6_c01119{word-spacing:-23.622682pt;}
.ws5_c01119{word-spacing:-23.544461pt;}
.ws2_c01119{word-spacing:-16.684034pt;}
.ws0_c01119{word-spacing:-12.539593pt;}
.ws1_c01119{word-spacing:-10.733041pt;}
.wsa_c01119{word-spacing:0.000000pt;}
.ws7_c01119{word-spacing:0.039110pt;}
.wsd_c01119{word-spacing:0.050460pt;}
.wsb_c01119{word-spacing:0.065111pt;}
.wsc_c01119{word-spacing:0.074430pt;}
.ws4_c01119{word-spacing:0.156442pt;}
.wse_c01119{word-spacing:0.180412pt;}
.ws8_c01119{word-spacing:0.189730pt;}
.ws9_c01119{word-spacing:0.195063pt;}
._2_c01119{margin-left:-3.400567pt;}
._3_c01119{width:0.893988pt;}
._0_c01119{width:18.437452pt;}
._1_c01119{width:35.652825pt;}
._5_c01119{width:47.362694pt;}
._4_c01119{width:70.985376pt;}
._7_c01119{width:94.920941pt;}
._6_c01119{width:118.624363pt;}
.fs1_c01119{font-size:39.110400pt;}
.fs0_c01119{font-size:53.133867pt;}
.y0_c01119{bottom:0.000000pt;}
.y2f_c01119{bottom:39.333333pt;}
.y2e_c01119{bottom:86.150667pt;}
.y2d_c01119{bottom:100.762667pt;}
.y2c_c01119{bottom:115.374667pt;}
.y2b_c01119{bottom:129.986667pt;}
.y2a_c01119{bottom:144.598667pt;}
.y29_c01119{bottom:159.210667pt;}
.y28_c01119{bottom:173.822667pt;}
.y27_c01119{bottom:188.434667pt;}
.y26_c01119{bottom:203.046667pt;}
.y25_c01119{bottom:217.658667pt;}
.y24_c01119{bottom:232.270667pt;}
.y23_c01119{bottom:261.493333pt;}
.y22_c01119{bottom:276.105333pt;}
.y21_c01119{bottom:290.717333pt;}
.y20_c01119{bottom:319.941333pt;}
.y1f_c01119{bottom:334.553333pt;}
.y1e_c01119{bottom:349.165333pt;}
.y1d_c01119{bottom:363.777333pt;}
.y1c_c01119{bottom:378.389333pt;}
.y1b_c01119{bottom:393.000000pt;}
.y1a_c01119{bottom:407.612000pt;}
.y19_c01119{bottom:451.448000pt;}
.y18_c01119{bottom:466.060000pt;}
.y17_c01119{bottom:480.672000pt;}
.y16_c01119{bottom:495.284000pt;}
.y15_c01119{bottom:509.896000pt;}
.y14_c01119{bottom:524.508000pt;}
.y13_c01119{bottom:539.118667pt;}
.y12_c01119{bottom:553.730667pt;}
.y11_c01119{bottom:568.342667pt;}
.y10_c01119{bottom:582.954667pt;}
.yf_c01119{bottom:597.566667pt;}
.ye_c01119{bottom:612.178667pt;}
.yd_c01119{bottom:626.790667pt;}
.yc_c01119{bottom:641.402667pt;}
.yb_c01119{bottom:656.014667pt;}
.ya_c01119{bottom:670.626667pt;}
.y9_c01119{bottom:699.849333pt;}
.y8_c01119{bottom:714.461333pt;}
.y7_c01119{bottom:758.297333pt;}
.y6_c01119{bottom:772.909333pt;}
.y5_c01119{bottom:787.189333pt;}
.y4_c01119{bottom:983.168000pt;}
.y3_c01119{bottom:999.109333pt;}
.y2_c01119{bottom:1015.049333pt;}
.y1_c01119{bottom:1030.989333pt;}
.h3_c01119{height:31.280681pt;}
.h4_c01119{height:32.006363pt;}
.h2_c01119{height:46.518078pt;}
.h0_c01119{height:1122.520000pt;}
.h1_c01119{height:1122.666667pt;}
.w0_c01119{width:793.706667pt;}
.w1_c01119{width:794.000000pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:113.385333pt;}
.x2_c01119{left:121.886667pt;}
.x3_c01119{left:127.796000pt;}
.x4_c01119{left:157.340000pt;}
.x5_c01119{left:386.888000pt;}
}





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

.ir_c01120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_e198bf5467789c9e474971f2.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01120;src:url('chunks/assets/font_7570adacbfa33d248d2a50a6.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01120;src:url('chunks/assets/font_6c6cc023fd57c1508e6da77b.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01120;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01120;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01120{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.ls3_c01120{letter-spacing:0.000000px;}
.ls0_c01120{letter-spacing:0.087998px;}
.ls2_c01120{letter-spacing:0.098482px;}
.ls1_c01120{letter-spacing:0.104482px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c01120{word-spacing:-33.713438px;}
.ws2_c01120{word-spacing:-26.575517px;}
.wsf_c01120{word-spacing:-26.487518px;}
.wsa_c01120{word-spacing:-21.553319px;}
.ws9_c01120{word-spacing:-21.519216px;}
.ws5_c01120{word-spacing:-21.459440px;}
.ws7_c01120{word-spacing:-18.769538px;}
.ws4_c01120{word-spacing:-17.633802px;}
.ws6_c01120{word-spacing:-14.943900px;}
.wsb_c01120{word-spacing:-14.107042px;}
.wsc_c01120{word-spacing:-12.074671px;}
.ws1_c01120{word-spacing:-9.988424px;}
.ws3_c01120{word-spacing:-9.987499px;}
.ws8_c01120{word-spacing:-7.686144px;}
.ws13_c01120{word-spacing:0.000000px;}
.ws10_c01120{word-spacing:0.043999px;}
.ws16_c01120{word-spacing:0.056767px;}
.ws14_c01120{word-spacing:0.073250px;}
.ws15_c01120{word-spacing:0.083734px;}
.wse_c01120{word-spacing:0.175997px;}
.ws17_c01120{word-spacing:0.202963px;}
.ws11_c01120{word-spacing:0.213446px;}
.ws12_c01120{word-spacing:0.219446px;}
.ws0_c01120{word-spacing:43.038600px;}
._4_c01120{margin-left:-3.825638px;}
._0_c01120{margin-left:-1.549390px;}
._5_c01120{width:1.005737px;}
._1_c01120{width:18.623718px;}
._2_c01120{width:19.930500px;}
._3_c01120{width:40.109428px;}
._7_c01120{width:53.283031px;}
._6_c01120{width:79.858548px;}
._8_c01120{width:133.452408px;}
.fc6_c01120{color:rgb(0,0,207);}
.fc5_c01120{color:rgb(79,153,5);}
.fc3_c01120{color:rgb(33,74,135);}
.fc2_c01120{color:rgb(143,89,3);}
.fc4_c01120{color:rgb(207,92,0);}
.fc1_c01120{color:rgb(6,69,173);}
.fc0_c01120{color:rgb(0,0,0);}
.fs2_c01120{font-size:43.999200px;}
.fs1_c01120{font-size:59.775600px;}
.fs0_c01120{font-size:86.077200px;}
.y0_c01120{bottom:0.000000px;}
.y20_c01120{bottom:44.250000px;}
.y1f_c01120{bottom:86.982000px;}
.y1e_c01120{bottom:103.420500px;}
.y1d_c01120{bottom:119.859000px;}
.y1c_c01120{bottom:136.297500px;}
.y1b_c01120{bottom:152.736000px;}
.y1a_c01120{bottom:169.174500px;}
.y19_c01120{bottom:185.613000px;}
.y18_c01120{bottom:202.051500px;}
.y17_c01120{bottom:218.490000px;}
.y16_c01120{bottom:234.927000px;}
.y15_c01120{bottom:251.365500px;}
.y14_c01120{bottom:267.804000px;}
.y13_c01120{bottom:284.242500px;}
.y12_c01120{bottom:300.681000px;}
.y11_c01120{bottom:317.119500px;}
.y10_c01120{bottom:349.996500px;}
.yf_c01120{bottom:366.435000px;}
.ye_c01120{bottom:415.749000px;}
.yd_c01120{bottom:432.187500px;}
.yc_c01120{bottom:448.252500px;}
.yb_c01120{bottom:493.890000px;}
.ya_c01120{bottom:511.822500px;}
.y9_c01120{bottom:529.756500px;}
.y8_c01120{bottom:547.689000px;}
.y7_c01120{bottom:565.621500px;}
.y6_c01120{bottom:583.554000px;}
.y5_c01120{bottom:610.633500px;}
.y4_c01120{bottom:637.714500px;}
.y3_c01120{bottom:664.794000px;}
.y2_c01120{bottom:691.873500px;}
.y1_c01120{bottom:734.407500px;}
.h5_c01120{height:35.190766px;}
.h6_c01120{height:36.007158px;}
.h3_c01120{height:40.511979px;}
.h4_c01120{height:52.332837px;}
.h2_c01120{height:58.337477px;}
.h0_c01120{height:1262.835000px;}
.h1_c01120{height:1263.000000px;}
.w0_c01120{width:892.920000px;}
.w1_c01120{width:893.250000px;}
.x0_c01120{left:0.000000px;}
.x1_c01120{left:127.558500px;}
.x2_c01120{left:137.122500px;}
.x3_c01120{left:143.770500px;}
.x4_c01120{left:435.249000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls3_c01120{letter-spacing:0.000000pt;}
.ls0_c01120{letter-spacing:0.078221pt;}
.ls2_c01120{letter-spacing:0.087539pt;}
.ls1_c01120{letter-spacing:0.092873pt;}
.wsd_c01120{word-spacing:-29.967501pt;}
.ws2_c01120{word-spacing:-23.622682pt;}
.wsf_c01120{word-spacing:-23.544461pt;}
.wsa_c01120{word-spacing:-19.158506pt;}
.ws9_c01120{word-spacing:-19.128192pt;}
.ws5_c01120{word-spacing:-19.075058pt;}
.ws7_c01120{word-spacing:-16.684034pt;}
.ws4_c01120{word-spacing:-15.674491pt;}
.ws6_c01120{word-spacing:-13.283467pt;}
.wsb_c01120{word-spacing:-12.539593pt;}
.wsc_c01120{word-spacing:-10.733041pt;}
.ws1_c01120{word-spacing:-8.878599pt;}
.ws3_c01120{word-spacing:-8.877777pt;}
.ws8_c01120{word-spacing:-6.832128pt;}
.ws13_c01120{word-spacing:0.000000pt;}
.ws10_c01120{word-spacing:0.039110pt;}
.ws16_c01120{word-spacing:0.050460pt;}
.ws14_c01120{word-spacing:0.065111pt;}
.ws15_c01120{word-spacing:0.074430pt;}
.wse_c01120{word-spacing:0.156442pt;}
.ws17_c01120{word-spacing:0.180412pt;}
.ws11_c01120{word-spacing:0.189730pt;}
.ws12_c01120{word-spacing:0.195063pt;}
.ws0_c01120{word-spacing:38.256533pt;}
._4_c01120{margin-left:-3.400567pt;}
._0_c01120{margin-left:-1.377235pt;}
._5_c01120{width:0.893988pt;}
._1_c01120{width:16.554416pt;}
._2_c01120{width:17.716000pt;}
._3_c01120{width:35.652825pt;}
._7_c01120{width:47.362694pt;}
._6_c01120{width:70.985376pt;}
._8_c01120{width:118.624363pt;}
.fs2_c01120{font-size:39.110400pt;}
.fs1_c01120{font-size:53.133867pt;}
.fs0_c01120{font-size:76.513067pt;}
.y0_c01120{bottom:0.000000pt;}
.y20_c01120{bottom:39.333333pt;}
.y1f_c01120{bottom:77.317333pt;}
.y1e_c01120{bottom:91.929333pt;}
.y1d_c01120{bottom:106.541333pt;}
.y1c_c01120{bottom:121.153333pt;}
.y1b_c01120{bottom:135.765333pt;}
.y1a_c01120{bottom:150.377333pt;}
.y19_c01120{bottom:164.989333pt;}
.y18_c01120{bottom:179.601333pt;}
.y17_c01120{bottom:194.213333pt;}
.y16_c01120{bottom:208.824000pt;}
.y15_c01120{bottom:223.436000pt;}
.y14_c01120{bottom:238.048000pt;}
.y13_c01120{bottom:252.660000pt;}
.y12_c01120{bottom:267.272000pt;}
.y11_c01120{bottom:281.884000pt;}
.y10_c01120{bottom:311.108000pt;}
.yf_c01120{bottom:325.720000pt;}
.ye_c01120{bottom:369.554667pt;}
.yd_c01120{bottom:384.166667pt;}
.yc_c01120{bottom:398.446667pt;}
.yb_c01120{bottom:439.013333pt;}
.ya_c01120{bottom:454.953333pt;}
.y9_c01120{bottom:470.894667pt;}
.y8_c01120{bottom:486.834667pt;}
.y7_c01120{bottom:502.774667pt;}
.y6_c01120{bottom:518.714667pt;}
.y5_c01120{bottom:542.785333pt;}
.y4_c01120{bottom:566.857333pt;}
.y3_c01120{bottom:590.928000pt;}
.y2_c01120{bottom:614.998667pt;}
.y1_c01120{bottom:652.806667pt;}
.h5_c01120{height:31.280681pt;}
.h6_c01120{height:32.006363pt;}
.h3_c01120{height:36.010648pt;}
.h4_c01120{height:46.518078pt;}
.h2_c01120{height:51.855535pt;}
.h0_c01120{height:1122.520000pt;}
.h1_c01120{height:1122.666667pt;}
.w0_c01120{width:793.706667pt;}
.w1_c01120{width:794.000000pt;}
.x0_c01120{left:0.000000pt;}
.x1_c01120{left:113.385333pt;}
.x2_c01120{left:121.886667pt;}
.x3_c01120{left:127.796000pt;}
.x4_c01120{left:386.888000pt;}
}





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

.ir_c01121:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_16d8212a78c8781951cf291a.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01121;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01121;src:url('chunks/assets/font_062eb6c1218a7d6f4853d154.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01121;src:url('chunks/assets/font_e8ba21229a5fff05c244f08a.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01121;src:url('chunks/assets/font_b3d1681b853538b8ccadb271.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01121{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.ls4_c01121{letter-spacing:0.000000px;}
.ls0_c01121{letter-spacing:0.087998px;}
.ls2_c01121{letter-spacing:0.098482px;}
.ls3_c01121{letter-spacing:0.104482px;}
.ls1_c01121{letter-spacing:26.690482px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01121{word-spacing:-26.575517px;}
.ws4_c01121{word-spacing:-26.487518px;}
.wsa_c01121{word-spacing:-23.491811px;}
.ws10_c01121{word-spacing:-21.553319px;}
.wsf_c01121{word-spacing:-21.519216px;}
.ws9_c01121{word-spacing:-19.725948px;}
.wse_c01121{word-spacing:-19.247743px;}
.wsc_c01121{word-spacing:-18.769538px;}
.wsb_c01121{word-spacing:-14.943900px;}
.ws11_c01121{word-spacing:-14.107042px;}
.ws12_c01121{word-spacing:-12.074671px;}
.wsd_c01121{word-spacing:-10.230144px;}
.ws7_c01121{word-spacing:-9.988424px;}
.ws8_c01121{word-spacing:-9.987499px;}
.ws3_c01121{word-spacing:0.000000px;}
.ws0_c01121{word-spacing:0.043999px;}
.ws5_c01121{word-spacing:0.213446px;}
.ws1_c01121{word-spacing:0.219446px;}
.ws6_c01121{word-spacing:43.038600px;}
._2_c01121{margin-left:-1.549390px;}
._1_c01121{width:1.063690px;}
._3_c01121{width:17.625864px;}
._4_c01121{width:19.930500px;}
._5_c01121{width:40.109428px;}
._0_c01121{width:106.786058px;}
.fc5_c01121{color:rgb(79,153,5);}
.fc4_c01121{color:rgb(143,89,3);}
.fc3_c01121{color:rgb(0,0,0);}
.fc6_c01121{color:rgb(6,69,173);}
.fc2_c01121{color:rgb(207,92,0);}
.fc1_c01121{color:rgb(0,0,207);}
.fc0_c01121{color:rgb(33,74,135);}
.fs0_c01121{font-size:43.999200px;}
.fs2_c01121{font-size:59.775600px;}
.fs1_c01121{font-size:86.077200px;}
.y0_c01121{bottom:0.000000px;}
.y20_c01121{bottom:44.250000px;}
.y1f_c01121{bottom:82.051500px;}
.y1e_c01121{bottom:99.984000px;}
.y1d_c01121{bottom:117.916500px;}
.y1c_c01121{bottom:135.849000px;}
.y1b_c01121{bottom:162.501000px;}
.y1a_c01121{bottom:189.151500px;}
.y19_c01121{bottom:215.802000px;}
.y18_c01121{bottom:242.454000px;}
.y17_c01121{bottom:284.478000px;}
.y16_c01121{bottom:748.903500px;}
.y15_c01121{bottom:765.342000px;}
.y14_c01121{bottom:781.780500px;}
.y13_c01121{bottom:798.219000px;}
.y12_c01121{bottom:814.657500px;}
.y11_c01121{bottom:831.096000px;}
.y10_c01121{bottom:847.534500px;}
.yf_c01121{bottom:863.973000px;}
.ye_c01121{bottom:880.411500px;}
.yd_c01121{bottom:896.848500px;}
.yc_c01121{bottom:913.287000px;}
.yb_c01121{bottom:946.164000px;}
.ya_c01121{bottom:962.602500px;}
.y9_c01121{bottom:979.041000px;}
.y8_c01121{bottom:1011.918000px;}
.y7_c01121{bottom:1028.356500px;}
.y6_c01121{bottom:1044.795000px;}
.y5_c01121{bottom:1061.232000px;}
.y4_c01121{bottom:1077.670500px;}
.y3_c01121{bottom:1094.109000px;}
.y2_c01121{bottom:1110.547500px;}
.y1_c01121{bottom:1159.863000px;}
.h3_c01121{height:35.190766px;}
.h2_c01121{height:36.007158px;}
.h5_c01121{height:40.511979px;}
.h6_c01121{height:52.332837px;}
.h4_c01121{height:58.337477px;}
.h0_c01121{height:1262.835000px;}
.h1_c01121{height:1263.000000px;}
.w0_c01121{width:892.920000px;}
.w1_c01121{width:893.250000px;}
.x0_c01121{left:0.000000px;}
.x4_c01121{left:127.558500px;}
.x2_c01121{left:137.122500px;}
.x1_c01121{left:143.770500px;}
.x3_c01121{left:177.007500px;}
.x5_c01121{left:435.249000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls4_c01121{letter-spacing:0.000000pt;}
.ls0_c01121{letter-spacing:0.078221pt;}
.ls2_c01121{letter-spacing:0.087539pt;}
.ls3_c01121{letter-spacing:0.092873pt;}
.ls1_c01121{letter-spacing:23.724873pt;}
.ws2_c01121{word-spacing:-23.622682pt;}
.ws4_c01121{word-spacing:-23.544461pt;}
.wsa_c01121{word-spacing:-20.881610pt;}
.ws10_c01121{word-spacing:-19.158506pt;}
.wsf_c01121{word-spacing:-19.128192pt;}
.ws9_c01121{word-spacing:-17.534176pt;}
.wse_c01121{word-spacing:-17.109105pt;}
.wsc_c01121{word-spacing:-16.684034pt;}
.wsb_c01121{word-spacing:-13.283467pt;}
.ws11_c01121{word-spacing:-12.539593pt;}
.ws12_c01121{word-spacing:-10.733041pt;}
.wsd_c01121{word-spacing:-9.093461pt;}
.ws7_c01121{word-spacing:-8.878599pt;}
.ws8_c01121{word-spacing:-8.877777pt;}
.ws3_c01121{word-spacing:0.000000pt;}
.ws0_c01121{word-spacing:0.039110pt;}
.ws5_c01121{word-spacing:0.189730pt;}
.ws1_c01121{word-spacing:0.195063pt;}
.ws6_c01121{word-spacing:38.256533pt;}
._2_c01121{margin-left:-1.377235pt;}
._1_c01121{width:0.945502pt;}
._3_c01121{width:15.667435pt;}
._4_c01121{width:17.716000pt;}
._5_c01121{width:35.652825pt;}
._0_c01121{width:94.920941pt;}
.fs0_c01121{font-size:39.110400pt;}
.fs2_c01121{font-size:53.133867pt;}
.fs1_c01121{font-size:76.513067pt;}
.y0_c01121{bottom:0.000000pt;}
.y20_c01121{bottom:39.333333pt;}
.y1f_c01121{bottom:72.934667pt;}
.y1e_c01121{bottom:88.874667pt;}
.y1d_c01121{bottom:104.814667pt;}
.y1c_c01121{bottom:120.754667pt;}
.y1b_c01121{bottom:144.445333pt;}
.y1a_c01121{bottom:168.134667pt;}
.y19_c01121{bottom:191.824000pt;}
.y18_c01121{bottom:215.514667pt;}
.y17_c01121{bottom:252.869333pt;}
.y16_c01121{bottom:665.692000pt;}
.y15_c01121{bottom:680.304000pt;}
.y14_c01121{bottom:694.916000pt;}
.y13_c01121{bottom:709.528000pt;}
.y12_c01121{bottom:724.140000pt;}
.y11_c01121{bottom:738.752000pt;}
.y10_c01121{bottom:753.364000pt;}
.yf_c01121{bottom:767.976000pt;}
.ye_c01121{bottom:782.588000pt;}
.yd_c01121{bottom:797.198667pt;}
.yc_c01121{bottom:811.810667pt;}
.yb_c01121{bottom:841.034667pt;}
.ya_c01121{bottom:855.646667pt;}
.y9_c01121{bottom:870.258667pt;}
.y8_c01121{bottom:899.482667pt;}
.y7_c01121{bottom:914.094667pt;}
.y6_c01121{bottom:928.706667pt;}
.y5_c01121{bottom:943.317333pt;}
.y4_c01121{bottom:957.929333pt;}
.y3_c01121{bottom:972.541333pt;}
.y2_c01121{bottom:987.153333pt;}
.y1_c01121{bottom:1030.989333pt;}
.h3_c01121{height:31.280681pt;}
.h2_c01121{height:32.006363pt;}
.h5_c01121{height:36.010648pt;}
.h6_c01121{height:46.518078pt;}
.h4_c01121{height:51.855535pt;}
.h0_c01121{height:1122.520000pt;}
.h1_c01121{height:1122.666667pt;}
.w0_c01121{width:793.706667pt;}
.w1_c01121{width:794.000000pt;}
.x0_c01121{left:0.000000pt;}
.x4_c01121{left:113.385333pt;}
.x2_c01121{left:121.886667pt;}
.x1_c01121{left:127.796000pt;}
.x3_c01121{left:157.340000pt;}
.x5_c01121{left:386.888000pt;}
}





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

.ir_c01122:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_e677f75dfad2534155399c0f.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01122;src:url('chunks/assets/font_65801155483558712029783c.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01122;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01122;src:url('chunks/assets/font_ca77b945260f670bc31d0063.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01122{vertical-align:0.000000px;}
.ls4_c01122{letter-spacing:0.000000px;}
.ls1_c01122{letter-spacing:0.087998px;}
.ls2_c01122{letter-spacing:0.098482px;}
.ls0_c01122{letter-spacing:0.104482px;}
.ls3_c01122{letter-spacing:26.690482px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01122{word-spacing:-33.713438px;}
.ws4_c01122{word-spacing:-26.575517px;}
.ws3_c01122{word-spacing:-26.487518px;}
.ws0_c01122{word-spacing:-18.769538px;}
.ws8_c01122{word-spacing:0.000000px;}
.ws5_c01122{word-spacing:0.043999px;}
.wsb_c01122{word-spacing:0.056767px;}
.ws9_c01122{word-spacing:0.073250px;}
.wsa_c01122{word-spacing:0.083734px;}
.ws2_c01122{word-spacing:0.175997px;}
.wsc_c01122{word-spacing:0.202963px;}
.ws6_c01122{word-spacing:0.213446px;}
.ws7_c01122{word-spacing:0.219446px;}
._0_c01122{margin-left:-3.825638px;}
._1_c01122{width:1.005737px;}
._3_c01122{width:53.283031px;}
._2_c01122{width:79.858548px;}
._4_c01122{width:133.452408px;}
.fc5_c01122{color:rgb(0,0,207);}
.fc4_c01122{color:rgb(79,153,5);}
.fc3_c01122{color:rgb(207,92,0);}
.fc2_c01122{color:rgb(33,74,135);}
.fc1_c01122{color:rgb(143,89,3);}
.fc0_c01122{color:rgb(0,0,0);}
.fs1_c01122{font-size:43.999200px;}
.fs0_c01122{font-size:59.775600px;}
.y0_c01122{bottom:0.000000px;}
.y2d_c01122{bottom:44.250000px;}
.y2c_c01122{bottom:96.919500px;}
.y2b_c01122{bottom:113.358000px;}
.y2a_c01122{bottom:129.796500px;}
.y29_c01122{bottom:146.235000px;}
.y28_c01122{bottom:162.673500px;}
.y27_c01122{bottom:179.112000px;}
.y26_c01122{bottom:195.550500px;}
.y25_c01122{bottom:211.989000px;}
.y24_c01122{bottom:228.427500px;}
.y23_c01122{bottom:244.866000px;}
.y22_c01122{bottom:261.304500px;}
.y21_c01122{bottom:294.180000px;}
.y20_c01122{bottom:310.618500px;}
.y1f_c01122{bottom:327.057000px;}
.y1e_c01122{bottom:359.934000px;}
.y1d_c01122{bottom:376.372500px;}
.y1c_c01122{bottom:392.811000px;}
.y1b_c01122{bottom:409.249500px;}
.y1a_c01122{bottom:425.688000px;}
.y19_c01122{bottom:442.125000px;}
.y18_c01122{bottom:458.563500px;}
.y17_c01122{bottom:507.879000px;}
.y16_c01122{bottom:524.317500px;}
.y15_c01122{bottom:540.756000px;}
.y14_c01122{bottom:557.194500px;}
.y13_c01122{bottom:573.633000px;}
.y12_c01122{bottom:590.071500px;}
.y11_c01122{bottom:606.508500px;}
.y10_c01122{bottom:622.947000px;}
.yf_c01122{bottom:639.385500px;}
.ye_c01122{bottom:655.824000px;}
.yd_c01122{bottom:672.262500px;}
.yc_c01122{bottom:688.701000px;}
.yb_c01122{bottom:705.139500px;}
.ya_c01122{bottom:721.578000px;}
.y9_c01122{bottom:738.016500px;}
.y8_c01122{bottom:754.455000px;}
.y7_c01122{bottom:787.330500px;}
.y6_c01122{bottom:803.769000px;}
.y5_c01122{bottom:853.084500px;}
.y4_c01122{bottom:869.523000px;}
.y3_c01122{bottom:885.588000px;}
.y2_c01122{bottom:1141.930500px;}
.y1_c01122{bottom:1159.863000px;}
.h3_c01122{height:35.190766px;}
.h4_c01122{height:36.007158px;}
.h2_c01122{height:52.332837px;}
.h0_c01122{height:1262.835000px;}
.h1_c01122{height:1263.000000px;}
.w0_c01122{width:892.920000px;}
.w1_c01122{width:893.250000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:127.558500px;}
.x2_c01122{left:137.122500px;}
.x3_c01122{left:143.770500px;}
.x4_c01122{left:177.007500px;}
.x5_c01122{left:435.249000px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls4_c01122{letter-spacing:0.000000pt;}
.ls1_c01122{letter-spacing:0.078221pt;}
.ls2_c01122{letter-spacing:0.087539pt;}
.ls0_c01122{letter-spacing:0.092873pt;}
.ls3_c01122{letter-spacing:23.724873pt;}
.ws1_c01122{word-spacing:-29.967501pt;}
.ws4_c01122{word-spacing:-23.622682pt;}
.ws3_c01122{word-spacing:-23.544461pt;}
.ws0_c01122{word-spacing:-16.684034pt;}
.ws8_c01122{word-spacing:0.000000pt;}
.ws5_c01122{word-spacing:0.039110pt;}
.wsb_c01122{word-spacing:0.050460pt;}
.ws9_c01122{word-spacing:0.065111pt;}
.wsa_c01122{word-spacing:0.074430pt;}
.ws2_c01122{word-spacing:0.156442pt;}
.wsc_c01122{word-spacing:0.180412pt;}
.ws6_c01122{word-spacing:0.189730pt;}
.ws7_c01122{word-spacing:0.195063pt;}
._0_c01122{margin-left:-3.400567pt;}
._1_c01122{width:0.893988pt;}
._3_c01122{width:47.362694pt;}
._2_c01122{width:70.985376pt;}
._4_c01122{width:118.624363pt;}
.fs1_c01122{font-size:39.110400pt;}
.fs0_c01122{font-size:53.133867pt;}
.y0_c01122{bottom:0.000000pt;}
.y2d_c01122{bottom:39.333333pt;}
.y2c_c01122{bottom:86.150667pt;}
.y2b_c01122{bottom:100.762667pt;}
.y2a_c01122{bottom:115.374667pt;}
.y29_c01122{bottom:129.986667pt;}
.y28_c01122{bottom:144.598667pt;}
.y27_c01122{bottom:159.210667pt;}
.y26_c01122{bottom:173.822667pt;}
.y25_c01122{bottom:188.434667pt;}
.y24_c01122{bottom:203.046667pt;}
.y23_c01122{bottom:217.658667pt;}
.y22_c01122{bottom:232.270667pt;}
.y21_c01122{bottom:261.493333pt;}
.y20_c01122{bottom:276.105333pt;}
.y1f_c01122{bottom:290.717333pt;}
.y1e_c01122{bottom:319.941333pt;}
.y1d_c01122{bottom:334.553333pt;}
.y1c_c01122{bottom:349.165333pt;}
.y1b_c01122{bottom:363.777333pt;}
.y1a_c01122{bottom:378.389333pt;}
.y19_c01122{bottom:393.000000pt;}
.y18_c01122{bottom:407.612000pt;}
.y17_c01122{bottom:451.448000pt;}
.y16_c01122{bottom:466.060000pt;}
.y15_c01122{bottom:480.672000pt;}
.y14_c01122{bottom:495.284000pt;}
.y13_c01122{bottom:509.896000pt;}
.y12_c01122{bottom:524.508000pt;}
.y11_c01122{bottom:539.118667pt;}
.y10_c01122{bottom:553.730667pt;}
.yf_c01122{bottom:568.342667pt;}
.ye_c01122{bottom:582.954667pt;}
.yd_c01122{bottom:597.566667pt;}
.yc_c01122{bottom:612.178667pt;}
.yb_c01122{bottom:626.790667pt;}
.ya_c01122{bottom:641.402667pt;}
.y9_c01122{bottom:656.014667pt;}
.y8_c01122{bottom:670.626667pt;}
.y7_c01122{bottom:699.849333pt;}
.y6_c01122{bottom:714.461333pt;}
.y5_c01122{bottom:758.297333pt;}
.y4_c01122{bottom:772.909333pt;}
.y3_c01122{bottom:787.189333pt;}
.y2_c01122{bottom:1015.049333pt;}
.y1_c01122{bottom:1030.989333pt;}
.h3_c01122{height:31.280681pt;}
.h4_c01122{height:32.006363pt;}
.h2_c01122{height:46.518078pt;}
.h0_c01122{height:1122.520000pt;}
.h1_c01122{height:1122.666667pt;}
.w0_c01122{width:793.706667pt;}
.w1_c01122{width:794.000000pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:113.385333pt;}
.x2_c01122{left:121.886667pt;}
.x3_c01122{left:127.796000pt;}
.x4_c01122{left:157.340000pt;}
.x5_c01122{left:386.888000pt;}
}





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

.ir_c01123:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_b0d3abe0e62ae3914ce5d9d9.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01123;src:url('chunks/assets/font_26b1a606632c42631252a4c5.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01123;src:url('chunks/assets/font_01d2867a2b7dad1e40b996ec.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01123;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01123;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01123{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.ls3_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:0.087998px;}
.ls2_c01123{letter-spacing:0.098482px;}
.ls1_c01123{letter-spacing:0.104482px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01123{word-spacing:-26.575517px;}
.ws11_c01123{word-spacing:-26.487518px;}
.ws9_c01123{word-spacing:-18.829314px;}
.ws6_c01123{word-spacing:-18.769538px;}
.wse_c01123{word-spacing:-18.530436px;}
.wsf_c01123{word-spacing:-17.813129px;}
.wsa_c01123{word-spacing:-17.036046px;}
.ws5_c01123{word-spacing:-16.318739px;}
.ws7_c01123{word-spacing:-14.943900px;}
.wsc_c01123{word-spacing:-12.732203px;}
.ws4_c01123{word-spacing:-12.493100px;}
.wsd_c01123{word-spacing:-12.074671px;}
.ws8_c01123{word-spacing:-10.026144px;}
.ws1_c01123{word-spacing:-9.988424px;}
.ws3_c01123{word-spacing:-9.987499px;}
.wsb_c01123{word-spacing:-5.487432px;}
.ws15_c01123{word-spacing:0.000000px;}
.ws12_c01123{word-spacing:0.043999px;}
.ws10_c01123{word-spacing:0.175997px;}
.ws14_c01123{word-spacing:0.213446px;}
.ws13_c01123{word-spacing:0.219446px;}
.ws0_c01123{word-spacing:43.038600px;}
._4_c01123{margin-left:-7.711052px;}
._3_c01123{margin-left:-4.727048px;}
._5_c01123{margin-left:-3.227882px;}
._0_c01123{margin-left:-1.549390px;}
._9_c01123{width:1.005737px;}
._8_c01123{width:16.233738px;}
._2_c01123{width:19.930500px;}
._7_c01123{width:23.628312px;}
._1_c01123{width:24.907016px;}
._6_c01123{width:38.460604px;}
.fc5_c01123{color:rgb(79,153,5);}
.fc3_c01123{color:rgb(33,74,135);}
.fc2_c01123{color:rgb(143,89,3);}
.fc4_c01123{color:rgb(207,92,0);}
.fc1_c01123{color:rgb(6,69,173);}
.fc0_c01123{color:rgb(0,0,0);}
.fs2_c01123{font-size:43.999200px;}
.fs1_c01123{font-size:59.775600px;}
.fs0_c01123{font-size:86.077200px;}
.y0_c01123{bottom:0.000000px;}
.y1f_c01123{bottom:44.250000px;}
.y1e_c01123{bottom:82.051500px;}
.y1d_c01123{bottom:98.490000px;}
.y1c_c01123{bottom:147.804000px;}
.y1b_c01123{bottom:164.242500px;}
.y1a_c01123{bottom:197.119500px;}
.y19_c01123{bottom:213.558000px;}
.y18_c01123{bottom:229.996500px;}
.y17_c01123{bottom:246.435000px;}
.y16_c01123{bottom:279.310500px;}
.y15_c01123{bottom:295.749000px;}
.y14_c01123{bottom:312.187500px;}
.y13_c01123{bottom:328.626000px;}
.y12_c01123{bottom:345.064500px;}
.y11_c01123{bottom:361.503000px;}
.y10_c01123{bottom:377.941500px;}
.yf_c01123{bottom:394.380000px;}
.ye_c01123{bottom:410.445000px;}
.yd_c01123{bottom:458.862000px;}
.yc_c01123{bottom:476.794500px;}
.yb_c01123{bottom:494.727000px;}
.ya_c01123{bottom:512.659500px;}
.y9_c01123{bottom:530.593500px;}
.y8_c01123{bottom:548.526000px;}
.y7_c01123{bottom:566.458500px;}
.y6_c01123{bottom:593.442000px;}
.y5_c01123{bottom:620.425500px;}
.y4_c01123{bottom:638.358000px;}
.y3_c01123{bottom:665.341500px;}
.y2_c01123{bottom:692.325000px;}
.y1_c01123{bottom:734.719500px;}
.h5_c01123{height:35.190766px;}
.h6_c01123{height:36.007158px;}
.h3_c01123{height:40.511979px;}
.h4_c01123{height:52.332837px;}
.h2_c01123{height:58.337477px;}
.h0_c01123{height:1262.835000px;}
.h1_c01123{height:1263.000000px;}
.w0_c01123{width:892.920000px;}
.w1_c01123{width:893.250000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:127.558500px;}
.x2_c01123{left:137.122500px;}
.x3_c01123{left:435.249000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls3_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:0.078221pt;}
.ls2_c01123{letter-spacing:0.087539pt;}
.ls1_c01123{letter-spacing:0.092873pt;}
.ws2_c01123{word-spacing:-23.622682pt;}
.ws11_c01123{word-spacing:-23.544461pt;}
.ws9_c01123{word-spacing:-16.737168pt;}
.ws6_c01123{word-spacing:-16.684034pt;}
.wse_c01123{word-spacing:-16.471499pt;}
.wsf_c01123{word-spacing:-15.833892pt;}
.wsa_c01123{word-spacing:-15.143152pt;}
.ws5_c01123{word-spacing:-14.505546pt;}
.ws7_c01123{word-spacing:-13.283467pt;}
.wsc_c01123{word-spacing:-11.317514pt;}
.ws4_c01123{word-spacing:-11.104978pt;}
.wsd_c01123{word-spacing:-10.733041pt;}
.ws8_c01123{word-spacing:-8.912128pt;}
.ws1_c01123{word-spacing:-8.878599pt;}
.ws3_c01123{word-spacing:-8.877777pt;}
.wsb_c01123{word-spacing:-4.877717pt;}
.ws15_c01123{word-spacing:0.000000pt;}
.ws12_c01123{word-spacing:0.039110pt;}
.ws10_c01123{word-spacing:0.156442pt;}
.ws14_c01123{word-spacing:0.189730pt;}
.ws13_c01123{word-spacing:0.195063pt;}
.ws0_c01123{word-spacing:38.256533pt;}
._4_c01123{margin-left:-6.854269pt;}
._3_c01123{margin-left:-4.201821pt;}
._5_c01123{margin-left:-2.869229pt;}
._0_c01123{margin-left:-1.377235pt;}
._9_c01123{width:0.893988pt;}
._8_c01123{width:14.429989pt;}
._2_c01123{width:17.716000pt;}
._7_c01123{width:21.002944pt;}
._1_c01123{width:22.139570pt;}
._6_c01123{width:34.187203pt;}
.fs2_c01123{font-size:39.110400pt;}
.fs1_c01123{font-size:53.133867pt;}
.fs0_c01123{font-size:76.513067pt;}
.y0_c01123{bottom:0.000000pt;}
.y1f_c01123{bottom:39.333333pt;}
.y1e_c01123{bottom:72.934667pt;}
.y1d_c01123{bottom:87.546667pt;}
.y1c_c01123{bottom:131.381333pt;}
.y1b_c01123{bottom:145.993333pt;}
.y1a_c01123{bottom:175.217333pt;}
.y19_c01123{bottom:189.829333pt;}
.y18_c01123{bottom:204.441333pt;}
.y17_c01123{bottom:219.053333pt;}
.y16_c01123{bottom:248.276000pt;}
.y15_c01123{bottom:262.888000pt;}
.y14_c01123{bottom:277.500000pt;}
.y13_c01123{bottom:292.112000pt;}
.y12_c01123{bottom:306.724000pt;}
.y11_c01123{bottom:321.336000pt;}
.y10_c01123{bottom:335.948000pt;}
.yf_c01123{bottom:350.560000pt;}
.ye_c01123{bottom:364.840000pt;}
.yd_c01123{bottom:407.877333pt;}
.yc_c01123{bottom:423.817333pt;}
.yb_c01123{bottom:439.757333pt;}
.ya_c01123{bottom:455.697333pt;}
.y9_c01123{bottom:471.638667pt;}
.y8_c01123{bottom:487.578667pt;}
.y7_c01123{bottom:503.518667pt;}
.y6_c01123{bottom:527.504000pt;}
.y5_c01123{bottom:551.489333pt;}
.y4_c01123{bottom:567.429333pt;}
.y3_c01123{bottom:591.414667pt;}
.y2_c01123{bottom:615.400000pt;}
.y1_c01123{bottom:653.084000pt;}
.h5_c01123{height:31.280681pt;}
.h6_c01123{height:32.006363pt;}
.h3_c01123{height:36.010648pt;}
.h4_c01123{height:46.518078pt;}
.h2_c01123{height:51.855535pt;}
.h0_c01123{height:1122.520000pt;}
.h1_c01123{height:1122.666667pt;}
.w0_c01123{width:793.706667pt;}
.w1_c01123{width:794.000000pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:113.385333pt;}
.x2_c01123{left:121.886667pt;}
.x3_c01123{left:386.888000pt;}
}





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

.ir_c01124:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_abf8b0fd490b68be62181400.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01124;src:url('chunks/assets/font_8fbf07884cefb34e7f8fd2a8.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01124;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01124;src:url('chunks/assets/font_05c5059b288765ce5cc6bad8.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.ls3_c01124{letter-spacing:0.000000px;}
.ls0_c01124{letter-spacing:0.087998px;}
.ls2_c01124{letter-spacing:0.098482px;}
.ls1_c01124{letter-spacing:0.104482px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01124{word-spacing:-26.575517px;}
.ws5_c01124{word-spacing:-26.487518px;}
.ws2_c01124{word-spacing:0.000000px;}
.ws6_c01124{word-spacing:0.043999px;}
.ws3_c01124{word-spacing:0.053933px;}
.ws7_c01124{word-spacing:0.056767px;}
.ws4_c01124{word-spacing:0.070416px;}
.ws0_c01124{word-spacing:0.175997px;}
.ws8_c01124{word-spacing:0.213446px;}
._0_c01124{width:1.028438px;}
.fc5_c01124{color:rgb(0,0,207);}
.fc4_c01124{color:rgb(207,92,0);}
.fc3_c01124{color:rgb(79,153,5);}
.fc2_c01124{color:rgb(33,74,135);}
.fc1_c01124{color:rgb(0,0,0);}
.fc0_c01124{color:rgb(143,89,3);}
.fs0_c01124{font-size:43.999200px;}
.fs1_c01124{font-size:59.775600px;}
.y0_c01124{bottom:0.000000px;}
.y2d_c01124{bottom:44.250000px;}
.y2c_c01124{bottom:370.822500px;}
.y2b_c01124{bottom:387.259500px;}
.y2a_c01124{bottom:403.698000px;}
.y29_c01124{bottom:420.136500px;}
.y28_c01124{bottom:436.575000px;}
.y27_c01124{bottom:453.013500px;}
.y26_c01124{bottom:469.452000px;}
.y25_c01124{bottom:485.890500px;}
.y24_c01124{bottom:502.329000px;}
.y23_c01124{bottom:518.767500px;}
.y22_c01124{bottom:535.206000px;}
.y21_c01124{bottom:568.081500px;}
.y20_c01124{bottom:584.520000px;}
.y1f_c01124{bottom:600.958500px;}
.y1e_c01124{bottom:633.835500px;}
.y1d_c01124{bottom:650.274000px;}
.y1c_c01124{bottom:666.712500px;}
.y1b_c01124{bottom:683.151000px;}
.y1a_c01124{bottom:699.589500px;}
.y19_c01124{bottom:716.028000px;}
.y18_c01124{bottom:732.465000px;}
.y17_c01124{bottom:748.903500px;}
.y16_c01124{bottom:765.342000px;}
.y15_c01124{bottom:781.780500px;}
.y14_c01124{bottom:798.219000px;}
.y13_c01124{bottom:814.657500px;}
.y12_c01124{bottom:831.096000px;}
.y11_c01124{bottom:847.534500px;}
.y10_c01124{bottom:863.973000px;}
.yf_c01124{bottom:880.411500px;}
.ye_c01124{bottom:896.848500px;}
.yd_c01124{bottom:913.287000px;}
.yc_c01124{bottom:929.725500px;}
.yb_c01124{bottom:946.164000px;}
.ya_c01124{bottom:962.602500px;}
.y9_c01124{bottom:979.041000px;}
.y8_c01124{bottom:995.479500px;}
.y7_c01124{bottom:1011.918000px;}
.y6_c01124{bottom:1028.356500px;}
.y5_c01124{bottom:1044.795000px;}
.y4_c01124{bottom:1061.232000px;}
.y3_c01124{bottom:1110.547500px;}
.y2_c01124{bottom:1126.986000px;}
.y1_c01124{bottom:1143.424500px;}
.h2_c01124{height:35.190766px;}
.h3_c01124{height:36.007158px;}
.h4_c01124{height:52.332837px;}
.h0_c01124{height:1262.835000px;}
.h1_c01124{height:1263.000000px;}
.w0_c01124{width:892.920000px;}
.w1_c01124{width:893.250000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:137.122500px;}
.x2_c01124{left:143.770500px;}
.x6_c01124{left:177.007500px;}
.x5_c01124{left:230.185500px;}
.x3_c01124{left:243.480000px;}
.x4_c01124{left:276.715500px;}
.x7_c01124{left:435.249000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls3_c01124{letter-spacing:0.000000pt;}
.ls0_c01124{letter-spacing:0.078221pt;}
.ls2_c01124{letter-spacing:0.087539pt;}
.ls1_c01124{letter-spacing:0.092873pt;}
.ws1_c01124{word-spacing:-23.622682pt;}
.ws5_c01124{word-spacing:-23.544461pt;}
.ws2_c01124{word-spacing:0.000000pt;}
.ws6_c01124{word-spacing:0.039110pt;}
.ws3_c01124{word-spacing:0.047940pt;}
.ws7_c01124{word-spacing:0.050460pt;}
.ws4_c01124{word-spacing:0.062592pt;}
.ws0_c01124{word-spacing:0.156442pt;}
.ws8_c01124{word-spacing:0.189730pt;}
._0_c01124{width:0.914167pt;}
.fs0_c01124{font-size:39.110400pt;}
.fs1_c01124{font-size:53.133867pt;}
.y0_c01124{bottom:0.000000pt;}
.y2d_c01124{bottom:39.333333pt;}
.y2c_c01124{bottom:329.620000pt;}
.y2b_c01124{bottom:344.230667pt;}
.y2a_c01124{bottom:358.842667pt;}
.y29_c01124{bottom:373.454667pt;}
.y28_c01124{bottom:388.066667pt;}
.y27_c01124{bottom:402.678667pt;}
.y26_c01124{bottom:417.290667pt;}
.y25_c01124{bottom:431.902667pt;}
.y24_c01124{bottom:446.514667pt;}
.y23_c01124{bottom:461.126667pt;}
.y22_c01124{bottom:475.738667pt;}
.y21_c01124{bottom:504.961333pt;}
.y20_c01124{bottom:519.573333pt;}
.y1f_c01124{bottom:534.185333pt;}
.y1e_c01124{bottom:563.409333pt;}
.y1d_c01124{bottom:578.021333pt;}
.y1c_c01124{bottom:592.633333pt;}
.y1b_c01124{bottom:607.245333pt;}
.y1a_c01124{bottom:621.857333pt;}
.y19_c01124{bottom:636.469333pt;}
.y18_c01124{bottom:651.080000pt;}
.y17_c01124{bottom:665.692000pt;}
.y16_c01124{bottom:680.304000pt;}
.y15_c01124{bottom:694.916000pt;}
.y14_c01124{bottom:709.528000pt;}
.y13_c01124{bottom:724.140000pt;}
.y12_c01124{bottom:738.752000pt;}
.y11_c01124{bottom:753.364000pt;}
.y10_c01124{bottom:767.976000pt;}
.yf_c01124{bottom:782.588000pt;}
.ye_c01124{bottom:797.198667pt;}
.yd_c01124{bottom:811.810667pt;}
.yc_c01124{bottom:826.422667pt;}
.yb_c01124{bottom:841.034667pt;}
.ya_c01124{bottom:855.646667pt;}
.y9_c01124{bottom:870.258667pt;}
.y8_c01124{bottom:884.870667pt;}
.y7_c01124{bottom:899.482667pt;}
.y6_c01124{bottom:914.094667pt;}
.y5_c01124{bottom:928.706667pt;}
.y4_c01124{bottom:943.317333pt;}
.y3_c01124{bottom:987.153333pt;}
.y2_c01124{bottom:1001.765333pt;}
.y1_c01124{bottom:1016.377333pt;}
.h2_c01124{height:31.280681pt;}
.h3_c01124{height:32.006363pt;}
.h4_c01124{height:46.518078pt;}
.h0_c01124{height:1122.520000pt;}
.h1_c01124{height:1122.666667pt;}
.w0_c01124{width:793.706667pt;}
.w1_c01124{width:794.000000pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:121.886667pt;}
.x2_c01124{left:127.796000pt;}
.x6_c01124{left:157.340000pt;}
.x5_c01124{left:204.609333pt;}
.x3_c01124{left:216.426667pt;}
.x4_c01124{left:245.969333pt;}
.x7_c01124{left:386.888000pt;}
}





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

.ir_c01125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_aec00f7f909a694857d5ab79.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01125;src:url('chunks/assets/font_a67ef67a366a35d4485c1ea8.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01125;src:url('chunks/assets/font_c7d961f1d3a849773d793aae.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01125;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01125;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01125{font-family:ff5_c01125;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01125{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls3_c01125{letter-spacing:0.000000px;}
.ls0_c01125{letter-spacing:0.087998px;}
.ls2_c01125{letter-spacing:0.098482px;}
.ls1_c01125{letter-spacing:0.104482px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01125{word-spacing:-33.713438px;}
.ws2_c01125{word-spacing:-26.575517px;}
.ws10_c01125{word-spacing:-26.487518px;}
.wsb_c01125{word-spacing:-21.553319px;}
.wsa_c01125{word-spacing:-21.519216px;}
.ws7_c01125{word-spacing:-18.769538px;}
.ws5_c01125{word-spacing:-17.095822px;}
.ws9_c01125{word-spacing:-16.019861px;}
.ws6_c01125{word-spacing:-14.943900px;}
.wsc_c01125{word-spacing:-14.107042px;}
.ws4_c01125{word-spacing:-13.270183px;}
.wsd_c01125{word-spacing:-12.074671px;}
.ws1_c01125{word-spacing:-9.988424px;}
.ws3_c01125{word-spacing:-9.987499px;}
.ws8_c01125{word-spacing:-4.536144px;}
.ws14_c01125{word-spacing:0.000000px;}
.ws11_c01125{word-spacing:0.043999px;}
.ws17_c01125{word-spacing:0.056767px;}
.ws15_c01125{word-spacing:0.073250px;}
.ws16_c01125{word-spacing:0.083734px;}
.wsf_c01125{word-spacing:0.175997px;}
.ws18_c01125{word-spacing:0.202963px;}
.ws12_c01125{word-spacing:0.213446px;}
.ws13_c01125{word-spacing:0.219446px;}
.ws0_c01125{word-spacing:43.038600px;}
._4_c01125{margin-left:-3.825638px;}
._0_c01125{margin-left:-1.549390px;}
._5_c01125{width:1.005737px;}
._2_c01125{width:19.930500px;}
._1_c01125{width:23.344099px;}
._3_c01125{width:40.109428px;}
._7_c01125{width:53.283031px;}
._6_c01125{width:79.858548px;}
._8_c01125{width:133.452408px;}
.fc6_c01125{color:rgb(0,0,207);}
.fc5_c01125{color:rgb(79,153,5);}
.fc3_c01125{color:rgb(33,74,135);}
.fc2_c01125{color:rgb(143,89,3);}
.fc4_c01125{color:rgb(207,92,0);}
.fc1_c01125{color:rgb(6,69,173);}
.fc0_c01125{color:rgb(0,0,0);}
.fs2_c01125{font-size:43.999200px;}
.fs1_c01125{font-size:59.775600px;}
.fs0_c01125{font-size:86.077200px;}
.y0_c01125{bottom:0.000000px;}
.y20_c01125{bottom:44.250000px;}
.y1f_c01125{bottom:86.982000px;}
.y1e_c01125{bottom:103.420500px;}
.y1d_c01125{bottom:119.859000px;}
.y1c_c01125{bottom:136.297500px;}
.y1b_c01125{bottom:152.736000px;}
.y1a_c01125{bottom:169.174500px;}
.y19_c01125{bottom:185.613000px;}
.y18_c01125{bottom:202.051500px;}
.y17_c01125{bottom:218.490000px;}
.y16_c01125{bottom:234.927000px;}
.y15_c01125{bottom:251.365500px;}
.y14_c01125{bottom:267.804000px;}
.y13_c01125{bottom:284.242500px;}
.y12_c01125{bottom:300.681000px;}
.y11_c01125{bottom:333.558000px;}
.y10_c01125{bottom:349.996500px;}
.yf_c01125{bottom:399.310500px;}
.ye_c01125{bottom:415.749000px;}
.yd_c01125{bottom:431.814000px;}
.yc_c01125{bottom:477.118500px;}
.yb_c01125{bottom:495.051000px;}
.ya_c01125{bottom:512.983500px;}
.y9_c01125{bottom:530.916000px;}
.y8_c01125{bottom:548.848500px;}
.y7_c01125{bottom:566.781000px;}
.y6_c01125{bottom:593.728500px;}
.y5_c01125{bottom:620.674500px;}
.y4_c01125{bottom:638.607000px;}
.y3_c01125{bottom:665.553000px;}
.y2_c01125{bottom:692.500500px;}
.y1_c01125{bottom:734.839500px;}
.h5_c01125{height:35.190766px;}
.h6_c01125{height:36.007158px;}
.h3_c01125{height:40.511979px;}
.h4_c01125{height:52.332837px;}
.h2_c01125{height:58.337477px;}
.h0_c01125{height:1262.835000px;}
.h1_c01125{height:1263.000000px;}
.w0_c01125{width:892.920000px;}
.w1_c01125{width:893.250000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:127.558500px;}
.x2_c01125{left:137.122500px;}
.x3_c01125{left:143.770500px;}
.x4_c01125{left:435.249000px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls3_c01125{letter-spacing:0.000000pt;}
.ls0_c01125{letter-spacing:0.078221pt;}
.ls2_c01125{letter-spacing:0.087539pt;}
.ls1_c01125{letter-spacing:0.092873pt;}
.wse_c01125{word-spacing:-29.967501pt;}
.ws2_c01125{word-spacing:-23.622682pt;}
.ws10_c01125{word-spacing:-23.544461pt;}
.wsb_c01125{word-spacing:-19.158506pt;}
.wsa_c01125{word-spacing:-19.128192pt;}
.ws7_c01125{word-spacing:-16.684034pt;}
.ws5_c01125{word-spacing:-15.196286pt;}
.ws9_c01125{word-spacing:-14.239876pt;}
.ws6_c01125{word-spacing:-13.283467pt;}
.wsc_c01125{word-spacing:-12.539593pt;}
.ws4_c01125{word-spacing:-11.795718pt;}
.wsd_c01125{word-spacing:-10.733041pt;}
.ws1_c01125{word-spacing:-8.878599pt;}
.ws3_c01125{word-spacing:-8.877777pt;}
.ws8_c01125{word-spacing:-4.032128pt;}
.ws14_c01125{word-spacing:0.000000pt;}
.ws11_c01125{word-spacing:0.039110pt;}
.ws17_c01125{word-spacing:0.050460pt;}
.ws15_c01125{word-spacing:0.065111pt;}
.ws16_c01125{word-spacing:0.074430pt;}
.wsf_c01125{word-spacing:0.156442pt;}
.ws18_c01125{word-spacing:0.180412pt;}
.ws12_c01125{word-spacing:0.189730pt;}
.ws13_c01125{word-spacing:0.195063pt;}
.ws0_c01125{word-spacing:38.256533pt;}
._4_c01125{margin-left:-3.400567pt;}
._0_c01125{margin-left:-1.377235pt;}
._5_c01125{width:0.893988pt;}
._2_c01125{width:17.716000pt;}
._1_c01125{width:20.750310pt;}
._3_c01125{width:35.652825pt;}
._7_c01125{width:47.362694pt;}
._6_c01125{width:70.985376pt;}
._8_c01125{width:118.624363pt;}
.fs2_c01125{font-size:39.110400pt;}
.fs1_c01125{font-size:53.133867pt;}
.fs0_c01125{font-size:76.513067pt;}
.y0_c01125{bottom:0.000000pt;}
.y20_c01125{bottom:39.333333pt;}
.y1f_c01125{bottom:77.317333pt;}
.y1e_c01125{bottom:91.929333pt;}
.y1d_c01125{bottom:106.541333pt;}
.y1c_c01125{bottom:121.153333pt;}
.y1b_c01125{bottom:135.765333pt;}
.y1a_c01125{bottom:150.377333pt;}
.y19_c01125{bottom:164.989333pt;}
.y18_c01125{bottom:179.601333pt;}
.y17_c01125{bottom:194.213333pt;}
.y16_c01125{bottom:208.824000pt;}
.y15_c01125{bottom:223.436000pt;}
.y14_c01125{bottom:238.048000pt;}
.y13_c01125{bottom:252.660000pt;}
.y12_c01125{bottom:267.272000pt;}
.y11_c01125{bottom:296.496000pt;}
.y10_c01125{bottom:311.108000pt;}
.yf_c01125{bottom:354.942667pt;}
.ye_c01125{bottom:369.554667pt;}
.yd_c01125{bottom:383.834667pt;}
.yc_c01125{bottom:424.105333pt;}
.yb_c01125{bottom:440.045333pt;}
.ya_c01125{bottom:455.985333pt;}
.y9_c01125{bottom:471.925333pt;}
.y8_c01125{bottom:487.865333pt;}
.y7_c01125{bottom:503.805333pt;}
.y6_c01125{bottom:527.758667pt;}
.y5_c01125{bottom:551.710667pt;}
.y4_c01125{bottom:567.650667pt;}
.y3_c01125{bottom:591.602667pt;}
.y2_c01125{bottom:615.556000pt;}
.y1_c01125{bottom:653.190667pt;}
.h5_c01125{height:31.280681pt;}
.h6_c01125{height:32.006363pt;}
.h3_c01125{height:36.010648pt;}
.h4_c01125{height:46.518078pt;}
.h2_c01125{height:51.855535pt;}
.h0_c01125{height:1122.520000pt;}
.h1_c01125{height:1122.666667pt;}
.w0_c01125{width:793.706667pt;}
.w1_c01125{width:794.000000pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:113.385333pt;}
.x2_c01125{left:121.886667pt;}
.x3_c01125{left:127.796000pt;}
.x4_c01125{left:386.888000pt;}
}





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

.ir_c01126:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_5bf11878c2d53a5008f3a380.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01126;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01126;src:url('chunks/assets/font_579e8bb33582060b62a5b418.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01126;src:url('chunks/assets/font_2006a5358f32bb0d38e32885.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01126;src:url('chunks/assets/font_1a778b5d4380877f2b6e8d43.woff2')format("woff");}.ff5_c01126{font-family:ff5_c01126;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01126{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls4_c01126{letter-spacing:0.000000px;}
.ls0_c01126{letter-spacing:0.087998px;}
.ls1_c01126{letter-spacing:0.098482px;}
.ls3_c01126{letter-spacing:0.104482px;}
.ls2_c01126{letter-spacing:26.690482px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01126{word-spacing:-26.575517px;}
.ws5_c01126{word-spacing:-26.487518px;}
.ws11_c01126{word-spacing:-21.553319px;}
.ws10_c01126{word-spacing:-21.519216px;}
.wsb_c01126{word-spacing:-18.948865px;}
.wsd_c01126{word-spacing:-18.769538px;}
.wsf_c01126{word-spacing:-17.633802px;}
.wsa_c01126{word-spacing:-15.183002px;}
.wsc_c01126{word-spacing:-14.943900px;}
.ws8_c01126{word-spacing:-9.988424px;}
.ws9_c01126{word-spacing:-9.987499px;}
.wse_c01126{word-spacing:-7.686144px;}
.ws4_c01126{word-spacing:0.000000px;}
.ws1_c01126{word-spacing:0.043999px;}
.ws0_c01126{word-spacing:0.073250px;}
.ws6_c01126{word-spacing:0.213446px;}
.ws2_c01126{word-spacing:0.219446px;}
.ws7_c01126{word-spacing:43.038600px;}
._2_c01126{margin-left:-1.549390px;}
._1_c01126{width:1.047206px;}
._3_c01126{width:19.886918px;}
._0_c01126{width:79.858548px;}
.fc5_c01126{color:rgb(79,153,5);}
.fc4_c01126{color:rgb(143,89,3);}
.fc6_c01126{color:rgb(6,69,173);}
.fc3_c01126{color:rgb(207,92,0);}
.fc2_c01126{color:rgb(0,0,0);}
.fc1_c01126{color:rgb(0,0,207);}
.fc0_c01126{color:rgb(33,74,135);}
.fs0_c01126{font-size:43.999200px;}
.fs2_c01126{font-size:59.775600px;}
.fs1_c01126{font-size:86.077200px;}
.y0_c01126{bottom:0.000000px;}
.y20_c01126{bottom:44.250000px;}
.y1f_c01126{bottom:82.051500px;}
.y1e_c01126{bottom:99.984000px;}
.y1d_c01126{bottom:126.823500px;}
.y1c_c01126{bottom:153.664500px;}
.y1b_c01126{bottom:171.597000px;}
.y1a_c01126{bottom:198.438000px;}
.y19_c01126{bottom:225.277500px;}
.y18_c01126{bottom:267.492000px;}
.y17_c01126{bottom:732.465000px;}
.y16_c01126{bottom:748.903500px;}
.y15_c01126{bottom:765.342000px;}
.y14_c01126{bottom:781.780500px;}
.y13_c01126{bottom:798.219000px;}
.y12_c01126{bottom:814.657500px;}
.y11_c01126{bottom:831.096000px;}
.y10_c01126{bottom:847.534500px;}
.yf_c01126{bottom:863.973000px;}
.ye_c01126{bottom:880.411500px;}
.yd_c01126{bottom:896.848500px;}
.yc_c01126{bottom:929.725500px;}
.yb_c01126{bottom:946.164000px;}
.ya_c01126{bottom:962.602500px;}
.y9_c01126{bottom:995.479500px;}
.y8_c01126{bottom:1011.918000px;}
.y7_c01126{bottom:1028.356500px;}
.y6_c01126{bottom:1044.795000px;}
.y5_c01126{bottom:1061.232000px;}
.y4_c01126{bottom:1077.670500px;}
.y3_c01126{bottom:1094.109000px;}
.y2_c01126{bottom:1143.424500px;}
.y1_c01126{bottom:1159.863000px;}
.h3_c01126{height:35.190766px;}
.h2_c01126{height:36.007158px;}
.h5_c01126{height:40.511979px;}
.h6_c01126{height:52.332837px;}
.h4_c01126{height:58.337477px;}
.h0_c01126{height:1262.835000px;}
.h1_c01126{height:1263.000000px;}
.w0_c01126{width:892.920000px;}
.w1_c01126{width:893.250000px;}
.x0_c01126{left:0.000000px;}
.x4_c01126{left:127.558500px;}
.x2_c01126{left:137.122500px;}
.x1_c01126{left:143.770500px;}
.x3_c01126{left:177.007500px;}
.x5_c01126{left:435.249000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls4_c01126{letter-spacing:0.000000pt;}
.ls0_c01126{letter-spacing:0.078221pt;}
.ls1_c01126{letter-spacing:0.087539pt;}
.ls3_c01126{letter-spacing:0.092873pt;}
.ls2_c01126{letter-spacing:23.724873pt;}
.ws3_c01126{word-spacing:-23.622682pt;}
.ws5_c01126{word-spacing:-23.544461pt;}
.ws11_c01126{word-spacing:-19.158506pt;}
.ws10_c01126{word-spacing:-19.128192pt;}
.wsb_c01126{word-spacing:-16.843436pt;}
.wsd_c01126{word-spacing:-16.684034pt;}
.wsf_c01126{word-spacing:-15.674491pt;}
.wsa_c01126{word-spacing:-13.496002pt;}
.wsc_c01126{word-spacing:-13.283467pt;}
.ws8_c01126{word-spacing:-8.878599pt;}
.ws9_c01126{word-spacing:-8.877777pt;}
.wse_c01126{word-spacing:-6.832128pt;}
.ws4_c01126{word-spacing:0.000000pt;}
.ws1_c01126{word-spacing:0.039110pt;}
.ws0_c01126{word-spacing:0.065111pt;}
.ws6_c01126{word-spacing:0.189730pt;}
.ws2_c01126{word-spacing:0.195063pt;}
.ws7_c01126{word-spacing:38.256533pt;}
._2_c01126{margin-left:-1.377235pt;}
._1_c01126{width:0.930850pt;}
._3_c01126{width:17.677261pt;}
._0_c01126{width:70.985376pt;}
.fs0_c01126{font-size:39.110400pt;}
.fs2_c01126{font-size:53.133867pt;}
.fs1_c01126{font-size:76.513067pt;}
.y0_c01126{bottom:0.000000pt;}
.y20_c01126{bottom:39.333333pt;}
.y1f_c01126{bottom:72.934667pt;}
.y1e_c01126{bottom:88.874667pt;}
.y1d_c01126{bottom:112.732000pt;}
.y1c_c01126{bottom:136.590667pt;}
.y1b_c01126{bottom:152.530667pt;}
.y1a_c01126{bottom:176.389333pt;}
.y19_c01126{bottom:200.246667pt;}
.y18_c01126{bottom:237.770667pt;}
.y17_c01126{bottom:651.080000pt;}
.y16_c01126{bottom:665.692000pt;}
.y15_c01126{bottom:680.304000pt;}
.y14_c01126{bottom:694.916000pt;}
.y13_c01126{bottom:709.528000pt;}
.y12_c01126{bottom:724.140000pt;}
.y11_c01126{bottom:738.752000pt;}
.y10_c01126{bottom:753.364000pt;}
.yf_c01126{bottom:767.976000pt;}
.ye_c01126{bottom:782.588000pt;}
.yd_c01126{bottom:797.198667pt;}
.yc_c01126{bottom:826.422667pt;}
.yb_c01126{bottom:841.034667pt;}
.ya_c01126{bottom:855.646667pt;}
.y9_c01126{bottom:884.870667pt;}
.y8_c01126{bottom:899.482667pt;}
.y7_c01126{bottom:914.094667pt;}
.y6_c01126{bottom:928.706667pt;}
.y5_c01126{bottom:943.317333pt;}
.y4_c01126{bottom:957.929333pt;}
.y3_c01126{bottom:972.541333pt;}
.y2_c01126{bottom:1016.377333pt;}
.y1_c01126{bottom:1030.989333pt;}
.h3_c01126{height:31.280681pt;}
.h2_c01126{height:32.006363pt;}
.h5_c01126{height:36.010648pt;}
.h6_c01126{height:46.518078pt;}
.h4_c01126{height:51.855535pt;}
.h0_c01126{height:1122.520000pt;}
.h1_c01126{height:1122.666667pt;}
.w0_c01126{width:793.706667pt;}
.w1_c01126{width:794.000000pt;}
.x0_c01126{left:0.000000pt;}
.x4_c01126{left:113.385333pt;}
.x2_c01126{left:121.886667pt;}
.x1_c01126{left:127.796000pt;}
.x3_c01126{left:157.340000pt;}
.x5_c01126{left:386.888000pt;}
}





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

.ir_c01127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_c1a0cd95b2619d16d732d0d2.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01127;src:url('chunks/assets/font_e126277a51c3a62278e4698d.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01127;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01127;src:url('chunks/assets/font_4afbb69be8c349f54afbf079.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.ls4_c01127{letter-spacing:0.000000px;}
.ls1_c01127{letter-spacing:0.087998px;}
.ls2_c01127{letter-spacing:0.098482px;}
.ls0_c01127{letter-spacing:0.104482px;}
.ls3_c01127{letter-spacing:26.690482px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01127{word-spacing:-33.713438px;}
.ws6_c01127{word-spacing:-26.575517px;}
.ws5_c01127{word-spacing:-26.487518px;}
.ws2_c01127{word-spacing:-18.769538px;}
.ws0_c01127{word-spacing:-14.107042px;}
.ws1_c01127{word-spacing:-12.074671px;}
.wsa_c01127{word-spacing:0.000000px;}
.ws7_c01127{word-spacing:0.043999px;}
.wsd_c01127{word-spacing:0.056767px;}
.wsb_c01127{word-spacing:0.073250px;}
.wsc_c01127{word-spacing:0.083734px;}
.ws4_c01127{word-spacing:0.175997px;}
.wse_c01127{word-spacing:0.202963px;}
.ws8_c01127{word-spacing:0.213446px;}
.ws9_c01127{word-spacing:0.219446px;}
._2_c01127{margin-left:-3.825638px;}
._3_c01127{width:1.005737px;}
._0_c01127{width:20.742133px;}
._1_c01127{width:40.109428px;}
._5_c01127{width:53.283031px;}
._4_c01127{width:79.858548px;}
._7_c01127{width:106.786058px;}
._6_c01127{width:133.452408px;}
.fc5_c01127{color:rgb(0,0,207);}
.fc4_c01127{color:rgb(79,153,5);}
.fc3_c01127{color:rgb(207,92,0);}
.fc2_c01127{color:rgb(33,74,135);}
.fc1_c01127{color:rgb(143,89,3);}
.fc0_c01127{color:rgb(0,0,0);}
.fs1_c01127{font-size:43.999200px;}
.fs0_c01127{font-size:59.775600px;}
.y0_c01127{bottom:0.000000px;}
.y2f_c01127{bottom:44.250000px;}
.y2e_c01127{bottom:96.919500px;}
.y2d_c01127{bottom:113.358000px;}
.y2c_c01127{bottom:129.796500px;}
.y2b_c01127{bottom:146.235000px;}
.y2a_c01127{bottom:162.673500px;}
.y29_c01127{bottom:179.112000px;}
.y28_c01127{bottom:195.550500px;}
.y27_c01127{bottom:211.989000px;}
.y26_c01127{bottom:228.427500px;}
.y25_c01127{bottom:244.866000px;}
.y24_c01127{bottom:261.304500px;}
.y23_c01127{bottom:294.180000px;}
.y22_c01127{bottom:310.618500px;}
.y21_c01127{bottom:327.057000px;}
.y20_c01127{bottom:359.934000px;}
.y1f_c01127{bottom:376.372500px;}
.y1e_c01127{bottom:392.811000px;}
.y1d_c01127{bottom:409.249500px;}
.y1c_c01127{bottom:425.688000px;}
.y1b_c01127{bottom:442.125000px;}
.y1a_c01127{bottom:458.563500px;}
.y19_c01127{bottom:507.879000px;}
.y18_c01127{bottom:524.317500px;}
.y17_c01127{bottom:540.756000px;}
.y16_c01127{bottom:557.194500px;}
.y15_c01127{bottom:573.633000px;}
.y14_c01127{bottom:590.071500px;}
.y13_c01127{bottom:606.508500px;}
.y12_c01127{bottom:622.947000px;}
.y11_c01127{bottom:639.385500px;}
.y10_c01127{bottom:655.824000px;}
.yf_c01127{bottom:672.262500px;}
.ye_c01127{bottom:688.701000px;}
.yd_c01127{bottom:705.139500px;}
.yc_c01127{bottom:721.578000px;}
.yb_c01127{bottom:738.016500px;}
.ya_c01127{bottom:754.455000px;}
.y9_c01127{bottom:787.330500px;}
.y8_c01127{bottom:803.769000px;}
.y7_c01127{bottom:853.084500px;}
.y6_c01127{bottom:869.523000px;}
.y5_c01127{bottom:885.588000px;}
.y4_c01127{bottom:1106.064000px;}
.y3_c01127{bottom:1123.998000px;}
.y2_c01127{bottom:1141.930500px;}
.y1_c01127{bottom:1159.863000px;}
.h3_c01127{height:35.190766px;}
.h4_c01127{height:36.007158px;}
.h2_c01127{height:52.332837px;}
.h0_c01127{height:1262.835000px;}
.h1_c01127{height:1263.000000px;}
.w0_c01127{width:892.920000px;}
.w1_c01127{width:893.250000px;}
.x0_c01127{left:0.000000px;}
.x1_c01127{left:127.558500px;}
.x2_c01127{left:137.122500px;}
.x3_c01127{left:143.770500px;}
.x4_c01127{left:177.007500px;}
.x5_c01127{left:435.249000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls4_c01127{letter-spacing:0.000000pt;}
.ls1_c01127{letter-spacing:0.078221pt;}
.ls2_c01127{letter-spacing:0.087539pt;}
.ls0_c01127{letter-spacing:0.092873pt;}
.ls3_c01127{letter-spacing:23.724873pt;}
.ws3_c01127{word-spacing:-29.967501pt;}
.ws6_c01127{word-spacing:-23.622682pt;}
.ws5_c01127{word-spacing:-23.544461pt;}
.ws2_c01127{word-spacing:-16.684034pt;}
.ws0_c01127{word-spacing:-12.539593pt;}
.ws1_c01127{word-spacing:-10.733041pt;}
.wsa_c01127{word-spacing:0.000000pt;}
.ws7_c01127{word-spacing:0.039110pt;}
.wsd_c01127{word-spacing:0.050460pt;}
.wsb_c01127{word-spacing:0.065111pt;}
.wsc_c01127{word-spacing:0.074430pt;}
.ws4_c01127{word-spacing:0.156442pt;}
.wse_c01127{word-spacing:0.180412pt;}
.ws8_c01127{word-spacing:0.189730pt;}
.ws9_c01127{word-spacing:0.195063pt;}
._2_c01127{margin-left:-3.400567pt;}
._3_c01127{width:0.893988pt;}
._0_c01127{width:18.437452pt;}
._1_c01127{width:35.652825pt;}
._5_c01127{width:47.362694pt;}
._4_c01127{width:70.985376pt;}
._7_c01127{width:94.920941pt;}
._6_c01127{width:118.624363pt;}
.fs1_c01127{font-size:39.110400pt;}
.fs0_c01127{font-size:53.133867pt;}
.y0_c01127{bottom:0.000000pt;}
.y2f_c01127{bottom:39.333333pt;}
.y2e_c01127{bottom:86.150667pt;}
.y2d_c01127{bottom:100.762667pt;}
.y2c_c01127{bottom:115.374667pt;}
.y2b_c01127{bottom:129.986667pt;}
.y2a_c01127{bottom:144.598667pt;}
.y29_c01127{bottom:159.210667pt;}
.y28_c01127{bottom:173.822667pt;}
.y27_c01127{bottom:188.434667pt;}
.y26_c01127{bottom:203.046667pt;}
.y25_c01127{bottom:217.658667pt;}
.y24_c01127{bottom:232.270667pt;}
.y23_c01127{bottom:261.493333pt;}
.y22_c01127{bottom:276.105333pt;}
.y21_c01127{bottom:290.717333pt;}
.y20_c01127{bottom:319.941333pt;}
.y1f_c01127{bottom:334.553333pt;}
.y1e_c01127{bottom:349.165333pt;}
.y1d_c01127{bottom:363.777333pt;}
.y1c_c01127{bottom:378.389333pt;}
.y1b_c01127{bottom:393.000000pt;}
.y1a_c01127{bottom:407.612000pt;}
.y19_c01127{bottom:451.448000pt;}
.y18_c01127{bottom:466.060000pt;}
.y17_c01127{bottom:480.672000pt;}
.y16_c01127{bottom:495.284000pt;}
.y15_c01127{bottom:509.896000pt;}
.y14_c01127{bottom:524.508000pt;}
.y13_c01127{bottom:539.118667pt;}
.y12_c01127{bottom:553.730667pt;}
.y11_c01127{bottom:568.342667pt;}
.y10_c01127{bottom:582.954667pt;}
.yf_c01127{bottom:597.566667pt;}
.ye_c01127{bottom:612.178667pt;}
.yd_c01127{bottom:626.790667pt;}
.yc_c01127{bottom:641.402667pt;}
.yb_c01127{bottom:656.014667pt;}
.ya_c01127{bottom:670.626667pt;}
.y9_c01127{bottom:699.849333pt;}
.y8_c01127{bottom:714.461333pt;}
.y7_c01127{bottom:758.297333pt;}
.y6_c01127{bottom:772.909333pt;}
.y5_c01127{bottom:787.189333pt;}
.y4_c01127{bottom:983.168000pt;}
.y3_c01127{bottom:999.109333pt;}
.y2_c01127{bottom:1015.049333pt;}
.y1_c01127{bottom:1030.989333pt;}
.h3_c01127{height:31.280681pt;}
.h4_c01127{height:32.006363pt;}
.h2_c01127{height:46.518078pt;}
.h0_c01127{height:1122.520000pt;}
.h1_c01127{height:1122.666667pt;}
.w0_c01127{width:793.706667pt;}
.w1_c01127{width:794.000000pt;}
.x0_c01127{left:0.000000pt;}
.x1_c01127{left:113.385333pt;}
.x2_c01127{left:121.886667pt;}
.x3_c01127{left:127.796000pt;}
.x4_c01127{left:157.340000pt;}
.x5_c01127{left:386.888000pt;}
}





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

.ir_c01128:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_a03e4a01898d9f07251a0d34.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01128;src:url('chunks/assets/font_258b2125f0a62e938fcbc942.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01128;src:url('chunks/assets/font_c250eb65b5f5b7ff705de8b8.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01128;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01128;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01128{font-family:ff5_c01128;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01128{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.ls3_c01128{letter-spacing:0.000000px;}
.ls0_c01128{letter-spacing:0.087998px;}
.ls2_c01128{letter-spacing:0.098482px;}
.ls1_c01128{letter-spacing:0.104482px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01128{word-spacing:-33.713438px;}
.ws2_c01128{word-spacing:-26.575517px;}
.ws10_c01128{word-spacing:-26.487518px;}
.ws5_c01128{word-spacing:-21.578992px;}
.wsb_c01128{word-spacing:-21.553319px;}
.wsa_c01128{word-spacing:-21.519216px;}
.ws7_c01128{word-spacing:-18.769538px;}
.ws4_c01128{word-spacing:-17.813129px;}
.ws9_c01128{word-spacing:-17.633802px;}
.ws6_c01128{word-spacing:-14.943900px;}
.wsc_c01128{word-spacing:-14.107042px;}
.wsd_c01128{word-spacing:-12.074671px;}
.ws1_c01128{word-spacing:-9.988424px;}
.ws3_c01128{word-spacing:-9.987499px;}
.ws8_c01128{word-spacing:-7.686144px;}
.ws14_c01128{word-spacing:0.000000px;}
.ws11_c01128{word-spacing:0.043999px;}
.ws17_c01128{word-spacing:0.056767px;}
.ws15_c01128{word-spacing:0.073250px;}
.ws16_c01128{word-spacing:0.083734px;}
.wsf_c01128{word-spacing:0.175997px;}
.ws18_c01128{word-spacing:0.202963px;}
.ws12_c01128{word-spacing:0.213446px;}
.ws13_c01128{word-spacing:0.219446px;}
.ws0_c01128{word-spacing:43.038600px;}
._4_c01128{margin-left:-3.825638px;}
._0_c01128{margin-left:-1.549390px;}
._5_c01128{width:1.005737px;}
._1_c01128{width:18.575045px;}
._2_c01128{width:19.930500px;}
._3_c01128{width:40.109428px;}
._7_c01128{width:53.283031px;}
._6_c01128{width:79.858548px;}
._8_c01128{width:133.452408px;}
.fc6_c01128{color:rgb(0,0,207);}
.fc5_c01128{color:rgb(79,153,5);}
.fc3_c01128{color:rgb(33,74,135);}
.fc2_c01128{color:rgb(143,89,3);}
.fc4_c01128{color:rgb(207,92,0);}
.fc1_c01128{color:rgb(6,69,173);}
.fc0_c01128{color:rgb(0,0,0);}
.fs2_c01128{font-size:43.999200px;}
.fs1_c01128{font-size:59.775600px;}
.fs0_c01128{font-size:86.077200px;}
.y0_c01128{bottom:0.000000px;}
.y20_c01128{bottom:44.250000px;}
.y1f_c01128{bottom:86.982000px;}
.y1e_c01128{bottom:103.420500px;}
.y1d_c01128{bottom:119.859000px;}
.y1c_c01128{bottom:136.297500px;}
.y1b_c01128{bottom:152.736000px;}
.y1a_c01128{bottom:169.174500px;}
.y19_c01128{bottom:185.613000px;}
.y18_c01128{bottom:202.051500px;}
.y17_c01128{bottom:218.490000px;}
.y16_c01128{bottom:234.927000px;}
.y15_c01128{bottom:251.365500px;}
.y14_c01128{bottom:267.804000px;}
.y13_c01128{bottom:284.242500px;}
.y12_c01128{bottom:300.681000px;}
.y11_c01128{bottom:317.119500px;}
.y10_c01128{bottom:349.996500px;}
.yf_c01128{bottom:366.435000px;}
.ye_c01128{bottom:415.749000px;}
.yd_c01128{bottom:432.187500px;}
.yc_c01128{bottom:448.252500px;}
.yb_c01128{bottom:493.890000px;}
.ya_c01128{bottom:511.822500px;}
.y9_c01128{bottom:529.756500px;}
.y8_c01128{bottom:547.689000px;}
.y7_c01128{bottom:565.621500px;}
.y6_c01128{bottom:583.554000px;}
.y5_c01128{bottom:610.633500px;}
.y4_c01128{bottom:637.714500px;}
.y3_c01128{bottom:664.794000px;}
.y2_c01128{bottom:691.873500px;}
.y1_c01128{bottom:734.407500px;}
.h5_c01128{height:35.190766px;}
.h6_c01128{height:36.007158px;}
.h3_c01128{height:40.511979px;}
.h4_c01128{height:52.332837px;}
.h2_c01128{height:58.337477px;}
.h0_c01128{height:1262.835000px;}
.h1_c01128{height:1263.000000px;}
.w0_c01128{width:892.920000px;}
.w1_c01128{width:893.250000px;}
.x0_c01128{left:0.000000px;}
.x1_c01128{left:127.558500px;}
.x2_c01128{left:137.122500px;}
.x3_c01128{left:143.770500px;}
.x4_c01128{left:435.249000px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls3_c01128{letter-spacing:0.000000pt;}
.ls0_c01128{letter-spacing:0.078221pt;}
.ls2_c01128{letter-spacing:0.087539pt;}
.ls1_c01128{letter-spacing:0.092873pt;}
.wse_c01128{word-spacing:-29.967501pt;}
.ws2_c01128{word-spacing:-23.622682pt;}
.ws10_c01128{word-spacing:-23.544461pt;}
.ws5_c01128{word-spacing:-19.181326pt;}
.wsb_c01128{word-spacing:-19.158506pt;}
.wsa_c01128{word-spacing:-19.128192pt;}
.ws7_c01128{word-spacing:-16.684034pt;}
.ws4_c01128{word-spacing:-15.833892pt;}
.ws9_c01128{word-spacing:-15.674491pt;}
.ws6_c01128{word-spacing:-13.283467pt;}
.wsc_c01128{word-spacing:-12.539593pt;}
.wsd_c01128{word-spacing:-10.733041pt;}
.ws1_c01128{word-spacing:-8.878599pt;}
.ws3_c01128{word-spacing:-8.877777pt;}
.ws8_c01128{word-spacing:-6.832128pt;}
.ws14_c01128{word-spacing:0.000000pt;}
.ws11_c01128{word-spacing:0.039110pt;}
.ws17_c01128{word-spacing:0.050460pt;}
.ws15_c01128{word-spacing:0.065111pt;}
.ws16_c01128{word-spacing:0.074430pt;}
.wsf_c01128{word-spacing:0.156442pt;}
.ws18_c01128{word-spacing:0.180412pt;}
.ws12_c01128{word-spacing:0.189730pt;}
.ws13_c01128{word-spacing:0.195063pt;}
.ws0_c01128{word-spacing:38.256533pt;}
._4_c01128{margin-left:-3.400567pt;}
._0_c01128{margin-left:-1.377235pt;}
._5_c01128{width:0.893988pt;}
._1_c01128{width:16.511151pt;}
._2_c01128{width:17.716000pt;}
._3_c01128{width:35.652825pt;}
._7_c01128{width:47.362694pt;}
._6_c01128{width:70.985376pt;}
._8_c01128{width:118.624363pt;}
.fs2_c01128{font-size:39.110400pt;}
.fs1_c01128{font-size:53.133867pt;}
.fs0_c01128{font-size:76.513067pt;}
.y0_c01128{bottom:0.000000pt;}
.y20_c01128{bottom:39.333333pt;}
.y1f_c01128{bottom:77.317333pt;}
.y1e_c01128{bottom:91.929333pt;}
.y1d_c01128{bottom:106.541333pt;}
.y1c_c01128{bottom:121.153333pt;}
.y1b_c01128{bottom:135.765333pt;}
.y1a_c01128{bottom:150.377333pt;}
.y19_c01128{bottom:164.989333pt;}
.y18_c01128{bottom:179.601333pt;}
.y17_c01128{bottom:194.213333pt;}
.y16_c01128{bottom:208.824000pt;}
.y15_c01128{bottom:223.436000pt;}
.y14_c01128{bottom:238.048000pt;}
.y13_c01128{bottom:252.660000pt;}
.y12_c01128{bottom:267.272000pt;}
.y11_c01128{bottom:281.884000pt;}
.y10_c01128{bottom:311.108000pt;}
.yf_c01128{bottom:325.720000pt;}
.ye_c01128{bottom:369.554667pt;}
.yd_c01128{bottom:384.166667pt;}
.yc_c01128{bottom:398.446667pt;}
.yb_c01128{bottom:439.013333pt;}
.ya_c01128{bottom:454.953333pt;}
.y9_c01128{bottom:470.894667pt;}
.y8_c01128{bottom:486.834667pt;}
.y7_c01128{bottom:502.774667pt;}
.y6_c01128{bottom:518.714667pt;}
.y5_c01128{bottom:542.785333pt;}
.y4_c01128{bottom:566.857333pt;}
.y3_c01128{bottom:590.928000pt;}
.y2_c01128{bottom:614.998667pt;}
.y1_c01128{bottom:652.806667pt;}
.h5_c01128{height:31.280681pt;}
.h6_c01128{height:32.006363pt;}
.h3_c01128{height:36.010648pt;}
.h4_c01128{height:46.518078pt;}
.h2_c01128{height:51.855535pt;}
.h0_c01128{height:1122.520000pt;}
.h1_c01128{height:1122.666667pt;}
.w0_c01128{width:793.706667pt;}
.w1_c01128{width:794.000000pt;}
.x0_c01128{left:0.000000pt;}
.x1_c01128{left:113.385333pt;}
.x2_c01128{left:121.886667pt;}
.x3_c01128{left:127.796000pt;}
.x4_c01128{left:386.888000pt;}
}





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

.ir_c01129:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_199b7a6469d74d190d4b4cd4.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01129;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01129;src:url('chunks/assets/font_e48b1b56b4f49c238ccaefa3.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01129;src:url('chunks/assets/font_a03e4a01898d9f07251a0d34.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01129;src:url('chunks/assets/font_a7d49c200d587a0aaab2a4e8.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01129{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.ls4_c01129{letter-spacing:0.000000px;}
.ls0_c01129{letter-spacing:0.087998px;}
.ls2_c01129{letter-spacing:0.098482px;}
.ls3_c01129{letter-spacing:0.104482px;}
.ls1_c01129{letter-spacing:26.690482px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01129{word-spacing:-26.575517px;}
.ws4_c01129{word-spacing:-26.487518px;}
.wsa_c01129{word-spacing:-23.671138px;}
.ws10_c01129{word-spacing:-21.553319px;}
.wsf_c01129{word-spacing:-21.519216px;}
.ws9_c01129{word-spacing:-19.845499px;}
.wse_c01129{word-spacing:-19.247743px;}
.wsc_c01129{word-spacing:-18.769538px;}
.wsb_c01129{word-spacing:-14.943900px;}
.ws11_c01129{word-spacing:-14.107042px;}
.ws12_c01129{word-spacing:-12.074671px;}
.wsd_c01129{word-spacing:-10.230144px;}
.ws7_c01129{word-spacing:-9.988424px;}
.ws8_c01129{word-spacing:-9.987499px;}
.ws3_c01129{word-spacing:0.000000px;}
.ws0_c01129{word-spacing:0.043999px;}
.ws5_c01129{word-spacing:0.213446px;}
.ws1_c01129{word-spacing:0.219446px;}
.ws6_c01129{word-spacing:43.038600px;}
._2_c01129{margin-left:-1.549390px;}
._1_c01129{width:1.063690px;}
._3_c01129{width:17.511415px;}
._4_c01129{width:19.930500px;}
._5_c01129{width:40.109428px;}
._0_c01129{width:106.786058px;}
.fc5_c01129{color:rgb(79,153,5);}
.fc4_c01129{color:rgb(143,89,3);}
.fc3_c01129{color:rgb(0,0,0);}
.fc6_c01129{color:rgb(6,69,173);}
.fc2_c01129{color:rgb(207,92,0);}
.fc1_c01129{color:rgb(0,0,207);}
.fc0_c01129{color:rgb(33,74,135);}
.fs0_c01129{font-size:43.999200px;}
.fs2_c01129{font-size:59.775600px;}
.fs1_c01129{font-size:86.077200px;}
.y0_c01129{bottom:0.000000px;}
.y20_c01129{bottom:44.250000px;}
.y1f_c01129{bottom:82.051500px;}
.y1e_c01129{bottom:99.984000px;}
.y1d_c01129{bottom:117.916500px;}
.y1c_c01129{bottom:135.849000px;}
.y1b_c01129{bottom:162.501000px;}
.y1a_c01129{bottom:189.151500px;}
.y19_c01129{bottom:215.802000px;}
.y18_c01129{bottom:242.454000px;}
.y17_c01129{bottom:284.478000px;}
.y16_c01129{bottom:748.903500px;}
.y15_c01129{bottom:765.342000px;}
.y14_c01129{bottom:781.780500px;}
.y13_c01129{bottom:798.219000px;}
.y12_c01129{bottom:814.657500px;}
.y11_c01129{bottom:831.096000px;}
.y10_c01129{bottom:847.534500px;}
.yf_c01129{bottom:863.973000px;}
.ye_c01129{bottom:880.411500px;}
.yd_c01129{bottom:896.848500px;}
.yc_c01129{bottom:913.287000px;}
.yb_c01129{bottom:946.164000px;}
.ya_c01129{bottom:962.602500px;}
.y9_c01129{bottom:979.041000px;}
.y8_c01129{bottom:1011.918000px;}
.y7_c01129{bottom:1028.356500px;}
.y6_c01129{bottom:1044.795000px;}
.y5_c01129{bottom:1061.232000px;}
.y4_c01129{bottom:1077.670500px;}
.y3_c01129{bottom:1094.109000px;}
.y2_c01129{bottom:1110.547500px;}
.y1_c01129{bottom:1159.863000px;}
.h3_c01129{height:35.190766px;}
.h2_c01129{height:36.007158px;}
.h5_c01129{height:40.511979px;}
.h6_c01129{height:52.332837px;}
.h4_c01129{height:58.337477px;}
.h0_c01129{height:1262.835000px;}
.h1_c01129{height:1263.000000px;}
.w0_c01129{width:892.920000px;}
.w1_c01129{width:893.250000px;}
.x0_c01129{left:0.000000px;}
.x4_c01129{left:127.558500px;}
.x2_c01129{left:137.122500px;}
.x1_c01129{left:143.770500px;}
.x3_c01129{left:177.007500px;}
.x5_c01129{left:435.249000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls4_c01129{letter-spacing:0.000000pt;}
.ls0_c01129{letter-spacing:0.078221pt;}
.ls2_c01129{letter-spacing:0.087539pt;}
.ls3_c01129{letter-spacing:0.092873pt;}
.ls1_c01129{letter-spacing:23.724873pt;}
.ws2_c01129{word-spacing:-23.622682pt;}
.ws4_c01129{word-spacing:-23.544461pt;}
.wsa_c01129{word-spacing:-21.041011pt;}
.ws10_c01129{word-spacing:-19.158506pt;}
.wsf_c01129{word-spacing:-19.128192pt;}
.ws9_c01129{word-spacing:-17.640444pt;}
.wse_c01129{word-spacing:-17.109105pt;}
.wsc_c01129{word-spacing:-16.684034pt;}
.wsb_c01129{word-spacing:-13.283467pt;}
.ws11_c01129{word-spacing:-12.539593pt;}
.ws12_c01129{word-spacing:-10.733041pt;}
.wsd_c01129{word-spacing:-9.093461pt;}
.ws7_c01129{word-spacing:-8.878599pt;}
.ws8_c01129{word-spacing:-8.877777pt;}
.ws3_c01129{word-spacing:0.000000pt;}
.ws0_c01129{word-spacing:0.039110pt;}
.ws5_c01129{word-spacing:0.189730pt;}
.ws1_c01129{word-spacing:0.195063pt;}
.ws6_c01129{word-spacing:38.256533pt;}
._2_c01129{margin-left:-1.377235pt;}
._1_c01129{width:0.945502pt;}
._3_c01129{width:15.565702pt;}
._4_c01129{width:17.716000pt;}
._5_c01129{width:35.652825pt;}
._0_c01129{width:94.920941pt;}
.fs0_c01129{font-size:39.110400pt;}
.fs2_c01129{font-size:53.133867pt;}
.fs1_c01129{font-size:76.513067pt;}
.y0_c01129{bottom:0.000000pt;}
.y20_c01129{bottom:39.333333pt;}
.y1f_c01129{bottom:72.934667pt;}
.y1e_c01129{bottom:88.874667pt;}
.y1d_c01129{bottom:104.814667pt;}
.y1c_c01129{bottom:120.754667pt;}
.y1b_c01129{bottom:144.445333pt;}
.y1a_c01129{bottom:168.134667pt;}
.y19_c01129{bottom:191.824000pt;}
.y18_c01129{bottom:215.514667pt;}
.y17_c01129{bottom:252.869333pt;}
.y16_c01129{bottom:665.692000pt;}
.y15_c01129{bottom:680.304000pt;}
.y14_c01129{bottom:694.916000pt;}
.y13_c01129{bottom:709.528000pt;}
.y12_c01129{bottom:724.140000pt;}
.y11_c01129{bottom:738.752000pt;}
.y10_c01129{bottom:753.364000pt;}
.yf_c01129{bottom:767.976000pt;}
.ye_c01129{bottom:782.588000pt;}
.yd_c01129{bottom:797.198667pt;}
.yc_c01129{bottom:811.810667pt;}
.yb_c01129{bottom:841.034667pt;}
.ya_c01129{bottom:855.646667pt;}
.y9_c01129{bottom:870.258667pt;}
.y8_c01129{bottom:899.482667pt;}
.y7_c01129{bottom:914.094667pt;}
.y6_c01129{bottom:928.706667pt;}
.y5_c01129{bottom:943.317333pt;}
.y4_c01129{bottom:957.929333pt;}
.y3_c01129{bottom:972.541333pt;}
.y2_c01129{bottom:987.153333pt;}
.y1_c01129{bottom:1030.989333pt;}
.h3_c01129{height:31.280681pt;}
.h2_c01129{height:32.006363pt;}
.h5_c01129{height:36.010648pt;}
.h6_c01129{height:46.518078pt;}
.h4_c01129{height:51.855535pt;}
.h0_c01129{height:1122.520000pt;}
.h1_c01129{height:1122.666667pt;}
.w0_c01129{width:793.706667pt;}
.w1_c01129{width:794.000000pt;}
.x0_c01129{left:0.000000pt;}
.x4_c01129{left:113.385333pt;}
.x2_c01129{left:121.886667pt;}
.x1_c01129{left:127.796000pt;}
.x3_c01129{left:157.340000pt;}
.x5_c01129{left:386.888000pt;}
}





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

.ir_c01130:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_062d5ab328ece2e25f5236b8.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01130;src:url('chunks/assets/font_f9f753cf8aa161800372993c.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01130;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01130;src:url('chunks/assets/font_100a610e585e893163a1d4a7.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls4_c01130{letter-spacing:0.000000px;}
.ls1_c01130{letter-spacing:0.087998px;}
.ls2_c01130{letter-spacing:0.098482px;}
.ls0_c01130{letter-spacing:0.104482px;}
.ls3_c01130{letter-spacing:26.690482px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01130{word-spacing:-33.713438px;}
.ws4_c01130{word-spacing:-26.575517px;}
.ws3_c01130{word-spacing:-26.487518px;}
.ws0_c01130{word-spacing:-18.769538px;}
.ws8_c01130{word-spacing:0.000000px;}
.ws5_c01130{word-spacing:0.043999px;}
.wsb_c01130{word-spacing:0.056767px;}
.ws9_c01130{word-spacing:0.073250px;}
.wsa_c01130{word-spacing:0.083734px;}
.ws2_c01130{word-spacing:0.175997px;}
.wsc_c01130{word-spacing:0.202963px;}
.ws6_c01130{word-spacing:0.213446px;}
.ws7_c01130{word-spacing:0.219446px;}
._0_c01130{margin-left:-3.825638px;}
._1_c01130{width:1.005737px;}
._3_c01130{width:53.283031px;}
._2_c01130{width:79.858548px;}
._4_c01130{width:133.452408px;}
.fc5_c01130{color:rgb(0,0,207);}
.fc4_c01130{color:rgb(79,153,5);}
.fc3_c01130{color:rgb(207,92,0);}
.fc2_c01130{color:rgb(33,74,135);}
.fc1_c01130{color:rgb(143,89,3);}
.fc0_c01130{color:rgb(0,0,0);}
.fs1_c01130{font-size:43.999200px;}
.fs0_c01130{font-size:59.775600px;}
.y0_c01130{bottom:0.000000px;}
.y2d_c01130{bottom:44.250000px;}
.y2c_c01130{bottom:96.919500px;}
.y2b_c01130{bottom:113.358000px;}
.y2a_c01130{bottom:129.796500px;}
.y29_c01130{bottom:146.235000px;}
.y28_c01130{bottom:162.673500px;}
.y27_c01130{bottom:179.112000px;}
.y26_c01130{bottom:195.550500px;}
.y25_c01130{bottom:211.989000px;}
.y24_c01130{bottom:228.427500px;}
.y23_c01130{bottom:244.866000px;}
.y22_c01130{bottom:261.304500px;}
.y21_c01130{bottom:294.180000px;}
.y20_c01130{bottom:310.618500px;}
.y1f_c01130{bottom:327.057000px;}
.y1e_c01130{bottom:359.934000px;}
.y1d_c01130{bottom:376.372500px;}
.y1c_c01130{bottom:392.811000px;}
.y1b_c01130{bottom:409.249500px;}
.y1a_c01130{bottom:425.688000px;}
.y19_c01130{bottom:442.125000px;}
.y18_c01130{bottom:458.563500px;}
.y17_c01130{bottom:507.879000px;}
.y16_c01130{bottom:524.317500px;}
.y15_c01130{bottom:540.756000px;}
.y14_c01130{bottom:557.194500px;}
.y13_c01130{bottom:573.633000px;}
.y12_c01130{bottom:590.071500px;}
.y11_c01130{bottom:606.508500px;}
.y10_c01130{bottom:622.947000px;}
.yf_c01130{bottom:639.385500px;}
.ye_c01130{bottom:655.824000px;}
.yd_c01130{bottom:672.262500px;}
.yc_c01130{bottom:688.701000px;}
.yb_c01130{bottom:705.139500px;}
.ya_c01130{bottom:721.578000px;}
.y9_c01130{bottom:738.016500px;}
.y8_c01130{bottom:754.455000px;}
.y7_c01130{bottom:787.330500px;}
.y6_c01130{bottom:803.769000px;}
.y5_c01130{bottom:853.084500px;}
.y4_c01130{bottom:869.523000px;}
.y3_c01130{bottom:885.588000px;}
.y2_c01130{bottom:1141.930500px;}
.y1_c01130{bottom:1159.863000px;}
.h3_c01130{height:35.190766px;}
.h4_c01130{height:36.007158px;}
.h2_c01130{height:52.332837px;}
.h0_c01130{height:1262.835000px;}
.h1_c01130{height:1263.000000px;}
.w0_c01130{width:892.920000px;}
.w1_c01130{width:893.250000px;}
.x0_c01130{left:0.000000px;}
.x1_c01130{left:127.558500px;}
.x2_c01130{left:137.122500px;}
.x3_c01130{left:143.770500px;}
.x4_c01130{left:177.007500px;}
.x5_c01130{left:435.249000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls4_c01130{letter-spacing:0.000000pt;}
.ls1_c01130{letter-spacing:0.078221pt;}
.ls2_c01130{letter-spacing:0.087539pt;}
.ls0_c01130{letter-spacing:0.092873pt;}
.ls3_c01130{letter-spacing:23.724873pt;}
.ws1_c01130{word-spacing:-29.967501pt;}
.ws4_c01130{word-spacing:-23.622682pt;}
.ws3_c01130{word-spacing:-23.544461pt;}
.ws0_c01130{word-spacing:-16.684034pt;}
.ws8_c01130{word-spacing:0.000000pt;}
.ws5_c01130{word-spacing:0.039110pt;}
.wsb_c01130{word-spacing:0.050460pt;}
.ws9_c01130{word-spacing:0.065111pt;}
.wsa_c01130{word-spacing:0.074430pt;}
.ws2_c01130{word-spacing:0.156442pt;}
.wsc_c01130{word-spacing:0.180412pt;}
.ws6_c01130{word-spacing:0.189730pt;}
.ws7_c01130{word-spacing:0.195063pt;}
._0_c01130{margin-left:-3.400567pt;}
._1_c01130{width:0.893988pt;}
._3_c01130{width:47.362694pt;}
._2_c01130{width:70.985376pt;}
._4_c01130{width:118.624363pt;}
.fs1_c01130{font-size:39.110400pt;}
.fs0_c01130{font-size:53.133867pt;}
.y0_c01130{bottom:0.000000pt;}
.y2d_c01130{bottom:39.333333pt;}
.y2c_c01130{bottom:86.150667pt;}
.y2b_c01130{bottom:100.762667pt;}
.y2a_c01130{bottom:115.374667pt;}
.y29_c01130{bottom:129.986667pt;}
.y28_c01130{bottom:144.598667pt;}
.y27_c01130{bottom:159.210667pt;}
.y26_c01130{bottom:173.822667pt;}
.y25_c01130{bottom:188.434667pt;}
.y24_c01130{bottom:203.046667pt;}
.y23_c01130{bottom:217.658667pt;}
.y22_c01130{bottom:232.270667pt;}
.y21_c01130{bottom:261.493333pt;}
.y20_c01130{bottom:276.105333pt;}
.y1f_c01130{bottom:290.717333pt;}
.y1e_c01130{bottom:319.941333pt;}
.y1d_c01130{bottom:334.553333pt;}
.y1c_c01130{bottom:349.165333pt;}
.y1b_c01130{bottom:363.777333pt;}
.y1a_c01130{bottom:378.389333pt;}
.y19_c01130{bottom:393.000000pt;}
.y18_c01130{bottom:407.612000pt;}
.y17_c01130{bottom:451.448000pt;}
.y16_c01130{bottom:466.060000pt;}
.y15_c01130{bottom:480.672000pt;}
.y14_c01130{bottom:495.284000pt;}
.y13_c01130{bottom:509.896000pt;}
.y12_c01130{bottom:524.508000pt;}
.y11_c01130{bottom:539.118667pt;}
.y10_c01130{bottom:553.730667pt;}
.yf_c01130{bottom:568.342667pt;}
.ye_c01130{bottom:582.954667pt;}
.yd_c01130{bottom:597.566667pt;}
.yc_c01130{bottom:612.178667pt;}
.yb_c01130{bottom:626.790667pt;}
.ya_c01130{bottom:641.402667pt;}
.y9_c01130{bottom:656.014667pt;}
.y8_c01130{bottom:670.626667pt;}
.y7_c01130{bottom:699.849333pt;}
.y6_c01130{bottom:714.461333pt;}
.y5_c01130{bottom:758.297333pt;}
.y4_c01130{bottom:772.909333pt;}
.y3_c01130{bottom:787.189333pt;}
.y2_c01130{bottom:1015.049333pt;}
.y1_c01130{bottom:1030.989333pt;}
.h3_c01130{height:31.280681pt;}
.h4_c01130{height:32.006363pt;}
.h2_c01130{height:46.518078pt;}
.h0_c01130{height:1122.520000pt;}
.h1_c01130{height:1122.666667pt;}
.w0_c01130{width:793.706667pt;}
.w1_c01130{width:794.000000pt;}
.x0_c01130{left:0.000000pt;}
.x1_c01130{left:113.385333pt;}
.x2_c01130{left:121.886667pt;}
.x3_c01130{left:127.796000pt;}
.x4_c01130{left:157.340000pt;}
.x5_c01130{left:386.888000pt;}
}





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

.ir_c01131:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_0b0321e9dffe5ac9631cc94e.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01131;src:url('chunks/assets/font_5c114fc299050735db075988.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01131;src:url('chunks/assets/font_7a107c6d09a9c9237cca43cc.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01131;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01131;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01131{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls3_c01131{letter-spacing:0.000000px;}
.ls0_c01131{letter-spacing:0.087998px;}
.ls2_c01131{letter-spacing:0.098482px;}
.ls1_c01131{letter-spacing:0.104482px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01131{word-spacing:-26.575517px;}
.ws11_c01131{word-spacing:-26.487518px;}
.ws5_c01131{word-spacing:-20.801909px;}
.ws6_c01131{word-spacing:-18.769538px;}
.wse_c01131{word-spacing:-18.530436px;}
.wsf_c01131{word-spacing:-17.813129px;}
.wsa_c01131{word-spacing:-17.036046px;}
.ws4_c01131{word-spacing:-16.976270px;}
.ws9_c01131{word-spacing:-15.661207px;}
.ws7_c01131{word-spacing:-14.943900px;}
.wsc_c01131{word-spacing:-12.732203px;}
.wsd_c01131{word-spacing:-12.074671px;}
.ws1_c01131{word-spacing:-9.988424px;}
.ws3_c01131{word-spacing:-9.987499px;}
.wsb_c01131{word-spacing:-5.487432px;}
.ws8_c01131{word-spacing:-3.804144px;}
.ws15_c01131{word-spacing:0.000000px;}
.ws12_c01131{word-spacing:0.043999px;}
.ws10_c01131{word-spacing:0.175997px;}
.ws14_c01131{word-spacing:0.213446px;}
.ws13_c01131{word-spacing:0.219446px;}
.ws0_c01131{word-spacing:43.038600px;}
._3_c01131{margin-left:-7.770828px;}
._2_c01131{margin-left:-4.727048px;}
._4_c01131{margin-left:-3.227882px;}
._0_c01131{margin-left:-1.549390px;}
._9_c01131{width:1.005737px;}
._1_c01131{width:18.956186px;}
._8_c01131{width:20.742133px;}
._7_c01131{width:23.628312px;}
._5_c01131{width:25.010364px;}
._6_c01131{width:38.460604px;}
.fc5_c01131{color:rgb(79,153,5);}
.fc3_c01131{color:rgb(33,74,135);}
.fc2_c01131{color:rgb(143,89,3);}
.fc4_c01131{color:rgb(207,92,0);}
.fc1_c01131{color:rgb(6,69,173);}
.fc0_c01131{color:rgb(0,0,0);}
.fs2_c01131{font-size:43.999200px;}
.fs1_c01131{font-size:59.775600px;}
.fs0_c01131{font-size:86.077200px;}
.y0_c01131{bottom:0.000000px;}
.y1f_c01131{bottom:44.250000px;}
.y1e_c01131{bottom:82.051500px;}
.y1d_c01131{bottom:98.490000px;}
.y1c_c01131{bottom:147.804000px;}
.y1b_c01131{bottom:164.242500px;}
.y1a_c01131{bottom:197.119500px;}
.y19_c01131{bottom:213.558000px;}
.y18_c01131{bottom:229.996500px;}
.y17_c01131{bottom:246.435000px;}
.y16_c01131{bottom:279.310500px;}
.y15_c01131{bottom:295.749000px;}
.y14_c01131{bottom:312.187500px;}
.y13_c01131{bottom:328.626000px;}
.y12_c01131{bottom:345.064500px;}
.y11_c01131{bottom:361.503000px;}
.y10_c01131{bottom:377.941500px;}
.yf_c01131{bottom:394.380000px;}
.ye_c01131{bottom:410.445000px;}
.yd_c01131{bottom:458.862000px;}
.yc_c01131{bottom:476.794500px;}
.yb_c01131{bottom:494.727000px;}
.ya_c01131{bottom:512.659500px;}
.y9_c01131{bottom:530.593500px;}
.y8_c01131{bottom:548.526000px;}
.y7_c01131{bottom:566.458500px;}
.y6_c01131{bottom:593.442000px;}
.y5_c01131{bottom:620.425500px;}
.y4_c01131{bottom:638.358000px;}
.y3_c01131{bottom:665.341500px;}
.y2_c01131{bottom:692.325000px;}
.y1_c01131{bottom:734.719500px;}
.h5_c01131{height:35.190766px;}
.h6_c01131{height:36.007158px;}
.h3_c01131{height:40.511979px;}
.h4_c01131{height:52.332837px;}
.h2_c01131{height:58.337477px;}
.h0_c01131{height:1262.835000px;}
.h1_c01131{height:1263.000000px;}
.w0_c01131{width:892.920000px;}
.w1_c01131{width:893.250000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:127.558500px;}
.x2_c01131{left:137.122500px;}
.x3_c01131{left:435.249000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls3_c01131{letter-spacing:0.000000pt;}
.ls0_c01131{letter-spacing:0.078221pt;}
.ls2_c01131{letter-spacing:0.087539pt;}
.ls1_c01131{letter-spacing:0.092873pt;}
.ws2_c01131{word-spacing:-23.622682pt;}
.ws11_c01131{word-spacing:-23.544461pt;}
.ws5_c01131{word-spacing:-18.490586pt;}
.ws6_c01131{word-spacing:-16.684034pt;}
.wse_c01131{word-spacing:-16.471499pt;}
.wsf_c01131{word-spacing:-15.833892pt;}
.wsa_c01131{word-spacing:-15.143152pt;}
.ws4_c01131{word-spacing:-15.090018pt;}
.ws9_c01131{word-spacing:-13.921073pt;}
.ws7_c01131{word-spacing:-13.283467pt;}
.wsc_c01131{word-spacing:-11.317514pt;}
.wsd_c01131{word-spacing:-10.733041pt;}
.ws1_c01131{word-spacing:-8.878599pt;}
.ws3_c01131{word-spacing:-8.877777pt;}
.wsb_c01131{word-spacing:-4.877717pt;}
.ws8_c01131{word-spacing:-3.381461pt;}
.ws15_c01131{word-spacing:0.000000pt;}
.ws12_c01131{word-spacing:0.039110pt;}
.ws10_c01131{word-spacing:0.156442pt;}
.ws14_c01131{word-spacing:0.189730pt;}
.ws13_c01131{word-spacing:0.195063pt;}
.ws0_c01131{word-spacing:38.256533pt;}
._3_c01131{margin-left:-6.907403pt;}
._2_c01131{margin-left:-4.201821pt;}
._4_c01131{margin-left:-2.869229pt;}
._0_c01131{margin-left:-1.377235pt;}
._9_c01131{width:0.893988pt;}
._1_c01131{width:16.849943pt;}
._8_c01131{width:18.437452pt;}
._7_c01131{width:21.002944pt;}
._5_c01131{width:22.231435pt;}
._6_c01131{width:34.187203pt;}
.fs2_c01131{font-size:39.110400pt;}
.fs1_c01131{font-size:53.133867pt;}
.fs0_c01131{font-size:76.513067pt;}
.y0_c01131{bottom:0.000000pt;}
.y1f_c01131{bottom:39.333333pt;}
.y1e_c01131{bottom:72.934667pt;}
.y1d_c01131{bottom:87.546667pt;}
.y1c_c01131{bottom:131.381333pt;}
.y1b_c01131{bottom:145.993333pt;}
.y1a_c01131{bottom:175.217333pt;}
.y19_c01131{bottom:189.829333pt;}
.y18_c01131{bottom:204.441333pt;}
.y17_c01131{bottom:219.053333pt;}
.y16_c01131{bottom:248.276000pt;}
.y15_c01131{bottom:262.888000pt;}
.y14_c01131{bottom:277.500000pt;}
.y13_c01131{bottom:292.112000pt;}
.y12_c01131{bottom:306.724000pt;}
.y11_c01131{bottom:321.336000pt;}
.y10_c01131{bottom:335.948000pt;}
.yf_c01131{bottom:350.560000pt;}
.ye_c01131{bottom:364.840000pt;}
.yd_c01131{bottom:407.877333pt;}
.yc_c01131{bottom:423.817333pt;}
.yb_c01131{bottom:439.757333pt;}
.ya_c01131{bottom:455.697333pt;}
.y9_c01131{bottom:471.638667pt;}
.y8_c01131{bottom:487.578667pt;}
.y7_c01131{bottom:503.518667pt;}
.y6_c01131{bottom:527.504000pt;}
.y5_c01131{bottom:551.489333pt;}
.y4_c01131{bottom:567.429333pt;}
.y3_c01131{bottom:591.414667pt;}
.y2_c01131{bottom:615.400000pt;}
.y1_c01131{bottom:653.084000pt;}
.h5_c01131{height:31.280681pt;}
.h6_c01131{height:32.006363pt;}
.h3_c01131{height:36.010648pt;}
.h4_c01131{height:46.518078pt;}
.h2_c01131{height:51.855535pt;}
.h0_c01131{height:1122.520000pt;}
.h1_c01131{height:1122.666667pt;}
.w0_c01131{width:793.706667pt;}
.w1_c01131{width:794.000000pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:113.385333pt;}
.x2_c01131{left:121.886667pt;}
.x3_c01131{left:386.888000pt;}
}





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

.ir_c01132:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_3146aa3e7f8ecd30a7a2b48e.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01132;src:url('chunks/assets/font_383c99afe16a77c68b4e4f1e.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01132;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01132;src:url('chunks/assets/font_e1c786ce4d390d270c70adae.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls3_c01132{letter-spacing:0.000000px;}
.ls0_c01132{letter-spacing:0.087998px;}
.ls2_c01132{letter-spacing:0.098482px;}
.ls1_c01132{letter-spacing:0.104482px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01132{word-spacing:-26.575517px;}
.ws5_c01132{word-spacing:-26.487518px;}
.ws2_c01132{word-spacing:0.000000px;}
.ws6_c01132{word-spacing:0.043999px;}
.ws3_c01132{word-spacing:0.053933px;}
.ws7_c01132{word-spacing:0.056767px;}
.ws4_c01132{word-spacing:0.070416px;}
.ws0_c01132{word-spacing:0.175997px;}
.ws8_c01132{word-spacing:0.213446px;}
._1_c01132{width:1.028438px;}
._0_c01132{width:80.210542px;}
.fc5_c01132{color:rgb(0,0,207);}
.fc4_c01132{color:rgb(207,92,0);}
.fc3_c01132{color:rgb(79,153,5);}
.fc2_c01132{color:rgb(33,74,135);}
.fc1_c01132{color:rgb(0,0,0);}
.fc0_c01132{color:rgb(143,89,3);}
.fs0_c01132{font-size:43.999200px;}
.fs1_c01132{font-size:59.775600px;}
.y0_c01132{bottom:0.000000px;}
.y2d_c01132{bottom:44.250000px;}
.y2c_c01132{bottom:370.822500px;}
.y2b_c01132{bottom:387.259500px;}
.y2a_c01132{bottom:403.698000px;}
.y29_c01132{bottom:420.136500px;}
.y28_c01132{bottom:436.575000px;}
.y27_c01132{bottom:453.013500px;}
.y26_c01132{bottom:469.452000px;}
.y25_c01132{bottom:485.890500px;}
.y24_c01132{bottom:502.329000px;}
.y23_c01132{bottom:518.767500px;}
.y22_c01132{bottom:535.206000px;}
.y21_c01132{bottom:568.081500px;}
.y20_c01132{bottom:584.520000px;}
.y1f_c01132{bottom:600.958500px;}
.y1e_c01132{bottom:633.835500px;}
.y1d_c01132{bottom:650.274000px;}
.y1c_c01132{bottom:666.712500px;}
.y1b_c01132{bottom:683.151000px;}
.y1a_c01132{bottom:699.589500px;}
.y19_c01132{bottom:716.028000px;}
.y18_c01132{bottom:732.465000px;}
.y17_c01132{bottom:748.903500px;}
.y16_c01132{bottom:765.342000px;}
.y15_c01132{bottom:781.780500px;}
.y14_c01132{bottom:798.219000px;}
.y13_c01132{bottom:814.657500px;}
.y12_c01132{bottom:831.096000px;}
.y11_c01132{bottom:847.534500px;}
.y10_c01132{bottom:863.973000px;}
.yf_c01132{bottom:880.411500px;}
.ye_c01132{bottom:896.848500px;}
.yd_c01132{bottom:913.287000px;}
.yc_c01132{bottom:929.725500px;}
.yb_c01132{bottom:946.164000px;}
.ya_c01132{bottom:962.602500px;}
.y9_c01132{bottom:979.041000px;}
.y8_c01132{bottom:995.479500px;}
.y7_c01132{bottom:1011.918000px;}
.y6_c01132{bottom:1028.356500px;}
.y5_c01132{bottom:1044.795000px;}
.y4_c01132{bottom:1061.232000px;}
.y3_c01132{bottom:1110.547500px;}
.y2_c01132{bottom:1126.986000px;}
.y1_c01132{bottom:1143.424500px;}
.h2_c01132{height:35.190766px;}
.h3_c01132{height:36.007158px;}
.h4_c01132{height:52.332837px;}
.h0_c01132{height:1262.835000px;}
.h1_c01132{height:1263.000000px;}
.w0_c01132{width:892.920000px;}
.w1_c01132{width:893.250000px;}
.x0_c01132{left:0.000000px;}
.x1_c01132{left:137.122500px;}
.x2_c01132{left:143.770500px;}
.x6_c01132{left:177.007500px;}
.x5_c01132{left:230.185500px;}
.x3_c01132{left:243.480000px;}
.x4_c01132{left:276.715500px;}
.x7_c01132{left:435.249000px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls3_c01132{letter-spacing:0.000000pt;}
.ls0_c01132{letter-spacing:0.078221pt;}
.ls2_c01132{letter-spacing:0.087539pt;}
.ls1_c01132{letter-spacing:0.092873pt;}
.ws1_c01132{word-spacing:-23.622682pt;}
.ws5_c01132{word-spacing:-23.544461pt;}
.ws2_c01132{word-spacing:0.000000pt;}
.ws6_c01132{word-spacing:0.039110pt;}
.ws3_c01132{word-spacing:0.047940pt;}
.ws7_c01132{word-spacing:0.050460pt;}
.ws4_c01132{word-spacing:0.062592pt;}
.ws0_c01132{word-spacing:0.156442pt;}
.ws8_c01132{word-spacing:0.189730pt;}
._1_c01132{width:0.914167pt;}
._0_c01132{width:71.298259pt;}
.fs0_c01132{font-size:39.110400pt;}
.fs1_c01132{font-size:53.133867pt;}
.y0_c01132{bottom:0.000000pt;}
.y2d_c01132{bottom:39.333333pt;}
.y2c_c01132{bottom:329.620000pt;}
.y2b_c01132{bottom:344.230667pt;}
.y2a_c01132{bottom:358.842667pt;}
.y29_c01132{bottom:373.454667pt;}
.y28_c01132{bottom:388.066667pt;}
.y27_c01132{bottom:402.678667pt;}
.y26_c01132{bottom:417.290667pt;}
.y25_c01132{bottom:431.902667pt;}
.y24_c01132{bottom:446.514667pt;}
.y23_c01132{bottom:461.126667pt;}
.y22_c01132{bottom:475.738667pt;}
.y21_c01132{bottom:504.961333pt;}
.y20_c01132{bottom:519.573333pt;}
.y1f_c01132{bottom:534.185333pt;}
.y1e_c01132{bottom:563.409333pt;}
.y1d_c01132{bottom:578.021333pt;}
.y1c_c01132{bottom:592.633333pt;}
.y1b_c01132{bottom:607.245333pt;}
.y1a_c01132{bottom:621.857333pt;}
.y19_c01132{bottom:636.469333pt;}
.y18_c01132{bottom:651.080000pt;}
.y17_c01132{bottom:665.692000pt;}
.y16_c01132{bottom:680.304000pt;}
.y15_c01132{bottom:694.916000pt;}
.y14_c01132{bottom:709.528000pt;}
.y13_c01132{bottom:724.140000pt;}
.y12_c01132{bottom:738.752000pt;}
.y11_c01132{bottom:753.364000pt;}
.y10_c01132{bottom:767.976000pt;}
.yf_c01132{bottom:782.588000pt;}
.ye_c01132{bottom:797.198667pt;}
.yd_c01132{bottom:811.810667pt;}
.yc_c01132{bottom:826.422667pt;}
.yb_c01132{bottom:841.034667pt;}
.ya_c01132{bottom:855.646667pt;}
.y9_c01132{bottom:870.258667pt;}
.y8_c01132{bottom:884.870667pt;}
.y7_c01132{bottom:899.482667pt;}
.y6_c01132{bottom:914.094667pt;}
.y5_c01132{bottom:928.706667pt;}
.y4_c01132{bottom:943.317333pt;}
.y3_c01132{bottom:987.153333pt;}
.y2_c01132{bottom:1001.765333pt;}
.y1_c01132{bottom:1016.377333pt;}
.h2_c01132{height:31.280681pt;}
.h3_c01132{height:32.006363pt;}
.h4_c01132{height:46.518078pt;}
.h0_c01132{height:1122.520000pt;}
.h1_c01132{height:1122.666667pt;}
.w0_c01132{width:793.706667pt;}
.w1_c01132{width:794.000000pt;}
.x0_c01132{left:0.000000pt;}
.x1_c01132{left:121.886667pt;}
.x2_c01132{left:127.796000pt;}
.x6_c01132{left:157.340000pt;}
.x5_c01132{left:204.609333pt;}
.x3_c01132{left:216.426667pt;}
.x4_c01132{left:245.969333pt;}
.x7_c01132{left:386.888000pt;}
}





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

.ir_c01133:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_e43c18cff8dcaaf146cff5ef.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01133;src:url('chunks/assets/font_e3927554f3e9178adaca920c.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01133;src:url('chunks/assets/font_e470c73ee56528e7b534848a.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01133;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01133;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls3_c01133{letter-spacing:0.000000px;}
.ls0_c01133{letter-spacing:0.087998px;}
.ls2_c01133{letter-spacing:0.098482px;}
.ls1_c01133{letter-spacing:0.104482px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c01133{word-spacing:-33.713438px;}
.ws2_c01133{word-spacing:-26.575517px;}
.wsf_c01133{word-spacing:-26.487518px;}
.wsb_c01133{word-spacing:-21.553319px;}
.wsa_c01133{word-spacing:-21.519216px;}
.ws7_c01133{word-spacing:-18.769538px;}
.ws9_c01133{word-spacing:-16.019861px;}
.ws6_c01133{word-spacing:-14.943900px;}
.wsc_c01133{word-spacing:-14.107042px;}
.ws5_c01133{word-spacing:-12.074671px;}
.ws1_c01133{word-spacing:-9.988424px;}
.ws3_c01133{word-spacing:-9.987499px;}
.ws4_c01133{word-spacing:-8.249033px;}
.ws8_c01133{word-spacing:-4.536144px;}
.ws13_c01133{word-spacing:0.000000px;}
.ws10_c01133{word-spacing:0.043999px;}
.ws16_c01133{word-spacing:0.056767px;}
.ws14_c01133{word-spacing:0.073250px;}
.ws15_c01133{word-spacing:0.083734px;}
.wse_c01133{word-spacing:0.175997px;}
.ws17_c01133{word-spacing:0.202963px;}
.ws11_c01133{word-spacing:0.213446px;}
.ws12_c01133{word-spacing:0.219446px;}
.ws0_c01133{word-spacing:43.038600px;}
._4_c01133{margin-left:-3.825638px;}
._0_c01133{margin-left:-1.549390px;}
._5_c01133{width:1.005737px;}
._2_c01133{width:19.930500px;}
._1_c01133{width:33.370949px;}
._3_c01133{width:40.109428px;}
._7_c01133{width:53.283031px;}
._6_c01133{width:79.858548px;}
._8_c01133{width:133.452408px;}
.fc6_c01133{color:rgb(0,0,207);}
.fc5_c01133{color:rgb(79,153,5);}
.fc3_c01133{color:rgb(33,74,135);}
.fc2_c01133{color:rgb(143,89,3);}
.fc4_c01133{color:rgb(207,92,0);}
.fc1_c01133{color:rgb(6,69,173);}
.fc0_c01133{color:rgb(0,0,0);}
.fs2_c01133{font-size:43.999200px;}
.fs1_c01133{font-size:59.775600px;}
.fs0_c01133{font-size:86.077200px;}
.y0_c01133{bottom:0.000000px;}
.y20_c01133{bottom:44.250000px;}
.y1f_c01133{bottom:86.982000px;}
.y1e_c01133{bottom:103.420500px;}
.y1d_c01133{bottom:119.859000px;}
.y1c_c01133{bottom:136.297500px;}
.y1b_c01133{bottom:152.736000px;}
.y1a_c01133{bottom:169.174500px;}
.y19_c01133{bottom:185.613000px;}
.y18_c01133{bottom:202.051500px;}
.y17_c01133{bottom:218.490000px;}
.y16_c01133{bottom:234.927000px;}
.y15_c01133{bottom:251.365500px;}
.y14_c01133{bottom:267.804000px;}
.y13_c01133{bottom:284.242500px;}
.y12_c01133{bottom:300.681000px;}
.y11_c01133{bottom:333.558000px;}
.y10_c01133{bottom:349.996500px;}
.yf_c01133{bottom:399.310500px;}
.ye_c01133{bottom:415.749000px;}
.yd_c01133{bottom:431.814000px;}
.yc_c01133{bottom:477.118500px;}
.yb_c01133{bottom:495.051000px;}
.ya_c01133{bottom:512.983500px;}
.y9_c01133{bottom:530.916000px;}
.y8_c01133{bottom:548.848500px;}
.y7_c01133{bottom:566.781000px;}
.y6_c01133{bottom:593.728500px;}
.y5_c01133{bottom:620.674500px;}
.y4_c01133{bottom:638.607000px;}
.y3_c01133{bottom:665.553000px;}
.y2_c01133{bottom:692.500500px;}
.y1_c01133{bottom:734.839500px;}
.h5_c01133{height:35.190766px;}
.h6_c01133{height:36.007158px;}
.h3_c01133{height:40.511979px;}
.h4_c01133{height:52.332837px;}
.h2_c01133{height:58.337477px;}
.h0_c01133{height:1262.835000px;}
.h1_c01133{height:1263.000000px;}
.w0_c01133{width:892.920000px;}
.w1_c01133{width:893.250000px;}
.x0_c01133{left:0.000000px;}
.x1_c01133{left:127.558500px;}
.x2_c01133{left:137.122500px;}
.x3_c01133{left:143.770500px;}
.x4_c01133{left:435.249000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls3_c01133{letter-spacing:0.000000pt;}
.ls0_c01133{letter-spacing:0.078221pt;}
.ls2_c01133{letter-spacing:0.087539pt;}
.ls1_c01133{letter-spacing:0.092873pt;}
.wsd_c01133{word-spacing:-29.967501pt;}
.ws2_c01133{word-spacing:-23.622682pt;}
.wsf_c01133{word-spacing:-23.544461pt;}
.wsb_c01133{word-spacing:-19.158506pt;}
.wsa_c01133{word-spacing:-19.128192pt;}
.ws7_c01133{word-spacing:-16.684034pt;}
.ws9_c01133{word-spacing:-14.239876pt;}
.ws6_c01133{word-spacing:-13.283467pt;}
.wsc_c01133{word-spacing:-12.539593pt;}
.ws5_c01133{word-spacing:-10.733041pt;}
.ws1_c01133{word-spacing:-8.878599pt;}
.ws3_c01133{word-spacing:-8.877777pt;}
.ws4_c01133{word-spacing:-7.332474pt;}
.ws8_c01133{word-spacing:-4.032128pt;}
.ws13_c01133{word-spacing:0.000000pt;}
.ws10_c01133{word-spacing:0.039110pt;}
.ws16_c01133{word-spacing:0.050460pt;}
.ws14_c01133{word-spacing:0.065111pt;}
.ws15_c01133{word-spacing:0.074430pt;}
.wse_c01133{word-spacing:0.156442pt;}
.ws17_c01133{word-spacing:0.180412pt;}
.ws11_c01133{word-spacing:0.189730pt;}
.ws12_c01133{word-spacing:0.195063pt;}
.ws0_c01133{word-spacing:38.256533pt;}
._4_c01133{margin-left:-3.400567pt;}
._0_c01133{margin-left:-1.377235pt;}
._5_c01133{width:0.893988pt;}
._2_c01133{width:17.716000pt;}
._1_c01133{width:29.663066pt;}
._3_c01133{width:35.652825pt;}
._7_c01133{width:47.362694pt;}
._6_c01133{width:70.985376pt;}
._8_c01133{width:118.624363pt;}
.fs2_c01133{font-size:39.110400pt;}
.fs1_c01133{font-size:53.133867pt;}
.fs0_c01133{font-size:76.513067pt;}
.y0_c01133{bottom:0.000000pt;}
.y20_c01133{bottom:39.333333pt;}
.y1f_c01133{bottom:77.317333pt;}
.y1e_c01133{bottom:91.929333pt;}
.y1d_c01133{bottom:106.541333pt;}
.y1c_c01133{bottom:121.153333pt;}
.y1b_c01133{bottom:135.765333pt;}
.y1a_c01133{bottom:150.377333pt;}
.y19_c01133{bottom:164.989333pt;}
.y18_c01133{bottom:179.601333pt;}
.y17_c01133{bottom:194.213333pt;}
.y16_c01133{bottom:208.824000pt;}
.y15_c01133{bottom:223.436000pt;}
.y14_c01133{bottom:238.048000pt;}
.y13_c01133{bottom:252.660000pt;}
.y12_c01133{bottom:267.272000pt;}
.y11_c01133{bottom:296.496000pt;}
.y10_c01133{bottom:311.108000pt;}
.yf_c01133{bottom:354.942667pt;}
.ye_c01133{bottom:369.554667pt;}
.yd_c01133{bottom:383.834667pt;}
.yc_c01133{bottom:424.105333pt;}
.yb_c01133{bottom:440.045333pt;}
.ya_c01133{bottom:455.985333pt;}
.y9_c01133{bottom:471.925333pt;}
.y8_c01133{bottom:487.865333pt;}
.y7_c01133{bottom:503.805333pt;}
.y6_c01133{bottom:527.758667pt;}
.y5_c01133{bottom:551.710667pt;}
.y4_c01133{bottom:567.650667pt;}
.y3_c01133{bottom:591.602667pt;}
.y2_c01133{bottom:615.556000pt;}
.y1_c01133{bottom:653.190667pt;}
.h5_c01133{height:31.280681pt;}
.h6_c01133{height:32.006363pt;}
.h3_c01133{height:36.010648pt;}
.h4_c01133{height:46.518078pt;}
.h2_c01133{height:51.855535pt;}
.h0_c01133{height:1122.520000pt;}
.h1_c01133{height:1122.666667pt;}
.w0_c01133{width:793.706667pt;}
.w1_c01133{width:794.000000pt;}
.x0_c01133{left:0.000000pt;}
.x1_c01133{left:113.385333pt;}
.x2_c01133{left:121.886667pt;}
.x3_c01133{left:127.796000pt;}
.x4_c01133{left:386.888000pt;}
}





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

.ir_c01134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_f9c9dfc02f18023890e56ce6.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01134;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01134;src:url('chunks/assets/font_7ff0cd03677a09354672ed52.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01134;src:url('chunks/assets/font_b04dc20c28253f4c5d6a3743.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01134;src:url('chunks/assets/font_b620acba49318dc81f47d663.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01134{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01134{vertical-align:0.000000px;}
.ls4_c01134{letter-spacing:0.000000px;}
.ls0_c01134{letter-spacing:0.087998px;}
.ls1_c01134{letter-spacing:0.098482px;}
.ls3_c01134{letter-spacing:0.104482px;}
.ls2_c01134{letter-spacing:26.690482px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01134{word-spacing:-26.575517px;}
.ws5_c01134{word-spacing:-26.487518px;}
.ws11_c01134{word-spacing:-21.553319px;}
.ws10_c01134{word-spacing:-21.519216px;}
.wsd_c01134{word-spacing:-18.769538px;}
.wsf_c01134{word-spacing:-17.633802px;}
.wsc_c01134{word-spacing:-14.943900px;}
.wsb_c01134{word-spacing:-14.047266px;}
.wsa_c01134{word-spacing:-10.281403px;}
.ws8_c01134{word-spacing:-9.988424px;}
.ws9_c01134{word-spacing:-9.987499px;}
.wse_c01134{word-spacing:-7.686144px;}
.ws4_c01134{word-spacing:0.000000px;}
.ws1_c01134{word-spacing:0.043999px;}
.ws0_c01134{word-spacing:0.073250px;}
.ws6_c01134{word-spacing:0.213446px;}
.ws2_c01134{word-spacing:0.219446px;}
.ws7_c01134{word-spacing:43.038600px;}
._2_c01134{margin-left:-1.549390px;}
._1_c01134{width:1.074173px;}
._4_c01134{width:19.930500px;}
._3_c01134{width:29.427319px;}
._0_c01134{width:79.858548px;}
.fc5_c01134{color:rgb(79,153,5);}
.fc4_c01134{color:rgb(143,89,3);}
.fc6_c01134{color:rgb(6,69,173);}
.fc3_c01134{color:rgb(207,92,0);}
.fc2_c01134{color:rgb(0,0,0);}
.fc1_c01134{color:rgb(0,0,207);}
.fc0_c01134{color:rgb(33,74,135);}
.fs0_c01134{font-size:43.999200px;}
.fs2_c01134{font-size:59.775600px;}
.fs1_c01134{font-size:86.077200px;}
.y0_c01134{bottom:0.000000px;}
.y20_c01134{bottom:44.250000px;}
.y1f_c01134{bottom:82.051500px;}
.y1e_c01134{bottom:99.984000px;}
.y1d_c01134{bottom:126.823500px;}
.y1c_c01134{bottom:153.664500px;}
.y1b_c01134{bottom:171.597000px;}
.y1a_c01134{bottom:198.438000px;}
.y19_c01134{bottom:225.277500px;}
.y18_c01134{bottom:267.492000px;}
.y17_c01134{bottom:732.465000px;}
.y16_c01134{bottom:748.903500px;}
.y15_c01134{bottom:765.342000px;}
.y14_c01134{bottom:781.780500px;}
.y13_c01134{bottom:798.219000px;}
.y12_c01134{bottom:814.657500px;}
.y11_c01134{bottom:831.096000px;}
.y10_c01134{bottom:847.534500px;}
.yf_c01134{bottom:863.973000px;}
.ye_c01134{bottom:880.411500px;}
.yd_c01134{bottom:896.848500px;}
.yc_c01134{bottom:929.725500px;}
.yb_c01134{bottom:946.164000px;}
.ya_c01134{bottom:962.602500px;}
.y9_c01134{bottom:995.479500px;}
.y8_c01134{bottom:1011.918000px;}
.y7_c01134{bottom:1028.356500px;}
.y6_c01134{bottom:1044.795000px;}
.y5_c01134{bottom:1061.232000px;}
.y4_c01134{bottom:1077.670500px;}
.y3_c01134{bottom:1094.109000px;}
.y2_c01134{bottom:1143.424500px;}
.y1_c01134{bottom:1159.863000px;}
.h3_c01134{height:35.190766px;}
.h2_c01134{height:36.007158px;}
.h5_c01134{height:40.511979px;}
.h6_c01134{height:52.332837px;}
.h4_c01134{height:58.337477px;}
.h0_c01134{height:1262.835000px;}
.h1_c01134{height:1263.000000px;}
.w0_c01134{width:892.920000px;}
.w1_c01134{width:893.250000px;}
.x0_c01134{left:0.000000px;}
.x4_c01134{left:127.558500px;}
.x2_c01134{left:137.122500px;}
.x1_c01134{left:143.770500px;}
.x3_c01134{left:177.007500px;}
.x5_c01134{left:435.249000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls4_c01134{letter-spacing:0.000000pt;}
.ls0_c01134{letter-spacing:0.078221pt;}
.ls1_c01134{letter-spacing:0.087539pt;}
.ls3_c01134{letter-spacing:0.092873pt;}
.ls2_c01134{letter-spacing:23.724873pt;}
.ws3_c01134{word-spacing:-23.622682pt;}
.ws5_c01134{word-spacing:-23.544461pt;}
.ws11_c01134{word-spacing:-19.158506pt;}
.ws10_c01134{word-spacing:-19.128192pt;}
.wsd_c01134{word-spacing:-16.684034pt;}
.wsf_c01134{word-spacing:-15.674491pt;}
.wsc_c01134{word-spacing:-13.283467pt;}
.wsb_c01134{word-spacing:-12.486459pt;}
.wsa_c01134{word-spacing:-9.139025pt;}
.ws8_c01134{word-spacing:-8.878599pt;}
.ws9_c01134{word-spacing:-8.877777pt;}
.wse_c01134{word-spacing:-6.832128pt;}
.ws4_c01134{word-spacing:0.000000pt;}
.ws1_c01134{word-spacing:0.039110pt;}
.ws0_c01134{word-spacing:0.065111pt;}
.ws6_c01134{word-spacing:0.189730pt;}
.ws2_c01134{word-spacing:0.195063pt;}
.ws7_c01134{word-spacing:38.256533pt;}
._2_c01134{margin-left:-1.377235pt;}
._1_c01134{width:0.954820pt;}
._4_c01134{width:17.716000pt;}
._3_c01134{width:26.157617pt;}
._0_c01134{width:70.985376pt;}
.fs0_c01134{font-size:39.110400pt;}
.fs2_c01134{font-size:53.133867pt;}
.fs1_c01134{font-size:76.513067pt;}
.y0_c01134{bottom:0.000000pt;}
.y20_c01134{bottom:39.333333pt;}
.y1f_c01134{bottom:72.934667pt;}
.y1e_c01134{bottom:88.874667pt;}
.y1d_c01134{bottom:112.732000pt;}
.y1c_c01134{bottom:136.590667pt;}
.y1b_c01134{bottom:152.530667pt;}
.y1a_c01134{bottom:176.389333pt;}
.y19_c01134{bottom:200.246667pt;}
.y18_c01134{bottom:237.770667pt;}
.y17_c01134{bottom:651.080000pt;}
.y16_c01134{bottom:665.692000pt;}
.y15_c01134{bottom:680.304000pt;}
.y14_c01134{bottom:694.916000pt;}
.y13_c01134{bottom:709.528000pt;}
.y12_c01134{bottom:724.140000pt;}
.y11_c01134{bottom:738.752000pt;}
.y10_c01134{bottom:753.364000pt;}
.yf_c01134{bottom:767.976000pt;}
.ye_c01134{bottom:782.588000pt;}
.yd_c01134{bottom:797.198667pt;}
.yc_c01134{bottom:826.422667pt;}
.yb_c01134{bottom:841.034667pt;}
.ya_c01134{bottom:855.646667pt;}
.y9_c01134{bottom:884.870667pt;}
.y8_c01134{bottom:899.482667pt;}
.y7_c01134{bottom:914.094667pt;}
.y6_c01134{bottom:928.706667pt;}
.y5_c01134{bottom:943.317333pt;}
.y4_c01134{bottom:957.929333pt;}
.y3_c01134{bottom:972.541333pt;}
.y2_c01134{bottom:1016.377333pt;}
.y1_c01134{bottom:1030.989333pt;}
.h3_c01134{height:31.280681pt;}
.h2_c01134{height:32.006363pt;}
.h5_c01134{height:36.010648pt;}
.h6_c01134{height:46.518078pt;}
.h4_c01134{height:51.855535pt;}
.h0_c01134{height:1122.520000pt;}
.h1_c01134{height:1122.666667pt;}
.w0_c01134{width:793.706667pt;}
.w1_c01134{width:794.000000pt;}
.x0_c01134{left:0.000000pt;}
.x4_c01134{left:113.385333pt;}
.x2_c01134{left:121.886667pt;}
.x1_c01134{left:127.796000pt;}
.x3_c01134{left:157.340000pt;}
.x5_c01134{left:386.888000pt;}
}





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

.ir_c01135:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_57147288966349090aabe421.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01135;src:url('chunks/assets/font_4df83ce063183e656429a7f3.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01135;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01135;src:url('chunks/assets/font_6f588d5d4fe49acd5dcd5bcd.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls4_c01135{letter-spacing:0.000000px;}
.ls1_c01135{letter-spacing:0.087998px;}
.ls2_c01135{letter-spacing:0.098482px;}
.ls0_c01135{letter-spacing:0.104482px;}
.ls3_c01135{letter-spacing:26.690482px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01135{word-spacing:-33.713438px;}
.ws6_c01135{word-spacing:-26.575517px;}
.ws5_c01135{word-spacing:-26.487518px;}
.ws2_c01135{word-spacing:-18.769538px;}
.ws0_c01135{word-spacing:-14.107042px;}
.ws1_c01135{word-spacing:-12.074671px;}
.wsa_c01135{word-spacing:0.000000px;}
.ws7_c01135{word-spacing:0.043999px;}
.wsd_c01135{word-spacing:0.056767px;}
.wsb_c01135{word-spacing:0.073250px;}
.wsc_c01135{word-spacing:0.083734px;}
.ws4_c01135{word-spacing:0.175997px;}
.wse_c01135{word-spacing:0.202963px;}
.ws8_c01135{word-spacing:0.213446px;}
.ws9_c01135{word-spacing:0.219446px;}
._2_c01135{margin-left:-3.825638px;}
._3_c01135{width:1.005737px;}
._0_c01135{width:20.742133px;}
._1_c01135{width:40.109428px;}
._5_c01135{width:53.283031px;}
._4_c01135{width:79.858548px;}
._6_c01135{width:133.452408px;}
.fc5_c01135{color:rgb(0,0,207);}
.fc4_c01135{color:rgb(79,153,5);}
.fc3_c01135{color:rgb(207,92,0);}
.fc2_c01135{color:rgb(33,74,135);}
.fc1_c01135{color:rgb(143,89,3);}
.fc0_c01135{color:rgb(0,0,0);}
.fs1_c01135{font-size:43.999200px;}
.fs0_c01135{font-size:59.775600px;}
.y0_c01135{bottom:0.000000px;}
.y2f_c01135{bottom:44.250000px;}
.y2e_c01135{bottom:96.919500px;}
.y2d_c01135{bottom:113.358000px;}
.y2c_c01135{bottom:129.796500px;}
.y2b_c01135{bottom:146.235000px;}
.y2a_c01135{bottom:162.673500px;}
.y29_c01135{bottom:179.112000px;}
.y28_c01135{bottom:195.550500px;}
.y27_c01135{bottom:211.989000px;}
.y26_c01135{bottom:228.427500px;}
.y25_c01135{bottom:244.866000px;}
.y24_c01135{bottom:261.304500px;}
.y23_c01135{bottom:294.180000px;}
.y22_c01135{bottom:310.618500px;}
.y21_c01135{bottom:327.057000px;}
.y20_c01135{bottom:359.934000px;}
.y1f_c01135{bottom:376.372500px;}
.y1e_c01135{bottom:392.811000px;}
.y1d_c01135{bottom:409.249500px;}
.y1c_c01135{bottom:425.688000px;}
.y1b_c01135{bottom:442.125000px;}
.y1a_c01135{bottom:458.563500px;}
.y19_c01135{bottom:507.879000px;}
.y18_c01135{bottom:524.317500px;}
.y17_c01135{bottom:540.756000px;}
.y16_c01135{bottom:557.194500px;}
.y15_c01135{bottom:573.633000px;}
.y14_c01135{bottom:590.071500px;}
.y13_c01135{bottom:606.508500px;}
.y12_c01135{bottom:622.947000px;}
.y11_c01135{bottom:639.385500px;}
.y10_c01135{bottom:655.824000px;}
.yf_c01135{bottom:672.262500px;}
.ye_c01135{bottom:688.701000px;}
.yd_c01135{bottom:705.139500px;}
.yc_c01135{bottom:721.578000px;}
.yb_c01135{bottom:738.016500px;}
.ya_c01135{bottom:754.455000px;}
.y9_c01135{bottom:787.330500px;}
.y8_c01135{bottom:803.769000px;}
.y7_c01135{bottom:853.084500px;}
.y6_c01135{bottom:869.523000px;}
.y5_c01135{bottom:885.588000px;}
.y4_c01135{bottom:1106.064000px;}
.y3_c01135{bottom:1123.998000px;}
.y2_c01135{bottom:1141.930500px;}
.y1_c01135{bottom:1159.863000px;}
.h3_c01135{height:35.190766px;}
.h4_c01135{height:36.007158px;}
.h2_c01135{height:52.332837px;}
.h0_c01135{height:1262.835000px;}
.h1_c01135{height:1263.000000px;}
.w0_c01135{width:892.920000px;}
.w1_c01135{width:893.250000px;}
.x0_c01135{left:0.000000px;}
.x1_c01135{left:127.558500px;}
.x2_c01135{left:137.122500px;}
.x3_c01135{left:143.770500px;}
.x4_c01135{left:177.007500px;}
.x5_c01135{left:435.249000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls4_c01135{letter-spacing:0.000000pt;}
.ls1_c01135{letter-spacing:0.078221pt;}
.ls2_c01135{letter-spacing:0.087539pt;}
.ls0_c01135{letter-spacing:0.092873pt;}
.ls3_c01135{letter-spacing:23.724873pt;}
.ws3_c01135{word-spacing:-29.967501pt;}
.ws6_c01135{word-spacing:-23.622682pt;}
.ws5_c01135{word-spacing:-23.544461pt;}
.ws2_c01135{word-spacing:-16.684034pt;}
.ws0_c01135{word-spacing:-12.539593pt;}
.ws1_c01135{word-spacing:-10.733041pt;}
.wsa_c01135{word-spacing:0.000000pt;}
.ws7_c01135{word-spacing:0.039110pt;}
.wsd_c01135{word-spacing:0.050460pt;}
.wsb_c01135{word-spacing:0.065111pt;}
.wsc_c01135{word-spacing:0.074430pt;}
.ws4_c01135{word-spacing:0.156442pt;}
.wse_c01135{word-spacing:0.180412pt;}
.ws8_c01135{word-spacing:0.189730pt;}
.ws9_c01135{word-spacing:0.195063pt;}
._2_c01135{margin-left:-3.400567pt;}
._3_c01135{width:0.893988pt;}
._0_c01135{width:18.437452pt;}
._1_c01135{width:35.652825pt;}
._5_c01135{width:47.362694pt;}
._4_c01135{width:70.985376pt;}
._6_c01135{width:118.624363pt;}
.fs1_c01135{font-size:39.110400pt;}
.fs0_c01135{font-size:53.133867pt;}
.y0_c01135{bottom:0.000000pt;}
.y2f_c01135{bottom:39.333333pt;}
.y2e_c01135{bottom:86.150667pt;}
.y2d_c01135{bottom:100.762667pt;}
.y2c_c01135{bottom:115.374667pt;}
.y2b_c01135{bottom:129.986667pt;}
.y2a_c01135{bottom:144.598667pt;}
.y29_c01135{bottom:159.210667pt;}
.y28_c01135{bottom:173.822667pt;}
.y27_c01135{bottom:188.434667pt;}
.y26_c01135{bottom:203.046667pt;}
.y25_c01135{bottom:217.658667pt;}
.y24_c01135{bottom:232.270667pt;}
.y23_c01135{bottom:261.493333pt;}
.y22_c01135{bottom:276.105333pt;}
.y21_c01135{bottom:290.717333pt;}
.y20_c01135{bottom:319.941333pt;}
.y1f_c01135{bottom:334.553333pt;}
.y1e_c01135{bottom:349.165333pt;}
.y1d_c01135{bottom:363.777333pt;}
.y1c_c01135{bottom:378.389333pt;}
.y1b_c01135{bottom:393.000000pt;}
.y1a_c01135{bottom:407.612000pt;}
.y19_c01135{bottom:451.448000pt;}
.y18_c01135{bottom:466.060000pt;}
.y17_c01135{bottom:480.672000pt;}
.y16_c01135{bottom:495.284000pt;}
.y15_c01135{bottom:509.896000pt;}
.y14_c01135{bottom:524.508000pt;}
.y13_c01135{bottom:539.118667pt;}
.y12_c01135{bottom:553.730667pt;}
.y11_c01135{bottom:568.342667pt;}
.y10_c01135{bottom:582.954667pt;}
.yf_c01135{bottom:597.566667pt;}
.ye_c01135{bottom:612.178667pt;}
.yd_c01135{bottom:626.790667pt;}
.yc_c01135{bottom:641.402667pt;}
.yb_c01135{bottom:656.014667pt;}
.ya_c01135{bottom:670.626667pt;}
.y9_c01135{bottom:699.849333pt;}
.y8_c01135{bottom:714.461333pt;}
.y7_c01135{bottom:758.297333pt;}
.y6_c01135{bottom:772.909333pt;}
.y5_c01135{bottom:787.189333pt;}
.y4_c01135{bottom:983.168000pt;}
.y3_c01135{bottom:999.109333pt;}
.y2_c01135{bottom:1015.049333pt;}
.y1_c01135{bottom:1030.989333pt;}
.h3_c01135{height:31.280681pt;}
.h4_c01135{height:32.006363pt;}
.h2_c01135{height:46.518078pt;}
.h0_c01135{height:1122.520000pt;}
.h1_c01135{height:1122.666667pt;}
.w0_c01135{width:793.706667pt;}
.w1_c01135{width:794.000000pt;}
.x0_c01135{left:0.000000pt;}
.x1_c01135{left:113.385333pt;}
.x2_c01135{left:121.886667pt;}
.x3_c01135{left:127.796000pt;}
.x4_c01135{left:157.340000pt;}
.x5_c01135{left:386.888000pt;}
}





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

.ir_c01136:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_21992a1df1e70302604e5c78.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01136;src:url('chunks/assets/font_235574df53736489abe46758.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01136;src:url('chunks/assets/font_388f7aa88e50e84607724939.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01136;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01136;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01136{font-family:ff5_c01136;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01136{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.ls3_c01136{letter-spacing:0.000000px;}
.ls0_c01136{letter-spacing:0.087998px;}
.ls2_c01136{letter-spacing:0.098482px;}
.ls1_c01136{letter-spacing:0.104482px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01136{word-spacing:-33.713438px;}
.ws2_c01136{word-spacing:-26.575517px;}
.ws10_c01136{word-spacing:-26.487518px;}
.wsb_c01136{word-spacing:-21.553319px;}
.wsa_c01136{word-spacing:-21.519216px;}
.ws7_c01136{word-spacing:-18.769538px;}
.ws5_c01136{word-spacing:-18.291334px;}
.ws9_c01136{word-spacing:-17.633802px;}
.ws6_c01136{word-spacing:-14.943900px;}
.ws4_c01136{word-spacing:-14.465695px;}
.wsc_c01136{word-spacing:-14.107042px;}
.wsd_c01136{word-spacing:-12.074671px;}
.ws1_c01136{word-spacing:-9.988424px;}
.ws3_c01136{word-spacing:-9.987499px;}
.ws8_c01136{word-spacing:-7.686144px;}
.ws14_c01136{word-spacing:0.000000px;}
.ws11_c01136{word-spacing:0.043999px;}
.ws17_c01136{word-spacing:0.056767px;}
.ws15_c01136{word-spacing:0.073250px;}
.ws16_c01136{word-spacing:0.083734px;}
.wsf_c01136{word-spacing:0.175997px;}
.ws18_c01136{word-spacing:0.202963px;}
.ws12_c01136{word-spacing:0.213446px;}
.ws13_c01136{word-spacing:0.219446px;}
.ws0_c01136{word-spacing:43.038600px;}
._4_c01136{margin-left:-3.825638px;}
._0_c01136{margin-left:-1.549390px;}
._5_c01136{width:1.005737px;}
._2_c01136{width:13.911013px;}
._1_c01136{width:20.903611px;}
._3_c01136{width:40.109428px;}
._7_c01136{width:53.283031px;}
._6_c01136{width:79.858548px;}
._8_c01136{width:133.452408px;}
.fc6_c01136{color:rgb(0,0,207);}
.fc5_c01136{color:rgb(79,153,5);}
.fc3_c01136{color:rgb(33,74,135);}
.fc2_c01136{color:rgb(143,89,3);}
.fc4_c01136{color:rgb(207,92,0);}
.fc1_c01136{color:rgb(6,69,173);}
.fc0_c01136{color:rgb(0,0,0);}
.fs2_c01136{font-size:43.999200px;}
.fs1_c01136{font-size:59.775600px;}
.fs0_c01136{font-size:86.077200px;}
.y0_c01136{bottom:0.000000px;}
.y20_c01136{bottom:44.250000px;}
.y1f_c01136{bottom:86.982000px;}
.y1e_c01136{bottom:103.420500px;}
.y1d_c01136{bottom:119.859000px;}
.y1c_c01136{bottom:136.297500px;}
.y1b_c01136{bottom:152.736000px;}
.y1a_c01136{bottom:169.174500px;}
.y19_c01136{bottom:185.613000px;}
.y18_c01136{bottom:202.051500px;}
.y17_c01136{bottom:218.490000px;}
.y16_c01136{bottom:234.927000px;}
.y15_c01136{bottom:251.365500px;}
.y14_c01136{bottom:267.804000px;}
.y13_c01136{bottom:284.242500px;}
.y12_c01136{bottom:300.681000px;}
.y11_c01136{bottom:333.558000px;}
.y10_c01136{bottom:349.996500px;}
.yf_c01136{bottom:399.310500px;}
.ye_c01136{bottom:415.749000px;}
.yd_c01136{bottom:431.814000px;}
.yc_c01136{bottom:477.118500px;}
.yb_c01136{bottom:495.051000px;}
.ya_c01136{bottom:512.983500px;}
.y9_c01136{bottom:530.916000px;}
.y8_c01136{bottom:548.848500px;}
.y7_c01136{bottom:566.781000px;}
.y6_c01136{bottom:593.728500px;}
.y5_c01136{bottom:620.674500px;}
.y4_c01136{bottom:638.607000px;}
.y3_c01136{bottom:665.553000px;}
.y2_c01136{bottom:692.500500px;}
.y1_c01136{bottom:734.839500px;}
.h5_c01136{height:35.190766px;}
.h6_c01136{height:36.007158px;}
.h3_c01136{height:40.511979px;}
.h4_c01136{height:52.332837px;}
.h2_c01136{height:58.337477px;}
.h0_c01136{height:1262.835000px;}
.h1_c01136{height:1263.000000px;}
.w0_c01136{width:892.920000px;}
.w1_c01136{width:893.250000px;}
.x0_c01136{left:0.000000px;}
.x1_c01136{left:127.558500px;}
.x2_c01136{left:137.122500px;}
.x3_c01136{left:143.770500px;}
.x4_c01136{left:435.249000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls3_c01136{letter-spacing:0.000000pt;}
.ls0_c01136{letter-spacing:0.078221pt;}
.ls2_c01136{letter-spacing:0.087539pt;}
.ls1_c01136{letter-spacing:0.092873pt;}
.wse_c01136{word-spacing:-29.967501pt;}
.ws2_c01136{word-spacing:-23.622682pt;}
.ws10_c01136{word-spacing:-23.544461pt;}
.wsb_c01136{word-spacing:-19.158506pt;}
.wsa_c01136{word-spacing:-19.128192pt;}
.ws7_c01136{word-spacing:-16.684034pt;}
.ws5_c01136{word-spacing:-16.258963pt;}
.ws9_c01136{word-spacing:-15.674491pt;}
.ws6_c01136{word-spacing:-13.283467pt;}
.ws4_c01136{word-spacing:-12.858396pt;}
.wsc_c01136{word-spacing:-12.539593pt;}
.wsd_c01136{word-spacing:-10.733041pt;}
.ws1_c01136{word-spacing:-8.878599pt;}
.ws3_c01136{word-spacing:-8.877777pt;}
.ws8_c01136{word-spacing:-6.832128pt;}
.ws14_c01136{word-spacing:0.000000pt;}
.ws11_c01136{word-spacing:0.039110pt;}
.ws17_c01136{word-spacing:0.050460pt;}
.ws15_c01136{word-spacing:0.065111pt;}
.ws16_c01136{word-spacing:0.074430pt;}
.wsf_c01136{word-spacing:0.156442pt;}
.ws18_c01136{word-spacing:0.180412pt;}
.ws12_c01136{word-spacing:0.189730pt;}
.ws13_c01136{word-spacing:0.195063pt;}
.ws0_c01136{word-spacing:38.256533pt;}
._4_c01136{margin-left:-3.400567pt;}
._0_c01136{margin-left:-1.377235pt;}
._5_c01136{width:0.893988pt;}
._2_c01136{width:12.365345pt;}
._1_c01136{width:18.580988pt;}
._3_c01136{width:35.652825pt;}
._7_c01136{width:47.362694pt;}
._6_c01136{width:70.985376pt;}
._8_c01136{width:118.624363pt;}
.fs2_c01136{font-size:39.110400pt;}
.fs1_c01136{font-size:53.133867pt;}
.fs0_c01136{font-size:76.513067pt;}
.y0_c01136{bottom:0.000000pt;}
.y20_c01136{bottom:39.333333pt;}
.y1f_c01136{bottom:77.317333pt;}
.y1e_c01136{bottom:91.929333pt;}
.y1d_c01136{bottom:106.541333pt;}
.y1c_c01136{bottom:121.153333pt;}
.y1b_c01136{bottom:135.765333pt;}
.y1a_c01136{bottom:150.377333pt;}
.y19_c01136{bottom:164.989333pt;}
.y18_c01136{bottom:179.601333pt;}
.y17_c01136{bottom:194.213333pt;}
.y16_c01136{bottom:208.824000pt;}
.y15_c01136{bottom:223.436000pt;}
.y14_c01136{bottom:238.048000pt;}
.y13_c01136{bottom:252.660000pt;}
.y12_c01136{bottom:267.272000pt;}
.y11_c01136{bottom:296.496000pt;}
.y10_c01136{bottom:311.108000pt;}
.yf_c01136{bottom:354.942667pt;}
.ye_c01136{bottom:369.554667pt;}
.yd_c01136{bottom:383.834667pt;}
.yc_c01136{bottom:424.105333pt;}
.yb_c01136{bottom:440.045333pt;}
.ya_c01136{bottom:455.985333pt;}
.y9_c01136{bottom:471.925333pt;}
.y8_c01136{bottom:487.865333pt;}
.y7_c01136{bottom:503.805333pt;}
.y6_c01136{bottom:527.758667pt;}
.y5_c01136{bottom:551.710667pt;}
.y4_c01136{bottom:567.650667pt;}
.y3_c01136{bottom:591.602667pt;}
.y2_c01136{bottom:615.556000pt;}
.y1_c01136{bottom:653.190667pt;}
.h5_c01136{height:31.280681pt;}
.h6_c01136{height:32.006363pt;}
.h3_c01136{height:36.010648pt;}
.h4_c01136{height:46.518078pt;}
.h2_c01136{height:51.855535pt;}
.h0_c01136{height:1122.520000pt;}
.h1_c01136{height:1122.666667pt;}
.w0_c01136{width:793.706667pt;}
.w1_c01136{width:794.000000pt;}
.x0_c01136{left:0.000000pt;}
.x1_c01136{left:113.385333pt;}
.x2_c01136{left:121.886667pt;}
.x3_c01136{left:127.796000pt;}
.x4_c01136{left:386.888000pt;}
}





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

.ir_c01137:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_8ad113775dcb29adcbba7590.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01137;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01137;src:url('chunks/assets/font_4f368811a57fc167ae132587.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01137;src:url('chunks/assets/font_e67174b9620c711506fa4b5e.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01137;src:url('chunks/assets/font_14f9f5ea4362709f9b7c64c2.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01137{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01137{vertical-align:0.000000px;}
.ls4_c01137{letter-spacing:0.000000px;}
.ls0_c01137{letter-spacing:0.087998px;}
.ls1_c01137{letter-spacing:0.098482px;}
.ls3_c01137{letter-spacing:0.104482px;}
.ls2_c01137{letter-spacing:26.690482px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01137{word-spacing:-26.575517px;}
.ws5_c01137{word-spacing:-26.487518px;}
.ws11_c01137{word-spacing:-21.553319px;}
.ws10_c01137{word-spacing:-21.519216px;}
.wsb_c01137{word-spacing:-20.323704px;}
.wsf_c01137{word-spacing:-19.247743px;}
.wsd_c01137{word-spacing:-18.769538px;}
.wsa_c01137{word-spacing:-16.498066px;}
.wsc_c01137{word-spacing:-14.943900px;}
.wse_c01137{word-spacing:-10.230144px;}
.ws8_c01137{word-spacing:-9.988424px;}
.ws9_c01137{word-spacing:-9.987499px;}
.ws4_c01137{word-spacing:0.000000px;}
.ws1_c01137{word-spacing:0.043999px;}
.ws0_c01137{word-spacing:0.073250px;}
.ws6_c01137{word-spacing:0.213446px;}
.ws2_c01137{word-spacing:0.219446px;}
.ws7_c01137{word-spacing:43.038600px;}
._3_c01137{margin-left:-1.549390px;}
._2_c01137{width:1.090656px;}
._4_c01137{width:19.197982px;}
._1_c01137{width:53.635025px;}
._0_c01137{width:79.858548px;}
.fc5_c01137{color:rgb(79,153,5);}
.fc4_c01137{color:rgb(143,89,3);}
.fc6_c01137{color:rgb(6,69,173);}
.fc3_c01137{color:rgb(207,92,0);}
.fc2_c01137{color:rgb(0,0,0);}
.fc1_c01137{color:rgb(0,0,207);}
.fc0_c01137{color:rgb(33,74,135);}
.fs0_c01137{font-size:43.999200px;}
.fs2_c01137{font-size:59.775600px;}
.fs1_c01137{font-size:86.077200px;}
.y0_c01137{bottom:0.000000px;}
.y20_c01137{bottom:44.250000px;}
.y1f_c01137{bottom:82.051500px;}
.y1e_c01137{bottom:99.984000px;}
.y1d_c01137{bottom:126.823500px;}
.y1c_c01137{bottom:153.664500px;}
.y1b_c01137{bottom:171.597000px;}
.y1a_c01137{bottom:198.438000px;}
.y19_c01137{bottom:225.277500px;}
.y18_c01137{bottom:267.492000px;}
.y17_c01137{bottom:732.465000px;}
.y16_c01137{bottom:748.903500px;}
.y15_c01137{bottom:765.342000px;}
.y14_c01137{bottom:781.780500px;}
.y13_c01137{bottom:798.219000px;}
.y12_c01137{bottom:814.657500px;}
.y11_c01137{bottom:831.096000px;}
.y10_c01137{bottom:847.534500px;}
.yf_c01137{bottom:863.973000px;}
.ye_c01137{bottom:880.411500px;}
.yd_c01137{bottom:896.848500px;}
.yc_c01137{bottom:929.725500px;}
.yb_c01137{bottom:946.164000px;}
.ya_c01137{bottom:962.602500px;}
.y9_c01137{bottom:995.479500px;}
.y8_c01137{bottom:1011.918000px;}
.y7_c01137{bottom:1028.356500px;}
.y6_c01137{bottom:1044.795000px;}
.y5_c01137{bottom:1061.232000px;}
.y4_c01137{bottom:1077.670500px;}
.y3_c01137{bottom:1094.109000px;}
.y2_c01137{bottom:1143.424500px;}
.y1_c01137{bottom:1159.863000px;}
.h3_c01137{height:35.190766px;}
.h2_c01137{height:36.007158px;}
.h5_c01137{height:40.511979px;}
.h6_c01137{height:52.332837px;}
.h4_c01137{height:58.337477px;}
.h0_c01137{height:1262.835000px;}
.h1_c01137{height:1263.000000px;}
.w0_c01137{width:892.920000px;}
.w1_c01137{width:893.250000px;}
.x0_c01137{left:0.000000px;}
.x4_c01137{left:127.558500px;}
.x2_c01137{left:137.122500px;}
.x1_c01137{left:143.770500px;}
.x3_c01137{left:177.007500px;}
.x5_c01137{left:435.249000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls4_c01137{letter-spacing:0.000000pt;}
.ls0_c01137{letter-spacing:0.078221pt;}
.ls1_c01137{letter-spacing:0.087539pt;}
.ls3_c01137{letter-spacing:0.092873pt;}
.ls2_c01137{letter-spacing:23.724873pt;}
.ws3_c01137{word-spacing:-23.622682pt;}
.ws5_c01137{word-spacing:-23.544461pt;}
.ws11_c01137{word-spacing:-19.158506pt;}
.ws10_c01137{word-spacing:-19.128192pt;}
.wsb_c01137{word-spacing:-18.065515pt;}
.wsf_c01137{word-spacing:-17.109105pt;}
.wsd_c01137{word-spacing:-16.684034pt;}
.wsa_c01137{word-spacing:-14.664947pt;}
.wsc_c01137{word-spacing:-13.283467pt;}
.wse_c01137{word-spacing:-9.093461pt;}
.ws8_c01137{word-spacing:-8.878599pt;}
.ws9_c01137{word-spacing:-8.877777pt;}
.ws4_c01137{word-spacing:0.000000pt;}
.ws1_c01137{word-spacing:0.039110pt;}
.ws0_c01137{word-spacing:0.065111pt;}
.ws6_c01137{word-spacing:0.189730pt;}
.ws2_c01137{word-spacing:0.195063pt;}
.ws7_c01137{word-spacing:38.256533pt;}
._3_c01137{margin-left:-1.377235pt;}
._2_c01137{width:0.969472pt;}
._4_c01137{width:17.064873pt;}
._1_c01137{width:47.675578pt;}
._0_c01137{width:70.985376pt;}
.fs0_c01137{font-size:39.110400pt;}
.fs2_c01137{font-size:53.133867pt;}
.fs1_c01137{font-size:76.513067pt;}
.y0_c01137{bottom:0.000000pt;}
.y20_c01137{bottom:39.333333pt;}
.y1f_c01137{bottom:72.934667pt;}
.y1e_c01137{bottom:88.874667pt;}
.y1d_c01137{bottom:112.732000pt;}
.y1c_c01137{bottom:136.590667pt;}
.y1b_c01137{bottom:152.530667pt;}
.y1a_c01137{bottom:176.389333pt;}
.y19_c01137{bottom:200.246667pt;}
.y18_c01137{bottom:237.770667pt;}
.y17_c01137{bottom:651.080000pt;}
.y16_c01137{bottom:665.692000pt;}
.y15_c01137{bottom:680.304000pt;}
.y14_c01137{bottom:694.916000pt;}
.y13_c01137{bottom:709.528000pt;}
.y12_c01137{bottom:724.140000pt;}
.y11_c01137{bottom:738.752000pt;}
.y10_c01137{bottom:753.364000pt;}
.yf_c01137{bottom:767.976000pt;}
.ye_c01137{bottom:782.588000pt;}
.yd_c01137{bottom:797.198667pt;}
.yc_c01137{bottom:826.422667pt;}
.yb_c01137{bottom:841.034667pt;}
.ya_c01137{bottom:855.646667pt;}
.y9_c01137{bottom:884.870667pt;}
.y8_c01137{bottom:899.482667pt;}
.y7_c01137{bottom:914.094667pt;}
.y6_c01137{bottom:928.706667pt;}
.y5_c01137{bottom:943.317333pt;}
.y4_c01137{bottom:957.929333pt;}
.y3_c01137{bottom:972.541333pt;}
.y2_c01137{bottom:1016.377333pt;}
.y1_c01137{bottom:1030.989333pt;}
.h3_c01137{height:31.280681pt;}
.h2_c01137{height:32.006363pt;}
.h5_c01137{height:36.010648pt;}
.h6_c01137{height:46.518078pt;}
.h4_c01137{height:51.855535pt;}
.h0_c01137{height:1122.520000pt;}
.h1_c01137{height:1122.666667pt;}
.w0_c01137{width:793.706667pt;}
.w1_c01137{width:794.000000pt;}
.x0_c01137{left:0.000000pt;}
.x4_c01137{left:113.385333pt;}
.x2_c01137{left:121.886667pt;}
.x1_c01137{left:127.796000pt;}
.x3_c01137{left:157.340000pt;}
.x5_c01137{left:386.888000pt;}
}





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

.ir_c01138:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_371a34ccebfb87413872c27f.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01138;src:url('chunks/assets/font_9cef135ac049e39cb45c770f.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01138;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01138;src:url('chunks/assets/font_ca77b945260f670bc31d0063.woff2')format("woff");}.ff4_c01138{font-family:ff4_c01138;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.ls4_c01138{letter-spacing:0.000000px;}
.ls1_c01138{letter-spacing:0.087998px;}
.ls2_c01138{letter-spacing:0.098482px;}
.ls0_c01138{letter-spacing:0.104482px;}
.ls3_c01138{letter-spacing:26.690482px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01138{word-spacing:-33.713438px;}
.ws6_c01138{word-spacing:-26.575517px;}
.ws5_c01138{word-spacing:-26.487518px;}
.ws2_c01138{word-spacing:-18.769538px;}
.ws0_c01138{word-spacing:-14.107042px;}
.ws1_c01138{word-spacing:-12.074671px;}
.wsa_c01138{word-spacing:0.000000px;}
.ws7_c01138{word-spacing:0.043999px;}
.wsd_c01138{word-spacing:0.056767px;}
.wsb_c01138{word-spacing:0.073250px;}
.wsc_c01138{word-spacing:0.083734px;}
.ws4_c01138{word-spacing:0.175997px;}
.wse_c01138{word-spacing:0.202963px;}
.ws8_c01138{word-spacing:0.213446px;}
.ws9_c01138{word-spacing:0.219446px;}
._2_c01138{margin-left:-3.825638px;}
._3_c01138{width:1.005737px;}
._0_c01138{width:20.742133px;}
._1_c01138{width:40.109428px;}
._5_c01138{width:53.283031px;}
._4_c01138{width:79.858548px;}
._6_c01138{width:133.452408px;}
.fc5_c01138{color:rgb(0,0,207);}
.fc4_c01138{color:rgb(79,153,5);}
.fc3_c01138{color:rgb(207,92,0);}
.fc2_c01138{color:rgb(33,74,135);}
.fc1_c01138{color:rgb(143,89,3);}
.fc0_c01138{color:rgb(0,0,0);}
.fs1_c01138{font-size:43.999200px;}
.fs0_c01138{font-size:59.775600px;}
.y0_c01138{bottom:0.000000px;}
.y2f_c01138{bottom:44.250000px;}
.y2e_c01138{bottom:96.919500px;}
.y2d_c01138{bottom:113.358000px;}
.y2c_c01138{bottom:129.796500px;}
.y2b_c01138{bottom:146.235000px;}
.y2a_c01138{bottom:162.673500px;}
.y29_c01138{bottom:179.112000px;}
.y28_c01138{bottom:195.550500px;}
.y27_c01138{bottom:211.989000px;}
.y26_c01138{bottom:228.427500px;}
.y25_c01138{bottom:244.866000px;}
.y24_c01138{bottom:261.304500px;}
.y23_c01138{bottom:294.180000px;}
.y22_c01138{bottom:310.618500px;}
.y21_c01138{bottom:327.057000px;}
.y20_c01138{bottom:359.934000px;}
.y1f_c01138{bottom:376.372500px;}
.y1e_c01138{bottom:392.811000px;}
.y1d_c01138{bottom:409.249500px;}
.y1c_c01138{bottom:425.688000px;}
.y1b_c01138{bottom:442.125000px;}
.y1a_c01138{bottom:458.563500px;}
.y19_c01138{bottom:507.879000px;}
.y18_c01138{bottom:524.317500px;}
.y17_c01138{bottom:540.756000px;}
.y16_c01138{bottom:557.194500px;}
.y15_c01138{bottom:573.633000px;}
.y14_c01138{bottom:590.071500px;}
.y13_c01138{bottom:606.508500px;}
.y12_c01138{bottom:622.947000px;}
.y11_c01138{bottom:639.385500px;}
.y10_c01138{bottom:655.824000px;}
.yf_c01138{bottom:672.262500px;}
.ye_c01138{bottom:688.701000px;}
.yd_c01138{bottom:705.139500px;}
.yc_c01138{bottom:721.578000px;}
.yb_c01138{bottom:738.016500px;}
.ya_c01138{bottom:754.455000px;}
.y9_c01138{bottom:787.330500px;}
.y8_c01138{bottom:803.769000px;}
.y7_c01138{bottom:853.084500px;}
.y6_c01138{bottom:869.523000px;}
.y5_c01138{bottom:885.588000px;}
.y4_c01138{bottom:1106.064000px;}
.y3_c01138{bottom:1123.998000px;}
.y2_c01138{bottom:1141.930500px;}
.y1_c01138{bottom:1159.863000px;}
.h3_c01138{height:35.190766px;}
.h4_c01138{height:36.007158px;}
.h2_c01138{height:52.332837px;}
.h0_c01138{height:1262.835000px;}
.h1_c01138{height:1263.000000px;}
.w0_c01138{width:892.920000px;}
.w1_c01138{width:893.250000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:127.558500px;}
.x2_c01138{left:137.122500px;}
.x3_c01138{left:143.770500px;}
.x4_c01138{left:177.007500px;}
.x5_c01138{left:435.249000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls4_c01138{letter-spacing:0.000000pt;}
.ls1_c01138{letter-spacing:0.078221pt;}
.ls2_c01138{letter-spacing:0.087539pt;}
.ls0_c01138{letter-spacing:0.092873pt;}
.ls3_c01138{letter-spacing:23.724873pt;}
.ws3_c01138{word-spacing:-29.967501pt;}
.ws6_c01138{word-spacing:-23.622682pt;}
.ws5_c01138{word-spacing:-23.544461pt;}
.ws2_c01138{word-spacing:-16.684034pt;}
.ws0_c01138{word-spacing:-12.539593pt;}
.ws1_c01138{word-spacing:-10.733041pt;}
.wsa_c01138{word-spacing:0.000000pt;}
.ws7_c01138{word-spacing:0.039110pt;}
.wsd_c01138{word-spacing:0.050460pt;}
.wsb_c01138{word-spacing:0.065111pt;}
.wsc_c01138{word-spacing:0.074430pt;}
.ws4_c01138{word-spacing:0.156442pt;}
.wse_c01138{word-spacing:0.180412pt;}
.ws8_c01138{word-spacing:0.189730pt;}
.ws9_c01138{word-spacing:0.195063pt;}
._2_c01138{margin-left:-3.400567pt;}
._3_c01138{width:0.893988pt;}
._0_c01138{width:18.437452pt;}
._1_c01138{width:35.652825pt;}
._5_c01138{width:47.362694pt;}
._4_c01138{width:70.985376pt;}
._6_c01138{width:118.624363pt;}
.fs1_c01138{font-size:39.110400pt;}
.fs0_c01138{font-size:53.133867pt;}
.y0_c01138{bottom:0.000000pt;}
.y2f_c01138{bottom:39.333333pt;}
.y2e_c01138{bottom:86.150667pt;}
.y2d_c01138{bottom:100.762667pt;}
.y2c_c01138{bottom:115.374667pt;}
.y2b_c01138{bottom:129.986667pt;}
.y2a_c01138{bottom:144.598667pt;}
.y29_c01138{bottom:159.210667pt;}
.y28_c01138{bottom:173.822667pt;}
.y27_c01138{bottom:188.434667pt;}
.y26_c01138{bottom:203.046667pt;}
.y25_c01138{bottom:217.658667pt;}
.y24_c01138{bottom:232.270667pt;}
.y23_c01138{bottom:261.493333pt;}
.y22_c01138{bottom:276.105333pt;}
.y21_c01138{bottom:290.717333pt;}
.y20_c01138{bottom:319.941333pt;}
.y1f_c01138{bottom:334.553333pt;}
.y1e_c01138{bottom:349.165333pt;}
.y1d_c01138{bottom:363.777333pt;}
.y1c_c01138{bottom:378.389333pt;}
.y1b_c01138{bottom:393.000000pt;}
.y1a_c01138{bottom:407.612000pt;}
.y19_c01138{bottom:451.448000pt;}
.y18_c01138{bottom:466.060000pt;}
.y17_c01138{bottom:480.672000pt;}
.y16_c01138{bottom:495.284000pt;}
.y15_c01138{bottom:509.896000pt;}
.y14_c01138{bottom:524.508000pt;}
.y13_c01138{bottom:539.118667pt;}
.y12_c01138{bottom:553.730667pt;}
.y11_c01138{bottom:568.342667pt;}
.y10_c01138{bottom:582.954667pt;}
.yf_c01138{bottom:597.566667pt;}
.ye_c01138{bottom:612.178667pt;}
.yd_c01138{bottom:626.790667pt;}
.yc_c01138{bottom:641.402667pt;}
.yb_c01138{bottom:656.014667pt;}
.ya_c01138{bottom:670.626667pt;}
.y9_c01138{bottom:699.849333pt;}
.y8_c01138{bottom:714.461333pt;}
.y7_c01138{bottom:758.297333pt;}
.y6_c01138{bottom:772.909333pt;}
.y5_c01138{bottom:787.189333pt;}
.y4_c01138{bottom:983.168000pt;}
.y3_c01138{bottom:999.109333pt;}
.y2_c01138{bottom:1015.049333pt;}
.y1_c01138{bottom:1030.989333pt;}
.h3_c01138{height:31.280681pt;}
.h4_c01138{height:32.006363pt;}
.h2_c01138{height:46.518078pt;}
.h0_c01138{height:1122.520000pt;}
.h1_c01138{height:1122.666667pt;}
.w0_c01138{width:793.706667pt;}
.w1_c01138{width:794.000000pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:113.385333pt;}
.x2_c01138{left:121.886667pt;}
.x3_c01138{left:127.796000pt;}
.x4_c01138{left:157.340000pt;}
.x5_c01138{left:386.888000pt;}
}





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

.ir_c01139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_c2f673ece551a7d54ccf642b.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01139;src:url('chunks/assets/font_e44521a6e82826e057983dc5.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01139;src:url('chunks/assets/font_c82edf1cd3a0f29606cd7ed8.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01139;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01139;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01139{font-family:ff5_c01139;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01139{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls3_c01139{letter-spacing:0.000000px;}
.ls0_c01139{letter-spacing:0.087998px;}
.ls2_c01139{letter-spacing:0.098482px;}
.ls1_c01139{letter-spacing:0.104482px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01139{word-spacing:-26.575517px;}
.ws10_c01139{word-spacing:-26.487518px;}
.ws8_c01139{word-spacing:-19.965050px;}
.ws9_c01139{word-spacing:-19.905275px;}
.ws5_c01139{word-spacing:-18.769538px;}
.wsc_c01139{word-spacing:-17.813129px;}
.wsd_c01139{word-spacing:-17.753353px;}
.wsa_c01139{word-spacing:-17.334924px;}
.wse_c01139{word-spacing:-16.677392px;}
.ws7_c01139{word-spacing:-15.900310px;}
.ws4_c01139{word-spacing:-14.943900px;}
.wsb_c01139{word-spacing:-10.077432px;}
.ws1_c01139{word-spacing:-9.988424px;}
.ws3_c01139{word-spacing:-9.987499px;}
.ws6_c01139{word-spacing:-4.302144px;}
.ws14_c01139{word-spacing:0.000000px;}
.ws11_c01139{word-spacing:0.043999px;}
.wsf_c01139{word-spacing:0.175997px;}
.ws13_c01139{word-spacing:0.213446px;}
.ws12_c01139{word-spacing:0.219446px;}
.ws0_c01139{word-spacing:43.038600px;}
._3_c01139{margin-left:-7.770828px;}
._2_c01139{margin-left:-4.727048px;}
._5_c01139{margin-left:-3.206504px;}
._0_c01139{margin-left:-1.549390px;}
._a_c01139{width:1.005737px;}
._4_c01139{width:16.766402px;}
._9_c01139{width:18.415661px;}
._1_c01139{width:19.935816px;}
._7_c01139{width:23.073382px;}
._6_c01139{width:24.847646px;}
._8_c01139{width:26.540366px;}
.fc5_c01139{color:rgb(79,153,5);}
.fc3_c01139{color:rgb(33,74,135);}
.fc2_c01139{color:rgb(143,89,3);}
.fc4_c01139{color:rgb(207,92,0);}
.fc1_c01139{color:rgb(6,69,173);}
.fc0_c01139{color:rgb(0,0,0);}
.fs2_c01139{font-size:43.999200px;}
.fs1_c01139{font-size:59.775600px;}
.fs0_c01139{font-size:86.077200px;}
.y0_c01139{bottom:0.000000px;}
.y1e_c01139{bottom:44.250000px;}
.y1d_c01139{bottom:103.420500px;}
.y1c_c01139{bottom:119.859000px;}
.y1b_c01139{bottom:169.174500px;}
.y1a_c01139{bottom:185.613000px;}
.y19_c01139{bottom:218.490000px;}
.y18_c01139{bottom:234.927000px;}
.y17_c01139{bottom:251.365500px;}
.y16_c01139{bottom:267.804000px;}
.y15_c01139{bottom:300.681000px;}
.y14_c01139{bottom:317.119500px;}
.y13_c01139{bottom:333.558000px;}
.y12_c01139{bottom:349.996500px;}
.y11_c01139{bottom:366.435000px;}
.y10_c01139{bottom:382.873500px;}
.yf_c01139{bottom:399.310500px;}
.ye_c01139{bottom:415.749000px;}
.yd_c01139{bottom:431.814000px;}
.yc_c01139{bottom:478.861500px;}
.yb_c01139{bottom:496.794000px;}
.ya_c01139{bottom:514.726500px;}
.y9_c01139{bottom:532.659000px;}
.y8_c01139{bottom:550.591500px;}
.y7_c01139{bottom:568.524000px;}
.y6_c01139{bottom:586.458000px;}
.y5_c01139{bottom:613.162500px;}
.y4_c01139{bottom:639.868500px;}
.y3_c01139{bottom:666.574500px;}
.y2_c01139{bottom:693.280500px;}
.y1_c01139{bottom:735.360000px;}
.h5_c01139{height:35.190766px;}
.h6_c01139{height:36.007158px;}
.h3_c01139{height:40.511979px;}
.h4_c01139{height:52.332837px;}
.h2_c01139{height:58.337477px;}
.h0_c01139{height:1262.835000px;}
.h1_c01139{height:1263.000000px;}
.w0_c01139{width:892.920000px;}
.w1_c01139{width:893.250000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:127.558500px;}
.x2_c01139{left:137.122500px;}
.x3_c01139{left:435.249000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls3_c01139{letter-spacing:0.000000pt;}
.ls0_c01139{letter-spacing:0.078221pt;}
.ls2_c01139{letter-spacing:0.087539pt;}
.ls1_c01139{letter-spacing:0.092873pt;}
.ws2_c01139{word-spacing:-23.622682pt;}
.ws10_c01139{word-spacing:-23.544461pt;}
.ws8_c01139{word-spacing:-17.746711pt;}
.ws9_c01139{word-spacing:-17.693578pt;}
.ws5_c01139{word-spacing:-16.684034pt;}
.wsc_c01139{word-spacing:-15.833892pt;}
.wsd_c01139{word-spacing:-15.780758pt;}
.wsa_c01139{word-spacing:-15.408821pt;}
.wse_c01139{word-spacing:-14.824349pt;}
.ws7_c01139{word-spacing:-14.133609pt;}
.ws4_c01139{word-spacing:-13.283467pt;}
.wsb_c01139{word-spacing:-8.957717pt;}
.ws1_c01139{word-spacing:-8.878599pt;}
.ws3_c01139{word-spacing:-8.877777pt;}
.ws6_c01139{word-spacing:-3.824128pt;}
.ws14_c01139{word-spacing:0.000000pt;}
.ws11_c01139{word-spacing:0.039110pt;}
.wsf_c01139{word-spacing:0.156442pt;}
.ws13_c01139{word-spacing:0.189730pt;}
.ws12_c01139{word-spacing:0.195063pt;}
.ws0_c01139{word-spacing:38.256533pt;}
._3_c01139{margin-left:-6.907403pt;}
._2_c01139{margin-left:-4.201821pt;}
._5_c01139{margin-left:-2.850226pt;}
._0_c01139{margin-left:-1.377235pt;}
._a_c01139{width:0.893988pt;}
._4_c01139{width:14.903469pt;}
._9_c01139{width:16.369476pt;}
._1_c01139{width:17.720725pt;}
._7_c01139{width:20.509673pt;}
._6_c01139{width:22.086797pt;}
._8_c01139{width:23.591437pt;}
.fs2_c01139{font-size:39.110400pt;}
.fs1_c01139{font-size:53.133867pt;}
.fs0_c01139{font-size:76.513067pt;}
.y0_c01139{bottom:0.000000pt;}
.y1e_c01139{bottom:39.333333pt;}
.y1d_c01139{bottom:91.929333pt;}
.y1c_c01139{bottom:106.541333pt;}
.y1b_c01139{bottom:150.377333pt;}
.y1a_c01139{bottom:164.989333pt;}
.y19_c01139{bottom:194.213333pt;}
.y18_c01139{bottom:208.824000pt;}
.y17_c01139{bottom:223.436000pt;}
.y16_c01139{bottom:238.048000pt;}
.y15_c01139{bottom:267.272000pt;}
.y14_c01139{bottom:281.884000pt;}
.y13_c01139{bottom:296.496000pt;}
.y12_c01139{bottom:311.108000pt;}
.y11_c01139{bottom:325.720000pt;}
.y10_c01139{bottom:340.332000pt;}
.yf_c01139{bottom:354.942667pt;}
.ye_c01139{bottom:369.554667pt;}
.yd_c01139{bottom:383.834667pt;}
.yc_c01139{bottom:425.654667pt;}
.yb_c01139{bottom:441.594667pt;}
.ya_c01139{bottom:457.534667pt;}
.y9_c01139{bottom:473.474667pt;}
.y8_c01139{bottom:489.414667pt;}
.y7_c01139{bottom:505.354667pt;}
.y6_c01139{bottom:521.296000pt;}
.y5_c01139{bottom:545.033333pt;}
.y4_c01139{bottom:568.772000pt;}
.y3_c01139{bottom:592.510667pt;}
.y2_c01139{bottom:616.249333pt;}
.y1_c01139{bottom:653.653333pt;}
.h5_c01139{height:31.280681pt;}
.h6_c01139{height:32.006363pt;}
.h3_c01139{height:36.010648pt;}
.h4_c01139{height:46.518078pt;}
.h2_c01139{height:51.855535pt;}
.h0_c01139{height:1122.520000pt;}
.h1_c01139{height:1122.666667pt;}
.w0_c01139{width:793.706667pt;}
.w1_c01139{width:794.000000pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:113.385333pt;}
.x2_c01139{left:121.886667pt;}
.x3_c01139{left:386.888000pt;}
}





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

.ir_c01140:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_f7183315df22f6785208bece.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01140;src:url('chunks/assets/font_1ac04a494c22d21fdb170601.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01140;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01140;src:url('chunks/assets/font_ba11cbae2aba1287b3ad53fe.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls3_c01140{letter-spacing:0.000000px;}
.ls0_c01140{letter-spacing:0.087998px;}
.ls2_c01140{letter-spacing:0.098482px;}
.ls1_c01140{letter-spacing:0.104482px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01140{word-spacing:-26.575517px;}
.ws5_c01140{word-spacing:-26.487518px;}
.ws2_c01140{word-spacing:0.000000px;}
.ws6_c01140{word-spacing:0.043999px;}
.ws3_c01140{word-spacing:0.053933px;}
.ws7_c01140{word-spacing:0.056767px;}
.ws4_c01140{word-spacing:0.070416px;}
.ws0_c01140{word-spacing:0.175997px;}
.ws8_c01140{word-spacing:0.213446px;}
._1_c01140{width:1.028438px;}
._0_c01140{width:53.635025px;}
.fc5_c01140{color:rgb(0,0,207);}
.fc4_c01140{color:rgb(207,92,0);}
.fc3_c01140{color:rgb(79,153,5);}
.fc2_c01140{color:rgb(33,74,135);}
.fc1_c01140{color:rgb(0,0,0);}
.fc0_c01140{color:rgb(143,89,3);}
.fs0_c01140{font-size:43.999200px;}
.fs1_c01140{font-size:59.775600px;}
.y0_c01140{bottom:0.000000px;}
.y2d_c01140{bottom:44.250000px;}
.y2c_c01140{bottom:387.259500px;}
.y2b_c01140{bottom:403.698000px;}
.y2a_c01140{bottom:420.136500px;}
.y29_c01140{bottom:436.575000px;}
.y28_c01140{bottom:453.013500px;}
.y27_c01140{bottom:469.452000px;}
.y26_c01140{bottom:485.890500px;}
.y25_c01140{bottom:502.329000px;}
.y24_c01140{bottom:518.767500px;}
.y23_c01140{bottom:535.206000px;}
.y22_c01140{bottom:551.643000px;}
.y21_c01140{bottom:584.520000px;}
.y20_c01140{bottom:600.958500px;}
.y1f_c01140{bottom:617.397000px;}
.y1e_c01140{bottom:650.274000px;}
.y1d_c01140{bottom:666.712500px;}
.y1c_c01140{bottom:683.151000px;}
.y1b_c01140{bottom:699.589500px;}
.y1a_c01140{bottom:716.028000px;}
.y19_c01140{bottom:732.465000px;}
.y18_c01140{bottom:748.903500px;}
.y17_c01140{bottom:765.342000px;}
.y16_c01140{bottom:781.780500px;}
.y15_c01140{bottom:798.219000px;}
.y14_c01140{bottom:814.657500px;}
.y13_c01140{bottom:831.096000px;}
.y12_c01140{bottom:847.534500px;}
.y11_c01140{bottom:863.973000px;}
.y10_c01140{bottom:880.411500px;}
.yf_c01140{bottom:896.848500px;}
.ye_c01140{bottom:913.287000px;}
.yd_c01140{bottom:929.725500px;}
.yc_c01140{bottom:946.164000px;}
.yb_c01140{bottom:962.602500px;}
.ya_c01140{bottom:979.041000px;}
.y9_c01140{bottom:995.479500px;}
.y8_c01140{bottom:1011.918000px;}
.y7_c01140{bottom:1028.356500px;}
.y6_c01140{bottom:1044.795000px;}
.y5_c01140{bottom:1061.232000px;}
.y4_c01140{bottom:1077.670500px;}
.y3_c01140{bottom:1126.986000px;}
.y2_c01140{bottom:1143.424500px;}
.y1_c01140{bottom:1159.863000px;}
.h2_c01140{height:35.190766px;}
.h3_c01140{height:36.007158px;}
.h4_c01140{height:52.332837px;}
.h0_c01140{height:1262.835000px;}
.h1_c01140{height:1263.000000px;}
.w0_c01140{width:892.920000px;}
.w1_c01140{width:893.250000px;}
.x0_c01140{left:0.000000px;}
.x1_c01140{left:137.122500px;}
.x2_c01140{left:143.770500px;}
.x6_c01140{left:177.007500px;}
.x5_c01140{left:230.185500px;}
.x3_c01140{left:243.480000px;}
.x4_c01140{left:276.715500px;}
.x7_c01140{left:435.249000px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls3_c01140{letter-spacing:0.000000pt;}
.ls0_c01140{letter-spacing:0.078221pt;}
.ls2_c01140{letter-spacing:0.087539pt;}
.ls1_c01140{letter-spacing:0.092873pt;}
.ws1_c01140{word-spacing:-23.622682pt;}
.ws5_c01140{word-spacing:-23.544461pt;}
.ws2_c01140{word-spacing:0.000000pt;}
.ws6_c01140{word-spacing:0.039110pt;}
.ws3_c01140{word-spacing:0.047940pt;}
.ws7_c01140{word-spacing:0.050460pt;}
.ws4_c01140{word-spacing:0.062592pt;}
.ws0_c01140{word-spacing:0.156442pt;}
.ws8_c01140{word-spacing:0.189730pt;}
._1_c01140{width:0.914167pt;}
._0_c01140{width:47.675578pt;}
.fs0_c01140{font-size:39.110400pt;}
.fs1_c01140{font-size:53.133867pt;}
.y0_c01140{bottom:0.000000pt;}
.y2d_c01140{bottom:39.333333pt;}
.y2c_c01140{bottom:344.230667pt;}
.y2b_c01140{bottom:358.842667pt;}
.y2a_c01140{bottom:373.454667pt;}
.y29_c01140{bottom:388.066667pt;}
.y28_c01140{bottom:402.678667pt;}
.y27_c01140{bottom:417.290667pt;}
.y26_c01140{bottom:431.902667pt;}
.y25_c01140{bottom:446.514667pt;}
.y24_c01140{bottom:461.126667pt;}
.y23_c01140{bottom:475.738667pt;}
.y22_c01140{bottom:490.349333pt;}
.y21_c01140{bottom:519.573333pt;}
.y20_c01140{bottom:534.185333pt;}
.y1f_c01140{bottom:548.797333pt;}
.y1e_c01140{bottom:578.021333pt;}
.y1d_c01140{bottom:592.633333pt;}
.y1c_c01140{bottom:607.245333pt;}
.y1b_c01140{bottom:621.857333pt;}
.y1a_c01140{bottom:636.469333pt;}
.y19_c01140{bottom:651.080000pt;}
.y18_c01140{bottom:665.692000pt;}
.y17_c01140{bottom:680.304000pt;}
.y16_c01140{bottom:694.916000pt;}
.y15_c01140{bottom:709.528000pt;}
.y14_c01140{bottom:724.140000pt;}
.y13_c01140{bottom:738.752000pt;}
.y12_c01140{bottom:753.364000pt;}
.y11_c01140{bottom:767.976000pt;}
.y10_c01140{bottom:782.588000pt;}
.yf_c01140{bottom:797.198667pt;}
.ye_c01140{bottom:811.810667pt;}
.yd_c01140{bottom:826.422667pt;}
.yc_c01140{bottom:841.034667pt;}
.yb_c01140{bottom:855.646667pt;}
.ya_c01140{bottom:870.258667pt;}
.y9_c01140{bottom:884.870667pt;}
.y8_c01140{bottom:899.482667pt;}
.y7_c01140{bottom:914.094667pt;}
.y6_c01140{bottom:928.706667pt;}
.y5_c01140{bottom:943.317333pt;}
.y4_c01140{bottom:957.929333pt;}
.y3_c01140{bottom:1001.765333pt;}
.y2_c01140{bottom:1016.377333pt;}
.y1_c01140{bottom:1030.989333pt;}
.h2_c01140{height:31.280681pt;}
.h3_c01140{height:32.006363pt;}
.h4_c01140{height:46.518078pt;}
.h0_c01140{height:1122.520000pt;}
.h1_c01140{height:1122.666667pt;}
.w0_c01140{width:793.706667pt;}
.w1_c01140{width:794.000000pt;}
.x0_c01140{left:0.000000pt;}
.x1_c01140{left:121.886667pt;}
.x2_c01140{left:127.796000pt;}
.x6_c01140{left:157.340000pt;}
.x5_c01140{left:204.609333pt;}
.x3_c01140{left:216.426667pt;}
.x4_c01140{left:245.969333pt;}
.x7_c01140{left:386.888000pt;}
}





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

.ir_c01141:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_7388303e746a4b04d907a6d8.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01141;src:url('chunks/assets/font_292a7aa4a170b74182722272.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01141;src:url('chunks/assets/font_1d0138a4e3180a07bd959eee.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01141;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01141;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01141{font-family:ff5_c01141;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01141{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01141{vertical-align:0.000000px;}
.ls3_c01141{letter-spacing:0.000000px;}
.ls0_c01141{letter-spacing:0.087998px;}
.ls2_c01141{letter-spacing:0.098482px;}
.ls1_c01141{letter-spacing:0.104482px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01141{word-spacing:-33.713438px;}
.ws2_c01141{word-spacing:-26.575517px;}
.wse_c01141{word-spacing:-26.487518px;}
.ws9_c01141{word-spacing:-21.553319px;}
.ws8_c01141{word-spacing:-21.519216px;}
.ws5_c01141{word-spacing:-18.769538px;}
.ws7_c01141{word-spacing:-16.019861px;}
.ws4_c01141{word-spacing:-14.943900px;}
.wsa_c01141{word-spacing:-14.107042px;}
.wsb_c01141{word-spacing:-12.074671px;}
.ws1_c01141{word-spacing:-9.988424px;}
.ws3_c01141{word-spacing:-9.987499px;}
.ws6_c01141{word-spacing:-4.536144px;}
.ws12_c01141{word-spacing:0.000000px;}
.wsf_c01141{word-spacing:0.043999px;}
.ws15_c01141{word-spacing:0.056767px;}
.ws13_c01141{word-spacing:0.073250px;}
.ws14_c01141{word-spacing:0.083734px;}
.wsd_c01141{word-spacing:0.175997px;}
.ws16_c01141{word-spacing:0.202963px;}
.ws10_c01141{word-spacing:0.213446px;}
.ws11_c01141{word-spacing:0.219446px;}
.ws0_c01141{word-spacing:43.038600px;}
._3_c01141{margin-left:-3.825638px;}
._0_c01141{margin-left:-1.549390px;}
._4_c01141{width:1.005737px;}
._1_c01141{width:19.935816px;}
._2_c01141{width:40.109428px;}
._6_c01141{width:53.283031px;}
._5_c01141{width:79.858548px;}
._7_c01141{width:133.452408px;}
.fc6_c01141{color:rgb(0,0,207);}
.fc5_c01141{color:rgb(79,153,5);}
.fc3_c01141{color:rgb(33,74,135);}
.fc2_c01141{color:rgb(143,89,3);}
.fc4_c01141{color:rgb(207,92,0);}
.fc1_c01141{color:rgb(6,69,173);}
.fc0_c01141{color:rgb(0,0,0);}
.fs2_c01141{font-size:43.999200px;}
.fs1_c01141{font-size:59.775600px;}
.fs0_c01141{font-size:86.077200px;}
.y0_c01141{bottom:0.000000px;}
.y20_c01141{bottom:44.250000px;}
.y1f_c01141{bottom:86.982000px;}
.y1e_c01141{bottom:103.420500px;}
.y1d_c01141{bottom:119.859000px;}
.y1c_c01141{bottom:136.297500px;}
.y1b_c01141{bottom:152.736000px;}
.y1a_c01141{bottom:169.174500px;}
.y19_c01141{bottom:185.613000px;}
.y18_c01141{bottom:202.051500px;}
.y17_c01141{bottom:218.490000px;}
.y16_c01141{bottom:234.927000px;}
.y15_c01141{bottom:251.365500px;}
.y14_c01141{bottom:267.804000px;}
.y13_c01141{bottom:284.242500px;}
.y12_c01141{bottom:300.681000px;}
.y11_c01141{bottom:317.119500px;}
.y10_c01141{bottom:349.996500px;}
.yf_c01141{bottom:366.435000px;}
.ye_c01141{bottom:415.749000px;}
.yd_c01141{bottom:432.187500px;}
.yc_c01141{bottom:448.252500px;}
.yb_c01141{bottom:493.890000px;}
.ya_c01141{bottom:511.822500px;}
.y9_c01141{bottom:529.756500px;}
.y8_c01141{bottom:547.689000px;}
.y7_c01141{bottom:565.621500px;}
.y6_c01141{bottom:583.554000px;}
.y5_c01141{bottom:610.633500px;}
.y4_c01141{bottom:637.714500px;}
.y3_c01141{bottom:664.794000px;}
.y2_c01141{bottom:691.873500px;}
.y1_c01141{bottom:734.407500px;}
.h5_c01141{height:35.190766px;}
.h6_c01141{height:36.007158px;}
.h3_c01141{height:40.511979px;}
.h4_c01141{height:52.332837px;}
.h2_c01141{height:58.337477px;}
.h0_c01141{height:1262.835000px;}
.h1_c01141{height:1263.000000px;}
.w0_c01141{width:892.920000px;}
.w1_c01141{width:893.250000px;}
.x0_c01141{left:0.000000px;}
.x1_c01141{left:127.558500px;}
.x2_c01141{left:137.122500px;}
.x3_c01141{left:143.770500px;}
.x4_c01141{left:435.249000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls3_c01141{letter-spacing:0.000000pt;}
.ls0_c01141{letter-spacing:0.078221pt;}
.ls2_c01141{letter-spacing:0.087539pt;}
.ls1_c01141{letter-spacing:0.092873pt;}
.wsc_c01141{word-spacing:-29.967501pt;}
.ws2_c01141{word-spacing:-23.622682pt;}
.wse_c01141{word-spacing:-23.544461pt;}
.ws9_c01141{word-spacing:-19.158506pt;}
.ws8_c01141{word-spacing:-19.128192pt;}
.ws5_c01141{word-spacing:-16.684034pt;}
.ws7_c01141{word-spacing:-14.239876pt;}
.ws4_c01141{word-spacing:-13.283467pt;}
.wsa_c01141{word-spacing:-12.539593pt;}
.wsb_c01141{word-spacing:-10.733041pt;}
.ws1_c01141{word-spacing:-8.878599pt;}
.ws3_c01141{word-spacing:-8.877777pt;}
.ws6_c01141{word-spacing:-4.032128pt;}
.ws12_c01141{word-spacing:0.000000pt;}
.wsf_c01141{word-spacing:0.039110pt;}
.ws15_c01141{word-spacing:0.050460pt;}
.ws13_c01141{word-spacing:0.065111pt;}
.ws14_c01141{word-spacing:0.074430pt;}
.wsd_c01141{word-spacing:0.156442pt;}
.ws16_c01141{word-spacing:0.180412pt;}
.ws10_c01141{word-spacing:0.189730pt;}
.ws11_c01141{word-spacing:0.195063pt;}
.ws0_c01141{word-spacing:38.256533pt;}
._3_c01141{margin-left:-3.400567pt;}
._0_c01141{margin-left:-1.377235pt;}
._4_c01141{width:0.893988pt;}
._1_c01141{width:17.720725pt;}
._2_c01141{width:35.652825pt;}
._6_c01141{width:47.362694pt;}
._5_c01141{width:70.985376pt;}
._7_c01141{width:118.624363pt;}
.fs2_c01141{font-size:39.110400pt;}
.fs1_c01141{font-size:53.133867pt;}
.fs0_c01141{font-size:76.513067pt;}
.y0_c01141{bottom:0.000000pt;}
.y20_c01141{bottom:39.333333pt;}
.y1f_c01141{bottom:77.317333pt;}
.y1e_c01141{bottom:91.929333pt;}
.y1d_c01141{bottom:106.541333pt;}
.y1c_c01141{bottom:121.153333pt;}
.y1b_c01141{bottom:135.765333pt;}
.y1a_c01141{bottom:150.377333pt;}
.y19_c01141{bottom:164.989333pt;}
.y18_c01141{bottom:179.601333pt;}
.y17_c01141{bottom:194.213333pt;}
.y16_c01141{bottom:208.824000pt;}
.y15_c01141{bottom:223.436000pt;}
.y14_c01141{bottom:238.048000pt;}
.y13_c01141{bottom:252.660000pt;}
.y12_c01141{bottom:267.272000pt;}
.y11_c01141{bottom:281.884000pt;}
.y10_c01141{bottom:311.108000pt;}
.yf_c01141{bottom:325.720000pt;}
.ye_c01141{bottom:369.554667pt;}
.yd_c01141{bottom:384.166667pt;}
.yc_c01141{bottom:398.446667pt;}
.yb_c01141{bottom:439.013333pt;}
.ya_c01141{bottom:454.953333pt;}
.y9_c01141{bottom:470.894667pt;}
.y8_c01141{bottom:486.834667pt;}
.y7_c01141{bottom:502.774667pt;}
.y6_c01141{bottom:518.714667pt;}
.y5_c01141{bottom:542.785333pt;}
.y4_c01141{bottom:566.857333pt;}
.y3_c01141{bottom:590.928000pt;}
.y2_c01141{bottom:614.998667pt;}
.y1_c01141{bottom:652.806667pt;}
.h5_c01141{height:31.280681pt;}
.h6_c01141{height:32.006363pt;}
.h3_c01141{height:36.010648pt;}
.h4_c01141{height:46.518078pt;}
.h2_c01141{height:51.855535pt;}
.h0_c01141{height:1122.520000pt;}
.h1_c01141{height:1122.666667pt;}
.w0_c01141{width:793.706667pt;}
.w1_c01141{width:794.000000pt;}
.x0_c01141{left:0.000000pt;}
.x1_c01141{left:113.385333pt;}
.x2_c01141{left:121.886667pt;}
.x3_c01141{left:127.796000pt;}
.x4_c01141{left:386.888000pt;}
}





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

.ir_c01142:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_9959d13d750343f8c9f709d2.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01142;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01142;src:url('chunks/assets/font_5fddd74da1e55b1900bfc6c6.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01142;src:url('chunks/assets/font_cae0734b5765a17b7f5a019c.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01142;src:url('chunks/assets/font_32b42aa738f72c88e5a19c9d.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01142{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls4_c01142{letter-spacing:0.000000px;}
.ls0_c01142{letter-spacing:0.087998px;}
.ls2_c01142{letter-spacing:0.098482px;}
.ls3_c01142{letter-spacing:0.104482px;}
.ls1_c01142{letter-spacing:26.690482px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01142{word-spacing:-26.575517px;}
.ws4_c01142{word-spacing:-26.487518px;}
.wse_c01142{word-spacing:-21.553319px;}
.wsd_c01142{word-spacing:-21.519216px;}
.wsa_c01142{word-spacing:-18.769538px;}
.wsc_c01142{word-spacing:-17.633802px;}
.ws9_c01142{word-spacing:-14.943900px;}
.wsf_c01142{word-spacing:-14.107042px;}
.ws10_c01142{word-spacing:-12.074671px;}
.ws7_c01142{word-spacing:-9.988424px;}
.ws8_c01142{word-spacing:-9.987499px;}
.wsb_c01142{word-spacing:-7.686144px;}
.ws3_c01142{word-spacing:0.000000px;}
.ws0_c01142{word-spacing:0.043999px;}
.ws5_c01142{word-spacing:0.213446px;}
.ws1_c01142{word-spacing:0.219446px;}
.ws6_c01142{word-spacing:43.038600px;}
._2_c01142{margin-left:-1.549390px;}
._1_c01142{width:1.090656px;}
._3_c01142{width:19.935816px;}
._4_c01142{width:40.109428px;}
._0_c01142{width:53.635025px;}
.fc5_c01142{color:rgb(79,153,5);}
.fc4_c01142{color:rgb(143,89,3);}
.fc3_c01142{color:rgb(0,0,0);}
.fc6_c01142{color:rgb(6,69,173);}
.fc2_c01142{color:rgb(207,92,0);}
.fc1_c01142{color:rgb(0,0,207);}
.fc0_c01142{color:rgb(33,74,135);}
.fs0_c01142{font-size:43.999200px;}
.fs2_c01142{font-size:59.775600px;}
.fs1_c01142{font-size:86.077200px;}
.y0_c01142{bottom:0.000000px;}
.y20_c01142{bottom:44.250000px;}
.y1f_c01142{bottom:82.051500px;}
.y1e_c01142{bottom:99.984000px;}
.y1d_c01142{bottom:117.916500px;}
.y1c_c01142{bottom:135.849000px;}
.y1b_c01142{bottom:162.501000px;}
.y1a_c01142{bottom:189.151500px;}
.y19_c01142{bottom:215.802000px;}
.y18_c01142{bottom:242.454000px;}
.y17_c01142{bottom:284.478000px;}
.y16_c01142{bottom:748.903500px;}
.y15_c01142{bottom:765.342000px;}
.y14_c01142{bottom:781.780500px;}
.y13_c01142{bottom:798.219000px;}
.y12_c01142{bottom:814.657500px;}
.y11_c01142{bottom:831.096000px;}
.y10_c01142{bottom:847.534500px;}
.yf_c01142{bottom:863.973000px;}
.ye_c01142{bottom:880.411500px;}
.yd_c01142{bottom:896.848500px;}
.yc_c01142{bottom:913.287000px;}
.yb_c01142{bottom:946.164000px;}
.ya_c01142{bottom:962.602500px;}
.y9_c01142{bottom:979.041000px;}
.y8_c01142{bottom:1011.918000px;}
.y7_c01142{bottom:1028.356500px;}
.y6_c01142{bottom:1044.795000px;}
.y5_c01142{bottom:1061.232000px;}
.y4_c01142{bottom:1077.670500px;}
.y3_c01142{bottom:1094.109000px;}
.y2_c01142{bottom:1110.547500px;}
.y1_c01142{bottom:1159.863000px;}
.h3_c01142{height:35.190766px;}
.h2_c01142{height:36.007158px;}
.h5_c01142{height:40.511979px;}
.h6_c01142{height:52.332837px;}
.h4_c01142{height:58.337477px;}
.h0_c01142{height:1262.835000px;}
.h1_c01142{height:1263.000000px;}
.w0_c01142{width:892.920000px;}
.w1_c01142{width:893.250000px;}
.x0_c01142{left:0.000000px;}
.x4_c01142{left:127.558500px;}
.x2_c01142{left:137.122500px;}
.x1_c01142{left:143.770500px;}
.x3_c01142{left:177.007500px;}
.x5_c01142{left:435.249000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls4_c01142{letter-spacing:0.000000pt;}
.ls0_c01142{letter-spacing:0.078221pt;}
.ls2_c01142{letter-spacing:0.087539pt;}
.ls3_c01142{letter-spacing:0.092873pt;}
.ls1_c01142{letter-spacing:23.724873pt;}
.ws2_c01142{word-spacing:-23.622682pt;}
.ws4_c01142{word-spacing:-23.544461pt;}
.wse_c01142{word-spacing:-19.158506pt;}
.wsd_c01142{word-spacing:-19.128192pt;}
.wsa_c01142{word-spacing:-16.684034pt;}
.wsc_c01142{word-spacing:-15.674491pt;}
.ws9_c01142{word-spacing:-13.283467pt;}
.wsf_c01142{word-spacing:-12.539593pt;}
.ws10_c01142{word-spacing:-10.733041pt;}
.ws7_c01142{word-spacing:-8.878599pt;}
.ws8_c01142{word-spacing:-8.877777pt;}
.wsb_c01142{word-spacing:-6.832128pt;}
.ws3_c01142{word-spacing:0.000000pt;}
.ws0_c01142{word-spacing:0.039110pt;}
.ws5_c01142{word-spacing:0.189730pt;}
.ws1_c01142{word-spacing:0.195063pt;}
.ws6_c01142{word-spacing:38.256533pt;}
._2_c01142{margin-left:-1.377235pt;}
._1_c01142{width:0.969472pt;}
._3_c01142{width:17.720725pt;}
._4_c01142{width:35.652825pt;}
._0_c01142{width:47.675578pt;}
.fs0_c01142{font-size:39.110400pt;}
.fs2_c01142{font-size:53.133867pt;}
.fs1_c01142{font-size:76.513067pt;}
.y0_c01142{bottom:0.000000pt;}
.y20_c01142{bottom:39.333333pt;}
.y1f_c01142{bottom:72.934667pt;}
.y1e_c01142{bottom:88.874667pt;}
.y1d_c01142{bottom:104.814667pt;}
.y1c_c01142{bottom:120.754667pt;}
.y1b_c01142{bottom:144.445333pt;}
.y1a_c01142{bottom:168.134667pt;}
.y19_c01142{bottom:191.824000pt;}
.y18_c01142{bottom:215.514667pt;}
.y17_c01142{bottom:252.869333pt;}
.y16_c01142{bottom:665.692000pt;}
.y15_c01142{bottom:680.304000pt;}
.y14_c01142{bottom:694.916000pt;}
.y13_c01142{bottom:709.528000pt;}
.y12_c01142{bottom:724.140000pt;}
.y11_c01142{bottom:738.752000pt;}
.y10_c01142{bottom:753.364000pt;}
.yf_c01142{bottom:767.976000pt;}
.ye_c01142{bottom:782.588000pt;}
.yd_c01142{bottom:797.198667pt;}
.yc_c01142{bottom:811.810667pt;}
.yb_c01142{bottom:841.034667pt;}
.ya_c01142{bottom:855.646667pt;}
.y9_c01142{bottom:870.258667pt;}
.y8_c01142{bottom:899.482667pt;}
.y7_c01142{bottom:914.094667pt;}
.y6_c01142{bottom:928.706667pt;}
.y5_c01142{bottom:943.317333pt;}
.y4_c01142{bottom:957.929333pt;}
.y3_c01142{bottom:972.541333pt;}
.y2_c01142{bottom:987.153333pt;}
.y1_c01142{bottom:1030.989333pt;}
.h3_c01142{height:31.280681pt;}
.h2_c01142{height:32.006363pt;}
.h5_c01142{height:36.010648pt;}
.h6_c01142{height:46.518078pt;}
.h4_c01142{height:51.855535pt;}
.h0_c01142{height:1122.520000pt;}
.h1_c01142{height:1122.666667pt;}
.w0_c01142{width:793.706667pt;}
.w1_c01142{width:794.000000pt;}
.x0_c01142{left:0.000000pt;}
.x4_c01142{left:113.385333pt;}
.x2_c01142{left:121.886667pt;}
.x1_c01142{left:127.796000pt;}
.x3_c01142{left:157.340000pt;}
.x5_c01142{left:386.888000pt;}
}





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

.ir_c01143:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_9d1d2ba0b34412b4186ac7fb.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01143;src:url('chunks/assets/font_c0595f56c09ff25886f80749.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01143;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01143;src:url('chunks/assets/font_4afbb69be8c349f54afbf079.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01143{vertical-align:0.000000px;}
.ls4_c01143{letter-spacing:0.000000px;}
.ls1_c01143{letter-spacing:0.087998px;}
.ls2_c01143{letter-spacing:0.098482px;}
.ls0_c01143{letter-spacing:0.104482px;}
.ls3_c01143{letter-spacing:26.690482px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01143{word-spacing:-33.713438px;}
.ws4_c01143{word-spacing:-26.575517px;}
.ws3_c01143{word-spacing:-26.487518px;}
.ws0_c01143{word-spacing:-18.769538px;}
.ws8_c01143{word-spacing:0.000000px;}
.ws5_c01143{word-spacing:0.043999px;}
.wsb_c01143{word-spacing:0.056767px;}
.ws9_c01143{word-spacing:0.073250px;}
.wsa_c01143{word-spacing:0.083734px;}
.ws2_c01143{word-spacing:0.175997px;}
.wsc_c01143{word-spacing:0.202963px;}
.ws6_c01143{word-spacing:0.213446px;}
.ws7_c01143{word-spacing:0.219446px;}
._0_c01143{margin-left:-3.825638px;}
._1_c01143{width:1.005737px;}
._3_c01143{width:53.283031px;}
._2_c01143{width:79.858548px;}
._4_c01143{width:133.452408px;}
.fc5_c01143{color:rgb(0,0,207);}
.fc4_c01143{color:rgb(79,153,5);}
.fc3_c01143{color:rgb(207,92,0);}
.fc2_c01143{color:rgb(33,74,135);}
.fc1_c01143{color:rgb(143,89,3);}
.fc0_c01143{color:rgb(0,0,0);}
.fs1_c01143{font-size:43.999200px;}
.fs0_c01143{font-size:59.775600px;}
.y0_c01143{bottom:0.000000px;}
.y2d_c01143{bottom:44.250000px;}
.y2c_c01143{bottom:96.919500px;}
.y2b_c01143{bottom:113.358000px;}
.y2a_c01143{bottom:129.796500px;}
.y29_c01143{bottom:146.235000px;}
.y28_c01143{bottom:162.673500px;}
.y27_c01143{bottom:179.112000px;}
.y26_c01143{bottom:195.550500px;}
.y25_c01143{bottom:211.989000px;}
.y24_c01143{bottom:228.427500px;}
.y23_c01143{bottom:244.866000px;}
.y22_c01143{bottom:261.304500px;}
.y21_c01143{bottom:294.180000px;}
.y20_c01143{bottom:310.618500px;}
.y1f_c01143{bottom:327.057000px;}
.y1e_c01143{bottom:359.934000px;}
.y1d_c01143{bottom:376.372500px;}
.y1c_c01143{bottom:392.811000px;}
.y1b_c01143{bottom:409.249500px;}
.y1a_c01143{bottom:425.688000px;}
.y19_c01143{bottom:442.125000px;}
.y18_c01143{bottom:458.563500px;}
.y17_c01143{bottom:507.879000px;}
.y16_c01143{bottom:524.317500px;}
.y15_c01143{bottom:540.756000px;}
.y14_c01143{bottom:557.194500px;}
.y13_c01143{bottom:573.633000px;}
.y12_c01143{bottom:590.071500px;}
.y11_c01143{bottom:606.508500px;}
.y10_c01143{bottom:622.947000px;}
.yf_c01143{bottom:639.385500px;}
.ye_c01143{bottom:655.824000px;}
.yd_c01143{bottom:672.262500px;}
.yc_c01143{bottom:688.701000px;}
.yb_c01143{bottom:705.139500px;}
.ya_c01143{bottom:721.578000px;}
.y9_c01143{bottom:738.016500px;}
.y8_c01143{bottom:754.455000px;}
.y7_c01143{bottom:787.330500px;}
.y6_c01143{bottom:803.769000px;}
.y5_c01143{bottom:853.084500px;}
.y4_c01143{bottom:869.523000px;}
.y3_c01143{bottom:885.588000px;}
.y2_c01143{bottom:1141.930500px;}
.y1_c01143{bottom:1159.863000px;}
.h3_c01143{height:35.190766px;}
.h4_c01143{height:36.007158px;}
.h2_c01143{height:52.332837px;}
.h0_c01143{height:1262.835000px;}
.h1_c01143{height:1263.000000px;}
.w0_c01143{width:892.920000px;}
.w1_c01143{width:893.250000px;}
.x0_c01143{left:0.000000px;}
.x1_c01143{left:127.558500px;}
.x2_c01143{left:137.122500px;}
.x3_c01143{left:143.770500px;}
.x4_c01143{left:177.007500px;}
.x5_c01143{left:435.249000px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls4_c01143{letter-spacing:0.000000pt;}
.ls1_c01143{letter-spacing:0.078221pt;}
.ls2_c01143{letter-spacing:0.087539pt;}
.ls0_c01143{letter-spacing:0.092873pt;}
.ls3_c01143{letter-spacing:23.724873pt;}
.ws1_c01143{word-spacing:-29.967501pt;}
.ws4_c01143{word-spacing:-23.622682pt;}
.ws3_c01143{word-spacing:-23.544461pt;}
.ws0_c01143{word-spacing:-16.684034pt;}
.ws8_c01143{word-spacing:0.000000pt;}
.ws5_c01143{word-spacing:0.039110pt;}
.wsb_c01143{word-spacing:0.050460pt;}
.ws9_c01143{word-spacing:0.065111pt;}
.wsa_c01143{word-spacing:0.074430pt;}
.ws2_c01143{word-spacing:0.156442pt;}
.wsc_c01143{word-spacing:0.180412pt;}
.ws6_c01143{word-spacing:0.189730pt;}
.ws7_c01143{word-spacing:0.195063pt;}
._0_c01143{margin-left:-3.400567pt;}
._1_c01143{width:0.893988pt;}
._3_c01143{width:47.362694pt;}
._2_c01143{width:70.985376pt;}
._4_c01143{width:118.624363pt;}
.fs1_c01143{font-size:39.110400pt;}
.fs0_c01143{font-size:53.133867pt;}
.y0_c01143{bottom:0.000000pt;}
.y2d_c01143{bottom:39.333333pt;}
.y2c_c01143{bottom:86.150667pt;}
.y2b_c01143{bottom:100.762667pt;}
.y2a_c01143{bottom:115.374667pt;}
.y29_c01143{bottom:129.986667pt;}
.y28_c01143{bottom:144.598667pt;}
.y27_c01143{bottom:159.210667pt;}
.y26_c01143{bottom:173.822667pt;}
.y25_c01143{bottom:188.434667pt;}
.y24_c01143{bottom:203.046667pt;}
.y23_c01143{bottom:217.658667pt;}
.y22_c01143{bottom:232.270667pt;}
.y21_c01143{bottom:261.493333pt;}
.y20_c01143{bottom:276.105333pt;}
.y1f_c01143{bottom:290.717333pt;}
.y1e_c01143{bottom:319.941333pt;}
.y1d_c01143{bottom:334.553333pt;}
.y1c_c01143{bottom:349.165333pt;}
.y1b_c01143{bottom:363.777333pt;}
.y1a_c01143{bottom:378.389333pt;}
.y19_c01143{bottom:393.000000pt;}
.y18_c01143{bottom:407.612000pt;}
.y17_c01143{bottom:451.448000pt;}
.y16_c01143{bottom:466.060000pt;}
.y15_c01143{bottom:480.672000pt;}
.y14_c01143{bottom:495.284000pt;}
.y13_c01143{bottom:509.896000pt;}
.y12_c01143{bottom:524.508000pt;}
.y11_c01143{bottom:539.118667pt;}
.y10_c01143{bottom:553.730667pt;}
.yf_c01143{bottom:568.342667pt;}
.ye_c01143{bottom:582.954667pt;}
.yd_c01143{bottom:597.566667pt;}
.yc_c01143{bottom:612.178667pt;}
.yb_c01143{bottom:626.790667pt;}
.ya_c01143{bottom:641.402667pt;}
.y9_c01143{bottom:656.014667pt;}
.y8_c01143{bottom:670.626667pt;}
.y7_c01143{bottom:699.849333pt;}
.y6_c01143{bottom:714.461333pt;}
.y5_c01143{bottom:758.297333pt;}
.y4_c01143{bottom:772.909333pt;}
.y3_c01143{bottom:787.189333pt;}
.y2_c01143{bottom:1015.049333pt;}
.y1_c01143{bottom:1030.989333pt;}
.h3_c01143{height:31.280681pt;}
.h4_c01143{height:32.006363pt;}
.h2_c01143{height:46.518078pt;}
.h0_c01143{height:1122.520000pt;}
.h1_c01143{height:1122.666667pt;}
.w0_c01143{width:793.706667pt;}
.w1_c01143{width:794.000000pt;}
.x0_c01143{left:0.000000pt;}
.x1_c01143{left:113.385333pt;}
.x2_c01143{left:121.886667pt;}
.x3_c01143{left:127.796000pt;}
.x4_c01143{left:157.340000pt;}
.x5_c01143{left:386.888000pt;}
}





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

.ir_c01144:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_667a0ce1670b177e8ab76183.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01144;src:url('chunks/assets/font_258b2125f0a62e938fcbc942.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01144;src:url('chunks/assets/font_7d3266b1e067b111546be98f.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01144;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01144;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01144{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01144{vertical-align:0.000000px;}
.ls3_c01144{letter-spacing:0.000000px;}
.ls0_c01144{letter-spacing:0.087998px;}
.ls2_c01144{letter-spacing:0.098482px;}
.ls1_c01144{letter-spacing:0.104482px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01144{word-spacing:-33.713438px;}
.ws2_c01144{word-spacing:-26.575517px;}
.wse_c01144{word-spacing:-26.487518px;}
.ws9_c01144{word-spacing:-21.553319px;}
.ws8_c01144{word-spacing:-21.519216px;}
.ws5_c01144{word-spacing:-18.769538px;}
.ws7_c01144{word-spacing:-17.633802px;}
.ws4_c01144{word-spacing:-14.943900px;}
.wsa_c01144{word-spacing:-14.107042px;}
.wsb_c01144{word-spacing:-12.074671px;}
.ws1_c01144{word-spacing:-9.988424px;}
.ws3_c01144{word-spacing:-9.987499px;}
.ws6_c01144{word-spacing:-7.686144px;}
.ws12_c01144{word-spacing:0.000000px;}
.wsf_c01144{word-spacing:0.043999px;}
.ws15_c01144{word-spacing:0.056767px;}
.ws13_c01144{word-spacing:0.073250px;}
.ws14_c01144{word-spacing:0.083734px;}
.wsd_c01144{word-spacing:0.175997px;}
.ws16_c01144{word-spacing:0.202963px;}
.ws10_c01144{word-spacing:0.213446px;}
.ws11_c01144{word-spacing:0.219446px;}
.ws0_c01144{word-spacing:43.038600px;}
._3_c01144{margin-left:-3.825638px;}
._0_c01144{margin-left:-1.549390px;}
._4_c01144{width:1.005737px;}
._1_c01144{width:19.935816px;}
._2_c01144{width:40.109428px;}
._6_c01144{width:53.283031px;}
._5_c01144{width:79.858548px;}
._7_c01144{width:133.452408px;}
.fc6_c01144{color:rgb(0,0,207);}
.fc5_c01144{color:rgb(79,153,5);}
.fc3_c01144{color:rgb(33,74,135);}
.fc2_c01144{color:rgb(143,89,3);}
.fc4_c01144{color:rgb(207,92,0);}
.fc1_c01144{color:rgb(6,69,173);}
.fc0_c01144{color:rgb(0,0,0);}
.fs2_c01144{font-size:43.999200px;}
.fs1_c01144{font-size:59.775600px;}
.fs0_c01144{font-size:86.077200px;}
.y0_c01144{bottom:0.000000px;}
.y20_c01144{bottom:44.250000px;}
.y1f_c01144{bottom:86.982000px;}
.y1e_c01144{bottom:103.420500px;}
.y1d_c01144{bottom:119.859000px;}
.y1c_c01144{bottom:136.297500px;}
.y1b_c01144{bottom:152.736000px;}
.y1a_c01144{bottom:169.174500px;}
.y19_c01144{bottom:185.613000px;}
.y18_c01144{bottom:202.051500px;}
.y17_c01144{bottom:218.490000px;}
.y16_c01144{bottom:234.927000px;}
.y15_c01144{bottom:251.365500px;}
.y14_c01144{bottom:267.804000px;}
.y13_c01144{bottom:284.242500px;}
.y12_c01144{bottom:300.681000px;}
.y11_c01144{bottom:317.119500px;}
.y10_c01144{bottom:349.996500px;}
.yf_c01144{bottom:366.435000px;}
.ye_c01144{bottom:415.749000px;}
.yd_c01144{bottom:432.187500px;}
.yc_c01144{bottom:448.252500px;}
.yb_c01144{bottom:493.890000px;}
.ya_c01144{bottom:511.822500px;}
.y9_c01144{bottom:529.756500px;}
.y8_c01144{bottom:547.689000px;}
.y7_c01144{bottom:565.621500px;}
.y6_c01144{bottom:583.554000px;}
.y5_c01144{bottom:610.633500px;}
.y4_c01144{bottom:637.714500px;}
.y3_c01144{bottom:664.794000px;}
.y2_c01144{bottom:691.873500px;}
.y1_c01144{bottom:734.407500px;}
.h5_c01144{height:35.190766px;}
.h6_c01144{height:36.007158px;}
.h3_c01144{height:40.511979px;}
.h4_c01144{height:52.332837px;}
.h2_c01144{height:58.337477px;}
.h0_c01144{height:1262.835000px;}
.h1_c01144{height:1263.000000px;}
.w0_c01144{width:892.920000px;}
.w1_c01144{width:893.250000px;}
.x0_c01144{left:0.000000px;}
.x1_c01144{left:127.558500px;}
.x2_c01144{left:137.122500px;}
.x3_c01144{left:143.770500px;}
.x4_c01144{left:435.249000px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls3_c01144{letter-spacing:0.000000pt;}
.ls0_c01144{letter-spacing:0.078221pt;}
.ls2_c01144{letter-spacing:0.087539pt;}
.ls1_c01144{letter-spacing:0.092873pt;}
.wsc_c01144{word-spacing:-29.967501pt;}
.ws2_c01144{word-spacing:-23.622682pt;}
.wse_c01144{word-spacing:-23.544461pt;}
.ws9_c01144{word-spacing:-19.158506pt;}
.ws8_c01144{word-spacing:-19.128192pt;}
.ws5_c01144{word-spacing:-16.684034pt;}
.ws7_c01144{word-spacing:-15.674491pt;}
.ws4_c01144{word-spacing:-13.283467pt;}
.wsa_c01144{word-spacing:-12.539593pt;}
.wsb_c01144{word-spacing:-10.733041pt;}
.ws1_c01144{word-spacing:-8.878599pt;}
.ws3_c01144{word-spacing:-8.877777pt;}
.ws6_c01144{word-spacing:-6.832128pt;}
.ws12_c01144{word-spacing:0.000000pt;}
.wsf_c01144{word-spacing:0.039110pt;}
.ws15_c01144{word-spacing:0.050460pt;}
.ws13_c01144{word-spacing:0.065111pt;}
.ws14_c01144{word-spacing:0.074430pt;}
.wsd_c01144{word-spacing:0.156442pt;}
.ws16_c01144{word-spacing:0.180412pt;}
.ws10_c01144{word-spacing:0.189730pt;}
.ws11_c01144{word-spacing:0.195063pt;}
.ws0_c01144{word-spacing:38.256533pt;}
._3_c01144{margin-left:-3.400567pt;}
._0_c01144{margin-left:-1.377235pt;}
._4_c01144{width:0.893988pt;}
._1_c01144{width:17.720725pt;}
._2_c01144{width:35.652825pt;}
._6_c01144{width:47.362694pt;}
._5_c01144{width:70.985376pt;}
._7_c01144{width:118.624363pt;}
.fs2_c01144{font-size:39.110400pt;}
.fs1_c01144{font-size:53.133867pt;}
.fs0_c01144{font-size:76.513067pt;}
.y0_c01144{bottom:0.000000pt;}
.y20_c01144{bottom:39.333333pt;}
.y1f_c01144{bottom:77.317333pt;}
.y1e_c01144{bottom:91.929333pt;}
.y1d_c01144{bottom:106.541333pt;}
.y1c_c01144{bottom:121.153333pt;}
.y1b_c01144{bottom:135.765333pt;}
.y1a_c01144{bottom:150.377333pt;}
.y19_c01144{bottom:164.989333pt;}
.y18_c01144{bottom:179.601333pt;}
.y17_c01144{bottom:194.213333pt;}
.y16_c01144{bottom:208.824000pt;}
.y15_c01144{bottom:223.436000pt;}
.y14_c01144{bottom:238.048000pt;}
.y13_c01144{bottom:252.660000pt;}
.y12_c01144{bottom:267.272000pt;}
.y11_c01144{bottom:281.884000pt;}
.y10_c01144{bottom:311.108000pt;}
.yf_c01144{bottom:325.720000pt;}
.ye_c01144{bottom:369.554667pt;}
.yd_c01144{bottom:384.166667pt;}
.yc_c01144{bottom:398.446667pt;}
.yb_c01144{bottom:439.013333pt;}
.ya_c01144{bottom:454.953333pt;}
.y9_c01144{bottom:470.894667pt;}
.y8_c01144{bottom:486.834667pt;}
.y7_c01144{bottom:502.774667pt;}
.y6_c01144{bottom:518.714667pt;}
.y5_c01144{bottom:542.785333pt;}
.y4_c01144{bottom:566.857333pt;}
.y3_c01144{bottom:590.928000pt;}
.y2_c01144{bottom:614.998667pt;}
.y1_c01144{bottom:652.806667pt;}
.h5_c01144{height:31.280681pt;}
.h6_c01144{height:32.006363pt;}
.h3_c01144{height:36.010648pt;}
.h4_c01144{height:46.518078pt;}
.h2_c01144{height:51.855535pt;}
.h0_c01144{height:1122.520000pt;}
.h1_c01144{height:1122.666667pt;}
.w0_c01144{width:793.706667pt;}
.w1_c01144{width:794.000000pt;}
.x0_c01144{left:0.000000pt;}
.x1_c01144{left:113.385333pt;}
.x2_c01144{left:121.886667pt;}
.x3_c01144{left:127.796000pt;}
.x4_c01144{left:386.888000pt;}
}





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

.ir_c01145:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_4cc0c40157109cc9e5eb8eb9.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01145;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01145;src:url('chunks/assets/font_dd2d3b8690f8bcb77b2e989b.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01145;src:url('chunks/assets/font_ead3b2c367373e5aafa107c3.woff2')format("woff");}.ff4_c01145{font-family:ff4_c01145;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01145;src:url('chunks/assets/font_b5a5e449abebbceeef356f9d.woff2')format("woff");}.ff5_c01145{font-family:ff5_c01145;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01145{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01145{vertical-align:0.000000px;}
.ls4_c01145{letter-spacing:0.000000px;}
.ls0_c01145{letter-spacing:0.087998px;}
.ls2_c01145{letter-spacing:0.098482px;}
.ls3_c01145{letter-spacing:0.104482px;}
.ls1_c01145{letter-spacing:26.690482px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01145{word-spacing:-26.575517px;}
.ws4_c01145{word-spacing:-26.487518px;}
.wse_c01145{word-spacing:-21.553319px;}
.wsd_c01145{word-spacing:-21.519216px;}
.wsc_c01145{word-spacing:-19.247743px;}
.wsa_c01145{word-spacing:-18.769538px;}
.ws9_c01145{word-spacing:-14.943900px;}
.wsf_c01145{word-spacing:-14.107042px;}
.ws10_c01145{word-spacing:-12.074671px;}
.wsb_c01145{word-spacing:-10.230144px;}
.ws7_c01145{word-spacing:-9.988424px;}
.ws8_c01145{word-spacing:-9.987499px;}
.ws3_c01145{word-spacing:0.000000px;}
.ws0_c01145{word-spacing:0.043999px;}
.ws5_c01145{word-spacing:0.213446px;}
.ws1_c01145{word-spacing:0.219446px;}
.ws6_c01145{word-spacing:43.038600px;}
._1_c01145{margin-left:-1.549390px;}
._0_c01145{width:1.101139px;}
._2_c01145{width:19.935816px;}
._3_c01145{width:40.109428px;}
.fc5_c01145{color:rgb(79,153,5);}
.fc4_c01145{color:rgb(143,89,3);}
.fc3_c01145{color:rgb(0,0,0);}
.fc6_c01145{color:rgb(6,69,173);}
.fc2_c01145{color:rgb(207,92,0);}
.fc1_c01145{color:rgb(0,0,207);}
.fc0_c01145{color:rgb(33,74,135);}
.fs0_c01145{font-size:43.999200px;}
.fs2_c01145{font-size:59.775600px;}
.fs1_c01145{font-size:86.077200px;}
.y0_c01145{bottom:0.000000px;}
.y20_c01145{bottom:44.250000px;}
.y1f_c01145{bottom:82.051500px;}
.y1e_c01145{bottom:99.984000px;}
.y1d_c01145{bottom:117.916500px;}
.y1c_c01145{bottom:135.849000px;}
.y1b_c01145{bottom:162.501000px;}
.y1a_c01145{bottom:189.151500px;}
.y19_c01145{bottom:215.802000px;}
.y18_c01145{bottom:242.454000px;}
.y17_c01145{bottom:284.478000px;}
.y16_c01145{bottom:748.903500px;}
.y15_c01145{bottom:765.342000px;}
.y14_c01145{bottom:781.780500px;}
.y13_c01145{bottom:798.219000px;}
.y12_c01145{bottom:814.657500px;}
.y11_c01145{bottom:831.096000px;}
.y10_c01145{bottom:847.534500px;}
.yf_c01145{bottom:863.973000px;}
.ye_c01145{bottom:880.411500px;}
.yd_c01145{bottom:896.848500px;}
.yc_c01145{bottom:913.287000px;}
.yb_c01145{bottom:946.164000px;}
.ya_c01145{bottom:962.602500px;}
.y9_c01145{bottom:979.041000px;}
.y8_c01145{bottom:1011.918000px;}
.y7_c01145{bottom:1028.356500px;}
.y6_c01145{bottom:1044.795000px;}
.y5_c01145{bottom:1061.232000px;}
.y4_c01145{bottom:1077.670500px;}
.y3_c01145{bottom:1094.109000px;}
.y2_c01145{bottom:1110.547500px;}
.y1_c01145{bottom:1159.863000px;}
.h3_c01145{height:35.190766px;}
.h2_c01145{height:36.007158px;}
.h5_c01145{height:40.511979px;}
.h6_c01145{height:52.332837px;}
.h4_c01145{height:58.337477px;}
.h0_c01145{height:1262.835000px;}
.h1_c01145{height:1263.000000px;}
.w0_c01145{width:892.920000px;}
.w1_c01145{width:893.250000px;}
.x0_c01145{left:0.000000px;}
.x4_c01145{left:127.558500px;}
.x2_c01145{left:137.122500px;}
.x1_c01145{left:143.770500px;}
.x3_c01145{left:177.007500px;}
.x5_c01145{left:435.249000px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls4_c01145{letter-spacing:0.000000pt;}
.ls0_c01145{letter-spacing:0.078221pt;}
.ls2_c01145{letter-spacing:0.087539pt;}
.ls3_c01145{letter-spacing:0.092873pt;}
.ls1_c01145{letter-spacing:23.724873pt;}
.ws2_c01145{word-spacing:-23.622682pt;}
.ws4_c01145{word-spacing:-23.544461pt;}
.wse_c01145{word-spacing:-19.158506pt;}
.wsd_c01145{word-spacing:-19.128192pt;}
.wsc_c01145{word-spacing:-17.109105pt;}
.wsa_c01145{word-spacing:-16.684034pt;}
.ws9_c01145{word-spacing:-13.283467pt;}
.wsf_c01145{word-spacing:-12.539593pt;}
.ws10_c01145{word-spacing:-10.733041pt;}
.wsb_c01145{word-spacing:-9.093461pt;}
.ws7_c01145{word-spacing:-8.878599pt;}
.ws8_c01145{word-spacing:-8.877777pt;}
.ws3_c01145{word-spacing:0.000000pt;}
.ws0_c01145{word-spacing:0.039110pt;}
.ws5_c01145{word-spacing:0.189730pt;}
.ws1_c01145{word-spacing:0.195063pt;}
.ws6_c01145{word-spacing:38.256533pt;}
._1_c01145{margin-left:-1.377235pt;}
._0_c01145{width:0.978790pt;}
._2_c01145{width:17.720725pt;}
._3_c01145{width:35.652825pt;}
.fs0_c01145{font-size:39.110400pt;}
.fs2_c01145{font-size:53.133867pt;}
.fs1_c01145{font-size:76.513067pt;}
.y0_c01145{bottom:0.000000pt;}
.y20_c01145{bottom:39.333333pt;}
.y1f_c01145{bottom:72.934667pt;}
.y1e_c01145{bottom:88.874667pt;}
.y1d_c01145{bottom:104.814667pt;}
.y1c_c01145{bottom:120.754667pt;}
.y1b_c01145{bottom:144.445333pt;}
.y1a_c01145{bottom:168.134667pt;}
.y19_c01145{bottom:191.824000pt;}
.y18_c01145{bottom:215.514667pt;}
.y17_c01145{bottom:252.869333pt;}
.y16_c01145{bottom:665.692000pt;}
.y15_c01145{bottom:680.304000pt;}
.y14_c01145{bottom:694.916000pt;}
.y13_c01145{bottom:709.528000pt;}
.y12_c01145{bottom:724.140000pt;}
.y11_c01145{bottom:738.752000pt;}
.y10_c01145{bottom:753.364000pt;}
.yf_c01145{bottom:767.976000pt;}
.ye_c01145{bottom:782.588000pt;}
.yd_c01145{bottom:797.198667pt;}
.yc_c01145{bottom:811.810667pt;}
.yb_c01145{bottom:841.034667pt;}
.ya_c01145{bottom:855.646667pt;}
.y9_c01145{bottom:870.258667pt;}
.y8_c01145{bottom:899.482667pt;}
.y7_c01145{bottom:914.094667pt;}
.y6_c01145{bottom:928.706667pt;}
.y5_c01145{bottom:943.317333pt;}
.y4_c01145{bottom:957.929333pt;}
.y3_c01145{bottom:972.541333pt;}
.y2_c01145{bottom:987.153333pt;}
.y1_c01145{bottom:1030.989333pt;}
.h3_c01145{height:31.280681pt;}
.h2_c01145{height:32.006363pt;}
.h5_c01145{height:36.010648pt;}
.h6_c01145{height:46.518078pt;}
.h4_c01145{height:51.855535pt;}
.h0_c01145{height:1122.520000pt;}
.h1_c01145{height:1122.666667pt;}
.w0_c01145{width:793.706667pt;}
.w1_c01145{width:794.000000pt;}
.x0_c01145{left:0.000000pt;}
.x4_c01145{left:113.385333pt;}
.x2_c01145{left:121.886667pt;}
.x1_c01145{left:127.796000pt;}
.x3_c01145{left:157.340000pt;}
.x5_c01145{left:386.888000pt;}
}





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

.ir_c01146:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_60b5fdbd28d93090fa69bc09.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01146;src:url('chunks/assets/font_1afdcbfbb2960f3a28d81568.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01146;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01146;src:url('chunks/assets/font_100a610e585e893163a1d4a7.woff2')format("woff");}.ff4_c01146{font-family:ff4_c01146;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.ls4_c01146{letter-spacing:0.000000px;}
.ls1_c01146{letter-spacing:0.087998px;}
.ls2_c01146{letter-spacing:0.098482px;}
.ls0_c01146{letter-spacing:0.104482px;}
.ls3_c01146{letter-spacing:26.690482px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01146{word-spacing:-33.713438px;}
.ws4_c01146{word-spacing:-26.575517px;}
.ws3_c01146{word-spacing:-26.487518px;}
.ws0_c01146{word-spacing:-18.769538px;}
.ws8_c01146{word-spacing:0.000000px;}
.ws5_c01146{word-spacing:0.043999px;}
.wsb_c01146{word-spacing:0.056767px;}
.ws9_c01146{word-spacing:0.073250px;}
.wsa_c01146{word-spacing:0.083734px;}
.ws2_c01146{word-spacing:0.175997px;}
.wsc_c01146{word-spacing:0.202963px;}
.ws6_c01146{word-spacing:0.213446px;}
.ws7_c01146{word-spacing:0.219446px;}
._0_c01146{margin-left:-3.825638px;}
._1_c01146{width:1.005737px;}
._3_c01146{width:53.283031px;}
._2_c01146{width:79.858548px;}
._5_c01146{width:106.830058px;}
._4_c01146{width:133.452408px;}
.fc5_c01146{color:rgb(0,0,207);}
.fc4_c01146{color:rgb(79,153,5);}
.fc3_c01146{color:rgb(207,92,0);}
.fc2_c01146{color:rgb(33,74,135);}
.fc1_c01146{color:rgb(143,89,3);}
.fc0_c01146{color:rgb(0,0,0);}
.fs1_c01146{font-size:43.999200px;}
.fs0_c01146{font-size:59.775600px;}
.y0_c01146{bottom:0.000000px;}
.y2d_c01146{bottom:44.250000px;}
.y2c_c01146{bottom:96.919500px;}
.y2b_c01146{bottom:113.358000px;}
.y2a_c01146{bottom:129.796500px;}
.y29_c01146{bottom:146.235000px;}
.y28_c01146{bottom:162.673500px;}
.y27_c01146{bottom:179.112000px;}
.y26_c01146{bottom:195.550500px;}
.y25_c01146{bottom:211.989000px;}
.y24_c01146{bottom:228.427500px;}
.y23_c01146{bottom:244.866000px;}
.y22_c01146{bottom:261.304500px;}
.y21_c01146{bottom:294.180000px;}
.y20_c01146{bottom:310.618500px;}
.y1f_c01146{bottom:327.057000px;}
.y1e_c01146{bottom:359.934000px;}
.y1d_c01146{bottom:376.372500px;}
.y1c_c01146{bottom:392.811000px;}
.y1b_c01146{bottom:409.249500px;}
.y1a_c01146{bottom:425.688000px;}
.y19_c01146{bottom:442.125000px;}
.y18_c01146{bottom:458.563500px;}
.y17_c01146{bottom:507.879000px;}
.y16_c01146{bottom:524.317500px;}
.y15_c01146{bottom:540.756000px;}
.y14_c01146{bottom:557.194500px;}
.y13_c01146{bottom:573.633000px;}
.y12_c01146{bottom:590.071500px;}
.y11_c01146{bottom:606.508500px;}
.y10_c01146{bottom:622.947000px;}
.yf_c01146{bottom:639.385500px;}
.ye_c01146{bottom:655.824000px;}
.yd_c01146{bottom:672.262500px;}
.yc_c01146{bottom:688.701000px;}
.yb_c01146{bottom:705.139500px;}
.ya_c01146{bottom:721.578000px;}
.y9_c01146{bottom:738.016500px;}
.y8_c01146{bottom:754.455000px;}
.y7_c01146{bottom:787.330500px;}
.y6_c01146{bottom:803.769000px;}
.y5_c01146{bottom:853.084500px;}
.y4_c01146{bottom:869.523000px;}
.y3_c01146{bottom:885.588000px;}
.y2_c01146{bottom:1141.930500px;}
.y1_c01146{bottom:1159.863000px;}
.h3_c01146{height:35.190766px;}
.h4_c01146{height:36.007158px;}
.h2_c01146{height:52.332837px;}
.h0_c01146{height:1262.835000px;}
.h1_c01146{height:1263.000000px;}
.w0_c01146{width:892.920000px;}
.w1_c01146{width:893.250000px;}
.x0_c01146{left:0.000000px;}
.x1_c01146{left:127.558500px;}
.x2_c01146{left:137.122500px;}
.x3_c01146{left:143.770500px;}
.x4_c01146{left:177.007500px;}
.x5_c01146{left:435.249000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls4_c01146{letter-spacing:0.000000pt;}
.ls1_c01146{letter-spacing:0.078221pt;}
.ls2_c01146{letter-spacing:0.087539pt;}
.ls0_c01146{letter-spacing:0.092873pt;}
.ls3_c01146{letter-spacing:23.724873pt;}
.ws1_c01146{word-spacing:-29.967501pt;}
.ws4_c01146{word-spacing:-23.622682pt;}
.ws3_c01146{word-spacing:-23.544461pt;}
.ws0_c01146{word-spacing:-16.684034pt;}
.ws8_c01146{word-spacing:0.000000pt;}
.ws5_c01146{word-spacing:0.039110pt;}
.wsb_c01146{word-spacing:0.050460pt;}
.ws9_c01146{word-spacing:0.065111pt;}
.wsa_c01146{word-spacing:0.074430pt;}
.ws2_c01146{word-spacing:0.156442pt;}
.wsc_c01146{word-spacing:0.180412pt;}
.ws6_c01146{word-spacing:0.189730pt;}
.ws7_c01146{word-spacing:0.195063pt;}
._0_c01146{margin-left:-3.400567pt;}
._1_c01146{width:0.893988pt;}
._3_c01146{width:47.362694pt;}
._2_c01146{width:70.985376pt;}
._5_c01146{width:94.960051pt;}
._4_c01146{width:118.624363pt;}
.fs1_c01146{font-size:39.110400pt;}
.fs0_c01146{font-size:53.133867pt;}
.y0_c01146{bottom:0.000000pt;}
.y2d_c01146{bottom:39.333333pt;}
.y2c_c01146{bottom:86.150667pt;}
.y2b_c01146{bottom:100.762667pt;}
.y2a_c01146{bottom:115.374667pt;}
.y29_c01146{bottom:129.986667pt;}
.y28_c01146{bottom:144.598667pt;}
.y27_c01146{bottom:159.210667pt;}
.y26_c01146{bottom:173.822667pt;}
.y25_c01146{bottom:188.434667pt;}
.y24_c01146{bottom:203.046667pt;}
.y23_c01146{bottom:217.658667pt;}
.y22_c01146{bottom:232.270667pt;}
.y21_c01146{bottom:261.493333pt;}
.y20_c01146{bottom:276.105333pt;}
.y1f_c01146{bottom:290.717333pt;}
.y1e_c01146{bottom:319.941333pt;}
.y1d_c01146{bottom:334.553333pt;}
.y1c_c01146{bottom:349.165333pt;}
.y1b_c01146{bottom:363.777333pt;}
.y1a_c01146{bottom:378.389333pt;}
.y19_c01146{bottom:393.000000pt;}
.y18_c01146{bottom:407.612000pt;}
.y17_c01146{bottom:451.448000pt;}
.y16_c01146{bottom:466.060000pt;}
.y15_c01146{bottom:480.672000pt;}
.y14_c01146{bottom:495.284000pt;}
.y13_c01146{bottom:509.896000pt;}
.y12_c01146{bottom:524.508000pt;}
.y11_c01146{bottom:539.118667pt;}
.y10_c01146{bottom:553.730667pt;}
.yf_c01146{bottom:568.342667pt;}
.ye_c01146{bottom:582.954667pt;}
.yd_c01146{bottom:597.566667pt;}
.yc_c01146{bottom:612.178667pt;}
.yb_c01146{bottom:626.790667pt;}
.ya_c01146{bottom:641.402667pt;}
.y9_c01146{bottom:656.014667pt;}
.y8_c01146{bottom:670.626667pt;}
.y7_c01146{bottom:699.849333pt;}
.y6_c01146{bottom:714.461333pt;}
.y5_c01146{bottom:758.297333pt;}
.y4_c01146{bottom:772.909333pt;}
.y3_c01146{bottom:787.189333pt;}
.y2_c01146{bottom:1015.049333pt;}
.y1_c01146{bottom:1030.989333pt;}
.h3_c01146{height:31.280681pt;}
.h4_c01146{height:32.006363pt;}
.h2_c01146{height:46.518078pt;}
.h0_c01146{height:1122.520000pt;}
.h1_c01146{height:1122.666667pt;}
.w0_c01146{width:793.706667pt;}
.w1_c01146{width:794.000000pt;}
.x0_c01146{left:0.000000pt;}
.x1_c01146{left:113.385333pt;}
.x2_c01146{left:121.886667pt;}
.x3_c01146{left:127.796000pt;}
.x4_c01146{left:157.340000pt;}
.x5_c01146{left:386.888000pt;}
}





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

.ir_c01147:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_2598d27d8cb48a939b72b3d5.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01147;src:url('chunks/assets/font_a89108fdc310142a35b868ab.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01147;src:url('chunks/assets/font_ff8943cffca4514ea057844b.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01147;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01147;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01147{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01147{vertical-align:0.000000px;}
.ls3_c01147{letter-spacing:0.000000px;}
.ls0_c01147{letter-spacing:0.087998px;}
.ls2_c01147{letter-spacing:0.098482px;}
.ls1_c01147{letter-spacing:0.104482px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01147{word-spacing:-26.575517px;}
.ws11_c01147{word-spacing:-26.487518px;}
.wsa_c01147{word-spacing:-23.671138px;}
.wse_c01147{word-spacing:-21.519216px;}
.ws5_c01147{word-spacing:-21.041011px;}
.ws6_c01147{word-spacing:-18.769538px;}
.wsd_c01147{word-spacing:-17.813129px;}
.wsb_c01147{word-spacing:-17.334924px;}
.ws4_c01147{word-spacing:-17.215373px;}
.ws7_c01147{word-spacing:-14.943900px;}
.wsf_c01147{word-spacing:-12.074671px;}
.ws9_c01147{word-spacing:-11.357364px;}
.wsc_c01147{word-spacing:-10.077432px;}
.ws1_c01147{word-spacing:-9.988424px;}
.ws3_c01147{word-spacing:-9.987499px;}
.ws15_c01147{word-spacing:0.000000px;}
.ws12_c01147{word-spacing:0.043999px;}
.ws10_c01147{word-spacing:0.175997px;}
.ws14_c01147{word-spacing:0.213446px;}
.ws13_c01147{word-spacing:0.219446px;}
.ws8_c01147{word-spacing:4.877856px;}
.ws0_c01147{word-spacing:43.038600px;}
._4_c01147{margin-left:-7.651277px;}
._3_c01147{margin-left:-4.727048px;}
._6_c01147{margin-left:-3.229542px;}
._0_c01147{margin-left:-1.549390px;}
._8_c01147{width:1.005737px;}
._1_c01147{width:18.829289px;}
._2_c01147{width:19.930500px;}
._5_c01147{width:24.388445px;}
._7_c01147{width:40.468081px;}
.fc5_c01147{color:rgb(79,153,5);}
.fc3_c01147{color:rgb(33,74,135);}
.fc2_c01147{color:rgb(143,89,3);}
.fc4_c01147{color:rgb(207,92,0);}
.fc1_c01147{color:rgb(6,69,173);}
.fc0_c01147{color:rgb(0,0,0);}
.fs2_c01147{font-size:43.999200px;}
.fs1_c01147{font-size:59.775600px;}
.fs0_c01147{font-size:86.077200px;}
.y0_c01147{bottom:0.000000px;}
.y1f_c01147{bottom:44.250000px;}
.y1e_c01147{bottom:82.051500px;}
.y1d_c01147{bottom:98.490000px;}
.y1c_c01147{bottom:147.804000px;}
.y1b_c01147{bottom:164.242500px;}
.y1a_c01147{bottom:197.119500px;}
.y19_c01147{bottom:213.558000px;}
.y18_c01147{bottom:229.996500px;}
.y17_c01147{bottom:246.435000px;}
.y16_c01147{bottom:279.310500px;}
.y15_c01147{bottom:295.749000px;}
.y14_c01147{bottom:312.187500px;}
.y13_c01147{bottom:328.626000px;}
.y12_c01147{bottom:345.064500px;}
.y11_c01147{bottom:361.503000px;}
.y10_c01147{bottom:377.941500px;}
.yf_c01147{bottom:394.380000px;}
.ye_c01147{bottom:410.445000px;}
.yd_c01147{bottom:458.862000px;}
.yc_c01147{bottom:476.794500px;}
.yb_c01147{bottom:494.727000px;}
.ya_c01147{bottom:512.659500px;}
.y9_c01147{bottom:530.593500px;}
.y8_c01147{bottom:548.526000px;}
.y7_c01147{bottom:566.458500px;}
.y6_c01147{bottom:593.442000px;}
.y5_c01147{bottom:620.425500px;}
.y4_c01147{bottom:638.358000px;}
.y3_c01147{bottom:665.341500px;}
.y2_c01147{bottom:692.325000px;}
.y1_c01147{bottom:734.719500px;}
.h5_c01147{height:35.190766px;}
.h6_c01147{height:36.007158px;}
.h3_c01147{height:40.511979px;}
.h4_c01147{height:52.332837px;}
.h2_c01147{height:58.337477px;}
.h0_c01147{height:1262.835000px;}
.h1_c01147{height:1263.000000px;}
.w0_c01147{width:892.920000px;}
.w1_c01147{width:893.250000px;}
.x0_c01147{left:0.000000px;}
.x1_c01147{left:127.558500px;}
.x2_c01147{left:137.122500px;}
.x3_c01147{left:435.249000px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls3_c01147{letter-spacing:0.000000pt;}
.ls0_c01147{letter-spacing:0.078221pt;}
.ls2_c01147{letter-spacing:0.087539pt;}
.ls1_c01147{letter-spacing:0.092873pt;}
.ws2_c01147{word-spacing:-23.622682pt;}
.ws11_c01147{word-spacing:-23.544461pt;}
.wsa_c01147{word-spacing:-21.041011pt;}
.wse_c01147{word-spacing:-19.128192pt;}
.ws5_c01147{word-spacing:-18.703121pt;}
.ws6_c01147{word-spacing:-16.684034pt;}
.wsd_c01147{word-spacing:-15.833892pt;}
.wsb_c01147{word-spacing:-15.408821pt;}
.ws4_c01147{word-spacing:-15.302554pt;}
.ws7_c01147{word-spacing:-13.283467pt;}
.wsf_c01147{word-spacing:-10.733041pt;}
.ws9_c01147{word-spacing:-10.095435pt;}
.wsc_c01147{word-spacing:-8.957717pt;}
.ws1_c01147{word-spacing:-8.878599pt;}
.ws3_c01147{word-spacing:-8.877777pt;}
.ws15_c01147{word-spacing:0.000000pt;}
.ws12_c01147{word-spacing:0.039110pt;}
.ws10_c01147{word-spacing:0.156442pt;}
.ws14_c01147{word-spacing:0.189730pt;}
.ws13_c01147{word-spacing:0.195063pt;}
.ws8_c01147{word-spacing:4.335872pt;}
.ws0_c01147{word-spacing:38.256533pt;}
._4_c01147{margin-left:-6.801135pt;}
._3_c01147{margin-left:-4.201821pt;}
._6_c01147{margin-left:-2.870704pt;}
._0_c01147{margin-left:-1.377235pt;}
._8_c01147{width:0.893988pt;}
._1_c01147{width:16.737146pt;}
._2_c01147{width:17.716000pt;}
._5_c01147{width:21.678618pt;}
._7_c01147{width:35.971628pt;}
.fs2_c01147{font-size:39.110400pt;}
.fs1_c01147{font-size:53.133867pt;}
.fs0_c01147{font-size:76.513067pt;}
.y0_c01147{bottom:0.000000pt;}
.y1f_c01147{bottom:39.333333pt;}
.y1e_c01147{bottom:72.934667pt;}
.y1d_c01147{bottom:87.546667pt;}
.y1c_c01147{bottom:131.381333pt;}
.y1b_c01147{bottom:145.993333pt;}
.y1a_c01147{bottom:175.217333pt;}
.y19_c01147{bottom:189.829333pt;}
.y18_c01147{bottom:204.441333pt;}
.y17_c01147{bottom:219.053333pt;}
.y16_c01147{bottom:248.276000pt;}
.y15_c01147{bottom:262.888000pt;}
.y14_c01147{bottom:277.500000pt;}
.y13_c01147{bottom:292.112000pt;}
.y12_c01147{bottom:306.724000pt;}
.y11_c01147{bottom:321.336000pt;}
.y10_c01147{bottom:335.948000pt;}
.yf_c01147{bottom:350.560000pt;}
.ye_c01147{bottom:364.840000pt;}
.yd_c01147{bottom:407.877333pt;}
.yc_c01147{bottom:423.817333pt;}
.yb_c01147{bottom:439.757333pt;}
.ya_c01147{bottom:455.697333pt;}
.y9_c01147{bottom:471.638667pt;}
.y8_c01147{bottom:487.578667pt;}
.y7_c01147{bottom:503.518667pt;}
.y6_c01147{bottom:527.504000pt;}
.y5_c01147{bottom:551.489333pt;}
.y4_c01147{bottom:567.429333pt;}
.y3_c01147{bottom:591.414667pt;}
.y2_c01147{bottom:615.400000pt;}
.y1_c01147{bottom:653.084000pt;}
.h5_c01147{height:31.280681pt;}
.h6_c01147{height:32.006363pt;}
.h3_c01147{height:36.010648pt;}
.h4_c01147{height:46.518078pt;}
.h2_c01147{height:51.855535pt;}
.h0_c01147{height:1122.520000pt;}
.h1_c01147{height:1122.666667pt;}
.w0_c01147{width:793.706667pt;}
.w1_c01147{width:794.000000pt;}
.x0_c01147{left:0.000000pt;}
.x1_c01147{left:113.385333pt;}
.x2_c01147{left:121.886667pt;}
.x3_c01147{left:386.888000pt;}
}





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

.ir_c01148:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_2ebca29cfc35e3495cd0d1fc.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01148;src:url('chunks/assets/font_709e2639c032ba1751a61264.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01148;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01148;src:url('chunks/assets/font_3286428efd0c085612503ad1.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls3_c01148{letter-spacing:0.000000px;}
.ls0_c01148{letter-spacing:0.087998px;}
.ls2_c01148{letter-spacing:0.098482px;}
.ls1_c01148{letter-spacing:0.104482px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01148{word-spacing:-26.575517px;}
.ws5_c01148{word-spacing:-26.487518px;}
.ws2_c01148{word-spacing:0.000000px;}
.ws6_c01148{word-spacing:0.043999px;}
.ws3_c01148{word-spacing:0.053933px;}
.ws7_c01148{word-spacing:0.056767px;}
.ws4_c01148{word-spacing:0.070416px;}
.ws0_c01148{word-spacing:0.175997px;}
.ws8_c01148{word-spacing:0.213446px;}
._1_c01148{width:1.028438px;}
._0_c01148{width:53.635025px;}
.fc5_c01148{color:rgb(0,0,207);}
.fc4_c01148{color:rgb(207,92,0);}
.fc3_c01148{color:rgb(79,153,5);}
.fc2_c01148{color:rgb(33,74,135);}
.fc1_c01148{color:rgb(0,0,0);}
.fc0_c01148{color:rgb(143,89,3);}
.fs0_c01148{font-size:43.999200px;}
.fs1_c01148{font-size:59.775600px;}
.y0_c01148{bottom:0.000000px;}
.y2d_c01148{bottom:44.250000px;}
.y2c_c01148{bottom:370.822500px;}
.y2b_c01148{bottom:387.259500px;}
.y2a_c01148{bottom:403.698000px;}
.y29_c01148{bottom:420.136500px;}
.y28_c01148{bottom:436.575000px;}
.y27_c01148{bottom:453.013500px;}
.y26_c01148{bottom:469.452000px;}
.y25_c01148{bottom:485.890500px;}
.y24_c01148{bottom:502.329000px;}
.y23_c01148{bottom:518.767500px;}
.y22_c01148{bottom:535.206000px;}
.y21_c01148{bottom:568.081500px;}
.y20_c01148{bottom:584.520000px;}
.y1f_c01148{bottom:600.958500px;}
.y1e_c01148{bottom:633.835500px;}
.y1d_c01148{bottom:650.274000px;}
.y1c_c01148{bottom:666.712500px;}
.y1b_c01148{bottom:683.151000px;}
.y1a_c01148{bottom:699.589500px;}
.y19_c01148{bottom:716.028000px;}
.y18_c01148{bottom:732.465000px;}
.y17_c01148{bottom:748.903500px;}
.y16_c01148{bottom:765.342000px;}
.y15_c01148{bottom:781.780500px;}
.y14_c01148{bottom:798.219000px;}
.y13_c01148{bottom:814.657500px;}
.y12_c01148{bottom:831.096000px;}
.y11_c01148{bottom:847.534500px;}
.y10_c01148{bottom:863.973000px;}
.yf_c01148{bottom:880.411500px;}
.ye_c01148{bottom:896.848500px;}
.yd_c01148{bottom:913.287000px;}
.yc_c01148{bottom:929.725500px;}
.yb_c01148{bottom:946.164000px;}
.ya_c01148{bottom:962.602500px;}
.y9_c01148{bottom:979.041000px;}
.y8_c01148{bottom:995.479500px;}
.y7_c01148{bottom:1011.918000px;}
.y6_c01148{bottom:1028.356500px;}
.y5_c01148{bottom:1044.795000px;}
.y4_c01148{bottom:1061.232000px;}
.y3_c01148{bottom:1110.547500px;}
.y2_c01148{bottom:1126.986000px;}
.y1_c01148{bottom:1143.424500px;}
.h2_c01148{height:35.190766px;}
.h3_c01148{height:36.007158px;}
.h4_c01148{height:52.332837px;}
.h0_c01148{height:1262.835000px;}
.h1_c01148{height:1263.000000px;}
.w0_c01148{width:892.920000px;}
.w1_c01148{width:893.250000px;}
.x0_c01148{left:0.000000px;}
.x1_c01148{left:137.122500px;}
.x2_c01148{left:143.770500px;}
.x6_c01148{left:177.007500px;}
.x5_c01148{left:230.185500px;}
.x3_c01148{left:243.480000px;}
.x4_c01148{left:276.715500px;}
.x7_c01148{left:435.249000px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls3_c01148{letter-spacing:0.000000pt;}
.ls0_c01148{letter-spacing:0.078221pt;}
.ls2_c01148{letter-spacing:0.087539pt;}
.ls1_c01148{letter-spacing:0.092873pt;}
.ws1_c01148{word-spacing:-23.622682pt;}
.ws5_c01148{word-spacing:-23.544461pt;}
.ws2_c01148{word-spacing:0.000000pt;}
.ws6_c01148{word-spacing:0.039110pt;}
.ws3_c01148{word-spacing:0.047940pt;}
.ws7_c01148{word-spacing:0.050460pt;}
.ws4_c01148{word-spacing:0.062592pt;}
.ws0_c01148{word-spacing:0.156442pt;}
.ws8_c01148{word-spacing:0.189730pt;}
._1_c01148{width:0.914167pt;}
._0_c01148{width:47.675578pt;}
.fs0_c01148{font-size:39.110400pt;}
.fs1_c01148{font-size:53.133867pt;}
.y0_c01148{bottom:0.000000pt;}
.y2d_c01148{bottom:39.333333pt;}
.y2c_c01148{bottom:329.620000pt;}
.y2b_c01148{bottom:344.230667pt;}
.y2a_c01148{bottom:358.842667pt;}
.y29_c01148{bottom:373.454667pt;}
.y28_c01148{bottom:388.066667pt;}
.y27_c01148{bottom:402.678667pt;}
.y26_c01148{bottom:417.290667pt;}
.y25_c01148{bottom:431.902667pt;}
.y24_c01148{bottom:446.514667pt;}
.y23_c01148{bottom:461.126667pt;}
.y22_c01148{bottom:475.738667pt;}
.y21_c01148{bottom:504.961333pt;}
.y20_c01148{bottom:519.573333pt;}
.y1f_c01148{bottom:534.185333pt;}
.y1e_c01148{bottom:563.409333pt;}
.y1d_c01148{bottom:578.021333pt;}
.y1c_c01148{bottom:592.633333pt;}
.y1b_c01148{bottom:607.245333pt;}
.y1a_c01148{bottom:621.857333pt;}
.y19_c01148{bottom:636.469333pt;}
.y18_c01148{bottom:651.080000pt;}
.y17_c01148{bottom:665.692000pt;}
.y16_c01148{bottom:680.304000pt;}
.y15_c01148{bottom:694.916000pt;}
.y14_c01148{bottom:709.528000pt;}
.y13_c01148{bottom:724.140000pt;}
.y12_c01148{bottom:738.752000pt;}
.y11_c01148{bottom:753.364000pt;}
.y10_c01148{bottom:767.976000pt;}
.yf_c01148{bottom:782.588000pt;}
.ye_c01148{bottom:797.198667pt;}
.yd_c01148{bottom:811.810667pt;}
.yc_c01148{bottom:826.422667pt;}
.yb_c01148{bottom:841.034667pt;}
.ya_c01148{bottom:855.646667pt;}
.y9_c01148{bottom:870.258667pt;}
.y8_c01148{bottom:884.870667pt;}
.y7_c01148{bottom:899.482667pt;}
.y6_c01148{bottom:914.094667pt;}
.y5_c01148{bottom:928.706667pt;}
.y4_c01148{bottom:943.317333pt;}
.y3_c01148{bottom:987.153333pt;}
.y2_c01148{bottom:1001.765333pt;}
.y1_c01148{bottom:1016.377333pt;}
.h2_c01148{height:31.280681pt;}
.h3_c01148{height:32.006363pt;}
.h4_c01148{height:46.518078pt;}
.h0_c01148{height:1122.520000pt;}
.h1_c01148{height:1122.666667pt;}
.w0_c01148{width:793.706667pt;}
.w1_c01148{width:794.000000pt;}
.x0_c01148{left:0.000000pt;}
.x1_c01148{left:121.886667pt;}
.x2_c01148{left:127.796000pt;}
.x6_c01148{left:157.340000pt;}
.x5_c01148{left:204.609333pt;}
.x3_c01148{left:216.426667pt;}
.x4_c01148{left:245.969333pt;}
.x7_c01148{left:386.888000pt;}
}





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

.ir_c01149:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_77e93ab5c4fcbcd521080799.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01149;src:url('chunks/assets/font_8a957fc0130b21e13caebde9.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01149;src:url('chunks/assets/font_0bb65750a9cc3c59c0427c95.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01149;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01149;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01149{font-family:ff5_c01149;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.ls3_c01149{letter-spacing:0.000000px;}
.ls0_c01149{letter-spacing:0.087998px;}
.ls2_c01149{letter-spacing:0.098482px;}
.ls1_c01149{letter-spacing:0.104482px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01149{word-spacing:-33.713438px;}
.ws2_c01149{word-spacing:-26.575517px;}
.ws10_c01149{word-spacing:-26.487518px;}
.wsb_c01149{word-spacing:-21.553319px;}
.wsa_c01149{word-spacing:-21.519216px;}
.ws7_c01149{word-spacing:-18.769538px;}
.ws9_c01149{word-spacing:-16.019861px;}
.ws6_c01149{word-spacing:-14.943900px;}
.wsc_c01149{word-spacing:-14.107042px;}
.ws5_c01149{word-spacing:-12.313774px;}
.wsd_c01149{word-spacing:-12.074671px;}
.ws1_c01149{word-spacing:-9.988424px;}
.ws3_c01149{word-spacing:-9.987499px;}
.ws4_c01149{word-spacing:-8.488135px;}
.ws8_c01149{word-spacing:-4.536144px;}
.ws14_c01149{word-spacing:0.000000px;}
.ws11_c01149{word-spacing:0.043999px;}
.ws17_c01149{word-spacing:0.056767px;}
.ws15_c01149{word-spacing:0.073250px;}
.ws16_c01149{word-spacing:0.083734px;}
.wsf_c01149{word-spacing:0.175997px;}
.ws18_c01149{word-spacing:0.202963px;}
.ws12_c01149{word-spacing:0.213446px;}
.ws13_c01149{word-spacing:0.219446px;}
.ws0_c01149{word-spacing:43.038600px;}
._4_c01149{margin-left:-3.825638px;}
._0_c01149{margin-left:-1.549390px;}
._5_c01149{width:1.005737px;}
._2_c01149{width:19.930500px;}
._1_c01149{width:32.944051px;}
._3_c01149{width:40.109428px;}
._7_c01149{width:53.283031px;}
._6_c01149{width:79.858548px;}
._8_c01149{width:133.452408px;}
.fc6_c01149{color:rgb(0,0,207);}
.fc5_c01149{color:rgb(79,153,5);}
.fc3_c01149{color:rgb(33,74,135);}
.fc2_c01149{color:rgb(143,89,3);}
.fc4_c01149{color:rgb(207,92,0);}
.fc1_c01149{color:rgb(6,69,173);}
.fc0_c01149{color:rgb(0,0,0);}
.fs2_c01149{font-size:43.999200px;}
.fs1_c01149{font-size:59.775600px;}
.fs0_c01149{font-size:86.077200px;}
.y0_c01149{bottom:0.000000px;}
.y20_c01149{bottom:44.250000px;}
.y1f_c01149{bottom:86.982000px;}
.y1e_c01149{bottom:103.420500px;}
.y1d_c01149{bottom:119.859000px;}
.y1c_c01149{bottom:136.297500px;}
.y1b_c01149{bottom:152.736000px;}
.y1a_c01149{bottom:169.174500px;}
.y19_c01149{bottom:185.613000px;}
.y18_c01149{bottom:202.051500px;}
.y17_c01149{bottom:218.490000px;}
.y16_c01149{bottom:234.927000px;}
.y15_c01149{bottom:251.365500px;}
.y14_c01149{bottom:267.804000px;}
.y13_c01149{bottom:284.242500px;}
.y12_c01149{bottom:300.681000px;}
.y11_c01149{bottom:333.558000px;}
.y10_c01149{bottom:349.996500px;}
.yf_c01149{bottom:399.310500px;}
.ye_c01149{bottom:415.749000px;}
.yd_c01149{bottom:431.814000px;}
.yc_c01149{bottom:477.118500px;}
.yb_c01149{bottom:495.051000px;}
.ya_c01149{bottom:512.983500px;}
.y9_c01149{bottom:530.916000px;}
.y8_c01149{bottom:548.848500px;}
.y7_c01149{bottom:566.781000px;}
.y6_c01149{bottom:593.728500px;}
.y5_c01149{bottom:620.674500px;}
.y4_c01149{bottom:638.607000px;}
.y3_c01149{bottom:665.553000px;}
.y2_c01149{bottom:692.500500px;}
.y1_c01149{bottom:734.839500px;}
.h5_c01149{height:35.190766px;}
.h6_c01149{height:36.007158px;}
.h3_c01149{height:40.511979px;}
.h4_c01149{height:52.332837px;}
.h2_c01149{height:58.337477px;}
.h0_c01149{height:1262.835000px;}
.h1_c01149{height:1263.000000px;}
.w0_c01149{width:892.920000px;}
.w1_c01149{width:893.250000px;}
.x0_c01149{left:0.000000px;}
.x1_c01149{left:127.558500px;}
.x2_c01149{left:137.122500px;}
.x3_c01149{left:143.770500px;}
.x4_c01149{left:435.249000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls3_c01149{letter-spacing:0.000000pt;}
.ls0_c01149{letter-spacing:0.078221pt;}
.ls2_c01149{letter-spacing:0.087539pt;}
.ls1_c01149{letter-spacing:0.092873pt;}
.wse_c01149{word-spacing:-29.967501pt;}
.ws2_c01149{word-spacing:-23.622682pt;}
.ws10_c01149{word-spacing:-23.544461pt;}
.wsb_c01149{word-spacing:-19.158506pt;}
.wsa_c01149{word-spacing:-19.128192pt;}
.ws7_c01149{word-spacing:-16.684034pt;}
.ws9_c01149{word-spacing:-14.239876pt;}
.ws6_c01149{word-spacing:-13.283467pt;}
.wsc_c01149{word-spacing:-12.539593pt;}
.ws5_c01149{word-spacing:-10.945577pt;}
.wsd_c01149{word-spacing:-10.733041pt;}
.ws1_c01149{word-spacing:-8.878599pt;}
.ws3_c01149{word-spacing:-8.877777pt;}
.ws4_c01149{word-spacing:-7.545009pt;}
.ws8_c01149{word-spacing:-4.032128pt;}
.ws14_c01149{word-spacing:0.000000pt;}
.ws11_c01149{word-spacing:0.039110pt;}
.ws17_c01149{word-spacing:0.050460pt;}
.ws15_c01149{word-spacing:0.065111pt;}
.ws16_c01149{word-spacing:0.074430pt;}
.wsf_c01149{word-spacing:0.156442pt;}
.ws18_c01149{word-spacing:0.180412pt;}
.ws12_c01149{word-spacing:0.189730pt;}
.ws13_c01149{word-spacing:0.195063pt;}
.ws0_c01149{word-spacing:38.256533pt;}
._4_c01149{margin-left:-3.400567pt;}
._0_c01149{margin-left:-1.377235pt;}
._5_c01149{width:0.893988pt;}
._2_c01149{width:17.716000pt;}
._1_c01149{width:29.283601pt;}
._3_c01149{width:35.652825pt;}
._7_c01149{width:47.362694pt;}
._6_c01149{width:70.985376pt;}
._8_c01149{width:118.624363pt;}
.fs2_c01149{font-size:39.110400pt;}
.fs1_c01149{font-size:53.133867pt;}
.fs0_c01149{font-size:76.513067pt;}
.y0_c01149{bottom:0.000000pt;}
.y20_c01149{bottom:39.333333pt;}
.y1f_c01149{bottom:77.317333pt;}
.y1e_c01149{bottom:91.929333pt;}
.y1d_c01149{bottom:106.541333pt;}
.y1c_c01149{bottom:121.153333pt;}
.y1b_c01149{bottom:135.765333pt;}
.y1a_c01149{bottom:150.377333pt;}
.y19_c01149{bottom:164.989333pt;}
.y18_c01149{bottom:179.601333pt;}
.y17_c01149{bottom:194.213333pt;}
.y16_c01149{bottom:208.824000pt;}
.y15_c01149{bottom:223.436000pt;}
.y14_c01149{bottom:238.048000pt;}
.y13_c01149{bottom:252.660000pt;}
.y12_c01149{bottom:267.272000pt;}
.y11_c01149{bottom:296.496000pt;}
.y10_c01149{bottom:311.108000pt;}
.yf_c01149{bottom:354.942667pt;}
.ye_c01149{bottom:369.554667pt;}
.yd_c01149{bottom:383.834667pt;}
.yc_c01149{bottom:424.105333pt;}
.yb_c01149{bottom:440.045333pt;}
.ya_c01149{bottom:455.985333pt;}
.y9_c01149{bottom:471.925333pt;}
.y8_c01149{bottom:487.865333pt;}
.y7_c01149{bottom:503.805333pt;}
.y6_c01149{bottom:527.758667pt;}
.y5_c01149{bottom:551.710667pt;}
.y4_c01149{bottom:567.650667pt;}
.y3_c01149{bottom:591.602667pt;}
.y2_c01149{bottom:615.556000pt;}
.y1_c01149{bottom:653.190667pt;}
.h5_c01149{height:31.280681pt;}
.h6_c01149{height:32.006363pt;}
.h3_c01149{height:36.010648pt;}
.h4_c01149{height:46.518078pt;}
.h2_c01149{height:51.855535pt;}
.h0_c01149{height:1122.520000pt;}
.h1_c01149{height:1122.666667pt;}
.w0_c01149{width:793.706667pt;}
.w1_c01149{width:794.000000pt;}
.x0_c01149{left:0.000000pt;}
.x1_c01149{left:113.385333pt;}
.x2_c01149{left:121.886667pt;}
.x3_c01149{left:127.796000pt;}
.x4_c01149{left:386.888000pt;}
}





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

.ir_c01150:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_c7a0ba1897a092f5f3338ff8.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01150;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01150;src:url('chunks/assets/font_67985bb530d3447c96da352f.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01150;src:url('chunks/assets/font_cfc1255ccbfb960a98459e66.woff2')format("woff");}.ff4_c01150{font-family:ff4_c01150;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01150;src:url('chunks/assets/font_f0572d77194610bb39f33b96.woff2')format("woff");}.ff5_c01150{font-family:ff5_c01150;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01150{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls4_c01150{letter-spacing:0.000000px;}
.ls0_c01150{letter-spacing:0.087998px;}
.ls1_c01150{letter-spacing:0.098482px;}
.ls3_c01150{letter-spacing:0.104482px;}
.ls2_c01150{letter-spacing:26.690482px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01150{word-spacing:-26.575517px;}
.ws5_c01150{word-spacing:-26.487518px;}
.ws11_c01150{word-spacing:-21.553319px;}
.ws10_c01150{word-spacing:-21.519216px;}
.wsd_c01150{word-spacing:-18.769538px;}
.wsf_c01150{word-spacing:-17.633802px;}
.wsc_c01150{word-spacing:-14.943900px;}
.wsb_c01150{word-spacing:-14.286368px;}
.wsa_c01150{word-spacing:-10.460730px;}
.ws8_c01150{word-spacing:-9.988424px;}
.ws9_c01150{word-spacing:-9.987499px;}
.wse_c01150{word-spacing:-7.686144px;}
.ws4_c01150{word-spacing:0.000000px;}
.ws1_c01150{word-spacing:0.043999px;}
.ws0_c01150{word-spacing:0.073250px;}
.ws6_c01150{word-spacing:0.213446px;}
.ws2_c01150{word-spacing:0.219446px;}
.ws7_c01150{word-spacing:43.038600px;}
._3_c01150{margin-left:-1.549390px;}
._2_c01150{width:1.090656px;}
._5_c01150{width:19.930500px;}
._4_c01150{width:28.940646px;}
._1_c01150{width:53.635025px;}
._0_c01150{width:79.858548px;}
.fc5_c01150{color:rgb(79,153,5);}
.fc4_c01150{color:rgb(143,89,3);}
.fc6_c01150{color:rgb(6,69,173);}
.fc3_c01150{color:rgb(207,92,0);}
.fc2_c01150{color:rgb(0,0,0);}
.fc1_c01150{color:rgb(0,0,207);}
.fc0_c01150{color:rgb(33,74,135);}
.fs0_c01150{font-size:43.999200px;}
.fs2_c01150{font-size:59.775600px;}
.fs1_c01150{font-size:86.077200px;}
.y0_c01150{bottom:0.000000px;}
.y20_c01150{bottom:44.250000px;}
.y1f_c01150{bottom:82.051500px;}
.y1e_c01150{bottom:99.984000px;}
.y1d_c01150{bottom:126.823500px;}
.y1c_c01150{bottom:153.664500px;}
.y1b_c01150{bottom:171.597000px;}
.y1a_c01150{bottom:198.438000px;}
.y19_c01150{bottom:225.277500px;}
.y18_c01150{bottom:267.492000px;}
.y17_c01150{bottom:732.465000px;}
.y16_c01150{bottom:748.903500px;}
.y15_c01150{bottom:765.342000px;}
.y14_c01150{bottom:781.780500px;}
.y13_c01150{bottom:798.219000px;}
.y12_c01150{bottom:814.657500px;}
.y11_c01150{bottom:831.096000px;}
.y10_c01150{bottom:847.534500px;}
.yf_c01150{bottom:863.973000px;}
.ye_c01150{bottom:880.411500px;}
.yd_c01150{bottom:896.848500px;}
.yc_c01150{bottom:929.725500px;}
.yb_c01150{bottom:946.164000px;}
.ya_c01150{bottom:962.602500px;}
.y9_c01150{bottom:995.479500px;}
.y8_c01150{bottom:1011.918000px;}
.y7_c01150{bottom:1028.356500px;}
.y6_c01150{bottom:1044.795000px;}
.y5_c01150{bottom:1061.232000px;}
.y4_c01150{bottom:1077.670500px;}
.y3_c01150{bottom:1094.109000px;}
.y2_c01150{bottom:1143.424500px;}
.y1_c01150{bottom:1159.863000px;}
.h3_c01150{height:35.190766px;}
.h2_c01150{height:36.007158px;}
.h5_c01150{height:40.511979px;}
.h6_c01150{height:52.332837px;}
.h4_c01150{height:58.337477px;}
.h0_c01150{height:1262.835000px;}
.h1_c01150{height:1263.000000px;}
.w0_c01150{width:892.920000px;}
.w1_c01150{width:893.250000px;}
.x0_c01150{left:0.000000px;}
.x4_c01150{left:127.558500px;}
.x2_c01150{left:137.122500px;}
.x1_c01150{left:143.770500px;}
.x3_c01150{left:177.007500px;}
.x5_c01150{left:435.249000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls4_c01150{letter-spacing:0.000000pt;}
.ls0_c01150{letter-spacing:0.078221pt;}
.ls1_c01150{letter-spacing:0.087539pt;}
.ls3_c01150{letter-spacing:0.092873pt;}
.ls2_c01150{letter-spacing:23.724873pt;}
.ws3_c01150{word-spacing:-23.622682pt;}
.ws5_c01150{word-spacing:-23.544461pt;}
.ws11_c01150{word-spacing:-19.158506pt;}
.ws10_c01150{word-spacing:-19.128192pt;}
.wsd_c01150{word-spacing:-16.684034pt;}
.wsf_c01150{word-spacing:-15.674491pt;}
.wsc_c01150{word-spacing:-13.283467pt;}
.wsb_c01150{word-spacing:-12.698994pt;}
.wsa_c01150{word-spacing:-9.298427pt;}
.ws8_c01150{word-spacing:-8.878599pt;}
.ws9_c01150{word-spacing:-8.877777pt;}
.wse_c01150{word-spacing:-6.832128pt;}
.ws4_c01150{word-spacing:0.000000pt;}
.ws1_c01150{word-spacing:0.039110pt;}
.ws0_c01150{word-spacing:0.065111pt;}
.ws6_c01150{word-spacing:0.189730pt;}
.ws2_c01150{word-spacing:0.195063pt;}
.ws7_c01150{word-spacing:38.256533pt;}
._3_c01150{margin-left:-1.377235pt;}
._2_c01150{width:0.969472pt;}
._5_c01150{width:17.716000pt;}
._4_c01150{width:25.725019pt;}
._1_c01150{width:47.675578pt;}
._0_c01150{width:70.985376pt;}
.fs0_c01150{font-size:39.110400pt;}
.fs2_c01150{font-size:53.133867pt;}
.fs1_c01150{font-size:76.513067pt;}
.y0_c01150{bottom:0.000000pt;}
.y20_c01150{bottom:39.333333pt;}
.y1f_c01150{bottom:72.934667pt;}
.y1e_c01150{bottom:88.874667pt;}
.y1d_c01150{bottom:112.732000pt;}
.y1c_c01150{bottom:136.590667pt;}
.y1b_c01150{bottom:152.530667pt;}
.y1a_c01150{bottom:176.389333pt;}
.y19_c01150{bottom:200.246667pt;}
.y18_c01150{bottom:237.770667pt;}
.y17_c01150{bottom:651.080000pt;}
.y16_c01150{bottom:665.692000pt;}
.y15_c01150{bottom:680.304000pt;}
.y14_c01150{bottom:694.916000pt;}
.y13_c01150{bottom:709.528000pt;}
.y12_c01150{bottom:724.140000pt;}
.y11_c01150{bottom:738.752000pt;}
.y10_c01150{bottom:753.364000pt;}
.yf_c01150{bottom:767.976000pt;}
.ye_c01150{bottom:782.588000pt;}
.yd_c01150{bottom:797.198667pt;}
.yc_c01150{bottom:826.422667pt;}
.yb_c01150{bottom:841.034667pt;}
.ya_c01150{bottom:855.646667pt;}
.y9_c01150{bottom:884.870667pt;}
.y8_c01150{bottom:899.482667pt;}
.y7_c01150{bottom:914.094667pt;}
.y6_c01150{bottom:928.706667pt;}
.y5_c01150{bottom:943.317333pt;}
.y4_c01150{bottom:957.929333pt;}
.y3_c01150{bottom:972.541333pt;}
.y2_c01150{bottom:1016.377333pt;}
.y1_c01150{bottom:1030.989333pt;}
.h3_c01150{height:31.280681pt;}
.h2_c01150{height:32.006363pt;}
.h5_c01150{height:36.010648pt;}
.h6_c01150{height:46.518078pt;}
.h4_c01150{height:51.855535pt;}
.h0_c01150{height:1122.520000pt;}
.h1_c01150{height:1122.666667pt;}
.w0_c01150{width:793.706667pt;}
.w1_c01150{width:794.000000pt;}
.x0_c01150{left:0.000000pt;}
.x4_c01150{left:113.385333pt;}
.x2_c01150{left:121.886667pt;}
.x1_c01150{left:127.796000pt;}
.x3_c01150{left:157.340000pt;}
.x5_c01150{left:386.888000pt;}
}





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

.ir_c01151:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_442c6433c5f7aa56624e957b.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01151;src:url('chunks/assets/font_d801b8f275d21d5659991bde.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01151;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01151;src:url('chunks/assets/font_d5ad7be4d468fb7a3465cbac.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls4_c01151{letter-spacing:0.000000px;}
.ls1_c01151{letter-spacing:0.087998px;}
.ls2_c01151{letter-spacing:0.098482px;}
.ls0_c01151{letter-spacing:0.104482px;}
.ls3_c01151{letter-spacing:26.690482px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01151{word-spacing:-33.713438px;}
.ws6_c01151{word-spacing:-26.575517px;}
.ws5_c01151{word-spacing:-26.487518px;}
.ws2_c01151{word-spacing:-18.769538px;}
.ws0_c01151{word-spacing:-14.107042px;}
.ws1_c01151{word-spacing:-12.074671px;}
.wsa_c01151{word-spacing:0.000000px;}
.ws7_c01151{word-spacing:0.043999px;}
.wsd_c01151{word-spacing:0.056767px;}
.wsb_c01151{word-spacing:0.073250px;}
.wsc_c01151{word-spacing:0.083734px;}
.ws4_c01151{word-spacing:0.175997px;}
.wse_c01151{word-spacing:0.202963px;}
.ws8_c01151{word-spacing:0.213446px;}
.ws9_c01151{word-spacing:0.219446px;}
._2_c01151{margin-left:-3.825638px;}
._3_c01151{width:1.005737px;}
._0_c01151{width:20.742133px;}
._1_c01151{width:40.109428px;}
._5_c01151{width:53.283031px;}
._4_c01151{width:79.858548px;}
._6_c01151{width:133.452408px;}
.fc5_c01151{color:rgb(0,0,207);}
.fc4_c01151{color:rgb(79,153,5);}
.fc3_c01151{color:rgb(207,92,0);}
.fc2_c01151{color:rgb(33,74,135);}
.fc1_c01151{color:rgb(143,89,3);}
.fc0_c01151{color:rgb(0,0,0);}
.fs1_c01151{font-size:43.999200px;}
.fs0_c01151{font-size:59.775600px;}
.y0_c01151{bottom:0.000000px;}
.y2f_c01151{bottom:44.250000px;}
.y2e_c01151{bottom:96.919500px;}
.y2d_c01151{bottom:113.358000px;}
.y2c_c01151{bottom:129.796500px;}
.y2b_c01151{bottom:146.235000px;}
.y2a_c01151{bottom:162.673500px;}
.y29_c01151{bottom:179.112000px;}
.y28_c01151{bottom:195.550500px;}
.y27_c01151{bottom:211.989000px;}
.y26_c01151{bottom:228.427500px;}
.y25_c01151{bottom:244.866000px;}
.y24_c01151{bottom:261.304500px;}
.y23_c01151{bottom:294.180000px;}
.y22_c01151{bottom:310.618500px;}
.y21_c01151{bottom:327.057000px;}
.y20_c01151{bottom:359.934000px;}
.y1f_c01151{bottom:376.372500px;}
.y1e_c01151{bottom:392.811000px;}
.y1d_c01151{bottom:409.249500px;}
.y1c_c01151{bottom:425.688000px;}
.y1b_c01151{bottom:442.125000px;}
.y1a_c01151{bottom:458.563500px;}
.y19_c01151{bottom:507.879000px;}
.y18_c01151{bottom:524.317500px;}
.y17_c01151{bottom:540.756000px;}
.y16_c01151{bottom:557.194500px;}
.y15_c01151{bottom:573.633000px;}
.y14_c01151{bottom:590.071500px;}
.y13_c01151{bottom:606.508500px;}
.y12_c01151{bottom:622.947000px;}
.y11_c01151{bottom:639.385500px;}
.y10_c01151{bottom:655.824000px;}
.yf_c01151{bottom:672.262500px;}
.ye_c01151{bottom:688.701000px;}
.yd_c01151{bottom:705.139500px;}
.yc_c01151{bottom:721.578000px;}
.yb_c01151{bottom:738.016500px;}
.ya_c01151{bottom:754.455000px;}
.y9_c01151{bottom:787.330500px;}
.y8_c01151{bottom:803.769000px;}
.y7_c01151{bottom:853.084500px;}
.y6_c01151{bottom:869.523000px;}
.y5_c01151{bottom:885.588000px;}
.y4_c01151{bottom:1106.064000px;}
.y3_c01151{bottom:1123.998000px;}
.y2_c01151{bottom:1141.930500px;}
.y1_c01151{bottom:1159.863000px;}
.h3_c01151{height:35.190766px;}
.h4_c01151{height:36.007158px;}
.h2_c01151{height:52.332837px;}
.h0_c01151{height:1262.835000px;}
.h1_c01151{height:1263.000000px;}
.w0_c01151{width:892.920000px;}
.w1_c01151{width:893.250000px;}
.x0_c01151{left:0.000000px;}
.x1_c01151{left:127.558500px;}
.x2_c01151{left:137.122500px;}
.x3_c01151{left:143.770500px;}
.x4_c01151{left:177.007500px;}
.x5_c01151{left:435.249000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls4_c01151{letter-spacing:0.000000pt;}
.ls1_c01151{letter-spacing:0.078221pt;}
.ls2_c01151{letter-spacing:0.087539pt;}
.ls0_c01151{letter-spacing:0.092873pt;}
.ls3_c01151{letter-spacing:23.724873pt;}
.ws3_c01151{word-spacing:-29.967501pt;}
.ws6_c01151{word-spacing:-23.622682pt;}
.ws5_c01151{word-spacing:-23.544461pt;}
.ws2_c01151{word-spacing:-16.684034pt;}
.ws0_c01151{word-spacing:-12.539593pt;}
.ws1_c01151{word-spacing:-10.733041pt;}
.wsa_c01151{word-spacing:0.000000pt;}
.ws7_c01151{word-spacing:0.039110pt;}
.wsd_c01151{word-spacing:0.050460pt;}
.wsb_c01151{word-spacing:0.065111pt;}
.wsc_c01151{word-spacing:0.074430pt;}
.ws4_c01151{word-spacing:0.156442pt;}
.wse_c01151{word-spacing:0.180412pt;}
.ws8_c01151{word-spacing:0.189730pt;}
.ws9_c01151{word-spacing:0.195063pt;}
._2_c01151{margin-left:-3.400567pt;}
._3_c01151{width:0.893988pt;}
._0_c01151{width:18.437452pt;}
._1_c01151{width:35.652825pt;}
._5_c01151{width:47.362694pt;}
._4_c01151{width:70.985376pt;}
._6_c01151{width:118.624363pt;}
.fs1_c01151{font-size:39.110400pt;}
.fs0_c01151{font-size:53.133867pt;}
.y0_c01151{bottom:0.000000pt;}
.y2f_c01151{bottom:39.333333pt;}
.y2e_c01151{bottom:86.150667pt;}
.y2d_c01151{bottom:100.762667pt;}
.y2c_c01151{bottom:115.374667pt;}
.y2b_c01151{bottom:129.986667pt;}
.y2a_c01151{bottom:144.598667pt;}
.y29_c01151{bottom:159.210667pt;}
.y28_c01151{bottom:173.822667pt;}
.y27_c01151{bottom:188.434667pt;}
.y26_c01151{bottom:203.046667pt;}
.y25_c01151{bottom:217.658667pt;}
.y24_c01151{bottom:232.270667pt;}
.y23_c01151{bottom:261.493333pt;}
.y22_c01151{bottom:276.105333pt;}
.y21_c01151{bottom:290.717333pt;}
.y20_c01151{bottom:319.941333pt;}
.y1f_c01151{bottom:334.553333pt;}
.y1e_c01151{bottom:349.165333pt;}
.y1d_c01151{bottom:363.777333pt;}
.y1c_c01151{bottom:378.389333pt;}
.y1b_c01151{bottom:393.000000pt;}
.y1a_c01151{bottom:407.612000pt;}
.y19_c01151{bottom:451.448000pt;}
.y18_c01151{bottom:466.060000pt;}
.y17_c01151{bottom:480.672000pt;}
.y16_c01151{bottom:495.284000pt;}
.y15_c01151{bottom:509.896000pt;}
.y14_c01151{bottom:524.508000pt;}
.y13_c01151{bottom:539.118667pt;}
.y12_c01151{bottom:553.730667pt;}
.y11_c01151{bottom:568.342667pt;}
.y10_c01151{bottom:582.954667pt;}
.yf_c01151{bottom:597.566667pt;}
.ye_c01151{bottom:612.178667pt;}
.yd_c01151{bottom:626.790667pt;}
.yc_c01151{bottom:641.402667pt;}
.yb_c01151{bottom:656.014667pt;}
.ya_c01151{bottom:670.626667pt;}
.y9_c01151{bottom:699.849333pt;}
.y8_c01151{bottom:714.461333pt;}
.y7_c01151{bottom:758.297333pt;}
.y6_c01151{bottom:772.909333pt;}
.y5_c01151{bottom:787.189333pt;}
.y4_c01151{bottom:983.168000pt;}
.y3_c01151{bottom:999.109333pt;}
.y2_c01151{bottom:1015.049333pt;}
.y1_c01151{bottom:1030.989333pt;}
.h3_c01151{height:31.280681pt;}
.h4_c01151{height:32.006363pt;}
.h2_c01151{height:46.518078pt;}
.h0_c01151{height:1122.520000pt;}
.h1_c01151{height:1122.666667pt;}
.w0_c01151{width:793.706667pt;}
.w1_c01151{width:794.000000pt;}
.x0_c01151{left:0.000000pt;}
.x1_c01151{left:113.385333pt;}
.x2_c01151{left:121.886667pt;}
.x3_c01151{left:127.796000pt;}
.x4_c01151{left:157.340000pt;}
.x5_c01151{left:386.888000pt;}
}





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

.ir_c01152:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_772131a9f3284abfe16fc30a.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01152;src:url('chunks/assets/font_326679fb4dc8c692c8f0eb13.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01152;src:url('chunks/assets/font_cbf2c9cde0fd96569ac6c7d1.woff2')format("woff");}.ff3_c01152{font-family:ff3_c01152;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01152;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01152{font-family:ff4_c01152;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01152;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01152{font-family:ff5_c01152;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01152{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01152{vertical-align:0.000000px;}
.ls3_c01152{letter-spacing:0.000000px;}
.ls0_c01152{letter-spacing:0.087998px;}
.ls2_c01152{letter-spacing:0.098482px;}
.ls1_c01152{letter-spacing:0.104482px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01152{word-spacing:-33.713438px;}
.ws2_c01152{word-spacing:-26.575517px;}
.ws10_c01152{word-spacing:-26.487518px;}
.wsb_c01152{word-spacing:-21.553319px;}
.wsa_c01152{word-spacing:-21.519216px;}
.ws7_c01152{word-spacing:-18.769538px;}
.ws5_c01152{word-spacing:-18.470660px;}
.ws9_c01152{word-spacing:-17.633802px;}
.ws6_c01152{word-spacing:-14.943900px;}
.ws4_c01152{word-spacing:-14.704798px;}
.wsc_c01152{word-spacing:-14.107042px;}
.wsd_c01152{word-spacing:-12.074671px;}
.ws1_c01152{word-spacing:-9.988424px;}
.ws3_c01152{word-spacing:-9.987499px;}
.ws8_c01152{word-spacing:-7.686144px;}
.ws14_c01152{word-spacing:0.000000px;}
.ws11_c01152{word-spacing:0.043999px;}
.ws17_c01152{word-spacing:0.056767px;}
.ws15_c01152{word-spacing:0.073250px;}
.ws16_c01152{word-spacing:0.083734px;}
.wsf_c01152{word-spacing:0.175997px;}
.ws18_c01152{word-spacing:0.202963px;}
.ws12_c01152{word-spacing:0.213446px;}
.ws13_c01152{word-spacing:0.219446px;}
.ws0_c01152{word-spacing:43.038600px;}
._3_c01152{margin-left:-3.825638px;}
._0_c01152{margin-left:-1.549390px;}
._4_c01152{width:1.005737px;}
._1_c01152{width:20.518714px;}
._2_c01152{width:40.109428px;}
._6_c01152{width:53.283031px;}
._5_c01152{width:79.858548px;}
._7_c01152{width:133.452408px;}
.fc6_c01152{color:rgb(0,0,207);}
.fc5_c01152{color:rgb(79,153,5);}
.fc3_c01152{color:rgb(33,74,135);}
.fc2_c01152{color:rgb(143,89,3);}
.fc4_c01152{color:rgb(207,92,0);}
.fc1_c01152{color:rgb(6,69,173);}
.fc0_c01152{color:rgb(0,0,0);}
.fs2_c01152{font-size:43.999200px;}
.fs1_c01152{font-size:59.775600px;}
.fs0_c01152{font-size:86.077200px;}
.y0_c01152{bottom:0.000000px;}
.y20_c01152{bottom:44.250000px;}
.y1f_c01152{bottom:86.982000px;}
.y1e_c01152{bottom:103.420500px;}
.y1d_c01152{bottom:119.859000px;}
.y1c_c01152{bottom:136.297500px;}
.y1b_c01152{bottom:152.736000px;}
.y1a_c01152{bottom:169.174500px;}
.y19_c01152{bottom:185.613000px;}
.y18_c01152{bottom:202.051500px;}
.y17_c01152{bottom:218.490000px;}
.y16_c01152{bottom:234.927000px;}
.y15_c01152{bottom:251.365500px;}
.y14_c01152{bottom:267.804000px;}
.y13_c01152{bottom:284.242500px;}
.y12_c01152{bottom:300.681000px;}
.y11_c01152{bottom:333.558000px;}
.y10_c01152{bottom:349.996500px;}
.yf_c01152{bottom:399.310500px;}
.ye_c01152{bottom:415.749000px;}
.yd_c01152{bottom:431.814000px;}
.yc_c01152{bottom:477.118500px;}
.yb_c01152{bottom:495.051000px;}
.ya_c01152{bottom:512.983500px;}
.y9_c01152{bottom:530.916000px;}
.y8_c01152{bottom:548.848500px;}
.y7_c01152{bottom:566.781000px;}
.y6_c01152{bottom:593.728500px;}
.y5_c01152{bottom:620.674500px;}
.y4_c01152{bottom:638.607000px;}
.y3_c01152{bottom:665.553000px;}
.y2_c01152{bottom:692.500500px;}
.y1_c01152{bottom:734.839500px;}
.h5_c01152{height:35.190766px;}
.h6_c01152{height:36.007158px;}
.h3_c01152{height:40.511979px;}
.h4_c01152{height:52.332837px;}
.h2_c01152{height:58.337477px;}
.h0_c01152{height:1262.835000px;}
.h1_c01152{height:1263.000000px;}
.w0_c01152{width:892.920000px;}
.w1_c01152{width:893.250000px;}
.x0_c01152{left:0.000000px;}
.x1_c01152{left:127.558500px;}
.x2_c01152{left:137.122500px;}
.x3_c01152{left:143.770500px;}
.x4_c01152{left:435.249000px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls3_c01152{letter-spacing:0.000000pt;}
.ls0_c01152{letter-spacing:0.078221pt;}
.ls2_c01152{letter-spacing:0.087539pt;}
.ls1_c01152{letter-spacing:0.092873pt;}
.wse_c01152{word-spacing:-29.967501pt;}
.ws2_c01152{word-spacing:-23.622682pt;}
.ws10_c01152{word-spacing:-23.544461pt;}
.wsb_c01152{word-spacing:-19.158506pt;}
.wsa_c01152{word-spacing:-19.128192pt;}
.ws7_c01152{word-spacing:-16.684034pt;}
.ws5_c01152{word-spacing:-16.418365pt;}
.ws9_c01152{word-spacing:-15.674491pt;}
.ws6_c01152{word-spacing:-13.283467pt;}
.ws4_c01152{word-spacing:-13.070931pt;}
.wsc_c01152{word-spacing:-12.539593pt;}
.wsd_c01152{word-spacing:-10.733041pt;}
.ws1_c01152{word-spacing:-8.878599pt;}
.ws3_c01152{word-spacing:-8.877777pt;}
.ws8_c01152{word-spacing:-6.832128pt;}
.ws14_c01152{word-spacing:0.000000pt;}
.ws11_c01152{word-spacing:0.039110pt;}
.ws17_c01152{word-spacing:0.050460pt;}
.ws15_c01152{word-spacing:0.065111pt;}
.ws16_c01152{word-spacing:0.074430pt;}
.wsf_c01152{word-spacing:0.156442pt;}
.ws18_c01152{word-spacing:0.180412pt;}
.ws12_c01152{word-spacing:0.189730pt;}
.ws13_c01152{word-spacing:0.195063pt;}
.ws0_c01152{word-spacing:38.256533pt;}
._3_c01152{margin-left:-3.400567pt;}
._0_c01152{margin-left:-1.377235pt;}
._4_c01152{width:0.893988pt;}
._1_c01152{width:18.238857pt;}
._2_c01152{width:35.652825pt;}
._6_c01152{width:47.362694pt;}
._5_c01152{width:70.985376pt;}
._7_c01152{width:118.624363pt;}
.fs2_c01152{font-size:39.110400pt;}
.fs1_c01152{font-size:53.133867pt;}
.fs0_c01152{font-size:76.513067pt;}
.y0_c01152{bottom:0.000000pt;}
.y20_c01152{bottom:39.333333pt;}
.y1f_c01152{bottom:77.317333pt;}
.y1e_c01152{bottom:91.929333pt;}
.y1d_c01152{bottom:106.541333pt;}
.y1c_c01152{bottom:121.153333pt;}
.y1b_c01152{bottom:135.765333pt;}
.y1a_c01152{bottom:150.377333pt;}
.y19_c01152{bottom:164.989333pt;}
.y18_c01152{bottom:179.601333pt;}
.y17_c01152{bottom:194.213333pt;}
.y16_c01152{bottom:208.824000pt;}
.y15_c01152{bottom:223.436000pt;}
.y14_c01152{bottom:238.048000pt;}
.y13_c01152{bottom:252.660000pt;}
.y12_c01152{bottom:267.272000pt;}
.y11_c01152{bottom:296.496000pt;}
.y10_c01152{bottom:311.108000pt;}
.yf_c01152{bottom:354.942667pt;}
.ye_c01152{bottom:369.554667pt;}
.yd_c01152{bottom:383.834667pt;}
.yc_c01152{bottom:424.105333pt;}
.yb_c01152{bottom:440.045333pt;}
.ya_c01152{bottom:455.985333pt;}
.y9_c01152{bottom:471.925333pt;}
.y8_c01152{bottom:487.865333pt;}
.y7_c01152{bottom:503.805333pt;}
.y6_c01152{bottom:527.758667pt;}
.y5_c01152{bottom:551.710667pt;}
.y4_c01152{bottom:567.650667pt;}
.y3_c01152{bottom:591.602667pt;}
.y2_c01152{bottom:615.556000pt;}
.y1_c01152{bottom:653.190667pt;}
.h5_c01152{height:31.280681pt;}
.h6_c01152{height:32.006363pt;}
.h3_c01152{height:36.010648pt;}
.h4_c01152{height:46.518078pt;}
.h2_c01152{height:51.855535pt;}
.h0_c01152{height:1122.520000pt;}
.h1_c01152{height:1122.666667pt;}
.w0_c01152{width:793.706667pt;}
.w1_c01152{width:794.000000pt;}
.x0_c01152{left:0.000000pt;}
.x1_c01152{left:113.385333pt;}
.x2_c01152{left:121.886667pt;}
.x3_c01152{left:127.796000pt;}
.x4_c01152{left:386.888000pt;}
}





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

.ir_c01153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_4aa36dd3c62aab97494fadfa.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01153;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01153;src:url('chunks/assets/font_28d0c7afe5e99bad3bf9671f.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01153;src:url('chunks/assets/font_7bea97b03f2bc9a1d2b4875e.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01153;src:url('chunks/assets/font_c1481eb16d7d5f43e950c958.woff2')format("woff");}.ff5_c01153{font-family:ff5_c01153;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls4_c01153{letter-spacing:0.000000px;}
.ls0_c01153{letter-spacing:0.087998px;}
.ls1_c01153{letter-spacing:0.098482px;}
.ls3_c01153{letter-spacing:0.104482px;}
.ls2_c01153{letter-spacing:26.690482px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01153{word-spacing:-26.575517px;}
.ws5_c01153{word-spacing:-26.487518px;}
.ws11_c01153{word-spacing:-21.553319px;}
.ws10_c01153{word-spacing:-21.519216px;}
.wsf_c01153{word-spacing:-19.247743px;}
.wsd_c01153{word-spacing:-18.769538px;}
.wsc_c01153{word-spacing:-14.943900px;}
.wsb_c01153{word-spacing:-11.297588px;}
.wse_c01153{word-spacing:-10.230144px;}
.ws8_c01153{word-spacing:-9.988424px;}
.ws9_c01153{word-spacing:-9.987499px;}
.wsa_c01153{word-spacing:-7.471950px;}
.ws4_c01153{word-spacing:0.000000px;}
.ws1_c01153{word-spacing:0.043999px;}
.ws0_c01153{word-spacing:0.073250px;}
.ws6_c01153{word-spacing:0.213446px;}
.ws2_c01153{word-spacing:0.219446px;}
.ws7_c01153{word-spacing:43.038600px;}
._2_c01153{margin-left:-1.549390px;}
._1_c01153{width:1.101139px;}
._4_c01153{width:19.930500px;}
._3_c01153{width:34.915866px;}
._0_c01153{width:79.858548px;}
.fc5_c01153{color:rgb(79,153,5);}
.fc4_c01153{color:rgb(143,89,3);}
.fc6_c01153{color:rgb(6,69,173);}
.fc3_c01153{color:rgb(207,92,0);}
.fc2_c01153{color:rgb(0,0,0);}
.fc1_c01153{color:rgb(0,0,207);}
.fc0_c01153{color:rgb(33,74,135);}
.fs0_c01153{font-size:43.999200px;}
.fs2_c01153{font-size:59.775600px;}
.fs1_c01153{font-size:86.077200px;}
.y0_c01153{bottom:0.000000px;}
.y20_c01153{bottom:44.250000px;}
.y1f_c01153{bottom:82.051500px;}
.y1e_c01153{bottom:99.984000px;}
.y1d_c01153{bottom:126.823500px;}
.y1c_c01153{bottom:153.664500px;}
.y1b_c01153{bottom:171.597000px;}
.y1a_c01153{bottom:198.438000px;}
.y19_c01153{bottom:225.277500px;}
.y18_c01153{bottom:267.492000px;}
.y17_c01153{bottom:732.465000px;}
.y16_c01153{bottom:748.903500px;}
.y15_c01153{bottom:765.342000px;}
.y14_c01153{bottom:781.780500px;}
.y13_c01153{bottom:798.219000px;}
.y12_c01153{bottom:814.657500px;}
.y11_c01153{bottom:831.096000px;}
.y10_c01153{bottom:847.534500px;}
.yf_c01153{bottom:863.973000px;}
.ye_c01153{bottom:880.411500px;}
.yd_c01153{bottom:896.848500px;}
.yc_c01153{bottom:929.725500px;}
.yb_c01153{bottom:946.164000px;}
.ya_c01153{bottom:962.602500px;}
.y9_c01153{bottom:995.479500px;}
.y8_c01153{bottom:1011.918000px;}
.y7_c01153{bottom:1028.356500px;}
.y6_c01153{bottom:1044.795000px;}
.y5_c01153{bottom:1061.232000px;}
.y4_c01153{bottom:1077.670500px;}
.y3_c01153{bottom:1094.109000px;}
.y2_c01153{bottom:1143.424500px;}
.y1_c01153{bottom:1159.863000px;}
.h3_c01153{height:35.190766px;}
.h2_c01153{height:36.007158px;}
.h5_c01153{height:40.511979px;}
.h6_c01153{height:52.332837px;}
.h4_c01153{height:58.337477px;}
.h0_c01153{height:1262.835000px;}
.h1_c01153{height:1263.000000px;}
.w0_c01153{width:892.920000px;}
.w1_c01153{width:893.250000px;}
.x0_c01153{left:0.000000px;}
.x4_c01153{left:127.558500px;}
.x2_c01153{left:137.122500px;}
.x1_c01153{left:143.770500px;}
.x3_c01153{left:177.007500px;}
.x5_c01153{left:435.249000px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls4_c01153{letter-spacing:0.000000pt;}
.ls0_c01153{letter-spacing:0.078221pt;}
.ls1_c01153{letter-spacing:0.087539pt;}
.ls3_c01153{letter-spacing:0.092873pt;}
.ls2_c01153{letter-spacing:23.724873pt;}
.ws3_c01153{word-spacing:-23.622682pt;}
.ws5_c01153{word-spacing:-23.544461pt;}
.ws11_c01153{word-spacing:-19.158506pt;}
.ws10_c01153{word-spacing:-19.128192pt;}
.wsf_c01153{word-spacing:-17.109105pt;}
.wsd_c01153{word-spacing:-16.684034pt;}
.wsc_c01153{word-spacing:-13.283467pt;}
.wsb_c01153{word-spacing:-10.042301pt;}
.wse_c01153{word-spacing:-9.093461pt;}
.ws8_c01153{word-spacing:-8.878599pt;}
.ws9_c01153{word-spacing:-8.877777pt;}
.wsa_c01153{word-spacing:-6.641733pt;}
.ws4_c01153{word-spacing:0.000000pt;}
.ws1_c01153{word-spacing:0.039110pt;}
.ws0_c01153{word-spacing:0.065111pt;}
.ws6_c01153{word-spacing:0.189730pt;}
.ws2_c01153{word-spacing:0.195063pt;}
.ws7_c01153{word-spacing:38.256533pt;}
._2_c01153{margin-left:-1.377235pt;}
._1_c01153{width:0.978790pt;}
._4_c01153{width:17.716000pt;}
._3_c01153{width:31.036325pt;}
._0_c01153{width:70.985376pt;}
.fs0_c01153{font-size:39.110400pt;}
.fs2_c01153{font-size:53.133867pt;}
.fs1_c01153{font-size:76.513067pt;}
.y0_c01153{bottom:0.000000pt;}
.y20_c01153{bottom:39.333333pt;}
.y1f_c01153{bottom:72.934667pt;}
.y1e_c01153{bottom:88.874667pt;}
.y1d_c01153{bottom:112.732000pt;}
.y1c_c01153{bottom:136.590667pt;}
.y1b_c01153{bottom:152.530667pt;}
.y1a_c01153{bottom:176.389333pt;}
.y19_c01153{bottom:200.246667pt;}
.y18_c01153{bottom:237.770667pt;}
.y17_c01153{bottom:651.080000pt;}
.y16_c01153{bottom:665.692000pt;}
.y15_c01153{bottom:680.304000pt;}
.y14_c01153{bottom:694.916000pt;}
.y13_c01153{bottom:709.528000pt;}
.y12_c01153{bottom:724.140000pt;}
.y11_c01153{bottom:738.752000pt;}
.y10_c01153{bottom:753.364000pt;}
.yf_c01153{bottom:767.976000pt;}
.ye_c01153{bottom:782.588000pt;}
.yd_c01153{bottom:797.198667pt;}
.yc_c01153{bottom:826.422667pt;}
.yb_c01153{bottom:841.034667pt;}
.ya_c01153{bottom:855.646667pt;}
.y9_c01153{bottom:884.870667pt;}
.y8_c01153{bottom:899.482667pt;}
.y7_c01153{bottom:914.094667pt;}
.y6_c01153{bottom:928.706667pt;}
.y5_c01153{bottom:943.317333pt;}
.y4_c01153{bottom:957.929333pt;}
.y3_c01153{bottom:972.541333pt;}
.y2_c01153{bottom:1016.377333pt;}
.y1_c01153{bottom:1030.989333pt;}
.h3_c01153{height:31.280681pt;}
.h2_c01153{height:32.006363pt;}
.h5_c01153{height:36.010648pt;}
.h6_c01153{height:46.518078pt;}
.h4_c01153{height:51.855535pt;}
.h0_c01153{height:1122.520000pt;}
.h1_c01153{height:1122.666667pt;}
.w0_c01153{width:793.706667pt;}
.w1_c01153{width:794.000000pt;}
.x0_c01153{left:0.000000pt;}
.x4_c01153{left:113.385333pt;}
.x2_c01153{left:121.886667pt;}
.x1_c01153{left:127.796000pt;}
.x3_c01153{left:157.340000pt;}
.x5_c01153{left:386.888000pt;}
}





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

.ir_c01154:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_442c6433c5f7aa56624e957b.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01154;src:url('chunks/assets/font_aa2303edcdbb0c8a6bdc4e04.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01154;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01154;src:url('chunks/assets/font_a8600f6898a24b72794d1a17.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls4_c01154{letter-spacing:0.000000px;}
.ls1_c01154{letter-spacing:0.087998px;}
.ls2_c01154{letter-spacing:0.098482px;}
.ls0_c01154{letter-spacing:0.104482px;}
.ls3_c01154{letter-spacing:26.690482px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01154{word-spacing:-33.713438px;}
.ws6_c01154{word-spacing:-26.575517px;}
.ws5_c01154{word-spacing:-26.487518px;}
.ws2_c01154{word-spacing:-18.769538px;}
.ws0_c01154{word-spacing:-14.107042px;}
.ws1_c01154{word-spacing:-12.074671px;}
.wsa_c01154{word-spacing:0.000000px;}
.ws7_c01154{word-spacing:0.043999px;}
.wsd_c01154{word-spacing:0.056767px;}
.wsb_c01154{word-spacing:0.073250px;}
.wsc_c01154{word-spacing:0.083734px;}
.ws4_c01154{word-spacing:0.175997px;}
.wse_c01154{word-spacing:0.202963px;}
.ws8_c01154{word-spacing:0.213446px;}
.ws9_c01154{word-spacing:0.219446px;}
._2_c01154{margin-left:-3.825638px;}
._3_c01154{width:1.005737px;}
._0_c01154{width:20.742133px;}
._1_c01154{width:40.109428px;}
._5_c01154{width:53.283031px;}
._4_c01154{width:79.858548px;}
._7_c01154{width:106.830058px;}
._6_c01154{width:133.452408px;}
.fc5_c01154{color:rgb(0,0,207);}
.fc4_c01154{color:rgb(79,153,5);}
.fc3_c01154{color:rgb(207,92,0);}
.fc2_c01154{color:rgb(33,74,135);}
.fc1_c01154{color:rgb(143,89,3);}
.fc0_c01154{color:rgb(0,0,0);}
.fs1_c01154{font-size:43.999200px;}
.fs0_c01154{font-size:59.775600px;}
.y0_c01154{bottom:0.000000px;}
.y2f_c01154{bottom:44.250000px;}
.y2e_c01154{bottom:96.919500px;}
.y2d_c01154{bottom:113.358000px;}
.y2c_c01154{bottom:129.796500px;}
.y2b_c01154{bottom:146.235000px;}
.y2a_c01154{bottom:162.673500px;}
.y29_c01154{bottom:179.112000px;}
.y28_c01154{bottom:195.550500px;}
.y27_c01154{bottom:211.989000px;}
.y26_c01154{bottom:228.427500px;}
.y25_c01154{bottom:244.866000px;}
.y24_c01154{bottom:261.304500px;}
.y23_c01154{bottom:294.180000px;}
.y22_c01154{bottom:310.618500px;}
.y21_c01154{bottom:327.057000px;}
.y20_c01154{bottom:359.934000px;}
.y1f_c01154{bottom:376.372500px;}
.y1e_c01154{bottom:392.811000px;}
.y1d_c01154{bottom:409.249500px;}
.y1c_c01154{bottom:425.688000px;}
.y1b_c01154{bottom:442.125000px;}
.y1a_c01154{bottom:458.563500px;}
.y19_c01154{bottom:507.879000px;}
.y18_c01154{bottom:524.317500px;}
.y17_c01154{bottom:540.756000px;}
.y16_c01154{bottom:557.194500px;}
.y15_c01154{bottom:573.633000px;}
.y14_c01154{bottom:590.071500px;}
.y13_c01154{bottom:606.508500px;}
.y12_c01154{bottom:622.947000px;}
.y11_c01154{bottom:639.385500px;}
.y10_c01154{bottom:655.824000px;}
.yf_c01154{bottom:672.262500px;}
.ye_c01154{bottom:688.701000px;}
.yd_c01154{bottom:705.139500px;}
.yc_c01154{bottom:721.578000px;}
.yb_c01154{bottom:738.016500px;}
.ya_c01154{bottom:754.455000px;}
.y9_c01154{bottom:787.330500px;}
.y8_c01154{bottom:803.769000px;}
.y7_c01154{bottom:853.084500px;}
.y6_c01154{bottom:869.523000px;}
.y5_c01154{bottom:885.588000px;}
.y4_c01154{bottom:1106.064000px;}
.y3_c01154{bottom:1123.998000px;}
.y2_c01154{bottom:1141.930500px;}
.y1_c01154{bottom:1159.863000px;}
.h3_c01154{height:35.190766px;}
.h4_c01154{height:36.007158px;}
.h2_c01154{height:52.332837px;}
.h0_c01154{height:1262.835000px;}
.h1_c01154{height:1263.000000px;}
.w0_c01154{width:892.920000px;}
.w1_c01154{width:893.250000px;}
.x0_c01154{left:0.000000px;}
.x1_c01154{left:127.558500px;}
.x2_c01154{left:137.122500px;}
.x3_c01154{left:143.770500px;}
.x4_c01154{left:177.007500px;}
.x5_c01154{left:435.249000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls4_c01154{letter-spacing:0.000000pt;}
.ls1_c01154{letter-spacing:0.078221pt;}
.ls2_c01154{letter-spacing:0.087539pt;}
.ls0_c01154{letter-spacing:0.092873pt;}
.ls3_c01154{letter-spacing:23.724873pt;}
.ws3_c01154{word-spacing:-29.967501pt;}
.ws6_c01154{word-spacing:-23.622682pt;}
.ws5_c01154{word-spacing:-23.544461pt;}
.ws2_c01154{word-spacing:-16.684034pt;}
.ws0_c01154{word-spacing:-12.539593pt;}
.ws1_c01154{word-spacing:-10.733041pt;}
.wsa_c01154{word-spacing:0.000000pt;}
.ws7_c01154{word-spacing:0.039110pt;}
.wsd_c01154{word-spacing:0.050460pt;}
.wsb_c01154{word-spacing:0.065111pt;}
.wsc_c01154{word-spacing:0.074430pt;}
.ws4_c01154{word-spacing:0.156442pt;}
.wse_c01154{word-spacing:0.180412pt;}
.ws8_c01154{word-spacing:0.189730pt;}
.ws9_c01154{word-spacing:0.195063pt;}
._2_c01154{margin-left:-3.400567pt;}
._3_c01154{width:0.893988pt;}
._0_c01154{width:18.437452pt;}
._1_c01154{width:35.652825pt;}
._5_c01154{width:47.362694pt;}
._4_c01154{width:70.985376pt;}
._7_c01154{width:94.960051pt;}
._6_c01154{width:118.624363pt;}
.fs1_c01154{font-size:39.110400pt;}
.fs0_c01154{font-size:53.133867pt;}
.y0_c01154{bottom:0.000000pt;}
.y2f_c01154{bottom:39.333333pt;}
.y2e_c01154{bottom:86.150667pt;}
.y2d_c01154{bottom:100.762667pt;}
.y2c_c01154{bottom:115.374667pt;}
.y2b_c01154{bottom:129.986667pt;}
.y2a_c01154{bottom:144.598667pt;}
.y29_c01154{bottom:159.210667pt;}
.y28_c01154{bottom:173.822667pt;}
.y27_c01154{bottom:188.434667pt;}
.y26_c01154{bottom:203.046667pt;}
.y25_c01154{bottom:217.658667pt;}
.y24_c01154{bottom:232.270667pt;}
.y23_c01154{bottom:261.493333pt;}
.y22_c01154{bottom:276.105333pt;}
.y21_c01154{bottom:290.717333pt;}
.y20_c01154{bottom:319.941333pt;}
.y1f_c01154{bottom:334.553333pt;}
.y1e_c01154{bottom:349.165333pt;}
.y1d_c01154{bottom:363.777333pt;}
.y1c_c01154{bottom:378.389333pt;}
.y1b_c01154{bottom:393.000000pt;}
.y1a_c01154{bottom:407.612000pt;}
.y19_c01154{bottom:451.448000pt;}
.y18_c01154{bottom:466.060000pt;}
.y17_c01154{bottom:480.672000pt;}
.y16_c01154{bottom:495.284000pt;}
.y15_c01154{bottom:509.896000pt;}
.y14_c01154{bottom:524.508000pt;}
.y13_c01154{bottom:539.118667pt;}
.y12_c01154{bottom:553.730667pt;}
.y11_c01154{bottom:568.342667pt;}
.y10_c01154{bottom:582.954667pt;}
.yf_c01154{bottom:597.566667pt;}
.ye_c01154{bottom:612.178667pt;}
.yd_c01154{bottom:626.790667pt;}
.yc_c01154{bottom:641.402667pt;}
.yb_c01154{bottom:656.014667pt;}
.ya_c01154{bottom:670.626667pt;}
.y9_c01154{bottom:699.849333pt;}
.y8_c01154{bottom:714.461333pt;}
.y7_c01154{bottom:758.297333pt;}
.y6_c01154{bottom:772.909333pt;}
.y5_c01154{bottom:787.189333pt;}
.y4_c01154{bottom:983.168000pt;}
.y3_c01154{bottom:999.109333pt;}
.y2_c01154{bottom:1015.049333pt;}
.y1_c01154{bottom:1030.989333pt;}
.h3_c01154{height:31.280681pt;}
.h4_c01154{height:32.006363pt;}
.h2_c01154{height:46.518078pt;}
.h0_c01154{height:1122.520000pt;}
.h1_c01154{height:1122.666667pt;}
.w0_c01154{width:793.706667pt;}
.w1_c01154{width:794.000000pt;}
.x0_c01154{left:0.000000pt;}
.x1_c01154{left:113.385333pt;}
.x2_c01154{left:121.886667pt;}
.x3_c01154{left:127.796000pt;}
.x4_c01154{left:157.340000pt;}
.x5_c01154{left:386.888000pt;}
}





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

.ir_c01155:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_0969bc965c57625b3bc61fac.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01155;src:url('chunks/assets/font_7d04742ad00d7afe6913002f.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01155;src:url('chunks/assets/font_01d2867a2b7dad1e40b996ec.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01155;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01155;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01155{font-family:ff5_c01155;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01155{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.ls3_c01155{letter-spacing:0.000000px;}
.ls0_c01155{letter-spacing:0.087998px;}
.ls2_c01155{letter-spacing:0.098482px;}
.ls1_c01155{letter-spacing:0.104482px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01155{word-spacing:-26.575517px;}
.ws11_c01155{word-spacing:-26.487518px;}
.ws5_c01155{word-spacing:-21.220338px;}
.ws9_c01155{word-spacing:-18.829314px;}
.ws6_c01155{word-spacing:-18.769538px;}
.wse_c01155{word-spacing:-18.530436px;}
.wsf_c01155{word-spacing:-17.813129px;}
.ws4_c01155{word-spacing:-17.394700px;}
.wsa_c01155{word-spacing:-17.036046px;}
.ws7_c01155{word-spacing:-14.943900px;}
.wsc_c01155{word-spacing:-12.732203px;}
.wsd_c01155{word-spacing:-12.074671px;}
.ws8_c01155{word-spacing:-10.026144px;}
.ws1_c01155{word-spacing:-9.988424px;}
.ws3_c01155{word-spacing:-9.987499px;}
.wsb_c01155{word-spacing:-5.487432px;}
.ws15_c01155{word-spacing:0.000000px;}
.ws12_c01155{word-spacing:0.043999px;}
.ws10_c01155{word-spacing:0.175997px;}
.ws14_c01155{word-spacing:0.213446px;}
.ws13_c01155{word-spacing:0.219446px;}
.ws0_c01155{word-spacing:43.038600px;}
._4_c01155{margin-left:-7.711052px;}
._3_c01155{margin-left:-4.727048px;}
._5_c01155{margin-left:-3.227882px;}
._0_c01155{margin-left:-1.549390px;}
._a_c01155{width:1.005737px;}
._9_c01155{width:16.233738px;}
._1_c01155{width:18.762616px;}
._2_c01155{width:19.930500px;}
._8_c01155{width:23.628312px;}
._6_c01155{width:25.010364px;}
._7_c01155{width:38.460604px;}
.fc5_c01155{color:rgb(79,153,5);}
.fc3_c01155{color:rgb(33,74,135);}
.fc2_c01155{color:rgb(143,89,3);}
.fc4_c01155{color:rgb(207,92,0);}
.fc1_c01155{color:rgb(6,69,173);}
.fc0_c01155{color:rgb(0,0,0);}
.fs2_c01155{font-size:43.999200px;}
.fs1_c01155{font-size:59.775600px;}
.fs0_c01155{font-size:86.077200px;}
.y0_c01155{bottom:0.000000px;}
.y1f_c01155{bottom:44.250000px;}
.y1e_c01155{bottom:82.051500px;}
.y1d_c01155{bottom:98.490000px;}
.y1c_c01155{bottom:147.804000px;}
.y1b_c01155{bottom:164.242500px;}
.y1a_c01155{bottom:197.119500px;}
.y19_c01155{bottom:213.558000px;}
.y18_c01155{bottom:229.996500px;}
.y17_c01155{bottom:246.435000px;}
.y16_c01155{bottom:279.310500px;}
.y15_c01155{bottom:295.749000px;}
.y14_c01155{bottom:312.187500px;}
.y13_c01155{bottom:328.626000px;}
.y12_c01155{bottom:345.064500px;}
.y11_c01155{bottom:361.503000px;}
.y10_c01155{bottom:377.941500px;}
.yf_c01155{bottom:394.380000px;}
.ye_c01155{bottom:410.445000px;}
.yd_c01155{bottom:458.862000px;}
.yc_c01155{bottom:476.794500px;}
.yb_c01155{bottom:494.727000px;}
.ya_c01155{bottom:512.659500px;}
.y9_c01155{bottom:530.593500px;}
.y8_c01155{bottom:548.526000px;}
.y7_c01155{bottom:566.458500px;}
.y6_c01155{bottom:593.442000px;}
.y5_c01155{bottom:620.425500px;}
.y4_c01155{bottom:638.358000px;}
.y3_c01155{bottom:665.341500px;}
.y2_c01155{bottom:692.325000px;}
.y1_c01155{bottom:734.719500px;}
.h5_c01155{height:35.190766px;}
.h6_c01155{height:36.007158px;}
.h3_c01155{height:40.511979px;}
.h4_c01155{height:52.332837px;}
.h2_c01155{height:58.337477px;}
.h0_c01155{height:1262.835000px;}
.h1_c01155{height:1263.000000px;}
.w0_c01155{width:892.920000px;}
.w1_c01155{width:893.250000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:127.558500px;}
.x2_c01155{left:137.122500px;}
.x3_c01155{left:435.249000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls3_c01155{letter-spacing:0.000000pt;}
.ls0_c01155{letter-spacing:0.078221pt;}
.ls2_c01155{letter-spacing:0.087539pt;}
.ls1_c01155{letter-spacing:0.092873pt;}
.ws2_c01155{word-spacing:-23.622682pt;}
.ws11_c01155{word-spacing:-23.544461pt;}
.ws5_c01155{word-spacing:-18.862523pt;}
.ws9_c01155{word-spacing:-16.737168pt;}
.ws6_c01155{word-spacing:-16.684034pt;}
.wse_c01155{word-spacing:-16.471499pt;}
.wsf_c01155{word-spacing:-15.833892pt;}
.ws4_c01155{word-spacing:-15.461955pt;}
.wsa_c01155{word-spacing:-15.143152pt;}
.ws7_c01155{word-spacing:-13.283467pt;}
.wsc_c01155{word-spacing:-11.317514pt;}
.wsd_c01155{word-spacing:-10.733041pt;}
.ws8_c01155{word-spacing:-8.912128pt;}
.ws1_c01155{word-spacing:-8.878599pt;}
.ws3_c01155{word-spacing:-8.877777pt;}
.wsb_c01155{word-spacing:-4.877717pt;}
.ws15_c01155{word-spacing:0.000000pt;}
.ws12_c01155{word-spacing:0.039110pt;}
.ws10_c01155{word-spacing:0.156442pt;}
.ws14_c01155{word-spacing:0.189730pt;}
.ws13_c01155{word-spacing:0.195063pt;}
.ws0_c01155{word-spacing:38.256533pt;}
._4_c01155{margin-left:-6.854269pt;}
._3_c01155{margin-left:-4.201821pt;}
._5_c01155{margin-left:-2.869229pt;}
._0_c01155{margin-left:-1.377235pt;}
._a_c01155{width:0.893988pt;}
._9_c01155{width:14.429989pt;}
._1_c01155{width:16.677881pt;}
._2_c01155{width:17.716000pt;}
._8_c01155{width:21.002944pt;}
._6_c01155{width:22.231435pt;}
._7_c01155{width:34.187203pt;}
.fs2_c01155{font-size:39.110400pt;}
.fs1_c01155{font-size:53.133867pt;}
.fs0_c01155{font-size:76.513067pt;}
.y0_c01155{bottom:0.000000pt;}
.y1f_c01155{bottom:39.333333pt;}
.y1e_c01155{bottom:72.934667pt;}
.y1d_c01155{bottom:87.546667pt;}
.y1c_c01155{bottom:131.381333pt;}
.y1b_c01155{bottom:145.993333pt;}
.y1a_c01155{bottom:175.217333pt;}
.y19_c01155{bottom:189.829333pt;}
.y18_c01155{bottom:204.441333pt;}
.y17_c01155{bottom:219.053333pt;}
.y16_c01155{bottom:248.276000pt;}
.y15_c01155{bottom:262.888000pt;}
.y14_c01155{bottom:277.500000pt;}
.y13_c01155{bottom:292.112000pt;}
.y12_c01155{bottom:306.724000pt;}
.y11_c01155{bottom:321.336000pt;}
.y10_c01155{bottom:335.948000pt;}
.yf_c01155{bottom:350.560000pt;}
.ye_c01155{bottom:364.840000pt;}
.yd_c01155{bottom:407.877333pt;}
.yc_c01155{bottom:423.817333pt;}
.yb_c01155{bottom:439.757333pt;}
.ya_c01155{bottom:455.697333pt;}
.y9_c01155{bottom:471.638667pt;}
.y8_c01155{bottom:487.578667pt;}
.y7_c01155{bottom:503.518667pt;}
.y6_c01155{bottom:527.504000pt;}
.y5_c01155{bottom:551.489333pt;}
.y4_c01155{bottom:567.429333pt;}
.y3_c01155{bottom:591.414667pt;}
.y2_c01155{bottom:615.400000pt;}
.y1_c01155{bottom:653.084000pt;}
.h5_c01155{height:31.280681pt;}
.h6_c01155{height:32.006363pt;}
.h3_c01155{height:36.010648pt;}
.h4_c01155{height:46.518078pt;}
.h2_c01155{height:51.855535pt;}
.h0_c01155{height:1122.520000pt;}
.h1_c01155{height:1122.666667pt;}
.w0_c01155{width:793.706667pt;}
.w1_c01155{width:794.000000pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:113.385333pt;}
.x2_c01155{left:121.886667pt;}
.x3_c01155{left:386.888000pt;}
}





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

.ir_c01156:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_f364b39f39e62efd12d908f4.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01156;src:url('chunks/assets/font_92bd58aa0fd9d9e003226ada.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01156;src:url('chunks/assets/font_bde3320dd2e2f88df846626d.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01156;src:url('chunks/assets/font_841c933539afe7f480680e29.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls3_c01156{letter-spacing:0.000000px;}
.ls0_c01156{letter-spacing:0.087998px;}
.ls2_c01156{letter-spacing:0.098482px;}
.ls1_c01156{letter-spacing:0.104482px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01156{word-spacing:-26.575517px;}
.ws5_c01156{word-spacing:-26.487518px;}
.ws2_c01156{word-spacing:0.000000px;}
.ws6_c01156{word-spacing:0.043999px;}
.ws3_c01156{word-spacing:0.053933px;}
.ws7_c01156{word-spacing:0.056767px;}
.ws4_c01156{word-spacing:0.070416px;}
.ws0_c01156{word-spacing:0.175997px;}
.ws8_c01156{word-spacing:0.213446px;}
._1_c01156{width:1.028438px;}
._0_c01156{width:53.635025px;}
.fc5_c01156{color:rgb(0,0,207);}
.fc4_c01156{color:rgb(207,92,0);}
.fc3_c01156{color:rgb(79,153,5);}
.fc2_c01156{color:rgb(33,74,135);}
.fc1_c01156{color:rgb(0,0,0);}
.fc0_c01156{color:rgb(143,89,3);}
.fs0_c01156{font-size:43.999200px;}
.fs1_c01156{font-size:59.775600px;}
.y0_c01156{bottom:0.000000px;}
.y2d_c01156{bottom:44.250000px;}
.y2c_c01156{bottom:370.822500px;}
.y2b_c01156{bottom:387.259500px;}
.y2a_c01156{bottom:403.698000px;}
.y29_c01156{bottom:420.136500px;}
.y28_c01156{bottom:436.575000px;}
.y27_c01156{bottom:453.013500px;}
.y26_c01156{bottom:469.452000px;}
.y25_c01156{bottom:485.890500px;}
.y24_c01156{bottom:502.329000px;}
.y23_c01156{bottom:518.767500px;}
.y22_c01156{bottom:535.206000px;}
.y21_c01156{bottom:568.081500px;}
.y20_c01156{bottom:584.520000px;}
.y1f_c01156{bottom:600.958500px;}
.y1e_c01156{bottom:633.835500px;}
.y1d_c01156{bottom:650.274000px;}
.y1c_c01156{bottom:666.712500px;}
.y1b_c01156{bottom:683.151000px;}
.y1a_c01156{bottom:699.589500px;}
.y19_c01156{bottom:716.028000px;}
.y18_c01156{bottom:732.465000px;}
.y17_c01156{bottom:748.903500px;}
.y16_c01156{bottom:765.342000px;}
.y15_c01156{bottom:781.780500px;}
.y14_c01156{bottom:798.219000px;}
.y13_c01156{bottom:814.657500px;}
.y12_c01156{bottom:831.096000px;}
.y11_c01156{bottom:847.534500px;}
.y10_c01156{bottom:863.973000px;}
.yf_c01156{bottom:880.411500px;}
.ye_c01156{bottom:896.848500px;}
.yd_c01156{bottom:913.287000px;}
.yc_c01156{bottom:929.725500px;}
.yb_c01156{bottom:946.164000px;}
.ya_c01156{bottom:962.602500px;}
.y9_c01156{bottom:979.041000px;}
.y8_c01156{bottom:995.479500px;}
.y7_c01156{bottom:1011.918000px;}
.y6_c01156{bottom:1028.356500px;}
.y5_c01156{bottom:1044.795000px;}
.y4_c01156{bottom:1061.232000px;}
.y3_c01156{bottom:1110.547500px;}
.y2_c01156{bottom:1126.986000px;}
.y1_c01156{bottom:1143.424500px;}
.h2_c01156{height:35.190766px;}
.h3_c01156{height:36.007158px;}
.h4_c01156{height:52.332837px;}
.h0_c01156{height:1262.835000px;}
.h1_c01156{height:1263.000000px;}
.w0_c01156{width:892.920000px;}
.w1_c01156{width:893.250000px;}
.x0_c01156{left:0.000000px;}
.x1_c01156{left:137.122500px;}
.x2_c01156{left:143.770500px;}
.x6_c01156{left:177.007500px;}
.x5_c01156{left:230.185500px;}
.x3_c01156{left:243.480000px;}
.x4_c01156{left:276.715500px;}
.x7_c01156{left:435.249000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls3_c01156{letter-spacing:0.000000pt;}
.ls0_c01156{letter-spacing:0.078221pt;}
.ls2_c01156{letter-spacing:0.087539pt;}
.ls1_c01156{letter-spacing:0.092873pt;}
.ws1_c01156{word-spacing:-23.622682pt;}
.ws5_c01156{word-spacing:-23.544461pt;}
.ws2_c01156{word-spacing:0.000000pt;}
.ws6_c01156{word-spacing:0.039110pt;}
.ws3_c01156{word-spacing:0.047940pt;}
.ws7_c01156{word-spacing:0.050460pt;}
.ws4_c01156{word-spacing:0.062592pt;}
.ws0_c01156{word-spacing:0.156442pt;}
.ws8_c01156{word-spacing:0.189730pt;}
._1_c01156{width:0.914167pt;}
._0_c01156{width:47.675578pt;}
.fs0_c01156{font-size:39.110400pt;}
.fs1_c01156{font-size:53.133867pt;}
.y0_c01156{bottom:0.000000pt;}
.y2d_c01156{bottom:39.333333pt;}
.y2c_c01156{bottom:329.620000pt;}
.y2b_c01156{bottom:344.230667pt;}
.y2a_c01156{bottom:358.842667pt;}
.y29_c01156{bottom:373.454667pt;}
.y28_c01156{bottom:388.066667pt;}
.y27_c01156{bottom:402.678667pt;}
.y26_c01156{bottom:417.290667pt;}
.y25_c01156{bottom:431.902667pt;}
.y24_c01156{bottom:446.514667pt;}
.y23_c01156{bottom:461.126667pt;}
.y22_c01156{bottom:475.738667pt;}
.y21_c01156{bottom:504.961333pt;}
.y20_c01156{bottom:519.573333pt;}
.y1f_c01156{bottom:534.185333pt;}
.y1e_c01156{bottom:563.409333pt;}
.y1d_c01156{bottom:578.021333pt;}
.y1c_c01156{bottom:592.633333pt;}
.y1b_c01156{bottom:607.245333pt;}
.y1a_c01156{bottom:621.857333pt;}
.y19_c01156{bottom:636.469333pt;}
.y18_c01156{bottom:651.080000pt;}
.y17_c01156{bottom:665.692000pt;}
.y16_c01156{bottom:680.304000pt;}
.y15_c01156{bottom:694.916000pt;}
.y14_c01156{bottom:709.528000pt;}
.y13_c01156{bottom:724.140000pt;}
.y12_c01156{bottom:738.752000pt;}
.y11_c01156{bottom:753.364000pt;}
.y10_c01156{bottom:767.976000pt;}
.yf_c01156{bottom:782.588000pt;}
.ye_c01156{bottom:797.198667pt;}
.yd_c01156{bottom:811.810667pt;}
.yc_c01156{bottom:826.422667pt;}
.yb_c01156{bottom:841.034667pt;}
.ya_c01156{bottom:855.646667pt;}
.y9_c01156{bottom:870.258667pt;}
.y8_c01156{bottom:884.870667pt;}
.y7_c01156{bottom:899.482667pt;}
.y6_c01156{bottom:914.094667pt;}
.y5_c01156{bottom:928.706667pt;}
.y4_c01156{bottom:943.317333pt;}
.y3_c01156{bottom:987.153333pt;}
.y2_c01156{bottom:1001.765333pt;}
.y1_c01156{bottom:1016.377333pt;}
.h2_c01156{height:31.280681pt;}
.h3_c01156{height:32.006363pt;}
.h4_c01156{height:46.518078pt;}
.h0_c01156{height:1122.520000pt;}
.h1_c01156{height:1122.666667pt;}
.w0_c01156{width:793.706667pt;}
.w1_c01156{width:794.000000pt;}
.x0_c01156{left:0.000000pt;}
.x1_c01156{left:121.886667pt;}
.x2_c01156{left:127.796000pt;}
.x6_c01156{left:157.340000pt;}
.x5_c01156{left:204.609333pt;}
.x3_c01156{left:216.426667pt;}
.x4_c01156{left:245.969333pt;}
.x7_c01156{left:386.888000pt;}
}





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

.ir_c01157:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_1f9b62934a735c5f64f672d1.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01157;src:url('chunks/assets/font_a67ef67a366a35d4485c1ea8.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01157;src:url('chunks/assets/font_3000ee64531f47b7c83ce191.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01157;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01157;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.ls3_c01157{letter-spacing:0.000000px;}
.ls0_c01157{letter-spacing:0.087998px;}
.ls2_c01157{letter-spacing:0.098482px;}
.ls1_c01157{letter-spacing:0.104482px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01157{word-spacing:-33.713438px;}
.ws2_c01157{word-spacing:-26.575517px;}
.ws10_c01157{word-spacing:-26.487518px;}
.wsb_c01157{word-spacing:-21.553319px;}
.wsa_c01157{word-spacing:-21.519216px;}
.ws7_c01157{word-spacing:-18.769538px;}
.ws9_c01157{word-spacing:-16.019861px;}
.ws6_c01157{word-spacing:-14.943900px;}
.wsc_c01157{word-spacing:-14.107042px;}
.ws5_c01157{word-spacing:-12.433325px;}
.wsd_c01157{word-spacing:-12.074671px;}
.ws1_c01157{word-spacing:-9.988424px;}
.ws3_c01157{word-spacing:-9.987499px;}
.ws4_c01157{word-spacing:-8.607686px;}
.ws8_c01157{word-spacing:-4.536144px;}
.ws14_c01157{word-spacing:0.000000px;}
.ws11_c01157{word-spacing:0.043999px;}
.ws17_c01157{word-spacing:0.056767px;}
.ws15_c01157{word-spacing:0.073250px;}
.ws16_c01157{word-spacing:0.083734px;}
.wsf_c01157{word-spacing:0.175997px;}
.ws18_c01157{word-spacing:0.202963px;}
.ws12_c01157{word-spacing:0.213446px;}
.ws13_c01157{word-spacing:0.219446px;}
.ws0_c01157{word-spacing:43.038600px;}
._4_c01157{margin-left:-3.825638px;}
._0_c01157{margin-left:-1.549390px;}
._5_c01157{width:1.005737px;}
._2_c01157{width:19.930500px;}
._1_c01157{width:32.619602px;}
._3_c01157{width:40.109428px;}
._7_c01157{width:53.283031px;}
._6_c01157{width:79.858548px;}
._8_c01157{width:133.452408px;}
.fc6_c01157{color:rgb(0,0,207);}
.fc5_c01157{color:rgb(79,153,5);}
.fc3_c01157{color:rgb(33,74,135);}
.fc2_c01157{color:rgb(143,89,3);}
.fc4_c01157{color:rgb(207,92,0);}
.fc1_c01157{color:rgb(6,69,173);}
.fc0_c01157{color:rgb(0,0,0);}
.fs2_c01157{font-size:43.999200px;}
.fs1_c01157{font-size:59.775600px;}
.fs0_c01157{font-size:86.077200px;}
.y0_c01157{bottom:0.000000px;}
.y20_c01157{bottom:44.250000px;}
.y1f_c01157{bottom:86.982000px;}
.y1e_c01157{bottom:103.420500px;}
.y1d_c01157{bottom:119.859000px;}
.y1c_c01157{bottom:136.297500px;}
.y1b_c01157{bottom:152.736000px;}
.y1a_c01157{bottom:169.174500px;}
.y19_c01157{bottom:185.613000px;}
.y18_c01157{bottom:202.051500px;}
.y17_c01157{bottom:218.490000px;}
.y16_c01157{bottom:234.927000px;}
.y15_c01157{bottom:251.365500px;}
.y14_c01157{bottom:267.804000px;}
.y13_c01157{bottom:284.242500px;}
.y12_c01157{bottom:300.681000px;}
.y11_c01157{bottom:333.558000px;}
.y10_c01157{bottom:349.996500px;}
.yf_c01157{bottom:399.310500px;}
.ye_c01157{bottom:415.749000px;}
.yd_c01157{bottom:431.814000px;}
.yc_c01157{bottom:477.118500px;}
.yb_c01157{bottom:495.051000px;}
.ya_c01157{bottom:512.983500px;}
.y9_c01157{bottom:530.916000px;}
.y8_c01157{bottom:548.848500px;}
.y7_c01157{bottom:566.781000px;}
.y6_c01157{bottom:593.728500px;}
.y5_c01157{bottom:620.674500px;}
.y4_c01157{bottom:638.607000px;}
.y3_c01157{bottom:665.553000px;}
.y2_c01157{bottom:692.500500px;}
.y1_c01157{bottom:734.839500px;}
.h5_c01157{height:35.190766px;}
.h6_c01157{height:36.007158px;}
.h3_c01157{height:40.511979px;}
.h4_c01157{height:52.332837px;}
.h2_c01157{height:58.337477px;}
.h0_c01157{height:1262.835000px;}
.h1_c01157{height:1263.000000px;}
.w0_c01157{width:892.920000px;}
.w1_c01157{width:893.250000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:127.558500px;}
.x2_c01157{left:137.122500px;}
.x3_c01157{left:143.770500px;}
.x4_c01157{left:435.249000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls3_c01157{letter-spacing:0.000000pt;}
.ls0_c01157{letter-spacing:0.078221pt;}
.ls2_c01157{letter-spacing:0.087539pt;}
.ls1_c01157{letter-spacing:0.092873pt;}
.wse_c01157{word-spacing:-29.967501pt;}
.ws2_c01157{word-spacing:-23.622682pt;}
.ws10_c01157{word-spacing:-23.544461pt;}
.wsb_c01157{word-spacing:-19.158506pt;}
.wsa_c01157{word-spacing:-19.128192pt;}
.ws7_c01157{word-spacing:-16.684034pt;}
.ws9_c01157{word-spacing:-14.239876pt;}
.ws6_c01157{word-spacing:-13.283467pt;}
.wsc_c01157{word-spacing:-12.539593pt;}
.ws5_c01157{word-spacing:-11.051844pt;}
.wsd_c01157{word-spacing:-10.733041pt;}
.ws1_c01157{word-spacing:-8.878599pt;}
.ws3_c01157{word-spacing:-8.877777pt;}
.ws4_c01157{word-spacing:-7.651277pt;}
.ws8_c01157{word-spacing:-4.032128pt;}
.ws14_c01157{word-spacing:0.000000pt;}
.ws11_c01157{word-spacing:0.039110pt;}
.ws17_c01157{word-spacing:0.050460pt;}
.ws15_c01157{word-spacing:0.065111pt;}
.ws16_c01157{word-spacing:0.074430pt;}
.wsf_c01157{word-spacing:0.156442pt;}
.ws18_c01157{word-spacing:0.180412pt;}
.ws12_c01157{word-spacing:0.189730pt;}
.ws13_c01157{word-spacing:0.195063pt;}
.ws0_c01157{word-spacing:38.256533pt;}
._4_c01157{margin-left:-3.400567pt;}
._0_c01157{margin-left:-1.377235pt;}
._5_c01157{width:0.893988pt;}
._2_c01157{width:17.716000pt;}
._1_c01157{width:28.995202pt;}
._3_c01157{width:35.652825pt;}
._7_c01157{width:47.362694pt;}
._6_c01157{width:70.985376pt;}
._8_c01157{width:118.624363pt;}
.fs2_c01157{font-size:39.110400pt;}
.fs1_c01157{font-size:53.133867pt;}
.fs0_c01157{font-size:76.513067pt;}
.y0_c01157{bottom:0.000000pt;}
.y20_c01157{bottom:39.333333pt;}
.y1f_c01157{bottom:77.317333pt;}
.y1e_c01157{bottom:91.929333pt;}
.y1d_c01157{bottom:106.541333pt;}
.y1c_c01157{bottom:121.153333pt;}
.y1b_c01157{bottom:135.765333pt;}
.y1a_c01157{bottom:150.377333pt;}
.y19_c01157{bottom:164.989333pt;}
.y18_c01157{bottom:179.601333pt;}
.y17_c01157{bottom:194.213333pt;}
.y16_c01157{bottom:208.824000pt;}
.y15_c01157{bottom:223.436000pt;}
.y14_c01157{bottom:238.048000pt;}
.y13_c01157{bottom:252.660000pt;}
.y12_c01157{bottom:267.272000pt;}
.y11_c01157{bottom:296.496000pt;}
.y10_c01157{bottom:311.108000pt;}
.yf_c01157{bottom:354.942667pt;}
.ye_c01157{bottom:369.554667pt;}
.yd_c01157{bottom:383.834667pt;}
.yc_c01157{bottom:424.105333pt;}
.yb_c01157{bottom:440.045333pt;}
.ya_c01157{bottom:455.985333pt;}
.y9_c01157{bottom:471.925333pt;}
.y8_c01157{bottom:487.865333pt;}
.y7_c01157{bottom:503.805333pt;}
.y6_c01157{bottom:527.758667pt;}
.y5_c01157{bottom:551.710667pt;}
.y4_c01157{bottom:567.650667pt;}
.y3_c01157{bottom:591.602667pt;}
.y2_c01157{bottom:615.556000pt;}
.y1_c01157{bottom:653.190667pt;}
.h5_c01157{height:31.280681pt;}
.h6_c01157{height:32.006363pt;}
.h3_c01157{height:36.010648pt;}
.h4_c01157{height:46.518078pt;}
.h2_c01157{height:51.855535pt;}
.h0_c01157{height:1122.520000pt;}
.h1_c01157{height:1122.666667pt;}
.w0_c01157{width:793.706667pt;}
.w1_c01157{width:794.000000pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:113.385333pt;}
.x2_c01157{left:121.886667pt;}
.x3_c01157{left:127.796000pt;}
.x4_c01157{left:386.888000pt;}
}





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

.ir_c01158:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_5bf11878c2d53a5008f3a380.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01158;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01158;src:url('chunks/assets/font_6d5ba4c0339447bd3bacf1c4.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01158;src:url('chunks/assets/font_8bf86f035720e703e5873c3e.woff2')format("woff");}.ff4_c01158{font-family:ff4_c01158;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01158;src:url('chunks/assets/font_fa34e54b40d8eef9fd48ed36.woff2')format("woff");}.ff5_c01158{font-family:ff5_c01158;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01158{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls4_c01158{letter-spacing:0.000000px;}
.ls0_c01158{letter-spacing:0.087998px;}
.ls1_c01158{letter-spacing:0.098482px;}
.ls3_c01158{letter-spacing:0.104482px;}
.ls2_c01158{letter-spacing:26.690482px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01158{word-spacing:-26.575517px;}
.ws5_c01158{word-spacing:-26.487518px;}
.ws11_c01158{word-spacing:-21.553319px;}
.ws10_c01158{word-spacing:-21.519216px;}
.wsd_c01158{word-spacing:-18.769538px;}
.wsf_c01158{word-spacing:-17.633802px;}
.wsc_c01158{word-spacing:-14.943900px;}
.wsb_c01158{word-spacing:-14.405920px;}
.wsa_c01158{word-spacing:-10.640057px;}
.ws8_c01158{word-spacing:-9.988424px;}
.ws9_c01158{word-spacing:-9.987499px;}
.wse_c01158{word-spacing:-7.686144px;}
.ws4_c01158{word-spacing:0.000000px;}
.ws1_c01158{word-spacing:0.043999px;}
.ws0_c01158{word-spacing:0.073250px;}
.ws6_c01158{word-spacing:0.213446px;}
.ws2_c01158{word-spacing:0.219446px;}
.ws7_c01158{word-spacing:43.038600px;}
._3_c01158{margin-left:-1.549390px;}
._2_c01158{width:1.090656px;}
._5_c01158{width:19.930500px;}
._4_c01158{width:28.675973px;}
._1_c01158{width:53.635025px;}
._0_c01158{width:79.858548px;}
.fc5_c01158{color:rgb(79,153,5);}
.fc4_c01158{color:rgb(143,89,3);}
.fc6_c01158{color:rgb(6,69,173);}
.fc3_c01158{color:rgb(207,92,0);}
.fc2_c01158{color:rgb(0,0,0);}
.fc1_c01158{color:rgb(0,0,207);}
.fc0_c01158{color:rgb(33,74,135);}
.fs0_c01158{font-size:43.999200px;}
.fs2_c01158{font-size:59.775600px;}
.fs1_c01158{font-size:86.077200px;}
.y0_c01158{bottom:0.000000px;}
.y20_c01158{bottom:44.250000px;}
.y1f_c01158{bottom:82.051500px;}
.y1e_c01158{bottom:99.984000px;}
.y1d_c01158{bottom:126.823500px;}
.y1c_c01158{bottom:153.664500px;}
.y1b_c01158{bottom:171.597000px;}
.y1a_c01158{bottom:198.438000px;}
.y19_c01158{bottom:225.277500px;}
.y18_c01158{bottom:267.492000px;}
.y17_c01158{bottom:732.465000px;}
.y16_c01158{bottom:748.903500px;}
.y15_c01158{bottom:765.342000px;}
.y14_c01158{bottom:781.780500px;}
.y13_c01158{bottom:798.219000px;}
.y12_c01158{bottom:814.657500px;}
.y11_c01158{bottom:831.096000px;}
.y10_c01158{bottom:847.534500px;}
.yf_c01158{bottom:863.973000px;}
.ye_c01158{bottom:880.411500px;}
.yd_c01158{bottom:896.848500px;}
.yc_c01158{bottom:929.725500px;}
.yb_c01158{bottom:946.164000px;}
.ya_c01158{bottom:962.602500px;}
.y9_c01158{bottom:995.479500px;}
.y8_c01158{bottom:1011.918000px;}
.y7_c01158{bottom:1028.356500px;}
.y6_c01158{bottom:1044.795000px;}
.y5_c01158{bottom:1061.232000px;}
.y4_c01158{bottom:1077.670500px;}
.y3_c01158{bottom:1094.109000px;}
.y2_c01158{bottom:1143.424500px;}
.y1_c01158{bottom:1159.863000px;}
.h3_c01158{height:35.190766px;}
.h2_c01158{height:36.007158px;}
.h5_c01158{height:40.511979px;}
.h6_c01158{height:52.332837px;}
.h4_c01158{height:58.337477px;}
.h0_c01158{height:1262.835000px;}
.h1_c01158{height:1263.000000px;}
.w0_c01158{width:892.920000px;}
.w1_c01158{width:893.250000px;}
.x0_c01158{left:0.000000px;}
.x4_c01158{left:127.558500px;}
.x2_c01158{left:137.122500px;}
.x1_c01158{left:143.770500px;}
.x3_c01158{left:177.007500px;}
.x5_c01158{left:435.249000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls4_c01158{letter-spacing:0.000000pt;}
.ls0_c01158{letter-spacing:0.078221pt;}
.ls1_c01158{letter-spacing:0.087539pt;}
.ls3_c01158{letter-spacing:0.092873pt;}
.ls2_c01158{letter-spacing:23.724873pt;}
.ws3_c01158{word-spacing:-23.622682pt;}
.ws5_c01158{word-spacing:-23.544461pt;}
.ws11_c01158{word-spacing:-19.158506pt;}
.ws10_c01158{word-spacing:-19.128192pt;}
.wsd_c01158{word-spacing:-16.684034pt;}
.wsf_c01158{word-spacing:-15.674491pt;}
.wsc_c01158{word-spacing:-13.283467pt;}
.wsb_c01158{word-spacing:-12.805262pt;}
.wsa_c01158{word-spacing:-9.457828pt;}
.ws8_c01158{word-spacing:-8.878599pt;}
.ws9_c01158{word-spacing:-8.877777pt;}
.wse_c01158{word-spacing:-6.832128pt;}
.ws4_c01158{word-spacing:0.000000pt;}
.ws1_c01158{word-spacing:0.039110pt;}
.ws0_c01158{word-spacing:0.065111pt;}
.ws6_c01158{word-spacing:0.189730pt;}
.ws2_c01158{word-spacing:0.195063pt;}
.ws7_c01158{word-spacing:38.256533pt;}
._3_c01158{margin-left:-1.377235pt;}
._2_c01158{width:0.969472pt;}
._5_c01158{width:17.716000pt;}
._4_c01158{width:25.489754pt;}
._1_c01158{width:47.675578pt;}
._0_c01158{width:70.985376pt;}
.fs0_c01158{font-size:39.110400pt;}
.fs2_c01158{font-size:53.133867pt;}
.fs1_c01158{font-size:76.513067pt;}
.y0_c01158{bottom:0.000000pt;}
.y20_c01158{bottom:39.333333pt;}
.y1f_c01158{bottom:72.934667pt;}
.y1e_c01158{bottom:88.874667pt;}
.y1d_c01158{bottom:112.732000pt;}
.y1c_c01158{bottom:136.590667pt;}
.y1b_c01158{bottom:152.530667pt;}
.y1a_c01158{bottom:176.389333pt;}
.y19_c01158{bottom:200.246667pt;}
.y18_c01158{bottom:237.770667pt;}
.y17_c01158{bottom:651.080000pt;}
.y16_c01158{bottom:665.692000pt;}
.y15_c01158{bottom:680.304000pt;}
.y14_c01158{bottom:694.916000pt;}
.y13_c01158{bottom:709.528000pt;}
.y12_c01158{bottom:724.140000pt;}
.y11_c01158{bottom:738.752000pt;}
.y10_c01158{bottom:753.364000pt;}
.yf_c01158{bottom:767.976000pt;}
.ye_c01158{bottom:782.588000pt;}
.yd_c01158{bottom:797.198667pt;}
.yc_c01158{bottom:826.422667pt;}
.yb_c01158{bottom:841.034667pt;}
.ya_c01158{bottom:855.646667pt;}
.y9_c01158{bottom:884.870667pt;}
.y8_c01158{bottom:899.482667pt;}
.y7_c01158{bottom:914.094667pt;}
.y6_c01158{bottom:928.706667pt;}
.y5_c01158{bottom:943.317333pt;}
.y4_c01158{bottom:957.929333pt;}
.y3_c01158{bottom:972.541333pt;}
.y2_c01158{bottom:1016.377333pt;}
.y1_c01158{bottom:1030.989333pt;}
.h3_c01158{height:31.280681pt;}
.h2_c01158{height:32.006363pt;}
.h5_c01158{height:36.010648pt;}
.h6_c01158{height:46.518078pt;}
.h4_c01158{height:51.855535pt;}
.h0_c01158{height:1122.520000pt;}
.h1_c01158{height:1122.666667pt;}
.w0_c01158{width:793.706667pt;}
.w1_c01158{width:794.000000pt;}
.x0_c01158{left:0.000000pt;}
.x4_c01158{left:113.385333pt;}
.x2_c01158{left:121.886667pt;}
.x1_c01158{left:127.796000pt;}
.x3_c01158{left:157.340000pt;}
.x5_c01158{left:386.888000pt;}
}





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

.ir_c01159:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_3b634c4d3f6b681f1cb03506.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01159;src:url('chunks/assets/font_ed579ecef4fca8427a8176f4.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01159;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01159;src:url('chunks/assets/font_4afbb69be8c349f54afbf079.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls4_c01159{letter-spacing:0.000000px;}
.ls1_c01159{letter-spacing:0.087998px;}
.ls2_c01159{letter-spacing:0.098482px;}
.ls0_c01159{letter-spacing:0.104482px;}
.ls3_c01159{letter-spacing:26.690482px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01159{word-spacing:-33.713438px;}
.ws6_c01159{word-spacing:-26.575517px;}
.ws5_c01159{word-spacing:-26.487518px;}
.ws2_c01159{word-spacing:-18.769538px;}
.ws0_c01159{word-spacing:-14.107042px;}
.ws1_c01159{word-spacing:-12.074671px;}
.wsa_c01159{word-spacing:0.000000px;}
.ws7_c01159{word-spacing:0.043999px;}
.wsd_c01159{word-spacing:0.056767px;}
.wsb_c01159{word-spacing:0.073250px;}
.wsc_c01159{word-spacing:0.083734px;}
.ws4_c01159{word-spacing:0.175997px;}
.wse_c01159{word-spacing:0.202963px;}
.ws8_c01159{word-spacing:0.213446px;}
.ws9_c01159{word-spacing:0.219446px;}
._2_c01159{margin-left:-3.825638px;}
._3_c01159{width:1.005737px;}
._0_c01159{width:20.742133px;}
._1_c01159{width:40.109428px;}
._5_c01159{width:53.283031px;}
._4_c01159{width:79.858548px;}
._6_c01159{width:133.452408px;}
.fc5_c01159{color:rgb(0,0,207);}
.fc4_c01159{color:rgb(79,153,5);}
.fc3_c01159{color:rgb(207,92,0);}
.fc2_c01159{color:rgb(33,74,135);}
.fc1_c01159{color:rgb(143,89,3);}
.fc0_c01159{color:rgb(0,0,0);}
.fs1_c01159{font-size:43.999200px;}
.fs0_c01159{font-size:59.775600px;}
.y0_c01159{bottom:0.000000px;}
.y2f_c01159{bottom:44.250000px;}
.y2e_c01159{bottom:96.919500px;}
.y2d_c01159{bottom:113.358000px;}
.y2c_c01159{bottom:129.796500px;}
.y2b_c01159{bottom:146.235000px;}
.y2a_c01159{bottom:162.673500px;}
.y29_c01159{bottom:179.112000px;}
.y28_c01159{bottom:195.550500px;}
.y27_c01159{bottom:211.989000px;}
.y26_c01159{bottom:228.427500px;}
.y25_c01159{bottom:244.866000px;}
.y24_c01159{bottom:261.304500px;}
.y23_c01159{bottom:294.180000px;}
.y22_c01159{bottom:310.618500px;}
.y21_c01159{bottom:327.057000px;}
.y20_c01159{bottom:359.934000px;}
.y1f_c01159{bottom:376.372500px;}
.y1e_c01159{bottom:392.811000px;}
.y1d_c01159{bottom:409.249500px;}
.y1c_c01159{bottom:425.688000px;}
.y1b_c01159{bottom:442.125000px;}
.y1a_c01159{bottom:458.563500px;}
.y19_c01159{bottom:507.879000px;}
.y18_c01159{bottom:524.317500px;}
.y17_c01159{bottom:540.756000px;}
.y16_c01159{bottom:557.194500px;}
.y15_c01159{bottom:573.633000px;}
.y14_c01159{bottom:590.071500px;}
.y13_c01159{bottom:606.508500px;}
.y12_c01159{bottom:622.947000px;}
.y11_c01159{bottom:639.385500px;}
.y10_c01159{bottom:655.824000px;}
.yf_c01159{bottom:672.262500px;}
.ye_c01159{bottom:688.701000px;}
.yd_c01159{bottom:705.139500px;}
.yc_c01159{bottom:721.578000px;}
.yb_c01159{bottom:738.016500px;}
.ya_c01159{bottom:754.455000px;}
.y9_c01159{bottom:787.330500px;}
.y8_c01159{bottom:803.769000px;}
.y7_c01159{bottom:853.084500px;}
.y6_c01159{bottom:869.523000px;}
.y5_c01159{bottom:885.588000px;}
.y4_c01159{bottom:1106.064000px;}
.y3_c01159{bottom:1123.998000px;}
.y2_c01159{bottom:1141.930500px;}
.y1_c01159{bottom:1159.863000px;}
.h3_c01159{height:35.190766px;}
.h4_c01159{height:36.007158px;}
.h2_c01159{height:52.332837px;}
.h0_c01159{height:1262.835000px;}
.h1_c01159{height:1263.000000px;}
.w0_c01159{width:892.920000px;}
.w1_c01159{width:893.250000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:127.558500px;}
.x2_c01159{left:137.122500px;}
.x3_c01159{left:143.770500px;}
.x4_c01159{left:177.007500px;}
.x5_c01159{left:435.249000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls4_c01159{letter-spacing:0.000000pt;}
.ls1_c01159{letter-spacing:0.078221pt;}
.ls2_c01159{letter-spacing:0.087539pt;}
.ls0_c01159{letter-spacing:0.092873pt;}
.ls3_c01159{letter-spacing:23.724873pt;}
.ws3_c01159{word-spacing:-29.967501pt;}
.ws6_c01159{word-spacing:-23.622682pt;}
.ws5_c01159{word-spacing:-23.544461pt;}
.ws2_c01159{word-spacing:-16.684034pt;}
.ws0_c01159{word-spacing:-12.539593pt;}
.ws1_c01159{word-spacing:-10.733041pt;}
.wsa_c01159{word-spacing:0.000000pt;}
.ws7_c01159{word-spacing:0.039110pt;}
.wsd_c01159{word-spacing:0.050460pt;}
.wsb_c01159{word-spacing:0.065111pt;}
.wsc_c01159{word-spacing:0.074430pt;}
.ws4_c01159{word-spacing:0.156442pt;}
.wse_c01159{word-spacing:0.180412pt;}
.ws8_c01159{word-spacing:0.189730pt;}
.ws9_c01159{word-spacing:0.195063pt;}
._2_c01159{margin-left:-3.400567pt;}
._3_c01159{width:0.893988pt;}
._0_c01159{width:18.437452pt;}
._1_c01159{width:35.652825pt;}
._5_c01159{width:47.362694pt;}
._4_c01159{width:70.985376pt;}
._6_c01159{width:118.624363pt;}
.fs1_c01159{font-size:39.110400pt;}
.fs0_c01159{font-size:53.133867pt;}
.y0_c01159{bottom:0.000000pt;}
.y2f_c01159{bottom:39.333333pt;}
.y2e_c01159{bottom:86.150667pt;}
.y2d_c01159{bottom:100.762667pt;}
.y2c_c01159{bottom:115.374667pt;}
.y2b_c01159{bottom:129.986667pt;}
.y2a_c01159{bottom:144.598667pt;}
.y29_c01159{bottom:159.210667pt;}
.y28_c01159{bottom:173.822667pt;}
.y27_c01159{bottom:188.434667pt;}
.y26_c01159{bottom:203.046667pt;}
.y25_c01159{bottom:217.658667pt;}
.y24_c01159{bottom:232.270667pt;}
.y23_c01159{bottom:261.493333pt;}
.y22_c01159{bottom:276.105333pt;}
.y21_c01159{bottom:290.717333pt;}
.y20_c01159{bottom:319.941333pt;}
.y1f_c01159{bottom:334.553333pt;}
.y1e_c01159{bottom:349.165333pt;}
.y1d_c01159{bottom:363.777333pt;}
.y1c_c01159{bottom:378.389333pt;}
.y1b_c01159{bottom:393.000000pt;}
.y1a_c01159{bottom:407.612000pt;}
.y19_c01159{bottom:451.448000pt;}
.y18_c01159{bottom:466.060000pt;}
.y17_c01159{bottom:480.672000pt;}
.y16_c01159{bottom:495.284000pt;}
.y15_c01159{bottom:509.896000pt;}
.y14_c01159{bottom:524.508000pt;}
.y13_c01159{bottom:539.118667pt;}
.y12_c01159{bottom:553.730667pt;}
.y11_c01159{bottom:568.342667pt;}
.y10_c01159{bottom:582.954667pt;}
.yf_c01159{bottom:597.566667pt;}
.ye_c01159{bottom:612.178667pt;}
.yd_c01159{bottom:626.790667pt;}
.yc_c01159{bottom:641.402667pt;}
.yb_c01159{bottom:656.014667pt;}
.ya_c01159{bottom:670.626667pt;}
.y9_c01159{bottom:699.849333pt;}
.y8_c01159{bottom:714.461333pt;}
.y7_c01159{bottom:758.297333pt;}
.y6_c01159{bottom:772.909333pt;}
.y5_c01159{bottom:787.189333pt;}
.y4_c01159{bottom:983.168000pt;}
.y3_c01159{bottom:999.109333pt;}
.y2_c01159{bottom:1015.049333pt;}
.y1_c01159{bottom:1030.989333pt;}
.h3_c01159{height:31.280681pt;}
.h4_c01159{height:32.006363pt;}
.h2_c01159{height:46.518078pt;}
.h0_c01159{height:1122.520000pt;}
.h1_c01159{height:1122.666667pt;}
.w0_c01159{width:793.706667pt;}
.w1_c01159{width:794.000000pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:113.385333pt;}
.x2_c01159{left:121.886667pt;}
.x3_c01159{left:127.796000pt;}
.x4_c01159{left:157.340000pt;}
.x5_c01159{left:386.888000pt;}
}





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

.ir_c01160:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_7f8ad588e68b4a5d7cca0777.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01160;src:url('chunks/assets/font_ea07b84f8c22fd8463ceba7d.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01160;src:url('chunks/assets/font_55e75101504e1612edc8e1b3.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01160;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01160{font-family:ff4_c01160;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01160;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01160{font-family:ff5_c01160;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01160{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls3_c01160{letter-spacing:0.000000px;}
.ls0_c01160{letter-spacing:0.087998px;}
.ls2_c01160{letter-spacing:0.098482px;}
.ls1_c01160{letter-spacing:0.104482px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01160{word-spacing:-33.713438px;}
.ws2_c01160{word-spacing:-26.575517px;}
.ws10_c01160{word-spacing:-26.487518px;}
.wsb_c01160{word-spacing:-21.553319px;}
.wsa_c01160{word-spacing:-21.519216px;}
.ws7_c01160{word-spacing:-18.769538px;}
.ws5_c01160{word-spacing:-18.649987px;}
.ws9_c01160{word-spacing:-17.633802px;}
.ws6_c01160{word-spacing:-14.943900px;}
.ws4_c01160{word-spacing:-14.824349px;}
.wsc_c01160{word-spacing:-14.107042px;}
.wsd_c01160{word-spacing:-12.074671px;}
.ws1_c01160{word-spacing:-9.988424px;}
.ws3_c01160{word-spacing:-9.987499px;}
.ws8_c01160{word-spacing:-7.686144px;}
.ws14_c01160{word-spacing:0.000000px;}
.ws11_c01160{word-spacing:0.043999px;}
.ws17_c01160{word-spacing:0.056767px;}
.ws15_c01160{word-spacing:0.073250px;}
.ws16_c01160{word-spacing:0.083734px;}
.wsf_c01160{word-spacing:0.175997px;}
.ws18_c01160{word-spacing:0.202963px;}
.ws12_c01160{word-spacing:0.213446px;}
.ws13_c01160{word-spacing:0.219446px;}
.ws0_c01160{word-spacing:43.038600px;}
._3_c01160{margin-left:-3.825638px;}
._0_c01160{margin-left:-1.549390px;}
._4_c01160{width:1.005737px;}
._1_c01160{width:20.224265px;}
._2_c01160{width:40.109428px;}
._6_c01160{width:53.283031px;}
._5_c01160{width:79.858548px;}
._7_c01160{width:133.452408px;}
.fc6_c01160{color:rgb(0,0,207);}
.fc5_c01160{color:rgb(79,153,5);}
.fc3_c01160{color:rgb(33,74,135);}
.fc2_c01160{color:rgb(143,89,3);}
.fc4_c01160{color:rgb(207,92,0);}
.fc1_c01160{color:rgb(6,69,173);}
.fc0_c01160{color:rgb(0,0,0);}
.fs2_c01160{font-size:43.999200px;}
.fs1_c01160{font-size:59.775600px;}
.fs0_c01160{font-size:86.077200px;}
.y0_c01160{bottom:0.000000px;}
.y20_c01160{bottom:44.250000px;}
.y1f_c01160{bottom:86.982000px;}
.y1e_c01160{bottom:103.420500px;}
.y1d_c01160{bottom:119.859000px;}
.y1c_c01160{bottom:136.297500px;}
.y1b_c01160{bottom:152.736000px;}
.y1a_c01160{bottom:169.174500px;}
.y19_c01160{bottom:185.613000px;}
.y18_c01160{bottom:202.051500px;}
.y17_c01160{bottom:218.490000px;}
.y16_c01160{bottom:234.927000px;}
.y15_c01160{bottom:251.365500px;}
.y14_c01160{bottom:267.804000px;}
.y13_c01160{bottom:284.242500px;}
.y12_c01160{bottom:300.681000px;}
.y11_c01160{bottom:333.558000px;}
.y10_c01160{bottom:349.996500px;}
.yf_c01160{bottom:399.310500px;}
.ye_c01160{bottom:415.749000px;}
.yd_c01160{bottom:431.814000px;}
.yc_c01160{bottom:477.118500px;}
.yb_c01160{bottom:495.051000px;}
.ya_c01160{bottom:512.983500px;}
.y9_c01160{bottom:530.916000px;}
.y8_c01160{bottom:548.848500px;}
.y7_c01160{bottom:566.781000px;}
.y6_c01160{bottom:593.728500px;}
.y5_c01160{bottom:620.674500px;}
.y4_c01160{bottom:638.607000px;}
.y3_c01160{bottom:665.553000px;}
.y2_c01160{bottom:692.500500px;}
.y1_c01160{bottom:734.839500px;}
.h5_c01160{height:35.190766px;}
.h6_c01160{height:36.007158px;}
.h3_c01160{height:40.511979px;}
.h4_c01160{height:52.332837px;}
.h2_c01160{height:58.337477px;}
.h0_c01160{height:1262.835000px;}
.h1_c01160{height:1263.000000px;}
.w0_c01160{width:892.920000px;}
.w1_c01160{width:893.250000px;}
.x0_c01160{left:0.000000px;}
.x1_c01160{left:127.558500px;}
.x2_c01160{left:137.122500px;}
.x3_c01160{left:143.770500px;}
.x4_c01160{left:435.249000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls3_c01160{letter-spacing:0.000000pt;}
.ls0_c01160{letter-spacing:0.078221pt;}
.ls2_c01160{letter-spacing:0.087539pt;}
.ls1_c01160{letter-spacing:0.092873pt;}
.wse_c01160{word-spacing:-29.967501pt;}
.ws2_c01160{word-spacing:-23.622682pt;}
.ws10_c01160{word-spacing:-23.544461pt;}
.wsb_c01160{word-spacing:-19.158506pt;}
.wsa_c01160{word-spacing:-19.128192pt;}
.ws7_c01160{word-spacing:-16.684034pt;}
.ws5_c01160{word-spacing:-16.577766pt;}
.ws9_c01160{word-spacing:-15.674491pt;}
.ws6_c01160{word-spacing:-13.283467pt;}
.ws4_c01160{word-spacing:-13.177199pt;}
.wsc_c01160{word-spacing:-12.539593pt;}
.wsd_c01160{word-spacing:-10.733041pt;}
.ws1_c01160{word-spacing:-8.878599pt;}
.ws3_c01160{word-spacing:-8.877777pt;}
.ws8_c01160{word-spacing:-6.832128pt;}
.ws14_c01160{word-spacing:0.000000pt;}
.ws11_c01160{word-spacing:0.039110pt;}
.ws17_c01160{word-spacing:0.050460pt;}
.ws15_c01160{word-spacing:0.065111pt;}
.ws16_c01160{word-spacing:0.074430pt;}
.wsf_c01160{word-spacing:0.156442pt;}
.ws18_c01160{word-spacing:0.180412pt;}
.ws12_c01160{word-spacing:0.189730pt;}
.ws13_c01160{word-spacing:0.195063pt;}
.ws0_c01160{word-spacing:38.256533pt;}
._3_c01160{margin-left:-3.400567pt;}
._0_c01160{margin-left:-1.377235pt;}
._4_c01160{width:0.893988pt;}
._1_c01160{width:17.977124pt;}
._2_c01160{width:35.652825pt;}
._6_c01160{width:47.362694pt;}
._5_c01160{width:70.985376pt;}
._7_c01160{width:118.624363pt;}
.fs2_c01160{font-size:39.110400pt;}
.fs1_c01160{font-size:53.133867pt;}
.fs0_c01160{font-size:76.513067pt;}
.y0_c01160{bottom:0.000000pt;}
.y20_c01160{bottom:39.333333pt;}
.y1f_c01160{bottom:77.317333pt;}
.y1e_c01160{bottom:91.929333pt;}
.y1d_c01160{bottom:106.541333pt;}
.y1c_c01160{bottom:121.153333pt;}
.y1b_c01160{bottom:135.765333pt;}
.y1a_c01160{bottom:150.377333pt;}
.y19_c01160{bottom:164.989333pt;}
.y18_c01160{bottom:179.601333pt;}
.y17_c01160{bottom:194.213333pt;}
.y16_c01160{bottom:208.824000pt;}
.y15_c01160{bottom:223.436000pt;}
.y14_c01160{bottom:238.048000pt;}
.y13_c01160{bottom:252.660000pt;}
.y12_c01160{bottom:267.272000pt;}
.y11_c01160{bottom:296.496000pt;}
.y10_c01160{bottom:311.108000pt;}
.yf_c01160{bottom:354.942667pt;}
.ye_c01160{bottom:369.554667pt;}
.yd_c01160{bottom:383.834667pt;}
.yc_c01160{bottom:424.105333pt;}
.yb_c01160{bottom:440.045333pt;}
.ya_c01160{bottom:455.985333pt;}
.y9_c01160{bottom:471.925333pt;}
.y8_c01160{bottom:487.865333pt;}
.y7_c01160{bottom:503.805333pt;}
.y6_c01160{bottom:527.758667pt;}
.y5_c01160{bottom:551.710667pt;}
.y4_c01160{bottom:567.650667pt;}
.y3_c01160{bottom:591.602667pt;}
.y2_c01160{bottom:615.556000pt;}
.y1_c01160{bottom:653.190667pt;}
.h5_c01160{height:31.280681pt;}
.h6_c01160{height:32.006363pt;}
.h3_c01160{height:36.010648pt;}
.h4_c01160{height:46.518078pt;}
.h2_c01160{height:51.855535pt;}
.h0_c01160{height:1122.520000pt;}
.h1_c01160{height:1122.666667pt;}
.w0_c01160{width:793.706667pt;}
.w1_c01160{width:794.000000pt;}
.x0_c01160{left:0.000000pt;}
.x1_c01160{left:113.385333pt;}
.x2_c01160{left:121.886667pt;}
.x3_c01160{left:127.796000pt;}
.x4_c01160{left:386.888000pt;}
}





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

.ir_c01161:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_73d0fd965b6dfdb7b1bc4d3a.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01161;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01161;src:url('chunks/assets/font_927ea5551a3003a87fbee292.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01161;src:url('chunks/assets/font_5110de955ccec60c18180e2f.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01161;src:url('chunks/assets/font_bdb9696e7c0af88374021d43.woff2')format("woff");}.ff5_c01161{font-family:ff5_c01161;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01161{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01161{vertical-align:0.000000px;}
.ls4_c01161{letter-spacing:0.000000px;}
.ls0_c01161{letter-spacing:0.087998px;}
.ls1_c01161{letter-spacing:0.098482px;}
.ls3_c01161{letter-spacing:0.104482px;}
.ls2_c01161{letter-spacing:26.690482px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01161{word-spacing:-26.575517px;}
.ws5_c01161{word-spacing:-26.487518px;}
.ws11_c01161{word-spacing:-21.553319px;}
.ws10_c01161{word-spacing:-21.519216px;}
.wsf_c01161{word-spacing:-19.247743px;}
.wsd_c01161{word-spacing:-18.769538px;}
.wsc_c01161{word-spacing:-14.943900px;}
.wsb_c01161{word-spacing:-11.417140px;}
.wse_c01161{word-spacing:-10.230144px;}
.ws8_c01161{word-spacing:-9.988424px;}
.ws9_c01161{word-spacing:-9.987499px;}
.wsa_c01161{word-spacing:-7.651277px;}
.ws4_c01161{word-spacing:0.000000px;}
.ws1_c01161{word-spacing:0.043999px;}
.ws0_c01161{word-spacing:0.073250px;}
.ws6_c01161{word-spacing:0.213446px;}
.ws2_c01161{word-spacing:0.219446px;}
.ws7_c01161{word-spacing:43.038600px;}
._2_c01161{margin-left:-1.549390px;}
._1_c01161{width:1.101139px;}
._4_c01161{width:19.930500px;}
._3_c01161{width:34.651193px;}
._0_c01161{width:79.858548px;}
.fc5_c01161{color:rgb(79,153,5);}
.fc4_c01161{color:rgb(143,89,3);}
.fc6_c01161{color:rgb(6,69,173);}
.fc3_c01161{color:rgb(207,92,0);}
.fc2_c01161{color:rgb(0,0,0);}
.fc1_c01161{color:rgb(0,0,207);}
.fc0_c01161{color:rgb(33,74,135);}
.fs0_c01161{font-size:43.999200px;}
.fs2_c01161{font-size:59.775600px;}
.fs1_c01161{font-size:86.077200px;}
.y0_c01161{bottom:0.000000px;}
.y20_c01161{bottom:44.250000px;}
.y1f_c01161{bottom:82.051500px;}
.y1e_c01161{bottom:99.984000px;}
.y1d_c01161{bottom:126.823500px;}
.y1c_c01161{bottom:153.664500px;}
.y1b_c01161{bottom:171.597000px;}
.y1a_c01161{bottom:198.438000px;}
.y19_c01161{bottom:225.277500px;}
.y18_c01161{bottom:267.492000px;}
.y17_c01161{bottom:732.465000px;}
.y16_c01161{bottom:748.903500px;}
.y15_c01161{bottom:765.342000px;}
.y14_c01161{bottom:781.780500px;}
.y13_c01161{bottom:798.219000px;}
.y12_c01161{bottom:814.657500px;}
.y11_c01161{bottom:831.096000px;}
.y10_c01161{bottom:847.534500px;}
.yf_c01161{bottom:863.973000px;}
.ye_c01161{bottom:880.411500px;}
.yd_c01161{bottom:896.848500px;}
.yc_c01161{bottom:929.725500px;}
.yb_c01161{bottom:946.164000px;}
.ya_c01161{bottom:962.602500px;}
.y9_c01161{bottom:995.479500px;}
.y8_c01161{bottom:1011.918000px;}
.y7_c01161{bottom:1028.356500px;}
.y6_c01161{bottom:1044.795000px;}
.y5_c01161{bottom:1061.232000px;}
.y4_c01161{bottom:1077.670500px;}
.y3_c01161{bottom:1094.109000px;}
.y2_c01161{bottom:1143.424500px;}
.y1_c01161{bottom:1159.863000px;}
.h3_c01161{height:35.190766px;}
.h2_c01161{height:36.007158px;}
.h5_c01161{height:40.511979px;}
.h6_c01161{height:52.332837px;}
.h4_c01161{height:58.337477px;}
.h0_c01161{height:1262.835000px;}
.h1_c01161{height:1263.000000px;}
.w0_c01161{width:892.920000px;}
.w1_c01161{width:893.250000px;}
.x0_c01161{left:0.000000px;}
.x4_c01161{left:127.558500px;}
.x2_c01161{left:137.122500px;}
.x1_c01161{left:143.770500px;}
.x3_c01161{left:177.007500px;}
.x5_c01161{left:435.249000px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls4_c01161{letter-spacing:0.000000pt;}
.ls0_c01161{letter-spacing:0.078221pt;}
.ls1_c01161{letter-spacing:0.087539pt;}
.ls3_c01161{letter-spacing:0.092873pt;}
.ls2_c01161{letter-spacing:23.724873pt;}
.ws3_c01161{word-spacing:-23.622682pt;}
.ws5_c01161{word-spacing:-23.544461pt;}
.ws11_c01161{word-spacing:-19.158506pt;}
.ws10_c01161{word-spacing:-19.128192pt;}
.wsf_c01161{word-spacing:-17.109105pt;}
.wsd_c01161{word-spacing:-16.684034pt;}
.wsc_c01161{word-spacing:-13.283467pt;}
.wsb_c01161{word-spacing:-10.148569pt;}
.wse_c01161{word-spacing:-9.093461pt;}
.ws8_c01161{word-spacing:-8.878599pt;}
.ws9_c01161{word-spacing:-8.877777pt;}
.wsa_c01161{word-spacing:-6.801135pt;}
.ws4_c01161{word-spacing:0.000000pt;}
.ws1_c01161{word-spacing:0.039110pt;}
.ws0_c01161{word-spacing:0.065111pt;}
.ws6_c01161{word-spacing:0.189730pt;}
.ws2_c01161{word-spacing:0.195063pt;}
.ws7_c01161{word-spacing:38.256533pt;}
._2_c01161{margin-left:-1.377235pt;}
._1_c01161{width:0.978790pt;}
._4_c01161{width:17.716000pt;}
._3_c01161{width:30.801060pt;}
._0_c01161{width:70.985376pt;}
.fs0_c01161{font-size:39.110400pt;}
.fs2_c01161{font-size:53.133867pt;}
.fs1_c01161{font-size:76.513067pt;}
.y0_c01161{bottom:0.000000pt;}
.y20_c01161{bottom:39.333333pt;}
.y1f_c01161{bottom:72.934667pt;}
.y1e_c01161{bottom:88.874667pt;}
.y1d_c01161{bottom:112.732000pt;}
.y1c_c01161{bottom:136.590667pt;}
.y1b_c01161{bottom:152.530667pt;}
.y1a_c01161{bottom:176.389333pt;}
.y19_c01161{bottom:200.246667pt;}
.y18_c01161{bottom:237.770667pt;}
.y17_c01161{bottom:651.080000pt;}
.y16_c01161{bottom:665.692000pt;}
.y15_c01161{bottom:680.304000pt;}
.y14_c01161{bottom:694.916000pt;}
.y13_c01161{bottom:709.528000pt;}
.y12_c01161{bottom:724.140000pt;}
.y11_c01161{bottom:738.752000pt;}
.y10_c01161{bottom:753.364000pt;}
.yf_c01161{bottom:767.976000pt;}
.ye_c01161{bottom:782.588000pt;}
.yd_c01161{bottom:797.198667pt;}
.yc_c01161{bottom:826.422667pt;}
.yb_c01161{bottom:841.034667pt;}
.ya_c01161{bottom:855.646667pt;}
.y9_c01161{bottom:884.870667pt;}
.y8_c01161{bottom:899.482667pt;}
.y7_c01161{bottom:914.094667pt;}
.y6_c01161{bottom:928.706667pt;}
.y5_c01161{bottom:943.317333pt;}
.y4_c01161{bottom:957.929333pt;}
.y3_c01161{bottom:972.541333pt;}
.y2_c01161{bottom:1016.377333pt;}
.y1_c01161{bottom:1030.989333pt;}
.h3_c01161{height:31.280681pt;}
.h2_c01161{height:32.006363pt;}
.h5_c01161{height:36.010648pt;}
.h6_c01161{height:46.518078pt;}
.h4_c01161{height:51.855535pt;}
.h0_c01161{height:1122.520000pt;}
.h1_c01161{height:1122.666667pt;}
.w0_c01161{width:793.706667pt;}
.w1_c01161{width:794.000000pt;}
.x0_c01161{left:0.000000pt;}
.x4_c01161{left:113.385333pt;}
.x2_c01161{left:121.886667pt;}
.x1_c01161{left:127.796000pt;}
.x3_c01161{left:157.340000pt;}
.x5_c01161{left:386.888000pt;}
}





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

.ir_c01162:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_57147288966349090aabe421.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01162;src:url('chunks/assets/font_ad4818b581aaf3a9e1446e1b.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01162;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01162;src:url('chunks/assets/font_100a610e585e893163a1d4a7.woff2')format("woff");}.ff4_c01162{font-family:ff4_c01162;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.ls4_c01162{letter-spacing:0.000000px;}
.ls1_c01162{letter-spacing:0.087998px;}
.ls2_c01162{letter-spacing:0.098482px;}
.ls0_c01162{letter-spacing:0.104482px;}
.ls3_c01162{letter-spacing:26.690482px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01162{word-spacing:-33.713438px;}
.ws6_c01162{word-spacing:-26.575517px;}
.ws5_c01162{word-spacing:-26.487518px;}
.ws2_c01162{word-spacing:-18.769538px;}
.ws0_c01162{word-spacing:-14.107042px;}
.ws1_c01162{word-spacing:-12.074671px;}
.wsa_c01162{word-spacing:0.000000px;}
.ws7_c01162{word-spacing:0.043999px;}
.wsd_c01162{word-spacing:0.056767px;}
.wsb_c01162{word-spacing:0.073250px;}
.wsc_c01162{word-spacing:0.083734px;}
.ws4_c01162{word-spacing:0.175997px;}
.wse_c01162{word-spacing:0.202963px;}
.ws8_c01162{word-spacing:0.213446px;}
.ws9_c01162{word-spacing:0.219446px;}
._2_c01162{margin-left:-3.825638px;}
._3_c01162{width:1.005737px;}
._0_c01162{width:20.742133px;}
._1_c01162{width:40.109428px;}
._5_c01162{width:53.283031px;}
._4_c01162{width:79.858548px;}
._7_c01162{width:106.830058px;}
._6_c01162{width:133.452408px;}
.fc5_c01162{color:rgb(0,0,207);}
.fc4_c01162{color:rgb(79,153,5);}
.fc3_c01162{color:rgb(207,92,0);}
.fc2_c01162{color:rgb(33,74,135);}
.fc1_c01162{color:rgb(143,89,3);}
.fc0_c01162{color:rgb(0,0,0);}
.fs1_c01162{font-size:43.999200px;}
.fs0_c01162{font-size:59.775600px;}
.y0_c01162{bottom:0.000000px;}
.y2f_c01162{bottom:44.250000px;}
.y2e_c01162{bottom:96.919500px;}
.y2d_c01162{bottom:113.358000px;}
.y2c_c01162{bottom:129.796500px;}
.y2b_c01162{bottom:146.235000px;}
.y2a_c01162{bottom:162.673500px;}
.y29_c01162{bottom:179.112000px;}
.y28_c01162{bottom:195.550500px;}
.y27_c01162{bottom:211.989000px;}
.y26_c01162{bottom:228.427500px;}
.y25_c01162{bottom:244.866000px;}
.y24_c01162{bottom:261.304500px;}
.y23_c01162{bottom:294.180000px;}
.y22_c01162{bottom:310.618500px;}
.y21_c01162{bottom:327.057000px;}
.y20_c01162{bottom:359.934000px;}
.y1f_c01162{bottom:376.372500px;}
.y1e_c01162{bottom:392.811000px;}
.y1d_c01162{bottom:409.249500px;}
.y1c_c01162{bottom:425.688000px;}
.y1b_c01162{bottom:442.125000px;}
.y1a_c01162{bottom:458.563500px;}
.y19_c01162{bottom:507.879000px;}
.y18_c01162{bottom:524.317500px;}
.y17_c01162{bottom:540.756000px;}
.y16_c01162{bottom:557.194500px;}
.y15_c01162{bottom:573.633000px;}
.y14_c01162{bottom:590.071500px;}
.y13_c01162{bottom:606.508500px;}
.y12_c01162{bottom:622.947000px;}
.y11_c01162{bottom:639.385500px;}
.y10_c01162{bottom:655.824000px;}
.yf_c01162{bottom:672.262500px;}
.ye_c01162{bottom:688.701000px;}
.yd_c01162{bottom:705.139500px;}
.yc_c01162{bottom:721.578000px;}
.yb_c01162{bottom:738.016500px;}
.ya_c01162{bottom:754.455000px;}
.y9_c01162{bottom:787.330500px;}
.y8_c01162{bottom:803.769000px;}
.y7_c01162{bottom:853.084500px;}
.y6_c01162{bottom:869.523000px;}
.y5_c01162{bottom:885.588000px;}
.y4_c01162{bottom:1106.064000px;}
.y3_c01162{bottom:1123.998000px;}
.y2_c01162{bottom:1141.930500px;}
.y1_c01162{bottom:1159.863000px;}
.h3_c01162{height:35.190766px;}
.h4_c01162{height:36.007158px;}
.h2_c01162{height:52.332837px;}
.h0_c01162{height:1262.835000px;}
.h1_c01162{height:1263.000000px;}
.w0_c01162{width:892.920000px;}
.w1_c01162{width:893.250000px;}
.x0_c01162{left:0.000000px;}
.x1_c01162{left:127.558500px;}
.x2_c01162{left:137.122500px;}
.x3_c01162{left:143.770500px;}
.x4_c01162{left:177.007500px;}
.x5_c01162{left:435.249000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls4_c01162{letter-spacing:0.000000pt;}
.ls1_c01162{letter-spacing:0.078221pt;}
.ls2_c01162{letter-spacing:0.087539pt;}
.ls0_c01162{letter-spacing:0.092873pt;}
.ls3_c01162{letter-spacing:23.724873pt;}
.ws3_c01162{word-spacing:-29.967501pt;}
.ws6_c01162{word-spacing:-23.622682pt;}
.ws5_c01162{word-spacing:-23.544461pt;}
.ws2_c01162{word-spacing:-16.684034pt;}
.ws0_c01162{word-spacing:-12.539593pt;}
.ws1_c01162{word-spacing:-10.733041pt;}
.wsa_c01162{word-spacing:0.000000pt;}
.ws7_c01162{word-spacing:0.039110pt;}
.wsd_c01162{word-spacing:0.050460pt;}
.wsb_c01162{word-spacing:0.065111pt;}
.wsc_c01162{word-spacing:0.074430pt;}
.ws4_c01162{word-spacing:0.156442pt;}
.wse_c01162{word-spacing:0.180412pt;}
.ws8_c01162{word-spacing:0.189730pt;}
.ws9_c01162{word-spacing:0.195063pt;}
._2_c01162{margin-left:-3.400567pt;}
._3_c01162{width:0.893988pt;}
._0_c01162{width:18.437452pt;}
._1_c01162{width:35.652825pt;}
._5_c01162{width:47.362694pt;}
._4_c01162{width:70.985376pt;}
._7_c01162{width:94.960051pt;}
._6_c01162{width:118.624363pt;}
.fs1_c01162{font-size:39.110400pt;}
.fs0_c01162{font-size:53.133867pt;}
.y0_c01162{bottom:0.000000pt;}
.y2f_c01162{bottom:39.333333pt;}
.y2e_c01162{bottom:86.150667pt;}
.y2d_c01162{bottom:100.762667pt;}
.y2c_c01162{bottom:115.374667pt;}
.y2b_c01162{bottom:129.986667pt;}
.y2a_c01162{bottom:144.598667pt;}
.y29_c01162{bottom:159.210667pt;}
.y28_c01162{bottom:173.822667pt;}
.y27_c01162{bottom:188.434667pt;}
.y26_c01162{bottom:203.046667pt;}
.y25_c01162{bottom:217.658667pt;}
.y24_c01162{bottom:232.270667pt;}
.y23_c01162{bottom:261.493333pt;}
.y22_c01162{bottom:276.105333pt;}
.y21_c01162{bottom:290.717333pt;}
.y20_c01162{bottom:319.941333pt;}
.y1f_c01162{bottom:334.553333pt;}
.y1e_c01162{bottom:349.165333pt;}
.y1d_c01162{bottom:363.777333pt;}
.y1c_c01162{bottom:378.389333pt;}
.y1b_c01162{bottom:393.000000pt;}
.y1a_c01162{bottom:407.612000pt;}
.y19_c01162{bottom:451.448000pt;}
.y18_c01162{bottom:466.060000pt;}
.y17_c01162{bottom:480.672000pt;}
.y16_c01162{bottom:495.284000pt;}
.y15_c01162{bottom:509.896000pt;}
.y14_c01162{bottom:524.508000pt;}
.y13_c01162{bottom:539.118667pt;}
.y12_c01162{bottom:553.730667pt;}
.y11_c01162{bottom:568.342667pt;}
.y10_c01162{bottom:582.954667pt;}
.yf_c01162{bottom:597.566667pt;}
.ye_c01162{bottom:612.178667pt;}
.yd_c01162{bottom:626.790667pt;}
.yc_c01162{bottom:641.402667pt;}
.yb_c01162{bottom:656.014667pt;}
.ya_c01162{bottom:670.626667pt;}
.y9_c01162{bottom:699.849333pt;}
.y8_c01162{bottom:714.461333pt;}
.y7_c01162{bottom:758.297333pt;}
.y6_c01162{bottom:772.909333pt;}
.y5_c01162{bottom:787.189333pt;}
.y4_c01162{bottom:983.168000pt;}
.y3_c01162{bottom:999.109333pt;}
.y2_c01162{bottom:1015.049333pt;}
.y1_c01162{bottom:1030.989333pt;}
.h3_c01162{height:31.280681pt;}
.h4_c01162{height:32.006363pt;}
.h2_c01162{height:46.518078pt;}
.h0_c01162{height:1122.520000pt;}
.h1_c01162{height:1122.666667pt;}
.w0_c01162{width:793.706667pt;}
.w1_c01162{width:794.000000pt;}
.x0_c01162{left:0.000000pt;}
.x1_c01162{left:113.385333pt;}
.x2_c01162{left:121.886667pt;}
.x3_c01162{left:127.796000pt;}
.x4_c01162{left:157.340000pt;}
.x5_c01162{left:386.888000pt;}
}





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

.ir_c01163:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_30e1a2a207c74e98eaca1084.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01163;src:url('chunks/assets/font_8b57677f958321d83a83691c.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01163;src:url('chunks/assets/font_a461acfafd02b5b9bd245a9a.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01163;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01163;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01163{font-family:ff5_c01163;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01163{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01163{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.ls3_c01163{letter-spacing:0.000000px;}
.ls0_c01163{letter-spacing:0.087998px;}
.ls2_c01163{letter-spacing:0.098482px;}
.ls1_c01163{letter-spacing:0.104482px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01163{word-spacing:-26.575517px;}
.ws19_c01163{word-spacing:-26.487518px;}
.ws16_c01163{word-spacing:-21.519216px;}
.ws14_c01163{word-spacing:-21.041011px;}
.ws11_c01163{word-spacing:-18.829314px;}
.ws6_c01163{word-spacing:-18.769538px;}
.ws13_c01163{word-spacing:-18.410885px;}
.ws15_c01163{word-spacing:-17.813129px;}
.wsf_c01163{word-spacing:-17.275148px;}
.wse_c01163{word-spacing:-17.215373px;}
.ws10_c01163{word-spacing:-17.155597px;}
.wsa_c01163{word-spacing:-15.601432px;}
.ws5_c01163{word-spacing:-15.481880px;}
.ws7_c01163{word-spacing:-14.943900px;}
.wsb_c01163{word-spacing:-13.808164px;}
.ws9_c01163{word-spacing:-13.748388px;}
.ws12_c01163{word-spacing:-13.688612px;}
.wsc_c01163{word-spacing:-12.732203px;}
.wsd_c01163{word-spacing:-12.672427px;}
.ws17_c01163{word-spacing:-12.074671px;}
.ws4_c01163{word-spacing:-11.656242px;}
.ws1_c01163{word-spacing:-9.988424px;}
.ws3_c01163{word-spacing:-9.987499px;}
.ws1d_c01163{word-spacing:0.000000px;}
.ws8_c01163{word-spacing:0.017856px;}
.ws1a_c01163{word-spacing:0.043999px;}
.ws18_c01163{word-spacing:0.175997px;}
.ws1c_c01163{word-spacing:0.213446px;}
.ws1b_c01163{word-spacing:0.219446px;}
.ws0_c01163{word-spacing:43.038600px;}
._1_c01163{margin-left:-6.369713px;}
._7_c01163{margin-left:-4.656358px;}
._5_c01163{margin-left:-2.998955px;}
._0_c01163{margin-left:-1.549390px;}
._b_c01163{width:1.005737px;}
._8_c01163{width:17.505421px;}
._3_c01163{width:19.930500px;}
._6_c01163{width:21.220338px;}
._a_c01163{width:24.143203px;}
._2_c01163{width:26.530158px;}
._4_c01163{width:29.529146px;}
._9_c01163{width:40.468081px;}
.fc5_c01163{color:rgb(79,153,5);}
.fc3_c01163{color:rgb(33,74,135);}
.fc2_c01163{color:rgb(143,89,3);}
.fc4_c01163{color:rgb(207,92,0);}
.fc1_c01163{color:rgb(6,69,173);}
.fc0_c01163{color:rgb(0,0,0);}
.fs2_c01163{font-size:43.999200px;}
.fs1_c01163{font-size:59.775600px;}
.fs0_c01163{font-size:86.077200px;}
.y0_c01163{bottom:0.000000px;}
.y1c_c01163{bottom:44.250000px;}
.y1b_c01163{bottom:86.982000px;}
.y1a_c01163{bottom:103.420500px;}
.y19_c01163{bottom:119.485500px;}
.y18_c01163{bottom:167.907000px;}
.y17_c01163{bottom:185.839500px;}
.y16_c01163{bottom:203.772000px;}
.y15_c01163{bottom:221.704500px;}
.y14_c01163{bottom:239.637000px;}
.y13_c01163{bottom:257.571000px;}
.y12_c01163{bottom:275.503500px;}
.y11_c01163{bottom:317.560500px;}
.y10_c01163{bottom:347.620500px;}
.yf_c01163{bottom:377.680500px;}
.ye_c01163{bottom:407.739000px;}
.yd_c01163{bottom:425.673000px;}
.yc_c01163{bottom:467.730000px;}
.yb_c01163{bottom:485.662500px;}
.ya_c01163{bottom:512.647500px;}
.y9_c01163{bottom:530.580000px;}
.y8_c01163{bottom:548.514000px;}
.y7_c01163{bottom:566.446500px;}
.y6_c01163{bottom:593.431500px;}
.y5_c01163{bottom:620.416500px;}
.y4_c01163{bottom:638.349000px;}
.y3_c01163{bottom:665.334000px;}
.y2_c01163{bottom:692.319000px;}
.y1_c01163{bottom:734.715000px;}
.h5_c01163{height:35.190766px;}
.h6_c01163{height:36.007158px;}
.h3_c01163{height:40.511979px;}
.h4_c01163{height:52.332837px;}
.h2_c01163{height:58.337477px;}
.h0_c01163{height:1262.835000px;}
.h1_c01163{height:1263.000000px;}
.w0_c01163{width:892.920000px;}
.w1_c01163{width:893.250000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:127.558500px;}
.x4_c01163{left:137.122500px;}
.x2_c01163{left:152.215500px;}
.x3_c01163{left:164.919000px;}
.x5_c01163{left:435.249000px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls3_c01163{letter-spacing:0.000000pt;}
.ls0_c01163{letter-spacing:0.078221pt;}
.ls2_c01163{letter-spacing:0.087539pt;}
.ls1_c01163{letter-spacing:0.092873pt;}
.ws2_c01163{word-spacing:-23.622682pt;}
.ws19_c01163{word-spacing:-23.544461pt;}
.ws16_c01163{word-spacing:-19.128192pt;}
.ws14_c01163{word-spacing:-18.703121pt;}
.ws11_c01163{word-spacing:-16.737168pt;}
.ws6_c01163{word-spacing:-16.684034pt;}
.ws13_c01163{word-spacing:-16.365231pt;}
.ws15_c01163{word-spacing:-15.833892pt;}
.wsf_c01163{word-spacing:-15.355687pt;}
.wse_c01163{word-spacing:-15.302554pt;}
.ws10_c01163{word-spacing:-15.249420pt;}
.wsa_c01163{word-spacing:-13.867939pt;}
.ws5_c01163{word-spacing:-13.761671pt;}
.ws7_c01163{word-spacing:-13.283467pt;}
.wsb_c01163{word-spacing:-12.273923pt;}
.ws9_c01163{word-spacing:-12.220789pt;}
.ws12_c01163{word-spacing:-12.167655pt;}
.wsc_c01163{word-spacing:-11.317514pt;}
.wsd_c01163{word-spacing:-11.264380pt;}
.ws17_c01163{word-spacing:-10.733041pt;}
.ws4_c01163{word-spacing:-10.361104pt;}
.ws1_c01163{word-spacing:-8.878599pt;}
.ws3_c01163{word-spacing:-8.877777pt;}
.ws1d_c01163{word-spacing:0.000000pt;}
.ws8_c01163{word-spacing:0.015872pt;}
.ws1a_c01163{word-spacing:0.039110pt;}
.ws18_c01163{word-spacing:0.156442pt;}
.ws1c_c01163{word-spacing:0.189730pt;}
.ws1b_c01163{word-spacing:0.195063pt;}
.ws0_c01163{word-spacing:38.256533pt;}
._1_c01163{margin-left:-5.661967pt;}
._7_c01163{margin-left:-4.138985pt;}
._5_c01163{margin-left:-2.665738pt;}
._0_c01163{margin-left:-1.377235pt;}
._b_c01163{width:0.893988pt;}
._8_c01163{width:15.560374pt;}
._3_c01163{width:17.716000pt;}
._6_c01163{width:18.862523pt;}
._a_c01163{width:21.460625pt;}
._2_c01163{width:23.582363pt;}
._4_c01163{width:26.248130pt;}
._9_c01163{width:35.971628pt;}
.fs2_c01163{font-size:39.110400pt;}
.fs1_c01163{font-size:53.133867pt;}
.fs0_c01163{font-size:76.513067pt;}
.y0_c01163{bottom:0.000000pt;}
.y1c_c01163{bottom:39.333333pt;}
.y1b_c01163{bottom:77.317333pt;}
.y1a_c01163{bottom:91.929333pt;}
.y19_c01163{bottom:106.209333pt;}
.y18_c01163{bottom:149.250667pt;}
.y17_c01163{bottom:165.190667pt;}
.y16_c01163{bottom:181.130667pt;}
.y15_c01163{bottom:197.070667pt;}
.y14_c01163{bottom:213.010667pt;}
.y13_c01163{bottom:228.952000pt;}
.y12_c01163{bottom:244.892000pt;}
.y11_c01163{bottom:282.276000pt;}
.y10_c01163{bottom:308.996000pt;}
.yf_c01163{bottom:335.716000pt;}
.ye_c01163{bottom:362.434667pt;}
.yd_c01163{bottom:378.376000pt;}
.yc_c01163{bottom:415.760000pt;}
.yb_c01163{bottom:431.700000pt;}
.ya_c01163{bottom:455.686667pt;}
.y9_c01163{bottom:471.626667pt;}
.y8_c01163{bottom:487.568000pt;}
.y7_c01163{bottom:503.508000pt;}
.y6_c01163{bottom:527.494667pt;}
.y5_c01163{bottom:551.481333pt;}
.y4_c01163{bottom:567.421333pt;}
.y3_c01163{bottom:591.408000pt;}
.y2_c01163{bottom:615.394667pt;}
.y1_c01163{bottom:653.080000pt;}
.h5_c01163{height:31.280681pt;}
.h6_c01163{height:32.006363pt;}
.h3_c01163{height:36.010648pt;}
.h4_c01163{height:46.518078pt;}
.h2_c01163{height:51.855535pt;}
.h0_c01163{height:1122.520000pt;}
.h1_c01163{height:1122.666667pt;}
.w0_c01163{width:793.706667pt;}
.w1_c01163{width:794.000000pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:113.385333pt;}
.x4_c01163{left:121.886667pt;}
.x2_c01163{left:135.302667pt;}
.x3_c01163{left:146.594667pt;}
.x5_c01163{left:386.888000pt;}
}





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

.ir_c01164:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01164;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01164;src:url('chunks/assets/font_360f3c7f09bd914dc155e5a0.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01164;src:url('chunks/assets/font_b9fb12b9abf780b78f428124.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.ls4_c01164{letter-spacing:0.000000px;}
.ls1_c01164{letter-spacing:0.087998px;}
.ls2_c01164{letter-spacing:0.098482px;}
.ls0_c01164{letter-spacing:0.104482px;}
.ls3_c01164{letter-spacing:26.690482px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01164{word-spacing:-26.575517px;}
.ws0_c01164{word-spacing:-26.487518px;}
.ws5_c01164{word-spacing:0.000000px;}
.ws7_c01164{word-spacing:0.036900px;}
.ws4_c01164{word-spacing:0.043999px;}
.ws6_c01164{word-spacing:0.053933px;}
.wsa_c01164{word-spacing:0.064416px;}
.ws8_c01164{word-spacing:0.070416px;}
.wsb_c01164{word-spacing:0.100217px;}
.ws2_c01164{word-spacing:0.175997px;}
.ws3_c01164{word-spacing:0.213446px;}
.ws9_c01164{word-spacing:0.219446px;}
._0_c01164{width:1.047451px;}
._1_c01164{width:80.254541px;}
.fc5_c01164{color:rgb(0,0,207);}
.fc4_c01164{color:rgb(143,89,3);}
.fc3_c01164{color:rgb(79,153,5);}
.fc2_c01164{color:rgb(207,92,0);}
.fc1_c01164{color:rgb(0,0,0);}
.fc0_c01164{color:rgb(33,74,135);}
.fs0_c01164{font-size:43.999200px;}
.fs1_c01164{font-size:59.775600px;}
.y0_c01164{bottom:0.000000px;}
.y39_c01164{bottom:44.250000px;}
.y38_c01164{bottom:91.369500px;}
.y37_c01164{bottom:107.808000px;}
.y36_c01164{bottom:124.246500px;}
.y35_c01164{bottom:140.685000px;}
.y34_c01164{bottom:157.123500px;}
.y33_c01164{bottom:173.562000px;}
.y32_c01164{bottom:190.000500px;}
.y31_c01164{bottom:206.437500px;}
.y30_c01164{bottom:222.876000px;}
.y2f_c01164{bottom:239.314500px;}
.y2e_c01164{bottom:255.753000px;}
.y2d_c01164{bottom:272.191500px;}
.y2c_c01164{bottom:288.630000px;}
.y2b_c01164{bottom:305.068500px;}
.y2a_c01164{bottom:321.507000px;}
.y29_c01164{bottom:337.945500px;}
.y28_c01164{bottom:354.384000px;}
.y27_c01164{bottom:370.822500px;}
.y26_c01164{bottom:403.698000px;}
.y25_c01164{bottom:420.136500px;}
.y24_c01164{bottom:436.575000px;}
.y23_c01164{bottom:453.013500px;}
.y22_c01164{bottom:469.452000px;}
.y21_c01164{bottom:485.890500px;}
.y20_c01164{bottom:518.767500px;}
.y1f_c01164{bottom:535.206000px;}
.y1e_c01164{bottom:551.643000px;}
.y1d_c01164{bottom:568.081500px;}
.y1c_c01164{bottom:600.958500px;}
.y1b_c01164{bottom:617.397000px;}
.y1a_c01164{bottom:633.835500px;}
.y19_c01164{bottom:650.274000px;}
.y18_c01164{bottom:683.151000px;}
.y17_c01164{bottom:699.589500px;}
.y16_c01164{bottom:716.028000px;}
.y15_c01164{bottom:732.465000px;}
.y14_c01164{bottom:748.903500px;}
.y13_c01164{bottom:765.342000px;}
.y12_c01164{bottom:781.780500px;}
.y11_c01164{bottom:814.657500px;}
.y10_c01164{bottom:831.096000px;}
.yf_c01164{bottom:847.534500px;}
.ye_c01164{bottom:880.411500px;}
.yd_c01164{bottom:896.848500px;}
.yc_c01164{bottom:946.164000px;}
.yb_c01164{bottom:962.602500px;}
.ya_c01164{bottom:995.479500px;}
.y9_c01164{bottom:1011.918000px;}
.y8_c01164{bottom:1028.356500px;}
.y7_c01164{bottom:1044.795000px;}
.y6_c01164{bottom:1077.670500px;}
.y5_c01164{bottom:1094.109000px;}
.y4_c01164{bottom:1110.547500px;}
.y3_c01164{bottom:1126.986000px;}
.y2_c01164{bottom:1143.424500px;}
.y1_c01164{bottom:1159.863000px;}
.h3_c01164{height:35.190766px;}
.h2_c01164{height:36.007158px;}
.h4_c01164{height:52.332837px;}
.h0_c01164{height:1262.835000px;}
.h1_c01164{height:1263.000000px;}
.w0_c01164{width:892.920000px;}
.w1_c01164{width:893.250000px;}
.x0_c01164{left:0.000000px;}
.x1_c01164{left:137.122500px;}
.x2_c01164{left:143.770500px;}
.x5_c01164{left:170.359500px;}
.x4_c01164{left:177.007500px;}
.x3_c01164{left:203.596500px;}
.x6_c01164{left:210.243000px;}
.x7_c01164{left:435.249000px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls4_c01164{letter-spacing:0.000000pt;}
.ls1_c01164{letter-spacing:0.078221pt;}
.ls2_c01164{letter-spacing:0.087539pt;}
.ls0_c01164{letter-spacing:0.092873pt;}
.ls3_c01164{letter-spacing:23.724873pt;}
.ws1_c01164{word-spacing:-23.622682pt;}
.ws0_c01164{word-spacing:-23.544461pt;}
.ws5_c01164{word-spacing:0.000000pt;}
.ws7_c01164{word-spacing:0.032800pt;}
.ws4_c01164{word-spacing:0.039110pt;}
.ws6_c01164{word-spacing:0.047940pt;}
.wsa_c01164{word-spacing:0.057259pt;}
.ws8_c01164{word-spacing:0.062592pt;}
.wsb_c01164{word-spacing:0.089082pt;}
.ws2_c01164{word-spacing:0.156442pt;}
.ws3_c01164{word-spacing:0.189730pt;}
.ws9_c01164{word-spacing:0.195063pt;}
._0_c01164{width:0.931068pt;}
._1_c01164{width:71.337370pt;}
.fs0_c01164{font-size:39.110400pt;}
.fs1_c01164{font-size:53.133867pt;}
.y0_c01164{bottom:0.000000pt;}
.y39_c01164{bottom:39.333333pt;}
.y38_c01164{bottom:81.217333pt;}
.y37_c01164{bottom:95.829333pt;}
.y36_c01164{bottom:110.441333pt;}
.y35_c01164{bottom:125.053333pt;}
.y34_c01164{bottom:139.665333pt;}
.y33_c01164{bottom:154.277333pt;}
.y32_c01164{bottom:168.889333pt;}
.y31_c01164{bottom:183.500000pt;}
.y30_c01164{bottom:198.112000pt;}
.y2f_c01164{bottom:212.724000pt;}
.y2e_c01164{bottom:227.336000pt;}
.y2d_c01164{bottom:241.948000pt;}
.y2c_c01164{bottom:256.560000pt;}
.y2b_c01164{bottom:271.172000pt;}
.y2a_c01164{bottom:285.784000pt;}
.y29_c01164{bottom:300.396000pt;}
.y28_c01164{bottom:315.008000pt;}
.y27_c01164{bottom:329.620000pt;}
.y26_c01164{bottom:358.842667pt;}
.y25_c01164{bottom:373.454667pt;}
.y24_c01164{bottom:388.066667pt;}
.y23_c01164{bottom:402.678667pt;}
.y22_c01164{bottom:417.290667pt;}
.y21_c01164{bottom:431.902667pt;}
.y20_c01164{bottom:461.126667pt;}
.y1f_c01164{bottom:475.738667pt;}
.y1e_c01164{bottom:490.349333pt;}
.y1d_c01164{bottom:504.961333pt;}
.y1c_c01164{bottom:534.185333pt;}
.y1b_c01164{bottom:548.797333pt;}
.y1a_c01164{bottom:563.409333pt;}
.y19_c01164{bottom:578.021333pt;}
.y18_c01164{bottom:607.245333pt;}
.y17_c01164{bottom:621.857333pt;}
.y16_c01164{bottom:636.469333pt;}
.y15_c01164{bottom:651.080000pt;}
.y14_c01164{bottom:665.692000pt;}
.y13_c01164{bottom:680.304000pt;}
.y12_c01164{bottom:694.916000pt;}
.y11_c01164{bottom:724.140000pt;}
.y10_c01164{bottom:738.752000pt;}
.yf_c01164{bottom:753.364000pt;}
.ye_c01164{bottom:782.588000pt;}
.yd_c01164{bottom:797.198667pt;}
.yc_c01164{bottom:841.034667pt;}
.yb_c01164{bottom:855.646667pt;}
.ya_c01164{bottom:884.870667pt;}
.y9_c01164{bottom:899.482667pt;}
.y8_c01164{bottom:914.094667pt;}
.y7_c01164{bottom:928.706667pt;}
.y6_c01164{bottom:957.929333pt;}
.y5_c01164{bottom:972.541333pt;}
.y4_c01164{bottom:987.153333pt;}
.y3_c01164{bottom:1001.765333pt;}
.y2_c01164{bottom:1016.377333pt;}
.y1_c01164{bottom:1030.989333pt;}
.h3_c01164{height:31.280681pt;}
.h2_c01164{height:32.006363pt;}
.h4_c01164{height:46.518078pt;}
.h0_c01164{height:1122.520000pt;}
.h1_c01164{height:1122.666667pt;}
.w0_c01164{width:793.706667pt;}
.w1_c01164{width:794.000000pt;}
.x0_c01164{left:0.000000pt;}
.x1_c01164{left:121.886667pt;}
.x2_c01164{left:127.796000pt;}
.x5_c01164{left:151.430667pt;}
.x4_c01164{left:157.340000pt;}
.x3_c01164{left:180.974667pt;}
.x6_c01164{left:186.882667pt;}
.x7_c01164{left:386.888000pt;}
}





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

.ir_c01165:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01165;src:url('chunks/assets/font_68173cd1b1eff80f165cc52c.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01165;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01165;src:url('chunks/assets/font_8ada7770e45aaecfa30eedda.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls5_c01165{letter-spacing:0.000000px;}
.ls0_c01165{letter-spacing:0.087998px;}
.ls2_c01165{letter-spacing:0.098482px;}
.ls1_c01165{letter-spacing:0.104482px;}
.ls3_c01165{letter-spacing:0.140482px;}
.ls4_c01165{letter-spacing:0.146482px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01165{word-spacing:-26.575517px;}
.ws3_c01165{word-spacing:-26.487518px;}
.ws4_c01165{word-spacing:0.000000px;}
.ws1_c01165{word-spacing:0.043999px;}
.ws2_c01165{word-spacing:0.053933px;}
.ws5_c01165{word-spacing:0.056767px;}
.ws6_c01165{word-spacing:0.213446px;}
._0_c01165{width:1.073318px;}
.fc5_c01165{color:rgb(143,89,3);}
.fc4_c01165{color:rgb(79,153,5);}
.fc3_c01165{color:rgb(0,0,207);}
.fc2_c01165{color:rgb(207,92,0);}
.fc1_c01165{color:rgb(0,0,0);}
.fc0_c01165{color:rgb(33,74,135);}
.fs0_c01165{font-size:43.999200px;}
.fs1_c01165{font-size:59.775600px;}
.y0_c01165{bottom:0.000000px;}
.y2d_c01165{bottom:44.250000px;}
.y2c_c01165{bottom:403.698000px;}
.y2b_c01165{bottom:420.136500px;}
.y2a_c01165{bottom:436.575000px;}
.y29_c01165{bottom:453.013500px;}
.y28_c01165{bottom:469.452000px;}
.y27_c01165{bottom:485.890500px;}
.y26_c01165{bottom:502.329000px;}
.y25_c01165{bottom:518.767500px;}
.y24_c01165{bottom:535.206000px;}
.y23_c01165{bottom:551.643000px;}
.y22_c01165{bottom:568.081500px;}
.y21_c01165{bottom:600.958500px;}
.y20_c01165{bottom:617.397000px;}
.y1f_c01165{bottom:633.835500px;}
.y1e_c01165{bottom:666.712500px;}
.y1d_c01165{bottom:683.151000px;}
.y1c_c01165{bottom:699.589500px;}
.y1b_c01165{bottom:716.028000px;}
.y1a_c01165{bottom:732.465000px;}
.y19_c01165{bottom:748.903500px;}
.y18_c01165{bottom:765.342000px;}
.y17_c01165{bottom:781.780500px;}
.y16_c01165{bottom:798.219000px;}
.y15_c01165{bottom:814.657500px;}
.y14_c01165{bottom:831.096000px;}
.y13_c01165{bottom:847.534500px;}
.y12_c01165{bottom:863.973000px;}
.y11_c01165{bottom:880.411500px;}
.y10_c01165{bottom:896.848500px;}
.yf_c01165{bottom:913.287000px;}
.ye_c01165{bottom:929.725500px;}
.yd_c01165{bottom:946.164000px;}
.yc_c01165{bottom:962.602500px;}
.yb_c01165{bottom:979.041000px;}
.ya_c01165{bottom:995.479500px;}
.y9_c01165{bottom:1011.918000px;}
.y8_c01165{bottom:1028.356500px;}
.y7_c01165{bottom:1044.795000px;}
.y6_c01165{bottom:1061.232000px;}
.y5_c01165{bottom:1077.670500px;}
.y4_c01165{bottom:1110.547500px;}
.y3_c01165{bottom:1126.986000px;}
.y2_c01165{bottom:1143.424500px;}
.y1_c01165{bottom:1159.863000px;}
.h3_c01165{height:35.190766px;}
.h2_c01165{height:36.007158px;}
.h4_c01165{height:52.332837px;}
.h0_c01165{height:1262.835000px;}
.h1_c01165{height:1263.000000px;}
.w0_c01165{width:892.920000px;}
.w1_c01165{width:893.250000px;}
.x0_c01165{left:0.000000px;}
.x3_c01165{left:137.122500px;}
.x4_c01165{left:143.770500px;}
.x7_c01165{left:177.007500px;}
.x1_c01165{left:230.185500px;}
.x5_c01165{left:243.480000px;}
.x2_c01165{left:256.774500px;}
.x6_c01165{left:276.715500px;}
.x8_c01165{left:435.249000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls5_c01165{letter-spacing:0.000000pt;}
.ls0_c01165{letter-spacing:0.078221pt;}
.ls2_c01165{letter-spacing:0.087539pt;}
.ls1_c01165{letter-spacing:0.092873pt;}
.ls3_c01165{letter-spacing:0.124873pt;}
.ls4_c01165{letter-spacing:0.130206pt;}
.ws0_c01165{word-spacing:-23.622682pt;}
.ws3_c01165{word-spacing:-23.544461pt;}
.ws4_c01165{word-spacing:0.000000pt;}
.ws1_c01165{word-spacing:0.039110pt;}
.ws2_c01165{word-spacing:0.047940pt;}
.ws5_c01165{word-spacing:0.050460pt;}
.ws6_c01165{word-spacing:0.189730pt;}
._0_c01165{width:0.954061pt;}
.fs0_c01165{font-size:39.110400pt;}
.fs1_c01165{font-size:53.133867pt;}
.y0_c01165{bottom:0.000000pt;}
.y2d_c01165{bottom:39.333333pt;}
.y2c_c01165{bottom:358.842667pt;}
.y2b_c01165{bottom:373.454667pt;}
.y2a_c01165{bottom:388.066667pt;}
.y29_c01165{bottom:402.678667pt;}
.y28_c01165{bottom:417.290667pt;}
.y27_c01165{bottom:431.902667pt;}
.y26_c01165{bottom:446.514667pt;}
.y25_c01165{bottom:461.126667pt;}
.y24_c01165{bottom:475.738667pt;}
.y23_c01165{bottom:490.349333pt;}
.y22_c01165{bottom:504.961333pt;}
.y21_c01165{bottom:534.185333pt;}
.y20_c01165{bottom:548.797333pt;}
.y1f_c01165{bottom:563.409333pt;}
.y1e_c01165{bottom:592.633333pt;}
.y1d_c01165{bottom:607.245333pt;}
.y1c_c01165{bottom:621.857333pt;}
.y1b_c01165{bottom:636.469333pt;}
.y1a_c01165{bottom:651.080000pt;}
.y19_c01165{bottom:665.692000pt;}
.y18_c01165{bottom:680.304000pt;}
.y17_c01165{bottom:694.916000pt;}
.y16_c01165{bottom:709.528000pt;}
.y15_c01165{bottom:724.140000pt;}
.y14_c01165{bottom:738.752000pt;}
.y13_c01165{bottom:753.364000pt;}
.y12_c01165{bottom:767.976000pt;}
.y11_c01165{bottom:782.588000pt;}
.y10_c01165{bottom:797.198667pt;}
.yf_c01165{bottom:811.810667pt;}
.ye_c01165{bottom:826.422667pt;}
.yd_c01165{bottom:841.034667pt;}
.yc_c01165{bottom:855.646667pt;}
.yb_c01165{bottom:870.258667pt;}
.ya_c01165{bottom:884.870667pt;}
.y9_c01165{bottom:899.482667pt;}
.y8_c01165{bottom:914.094667pt;}
.y7_c01165{bottom:928.706667pt;}
.y6_c01165{bottom:943.317333pt;}
.y5_c01165{bottom:957.929333pt;}
.y4_c01165{bottom:987.153333pt;}
.y3_c01165{bottom:1001.765333pt;}
.y2_c01165{bottom:1016.377333pt;}
.y1_c01165{bottom:1030.989333pt;}
.h3_c01165{height:31.280681pt;}
.h2_c01165{height:32.006363pt;}
.h4_c01165{height:46.518078pt;}
.h0_c01165{height:1122.520000pt;}
.h1_c01165{height:1122.666667pt;}
.w0_c01165{width:793.706667pt;}
.w1_c01165{width:794.000000pt;}
.x0_c01165{left:0.000000pt;}
.x3_c01165{left:121.886667pt;}
.x4_c01165{left:127.796000pt;}
.x7_c01165{left:157.340000pt;}
.x1_c01165{left:204.609333pt;}
.x5_c01165{left:216.426667pt;}
.x2_c01165{left:228.244000pt;}
.x6_c01165{left:245.969333pt;}
.x8_c01165{left:386.888000pt;}
}





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

.ir_c01166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_2f90345b241b2555f3383ad8.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01166;src:url('chunks/assets/font_8b3c663ea160fea6b9b661a4.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01166;src:url('chunks/assets/font_beb51f3694fe2f7b06723e81.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01166;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01166;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01166;src:url('chunks/assets/font_a8c5e1eabd197ffd0a076206.woff2')format("woff");}.ff6_c01166{font-family:ff6_c01166;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01166{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls3_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:0.087998px;}
.ls2_c01166{letter-spacing:0.098482px;}
.ls1_c01166{letter-spacing:0.104482px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01166{word-spacing:-33.713438px;}
.ws2_c01166{word-spacing:-26.575517px;}
.ws10_c01166{word-spacing:-26.487518px;}
.wsb_c01166{word-spacing:-21.553319px;}
.wsa_c01166{word-spacing:-21.519216px;}
.ws7_c01166{word-spacing:-18.769538px;}
.ws9_c01166{word-spacing:-16.019861px;}
.ws6_c01166{word-spacing:-14.943900px;}
.wsc_c01166{word-spacing:-14.107042px;}
.ws5_c01166{word-spacing:-14.047266px;}
.wsd_c01166{word-spacing:-12.074671px;}
.ws4_c01166{word-spacing:-10.221628px;}
.ws1_c01166{word-spacing:-9.988424px;}
.ws3_c01166{word-spacing:-9.987499px;}
.ws8_c01166{word-spacing:-4.536144px;}
.ws14_c01166{word-spacing:0.000000px;}
.ws11_c01166{word-spacing:0.043999px;}
.ws17_c01166{word-spacing:0.056767px;}
.ws15_c01166{word-spacing:0.073250px;}
.wsf_c01166{word-spacing:0.175997px;}
.ws18_c01166{word-spacing:0.202963px;}
.ws12_c01166{word-spacing:0.213446px;}
.ws13_c01166{word-spacing:0.219446px;}
.ws16_c01166{word-spacing:26.619516px;}
.ws0_c01166{word-spacing:43.038600px;}
._8_c01166{margin-left:-2131.273500px;}
._1_c01166{margin-left:-6.369713px;}
._5_c01166{margin-left:-3.825638px;}
._0_c01166{margin-left:-1.549390px;}
._6_c01166{width:1.005737px;}
._3_c01166{width:19.930500px;}
._2_c01166{width:29.451544px;}
._4_c01166{width:40.109428px;}
._a_c01166{width:53.283031px;}
._7_c01166{width:79.858548px;}
._9_c01166{width:133.452408px;}
.fc6_c01166{color:rgb(0,0,207);}
.fc5_c01166{color:rgb(79,153,5);}
.fc3_c01166{color:rgb(33,74,135);}
.fc2_c01166{color:rgb(143,89,3);}
.fc4_c01166{color:rgb(207,92,0);}
.fc1_c01166{color:rgb(6,69,173);}
.fc0_c01166{color:rgb(0,0,0);}
.fs3_c01166{font-size:31.015800px;}
.fs2_c01166{font-size:43.999200px;}
.fs1_c01166{font-size:59.775600px;}
.fs0_c01166{font-size:86.077200px;}
.y0_c01166{bottom:0.000000px;}
.y20_c01166{bottom:44.250000px;}
.y1f_c01166{bottom:86.982000px;}
.y1e_c01166{bottom:103.420500px;}
.y1d_c01166{bottom:119.859000px;}
.y1c_c01166{bottom:136.297500px;}
.y1b_c01166{bottom:152.736000px;}
.y1a_c01166{bottom:169.174500px;}
.y19_c01166{bottom:185.239500px;}
.y18_c01166{bottom:201.678000px;}
.y17_c01166{bottom:218.115000px;}
.y16_c01166{bottom:234.553500px;}
.y15_c01166{bottom:250.992000px;}
.y14_c01166{bottom:267.430500px;}
.y13_c01166{bottom:283.869000px;}
.y12_c01166{bottom:300.307500px;}
.y11_c01166{bottom:333.184500px;}
.y10_c01166{bottom:349.623000px;}
.yf_c01166{bottom:398.937000px;}
.ye_c01166{bottom:415.375500px;}
.yd_c01166{bottom:431.440500px;}
.yc_c01166{bottom:476.827500px;}
.yb_c01166{bottom:494.760000px;}
.ya_c01166{bottom:512.694000px;}
.y9_c01166{bottom:530.626500px;}
.y8_c01166{bottom:548.559000px;}
.y7_c01166{bottom:566.491500px;}
.y6_c01166{bottom:593.472000px;}
.y5_c01166{bottom:620.451000px;}
.y4_c01166{bottom:638.383500px;}
.y3_c01166{bottom:665.364000px;}
.y2_c01166{bottom:692.343000px;}
.y1_c01166{bottom:734.731500px;}
.h5_c01166{height:35.190766px;}
.h6_c01166{height:36.007158px;}
.h3_c01166{height:40.511979px;}
.h4_c01166{height:52.332837px;}
.h2_c01166{height:58.337477px;}
.h0_c01166{height:1262.835000px;}
.h1_c01166{height:1263.000000px;}
.w0_c01166{width:892.920000px;}
.w1_c01166{width:893.250000px;}
.x0_c01166{left:0.000000px;}
.x1_c01166{left:127.558500px;}
.x2_c01166{left:137.122500px;}
.x3_c01166{left:143.770500px;}
.x4_c01166{left:170.359500px;}
.x5_c01166{left:435.249000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls3_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:0.078221pt;}
.ls2_c01166{letter-spacing:0.087539pt;}
.ls1_c01166{letter-spacing:0.092873pt;}
.wse_c01166{word-spacing:-29.967501pt;}
.ws2_c01166{word-spacing:-23.622682pt;}
.ws10_c01166{word-spacing:-23.544461pt;}
.wsb_c01166{word-spacing:-19.158506pt;}
.wsa_c01166{word-spacing:-19.128192pt;}
.ws7_c01166{word-spacing:-16.684034pt;}
.ws9_c01166{word-spacing:-14.239876pt;}
.ws6_c01166{word-spacing:-13.283467pt;}
.wsc_c01166{word-spacing:-12.539593pt;}
.ws5_c01166{word-spacing:-12.486459pt;}
.wsd_c01166{word-spacing:-10.733041pt;}
.ws4_c01166{word-spacing:-9.085891pt;}
.ws1_c01166{word-spacing:-8.878599pt;}
.ws3_c01166{word-spacing:-8.877777pt;}
.ws8_c01166{word-spacing:-4.032128pt;}
.ws14_c01166{word-spacing:0.000000pt;}
.ws11_c01166{word-spacing:0.039110pt;}
.ws17_c01166{word-spacing:0.050460pt;}
.ws15_c01166{word-spacing:0.065111pt;}
.wsf_c01166{word-spacing:0.156442pt;}
.ws18_c01166{word-spacing:0.180412pt;}
.ws12_c01166{word-spacing:0.189730pt;}
.ws13_c01166{word-spacing:0.195063pt;}
.ws16_c01166{word-spacing:23.661792pt;}
.ws0_c01166{word-spacing:38.256533pt;}
._8_c01166{margin-left:-1894.465333pt;}
._1_c01166{margin-left:-5.661967pt;}
._5_c01166{margin-left:-3.400567pt;}
._0_c01166{margin-left:-1.377235pt;}
._6_c01166{width:0.893988pt;}
._3_c01166{width:17.716000pt;}
._2_c01166{width:26.179150pt;}
._4_c01166{width:35.652825pt;}
._a_c01166{width:47.362694pt;}
._7_c01166{width:70.985376pt;}
._9_c01166{width:118.624363pt;}
.fs3_c01166{font-size:27.569600pt;}
.fs2_c01166{font-size:39.110400pt;}
.fs1_c01166{font-size:53.133867pt;}
.fs0_c01166{font-size:76.513067pt;}
.y0_c01166{bottom:0.000000pt;}
.y20_c01166{bottom:39.333333pt;}
.y1f_c01166{bottom:77.317333pt;}
.y1e_c01166{bottom:91.929333pt;}
.y1d_c01166{bottom:106.541333pt;}
.y1c_c01166{bottom:121.153333pt;}
.y1b_c01166{bottom:135.765333pt;}
.y1a_c01166{bottom:150.377333pt;}
.y19_c01166{bottom:164.657333pt;}
.y18_c01166{bottom:179.269333pt;}
.y17_c01166{bottom:193.880000pt;}
.y16_c01166{bottom:208.492000pt;}
.y15_c01166{bottom:223.104000pt;}
.y14_c01166{bottom:237.716000pt;}
.y13_c01166{bottom:252.328000pt;}
.y12_c01166{bottom:266.940000pt;}
.y11_c01166{bottom:296.164000pt;}
.y10_c01166{bottom:310.776000pt;}
.yf_c01166{bottom:354.610667pt;}
.ye_c01166{bottom:369.222667pt;}
.yd_c01166{bottom:383.502667pt;}
.yc_c01166{bottom:423.846667pt;}
.yb_c01166{bottom:439.786667pt;}
.ya_c01166{bottom:455.728000pt;}
.y9_c01166{bottom:471.668000pt;}
.y8_c01166{bottom:487.608000pt;}
.y7_c01166{bottom:503.548000pt;}
.y6_c01166{bottom:527.530667pt;}
.y5_c01166{bottom:551.512000pt;}
.y4_c01166{bottom:567.452000pt;}
.y3_c01166{bottom:591.434667pt;}
.y2_c01166{bottom:615.416000pt;}
.y1_c01166{bottom:653.094667pt;}
.h5_c01166{height:31.280681pt;}
.h6_c01166{height:32.006363pt;}
.h3_c01166{height:36.010648pt;}
.h4_c01166{height:46.518078pt;}
.h2_c01166{height:51.855535pt;}
.h0_c01166{height:1122.520000pt;}
.h1_c01166{height:1122.666667pt;}
.w0_c01166{width:793.706667pt;}
.w1_c01166{width:794.000000pt;}
.x0_c01166{left:0.000000pt;}
.x1_c01166{left:113.385333pt;}
.x2_c01166{left:121.886667pt;}
.x3_c01166{left:127.796000pt;}
.x4_c01166{left:151.430667pt;}
.x5_c01166{left:386.888000pt;}
}





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

.ir_c01167:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_3671358083783e1718ee062d.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01167;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01167;src:url('chunks/assets/font_1c4164110ba7d85fc7385581.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01167;src:url('chunks/assets/font_0c67fdbbb69e67af0dd202a3.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01167;src:url('chunks/assets/font_70b14255a5a5d0b2a51f50a8.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.ls4_c01167{letter-spacing:0.000000px;}
.ls0_c01167{letter-spacing:0.087998px;}
.ls1_c01167{letter-spacing:0.098482px;}
.ls3_c01167{letter-spacing:0.104482px;}
.ls2_c01167{letter-spacing:26.690482px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01167{word-spacing:-26.575517px;}
.ws6_c01167{word-spacing:-26.487518px;}
.wse_c01167{word-spacing:-18.769538px;}
.wsc_c01167{word-spacing:-15.900310px;}
.wsd_c01167{word-spacing:-14.943900px;}
.wsb_c01167{word-spacing:-12.074671px;}
.ws9_c01167{word-spacing:-9.988424px;}
.wsa_c01167{word-spacing:-9.987499px;}
.ws5_c01167{word-spacing:0.000000px;}
.ws3_c01167{word-spacing:0.043999px;}
.ws2_c01167{word-spacing:0.073250px;}
.ws0_c01167{word-spacing:0.083734px;}
.ws7_c01167{word-spacing:0.213446px;}
.ws4_c01167{word-spacing:0.219446px;}
.ws8_c01167{word-spacing:43.038600px;}
._4_c01167{margin-left:-6.369713px;}
._3_c01167{margin-left:-1.549390px;}
._2_c01167{width:1.128106px;}
._6_c01167{width:19.930500px;}
._5_c01167{width:25.700587px;}
._0_c01167{width:53.283031px;}
._1_c01167{width:79.858548px;}
.fc5_c01167{color:rgb(79,153,5);}
.fc4_c01167{color:rgb(207,92,0);}
.fc3_c01167{color:rgb(0,0,207);}
.fc2_c01167{color:rgb(0,0,0);}
.fc1_c01167{color:rgb(143,89,3);}
.fc0_c01167{color:rgb(33,74,135);}
.fs0_c01167{font-size:43.999200px;}
.fs2_c01167{font-size:59.775600px;}
.fs1_c01167{font-size:86.077200px;}
.y0_c01167{bottom:0.000000px;}
.y1f_c01167{bottom:44.250000px;}
.y1e_c01167{bottom:82.051500px;}
.y1d_c01167{bottom:112.167000px;}
.y1c_c01167{bottom:130.099500px;}
.y1b_c01167{bottom:160.215000px;}
.y1a_c01167{bottom:190.330500px;}
.y19_c01167{bottom:237.258000px;}
.y18_c01167{bottom:716.028000px;}
.y17_c01167{bottom:732.465000px;}
.y16_c01167{bottom:748.903500px;}
.y15_c01167{bottom:765.342000px;}
.y14_c01167{bottom:781.780500px;}
.y13_c01167{bottom:798.219000px;}
.y12_c01167{bottom:814.657500px;}
.y11_c01167{bottom:831.096000px;}
.y10_c01167{bottom:847.534500px;}
.yf_c01167{bottom:863.973000px;}
.ye_c01167{bottom:880.411500px;}
.yd_c01167{bottom:913.287000px;}
.yc_c01167{bottom:929.725500px;}
.yb_c01167{bottom:946.164000px;}
.ya_c01167{bottom:979.041000px;}
.y9_c01167{bottom:995.479500px;}
.y8_c01167{bottom:1011.918000px;}
.y7_c01167{bottom:1028.356500px;}
.y6_c01167{bottom:1044.795000px;}
.y5_c01167{bottom:1061.232000px;}
.y4_c01167{bottom:1077.670500px;}
.y3_c01167{bottom:1126.986000px;}
.y2_c01167{bottom:1143.424500px;}
.y1_c01167{bottom:1159.863000px;}
.h3_c01167{height:35.190766px;}
.h2_c01167{height:36.007158px;}
.h5_c01167{height:40.511979px;}
.h6_c01167{height:52.332837px;}
.h4_c01167{height:58.337477px;}
.h0_c01167{height:1262.835000px;}
.h1_c01167{height:1263.000000px;}
.w0_c01167{width:892.920000px;}
.w1_c01167{width:893.250000px;}
.x0_c01167{left:0.000000px;}
.x4_c01167{left:127.558500px;}
.x2_c01167{left:137.122500px;}
.x1_c01167{left:143.770500px;}
.x3_c01167{left:177.007500px;}
.x5_c01167{left:435.249000px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.ls4_c01167{letter-spacing:0.000000pt;}
.ls0_c01167{letter-spacing:0.078221pt;}
.ls1_c01167{letter-spacing:0.087539pt;}
.ls3_c01167{letter-spacing:0.092873pt;}
.ls2_c01167{letter-spacing:23.724873pt;}
.ws1_c01167{word-spacing:-23.622682pt;}
.ws6_c01167{word-spacing:-23.544461pt;}
.wse_c01167{word-spacing:-16.684034pt;}
.wsc_c01167{word-spacing:-14.133609pt;}
.wsd_c01167{word-spacing:-13.283467pt;}
.wsb_c01167{word-spacing:-10.733041pt;}
.ws9_c01167{word-spacing:-8.878599pt;}
.wsa_c01167{word-spacing:-8.877777pt;}
.ws5_c01167{word-spacing:0.000000pt;}
.ws3_c01167{word-spacing:0.039110pt;}
.ws2_c01167{word-spacing:0.065111pt;}
.ws0_c01167{word-spacing:0.074430pt;}
.ws7_c01167{word-spacing:0.189730pt;}
.ws4_c01167{word-spacing:0.195063pt;}
.ws8_c01167{word-spacing:38.256533pt;}
._4_c01167{margin-left:-5.661967pt;}
._3_c01167{margin-left:-1.377235pt;}
._2_c01167{width:1.002761pt;}
._6_c01167{width:17.716000pt;}
._5_c01167{width:22.844966pt;}
._0_c01167{width:47.362694pt;}
._1_c01167{width:70.985376pt;}
.fs0_c01167{font-size:39.110400pt;}
.fs2_c01167{font-size:53.133867pt;}
.fs1_c01167{font-size:76.513067pt;}
.y0_c01167{bottom:0.000000pt;}
.y1f_c01167{bottom:39.333333pt;}
.y1e_c01167{bottom:72.934667pt;}
.y1d_c01167{bottom:99.704000pt;}
.y1c_c01167{bottom:115.644000pt;}
.y1b_c01167{bottom:142.413333pt;}
.y1a_c01167{bottom:169.182667pt;}
.y19_c01167{bottom:210.896000pt;}
.y18_c01167{bottom:636.469333pt;}
.y17_c01167{bottom:651.080000pt;}
.y16_c01167{bottom:665.692000pt;}
.y15_c01167{bottom:680.304000pt;}
.y14_c01167{bottom:694.916000pt;}
.y13_c01167{bottom:709.528000pt;}
.y12_c01167{bottom:724.140000pt;}
.y11_c01167{bottom:738.752000pt;}
.y10_c01167{bottom:753.364000pt;}
.yf_c01167{bottom:767.976000pt;}
.ye_c01167{bottom:782.588000pt;}
.yd_c01167{bottom:811.810667pt;}
.yc_c01167{bottom:826.422667pt;}
.yb_c01167{bottom:841.034667pt;}
.ya_c01167{bottom:870.258667pt;}
.y9_c01167{bottom:884.870667pt;}
.y8_c01167{bottom:899.482667pt;}
.y7_c01167{bottom:914.094667pt;}
.y6_c01167{bottom:928.706667pt;}
.y5_c01167{bottom:943.317333pt;}
.y4_c01167{bottom:957.929333pt;}
.y3_c01167{bottom:1001.765333pt;}
.y2_c01167{bottom:1016.377333pt;}
.y1_c01167{bottom:1030.989333pt;}
.h3_c01167{height:31.280681pt;}
.h2_c01167{height:32.006363pt;}
.h5_c01167{height:36.010648pt;}
.h6_c01167{height:46.518078pt;}
.h4_c01167{height:51.855535pt;}
.h0_c01167{height:1122.520000pt;}
.h1_c01167{height:1122.666667pt;}
.w0_c01167{width:793.706667pt;}
.w1_c01167{width:794.000000pt;}
.x0_c01167{left:0.000000pt;}
.x4_c01167{left:113.385333pt;}
.x2_c01167{left:121.886667pt;}
.x1_c01167{left:127.796000pt;}
.x3_c01167{left:157.340000pt;}
.x5_c01167{left:386.888000pt;}
}





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

.ir_c01168:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01168;src:url('chunks/assets/font_e761ffc957908bc95d932cec.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01168;src:url('chunks/assets/font_0287087052bfd40d1356ca57.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01168;src:url('chunks/assets/font_58604fd479f5000e7ea90e55.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01168;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01168{font-family:ff5_c01168;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01168;src:url('chunks/assets/font_742055a2cc98cb6e3e059a3f.woff2')format("woff");}.ff6_c01168{font-family:ff6_c01168;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01168{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01168{vertical-align:0.000000px;}
.ls4_c01168{letter-spacing:0.000000px;}
.ls0_c01168{letter-spacing:0.087998px;}
.ls2_c01168{letter-spacing:0.098482px;}
.ls1_c01168{letter-spacing:0.104482px;}
.ls3_c01168{letter-spacing:26.690482px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01168{word-spacing:-33.713438px;}
.ws4_c01168{word-spacing:-26.575517px;}
.wsa_c01168{word-spacing:-26.487518px;}
.ws3_c01168{word-spacing:-21.553319px;}
.ws2_c01168{word-spacing:-21.519216px;}
.ws7_c01168{word-spacing:-18.769538px;}
.ws1_c01168{word-spacing:-17.633802px;}
.ws5_c01168{word-spacing:-14.107042px;}
.ws6_c01168{word-spacing:-12.074671px;}
.ws0_c01168{word-spacing:-7.686144px;}
.wse_c01168{word-spacing:0.000000px;}
.wsb_c01168{word-spacing:0.043999px;}
.ws11_c01168{word-spacing:0.056767px;}
.wsf_c01168{word-spacing:0.073250px;}
.ws13_c01168{word-spacing:0.083734px;}
.ws9_c01168{word-spacing:0.175997px;}
.ws12_c01168{word-spacing:0.202963px;}
.wsc_c01168{word-spacing:0.213446px;}
.wsd_c01168{word-spacing:0.219446px;}
.ws10_c01168{word-spacing:26.619516px;}
._7_c01168{margin-left:-2131.273500px;}
._4_c01168{margin-left:-3.825638px;}
._1_c01168{margin-left:-2.347817px;}
._0_c01168{margin-left:-1.075961px;}
._5_c01168{width:1.005737px;}
._2_c01168{width:20.742133px;}
._3_c01168{width:40.109428px;}
._9_c01168{width:53.283031px;}
._6_c01168{width:79.858548px;}
._8_c01168{width:133.452408px;}
.fc6_c01168{color:rgb(0,0,207);}
.fc5_c01168{color:rgb(79,153,5);}
.fc3_c01168{color:rgb(33,74,135);}
.fc2_c01168{color:rgb(143,89,3);}
.fc4_c01168{color:rgb(207,92,0);}
.fc1_c01168{color:rgb(6,69,173);}
.fc0_c01168{color:rgb(0,0,0);}
.fs2_c01168{font-size:31.015800px;}
.fs1_c01168{font-size:43.999200px;}
.fs0_c01168{font-size:59.775600px;}
.y0_c01168{bottom:0.000000px;}
.y32_c01168{bottom:44.250000px;}
.y31_c01168{bottom:96.919500px;}
.y30_c01168{bottom:113.358000px;}
.y2f_c01168{bottom:129.796500px;}
.y2e_c01168{bottom:146.235000px;}
.y2d_c01168{bottom:162.673500px;}
.y2c_c01168{bottom:179.112000px;}
.y2b_c01168{bottom:195.550500px;}
.y2a_c01168{bottom:211.989000px;}
.y29_c01168{bottom:228.427500px;}
.y28_c01168{bottom:244.866000px;}
.y27_c01168{bottom:261.304500px;}
.y26_c01168{bottom:294.180000px;}
.y25_c01168{bottom:310.618500px;}
.y24_c01168{bottom:327.057000px;}
.y23_c01168{bottom:359.934000px;}
.y22_c01168{bottom:376.372500px;}
.y21_c01168{bottom:392.811000px;}
.y20_c01168{bottom:409.249500px;}
.y1f_c01168{bottom:425.688000px;}
.y1e_c01168{bottom:442.125000px;}
.y1d_c01168{bottom:458.563500px;}
.y1c_c01168{bottom:507.879000px;}
.y1b_c01168{bottom:524.317500px;}
.y1a_c01168{bottom:540.756000px;}
.y19_c01168{bottom:557.194500px;}
.y18_c01168{bottom:573.633000px;}
.y17_c01168{bottom:590.071500px;}
.y16_c01168{bottom:606.508500px;}
.y15_c01168{bottom:622.947000px;}
.y14_c01168{bottom:639.385500px;}
.y13_c01168{bottom:655.450500px;}
.y12_c01168{bottom:671.889000px;}
.y11_c01168{bottom:688.327500px;}
.y10_c01168{bottom:704.766000px;}
.yf_c01168{bottom:721.204500px;}
.ye_c01168{bottom:737.643000px;}
.yd_c01168{bottom:754.081500px;}
.yc_c01168{bottom:770.518500px;}
.yb_c01168{bottom:803.395500px;}
.ya_c01168{bottom:819.834000px;}
.y9_c01168{bottom:869.149500px;}
.y8_c01168{bottom:885.588000px;}
.y7_c01168{bottom:901.653000px;}
.y6_c01168{bottom:1070.199000px;}
.y5_c01168{bottom:1088.131500px;}
.y4_c01168{bottom:1106.064000px;}
.y3_c01168{bottom:1123.998000px;}
.y2_c01168{bottom:1141.930500px;}
.y1_c01168{bottom:1159.863000px;}
.h3_c01168{height:35.190766px;}
.h4_c01168{height:36.007158px;}
.h2_c01168{height:52.332837px;}
.h0_c01168{height:1262.835000px;}
.h1_c01168{height:1263.000000px;}
.w0_c01168{width:892.920000px;}
.w1_c01168{width:893.250000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:127.558500px;}
.x2_c01168{left:137.122500px;}
.x3_c01168{left:143.770500px;}
.x4_c01168{left:170.359500px;}
.x5_c01168{left:177.007500px;}
.x6_c01168{left:435.249000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls4_c01168{letter-spacing:0.000000pt;}
.ls0_c01168{letter-spacing:0.078221pt;}
.ls2_c01168{letter-spacing:0.087539pt;}
.ls1_c01168{letter-spacing:0.092873pt;}
.ls3_c01168{letter-spacing:23.724873pt;}
.ws8_c01168{word-spacing:-29.967501pt;}
.ws4_c01168{word-spacing:-23.622682pt;}
.wsa_c01168{word-spacing:-23.544461pt;}
.ws3_c01168{word-spacing:-19.158506pt;}
.ws2_c01168{word-spacing:-19.128192pt;}
.ws7_c01168{word-spacing:-16.684034pt;}
.ws1_c01168{word-spacing:-15.674491pt;}
.ws5_c01168{word-spacing:-12.539593pt;}
.ws6_c01168{word-spacing:-10.733041pt;}
.ws0_c01168{word-spacing:-6.832128pt;}
.wse_c01168{word-spacing:0.000000pt;}
.wsb_c01168{word-spacing:0.039110pt;}
.ws11_c01168{word-spacing:0.050460pt;}
.wsf_c01168{word-spacing:0.065111pt;}
.ws13_c01168{word-spacing:0.074430pt;}
.ws9_c01168{word-spacing:0.156442pt;}
.ws12_c01168{word-spacing:0.180412pt;}
.wsc_c01168{word-spacing:0.189730pt;}
.wsd_c01168{word-spacing:0.195063pt;}
.ws10_c01168{word-spacing:23.661792pt;}
._7_c01168{margin-left:-1894.465333pt;}
._4_c01168{margin-left:-3.400567pt;}
._1_c01168{margin-left:-2.086948pt;}
._0_c01168{margin-left:-0.956410pt;}
._5_c01168{width:0.893988pt;}
._2_c01168{width:18.437452pt;}
._3_c01168{width:35.652825pt;}
._9_c01168{width:47.362694pt;}
._6_c01168{width:70.985376pt;}
._8_c01168{width:118.624363pt;}
.fs2_c01168{font-size:27.569600pt;}
.fs1_c01168{font-size:39.110400pt;}
.fs0_c01168{font-size:53.133867pt;}
.y0_c01168{bottom:0.000000pt;}
.y32_c01168{bottom:39.333333pt;}
.y31_c01168{bottom:86.150667pt;}
.y30_c01168{bottom:100.762667pt;}
.y2f_c01168{bottom:115.374667pt;}
.y2e_c01168{bottom:129.986667pt;}
.y2d_c01168{bottom:144.598667pt;}
.y2c_c01168{bottom:159.210667pt;}
.y2b_c01168{bottom:173.822667pt;}
.y2a_c01168{bottom:188.434667pt;}
.y29_c01168{bottom:203.046667pt;}
.y28_c01168{bottom:217.658667pt;}
.y27_c01168{bottom:232.270667pt;}
.y26_c01168{bottom:261.493333pt;}
.y25_c01168{bottom:276.105333pt;}
.y24_c01168{bottom:290.717333pt;}
.y23_c01168{bottom:319.941333pt;}
.y22_c01168{bottom:334.553333pt;}
.y21_c01168{bottom:349.165333pt;}
.y20_c01168{bottom:363.777333pt;}
.y1f_c01168{bottom:378.389333pt;}
.y1e_c01168{bottom:393.000000pt;}
.y1d_c01168{bottom:407.612000pt;}
.y1c_c01168{bottom:451.448000pt;}
.y1b_c01168{bottom:466.060000pt;}
.y1a_c01168{bottom:480.672000pt;}
.y19_c01168{bottom:495.284000pt;}
.y18_c01168{bottom:509.896000pt;}
.y17_c01168{bottom:524.508000pt;}
.y16_c01168{bottom:539.118667pt;}
.y15_c01168{bottom:553.730667pt;}
.y14_c01168{bottom:568.342667pt;}
.y13_c01168{bottom:582.622667pt;}
.y12_c01168{bottom:597.234667pt;}
.y11_c01168{bottom:611.846667pt;}
.y10_c01168{bottom:626.458667pt;}
.yf_c01168{bottom:641.070667pt;}
.ye_c01168{bottom:655.682667pt;}
.yd_c01168{bottom:670.294667pt;}
.yc_c01168{bottom:684.905333pt;}
.yb_c01168{bottom:714.129333pt;}
.ya_c01168{bottom:728.741333pt;}
.y9_c01168{bottom:772.577333pt;}
.y8_c01168{bottom:787.189333pt;}
.y7_c01168{bottom:801.469333pt;}
.y6_c01168{bottom:951.288000pt;}
.y5_c01168{bottom:967.228000pt;}
.y4_c01168{bottom:983.168000pt;}
.y3_c01168{bottom:999.109333pt;}
.y2_c01168{bottom:1015.049333pt;}
.y1_c01168{bottom:1030.989333pt;}
.h3_c01168{height:31.280681pt;}
.h4_c01168{height:32.006363pt;}
.h2_c01168{height:46.518078pt;}
.h0_c01168{height:1122.520000pt;}
.h1_c01168{height:1122.666667pt;}
.w0_c01168{width:793.706667pt;}
.w1_c01168{width:794.000000pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:113.385333pt;}
.x2_c01168{left:121.886667pt;}
.x3_c01168{left:127.796000pt;}
.x4_c01168{left:151.430667pt;}
.x5_c01168{left:157.340000pt;}
.x6_c01168{left:386.888000pt;}
}





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

.ir_c01169:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_6f84000bf0a09cfc0eebca87.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01169;src:url('chunks/assets/font_8a42360a034dd06103e7019f.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01169;src:url('chunks/assets/font_8e1417ffd9eaa0b95a54daeb.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01169;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01169;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01169{font-family:ff5_c01169;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01169;src:url('chunks/assets/font_11415299d508bb3c439b9419.woff2')format("woff");}.ff6_c01169{font-family:ff6_c01169;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01169{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01169{vertical-align:0.000000px;}
.ls3_c01169{letter-spacing:0.000000px;}
.ls0_c01169{letter-spacing:0.087998px;}
.ls2_c01169{letter-spacing:0.098482px;}
.ls1_c01169{letter-spacing:0.104482px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01169{word-spacing:-33.713438px;}
.ws2_c01169{word-spacing:-26.575517px;}
.ws10_c01169{word-spacing:-26.487518px;}
.wsb_c01169{word-spacing:-21.553319px;}
.wsa_c01169{word-spacing:-21.519216px;}
.ws5_c01169{word-spacing:-19.845499px;}
.ws7_c01169{word-spacing:-18.769538px;}
.ws9_c01169{word-spacing:-17.633802px;}
.ws4_c01169{word-spacing:-16.079636px;}
.ws6_c01169{word-spacing:-14.943900px;}
.wsc_c01169{word-spacing:-14.107042px;}
.wsd_c01169{word-spacing:-12.074671px;}
.ws1_c01169{word-spacing:-9.988424px;}
.ws3_c01169{word-spacing:-9.987499px;}
.ws8_c01169{word-spacing:-7.686144px;}
.ws14_c01169{word-spacing:0.000000px;}
.ws11_c01169{word-spacing:0.043999px;}
.ws17_c01169{word-spacing:0.056767px;}
.ws15_c01169{word-spacing:0.073250px;}
.wsf_c01169{word-spacing:0.175997px;}
.ws18_c01169{word-spacing:0.202963px;}
.ws12_c01169{word-spacing:0.213446px;}
.ws13_c01169{word-spacing:0.219446px;}
.ws16_c01169{word-spacing:26.619516px;}
.ws0_c01169{word-spacing:43.038600px;}
._8_c01169{margin-left:-2131.273500px;}
._1_c01169{margin-left:-6.369713px;}
._5_c01169{margin-left:-3.825638px;}
._0_c01169{margin-left:-1.549390px;}
._6_c01169{width:1.005737px;}
._2_c01169{width:19.427552px;}
._3_c01169{width:20.742133px;}
._4_c01169{width:40.109428px;}
._a_c01169{width:53.283031px;}
._7_c01169{width:79.858548px;}
._9_c01169{width:133.452408px;}
.fc6_c01169{color:rgb(0,0,207);}
.fc5_c01169{color:rgb(79,153,5);}
.fc3_c01169{color:rgb(33,74,135);}
.fc2_c01169{color:rgb(143,89,3);}
.fc4_c01169{color:rgb(207,92,0);}
.fc1_c01169{color:rgb(6,69,173);}
.fc0_c01169{color:rgb(0,0,0);}
.fs3_c01169{font-size:31.015800px;}
.fs2_c01169{font-size:43.999200px;}
.fs1_c01169{font-size:59.775600px;}
.fs0_c01169{font-size:86.077200px;}
.y0_c01169{bottom:0.000000px;}
.y20_c01169{bottom:44.250000px;}
.y1f_c01169{bottom:86.982000px;}
.y1e_c01169{bottom:103.420500px;}
.y1d_c01169{bottom:119.859000px;}
.y1c_c01169{bottom:136.297500px;}
.y1b_c01169{bottom:152.736000px;}
.y1a_c01169{bottom:169.174500px;}
.y19_c01169{bottom:185.239500px;}
.y18_c01169{bottom:201.678000px;}
.y17_c01169{bottom:218.115000px;}
.y16_c01169{bottom:234.553500px;}
.y15_c01169{bottom:250.992000px;}
.y14_c01169{bottom:267.430500px;}
.y13_c01169{bottom:283.869000px;}
.y12_c01169{bottom:300.307500px;}
.y11_c01169{bottom:333.184500px;}
.y10_c01169{bottom:349.623000px;}
.yf_c01169{bottom:398.937000px;}
.ye_c01169{bottom:415.375500px;}
.yd_c01169{bottom:431.440500px;}
.yc_c01169{bottom:476.827500px;}
.yb_c01169{bottom:494.760000px;}
.ya_c01169{bottom:512.694000px;}
.y9_c01169{bottom:530.626500px;}
.y8_c01169{bottom:548.559000px;}
.y7_c01169{bottom:566.491500px;}
.y6_c01169{bottom:593.472000px;}
.y5_c01169{bottom:620.451000px;}
.y4_c01169{bottom:638.383500px;}
.y3_c01169{bottom:665.364000px;}
.y2_c01169{bottom:692.343000px;}
.y1_c01169{bottom:734.731500px;}
.h5_c01169{height:35.190766px;}
.h6_c01169{height:36.007158px;}
.h3_c01169{height:40.511979px;}
.h4_c01169{height:52.332837px;}
.h2_c01169{height:58.337477px;}
.h0_c01169{height:1262.835000px;}
.h1_c01169{height:1263.000000px;}
.w0_c01169{width:892.920000px;}
.w1_c01169{width:893.250000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:127.558500px;}
.x2_c01169{left:137.122500px;}
.x3_c01169{left:143.770500px;}
.x4_c01169{left:170.359500px;}
.x5_c01169{left:435.249000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls3_c01169{letter-spacing:0.000000pt;}
.ls0_c01169{letter-spacing:0.078221pt;}
.ls2_c01169{letter-spacing:0.087539pt;}
.ls1_c01169{letter-spacing:0.092873pt;}
.wse_c01169{word-spacing:-29.967501pt;}
.ws2_c01169{word-spacing:-23.622682pt;}
.ws10_c01169{word-spacing:-23.544461pt;}
.wsb_c01169{word-spacing:-19.158506pt;}
.wsa_c01169{word-spacing:-19.128192pt;}
.ws5_c01169{word-spacing:-17.640444pt;}
.ws7_c01169{word-spacing:-16.684034pt;}
.ws9_c01169{word-spacing:-15.674491pt;}
.ws4_c01169{word-spacing:-14.293010pt;}
.ws6_c01169{word-spacing:-13.283467pt;}
.wsc_c01169{word-spacing:-12.539593pt;}
.wsd_c01169{word-spacing:-10.733041pt;}
.ws1_c01169{word-spacing:-8.878599pt;}
.ws3_c01169{word-spacing:-8.877777pt;}
.ws8_c01169{word-spacing:-6.832128pt;}
.ws14_c01169{word-spacing:0.000000pt;}
.ws11_c01169{word-spacing:0.039110pt;}
.ws17_c01169{word-spacing:0.050460pt;}
.ws15_c01169{word-spacing:0.065111pt;}
.wsf_c01169{word-spacing:0.156442pt;}
.ws18_c01169{word-spacing:0.180412pt;}
.ws12_c01169{word-spacing:0.189730pt;}
.ws13_c01169{word-spacing:0.195063pt;}
.ws16_c01169{word-spacing:23.661792pt;}
.ws0_c01169{word-spacing:38.256533pt;}
._8_c01169{margin-left:-1894.465333pt;}
._1_c01169{margin-left:-5.661967pt;}
._5_c01169{margin-left:-3.400567pt;}
._0_c01169{margin-left:-1.377235pt;}
._6_c01169{width:0.893988pt;}
._2_c01169{width:17.268935pt;}
._3_c01169{width:18.437452pt;}
._4_c01169{width:35.652825pt;}
._a_c01169{width:47.362694pt;}
._7_c01169{width:70.985376pt;}
._9_c01169{width:118.624363pt;}
.fs3_c01169{font-size:27.569600pt;}
.fs2_c01169{font-size:39.110400pt;}
.fs1_c01169{font-size:53.133867pt;}
.fs0_c01169{font-size:76.513067pt;}
.y0_c01169{bottom:0.000000pt;}
.y20_c01169{bottom:39.333333pt;}
.y1f_c01169{bottom:77.317333pt;}
.y1e_c01169{bottom:91.929333pt;}
.y1d_c01169{bottom:106.541333pt;}
.y1c_c01169{bottom:121.153333pt;}
.y1b_c01169{bottom:135.765333pt;}
.y1a_c01169{bottom:150.377333pt;}
.y19_c01169{bottom:164.657333pt;}
.y18_c01169{bottom:179.269333pt;}
.y17_c01169{bottom:193.880000pt;}
.y16_c01169{bottom:208.492000pt;}
.y15_c01169{bottom:223.104000pt;}
.y14_c01169{bottom:237.716000pt;}
.y13_c01169{bottom:252.328000pt;}
.y12_c01169{bottom:266.940000pt;}
.y11_c01169{bottom:296.164000pt;}
.y10_c01169{bottom:310.776000pt;}
.yf_c01169{bottom:354.610667pt;}
.ye_c01169{bottom:369.222667pt;}
.yd_c01169{bottom:383.502667pt;}
.yc_c01169{bottom:423.846667pt;}
.yb_c01169{bottom:439.786667pt;}
.ya_c01169{bottom:455.728000pt;}
.y9_c01169{bottom:471.668000pt;}
.y8_c01169{bottom:487.608000pt;}
.y7_c01169{bottom:503.548000pt;}
.y6_c01169{bottom:527.530667pt;}
.y5_c01169{bottom:551.512000pt;}
.y4_c01169{bottom:567.452000pt;}
.y3_c01169{bottom:591.434667pt;}
.y2_c01169{bottom:615.416000pt;}
.y1_c01169{bottom:653.094667pt;}
.h5_c01169{height:31.280681pt;}
.h6_c01169{height:32.006363pt;}
.h3_c01169{height:36.010648pt;}
.h4_c01169{height:46.518078pt;}
.h2_c01169{height:51.855535pt;}
.h0_c01169{height:1122.520000pt;}
.h1_c01169{height:1122.666667pt;}
.w0_c01169{width:793.706667pt;}
.w1_c01169{width:794.000000pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:113.385333pt;}
.x2_c01169{left:121.886667pt;}
.x3_c01169{left:127.796000pt;}
.x4_c01169{left:151.430667pt;}
.x5_c01169{left:386.888000pt;}
}





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

.ir_c01170:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_bf4eed816d49de147ecc5ef3.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01170;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01170;src:url('chunks/assets/font_d3806e6daaefbcf2c1f7b27c.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01170;src:url('chunks/assets/font_7c0d65e56b2a3f7530dbc063.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01170;src:url('chunks/assets/font_3afed68ce9f4bdbc8f09f61f.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.ls4_c01170{letter-spacing:0.000000px;}
.ls0_c01170{letter-spacing:0.087998px;}
.ls1_c01170{letter-spacing:0.098482px;}
.ls3_c01170{letter-spacing:0.104482px;}
.ls2_c01170{letter-spacing:26.690482px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01170{word-spacing:-26.575517px;}
.ws6_c01170{word-spacing:-26.487518px;}
.wse_c01170{word-spacing:-18.769538px;}
.wsd_c01170{word-spacing:-14.943900px;}
.wsc_c01170{word-spacing:-13.090856px;}
.ws9_c01170{word-spacing:-9.988424px;}
.wsa_c01170{word-spacing:-9.987499px;}
.wsb_c01170{word-spacing:-9.265218px;}
.ws5_c01170{word-spacing:0.000000px;}
.ws3_c01170{word-spacing:0.043999px;}
.ws2_c01170{word-spacing:0.073250px;}
.ws0_c01170{word-spacing:0.083734px;}
.ws7_c01170{word-spacing:0.213446px;}
.ws4_c01170{word-spacing:0.219446px;}
.ws8_c01170{word-spacing:43.038600px;}
._4_c01170{margin-left:-6.369713px;}
._3_c01170{margin-left:-1.549390px;}
._2_c01170{width:1.144589px;}
._6_c01170{width:19.930500px;}
._5_c01170{width:31.297134px;}
._0_c01170{width:53.283031px;}
._1_c01170{width:79.858548px;}
.fc5_c01170{color:rgb(79,153,5);}
.fc4_c01170{color:rgb(207,92,0);}
.fc3_c01170{color:rgb(0,0,207);}
.fc2_c01170{color:rgb(0,0,0);}
.fc1_c01170{color:rgb(143,89,3);}
.fc0_c01170{color:rgb(33,74,135);}
.fs0_c01170{font-size:43.999200px;}
.fs2_c01170{font-size:59.775600px;}
.fs1_c01170{font-size:86.077200px;}
.y0_c01170{bottom:0.000000px;}
.y1f_c01170{bottom:44.250000px;}
.y1e_c01170{bottom:82.051500px;}
.y1d_c01170{bottom:112.167000px;}
.y1c_c01170{bottom:130.099500px;}
.y1b_c01170{bottom:160.215000px;}
.y1a_c01170{bottom:190.330500px;}
.y19_c01170{bottom:237.258000px;}
.y18_c01170{bottom:716.028000px;}
.y17_c01170{bottom:732.465000px;}
.y16_c01170{bottom:748.903500px;}
.y15_c01170{bottom:765.342000px;}
.y14_c01170{bottom:781.780500px;}
.y13_c01170{bottom:798.219000px;}
.y12_c01170{bottom:814.657500px;}
.y11_c01170{bottom:831.096000px;}
.y10_c01170{bottom:847.534500px;}
.yf_c01170{bottom:863.973000px;}
.ye_c01170{bottom:880.411500px;}
.yd_c01170{bottom:913.287000px;}
.yc_c01170{bottom:929.725500px;}
.yb_c01170{bottom:946.164000px;}
.ya_c01170{bottom:979.041000px;}
.y9_c01170{bottom:995.479500px;}
.y8_c01170{bottom:1011.918000px;}
.y7_c01170{bottom:1028.356500px;}
.y6_c01170{bottom:1044.795000px;}
.y5_c01170{bottom:1061.232000px;}
.y4_c01170{bottom:1077.670500px;}
.y3_c01170{bottom:1126.986000px;}
.y2_c01170{bottom:1143.424500px;}
.y1_c01170{bottom:1159.863000px;}
.h3_c01170{height:35.190766px;}
.h2_c01170{height:36.007158px;}
.h5_c01170{height:40.511979px;}
.h6_c01170{height:52.332837px;}
.h4_c01170{height:58.337477px;}
.h0_c01170{height:1262.835000px;}
.h1_c01170{height:1263.000000px;}
.w0_c01170{width:892.920000px;}
.w1_c01170{width:893.250000px;}
.x0_c01170{left:0.000000px;}
.x4_c01170{left:127.558500px;}
.x2_c01170{left:137.122500px;}
.x1_c01170{left:143.770500px;}
.x3_c01170{left:177.007500px;}
.x5_c01170{left:435.249000px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.ls4_c01170{letter-spacing:0.000000pt;}
.ls0_c01170{letter-spacing:0.078221pt;}
.ls1_c01170{letter-spacing:0.087539pt;}
.ls3_c01170{letter-spacing:0.092873pt;}
.ls2_c01170{letter-spacing:23.724873pt;}
.ws1_c01170{word-spacing:-23.622682pt;}
.ws6_c01170{word-spacing:-23.544461pt;}
.wse_c01170{word-spacing:-16.684034pt;}
.wsd_c01170{word-spacing:-13.283467pt;}
.wsc_c01170{word-spacing:-11.636317pt;}
.ws9_c01170{word-spacing:-8.878599pt;}
.wsa_c01170{word-spacing:-8.877777pt;}
.wsb_c01170{word-spacing:-8.235749pt;}
.ws5_c01170{word-spacing:0.000000pt;}
.ws3_c01170{word-spacing:0.039110pt;}
.ws2_c01170{word-spacing:0.065111pt;}
.ws0_c01170{word-spacing:0.074430pt;}
.ws7_c01170{word-spacing:0.189730pt;}
.ws4_c01170{word-spacing:0.195063pt;}
.ws8_c01170{word-spacing:38.256533pt;}
._4_c01170{margin-left:-5.661967pt;}
._3_c01170{margin-left:-1.377235pt;}
._2_c01170{width:1.017412pt;}
._6_c01170{width:17.716000pt;}
._5_c01170{width:27.819675pt;}
._0_c01170{width:47.362694pt;}
._1_c01170{width:70.985376pt;}
.fs0_c01170{font-size:39.110400pt;}
.fs2_c01170{font-size:53.133867pt;}
.fs1_c01170{font-size:76.513067pt;}
.y0_c01170{bottom:0.000000pt;}
.y1f_c01170{bottom:39.333333pt;}
.y1e_c01170{bottom:72.934667pt;}
.y1d_c01170{bottom:99.704000pt;}
.y1c_c01170{bottom:115.644000pt;}
.y1b_c01170{bottom:142.413333pt;}
.y1a_c01170{bottom:169.182667pt;}
.y19_c01170{bottom:210.896000pt;}
.y18_c01170{bottom:636.469333pt;}
.y17_c01170{bottom:651.080000pt;}
.y16_c01170{bottom:665.692000pt;}
.y15_c01170{bottom:680.304000pt;}
.y14_c01170{bottom:694.916000pt;}
.y13_c01170{bottom:709.528000pt;}
.y12_c01170{bottom:724.140000pt;}
.y11_c01170{bottom:738.752000pt;}
.y10_c01170{bottom:753.364000pt;}
.yf_c01170{bottom:767.976000pt;}
.ye_c01170{bottom:782.588000pt;}
.yd_c01170{bottom:811.810667pt;}
.yc_c01170{bottom:826.422667pt;}
.yb_c01170{bottom:841.034667pt;}
.ya_c01170{bottom:870.258667pt;}
.y9_c01170{bottom:884.870667pt;}
.y8_c01170{bottom:899.482667pt;}
.y7_c01170{bottom:914.094667pt;}
.y6_c01170{bottom:928.706667pt;}
.y5_c01170{bottom:943.317333pt;}
.y4_c01170{bottom:957.929333pt;}
.y3_c01170{bottom:1001.765333pt;}
.y2_c01170{bottom:1016.377333pt;}
.y1_c01170{bottom:1030.989333pt;}
.h3_c01170{height:31.280681pt;}
.h2_c01170{height:32.006363pt;}
.h5_c01170{height:36.010648pt;}
.h6_c01170{height:46.518078pt;}
.h4_c01170{height:51.855535pt;}
.h0_c01170{height:1122.520000pt;}
.h1_c01170{height:1122.666667pt;}
.w0_c01170{width:793.706667pt;}
.w1_c01170{width:794.000000pt;}
.x0_c01170{left:0.000000pt;}
.x4_c01170{left:113.385333pt;}
.x2_c01170{left:121.886667pt;}
.x1_c01170{left:127.796000pt;}
.x3_c01170{left:157.340000pt;}
.x5_c01170{left:386.888000pt;}
}





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

.ir_c01171:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01171;src:url('chunks/assets/font_a64d33bc0acec37fc2b50057.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01171;src:url('chunks/assets/font_765e52d70e856dfb68d1c836.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01171;src:url('chunks/assets/font_fd72397134f0129c760af479.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01171;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01171{font-family:ff5_c01171;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01171;src:url('chunks/assets/font_ef1bd7e8e5afc69ed09cfc3d.woff2')format("woff");}.ff6_c01171{font-family:ff6_c01171;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01171{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls4_c01171{letter-spacing:0.000000px;}
.ls0_c01171{letter-spacing:0.087998px;}
.ls2_c01171{letter-spacing:0.098482px;}
.ls1_c01171{letter-spacing:0.104482px;}
.ls3_c01171{letter-spacing:26.690482px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01171{word-spacing:-33.713438px;}
.ws4_c01171{word-spacing:-26.575517px;}
.wsa_c01171{word-spacing:-26.487518px;}
.ws3_c01171{word-spacing:-21.553319px;}
.ws2_c01171{word-spacing:-21.519216px;}
.ws1_c01171{word-spacing:-19.247743px;}
.ws7_c01171{word-spacing:-18.769538px;}
.ws5_c01171{word-spacing:-14.107042px;}
.ws6_c01171{word-spacing:-12.074671px;}
.ws0_c01171{word-spacing:-10.230144px;}
.wse_c01171{word-spacing:0.000000px;}
.wsb_c01171{word-spacing:0.043999px;}
.ws11_c01171{word-spacing:0.056767px;}
.wsf_c01171{word-spacing:0.073250px;}
.ws13_c01171{word-spacing:0.083734px;}
.ws9_c01171{word-spacing:0.175997px;}
.ws12_c01171{word-spacing:0.202963px;}
.wsc_c01171{word-spacing:0.213446px;}
.wsd_c01171{word-spacing:0.219446px;}
.ws10_c01171{word-spacing:26.619516px;}
._7_c01171{margin-left:-2131.273500px;}
._4_c01171{margin-left:-3.825638px;}
._1_c01171{margin-left:-2.347817px;}
._0_c01171{margin-left:-1.075961px;}
._5_c01171{width:1.005737px;}
._2_c01171{width:20.742133px;}
._3_c01171{width:40.109428px;}
._9_c01171{width:53.283031px;}
._6_c01171{width:79.858548px;}
._8_c01171{width:133.452408px;}
.fc6_c01171{color:rgb(0,0,207);}
.fc5_c01171{color:rgb(79,153,5);}
.fc3_c01171{color:rgb(33,74,135);}
.fc2_c01171{color:rgb(143,89,3);}
.fc4_c01171{color:rgb(207,92,0);}
.fc1_c01171{color:rgb(6,69,173);}
.fc0_c01171{color:rgb(0,0,0);}
.fs2_c01171{font-size:31.015800px;}
.fs1_c01171{font-size:43.999200px;}
.fs0_c01171{font-size:59.775600px;}
.y0_c01171{bottom:0.000000px;}
.y32_c01171{bottom:44.250000px;}
.y31_c01171{bottom:96.919500px;}
.y30_c01171{bottom:113.358000px;}
.y2f_c01171{bottom:129.796500px;}
.y2e_c01171{bottom:146.235000px;}
.y2d_c01171{bottom:162.673500px;}
.y2c_c01171{bottom:179.112000px;}
.y2b_c01171{bottom:195.550500px;}
.y2a_c01171{bottom:211.989000px;}
.y29_c01171{bottom:228.427500px;}
.y28_c01171{bottom:244.866000px;}
.y27_c01171{bottom:261.304500px;}
.y26_c01171{bottom:294.180000px;}
.y25_c01171{bottom:310.618500px;}
.y24_c01171{bottom:327.057000px;}
.y23_c01171{bottom:359.934000px;}
.y22_c01171{bottom:376.372500px;}
.y21_c01171{bottom:392.811000px;}
.y20_c01171{bottom:409.249500px;}
.y1f_c01171{bottom:425.688000px;}
.y1e_c01171{bottom:442.125000px;}
.y1d_c01171{bottom:458.563500px;}
.y1c_c01171{bottom:507.879000px;}
.y1b_c01171{bottom:524.317500px;}
.y1a_c01171{bottom:540.756000px;}
.y19_c01171{bottom:557.194500px;}
.y18_c01171{bottom:573.633000px;}
.y17_c01171{bottom:590.071500px;}
.y16_c01171{bottom:606.508500px;}
.y15_c01171{bottom:622.947000px;}
.y14_c01171{bottom:639.385500px;}
.y13_c01171{bottom:655.450500px;}
.y12_c01171{bottom:671.889000px;}
.y11_c01171{bottom:688.327500px;}
.y10_c01171{bottom:704.766000px;}
.yf_c01171{bottom:721.204500px;}
.ye_c01171{bottom:737.643000px;}
.yd_c01171{bottom:754.081500px;}
.yc_c01171{bottom:770.518500px;}
.yb_c01171{bottom:803.395500px;}
.ya_c01171{bottom:819.834000px;}
.y9_c01171{bottom:869.149500px;}
.y8_c01171{bottom:885.588000px;}
.y7_c01171{bottom:901.653000px;}
.y6_c01171{bottom:1070.199000px;}
.y5_c01171{bottom:1088.131500px;}
.y4_c01171{bottom:1106.064000px;}
.y3_c01171{bottom:1123.998000px;}
.y2_c01171{bottom:1141.930500px;}
.y1_c01171{bottom:1159.863000px;}
.h3_c01171{height:35.190766px;}
.h4_c01171{height:36.007158px;}
.h2_c01171{height:52.332837px;}
.h0_c01171{height:1262.835000px;}
.h1_c01171{height:1263.000000px;}
.w0_c01171{width:892.920000px;}
.w1_c01171{width:893.250000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:127.558500px;}
.x2_c01171{left:137.122500px;}
.x3_c01171{left:143.770500px;}
.x4_c01171{left:170.359500px;}
.x5_c01171{left:177.007500px;}
.x6_c01171{left:435.249000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls4_c01171{letter-spacing:0.000000pt;}
.ls0_c01171{letter-spacing:0.078221pt;}
.ls2_c01171{letter-spacing:0.087539pt;}
.ls1_c01171{letter-spacing:0.092873pt;}
.ls3_c01171{letter-spacing:23.724873pt;}
.ws8_c01171{word-spacing:-29.967501pt;}
.ws4_c01171{word-spacing:-23.622682pt;}
.wsa_c01171{word-spacing:-23.544461pt;}
.ws3_c01171{word-spacing:-19.158506pt;}
.ws2_c01171{word-spacing:-19.128192pt;}
.ws1_c01171{word-spacing:-17.109105pt;}
.ws7_c01171{word-spacing:-16.684034pt;}
.ws5_c01171{word-spacing:-12.539593pt;}
.ws6_c01171{word-spacing:-10.733041pt;}
.ws0_c01171{word-spacing:-9.093461pt;}
.wse_c01171{word-spacing:0.000000pt;}
.wsb_c01171{word-spacing:0.039110pt;}
.ws11_c01171{word-spacing:0.050460pt;}
.wsf_c01171{word-spacing:0.065111pt;}
.ws13_c01171{word-spacing:0.074430pt;}
.ws9_c01171{word-spacing:0.156442pt;}
.ws12_c01171{word-spacing:0.180412pt;}
.wsc_c01171{word-spacing:0.189730pt;}
.wsd_c01171{word-spacing:0.195063pt;}
.ws10_c01171{word-spacing:23.661792pt;}
._7_c01171{margin-left:-1894.465333pt;}
._4_c01171{margin-left:-3.400567pt;}
._1_c01171{margin-left:-2.086948pt;}
._0_c01171{margin-left:-0.956410pt;}
._5_c01171{width:0.893988pt;}
._2_c01171{width:18.437452pt;}
._3_c01171{width:35.652825pt;}
._9_c01171{width:47.362694pt;}
._6_c01171{width:70.985376pt;}
._8_c01171{width:118.624363pt;}
.fs2_c01171{font-size:27.569600pt;}
.fs1_c01171{font-size:39.110400pt;}
.fs0_c01171{font-size:53.133867pt;}
.y0_c01171{bottom:0.000000pt;}
.y32_c01171{bottom:39.333333pt;}
.y31_c01171{bottom:86.150667pt;}
.y30_c01171{bottom:100.762667pt;}
.y2f_c01171{bottom:115.374667pt;}
.y2e_c01171{bottom:129.986667pt;}
.y2d_c01171{bottom:144.598667pt;}
.y2c_c01171{bottom:159.210667pt;}
.y2b_c01171{bottom:173.822667pt;}
.y2a_c01171{bottom:188.434667pt;}
.y29_c01171{bottom:203.046667pt;}
.y28_c01171{bottom:217.658667pt;}
.y27_c01171{bottom:232.270667pt;}
.y26_c01171{bottom:261.493333pt;}
.y25_c01171{bottom:276.105333pt;}
.y24_c01171{bottom:290.717333pt;}
.y23_c01171{bottom:319.941333pt;}
.y22_c01171{bottom:334.553333pt;}
.y21_c01171{bottom:349.165333pt;}
.y20_c01171{bottom:363.777333pt;}
.y1f_c01171{bottom:378.389333pt;}
.y1e_c01171{bottom:393.000000pt;}
.y1d_c01171{bottom:407.612000pt;}
.y1c_c01171{bottom:451.448000pt;}
.y1b_c01171{bottom:466.060000pt;}
.y1a_c01171{bottom:480.672000pt;}
.y19_c01171{bottom:495.284000pt;}
.y18_c01171{bottom:509.896000pt;}
.y17_c01171{bottom:524.508000pt;}
.y16_c01171{bottom:539.118667pt;}
.y15_c01171{bottom:553.730667pt;}
.y14_c01171{bottom:568.342667pt;}
.y13_c01171{bottom:582.622667pt;}
.y12_c01171{bottom:597.234667pt;}
.y11_c01171{bottom:611.846667pt;}
.y10_c01171{bottom:626.458667pt;}
.yf_c01171{bottom:641.070667pt;}
.ye_c01171{bottom:655.682667pt;}
.yd_c01171{bottom:670.294667pt;}
.yc_c01171{bottom:684.905333pt;}
.yb_c01171{bottom:714.129333pt;}
.ya_c01171{bottom:728.741333pt;}
.y9_c01171{bottom:772.577333pt;}
.y8_c01171{bottom:787.189333pt;}
.y7_c01171{bottom:801.469333pt;}
.y6_c01171{bottom:951.288000pt;}
.y5_c01171{bottom:967.228000pt;}
.y4_c01171{bottom:983.168000pt;}
.y3_c01171{bottom:999.109333pt;}
.y2_c01171{bottom:1015.049333pt;}
.y1_c01171{bottom:1030.989333pt;}
.h3_c01171{height:31.280681pt;}
.h4_c01171{height:32.006363pt;}
.h2_c01171{height:46.518078pt;}
.h0_c01171{height:1122.520000pt;}
.h1_c01171{height:1122.666667pt;}
.w0_c01171{width:793.706667pt;}
.w1_c01171{width:794.000000pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:113.385333pt;}
.x2_c01171{left:121.886667pt;}
.x3_c01171{left:127.796000pt;}
.x4_c01171{left:151.430667pt;}
.x5_c01171{left:157.340000pt;}
.x6_c01171{left:386.888000pt;}
}





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

.ir_c01172:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_c1259fa31275dbee8ed83b36.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01172;src:url('chunks/assets/font_6f0a9c7cedf8344dd21bf107.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01172;src:url('chunks/assets/font_f1b584e9dadadcf69c917c8b.woff2')format("woff");}.ff3_c01172{font-family:ff3_c01172;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01172;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01172{font-family:ff4_c01172;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01172;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01172{font-family:ff5_c01172;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.ls3_c01172{letter-spacing:0.000000px;}
.ls0_c01172{letter-spacing:0.087998px;}
.ls2_c01172{letter-spacing:0.098482px;}
.ls1_c01172{letter-spacing:0.104482px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01172{word-spacing:-26.575517px;}
.ws18_c01172{word-spacing:-26.487518px;}
.ws15_c01172{word-spacing:-21.519216px;}
.ws13_c01172{word-spacing:-21.041011px;}
.ws11_c01172{word-spacing:-18.829314px;}
.ws6_c01172{word-spacing:-18.769538px;}
.ws12_c01172{word-spacing:-18.410885px;}
.ws5_c01172{word-spacing:-18.231558px;}
.ws14_c01172{word-spacing:-17.813129px;}
.wsf_c01172{word-spacing:-17.275148px;}
.wse_c01172{word-spacing:-17.215373px;}
.ws10_c01172{word-spacing:-17.155597px;}
.wsa_c01172{word-spacing:-15.601432px;}
.ws7_c01172{word-spacing:-14.943900px;}
.ws4_c01172{word-spacing:-14.465695px;}
.wsb_c01172{word-spacing:-13.808164px;}
.ws9_c01172{word-spacing:-13.748388px;}
.wsc_c01172{word-spacing:-12.732203px;}
.wsd_c01172{word-spacing:-12.672427px;}
.ws16_c01172{word-spacing:-12.074671px;}
.ws1_c01172{word-spacing:-9.988424px;}
.ws3_c01172{word-spacing:-9.987499px;}
.ws1c_c01172{word-spacing:0.000000px;}
.ws8_c01172{word-spacing:0.017856px;}
.ws19_c01172{word-spacing:0.043999px;}
.ws17_c01172{word-spacing:0.175997px;}
.ws1b_c01172{word-spacing:0.213446px;}
.ws1a_c01172{word-spacing:0.219446px;}
.ws0_c01172{word-spacing:43.038600px;}
._2_c01172{margin-left:-9.554569px;}
._1_c01172{margin-left:-6.369713px;}
._7_c01172{margin-left:-4.447631px;}
._6_c01172{margin-left:-2.998955px;}
._0_c01172{margin-left:-1.549390px;}
._a_c01172{width:1.005737px;}
._4_c01172{width:19.930500px;}
._3_c01172{width:21.011611px;}
._9_c01172{width:23.934476px;}
._5_c01172{width:29.529146px;}
._8_c01172{width:40.468081px;}
.fc5_c01172{color:rgb(79,153,5);}
.fc3_c01172{color:rgb(33,74,135);}
.fc2_c01172{color:rgb(143,89,3);}
.fc4_c01172{color:rgb(207,92,0);}
.fc1_c01172{color:rgb(6,69,173);}
.fc0_c01172{color:rgb(0,0,0);}
.fs2_c01172{font-size:43.999200px;}
.fs1_c01172{font-size:59.775600px;}
.fs0_c01172{font-size:86.077200px;}
.y0_c01172{bottom:0.000000px;}
.y1c_c01172{bottom:44.250000px;}
.y1b_c01172{bottom:86.982000px;}
.y1a_c01172{bottom:103.420500px;}
.y19_c01172{bottom:119.485500px;}
.y18_c01172{bottom:167.907000px;}
.y17_c01172{bottom:185.839500px;}
.y16_c01172{bottom:203.772000px;}
.y15_c01172{bottom:221.704500px;}
.y14_c01172{bottom:239.637000px;}
.y13_c01172{bottom:257.571000px;}
.y12_c01172{bottom:275.503500px;}
.y11_c01172{bottom:317.560500px;}
.y10_c01172{bottom:347.620500px;}
.yf_c01172{bottom:377.680500px;}
.ye_c01172{bottom:407.739000px;}
.yd_c01172{bottom:425.673000px;}
.yc_c01172{bottom:467.730000px;}
.yb_c01172{bottom:485.662500px;}
.ya_c01172{bottom:512.647500px;}
.y9_c01172{bottom:530.580000px;}
.y8_c01172{bottom:548.514000px;}
.y7_c01172{bottom:566.446500px;}
.y6_c01172{bottom:593.431500px;}
.y5_c01172{bottom:620.416500px;}
.y4_c01172{bottom:638.349000px;}
.y3_c01172{bottom:665.334000px;}
.y2_c01172{bottom:692.319000px;}
.y1_c01172{bottom:734.715000px;}
.h5_c01172{height:35.190766px;}
.h6_c01172{height:36.007158px;}
.h3_c01172{height:40.511979px;}
.h4_c01172{height:52.332837px;}
.h2_c01172{height:58.337477px;}
.h0_c01172{height:1262.835000px;}
.h1_c01172{height:1263.000000px;}
.w0_c01172{width:892.920000px;}
.w1_c01172{width:893.250000px;}
.x0_c01172{left:0.000000px;}
.x1_c01172{left:127.558500px;}
.x4_c01172{left:137.122500px;}
.x2_c01172{left:152.215500px;}
.x3_c01172{left:164.919000px;}
.x5_c01172{left:435.249000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls3_c01172{letter-spacing:0.000000pt;}
.ls0_c01172{letter-spacing:0.078221pt;}
.ls2_c01172{letter-spacing:0.087539pt;}
.ls1_c01172{letter-spacing:0.092873pt;}
.ws2_c01172{word-spacing:-23.622682pt;}
.ws18_c01172{word-spacing:-23.544461pt;}
.ws15_c01172{word-spacing:-19.128192pt;}
.ws13_c01172{word-spacing:-18.703121pt;}
.ws11_c01172{word-spacing:-16.737168pt;}
.ws6_c01172{word-spacing:-16.684034pt;}
.ws12_c01172{word-spacing:-16.365231pt;}
.ws5_c01172{word-spacing:-16.205829pt;}
.ws14_c01172{word-spacing:-15.833892pt;}
.wsf_c01172{word-spacing:-15.355687pt;}
.wse_c01172{word-spacing:-15.302554pt;}
.ws10_c01172{word-spacing:-15.249420pt;}
.wsa_c01172{word-spacing:-13.867939pt;}
.ws7_c01172{word-spacing:-13.283467pt;}
.ws4_c01172{word-spacing:-12.858396pt;}
.wsb_c01172{word-spacing:-12.273923pt;}
.ws9_c01172{word-spacing:-12.220789pt;}
.wsc_c01172{word-spacing:-11.317514pt;}
.wsd_c01172{word-spacing:-11.264380pt;}
.ws16_c01172{word-spacing:-10.733041pt;}
.ws1_c01172{word-spacing:-8.878599pt;}
.ws3_c01172{word-spacing:-8.877777pt;}
.ws1c_c01172{word-spacing:0.000000pt;}
.ws8_c01172{word-spacing:0.015872pt;}
.ws19_c01172{word-spacing:0.039110pt;}
.ws17_c01172{word-spacing:0.156442pt;}
.ws1b_c01172{word-spacing:0.189730pt;}
.ws1a_c01172{word-spacing:0.195063pt;}
.ws0_c01172{word-spacing:38.256533pt;}
._2_c01172{margin-left:-8.492950pt;}
._1_c01172{margin-left:-5.661967pt;}
._7_c01172{margin-left:-3.953450pt;}
._6_c01172{margin-left:-2.665738pt;}
._0_c01172{margin-left:-1.377235pt;}
._a_c01172{width:0.893988pt;}
._4_c01172{width:17.716000pt;}
._3_c01172{width:18.676988pt;}
._9_c01172{width:21.275090pt;}
._5_c01172{width:26.248130pt;}
._8_c01172{width:35.971628pt;}
.fs2_c01172{font-size:39.110400pt;}
.fs1_c01172{font-size:53.133867pt;}
.fs0_c01172{font-size:76.513067pt;}
.y0_c01172{bottom:0.000000pt;}
.y1c_c01172{bottom:39.333333pt;}
.y1b_c01172{bottom:77.317333pt;}
.y1a_c01172{bottom:91.929333pt;}
.y19_c01172{bottom:106.209333pt;}
.y18_c01172{bottom:149.250667pt;}
.y17_c01172{bottom:165.190667pt;}
.y16_c01172{bottom:181.130667pt;}
.y15_c01172{bottom:197.070667pt;}
.y14_c01172{bottom:213.010667pt;}
.y13_c01172{bottom:228.952000pt;}
.y12_c01172{bottom:244.892000pt;}
.y11_c01172{bottom:282.276000pt;}
.y10_c01172{bottom:308.996000pt;}
.yf_c01172{bottom:335.716000pt;}
.ye_c01172{bottom:362.434667pt;}
.yd_c01172{bottom:378.376000pt;}
.yc_c01172{bottom:415.760000pt;}
.yb_c01172{bottom:431.700000pt;}
.ya_c01172{bottom:455.686667pt;}
.y9_c01172{bottom:471.626667pt;}
.y8_c01172{bottom:487.568000pt;}
.y7_c01172{bottom:503.508000pt;}
.y6_c01172{bottom:527.494667pt;}
.y5_c01172{bottom:551.481333pt;}
.y4_c01172{bottom:567.421333pt;}
.y3_c01172{bottom:591.408000pt;}
.y2_c01172{bottom:615.394667pt;}
.y1_c01172{bottom:653.080000pt;}
.h5_c01172{height:31.280681pt;}
.h6_c01172{height:32.006363pt;}
.h3_c01172{height:36.010648pt;}
.h4_c01172{height:46.518078pt;}
.h2_c01172{height:51.855535pt;}
.h0_c01172{height:1122.520000pt;}
.h1_c01172{height:1122.666667pt;}
.w0_c01172{width:793.706667pt;}
.w1_c01172{width:794.000000pt;}
.x0_c01172{left:0.000000pt;}
.x1_c01172{left:113.385333pt;}
.x4_c01172{left:121.886667pt;}
.x2_c01172{left:135.302667pt;}
.x3_c01172{left:146.594667pt;}
.x5_c01172{left:386.888000pt;}
}





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

.ir_c01173:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01173;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01173;src:url('chunks/assets/font_e50c260cf06990fd7638777b.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01173;src:url('chunks/assets/font_90fe31361ad51ba671226998.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01173{vertical-align:0.000000px;}
.ls4_c01173{letter-spacing:0.000000px;}
.ls1_c01173{letter-spacing:0.087998px;}
.ls2_c01173{letter-spacing:0.098482px;}
.ls0_c01173{letter-spacing:0.104482px;}
.ls3_c01173{letter-spacing:26.690482px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01173{word-spacing:-26.575517px;}
.ws0_c01173{word-spacing:-26.487518px;}
.ws5_c01173{word-spacing:0.000000px;}
.ws7_c01173{word-spacing:0.036900px;}
.ws4_c01173{word-spacing:0.043999px;}
.ws6_c01173{word-spacing:0.053933px;}
.wsa_c01173{word-spacing:0.064416px;}
.ws8_c01173{word-spacing:0.070416px;}
.wsb_c01173{word-spacing:0.100217px;}
.ws2_c01173{word-spacing:0.175997px;}
.ws3_c01173{word-spacing:0.213446px;}
.ws9_c01173{word-spacing:0.219446px;}
._0_c01173{width:1.047451px;}
.fc5_c01173{color:rgb(0,0,207);}
.fc4_c01173{color:rgb(143,89,3);}
.fc3_c01173{color:rgb(79,153,5);}
.fc2_c01173{color:rgb(207,92,0);}
.fc1_c01173{color:rgb(0,0,0);}
.fc0_c01173{color:rgb(33,74,135);}
.fs0_c01173{font-size:43.999200px;}
.fs1_c01173{font-size:59.775600px;}
.y0_c01173{bottom:0.000000px;}
.y39_c01173{bottom:44.250000px;}
.y38_c01173{bottom:91.369500px;}
.y37_c01173{bottom:107.808000px;}
.y36_c01173{bottom:124.246500px;}
.y35_c01173{bottom:140.685000px;}
.y34_c01173{bottom:157.123500px;}
.y33_c01173{bottom:173.562000px;}
.y32_c01173{bottom:190.000500px;}
.y31_c01173{bottom:206.437500px;}
.y30_c01173{bottom:222.876000px;}
.y2f_c01173{bottom:239.314500px;}
.y2e_c01173{bottom:255.753000px;}
.y2d_c01173{bottom:272.191500px;}
.y2c_c01173{bottom:288.630000px;}
.y2b_c01173{bottom:305.068500px;}
.y2a_c01173{bottom:321.507000px;}
.y29_c01173{bottom:337.945500px;}
.y28_c01173{bottom:354.384000px;}
.y27_c01173{bottom:370.822500px;}
.y26_c01173{bottom:403.698000px;}
.y25_c01173{bottom:420.136500px;}
.y24_c01173{bottom:436.575000px;}
.y23_c01173{bottom:453.013500px;}
.y22_c01173{bottom:469.452000px;}
.y21_c01173{bottom:485.890500px;}
.y20_c01173{bottom:518.767500px;}
.y1f_c01173{bottom:535.206000px;}
.y1e_c01173{bottom:551.643000px;}
.y1d_c01173{bottom:568.081500px;}
.y1c_c01173{bottom:600.958500px;}
.y1b_c01173{bottom:617.397000px;}
.y1a_c01173{bottom:633.835500px;}
.y19_c01173{bottom:650.274000px;}
.y18_c01173{bottom:683.151000px;}
.y17_c01173{bottom:699.589500px;}
.y16_c01173{bottom:716.028000px;}
.y15_c01173{bottom:732.465000px;}
.y14_c01173{bottom:748.903500px;}
.y13_c01173{bottom:765.342000px;}
.y12_c01173{bottom:781.780500px;}
.y11_c01173{bottom:814.657500px;}
.y10_c01173{bottom:831.096000px;}
.yf_c01173{bottom:847.534500px;}
.ye_c01173{bottom:880.411500px;}
.yd_c01173{bottom:896.848500px;}
.yc_c01173{bottom:946.164000px;}
.yb_c01173{bottom:962.602500px;}
.ya_c01173{bottom:995.479500px;}
.y9_c01173{bottom:1011.918000px;}
.y8_c01173{bottom:1028.356500px;}
.y7_c01173{bottom:1044.795000px;}
.y6_c01173{bottom:1077.670500px;}
.y5_c01173{bottom:1094.109000px;}
.y4_c01173{bottom:1110.547500px;}
.y3_c01173{bottom:1126.986000px;}
.y2_c01173{bottom:1143.424500px;}
.y1_c01173{bottom:1159.863000px;}
.h3_c01173{height:35.190766px;}
.h2_c01173{height:36.007158px;}
.h4_c01173{height:52.332837px;}
.h0_c01173{height:1262.835000px;}
.h1_c01173{height:1263.000000px;}
.w0_c01173{width:892.920000px;}
.w1_c01173{width:893.250000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:137.122500px;}
.x2_c01173{left:143.770500px;}
.x5_c01173{left:170.359500px;}
.x4_c01173{left:177.007500px;}
.x3_c01173{left:203.596500px;}
.x6_c01173{left:210.243000px;}
.x7_c01173{left:435.249000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls4_c01173{letter-spacing:0.000000pt;}
.ls1_c01173{letter-spacing:0.078221pt;}
.ls2_c01173{letter-spacing:0.087539pt;}
.ls0_c01173{letter-spacing:0.092873pt;}
.ls3_c01173{letter-spacing:23.724873pt;}
.ws1_c01173{word-spacing:-23.622682pt;}
.ws0_c01173{word-spacing:-23.544461pt;}
.ws5_c01173{word-spacing:0.000000pt;}
.ws7_c01173{word-spacing:0.032800pt;}
.ws4_c01173{word-spacing:0.039110pt;}
.ws6_c01173{word-spacing:0.047940pt;}
.wsa_c01173{word-spacing:0.057259pt;}
.ws8_c01173{word-spacing:0.062592pt;}
.wsb_c01173{word-spacing:0.089082pt;}
.ws2_c01173{word-spacing:0.156442pt;}
.ws3_c01173{word-spacing:0.189730pt;}
.ws9_c01173{word-spacing:0.195063pt;}
._0_c01173{width:0.931068pt;}
.fs0_c01173{font-size:39.110400pt;}
.fs1_c01173{font-size:53.133867pt;}
.y0_c01173{bottom:0.000000pt;}
.y39_c01173{bottom:39.333333pt;}
.y38_c01173{bottom:81.217333pt;}
.y37_c01173{bottom:95.829333pt;}
.y36_c01173{bottom:110.441333pt;}
.y35_c01173{bottom:125.053333pt;}
.y34_c01173{bottom:139.665333pt;}
.y33_c01173{bottom:154.277333pt;}
.y32_c01173{bottom:168.889333pt;}
.y31_c01173{bottom:183.500000pt;}
.y30_c01173{bottom:198.112000pt;}
.y2f_c01173{bottom:212.724000pt;}
.y2e_c01173{bottom:227.336000pt;}
.y2d_c01173{bottom:241.948000pt;}
.y2c_c01173{bottom:256.560000pt;}
.y2b_c01173{bottom:271.172000pt;}
.y2a_c01173{bottom:285.784000pt;}
.y29_c01173{bottom:300.396000pt;}
.y28_c01173{bottom:315.008000pt;}
.y27_c01173{bottom:329.620000pt;}
.y26_c01173{bottom:358.842667pt;}
.y25_c01173{bottom:373.454667pt;}
.y24_c01173{bottom:388.066667pt;}
.y23_c01173{bottom:402.678667pt;}
.y22_c01173{bottom:417.290667pt;}
.y21_c01173{bottom:431.902667pt;}
.y20_c01173{bottom:461.126667pt;}
.y1f_c01173{bottom:475.738667pt;}
.y1e_c01173{bottom:490.349333pt;}
.y1d_c01173{bottom:504.961333pt;}
.y1c_c01173{bottom:534.185333pt;}
.y1b_c01173{bottom:548.797333pt;}
.y1a_c01173{bottom:563.409333pt;}
.y19_c01173{bottom:578.021333pt;}
.y18_c01173{bottom:607.245333pt;}
.y17_c01173{bottom:621.857333pt;}
.y16_c01173{bottom:636.469333pt;}
.y15_c01173{bottom:651.080000pt;}
.y14_c01173{bottom:665.692000pt;}
.y13_c01173{bottom:680.304000pt;}
.y12_c01173{bottom:694.916000pt;}
.y11_c01173{bottom:724.140000pt;}
.y10_c01173{bottom:738.752000pt;}
.yf_c01173{bottom:753.364000pt;}
.ye_c01173{bottom:782.588000pt;}
.yd_c01173{bottom:797.198667pt;}
.yc_c01173{bottom:841.034667pt;}
.yb_c01173{bottom:855.646667pt;}
.ya_c01173{bottom:884.870667pt;}
.y9_c01173{bottom:899.482667pt;}
.y8_c01173{bottom:914.094667pt;}
.y7_c01173{bottom:928.706667pt;}
.y6_c01173{bottom:957.929333pt;}
.y5_c01173{bottom:972.541333pt;}
.y4_c01173{bottom:987.153333pt;}
.y3_c01173{bottom:1001.765333pt;}
.y2_c01173{bottom:1016.377333pt;}
.y1_c01173{bottom:1030.989333pt;}
.h3_c01173{height:31.280681pt;}
.h2_c01173{height:32.006363pt;}
.h4_c01173{height:46.518078pt;}
.h0_c01173{height:1122.520000pt;}
.h1_c01173{height:1122.666667pt;}
.w0_c01173{width:793.706667pt;}
.w1_c01173{width:794.000000pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:121.886667pt;}
.x2_c01173{left:127.796000pt;}
.x5_c01173{left:151.430667pt;}
.x4_c01173{left:157.340000pt;}
.x3_c01173{left:180.974667pt;}
.x6_c01173{left:186.882667pt;}
.x7_c01173{left:386.888000pt;}
}





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

.ir_c01174:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01174;src:url('chunks/assets/font_e556c95c334daf7dc0af1bcd.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01174;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01174;src:url('chunks/assets/font_841c933539afe7f480680e29.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.ls5_c01174{letter-spacing:0.000000px;}
.ls0_c01174{letter-spacing:0.087998px;}
.ls2_c01174{letter-spacing:0.098482px;}
.ls1_c01174{letter-spacing:0.104482px;}
.ls3_c01174{letter-spacing:0.140482px;}
.ls4_c01174{letter-spacing:0.146482px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01174{word-spacing:-26.575517px;}
.ws3_c01174{word-spacing:-26.487518px;}
.ws4_c01174{word-spacing:0.000000px;}
.ws1_c01174{word-spacing:0.043999px;}
.ws2_c01174{word-spacing:0.053933px;}
.ws5_c01174{word-spacing:0.056767px;}
.ws6_c01174{word-spacing:0.213446px;}
._0_c01174{width:1.073318px;}
.fc5_c01174{color:rgb(143,89,3);}
.fc4_c01174{color:rgb(79,153,5);}
.fc3_c01174{color:rgb(0,0,207);}
.fc2_c01174{color:rgb(207,92,0);}
.fc1_c01174{color:rgb(0,0,0);}
.fc0_c01174{color:rgb(33,74,135);}
.fs0_c01174{font-size:43.999200px;}
.fs1_c01174{font-size:59.775600px;}
.y0_c01174{bottom:0.000000px;}
.y2d_c01174{bottom:44.250000px;}
.y2c_c01174{bottom:403.698000px;}
.y2b_c01174{bottom:420.136500px;}
.y2a_c01174{bottom:436.575000px;}
.y29_c01174{bottom:453.013500px;}
.y28_c01174{bottom:469.452000px;}
.y27_c01174{bottom:485.890500px;}
.y26_c01174{bottom:502.329000px;}
.y25_c01174{bottom:518.767500px;}
.y24_c01174{bottom:535.206000px;}
.y23_c01174{bottom:551.643000px;}
.y22_c01174{bottom:568.081500px;}
.y21_c01174{bottom:600.958500px;}
.y20_c01174{bottom:617.397000px;}
.y1f_c01174{bottom:633.835500px;}
.y1e_c01174{bottom:666.712500px;}
.y1d_c01174{bottom:683.151000px;}
.y1c_c01174{bottom:699.589500px;}
.y1b_c01174{bottom:716.028000px;}
.y1a_c01174{bottom:732.465000px;}
.y19_c01174{bottom:748.903500px;}
.y18_c01174{bottom:765.342000px;}
.y17_c01174{bottom:781.780500px;}
.y16_c01174{bottom:798.219000px;}
.y15_c01174{bottom:814.657500px;}
.y14_c01174{bottom:831.096000px;}
.y13_c01174{bottom:847.534500px;}
.y12_c01174{bottom:863.973000px;}
.y11_c01174{bottom:880.411500px;}
.y10_c01174{bottom:896.848500px;}
.yf_c01174{bottom:913.287000px;}
.ye_c01174{bottom:929.725500px;}
.yd_c01174{bottom:946.164000px;}
.yc_c01174{bottom:962.602500px;}
.yb_c01174{bottom:979.041000px;}
.ya_c01174{bottom:995.479500px;}
.y9_c01174{bottom:1011.918000px;}
.y8_c01174{bottom:1028.356500px;}
.y7_c01174{bottom:1044.795000px;}
.y6_c01174{bottom:1061.232000px;}
.y5_c01174{bottom:1077.670500px;}
.y4_c01174{bottom:1110.547500px;}
.y3_c01174{bottom:1126.986000px;}
.y2_c01174{bottom:1143.424500px;}
.y1_c01174{bottom:1159.863000px;}
.h3_c01174{height:35.190766px;}
.h2_c01174{height:36.007158px;}
.h4_c01174{height:52.332837px;}
.h0_c01174{height:1262.835000px;}
.h1_c01174{height:1263.000000px;}
.w0_c01174{width:892.920000px;}
.w1_c01174{width:893.250000px;}
.x0_c01174{left:0.000000px;}
.x3_c01174{left:137.122500px;}
.x4_c01174{left:143.770500px;}
.x7_c01174{left:177.007500px;}
.x1_c01174{left:230.185500px;}
.x5_c01174{left:243.480000px;}
.x2_c01174{left:256.774500px;}
.x6_c01174{left:276.715500px;}
.x8_c01174{left:435.249000px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls5_c01174{letter-spacing:0.000000pt;}
.ls0_c01174{letter-spacing:0.078221pt;}
.ls2_c01174{letter-spacing:0.087539pt;}
.ls1_c01174{letter-spacing:0.092873pt;}
.ls3_c01174{letter-spacing:0.124873pt;}
.ls4_c01174{letter-spacing:0.130206pt;}
.ws0_c01174{word-spacing:-23.622682pt;}
.ws3_c01174{word-spacing:-23.544461pt;}
.ws4_c01174{word-spacing:0.000000pt;}
.ws1_c01174{word-spacing:0.039110pt;}
.ws2_c01174{word-spacing:0.047940pt;}
.ws5_c01174{word-spacing:0.050460pt;}
.ws6_c01174{word-spacing:0.189730pt;}
._0_c01174{width:0.954061pt;}
.fs0_c01174{font-size:39.110400pt;}
.fs1_c01174{font-size:53.133867pt;}
.y0_c01174{bottom:0.000000pt;}
.y2d_c01174{bottom:39.333333pt;}
.y2c_c01174{bottom:358.842667pt;}
.y2b_c01174{bottom:373.454667pt;}
.y2a_c01174{bottom:388.066667pt;}
.y29_c01174{bottom:402.678667pt;}
.y28_c01174{bottom:417.290667pt;}
.y27_c01174{bottom:431.902667pt;}
.y26_c01174{bottom:446.514667pt;}
.y25_c01174{bottom:461.126667pt;}
.y24_c01174{bottom:475.738667pt;}
.y23_c01174{bottom:490.349333pt;}
.y22_c01174{bottom:504.961333pt;}
.y21_c01174{bottom:534.185333pt;}
.y20_c01174{bottom:548.797333pt;}
.y1f_c01174{bottom:563.409333pt;}
.y1e_c01174{bottom:592.633333pt;}
.y1d_c01174{bottom:607.245333pt;}
.y1c_c01174{bottom:621.857333pt;}
.y1b_c01174{bottom:636.469333pt;}
.y1a_c01174{bottom:651.080000pt;}
.y19_c01174{bottom:665.692000pt;}
.y18_c01174{bottom:680.304000pt;}
.y17_c01174{bottom:694.916000pt;}
.y16_c01174{bottom:709.528000pt;}
.y15_c01174{bottom:724.140000pt;}
.y14_c01174{bottom:738.752000pt;}
.y13_c01174{bottom:753.364000pt;}
.y12_c01174{bottom:767.976000pt;}
.y11_c01174{bottom:782.588000pt;}
.y10_c01174{bottom:797.198667pt;}
.yf_c01174{bottom:811.810667pt;}
.ye_c01174{bottom:826.422667pt;}
.yd_c01174{bottom:841.034667pt;}
.yc_c01174{bottom:855.646667pt;}
.yb_c01174{bottom:870.258667pt;}
.ya_c01174{bottom:884.870667pt;}
.y9_c01174{bottom:899.482667pt;}
.y8_c01174{bottom:914.094667pt;}
.y7_c01174{bottom:928.706667pt;}
.y6_c01174{bottom:943.317333pt;}
.y5_c01174{bottom:957.929333pt;}
.y4_c01174{bottom:987.153333pt;}
.y3_c01174{bottom:1001.765333pt;}
.y2_c01174{bottom:1016.377333pt;}
.y1_c01174{bottom:1030.989333pt;}
.h3_c01174{height:31.280681pt;}
.h2_c01174{height:32.006363pt;}
.h4_c01174{height:46.518078pt;}
.h0_c01174{height:1122.520000pt;}
.h1_c01174{height:1122.666667pt;}
.w0_c01174{width:793.706667pt;}
.w1_c01174{width:794.000000pt;}
.x0_c01174{left:0.000000pt;}
.x3_c01174{left:121.886667pt;}
.x4_c01174{left:127.796000pt;}
.x7_c01174{left:157.340000pt;}
.x1_c01174{left:204.609333pt;}
.x5_c01174{left:216.426667pt;}
.x2_c01174{left:228.244000pt;}
.x6_c01174{left:245.969333pt;}
.x8_c01174{left:386.888000pt;}
}





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

.ir_c01175:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_2f9d4f3a2d9b0daddc5d535c.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01175;src:url('chunks/assets/font_5f98adbf5c3d9683fcbb7e4a.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01175;src:url('chunks/assets/font_79089729b4bbcff7e00f2660.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01175;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01175;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01175;src:url('chunks/assets/font_7a002d4f270a6a671d156a24.woff2')format("woff");}.ff6_c01175{font-family:ff6_c01175;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01175{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.ls3_c01175{letter-spacing:0.000000px;}
.ls0_c01175{letter-spacing:0.087998px;}
.ls2_c01175{letter-spacing:0.098482px;}
.ls1_c01175{letter-spacing:0.104482px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01175{word-spacing:-33.713438px;}
.ws2_c01175{word-spacing:-26.575517px;}
.ws10_c01175{word-spacing:-26.487518px;}
.wsb_c01175{word-spacing:-21.553319px;}
.wsa_c01175{word-spacing:-21.519216px;}
.ws7_c01175{word-spacing:-18.769538px;}
.ws5_c01175{word-spacing:-16.498066px;}
.ws9_c01175{word-spacing:-16.019861px;}
.ws6_c01175{word-spacing:-14.943900px;}
.wsc_c01175{word-spacing:-14.107042px;}
.ws4_c01175{word-spacing:-12.732203px;}
.wsd_c01175{word-spacing:-12.074671px;}
.ws1_c01175{word-spacing:-9.988424px;}
.ws3_c01175{word-spacing:-9.987499px;}
.ws8_c01175{word-spacing:-4.536144px;}
.ws14_c01175{word-spacing:0.000000px;}
.ws11_c01175{word-spacing:0.043999px;}
.ws17_c01175{word-spacing:0.056767px;}
.ws15_c01175{word-spacing:0.073250px;}
.wsf_c01175{word-spacing:0.175997px;}
.ws18_c01175{word-spacing:0.202963px;}
.ws12_c01175{word-spacing:0.213446px;}
.ws13_c01175{word-spacing:0.219446px;}
.ws16_c01175{word-spacing:26.619516px;}
.ws0_c01175{word-spacing:43.038600px;}
._9_c01175{margin-left:-2184.424534px;}
._2_c01175{margin-left:-9.554569px;}
._1_c01175{margin-left:-6.369713px;}
._6_c01175{margin-left:-3.825638px;}
._0_c01175{margin-left:-1.549390px;}
._7_c01175{width:1.005737px;}
._4_c01175{width:19.930500px;}
._3_c01175{width:24.480119px;}
._5_c01175{width:40.109428px;}
._b_c01175{width:53.283031px;}
._8_c01175{width:79.858548px;}
._a_c01175{width:133.452408px;}
.fc6_c01175{color:rgb(0,0,207);}
.fc5_c01175{color:rgb(79,153,5);}
.fc3_c01175{color:rgb(33,74,135);}
.fc2_c01175{color:rgb(143,89,3);}
.fc4_c01175{color:rgb(207,92,0);}
.fc1_c01175{color:rgb(6,69,173);}
.fc0_c01175{color:rgb(0,0,0);}
.fs3_c01175{font-size:31.015800px;}
.fs2_c01175{font-size:43.999200px;}
.fs1_c01175{font-size:59.775600px;}
.fs0_c01175{font-size:86.077200px;}
.y0_c01175{bottom:0.000000px;}
.y20_c01175{bottom:44.250000px;}
.y1f_c01175{bottom:86.982000px;}
.y1e_c01175{bottom:103.420500px;}
.y1d_c01175{bottom:119.859000px;}
.y1c_c01175{bottom:136.297500px;}
.y1b_c01175{bottom:152.736000px;}
.y1a_c01175{bottom:169.174500px;}
.y19_c01175{bottom:185.239500px;}
.y18_c01175{bottom:201.678000px;}
.y17_c01175{bottom:218.115000px;}
.y16_c01175{bottom:234.553500px;}
.y15_c01175{bottom:250.992000px;}
.y14_c01175{bottom:267.430500px;}
.y13_c01175{bottom:283.869000px;}
.y12_c01175{bottom:300.307500px;}
.y11_c01175{bottom:333.184500px;}
.y10_c01175{bottom:349.623000px;}
.yf_c01175{bottom:398.937000px;}
.ye_c01175{bottom:415.375500px;}
.yd_c01175{bottom:431.440500px;}
.yc_c01175{bottom:476.827500px;}
.yb_c01175{bottom:494.760000px;}
.ya_c01175{bottom:512.694000px;}
.y9_c01175{bottom:530.626500px;}
.y8_c01175{bottom:548.559000px;}
.y7_c01175{bottom:566.491500px;}
.y6_c01175{bottom:593.472000px;}
.y5_c01175{bottom:620.451000px;}
.y4_c01175{bottom:638.383500px;}
.y3_c01175{bottom:665.364000px;}
.y2_c01175{bottom:692.343000px;}
.y1_c01175{bottom:734.731500px;}
.h5_c01175{height:35.190766px;}
.h6_c01175{height:36.007158px;}
.h3_c01175{height:40.511979px;}
.h4_c01175{height:52.332837px;}
.h2_c01175{height:58.337477px;}
.h0_c01175{height:1262.835000px;}
.h1_c01175{height:1263.000000px;}
.w0_c01175{width:892.920000px;}
.w1_c01175{width:893.250000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:127.558500px;}
.x2_c01175{left:137.122500px;}
.x3_c01175{left:143.770500px;}
.x4_c01175{left:170.359500px;}
.x5_c01175{left:435.249000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls3_c01175{letter-spacing:0.000000pt;}
.ls0_c01175{letter-spacing:0.078221pt;}
.ls2_c01175{letter-spacing:0.087539pt;}
.ls1_c01175{letter-spacing:0.092873pt;}
.wse_c01175{word-spacing:-29.967501pt;}
.ws2_c01175{word-spacing:-23.622682pt;}
.ws10_c01175{word-spacing:-23.544461pt;}
.wsb_c01175{word-spacing:-19.158506pt;}
.wsa_c01175{word-spacing:-19.128192pt;}
.ws7_c01175{word-spacing:-16.684034pt;}
.ws5_c01175{word-spacing:-14.664947pt;}
.ws9_c01175{word-spacing:-14.239876pt;}
.ws6_c01175{word-spacing:-13.283467pt;}
.wsc_c01175{word-spacing:-12.539593pt;}
.ws4_c01175{word-spacing:-11.317514pt;}
.wsd_c01175{word-spacing:-10.733041pt;}
.ws1_c01175{word-spacing:-8.878599pt;}
.ws3_c01175{word-spacing:-8.877777pt;}
.ws8_c01175{word-spacing:-4.032128pt;}
.ws14_c01175{word-spacing:0.000000pt;}
.ws11_c01175{word-spacing:0.039110pt;}
.ws17_c01175{word-spacing:0.050460pt;}
.ws15_c01175{word-spacing:0.065111pt;}
.wsf_c01175{word-spacing:0.156442pt;}
.ws18_c01175{word-spacing:0.180412pt;}
.ws12_c01175{word-spacing:0.189730pt;}
.ws13_c01175{word-spacing:0.195063pt;}
.ws16_c01175{word-spacing:23.661792pt;}
.ws0_c01175{word-spacing:38.256533pt;}
._9_c01175{margin-left:-1941.710697pt;}
._2_c01175{margin-left:-8.492950pt;}
._1_c01175{margin-left:-5.661967pt;}
._6_c01175{margin-left:-3.400567pt;}
._0_c01175{margin-left:-1.377235pt;}
._7_c01175{width:0.893988pt;}
._4_c01175{width:17.716000pt;}
._3_c01175{width:21.760106pt;}
._5_c01175{width:35.652825pt;}
._b_c01175{width:47.362694pt;}
._8_c01175{width:70.985376pt;}
._a_c01175{width:118.624363pt;}
.fs3_c01175{font-size:27.569600pt;}
.fs2_c01175{font-size:39.110400pt;}
.fs1_c01175{font-size:53.133867pt;}
.fs0_c01175{font-size:76.513067pt;}
.y0_c01175{bottom:0.000000pt;}
.y20_c01175{bottom:39.333333pt;}
.y1f_c01175{bottom:77.317333pt;}
.y1e_c01175{bottom:91.929333pt;}
.y1d_c01175{bottom:106.541333pt;}
.y1c_c01175{bottom:121.153333pt;}
.y1b_c01175{bottom:135.765333pt;}
.y1a_c01175{bottom:150.377333pt;}
.y19_c01175{bottom:164.657333pt;}
.y18_c01175{bottom:179.269333pt;}
.y17_c01175{bottom:193.880000pt;}
.y16_c01175{bottom:208.492000pt;}
.y15_c01175{bottom:223.104000pt;}
.y14_c01175{bottom:237.716000pt;}
.y13_c01175{bottom:252.328000pt;}
.y12_c01175{bottom:266.940000pt;}
.y11_c01175{bottom:296.164000pt;}
.y10_c01175{bottom:310.776000pt;}
.yf_c01175{bottom:354.610667pt;}
.ye_c01175{bottom:369.222667pt;}
.yd_c01175{bottom:383.502667pt;}
.yc_c01175{bottom:423.846667pt;}
.yb_c01175{bottom:439.786667pt;}
.ya_c01175{bottom:455.728000pt;}
.y9_c01175{bottom:471.668000pt;}
.y8_c01175{bottom:487.608000pt;}
.y7_c01175{bottom:503.548000pt;}
.y6_c01175{bottom:527.530667pt;}
.y5_c01175{bottom:551.512000pt;}
.y4_c01175{bottom:567.452000pt;}
.y3_c01175{bottom:591.434667pt;}
.y2_c01175{bottom:615.416000pt;}
.y1_c01175{bottom:653.094667pt;}
.h5_c01175{height:31.280681pt;}
.h6_c01175{height:32.006363pt;}
.h3_c01175{height:36.010648pt;}
.h4_c01175{height:46.518078pt;}
.h2_c01175{height:51.855535pt;}
.h0_c01175{height:1122.520000pt;}
.h1_c01175{height:1122.666667pt;}
.w0_c01175{width:793.706667pt;}
.w1_c01175{width:794.000000pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:113.385333pt;}
.x2_c01175{left:121.886667pt;}
.x3_c01175{left:127.796000pt;}
.x4_c01175{left:151.430667pt;}
.x5_c01175{left:386.888000pt;}
}





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

.ir_c01176:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_9fd60aa8200562bcee9828eb.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01176;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01176;src:url('chunks/assets/font_1e0361104c18c86576f39af3.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01176;src:url('chunks/assets/font_9020580dffe176e6d07fc9a1.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01176;src:url('chunks/assets/font_4af6ea98ff9579dd77d51827.woff2')format("woff");}.ff5_c01176{font-family:ff5_c01176;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls4_c01176{letter-spacing:0.000000px;}
.ls0_c01176{letter-spacing:0.087998px;}
.ls1_c01176{letter-spacing:0.098482px;}
.ls3_c01176{letter-spacing:0.104482px;}
.ls2_c01176{letter-spacing:26.690482px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01176{word-spacing:-26.575517px;}
.ws6_c01176{word-spacing:-26.487518px;}
.wse_c01176{word-spacing:-18.769538px;}
.wsc_c01176{word-spacing:-18.530436px;}
.wsd_c01176{word-spacing:-14.943900px;}
.wsb_c01176{word-spacing:-14.704798px;}
.ws9_c01176{word-spacing:-9.988424px;}
.wsa_c01176{word-spacing:-9.987499px;}
.ws5_c01176{word-spacing:0.000000px;}
.ws3_c01176{word-spacing:0.043999px;}
.ws2_c01176{word-spacing:0.073250px;}
.ws0_c01176{word-spacing:0.083734px;}
.ws7_c01176{word-spacing:0.213446px;}
.ws4_c01176{word-spacing:0.219446px;}
.ws8_c01176{word-spacing:43.038600px;}
._5_c01176{margin-left:-9.554569px;}
._4_c01176{margin-left:-6.369713px;}
._3_c01176{margin-left:-1.549390px;}
._2_c01176{width:1.155072px;}
._6_c01176{width:20.476714px;}
._0_c01176{width:53.283031px;}
._1_c01176{width:79.858548px;}
.fc5_c01176{color:rgb(79,153,5);}
.fc4_c01176{color:rgb(207,92,0);}
.fc3_c01176{color:rgb(0,0,207);}
.fc2_c01176{color:rgb(0,0,0);}
.fc1_c01176{color:rgb(143,89,3);}
.fc0_c01176{color:rgb(33,74,135);}
.fs0_c01176{font-size:43.999200px;}
.fs2_c01176{font-size:59.775600px;}
.fs1_c01176{font-size:86.077200px;}
.y0_c01176{bottom:0.000000px;}
.y1f_c01176{bottom:44.250000px;}
.y1e_c01176{bottom:82.051500px;}
.y1d_c01176{bottom:112.167000px;}
.y1c_c01176{bottom:130.099500px;}
.y1b_c01176{bottom:160.215000px;}
.y1a_c01176{bottom:190.330500px;}
.y19_c01176{bottom:237.258000px;}
.y18_c01176{bottom:716.028000px;}
.y17_c01176{bottom:732.465000px;}
.y16_c01176{bottom:748.903500px;}
.y15_c01176{bottom:765.342000px;}
.y14_c01176{bottom:781.780500px;}
.y13_c01176{bottom:798.219000px;}
.y12_c01176{bottom:814.657500px;}
.y11_c01176{bottom:831.096000px;}
.y10_c01176{bottom:847.534500px;}
.yf_c01176{bottom:863.973000px;}
.ye_c01176{bottom:880.411500px;}
.yd_c01176{bottom:913.287000px;}
.yc_c01176{bottom:929.725500px;}
.yb_c01176{bottom:946.164000px;}
.ya_c01176{bottom:979.041000px;}
.y9_c01176{bottom:995.479500px;}
.y8_c01176{bottom:1011.918000px;}
.y7_c01176{bottom:1028.356500px;}
.y6_c01176{bottom:1044.795000px;}
.y5_c01176{bottom:1061.232000px;}
.y4_c01176{bottom:1077.670500px;}
.y3_c01176{bottom:1126.986000px;}
.y2_c01176{bottom:1143.424500px;}
.y1_c01176{bottom:1159.863000px;}
.h3_c01176{height:35.190766px;}
.h2_c01176{height:36.007158px;}
.h5_c01176{height:40.511979px;}
.h6_c01176{height:52.332837px;}
.h4_c01176{height:58.337477px;}
.h0_c01176{height:1262.835000px;}
.h1_c01176{height:1263.000000px;}
.w0_c01176{width:892.920000px;}
.w1_c01176{width:893.250000px;}
.x0_c01176{left:0.000000px;}
.x4_c01176{left:127.558500px;}
.x2_c01176{left:137.122500px;}
.x1_c01176{left:143.770500px;}
.x3_c01176{left:177.007500px;}
.x5_c01176{left:435.249000px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls4_c01176{letter-spacing:0.000000pt;}
.ls0_c01176{letter-spacing:0.078221pt;}
.ls1_c01176{letter-spacing:0.087539pt;}
.ls3_c01176{letter-spacing:0.092873pt;}
.ls2_c01176{letter-spacing:23.724873pt;}
.ws1_c01176{word-spacing:-23.622682pt;}
.ws6_c01176{word-spacing:-23.544461pt;}
.wse_c01176{word-spacing:-16.684034pt;}
.wsc_c01176{word-spacing:-16.471499pt;}
.wsd_c01176{word-spacing:-13.283467pt;}
.wsb_c01176{word-spacing:-13.070931pt;}
.ws9_c01176{word-spacing:-8.878599pt;}
.wsa_c01176{word-spacing:-8.877777pt;}
.ws5_c01176{word-spacing:0.000000pt;}
.ws3_c01176{word-spacing:0.039110pt;}
.ws2_c01176{word-spacing:0.065111pt;}
.ws0_c01176{word-spacing:0.074430pt;}
.ws7_c01176{word-spacing:0.189730pt;}
.ws4_c01176{word-spacing:0.195063pt;}
.ws8_c01176{word-spacing:38.256533pt;}
._5_c01176{margin-left:-8.492950pt;}
._4_c01176{margin-left:-5.661967pt;}
._3_c01176{margin-left:-1.377235pt;}
._2_c01176{width:1.026731pt;}
._6_c01176{width:18.201523pt;}
._0_c01176{width:47.362694pt;}
._1_c01176{width:70.985376pt;}
.fs0_c01176{font-size:39.110400pt;}
.fs2_c01176{font-size:53.133867pt;}
.fs1_c01176{font-size:76.513067pt;}
.y0_c01176{bottom:0.000000pt;}
.y1f_c01176{bottom:39.333333pt;}
.y1e_c01176{bottom:72.934667pt;}
.y1d_c01176{bottom:99.704000pt;}
.y1c_c01176{bottom:115.644000pt;}
.y1b_c01176{bottom:142.413333pt;}
.y1a_c01176{bottom:169.182667pt;}
.y19_c01176{bottom:210.896000pt;}
.y18_c01176{bottom:636.469333pt;}
.y17_c01176{bottom:651.080000pt;}
.y16_c01176{bottom:665.692000pt;}
.y15_c01176{bottom:680.304000pt;}
.y14_c01176{bottom:694.916000pt;}
.y13_c01176{bottom:709.528000pt;}
.y12_c01176{bottom:724.140000pt;}
.y11_c01176{bottom:738.752000pt;}
.y10_c01176{bottom:753.364000pt;}
.yf_c01176{bottom:767.976000pt;}
.ye_c01176{bottom:782.588000pt;}
.yd_c01176{bottom:811.810667pt;}
.yc_c01176{bottom:826.422667pt;}
.yb_c01176{bottom:841.034667pt;}
.ya_c01176{bottom:870.258667pt;}
.y9_c01176{bottom:884.870667pt;}
.y8_c01176{bottom:899.482667pt;}
.y7_c01176{bottom:914.094667pt;}
.y6_c01176{bottom:928.706667pt;}
.y5_c01176{bottom:943.317333pt;}
.y4_c01176{bottom:957.929333pt;}
.y3_c01176{bottom:1001.765333pt;}
.y2_c01176{bottom:1016.377333pt;}
.y1_c01176{bottom:1030.989333pt;}
.h3_c01176{height:31.280681pt;}
.h2_c01176{height:32.006363pt;}
.h5_c01176{height:36.010648pt;}
.h6_c01176{height:46.518078pt;}
.h4_c01176{height:51.855535pt;}
.h0_c01176{height:1122.520000pt;}
.h1_c01176{height:1122.666667pt;}
.w0_c01176{width:793.706667pt;}
.w1_c01176{width:794.000000pt;}
.x0_c01176{left:0.000000pt;}
.x4_c01176{left:113.385333pt;}
.x2_c01176{left:121.886667pt;}
.x1_c01176{left:127.796000pt;}
.x3_c01176{left:157.340000pt;}
.x5_c01176{left:386.888000pt;}
}





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

.ir_c01177:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01177;src:url('chunks/assets/font_faecefdc93da090329aece3b.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01177;src:url('chunks/assets/font_99eabafed7d5cdc45e985169.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01177;src:url('chunks/assets/font_21e85e9adf29350cd98682b1.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01177;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01177;src:url('chunks/assets/font_6e2145e83cc1e5e589430579.woff2')format("woff");}.ff6_c01177{font-family:ff6_c01177;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01177{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.ls4_c01177{letter-spacing:0.000000px;}
.ls0_c01177{letter-spacing:0.087998px;}
.ls2_c01177{letter-spacing:0.098482px;}
.ls1_c01177{letter-spacing:0.104482px;}
.ls3_c01177{letter-spacing:26.690482px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01177{word-spacing:-33.713438px;}
.ws4_c01177{word-spacing:-26.575517px;}
.wsa_c01177{word-spacing:-26.487518px;}
.ws3_c01177{word-spacing:-21.553319px;}
.ws2_c01177{word-spacing:-21.519216px;}
.ws7_c01177{word-spacing:-18.769538px;}
.ws1_c01177{word-spacing:-17.633802px;}
.ws5_c01177{word-spacing:-14.107042px;}
.ws6_c01177{word-spacing:-12.074671px;}
.ws0_c01177{word-spacing:-7.686144px;}
.wse_c01177{word-spacing:0.000000px;}
.wsb_c01177{word-spacing:0.043999px;}
.ws11_c01177{word-spacing:0.056767px;}
.wsf_c01177{word-spacing:0.073250px;}
.ws13_c01177{word-spacing:0.083734px;}
.ws9_c01177{word-spacing:0.175997px;}
.ws12_c01177{word-spacing:0.202963px;}
.wsc_c01177{word-spacing:0.213446px;}
.wsd_c01177{word-spacing:0.219446px;}
.ws10_c01177{word-spacing:26.619516px;}
._7_c01177{margin-left:-2184.424534px;}
._4_c01177{margin-left:-3.825638px;}
._1_c01177{margin-left:-2.347817px;}
._0_c01177{margin-left:-1.075961px;}
._5_c01177{width:1.005737px;}
._2_c01177{width:20.742133px;}
._3_c01177{width:40.109428px;}
._9_c01177{width:53.283031px;}
._6_c01177{width:79.858548px;}
._a_c01177{width:106.874057px;}
._8_c01177{width:133.452408px;}
.fc6_c01177{color:rgb(0,0,207);}
.fc5_c01177{color:rgb(79,153,5);}
.fc3_c01177{color:rgb(33,74,135);}
.fc2_c01177{color:rgb(143,89,3);}
.fc4_c01177{color:rgb(207,92,0);}
.fc1_c01177{color:rgb(6,69,173);}
.fc0_c01177{color:rgb(0,0,0);}
.fs2_c01177{font-size:31.015800px;}
.fs1_c01177{font-size:43.999200px;}
.fs0_c01177{font-size:59.775600px;}
.y0_c01177{bottom:0.000000px;}
.y32_c01177{bottom:44.250000px;}
.y31_c01177{bottom:96.919500px;}
.y30_c01177{bottom:113.358000px;}
.y2f_c01177{bottom:129.796500px;}
.y2e_c01177{bottom:146.235000px;}
.y2d_c01177{bottom:162.673500px;}
.y2c_c01177{bottom:179.112000px;}
.y2b_c01177{bottom:195.550500px;}
.y2a_c01177{bottom:211.989000px;}
.y29_c01177{bottom:228.427500px;}
.y28_c01177{bottom:244.866000px;}
.y27_c01177{bottom:261.304500px;}
.y26_c01177{bottom:294.180000px;}
.y25_c01177{bottom:310.618500px;}
.y24_c01177{bottom:327.057000px;}
.y23_c01177{bottom:359.934000px;}
.y22_c01177{bottom:376.372500px;}
.y21_c01177{bottom:392.811000px;}
.y20_c01177{bottom:409.249500px;}
.y1f_c01177{bottom:425.688000px;}
.y1e_c01177{bottom:442.125000px;}
.y1d_c01177{bottom:458.563500px;}
.y1c_c01177{bottom:507.879000px;}
.y1b_c01177{bottom:524.317500px;}
.y1a_c01177{bottom:540.756000px;}
.y19_c01177{bottom:557.194500px;}
.y18_c01177{bottom:573.633000px;}
.y17_c01177{bottom:590.071500px;}
.y16_c01177{bottom:606.508500px;}
.y15_c01177{bottom:622.947000px;}
.y14_c01177{bottom:639.385500px;}
.y13_c01177{bottom:655.450500px;}
.y12_c01177{bottom:671.889000px;}
.y11_c01177{bottom:688.327500px;}
.y10_c01177{bottom:704.766000px;}
.yf_c01177{bottom:721.204500px;}
.ye_c01177{bottom:737.643000px;}
.yd_c01177{bottom:754.081500px;}
.yc_c01177{bottom:770.518500px;}
.yb_c01177{bottom:803.395500px;}
.ya_c01177{bottom:819.834000px;}
.y9_c01177{bottom:869.149500px;}
.y8_c01177{bottom:885.588000px;}
.y7_c01177{bottom:901.653000px;}
.y6_c01177{bottom:1070.199000px;}
.y5_c01177{bottom:1088.131500px;}
.y4_c01177{bottom:1106.064000px;}
.y3_c01177{bottom:1123.998000px;}
.y2_c01177{bottom:1141.930500px;}
.y1_c01177{bottom:1159.863000px;}
.h3_c01177{height:35.190766px;}
.h4_c01177{height:36.007158px;}
.h2_c01177{height:52.332837px;}
.h0_c01177{height:1262.835000px;}
.h1_c01177{height:1263.000000px;}
.w0_c01177{width:892.920000px;}
.w1_c01177{width:893.250000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:127.558500px;}
.x2_c01177{left:137.122500px;}
.x3_c01177{left:143.770500px;}
.x4_c01177{left:170.359500px;}
.x5_c01177{left:177.007500px;}
.x6_c01177{left:435.249000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls4_c01177{letter-spacing:0.000000pt;}
.ls0_c01177{letter-spacing:0.078221pt;}
.ls2_c01177{letter-spacing:0.087539pt;}
.ls1_c01177{letter-spacing:0.092873pt;}
.ls3_c01177{letter-spacing:23.724873pt;}
.ws8_c01177{word-spacing:-29.967501pt;}
.ws4_c01177{word-spacing:-23.622682pt;}
.wsa_c01177{word-spacing:-23.544461pt;}
.ws3_c01177{word-spacing:-19.158506pt;}
.ws2_c01177{word-spacing:-19.128192pt;}
.ws7_c01177{word-spacing:-16.684034pt;}
.ws1_c01177{word-spacing:-15.674491pt;}
.ws5_c01177{word-spacing:-12.539593pt;}
.ws6_c01177{word-spacing:-10.733041pt;}
.ws0_c01177{word-spacing:-6.832128pt;}
.wse_c01177{word-spacing:0.000000pt;}
.wsb_c01177{word-spacing:0.039110pt;}
.ws11_c01177{word-spacing:0.050460pt;}
.wsf_c01177{word-spacing:0.065111pt;}
.ws13_c01177{word-spacing:0.074430pt;}
.ws9_c01177{word-spacing:0.156442pt;}
.ws12_c01177{word-spacing:0.180412pt;}
.wsc_c01177{word-spacing:0.189730pt;}
.wsd_c01177{word-spacing:0.195063pt;}
.ws10_c01177{word-spacing:23.661792pt;}
._7_c01177{margin-left:-1941.710697pt;}
._4_c01177{margin-left:-3.400567pt;}
._1_c01177{margin-left:-2.086948pt;}
._0_c01177{margin-left:-0.956410pt;}
._5_c01177{width:0.893988pt;}
._2_c01177{width:18.437452pt;}
._3_c01177{width:35.652825pt;}
._9_c01177{width:47.362694pt;}
._6_c01177{width:70.985376pt;}
._a_c01177{width:94.999162pt;}
._8_c01177{width:118.624363pt;}
.fs2_c01177{font-size:27.569600pt;}
.fs1_c01177{font-size:39.110400pt;}
.fs0_c01177{font-size:53.133867pt;}
.y0_c01177{bottom:0.000000pt;}
.y32_c01177{bottom:39.333333pt;}
.y31_c01177{bottom:86.150667pt;}
.y30_c01177{bottom:100.762667pt;}
.y2f_c01177{bottom:115.374667pt;}
.y2e_c01177{bottom:129.986667pt;}
.y2d_c01177{bottom:144.598667pt;}
.y2c_c01177{bottom:159.210667pt;}
.y2b_c01177{bottom:173.822667pt;}
.y2a_c01177{bottom:188.434667pt;}
.y29_c01177{bottom:203.046667pt;}
.y28_c01177{bottom:217.658667pt;}
.y27_c01177{bottom:232.270667pt;}
.y26_c01177{bottom:261.493333pt;}
.y25_c01177{bottom:276.105333pt;}
.y24_c01177{bottom:290.717333pt;}
.y23_c01177{bottom:319.941333pt;}
.y22_c01177{bottom:334.553333pt;}
.y21_c01177{bottom:349.165333pt;}
.y20_c01177{bottom:363.777333pt;}
.y1f_c01177{bottom:378.389333pt;}
.y1e_c01177{bottom:393.000000pt;}
.y1d_c01177{bottom:407.612000pt;}
.y1c_c01177{bottom:451.448000pt;}
.y1b_c01177{bottom:466.060000pt;}
.y1a_c01177{bottom:480.672000pt;}
.y19_c01177{bottom:495.284000pt;}
.y18_c01177{bottom:509.896000pt;}
.y17_c01177{bottom:524.508000pt;}
.y16_c01177{bottom:539.118667pt;}
.y15_c01177{bottom:553.730667pt;}
.y14_c01177{bottom:568.342667pt;}
.y13_c01177{bottom:582.622667pt;}
.y12_c01177{bottom:597.234667pt;}
.y11_c01177{bottom:611.846667pt;}
.y10_c01177{bottom:626.458667pt;}
.yf_c01177{bottom:641.070667pt;}
.ye_c01177{bottom:655.682667pt;}
.yd_c01177{bottom:670.294667pt;}
.yc_c01177{bottom:684.905333pt;}
.yb_c01177{bottom:714.129333pt;}
.ya_c01177{bottom:728.741333pt;}
.y9_c01177{bottom:772.577333pt;}
.y8_c01177{bottom:787.189333pt;}
.y7_c01177{bottom:801.469333pt;}
.y6_c01177{bottom:951.288000pt;}
.y5_c01177{bottom:967.228000pt;}
.y4_c01177{bottom:983.168000pt;}
.y3_c01177{bottom:999.109333pt;}
.y2_c01177{bottom:1015.049333pt;}
.y1_c01177{bottom:1030.989333pt;}
.h3_c01177{height:31.280681pt;}
.h4_c01177{height:32.006363pt;}
.h2_c01177{height:46.518078pt;}
.h0_c01177{height:1122.520000pt;}
.h1_c01177{height:1122.666667pt;}
.w0_c01177{width:793.706667pt;}
.w1_c01177{width:794.000000pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:113.385333pt;}
.x2_c01177{left:121.886667pt;}
.x3_c01177{left:127.796000pt;}
.x4_c01177{left:151.430667pt;}
.x5_c01177{left:157.340000pt;}
.x6_c01177{left:386.888000pt;}
}





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

.ir_c01178:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_d99cba6e6bc7e5f36c09b410.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01178;src:url('chunks/assets/font_aa727fe919b720c2825034fa.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01178;src:url('chunks/assets/font_04d75893afd85845e5685092.woff2')format("woff");}.ff3_c01178{font-family:ff3_c01178;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01178;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01178{font-family:ff4_c01178;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01178;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01178{font-family:ff5_c01178;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01178;src:url('chunks/assets/font_c9bd28a37aad48ccf91dcd53.woff2')format("woff");}.ff6_c01178{font-family:ff6_c01178;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01178{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.ls3_c01178{letter-spacing:0.000000px;}
.ls0_c01178{letter-spacing:0.087998px;}
.ls2_c01178{letter-spacing:0.098482px;}
.ls1_c01178{letter-spacing:0.104482px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01178{word-spacing:-33.713438px;}
.ws2_c01178{word-spacing:-26.575517px;}
.ws10_c01178{word-spacing:-26.487518px;}
.wsb_c01178{word-spacing:-21.553319px;}
.wsa_c01178{word-spacing:-21.519216px;}
.ws7_c01178{word-spacing:-18.769538px;}
.ws9_c01178{word-spacing:-17.633802px;}
.ws6_c01178{word-spacing:-14.943900px;}
.wsc_c01178{word-spacing:-14.107042px;}
.ws5_c01178{word-spacing:-13.509286px;}
.wsd_c01178{word-spacing:-12.074671px;}
.ws1_c01178{word-spacing:-9.988424px;}
.ws3_c01178{word-spacing:-9.987499px;}
.ws4_c01178{word-spacing:-9.743423px;}
.ws8_c01178{word-spacing:-7.686144px;}
.ws14_c01178{word-spacing:0.000000px;}
.ws11_c01178{word-spacing:0.043999px;}
.ws17_c01178{word-spacing:0.056767px;}
.ws15_c01178{word-spacing:0.073250px;}
.wsf_c01178{word-spacing:0.175997px;}
.ws18_c01178{word-spacing:0.202963px;}
.ws12_c01178{word-spacing:0.213446px;}
.ws13_c01178{word-spacing:0.219446px;}
.ws16_c01178{word-spacing:26.619516px;}
.ws0_c01178{word-spacing:43.038600px;}
._9_c01178{margin-left:-2184.424534px;}
._2_c01178{margin-left:-9.554569px;}
._1_c01178{margin-left:-6.369713px;}
._6_c01178{margin-left:-3.825638px;}
._0_c01178{margin-left:-1.549390px;}
._7_c01178{width:1.005737px;}
._4_c01178{width:19.930500px;}
._3_c01178{width:30.455339px;}
._5_c01178{width:40.109428px;}
._b_c01178{width:53.283031px;}
._8_c01178{width:79.858548px;}
._a_c01178{width:133.452408px;}
.fc6_c01178{color:rgb(0,0,207);}
.fc5_c01178{color:rgb(79,153,5);}
.fc3_c01178{color:rgb(33,74,135);}
.fc2_c01178{color:rgb(143,89,3);}
.fc4_c01178{color:rgb(207,92,0);}
.fc1_c01178{color:rgb(6,69,173);}
.fc0_c01178{color:rgb(0,0,0);}
.fs3_c01178{font-size:31.015800px;}
.fs2_c01178{font-size:43.999200px;}
.fs1_c01178{font-size:59.775600px;}
.fs0_c01178{font-size:86.077200px;}
.y0_c01178{bottom:0.000000px;}
.y20_c01178{bottom:44.250000px;}
.y1f_c01178{bottom:86.982000px;}
.y1e_c01178{bottom:103.420500px;}
.y1d_c01178{bottom:119.859000px;}
.y1c_c01178{bottom:136.297500px;}
.y1b_c01178{bottom:152.736000px;}
.y1a_c01178{bottom:169.174500px;}
.y19_c01178{bottom:185.239500px;}
.y18_c01178{bottom:201.678000px;}
.y17_c01178{bottom:218.115000px;}
.y16_c01178{bottom:234.553500px;}
.y15_c01178{bottom:250.992000px;}
.y14_c01178{bottom:267.430500px;}
.y13_c01178{bottom:283.869000px;}
.y12_c01178{bottom:300.307500px;}
.y11_c01178{bottom:333.184500px;}
.y10_c01178{bottom:349.623000px;}
.yf_c01178{bottom:398.937000px;}
.ye_c01178{bottom:415.375500px;}
.yd_c01178{bottom:431.440500px;}
.yc_c01178{bottom:476.827500px;}
.yb_c01178{bottom:494.760000px;}
.ya_c01178{bottom:512.694000px;}
.y9_c01178{bottom:530.626500px;}
.y8_c01178{bottom:548.559000px;}
.y7_c01178{bottom:566.491500px;}
.y6_c01178{bottom:593.472000px;}
.y5_c01178{bottom:620.451000px;}
.y4_c01178{bottom:638.383500px;}
.y3_c01178{bottom:665.364000px;}
.y2_c01178{bottom:692.343000px;}
.y1_c01178{bottom:734.731500px;}
.h5_c01178{height:35.190766px;}
.h6_c01178{height:36.007158px;}
.h3_c01178{height:40.511979px;}
.h4_c01178{height:52.332837px;}
.h2_c01178{height:58.337477px;}
.h0_c01178{height:1262.835000px;}
.h1_c01178{height:1263.000000px;}
.w0_c01178{width:892.920000px;}
.w1_c01178{width:893.250000px;}
.x0_c01178{left:0.000000px;}
.x1_c01178{left:127.558500px;}
.x2_c01178{left:137.122500px;}
.x3_c01178{left:143.770500px;}
.x4_c01178{left:170.359500px;}
.x5_c01178{left:435.249000px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls3_c01178{letter-spacing:0.000000pt;}
.ls0_c01178{letter-spacing:0.078221pt;}
.ls2_c01178{letter-spacing:0.087539pt;}
.ls1_c01178{letter-spacing:0.092873pt;}
.wse_c01178{word-spacing:-29.967501pt;}
.ws2_c01178{word-spacing:-23.622682pt;}
.ws10_c01178{word-spacing:-23.544461pt;}
.wsb_c01178{word-spacing:-19.158506pt;}
.wsa_c01178{word-spacing:-19.128192pt;}
.ws7_c01178{word-spacing:-16.684034pt;}
.ws9_c01178{word-spacing:-15.674491pt;}
.ws6_c01178{word-spacing:-13.283467pt;}
.wsc_c01178{word-spacing:-12.539593pt;}
.ws5_c01178{word-spacing:-12.008254pt;}
.wsd_c01178{word-spacing:-10.733041pt;}
.ws1_c01178{word-spacing:-8.878599pt;}
.ws3_c01178{word-spacing:-8.877777pt;}
.ws4_c01178{word-spacing:-8.660820pt;}
.ws8_c01178{word-spacing:-6.832128pt;}
.ws14_c01178{word-spacing:0.000000pt;}
.ws11_c01178{word-spacing:0.039110pt;}
.ws17_c01178{word-spacing:0.050460pt;}
.ws15_c01178{word-spacing:0.065111pt;}
.wsf_c01178{word-spacing:0.156442pt;}
.ws18_c01178{word-spacing:0.180412pt;}
.ws12_c01178{word-spacing:0.189730pt;}
.ws13_c01178{word-spacing:0.195063pt;}
.ws16_c01178{word-spacing:23.661792pt;}
.ws0_c01178{word-spacing:38.256533pt;}
._9_c01178{margin-left:-1941.710697pt;}
._2_c01178{margin-left:-8.492950pt;}
._1_c01178{margin-left:-5.661967pt;}
._6_c01178{margin-left:-3.400567pt;}
._0_c01178{margin-left:-1.377235pt;}
._7_c01178{width:0.893988pt;}
._4_c01178{width:17.716000pt;}
._3_c01178{width:27.071412pt;}
._5_c01178{width:35.652825pt;}
._b_c01178{width:47.362694pt;}
._8_c01178{width:70.985376pt;}
._a_c01178{width:118.624363pt;}
.fs3_c01178{font-size:27.569600pt;}
.fs2_c01178{font-size:39.110400pt;}
.fs1_c01178{font-size:53.133867pt;}
.fs0_c01178{font-size:76.513067pt;}
.y0_c01178{bottom:0.000000pt;}
.y20_c01178{bottom:39.333333pt;}
.y1f_c01178{bottom:77.317333pt;}
.y1e_c01178{bottom:91.929333pt;}
.y1d_c01178{bottom:106.541333pt;}
.y1c_c01178{bottom:121.153333pt;}
.y1b_c01178{bottom:135.765333pt;}
.y1a_c01178{bottom:150.377333pt;}
.y19_c01178{bottom:164.657333pt;}
.y18_c01178{bottom:179.269333pt;}
.y17_c01178{bottom:193.880000pt;}
.y16_c01178{bottom:208.492000pt;}
.y15_c01178{bottom:223.104000pt;}
.y14_c01178{bottom:237.716000pt;}
.y13_c01178{bottom:252.328000pt;}
.y12_c01178{bottom:266.940000pt;}
.y11_c01178{bottom:296.164000pt;}
.y10_c01178{bottom:310.776000pt;}
.yf_c01178{bottom:354.610667pt;}
.ye_c01178{bottom:369.222667pt;}
.yd_c01178{bottom:383.502667pt;}
.yc_c01178{bottom:423.846667pt;}
.yb_c01178{bottom:439.786667pt;}
.ya_c01178{bottom:455.728000pt;}
.y9_c01178{bottom:471.668000pt;}
.y8_c01178{bottom:487.608000pt;}
.y7_c01178{bottom:503.548000pt;}
.y6_c01178{bottom:527.530667pt;}
.y5_c01178{bottom:551.512000pt;}
.y4_c01178{bottom:567.452000pt;}
.y3_c01178{bottom:591.434667pt;}
.y2_c01178{bottom:615.416000pt;}
.y1_c01178{bottom:653.094667pt;}
.h5_c01178{height:31.280681pt;}
.h6_c01178{height:32.006363pt;}
.h3_c01178{height:36.010648pt;}
.h4_c01178{height:46.518078pt;}
.h2_c01178{height:51.855535pt;}
.h0_c01178{height:1122.520000pt;}
.h1_c01178{height:1122.666667pt;}
.w0_c01178{width:793.706667pt;}
.w1_c01178{width:794.000000pt;}
.x0_c01178{left:0.000000pt;}
.x1_c01178{left:113.385333pt;}
.x2_c01178{left:121.886667pt;}
.x3_c01178{left:127.796000pt;}
.x4_c01178{left:151.430667pt;}
.x5_c01178{left:386.888000pt;}
}





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

.ir_c01179:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_d2382bfc90038b01e9a9451c.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01179;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01179;src:url('chunks/assets/font_2812bb6ed00e27fbb91f21a6.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01179;src:url('chunks/assets/font_9020580dffe176e6d07fc9a1.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01179;src:url('chunks/assets/font_40d446c6503a8a30c26fe397.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls4_c01179{letter-spacing:0.000000px;}
.ls0_c01179{letter-spacing:0.087998px;}
.ls1_c01179{letter-spacing:0.098482px;}
.ls3_c01179{letter-spacing:0.104482px;}
.ls2_c01179{letter-spacing:26.690482px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01179{word-spacing:-26.575517px;}
.ws6_c01179{word-spacing:-26.487518px;}
.wse_c01179{word-spacing:-18.769538px;}
.wsc_c01179{word-spacing:-15.541656px;}
.wsd_c01179{word-spacing:-14.943900px;}
.wsb_c01179{word-spacing:-11.716018px;}
.ws9_c01179{word-spacing:-9.988424px;}
.wsa_c01179{word-spacing:-9.987499px;}
.ws5_c01179{word-spacing:0.000000px;}
.ws3_c01179{word-spacing:0.043999px;}
.ws2_c01179{word-spacing:0.073250px;}
.ws0_c01179{word-spacing:0.083734px;}
.ws7_c01179{word-spacing:0.213446px;}
.ws4_c01179{word-spacing:0.219446px;}
.ws8_c01179{word-spacing:43.038600px;}
._6_c01179{margin-left:-9.554569px;}
._5_c01179{margin-left:-6.369713px;}
._4_c01179{margin-left:-1.549390px;}
._3_c01179{width:1.171555px;}
._8_c01179{width:19.930500px;}
._7_c01179{width:26.451934px;}
._0_c01179{width:53.283031px;}
._1_c01179{width:79.858548px;}
._2_c01179{width:106.874057px;}
.fc5_c01179{color:rgb(79,153,5);}
.fc4_c01179{color:rgb(207,92,0);}
.fc3_c01179{color:rgb(0,0,207);}
.fc2_c01179{color:rgb(0,0,0);}
.fc1_c01179{color:rgb(143,89,3);}
.fc0_c01179{color:rgb(33,74,135);}
.fs0_c01179{font-size:43.999200px;}
.fs2_c01179{font-size:59.775600px;}
.fs1_c01179{font-size:86.077200px;}
.y0_c01179{bottom:0.000000px;}
.y1f_c01179{bottom:44.250000px;}
.y1e_c01179{bottom:82.051500px;}
.y1d_c01179{bottom:112.167000px;}
.y1c_c01179{bottom:130.099500px;}
.y1b_c01179{bottom:160.215000px;}
.y1a_c01179{bottom:190.330500px;}
.y19_c01179{bottom:237.258000px;}
.y18_c01179{bottom:716.028000px;}
.y17_c01179{bottom:732.465000px;}
.y16_c01179{bottom:748.903500px;}
.y15_c01179{bottom:765.342000px;}
.y14_c01179{bottom:781.780500px;}
.y13_c01179{bottom:798.219000px;}
.y12_c01179{bottom:814.657500px;}
.y11_c01179{bottom:831.096000px;}
.y10_c01179{bottom:847.534500px;}
.yf_c01179{bottom:863.973000px;}
.ye_c01179{bottom:880.411500px;}
.yd_c01179{bottom:913.287000px;}
.yc_c01179{bottom:929.725500px;}
.yb_c01179{bottom:946.164000px;}
.ya_c01179{bottom:979.041000px;}
.y9_c01179{bottom:995.479500px;}
.y8_c01179{bottom:1011.918000px;}
.y7_c01179{bottom:1028.356500px;}
.y6_c01179{bottom:1044.795000px;}
.y5_c01179{bottom:1061.232000px;}
.y4_c01179{bottom:1077.670500px;}
.y3_c01179{bottom:1126.986000px;}
.y2_c01179{bottom:1143.424500px;}
.y1_c01179{bottom:1159.863000px;}
.h3_c01179{height:35.190766px;}
.h2_c01179{height:36.007158px;}
.h5_c01179{height:40.511979px;}
.h6_c01179{height:52.332837px;}
.h4_c01179{height:58.337477px;}
.h0_c01179{height:1262.835000px;}
.h1_c01179{height:1263.000000px;}
.w0_c01179{width:892.920000px;}
.w1_c01179{width:893.250000px;}
.x0_c01179{left:0.000000px;}
.x4_c01179{left:127.558500px;}
.x2_c01179{left:137.122500px;}
.x1_c01179{left:143.770500px;}
.x3_c01179{left:177.007500px;}
.x5_c01179{left:435.249000px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls4_c01179{letter-spacing:0.000000pt;}
.ls0_c01179{letter-spacing:0.078221pt;}
.ls1_c01179{letter-spacing:0.087539pt;}
.ls3_c01179{letter-spacing:0.092873pt;}
.ls2_c01179{letter-spacing:23.724873pt;}
.ws1_c01179{word-spacing:-23.622682pt;}
.ws6_c01179{word-spacing:-23.544461pt;}
.wse_c01179{word-spacing:-16.684034pt;}
.wsc_c01179{word-spacing:-13.814805pt;}
.wsd_c01179{word-spacing:-13.283467pt;}
.wsb_c01179{word-spacing:-10.414238pt;}
.ws9_c01179{word-spacing:-8.878599pt;}
.wsa_c01179{word-spacing:-8.877777pt;}
.ws5_c01179{word-spacing:0.000000pt;}
.ws3_c01179{word-spacing:0.039110pt;}
.ws2_c01179{word-spacing:0.065111pt;}
.ws0_c01179{word-spacing:0.074430pt;}
.ws7_c01179{word-spacing:0.189730pt;}
.ws4_c01179{word-spacing:0.195063pt;}
.ws8_c01179{word-spacing:38.256533pt;}
._6_c01179{margin-left:-8.492950pt;}
._5_c01179{margin-left:-5.661967pt;}
._4_c01179{margin-left:-1.377235pt;}
._3_c01179{width:1.041382pt;}
._8_c01179{width:17.716000pt;}
._7_c01179{width:23.512830pt;}
._0_c01179{width:47.362694pt;}
._1_c01179{width:70.985376pt;}
._2_c01179{width:94.999162pt;}
.fs0_c01179{font-size:39.110400pt;}
.fs2_c01179{font-size:53.133867pt;}
.fs1_c01179{font-size:76.513067pt;}
.y0_c01179{bottom:0.000000pt;}
.y1f_c01179{bottom:39.333333pt;}
.y1e_c01179{bottom:72.934667pt;}
.y1d_c01179{bottom:99.704000pt;}
.y1c_c01179{bottom:115.644000pt;}
.y1b_c01179{bottom:142.413333pt;}
.y1a_c01179{bottom:169.182667pt;}
.y19_c01179{bottom:210.896000pt;}
.y18_c01179{bottom:636.469333pt;}
.y17_c01179{bottom:651.080000pt;}
.y16_c01179{bottom:665.692000pt;}
.y15_c01179{bottom:680.304000pt;}
.y14_c01179{bottom:694.916000pt;}
.y13_c01179{bottom:709.528000pt;}
.y12_c01179{bottom:724.140000pt;}
.y11_c01179{bottom:738.752000pt;}
.y10_c01179{bottom:753.364000pt;}
.yf_c01179{bottom:767.976000pt;}
.ye_c01179{bottom:782.588000pt;}
.yd_c01179{bottom:811.810667pt;}
.yc_c01179{bottom:826.422667pt;}
.yb_c01179{bottom:841.034667pt;}
.ya_c01179{bottom:870.258667pt;}
.y9_c01179{bottom:884.870667pt;}
.y8_c01179{bottom:899.482667pt;}
.y7_c01179{bottom:914.094667pt;}
.y6_c01179{bottom:928.706667pt;}
.y5_c01179{bottom:943.317333pt;}
.y4_c01179{bottom:957.929333pt;}
.y3_c01179{bottom:1001.765333pt;}
.y2_c01179{bottom:1016.377333pt;}
.y1_c01179{bottom:1030.989333pt;}
.h3_c01179{height:31.280681pt;}
.h2_c01179{height:32.006363pt;}
.h5_c01179{height:36.010648pt;}
.h6_c01179{height:46.518078pt;}
.h4_c01179{height:51.855535pt;}
.h0_c01179{height:1122.520000pt;}
.h1_c01179{height:1122.666667pt;}
.w0_c01179{width:793.706667pt;}
.w1_c01179{width:794.000000pt;}
.x0_c01179{left:0.000000pt;}
.x4_c01179{left:113.385333pt;}
.x2_c01179{left:121.886667pt;}
.x1_c01179{left:127.796000pt;}
.x3_c01179{left:157.340000pt;}
.x5_c01179{left:386.888000pt;}
}





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

.ir_c01180:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01180;src:url('chunks/assets/font_09e0dae6ee3152e3f7fabfbe.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01180;src:url('chunks/assets/font_99eabafed7d5cdc45e985169.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01180;src:url('chunks/assets/font_21e85e9adf29350cd98682b1.woff2')format("woff");}.ff4_c01180{font-family:ff4_c01180;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01180;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01180{font-family:ff5_c01180;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01180;src:url('chunks/assets/font_44aed8f7698b8efb67a11ffc.woff2')format("woff");}.ff6_c01180{font-family:ff6_c01180;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01180{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.ls4_c01180{letter-spacing:0.000000px;}
.ls0_c01180{letter-spacing:0.087998px;}
.ls2_c01180{letter-spacing:0.098482px;}
.ls1_c01180{letter-spacing:0.104482px;}
.ls3_c01180{letter-spacing:26.690482px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01180{word-spacing:-33.713438px;}
.ws4_c01180{word-spacing:-26.575517px;}
.wsa_c01180{word-spacing:-26.487518px;}
.ws3_c01180{word-spacing:-21.553319px;}
.ws2_c01180{word-spacing:-21.519216px;}
.ws1_c01180{word-spacing:-19.247743px;}
.ws7_c01180{word-spacing:-18.769538px;}
.ws5_c01180{word-spacing:-14.107042px;}
.ws6_c01180{word-spacing:-12.074671px;}
.ws0_c01180{word-spacing:-10.230144px;}
.wse_c01180{word-spacing:0.000000px;}
.wsb_c01180{word-spacing:0.043999px;}
.ws11_c01180{word-spacing:0.056767px;}
.wsf_c01180{word-spacing:0.073250px;}
.ws13_c01180{word-spacing:0.083734px;}
.ws9_c01180{word-spacing:0.175997px;}
.ws12_c01180{word-spacing:0.202963px;}
.wsc_c01180{word-spacing:0.213446px;}
.wsd_c01180{word-spacing:0.219446px;}
.ws10_c01180{word-spacing:26.619516px;}
._7_c01180{margin-left:-2184.424534px;}
._4_c01180{margin-left:-3.825638px;}
._1_c01180{margin-left:-2.347817px;}
._0_c01180{margin-left:-1.075961px;}
._5_c01180{width:1.005737px;}
._2_c01180{width:20.742133px;}
._3_c01180{width:40.109428px;}
._9_c01180{width:53.283031px;}
._6_c01180{width:79.858548px;}
._8_c01180{width:133.452408px;}
.fc6_c01180{color:rgb(0,0,207);}
.fc5_c01180{color:rgb(79,153,5);}
.fc3_c01180{color:rgb(33,74,135);}
.fc2_c01180{color:rgb(143,89,3);}
.fc4_c01180{color:rgb(207,92,0);}
.fc1_c01180{color:rgb(6,69,173);}
.fc0_c01180{color:rgb(0,0,0);}
.fs2_c01180{font-size:31.015800px;}
.fs1_c01180{font-size:43.999200px;}
.fs0_c01180{font-size:59.775600px;}
.y0_c01180{bottom:0.000000px;}
.y32_c01180{bottom:44.250000px;}
.y31_c01180{bottom:96.919500px;}
.y30_c01180{bottom:113.358000px;}
.y2f_c01180{bottom:129.796500px;}
.y2e_c01180{bottom:146.235000px;}
.y2d_c01180{bottom:162.673500px;}
.y2c_c01180{bottom:179.112000px;}
.y2b_c01180{bottom:195.550500px;}
.y2a_c01180{bottom:211.989000px;}
.y29_c01180{bottom:228.427500px;}
.y28_c01180{bottom:244.866000px;}
.y27_c01180{bottom:261.304500px;}
.y26_c01180{bottom:294.180000px;}
.y25_c01180{bottom:310.618500px;}
.y24_c01180{bottom:327.057000px;}
.y23_c01180{bottom:359.934000px;}
.y22_c01180{bottom:376.372500px;}
.y21_c01180{bottom:392.811000px;}
.y20_c01180{bottom:409.249500px;}
.y1f_c01180{bottom:425.688000px;}
.y1e_c01180{bottom:442.125000px;}
.y1d_c01180{bottom:458.563500px;}
.y1c_c01180{bottom:507.879000px;}
.y1b_c01180{bottom:524.317500px;}
.y1a_c01180{bottom:540.756000px;}
.y19_c01180{bottom:557.194500px;}
.y18_c01180{bottom:573.633000px;}
.y17_c01180{bottom:590.071500px;}
.y16_c01180{bottom:606.508500px;}
.y15_c01180{bottom:622.947000px;}
.y14_c01180{bottom:639.385500px;}
.y13_c01180{bottom:655.450500px;}
.y12_c01180{bottom:671.889000px;}
.y11_c01180{bottom:688.327500px;}
.y10_c01180{bottom:704.766000px;}
.yf_c01180{bottom:721.204500px;}
.ye_c01180{bottom:737.643000px;}
.yd_c01180{bottom:754.081500px;}
.yc_c01180{bottom:770.518500px;}
.yb_c01180{bottom:803.395500px;}
.ya_c01180{bottom:819.834000px;}
.y9_c01180{bottom:869.149500px;}
.y8_c01180{bottom:885.588000px;}
.y7_c01180{bottom:901.653000px;}
.y6_c01180{bottom:1070.199000px;}
.y5_c01180{bottom:1088.131500px;}
.y4_c01180{bottom:1106.064000px;}
.y3_c01180{bottom:1123.998000px;}
.y2_c01180{bottom:1141.930500px;}
.y1_c01180{bottom:1159.863000px;}
.h3_c01180{height:35.190766px;}
.h4_c01180{height:36.007158px;}
.h2_c01180{height:52.332837px;}
.h0_c01180{height:1262.835000px;}
.h1_c01180{height:1263.000000px;}
.w0_c01180{width:892.920000px;}
.w1_c01180{width:893.250000px;}
.x0_c01180{left:0.000000px;}
.x1_c01180{left:127.558500px;}
.x2_c01180{left:137.122500px;}
.x3_c01180{left:143.770500px;}
.x4_c01180{left:170.359500px;}
.x5_c01180{left:177.007500px;}
.x6_c01180{left:435.249000px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls4_c01180{letter-spacing:0.000000pt;}
.ls0_c01180{letter-spacing:0.078221pt;}
.ls2_c01180{letter-spacing:0.087539pt;}
.ls1_c01180{letter-spacing:0.092873pt;}
.ls3_c01180{letter-spacing:23.724873pt;}
.ws8_c01180{word-spacing:-29.967501pt;}
.ws4_c01180{word-spacing:-23.622682pt;}
.wsa_c01180{word-spacing:-23.544461pt;}
.ws3_c01180{word-spacing:-19.158506pt;}
.ws2_c01180{word-spacing:-19.128192pt;}
.ws1_c01180{word-spacing:-17.109105pt;}
.ws7_c01180{word-spacing:-16.684034pt;}
.ws5_c01180{word-spacing:-12.539593pt;}
.ws6_c01180{word-spacing:-10.733041pt;}
.ws0_c01180{word-spacing:-9.093461pt;}
.wse_c01180{word-spacing:0.000000pt;}
.wsb_c01180{word-spacing:0.039110pt;}
.ws11_c01180{word-spacing:0.050460pt;}
.wsf_c01180{word-spacing:0.065111pt;}
.ws13_c01180{word-spacing:0.074430pt;}
.ws9_c01180{word-spacing:0.156442pt;}
.ws12_c01180{word-spacing:0.180412pt;}
.wsc_c01180{word-spacing:0.189730pt;}
.wsd_c01180{word-spacing:0.195063pt;}
.ws10_c01180{word-spacing:23.661792pt;}
._7_c01180{margin-left:-1941.710697pt;}
._4_c01180{margin-left:-3.400567pt;}
._1_c01180{margin-left:-2.086948pt;}
._0_c01180{margin-left:-0.956410pt;}
._5_c01180{width:0.893988pt;}
._2_c01180{width:18.437452pt;}
._3_c01180{width:35.652825pt;}
._9_c01180{width:47.362694pt;}
._6_c01180{width:70.985376pt;}
._8_c01180{width:118.624363pt;}
.fs2_c01180{font-size:27.569600pt;}
.fs1_c01180{font-size:39.110400pt;}
.fs0_c01180{font-size:53.133867pt;}
.y0_c01180{bottom:0.000000pt;}
.y32_c01180{bottom:39.333333pt;}
.y31_c01180{bottom:86.150667pt;}
.y30_c01180{bottom:100.762667pt;}
.y2f_c01180{bottom:115.374667pt;}
.y2e_c01180{bottom:129.986667pt;}
.y2d_c01180{bottom:144.598667pt;}
.y2c_c01180{bottom:159.210667pt;}
.y2b_c01180{bottom:173.822667pt;}
.y2a_c01180{bottom:188.434667pt;}
.y29_c01180{bottom:203.046667pt;}
.y28_c01180{bottom:217.658667pt;}
.y27_c01180{bottom:232.270667pt;}
.y26_c01180{bottom:261.493333pt;}
.y25_c01180{bottom:276.105333pt;}
.y24_c01180{bottom:290.717333pt;}
.y23_c01180{bottom:319.941333pt;}
.y22_c01180{bottom:334.553333pt;}
.y21_c01180{bottom:349.165333pt;}
.y20_c01180{bottom:363.777333pt;}
.y1f_c01180{bottom:378.389333pt;}
.y1e_c01180{bottom:393.000000pt;}
.y1d_c01180{bottom:407.612000pt;}
.y1c_c01180{bottom:451.448000pt;}
.y1b_c01180{bottom:466.060000pt;}
.y1a_c01180{bottom:480.672000pt;}
.y19_c01180{bottom:495.284000pt;}
.y18_c01180{bottom:509.896000pt;}
.y17_c01180{bottom:524.508000pt;}
.y16_c01180{bottom:539.118667pt;}
.y15_c01180{bottom:553.730667pt;}
.y14_c01180{bottom:568.342667pt;}
.y13_c01180{bottom:582.622667pt;}
.y12_c01180{bottom:597.234667pt;}
.y11_c01180{bottom:611.846667pt;}
.y10_c01180{bottom:626.458667pt;}
.yf_c01180{bottom:641.070667pt;}
.ye_c01180{bottom:655.682667pt;}
.yd_c01180{bottom:670.294667pt;}
.yc_c01180{bottom:684.905333pt;}
.yb_c01180{bottom:714.129333pt;}
.ya_c01180{bottom:728.741333pt;}
.y9_c01180{bottom:772.577333pt;}
.y8_c01180{bottom:787.189333pt;}
.y7_c01180{bottom:801.469333pt;}
.y6_c01180{bottom:951.288000pt;}
.y5_c01180{bottom:967.228000pt;}
.y4_c01180{bottom:983.168000pt;}
.y3_c01180{bottom:999.109333pt;}
.y2_c01180{bottom:1015.049333pt;}
.y1_c01180{bottom:1030.989333pt;}
.h3_c01180{height:31.280681pt;}
.h4_c01180{height:32.006363pt;}
.h2_c01180{height:46.518078pt;}
.h0_c01180{height:1122.520000pt;}
.h1_c01180{height:1122.666667pt;}
.w0_c01180{width:793.706667pt;}
.w1_c01180{width:794.000000pt;}
.x0_c01180{left:0.000000pt;}
.x1_c01180{left:113.385333pt;}
.x2_c01180{left:121.886667pt;}
.x3_c01180{left:127.796000pt;}
.x4_c01180{left:151.430667pt;}
.x5_c01180{left:157.340000pt;}
.x6_c01180{left:386.888000pt;}
}





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

.ir_c01181:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_d0c9215aaaea3cbb86455248.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01181;src:url('chunks/assets/font_adf45620aff505db6a0b3f7e.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01181;src:url('chunks/assets/font_fab0e54ddf0a3f4149ca13c7.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01181;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01181{font-family:ff4_c01181;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01181;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01181{font-family:ff5_c01181;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01181{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.ls3_c01181{letter-spacing:0.000000px;}
.ls0_c01181{letter-spacing:0.087998px;}
.ls2_c01181{letter-spacing:0.098482px;}
.ls1_c01181{letter-spacing:0.104482px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01181{word-spacing:-26.575517px;}
.ws19_c01181{word-spacing:-26.487518px;}
.ws12_c01181{word-spacing:-22.535401px;}
.ws13_c01181{word-spacing:-20.861684px;}
.ws11_c01181{word-spacing:-18.829314px;}
.ws7_c01181{word-spacing:-18.769538px;}
.ws16_c01181{word-spacing:-18.530436px;}
.ws14_c01181{word-spacing:-18.410885px;}
.ws17_c01181{word-spacing:-17.813129px;}
.wsf_c01181{word-spacing:-17.275148px;}
.wse_c01181{word-spacing:-17.215373px;}
.ws10_c01181{word-spacing:-17.155597px;}
.ws5_c01181{word-spacing:-15.780758px;}
.wsa_c01181{word-spacing:-15.601432px;}
.ws6_c01181{word-spacing:-14.943900px;}
.wsb_c01181{word-spacing:-13.808164px;}
.ws9_c01181{word-spacing:-13.748388px;}
.wsc_c01181{word-spacing:-12.732203px;}
.wsd_c01181{word-spacing:-12.672427px;}
.ws15_c01181{word-spacing:-12.074671px;}
.ws4_c01181{word-spacing:-12.014896px;}
.ws1_c01181{word-spacing:-9.988424px;}
.ws3_c01181{word-spacing:-9.987499px;}
.ws1d_c01181{word-spacing:0.000000px;}
.ws8_c01181{word-spacing:0.017856px;}
.ws1a_c01181{word-spacing:0.043999px;}
.ws18_c01181{word-spacing:0.175997px;}
.ws1c_c01181{word-spacing:0.213446px;}
.ws1b_c01181{word-spacing:0.219446px;}
.ws0_c01181{word-spacing:43.038600px;}
._1_c01181{margin-left:-6.369713px;}
._7_c01181{margin-left:-4.656358px;}
._5_c01181{margin-left:-2.998955px;}
._0_c01181{margin-left:-1.549390px;}
._b_c01181{width:1.005737px;}
._a_c01181{width:16.233738px;}
._8_c01181{width:17.505421px;}
._3_c01181{width:19.930500px;}
._6_c01181{width:21.220338px;}
._9_c01181{width:23.628312px;}
._2_c01181{width:25.958812px;}
._4_c01181{width:29.529146px;}
.fc5_c01181{color:rgb(79,153,5);}
.fc3_c01181{color:rgb(33,74,135);}
.fc2_c01181{color:rgb(143,89,3);}
.fc4_c01181{color:rgb(207,92,0);}
.fc1_c01181{color:rgb(6,69,173);}
.fc0_c01181{color:rgb(0,0,0);}
.fs2_c01181{font-size:43.999200px;}
.fs1_c01181{font-size:59.775600px;}
.fs0_c01181{font-size:86.077200px;}
.y0_c01181{bottom:0.000000px;}
.y1c_c01181{bottom:44.250000px;}
.y1b_c01181{bottom:86.982000px;}
.y1a_c01181{bottom:103.420500px;}
.y19_c01181{bottom:119.485500px;}
.y18_c01181{bottom:167.907000px;}
.y17_c01181{bottom:185.839500px;}
.y16_c01181{bottom:203.772000px;}
.y15_c01181{bottom:221.704500px;}
.y14_c01181{bottom:239.637000px;}
.y13_c01181{bottom:257.571000px;}
.y12_c01181{bottom:275.503500px;}
.y11_c01181{bottom:317.560500px;}
.y10_c01181{bottom:347.620500px;}
.yf_c01181{bottom:377.680500px;}
.ye_c01181{bottom:407.739000px;}
.yd_c01181{bottom:425.673000px;}
.yc_c01181{bottom:467.730000px;}
.yb_c01181{bottom:485.662500px;}
.ya_c01181{bottom:512.647500px;}
.y9_c01181{bottom:530.580000px;}
.y8_c01181{bottom:548.514000px;}
.y7_c01181{bottom:566.446500px;}
.y6_c01181{bottom:593.431500px;}
.y5_c01181{bottom:620.416500px;}
.y4_c01181{bottom:638.349000px;}
.y3_c01181{bottom:665.334000px;}
.y2_c01181{bottom:692.319000px;}
.y1_c01181{bottom:734.715000px;}
.h5_c01181{height:35.190766px;}
.h6_c01181{height:36.007158px;}
.h3_c01181{height:40.511979px;}
.h4_c01181{height:52.332837px;}
.h2_c01181{height:58.337477px;}
.h0_c01181{height:1262.835000px;}
.h1_c01181{height:1263.000000px;}
.w0_c01181{width:892.920000px;}
.w1_c01181{width:893.250000px;}
.x0_c01181{left:0.000000px;}
.x1_c01181{left:127.558500px;}
.x4_c01181{left:137.122500px;}
.x2_c01181{left:152.215500px;}
.x3_c01181{left:164.919000px;}
.x5_c01181{left:435.249000px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls3_c01181{letter-spacing:0.000000pt;}
.ls0_c01181{letter-spacing:0.078221pt;}
.ls2_c01181{letter-spacing:0.087539pt;}
.ls1_c01181{letter-spacing:0.092873pt;}
.ws2_c01181{word-spacing:-23.622682pt;}
.ws19_c01181{word-spacing:-23.544461pt;}
.ws12_c01181{word-spacing:-20.031468pt;}
.ws13_c01181{word-spacing:-18.543719pt;}
.ws11_c01181{word-spacing:-16.737168pt;}
.ws7_c01181{word-spacing:-16.684034pt;}
.ws16_c01181{word-spacing:-16.471499pt;}
.ws14_c01181{word-spacing:-16.365231pt;}
.ws17_c01181{word-spacing:-15.833892pt;}
.wsf_c01181{word-spacing:-15.355687pt;}
.wse_c01181{word-spacing:-15.302554pt;}
.ws10_c01181{word-spacing:-15.249420pt;}
.ws5_c01181{word-spacing:-14.027341pt;}
.wsa_c01181{word-spacing:-13.867939pt;}
.ws6_c01181{word-spacing:-13.283467pt;}
.wsb_c01181{word-spacing:-12.273923pt;}
.ws9_c01181{word-spacing:-12.220789pt;}
.wsc_c01181{word-spacing:-11.317514pt;}
.wsd_c01181{word-spacing:-11.264380pt;}
.ws15_c01181{word-spacing:-10.733041pt;}
.ws4_c01181{word-spacing:-10.679907pt;}
.ws1_c01181{word-spacing:-8.878599pt;}
.ws3_c01181{word-spacing:-8.877777pt;}
.ws1d_c01181{word-spacing:0.000000pt;}
.ws8_c01181{word-spacing:0.015872pt;}
.ws1a_c01181{word-spacing:0.039110pt;}
.ws18_c01181{word-spacing:0.156442pt;}
.ws1c_c01181{word-spacing:0.189730pt;}
.ws1b_c01181{word-spacing:0.195063pt;}
.ws0_c01181{word-spacing:38.256533pt;}
._1_c01181{margin-left:-5.661967pt;}
._7_c01181{margin-left:-4.138985pt;}
._5_c01181{margin-left:-2.665738pt;}
._0_c01181{margin-left:-1.377235pt;}
._b_c01181{width:0.893988pt;}
._a_c01181{width:14.429989pt;}
._8_c01181{width:15.560374pt;}
._3_c01181{width:17.716000pt;}
._6_c01181{width:18.862523pt;}
._9_c01181{width:21.002944pt;}
._2_c01181{width:23.074499pt;}
._4_c01181{width:26.248130pt;}
.fs2_c01181{font-size:39.110400pt;}
.fs1_c01181{font-size:53.133867pt;}
.fs0_c01181{font-size:76.513067pt;}
.y0_c01181{bottom:0.000000pt;}
.y1c_c01181{bottom:39.333333pt;}
.y1b_c01181{bottom:77.317333pt;}
.y1a_c01181{bottom:91.929333pt;}
.y19_c01181{bottom:106.209333pt;}
.y18_c01181{bottom:149.250667pt;}
.y17_c01181{bottom:165.190667pt;}
.y16_c01181{bottom:181.130667pt;}
.y15_c01181{bottom:197.070667pt;}
.y14_c01181{bottom:213.010667pt;}
.y13_c01181{bottom:228.952000pt;}
.y12_c01181{bottom:244.892000pt;}
.y11_c01181{bottom:282.276000pt;}
.y10_c01181{bottom:308.996000pt;}
.yf_c01181{bottom:335.716000pt;}
.ye_c01181{bottom:362.434667pt;}
.yd_c01181{bottom:378.376000pt;}
.yc_c01181{bottom:415.760000pt;}
.yb_c01181{bottom:431.700000pt;}
.ya_c01181{bottom:455.686667pt;}
.y9_c01181{bottom:471.626667pt;}
.y8_c01181{bottom:487.568000pt;}
.y7_c01181{bottom:503.508000pt;}
.y6_c01181{bottom:527.494667pt;}
.y5_c01181{bottom:551.481333pt;}
.y4_c01181{bottom:567.421333pt;}
.y3_c01181{bottom:591.408000pt;}
.y2_c01181{bottom:615.394667pt;}
.y1_c01181{bottom:653.080000pt;}
.h5_c01181{height:31.280681pt;}
.h6_c01181{height:32.006363pt;}
.h3_c01181{height:36.010648pt;}
.h4_c01181{height:46.518078pt;}
.h2_c01181{height:51.855535pt;}
.h0_c01181{height:1122.520000pt;}
.h1_c01181{height:1122.666667pt;}
.w0_c01181{width:793.706667pt;}
.w1_c01181{width:794.000000pt;}
.x0_c01181{left:0.000000pt;}
.x1_c01181{left:113.385333pt;}
.x4_c01181{left:121.886667pt;}
.x2_c01181{left:135.302667pt;}
.x3_c01181{left:146.594667pt;}
.x5_c01181{left:386.888000pt;}
}





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

.ir_c01182:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01182;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01182;src:url('chunks/assets/font_d2eabe82dd5671eac0ebe64e.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01182;src:url('chunks/assets/font_03277fbaaefc71dc7f92e563.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.ls4_c01182{letter-spacing:0.000000px;}
.ls1_c01182{letter-spacing:0.087998px;}
.ls2_c01182{letter-spacing:0.098482px;}
.ls0_c01182{letter-spacing:0.104482px;}
.ls3_c01182{letter-spacing:26.690482px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01182{word-spacing:-26.575517px;}
.ws0_c01182{word-spacing:-26.487518px;}
.ws5_c01182{word-spacing:0.000000px;}
.ws7_c01182{word-spacing:0.036900px;}
.ws4_c01182{word-spacing:0.043999px;}
.ws6_c01182{word-spacing:0.053933px;}
.wsa_c01182{word-spacing:0.064416px;}
.ws8_c01182{word-spacing:0.070416px;}
.wsb_c01182{word-spacing:0.100217px;}
.ws2_c01182{word-spacing:0.175997px;}
.ws3_c01182{word-spacing:0.213446px;}
.ws9_c01182{word-spacing:0.219446px;}
._0_c01182{width:1.047451px;}
._1_c01182{width:106.786058px;}
.fc5_c01182{color:rgb(0,0,207);}
.fc4_c01182{color:rgb(143,89,3);}
.fc3_c01182{color:rgb(79,153,5);}
.fc2_c01182{color:rgb(207,92,0);}
.fc1_c01182{color:rgb(0,0,0);}
.fc0_c01182{color:rgb(33,74,135);}
.fs0_c01182{font-size:43.999200px;}
.fs1_c01182{font-size:59.775600px;}
.y0_c01182{bottom:0.000000px;}
.y39_c01182{bottom:44.250000px;}
.y38_c01182{bottom:91.369500px;}
.y37_c01182{bottom:107.808000px;}
.y36_c01182{bottom:124.246500px;}
.y35_c01182{bottom:140.685000px;}
.y34_c01182{bottom:157.123500px;}
.y33_c01182{bottom:173.562000px;}
.y32_c01182{bottom:190.000500px;}
.y31_c01182{bottom:206.437500px;}
.y30_c01182{bottom:222.876000px;}
.y2f_c01182{bottom:239.314500px;}
.y2e_c01182{bottom:255.753000px;}
.y2d_c01182{bottom:272.191500px;}
.y2c_c01182{bottom:288.630000px;}
.y2b_c01182{bottom:305.068500px;}
.y2a_c01182{bottom:321.507000px;}
.y29_c01182{bottom:337.945500px;}
.y28_c01182{bottom:354.384000px;}
.y27_c01182{bottom:370.822500px;}
.y26_c01182{bottom:403.698000px;}
.y25_c01182{bottom:420.136500px;}
.y24_c01182{bottom:436.575000px;}
.y23_c01182{bottom:453.013500px;}
.y22_c01182{bottom:469.452000px;}
.y21_c01182{bottom:485.890500px;}
.y20_c01182{bottom:518.767500px;}
.y1f_c01182{bottom:535.206000px;}
.y1e_c01182{bottom:551.643000px;}
.y1d_c01182{bottom:568.081500px;}
.y1c_c01182{bottom:600.958500px;}
.y1b_c01182{bottom:617.397000px;}
.y1a_c01182{bottom:633.835500px;}
.y19_c01182{bottom:650.274000px;}
.y18_c01182{bottom:683.151000px;}
.y17_c01182{bottom:699.589500px;}
.y16_c01182{bottom:716.028000px;}
.y15_c01182{bottom:732.465000px;}
.y14_c01182{bottom:748.903500px;}
.y13_c01182{bottom:765.342000px;}
.y12_c01182{bottom:781.780500px;}
.y11_c01182{bottom:814.657500px;}
.y10_c01182{bottom:831.096000px;}
.yf_c01182{bottom:847.534500px;}
.ye_c01182{bottom:880.411500px;}
.yd_c01182{bottom:896.848500px;}
.yc_c01182{bottom:946.164000px;}
.yb_c01182{bottom:962.602500px;}
.ya_c01182{bottom:995.479500px;}
.y9_c01182{bottom:1011.918000px;}
.y8_c01182{bottom:1028.356500px;}
.y7_c01182{bottom:1044.795000px;}
.y6_c01182{bottom:1077.670500px;}
.y5_c01182{bottom:1094.109000px;}
.y4_c01182{bottom:1110.547500px;}
.y3_c01182{bottom:1126.986000px;}
.y2_c01182{bottom:1143.424500px;}
.y1_c01182{bottom:1159.863000px;}
.h3_c01182{height:35.190766px;}
.h2_c01182{height:36.007158px;}
.h4_c01182{height:52.332837px;}
.h0_c01182{height:1262.835000px;}
.h1_c01182{height:1263.000000px;}
.w0_c01182{width:892.920000px;}
.w1_c01182{width:893.250000px;}
.x0_c01182{left:0.000000px;}
.x1_c01182{left:137.122500px;}
.x2_c01182{left:143.770500px;}
.x5_c01182{left:170.359500px;}
.x4_c01182{left:177.007500px;}
.x3_c01182{left:203.596500px;}
.x6_c01182{left:210.243000px;}
.x7_c01182{left:435.249000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls4_c01182{letter-spacing:0.000000pt;}
.ls1_c01182{letter-spacing:0.078221pt;}
.ls2_c01182{letter-spacing:0.087539pt;}
.ls0_c01182{letter-spacing:0.092873pt;}
.ls3_c01182{letter-spacing:23.724873pt;}
.ws1_c01182{word-spacing:-23.622682pt;}
.ws0_c01182{word-spacing:-23.544461pt;}
.ws5_c01182{word-spacing:0.000000pt;}
.ws7_c01182{word-spacing:0.032800pt;}
.ws4_c01182{word-spacing:0.039110pt;}
.ws6_c01182{word-spacing:0.047940pt;}
.wsa_c01182{word-spacing:0.057259pt;}
.ws8_c01182{word-spacing:0.062592pt;}
.wsb_c01182{word-spacing:0.089082pt;}
.ws2_c01182{word-spacing:0.156442pt;}
.ws3_c01182{word-spacing:0.189730pt;}
.ws9_c01182{word-spacing:0.195063pt;}
._0_c01182{width:0.931068pt;}
._1_c01182{width:94.920941pt;}
.fs0_c01182{font-size:39.110400pt;}
.fs1_c01182{font-size:53.133867pt;}
.y0_c01182{bottom:0.000000pt;}
.y39_c01182{bottom:39.333333pt;}
.y38_c01182{bottom:81.217333pt;}
.y37_c01182{bottom:95.829333pt;}
.y36_c01182{bottom:110.441333pt;}
.y35_c01182{bottom:125.053333pt;}
.y34_c01182{bottom:139.665333pt;}
.y33_c01182{bottom:154.277333pt;}
.y32_c01182{bottom:168.889333pt;}
.y31_c01182{bottom:183.500000pt;}
.y30_c01182{bottom:198.112000pt;}
.y2f_c01182{bottom:212.724000pt;}
.y2e_c01182{bottom:227.336000pt;}
.y2d_c01182{bottom:241.948000pt;}
.y2c_c01182{bottom:256.560000pt;}
.y2b_c01182{bottom:271.172000pt;}
.y2a_c01182{bottom:285.784000pt;}
.y29_c01182{bottom:300.396000pt;}
.y28_c01182{bottom:315.008000pt;}
.y27_c01182{bottom:329.620000pt;}
.y26_c01182{bottom:358.842667pt;}
.y25_c01182{bottom:373.454667pt;}
.y24_c01182{bottom:388.066667pt;}
.y23_c01182{bottom:402.678667pt;}
.y22_c01182{bottom:417.290667pt;}
.y21_c01182{bottom:431.902667pt;}
.y20_c01182{bottom:461.126667pt;}
.y1f_c01182{bottom:475.738667pt;}
.y1e_c01182{bottom:490.349333pt;}
.y1d_c01182{bottom:504.961333pt;}
.y1c_c01182{bottom:534.185333pt;}
.y1b_c01182{bottom:548.797333pt;}
.y1a_c01182{bottom:563.409333pt;}
.y19_c01182{bottom:578.021333pt;}
.y18_c01182{bottom:607.245333pt;}
.y17_c01182{bottom:621.857333pt;}
.y16_c01182{bottom:636.469333pt;}
.y15_c01182{bottom:651.080000pt;}
.y14_c01182{bottom:665.692000pt;}
.y13_c01182{bottom:680.304000pt;}
.y12_c01182{bottom:694.916000pt;}
.y11_c01182{bottom:724.140000pt;}
.y10_c01182{bottom:738.752000pt;}
.yf_c01182{bottom:753.364000pt;}
.ye_c01182{bottom:782.588000pt;}
.yd_c01182{bottom:797.198667pt;}
.yc_c01182{bottom:841.034667pt;}
.yb_c01182{bottom:855.646667pt;}
.ya_c01182{bottom:884.870667pt;}
.y9_c01182{bottom:899.482667pt;}
.y8_c01182{bottom:914.094667pt;}
.y7_c01182{bottom:928.706667pt;}
.y6_c01182{bottom:957.929333pt;}
.y5_c01182{bottom:972.541333pt;}
.y4_c01182{bottom:987.153333pt;}
.y3_c01182{bottom:1001.765333pt;}
.y2_c01182{bottom:1016.377333pt;}
.y1_c01182{bottom:1030.989333pt;}
.h3_c01182{height:31.280681pt;}
.h2_c01182{height:32.006363pt;}
.h4_c01182{height:46.518078pt;}
.h0_c01182{height:1122.520000pt;}
.h1_c01182{height:1122.666667pt;}
.w0_c01182{width:793.706667pt;}
.w1_c01182{width:794.000000pt;}
.x0_c01182{left:0.000000pt;}
.x1_c01182{left:121.886667pt;}
.x2_c01182{left:127.796000pt;}
.x5_c01182{left:151.430667pt;}
.x4_c01182{left:157.340000pt;}
.x3_c01182{left:180.974667pt;}
.x6_c01182{left:186.882667pt;}
.x7_c01182{left:386.888000pt;}
}





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

.ir_c01183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01183;src:url('chunks/assets/font_8ba96609ae0f2c28ad504f36.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01183;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01183;src:url('chunks/assets/font_05ff295d803cf9b9e8e41bf0.woff2')format("woff");}.ff4_c01183{font-family:ff4_c01183;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01183{vertical-align:0.000000px;}
.ls4_c01183{letter-spacing:0.000000px;}
.ls0_c01183{letter-spacing:0.087998px;}
.ls2_c01183{letter-spacing:0.098482px;}
.ls1_c01183{letter-spacing:0.104482px;}
.ls3_c01183{letter-spacing:0.140482px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01183{word-spacing:-26.575517px;}
.ws3_c01183{word-spacing:-26.487518px;}
.ws4_c01183{word-spacing:0.000000px;}
.ws1_c01183{word-spacing:0.043999px;}
.ws2_c01183{word-spacing:0.053933px;}
.ws5_c01183{word-spacing:0.056767px;}
.ws6_c01183{word-spacing:0.213446px;}
._0_c01183{width:1.068835px;}
.fc5_c01183{color:rgb(143,89,3);}
.fc4_c01183{color:rgb(79,153,5);}
.fc3_c01183{color:rgb(0,0,207);}
.fc2_c01183{color:rgb(207,92,0);}
.fc1_c01183{color:rgb(0,0,0);}
.fc0_c01183{color:rgb(33,74,135);}
.fs0_c01183{font-size:43.999200px;}
.fs1_c01183{font-size:59.775600px;}
.y0_c01183{bottom:0.000000px;}
.y2d_c01183{bottom:44.250000px;}
.y2c_c01183{bottom:403.698000px;}
.y2b_c01183{bottom:420.136500px;}
.y2a_c01183{bottom:436.575000px;}
.y29_c01183{bottom:453.013500px;}
.y28_c01183{bottom:469.452000px;}
.y27_c01183{bottom:485.890500px;}
.y26_c01183{bottom:502.329000px;}
.y25_c01183{bottom:518.767500px;}
.y24_c01183{bottom:535.206000px;}
.y23_c01183{bottom:551.643000px;}
.y22_c01183{bottom:568.081500px;}
.y21_c01183{bottom:600.958500px;}
.y20_c01183{bottom:617.397000px;}
.y1f_c01183{bottom:633.835500px;}
.y1e_c01183{bottom:666.712500px;}
.y1d_c01183{bottom:683.151000px;}
.y1c_c01183{bottom:699.589500px;}
.y1b_c01183{bottom:716.028000px;}
.y1a_c01183{bottom:732.465000px;}
.y19_c01183{bottom:748.903500px;}
.y18_c01183{bottom:765.342000px;}
.y17_c01183{bottom:781.780500px;}
.y16_c01183{bottom:798.219000px;}
.y15_c01183{bottom:814.657500px;}
.y14_c01183{bottom:831.096000px;}
.y13_c01183{bottom:847.534500px;}
.y12_c01183{bottom:863.973000px;}
.y11_c01183{bottom:880.411500px;}
.y10_c01183{bottom:896.848500px;}
.yf_c01183{bottom:913.287000px;}
.ye_c01183{bottom:929.725500px;}
.yd_c01183{bottom:946.164000px;}
.yc_c01183{bottom:962.602500px;}
.yb_c01183{bottom:979.041000px;}
.ya_c01183{bottom:995.479500px;}
.y9_c01183{bottom:1011.918000px;}
.y8_c01183{bottom:1028.356500px;}
.y7_c01183{bottom:1044.795000px;}
.y6_c01183{bottom:1061.232000px;}
.y5_c01183{bottom:1077.670500px;}
.y4_c01183{bottom:1110.547500px;}
.y3_c01183{bottom:1126.986000px;}
.y2_c01183{bottom:1143.424500px;}
.y1_c01183{bottom:1159.863000px;}
.h3_c01183{height:35.190766px;}
.h2_c01183{height:36.007158px;}
.h4_c01183{height:52.332837px;}
.h0_c01183{height:1262.835000px;}
.h1_c01183{height:1263.000000px;}
.w0_c01183{width:892.920000px;}
.w1_c01183{width:893.250000px;}
.x0_c01183{left:0.000000px;}
.x3_c01183{left:137.122500px;}
.x4_c01183{left:143.770500px;}
.x7_c01183{left:177.007500px;}
.x1_c01183{left:230.185500px;}
.x5_c01183{left:243.480000px;}
.x2_c01183{left:256.774500px;}
.x6_c01183{left:276.715500px;}
.x8_c01183{left:435.249000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls4_c01183{letter-spacing:0.000000pt;}
.ls0_c01183{letter-spacing:0.078221pt;}
.ls2_c01183{letter-spacing:0.087539pt;}
.ls1_c01183{letter-spacing:0.092873pt;}
.ls3_c01183{letter-spacing:0.124873pt;}
.ws0_c01183{word-spacing:-23.622682pt;}
.ws3_c01183{word-spacing:-23.544461pt;}
.ws4_c01183{word-spacing:0.000000pt;}
.ws1_c01183{word-spacing:0.039110pt;}
.ws2_c01183{word-spacing:0.047940pt;}
.ws5_c01183{word-spacing:0.050460pt;}
.ws6_c01183{word-spacing:0.189730pt;}
._0_c01183{width:0.950076pt;}
.fs0_c01183{font-size:39.110400pt;}
.fs1_c01183{font-size:53.133867pt;}
.y0_c01183{bottom:0.000000pt;}
.y2d_c01183{bottom:39.333333pt;}
.y2c_c01183{bottom:358.842667pt;}
.y2b_c01183{bottom:373.454667pt;}
.y2a_c01183{bottom:388.066667pt;}
.y29_c01183{bottom:402.678667pt;}
.y28_c01183{bottom:417.290667pt;}
.y27_c01183{bottom:431.902667pt;}
.y26_c01183{bottom:446.514667pt;}
.y25_c01183{bottom:461.126667pt;}
.y24_c01183{bottom:475.738667pt;}
.y23_c01183{bottom:490.349333pt;}
.y22_c01183{bottom:504.961333pt;}
.y21_c01183{bottom:534.185333pt;}
.y20_c01183{bottom:548.797333pt;}
.y1f_c01183{bottom:563.409333pt;}
.y1e_c01183{bottom:592.633333pt;}
.y1d_c01183{bottom:607.245333pt;}
.y1c_c01183{bottom:621.857333pt;}
.y1b_c01183{bottom:636.469333pt;}
.y1a_c01183{bottom:651.080000pt;}
.y19_c01183{bottom:665.692000pt;}
.y18_c01183{bottom:680.304000pt;}
.y17_c01183{bottom:694.916000pt;}
.y16_c01183{bottom:709.528000pt;}
.y15_c01183{bottom:724.140000pt;}
.y14_c01183{bottom:738.752000pt;}
.y13_c01183{bottom:753.364000pt;}
.y12_c01183{bottom:767.976000pt;}
.y11_c01183{bottom:782.588000pt;}
.y10_c01183{bottom:797.198667pt;}
.yf_c01183{bottom:811.810667pt;}
.ye_c01183{bottom:826.422667pt;}
.yd_c01183{bottom:841.034667pt;}
.yc_c01183{bottom:855.646667pt;}
.yb_c01183{bottom:870.258667pt;}
.ya_c01183{bottom:884.870667pt;}
.y9_c01183{bottom:899.482667pt;}
.y8_c01183{bottom:914.094667pt;}
.y7_c01183{bottom:928.706667pt;}
.y6_c01183{bottom:943.317333pt;}
.y5_c01183{bottom:957.929333pt;}
.y4_c01183{bottom:987.153333pt;}
.y3_c01183{bottom:1001.765333pt;}
.y2_c01183{bottom:1016.377333pt;}
.y1_c01183{bottom:1030.989333pt;}
.h3_c01183{height:31.280681pt;}
.h2_c01183{height:32.006363pt;}
.h4_c01183{height:46.518078pt;}
.h0_c01183{height:1122.520000pt;}
.h1_c01183{height:1122.666667pt;}
.w0_c01183{width:793.706667pt;}
.w1_c01183{width:794.000000pt;}
.x0_c01183{left:0.000000pt;}
.x3_c01183{left:121.886667pt;}
.x4_c01183{left:127.796000pt;}
.x7_c01183{left:157.340000pt;}
.x1_c01183{left:204.609333pt;}
.x5_c01183{left:216.426667pt;}
.x2_c01183{left:228.244000pt;}
.x6_c01183{left:245.969333pt;}
.x8_c01183{left:386.888000pt;}
}





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

.ir_c01184:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_78062dcd2a8f14153c9b9ea1.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01184;src:url('chunks/assets/font_ce1c2ab366e09ccc4cd6c58e.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01184;src:url('chunks/assets/font_9f7fe987a5206dea099e9191.woff2')format("woff");}.ff3_c01184{font-family:ff3_c01184;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01184;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01184{font-family:ff4_c01184;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01184;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01184{font-family:ff5_c01184;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.ls3_c01184{letter-spacing:0.000000px;}
.ls0_c01184{letter-spacing:0.087998px;}
.ls2_c01184{letter-spacing:0.098482px;}
.ls1_c01184{letter-spacing:0.104482px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01184{word-spacing:-33.713438px;}
.ws2_c01184{word-spacing:-26.575517px;}
.ws10_c01184{word-spacing:-26.487518px;}
.wsb_c01184{word-spacing:-21.553319px;}
.wsa_c01184{word-spacing:-21.519216px;}
.ws5_c01184{word-spacing:-19.486846px;}
.ws7_c01184{word-spacing:-18.769538px;}
.ws9_c01184{word-spacing:-16.019861px;}
.ws4_c01184{word-spacing:-15.661207px;}
.ws6_c01184{word-spacing:-14.943900px;}
.wsc_c01184{word-spacing:-14.107042px;}
.wsd_c01184{word-spacing:-12.074671px;}
.ws1_c01184{word-spacing:-9.988424px;}
.ws3_c01184{word-spacing:-9.987499px;}
.ws8_c01184{word-spacing:-4.536144px;}
.ws14_c01184{word-spacing:0.000000px;}
.ws11_c01184{word-spacing:0.043999px;}
.ws17_c01184{word-spacing:0.056767px;}
.ws15_c01184{word-spacing:0.073250px;}
.ws16_c01184{word-spacing:0.083734px;}
.wsf_c01184{word-spacing:0.175997px;}
.ws18_c01184{word-spacing:0.202963px;}
.ws12_c01184{word-spacing:0.213446px;}
.ws13_c01184{word-spacing:0.219446px;}
.ws0_c01184{word-spacing:43.038600px;}
._1_c01184{margin-left:-6.369713px;}
._5_c01184{margin-left:-3.825638px;}
._0_c01184{margin-left:-1.549390px;}
._6_c01184{width:1.005737px;}
._2_c01184{width:19.579123px;}
._3_c01184{width:20.742133px;}
._4_c01184{width:40.109428px;}
._8_c01184{width:53.283031px;}
._7_c01184{width:79.858548px;}
._9_c01184{width:133.452408px;}
.fc6_c01184{color:rgb(0,0,207);}
.fc5_c01184{color:rgb(79,153,5);}
.fc3_c01184{color:rgb(33,74,135);}
.fc2_c01184{color:rgb(143,89,3);}
.fc4_c01184{color:rgb(207,92,0);}
.fc1_c01184{color:rgb(6,69,173);}
.fc0_c01184{color:rgb(0,0,0);}
.fs2_c01184{font-size:43.999200px;}
.fs1_c01184{font-size:59.775600px;}
.fs0_c01184{font-size:86.077200px;}
.y0_c01184{bottom:0.000000px;}
.y20_c01184{bottom:44.250000px;}
.y1f_c01184{bottom:86.982000px;}
.y1e_c01184{bottom:103.420500px;}
.y1d_c01184{bottom:119.859000px;}
.y1c_c01184{bottom:136.297500px;}
.y1b_c01184{bottom:152.736000px;}
.y1a_c01184{bottom:169.174500px;}
.y19_c01184{bottom:185.613000px;}
.y18_c01184{bottom:202.051500px;}
.y17_c01184{bottom:218.490000px;}
.y16_c01184{bottom:234.927000px;}
.y15_c01184{bottom:251.365500px;}
.y14_c01184{bottom:267.804000px;}
.y13_c01184{bottom:284.242500px;}
.y12_c01184{bottom:300.681000px;}
.y11_c01184{bottom:317.119500px;}
.y10_c01184{bottom:349.996500px;}
.yf_c01184{bottom:366.435000px;}
.ye_c01184{bottom:415.749000px;}
.yd_c01184{bottom:432.187500px;}
.yc_c01184{bottom:448.252500px;}
.yb_c01184{bottom:493.890000px;}
.ya_c01184{bottom:511.822500px;}
.y9_c01184{bottom:529.756500px;}
.y8_c01184{bottom:547.689000px;}
.y7_c01184{bottom:565.621500px;}
.y6_c01184{bottom:583.554000px;}
.y5_c01184{bottom:610.633500px;}
.y4_c01184{bottom:637.714500px;}
.y3_c01184{bottom:664.794000px;}
.y2_c01184{bottom:691.873500px;}
.y1_c01184{bottom:734.407500px;}
.h5_c01184{height:35.190766px;}
.h6_c01184{height:36.007158px;}
.h3_c01184{height:40.511979px;}
.h4_c01184{height:52.332837px;}
.h2_c01184{height:58.337477px;}
.h0_c01184{height:1262.835000px;}
.h1_c01184{height:1263.000000px;}
.w0_c01184{width:892.920000px;}
.w1_c01184{width:893.250000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:127.558500px;}
.x2_c01184{left:137.122500px;}
.x3_c01184{left:143.770500px;}
.x4_c01184{left:435.249000px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls3_c01184{letter-spacing:0.000000pt;}
.ls0_c01184{letter-spacing:0.078221pt;}
.ls2_c01184{letter-spacing:0.087539pt;}
.ls1_c01184{letter-spacing:0.092873pt;}
.wse_c01184{word-spacing:-29.967501pt;}
.ws2_c01184{word-spacing:-23.622682pt;}
.ws10_c01184{word-spacing:-23.544461pt;}
.wsb_c01184{word-spacing:-19.158506pt;}
.wsa_c01184{word-spacing:-19.128192pt;}
.ws5_c01184{word-spacing:-17.321641pt;}
.ws7_c01184{word-spacing:-16.684034pt;}
.ws9_c01184{word-spacing:-14.239876pt;}
.ws4_c01184{word-spacing:-13.921073pt;}
.ws6_c01184{word-spacing:-13.283467pt;}
.wsc_c01184{word-spacing:-12.539593pt;}
.wsd_c01184{word-spacing:-10.733041pt;}
.ws1_c01184{word-spacing:-8.878599pt;}
.ws3_c01184{word-spacing:-8.877777pt;}
.ws8_c01184{word-spacing:-4.032128pt;}
.ws14_c01184{word-spacing:0.000000pt;}
.ws11_c01184{word-spacing:0.039110pt;}
.ws17_c01184{word-spacing:0.050460pt;}
.ws15_c01184{word-spacing:0.065111pt;}
.ws16_c01184{word-spacing:0.074430pt;}
.wsf_c01184{word-spacing:0.156442pt;}
.ws18_c01184{word-spacing:0.180412pt;}
.ws12_c01184{word-spacing:0.189730pt;}
.ws13_c01184{word-spacing:0.195063pt;}
.ws0_c01184{word-spacing:38.256533pt;}
._1_c01184{margin-left:-5.661967pt;}
._5_c01184{margin-left:-3.400567pt;}
._0_c01184{margin-left:-1.377235pt;}
._6_c01184{width:0.893988pt;}
._2_c01184{width:17.403665pt;}
._3_c01184{width:18.437452pt;}
._4_c01184{width:35.652825pt;}
._8_c01184{width:47.362694pt;}
._7_c01184{width:70.985376pt;}
._9_c01184{width:118.624363pt;}
.fs2_c01184{font-size:39.110400pt;}
.fs1_c01184{font-size:53.133867pt;}
.fs0_c01184{font-size:76.513067pt;}
.y0_c01184{bottom:0.000000pt;}
.y20_c01184{bottom:39.333333pt;}
.y1f_c01184{bottom:77.317333pt;}
.y1e_c01184{bottom:91.929333pt;}
.y1d_c01184{bottom:106.541333pt;}
.y1c_c01184{bottom:121.153333pt;}
.y1b_c01184{bottom:135.765333pt;}
.y1a_c01184{bottom:150.377333pt;}
.y19_c01184{bottom:164.989333pt;}
.y18_c01184{bottom:179.601333pt;}
.y17_c01184{bottom:194.213333pt;}
.y16_c01184{bottom:208.824000pt;}
.y15_c01184{bottom:223.436000pt;}
.y14_c01184{bottom:238.048000pt;}
.y13_c01184{bottom:252.660000pt;}
.y12_c01184{bottom:267.272000pt;}
.y11_c01184{bottom:281.884000pt;}
.y10_c01184{bottom:311.108000pt;}
.yf_c01184{bottom:325.720000pt;}
.ye_c01184{bottom:369.554667pt;}
.yd_c01184{bottom:384.166667pt;}
.yc_c01184{bottom:398.446667pt;}
.yb_c01184{bottom:439.013333pt;}
.ya_c01184{bottom:454.953333pt;}
.y9_c01184{bottom:470.894667pt;}
.y8_c01184{bottom:486.834667pt;}
.y7_c01184{bottom:502.774667pt;}
.y6_c01184{bottom:518.714667pt;}
.y5_c01184{bottom:542.785333pt;}
.y4_c01184{bottom:566.857333pt;}
.y3_c01184{bottom:590.928000pt;}
.y2_c01184{bottom:614.998667pt;}
.y1_c01184{bottom:652.806667pt;}
.h5_c01184{height:31.280681pt;}
.h6_c01184{height:32.006363pt;}
.h3_c01184{height:36.010648pt;}
.h4_c01184{height:46.518078pt;}
.h2_c01184{height:51.855535pt;}
.h0_c01184{height:1122.520000pt;}
.h1_c01184{height:1122.666667pt;}
.w0_c01184{width:793.706667pt;}
.w1_c01184{width:794.000000pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:113.385333pt;}
.x2_c01184{left:121.886667pt;}
.x3_c01184{left:127.796000pt;}
.x4_c01184{left:386.888000pt;}
}





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

.ir_c01185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_df157d2f7469406f2de7835f.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01185;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01185;src:url('chunks/assets/font_113b409e493a90b69cb310d3.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01185;src:url('chunks/assets/font_e5c089d73ccb295a6d761e48.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01185;src:url('chunks/assets/font_23a4a186b756f8990381c439.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls4_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:0.087998px;}
.ls2_c01185{letter-spacing:0.098482px;}
.ls3_c01185{letter-spacing:0.104482px;}
.ls1_c01185{letter-spacing:26.690482px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01185{word-spacing:-26.575517px;}
.ws4_c01185{word-spacing:-26.487518px;}
.wsa_c01185{word-spacing:-21.578992px;}
.ws10_c01185{word-spacing:-21.553319px;}
.wsf_c01185{word-spacing:-21.519216px;}
.wsc_c01185{word-spacing:-18.769538px;}
.ws9_c01185{word-spacing:-17.753353px;}
.wse_c01185{word-spacing:-17.633802px;}
.wsb_c01185{word-spacing:-14.943900px;}
.ws11_c01185{word-spacing:-14.107042px;}
.ws12_c01185{word-spacing:-12.074671px;}
.ws7_c01185{word-spacing:-9.988424px;}
.ws8_c01185{word-spacing:-9.987499px;}
.wsd_c01185{word-spacing:-7.686144px;}
.ws3_c01185{word-spacing:0.000000px;}
.ws0_c01185{word-spacing:0.043999px;}
.ws5_c01185{word-spacing:0.213446px;}
.ws1_c01185{word-spacing:0.219446px;}
.ws6_c01185{word-spacing:43.038600px;}
._3_c01185{margin-left:-6.369713px;}
._2_c01185{margin-left:-1.549390px;}
._1_c01185{width:1.063690px;}
._4_c01185{width:18.581269px;}
._5_c01185{width:19.930500px;}
._6_c01185{width:40.109428px;}
._0_c01185{width:106.786058px;}
.fc5_c01185{color:rgb(79,153,5);}
.fc4_c01185{color:rgb(143,89,3);}
.fc3_c01185{color:rgb(0,0,0);}
.fc6_c01185{color:rgb(6,69,173);}
.fc2_c01185{color:rgb(207,92,0);}
.fc1_c01185{color:rgb(0,0,207);}
.fc0_c01185{color:rgb(33,74,135);}
.fs0_c01185{font-size:43.999200px;}
.fs2_c01185{font-size:59.775600px;}
.fs1_c01185{font-size:86.077200px;}
.y0_c01185{bottom:0.000000px;}
.y20_c01185{bottom:44.250000px;}
.y1f_c01185{bottom:82.051500px;}
.y1e_c01185{bottom:99.984000px;}
.y1d_c01185{bottom:117.916500px;}
.y1c_c01185{bottom:135.849000px;}
.y1b_c01185{bottom:162.501000px;}
.y1a_c01185{bottom:189.151500px;}
.y19_c01185{bottom:215.802000px;}
.y18_c01185{bottom:242.454000px;}
.y17_c01185{bottom:284.478000px;}
.y16_c01185{bottom:748.903500px;}
.y15_c01185{bottom:765.342000px;}
.y14_c01185{bottom:781.780500px;}
.y13_c01185{bottom:798.219000px;}
.y12_c01185{bottom:814.657500px;}
.y11_c01185{bottom:831.096000px;}
.y10_c01185{bottom:847.534500px;}
.yf_c01185{bottom:863.973000px;}
.ye_c01185{bottom:880.411500px;}
.yd_c01185{bottom:896.848500px;}
.yc_c01185{bottom:913.287000px;}
.yb_c01185{bottom:946.164000px;}
.ya_c01185{bottom:962.602500px;}
.y9_c01185{bottom:979.041000px;}
.y8_c01185{bottom:1011.918000px;}
.y7_c01185{bottom:1028.356500px;}
.y6_c01185{bottom:1044.795000px;}
.y5_c01185{bottom:1061.232000px;}
.y4_c01185{bottom:1077.670500px;}
.y3_c01185{bottom:1094.109000px;}
.y2_c01185{bottom:1110.547500px;}
.y1_c01185{bottom:1159.863000px;}
.h3_c01185{height:35.190766px;}
.h2_c01185{height:36.007158px;}
.h5_c01185{height:40.511979px;}
.h6_c01185{height:52.332837px;}
.h4_c01185{height:58.337477px;}
.h0_c01185{height:1262.835000px;}
.h1_c01185{height:1263.000000px;}
.w0_c01185{width:892.920000px;}
.w1_c01185{width:893.250000px;}
.x0_c01185{left:0.000000px;}
.x4_c01185{left:127.558500px;}
.x2_c01185{left:137.122500px;}
.x1_c01185{left:143.770500px;}
.x3_c01185{left:177.007500px;}
.x5_c01185{left:435.249000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls4_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:0.078221pt;}
.ls2_c01185{letter-spacing:0.087539pt;}
.ls3_c01185{letter-spacing:0.092873pt;}
.ls1_c01185{letter-spacing:23.724873pt;}
.ws2_c01185{word-spacing:-23.622682pt;}
.ws4_c01185{word-spacing:-23.544461pt;}
.wsa_c01185{word-spacing:-19.181326pt;}
.ws10_c01185{word-spacing:-19.158506pt;}
.wsf_c01185{word-spacing:-19.128192pt;}
.wsc_c01185{word-spacing:-16.684034pt;}
.ws9_c01185{word-spacing:-15.780758pt;}
.wse_c01185{word-spacing:-15.674491pt;}
.wsb_c01185{word-spacing:-13.283467pt;}
.ws11_c01185{word-spacing:-12.539593pt;}
.ws12_c01185{word-spacing:-10.733041pt;}
.ws7_c01185{word-spacing:-8.878599pt;}
.ws8_c01185{word-spacing:-8.877777pt;}
.wsd_c01185{word-spacing:-6.832128pt;}
.ws3_c01185{word-spacing:0.000000pt;}
.ws0_c01185{word-spacing:0.039110pt;}
.ws5_c01185{word-spacing:0.189730pt;}
.ws1_c01185{word-spacing:0.195063pt;}
.ws6_c01185{word-spacing:38.256533pt;}
._3_c01185{margin-left:-5.661967pt;}
._2_c01185{margin-left:-1.377235pt;}
._1_c01185{width:0.945502pt;}
._4_c01185{width:16.516684pt;}
._5_c01185{width:17.716000pt;}
._6_c01185{width:35.652825pt;}
._0_c01185{width:94.920941pt;}
.fs0_c01185{font-size:39.110400pt;}
.fs2_c01185{font-size:53.133867pt;}
.fs1_c01185{font-size:76.513067pt;}
.y0_c01185{bottom:0.000000pt;}
.y20_c01185{bottom:39.333333pt;}
.y1f_c01185{bottom:72.934667pt;}
.y1e_c01185{bottom:88.874667pt;}
.y1d_c01185{bottom:104.814667pt;}
.y1c_c01185{bottom:120.754667pt;}
.y1b_c01185{bottom:144.445333pt;}
.y1a_c01185{bottom:168.134667pt;}
.y19_c01185{bottom:191.824000pt;}
.y18_c01185{bottom:215.514667pt;}
.y17_c01185{bottom:252.869333pt;}
.y16_c01185{bottom:665.692000pt;}
.y15_c01185{bottom:680.304000pt;}
.y14_c01185{bottom:694.916000pt;}
.y13_c01185{bottom:709.528000pt;}
.y12_c01185{bottom:724.140000pt;}
.y11_c01185{bottom:738.752000pt;}
.y10_c01185{bottom:753.364000pt;}
.yf_c01185{bottom:767.976000pt;}
.ye_c01185{bottom:782.588000pt;}
.yd_c01185{bottom:797.198667pt;}
.yc_c01185{bottom:811.810667pt;}
.yb_c01185{bottom:841.034667pt;}
.ya_c01185{bottom:855.646667pt;}
.y9_c01185{bottom:870.258667pt;}
.y8_c01185{bottom:899.482667pt;}
.y7_c01185{bottom:914.094667pt;}
.y6_c01185{bottom:928.706667pt;}
.y5_c01185{bottom:943.317333pt;}
.y4_c01185{bottom:957.929333pt;}
.y3_c01185{bottom:972.541333pt;}
.y2_c01185{bottom:987.153333pt;}
.y1_c01185{bottom:1030.989333pt;}
.h3_c01185{height:31.280681pt;}
.h2_c01185{height:32.006363pt;}
.h5_c01185{height:36.010648pt;}
.h6_c01185{height:46.518078pt;}
.h4_c01185{height:51.855535pt;}
.h0_c01185{height:1122.520000pt;}
.h1_c01185{height:1122.666667pt;}
.w0_c01185{width:793.706667pt;}
.w1_c01185{width:794.000000pt;}
.x0_c01185{left:0.000000pt;}
.x4_c01185{left:113.385333pt;}
.x2_c01185{left:121.886667pt;}
.x1_c01185{left:127.796000pt;}
.x3_c01185{left:157.340000pt;}
.x5_c01185{left:386.888000pt;}
}





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

.ir_c01186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_528e05406660da6b74cc7a8a.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01186;src:url('chunks/assets/font_ed112867a35e9de4b569da19.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01186;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01186;src:url('chunks/assets/font_de564d218f511faa0978b38e.woff2')format("woff");}.ff4_c01186{font-family:ff4_c01186;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls4_c01186{letter-spacing:0.000000px;}
.ls1_c01186{letter-spacing:0.087998px;}
.ls2_c01186{letter-spacing:0.098482px;}
.ls0_c01186{letter-spacing:0.104482px;}
.ls3_c01186{letter-spacing:26.690482px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01186{word-spacing:-33.713438px;}
.ws4_c01186{word-spacing:-26.575517px;}
.ws3_c01186{word-spacing:-26.487518px;}
.ws0_c01186{word-spacing:-18.769538px;}
.ws8_c01186{word-spacing:0.000000px;}
.ws5_c01186{word-spacing:0.043999px;}
.wsb_c01186{word-spacing:0.056767px;}
.ws9_c01186{word-spacing:0.073250px;}
.wsa_c01186{word-spacing:0.083734px;}
.ws2_c01186{word-spacing:0.175997px;}
.wsc_c01186{word-spacing:0.202963px;}
.ws6_c01186{word-spacing:0.213446px;}
.ws7_c01186{word-spacing:0.219446px;}
._0_c01186{margin-left:-3.825638px;}
._1_c01186{width:1.005737px;}
._3_c01186{width:53.283031px;}
._2_c01186{width:79.858548px;}
._4_c01186{width:133.452408px;}
.fc5_c01186{color:rgb(0,0,207);}
.fc4_c01186{color:rgb(79,153,5);}
.fc3_c01186{color:rgb(207,92,0);}
.fc2_c01186{color:rgb(33,74,135);}
.fc1_c01186{color:rgb(143,89,3);}
.fc0_c01186{color:rgb(0,0,0);}
.fs1_c01186{font-size:43.999200px;}
.fs0_c01186{font-size:59.775600px;}
.y0_c01186{bottom:0.000000px;}
.y2d_c01186{bottom:44.250000px;}
.y2c_c01186{bottom:96.919500px;}
.y2b_c01186{bottom:113.358000px;}
.y2a_c01186{bottom:129.796500px;}
.y29_c01186{bottom:146.235000px;}
.y28_c01186{bottom:162.673500px;}
.y27_c01186{bottom:179.112000px;}
.y26_c01186{bottom:195.550500px;}
.y25_c01186{bottom:211.989000px;}
.y24_c01186{bottom:228.427500px;}
.y23_c01186{bottom:244.866000px;}
.y22_c01186{bottom:261.304500px;}
.y21_c01186{bottom:294.180000px;}
.y20_c01186{bottom:310.618500px;}
.y1f_c01186{bottom:327.057000px;}
.y1e_c01186{bottom:359.934000px;}
.y1d_c01186{bottom:376.372500px;}
.y1c_c01186{bottom:392.811000px;}
.y1b_c01186{bottom:409.249500px;}
.y1a_c01186{bottom:425.688000px;}
.y19_c01186{bottom:442.125000px;}
.y18_c01186{bottom:458.563500px;}
.y17_c01186{bottom:507.879000px;}
.y16_c01186{bottom:524.317500px;}
.y15_c01186{bottom:540.756000px;}
.y14_c01186{bottom:557.194500px;}
.y13_c01186{bottom:573.633000px;}
.y12_c01186{bottom:590.071500px;}
.y11_c01186{bottom:606.508500px;}
.y10_c01186{bottom:622.947000px;}
.yf_c01186{bottom:639.385500px;}
.ye_c01186{bottom:655.824000px;}
.yd_c01186{bottom:672.262500px;}
.yc_c01186{bottom:688.701000px;}
.yb_c01186{bottom:705.139500px;}
.ya_c01186{bottom:721.578000px;}
.y9_c01186{bottom:738.016500px;}
.y8_c01186{bottom:754.455000px;}
.y7_c01186{bottom:787.330500px;}
.y6_c01186{bottom:803.769000px;}
.y5_c01186{bottom:853.084500px;}
.y4_c01186{bottom:869.523000px;}
.y3_c01186{bottom:885.588000px;}
.y2_c01186{bottom:1141.930500px;}
.y1_c01186{bottom:1159.863000px;}
.h3_c01186{height:35.190766px;}
.h4_c01186{height:36.007158px;}
.h2_c01186{height:52.332837px;}
.h0_c01186{height:1262.835000px;}
.h1_c01186{height:1263.000000px;}
.w0_c01186{width:892.920000px;}
.w1_c01186{width:893.250000px;}
.x0_c01186{left:0.000000px;}
.x1_c01186{left:127.558500px;}
.x2_c01186{left:137.122500px;}
.x3_c01186{left:143.770500px;}
.x4_c01186{left:177.007500px;}
.x5_c01186{left:435.249000px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls4_c01186{letter-spacing:0.000000pt;}
.ls1_c01186{letter-spacing:0.078221pt;}
.ls2_c01186{letter-spacing:0.087539pt;}
.ls0_c01186{letter-spacing:0.092873pt;}
.ls3_c01186{letter-spacing:23.724873pt;}
.ws1_c01186{word-spacing:-29.967501pt;}
.ws4_c01186{word-spacing:-23.622682pt;}
.ws3_c01186{word-spacing:-23.544461pt;}
.ws0_c01186{word-spacing:-16.684034pt;}
.ws8_c01186{word-spacing:0.000000pt;}
.ws5_c01186{word-spacing:0.039110pt;}
.wsb_c01186{word-spacing:0.050460pt;}
.ws9_c01186{word-spacing:0.065111pt;}
.wsa_c01186{word-spacing:0.074430pt;}
.ws2_c01186{word-spacing:0.156442pt;}
.wsc_c01186{word-spacing:0.180412pt;}
.ws6_c01186{word-spacing:0.189730pt;}
.ws7_c01186{word-spacing:0.195063pt;}
._0_c01186{margin-left:-3.400567pt;}
._1_c01186{width:0.893988pt;}
._3_c01186{width:47.362694pt;}
._2_c01186{width:70.985376pt;}
._4_c01186{width:118.624363pt;}
.fs1_c01186{font-size:39.110400pt;}
.fs0_c01186{font-size:53.133867pt;}
.y0_c01186{bottom:0.000000pt;}
.y2d_c01186{bottom:39.333333pt;}
.y2c_c01186{bottom:86.150667pt;}
.y2b_c01186{bottom:100.762667pt;}
.y2a_c01186{bottom:115.374667pt;}
.y29_c01186{bottom:129.986667pt;}
.y28_c01186{bottom:144.598667pt;}
.y27_c01186{bottom:159.210667pt;}
.y26_c01186{bottom:173.822667pt;}
.y25_c01186{bottom:188.434667pt;}
.y24_c01186{bottom:203.046667pt;}
.y23_c01186{bottom:217.658667pt;}
.y22_c01186{bottom:232.270667pt;}
.y21_c01186{bottom:261.493333pt;}
.y20_c01186{bottom:276.105333pt;}
.y1f_c01186{bottom:290.717333pt;}
.y1e_c01186{bottom:319.941333pt;}
.y1d_c01186{bottom:334.553333pt;}
.y1c_c01186{bottom:349.165333pt;}
.y1b_c01186{bottom:363.777333pt;}
.y1a_c01186{bottom:378.389333pt;}
.y19_c01186{bottom:393.000000pt;}
.y18_c01186{bottom:407.612000pt;}
.y17_c01186{bottom:451.448000pt;}
.y16_c01186{bottom:466.060000pt;}
.y15_c01186{bottom:480.672000pt;}
.y14_c01186{bottom:495.284000pt;}
.y13_c01186{bottom:509.896000pt;}
.y12_c01186{bottom:524.508000pt;}
.y11_c01186{bottom:539.118667pt;}
.y10_c01186{bottom:553.730667pt;}
.yf_c01186{bottom:568.342667pt;}
.ye_c01186{bottom:582.954667pt;}
.yd_c01186{bottom:597.566667pt;}
.yc_c01186{bottom:612.178667pt;}
.yb_c01186{bottom:626.790667pt;}
.ya_c01186{bottom:641.402667pt;}
.y9_c01186{bottom:656.014667pt;}
.y8_c01186{bottom:670.626667pt;}
.y7_c01186{bottom:699.849333pt;}
.y6_c01186{bottom:714.461333pt;}
.y5_c01186{bottom:758.297333pt;}
.y4_c01186{bottom:772.909333pt;}
.y3_c01186{bottom:787.189333pt;}
.y2_c01186{bottom:1015.049333pt;}
.y1_c01186{bottom:1030.989333pt;}
.h3_c01186{height:31.280681pt;}
.h4_c01186{height:32.006363pt;}
.h2_c01186{height:46.518078pt;}
.h0_c01186{height:1122.520000pt;}
.h1_c01186{height:1122.666667pt;}
.w0_c01186{width:793.706667pt;}
.w1_c01186{width:794.000000pt;}
.x0_c01186{left:0.000000pt;}
.x1_c01186{left:113.385333pt;}
.x2_c01186{left:121.886667pt;}
.x3_c01186{left:127.796000pt;}
.x4_c01186{left:157.340000pt;}
.x5_c01186{left:386.888000pt;}
}





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

.ir_c01187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_f99a58889c45c8f7f61688ce.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01187;src:url('chunks/assets/font_ce1c2ab366e09ccc4cd6c58e.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01187;src:url('chunks/assets/font_099ca769b6bc9fa91960dc6c.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01187;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01187;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01187{font-family:ff5_c01187;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01187{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01187{vertical-align:0.000000px;}
.ls3_c01187{letter-spacing:0.000000px;}
.ls0_c01187{letter-spacing:0.087998px;}
.ls2_c01187{letter-spacing:0.098482px;}
.ls1_c01187{letter-spacing:0.104482px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01187{word-spacing:-33.713438px;}
.ws2_c01187{word-spacing:-26.575517px;}
.wse_c01187{word-spacing:-26.487518px;}
.ws9_c01187{word-spacing:-21.553319px;}
.ws8_c01187{word-spacing:-21.519216px;}
.ws5_c01187{word-spacing:-18.769538px;}
.ws7_c01187{word-spacing:-17.633802px;}
.ws4_c01187{word-spacing:-14.943900px;}
.wsa_c01187{word-spacing:-14.107042px;}
.wsb_c01187{word-spacing:-12.074671px;}
.ws1_c01187{word-spacing:-9.988424px;}
.ws3_c01187{word-spacing:-9.987499px;}
.ws6_c01187{word-spacing:-7.686144px;}
.ws12_c01187{word-spacing:0.000000px;}
.wsf_c01187{word-spacing:0.043999px;}
.ws15_c01187{word-spacing:0.056767px;}
.ws13_c01187{word-spacing:0.073250px;}
.ws14_c01187{word-spacing:0.083734px;}
.wsd_c01187{word-spacing:0.175997px;}
.ws16_c01187{word-spacing:0.202963px;}
.ws10_c01187{word-spacing:0.213446px;}
.ws11_c01187{word-spacing:0.219446px;}
.ws0_c01187{word-spacing:43.038600px;}
._1_c01187{margin-left:-6.369713px;}
._4_c01187{margin-left:-3.825638px;}
._0_c01187{margin-left:-1.549390px;}
._5_c01187{width:1.005737px;}
._2_c01187{width:19.935816px;}
._3_c01187{width:40.109428px;}
._7_c01187{width:53.283031px;}
._6_c01187{width:79.858548px;}
._8_c01187{width:133.452408px;}
.fc6_c01187{color:rgb(0,0,207);}
.fc5_c01187{color:rgb(79,153,5);}
.fc3_c01187{color:rgb(33,74,135);}
.fc2_c01187{color:rgb(143,89,3);}
.fc4_c01187{color:rgb(207,92,0);}
.fc1_c01187{color:rgb(6,69,173);}
.fc0_c01187{color:rgb(0,0,0);}
.fs2_c01187{font-size:43.999200px;}
.fs1_c01187{font-size:59.775600px;}
.fs0_c01187{font-size:86.077200px;}
.y0_c01187{bottom:0.000000px;}
.y20_c01187{bottom:44.250000px;}
.y1f_c01187{bottom:86.982000px;}
.y1e_c01187{bottom:103.420500px;}
.y1d_c01187{bottom:119.859000px;}
.y1c_c01187{bottom:136.297500px;}
.y1b_c01187{bottom:152.736000px;}
.y1a_c01187{bottom:169.174500px;}
.y19_c01187{bottom:185.613000px;}
.y18_c01187{bottom:202.051500px;}
.y17_c01187{bottom:218.490000px;}
.y16_c01187{bottom:234.927000px;}
.y15_c01187{bottom:251.365500px;}
.y14_c01187{bottom:267.804000px;}
.y13_c01187{bottom:284.242500px;}
.y12_c01187{bottom:300.681000px;}
.y11_c01187{bottom:317.119500px;}
.y10_c01187{bottom:349.996500px;}
.yf_c01187{bottom:366.435000px;}
.ye_c01187{bottom:415.749000px;}
.yd_c01187{bottom:432.187500px;}
.yc_c01187{bottom:448.252500px;}
.yb_c01187{bottom:493.890000px;}
.ya_c01187{bottom:511.822500px;}
.y9_c01187{bottom:529.756500px;}
.y8_c01187{bottom:547.689000px;}
.y7_c01187{bottom:565.621500px;}
.y6_c01187{bottom:583.554000px;}
.y5_c01187{bottom:610.633500px;}
.y4_c01187{bottom:637.714500px;}
.y3_c01187{bottom:664.794000px;}
.y2_c01187{bottom:691.873500px;}
.y1_c01187{bottom:734.407500px;}
.h5_c01187{height:35.190766px;}
.h6_c01187{height:36.007158px;}
.h3_c01187{height:40.511979px;}
.h4_c01187{height:52.332837px;}
.h2_c01187{height:58.337477px;}
.h0_c01187{height:1262.835000px;}
.h1_c01187{height:1263.000000px;}
.w0_c01187{width:892.920000px;}
.w1_c01187{width:893.250000px;}
.x0_c01187{left:0.000000px;}
.x1_c01187{left:127.558500px;}
.x2_c01187{left:137.122500px;}
.x3_c01187{left:143.770500px;}
.x4_c01187{left:435.249000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls3_c01187{letter-spacing:0.000000pt;}
.ls0_c01187{letter-spacing:0.078221pt;}
.ls2_c01187{letter-spacing:0.087539pt;}
.ls1_c01187{letter-spacing:0.092873pt;}
.wsc_c01187{word-spacing:-29.967501pt;}
.ws2_c01187{word-spacing:-23.622682pt;}
.wse_c01187{word-spacing:-23.544461pt;}
.ws9_c01187{word-spacing:-19.158506pt;}
.ws8_c01187{word-spacing:-19.128192pt;}
.ws5_c01187{word-spacing:-16.684034pt;}
.ws7_c01187{word-spacing:-15.674491pt;}
.ws4_c01187{word-spacing:-13.283467pt;}
.wsa_c01187{word-spacing:-12.539593pt;}
.wsb_c01187{word-spacing:-10.733041pt;}
.ws1_c01187{word-spacing:-8.878599pt;}
.ws3_c01187{word-spacing:-8.877777pt;}
.ws6_c01187{word-spacing:-6.832128pt;}
.ws12_c01187{word-spacing:0.000000pt;}
.wsf_c01187{word-spacing:0.039110pt;}
.ws15_c01187{word-spacing:0.050460pt;}
.ws13_c01187{word-spacing:0.065111pt;}
.ws14_c01187{word-spacing:0.074430pt;}
.wsd_c01187{word-spacing:0.156442pt;}
.ws16_c01187{word-spacing:0.180412pt;}
.ws10_c01187{word-spacing:0.189730pt;}
.ws11_c01187{word-spacing:0.195063pt;}
.ws0_c01187{word-spacing:38.256533pt;}
._1_c01187{margin-left:-5.661967pt;}
._4_c01187{margin-left:-3.400567pt;}
._0_c01187{margin-left:-1.377235pt;}
._5_c01187{width:0.893988pt;}
._2_c01187{width:17.720725pt;}
._3_c01187{width:35.652825pt;}
._7_c01187{width:47.362694pt;}
._6_c01187{width:70.985376pt;}
._8_c01187{width:118.624363pt;}
.fs2_c01187{font-size:39.110400pt;}
.fs1_c01187{font-size:53.133867pt;}
.fs0_c01187{font-size:76.513067pt;}
.y0_c01187{bottom:0.000000pt;}
.y20_c01187{bottom:39.333333pt;}
.y1f_c01187{bottom:77.317333pt;}
.y1e_c01187{bottom:91.929333pt;}
.y1d_c01187{bottom:106.541333pt;}
.y1c_c01187{bottom:121.153333pt;}
.y1b_c01187{bottom:135.765333pt;}
.y1a_c01187{bottom:150.377333pt;}
.y19_c01187{bottom:164.989333pt;}
.y18_c01187{bottom:179.601333pt;}
.y17_c01187{bottom:194.213333pt;}
.y16_c01187{bottom:208.824000pt;}
.y15_c01187{bottom:223.436000pt;}
.y14_c01187{bottom:238.048000pt;}
.y13_c01187{bottom:252.660000pt;}
.y12_c01187{bottom:267.272000pt;}
.y11_c01187{bottom:281.884000pt;}
.y10_c01187{bottom:311.108000pt;}
.yf_c01187{bottom:325.720000pt;}
.ye_c01187{bottom:369.554667pt;}
.yd_c01187{bottom:384.166667pt;}
.yc_c01187{bottom:398.446667pt;}
.yb_c01187{bottom:439.013333pt;}
.ya_c01187{bottom:454.953333pt;}
.y9_c01187{bottom:470.894667pt;}
.y8_c01187{bottom:486.834667pt;}
.y7_c01187{bottom:502.774667pt;}
.y6_c01187{bottom:518.714667pt;}
.y5_c01187{bottom:542.785333pt;}
.y4_c01187{bottom:566.857333pt;}
.y3_c01187{bottom:590.928000pt;}
.y2_c01187{bottom:614.998667pt;}
.y1_c01187{bottom:652.806667pt;}
.h5_c01187{height:31.280681pt;}
.h6_c01187{height:32.006363pt;}
.h3_c01187{height:36.010648pt;}
.h4_c01187{height:46.518078pt;}
.h2_c01187{height:51.855535pt;}
.h0_c01187{height:1122.520000pt;}
.h1_c01187{height:1122.666667pt;}
.w0_c01187{width:793.706667pt;}
.w1_c01187{width:794.000000pt;}
.x0_c01187{left:0.000000pt;}
.x1_c01187{left:113.385333pt;}
.x2_c01187{left:121.886667pt;}
.x3_c01187{left:127.796000pt;}
.x4_c01187{left:386.888000pt;}
}





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

.ir_c01188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_3aa6357c006e1273d6f0dad7.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01188;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01188;src:url('chunks/assets/font_07423b3b97000501381c6e6e.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01188;src:url('chunks/assets/font_301a3e610ae09a0141864445.woff2')format("woff");}.ff4_c01188{font-family:ff4_c01188;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01188;src:url('chunks/assets/font_f92755d525dfab9f94aa590d.woff2')format("woff");}.ff5_c01188{font-family:ff5_c01188;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls4_c01188{letter-spacing:0.000000px;}
.ls0_c01188{letter-spacing:0.087998px;}
.ls2_c01188{letter-spacing:0.098482px;}
.ls3_c01188{letter-spacing:0.104482px;}
.ls1_c01188{letter-spacing:26.690482px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01188{word-spacing:-26.575517px;}
.ws4_c01188{word-spacing:-26.487518px;}
.wse_c01188{word-spacing:-21.553319px;}
.wsd_c01188{word-spacing:-21.519216px;}
.wsc_c01188{word-spacing:-19.247743px;}
.wsa_c01188{word-spacing:-18.769538px;}
.ws9_c01188{word-spacing:-14.943900px;}
.wsf_c01188{word-spacing:-14.107042px;}
.ws10_c01188{word-spacing:-12.074671px;}
.wsb_c01188{word-spacing:-10.230144px;}
.ws7_c01188{word-spacing:-9.988424px;}
.ws8_c01188{word-spacing:-9.987499px;}
.ws3_c01188{word-spacing:0.000000px;}
.ws0_c01188{word-spacing:0.043999px;}
.ws5_c01188{word-spacing:0.213446px;}
.ws1_c01188{word-spacing:0.219446px;}
.ws6_c01188{word-spacing:43.038600px;}
._3_c01188{margin-left:-6.369713px;}
._2_c01188{margin-left:-1.549390px;}
._1_c01188{width:1.074173px;}
._4_c01188{width:19.935816px;}
._5_c01188{width:40.109428px;}
._0_c01188{width:80.210542px;}
.fc5_c01188{color:rgb(79,153,5);}
.fc4_c01188{color:rgb(143,89,3);}
.fc3_c01188{color:rgb(0,0,0);}
.fc6_c01188{color:rgb(6,69,173);}
.fc2_c01188{color:rgb(207,92,0);}
.fc1_c01188{color:rgb(0,0,207);}
.fc0_c01188{color:rgb(33,74,135);}
.fs0_c01188{font-size:43.999200px;}
.fs2_c01188{font-size:59.775600px;}
.fs1_c01188{font-size:86.077200px;}
.y0_c01188{bottom:0.000000px;}
.y20_c01188{bottom:44.250000px;}
.y1f_c01188{bottom:82.051500px;}
.y1e_c01188{bottom:99.984000px;}
.y1d_c01188{bottom:117.916500px;}
.y1c_c01188{bottom:135.849000px;}
.y1b_c01188{bottom:162.501000px;}
.y1a_c01188{bottom:189.151500px;}
.y19_c01188{bottom:215.802000px;}
.y18_c01188{bottom:242.454000px;}
.y17_c01188{bottom:284.478000px;}
.y16_c01188{bottom:748.903500px;}
.y15_c01188{bottom:765.342000px;}
.y14_c01188{bottom:781.780500px;}
.y13_c01188{bottom:798.219000px;}
.y12_c01188{bottom:814.657500px;}
.y11_c01188{bottom:831.096000px;}
.y10_c01188{bottom:847.534500px;}
.yf_c01188{bottom:863.973000px;}
.ye_c01188{bottom:880.411500px;}
.yd_c01188{bottom:896.848500px;}
.yc_c01188{bottom:913.287000px;}
.yb_c01188{bottom:946.164000px;}
.ya_c01188{bottom:962.602500px;}
.y9_c01188{bottom:979.041000px;}
.y8_c01188{bottom:1011.918000px;}
.y7_c01188{bottom:1028.356500px;}
.y6_c01188{bottom:1044.795000px;}
.y5_c01188{bottom:1061.232000px;}
.y4_c01188{bottom:1077.670500px;}
.y3_c01188{bottom:1094.109000px;}
.y2_c01188{bottom:1110.547500px;}
.y1_c01188{bottom:1159.863000px;}
.h3_c01188{height:35.190766px;}
.h2_c01188{height:36.007158px;}
.h5_c01188{height:40.511979px;}
.h6_c01188{height:52.332837px;}
.h4_c01188{height:58.337477px;}
.h0_c01188{height:1262.835000px;}
.h1_c01188{height:1263.000000px;}
.w0_c01188{width:892.920000px;}
.w1_c01188{width:893.250000px;}
.x0_c01188{left:0.000000px;}
.x4_c01188{left:127.558500px;}
.x2_c01188{left:137.122500px;}
.x1_c01188{left:143.770500px;}
.x3_c01188{left:177.007500px;}
.x5_c01188{left:435.249000px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls4_c01188{letter-spacing:0.000000pt;}
.ls0_c01188{letter-spacing:0.078221pt;}
.ls2_c01188{letter-spacing:0.087539pt;}
.ls3_c01188{letter-spacing:0.092873pt;}
.ls1_c01188{letter-spacing:23.724873pt;}
.ws2_c01188{word-spacing:-23.622682pt;}
.ws4_c01188{word-spacing:-23.544461pt;}
.wse_c01188{word-spacing:-19.158506pt;}
.wsd_c01188{word-spacing:-19.128192pt;}
.wsc_c01188{word-spacing:-17.109105pt;}
.wsa_c01188{word-spacing:-16.684034pt;}
.ws9_c01188{word-spacing:-13.283467pt;}
.wsf_c01188{word-spacing:-12.539593pt;}
.ws10_c01188{word-spacing:-10.733041pt;}
.wsb_c01188{word-spacing:-9.093461pt;}
.ws7_c01188{word-spacing:-8.878599pt;}
.ws8_c01188{word-spacing:-8.877777pt;}
.ws3_c01188{word-spacing:0.000000pt;}
.ws0_c01188{word-spacing:0.039110pt;}
.ws5_c01188{word-spacing:0.189730pt;}
.ws1_c01188{word-spacing:0.195063pt;}
.ws6_c01188{word-spacing:38.256533pt;}
._3_c01188{margin-left:-5.661967pt;}
._2_c01188{margin-left:-1.377235pt;}
._1_c01188{width:0.954820pt;}
._4_c01188{width:17.720725pt;}
._5_c01188{width:35.652825pt;}
._0_c01188{width:71.298259pt;}
.fs0_c01188{font-size:39.110400pt;}
.fs2_c01188{font-size:53.133867pt;}
.fs1_c01188{font-size:76.513067pt;}
.y0_c01188{bottom:0.000000pt;}
.y20_c01188{bottom:39.333333pt;}
.y1f_c01188{bottom:72.934667pt;}
.y1e_c01188{bottom:88.874667pt;}
.y1d_c01188{bottom:104.814667pt;}
.y1c_c01188{bottom:120.754667pt;}
.y1b_c01188{bottom:144.445333pt;}
.y1a_c01188{bottom:168.134667pt;}
.y19_c01188{bottom:191.824000pt;}
.y18_c01188{bottom:215.514667pt;}
.y17_c01188{bottom:252.869333pt;}
.y16_c01188{bottom:665.692000pt;}
.y15_c01188{bottom:680.304000pt;}
.y14_c01188{bottom:694.916000pt;}
.y13_c01188{bottom:709.528000pt;}
.y12_c01188{bottom:724.140000pt;}
.y11_c01188{bottom:738.752000pt;}
.y10_c01188{bottom:753.364000pt;}
.yf_c01188{bottom:767.976000pt;}
.ye_c01188{bottom:782.588000pt;}
.yd_c01188{bottom:797.198667pt;}
.yc_c01188{bottom:811.810667pt;}
.yb_c01188{bottom:841.034667pt;}
.ya_c01188{bottom:855.646667pt;}
.y9_c01188{bottom:870.258667pt;}
.y8_c01188{bottom:899.482667pt;}
.y7_c01188{bottom:914.094667pt;}
.y6_c01188{bottom:928.706667pt;}
.y5_c01188{bottom:943.317333pt;}
.y4_c01188{bottom:957.929333pt;}
.y3_c01188{bottom:972.541333pt;}
.y2_c01188{bottom:987.153333pt;}
.y1_c01188{bottom:1030.989333pt;}
.h3_c01188{height:31.280681pt;}
.h2_c01188{height:32.006363pt;}
.h5_c01188{height:36.010648pt;}
.h6_c01188{height:46.518078pt;}
.h4_c01188{height:51.855535pt;}
.h0_c01188{height:1122.520000pt;}
.h1_c01188{height:1122.666667pt;}
.w0_c01188{width:793.706667pt;}
.w1_c01188{width:794.000000pt;}
.x0_c01188{left:0.000000pt;}
.x4_c01188{left:113.385333pt;}
.x2_c01188{left:121.886667pt;}
.x1_c01188{left:127.796000pt;}
.x3_c01188{left:157.340000pt;}
.x5_c01188{left:386.888000pt;}
}





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

.ir_c01189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_e3fe5ec18295a140b3cdfef6.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01189;src:url('chunks/assets/font_fc5240967c12311e55402234.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01189;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01189;src:url('chunks/assets/font_78107c7c329dff769b64a2ed.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.ls4_c01189{letter-spacing:0.000000px;}
.ls1_c01189{letter-spacing:0.087998px;}
.ls2_c01189{letter-spacing:0.098482px;}
.ls0_c01189{letter-spacing:0.104482px;}
.ls3_c01189{letter-spacing:26.690482px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01189{word-spacing:-33.713438px;}
.ws4_c01189{word-spacing:-26.575517px;}
.ws3_c01189{word-spacing:-26.487518px;}
.ws0_c01189{word-spacing:-18.769538px;}
.ws8_c01189{word-spacing:0.000000px;}
.ws5_c01189{word-spacing:0.043999px;}
.wsb_c01189{word-spacing:0.056767px;}
.ws9_c01189{word-spacing:0.073250px;}
.wsa_c01189{word-spacing:0.083734px;}
.ws2_c01189{word-spacing:0.175997px;}
.wsc_c01189{word-spacing:0.202963px;}
.ws6_c01189{word-spacing:0.213446px;}
.ws7_c01189{word-spacing:0.219446px;}
._0_c01189{margin-left:-3.825638px;}
._1_c01189{width:1.005737px;}
._3_c01189{width:53.283031px;}
._2_c01189{width:79.858548px;}
._4_c01189{width:133.452408px;}
.fc5_c01189{color:rgb(0,0,207);}
.fc4_c01189{color:rgb(79,153,5);}
.fc3_c01189{color:rgb(207,92,0);}
.fc2_c01189{color:rgb(33,74,135);}
.fc1_c01189{color:rgb(143,89,3);}
.fc0_c01189{color:rgb(0,0,0);}
.fs1_c01189{font-size:43.999200px;}
.fs0_c01189{font-size:59.775600px;}
.y0_c01189{bottom:0.000000px;}
.y2d_c01189{bottom:44.250000px;}
.y2c_c01189{bottom:96.919500px;}
.y2b_c01189{bottom:113.358000px;}
.y2a_c01189{bottom:129.796500px;}
.y29_c01189{bottom:146.235000px;}
.y28_c01189{bottom:162.673500px;}
.y27_c01189{bottom:179.112000px;}
.y26_c01189{bottom:195.550500px;}
.y25_c01189{bottom:211.989000px;}
.y24_c01189{bottom:228.427500px;}
.y23_c01189{bottom:244.866000px;}
.y22_c01189{bottom:261.304500px;}
.y21_c01189{bottom:294.180000px;}
.y20_c01189{bottom:310.618500px;}
.y1f_c01189{bottom:327.057000px;}
.y1e_c01189{bottom:359.934000px;}
.y1d_c01189{bottom:376.372500px;}
.y1c_c01189{bottom:392.811000px;}
.y1b_c01189{bottom:409.249500px;}
.y1a_c01189{bottom:425.688000px;}
.y19_c01189{bottom:442.125000px;}
.y18_c01189{bottom:458.563500px;}
.y17_c01189{bottom:507.879000px;}
.y16_c01189{bottom:524.317500px;}
.y15_c01189{bottom:540.756000px;}
.y14_c01189{bottom:557.194500px;}
.y13_c01189{bottom:573.633000px;}
.y12_c01189{bottom:590.071500px;}
.y11_c01189{bottom:606.508500px;}
.y10_c01189{bottom:622.947000px;}
.yf_c01189{bottom:639.385500px;}
.ye_c01189{bottom:655.824000px;}
.yd_c01189{bottom:672.262500px;}
.yc_c01189{bottom:688.701000px;}
.yb_c01189{bottom:705.139500px;}
.ya_c01189{bottom:721.578000px;}
.y9_c01189{bottom:738.016500px;}
.y8_c01189{bottom:754.455000px;}
.y7_c01189{bottom:787.330500px;}
.y6_c01189{bottom:803.769000px;}
.y5_c01189{bottom:853.084500px;}
.y4_c01189{bottom:869.523000px;}
.y3_c01189{bottom:885.588000px;}
.y2_c01189{bottom:1141.930500px;}
.y1_c01189{bottom:1159.863000px;}
.h3_c01189{height:35.190766px;}
.h4_c01189{height:36.007158px;}
.h2_c01189{height:52.332837px;}
.h0_c01189{height:1262.835000px;}
.h1_c01189{height:1263.000000px;}
.w0_c01189{width:892.920000px;}
.w1_c01189{width:893.250000px;}
.x0_c01189{left:0.000000px;}
.x1_c01189{left:127.558500px;}
.x2_c01189{left:137.122500px;}
.x3_c01189{left:143.770500px;}
.x4_c01189{left:177.007500px;}
.x5_c01189{left:435.249000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls4_c01189{letter-spacing:0.000000pt;}
.ls1_c01189{letter-spacing:0.078221pt;}
.ls2_c01189{letter-spacing:0.087539pt;}
.ls0_c01189{letter-spacing:0.092873pt;}
.ls3_c01189{letter-spacing:23.724873pt;}
.ws1_c01189{word-spacing:-29.967501pt;}
.ws4_c01189{word-spacing:-23.622682pt;}
.ws3_c01189{word-spacing:-23.544461pt;}
.ws0_c01189{word-spacing:-16.684034pt;}
.ws8_c01189{word-spacing:0.000000pt;}
.ws5_c01189{word-spacing:0.039110pt;}
.wsb_c01189{word-spacing:0.050460pt;}
.ws9_c01189{word-spacing:0.065111pt;}
.wsa_c01189{word-spacing:0.074430pt;}
.ws2_c01189{word-spacing:0.156442pt;}
.wsc_c01189{word-spacing:0.180412pt;}
.ws6_c01189{word-spacing:0.189730pt;}
.ws7_c01189{word-spacing:0.195063pt;}
._0_c01189{margin-left:-3.400567pt;}
._1_c01189{width:0.893988pt;}
._3_c01189{width:47.362694pt;}
._2_c01189{width:70.985376pt;}
._4_c01189{width:118.624363pt;}
.fs1_c01189{font-size:39.110400pt;}
.fs0_c01189{font-size:53.133867pt;}
.y0_c01189{bottom:0.000000pt;}
.y2d_c01189{bottom:39.333333pt;}
.y2c_c01189{bottom:86.150667pt;}
.y2b_c01189{bottom:100.762667pt;}
.y2a_c01189{bottom:115.374667pt;}
.y29_c01189{bottom:129.986667pt;}
.y28_c01189{bottom:144.598667pt;}
.y27_c01189{bottom:159.210667pt;}
.y26_c01189{bottom:173.822667pt;}
.y25_c01189{bottom:188.434667pt;}
.y24_c01189{bottom:203.046667pt;}
.y23_c01189{bottom:217.658667pt;}
.y22_c01189{bottom:232.270667pt;}
.y21_c01189{bottom:261.493333pt;}
.y20_c01189{bottom:276.105333pt;}
.y1f_c01189{bottom:290.717333pt;}
.y1e_c01189{bottom:319.941333pt;}
.y1d_c01189{bottom:334.553333pt;}
.y1c_c01189{bottom:349.165333pt;}
.y1b_c01189{bottom:363.777333pt;}
.y1a_c01189{bottom:378.389333pt;}
.y19_c01189{bottom:393.000000pt;}
.y18_c01189{bottom:407.612000pt;}
.y17_c01189{bottom:451.448000pt;}
.y16_c01189{bottom:466.060000pt;}
.y15_c01189{bottom:480.672000pt;}
.y14_c01189{bottom:495.284000pt;}
.y13_c01189{bottom:509.896000pt;}
.y12_c01189{bottom:524.508000pt;}
.y11_c01189{bottom:539.118667pt;}
.y10_c01189{bottom:553.730667pt;}
.yf_c01189{bottom:568.342667pt;}
.ye_c01189{bottom:582.954667pt;}
.yd_c01189{bottom:597.566667pt;}
.yc_c01189{bottom:612.178667pt;}
.yb_c01189{bottom:626.790667pt;}
.ya_c01189{bottom:641.402667pt;}
.y9_c01189{bottom:656.014667pt;}
.y8_c01189{bottom:670.626667pt;}
.y7_c01189{bottom:699.849333pt;}
.y6_c01189{bottom:714.461333pt;}
.y5_c01189{bottom:758.297333pt;}
.y4_c01189{bottom:772.909333pt;}
.y3_c01189{bottom:787.189333pt;}
.y2_c01189{bottom:1015.049333pt;}
.y1_c01189{bottom:1030.989333pt;}
.h3_c01189{height:31.280681pt;}
.h4_c01189{height:32.006363pt;}
.h2_c01189{height:46.518078pt;}
.h0_c01189{height:1122.520000pt;}
.h1_c01189{height:1122.666667pt;}
.w0_c01189{width:793.706667pt;}
.w1_c01189{width:794.000000pt;}
.x0_c01189{left:0.000000pt;}
.x1_c01189{left:113.385333pt;}
.x2_c01189{left:121.886667pt;}
.x3_c01189{left:127.796000pt;}
.x4_c01189{left:157.340000pt;}
.x5_c01189{left:386.888000pt;}
}





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

.ir_c01190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_3abc2f492068a4136554e15c.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01190;src:url('chunks/assets/font_2f683619a39815cf1bb34b0d.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01190;src:url('chunks/assets/font_5999c506ae18ea757237d4a1.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01190;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01190;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01190{font-family:ff5_c01190;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01190{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01190{vertical-align:0.000000px;}
.ls3_c01190{letter-spacing:0.000000px;}
.ls0_c01190{letter-spacing:0.087998px;}
.ls2_c01190{letter-spacing:0.098482px;}
.ls1_c01190{letter-spacing:0.104482px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01190{word-spacing:-26.575517px;}
.ws19_c01190{word-spacing:-26.487518px;}
.ws11_c01190{word-spacing:-18.829314px;}
.ws7_c01190{word-spacing:-18.769538px;}
.ws5_c01190{word-spacing:-18.410885px;}
.ws12_c01190{word-spacing:-18.112007px;}
.ws15_c01190{word-spacing:-17.813129px;}
.ws16_c01190{word-spacing:-17.753353px;}
.wsf_c01190{word-spacing:-17.275148px;}
.wse_c01190{word-spacing:-17.215373px;}
.ws10_c01190{word-spacing:-17.155597px;}
.ws17_c01190{word-spacing:-16.677392px;}
.ws13_c01190{word-spacing:-15.780758px;}
.wsa_c01190{word-spacing:-15.601432px;}
.ws14_c01190{word-spacing:-15.063451px;}
.ws6_c01190{word-spacing:-14.943900px;}
.ws4_c01190{word-spacing:-14.585246px;}
.wsb_c01190{word-spacing:-13.808164px;}
.ws9_c01190{word-spacing:-13.748388px;}
.wsc_c01190{word-spacing:-12.732203px;}
.wsd_c01190{word-spacing:-12.672427px;}
.ws1_c01190{word-spacing:-9.988424px;}
.ws3_c01190{word-spacing:-9.987499px;}
.ws1d_c01190{word-spacing:0.000000px;}
.ws8_c01190{word-spacing:0.017856px;}
.ws1a_c01190{word-spacing:0.043999px;}
.ws18_c01190{word-spacing:0.175997px;}
.ws1c_c01190{word-spacing:0.213446px;}
.ws1b_c01190{word-spacing:0.219446px;}
.ws0_c01190{word-spacing:43.038600px;}
._2_c01190{margin-left:-9.554569px;}
._7_c01190{margin-left:-7.467284px;}
._1_c01190{margin-left:-6.369713px;}
._6_c01190{margin-left:-4.129182px;}
._5_c01190{margin-left:-2.998955px;}
._0_c01190{margin-left:-1.549390px;}
._a_c01190{width:1.005737px;}
._3_c01190{width:20.693162px;}
._8_c01190{width:23.073382px;}
._9_c01190{width:26.540366px;}
._4_c01190{width:29.529146px;}
.fc5_c01190{color:rgb(79,153,5);}
.fc3_c01190{color:rgb(33,74,135);}
.fc2_c01190{color:rgb(143,89,3);}
.fc4_c01190{color:rgb(207,92,0);}
.fc1_c01190{color:rgb(6,69,173);}
.fc0_c01190{color:rgb(0,0,0);}
.fs2_c01190{font-size:43.999200px;}
.fs1_c01190{font-size:59.775600px;}
.fs0_c01190{font-size:86.077200px;}
.y0_c01190{bottom:0.000000px;}
.y1c_c01190{bottom:44.250000px;}
.y1b_c01190{bottom:86.982000px;}
.y1a_c01190{bottom:103.420500px;}
.y19_c01190{bottom:119.485500px;}
.y18_c01190{bottom:167.907000px;}
.y17_c01190{bottom:185.839500px;}
.y16_c01190{bottom:203.772000px;}
.y15_c01190{bottom:221.704500px;}
.y14_c01190{bottom:239.637000px;}
.y13_c01190{bottom:257.571000px;}
.y12_c01190{bottom:275.503500px;}
.y11_c01190{bottom:317.560500px;}
.y10_c01190{bottom:347.620500px;}
.yf_c01190{bottom:377.680500px;}
.ye_c01190{bottom:407.739000px;}
.yd_c01190{bottom:425.673000px;}
.yc_c01190{bottom:467.730000px;}
.yb_c01190{bottom:485.662500px;}
.ya_c01190{bottom:512.647500px;}
.y9_c01190{bottom:530.580000px;}
.y8_c01190{bottom:548.514000px;}
.y7_c01190{bottom:566.446500px;}
.y6_c01190{bottom:593.431500px;}
.y5_c01190{bottom:620.416500px;}
.y4_c01190{bottom:638.349000px;}
.y3_c01190{bottom:665.334000px;}
.y2_c01190{bottom:692.319000px;}
.y1_c01190{bottom:734.715000px;}
.h5_c01190{height:35.190766px;}
.h6_c01190{height:36.007158px;}
.h3_c01190{height:40.511979px;}
.h4_c01190{height:52.332837px;}
.h2_c01190{height:58.337477px;}
.h0_c01190{height:1262.835000px;}
.h1_c01190{height:1263.000000px;}
.w0_c01190{width:892.920000px;}
.w1_c01190{width:893.250000px;}
.x0_c01190{left:0.000000px;}
.x1_c01190{left:127.558500px;}
.x4_c01190{left:137.122500px;}
.x2_c01190{left:152.215500px;}
.x3_c01190{left:164.919000px;}
.x5_c01190{left:435.249000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls3_c01190{letter-spacing:0.000000pt;}
.ls0_c01190{letter-spacing:0.078221pt;}
.ls2_c01190{letter-spacing:0.087539pt;}
.ls1_c01190{letter-spacing:0.092873pt;}
.ws2_c01190{word-spacing:-23.622682pt;}
.ws19_c01190{word-spacing:-23.544461pt;}
.ws11_c01190{word-spacing:-16.737168pt;}
.ws7_c01190{word-spacing:-16.684034pt;}
.ws5_c01190{word-spacing:-16.365231pt;}
.ws12_c01190{word-spacing:-16.099562pt;}
.ws15_c01190{word-spacing:-15.833892pt;}
.ws16_c01190{word-spacing:-15.780758pt;}
.wsf_c01190{word-spacing:-15.355687pt;}
.wse_c01190{word-spacing:-15.302554pt;}
.ws10_c01190{word-spacing:-15.249420pt;}
.ws17_c01190{word-spacing:-14.824349pt;}
.ws13_c01190{word-spacing:-14.027341pt;}
.wsa_c01190{word-spacing:-13.867939pt;}
.ws14_c01190{word-spacing:-13.389734pt;}
.ws6_c01190{word-spacing:-13.283467pt;}
.ws4_c01190{word-spacing:-12.964663pt;}
.wsb_c01190{word-spacing:-12.273923pt;}
.ws9_c01190{word-spacing:-12.220789pt;}
.wsc_c01190{word-spacing:-11.317514pt;}
.wsd_c01190{word-spacing:-11.264380pt;}
.ws1_c01190{word-spacing:-8.878599pt;}
.ws3_c01190{word-spacing:-8.877777pt;}
.ws1d_c01190{word-spacing:0.000000pt;}
.ws8_c01190{word-spacing:0.015872pt;}
.ws1a_c01190{word-spacing:0.039110pt;}
.ws18_c01190{word-spacing:0.156442pt;}
.ws1c_c01190{word-spacing:0.189730pt;}
.ws1b_c01190{word-spacing:0.195063pt;}
.ws0_c01190{word-spacing:38.256533pt;}
._2_c01190{margin-left:-8.492950pt;}
._7_c01190{margin-left:-6.637586pt;}
._1_c01190{margin-left:-5.661967pt;}
._6_c01190{margin-left:-3.670384pt;}
._5_c01190{margin-left:-2.665738pt;}
._0_c01190{margin-left:-1.377235pt;}
._a_c01190{width:0.893988pt;}
._3_c01190{width:18.393922pt;}
._8_c01190{width:20.509673pt;}
._9_c01190{width:23.591437pt;}
._4_c01190{width:26.248130pt;}
.fs2_c01190{font-size:39.110400pt;}
.fs1_c01190{font-size:53.133867pt;}
.fs0_c01190{font-size:76.513067pt;}
.y0_c01190{bottom:0.000000pt;}
.y1c_c01190{bottom:39.333333pt;}
.y1b_c01190{bottom:77.317333pt;}
.y1a_c01190{bottom:91.929333pt;}
.y19_c01190{bottom:106.209333pt;}
.y18_c01190{bottom:149.250667pt;}
.y17_c01190{bottom:165.190667pt;}
.y16_c01190{bottom:181.130667pt;}
.y15_c01190{bottom:197.070667pt;}
.y14_c01190{bottom:213.010667pt;}
.y13_c01190{bottom:228.952000pt;}
.y12_c01190{bottom:244.892000pt;}
.y11_c01190{bottom:282.276000pt;}
.y10_c01190{bottom:308.996000pt;}
.yf_c01190{bottom:335.716000pt;}
.ye_c01190{bottom:362.434667pt;}
.yd_c01190{bottom:378.376000pt;}
.yc_c01190{bottom:415.760000pt;}
.yb_c01190{bottom:431.700000pt;}
.ya_c01190{bottom:455.686667pt;}
.y9_c01190{bottom:471.626667pt;}
.y8_c01190{bottom:487.568000pt;}
.y7_c01190{bottom:503.508000pt;}
.y6_c01190{bottom:527.494667pt;}
.y5_c01190{bottom:551.481333pt;}
.y4_c01190{bottom:567.421333pt;}
.y3_c01190{bottom:591.408000pt;}
.y2_c01190{bottom:615.394667pt;}
.y1_c01190{bottom:653.080000pt;}
.h5_c01190{height:31.280681pt;}
.h6_c01190{height:32.006363pt;}
.h3_c01190{height:36.010648pt;}
.h4_c01190{height:46.518078pt;}
.h2_c01190{height:51.855535pt;}
.h0_c01190{height:1122.520000pt;}
.h1_c01190{height:1122.666667pt;}
.w0_c01190{width:793.706667pt;}
.w1_c01190{width:794.000000pt;}
.x0_c01190{left:0.000000pt;}
.x1_c01190{left:113.385333pt;}
.x4_c01190{left:121.886667pt;}
.x2_c01190{left:135.302667pt;}
.x3_c01190{left:146.594667pt;}
.x5_c01190{left:386.888000pt;}
}





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

.ir_c01191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01191;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01191;src:url('chunks/assets/font_8c1ad33583345a24f3584f7a.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01191;src:url('chunks/assets/font_dc0642fae028e89dfa769476.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls4_c01191{letter-spacing:0.000000px;}
.ls1_c01191{letter-spacing:0.087998px;}
.ls2_c01191{letter-spacing:0.098482px;}
.ls0_c01191{letter-spacing:0.104482px;}
.ls3_c01191{letter-spacing:26.690482px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01191{word-spacing:-26.575517px;}
.ws0_c01191{word-spacing:-26.487518px;}
.ws5_c01191{word-spacing:0.000000px;}
.ws7_c01191{word-spacing:0.036900px;}
.ws4_c01191{word-spacing:0.043999px;}
.ws6_c01191{word-spacing:0.053933px;}
.wsa_c01191{word-spacing:0.064416px;}
.ws8_c01191{word-spacing:0.070416px;}
.wsb_c01191{word-spacing:0.100217px;}
.ws2_c01191{word-spacing:0.175997px;}
.ws3_c01191{word-spacing:0.213446px;}
.ws9_c01191{word-spacing:0.219446px;}
._0_c01191{width:1.047451px;}
._1_c01191{width:53.635025px;}
.fc5_c01191{color:rgb(0,0,207);}
.fc4_c01191{color:rgb(143,89,3);}
.fc3_c01191{color:rgb(79,153,5);}
.fc2_c01191{color:rgb(207,92,0);}
.fc1_c01191{color:rgb(0,0,0);}
.fc0_c01191{color:rgb(33,74,135);}
.fs0_c01191{font-size:43.999200px;}
.fs1_c01191{font-size:59.775600px;}
.y0_c01191{bottom:0.000000px;}
.y39_c01191{bottom:44.250000px;}
.y38_c01191{bottom:91.369500px;}
.y37_c01191{bottom:107.808000px;}
.y36_c01191{bottom:124.246500px;}
.y35_c01191{bottom:140.685000px;}
.y34_c01191{bottom:157.123500px;}
.y33_c01191{bottom:173.562000px;}
.y32_c01191{bottom:190.000500px;}
.y31_c01191{bottom:206.437500px;}
.y30_c01191{bottom:222.876000px;}
.y2f_c01191{bottom:239.314500px;}
.y2e_c01191{bottom:255.753000px;}
.y2d_c01191{bottom:272.191500px;}
.y2c_c01191{bottom:288.630000px;}
.y2b_c01191{bottom:305.068500px;}
.y2a_c01191{bottom:321.507000px;}
.y29_c01191{bottom:337.945500px;}
.y28_c01191{bottom:354.384000px;}
.y27_c01191{bottom:370.822500px;}
.y26_c01191{bottom:403.698000px;}
.y25_c01191{bottom:420.136500px;}
.y24_c01191{bottom:436.575000px;}
.y23_c01191{bottom:453.013500px;}
.y22_c01191{bottom:469.452000px;}
.y21_c01191{bottom:485.890500px;}
.y20_c01191{bottom:518.767500px;}
.y1f_c01191{bottom:535.206000px;}
.y1e_c01191{bottom:551.643000px;}
.y1d_c01191{bottom:568.081500px;}
.y1c_c01191{bottom:600.958500px;}
.y1b_c01191{bottom:617.397000px;}
.y1a_c01191{bottom:633.835500px;}
.y19_c01191{bottom:650.274000px;}
.y18_c01191{bottom:683.151000px;}
.y17_c01191{bottom:699.589500px;}
.y16_c01191{bottom:716.028000px;}
.y15_c01191{bottom:732.465000px;}
.y14_c01191{bottom:748.903500px;}
.y13_c01191{bottom:765.342000px;}
.y12_c01191{bottom:781.780500px;}
.y11_c01191{bottom:814.657500px;}
.y10_c01191{bottom:831.096000px;}
.yf_c01191{bottom:847.534500px;}
.ye_c01191{bottom:880.411500px;}
.yd_c01191{bottom:896.848500px;}
.yc_c01191{bottom:946.164000px;}
.yb_c01191{bottom:962.602500px;}
.ya_c01191{bottom:995.479500px;}
.y9_c01191{bottom:1011.918000px;}
.y8_c01191{bottom:1028.356500px;}
.y7_c01191{bottom:1044.795000px;}
.y6_c01191{bottom:1077.670500px;}
.y5_c01191{bottom:1094.109000px;}
.y4_c01191{bottom:1110.547500px;}
.y3_c01191{bottom:1126.986000px;}
.y2_c01191{bottom:1143.424500px;}
.y1_c01191{bottom:1159.863000px;}
.h3_c01191{height:35.190766px;}
.h2_c01191{height:36.007158px;}
.h4_c01191{height:52.332837px;}
.h0_c01191{height:1262.835000px;}
.h1_c01191{height:1263.000000px;}
.w0_c01191{width:892.920000px;}
.w1_c01191{width:893.250000px;}
.x0_c01191{left:0.000000px;}
.x1_c01191{left:137.122500px;}
.x2_c01191{left:143.770500px;}
.x5_c01191{left:170.359500px;}
.x4_c01191{left:177.007500px;}
.x3_c01191{left:203.596500px;}
.x6_c01191{left:210.243000px;}
.x7_c01191{left:435.249000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls4_c01191{letter-spacing:0.000000pt;}
.ls1_c01191{letter-spacing:0.078221pt;}
.ls2_c01191{letter-spacing:0.087539pt;}
.ls0_c01191{letter-spacing:0.092873pt;}
.ls3_c01191{letter-spacing:23.724873pt;}
.ws1_c01191{word-spacing:-23.622682pt;}
.ws0_c01191{word-spacing:-23.544461pt;}
.ws5_c01191{word-spacing:0.000000pt;}
.ws7_c01191{word-spacing:0.032800pt;}
.ws4_c01191{word-spacing:0.039110pt;}
.ws6_c01191{word-spacing:0.047940pt;}
.wsa_c01191{word-spacing:0.057259pt;}
.ws8_c01191{word-spacing:0.062592pt;}
.wsb_c01191{word-spacing:0.089082pt;}
.ws2_c01191{word-spacing:0.156442pt;}
.ws3_c01191{word-spacing:0.189730pt;}
.ws9_c01191{word-spacing:0.195063pt;}
._0_c01191{width:0.931068pt;}
._1_c01191{width:47.675578pt;}
.fs0_c01191{font-size:39.110400pt;}
.fs1_c01191{font-size:53.133867pt;}
.y0_c01191{bottom:0.000000pt;}
.y39_c01191{bottom:39.333333pt;}
.y38_c01191{bottom:81.217333pt;}
.y37_c01191{bottom:95.829333pt;}
.y36_c01191{bottom:110.441333pt;}
.y35_c01191{bottom:125.053333pt;}
.y34_c01191{bottom:139.665333pt;}
.y33_c01191{bottom:154.277333pt;}
.y32_c01191{bottom:168.889333pt;}
.y31_c01191{bottom:183.500000pt;}
.y30_c01191{bottom:198.112000pt;}
.y2f_c01191{bottom:212.724000pt;}
.y2e_c01191{bottom:227.336000pt;}
.y2d_c01191{bottom:241.948000pt;}
.y2c_c01191{bottom:256.560000pt;}
.y2b_c01191{bottom:271.172000pt;}
.y2a_c01191{bottom:285.784000pt;}
.y29_c01191{bottom:300.396000pt;}
.y28_c01191{bottom:315.008000pt;}
.y27_c01191{bottom:329.620000pt;}
.y26_c01191{bottom:358.842667pt;}
.y25_c01191{bottom:373.454667pt;}
.y24_c01191{bottom:388.066667pt;}
.y23_c01191{bottom:402.678667pt;}
.y22_c01191{bottom:417.290667pt;}
.y21_c01191{bottom:431.902667pt;}
.y20_c01191{bottom:461.126667pt;}
.y1f_c01191{bottom:475.738667pt;}
.y1e_c01191{bottom:490.349333pt;}
.y1d_c01191{bottom:504.961333pt;}
.y1c_c01191{bottom:534.185333pt;}
.y1b_c01191{bottom:548.797333pt;}
.y1a_c01191{bottom:563.409333pt;}
.y19_c01191{bottom:578.021333pt;}
.y18_c01191{bottom:607.245333pt;}
.y17_c01191{bottom:621.857333pt;}
.y16_c01191{bottom:636.469333pt;}
.y15_c01191{bottom:651.080000pt;}
.y14_c01191{bottom:665.692000pt;}
.y13_c01191{bottom:680.304000pt;}
.y12_c01191{bottom:694.916000pt;}
.y11_c01191{bottom:724.140000pt;}
.y10_c01191{bottom:738.752000pt;}
.yf_c01191{bottom:753.364000pt;}
.ye_c01191{bottom:782.588000pt;}
.yd_c01191{bottom:797.198667pt;}
.yc_c01191{bottom:841.034667pt;}
.yb_c01191{bottom:855.646667pt;}
.ya_c01191{bottom:884.870667pt;}
.y9_c01191{bottom:899.482667pt;}
.y8_c01191{bottom:914.094667pt;}
.y7_c01191{bottom:928.706667pt;}
.y6_c01191{bottom:957.929333pt;}
.y5_c01191{bottom:972.541333pt;}
.y4_c01191{bottom:987.153333pt;}
.y3_c01191{bottom:1001.765333pt;}
.y2_c01191{bottom:1016.377333pt;}
.y1_c01191{bottom:1030.989333pt;}
.h3_c01191{height:31.280681pt;}
.h2_c01191{height:32.006363pt;}
.h4_c01191{height:46.518078pt;}
.h0_c01191{height:1122.520000pt;}
.h1_c01191{height:1122.666667pt;}
.w0_c01191{width:793.706667pt;}
.w1_c01191{width:794.000000pt;}
.x0_c01191{left:0.000000pt;}
.x1_c01191{left:121.886667pt;}
.x2_c01191{left:127.796000pt;}
.x5_c01191{left:151.430667pt;}
.x4_c01191{left:157.340000pt;}
.x3_c01191{left:180.974667pt;}
.x6_c01191{left:186.882667pt;}
.x7_c01191{left:386.888000pt;}
}





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

.ir_c01192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01192;src:url('chunks/assets/font_f79a26bd8d30cecf252fdf93.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01192;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01192;src:url('chunks/assets/font_43f31bd7769242398829cee2.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.ls4_c01192{letter-spacing:0.000000px;}
.ls0_c01192{letter-spacing:0.087998px;}
.ls2_c01192{letter-spacing:0.098482px;}
.ls1_c01192{letter-spacing:0.104482px;}
.ls3_c01192{letter-spacing:0.140482px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-26.575517px;}
.ws3_c01192{word-spacing:-26.487518px;}
.ws4_c01192{word-spacing:0.000000px;}
.ws1_c01192{word-spacing:0.043999px;}
.ws2_c01192{word-spacing:0.053933px;}
.ws5_c01192{word-spacing:0.056767px;}
.ws6_c01192{word-spacing:0.213446px;}
._0_c01192{width:1.068835px;}
.fc5_c01192{color:rgb(143,89,3);}
.fc4_c01192{color:rgb(79,153,5);}
.fc3_c01192{color:rgb(0,0,207);}
.fc2_c01192{color:rgb(207,92,0);}
.fc1_c01192{color:rgb(0,0,0);}
.fc0_c01192{color:rgb(33,74,135);}
.fs0_c01192{font-size:43.999200px;}
.fs1_c01192{font-size:59.775600px;}
.y0_c01192{bottom:0.000000px;}
.y2d_c01192{bottom:44.250000px;}
.y2c_c01192{bottom:403.698000px;}
.y2b_c01192{bottom:420.136500px;}
.y2a_c01192{bottom:436.575000px;}
.y29_c01192{bottom:453.013500px;}
.y28_c01192{bottom:469.452000px;}
.y27_c01192{bottom:485.890500px;}
.y26_c01192{bottom:502.329000px;}
.y25_c01192{bottom:518.767500px;}
.y24_c01192{bottom:535.206000px;}
.y23_c01192{bottom:551.643000px;}
.y22_c01192{bottom:568.081500px;}
.y21_c01192{bottom:600.958500px;}
.y20_c01192{bottom:617.397000px;}
.y1f_c01192{bottom:633.835500px;}
.y1e_c01192{bottom:666.712500px;}
.y1d_c01192{bottom:683.151000px;}
.y1c_c01192{bottom:699.589500px;}
.y1b_c01192{bottom:716.028000px;}
.y1a_c01192{bottom:732.465000px;}
.y19_c01192{bottom:748.903500px;}
.y18_c01192{bottom:765.342000px;}
.y17_c01192{bottom:781.780500px;}
.y16_c01192{bottom:798.219000px;}
.y15_c01192{bottom:814.657500px;}
.y14_c01192{bottom:831.096000px;}
.y13_c01192{bottom:847.534500px;}
.y12_c01192{bottom:863.973000px;}
.y11_c01192{bottom:880.411500px;}
.y10_c01192{bottom:896.848500px;}
.yf_c01192{bottom:913.287000px;}
.ye_c01192{bottom:929.725500px;}
.yd_c01192{bottom:946.164000px;}
.yc_c01192{bottom:962.602500px;}
.yb_c01192{bottom:979.041000px;}
.ya_c01192{bottom:995.479500px;}
.y9_c01192{bottom:1011.918000px;}
.y8_c01192{bottom:1028.356500px;}
.y7_c01192{bottom:1044.795000px;}
.y6_c01192{bottom:1061.232000px;}
.y5_c01192{bottom:1077.670500px;}
.y4_c01192{bottom:1110.547500px;}
.y3_c01192{bottom:1126.986000px;}
.y2_c01192{bottom:1143.424500px;}
.y1_c01192{bottom:1159.863000px;}
.h3_c01192{height:35.190766px;}
.h2_c01192{height:36.007158px;}
.h4_c01192{height:52.332837px;}
.h0_c01192{height:1262.835000px;}
.h1_c01192{height:1263.000000px;}
.w0_c01192{width:892.920000px;}
.w1_c01192{width:893.250000px;}
.x0_c01192{left:0.000000px;}
.x3_c01192{left:137.122500px;}
.x4_c01192{left:143.770500px;}
.x7_c01192{left:177.007500px;}
.x1_c01192{left:230.185500px;}
.x5_c01192{left:243.480000px;}
.x2_c01192{left:256.774500px;}
.x6_c01192{left:276.715500px;}
.x8_c01192{left:435.249000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls4_c01192{letter-spacing:0.000000pt;}
.ls0_c01192{letter-spacing:0.078221pt;}
.ls2_c01192{letter-spacing:0.087539pt;}
.ls1_c01192{letter-spacing:0.092873pt;}
.ls3_c01192{letter-spacing:0.124873pt;}
.ws0_c01192{word-spacing:-23.622682pt;}
.ws3_c01192{word-spacing:-23.544461pt;}
.ws4_c01192{word-spacing:0.000000pt;}
.ws1_c01192{word-spacing:0.039110pt;}
.ws2_c01192{word-spacing:0.047940pt;}
.ws5_c01192{word-spacing:0.050460pt;}
.ws6_c01192{word-spacing:0.189730pt;}
._0_c01192{width:0.950076pt;}
.fs0_c01192{font-size:39.110400pt;}
.fs1_c01192{font-size:53.133867pt;}
.y0_c01192{bottom:0.000000pt;}
.y2d_c01192{bottom:39.333333pt;}
.y2c_c01192{bottom:358.842667pt;}
.y2b_c01192{bottom:373.454667pt;}
.y2a_c01192{bottom:388.066667pt;}
.y29_c01192{bottom:402.678667pt;}
.y28_c01192{bottom:417.290667pt;}
.y27_c01192{bottom:431.902667pt;}
.y26_c01192{bottom:446.514667pt;}
.y25_c01192{bottom:461.126667pt;}
.y24_c01192{bottom:475.738667pt;}
.y23_c01192{bottom:490.349333pt;}
.y22_c01192{bottom:504.961333pt;}
.y21_c01192{bottom:534.185333pt;}
.y20_c01192{bottom:548.797333pt;}
.y1f_c01192{bottom:563.409333pt;}
.y1e_c01192{bottom:592.633333pt;}
.y1d_c01192{bottom:607.245333pt;}
.y1c_c01192{bottom:621.857333pt;}
.y1b_c01192{bottom:636.469333pt;}
.y1a_c01192{bottom:651.080000pt;}
.y19_c01192{bottom:665.692000pt;}
.y18_c01192{bottom:680.304000pt;}
.y17_c01192{bottom:694.916000pt;}
.y16_c01192{bottom:709.528000pt;}
.y15_c01192{bottom:724.140000pt;}
.y14_c01192{bottom:738.752000pt;}
.y13_c01192{bottom:753.364000pt;}
.y12_c01192{bottom:767.976000pt;}
.y11_c01192{bottom:782.588000pt;}
.y10_c01192{bottom:797.198667pt;}
.yf_c01192{bottom:811.810667pt;}
.ye_c01192{bottom:826.422667pt;}
.yd_c01192{bottom:841.034667pt;}
.yc_c01192{bottom:855.646667pt;}
.yb_c01192{bottom:870.258667pt;}
.ya_c01192{bottom:884.870667pt;}
.y9_c01192{bottom:899.482667pt;}
.y8_c01192{bottom:914.094667pt;}
.y7_c01192{bottom:928.706667pt;}
.y6_c01192{bottom:943.317333pt;}
.y5_c01192{bottom:957.929333pt;}
.y4_c01192{bottom:987.153333pt;}
.y3_c01192{bottom:1001.765333pt;}
.y2_c01192{bottom:1016.377333pt;}
.y1_c01192{bottom:1030.989333pt;}
.h3_c01192{height:31.280681pt;}
.h2_c01192{height:32.006363pt;}
.h4_c01192{height:46.518078pt;}
.h0_c01192{height:1122.520000pt;}
.h1_c01192{height:1122.666667pt;}
.w0_c01192{width:793.706667pt;}
.w1_c01192{width:794.000000pt;}
.x0_c01192{left:0.000000pt;}
.x3_c01192{left:121.886667pt;}
.x4_c01192{left:127.796000pt;}
.x7_c01192{left:157.340000pt;}
.x1_c01192{left:204.609333pt;}
.x5_c01192{left:216.426667pt;}
.x2_c01192{left:228.244000pt;}
.x6_c01192{left:245.969333pt;}
.x8_c01192{left:386.888000pt;}
}





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

.ir_c01193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_d115ecdb657e3ef1000def69.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01193;src:url('chunks/assets/font_edd60e8e77d8ff1f3ae86b35.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01193;src:url('chunks/assets/font_1f1d33c19dfa8ade037a17d7.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01193;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01193;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01193{font-family:ff5_c01193;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01193{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.ls3_c01193{letter-spacing:0.000000px;}
.ls0_c01193{letter-spacing:0.087998px;}
.ls2_c01193{letter-spacing:0.098482px;}
.ls1_c01193{letter-spacing:0.104482px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01193{word-spacing:-33.713438px;}
.ws2_c01193{word-spacing:-26.575517px;}
.ws10_c01193{word-spacing:-26.487518px;}
.ws5_c01193{word-spacing:-22.654952px;}
.wsb_c01193{word-spacing:-21.553319px;}
.wsa_c01193{word-spacing:-21.519216px;}
.ws4_c01193{word-spacing:-18.889090px;}
.ws7_c01193{word-spacing:-18.769538px;}
.ws9_c01193{word-spacing:-16.019861px;}
.ws6_c01193{word-spacing:-14.943900px;}
.wsc_c01193{word-spacing:-14.107042px;}
.wsd_c01193{word-spacing:-12.074671px;}
.ws1_c01193{word-spacing:-9.988424px;}
.ws3_c01193{word-spacing:-9.987499px;}
.ws8_c01193{word-spacing:-4.536144px;}
.ws14_c01193{word-spacing:0.000000px;}
.ws11_c01193{word-spacing:0.043999px;}
.ws17_c01193{word-spacing:0.056767px;}
.ws15_c01193{word-spacing:0.073250px;}
.ws16_c01193{word-spacing:0.083734px;}
.wsf_c01193{word-spacing:0.175997px;}
.ws18_c01193{word-spacing:0.202963px;}
.ws12_c01193{word-spacing:0.213446px;}
.ws13_c01193{word-spacing:0.219446px;}
.ws0_c01193{word-spacing:43.038600px;}
._2_c01193{margin-left:-9.554569px;}
._1_c01193{margin-left:-6.369713px;}
._6_c01193{margin-left:-3.825638px;}
._0_c01193{margin-left:-1.549390px;}
._7_c01193{width:1.005737px;}
._3_c01193{width:18.043006px;}
._4_c01193{width:19.930500px;}
._5_c01193{width:40.109428px;}
._9_c01193{width:53.283031px;}
._8_c01193{width:79.858548px;}
._a_c01193{width:133.452408px;}
.fc6_c01193{color:rgb(0,0,207);}
.fc5_c01193{color:rgb(79,153,5);}
.fc3_c01193{color:rgb(33,74,135);}
.fc2_c01193{color:rgb(143,89,3);}
.fc4_c01193{color:rgb(207,92,0);}
.fc1_c01193{color:rgb(6,69,173);}
.fc0_c01193{color:rgb(0,0,0);}
.fs2_c01193{font-size:43.999200px;}
.fs1_c01193{font-size:59.775600px;}
.fs0_c01193{font-size:86.077200px;}
.y0_c01193{bottom:0.000000px;}
.y20_c01193{bottom:44.250000px;}
.y1f_c01193{bottom:86.982000px;}
.y1e_c01193{bottom:103.420500px;}
.y1d_c01193{bottom:119.859000px;}
.y1c_c01193{bottom:136.297500px;}
.y1b_c01193{bottom:152.736000px;}
.y1a_c01193{bottom:169.174500px;}
.y19_c01193{bottom:185.613000px;}
.y18_c01193{bottom:202.051500px;}
.y17_c01193{bottom:218.490000px;}
.y16_c01193{bottom:234.927000px;}
.y15_c01193{bottom:251.365500px;}
.y14_c01193{bottom:267.804000px;}
.y13_c01193{bottom:284.242500px;}
.y12_c01193{bottom:300.681000px;}
.y11_c01193{bottom:317.119500px;}
.y10_c01193{bottom:349.996500px;}
.yf_c01193{bottom:366.435000px;}
.ye_c01193{bottom:415.749000px;}
.yd_c01193{bottom:432.187500px;}
.yc_c01193{bottom:448.252500px;}
.yb_c01193{bottom:493.890000px;}
.ya_c01193{bottom:511.822500px;}
.y9_c01193{bottom:529.756500px;}
.y8_c01193{bottom:547.689000px;}
.y7_c01193{bottom:565.621500px;}
.y6_c01193{bottom:583.554000px;}
.y5_c01193{bottom:610.633500px;}
.y4_c01193{bottom:637.714500px;}
.y3_c01193{bottom:664.794000px;}
.y2_c01193{bottom:691.873500px;}
.y1_c01193{bottom:734.407500px;}
.h5_c01193{height:35.190766px;}
.h6_c01193{height:36.007158px;}
.h3_c01193{height:40.511979px;}
.h4_c01193{height:52.332837px;}
.h2_c01193{height:58.337477px;}
.h0_c01193{height:1262.835000px;}
.h1_c01193{height:1263.000000px;}
.w0_c01193{width:892.920000px;}
.w1_c01193{width:893.250000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:127.558500px;}
.x2_c01193{left:137.122500px;}
.x3_c01193{left:143.770500px;}
.x4_c01193{left:435.249000px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls3_c01193{letter-spacing:0.000000pt;}
.ls0_c01193{letter-spacing:0.078221pt;}
.ls2_c01193{letter-spacing:0.087539pt;}
.ls1_c01193{letter-spacing:0.092873pt;}
.wse_c01193{word-spacing:-29.967501pt;}
.ws2_c01193{word-spacing:-23.622682pt;}
.ws10_c01193{word-spacing:-23.544461pt;}
.ws5_c01193{word-spacing:-20.137735pt;}
.wsb_c01193{word-spacing:-19.158506pt;}
.wsa_c01193{word-spacing:-19.128192pt;}
.ws4_c01193{word-spacing:-16.790302pt;}
.ws7_c01193{word-spacing:-16.684034pt;}
.ws9_c01193{word-spacing:-14.239876pt;}
.ws6_c01193{word-spacing:-13.283467pt;}
.wsc_c01193{word-spacing:-12.539593pt;}
.wsd_c01193{word-spacing:-10.733041pt;}
.ws1_c01193{word-spacing:-8.878599pt;}
.ws3_c01193{word-spacing:-8.877777pt;}
.ws8_c01193{word-spacing:-4.032128pt;}
.ws14_c01193{word-spacing:0.000000pt;}
.ws11_c01193{word-spacing:0.039110pt;}
.ws17_c01193{word-spacing:0.050460pt;}
.ws15_c01193{word-spacing:0.065111pt;}
.ws16_c01193{word-spacing:0.074430pt;}
.wsf_c01193{word-spacing:0.156442pt;}
.ws18_c01193{word-spacing:0.180412pt;}
.ws12_c01193{word-spacing:0.189730pt;}
.ws13_c01193{word-spacing:0.195063pt;}
.ws0_c01193{word-spacing:38.256533pt;}
._2_c01193{margin-left:-8.492950pt;}
._1_c01193{margin-left:-5.661967pt;}
._6_c01193{margin-left:-3.400567pt;}
._0_c01193{margin-left:-1.377235pt;}
._7_c01193{width:0.893988pt;}
._3_c01193{width:16.038227pt;}
._4_c01193{width:17.716000pt;}
._5_c01193{width:35.652825pt;}
._9_c01193{width:47.362694pt;}
._8_c01193{width:70.985376pt;}
._a_c01193{width:118.624363pt;}
.fs2_c01193{font-size:39.110400pt;}
.fs1_c01193{font-size:53.133867pt;}
.fs0_c01193{font-size:76.513067pt;}
.y0_c01193{bottom:0.000000pt;}
.y20_c01193{bottom:39.333333pt;}
.y1f_c01193{bottom:77.317333pt;}
.y1e_c01193{bottom:91.929333pt;}
.y1d_c01193{bottom:106.541333pt;}
.y1c_c01193{bottom:121.153333pt;}
.y1b_c01193{bottom:135.765333pt;}
.y1a_c01193{bottom:150.377333pt;}
.y19_c01193{bottom:164.989333pt;}
.y18_c01193{bottom:179.601333pt;}
.y17_c01193{bottom:194.213333pt;}
.y16_c01193{bottom:208.824000pt;}
.y15_c01193{bottom:223.436000pt;}
.y14_c01193{bottom:238.048000pt;}
.y13_c01193{bottom:252.660000pt;}
.y12_c01193{bottom:267.272000pt;}
.y11_c01193{bottom:281.884000pt;}
.y10_c01193{bottom:311.108000pt;}
.yf_c01193{bottom:325.720000pt;}
.ye_c01193{bottom:369.554667pt;}
.yd_c01193{bottom:384.166667pt;}
.yc_c01193{bottom:398.446667pt;}
.yb_c01193{bottom:439.013333pt;}
.ya_c01193{bottom:454.953333pt;}
.y9_c01193{bottom:470.894667pt;}
.y8_c01193{bottom:486.834667pt;}
.y7_c01193{bottom:502.774667pt;}
.y6_c01193{bottom:518.714667pt;}
.y5_c01193{bottom:542.785333pt;}
.y4_c01193{bottom:566.857333pt;}
.y3_c01193{bottom:590.928000pt;}
.y2_c01193{bottom:614.998667pt;}
.y1_c01193{bottom:652.806667pt;}
.h5_c01193{height:31.280681pt;}
.h6_c01193{height:32.006363pt;}
.h3_c01193{height:36.010648pt;}
.h4_c01193{height:46.518078pt;}
.h2_c01193{height:51.855535pt;}
.h0_c01193{height:1122.520000pt;}
.h1_c01193{height:1122.666667pt;}
.w0_c01193{width:793.706667pt;}
.w1_c01193{width:794.000000pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:113.385333pt;}
.x2_c01193{left:121.886667pt;}
.x3_c01193{left:127.796000pt;}
.x4_c01193{left:386.888000pt;}
}





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

.ir_c01194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_3c92492a149294050baf4284.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01194;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01194;src:url('chunks/assets/font_b11ccc89ef55746d0e5db43a.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01194;src:url('chunks/assets/font_048fbc05e2363a73221fca3f.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01194;src:url('chunks/assets/font_4278bfced2bec6b24934d0cf.woff2')format("woff");}.ff5_c01194{font-family:ff5_c01194;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01194{vertical-align:0.000000px;}
.ls4_c01194{letter-spacing:0.000000px;}
.ls0_c01194{letter-spacing:0.087998px;}
.ls2_c01194{letter-spacing:0.098482px;}
.ls3_c01194{letter-spacing:0.104482px;}
.ls1_c01194{letter-spacing:26.690482px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01194{word-spacing:-26.575517px;}
.ws4_c01194{word-spacing:-26.487518px;}
.ws10_c01194{word-spacing:-21.553319px;}
.wsf_c01194{word-spacing:-21.519216px;}
.wsc_c01194{word-spacing:-18.769538px;}
.wse_c01194{word-spacing:-17.633802px;}
.wsa_c01194{word-spacing:-16.737168px;}
.wsb_c01194{word-spacing:-14.943900px;}
.ws11_c01194{word-spacing:-14.107042px;}
.ws9_c01194{word-spacing:-12.971305px;}
.ws7_c01194{word-spacing:-9.988424px;}
.ws8_c01194{word-spacing:-9.987499px;}
.wsd_c01194{word-spacing:-7.686144px;}
.ws3_c01194{word-spacing:0.000000px;}
.ws0_c01194{word-spacing:0.043999px;}
.ws5_c01194{word-spacing:0.213446px;}
.ws1_c01194{word-spacing:0.219446px;}
.ws6_c01194{word-spacing:43.038600px;}
._4_c01194{margin-left:-9.554569px;}
._3_c01194{margin-left:-6.369713px;}
._2_c01194{margin-left:-1.549390px;}
._1_c01194{width:1.090656px;}
._6_c01194{width:19.930500px;}
._5_c01194{width:24.047221px;}
._0_c01194{width:53.635025px;}
.fc5_c01194{color:rgb(79,153,5);}
.fc4_c01194{color:rgb(143,89,3);}
.fc3_c01194{color:rgb(0,0,0);}
.fc6_c01194{color:rgb(6,69,173);}
.fc2_c01194{color:rgb(207,92,0);}
.fc1_c01194{color:rgb(0,0,207);}
.fc0_c01194{color:rgb(33,74,135);}
.fs0_c01194{font-size:43.999200px;}
.fs2_c01194{font-size:59.775600px;}
.fs1_c01194{font-size:86.077200px;}
.y0_c01194{bottom:0.000000px;}
.y20_c01194{bottom:44.250000px;}
.y1f_c01194{bottom:82.051500px;}
.y1e_c01194{bottom:99.984000px;}
.y1d_c01194{bottom:117.916500px;}
.y1c_c01194{bottom:144.567000px;}
.y1b_c01194{bottom:171.219000px;}
.y1a_c01194{bottom:189.151500px;}
.y19_c01194{bottom:215.802000px;}
.y18_c01194{bottom:242.454000px;}
.y17_c01194{bottom:284.478000px;}
.y16_c01194{bottom:748.903500px;}
.y15_c01194{bottom:765.342000px;}
.y14_c01194{bottom:781.780500px;}
.y13_c01194{bottom:798.219000px;}
.y12_c01194{bottom:814.657500px;}
.y11_c01194{bottom:831.096000px;}
.y10_c01194{bottom:847.534500px;}
.yf_c01194{bottom:863.973000px;}
.ye_c01194{bottom:880.411500px;}
.yd_c01194{bottom:896.848500px;}
.yc_c01194{bottom:913.287000px;}
.yb_c01194{bottom:946.164000px;}
.ya_c01194{bottom:962.602500px;}
.y9_c01194{bottom:979.041000px;}
.y8_c01194{bottom:1011.918000px;}
.y7_c01194{bottom:1028.356500px;}
.y6_c01194{bottom:1044.795000px;}
.y5_c01194{bottom:1061.232000px;}
.y4_c01194{bottom:1077.670500px;}
.y3_c01194{bottom:1094.109000px;}
.y2_c01194{bottom:1110.547500px;}
.y1_c01194{bottom:1159.863000px;}
.h3_c01194{height:35.190766px;}
.h2_c01194{height:36.007158px;}
.h5_c01194{height:40.511979px;}
.h6_c01194{height:52.332837px;}
.h4_c01194{height:58.337477px;}
.h0_c01194{height:1262.835000px;}
.h1_c01194{height:1263.000000px;}
.w0_c01194{width:892.920000px;}
.w1_c01194{width:893.250000px;}
.x0_c01194{left:0.000000px;}
.x4_c01194{left:127.558500px;}
.x2_c01194{left:137.122500px;}
.x1_c01194{left:143.770500px;}
.x3_c01194{left:177.007500px;}
.x5_c01194{left:435.249000px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls4_c01194{letter-spacing:0.000000pt;}
.ls0_c01194{letter-spacing:0.078221pt;}
.ls2_c01194{letter-spacing:0.087539pt;}
.ls3_c01194{letter-spacing:0.092873pt;}
.ls1_c01194{letter-spacing:23.724873pt;}
.ws2_c01194{word-spacing:-23.622682pt;}
.ws4_c01194{word-spacing:-23.544461pt;}
.ws10_c01194{word-spacing:-19.158506pt;}
.wsf_c01194{word-spacing:-19.128192pt;}
.wsc_c01194{word-spacing:-16.684034pt;}
.wse_c01194{word-spacing:-15.674491pt;}
.wsa_c01194{word-spacing:-14.877483pt;}
.wsb_c01194{word-spacing:-13.283467pt;}
.ws11_c01194{word-spacing:-12.539593pt;}
.ws9_c01194{word-spacing:-11.530049pt;}
.ws7_c01194{word-spacing:-8.878599pt;}
.ws8_c01194{word-spacing:-8.877777pt;}
.wsd_c01194{word-spacing:-6.832128pt;}
.ws3_c01194{word-spacing:0.000000pt;}
.ws0_c01194{word-spacing:0.039110pt;}
.ws5_c01194{word-spacing:0.189730pt;}
.ws1_c01194{word-spacing:0.195063pt;}
.ws6_c01194{word-spacing:38.256533pt;}
._4_c01194{margin-left:-8.492950pt;}
._3_c01194{margin-left:-5.661967pt;}
._2_c01194{margin-left:-1.377235pt;}
._1_c01194{width:0.969472pt;}
._6_c01194{width:17.716000pt;}
._5_c01194{width:21.375308pt;}
._0_c01194{width:47.675578pt;}
.fs0_c01194{font-size:39.110400pt;}
.fs2_c01194{font-size:53.133867pt;}
.fs1_c01194{font-size:76.513067pt;}
.y0_c01194{bottom:0.000000pt;}
.y20_c01194{bottom:39.333333pt;}
.y1f_c01194{bottom:72.934667pt;}
.y1e_c01194{bottom:88.874667pt;}
.y1d_c01194{bottom:104.814667pt;}
.y1c_c01194{bottom:128.504000pt;}
.y1b_c01194{bottom:152.194667pt;}
.y1a_c01194{bottom:168.134667pt;}
.y19_c01194{bottom:191.824000pt;}
.y18_c01194{bottom:215.514667pt;}
.y17_c01194{bottom:252.869333pt;}
.y16_c01194{bottom:665.692000pt;}
.y15_c01194{bottom:680.304000pt;}
.y14_c01194{bottom:694.916000pt;}
.y13_c01194{bottom:709.528000pt;}
.y12_c01194{bottom:724.140000pt;}
.y11_c01194{bottom:738.752000pt;}
.y10_c01194{bottom:753.364000pt;}
.yf_c01194{bottom:767.976000pt;}
.ye_c01194{bottom:782.588000pt;}
.yd_c01194{bottom:797.198667pt;}
.yc_c01194{bottom:811.810667pt;}
.yb_c01194{bottom:841.034667pt;}
.ya_c01194{bottom:855.646667pt;}
.y9_c01194{bottom:870.258667pt;}
.y8_c01194{bottom:899.482667pt;}
.y7_c01194{bottom:914.094667pt;}
.y6_c01194{bottom:928.706667pt;}
.y5_c01194{bottom:943.317333pt;}
.y4_c01194{bottom:957.929333pt;}
.y3_c01194{bottom:972.541333pt;}
.y2_c01194{bottom:987.153333pt;}
.y1_c01194{bottom:1030.989333pt;}
.h3_c01194{height:31.280681pt;}
.h2_c01194{height:32.006363pt;}
.h5_c01194{height:36.010648pt;}
.h6_c01194{height:46.518078pt;}
.h4_c01194{height:51.855535pt;}
.h0_c01194{height:1122.520000pt;}
.h1_c01194{height:1122.666667pt;}
.w0_c01194{width:793.706667pt;}
.w1_c01194{width:794.000000pt;}
.x0_c01194{left:0.000000pt;}
.x4_c01194{left:113.385333pt;}
.x2_c01194{left:121.886667pt;}
.x1_c01194{left:127.796000pt;}
.x3_c01194{left:157.340000pt;}
.x5_c01194{left:386.888000pt;}
}





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

.ir_c01195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_c8f3b8c7ea706756e549f96c.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01195;src:url('chunks/assets/font_24335dba2dc43e8b2d400860.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01195;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01195;src:url('chunks/assets/font_d7bd01a49be936de103745b3.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls4_c01195{letter-spacing:0.000000px;}
.ls1_c01195{letter-spacing:0.087998px;}
.ls2_c01195{letter-spacing:0.098482px;}
.ls0_c01195{letter-spacing:0.104482px;}
.ls3_c01195{letter-spacing:26.690482px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01195{word-spacing:-33.713438px;}
.ws5_c01195{word-spacing:-26.575517px;}
.ws4_c01195{word-spacing:-26.487518px;}
.ws1_c01195{word-spacing:-18.769538px;}
.ws0_c01195{word-spacing:-12.074671px;}
.ws9_c01195{word-spacing:0.000000px;}
.ws6_c01195{word-spacing:0.043999px;}
.wsc_c01195{word-spacing:0.056767px;}
.wsa_c01195{word-spacing:0.073250px;}
.wsb_c01195{word-spacing:0.083734px;}
.ws3_c01195{word-spacing:0.175997px;}
.wsd_c01195{word-spacing:0.202963px;}
.ws7_c01195{word-spacing:0.213446px;}
.ws8_c01195{word-spacing:0.219446px;}
._1_c01195{margin-left:-3.825638px;}
._2_c01195{width:1.005737px;}
._0_c01195{width:40.109428px;}
._4_c01195{width:53.283031px;}
._3_c01195{width:79.858548px;}
._5_c01195{width:133.452408px;}
.fc5_c01195{color:rgb(0,0,207);}
.fc4_c01195{color:rgb(79,153,5);}
.fc3_c01195{color:rgb(207,92,0);}
.fc2_c01195{color:rgb(33,74,135);}
.fc1_c01195{color:rgb(143,89,3);}
.fc0_c01195{color:rgb(0,0,0);}
.fs1_c01195{font-size:43.999200px;}
.fs0_c01195{font-size:59.775600px;}
.y0_c01195{bottom:0.000000px;}
.y2e_c01195{bottom:44.250000px;}
.y2d_c01195{bottom:96.919500px;}
.y2c_c01195{bottom:113.358000px;}
.y2b_c01195{bottom:129.796500px;}
.y2a_c01195{bottom:146.235000px;}
.y29_c01195{bottom:162.673500px;}
.y28_c01195{bottom:179.112000px;}
.y27_c01195{bottom:195.550500px;}
.y26_c01195{bottom:211.989000px;}
.y25_c01195{bottom:228.427500px;}
.y24_c01195{bottom:244.866000px;}
.y23_c01195{bottom:261.304500px;}
.y22_c01195{bottom:294.180000px;}
.y21_c01195{bottom:310.618500px;}
.y20_c01195{bottom:327.057000px;}
.y1f_c01195{bottom:359.934000px;}
.y1e_c01195{bottom:376.372500px;}
.y1d_c01195{bottom:392.811000px;}
.y1c_c01195{bottom:409.249500px;}
.y1b_c01195{bottom:425.688000px;}
.y1a_c01195{bottom:442.125000px;}
.y19_c01195{bottom:458.563500px;}
.y18_c01195{bottom:507.879000px;}
.y17_c01195{bottom:524.317500px;}
.y16_c01195{bottom:540.756000px;}
.y15_c01195{bottom:557.194500px;}
.y14_c01195{bottom:573.633000px;}
.y13_c01195{bottom:590.071500px;}
.y12_c01195{bottom:606.508500px;}
.y11_c01195{bottom:622.947000px;}
.y10_c01195{bottom:639.385500px;}
.yf_c01195{bottom:655.824000px;}
.ye_c01195{bottom:672.262500px;}
.yd_c01195{bottom:688.701000px;}
.yc_c01195{bottom:705.139500px;}
.yb_c01195{bottom:721.578000px;}
.ya_c01195{bottom:738.016500px;}
.y9_c01195{bottom:754.455000px;}
.y8_c01195{bottom:787.330500px;}
.y7_c01195{bottom:803.769000px;}
.y6_c01195{bottom:853.084500px;}
.y5_c01195{bottom:869.523000px;}
.y4_c01195{bottom:885.588000px;}
.y3_c01195{bottom:1123.998000px;}
.y2_c01195{bottom:1141.930500px;}
.y1_c01195{bottom:1159.863000px;}
.h3_c01195{height:35.190766px;}
.h4_c01195{height:36.007158px;}
.h2_c01195{height:52.332837px;}
.h0_c01195{height:1262.835000px;}
.h1_c01195{height:1263.000000px;}
.w0_c01195{width:892.920000px;}
.w1_c01195{width:893.250000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:127.558500px;}
.x2_c01195{left:137.122500px;}
.x3_c01195{left:143.770500px;}
.x4_c01195{left:177.007500px;}
.x5_c01195{left:435.249000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls4_c01195{letter-spacing:0.000000pt;}
.ls1_c01195{letter-spacing:0.078221pt;}
.ls2_c01195{letter-spacing:0.087539pt;}
.ls0_c01195{letter-spacing:0.092873pt;}
.ls3_c01195{letter-spacing:23.724873pt;}
.ws2_c01195{word-spacing:-29.967501pt;}
.ws5_c01195{word-spacing:-23.622682pt;}
.ws4_c01195{word-spacing:-23.544461pt;}
.ws1_c01195{word-spacing:-16.684034pt;}
.ws0_c01195{word-spacing:-10.733041pt;}
.ws9_c01195{word-spacing:0.000000pt;}
.ws6_c01195{word-spacing:0.039110pt;}
.wsc_c01195{word-spacing:0.050460pt;}
.wsa_c01195{word-spacing:0.065111pt;}
.wsb_c01195{word-spacing:0.074430pt;}
.ws3_c01195{word-spacing:0.156442pt;}
.wsd_c01195{word-spacing:0.180412pt;}
.ws7_c01195{word-spacing:0.189730pt;}
.ws8_c01195{word-spacing:0.195063pt;}
._1_c01195{margin-left:-3.400567pt;}
._2_c01195{width:0.893988pt;}
._0_c01195{width:35.652825pt;}
._4_c01195{width:47.362694pt;}
._3_c01195{width:70.985376pt;}
._5_c01195{width:118.624363pt;}
.fs1_c01195{font-size:39.110400pt;}
.fs0_c01195{font-size:53.133867pt;}
.y0_c01195{bottom:0.000000pt;}
.y2e_c01195{bottom:39.333333pt;}
.y2d_c01195{bottom:86.150667pt;}
.y2c_c01195{bottom:100.762667pt;}
.y2b_c01195{bottom:115.374667pt;}
.y2a_c01195{bottom:129.986667pt;}
.y29_c01195{bottom:144.598667pt;}
.y28_c01195{bottom:159.210667pt;}
.y27_c01195{bottom:173.822667pt;}
.y26_c01195{bottom:188.434667pt;}
.y25_c01195{bottom:203.046667pt;}
.y24_c01195{bottom:217.658667pt;}
.y23_c01195{bottom:232.270667pt;}
.y22_c01195{bottom:261.493333pt;}
.y21_c01195{bottom:276.105333pt;}
.y20_c01195{bottom:290.717333pt;}
.y1f_c01195{bottom:319.941333pt;}
.y1e_c01195{bottom:334.553333pt;}
.y1d_c01195{bottom:349.165333pt;}
.y1c_c01195{bottom:363.777333pt;}
.y1b_c01195{bottom:378.389333pt;}
.y1a_c01195{bottom:393.000000pt;}
.y19_c01195{bottom:407.612000pt;}
.y18_c01195{bottom:451.448000pt;}
.y17_c01195{bottom:466.060000pt;}
.y16_c01195{bottom:480.672000pt;}
.y15_c01195{bottom:495.284000pt;}
.y14_c01195{bottom:509.896000pt;}
.y13_c01195{bottom:524.508000pt;}
.y12_c01195{bottom:539.118667pt;}
.y11_c01195{bottom:553.730667pt;}
.y10_c01195{bottom:568.342667pt;}
.yf_c01195{bottom:582.954667pt;}
.ye_c01195{bottom:597.566667pt;}
.yd_c01195{bottom:612.178667pt;}
.yc_c01195{bottom:626.790667pt;}
.yb_c01195{bottom:641.402667pt;}
.ya_c01195{bottom:656.014667pt;}
.y9_c01195{bottom:670.626667pt;}
.y8_c01195{bottom:699.849333pt;}
.y7_c01195{bottom:714.461333pt;}
.y6_c01195{bottom:758.297333pt;}
.y5_c01195{bottom:772.909333pt;}
.y4_c01195{bottom:787.189333pt;}
.y3_c01195{bottom:999.109333pt;}
.y2_c01195{bottom:1015.049333pt;}
.y1_c01195{bottom:1030.989333pt;}
.h3_c01195{height:31.280681pt;}
.h4_c01195{height:32.006363pt;}
.h2_c01195{height:46.518078pt;}
.h0_c01195{height:1122.520000pt;}
.h1_c01195{height:1122.666667pt;}
.w0_c01195{width:793.706667pt;}
.w1_c01195{width:794.000000pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:113.385333pt;}
.x2_c01195{left:121.886667pt;}
.x3_c01195{left:127.796000pt;}
.x4_c01195{left:157.340000pt;}
.x5_c01195{left:386.888000pt;}
}





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

.ir_c01196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_579a7ec0dab1635976511719.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01196;src:url('chunks/assets/font_f59c2028f285e24a05e1d8ac.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01196;src:url('chunks/assets/font_73c82bc01ada2229b0775910.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01196;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01196;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01196{font-family:ff5_c01196;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01196{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01196{vertical-align:0.000000px;}
.ls3_c01196{letter-spacing:0.000000px;}
.ls0_c01196{letter-spacing:0.087998px;}
.ls2_c01196{letter-spacing:0.098482px;}
.ls1_c01196{letter-spacing:0.104482px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01196{word-spacing:-33.713438px;}
.ws2_c01196{word-spacing:-26.575517px;}
.ws10_c01196{word-spacing:-26.487518px;}
.wsb_c01196{word-spacing:-21.553319px;}
.wsa_c01196{word-spacing:-21.519216px;}
.ws5_c01196{word-spacing:-19.367294px;}
.ws7_c01196{word-spacing:-18.769538px;}
.ws9_c01196{word-spacing:-17.633802px;}
.ws4_c01196{word-spacing:-15.541656px;}
.ws6_c01196{word-spacing:-14.943900px;}
.wsc_c01196{word-spacing:-14.107042px;}
.wsd_c01196{word-spacing:-12.074671px;}
.ws1_c01196{word-spacing:-9.988424px;}
.ws3_c01196{word-spacing:-9.987499px;}
.ws8_c01196{word-spacing:-7.686144px;}
.ws14_c01196{word-spacing:0.000000px;}
.ws11_c01196{word-spacing:0.043999px;}
.ws17_c01196{word-spacing:0.056767px;}
.ws15_c01196{word-spacing:0.073250px;}
.ws16_c01196{word-spacing:0.083734px;}
.wsf_c01196{word-spacing:0.175997px;}
.ws18_c01196{word-spacing:0.202963px;}
.ws12_c01196{word-spacing:0.213446px;}
.ws13_c01196{word-spacing:0.219446px;}
.ws0_c01196{word-spacing:43.038600px;}
._2_c01196{margin-left:-9.554569px;}
._1_c01196{margin-left:-6.369713px;}
._6_c01196{margin-left:-3.825638px;}
._0_c01196{margin-left:-1.549390px;}
._7_c01196{width:1.005737px;}
._3_c01196{width:19.681572px;}
._4_c01196{width:20.742133px;}
._5_c01196{width:40.109428px;}
._9_c01196{width:53.283031px;}
._8_c01196{width:79.858548px;}
._a_c01196{width:133.452408px;}
.fc6_c01196{color:rgb(0,0,207);}
.fc5_c01196{color:rgb(79,153,5);}
.fc3_c01196{color:rgb(33,74,135);}
.fc2_c01196{color:rgb(143,89,3);}
.fc4_c01196{color:rgb(207,92,0);}
.fc1_c01196{color:rgb(6,69,173);}
.fc0_c01196{color:rgb(0,0,0);}
.fs2_c01196{font-size:43.999200px;}
.fs1_c01196{font-size:59.775600px;}
.fs0_c01196{font-size:86.077200px;}
.y0_c01196{bottom:0.000000px;}
.y20_c01196{bottom:44.250000px;}
.y1f_c01196{bottom:86.982000px;}
.y1e_c01196{bottom:103.420500px;}
.y1d_c01196{bottom:119.859000px;}
.y1c_c01196{bottom:136.297500px;}
.y1b_c01196{bottom:152.736000px;}
.y1a_c01196{bottom:169.174500px;}
.y19_c01196{bottom:185.613000px;}
.y18_c01196{bottom:202.051500px;}
.y17_c01196{bottom:218.490000px;}
.y16_c01196{bottom:234.927000px;}
.y15_c01196{bottom:251.365500px;}
.y14_c01196{bottom:267.804000px;}
.y13_c01196{bottom:284.242500px;}
.y12_c01196{bottom:300.681000px;}
.y11_c01196{bottom:317.119500px;}
.y10_c01196{bottom:349.996500px;}
.yf_c01196{bottom:366.435000px;}
.ye_c01196{bottom:415.749000px;}
.yd_c01196{bottom:432.187500px;}
.yc_c01196{bottom:448.252500px;}
.yb_c01196{bottom:493.890000px;}
.ya_c01196{bottom:511.822500px;}
.y9_c01196{bottom:529.756500px;}
.y8_c01196{bottom:547.689000px;}
.y7_c01196{bottom:565.621500px;}
.y6_c01196{bottom:583.554000px;}
.y5_c01196{bottom:610.633500px;}
.y4_c01196{bottom:637.714500px;}
.y3_c01196{bottom:664.794000px;}
.y2_c01196{bottom:691.873500px;}
.y1_c01196{bottom:734.407500px;}
.h5_c01196{height:35.190766px;}
.h6_c01196{height:36.007158px;}
.h3_c01196{height:40.511979px;}
.h4_c01196{height:52.332837px;}
.h2_c01196{height:58.337477px;}
.h0_c01196{height:1262.835000px;}
.h1_c01196{height:1263.000000px;}
.w0_c01196{width:892.920000px;}
.w1_c01196{width:893.250000px;}
.x0_c01196{left:0.000000px;}
.x1_c01196{left:127.558500px;}
.x2_c01196{left:137.122500px;}
.x3_c01196{left:143.770500px;}
.x4_c01196{left:435.249000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls3_c01196{letter-spacing:0.000000pt;}
.ls0_c01196{letter-spacing:0.078221pt;}
.ls2_c01196{letter-spacing:0.087539pt;}
.ls1_c01196{letter-spacing:0.092873pt;}
.wse_c01196{word-spacing:-29.967501pt;}
.ws2_c01196{word-spacing:-23.622682pt;}
.ws10_c01196{word-spacing:-23.544461pt;}
.wsb_c01196{word-spacing:-19.158506pt;}
.wsa_c01196{word-spacing:-19.128192pt;}
.ws5_c01196{word-spacing:-17.215373pt;}
.ws7_c01196{word-spacing:-16.684034pt;}
.ws9_c01196{word-spacing:-15.674491pt;}
.ws4_c01196{word-spacing:-13.814805pt;}
.ws6_c01196{word-spacing:-13.283467pt;}
.wsc_c01196{word-spacing:-12.539593pt;}
.wsd_c01196{word-spacing:-10.733041pt;}
.ws1_c01196{word-spacing:-8.878599pt;}
.ws3_c01196{word-spacing:-8.877777pt;}
.ws8_c01196{word-spacing:-6.832128pt;}
.ws14_c01196{word-spacing:0.000000pt;}
.ws11_c01196{word-spacing:0.039110pt;}
.ws17_c01196{word-spacing:0.050460pt;}
.ws15_c01196{word-spacing:0.065111pt;}
.ws16_c01196{word-spacing:0.074430pt;}
.wsf_c01196{word-spacing:0.156442pt;}
.ws18_c01196{word-spacing:0.180412pt;}
.ws12_c01196{word-spacing:0.189730pt;}
.ws13_c01196{word-spacing:0.195063pt;}
.ws0_c01196{word-spacing:38.256533pt;}
._2_c01196{margin-left:-8.492950pt;}
._1_c01196{margin-left:-5.661967pt;}
._6_c01196{margin-left:-3.400567pt;}
._0_c01196{margin-left:-1.377235pt;}
._7_c01196{width:0.893988pt;}
._3_c01196{width:17.494731pt;}
._4_c01196{width:18.437452pt;}
._5_c01196{width:35.652825pt;}
._9_c01196{width:47.362694pt;}
._8_c01196{width:70.985376pt;}
._a_c01196{width:118.624363pt;}
.fs2_c01196{font-size:39.110400pt;}
.fs1_c01196{font-size:53.133867pt;}
.fs0_c01196{font-size:76.513067pt;}
.y0_c01196{bottom:0.000000pt;}
.y20_c01196{bottom:39.333333pt;}
.y1f_c01196{bottom:77.317333pt;}
.y1e_c01196{bottom:91.929333pt;}
.y1d_c01196{bottom:106.541333pt;}
.y1c_c01196{bottom:121.153333pt;}
.y1b_c01196{bottom:135.765333pt;}
.y1a_c01196{bottom:150.377333pt;}
.y19_c01196{bottom:164.989333pt;}
.y18_c01196{bottom:179.601333pt;}
.y17_c01196{bottom:194.213333pt;}
.y16_c01196{bottom:208.824000pt;}
.y15_c01196{bottom:223.436000pt;}
.y14_c01196{bottom:238.048000pt;}
.y13_c01196{bottom:252.660000pt;}
.y12_c01196{bottom:267.272000pt;}
.y11_c01196{bottom:281.884000pt;}
.y10_c01196{bottom:311.108000pt;}
.yf_c01196{bottom:325.720000pt;}
.ye_c01196{bottom:369.554667pt;}
.yd_c01196{bottom:384.166667pt;}
.yc_c01196{bottom:398.446667pt;}
.yb_c01196{bottom:439.013333pt;}
.ya_c01196{bottom:454.953333pt;}
.y9_c01196{bottom:470.894667pt;}
.y8_c01196{bottom:486.834667pt;}
.y7_c01196{bottom:502.774667pt;}
.y6_c01196{bottom:518.714667pt;}
.y5_c01196{bottom:542.785333pt;}
.y4_c01196{bottom:566.857333pt;}
.y3_c01196{bottom:590.928000pt;}
.y2_c01196{bottom:614.998667pt;}
.y1_c01196{bottom:652.806667pt;}
.h5_c01196{height:31.280681pt;}
.h6_c01196{height:32.006363pt;}
.h3_c01196{height:36.010648pt;}
.h4_c01196{height:46.518078pt;}
.h2_c01196{height:51.855535pt;}
.h0_c01196{height:1122.520000pt;}
.h1_c01196{height:1122.666667pt;}
.w0_c01196{width:793.706667pt;}
.w1_c01196{width:794.000000pt;}
.x0_c01196{left:0.000000pt;}
.x1_c01196{left:113.385333pt;}
.x2_c01196{left:121.886667pt;}
.x3_c01196{left:127.796000pt;}
.x4_c01196{left:386.888000pt;}
}





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

.ir_c01197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_e66db53af630555201e00963.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01197;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01197;src:url('chunks/assets/font_593c3eb4a65d912c1dc84b6f.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01197;src:url('chunks/assets/font_a409da83661a52452f342f9d.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01197;src:url('chunks/assets/font_9805e0faf924b2e588d1396e.woff2')format("woff");}.ff5_c01197{font-family:ff5_c01197;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01197{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls4_c01197{letter-spacing:0.000000px;}
.ls0_c01197{letter-spacing:0.087998px;}
.ls2_c01197{letter-spacing:0.098482px;}
.ls3_c01197{letter-spacing:0.104482px;}
.ls1_c01197{letter-spacing:26.690482px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01197{word-spacing:-26.575517px;}
.ws4_c01197{word-spacing:-26.487518px;}
.wsa_c01197{word-spacing:-21.578992px;}
.ws10_c01197{word-spacing:-21.553319px;}
.wsf_c01197{word-spacing:-21.519216px;}
.wse_c01197{word-spacing:-19.247743px;}
.wsc_c01197{word-spacing:-18.769538px;}
.ws9_c01197{word-spacing:-17.753353px;}
.wsb_c01197{word-spacing:-14.943900px;}
.ws11_c01197{word-spacing:-14.107042px;}
.ws12_c01197{word-spacing:-12.074671px;}
.wsd_c01197{word-spacing:-10.230144px;}
.ws7_c01197{word-spacing:-9.988424px;}
.ws8_c01197{word-spacing:-9.987499px;}
.ws3_c01197{word-spacing:0.000000px;}
.ws0_c01197{word-spacing:0.043999px;}
.ws5_c01197{word-spacing:0.213446px;}
.ws1_c01197{word-spacing:0.219446px;}
.ws6_c01197{word-spacing:43.038600px;}
._3_c01197{margin-left:-9.554569px;}
._2_c01197{margin-left:-6.369713px;}
._1_c01197{margin-left:-1.549390px;}
._0_c01197{width:1.101139px;}
._4_c01197{width:18.569269px;}
._5_c01197{width:19.930500px;}
._6_c01197{width:40.109428px;}
.fc5_c01197{color:rgb(79,153,5);}
.fc4_c01197{color:rgb(143,89,3);}
.fc3_c01197{color:rgb(0,0,0);}
.fc6_c01197{color:rgb(6,69,173);}
.fc2_c01197{color:rgb(207,92,0);}
.fc1_c01197{color:rgb(0,0,207);}
.fc0_c01197{color:rgb(33,74,135);}
.fs0_c01197{font-size:43.999200px;}
.fs2_c01197{font-size:59.775600px;}
.fs1_c01197{font-size:86.077200px;}
.y0_c01197{bottom:0.000000px;}
.y20_c01197{bottom:44.250000px;}
.y1f_c01197{bottom:82.051500px;}
.y1e_c01197{bottom:99.984000px;}
.y1d_c01197{bottom:117.916500px;}
.y1c_c01197{bottom:135.849000px;}
.y1b_c01197{bottom:162.501000px;}
.y1a_c01197{bottom:189.151500px;}
.y19_c01197{bottom:215.802000px;}
.y18_c01197{bottom:242.454000px;}
.y17_c01197{bottom:284.478000px;}
.y16_c01197{bottom:748.903500px;}
.y15_c01197{bottom:765.342000px;}
.y14_c01197{bottom:781.780500px;}
.y13_c01197{bottom:798.219000px;}
.y12_c01197{bottom:814.657500px;}
.y11_c01197{bottom:831.096000px;}
.y10_c01197{bottom:847.534500px;}
.yf_c01197{bottom:863.973000px;}
.ye_c01197{bottom:880.411500px;}
.yd_c01197{bottom:896.848500px;}
.yc_c01197{bottom:913.287000px;}
.yb_c01197{bottom:946.164000px;}
.ya_c01197{bottom:962.602500px;}
.y9_c01197{bottom:979.041000px;}
.y8_c01197{bottom:1011.918000px;}
.y7_c01197{bottom:1028.356500px;}
.y6_c01197{bottom:1044.795000px;}
.y5_c01197{bottom:1061.232000px;}
.y4_c01197{bottom:1077.670500px;}
.y3_c01197{bottom:1094.109000px;}
.y2_c01197{bottom:1110.547500px;}
.y1_c01197{bottom:1159.863000px;}
.h3_c01197{height:35.190766px;}
.h2_c01197{height:36.007158px;}
.h5_c01197{height:40.511979px;}
.h6_c01197{height:52.332837px;}
.h4_c01197{height:58.337477px;}
.h0_c01197{height:1262.835000px;}
.h1_c01197{height:1263.000000px;}
.w0_c01197{width:892.920000px;}
.w1_c01197{width:893.250000px;}
.x0_c01197{left:0.000000px;}
.x4_c01197{left:127.558500px;}
.x2_c01197{left:137.122500px;}
.x1_c01197{left:143.770500px;}
.x3_c01197{left:177.007500px;}
.x5_c01197{left:435.249000px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls4_c01197{letter-spacing:0.000000pt;}
.ls0_c01197{letter-spacing:0.078221pt;}
.ls2_c01197{letter-spacing:0.087539pt;}
.ls3_c01197{letter-spacing:0.092873pt;}
.ls1_c01197{letter-spacing:23.724873pt;}
.ws2_c01197{word-spacing:-23.622682pt;}
.ws4_c01197{word-spacing:-23.544461pt;}
.wsa_c01197{word-spacing:-19.181326pt;}
.ws10_c01197{word-spacing:-19.158506pt;}
.wsf_c01197{word-spacing:-19.128192pt;}
.wse_c01197{word-spacing:-17.109105pt;}
.wsc_c01197{word-spacing:-16.684034pt;}
.ws9_c01197{word-spacing:-15.780758pt;}
.wsb_c01197{word-spacing:-13.283467pt;}
.ws11_c01197{word-spacing:-12.539593pt;}
.ws12_c01197{word-spacing:-10.733041pt;}
.wsd_c01197{word-spacing:-9.093461pt;}
.ws7_c01197{word-spacing:-8.878599pt;}
.ws8_c01197{word-spacing:-8.877777pt;}
.ws3_c01197{word-spacing:0.000000pt;}
.ws0_c01197{word-spacing:0.039110pt;}
.ws5_c01197{word-spacing:0.189730pt;}
.ws1_c01197{word-spacing:0.195063pt;}
.ws6_c01197{word-spacing:38.256533pt;}
._3_c01197{margin-left:-8.492950pt;}
._2_c01197{margin-left:-5.661967pt;}
._1_c01197{margin-left:-1.377235pt;}
._0_c01197{width:0.978790pt;}
._4_c01197{width:16.506017pt;}
._5_c01197{width:17.716000pt;}
._6_c01197{width:35.652825pt;}
.fs0_c01197{font-size:39.110400pt;}
.fs2_c01197{font-size:53.133867pt;}
.fs1_c01197{font-size:76.513067pt;}
.y0_c01197{bottom:0.000000pt;}
.y20_c01197{bottom:39.333333pt;}
.y1f_c01197{bottom:72.934667pt;}
.y1e_c01197{bottom:88.874667pt;}
.y1d_c01197{bottom:104.814667pt;}
.y1c_c01197{bottom:120.754667pt;}
.y1b_c01197{bottom:144.445333pt;}
.y1a_c01197{bottom:168.134667pt;}
.y19_c01197{bottom:191.824000pt;}
.y18_c01197{bottom:215.514667pt;}
.y17_c01197{bottom:252.869333pt;}
.y16_c01197{bottom:665.692000pt;}
.y15_c01197{bottom:680.304000pt;}
.y14_c01197{bottom:694.916000pt;}
.y13_c01197{bottom:709.528000pt;}
.y12_c01197{bottom:724.140000pt;}
.y11_c01197{bottom:738.752000pt;}
.y10_c01197{bottom:753.364000pt;}
.yf_c01197{bottom:767.976000pt;}
.ye_c01197{bottom:782.588000pt;}
.yd_c01197{bottom:797.198667pt;}
.yc_c01197{bottom:811.810667pt;}
.yb_c01197{bottom:841.034667pt;}
.ya_c01197{bottom:855.646667pt;}
.y9_c01197{bottom:870.258667pt;}
.y8_c01197{bottom:899.482667pt;}
.y7_c01197{bottom:914.094667pt;}
.y6_c01197{bottom:928.706667pt;}
.y5_c01197{bottom:943.317333pt;}
.y4_c01197{bottom:957.929333pt;}
.y3_c01197{bottom:972.541333pt;}
.y2_c01197{bottom:987.153333pt;}
.y1_c01197{bottom:1030.989333pt;}
.h3_c01197{height:31.280681pt;}
.h2_c01197{height:32.006363pt;}
.h5_c01197{height:36.010648pt;}
.h6_c01197{height:46.518078pt;}
.h4_c01197{height:51.855535pt;}
.h0_c01197{height:1122.520000pt;}
.h1_c01197{height:1122.666667pt;}
.w0_c01197{width:793.706667pt;}
.w1_c01197{width:794.000000pt;}
.x0_c01197{left:0.000000pt;}
.x4_c01197{left:113.385333pt;}
.x2_c01197{left:121.886667pt;}
.x1_c01197{left:127.796000pt;}
.x3_c01197{left:157.340000pt;}
.x5_c01197{left:386.888000pt;}
}





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

.ir_c01198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_f1313235cf28c91fb4124102.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01198;src:url('chunks/assets/font_a73d0b5ecdbbc8a497f219b0.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01198;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01198;src:url('chunks/assets/font_13d5c97d6b8652a5b11a05c9.woff2')format("woff");}.ff4_c01198{font-family:ff4_c01198;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls4_c01198{letter-spacing:0.000000px;}
.ls1_c01198{letter-spacing:0.087998px;}
.ls2_c01198{letter-spacing:0.098482px;}
.ls0_c01198{letter-spacing:0.104482px;}
.ls3_c01198{letter-spacing:26.690482px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01198{word-spacing:-33.713438px;}
.ws4_c01198{word-spacing:-26.575517px;}
.ws3_c01198{word-spacing:-26.487518px;}
.ws0_c01198{word-spacing:-18.769538px;}
.ws8_c01198{word-spacing:0.000000px;}
.ws5_c01198{word-spacing:0.043999px;}
.wsb_c01198{word-spacing:0.056767px;}
.ws9_c01198{word-spacing:0.073250px;}
.wsa_c01198{word-spacing:0.083734px;}
.ws2_c01198{word-spacing:0.175997px;}
.wsc_c01198{word-spacing:0.202963px;}
.ws6_c01198{word-spacing:0.213446px;}
.ws7_c01198{word-spacing:0.219446px;}
._0_c01198{margin-left:-3.825638px;}
._1_c01198{width:1.005737px;}
._3_c01198{width:53.283031px;}
._2_c01198{width:79.858548px;}
._5_c01198{width:106.830058px;}
._4_c01198{width:133.452408px;}
.fc5_c01198{color:rgb(0,0,207);}
.fc4_c01198{color:rgb(79,153,5);}
.fc3_c01198{color:rgb(207,92,0);}
.fc2_c01198{color:rgb(33,74,135);}
.fc1_c01198{color:rgb(143,89,3);}
.fc0_c01198{color:rgb(0,0,0);}
.fs1_c01198{font-size:43.999200px;}
.fs0_c01198{font-size:59.775600px;}
.y0_c01198{bottom:0.000000px;}
.y2d_c01198{bottom:44.250000px;}
.y2c_c01198{bottom:96.919500px;}
.y2b_c01198{bottom:113.358000px;}
.y2a_c01198{bottom:129.796500px;}
.y29_c01198{bottom:146.235000px;}
.y28_c01198{bottom:162.673500px;}
.y27_c01198{bottom:179.112000px;}
.y26_c01198{bottom:195.550500px;}
.y25_c01198{bottom:211.989000px;}
.y24_c01198{bottom:228.427500px;}
.y23_c01198{bottom:244.866000px;}
.y22_c01198{bottom:261.304500px;}
.y21_c01198{bottom:294.180000px;}
.y20_c01198{bottom:310.618500px;}
.y1f_c01198{bottom:327.057000px;}
.y1e_c01198{bottom:359.934000px;}
.y1d_c01198{bottom:376.372500px;}
.y1c_c01198{bottom:392.811000px;}
.y1b_c01198{bottom:409.249500px;}
.y1a_c01198{bottom:425.688000px;}
.y19_c01198{bottom:442.125000px;}
.y18_c01198{bottom:458.563500px;}
.y17_c01198{bottom:507.879000px;}
.y16_c01198{bottom:524.317500px;}
.y15_c01198{bottom:540.756000px;}
.y14_c01198{bottom:557.194500px;}
.y13_c01198{bottom:573.633000px;}
.y12_c01198{bottom:590.071500px;}
.y11_c01198{bottom:606.508500px;}
.y10_c01198{bottom:622.947000px;}
.yf_c01198{bottom:639.385500px;}
.ye_c01198{bottom:655.824000px;}
.yd_c01198{bottom:672.262500px;}
.yc_c01198{bottom:688.701000px;}
.yb_c01198{bottom:705.139500px;}
.ya_c01198{bottom:721.578000px;}
.y9_c01198{bottom:738.016500px;}
.y8_c01198{bottom:754.455000px;}
.y7_c01198{bottom:787.330500px;}
.y6_c01198{bottom:803.769000px;}
.y5_c01198{bottom:853.084500px;}
.y4_c01198{bottom:869.523000px;}
.y3_c01198{bottom:885.588000px;}
.y2_c01198{bottom:1141.930500px;}
.y1_c01198{bottom:1159.863000px;}
.h3_c01198{height:35.190766px;}
.h4_c01198{height:36.007158px;}
.h2_c01198{height:52.332837px;}
.h0_c01198{height:1262.835000px;}
.h1_c01198{height:1263.000000px;}
.w0_c01198{width:892.920000px;}
.w1_c01198{width:893.250000px;}
.x0_c01198{left:0.000000px;}
.x1_c01198{left:127.558500px;}
.x2_c01198{left:137.122500px;}
.x3_c01198{left:143.770500px;}
.x4_c01198{left:177.007500px;}
.x5_c01198{left:435.249000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls4_c01198{letter-spacing:0.000000pt;}
.ls1_c01198{letter-spacing:0.078221pt;}
.ls2_c01198{letter-spacing:0.087539pt;}
.ls0_c01198{letter-spacing:0.092873pt;}
.ls3_c01198{letter-spacing:23.724873pt;}
.ws1_c01198{word-spacing:-29.967501pt;}
.ws4_c01198{word-spacing:-23.622682pt;}
.ws3_c01198{word-spacing:-23.544461pt;}
.ws0_c01198{word-spacing:-16.684034pt;}
.ws8_c01198{word-spacing:0.000000pt;}
.ws5_c01198{word-spacing:0.039110pt;}
.wsb_c01198{word-spacing:0.050460pt;}
.ws9_c01198{word-spacing:0.065111pt;}
.wsa_c01198{word-spacing:0.074430pt;}
.ws2_c01198{word-spacing:0.156442pt;}
.wsc_c01198{word-spacing:0.180412pt;}
.ws6_c01198{word-spacing:0.189730pt;}
.ws7_c01198{word-spacing:0.195063pt;}
._0_c01198{margin-left:-3.400567pt;}
._1_c01198{width:0.893988pt;}
._3_c01198{width:47.362694pt;}
._2_c01198{width:70.985376pt;}
._5_c01198{width:94.960051pt;}
._4_c01198{width:118.624363pt;}
.fs1_c01198{font-size:39.110400pt;}
.fs0_c01198{font-size:53.133867pt;}
.y0_c01198{bottom:0.000000pt;}
.y2d_c01198{bottom:39.333333pt;}
.y2c_c01198{bottom:86.150667pt;}
.y2b_c01198{bottom:100.762667pt;}
.y2a_c01198{bottom:115.374667pt;}
.y29_c01198{bottom:129.986667pt;}
.y28_c01198{bottom:144.598667pt;}
.y27_c01198{bottom:159.210667pt;}
.y26_c01198{bottom:173.822667pt;}
.y25_c01198{bottom:188.434667pt;}
.y24_c01198{bottom:203.046667pt;}
.y23_c01198{bottom:217.658667pt;}
.y22_c01198{bottom:232.270667pt;}
.y21_c01198{bottom:261.493333pt;}
.y20_c01198{bottom:276.105333pt;}
.y1f_c01198{bottom:290.717333pt;}
.y1e_c01198{bottom:319.941333pt;}
.y1d_c01198{bottom:334.553333pt;}
.y1c_c01198{bottom:349.165333pt;}
.y1b_c01198{bottom:363.777333pt;}
.y1a_c01198{bottom:378.389333pt;}
.y19_c01198{bottom:393.000000pt;}
.y18_c01198{bottom:407.612000pt;}
.y17_c01198{bottom:451.448000pt;}
.y16_c01198{bottom:466.060000pt;}
.y15_c01198{bottom:480.672000pt;}
.y14_c01198{bottom:495.284000pt;}
.y13_c01198{bottom:509.896000pt;}
.y12_c01198{bottom:524.508000pt;}
.y11_c01198{bottom:539.118667pt;}
.y10_c01198{bottom:553.730667pt;}
.yf_c01198{bottom:568.342667pt;}
.ye_c01198{bottom:582.954667pt;}
.yd_c01198{bottom:597.566667pt;}
.yc_c01198{bottom:612.178667pt;}
.yb_c01198{bottom:626.790667pt;}
.ya_c01198{bottom:641.402667pt;}
.y9_c01198{bottom:656.014667pt;}
.y8_c01198{bottom:670.626667pt;}
.y7_c01198{bottom:699.849333pt;}
.y6_c01198{bottom:714.461333pt;}
.y5_c01198{bottom:758.297333pt;}
.y4_c01198{bottom:772.909333pt;}
.y3_c01198{bottom:787.189333pt;}
.y2_c01198{bottom:1015.049333pt;}
.y1_c01198{bottom:1030.989333pt;}
.h3_c01198{height:31.280681pt;}
.h4_c01198{height:32.006363pt;}
.h2_c01198{height:46.518078pt;}
.h0_c01198{height:1122.520000pt;}
.h1_c01198{height:1122.666667pt;}
.w0_c01198{width:793.706667pt;}
.w1_c01198{width:794.000000pt;}
.x0_c01198{left:0.000000pt;}
.x1_c01198{left:113.385333pt;}
.x2_c01198{left:121.886667pt;}
.x3_c01198{left:127.796000pt;}
.x4_c01198{left:157.340000pt;}
.x5_c01198{left:386.888000pt;}
}





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

.ir_c01199:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_e276131661f731a8324e068b.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01199;src:url('chunks/assets/font_3023ad9791d9d75f17f85daa.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01199;src:url('chunks/assets/font_3b4d8c9c7773b7d5c03f9226.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01199;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01199;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01199{font-family:ff5_c01199;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.ls3_c01199{letter-spacing:0.000000px;}
.ls0_c01199{letter-spacing:0.087998px;}
.ls2_c01199{letter-spacing:0.098482px;}
.ls1_c01199{letter-spacing:0.104482px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01199{word-spacing:-26.575517px;}
.ws16_c01199{word-spacing:-26.487518px;}
.ws10_c01199{word-spacing:-19.606397px;}
.wsf_c01199{word-spacing:-18.829314px;}
.ws5_c01199{word-spacing:-18.769538px;}
.ws13_c01199{word-spacing:-18.530436px;}
.ws11_c01199{word-spacing:-18.410885px;}
.ws14_c01199{word-spacing:-17.813129px;}
.wsd_c01199{word-spacing:-17.275148px;}
.wsc_c01199{word-spacing:-17.215373px;}
.wse_c01199{word-spacing:-17.155597px;}
.ws8_c01199{word-spacing:-15.601432px;}
.ws4_c01199{word-spacing:-14.943900px;}
.ws9_c01199{word-spacing:-13.808164px;}
.ws7_c01199{word-spacing:-13.748388px;}
.wsa_c01199{word-spacing:-12.732203px;}
.wsb_c01199{word-spacing:-12.672427px;}
.ws12_c01199{word-spacing:-12.074671px;}
.ws1_c01199{word-spacing:-9.988424px;}
.ws3_c01199{word-spacing:-9.987499px;}
.ws1a_c01199{word-spacing:0.000000px;}
.ws6_c01199{word-spacing:0.017856px;}
.ws17_c01199{word-spacing:0.043999px;}
.ws15_c01199{word-spacing:0.175997px;}
.ws19_c01199{word-spacing:0.213446px;}
.ws18_c01199{word-spacing:0.219446px;}
.ws0_c01199{word-spacing:43.038600px;}
._1_c01199{margin-left:-6.369713px;}
._6_c01199{margin-left:-4.656358px;}
._4_c01199{margin-left:-2.998955px;}
._0_c01199{margin-left:-1.549390px;}
._a_c01199{width:1.005737px;}
._9_c01199{width:16.228422px;}
._7_c01199{width:17.505421px;}
._2_c01199{width:19.935816px;}
._5_c01199{width:21.220338px;}
._8_c01199{width:23.628312px;}
._3_c01199{width:29.529146px;}
.fc5_c01199{color:rgb(79,153,5);}
.fc3_c01199{color:rgb(33,74,135);}
.fc2_c01199{color:rgb(143,89,3);}
.fc4_c01199{color:rgb(207,92,0);}
.fc1_c01199{color:rgb(6,69,173);}
.fc0_c01199{color:rgb(0,0,0);}
.fs2_c01199{font-size:43.999200px;}
.fs1_c01199{font-size:59.775600px;}
.fs0_c01199{font-size:86.077200px;}
.y0_c01199{bottom:0.000000px;}
.y1d_c01199{bottom:44.250000px;}
.y1c_c01199{bottom:82.051500px;}
.y1b_c01199{bottom:98.490000px;}
.y1a_c01199{bottom:114.927000px;}
.y19_c01199{bottom:131.365500px;}
.y18_c01199{bottom:147.430500px;}
.y17_c01199{bottom:194.128500px;}
.y16_c01199{bottom:212.061000px;}
.y15_c01199{bottom:229.993500px;}
.y14_c01199{bottom:247.926000px;}
.y13_c01199{bottom:265.858500px;}
.y12_c01199{bottom:283.792500px;}
.y11_c01199{bottom:301.725000px;}
.y10_c01199{bottom:342.058500px;}
.yf_c01199{bottom:371.443500px;}
.ye_c01199{bottom:400.828500px;}
.yd_c01199{bottom:430.213500px;}
.yc_c01199{bottom:448.146000px;}
.yb_c01199{bottom:488.479500px;}
.ya_c01199{bottom:506.412000px;}
.y9_c01199{bottom:533.059500px;}
.y8_c01199{bottom:550.993500px;}
.y7_c01199{bottom:568.926000px;}
.y6_c01199{bottom:586.858500px;}
.y5_c01199{bottom:613.506000px;}
.y4_c01199{bottom:640.153500px;}
.y3_c01199{bottom:666.801000px;}
.y2_c01199{bottom:693.448500px;}
.y1_c01199{bottom:735.469500px;}
.h5_c01199{height:35.190766px;}
.h6_c01199{height:36.007158px;}
.h3_c01199{height:40.511979px;}
.h4_c01199{height:52.332837px;}
.h2_c01199{height:58.337477px;}
.h0_c01199{height:1262.835000px;}
.h1_c01199{height:1263.000000px;}
.w0_c01199{width:892.920000px;}
.w1_c01199{width:893.250000px;}
.x0_c01199{left:0.000000px;}
.x1_c01199{left:127.558500px;}
.x4_c01199{left:137.122500px;}
.x2_c01199{left:152.215500px;}
.x3_c01199{left:164.919000px;}
.x5_c01199{left:435.249000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls3_c01199{letter-spacing:0.000000pt;}
.ls0_c01199{letter-spacing:0.078221pt;}
.ls2_c01199{letter-spacing:0.087539pt;}
.ls1_c01199{letter-spacing:0.092873pt;}
.ws2_c01199{word-spacing:-23.622682pt;}
.ws16_c01199{word-spacing:-23.544461pt;}
.ws10_c01199{word-spacing:-17.427908pt;}
.wsf_c01199{word-spacing:-16.737168pt;}
.ws5_c01199{word-spacing:-16.684034pt;}
.ws13_c01199{word-spacing:-16.471499pt;}
.ws11_c01199{word-spacing:-16.365231pt;}
.ws14_c01199{word-spacing:-15.833892pt;}
.wsd_c01199{word-spacing:-15.355687pt;}
.wsc_c01199{word-spacing:-15.302554pt;}
.wse_c01199{word-spacing:-15.249420pt;}
.ws8_c01199{word-spacing:-13.867939pt;}
.ws4_c01199{word-spacing:-13.283467pt;}
.ws9_c01199{word-spacing:-12.273923pt;}
.ws7_c01199{word-spacing:-12.220789pt;}
.wsa_c01199{word-spacing:-11.317514pt;}
.wsb_c01199{word-spacing:-11.264380pt;}
.ws12_c01199{word-spacing:-10.733041pt;}
.ws1_c01199{word-spacing:-8.878599pt;}
.ws3_c01199{word-spacing:-8.877777pt;}
.ws1a_c01199{word-spacing:0.000000pt;}
.ws6_c01199{word-spacing:0.015872pt;}
.ws17_c01199{word-spacing:0.039110pt;}
.ws15_c01199{word-spacing:0.156442pt;}
.ws19_c01199{word-spacing:0.189730pt;}
.ws18_c01199{word-spacing:0.195063pt;}
.ws0_c01199{word-spacing:38.256533pt;}
._1_c01199{margin-left:-5.661967pt;}
._6_c01199{margin-left:-4.138985pt;}
._4_c01199{margin-left:-2.665738pt;}
._0_c01199{margin-left:-1.377235pt;}
._a_c01199{width:0.893988pt;}
._9_c01199{width:14.425264pt;}
._7_c01199{width:15.560374pt;}
._2_c01199{width:17.720725pt;}
._5_c01199{width:18.862523pt;}
._8_c01199{width:21.002944pt;}
._3_c01199{width:26.248130pt;}
.fs2_c01199{font-size:39.110400pt;}
.fs1_c01199{font-size:53.133867pt;}
.fs0_c01199{font-size:76.513067pt;}
.y0_c01199{bottom:0.000000pt;}
.y1d_c01199{bottom:39.333333pt;}
.y1c_c01199{bottom:72.934667pt;}
.y1b_c01199{bottom:87.546667pt;}
.y1a_c01199{bottom:102.157333pt;}
.y19_c01199{bottom:116.769333pt;}
.y18_c01199{bottom:131.049333pt;}
.y17_c01199{bottom:172.558667pt;}
.y16_c01199{bottom:188.498667pt;}
.y15_c01199{bottom:204.438667pt;}
.y14_c01199{bottom:220.378667pt;}
.y13_c01199{bottom:236.318667pt;}
.y12_c01199{bottom:252.260000pt;}
.y11_c01199{bottom:268.200000pt;}
.y10_c01199{bottom:304.052000pt;}
.yf_c01199{bottom:330.172000pt;}
.ye_c01199{bottom:356.292000pt;}
.yd_c01199{bottom:382.412000pt;}
.yc_c01199{bottom:398.352000pt;}
.yb_c01199{bottom:434.204000pt;}
.ya_c01199{bottom:450.144000pt;}
.y9_c01199{bottom:473.830667pt;}
.y8_c01199{bottom:489.772000pt;}
.y7_c01199{bottom:505.712000pt;}
.y6_c01199{bottom:521.652000pt;}
.y5_c01199{bottom:545.338667pt;}
.y4_c01199{bottom:569.025333pt;}
.y3_c01199{bottom:592.712000pt;}
.y2_c01199{bottom:616.398667pt;}
.y1_c01199{bottom:653.750667pt;}
.h5_c01199{height:31.280681pt;}
.h6_c01199{height:32.006363pt;}
.h3_c01199{height:36.010648pt;}
.h4_c01199{height:46.518078pt;}
.h2_c01199{height:51.855535pt;}
.h0_c01199{height:1122.520000pt;}
.h1_c01199{height:1122.666667pt;}
.w0_c01199{width:793.706667pt;}
.w1_c01199{width:794.000000pt;}
.x0_c01199{left:0.000000pt;}
.x1_c01199{left:113.385333pt;}
.x4_c01199{left:121.886667pt;}
.x2_c01199{left:135.302667pt;}
.x3_c01199{left:146.594667pt;}
.x5_c01199{left:386.888000pt;}
}





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

.ir_c01200:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01200;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01200;src:url('chunks/assets/font_87a3110a9de972a83bc84cee.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01200;src:url('chunks/assets/font_f1b316eec8150e561a59df1c.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls4_c01200{letter-spacing:0.000000px;}
.ls1_c01200{letter-spacing:0.087998px;}
.ls2_c01200{letter-spacing:0.098482px;}
.ls0_c01200{letter-spacing:0.104482px;}
.ls3_c01200{letter-spacing:26.690482px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01200{word-spacing:-26.575517px;}
.ws0_c01200{word-spacing:-26.487518px;}
.ws2_c01200{word-spacing:0.000000px;}
.ws7_c01200{word-spacing:0.036900px;}
.ws4_c01200{word-spacing:0.043999px;}
.ws6_c01200{word-spacing:0.053933px;}
.wsa_c01200{word-spacing:0.064416px;}
.ws8_c01200{word-spacing:0.070416px;}
.wsb_c01200{word-spacing:0.100217px;}
.ws5_c01200{word-spacing:0.175997px;}
.ws3_c01200{word-spacing:0.213446px;}
.ws9_c01200{word-spacing:0.219446px;}
._0_c01200{width:1.031604px;}
.fc5_c01200{color:rgb(0,0,207);}
.fc4_c01200{color:rgb(143,89,3);}
.fc3_c01200{color:rgb(79,153,5);}
.fc2_c01200{color:rgb(207,92,0);}
.fc1_c01200{color:rgb(0,0,0);}
.fc0_c01200{color:rgb(33,74,135);}
.fs0_c01200{font-size:43.999200px;}
.fs1_c01200{font-size:59.775600px;}
.y0_c01200{bottom:0.000000px;}
.y39_c01200{bottom:44.250000px;}
.y38_c01200{bottom:91.369500px;}
.y37_c01200{bottom:107.808000px;}
.y36_c01200{bottom:124.246500px;}
.y35_c01200{bottom:140.685000px;}
.y34_c01200{bottom:157.123500px;}
.y33_c01200{bottom:173.562000px;}
.y32_c01200{bottom:190.000500px;}
.y31_c01200{bottom:206.437500px;}
.y30_c01200{bottom:222.876000px;}
.y2f_c01200{bottom:239.314500px;}
.y2e_c01200{bottom:255.753000px;}
.y2d_c01200{bottom:272.191500px;}
.y2c_c01200{bottom:288.630000px;}
.y2b_c01200{bottom:305.068500px;}
.y2a_c01200{bottom:321.507000px;}
.y29_c01200{bottom:337.945500px;}
.y28_c01200{bottom:354.384000px;}
.y27_c01200{bottom:370.822500px;}
.y26_c01200{bottom:387.259500px;}
.y25_c01200{bottom:403.698000px;}
.y24_c01200{bottom:436.575000px;}
.y23_c01200{bottom:453.013500px;}
.y22_c01200{bottom:469.452000px;}
.y21_c01200{bottom:485.890500px;}
.y20_c01200{bottom:502.329000px;}
.y1f_c01200{bottom:518.767500px;}
.y1e_c01200{bottom:551.643000px;}
.y1d_c01200{bottom:568.081500px;}
.y1c_c01200{bottom:584.520000px;}
.y1b_c01200{bottom:600.958500px;}
.y1a_c01200{bottom:633.835500px;}
.y19_c01200{bottom:650.274000px;}
.y18_c01200{bottom:666.712500px;}
.y17_c01200{bottom:683.151000px;}
.y16_c01200{bottom:716.028000px;}
.y15_c01200{bottom:732.465000px;}
.y14_c01200{bottom:748.903500px;}
.y13_c01200{bottom:765.342000px;}
.y12_c01200{bottom:781.780500px;}
.y11_c01200{bottom:798.219000px;}
.y10_c01200{bottom:814.657500px;}
.yf_c01200{bottom:847.534500px;}
.ye_c01200{bottom:863.973000px;}
.yd_c01200{bottom:880.411500px;}
.yc_c01200{bottom:913.287000px;}
.yb_c01200{bottom:929.725500px;}
.ya_c01200{bottom:979.041000px;}
.y9_c01200{bottom:995.479500px;}
.y8_c01200{bottom:1028.356500px;}
.y7_c01200{bottom:1044.795000px;}
.y6_c01200{bottom:1061.232000px;}
.y5_c01200{bottom:1077.670500px;}
.y4_c01200{bottom:1110.547500px;}
.y3_c01200{bottom:1126.986000px;}
.y2_c01200{bottom:1143.424500px;}
.y1_c01200{bottom:1159.863000px;}
.h3_c01200{height:35.190766px;}
.h2_c01200{height:36.007158px;}
.h4_c01200{height:52.332837px;}
.h0_c01200{height:1262.835000px;}
.h1_c01200{height:1263.000000px;}
.w0_c01200{width:892.920000px;}
.w1_c01200{width:893.250000px;}
.x0_c01200{left:0.000000px;}
.x1_c01200{left:137.122500px;}
.x2_c01200{left:143.770500px;}
.x5_c01200{left:170.359500px;}
.x4_c01200{left:177.007500px;}
.x3_c01200{left:203.596500px;}
.x6_c01200{left:210.243000px;}
.x7_c01200{left:230.185500px;}
.x8_c01200{left:256.774500px;}
.x9_c01200{left:435.249000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls4_c01200{letter-spacing:0.000000pt;}
.ls1_c01200{letter-spacing:0.078221pt;}
.ls2_c01200{letter-spacing:0.087539pt;}
.ls0_c01200{letter-spacing:0.092873pt;}
.ls3_c01200{letter-spacing:23.724873pt;}
.ws1_c01200{word-spacing:-23.622682pt;}
.ws0_c01200{word-spacing:-23.544461pt;}
.ws2_c01200{word-spacing:0.000000pt;}
.ws7_c01200{word-spacing:0.032800pt;}
.ws4_c01200{word-spacing:0.039110pt;}
.ws6_c01200{word-spacing:0.047940pt;}
.wsa_c01200{word-spacing:0.057259pt;}
.ws8_c01200{word-spacing:0.062592pt;}
.wsb_c01200{word-spacing:0.089082pt;}
.ws5_c01200{word-spacing:0.156442pt;}
.ws3_c01200{word-spacing:0.189730pt;}
.ws9_c01200{word-spacing:0.195063pt;}
._0_c01200{width:0.916981pt;}
.fs0_c01200{font-size:39.110400pt;}
.fs1_c01200{font-size:53.133867pt;}
.y0_c01200{bottom:0.000000pt;}
.y39_c01200{bottom:39.333333pt;}
.y38_c01200{bottom:81.217333pt;}
.y37_c01200{bottom:95.829333pt;}
.y36_c01200{bottom:110.441333pt;}
.y35_c01200{bottom:125.053333pt;}
.y34_c01200{bottom:139.665333pt;}
.y33_c01200{bottom:154.277333pt;}
.y32_c01200{bottom:168.889333pt;}
.y31_c01200{bottom:183.500000pt;}
.y30_c01200{bottom:198.112000pt;}
.y2f_c01200{bottom:212.724000pt;}
.y2e_c01200{bottom:227.336000pt;}
.y2d_c01200{bottom:241.948000pt;}
.y2c_c01200{bottom:256.560000pt;}
.y2b_c01200{bottom:271.172000pt;}
.y2a_c01200{bottom:285.784000pt;}
.y29_c01200{bottom:300.396000pt;}
.y28_c01200{bottom:315.008000pt;}
.y27_c01200{bottom:329.620000pt;}
.y26_c01200{bottom:344.230667pt;}
.y25_c01200{bottom:358.842667pt;}
.y24_c01200{bottom:388.066667pt;}
.y23_c01200{bottom:402.678667pt;}
.y22_c01200{bottom:417.290667pt;}
.y21_c01200{bottom:431.902667pt;}
.y20_c01200{bottom:446.514667pt;}
.y1f_c01200{bottom:461.126667pt;}
.y1e_c01200{bottom:490.349333pt;}
.y1d_c01200{bottom:504.961333pt;}
.y1c_c01200{bottom:519.573333pt;}
.y1b_c01200{bottom:534.185333pt;}
.y1a_c01200{bottom:563.409333pt;}
.y19_c01200{bottom:578.021333pt;}
.y18_c01200{bottom:592.633333pt;}
.y17_c01200{bottom:607.245333pt;}
.y16_c01200{bottom:636.469333pt;}
.y15_c01200{bottom:651.080000pt;}
.y14_c01200{bottom:665.692000pt;}
.y13_c01200{bottom:680.304000pt;}
.y12_c01200{bottom:694.916000pt;}
.y11_c01200{bottom:709.528000pt;}
.y10_c01200{bottom:724.140000pt;}
.yf_c01200{bottom:753.364000pt;}
.ye_c01200{bottom:767.976000pt;}
.yd_c01200{bottom:782.588000pt;}
.yc_c01200{bottom:811.810667pt;}
.yb_c01200{bottom:826.422667pt;}
.ya_c01200{bottom:870.258667pt;}
.y9_c01200{bottom:884.870667pt;}
.y8_c01200{bottom:914.094667pt;}
.y7_c01200{bottom:928.706667pt;}
.y6_c01200{bottom:943.317333pt;}
.y5_c01200{bottom:957.929333pt;}
.y4_c01200{bottom:987.153333pt;}
.y3_c01200{bottom:1001.765333pt;}
.y2_c01200{bottom:1016.377333pt;}
.y1_c01200{bottom:1030.989333pt;}
.h3_c01200{height:31.280681pt;}
.h2_c01200{height:32.006363pt;}
.h4_c01200{height:46.518078pt;}
.h0_c01200{height:1122.520000pt;}
.h1_c01200{height:1122.666667pt;}
.w0_c01200{width:793.706667pt;}
.w1_c01200{width:794.000000pt;}
.x0_c01200{left:0.000000pt;}
.x1_c01200{left:121.886667pt;}
.x2_c01200{left:127.796000pt;}
.x5_c01200{left:151.430667pt;}
.x4_c01200{left:157.340000pt;}
.x3_c01200{left:180.974667pt;}
.x6_c01200{left:186.882667pt;}
.x7_c01200{left:204.609333pt;}
.x8_c01200{left:228.244000pt;}
.x9_c01200{left:386.888000pt;}
}





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

.ir_c01201:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_18392ca7f29997a6e528beec.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01201;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01201;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01201;src:url('chunks/assets/font_c593754661007acf6fe0da6a.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls5_c01201{letter-spacing:0.000000px;}
.ls0_c01201{letter-spacing:0.087998px;}
.ls1_c01201{letter-spacing:0.098482px;}
.ls4_c01201{letter-spacing:0.104482px;}
.ls2_c01201{letter-spacing:0.140482px;}
.ls3_c01201{letter-spacing:0.146482px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:-26.575517px;}
.ws2_c01201{word-spacing:-26.487518px;}
.ws4_c01201{word-spacing:0.000000px;}
.ws3_c01201{word-spacing:0.043999px;}
.ws1_c01201{word-spacing:0.053933px;}
.ws5_c01201{word-spacing:0.056767px;}
.ws6_c01201{word-spacing:0.213446px;}
._0_c01201{width:1.056286px;}
.fc5_c01201{color:rgb(0,0,207);}
.fc4_c01201{color:rgb(79,153,5);}
.fc3_c01201{color:rgb(33,74,135);}
.fc2_c01201{color:rgb(207,92,0);}
.fc1_c01201{color:rgb(143,89,3);}
.fc0_c01201{color:rgb(0,0,0);}
.fs0_c01201{font-size:43.999200px;}
.fs1_c01201{font-size:59.775600px;}
.y0_c01201{bottom:0.000000px;}
.y2b_c01201{bottom:44.250000px;}
.y2a_c01201{bottom:436.575000px;}
.y29_c01201{bottom:453.013500px;}
.y28_c01201{bottom:469.452000px;}
.y27_c01201{bottom:485.890500px;}
.y26_c01201{bottom:502.329000px;}
.y25_c01201{bottom:518.767500px;}
.y24_c01201{bottom:535.206000px;}
.y23_c01201{bottom:551.643000px;}
.y22_c01201{bottom:568.081500px;}
.y21_c01201{bottom:584.520000px;}
.y20_c01201{bottom:600.958500px;}
.y1f_c01201{bottom:633.835500px;}
.y1e_c01201{bottom:650.274000px;}
.y1d_c01201{bottom:666.712500px;}
.y1c_c01201{bottom:699.589500px;}
.y1b_c01201{bottom:716.028000px;}
.y1a_c01201{bottom:732.465000px;}
.y19_c01201{bottom:748.903500px;}
.y18_c01201{bottom:765.342000px;}
.y17_c01201{bottom:781.780500px;}
.y16_c01201{bottom:798.219000px;}
.y15_c01201{bottom:814.657500px;}
.y14_c01201{bottom:831.096000px;}
.y13_c01201{bottom:847.534500px;}
.y12_c01201{bottom:863.973000px;}
.y11_c01201{bottom:880.411500px;}
.y10_c01201{bottom:896.848500px;}
.yf_c01201{bottom:913.287000px;}
.ye_c01201{bottom:929.725500px;}
.yd_c01201{bottom:946.164000px;}
.yc_c01201{bottom:962.602500px;}
.yb_c01201{bottom:979.041000px;}
.ya_c01201{bottom:995.479500px;}
.y9_c01201{bottom:1011.918000px;}
.y8_c01201{bottom:1028.356500px;}
.y7_c01201{bottom:1044.795000px;}
.y6_c01201{bottom:1061.232000px;}
.y5_c01201{bottom:1077.670500px;}
.y4_c01201{bottom:1094.109000px;}
.y3_c01201{bottom:1110.547500px;}
.y2_c01201{bottom:1143.424500px;}
.y1_c01201{bottom:1159.863000px;}
.h3_c01201{height:35.190766px;}
.h2_c01201{height:36.007158px;}
.h4_c01201{height:52.332837px;}
.h0_c01201{height:1262.835000px;}
.h1_c01201{height:1263.000000px;}
.w0_c01201{width:892.920000px;}
.w1_c01201{width:893.250000px;}
.x0_c01201{left:0.000000px;}
.x1_c01201{left:137.122500px;}
.x2_c01201{left:143.770500px;}
.x6_c01201{left:177.007500px;}
.x5_c01201{left:230.185500px;}
.x3_c01201{left:243.480000px;}
.x4_c01201{left:276.715500px;}
.x7_c01201{left:435.249000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls5_c01201{letter-spacing:0.000000pt;}
.ls0_c01201{letter-spacing:0.078221pt;}
.ls1_c01201{letter-spacing:0.087539pt;}
.ls4_c01201{letter-spacing:0.092873pt;}
.ls2_c01201{letter-spacing:0.124873pt;}
.ls3_c01201{letter-spacing:0.130206pt;}
.ws0_c01201{word-spacing:-23.622682pt;}
.ws2_c01201{word-spacing:-23.544461pt;}
.ws4_c01201{word-spacing:0.000000pt;}
.ws3_c01201{word-spacing:0.039110pt;}
.ws1_c01201{word-spacing:0.047940pt;}
.ws5_c01201{word-spacing:0.050460pt;}
.ws6_c01201{word-spacing:0.189730pt;}
._0_c01201{width:0.938921pt;}
.fs0_c01201{font-size:39.110400pt;}
.fs1_c01201{font-size:53.133867pt;}
.y0_c01201{bottom:0.000000pt;}
.y2b_c01201{bottom:39.333333pt;}
.y2a_c01201{bottom:388.066667pt;}
.y29_c01201{bottom:402.678667pt;}
.y28_c01201{bottom:417.290667pt;}
.y27_c01201{bottom:431.902667pt;}
.y26_c01201{bottom:446.514667pt;}
.y25_c01201{bottom:461.126667pt;}
.y24_c01201{bottom:475.738667pt;}
.y23_c01201{bottom:490.349333pt;}
.y22_c01201{bottom:504.961333pt;}
.y21_c01201{bottom:519.573333pt;}
.y20_c01201{bottom:534.185333pt;}
.y1f_c01201{bottom:563.409333pt;}
.y1e_c01201{bottom:578.021333pt;}
.y1d_c01201{bottom:592.633333pt;}
.y1c_c01201{bottom:621.857333pt;}
.y1b_c01201{bottom:636.469333pt;}
.y1a_c01201{bottom:651.080000pt;}
.y19_c01201{bottom:665.692000pt;}
.y18_c01201{bottom:680.304000pt;}
.y17_c01201{bottom:694.916000pt;}
.y16_c01201{bottom:709.528000pt;}
.y15_c01201{bottom:724.140000pt;}
.y14_c01201{bottom:738.752000pt;}
.y13_c01201{bottom:753.364000pt;}
.y12_c01201{bottom:767.976000pt;}
.y11_c01201{bottom:782.588000pt;}
.y10_c01201{bottom:797.198667pt;}
.yf_c01201{bottom:811.810667pt;}
.ye_c01201{bottom:826.422667pt;}
.yd_c01201{bottom:841.034667pt;}
.yc_c01201{bottom:855.646667pt;}
.yb_c01201{bottom:870.258667pt;}
.ya_c01201{bottom:884.870667pt;}
.y9_c01201{bottom:899.482667pt;}
.y8_c01201{bottom:914.094667pt;}
.y7_c01201{bottom:928.706667pt;}
.y6_c01201{bottom:943.317333pt;}
.y5_c01201{bottom:957.929333pt;}
.y4_c01201{bottom:972.541333pt;}
.y3_c01201{bottom:987.153333pt;}
.y2_c01201{bottom:1016.377333pt;}
.y1_c01201{bottom:1030.989333pt;}
.h3_c01201{height:31.280681pt;}
.h2_c01201{height:32.006363pt;}
.h4_c01201{height:46.518078pt;}
.h0_c01201{height:1122.520000pt;}
.h1_c01201{height:1122.666667pt;}
.w0_c01201{width:793.706667pt;}
.w1_c01201{width:794.000000pt;}
.x0_c01201{left:0.000000pt;}
.x1_c01201{left:121.886667pt;}
.x2_c01201{left:127.796000pt;}
.x6_c01201{left:157.340000pt;}
.x5_c01201{left:204.609333pt;}
.x3_c01201{left:216.426667pt;}
.x4_c01201{left:245.969333pt;}
.x7_c01201{left:386.888000pt;}
}





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

.ir_c01202:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_c1fc0534c5057cf5a643d7b8.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01202;src:url('chunks/assets/font_9d6c14ecd62f70ca2ec7ad80.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01202;src:url('chunks/assets/font_a77e2b601d6d6966cd0c3424.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01202;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01202{font-family:ff4_c01202;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01202;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01202{font-family:ff5_c01202;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls3_c01202{letter-spacing:0.000000px;}
.ls0_c01202{letter-spacing:0.087998px;}
.ls2_c01202{letter-spacing:0.098482px;}
.ls1_c01202{letter-spacing:0.104482px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01202{word-spacing:-33.713438px;}
.ws2_c01202{word-spacing:-26.575517px;}
.wse_c01202{word-spacing:-26.487518px;}
.ws9_c01202{word-spacing:-21.553319px;}
.ws8_c01202{word-spacing:-21.519216px;}
.ws5_c01202{word-spacing:-18.769538px;}
.ws7_c01202{word-spacing:-16.019861px;}
.ws4_c01202{word-spacing:-14.943900px;}
.wsa_c01202{word-spacing:-14.107042px;}
.wsb_c01202{word-spacing:-12.074671px;}
.ws1_c01202{word-spacing:-9.988424px;}
.ws3_c01202{word-spacing:-9.987499px;}
.ws6_c01202{word-spacing:-4.536144px;}
.ws12_c01202{word-spacing:0.000000px;}
.wsf_c01202{word-spacing:0.043999px;}
.ws15_c01202{word-spacing:0.056767px;}
.ws13_c01202{word-spacing:0.073250px;}
.ws14_c01202{word-spacing:0.083734px;}
.wsd_c01202{word-spacing:0.175997px;}
.ws16_c01202{word-spacing:0.202963px;}
.ws10_c01202{word-spacing:0.213446px;}
.ws11_c01202{word-spacing:0.219446px;}
.ws0_c01202{word-spacing:43.038600px;}
._1_c01202{margin-left:-6.369713px;}
._4_c01202{margin-left:-3.825638px;}
._0_c01202{margin-left:-1.549390px;}
._5_c01202{width:1.005737px;}
._2_c01202{width:19.935816px;}
._3_c01202{width:40.109428px;}
._7_c01202{width:53.283031px;}
._6_c01202{width:79.858548px;}
._8_c01202{width:133.452408px;}
.fc6_c01202{color:rgb(0,0,207);}
.fc5_c01202{color:rgb(79,153,5);}
.fc3_c01202{color:rgb(33,74,135);}
.fc2_c01202{color:rgb(143,89,3);}
.fc4_c01202{color:rgb(207,92,0);}
.fc1_c01202{color:rgb(6,69,173);}
.fc0_c01202{color:rgb(0,0,0);}
.fs2_c01202{font-size:43.999200px;}
.fs1_c01202{font-size:59.775600px;}
.fs0_c01202{font-size:86.077200px;}
.y0_c01202{bottom:0.000000px;}
.y20_c01202{bottom:44.250000px;}
.y1f_c01202{bottom:86.982000px;}
.y1e_c01202{bottom:103.420500px;}
.y1d_c01202{bottom:119.859000px;}
.y1c_c01202{bottom:136.297500px;}
.y1b_c01202{bottom:152.736000px;}
.y1a_c01202{bottom:169.174500px;}
.y19_c01202{bottom:185.613000px;}
.y18_c01202{bottom:202.051500px;}
.y17_c01202{bottom:218.490000px;}
.y16_c01202{bottom:234.927000px;}
.y15_c01202{bottom:251.365500px;}
.y14_c01202{bottom:267.804000px;}
.y13_c01202{bottom:284.242500px;}
.y12_c01202{bottom:300.681000px;}
.y11_c01202{bottom:317.119500px;}
.y10_c01202{bottom:349.996500px;}
.yf_c01202{bottom:366.435000px;}
.ye_c01202{bottom:415.749000px;}
.yd_c01202{bottom:432.187500px;}
.yc_c01202{bottom:448.252500px;}
.yb_c01202{bottom:493.890000px;}
.ya_c01202{bottom:511.822500px;}
.y9_c01202{bottom:529.756500px;}
.y8_c01202{bottom:547.689000px;}
.y7_c01202{bottom:565.621500px;}
.y6_c01202{bottom:583.554000px;}
.y5_c01202{bottom:610.633500px;}
.y4_c01202{bottom:637.714500px;}
.y3_c01202{bottom:664.794000px;}
.y2_c01202{bottom:691.873500px;}
.y1_c01202{bottom:734.407500px;}
.h5_c01202{height:35.190766px;}
.h6_c01202{height:36.007158px;}
.h3_c01202{height:40.511979px;}
.h4_c01202{height:52.332837px;}
.h2_c01202{height:58.337477px;}
.h0_c01202{height:1262.835000px;}
.h1_c01202{height:1263.000000px;}
.w0_c01202{width:892.920000px;}
.w1_c01202{width:893.250000px;}
.x0_c01202{left:0.000000px;}
.x1_c01202{left:127.558500px;}
.x2_c01202{left:137.122500px;}
.x3_c01202{left:143.770500px;}
.x4_c01202{left:435.249000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls3_c01202{letter-spacing:0.000000pt;}
.ls0_c01202{letter-spacing:0.078221pt;}
.ls2_c01202{letter-spacing:0.087539pt;}
.ls1_c01202{letter-spacing:0.092873pt;}
.wsc_c01202{word-spacing:-29.967501pt;}
.ws2_c01202{word-spacing:-23.622682pt;}
.wse_c01202{word-spacing:-23.544461pt;}
.ws9_c01202{word-spacing:-19.158506pt;}
.ws8_c01202{word-spacing:-19.128192pt;}
.ws5_c01202{word-spacing:-16.684034pt;}
.ws7_c01202{word-spacing:-14.239876pt;}
.ws4_c01202{word-spacing:-13.283467pt;}
.wsa_c01202{word-spacing:-12.539593pt;}
.wsb_c01202{word-spacing:-10.733041pt;}
.ws1_c01202{word-spacing:-8.878599pt;}
.ws3_c01202{word-spacing:-8.877777pt;}
.ws6_c01202{word-spacing:-4.032128pt;}
.ws12_c01202{word-spacing:0.000000pt;}
.wsf_c01202{word-spacing:0.039110pt;}
.ws15_c01202{word-spacing:0.050460pt;}
.ws13_c01202{word-spacing:0.065111pt;}
.ws14_c01202{word-spacing:0.074430pt;}
.wsd_c01202{word-spacing:0.156442pt;}
.ws16_c01202{word-spacing:0.180412pt;}
.ws10_c01202{word-spacing:0.189730pt;}
.ws11_c01202{word-spacing:0.195063pt;}
.ws0_c01202{word-spacing:38.256533pt;}
._1_c01202{margin-left:-5.661967pt;}
._4_c01202{margin-left:-3.400567pt;}
._0_c01202{margin-left:-1.377235pt;}
._5_c01202{width:0.893988pt;}
._2_c01202{width:17.720725pt;}
._3_c01202{width:35.652825pt;}
._7_c01202{width:47.362694pt;}
._6_c01202{width:70.985376pt;}
._8_c01202{width:118.624363pt;}
.fs2_c01202{font-size:39.110400pt;}
.fs1_c01202{font-size:53.133867pt;}
.fs0_c01202{font-size:76.513067pt;}
.y0_c01202{bottom:0.000000pt;}
.y20_c01202{bottom:39.333333pt;}
.y1f_c01202{bottom:77.317333pt;}
.y1e_c01202{bottom:91.929333pt;}
.y1d_c01202{bottom:106.541333pt;}
.y1c_c01202{bottom:121.153333pt;}
.y1b_c01202{bottom:135.765333pt;}
.y1a_c01202{bottom:150.377333pt;}
.y19_c01202{bottom:164.989333pt;}
.y18_c01202{bottom:179.601333pt;}
.y17_c01202{bottom:194.213333pt;}
.y16_c01202{bottom:208.824000pt;}
.y15_c01202{bottom:223.436000pt;}
.y14_c01202{bottom:238.048000pt;}
.y13_c01202{bottom:252.660000pt;}
.y12_c01202{bottom:267.272000pt;}
.y11_c01202{bottom:281.884000pt;}
.y10_c01202{bottom:311.108000pt;}
.yf_c01202{bottom:325.720000pt;}
.ye_c01202{bottom:369.554667pt;}
.yd_c01202{bottom:384.166667pt;}
.yc_c01202{bottom:398.446667pt;}
.yb_c01202{bottom:439.013333pt;}
.ya_c01202{bottom:454.953333pt;}
.y9_c01202{bottom:470.894667pt;}
.y8_c01202{bottom:486.834667pt;}
.y7_c01202{bottom:502.774667pt;}
.y6_c01202{bottom:518.714667pt;}
.y5_c01202{bottom:542.785333pt;}
.y4_c01202{bottom:566.857333pt;}
.y3_c01202{bottom:590.928000pt;}
.y2_c01202{bottom:614.998667pt;}
.y1_c01202{bottom:652.806667pt;}
.h5_c01202{height:31.280681pt;}
.h6_c01202{height:32.006363pt;}
.h3_c01202{height:36.010648pt;}
.h4_c01202{height:46.518078pt;}
.h2_c01202{height:51.855535pt;}
.h0_c01202{height:1122.520000pt;}
.h1_c01202{height:1122.666667pt;}
.w0_c01202{width:793.706667pt;}
.w1_c01202{width:794.000000pt;}
.x0_c01202{left:0.000000pt;}
.x1_c01202{left:113.385333pt;}
.x2_c01202{left:121.886667pt;}
.x3_c01202{left:127.796000pt;}
.x4_c01202{left:386.888000pt;}
}





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

.ir_c01203:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_8351de17b307e7c5fd42af07.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01203;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01203;src:url('chunks/assets/font_86f3554c6f4f1213c106a4c8.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01203;src:url('chunks/assets/font_6834c379d65b9ed69d36bb79.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01203;src:url('chunks/assets/font_a5393fbf2d8eaf8df9b899cb.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01203{vertical-align:0.000000px;}
.ls4_c01203{letter-spacing:0.000000px;}
.ls0_c01203{letter-spacing:0.087998px;}
.ls2_c01203{letter-spacing:0.098482px;}
.ls3_c01203{letter-spacing:0.104482px;}
.ls1_c01203{letter-spacing:26.690482px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01203{word-spacing:-26.575517px;}
.ws4_c01203{word-spacing:-26.487518px;}
.wse_c01203{word-spacing:-21.553319px;}
.wsd_c01203{word-spacing:-21.519216px;}
.wsa_c01203{word-spacing:-18.769538px;}
.wsc_c01203{word-spacing:-17.633802px;}
.ws9_c01203{word-spacing:-14.943900px;}
.wsf_c01203{word-spacing:-14.107042px;}
.ws10_c01203{word-spacing:-12.074671px;}
.ws7_c01203{word-spacing:-9.988424px;}
.ws8_c01203{word-spacing:-9.987499px;}
.wsb_c01203{word-spacing:-7.686144px;}
.ws3_c01203{word-spacing:0.000000px;}
.ws0_c01203{word-spacing:0.043999px;}
.ws5_c01203{word-spacing:0.213446px;}
.ws1_c01203{word-spacing:0.219446px;}
.ws6_c01203{word-spacing:43.038600px;}
._2_c01203{margin-left:-6.369713px;}
._1_c01203{margin-left:-1.549390px;}
._0_c01203{width:1.041538px;}
._3_c01203{width:19.935816px;}
._4_c01203{width:40.109428px;}
.fc5_c01203{color:rgb(79,153,5);}
.fc4_c01203{color:rgb(143,89,3);}
.fc3_c01203{color:rgb(0,0,0);}
.fc6_c01203{color:rgb(6,69,173);}
.fc2_c01203{color:rgb(207,92,0);}
.fc1_c01203{color:rgb(0,0,207);}
.fc0_c01203{color:rgb(33,74,135);}
.fs0_c01203{font-size:43.999200px;}
.fs2_c01203{font-size:59.775600px;}
.fs1_c01203{font-size:86.077200px;}
.y0_c01203{bottom:0.000000px;}
.y20_c01203{bottom:44.250000px;}
.y1f_c01203{bottom:82.051500px;}
.y1e_c01203{bottom:99.984000px;}
.y1d_c01203{bottom:117.916500px;}
.y1c_c01203{bottom:135.849000px;}
.y1b_c01203{bottom:162.501000px;}
.y1a_c01203{bottom:189.151500px;}
.y19_c01203{bottom:215.802000px;}
.y18_c01203{bottom:242.454000px;}
.y17_c01203{bottom:284.478000px;}
.y16_c01203{bottom:748.903500px;}
.y15_c01203{bottom:765.342000px;}
.y14_c01203{bottom:781.780500px;}
.y13_c01203{bottom:798.219000px;}
.y12_c01203{bottom:814.657500px;}
.y11_c01203{bottom:831.096000px;}
.y10_c01203{bottom:847.534500px;}
.yf_c01203{bottom:863.973000px;}
.ye_c01203{bottom:880.411500px;}
.yd_c01203{bottom:896.848500px;}
.yc_c01203{bottom:913.287000px;}
.yb_c01203{bottom:946.164000px;}
.ya_c01203{bottom:962.602500px;}
.y9_c01203{bottom:979.041000px;}
.y8_c01203{bottom:1011.918000px;}
.y7_c01203{bottom:1028.356500px;}
.y6_c01203{bottom:1044.795000px;}
.y5_c01203{bottom:1061.232000px;}
.y4_c01203{bottom:1077.670500px;}
.y3_c01203{bottom:1094.109000px;}
.y2_c01203{bottom:1110.547500px;}
.y1_c01203{bottom:1159.863000px;}
.h3_c01203{height:35.190766px;}
.h2_c01203{height:36.007158px;}
.h5_c01203{height:40.511979px;}
.h6_c01203{height:52.332837px;}
.h4_c01203{height:58.337477px;}
.h0_c01203{height:1262.835000px;}
.h1_c01203{height:1263.000000px;}
.w0_c01203{width:892.920000px;}
.w1_c01203{width:893.250000px;}
.x0_c01203{left:0.000000px;}
.x4_c01203{left:127.558500px;}
.x2_c01203{left:137.122500px;}
.x1_c01203{left:143.770500px;}
.x3_c01203{left:177.007500px;}
.x5_c01203{left:435.249000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls4_c01203{letter-spacing:0.000000pt;}
.ls0_c01203{letter-spacing:0.078221pt;}
.ls2_c01203{letter-spacing:0.087539pt;}
.ls3_c01203{letter-spacing:0.092873pt;}
.ls1_c01203{letter-spacing:23.724873pt;}
.ws2_c01203{word-spacing:-23.622682pt;}
.ws4_c01203{word-spacing:-23.544461pt;}
.wse_c01203{word-spacing:-19.158506pt;}
.wsd_c01203{word-spacing:-19.128192pt;}
.wsa_c01203{word-spacing:-16.684034pt;}
.wsc_c01203{word-spacing:-15.674491pt;}
.ws9_c01203{word-spacing:-13.283467pt;}
.wsf_c01203{word-spacing:-12.539593pt;}
.ws10_c01203{word-spacing:-10.733041pt;}
.ws7_c01203{word-spacing:-8.878599pt;}
.ws8_c01203{word-spacing:-8.877777pt;}
.wsb_c01203{word-spacing:-6.832128pt;}
.ws3_c01203{word-spacing:0.000000pt;}
.ws0_c01203{word-spacing:0.039110pt;}
.ws5_c01203{word-spacing:0.189730pt;}
.ws1_c01203{word-spacing:0.195063pt;}
.ws6_c01203{word-spacing:38.256533pt;}
._2_c01203{margin-left:-5.661967pt;}
._1_c01203{margin-left:-1.377235pt;}
._0_c01203{width:0.925811pt;}
._3_c01203{width:17.720725pt;}
._4_c01203{width:35.652825pt;}
.fs0_c01203{font-size:39.110400pt;}
.fs2_c01203{font-size:53.133867pt;}
.fs1_c01203{font-size:76.513067pt;}
.y0_c01203{bottom:0.000000pt;}
.y20_c01203{bottom:39.333333pt;}
.y1f_c01203{bottom:72.934667pt;}
.y1e_c01203{bottom:88.874667pt;}
.y1d_c01203{bottom:104.814667pt;}
.y1c_c01203{bottom:120.754667pt;}
.y1b_c01203{bottom:144.445333pt;}
.y1a_c01203{bottom:168.134667pt;}
.y19_c01203{bottom:191.824000pt;}
.y18_c01203{bottom:215.514667pt;}
.y17_c01203{bottom:252.869333pt;}
.y16_c01203{bottom:665.692000pt;}
.y15_c01203{bottom:680.304000pt;}
.y14_c01203{bottom:694.916000pt;}
.y13_c01203{bottom:709.528000pt;}
.y12_c01203{bottom:724.140000pt;}
.y11_c01203{bottom:738.752000pt;}
.y10_c01203{bottom:753.364000pt;}
.yf_c01203{bottom:767.976000pt;}
.ye_c01203{bottom:782.588000pt;}
.yd_c01203{bottom:797.198667pt;}
.yc_c01203{bottom:811.810667pt;}
.yb_c01203{bottom:841.034667pt;}
.ya_c01203{bottom:855.646667pt;}
.y9_c01203{bottom:870.258667pt;}
.y8_c01203{bottom:899.482667pt;}
.y7_c01203{bottom:914.094667pt;}
.y6_c01203{bottom:928.706667pt;}
.y5_c01203{bottom:943.317333pt;}
.y4_c01203{bottom:957.929333pt;}
.y3_c01203{bottom:972.541333pt;}
.y2_c01203{bottom:987.153333pt;}
.y1_c01203{bottom:1030.989333pt;}
.h3_c01203{height:31.280681pt;}
.h2_c01203{height:32.006363pt;}
.h5_c01203{height:36.010648pt;}
.h6_c01203{height:46.518078pt;}
.h4_c01203{height:51.855535pt;}
.h0_c01203{height:1122.520000pt;}
.h1_c01203{height:1122.666667pt;}
.w0_c01203{width:793.706667pt;}
.w1_c01203{width:794.000000pt;}
.x0_c01203{left:0.000000pt;}
.x4_c01203{left:113.385333pt;}
.x2_c01203{left:121.886667pt;}
.x1_c01203{left:127.796000pt;}
.x3_c01203{left:157.340000pt;}
.x5_c01203{left:386.888000pt;}
}





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

.ir_c01204:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_57f326f69bc0037ec571cde5.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01204;src:url('chunks/assets/font_aae3e548be4a2a28e67f671c.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01204;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01204;src:url('chunks/assets/font_d5ad7be4d468fb7a3465cbac.woff2')format("woff");}.ff4_c01204{font-family:ff4_c01204;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.ls4_c01204{letter-spacing:0.000000px;}
.ls1_c01204{letter-spacing:0.087998px;}
.ls2_c01204{letter-spacing:0.098482px;}
.ls0_c01204{letter-spacing:0.104482px;}
.ls3_c01204{letter-spacing:26.690482px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01204{word-spacing:-33.713438px;}
.ws4_c01204{word-spacing:-26.575517px;}
.ws3_c01204{word-spacing:-26.487518px;}
.ws0_c01204{word-spacing:-18.769538px;}
.ws8_c01204{word-spacing:0.000000px;}
.ws5_c01204{word-spacing:0.043999px;}
.wsb_c01204{word-spacing:0.056767px;}
.ws9_c01204{word-spacing:0.073250px;}
.wsa_c01204{word-spacing:0.083734px;}
.ws2_c01204{word-spacing:0.175997px;}
.wsc_c01204{word-spacing:0.202963px;}
.ws6_c01204{word-spacing:0.213446px;}
.ws7_c01204{word-spacing:0.219446px;}
._0_c01204{margin-left:-3.825638px;}
._1_c01204{width:1.005737px;}
._3_c01204{width:53.283031px;}
._2_c01204{width:79.858548px;}
._5_c01204{width:106.742059px;}
._4_c01204{width:133.452408px;}
.fc5_c01204{color:rgb(0,0,207);}
.fc4_c01204{color:rgb(79,153,5);}
.fc3_c01204{color:rgb(207,92,0);}
.fc2_c01204{color:rgb(33,74,135);}
.fc1_c01204{color:rgb(143,89,3);}
.fc0_c01204{color:rgb(0,0,0);}
.fs1_c01204{font-size:43.999200px;}
.fs0_c01204{font-size:59.775600px;}
.y0_c01204{bottom:0.000000px;}
.y2d_c01204{bottom:44.250000px;}
.y2c_c01204{bottom:96.919500px;}
.y2b_c01204{bottom:113.358000px;}
.y2a_c01204{bottom:129.796500px;}
.y29_c01204{bottom:146.235000px;}
.y28_c01204{bottom:162.673500px;}
.y27_c01204{bottom:179.112000px;}
.y26_c01204{bottom:195.550500px;}
.y25_c01204{bottom:211.989000px;}
.y24_c01204{bottom:228.427500px;}
.y23_c01204{bottom:244.866000px;}
.y22_c01204{bottom:261.304500px;}
.y21_c01204{bottom:294.180000px;}
.y20_c01204{bottom:310.618500px;}
.y1f_c01204{bottom:327.057000px;}
.y1e_c01204{bottom:359.934000px;}
.y1d_c01204{bottom:376.372500px;}
.y1c_c01204{bottom:392.811000px;}
.y1b_c01204{bottom:409.249500px;}
.y1a_c01204{bottom:425.688000px;}
.y19_c01204{bottom:442.125000px;}
.y18_c01204{bottom:458.563500px;}
.y17_c01204{bottom:507.879000px;}
.y16_c01204{bottom:524.317500px;}
.y15_c01204{bottom:540.756000px;}
.y14_c01204{bottom:557.194500px;}
.y13_c01204{bottom:573.633000px;}
.y12_c01204{bottom:590.071500px;}
.y11_c01204{bottom:606.508500px;}
.y10_c01204{bottom:622.947000px;}
.yf_c01204{bottom:639.385500px;}
.ye_c01204{bottom:655.824000px;}
.yd_c01204{bottom:672.262500px;}
.yc_c01204{bottom:688.701000px;}
.yb_c01204{bottom:705.139500px;}
.ya_c01204{bottom:721.578000px;}
.y9_c01204{bottom:738.016500px;}
.y8_c01204{bottom:754.455000px;}
.y7_c01204{bottom:787.330500px;}
.y6_c01204{bottom:803.769000px;}
.y5_c01204{bottom:853.084500px;}
.y4_c01204{bottom:869.523000px;}
.y3_c01204{bottom:885.588000px;}
.y2_c01204{bottom:1141.930500px;}
.y1_c01204{bottom:1159.863000px;}
.h3_c01204{height:35.190766px;}
.h4_c01204{height:36.007158px;}
.h2_c01204{height:52.332837px;}
.h0_c01204{height:1262.835000px;}
.h1_c01204{height:1263.000000px;}
.w0_c01204{width:892.920000px;}
.w1_c01204{width:893.250000px;}
.x0_c01204{left:0.000000px;}
.x1_c01204{left:127.558500px;}
.x2_c01204{left:137.122500px;}
.x3_c01204{left:143.770500px;}
.x4_c01204{left:177.007500px;}
.x5_c01204{left:435.249000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls4_c01204{letter-spacing:0.000000pt;}
.ls1_c01204{letter-spacing:0.078221pt;}
.ls2_c01204{letter-spacing:0.087539pt;}
.ls0_c01204{letter-spacing:0.092873pt;}
.ls3_c01204{letter-spacing:23.724873pt;}
.ws1_c01204{word-spacing:-29.967501pt;}
.ws4_c01204{word-spacing:-23.622682pt;}
.ws3_c01204{word-spacing:-23.544461pt;}
.ws0_c01204{word-spacing:-16.684034pt;}
.ws8_c01204{word-spacing:0.000000pt;}
.ws5_c01204{word-spacing:0.039110pt;}
.wsb_c01204{word-spacing:0.050460pt;}
.ws9_c01204{word-spacing:0.065111pt;}
.wsa_c01204{word-spacing:0.074430pt;}
.ws2_c01204{word-spacing:0.156442pt;}
.wsc_c01204{word-spacing:0.180412pt;}
.ws6_c01204{word-spacing:0.189730pt;}
.ws7_c01204{word-spacing:0.195063pt;}
._0_c01204{margin-left:-3.400567pt;}
._1_c01204{width:0.893988pt;}
._3_c01204{width:47.362694pt;}
._2_c01204{width:70.985376pt;}
._5_c01204{width:94.881830pt;}
._4_c01204{width:118.624363pt;}
.fs1_c01204{font-size:39.110400pt;}
.fs0_c01204{font-size:53.133867pt;}
.y0_c01204{bottom:0.000000pt;}
.y2d_c01204{bottom:39.333333pt;}
.y2c_c01204{bottom:86.150667pt;}
.y2b_c01204{bottom:100.762667pt;}
.y2a_c01204{bottom:115.374667pt;}
.y29_c01204{bottom:129.986667pt;}
.y28_c01204{bottom:144.598667pt;}
.y27_c01204{bottom:159.210667pt;}
.y26_c01204{bottom:173.822667pt;}
.y25_c01204{bottom:188.434667pt;}
.y24_c01204{bottom:203.046667pt;}
.y23_c01204{bottom:217.658667pt;}
.y22_c01204{bottom:232.270667pt;}
.y21_c01204{bottom:261.493333pt;}
.y20_c01204{bottom:276.105333pt;}
.y1f_c01204{bottom:290.717333pt;}
.y1e_c01204{bottom:319.941333pt;}
.y1d_c01204{bottom:334.553333pt;}
.y1c_c01204{bottom:349.165333pt;}
.y1b_c01204{bottom:363.777333pt;}
.y1a_c01204{bottom:378.389333pt;}
.y19_c01204{bottom:393.000000pt;}
.y18_c01204{bottom:407.612000pt;}
.y17_c01204{bottom:451.448000pt;}
.y16_c01204{bottom:466.060000pt;}
.y15_c01204{bottom:480.672000pt;}
.y14_c01204{bottom:495.284000pt;}
.y13_c01204{bottom:509.896000pt;}
.y12_c01204{bottom:524.508000pt;}
.y11_c01204{bottom:539.118667pt;}
.y10_c01204{bottom:553.730667pt;}
.yf_c01204{bottom:568.342667pt;}
.ye_c01204{bottom:582.954667pt;}
.yd_c01204{bottom:597.566667pt;}
.yc_c01204{bottom:612.178667pt;}
.yb_c01204{bottom:626.790667pt;}
.ya_c01204{bottom:641.402667pt;}
.y9_c01204{bottom:656.014667pt;}
.y8_c01204{bottom:670.626667pt;}
.y7_c01204{bottom:699.849333pt;}
.y6_c01204{bottom:714.461333pt;}
.y5_c01204{bottom:758.297333pt;}
.y4_c01204{bottom:772.909333pt;}
.y3_c01204{bottom:787.189333pt;}
.y2_c01204{bottom:1015.049333pt;}
.y1_c01204{bottom:1030.989333pt;}
.h3_c01204{height:31.280681pt;}
.h4_c01204{height:32.006363pt;}
.h2_c01204{height:46.518078pt;}
.h0_c01204{height:1122.520000pt;}
.h1_c01204{height:1122.666667pt;}
.w0_c01204{width:793.706667pt;}
.w1_c01204{width:794.000000pt;}
.x0_c01204{left:0.000000pt;}
.x1_c01204{left:113.385333pt;}
.x2_c01204{left:121.886667pt;}
.x3_c01204{left:127.796000pt;}
.x4_c01204{left:157.340000pt;}
.x5_c01204{left:386.888000pt;}
}





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

.ir_c01205:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_b641aa58a22352f36c7d0f51.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01205;src:url('chunks/assets/font_c26a295dcecf36bd002a867e.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01205;src:url('chunks/assets/font_ff73990a0debd2bfbdaf84d7.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01205;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01205;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls3_c01205{letter-spacing:0.000000px;}
.ls0_c01205{letter-spacing:0.087998px;}
.ls2_c01205{letter-spacing:0.098482px;}
.ls1_c01205{letter-spacing:0.104482px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01205{word-spacing:-33.713438px;}
.ws2_c01205{word-spacing:-26.575517px;}
.wse_c01205{word-spacing:-26.487518px;}
.ws9_c01205{word-spacing:-21.553319px;}
.ws8_c01205{word-spacing:-21.519216px;}
.ws5_c01205{word-spacing:-18.769538px;}
.ws7_c01205{word-spacing:-17.633802px;}
.ws4_c01205{word-spacing:-14.943900px;}
.wsa_c01205{word-spacing:-14.107042px;}
.wsb_c01205{word-spacing:-12.074671px;}
.ws1_c01205{word-spacing:-9.988424px;}
.ws3_c01205{word-spacing:-9.987499px;}
.ws6_c01205{word-spacing:-7.686144px;}
.ws12_c01205{word-spacing:0.000000px;}
.wsf_c01205{word-spacing:0.043999px;}
.ws15_c01205{word-spacing:0.056767px;}
.ws13_c01205{word-spacing:0.073250px;}
.ws14_c01205{word-spacing:0.083734px;}
.wsd_c01205{word-spacing:0.175997px;}
.ws16_c01205{word-spacing:0.202963px;}
.ws10_c01205{word-spacing:0.213446px;}
.ws11_c01205{word-spacing:0.219446px;}
.ws0_c01205{word-spacing:43.038600px;}
._1_c01205{margin-left:-6.369713px;}
._4_c01205{margin-left:-3.825638px;}
._0_c01205{margin-left:-1.549390px;}
._5_c01205{width:1.005737px;}
._2_c01205{width:19.935816px;}
._3_c01205{width:40.109428px;}
._7_c01205{width:53.283031px;}
._6_c01205{width:79.858548px;}
._8_c01205{width:133.452408px;}
.fc6_c01205{color:rgb(0,0,207);}
.fc5_c01205{color:rgb(79,153,5);}
.fc3_c01205{color:rgb(33,74,135);}
.fc2_c01205{color:rgb(143,89,3);}
.fc4_c01205{color:rgb(207,92,0);}
.fc1_c01205{color:rgb(6,69,173);}
.fc0_c01205{color:rgb(0,0,0);}
.fs2_c01205{font-size:43.999200px;}
.fs1_c01205{font-size:59.775600px;}
.fs0_c01205{font-size:86.077200px;}
.y0_c01205{bottom:0.000000px;}
.y20_c01205{bottom:44.250000px;}
.y1f_c01205{bottom:86.982000px;}
.y1e_c01205{bottom:103.420500px;}
.y1d_c01205{bottom:119.859000px;}
.y1c_c01205{bottom:136.297500px;}
.y1b_c01205{bottom:152.736000px;}
.y1a_c01205{bottom:169.174500px;}
.y19_c01205{bottom:185.613000px;}
.y18_c01205{bottom:202.051500px;}
.y17_c01205{bottom:218.490000px;}
.y16_c01205{bottom:234.927000px;}
.y15_c01205{bottom:251.365500px;}
.y14_c01205{bottom:267.804000px;}
.y13_c01205{bottom:284.242500px;}
.y12_c01205{bottom:300.681000px;}
.y11_c01205{bottom:317.119500px;}
.y10_c01205{bottom:349.996500px;}
.yf_c01205{bottom:366.435000px;}
.ye_c01205{bottom:415.749000px;}
.yd_c01205{bottom:432.187500px;}
.yc_c01205{bottom:448.252500px;}
.yb_c01205{bottom:493.890000px;}
.ya_c01205{bottom:511.822500px;}
.y9_c01205{bottom:529.756500px;}
.y8_c01205{bottom:547.689000px;}
.y7_c01205{bottom:565.621500px;}
.y6_c01205{bottom:583.554000px;}
.y5_c01205{bottom:610.633500px;}
.y4_c01205{bottom:637.714500px;}
.y3_c01205{bottom:664.794000px;}
.y2_c01205{bottom:691.873500px;}
.y1_c01205{bottom:734.407500px;}
.h5_c01205{height:35.190766px;}
.h6_c01205{height:36.007158px;}
.h3_c01205{height:40.511979px;}
.h4_c01205{height:52.332837px;}
.h2_c01205{height:58.337477px;}
.h0_c01205{height:1262.835000px;}
.h1_c01205{height:1263.000000px;}
.w0_c01205{width:892.920000px;}
.w1_c01205{width:893.250000px;}
.x0_c01205{left:0.000000px;}
.x1_c01205{left:127.558500px;}
.x2_c01205{left:137.122500px;}
.x3_c01205{left:143.770500px;}
.x4_c01205{left:435.249000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls3_c01205{letter-spacing:0.000000pt;}
.ls0_c01205{letter-spacing:0.078221pt;}
.ls2_c01205{letter-spacing:0.087539pt;}
.ls1_c01205{letter-spacing:0.092873pt;}
.wsc_c01205{word-spacing:-29.967501pt;}
.ws2_c01205{word-spacing:-23.622682pt;}
.wse_c01205{word-spacing:-23.544461pt;}
.ws9_c01205{word-spacing:-19.158506pt;}
.ws8_c01205{word-spacing:-19.128192pt;}
.ws5_c01205{word-spacing:-16.684034pt;}
.ws7_c01205{word-spacing:-15.674491pt;}
.ws4_c01205{word-spacing:-13.283467pt;}
.wsa_c01205{word-spacing:-12.539593pt;}
.wsb_c01205{word-spacing:-10.733041pt;}
.ws1_c01205{word-spacing:-8.878599pt;}
.ws3_c01205{word-spacing:-8.877777pt;}
.ws6_c01205{word-spacing:-6.832128pt;}
.ws12_c01205{word-spacing:0.000000pt;}
.wsf_c01205{word-spacing:0.039110pt;}
.ws15_c01205{word-spacing:0.050460pt;}
.ws13_c01205{word-spacing:0.065111pt;}
.ws14_c01205{word-spacing:0.074430pt;}
.wsd_c01205{word-spacing:0.156442pt;}
.ws16_c01205{word-spacing:0.180412pt;}
.ws10_c01205{word-spacing:0.189730pt;}
.ws11_c01205{word-spacing:0.195063pt;}
.ws0_c01205{word-spacing:38.256533pt;}
._1_c01205{margin-left:-5.661967pt;}
._4_c01205{margin-left:-3.400567pt;}
._0_c01205{margin-left:-1.377235pt;}
._5_c01205{width:0.893988pt;}
._2_c01205{width:17.720725pt;}
._3_c01205{width:35.652825pt;}
._7_c01205{width:47.362694pt;}
._6_c01205{width:70.985376pt;}
._8_c01205{width:118.624363pt;}
.fs2_c01205{font-size:39.110400pt;}
.fs1_c01205{font-size:53.133867pt;}
.fs0_c01205{font-size:76.513067pt;}
.y0_c01205{bottom:0.000000pt;}
.y20_c01205{bottom:39.333333pt;}
.y1f_c01205{bottom:77.317333pt;}
.y1e_c01205{bottom:91.929333pt;}
.y1d_c01205{bottom:106.541333pt;}
.y1c_c01205{bottom:121.153333pt;}
.y1b_c01205{bottom:135.765333pt;}
.y1a_c01205{bottom:150.377333pt;}
.y19_c01205{bottom:164.989333pt;}
.y18_c01205{bottom:179.601333pt;}
.y17_c01205{bottom:194.213333pt;}
.y16_c01205{bottom:208.824000pt;}
.y15_c01205{bottom:223.436000pt;}
.y14_c01205{bottom:238.048000pt;}
.y13_c01205{bottom:252.660000pt;}
.y12_c01205{bottom:267.272000pt;}
.y11_c01205{bottom:281.884000pt;}
.y10_c01205{bottom:311.108000pt;}
.yf_c01205{bottom:325.720000pt;}
.ye_c01205{bottom:369.554667pt;}
.yd_c01205{bottom:384.166667pt;}
.yc_c01205{bottom:398.446667pt;}
.yb_c01205{bottom:439.013333pt;}
.ya_c01205{bottom:454.953333pt;}
.y9_c01205{bottom:470.894667pt;}
.y8_c01205{bottom:486.834667pt;}
.y7_c01205{bottom:502.774667pt;}
.y6_c01205{bottom:518.714667pt;}
.y5_c01205{bottom:542.785333pt;}
.y4_c01205{bottom:566.857333pt;}
.y3_c01205{bottom:590.928000pt;}
.y2_c01205{bottom:614.998667pt;}
.y1_c01205{bottom:652.806667pt;}
.h5_c01205{height:31.280681pt;}
.h6_c01205{height:32.006363pt;}
.h3_c01205{height:36.010648pt;}
.h4_c01205{height:46.518078pt;}
.h2_c01205{height:51.855535pt;}
.h0_c01205{height:1122.520000pt;}
.h1_c01205{height:1122.666667pt;}
.w0_c01205{width:793.706667pt;}
.w1_c01205{width:794.000000pt;}
.x0_c01205{left:0.000000pt;}
.x1_c01205{left:113.385333pt;}
.x2_c01205{left:121.886667pt;}
.x3_c01205{left:127.796000pt;}
.x4_c01205{left:386.888000pt;}
}





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

.ir_c01206:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_14811b4c32b0b55bdfdfab4a.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01206;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01206;src:url('chunks/assets/font_f8df88644dcc9076feb46b61.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01206;src:url('chunks/assets/font_01b2bdac6271308dab6be9de.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01206;src:url('chunks/assets/font_35e55a12ef02b57214838e6f.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01206{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.ls4_c01206{letter-spacing:0.000000px;}
.ls0_c01206{letter-spacing:0.087998px;}
.ls2_c01206{letter-spacing:0.098482px;}
.ls3_c01206{letter-spacing:0.104482px;}
.ls1_c01206{letter-spacing:26.690482px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01206{word-spacing:-26.575517px;}
.ws4_c01206{word-spacing:-26.487518px;}
.wse_c01206{word-spacing:-21.553319px;}
.wsd_c01206{word-spacing:-21.519216px;}
.wsc_c01206{word-spacing:-19.247743px;}
.wsa_c01206{word-spacing:-18.769538px;}
.ws9_c01206{word-spacing:-14.943900px;}
.wsf_c01206{word-spacing:-14.107042px;}
.ws10_c01206{word-spacing:-12.074671px;}
.wsb_c01206{word-spacing:-10.230144px;}
.ws7_c01206{word-spacing:-9.988424px;}
.ws8_c01206{word-spacing:-9.987499px;}
.ws3_c01206{word-spacing:0.000000px;}
.ws0_c01206{word-spacing:0.043999px;}
.ws5_c01206{word-spacing:0.213446px;}
.ws1_c01206{word-spacing:0.219446px;}
.ws6_c01206{word-spacing:43.038600px;}
._3_c01206{margin-left:-6.369713px;}
._2_c01206{margin-left:-1.549390px;}
._1_c01206{width:1.009757px;}
._4_c01206{width:19.935816px;}
._5_c01206{width:40.109428px;}
._0_c01206{width:106.742059px;}
.fc5_c01206{color:rgb(79,153,5);}
.fc4_c01206{color:rgb(143,89,3);}
.fc3_c01206{color:rgb(0,0,0);}
.fc6_c01206{color:rgb(6,69,173);}
.fc2_c01206{color:rgb(207,92,0);}
.fc1_c01206{color:rgb(0,0,207);}
.fc0_c01206{color:rgb(33,74,135);}
.fs0_c01206{font-size:43.999200px;}
.fs2_c01206{font-size:59.775600px;}
.fs1_c01206{font-size:86.077200px;}
.y0_c01206{bottom:0.000000px;}
.y20_c01206{bottom:44.250000px;}
.y1f_c01206{bottom:82.051500px;}
.y1e_c01206{bottom:99.984000px;}
.y1d_c01206{bottom:117.916500px;}
.y1c_c01206{bottom:135.849000px;}
.y1b_c01206{bottom:162.501000px;}
.y1a_c01206{bottom:189.151500px;}
.y19_c01206{bottom:215.802000px;}
.y18_c01206{bottom:242.454000px;}
.y17_c01206{bottom:284.478000px;}
.y16_c01206{bottom:748.903500px;}
.y15_c01206{bottom:765.342000px;}
.y14_c01206{bottom:781.780500px;}
.y13_c01206{bottom:798.219000px;}
.y12_c01206{bottom:814.657500px;}
.y11_c01206{bottom:831.096000px;}
.y10_c01206{bottom:847.534500px;}
.yf_c01206{bottom:863.973000px;}
.ye_c01206{bottom:880.411500px;}
.yd_c01206{bottom:896.848500px;}
.yc_c01206{bottom:913.287000px;}
.yb_c01206{bottom:946.164000px;}
.ya_c01206{bottom:962.602500px;}
.y9_c01206{bottom:979.041000px;}
.y8_c01206{bottom:1011.918000px;}
.y7_c01206{bottom:1028.356500px;}
.y6_c01206{bottom:1044.795000px;}
.y5_c01206{bottom:1061.232000px;}
.y4_c01206{bottom:1077.670500px;}
.y3_c01206{bottom:1094.109000px;}
.y2_c01206{bottom:1110.547500px;}
.y1_c01206{bottom:1159.863000px;}
.h3_c01206{height:35.190766px;}
.h2_c01206{height:36.007158px;}
.h5_c01206{height:40.511979px;}
.h6_c01206{height:52.332837px;}
.h4_c01206{height:58.337477px;}
.h0_c01206{height:1262.835000px;}
.h1_c01206{height:1263.000000px;}
.w0_c01206{width:892.920000px;}
.w1_c01206{width:893.250000px;}
.x0_c01206{left:0.000000px;}
.x4_c01206{left:127.558500px;}
.x2_c01206{left:137.122500px;}
.x1_c01206{left:143.770500px;}
.x3_c01206{left:177.007500px;}
.x5_c01206{left:435.249000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls4_c01206{letter-spacing:0.000000pt;}
.ls0_c01206{letter-spacing:0.078221pt;}
.ls2_c01206{letter-spacing:0.087539pt;}
.ls3_c01206{letter-spacing:0.092873pt;}
.ls1_c01206{letter-spacing:23.724873pt;}
.ws2_c01206{word-spacing:-23.622682pt;}
.ws4_c01206{word-spacing:-23.544461pt;}
.wse_c01206{word-spacing:-19.158506pt;}
.wsd_c01206{word-spacing:-19.128192pt;}
.wsc_c01206{word-spacing:-17.109105pt;}
.wsa_c01206{word-spacing:-16.684034pt;}
.ws9_c01206{word-spacing:-13.283467pt;}
.wsf_c01206{word-spacing:-12.539593pt;}
.ws10_c01206{word-spacing:-10.733041pt;}
.wsb_c01206{word-spacing:-9.093461pt;}
.ws7_c01206{word-spacing:-8.878599pt;}
.ws8_c01206{word-spacing:-8.877777pt;}
.ws3_c01206{word-spacing:0.000000pt;}
.ws0_c01206{word-spacing:0.039110pt;}
.ws5_c01206{word-spacing:0.189730pt;}
.ws1_c01206{word-spacing:0.195063pt;}
.ws6_c01206{word-spacing:38.256533pt;}
._3_c01206{margin-left:-5.661967pt;}
._2_c01206{margin-left:-1.377235pt;}
._1_c01206{width:0.897562pt;}
._4_c01206{width:17.720725pt;}
._5_c01206{width:35.652825pt;}
._0_c01206{width:94.881830pt;}
.fs0_c01206{font-size:39.110400pt;}
.fs2_c01206{font-size:53.133867pt;}
.fs1_c01206{font-size:76.513067pt;}
.y0_c01206{bottom:0.000000pt;}
.y20_c01206{bottom:39.333333pt;}
.y1f_c01206{bottom:72.934667pt;}
.y1e_c01206{bottom:88.874667pt;}
.y1d_c01206{bottom:104.814667pt;}
.y1c_c01206{bottom:120.754667pt;}
.y1b_c01206{bottom:144.445333pt;}
.y1a_c01206{bottom:168.134667pt;}
.y19_c01206{bottom:191.824000pt;}
.y18_c01206{bottom:215.514667pt;}
.y17_c01206{bottom:252.869333pt;}
.y16_c01206{bottom:665.692000pt;}
.y15_c01206{bottom:680.304000pt;}
.y14_c01206{bottom:694.916000pt;}
.y13_c01206{bottom:709.528000pt;}
.y12_c01206{bottom:724.140000pt;}
.y11_c01206{bottom:738.752000pt;}
.y10_c01206{bottom:753.364000pt;}
.yf_c01206{bottom:767.976000pt;}
.ye_c01206{bottom:782.588000pt;}
.yd_c01206{bottom:797.198667pt;}
.yc_c01206{bottom:811.810667pt;}
.yb_c01206{bottom:841.034667pt;}
.ya_c01206{bottom:855.646667pt;}
.y9_c01206{bottom:870.258667pt;}
.y8_c01206{bottom:899.482667pt;}
.y7_c01206{bottom:914.094667pt;}
.y6_c01206{bottom:928.706667pt;}
.y5_c01206{bottom:943.317333pt;}
.y4_c01206{bottom:957.929333pt;}
.y3_c01206{bottom:972.541333pt;}
.y2_c01206{bottom:987.153333pt;}
.y1_c01206{bottom:1030.989333pt;}
.h3_c01206{height:31.280681pt;}
.h2_c01206{height:32.006363pt;}
.h5_c01206{height:36.010648pt;}
.h6_c01206{height:46.518078pt;}
.h4_c01206{height:51.855535pt;}
.h0_c01206{height:1122.520000pt;}
.h1_c01206{height:1122.666667pt;}
.w0_c01206{width:793.706667pt;}
.w1_c01206{width:794.000000pt;}
.x0_c01206{left:0.000000pt;}
.x4_c01206{left:113.385333pt;}
.x2_c01206{left:121.886667pt;}
.x1_c01206{left:127.796000pt;}
.x3_c01206{left:157.340000pt;}
.x5_c01206{left:386.888000pt;}
}





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

.ir_c01207:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_424f66f3dd2c4c63ab77f529.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01207;src:url('chunks/assets/font_e941aa629bb3bbc7432b1fef.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01207;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01207;src:url('chunks/assets/font_a8600f6898a24b72794d1a17.woff2')format("woff");}.ff4_c01207{font-family:ff4_c01207;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.ls4_c01207{letter-spacing:0.000000px;}
.ls1_c01207{letter-spacing:0.087998px;}
.ls2_c01207{letter-spacing:0.098482px;}
.ls0_c01207{letter-spacing:0.104482px;}
.ls3_c01207{letter-spacing:26.690482px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01207{word-spacing:-33.713438px;}
.ws4_c01207{word-spacing:-26.575517px;}
.ws3_c01207{word-spacing:-26.487518px;}
.ws0_c01207{word-spacing:-18.769538px;}
.ws8_c01207{word-spacing:0.000000px;}
.ws5_c01207{word-spacing:0.043999px;}
.wsb_c01207{word-spacing:0.056767px;}
.ws9_c01207{word-spacing:0.073250px;}
.wsa_c01207{word-spacing:0.083734px;}
.ws2_c01207{word-spacing:0.175997px;}
.wsc_c01207{word-spacing:0.202963px;}
.ws6_c01207{word-spacing:0.213446px;}
.ws7_c01207{word-spacing:0.219446px;}
._0_c01207{margin-left:-3.825638px;}
._1_c01207{width:1.005737px;}
._3_c01207{width:53.283031px;}
._2_c01207{width:79.858548px;}
._4_c01207{width:133.452408px;}
.fc5_c01207{color:rgb(0,0,207);}
.fc4_c01207{color:rgb(79,153,5);}
.fc3_c01207{color:rgb(207,92,0);}
.fc2_c01207{color:rgb(33,74,135);}
.fc1_c01207{color:rgb(143,89,3);}
.fc0_c01207{color:rgb(0,0,0);}
.fs1_c01207{font-size:43.999200px;}
.fs0_c01207{font-size:59.775600px;}
.y0_c01207{bottom:0.000000px;}
.y2d_c01207{bottom:44.250000px;}
.y2c_c01207{bottom:96.919500px;}
.y2b_c01207{bottom:113.358000px;}
.y2a_c01207{bottom:129.796500px;}
.y29_c01207{bottom:146.235000px;}
.y28_c01207{bottom:162.673500px;}
.y27_c01207{bottom:179.112000px;}
.y26_c01207{bottom:195.550500px;}
.y25_c01207{bottom:211.989000px;}
.y24_c01207{bottom:228.427500px;}
.y23_c01207{bottom:244.866000px;}
.y22_c01207{bottom:261.304500px;}
.y21_c01207{bottom:294.180000px;}
.y20_c01207{bottom:310.618500px;}
.y1f_c01207{bottom:327.057000px;}
.y1e_c01207{bottom:359.934000px;}
.y1d_c01207{bottom:376.372500px;}
.y1c_c01207{bottom:392.811000px;}
.y1b_c01207{bottom:409.249500px;}
.y1a_c01207{bottom:425.688000px;}
.y19_c01207{bottom:442.125000px;}
.y18_c01207{bottom:458.563500px;}
.y17_c01207{bottom:507.879000px;}
.y16_c01207{bottom:524.317500px;}
.y15_c01207{bottom:540.756000px;}
.y14_c01207{bottom:557.194500px;}
.y13_c01207{bottom:573.633000px;}
.y12_c01207{bottom:590.071500px;}
.y11_c01207{bottom:606.508500px;}
.y10_c01207{bottom:622.947000px;}
.yf_c01207{bottom:639.385500px;}
.ye_c01207{bottom:655.824000px;}
.yd_c01207{bottom:672.262500px;}
.yc_c01207{bottom:688.701000px;}
.yb_c01207{bottom:705.139500px;}
.ya_c01207{bottom:721.578000px;}
.y9_c01207{bottom:738.016500px;}
.y8_c01207{bottom:754.455000px;}
.y7_c01207{bottom:787.330500px;}
.y6_c01207{bottom:803.769000px;}
.y5_c01207{bottom:853.084500px;}
.y4_c01207{bottom:869.523000px;}
.y3_c01207{bottom:885.588000px;}
.y2_c01207{bottom:1141.930500px;}
.y1_c01207{bottom:1159.863000px;}
.h3_c01207{height:35.190766px;}
.h4_c01207{height:36.007158px;}
.h2_c01207{height:52.332837px;}
.h0_c01207{height:1262.835000px;}
.h1_c01207{height:1263.000000px;}
.w0_c01207{width:892.920000px;}
.w1_c01207{width:893.250000px;}
.x0_c01207{left:0.000000px;}
.x1_c01207{left:127.558500px;}
.x2_c01207{left:137.122500px;}
.x3_c01207{left:143.770500px;}
.x4_c01207{left:177.007500px;}
.x5_c01207{left:435.249000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls4_c01207{letter-spacing:0.000000pt;}
.ls1_c01207{letter-spacing:0.078221pt;}
.ls2_c01207{letter-spacing:0.087539pt;}
.ls0_c01207{letter-spacing:0.092873pt;}
.ls3_c01207{letter-spacing:23.724873pt;}
.ws1_c01207{word-spacing:-29.967501pt;}
.ws4_c01207{word-spacing:-23.622682pt;}
.ws3_c01207{word-spacing:-23.544461pt;}
.ws0_c01207{word-spacing:-16.684034pt;}
.ws8_c01207{word-spacing:0.000000pt;}
.ws5_c01207{word-spacing:0.039110pt;}
.wsb_c01207{word-spacing:0.050460pt;}
.ws9_c01207{word-spacing:0.065111pt;}
.wsa_c01207{word-spacing:0.074430pt;}
.ws2_c01207{word-spacing:0.156442pt;}
.wsc_c01207{word-spacing:0.180412pt;}
.ws6_c01207{word-spacing:0.189730pt;}
.ws7_c01207{word-spacing:0.195063pt;}
._0_c01207{margin-left:-3.400567pt;}
._1_c01207{width:0.893988pt;}
._3_c01207{width:47.362694pt;}
._2_c01207{width:70.985376pt;}
._4_c01207{width:118.624363pt;}
.fs1_c01207{font-size:39.110400pt;}
.fs0_c01207{font-size:53.133867pt;}
.y0_c01207{bottom:0.000000pt;}
.y2d_c01207{bottom:39.333333pt;}
.y2c_c01207{bottom:86.150667pt;}
.y2b_c01207{bottom:100.762667pt;}
.y2a_c01207{bottom:115.374667pt;}
.y29_c01207{bottom:129.986667pt;}
.y28_c01207{bottom:144.598667pt;}
.y27_c01207{bottom:159.210667pt;}
.y26_c01207{bottom:173.822667pt;}
.y25_c01207{bottom:188.434667pt;}
.y24_c01207{bottom:203.046667pt;}
.y23_c01207{bottom:217.658667pt;}
.y22_c01207{bottom:232.270667pt;}
.y21_c01207{bottom:261.493333pt;}
.y20_c01207{bottom:276.105333pt;}
.y1f_c01207{bottom:290.717333pt;}
.y1e_c01207{bottom:319.941333pt;}
.y1d_c01207{bottom:334.553333pt;}
.y1c_c01207{bottom:349.165333pt;}
.y1b_c01207{bottom:363.777333pt;}
.y1a_c01207{bottom:378.389333pt;}
.y19_c01207{bottom:393.000000pt;}
.y18_c01207{bottom:407.612000pt;}
.y17_c01207{bottom:451.448000pt;}
.y16_c01207{bottom:466.060000pt;}
.y15_c01207{bottom:480.672000pt;}
.y14_c01207{bottom:495.284000pt;}
.y13_c01207{bottom:509.896000pt;}
.y12_c01207{bottom:524.508000pt;}
.y11_c01207{bottom:539.118667pt;}
.y10_c01207{bottom:553.730667pt;}
.yf_c01207{bottom:568.342667pt;}
.ye_c01207{bottom:582.954667pt;}
.yd_c01207{bottom:597.566667pt;}
.yc_c01207{bottom:612.178667pt;}
.yb_c01207{bottom:626.790667pt;}
.ya_c01207{bottom:641.402667pt;}
.y9_c01207{bottom:656.014667pt;}
.y8_c01207{bottom:670.626667pt;}
.y7_c01207{bottom:699.849333pt;}
.y6_c01207{bottom:714.461333pt;}
.y5_c01207{bottom:758.297333pt;}
.y4_c01207{bottom:772.909333pt;}
.y3_c01207{bottom:787.189333pt;}
.y2_c01207{bottom:1015.049333pt;}
.y1_c01207{bottom:1030.989333pt;}
.h3_c01207{height:31.280681pt;}
.h4_c01207{height:32.006363pt;}
.h2_c01207{height:46.518078pt;}
.h0_c01207{height:1122.520000pt;}
.h1_c01207{height:1122.666667pt;}
.w0_c01207{width:793.706667pt;}
.w1_c01207{width:794.000000pt;}
.x0_c01207{left:0.000000pt;}
.x1_c01207{left:113.385333pt;}
.x2_c01207{left:121.886667pt;}
.x3_c01207{left:127.796000pt;}
.x4_c01207{left:157.340000pt;}
.x5_c01207{left:386.888000pt;}
}





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

.ir_c01208:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_a742d37552c2b914dbf2b4ca.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01208;src:url('chunks/assets/font_e90c20b4539bcbba90893959.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01208;src:url('chunks/assets/font_477cfee232bd8a8f73ff2087.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01208;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01208;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01208{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls3_c01208{letter-spacing:0.000000px;}
.ls0_c01208{letter-spacing:0.087998px;}
.ls2_c01208{letter-spacing:0.098482px;}
.ls1_c01208{letter-spacing:0.104482px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01208{word-spacing:-26.575517px;}
.ws17_c01208{word-spacing:-26.487518px;}
.ws11_c01208{word-spacing:-20.861684px;}
.ws10_c01208{word-spacing:-20.323704px;}
.wsf_c01208{word-spacing:-18.829314px;}
.ws5_c01208{word-spacing:-18.769538px;}
.ws14_c01208{word-spacing:-18.530436px;}
.ws12_c01208{word-spacing:-18.410885px;}
.ws15_c01208{word-spacing:-17.813129px;}
.wsd_c01208{word-spacing:-17.275148px;}
.wsc_c01208{word-spacing:-17.215373px;}
.wse_c01208{word-spacing:-17.155597px;}
.ws8_c01208{word-spacing:-15.601432px;}
.ws4_c01208{word-spacing:-14.943900px;}
.ws9_c01208{word-spacing:-13.808164px;}
.ws7_c01208{word-spacing:-13.748388px;}
.wsa_c01208{word-spacing:-12.732203px;}
.wsb_c01208{word-spacing:-12.672427px;}
.ws13_c01208{word-spacing:-12.074671px;}
.ws1_c01208{word-spacing:-9.988424px;}
.ws3_c01208{word-spacing:-9.987499px;}
.ws1b_c01208{word-spacing:0.000000px;}
.ws6_c01208{word-spacing:0.017856px;}
.ws18_c01208{word-spacing:0.043999px;}
.ws16_c01208{word-spacing:0.175997px;}
.ws1a_c01208{word-spacing:0.213446px;}
.ws19_c01208{word-spacing:0.219446px;}
.ws0_c01208{word-spacing:43.038600px;}
._2_c01208{margin-left:-9.554569px;}
._1_c01208{margin-left:-6.369713px;}
._7_c01208{margin-left:-4.656358px;}
._5_c01208{margin-left:-2.998955px;}
._0_c01208{margin-left:-1.549390px;}
._b_c01208{width:1.005737px;}
._a_c01208{width:16.228422px;}
._8_c01208{width:17.505421px;}
._3_c01208{width:19.935816px;}
._6_c01208{width:21.220338px;}
._9_c01208{width:23.628312px;}
._4_c01208{width:29.529146px;}
.fc5_c01208{color:rgb(79,153,5);}
.fc3_c01208{color:rgb(33,74,135);}
.fc2_c01208{color:rgb(143,89,3);}
.fc4_c01208{color:rgb(207,92,0);}
.fc1_c01208{color:rgb(6,69,173);}
.fc0_c01208{color:rgb(0,0,0);}
.fs2_c01208{font-size:43.999200px;}
.fs1_c01208{font-size:59.775600px;}
.fs0_c01208{font-size:86.077200px;}
.y0_c01208{bottom:0.000000px;}
.y1d_c01208{bottom:44.250000px;}
.y1c_c01208{bottom:82.051500px;}
.y1b_c01208{bottom:98.490000px;}
.y1a_c01208{bottom:114.927000px;}
.y19_c01208{bottom:131.365500px;}
.y18_c01208{bottom:147.430500px;}
.y17_c01208{bottom:194.128500px;}
.y16_c01208{bottom:212.061000px;}
.y15_c01208{bottom:229.993500px;}
.y14_c01208{bottom:247.926000px;}
.y13_c01208{bottom:265.858500px;}
.y12_c01208{bottom:283.792500px;}
.y11_c01208{bottom:301.725000px;}
.y10_c01208{bottom:342.058500px;}
.yf_c01208{bottom:371.443500px;}
.ye_c01208{bottom:400.828500px;}
.yd_c01208{bottom:430.213500px;}
.yc_c01208{bottom:448.146000px;}
.yb_c01208{bottom:488.479500px;}
.ya_c01208{bottom:506.412000px;}
.y9_c01208{bottom:533.059500px;}
.y8_c01208{bottom:550.993500px;}
.y7_c01208{bottom:568.926000px;}
.y6_c01208{bottom:586.858500px;}
.y5_c01208{bottom:613.506000px;}
.y4_c01208{bottom:640.153500px;}
.y3_c01208{bottom:666.801000px;}
.y2_c01208{bottom:693.448500px;}
.y1_c01208{bottom:735.469500px;}
.h5_c01208{height:35.190766px;}
.h6_c01208{height:36.007158px;}
.h3_c01208{height:40.511979px;}
.h4_c01208{height:52.332837px;}
.h2_c01208{height:58.337477px;}
.h0_c01208{height:1262.835000px;}
.h1_c01208{height:1263.000000px;}
.w0_c01208{width:892.920000px;}
.w1_c01208{width:893.250000px;}
.x0_c01208{left:0.000000px;}
.x1_c01208{left:127.558500px;}
.x4_c01208{left:137.122500px;}
.x2_c01208{left:152.215500px;}
.x3_c01208{left:164.919000px;}
.x5_c01208{left:435.249000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls3_c01208{letter-spacing:0.000000pt;}
.ls0_c01208{letter-spacing:0.078221pt;}
.ls2_c01208{letter-spacing:0.087539pt;}
.ls1_c01208{letter-spacing:0.092873pt;}
.ws2_c01208{word-spacing:-23.622682pt;}
.ws17_c01208{word-spacing:-23.544461pt;}
.ws11_c01208{word-spacing:-18.543719pt;}
.ws10_c01208{word-spacing:-18.065515pt;}
.wsf_c01208{word-spacing:-16.737168pt;}
.ws5_c01208{word-spacing:-16.684034pt;}
.ws14_c01208{word-spacing:-16.471499pt;}
.ws12_c01208{word-spacing:-16.365231pt;}
.ws15_c01208{word-spacing:-15.833892pt;}
.wsd_c01208{word-spacing:-15.355687pt;}
.wsc_c01208{word-spacing:-15.302554pt;}
.wse_c01208{word-spacing:-15.249420pt;}
.ws8_c01208{word-spacing:-13.867939pt;}
.ws4_c01208{word-spacing:-13.283467pt;}
.ws9_c01208{word-spacing:-12.273923pt;}
.ws7_c01208{word-spacing:-12.220789pt;}
.wsa_c01208{word-spacing:-11.317514pt;}
.wsb_c01208{word-spacing:-11.264380pt;}
.ws13_c01208{word-spacing:-10.733041pt;}
.ws1_c01208{word-spacing:-8.878599pt;}
.ws3_c01208{word-spacing:-8.877777pt;}
.ws1b_c01208{word-spacing:0.000000pt;}
.ws6_c01208{word-spacing:0.015872pt;}
.ws18_c01208{word-spacing:0.039110pt;}
.ws16_c01208{word-spacing:0.156442pt;}
.ws1a_c01208{word-spacing:0.189730pt;}
.ws19_c01208{word-spacing:0.195063pt;}
.ws0_c01208{word-spacing:38.256533pt;}
._2_c01208{margin-left:-8.492950pt;}
._1_c01208{margin-left:-5.661967pt;}
._7_c01208{margin-left:-4.138985pt;}
._5_c01208{margin-left:-2.665738pt;}
._0_c01208{margin-left:-1.377235pt;}
._b_c01208{width:0.893988pt;}
._a_c01208{width:14.425264pt;}
._8_c01208{width:15.560374pt;}
._3_c01208{width:17.720725pt;}
._6_c01208{width:18.862523pt;}
._9_c01208{width:21.002944pt;}
._4_c01208{width:26.248130pt;}
.fs2_c01208{font-size:39.110400pt;}
.fs1_c01208{font-size:53.133867pt;}
.fs0_c01208{font-size:76.513067pt;}
.y0_c01208{bottom:0.000000pt;}
.y1d_c01208{bottom:39.333333pt;}
.y1c_c01208{bottom:72.934667pt;}
.y1b_c01208{bottom:87.546667pt;}
.y1a_c01208{bottom:102.157333pt;}
.y19_c01208{bottom:116.769333pt;}
.y18_c01208{bottom:131.049333pt;}
.y17_c01208{bottom:172.558667pt;}
.y16_c01208{bottom:188.498667pt;}
.y15_c01208{bottom:204.438667pt;}
.y14_c01208{bottom:220.378667pt;}
.y13_c01208{bottom:236.318667pt;}
.y12_c01208{bottom:252.260000pt;}
.y11_c01208{bottom:268.200000pt;}
.y10_c01208{bottom:304.052000pt;}
.yf_c01208{bottom:330.172000pt;}
.ye_c01208{bottom:356.292000pt;}
.yd_c01208{bottom:382.412000pt;}
.yc_c01208{bottom:398.352000pt;}
.yb_c01208{bottom:434.204000pt;}
.ya_c01208{bottom:450.144000pt;}
.y9_c01208{bottom:473.830667pt;}
.y8_c01208{bottom:489.772000pt;}
.y7_c01208{bottom:505.712000pt;}
.y6_c01208{bottom:521.652000pt;}
.y5_c01208{bottom:545.338667pt;}
.y4_c01208{bottom:569.025333pt;}
.y3_c01208{bottom:592.712000pt;}
.y2_c01208{bottom:616.398667pt;}
.y1_c01208{bottom:653.750667pt;}
.h5_c01208{height:31.280681pt;}
.h6_c01208{height:32.006363pt;}
.h3_c01208{height:36.010648pt;}
.h4_c01208{height:46.518078pt;}
.h2_c01208{height:51.855535pt;}
.h0_c01208{height:1122.520000pt;}
.h1_c01208{height:1122.666667pt;}
.w0_c01208{width:793.706667pt;}
.w1_c01208{width:794.000000pt;}
.x0_c01208{left:0.000000pt;}
.x1_c01208{left:113.385333pt;}
.x4_c01208{left:121.886667pt;}
.x2_c01208{left:135.302667pt;}
.x3_c01208{left:146.594667pt;}
.x5_c01208{left:386.888000pt;}
}





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

.ir_c01209:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01209;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01209;src:url('chunks/assets/font_bed85df6eb9ac9d872a12a73.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01209;src:url('chunks/assets/font_f1b316eec8150e561a59df1c.woff2')format("woff");}.ff4_c01209{font-family:ff4_c01209;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.ls4_c01209{letter-spacing:0.000000px;}
.ls1_c01209{letter-spacing:0.087998px;}
.ls2_c01209{letter-spacing:0.098482px;}
.ls0_c01209{letter-spacing:0.104482px;}
.ls3_c01209{letter-spacing:26.690482px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01209{word-spacing:-26.575517px;}
.ws0_c01209{word-spacing:-26.487518px;}
.ws2_c01209{word-spacing:0.000000px;}
.ws7_c01209{word-spacing:0.036900px;}
.ws4_c01209{word-spacing:0.043999px;}
.ws6_c01209{word-spacing:0.053933px;}
.wsa_c01209{word-spacing:0.064416px;}
.ws8_c01209{word-spacing:0.070416px;}
.wsb_c01209{word-spacing:0.100217px;}
.ws5_c01209{word-spacing:0.175997px;}
.ws3_c01209{word-spacing:0.213446px;}
.ws9_c01209{word-spacing:0.219446px;}
._0_c01209{width:1.031604px;}
._1_c01209{width:80.166542px;}
.fc5_c01209{color:rgb(0,0,207);}
.fc4_c01209{color:rgb(143,89,3);}
.fc3_c01209{color:rgb(79,153,5);}
.fc2_c01209{color:rgb(207,92,0);}
.fc1_c01209{color:rgb(0,0,0);}
.fc0_c01209{color:rgb(33,74,135);}
.fs0_c01209{font-size:43.999200px;}
.fs1_c01209{font-size:59.775600px;}
.y0_c01209{bottom:0.000000px;}
.y39_c01209{bottom:44.250000px;}
.y38_c01209{bottom:91.369500px;}
.y37_c01209{bottom:107.808000px;}
.y36_c01209{bottom:124.246500px;}
.y35_c01209{bottom:140.685000px;}
.y34_c01209{bottom:157.123500px;}
.y33_c01209{bottom:173.562000px;}
.y32_c01209{bottom:190.000500px;}
.y31_c01209{bottom:206.437500px;}
.y30_c01209{bottom:222.876000px;}
.y2f_c01209{bottom:239.314500px;}
.y2e_c01209{bottom:255.753000px;}
.y2d_c01209{bottom:272.191500px;}
.y2c_c01209{bottom:288.630000px;}
.y2b_c01209{bottom:305.068500px;}
.y2a_c01209{bottom:321.507000px;}
.y29_c01209{bottom:337.945500px;}
.y28_c01209{bottom:354.384000px;}
.y27_c01209{bottom:370.822500px;}
.y26_c01209{bottom:387.259500px;}
.y25_c01209{bottom:403.698000px;}
.y24_c01209{bottom:436.575000px;}
.y23_c01209{bottom:453.013500px;}
.y22_c01209{bottom:469.452000px;}
.y21_c01209{bottom:485.890500px;}
.y20_c01209{bottom:502.329000px;}
.y1f_c01209{bottom:518.767500px;}
.y1e_c01209{bottom:551.643000px;}
.y1d_c01209{bottom:568.081500px;}
.y1c_c01209{bottom:584.520000px;}
.y1b_c01209{bottom:600.958500px;}
.y1a_c01209{bottom:633.835500px;}
.y19_c01209{bottom:650.274000px;}
.y18_c01209{bottom:666.712500px;}
.y17_c01209{bottom:683.151000px;}
.y16_c01209{bottom:716.028000px;}
.y15_c01209{bottom:732.465000px;}
.y14_c01209{bottom:748.903500px;}
.y13_c01209{bottom:765.342000px;}
.y12_c01209{bottom:781.780500px;}
.y11_c01209{bottom:798.219000px;}
.y10_c01209{bottom:814.657500px;}
.yf_c01209{bottom:847.534500px;}
.ye_c01209{bottom:863.973000px;}
.yd_c01209{bottom:880.411500px;}
.yc_c01209{bottom:913.287000px;}
.yb_c01209{bottom:929.725500px;}
.ya_c01209{bottom:979.041000px;}
.y9_c01209{bottom:995.479500px;}
.y8_c01209{bottom:1028.356500px;}
.y7_c01209{bottom:1044.795000px;}
.y6_c01209{bottom:1061.232000px;}
.y5_c01209{bottom:1077.670500px;}
.y4_c01209{bottom:1110.547500px;}
.y3_c01209{bottom:1126.986000px;}
.y2_c01209{bottom:1143.424500px;}
.y1_c01209{bottom:1159.863000px;}
.h3_c01209{height:35.190766px;}
.h2_c01209{height:36.007158px;}
.h4_c01209{height:52.332837px;}
.h0_c01209{height:1262.835000px;}
.h1_c01209{height:1263.000000px;}
.w0_c01209{width:892.920000px;}
.w1_c01209{width:893.250000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:137.122500px;}
.x2_c01209{left:143.770500px;}
.x5_c01209{left:170.359500px;}
.x4_c01209{left:177.007500px;}
.x3_c01209{left:203.596500px;}
.x6_c01209{left:210.243000px;}
.x7_c01209{left:230.185500px;}
.x8_c01209{left:256.774500px;}
.x9_c01209{left:435.249000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls4_c01209{letter-spacing:0.000000pt;}
.ls1_c01209{letter-spacing:0.078221pt;}
.ls2_c01209{letter-spacing:0.087539pt;}
.ls0_c01209{letter-spacing:0.092873pt;}
.ls3_c01209{letter-spacing:23.724873pt;}
.ws1_c01209{word-spacing:-23.622682pt;}
.ws0_c01209{word-spacing:-23.544461pt;}
.ws2_c01209{word-spacing:0.000000pt;}
.ws7_c01209{word-spacing:0.032800pt;}
.ws4_c01209{word-spacing:0.039110pt;}
.ws6_c01209{word-spacing:0.047940pt;}
.wsa_c01209{word-spacing:0.057259pt;}
.ws8_c01209{word-spacing:0.062592pt;}
.wsb_c01209{word-spacing:0.089082pt;}
.ws5_c01209{word-spacing:0.156442pt;}
.ws3_c01209{word-spacing:0.189730pt;}
.ws9_c01209{word-spacing:0.195063pt;}
._0_c01209{width:0.916981pt;}
._1_c01209{width:71.259149pt;}
.fs0_c01209{font-size:39.110400pt;}
.fs1_c01209{font-size:53.133867pt;}
.y0_c01209{bottom:0.000000pt;}
.y39_c01209{bottom:39.333333pt;}
.y38_c01209{bottom:81.217333pt;}
.y37_c01209{bottom:95.829333pt;}
.y36_c01209{bottom:110.441333pt;}
.y35_c01209{bottom:125.053333pt;}
.y34_c01209{bottom:139.665333pt;}
.y33_c01209{bottom:154.277333pt;}
.y32_c01209{bottom:168.889333pt;}
.y31_c01209{bottom:183.500000pt;}
.y30_c01209{bottom:198.112000pt;}
.y2f_c01209{bottom:212.724000pt;}
.y2e_c01209{bottom:227.336000pt;}
.y2d_c01209{bottom:241.948000pt;}
.y2c_c01209{bottom:256.560000pt;}
.y2b_c01209{bottom:271.172000pt;}
.y2a_c01209{bottom:285.784000pt;}
.y29_c01209{bottom:300.396000pt;}
.y28_c01209{bottom:315.008000pt;}
.y27_c01209{bottom:329.620000pt;}
.y26_c01209{bottom:344.230667pt;}
.y25_c01209{bottom:358.842667pt;}
.y24_c01209{bottom:388.066667pt;}
.y23_c01209{bottom:402.678667pt;}
.y22_c01209{bottom:417.290667pt;}
.y21_c01209{bottom:431.902667pt;}
.y20_c01209{bottom:446.514667pt;}
.y1f_c01209{bottom:461.126667pt;}
.y1e_c01209{bottom:490.349333pt;}
.y1d_c01209{bottom:504.961333pt;}
.y1c_c01209{bottom:519.573333pt;}
.y1b_c01209{bottom:534.185333pt;}
.y1a_c01209{bottom:563.409333pt;}
.y19_c01209{bottom:578.021333pt;}
.y18_c01209{bottom:592.633333pt;}
.y17_c01209{bottom:607.245333pt;}
.y16_c01209{bottom:636.469333pt;}
.y15_c01209{bottom:651.080000pt;}
.y14_c01209{bottom:665.692000pt;}
.y13_c01209{bottom:680.304000pt;}
.y12_c01209{bottom:694.916000pt;}
.y11_c01209{bottom:709.528000pt;}
.y10_c01209{bottom:724.140000pt;}
.yf_c01209{bottom:753.364000pt;}
.ye_c01209{bottom:767.976000pt;}
.yd_c01209{bottom:782.588000pt;}
.yc_c01209{bottom:811.810667pt;}
.yb_c01209{bottom:826.422667pt;}
.ya_c01209{bottom:870.258667pt;}
.y9_c01209{bottom:884.870667pt;}
.y8_c01209{bottom:914.094667pt;}
.y7_c01209{bottom:928.706667pt;}
.y6_c01209{bottom:943.317333pt;}
.y5_c01209{bottom:957.929333pt;}
.y4_c01209{bottom:987.153333pt;}
.y3_c01209{bottom:1001.765333pt;}
.y2_c01209{bottom:1016.377333pt;}
.y1_c01209{bottom:1030.989333pt;}
.h3_c01209{height:31.280681pt;}
.h2_c01209{height:32.006363pt;}
.h4_c01209{height:46.518078pt;}
.h0_c01209{height:1122.520000pt;}
.h1_c01209{height:1122.666667pt;}
.w0_c01209{width:793.706667pt;}
.w1_c01209{width:794.000000pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:121.886667pt;}
.x2_c01209{left:127.796000pt;}
.x5_c01209{left:151.430667pt;}
.x4_c01209{left:157.340000pt;}
.x3_c01209{left:180.974667pt;}
.x6_c01209{left:186.882667pt;}
.x7_c01209{left:204.609333pt;}
.x8_c01209{left:228.244000pt;}
.x9_c01209{left:386.888000pt;}
}





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

.ir_c01210:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_54e521f5d7e1eb05fbda821a.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01210;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01210;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01210;src:url('chunks/assets/font_ed660eb99a1ce3a09d5f251d.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls5_c01210{letter-spacing:0.000000px;}
.ls0_c01210{letter-spacing:0.087998px;}
.ls1_c01210{letter-spacing:0.098482px;}
.ls4_c01210{letter-spacing:0.104482px;}
.ls2_c01210{letter-spacing:0.140482px;}
.ls3_c01210{letter-spacing:0.146482px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01210{word-spacing:-33.713438px;}
.ws0_c01210{word-spacing:-26.575517px;}
.ws2_c01210{word-spacing:-26.487518px;}
.ws4_c01210{word-spacing:0.000000px;}
.ws3_c01210{word-spacing:0.043999px;}
.ws1_c01210{word-spacing:0.053933px;}
.ws5_c01210{word-spacing:0.056767px;}
.ws6_c01210{word-spacing:0.213446px;}
._1_c01210{margin-left:-2.211697px;}
._0_c01210{width:1.056286px;}
.fc5_c01210{color:rgb(0,0,207);}
.fc4_c01210{color:rgb(79,153,5);}
.fc3_c01210{color:rgb(33,74,135);}
.fc2_c01210{color:rgb(207,92,0);}
.fc1_c01210{color:rgb(143,89,3);}
.fc0_c01210{color:rgb(0,0,0);}
.fs0_c01210{font-size:43.999200px;}
.fs1_c01210{font-size:59.775600px;}
.y0_c01210{bottom:0.000000px;}
.y2b_c01210{bottom:44.250000px;}
.y2a_c01210{bottom:436.575000px;}
.y29_c01210{bottom:453.013500px;}
.y28_c01210{bottom:469.452000px;}
.y27_c01210{bottom:485.890500px;}
.y26_c01210{bottom:502.329000px;}
.y25_c01210{bottom:518.767500px;}
.y24_c01210{bottom:535.206000px;}
.y23_c01210{bottom:551.643000px;}
.y22_c01210{bottom:568.081500px;}
.y21_c01210{bottom:584.520000px;}
.y20_c01210{bottom:600.958500px;}
.y1f_c01210{bottom:633.835500px;}
.y1e_c01210{bottom:650.274000px;}
.y1d_c01210{bottom:666.712500px;}
.y1c_c01210{bottom:699.589500px;}
.y1b_c01210{bottom:716.028000px;}
.y1a_c01210{bottom:732.465000px;}
.y19_c01210{bottom:748.903500px;}
.y18_c01210{bottom:765.342000px;}
.y17_c01210{bottom:781.780500px;}
.y16_c01210{bottom:798.219000px;}
.y15_c01210{bottom:814.657500px;}
.y14_c01210{bottom:831.096000px;}
.y13_c01210{bottom:847.534500px;}
.y12_c01210{bottom:863.973000px;}
.y11_c01210{bottom:880.411500px;}
.y10_c01210{bottom:896.848500px;}
.yf_c01210{bottom:913.287000px;}
.ye_c01210{bottom:929.725500px;}
.yd_c01210{bottom:946.164000px;}
.yc_c01210{bottom:962.602500px;}
.yb_c01210{bottom:979.041000px;}
.ya_c01210{bottom:995.479500px;}
.y9_c01210{bottom:1011.918000px;}
.y8_c01210{bottom:1028.356500px;}
.y7_c01210{bottom:1044.795000px;}
.y6_c01210{bottom:1061.232000px;}
.y5_c01210{bottom:1077.670500px;}
.y4_c01210{bottom:1094.109000px;}
.y3_c01210{bottom:1110.547500px;}
.y2_c01210{bottom:1143.424500px;}
.y1_c01210{bottom:1159.863000px;}
.h3_c01210{height:35.190766px;}
.h2_c01210{height:36.007158px;}
.h4_c01210{height:52.332837px;}
.h0_c01210{height:1262.835000px;}
.h1_c01210{height:1263.000000px;}
.w0_c01210{width:892.920000px;}
.w1_c01210{width:893.250000px;}
.x0_c01210{left:0.000000px;}
.x1_c01210{left:137.122500px;}
.x2_c01210{left:143.770500px;}
.x6_c01210{left:177.007500px;}
.x5_c01210{left:230.185500px;}
.x3_c01210{left:243.480000px;}
.x4_c01210{left:276.715500px;}
.x7_c01210{left:435.526500px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls5_c01210{letter-spacing:0.000000pt;}
.ls0_c01210{letter-spacing:0.078221pt;}
.ls1_c01210{letter-spacing:0.087539pt;}
.ls4_c01210{letter-spacing:0.092873pt;}
.ls2_c01210{letter-spacing:0.124873pt;}
.ls3_c01210{letter-spacing:0.130206pt;}
.ws7_c01210{word-spacing:-29.967501pt;}
.ws0_c01210{word-spacing:-23.622682pt;}
.ws2_c01210{word-spacing:-23.544461pt;}
.ws4_c01210{word-spacing:0.000000pt;}
.ws3_c01210{word-spacing:0.039110pt;}
.ws1_c01210{word-spacing:0.047940pt;}
.ws5_c01210{word-spacing:0.050460pt;}
.ws6_c01210{word-spacing:0.189730pt;}
._1_c01210{margin-left:-1.965953pt;}
._0_c01210{width:0.938921pt;}
.fs0_c01210{font-size:39.110400pt;}
.fs1_c01210{font-size:53.133867pt;}
.y0_c01210{bottom:0.000000pt;}
.y2b_c01210{bottom:39.333333pt;}
.y2a_c01210{bottom:388.066667pt;}
.y29_c01210{bottom:402.678667pt;}
.y28_c01210{bottom:417.290667pt;}
.y27_c01210{bottom:431.902667pt;}
.y26_c01210{bottom:446.514667pt;}
.y25_c01210{bottom:461.126667pt;}
.y24_c01210{bottom:475.738667pt;}
.y23_c01210{bottom:490.349333pt;}
.y22_c01210{bottom:504.961333pt;}
.y21_c01210{bottom:519.573333pt;}
.y20_c01210{bottom:534.185333pt;}
.y1f_c01210{bottom:563.409333pt;}
.y1e_c01210{bottom:578.021333pt;}
.y1d_c01210{bottom:592.633333pt;}
.y1c_c01210{bottom:621.857333pt;}
.y1b_c01210{bottom:636.469333pt;}
.y1a_c01210{bottom:651.080000pt;}
.y19_c01210{bottom:665.692000pt;}
.y18_c01210{bottom:680.304000pt;}
.y17_c01210{bottom:694.916000pt;}
.y16_c01210{bottom:709.528000pt;}
.y15_c01210{bottom:724.140000pt;}
.y14_c01210{bottom:738.752000pt;}
.y13_c01210{bottom:753.364000pt;}
.y12_c01210{bottom:767.976000pt;}
.y11_c01210{bottom:782.588000pt;}
.y10_c01210{bottom:797.198667pt;}
.yf_c01210{bottom:811.810667pt;}
.ye_c01210{bottom:826.422667pt;}
.yd_c01210{bottom:841.034667pt;}
.yc_c01210{bottom:855.646667pt;}
.yb_c01210{bottom:870.258667pt;}
.ya_c01210{bottom:884.870667pt;}
.y9_c01210{bottom:899.482667pt;}
.y8_c01210{bottom:914.094667pt;}
.y7_c01210{bottom:928.706667pt;}
.y6_c01210{bottom:943.317333pt;}
.y5_c01210{bottom:957.929333pt;}
.y4_c01210{bottom:972.541333pt;}
.y3_c01210{bottom:987.153333pt;}
.y2_c01210{bottom:1016.377333pt;}
.y1_c01210{bottom:1030.989333pt;}
.h3_c01210{height:31.280681pt;}
.h2_c01210{height:32.006363pt;}
.h4_c01210{height:46.518078pt;}
.h0_c01210{height:1122.520000pt;}
.h1_c01210{height:1122.666667pt;}
.w0_c01210{width:793.706667pt;}
.w1_c01210{width:794.000000pt;}
.x0_c01210{left:0.000000pt;}
.x1_c01210{left:121.886667pt;}
.x2_c01210{left:127.796000pt;}
.x6_c01210{left:157.340000pt;}
.x5_c01210{left:204.609333pt;}
.x3_c01210{left:216.426667pt;}
.x4_c01210{left:245.969333pt;}
.x7_c01210{left:387.134667pt;}
}





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

.ir_c01211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_0887fef5e42a2a668056eb1a.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01211;src:url('chunks/assets/font_1e8b328c6231af97217d02c3.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01211;src:url('chunks/assets/font_bb27aee210b5d11a4eb54278.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01211;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01211;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01211{font-family:ff5_c01211;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01211{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01211{vertical-align:0.000000px;}
.ls3_c01211{letter-spacing:0.000000px;}
.ls0_c01211{letter-spacing:0.087998px;}
.ls2_c01211{letter-spacing:0.098482px;}
.ls1_c01211{letter-spacing:0.104482px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01211{word-spacing:-33.713438px;}
.ws2_c01211{word-spacing:-26.575517px;}
.wse_c01211{word-spacing:-26.487518px;}
.ws9_c01211{word-spacing:-21.553319px;}
.ws8_c01211{word-spacing:-21.519216px;}
.ws5_c01211{word-spacing:-18.769538px;}
.ws7_c01211{word-spacing:-16.019861px;}
.ws4_c01211{word-spacing:-14.943900px;}
.wsa_c01211{word-spacing:-14.107042px;}
.wsb_c01211{word-spacing:-12.074671px;}
.ws1_c01211{word-spacing:-9.988424px;}
.ws3_c01211{word-spacing:-9.987499px;}
.ws6_c01211{word-spacing:-4.536144px;}
.ws12_c01211{word-spacing:0.000000px;}
.wsf_c01211{word-spacing:0.043999px;}
.ws15_c01211{word-spacing:0.056767px;}
.ws13_c01211{word-spacing:0.073250px;}
.ws14_c01211{word-spacing:0.083734px;}
.wsd_c01211{word-spacing:0.175997px;}
.ws16_c01211{word-spacing:0.202963px;}
.ws10_c01211{word-spacing:0.213446px;}
.ws11_c01211{word-spacing:0.219446px;}
.ws0_c01211{word-spacing:43.038600px;}
._2_c01211{margin-left:-9.554569px;}
._1_c01211{margin-left:-6.369713px;}
._5_c01211{margin-left:-3.825638px;}
._0_c01211{margin-left:-1.549390px;}
._6_c01211{width:1.005737px;}
._3_c01211{width:19.935816px;}
._4_c01211{width:40.109428px;}
._8_c01211{width:53.283031px;}
._7_c01211{width:79.858548px;}
._9_c01211{width:133.452408px;}
.fc6_c01211{color:rgb(0,0,207);}
.fc5_c01211{color:rgb(79,153,5);}
.fc3_c01211{color:rgb(33,74,135);}
.fc2_c01211{color:rgb(143,89,3);}
.fc4_c01211{color:rgb(207,92,0);}
.fc1_c01211{color:rgb(6,69,173);}
.fc0_c01211{color:rgb(0,0,0);}
.fs2_c01211{font-size:43.999200px;}
.fs1_c01211{font-size:59.775600px;}
.fs0_c01211{font-size:86.077200px;}
.y0_c01211{bottom:0.000000px;}
.y20_c01211{bottom:44.250000px;}
.y1f_c01211{bottom:86.982000px;}
.y1e_c01211{bottom:103.420500px;}
.y1d_c01211{bottom:119.859000px;}
.y1c_c01211{bottom:136.297500px;}
.y1b_c01211{bottom:152.736000px;}
.y1a_c01211{bottom:169.174500px;}
.y19_c01211{bottom:185.613000px;}
.y18_c01211{bottom:202.051500px;}
.y17_c01211{bottom:218.490000px;}
.y16_c01211{bottom:234.927000px;}
.y15_c01211{bottom:251.365500px;}
.y14_c01211{bottom:267.804000px;}
.y13_c01211{bottom:284.242500px;}
.y12_c01211{bottom:300.681000px;}
.y11_c01211{bottom:317.119500px;}
.y10_c01211{bottom:349.996500px;}
.yf_c01211{bottom:366.435000px;}
.ye_c01211{bottom:415.749000px;}
.yd_c01211{bottom:432.187500px;}
.yc_c01211{bottom:448.252500px;}
.yb_c01211{bottom:493.890000px;}
.ya_c01211{bottom:511.822500px;}
.y9_c01211{bottom:529.756500px;}
.y8_c01211{bottom:547.689000px;}
.y7_c01211{bottom:565.621500px;}
.y6_c01211{bottom:583.554000px;}
.y5_c01211{bottom:610.633500px;}
.y4_c01211{bottom:637.714500px;}
.y3_c01211{bottom:664.794000px;}
.y2_c01211{bottom:691.873500px;}
.y1_c01211{bottom:734.407500px;}
.h5_c01211{height:35.190766px;}
.h6_c01211{height:36.007158px;}
.h3_c01211{height:40.511979px;}
.h4_c01211{height:52.332837px;}
.h2_c01211{height:58.337477px;}
.h0_c01211{height:1262.835000px;}
.h1_c01211{height:1263.000000px;}
.w0_c01211{width:892.920000px;}
.w1_c01211{width:893.250000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:127.558500px;}
.x2_c01211{left:137.122500px;}
.x3_c01211{left:143.770500px;}
.x4_c01211{left:435.249000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls3_c01211{letter-spacing:0.000000pt;}
.ls0_c01211{letter-spacing:0.078221pt;}
.ls2_c01211{letter-spacing:0.087539pt;}
.ls1_c01211{letter-spacing:0.092873pt;}
.wsc_c01211{word-spacing:-29.967501pt;}
.ws2_c01211{word-spacing:-23.622682pt;}
.wse_c01211{word-spacing:-23.544461pt;}
.ws9_c01211{word-spacing:-19.158506pt;}
.ws8_c01211{word-spacing:-19.128192pt;}
.ws5_c01211{word-spacing:-16.684034pt;}
.ws7_c01211{word-spacing:-14.239876pt;}
.ws4_c01211{word-spacing:-13.283467pt;}
.wsa_c01211{word-spacing:-12.539593pt;}
.wsb_c01211{word-spacing:-10.733041pt;}
.ws1_c01211{word-spacing:-8.878599pt;}
.ws3_c01211{word-spacing:-8.877777pt;}
.ws6_c01211{word-spacing:-4.032128pt;}
.ws12_c01211{word-spacing:0.000000pt;}
.wsf_c01211{word-spacing:0.039110pt;}
.ws15_c01211{word-spacing:0.050460pt;}
.ws13_c01211{word-spacing:0.065111pt;}
.ws14_c01211{word-spacing:0.074430pt;}
.wsd_c01211{word-spacing:0.156442pt;}
.ws16_c01211{word-spacing:0.180412pt;}
.ws10_c01211{word-spacing:0.189730pt;}
.ws11_c01211{word-spacing:0.195063pt;}
.ws0_c01211{word-spacing:38.256533pt;}
._2_c01211{margin-left:-8.492950pt;}
._1_c01211{margin-left:-5.661967pt;}
._5_c01211{margin-left:-3.400567pt;}
._0_c01211{margin-left:-1.377235pt;}
._6_c01211{width:0.893988pt;}
._3_c01211{width:17.720725pt;}
._4_c01211{width:35.652825pt;}
._8_c01211{width:47.362694pt;}
._7_c01211{width:70.985376pt;}
._9_c01211{width:118.624363pt;}
.fs2_c01211{font-size:39.110400pt;}
.fs1_c01211{font-size:53.133867pt;}
.fs0_c01211{font-size:76.513067pt;}
.y0_c01211{bottom:0.000000pt;}
.y20_c01211{bottom:39.333333pt;}
.y1f_c01211{bottom:77.317333pt;}
.y1e_c01211{bottom:91.929333pt;}
.y1d_c01211{bottom:106.541333pt;}
.y1c_c01211{bottom:121.153333pt;}
.y1b_c01211{bottom:135.765333pt;}
.y1a_c01211{bottom:150.377333pt;}
.y19_c01211{bottom:164.989333pt;}
.y18_c01211{bottom:179.601333pt;}
.y17_c01211{bottom:194.213333pt;}
.y16_c01211{bottom:208.824000pt;}
.y15_c01211{bottom:223.436000pt;}
.y14_c01211{bottom:238.048000pt;}
.y13_c01211{bottom:252.660000pt;}
.y12_c01211{bottom:267.272000pt;}
.y11_c01211{bottom:281.884000pt;}
.y10_c01211{bottom:311.108000pt;}
.yf_c01211{bottom:325.720000pt;}
.ye_c01211{bottom:369.554667pt;}
.yd_c01211{bottom:384.166667pt;}
.yc_c01211{bottom:398.446667pt;}
.yb_c01211{bottom:439.013333pt;}
.ya_c01211{bottom:454.953333pt;}
.y9_c01211{bottom:470.894667pt;}
.y8_c01211{bottom:486.834667pt;}
.y7_c01211{bottom:502.774667pt;}
.y6_c01211{bottom:518.714667pt;}
.y5_c01211{bottom:542.785333pt;}
.y4_c01211{bottom:566.857333pt;}
.y3_c01211{bottom:590.928000pt;}
.y2_c01211{bottom:614.998667pt;}
.y1_c01211{bottom:652.806667pt;}
.h5_c01211{height:31.280681pt;}
.h6_c01211{height:32.006363pt;}
.h3_c01211{height:36.010648pt;}
.h4_c01211{height:46.518078pt;}
.h2_c01211{height:51.855535pt;}
.h0_c01211{height:1122.520000pt;}
.h1_c01211{height:1122.666667pt;}
.w0_c01211{width:793.706667pt;}
.w1_c01211{width:794.000000pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:113.385333pt;}
.x2_c01211{left:121.886667pt;}
.x3_c01211{left:127.796000pt;}
.x4_c01211{left:386.888000pt;}
}





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

.ir_c01212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_8c2b220f3d795e6dd6052d17.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01212;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01212;src:url('chunks/assets/font_c0fcbe3f3cef0f84f73c236e.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01212;src:url('chunks/assets/font_245c66343655d9cacd452327.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01212;src:url('chunks/assets/font_e798797d65e049de6faab163.woff2')format("woff");}.ff5_c01212{font-family:ff5_c01212;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01212{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01212{vertical-align:0.000000px;}
.ls4_c01212{letter-spacing:0.000000px;}
.ls0_c01212{letter-spacing:0.087998px;}
.ls2_c01212{letter-spacing:0.098482px;}
.ls3_c01212{letter-spacing:0.104482px;}
.ls1_c01212{letter-spacing:26.690482px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01212{word-spacing:-26.575517px;}
.ws4_c01212{word-spacing:-26.487518px;}
.wse_c01212{word-spacing:-21.553319px;}
.wsd_c01212{word-spacing:-21.519216px;}
.wsa_c01212{word-spacing:-18.769538px;}
.wsc_c01212{word-spacing:-17.633802px;}
.ws9_c01212{word-spacing:-14.943900px;}
.wsf_c01212{word-spacing:-14.107042px;}
.ws10_c01212{word-spacing:-12.074671px;}
.ws7_c01212{word-spacing:-9.988424px;}
.ws8_c01212{word-spacing:-9.987499px;}
.wsb_c01212{word-spacing:-7.686144px;}
.ws3_c01212{word-spacing:0.000000px;}
.ws0_c01212{word-spacing:0.043999px;}
.ws5_c01212{word-spacing:0.213446px;}
.ws1_c01212{word-spacing:0.219446px;}
.ws6_c01212{word-spacing:43.038600px;}
._4_c01212{margin-left:-9.554569px;}
._3_c01212{margin-left:-6.369713px;}
._2_c01212{margin-left:-1.549390px;}
._1_c01212{width:1.020240px;}
._5_c01212{width:19.935816px;}
._6_c01212{width:40.109428px;}
._0_c01212{width:80.166542px;}
.fc5_c01212{color:rgb(79,153,5);}
.fc4_c01212{color:rgb(143,89,3);}
.fc3_c01212{color:rgb(0,0,0);}
.fc6_c01212{color:rgb(6,69,173);}
.fc2_c01212{color:rgb(207,92,0);}
.fc1_c01212{color:rgb(0,0,207);}
.fc0_c01212{color:rgb(33,74,135);}
.fs0_c01212{font-size:43.999200px;}
.fs2_c01212{font-size:59.775600px;}
.fs1_c01212{font-size:86.077200px;}
.y0_c01212{bottom:0.000000px;}
.y20_c01212{bottom:44.250000px;}
.y1f_c01212{bottom:82.051500px;}
.y1e_c01212{bottom:99.984000px;}
.y1d_c01212{bottom:117.916500px;}
.y1c_c01212{bottom:135.849000px;}
.y1b_c01212{bottom:162.501000px;}
.y1a_c01212{bottom:189.151500px;}
.y19_c01212{bottom:215.802000px;}
.y18_c01212{bottom:242.454000px;}
.y17_c01212{bottom:284.478000px;}
.y16_c01212{bottom:748.903500px;}
.y15_c01212{bottom:765.342000px;}
.y14_c01212{bottom:781.780500px;}
.y13_c01212{bottom:798.219000px;}
.y12_c01212{bottom:814.657500px;}
.y11_c01212{bottom:831.096000px;}
.y10_c01212{bottom:847.534500px;}
.yf_c01212{bottom:863.973000px;}
.ye_c01212{bottom:880.411500px;}
.yd_c01212{bottom:896.848500px;}
.yc_c01212{bottom:913.287000px;}
.yb_c01212{bottom:946.164000px;}
.ya_c01212{bottom:962.602500px;}
.y9_c01212{bottom:979.041000px;}
.y8_c01212{bottom:1011.918000px;}
.y7_c01212{bottom:1028.356500px;}
.y6_c01212{bottom:1044.795000px;}
.y5_c01212{bottom:1061.232000px;}
.y4_c01212{bottom:1077.670500px;}
.y3_c01212{bottom:1094.109000px;}
.y2_c01212{bottom:1110.547500px;}
.y1_c01212{bottom:1159.863000px;}
.h3_c01212{height:35.190766px;}
.h2_c01212{height:36.007158px;}
.h5_c01212{height:40.511979px;}
.h6_c01212{height:52.332837px;}
.h4_c01212{height:58.337477px;}
.h0_c01212{height:1262.835000px;}
.h1_c01212{height:1263.000000px;}
.w0_c01212{width:892.920000px;}
.w1_c01212{width:893.250000px;}
.x0_c01212{left:0.000000px;}
.x4_c01212{left:127.558500px;}
.x2_c01212{left:137.122500px;}
.x1_c01212{left:143.770500px;}
.x3_c01212{left:177.007500px;}
.x5_c01212{left:435.249000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls4_c01212{letter-spacing:0.000000pt;}
.ls0_c01212{letter-spacing:0.078221pt;}
.ls2_c01212{letter-spacing:0.087539pt;}
.ls3_c01212{letter-spacing:0.092873pt;}
.ls1_c01212{letter-spacing:23.724873pt;}
.ws2_c01212{word-spacing:-23.622682pt;}
.ws4_c01212{word-spacing:-23.544461pt;}
.wse_c01212{word-spacing:-19.158506pt;}
.wsd_c01212{word-spacing:-19.128192pt;}
.wsa_c01212{word-spacing:-16.684034pt;}
.wsc_c01212{word-spacing:-15.674491pt;}
.ws9_c01212{word-spacing:-13.283467pt;}
.wsf_c01212{word-spacing:-12.539593pt;}
.ws10_c01212{word-spacing:-10.733041pt;}
.ws7_c01212{word-spacing:-8.878599pt;}
.ws8_c01212{word-spacing:-8.877777pt;}
.wsb_c01212{word-spacing:-6.832128pt;}
.ws3_c01212{word-spacing:0.000000pt;}
.ws0_c01212{word-spacing:0.039110pt;}
.ws5_c01212{word-spacing:0.189730pt;}
.ws1_c01212{word-spacing:0.195063pt;}
.ws6_c01212{word-spacing:38.256533pt;}
._4_c01212{margin-left:-8.492950pt;}
._3_c01212{margin-left:-5.661967pt;}
._2_c01212{margin-left:-1.377235pt;}
._1_c01212{width:0.906880pt;}
._5_c01212{width:17.720725pt;}
._6_c01212{width:35.652825pt;}
._0_c01212{width:71.259149pt;}
.fs0_c01212{font-size:39.110400pt;}
.fs2_c01212{font-size:53.133867pt;}
.fs1_c01212{font-size:76.513067pt;}
.y0_c01212{bottom:0.000000pt;}
.y20_c01212{bottom:39.333333pt;}
.y1f_c01212{bottom:72.934667pt;}
.y1e_c01212{bottom:88.874667pt;}
.y1d_c01212{bottom:104.814667pt;}
.y1c_c01212{bottom:120.754667pt;}
.y1b_c01212{bottom:144.445333pt;}
.y1a_c01212{bottom:168.134667pt;}
.y19_c01212{bottom:191.824000pt;}
.y18_c01212{bottom:215.514667pt;}
.y17_c01212{bottom:252.869333pt;}
.y16_c01212{bottom:665.692000pt;}
.y15_c01212{bottom:680.304000pt;}
.y14_c01212{bottom:694.916000pt;}
.y13_c01212{bottom:709.528000pt;}
.y12_c01212{bottom:724.140000pt;}
.y11_c01212{bottom:738.752000pt;}
.y10_c01212{bottom:753.364000pt;}
.yf_c01212{bottom:767.976000pt;}
.ye_c01212{bottom:782.588000pt;}
.yd_c01212{bottom:797.198667pt;}
.yc_c01212{bottom:811.810667pt;}
.yb_c01212{bottom:841.034667pt;}
.ya_c01212{bottom:855.646667pt;}
.y9_c01212{bottom:870.258667pt;}
.y8_c01212{bottom:899.482667pt;}
.y7_c01212{bottom:914.094667pt;}
.y6_c01212{bottom:928.706667pt;}
.y5_c01212{bottom:943.317333pt;}
.y4_c01212{bottom:957.929333pt;}
.y3_c01212{bottom:972.541333pt;}
.y2_c01212{bottom:987.153333pt;}
.y1_c01212{bottom:1030.989333pt;}
.h3_c01212{height:31.280681pt;}
.h2_c01212{height:32.006363pt;}
.h5_c01212{height:36.010648pt;}
.h6_c01212{height:46.518078pt;}
.h4_c01212{height:51.855535pt;}
.h0_c01212{height:1122.520000pt;}
.h1_c01212{height:1122.666667pt;}
.w0_c01212{width:793.706667pt;}
.w1_c01212{width:794.000000pt;}
.x0_c01212{left:0.000000pt;}
.x4_c01212{left:113.385333pt;}
.x2_c01212{left:121.886667pt;}
.x1_c01212{left:127.796000pt;}
.x3_c01212{left:157.340000pt;}
.x5_c01212{left:386.888000pt;}
}





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

.ir_c01213:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_3439a91d227a38c5010fd71d.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01213;src:url('chunks/assets/font_63858d1033df09ea1687906f.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01213;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01213;src:url('chunks/assets/font_d53b50176df90879c300407d.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls4_c01213{letter-spacing:0.000000px;}
.ls1_c01213{letter-spacing:0.087998px;}
.ls2_c01213{letter-spacing:0.098482px;}
.ls0_c01213{letter-spacing:0.104482px;}
.ls3_c01213{letter-spacing:26.690482px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01213{word-spacing:-33.713438px;}
.ws4_c01213{word-spacing:-26.575517px;}
.ws3_c01213{word-spacing:-26.487518px;}
.ws0_c01213{word-spacing:-18.769538px;}
.ws8_c01213{word-spacing:0.000000px;}
.ws5_c01213{word-spacing:0.043999px;}
.wsb_c01213{word-spacing:0.056767px;}
.ws9_c01213{word-spacing:0.073250px;}
.wsa_c01213{word-spacing:0.083734px;}
.ws2_c01213{word-spacing:0.175997px;}
.wsc_c01213{word-spacing:0.202963px;}
.ws6_c01213{word-spacing:0.213446px;}
.ws7_c01213{word-spacing:0.219446px;}
._0_c01213{margin-left:-3.825638px;}
._1_c01213{width:1.005737px;}
._3_c01213{width:53.283031px;}
._2_c01213{width:79.858548px;}
._4_c01213{width:133.452408px;}
.fc5_c01213{color:rgb(0,0,207);}
.fc4_c01213{color:rgb(79,153,5);}
.fc3_c01213{color:rgb(207,92,0);}
.fc2_c01213{color:rgb(33,74,135);}
.fc1_c01213{color:rgb(143,89,3);}
.fc0_c01213{color:rgb(0,0,0);}
.fs1_c01213{font-size:43.999200px;}
.fs0_c01213{font-size:59.775600px;}
.y0_c01213{bottom:0.000000px;}
.y2d_c01213{bottom:44.250000px;}
.y2c_c01213{bottom:96.919500px;}
.y2b_c01213{bottom:113.358000px;}
.y2a_c01213{bottom:129.796500px;}
.y29_c01213{bottom:146.235000px;}
.y28_c01213{bottom:162.673500px;}
.y27_c01213{bottom:179.112000px;}
.y26_c01213{bottom:195.550500px;}
.y25_c01213{bottom:211.989000px;}
.y24_c01213{bottom:228.427500px;}
.y23_c01213{bottom:244.866000px;}
.y22_c01213{bottom:261.304500px;}
.y21_c01213{bottom:294.180000px;}
.y20_c01213{bottom:310.618500px;}
.y1f_c01213{bottom:327.057000px;}
.y1e_c01213{bottom:359.934000px;}
.y1d_c01213{bottom:376.372500px;}
.y1c_c01213{bottom:392.811000px;}
.y1b_c01213{bottom:409.249500px;}
.y1a_c01213{bottom:425.688000px;}
.y19_c01213{bottom:442.125000px;}
.y18_c01213{bottom:458.563500px;}
.y17_c01213{bottom:507.879000px;}
.y16_c01213{bottom:524.317500px;}
.y15_c01213{bottom:540.756000px;}
.y14_c01213{bottom:557.194500px;}
.y13_c01213{bottom:573.633000px;}
.y12_c01213{bottom:590.071500px;}
.y11_c01213{bottom:606.508500px;}
.y10_c01213{bottom:622.947000px;}
.yf_c01213{bottom:639.385500px;}
.ye_c01213{bottom:655.824000px;}
.yd_c01213{bottom:672.262500px;}
.yc_c01213{bottom:688.701000px;}
.yb_c01213{bottom:705.139500px;}
.ya_c01213{bottom:721.578000px;}
.y9_c01213{bottom:738.016500px;}
.y8_c01213{bottom:754.455000px;}
.y7_c01213{bottom:787.330500px;}
.y6_c01213{bottom:803.769000px;}
.y5_c01213{bottom:853.084500px;}
.y4_c01213{bottom:869.523000px;}
.y3_c01213{bottom:885.588000px;}
.y2_c01213{bottom:1141.930500px;}
.y1_c01213{bottom:1159.863000px;}
.h3_c01213{height:35.190766px;}
.h4_c01213{height:36.007158px;}
.h2_c01213{height:52.332837px;}
.h0_c01213{height:1262.835000px;}
.h1_c01213{height:1263.000000px;}
.w0_c01213{width:892.920000px;}
.w1_c01213{width:893.250000px;}
.x0_c01213{left:0.000000px;}
.x1_c01213{left:127.558500px;}
.x2_c01213{left:137.122500px;}
.x3_c01213{left:143.770500px;}
.x4_c01213{left:177.007500px;}
.x5_c01213{left:435.249000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls4_c01213{letter-spacing:0.000000pt;}
.ls1_c01213{letter-spacing:0.078221pt;}
.ls2_c01213{letter-spacing:0.087539pt;}
.ls0_c01213{letter-spacing:0.092873pt;}
.ls3_c01213{letter-spacing:23.724873pt;}
.ws1_c01213{word-spacing:-29.967501pt;}
.ws4_c01213{word-spacing:-23.622682pt;}
.ws3_c01213{word-spacing:-23.544461pt;}
.ws0_c01213{word-spacing:-16.684034pt;}
.ws8_c01213{word-spacing:0.000000pt;}
.ws5_c01213{word-spacing:0.039110pt;}
.wsb_c01213{word-spacing:0.050460pt;}
.ws9_c01213{word-spacing:0.065111pt;}
.wsa_c01213{word-spacing:0.074430pt;}
.ws2_c01213{word-spacing:0.156442pt;}
.wsc_c01213{word-spacing:0.180412pt;}
.ws6_c01213{word-spacing:0.189730pt;}
.ws7_c01213{word-spacing:0.195063pt;}
._0_c01213{margin-left:-3.400567pt;}
._1_c01213{width:0.893988pt;}
._3_c01213{width:47.362694pt;}
._2_c01213{width:70.985376pt;}
._4_c01213{width:118.624363pt;}
.fs1_c01213{font-size:39.110400pt;}
.fs0_c01213{font-size:53.133867pt;}
.y0_c01213{bottom:0.000000pt;}
.y2d_c01213{bottom:39.333333pt;}
.y2c_c01213{bottom:86.150667pt;}
.y2b_c01213{bottom:100.762667pt;}
.y2a_c01213{bottom:115.374667pt;}
.y29_c01213{bottom:129.986667pt;}
.y28_c01213{bottom:144.598667pt;}
.y27_c01213{bottom:159.210667pt;}
.y26_c01213{bottom:173.822667pt;}
.y25_c01213{bottom:188.434667pt;}
.y24_c01213{bottom:203.046667pt;}
.y23_c01213{bottom:217.658667pt;}
.y22_c01213{bottom:232.270667pt;}
.y21_c01213{bottom:261.493333pt;}
.y20_c01213{bottom:276.105333pt;}
.y1f_c01213{bottom:290.717333pt;}
.y1e_c01213{bottom:319.941333pt;}
.y1d_c01213{bottom:334.553333pt;}
.y1c_c01213{bottom:349.165333pt;}
.y1b_c01213{bottom:363.777333pt;}
.y1a_c01213{bottom:378.389333pt;}
.y19_c01213{bottom:393.000000pt;}
.y18_c01213{bottom:407.612000pt;}
.y17_c01213{bottom:451.448000pt;}
.y16_c01213{bottom:466.060000pt;}
.y15_c01213{bottom:480.672000pt;}
.y14_c01213{bottom:495.284000pt;}
.y13_c01213{bottom:509.896000pt;}
.y12_c01213{bottom:524.508000pt;}
.y11_c01213{bottom:539.118667pt;}
.y10_c01213{bottom:553.730667pt;}
.yf_c01213{bottom:568.342667pt;}
.ye_c01213{bottom:582.954667pt;}
.yd_c01213{bottom:597.566667pt;}
.yc_c01213{bottom:612.178667pt;}
.yb_c01213{bottom:626.790667pt;}
.ya_c01213{bottom:641.402667pt;}
.y9_c01213{bottom:656.014667pt;}
.y8_c01213{bottom:670.626667pt;}
.y7_c01213{bottom:699.849333pt;}
.y6_c01213{bottom:714.461333pt;}
.y5_c01213{bottom:758.297333pt;}
.y4_c01213{bottom:772.909333pt;}
.y3_c01213{bottom:787.189333pt;}
.y2_c01213{bottom:1015.049333pt;}
.y1_c01213{bottom:1030.989333pt;}
.h3_c01213{height:31.280681pt;}
.h4_c01213{height:32.006363pt;}
.h2_c01213{height:46.518078pt;}
.h0_c01213{height:1122.520000pt;}
.h1_c01213{height:1122.666667pt;}
.w0_c01213{width:793.706667pt;}
.w1_c01213{width:794.000000pt;}
.x0_c01213{left:0.000000pt;}
.x1_c01213{left:113.385333pt;}
.x2_c01213{left:121.886667pt;}
.x3_c01213{left:127.796000pt;}
.x4_c01213{left:157.340000pt;}
.x5_c01213{left:386.888000pt;}
}





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

.ir_c01214:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_9399426419406feabb4c9522.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01214;src:url('chunks/assets/font_64f2851b73c4f02eb0f6b447.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01214;src:url('chunks/assets/font_b453c31744d34de6d8a777a9.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01214;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01214;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01214{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.ls3_c01214{letter-spacing:0.000000px;}
.ls0_c01214{letter-spacing:0.087998px;}
.ls2_c01214{letter-spacing:0.098482px;}
.ls1_c01214{letter-spacing:0.104482px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01214{word-spacing:-33.713438px;}
.ws2_c01214{word-spacing:-26.575517px;}
.wse_c01214{word-spacing:-26.487518px;}
.ws9_c01214{word-spacing:-21.553319px;}
.ws8_c01214{word-spacing:-21.519216px;}
.ws5_c01214{word-spacing:-18.769538px;}
.ws7_c01214{word-spacing:-17.633802px;}
.ws4_c01214{word-spacing:-14.943900px;}
.wsa_c01214{word-spacing:-14.107042px;}
.wsb_c01214{word-spacing:-12.074671px;}
.ws1_c01214{word-spacing:-9.988424px;}
.ws3_c01214{word-spacing:-9.987499px;}
.ws6_c01214{word-spacing:-7.686144px;}
.ws12_c01214{word-spacing:0.000000px;}
.wsf_c01214{word-spacing:0.043999px;}
.ws15_c01214{word-spacing:0.056767px;}
.ws13_c01214{word-spacing:0.073250px;}
.ws14_c01214{word-spacing:0.083734px;}
.wsd_c01214{word-spacing:0.175997px;}
.ws16_c01214{word-spacing:0.202963px;}
.ws10_c01214{word-spacing:0.213446px;}
.ws11_c01214{word-spacing:0.219446px;}
.ws0_c01214{word-spacing:43.038600px;}
._2_c01214{margin-left:-9.554569px;}
._1_c01214{margin-left:-6.369713px;}
._5_c01214{margin-left:-3.825638px;}
._0_c01214{margin-left:-1.549390px;}
._6_c01214{width:1.005737px;}
._3_c01214{width:19.935816px;}
._4_c01214{width:40.109428px;}
._8_c01214{width:53.283031px;}
._7_c01214{width:79.858548px;}
._9_c01214{width:133.452408px;}
.fc6_c01214{color:rgb(0,0,207);}
.fc5_c01214{color:rgb(79,153,5);}
.fc3_c01214{color:rgb(33,74,135);}
.fc2_c01214{color:rgb(143,89,3);}
.fc4_c01214{color:rgb(207,92,0);}
.fc1_c01214{color:rgb(6,69,173);}
.fc0_c01214{color:rgb(0,0,0);}
.fs2_c01214{font-size:43.999200px;}
.fs1_c01214{font-size:59.775600px;}
.fs0_c01214{font-size:86.077200px;}
.y0_c01214{bottom:0.000000px;}
.y20_c01214{bottom:44.250000px;}
.y1f_c01214{bottom:86.982000px;}
.y1e_c01214{bottom:103.420500px;}
.y1d_c01214{bottom:119.859000px;}
.y1c_c01214{bottom:136.297500px;}
.y1b_c01214{bottom:152.736000px;}
.y1a_c01214{bottom:169.174500px;}
.y19_c01214{bottom:185.613000px;}
.y18_c01214{bottom:202.051500px;}
.y17_c01214{bottom:218.490000px;}
.y16_c01214{bottom:234.927000px;}
.y15_c01214{bottom:251.365500px;}
.y14_c01214{bottom:267.804000px;}
.y13_c01214{bottom:284.242500px;}
.y12_c01214{bottom:300.681000px;}
.y11_c01214{bottom:317.119500px;}
.y10_c01214{bottom:349.996500px;}
.yf_c01214{bottom:366.435000px;}
.ye_c01214{bottom:415.749000px;}
.yd_c01214{bottom:432.187500px;}
.yc_c01214{bottom:448.252500px;}
.yb_c01214{bottom:493.890000px;}
.ya_c01214{bottom:511.822500px;}
.y9_c01214{bottom:529.756500px;}
.y8_c01214{bottom:547.689000px;}
.y7_c01214{bottom:565.621500px;}
.y6_c01214{bottom:583.554000px;}
.y5_c01214{bottom:610.633500px;}
.y4_c01214{bottom:637.714500px;}
.y3_c01214{bottom:664.794000px;}
.y2_c01214{bottom:691.873500px;}
.y1_c01214{bottom:734.407500px;}
.h5_c01214{height:35.190766px;}
.h6_c01214{height:36.007158px;}
.h3_c01214{height:40.511979px;}
.h4_c01214{height:52.332837px;}
.h2_c01214{height:58.337477px;}
.h0_c01214{height:1262.835000px;}
.h1_c01214{height:1263.000000px;}
.w0_c01214{width:892.920000px;}
.w1_c01214{width:893.250000px;}
.x0_c01214{left:0.000000px;}
.x1_c01214{left:127.558500px;}
.x2_c01214{left:137.122500px;}
.x3_c01214{left:143.770500px;}
.x4_c01214{left:435.249000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls3_c01214{letter-spacing:0.000000pt;}
.ls0_c01214{letter-spacing:0.078221pt;}
.ls2_c01214{letter-spacing:0.087539pt;}
.ls1_c01214{letter-spacing:0.092873pt;}
.wsc_c01214{word-spacing:-29.967501pt;}
.ws2_c01214{word-spacing:-23.622682pt;}
.wse_c01214{word-spacing:-23.544461pt;}
.ws9_c01214{word-spacing:-19.158506pt;}
.ws8_c01214{word-spacing:-19.128192pt;}
.ws5_c01214{word-spacing:-16.684034pt;}
.ws7_c01214{word-spacing:-15.674491pt;}
.ws4_c01214{word-spacing:-13.283467pt;}
.wsa_c01214{word-spacing:-12.539593pt;}
.wsb_c01214{word-spacing:-10.733041pt;}
.ws1_c01214{word-spacing:-8.878599pt;}
.ws3_c01214{word-spacing:-8.877777pt;}
.ws6_c01214{word-spacing:-6.832128pt;}
.ws12_c01214{word-spacing:0.000000pt;}
.wsf_c01214{word-spacing:0.039110pt;}
.ws15_c01214{word-spacing:0.050460pt;}
.ws13_c01214{word-spacing:0.065111pt;}
.ws14_c01214{word-spacing:0.074430pt;}
.wsd_c01214{word-spacing:0.156442pt;}
.ws16_c01214{word-spacing:0.180412pt;}
.ws10_c01214{word-spacing:0.189730pt;}
.ws11_c01214{word-spacing:0.195063pt;}
.ws0_c01214{word-spacing:38.256533pt;}
._2_c01214{margin-left:-8.492950pt;}
._1_c01214{margin-left:-5.661967pt;}
._5_c01214{margin-left:-3.400567pt;}
._0_c01214{margin-left:-1.377235pt;}
._6_c01214{width:0.893988pt;}
._3_c01214{width:17.720725pt;}
._4_c01214{width:35.652825pt;}
._8_c01214{width:47.362694pt;}
._7_c01214{width:70.985376pt;}
._9_c01214{width:118.624363pt;}
.fs2_c01214{font-size:39.110400pt;}
.fs1_c01214{font-size:53.133867pt;}
.fs0_c01214{font-size:76.513067pt;}
.y0_c01214{bottom:0.000000pt;}
.y20_c01214{bottom:39.333333pt;}
.y1f_c01214{bottom:77.317333pt;}
.y1e_c01214{bottom:91.929333pt;}
.y1d_c01214{bottom:106.541333pt;}
.y1c_c01214{bottom:121.153333pt;}
.y1b_c01214{bottom:135.765333pt;}
.y1a_c01214{bottom:150.377333pt;}
.y19_c01214{bottom:164.989333pt;}
.y18_c01214{bottom:179.601333pt;}
.y17_c01214{bottom:194.213333pt;}
.y16_c01214{bottom:208.824000pt;}
.y15_c01214{bottom:223.436000pt;}
.y14_c01214{bottom:238.048000pt;}
.y13_c01214{bottom:252.660000pt;}
.y12_c01214{bottom:267.272000pt;}
.y11_c01214{bottom:281.884000pt;}
.y10_c01214{bottom:311.108000pt;}
.yf_c01214{bottom:325.720000pt;}
.ye_c01214{bottom:369.554667pt;}
.yd_c01214{bottom:384.166667pt;}
.yc_c01214{bottom:398.446667pt;}
.yb_c01214{bottom:439.013333pt;}
.ya_c01214{bottom:454.953333pt;}
.y9_c01214{bottom:470.894667pt;}
.y8_c01214{bottom:486.834667pt;}
.y7_c01214{bottom:502.774667pt;}
.y6_c01214{bottom:518.714667pt;}
.y5_c01214{bottom:542.785333pt;}
.y4_c01214{bottom:566.857333pt;}
.y3_c01214{bottom:590.928000pt;}
.y2_c01214{bottom:614.998667pt;}
.y1_c01214{bottom:652.806667pt;}
.h5_c01214{height:31.280681pt;}
.h6_c01214{height:32.006363pt;}
.h3_c01214{height:36.010648pt;}
.h4_c01214{height:46.518078pt;}
.h2_c01214{height:51.855535pt;}
.h0_c01214{height:1122.520000pt;}
.h1_c01214{height:1122.666667pt;}
.w0_c01214{width:793.706667pt;}
.w1_c01214{width:794.000000pt;}
.x0_c01214{left:0.000000pt;}
.x1_c01214{left:113.385333pt;}
.x2_c01214{left:121.886667pt;}
.x3_c01214{left:127.796000pt;}
.x4_c01214{left:386.888000pt;}
}





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

.ir_c01215:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_1052f96ea1ea210d802ec74d.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01215;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01215;src:url('chunks/assets/font_9e3ded5fd13e84a3d8652f01.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01215;src:url('chunks/assets/font_3ea95fcb37dcfd695ad3b150.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01215;src:url('chunks/assets/font_e903785450faaea9f47ca975.woff2')format("woff");}.ff5_c01215{font-family:ff5_c01215;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls4_c01215{letter-spacing:0.000000px;}
.ls0_c01215{letter-spacing:0.087998px;}
.ls2_c01215{letter-spacing:0.098482px;}
.ls3_c01215{letter-spacing:0.104482px;}
.ls1_c01215{letter-spacing:26.690482px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01215{word-spacing:-26.575517px;}
.ws4_c01215{word-spacing:-26.487518px;}
.wse_c01215{word-spacing:-21.553319px;}
.wsd_c01215{word-spacing:-21.519216px;}
.wsc_c01215{word-spacing:-19.247743px;}
.wsa_c01215{word-spacing:-18.769538px;}
.ws9_c01215{word-spacing:-14.943900px;}
.wsf_c01215{word-spacing:-14.107042px;}
.ws10_c01215{word-spacing:-12.074671px;}
.wsb_c01215{word-spacing:-10.230144px;}
.ws7_c01215{word-spacing:-9.988424px;}
.ws8_c01215{word-spacing:-9.987499px;}
.ws3_c01215{word-spacing:0.000000px;}
.ws0_c01215{word-spacing:0.043999px;}
.ws5_c01215{word-spacing:0.213446px;}
.ws1_c01215{word-spacing:0.219446px;}
.ws6_c01215{word-spacing:43.038600px;}
._4_c01215{margin-left:-9.554569px;}
._3_c01215{margin-left:-6.369713px;}
._2_c01215{margin-left:-1.549390px;}
._1_c01215{width:1.036723px;}
._5_c01215{width:19.935816px;}
._6_c01215{width:40.109428px;}
._0_c01215{width:53.591026px;}
.fc5_c01215{color:rgb(79,153,5);}
.fc4_c01215{color:rgb(143,89,3);}
.fc3_c01215{color:rgb(0,0,0);}
.fc6_c01215{color:rgb(6,69,173);}
.fc2_c01215{color:rgb(207,92,0);}
.fc1_c01215{color:rgb(0,0,207);}
.fc0_c01215{color:rgb(33,74,135);}
.fs0_c01215{font-size:43.999200px;}
.fs2_c01215{font-size:59.775600px;}
.fs1_c01215{font-size:86.077200px;}
.y0_c01215{bottom:0.000000px;}
.y20_c01215{bottom:44.250000px;}
.y1f_c01215{bottom:82.051500px;}
.y1e_c01215{bottom:99.984000px;}
.y1d_c01215{bottom:117.916500px;}
.y1c_c01215{bottom:135.849000px;}
.y1b_c01215{bottom:162.501000px;}
.y1a_c01215{bottom:189.151500px;}
.y19_c01215{bottom:215.802000px;}
.y18_c01215{bottom:242.454000px;}
.y17_c01215{bottom:284.478000px;}
.y16_c01215{bottom:748.903500px;}
.y15_c01215{bottom:765.342000px;}
.y14_c01215{bottom:781.780500px;}
.y13_c01215{bottom:798.219000px;}
.y12_c01215{bottom:814.657500px;}
.y11_c01215{bottom:831.096000px;}
.y10_c01215{bottom:847.534500px;}
.yf_c01215{bottom:863.973000px;}
.ye_c01215{bottom:880.411500px;}
.yd_c01215{bottom:896.848500px;}
.yc_c01215{bottom:913.287000px;}
.yb_c01215{bottom:946.164000px;}
.ya_c01215{bottom:962.602500px;}
.y9_c01215{bottom:979.041000px;}
.y8_c01215{bottom:1011.918000px;}
.y7_c01215{bottom:1028.356500px;}
.y6_c01215{bottom:1044.795000px;}
.y5_c01215{bottom:1061.232000px;}
.y4_c01215{bottom:1077.670500px;}
.y3_c01215{bottom:1094.109000px;}
.y2_c01215{bottom:1110.547500px;}
.y1_c01215{bottom:1159.863000px;}
.h3_c01215{height:35.190766px;}
.h2_c01215{height:36.007158px;}
.h5_c01215{height:40.511979px;}
.h6_c01215{height:52.332837px;}
.h4_c01215{height:58.337477px;}
.h0_c01215{height:1262.835000px;}
.h1_c01215{height:1263.000000px;}
.w0_c01215{width:892.920000px;}
.w1_c01215{width:893.250000px;}
.x0_c01215{left:0.000000px;}
.x4_c01215{left:127.558500px;}
.x2_c01215{left:137.122500px;}
.x1_c01215{left:143.770500px;}
.x3_c01215{left:177.007500px;}
.x5_c01215{left:435.249000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls4_c01215{letter-spacing:0.000000pt;}
.ls0_c01215{letter-spacing:0.078221pt;}
.ls2_c01215{letter-spacing:0.087539pt;}
.ls3_c01215{letter-spacing:0.092873pt;}
.ls1_c01215{letter-spacing:23.724873pt;}
.ws2_c01215{word-spacing:-23.622682pt;}
.ws4_c01215{word-spacing:-23.544461pt;}
.wse_c01215{word-spacing:-19.158506pt;}
.wsd_c01215{word-spacing:-19.128192pt;}
.wsc_c01215{word-spacing:-17.109105pt;}
.wsa_c01215{word-spacing:-16.684034pt;}
.ws9_c01215{word-spacing:-13.283467pt;}
.wsf_c01215{word-spacing:-12.539593pt;}
.ws10_c01215{word-spacing:-10.733041pt;}
.wsb_c01215{word-spacing:-9.093461pt;}
.ws7_c01215{word-spacing:-8.878599pt;}
.ws8_c01215{word-spacing:-8.877777pt;}
.ws3_c01215{word-spacing:0.000000pt;}
.ws0_c01215{word-spacing:0.039110pt;}
.ws5_c01215{word-spacing:0.189730pt;}
.ws1_c01215{word-spacing:0.195063pt;}
.ws6_c01215{word-spacing:38.256533pt;}
._4_c01215{margin-left:-8.492950pt;}
._3_c01215{margin-left:-5.661967pt;}
._2_c01215{margin-left:-1.377235pt;}
._1_c01215{width:0.921532pt;}
._5_c01215{width:17.720725pt;}
._6_c01215{width:35.652825pt;}
._0_c01215{width:47.636467pt;}
.fs0_c01215{font-size:39.110400pt;}
.fs2_c01215{font-size:53.133867pt;}
.fs1_c01215{font-size:76.513067pt;}
.y0_c01215{bottom:0.000000pt;}
.y20_c01215{bottom:39.333333pt;}
.y1f_c01215{bottom:72.934667pt;}
.y1e_c01215{bottom:88.874667pt;}
.y1d_c01215{bottom:104.814667pt;}
.y1c_c01215{bottom:120.754667pt;}
.y1b_c01215{bottom:144.445333pt;}
.y1a_c01215{bottom:168.134667pt;}
.y19_c01215{bottom:191.824000pt;}
.y18_c01215{bottom:215.514667pt;}
.y17_c01215{bottom:252.869333pt;}
.y16_c01215{bottom:665.692000pt;}
.y15_c01215{bottom:680.304000pt;}
.y14_c01215{bottom:694.916000pt;}
.y13_c01215{bottom:709.528000pt;}
.y12_c01215{bottom:724.140000pt;}
.y11_c01215{bottom:738.752000pt;}
.y10_c01215{bottom:753.364000pt;}
.yf_c01215{bottom:767.976000pt;}
.ye_c01215{bottom:782.588000pt;}
.yd_c01215{bottom:797.198667pt;}
.yc_c01215{bottom:811.810667pt;}
.yb_c01215{bottom:841.034667pt;}
.ya_c01215{bottom:855.646667pt;}
.y9_c01215{bottom:870.258667pt;}
.y8_c01215{bottom:899.482667pt;}
.y7_c01215{bottom:914.094667pt;}
.y6_c01215{bottom:928.706667pt;}
.y5_c01215{bottom:943.317333pt;}
.y4_c01215{bottom:957.929333pt;}
.y3_c01215{bottom:972.541333pt;}
.y2_c01215{bottom:987.153333pt;}
.y1_c01215{bottom:1030.989333pt;}
.h3_c01215{height:31.280681pt;}
.h2_c01215{height:32.006363pt;}
.h5_c01215{height:36.010648pt;}
.h6_c01215{height:46.518078pt;}
.h4_c01215{height:51.855535pt;}
.h0_c01215{height:1122.520000pt;}
.h1_c01215{height:1122.666667pt;}
.w0_c01215{width:793.706667pt;}
.w1_c01215{width:794.000000pt;}
.x0_c01215{left:0.000000pt;}
.x4_c01215{left:113.385333pt;}
.x2_c01215{left:121.886667pt;}
.x1_c01215{left:127.796000pt;}
.x3_c01215{left:157.340000pt;}
.x5_c01215{left:386.888000pt;}
}





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

.ir_c01216:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_9f23eeea865035153e78735a.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01216;src:url('chunks/assets/font_6ea33eb98305759cdefd9503.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01216;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01216;src:url('chunks/assets/font_03f8d27a692e4e943b450293.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls4_c01216{letter-spacing:0.000000px;}
.ls1_c01216{letter-spacing:0.087998px;}
.ls2_c01216{letter-spacing:0.098482px;}
.ls0_c01216{letter-spacing:0.104482px;}
.ls3_c01216{letter-spacing:26.690482px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01216{word-spacing:-33.713438px;}
.ws4_c01216{word-spacing:-26.575517px;}
.ws3_c01216{word-spacing:-26.487518px;}
.ws0_c01216{word-spacing:-18.769538px;}
.ws8_c01216{word-spacing:0.000000px;}
.ws5_c01216{word-spacing:0.043999px;}
.wsb_c01216{word-spacing:0.056767px;}
.ws9_c01216{word-spacing:0.073250px;}
.wsa_c01216{word-spacing:0.083734px;}
.ws2_c01216{word-spacing:0.175997px;}
.wsc_c01216{word-spacing:0.202963px;}
.ws6_c01216{word-spacing:0.213446px;}
.ws7_c01216{word-spacing:0.219446px;}
._0_c01216{margin-left:-3.825638px;}
._1_c01216{width:1.005737px;}
._3_c01216{width:53.283031px;}
._2_c01216{width:79.858548px;}
._4_c01216{width:133.452408px;}
.fc5_c01216{color:rgb(0,0,207);}
.fc4_c01216{color:rgb(79,153,5);}
.fc3_c01216{color:rgb(207,92,0);}
.fc2_c01216{color:rgb(33,74,135);}
.fc1_c01216{color:rgb(143,89,3);}
.fc0_c01216{color:rgb(0,0,0);}
.fs1_c01216{font-size:43.999200px;}
.fs0_c01216{font-size:59.775600px;}
.y0_c01216{bottom:0.000000px;}
.y2d_c01216{bottom:44.250000px;}
.y2c_c01216{bottom:96.919500px;}
.y2b_c01216{bottom:113.358000px;}
.y2a_c01216{bottom:129.796500px;}
.y29_c01216{bottom:146.235000px;}
.y28_c01216{bottom:162.673500px;}
.y27_c01216{bottom:179.112000px;}
.y26_c01216{bottom:195.550500px;}
.y25_c01216{bottom:211.989000px;}
.y24_c01216{bottom:228.427500px;}
.y23_c01216{bottom:244.866000px;}
.y22_c01216{bottom:261.304500px;}
.y21_c01216{bottom:294.180000px;}
.y20_c01216{bottom:310.618500px;}
.y1f_c01216{bottom:327.057000px;}
.y1e_c01216{bottom:359.934000px;}
.y1d_c01216{bottom:376.372500px;}
.y1c_c01216{bottom:392.811000px;}
.y1b_c01216{bottom:409.249500px;}
.y1a_c01216{bottom:425.688000px;}
.y19_c01216{bottom:442.125000px;}
.y18_c01216{bottom:458.563500px;}
.y17_c01216{bottom:507.879000px;}
.y16_c01216{bottom:524.317500px;}
.y15_c01216{bottom:540.756000px;}
.y14_c01216{bottom:557.194500px;}
.y13_c01216{bottom:573.633000px;}
.y12_c01216{bottom:590.071500px;}
.y11_c01216{bottom:606.508500px;}
.y10_c01216{bottom:622.947000px;}
.yf_c01216{bottom:639.385500px;}
.ye_c01216{bottom:655.824000px;}
.yd_c01216{bottom:672.262500px;}
.yc_c01216{bottom:688.701000px;}
.yb_c01216{bottom:705.139500px;}
.ya_c01216{bottom:721.578000px;}
.y9_c01216{bottom:738.016500px;}
.y8_c01216{bottom:754.455000px;}
.y7_c01216{bottom:787.330500px;}
.y6_c01216{bottom:803.769000px;}
.y5_c01216{bottom:853.084500px;}
.y4_c01216{bottom:869.523000px;}
.y3_c01216{bottom:885.588000px;}
.y2_c01216{bottom:1141.930500px;}
.y1_c01216{bottom:1159.863000px;}
.h3_c01216{height:35.190766px;}
.h4_c01216{height:36.007158px;}
.h2_c01216{height:52.332837px;}
.h0_c01216{height:1262.835000px;}
.h1_c01216{height:1263.000000px;}
.w0_c01216{width:892.920000px;}
.w1_c01216{width:893.250000px;}
.x0_c01216{left:0.000000px;}
.x1_c01216{left:127.558500px;}
.x2_c01216{left:137.122500px;}
.x3_c01216{left:143.770500px;}
.x4_c01216{left:177.007500px;}
.x5_c01216{left:435.249000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls4_c01216{letter-spacing:0.000000pt;}
.ls1_c01216{letter-spacing:0.078221pt;}
.ls2_c01216{letter-spacing:0.087539pt;}
.ls0_c01216{letter-spacing:0.092873pt;}
.ls3_c01216{letter-spacing:23.724873pt;}
.ws1_c01216{word-spacing:-29.967501pt;}
.ws4_c01216{word-spacing:-23.622682pt;}
.ws3_c01216{word-spacing:-23.544461pt;}
.ws0_c01216{word-spacing:-16.684034pt;}
.ws8_c01216{word-spacing:0.000000pt;}
.ws5_c01216{word-spacing:0.039110pt;}
.wsb_c01216{word-spacing:0.050460pt;}
.ws9_c01216{word-spacing:0.065111pt;}
.wsa_c01216{word-spacing:0.074430pt;}
.ws2_c01216{word-spacing:0.156442pt;}
.wsc_c01216{word-spacing:0.180412pt;}
.ws6_c01216{word-spacing:0.189730pt;}
.ws7_c01216{word-spacing:0.195063pt;}
._0_c01216{margin-left:-3.400567pt;}
._1_c01216{width:0.893988pt;}
._3_c01216{width:47.362694pt;}
._2_c01216{width:70.985376pt;}
._4_c01216{width:118.624363pt;}
.fs1_c01216{font-size:39.110400pt;}
.fs0_c01216{font-size:53.133867pt;}
.y0_c01216{bottom:0.000000pt;}
.y2d_c01216{bottom:39.333333pt;}
.y2c_c01216{bottom:86.150667pt;}
.y2b_c01216{bottom:100.762667pt;}
.y2a_c01216{bottom:115.374667pt;}
.y29_c01216{bottom:129.986667pt;}
.y28_c01216{bottom:144.598667pt;}
.y27_c01216{bottom:159.210667pt;}
.y26_c01216{bottom:173.822667pt;}
.y25_c01216{bottom:188.434667pt;}
.y24_c01216{bottom:203.046667pt;}
.y23_c01216{bottom:217.658667pt;}
.y22_c01216{bottom:232.270667pt;}
.y21_c01216{bottom:261.493333pt;}
.y20_c01216{bottom:276.105333pt;}
.y1f_c01216{bottom:290.717333pt;}
.y1e_c01216{bottom:319.941333pt;}
.y1d_c01216{bottom:334.553333pt;}
.y1c_c01216{bottom:349.165333pt;}
.y1b_c01216{bottom:363.777333pt;}
.y1a_c01216{bottom:378.389333pt;}
.y19_c01216{bottom:393.000000pt;}
.y18_c01216{bottom:407.612000pt;}
.y17_c01216{bottom:451.448000pt;}
.y16_c01216{bottom:466.060000pt;}
.y15_c01216{bottom:480.672000pt;}
.y14_c01216{bottom:495.284000pt;}
.y13_c01216{bottom:509.896000pt;}
.y12_c01216{bottom:524.508000pt;}
.y11_c01216{bottom:539.118667pt;}
.y10_c01216{bottom:553.730667pt;}
.yf_c01216{bottom:568.342667pt;}
.ye_c01216{bottom:582.954667pt;}
.yd_c01216{bottom:597.566667pt;}
.yc_c01216{bottom:612.178667pt;}
.yb_c01216{bottom:626.790667pt;}
.ya_c01216{bottom:641.402667pt;}
.y9_c01216{bottom:656.014667pt;}
.y8_c01216{bottom:670.626667pt;}
.y7_c01216{bottom:699.849333pt;}
.y6_c01216{bottom:714.461333pt;}
.y5_c01216{bottom:758.297333pt;}
.y4_c01216{bottom:772.909333pt;}
.y3_c01216{bottom:787.189333pt;}
.y2_c01216{bottom:1015.049333pt;}
.y1_c01216{bottom:1030.989333pt;}
.h3_c01216{height:31.280681pt;}
.h4_c01216{height:32.006363pt;}
.h2_c01216{height:46.518078pt;}
.h0_c01216{height:1122.520000pt;}
.h1_c01216{height:1122.666667pt;}
.w0_c01216{width:793.706667pt;}
.w1_c01216{width:794.000000pt;}
.x0_c01216{left:0.000000pt;}
.x1_c01216{left:113.385333pt;}
.x2_c01216{left:121.886667pt;}
.x3_c01216{left:127.796000pt;}
.x4_c01216{left:157.340000pt;}
.x5_c01216{left:386.888000pt;}
}





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

.ir_c01217:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_a3476f8f755e97b52e659066.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01217;src:url('chunks/assets/font_81b4a786711217c381151378.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01217;src:url('chunks/assets/font_af12f7af001bcdf6850e077c.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01217;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01217;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01217{font-family:ff5_c01217;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.ls3_c01217{letter-spacing:0.000000px;}
.ls0_c01217{letter-spacing:0.087998px;}
.ls2_c01217{letter-spacing:0.098482px;}
.ls1_c01217{letter-spacing:0.104482px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01217{word-spacing:-26.575517px;}
.ws19_c01217{word-spacing:-26.487518px;}
.ws5_c01217{word-spacing:-21.937645px;}
.ws16_c01217{word-spacing:-21.519216px;}
.ws14_c01217{word-spacing:-21.041011px;}
.ws12_c01217{word-spacing:-19.128192px;}
.ws11_c01217{word-spacing:-18.829314px;}
.ws6_c01217{word-spacing:-18.769538px;}
.ws13_c01217{word-spacing:-18.410885px;}
.ws4_c01217{word-spacing:-18.112007px;}
.ws15_c01217{word-spacing:-17.813129px;}
.wsf_c01217{word-spacing:-17.275148px;}
.wse_c01217{word-spacing:-17.215373px;}
.ws10_c01217{word-spacing:-17.155597px;}
.wsa_c01217{word-spacing:-15.601432px;}
.ws7_c01217{word-spacing:-14.943900px;}
.wsb_c01217{word-spacing:-13.808164px;}
.ws9_c01217{word-spacing:-13.748388px;}
.wsc_c01217{word-spacing:-12.732203px;}
.wsd_c01217{word-spacing:-12.672427px;}
.ws17_c01217{word-spacing:-12.074671px;}
.ws1_c01217{word-spacing:-9.988424px;}
.ws3_c01217{word-spacing:-9.987499px;}
.ws1d_c01217{word-spacing:0.000000px;}
.ws8_c01217{word-spacing:0.017856px;}
.ws1a_c01217{word-spacing:0.043999px;}
.ws18_c01217{word-spacing:0.175997px;}
.ws1c_c01217{word-spacing:0.213446px;}
.ws1b_c01217{word-spacing:0.219446px;}
.ws0_c01217{word-spacing:43.038600px;}
._2_c01217{margin-left:-7.919102px;}
._1_c01217{margin-left:-6.369713px;}
._4_c01217{margin-left:-4.064741px;}
._7_c01217{margin-left:-2.998955px;}
._0_c01217{margin-left:-1.549390px;}
._c_c01217{width:1.005737px;}
._9_c01217{width:13.430696px;}
._3_c01217{width:18.369923px;}
._5_c01217{width:19.930500px;}
._8_c01217{width:21.220338px;}
._b_c01217{width:23.551586px;}
._6_c01217{width:29.529146px;}
._a_c01217{width:40.468081px;}
.fc5_c01217{color:rgb(79,153,5);}
.fc3_c01217{color:rgb(33,74,135);}
.fc2_c01217{color:rgb(143,89,3);}
.fc4_c01217{color:rgb(207,92,0);}
.fc1_c01217{color:rgb(6,69,173);}
.fc0_c01217{color:rgb(0,0,0);}
.fs2_c01217{font-size:43.999200px;}
.fs1_c01217{font-size:59.775600px;}
.fs0_c01217{font-size:86.077200px;}
.y0_c01217{bottom:0.000000px;}
.y1c_c01217{bottom:44.250000px;}
.y1b_c01217{bottom:86.982000px;}
.y1a_c01217{bottom:103.420500px;}
.y19_c01217{bottom:119.485500px;}
.y18_c01217{bottom:167.907000px;}
.y17_c01217{bottom:185.839500px;}
.y16_c01217{bottom:203.772000px;}
.y15_c01217{bottom:221.704500px;}
.y14_c01217{bottom:239.637000px;}
.y13_c01217{bottom:257.571000px;}
.y12_c01217{bottom:275.503500px;}
.y11_c01217{bottom:317.560500px;}
.y10_c01217{bottom:347.620500px;}
.yf_c01217{bottom:377.680500px;}
.ye_c01217{bottom:407.739000px;}
.yd_c01217{bottom:425.673000px;}
.yc_c01217{bottom:467.730000px;}
.yb_c01217{bottom:485.662500px;}
.ya_c01217{bottom:512.647500px;}
.y9_c01217{bottom:530.580000px;}
.y8_c01217{bottom:548.514000px;}
.y7_c01217{bottom:566.446500px;}
.y6_c01217{bottom:593.431500px;}
.y5_c01217{bottom:620.416500px;}
.y4_c01217{bottom:638.349000px;}
.y3_c01217{bottom:665.334000px;}
.y2_c01217{bottom:692.319000px;}
.y1_c01217{bottom:734.715000px;}
.h5_c01217{height:35.190766px;}
.h6_c01217{height:36.007158px;}
.h3_c01217{height:40.511979px;}
.h4_c01217{height:52.332837px;}
.h2_c01217{height:58.337477px;}
.h0_c01217{height:1262.835000px;}
.h1_c01217{height:1263.000000px;}
.w0_c01217{width:892.920000px;}
.w1_c01217{width:893.250000px;}
.x0_c01217{left:0.000000px;}
.x1_c01217{left:127.558500px;}
.x4_c01217{left:137.122500px;}
.x2_c01217{left:152.215500px;}
.x3_c01217{left:164.919000px;}
.x5_c01217{left:435.249000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls3_c01217{letter-spacing:0.000000pt;}
.ls0_c01217{letter-spacing:0.078221pt;}
.ls2_c01217{letter-spacing:0.087539pt;}
.ls1_c01217{letter-spacing:0.092873pt;}
.ws2_c01217{word-spacing:-23.622682pt;}
.ws19_c01217{word-spacing:-23.544461pt;}
.ws5_c01217{word-spacing:-19.500129pt;}
.ws16_c01217{word-spacing:-19.128192pt;}
.ws14_c01217{word-spacing:-18.703121pt;}
.ws12_c01217{word-spacing:-17.002837pt;}
.ws11_c01217{word-spacing:-16.737168pt;}
.ws6_c01217{word-spacing:-16.684034pt;}
.ws13_c01217{word-spacing:-16.365231pt;}
.ws4_c01217{word-spacing:-16.099562pt;}
.ws15_c01217{word-spacing:-15.833892pt;}
.wsf_c01217{word-spacing:-15.355687pt;}
.wse_c01217{word-spacing:-15.302554pt;}
.ws10_c01217{word-spacing:-15.249420pt;}
.wsa_c01217{word-spacing:-13.867939pt;}
.ws7_c01217{word-spacing:-13.283467pt;}
.wsb_c01217{word-spacing:-12.273923pt;}
.ws9_c01217{word-spacing:-12.220789pt;}
.wsc_c01217{word-spacing:-11.317514pt;}
.wsd_c01217{word-spacing:-11.264380pt;}
.ws17_c01217{word-spacing:-10.733041pt;}
.ws1_c01217{word-spacing:-8.878599pt;}
.ws3_c01217{word-spacing:-8.877777pt;}
.ws1d_c01217{word-spacing:0.000000pt;}
.ws8_c01217{word-spacing:0.015872pt;}
.ws1a_c01217{word-spacing:0.039110pt;}
.ws18_c01217{word-spacing:0.156442pt;}
.ws1c_c01217{word-spacing:0.189730pt;}
.ws1b_c01217{word-spacing:0.195063pt;}
.ws0_c01217{word-spacing:38.256533pt;}
._2_c01217{margin-left:-7.039202pt;}
._1_c01217{margin-left:-5.661967pt;}
._4_c01217{margin-left:-3.613103pt;}
._7_c01217{margin-left:-2.665738pt;}
._0_c01217{margin-left:-1.377235pt;}
._c_c01217{width:0.893988pt;}
._9_c01217{width:11.938397pt;}
._3_c01217{width:16.328820pt;}
._5_c01217{width:17.716000pt;}
._8_c01217{width:18.862523pt;}
._b_c01217{width:20.934743pt;}
._6_c01217{width:26.248130pt;}
._a_c01217{width:35.971628pt;}
.fs2_c01217{font-size:39.110400pt;}
.fs1_c01217{font-size:53.133867pt;}
.fs0_c01217{font-size:76.513067pt;}
.y0_c01217{bottom:0.000000pt;}
.y1c_c01217{bottom:39.333333pt;}
.y1b_c01217{bottom:77.317333pt;}
.y1a_c01217{bottom:91.929333pt;}
.y19_c01217{bottom:106.209333pt;}
.y18_c01217{bottom:149.250667pt;}
.y17_c01217{bottom:165.190667pt;}
.y16_c01217{bottom:181.130667pt;}
.y15_c01217{bottom:197.070667pt;}
.y14_c01217{bottom:213.010667pt;}
.y13_c01217{bottom:228.952000pt;}
.y12_c01217{bottom:244.892000pt;}
.y11_c01217{bottom:282.276000pt;}
.y10_c01217{bottom:308.996000pt;}
.yf_c01217{bottom:335.716000pt;}
.ye_c01217{bottom:362.434667pt;}
.yd_c01217{bottom:378.376000pt;}
.yc_c01217{bottom:415.760000pt;}
.yb_c01217{bottom:431.700000pt;}
.ya_c01217{bottom:455.686667pt;}
.y9_c01217{bottom:471.626667pt;}
.y8_c01217{bottom:487.568000pt;}
.y7_c01217{bottom:503.508000pt;}
.y6_c01217{bottom:527.494667pt;}
.y5_c01217{bottom:551.481333pt;}
.y4_c01217{bottom:567.421333pt;}
.y3_c01217{bottom:591.408000pt;}
.y2_c01217{bottom:615.394667pt;}
.y1_c01217{bottom:653.080000pt;}
.h5_c01217{height:31.280681pt;}
.h6_c01217{height:32.006363pt;}
.h3_c01217{height:36.010648pt;}
.h4_c01217{height:46.518078pt;}
.h2_c01217{height:51.855535pt;}
.h0_c01217{height:1122.520000pt;}
.h1_c01217{height:1122.666667pt;}
.w0_c01217{width:793.706667pt;}
.w1_c01217{width:794.000000pt;}
.x0_c01217{left:0.000000pt;}
.x1_c01217{left:113.385333pt;}
.x4_c01217{left:121.886667pt;}
.x2_c01217{left:135.302667pt;}
.x3_c01217{left:146.594667pt;}
.x5_c01217{left:386.888000pt;}
}





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

.ir_c01218:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01218;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01218;src:url('chunks/assets/font_a39467dd879a03af2c29516a.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01218;src:url('chunks/assets/font_cbbc15c83173dcc58fe53d68.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls4_c01218{letter-spacing:0.000000px;}
.ls1_c01218{letter-spacing:0.087998px;}
.ls2_c01218{letter-spacing:0.098482px;}
.ls0_c01218{letter-spacing:0.104482px;}
.ls3_c01218{letter-spacing:26.690482px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01218{word-spacing:-26.575517px;}
.ws0_c01218{word-spacing:-26.487518px;}
.ws5_c01218{word-spacing:0.000000px;}
.ws7_c01218{word-spacing:0.036900px;}
.ws4_c01218{word-spacing:0.043999px;}
.ws6_c01218{word-spacing:0.053933px;}
.wsa_c01218{word-spacing:0.064416px;}
.ws8_c01218{word-spacing:0.070416px;}
.wsb_c01218{word-spacing:0.100217px;}
.ws2_c01218{word-spacing:0.175997px;}
.ws3_c01218{word-spacing:0.213446px;}
.ws9_c01218{word-spacing:0.219446px;}
._0_c01218{width:1.047451px;}
._1_c01218{width:106.874057px;}
.fc5_c01218{color:rgb(0,0,207);}
.fc4_c01218{color:rgb(143,89,3);}
.fc3_c01218{color:rgb(79,153,5);}
.fc2_c01218{color:rgb(207,92,0);}
.fc1_c01218{color:rgb(0,0,0);}
.fc0_c01218{color:rgb(33,74,135);}
.fs0_c01218{font-size:43.999200px;}
.fs1_c01218{font-size:59.775600px;}
.y0_c01218{bottom:0.000000px;}
.y39_c01218{bottom:44.250000px;}
.y38_c01218{bottom:91.369500px;}
.y37_c01218{bottom:107.808000px;}
.y36_c01218{bottom:124.246500px;}
.y35_c01218{bottom:140.685000px;}
.y34_c01218{bottom:157.123500px;}
.y33_c01218{bottom:173.562000px;}
.y32_c01218{bottom:190.000500px;}
.y31_c01218{bottom:206.437500px;}
.y30_c01218{bottom:222.876000px;}
.y2f_c01218{bottom:239.314500px;}
.y2e_c01218{bottom:255.753000px;}
.y2d_c01218{bottom:272.191500px;}
.y2c_c01218{bottom:288.630000px;}
.y2b_c01218{bottom:305.068500px;}
.y2a_c01218{bottom:321.507000px;}
.y29_c01218{bottom:337.945500px;}
.y28_c01218{bottom:354.384000px;}
.y27_c01218{bottom:370.822500px;}
.y26_c01218{bottom:403.698000px;}
.y25_c01218{bottom:420.136500px;}
.y24_c01218{bottom:436.575000px;}
.y23_c01218{bottom:453.013500px;}
.y22_c01218{bottom:469.452000px;}
.y21_c01218{bottom:485.890500px;}
.y20_c01218{bottom:518.767500px;}
.y1f_c01218{bottom:535.206000px;}
.y1e_c01218{bottom:551.643000px;}
.y1d_c01218{bottom:568.081500px;}
.y1c_c01218{bottom:600.958500px;}
.y1b_c01218{bottom:617.397000px;}
.y1a_c01218{bottom:633.835500px;}
.y19_c01218{bottom:650.274000px;}
.y18_c01218{bottom:683.151000px;}
.y17_c01218{bottom:699.589500px;}
.y16_c01218{bottom:716.028000px;}
.y15_c01218{bottom:732.465000px;}
.y14_c01218{bottom:748.903500px;}
.y13_c01218{bottom:765.342000px;}
.y12_c01218{bottom:781.780500px;}
.y11_c01218{bottom:814.657500px;}
.y10_c01218{bottom:831.096000px;}
.yf_c01218{bottom:847.534500px;}
.ye_c01218{bottom:880.411500px;}
.yd_c01218{bottom:896.848500px;}
.yc_c01218{bottom:946.164000px;}
.yb_c01218{bottom:962.602500px;}
.ya_c01218{bottom:995.479500px;}
.y9_c01218{bottom:1011.918000px;}
.y8_c01218{bottom:1028.356500px;}
.y7_c01218{bottom:1044.795000px;}
.y6_c01218{bottom:1077.670500px;}
.y5_c01218{bottom:1094.109000px;}
.y4_c01218{bottom:1110.547500px;}
.y3_c01218{bottom:1126.986000px;}
.y2_c01218{bottom:1143.424500px;}
.y1_c01218{bottom:1159.863000px;}
.h3_c01218{height:35.190766px;}
.h2_c01218{height:36.007158px;}
.h4_c01218{height:52.332837px;}
.h0_c01218{height:1262.835000px;}
.h1_c01218{height:1263.000000px;}
.w0_c01218{width:892.920000px;}
.w1_c01218{width:893.250000px;}
.x0_c01218{left:0.000000px;}
.x1_c01218{left:137.122500px;}
.x2_c01218{left:143.770500px;}
.x5_c01218{left:170.359500px;}
.x4_c01218{left:177.007500px;}
.x3_c01218{left:203.596500px;}
.x6_c01218{left:210.243000px;}
.x7_c01218{left:435.249000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls4_c01218{letter-spacing:0.000000pt;}
.ls1_c01218{letter-spacing:0.078221pt;}
.ls2_c01218{letter-spacing:0.087539pt;}
.ls0_c01218{letter-spacing:0.092873pt;}
.ls3_c01218{letter-spacing:23.724873pt;}
.ws1_c01218{word-spacing:-23.622682pt;}
.ws0_c01218{word-spacing:-23.544461pt;}
.ws5_c01218{word-spacing:0.000000pt;}
.ws7_c01218{word-spacing:0.032800pt;}
.ws4_c01218{word-spacing:0.039110pt;}
.ws6_c01218{word-spacing:0.047940pt;}
.wsa_c01218{word-spacing:0.057259pt;}
.ws8_c01218{word-spacing:0.062592pt;}
.wsb_c01218{word-spacing:0.089082pt;}
.ws2_c01218{word-spacing:0.156442pt;}
.ws3_c01218{word-spacing:0.189730pt;}
.ws9_c01218{word-spacing:0.195063pt;}
._0_c01218{width:0.931068pt;}
._1_c01218{width:94.999162pt;}
.fs0_c01218{font-size:39.110400pt;}
.fs1_c01218{font-size:53.133867pt;}
.y0_c01218{bottom:0.000000pt;}
.y39_c01218{bottom:39.333333pt;}
.y38_c01218{bottom:81.217333pt;}
.y37_c01218{bottom:95.829333pt;}
.y36_c01218{bottom:110.441333pt;}
.y35_c01218{bottom:125.053333pt;}
.y34_c01218{bottom:139.665333pt;}
.y33_c01218{bottom:154.277333pt;}
.y32_c01218{bottom:168.889333pt;}
.y31_c01218{bottom:183.500000pt;}
.y30_c01218{bottom:198.112000pt;}
.y2f_c01218{bottom:212.724000pt;}
.y2e_c01218{bottom:227.336000pt;}
.y2d_c01218{bottom:241.948000pt;}
.y2c_c01218{bottom:256.560000pt;}
.y2b_c01218{bottom:271.172000pt;}
.y2a_c01218{bottom:285.784000pt;}
.y29_c01218{bottom:300.396000pt;}
.y28_c01218{bottom:315.008000pt;}
.y27_c01218{bottom:329.620000pt;}
.y26_c01218{bottom:358.842667pt;}
.y25_c01218{bottom:373.454667pt;}
.y24_c01218{bottom:388.066667pt;}
.y23_c01218{bottom:402.678667pt;}
.y22_c01218{bottom:417.290667pt;}
.y21_c01218{bottom:431.902667pt;}
.y20_c01218{bottom:461.126667pt;}
.y1f_c01218{bottom:475.738667pt;}
.y1e_c01218{bottom:490.349333pt;}
.y1d_c01218{bottom:504.961333pt;}
.y1c_c01218{bottom:534.185333pt;}
.y1b_c01218{bottom:548.797333pt;}
.y1a_c01218{bottom:563.409333pt;}
.y19_c01218{bottom:578.021333pt;}
.y18_c01218{bottom:607.245333pt;}
.y17_c01218{bottom:621.857333pt;}
.y16_c01218{bottom:636.469333pt;}
.y15_c01218{bottom:651.080000pt;}
.y14_c01218{bottom:665.692000pt;}
.y13_c01218{bottom:680.304000pt;}
.y12_c01218{bottom:694.916000pt;}
.y11_c01218{bottom:724.140000pt;}
.y10_c01218{bottom:738.752000pt;}
.yf_c01218{bottom:753.364000pt;}
.ye_c01218{bottom:782.588000pt;}
.yd_c01218{bottom:797.198667pt;}
.yc_c01218{bottom:841.034667pt;}
.yb_c01218{bottom:855.646667pt;}
.ya_c01218{bottom:884.870667pt;}
.y9_c01218{bottom:899.482667pt;}
.y8_c01218{bottom:914.094667pt;}
.y7_c01218{bottom:928.706667pt;}
.y6_c01218{bottom:957.929333pt;}
.y5_c01218{bottom:972.541333pt;}
.y4_c01218{bottom:987.153333pt;}
.y3_c01218{bottom:1001.765333pt;}
.y2_c01218{bottom:1016.377333pt;}
.y1_c01218{bottom:1030.989333pt;}
.h3_c01218{height:31.280681pt;}
.h2_c01218{height:32.006363pt;}
.h4_c01218{height:46.518078pt;}
.h0_c01218{height:1122.520000pt;}
.h1_c01218{height:1122.666667pt;}
.w0_c01218{width:793.706667pt;}
.w1_c01218{width:794.000000pt;}
.x0_c01218{left:0.000000pt;}
.x1_c01218{left:121.886667pt;}
.x2_c01218{left:127.796000pt;}
.x5_c01218{left:151.430667pt;}
.x4_c01218{left:157.340000pt;}
.x3_c01218{left:180.974667pt;}
.x6_c01218{left:186.882667pt;}
.x7_c01218{left:386.888000pt;}
}





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

.ir_c01219:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01219;src:url('chunks/assets/font_d451100fdc5c9f554fb9f5cc.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01219;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01219;src:url('chunks/assets/font_c593754661007acf6fe0da6a.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.ls5_c01219{letter-spacing:0.000000px;}
.ls0_c01219{letter-spacing:0.087998px;}
.ls2_c01219{letter-spacing:0.098482px;}
.ls1_c01219{letter-spacing:0.104482px;}
.ls3_c01219{letter-spacing:0.140482px;}
.ls4_c01219{letter-spacing:0.146482px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:-26.575517px;}
.ws3_c01219{word-spacing:-26.487518px;}
.ws4_c01219{word-spacing:0.000000px;}
.ws1_c01219{word-spacing:0.043999px;}
.ws2_c01219{word-spacing:0.053933px;}
.ws5_c01219{word-spacing:0.056767px;}
.ws6_c01219{word-spacing:0.213446px;}
._0_c01219{width:1.073318px;}
.fc5_c01219{color:rgb(143,89,3);}
.fc4_c01219{color:rgb(79,153,5);}
.fc3_c01219{color:rgb(0,0,207);}
.fc2_c01219{color:rgb(207,92,0);}
.fc1_c01219{color:rgb(0,0,0);}
.fc0_c01219{color:rgb(33,74,135);}
.fs0_c01219{font-size:43.999200px;}
.fs1_c01219{font-size:59.775600px;}
.y0_c01219{bottom:0.000000px;}
.y2d_c01219{bottom:44.250000px;}
.y2c_c01219{bottom:403.698000px;}
.y2b_c01219{bottom:420.136500px;}
.y2a_c01219{bottom:436.575000px;}
.y29_c01219{bottom:453.013500px;}
.y28_c01219{bottom:469.452000px;}
.y27_c01219{bottom:485.890500px;}
.y26_c01219{bottom:502.329000px;}
.y25_c01219{bottom:518.767500px;}
.y24_c01219{bottom:535.206000px;}
.y23_c01219{bottom:551.643000px;}
.y22_c01219{bottom:568.081500px;}
.y21_c01219{bottom:600.958500px;}
.y20_c01219{bottom:617.397000px;}
.y1f_c01219{bottom:633.835500px;}
.y1e_c01219{bottom:666.712500px;}
.y1d_c01219{bottom:683.151000px;}
.y1c_c01219{bottom:699.589500px;}
.y1b_c01219{bottom:716.028000px;}
.y1a_c01219{bottom:732.465000px;}
.y19_c01219{bottom:748.903500px;}
.y18_c01219{bottom:765.342000px;}
.y17_c01219{bottom:781.780500px;}
.y16_c01219{bottom:798.219000px;}
.y15_c01219{bottom:814.657500px;}
.y14_c01219{bottom:831.096000px;}
.y13_c01219{bottom:847.534500px;}
.y12_c01219{bottom:863.973000px;}
.y11_c01219{bottom:880.411500px;}
.y10_c01219{bottom:896.848500px;}
.yf_c01219{bottom:913.287000px;}
.ye_c01219{bottom:929.725500px;}
.yd_c01219{bottom:946.164000px;}
.yc_c01219{bottom:962.602500px;}
.yb_c01219{bottom:979.041000px;}
.ya_c01219{bottom:995.479500px;}
.y9_c01219{bottom:1011.918000px;}
.y8_c01219{bottom:1028.356500px;}
.y7_c01219{bottom:1044.795000px;}
.y6_c01219{bottom:1061.232000px;}
.y5_c01219{bottom:1077.670500px;}
.y4_c01219{bottom:1110.547500px;}
.y3_c01219{bottom:1126.986000px;}
.y2_c01219{bottom:1143.424500px;}
.y1_c01219{bottom:1159.863000px;}
.h3_c01219{height:35.190766px;}
.h2_c01219{height:36.007158px;}
.h4_c01219{height:52.332837px;}
.h0_c01219{height:1262.835000px;}
.h1_c01219{height:1263.000000px;}
.w0_c01219{width:892.920000px;}
.w1_c01219{width:893.250000px;}
.x0_c01219{left:0.000000px;}
.x3_c01219{left:137.122500px;}
.x4_c01219{left:143.770500px;}
.x7_c01219{left:177.007500px;}
.x1_c01219{left:230.185500px;}
.x5_c01219{left:243.480000px;}
.x2_c01219{left:256.774500px;}
.x6_c01219{left:276.715500px;}
.x8_c01219{left:435.249000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls5_c01219{letter-spacing:0.000000pt;}
.ls0_c01219{letter-spacing:0.078221pt;}
.ls2_c01219{letter-spacing:0.087539pt;}
.ls1_c01219{letter-spacing:0.092873pt;}
.ls3_c01219{letter-spacing:0.124873pt;}
.ls4_c01219{letter-spacing:0.130206pt;}
.ws0_c01219{word-spacing:-23.622682pt;}
.ws3_c01219{word-spacing:-23.544461pt;}
.ws4_c01219{word-spacing:0.000000pt;}
.ws1_c01219{word-spacing:0.039110pt;}
.ws2_c01219{word-spacing:0.047940pt;}
.ws5_c01219{word-spacing:0.050460pt;}
.ws6_c01219{word-spacing:0.189730pt;}
._0_c01219{width:0.954061pt;}
.fs0_c01219{font-size:39.110400pt;}
.fs1_c01219{font-size:53.133867pt;}
.y0_c01219{bottom:0.000000pt;}
.y2d_c01219{bottom:39.333333pt;}
.y2c_c01219{bottom:358.842667pt;}
.y2b_c01219{bottom:373.454667pt;}
.y2a_c01219{bottom:388.066667pt;}
.y29_c01219{bottom:402.678667pt;}
.y28_c01219{bottom:417.290667pt;}
.y27_c01219{bottom:431.902667pt;}
.y26_c01219{bottom:446.514667pt;}
.y25_c01219{bottom:461.126667pt;}
.y24_c01219{bottom:475.738667pt;}
.y23_c01219{bottom:490.349333pt;}
.y22_c01219{bottom:504.961333pt;}
.y21_c01219{bottom:534.185333pt;}
.y20_c01219{bottom:548.797333pt;}
.y1f_c01219{bottom:563.409333pt;}
.y1e_c01219{bottom:592.633333pt;}
.y1d_c01219{bottom:607.245333pt;}
.y1c_c01219{bottom:621.857333pt;}
.y1b_c01219{bottom:636.469333pt;}
.y1a_c01219{bottom:651.080000pt;}
.y19_c01219{bottom:665.692000pt;}
.y18_c01219{bottom:680.304000pt;}
.y17_c01219{bottom:694.916000pt;}
.y16_c01219{bottom:709.528000pt;}
.y15_c01219{bottom:724.140000pt;}
.y14_c01219{bottom:738.752000pt;}
.y13_c01219{bottom:753.364000pt;}
.y12_c01219{bottom:767.976000pt;}
.y11_c01219{bottom:782.588000pt;}
.y10_c01219{bottom:797.198667pt;}
.yf_c01219{bottom:811.810667pt;}
.ye_c01219{bottom:826.422667pt;}
.yd_c01219{bottom:841.034667pt;}
.yc_c01219{bottom:855.646667pt;}
.yb_c01219{bottom:870.258667pt;}
.ya_c01219{bottom:884.870667pt;}
.y9_c01219{bottom:899.482667pt;}
.y8_c01219{bottom:914.094667pt;}
.y7_c01219{bottom:928.706667pt;}
.y6_c01219{bottom:943.317333pt;}
.y5_c01219{bottom:957.929333pt;}
.y4_c01219{bottom:987.153333pt;}
.y3_c01219{bottom:1001.765333pt;}
.y2_c01219{bottom:1016.377333pt;}
.y1_c01219{bottom:1030.989333pt;}
.h3_c01219{height:31.280681pt;}
.h2_c01219{height:32.006363pt;}
.h4_c01219{height:46.518078pt;}
.h0_c01219{height:1122.520000pt;}
.h1_c01219{height:1122.666667pt;}
.w0_c01219{width:793.706667pt;}
.w1_c01219{width:794.000000pt;}
.x0_c01219{left:0.000000pt;}
.x3_c01219{left:121.886667pt;}
.x4_c01219{left:127.796000pt;}
.x7_c01219{left:157.340000pt;}
.x1_c01219{left:204.609333pt;}
.x5_c01219{left:216.426667pt;}
.x2_c01219{left:228.244000pt;}
.x6_c01219{left:245.969333pt;}
.x8_c01219{left:386.888000pt;}
}





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

.ir_c01220:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_8266bce2fdfe06df5b406586.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01220;src:url('chunks/assets/font_e76f913a603fab236a8f7739.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01220;src:url('chunks/assets/font_73f339f4c862ec9b09908b19.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01220;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01220;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01220{font-family:ff5_c01220;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01220;src:url('chunks/assets/font_1a47e7cd3c5af000e7339388.woff2')format("woff");}.ff6_c01220{font-family:ff6_c01220;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01220{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.ls3_c01220{letter-spacing:0.000000px;}
.ls0_c01220{letter-spacing:0.087998px;}
.ls2_c01220{letter-spacing:0.098482px;}
.ls1_c01220{letter-spacing:0.104482px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01220{word-spacing:-33.713438px;}
.ws2_c01220{word-spacing:-26.575517px;}
.ws10_c01220{word-spacing:-26.487518px;}
.wsb_c01220{word-spacing:-21.553319px;}
.wsa_c01220{word-spacing:-21.519216px;}
.ws5_c01220{word-spacing:-19.905275px;}
.ws7_c01220{word-spacing:-18.769538px;}
.ws4_c01220{word-spacing:-16.079636px;}
.ws9_c01220{word-spacing:-16.019861px;}
.ws6_c01220{word-spacing:-14.943900px;}
.wsc_c01220{word-spacing:-14.107042px;}
.wsd_c01220{word-spacing:-12.074671px;}
.ws1_c01220{word-spacing:-9.988424px;}
.ws3_c01220{word-spacing:-9.987499px;}
.ws8_c01220{word-spacing:-4.536144px;}
.ws14_c01220{word-spacing:0.000000px;}
.ws11_c01220{word-spacing:0.043999px;}
.ws17_c01220{word-spacing:0.056767px;}
.ws15_c01220{word-spacing:0.073250px;}
.wsf_c01220{word-spacing:0.175997px;}
.ws18_c01220{word-spacing:0.202963px;}
.ws12_c01220{word-spacing:0.213446px;}
.ws13_c01220{word-spacing:0.219446px;}
.ws16_c01220{word-spacing:26.619516px;}
.ws0_c01220{word-spacing:43.038600px;}
._9_c01220{margin-left:-2211.000050px;}
._2_c01220{margin-left:-7.919102px;}
._1_c01220{margin-left:-6.369713px;}
._4_c01220{margin-left:-3.945190px;}
._0_c01220{margin-left:-1.549390px;}
._7_c01220{width:1.005737px;}
._3_c01220{width:19.409552px;}
._5_c01220{width:20.742133px;}
._6_c01220{width:40.109428px;}
._b_c01220{width:53.283031px;}
._8_c01220{width:79.858548px;}
._a_c01220{width:133.452408px;}
.fc6_c01220{color:rgb(0,0,207);}
.fc5_c01220{color:rgb(79,153,5);}
.fc3_c01220{color:rgb(33,74,135);}
.fc2_c01220{color:rgb(143,89,3);}
.fc4_c01220{color:rgb(207,92,0);}
.fc1_c01220{color:rgb(6,69,173);}
.fc0_c01220{color:rgb(0,0,0);}
.fs3_c01220{font-size:31.015800px;}
.fs2_c01220{font-size:43.999200px;}
.fs1_c01220{font-size:59.775600px;}
.fs0_c01220{font-size:86.077200px;}
.y0_c01220{bottom:0.000000px;}
.y20_c01220{bottom:44.250000px;}
.y1f_c01220{bottom:86.982000px;}
.y1e_c01220{bottom:103.420500px;}
.y1d_c01220{bottom:119.859000px;}
.y1c_c01220{bottom:136.297500px;}
.y1b_c01220{bottom:152.736000px;}
.y1a_c01220{bottom:169.174500px;}
.y19_c01220{bottom:185.239500px;}
.y18_c01220{bottom:201.678000px;}
.y17_c01220{bottom:218.115000px;}
.y16_c01220{bottom:234.553500px;}
.y15_c01220{bottom:250.992000px;}
.y14_c01220{bottom:267.430500px;}
.y13_c01220{bottom:283.869000px;}
.y12_c01220{bottom:300.307500px;}
.y11_c01220{bottom:333.184500px;}
.y10_c01220{bottom:349.623000px;}
.yf_c01220{bottom:398.937000px;}
.ye_c01220{bottom:415.375500px;}
.yd_c01220{bottom:431.440500px;}
.yc_c01220{bottom:476.827500px;}
.yb_c01220{bottom:494.760000px;}
.ya_c01220{bottom:512.694000px;}
.y9_c01220{bottom:530.626500px;}
.y8_c01220{bottom:548.559000px;}
.y7_c01220{bottom:566.491500px;}
.y6_c01220{bottom:593.472000px;}
.y5_c01220{bottom:620.451000px;}
.y4_c01220{bottom:638.383500px;}
.y3_c01220{bottom:665.364000px;}
.y2_c01220{bottom:692.343000px;}
.y1_c01220{bottom:734.731500px;}
.h5_c01220{height:35.190766px;}
.h6_c01220{height:36.007158px;}
.h3_c01220{height:40.511979px;}
.h4_c01220{height:52.332837px;}
.h2_c01220{height:58.337477px;}
.h0_c01220{height:1262.835000px;}
.h1_c01220{height:1263.000000px;}
.w0_c01220{width:892.920000px;}
.w1_c01220{width:893.250000px;}
.x0_c01220{left:0.000000px;}
.x1_c01220{left:127.558500px;}
.x2_c01220{left:137.122500px;}
.x3_c01220{left:143.770500px;}
.x4_c01220{left:170.359500px;}
.x5_c01220{left:435.249000px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls3_c01220{letter-spacing:0.000000pt;}
.ls0_c01220{letter-spacing:0.078221pt;}
.ls2_c01220{letter-spacing:0.087539pt;}
.ls1_c01220{letter-spacing:0.092873pt;}
.wse_c01220{word-spacing:-29.967501pt;}
.ws2_c01220{word-spacing:-23.622682pt;}
.ws10_c01220{word-spacing:-23.544461pt;}
.wsb_c01220{word-spacing:-19.158506pt;}
.wsa_c01220{word-spacing:-19.128192pt;}
.ws5_c01220{word-spacing:-17.693578pt;}
.ws7_c01220{word-spacing:-16.684034pt;}
.ws4_c01220{word-spacing:-14.293010pt;}
.ws9_c01220{word-spacing:-14.239876pt;}
.ws6_c01220{word-spacing:-13.283467pt;}
.wsc_c01220{word-spacing:-12.539593pt;}
.wsd_c01220{word-spacing:-10.733041pt;}
.ws1_c01220{word-spacing:-8.878599pt;}
.ws3_c01220{word-spacing:-8.877777pt;}
.ws8_c01220{word-spacing:-4.032128pt;}
.ws14_c01220{word-spacing:0.000000pt;}
.ws11_c01220{word-spacing:0.039110pt;}
.ws17_c01220{word-spacing:0.050460pt;}
.ws15_c01220{word-spacing:0.065111pt;}
.wsf_c01220{word-spacing:0.156442pt;}
.ws18_c01220{word-spacing:0.180412pt;}
.ws12_c01220{word-spacing:0.189730pt;}
.ws13_c01220{word-spacing:0.195063pt;}
.ws16_c01220{word-spacing:23.661792pt;}
.ws0_c01220{word-spacing:38.256533pt;}
._9_c01220{margin-left:-1965.333378pt;}
._2_c01220{margin-left:-7.039202pt;}
._1_c01220{margin-left:-5.661967pt;}
._4_c01220{margin-left:-3.506835pt;}
._0_c01220{margin-left:-1.377235pt;}
._7_c01220{width:0.893988pt;}
._3_c01220{width:17.252935pt;}
._5_c01220{width:18.437452pt;}
._6_c01220{width:35.652825pt;}
._b_c01220{width:47.362694pt;}
._8_c01220{width:70.985376pt;}
._a_c01220{width:118.624363pt;}
.fs3_c01220{font-size:27.569600pt;}
.fs2_c01220{font-size:39.110400pt;}
.fs1_c01220{font-size:53.133867pt;}
.fs0_c01220{font-size:76.513067pt;}
.y0_c01220{bottom:0.000000pt;}
.y20_c01220{bottom:39.333333pt;}
.y1f_c01220{bottom:77.317333pt;}
.y1e_c01220{bottom:91.929333pt;}
.y1d_c01220{bottom:106.541333pt;}
.y1c_c01220{bottom:121.153333pt;}
.y1b_c01220{bottom:135.765333pt;}
.y1a_c01220{bottom:150.377333pt;}
.y19_c01220{bottom:164.657333pt;}
.y18_c01220{bottom:179.269333pt;}
.y17_c01220{bottom:193.880000pt;}
.y16_c01220{bottom:208.492000pt;}
.y15_c01220{bottom:223.104000pt;}
.y14_c01220{bottom:237.716000pt;}
.y13_c01220{bottom:252.328000pt;}
.y12_c01220{bottom:266.940000pt;}
.y11_c01220{bottom:296.164000pt;}
.y10_c01220{bottom:310.776000pt;}
.yf_c01220{bottom:354.610667pt;}
.ye_c01220{bottom:369.222667pt;}
.yd_c01220{bottom:383.502667pt;}
.yc_c01220{bottom:423.846667pt;}
.yb_c01220{bottom:439.786667pt;}
.ya_c01220{bottom:455.728000pt;}
.y9_c01220{bottom:471.668000pt;}
.y8_c01220{bottom:487.608000pt;}
.y7_c01220{bottom:503.548000pt;}
.y6_c01220{bottom:527.530667pt;}
.y5_c01220{bottom:551.512000pt;}
.y4_c01220{bottom:567.452000pt;}
.y3_c01220{bottom:591.434667pt;}
.y2_c01220{bottom:615.416000pt;}
.y1_c01220{bottom:653.094667pt;}
.h5_c01220{height:31.280681pt;}
.h6_c01220{height:32.006363pt;}
.h3_c01220{height:36.010648pt;}
.h4_c01220{height:46.518078pt;}
.h2_c01220{height:51.855535pt;}
.h0_c01220{height:1122.520000pt;}
.h1_c01220{height:1122.666667pt;}
.w0_c01220{width:793.706667pt;}
.w1_c01220{width:794.000000pt;}
.x0_c01220{left:0.000000pt;}
.x1_c01220{left:113.385333pt;}
.x2_c01220{left:121.886667pt;}
.x3_c01220{left:127.796000pt;}
.x4_c01220{left:151.430667pt;}
.x5_c01220{left:386.888000pt;}
}





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

.ir_c01221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_a98f76a055a1c62e5c4966e7.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01221;src:url('chunks/assets/font_314f4e04965d19aca669504e.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01221;src:url('chunks/assets/font_babc8a480a41245bcb1a037c.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01221;src:url('chunks/assets/font_86a15420527155af930c0cbd.woff2')format("woff");}.ff5_c01221{font-family:ff5_c01221;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01221{vertical-align:0.000000px;}
.ls4_c01221{letter-spacing:0.000000px;}
.ls0_c01221{letter-spacing:0.087998px;}
.ls1_c01221{letter-spacing:0.098482px;}
.ls3_c01221{letter-spacing:0.104482px;}
.ls2_c01221{letter-spacing:26.690482px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01221{word-spacing:-26.575517px;}
.ws6_c01221{word-spacing:-26.487518px;}
.wsd_c01221{word-spacing:-18.769538px;}
.wsc_c01221{word-spacing:-15.780758px;}
.wse_c01221{word-spacing:-14.943900px;}
.wsb_c01221{word-spacing:-11.955120px;}
.ws9_c01221{word-spacing:-9.988424px;}
.wsa_c01221{word-spacing:-9.987499px;}
.ws5_c01221{word-spacing:0.000000px;}
.ws3_c01221{word-spacing:0.043999px;}
.ws2_c01221{word-spacing:0.073250px;}
.ws0_c01221{word-spacing:0.083734px;}
.ws7_c01221{word-spacing:0.213446px;}
.ws4_c01221{word-spacing:0.219446px;}
.ws8_c01221{word-spacing:43.038600px;}
._6_c01221{margin-left:-7.919102px;}
._5_c01221{margin-left:-6.369713px;}
._8_c01221{margin-left:-3.885414px;}
._4_c01221{margin-left:-1.549390px;}
._3_c01221{width:1.171555px;}
._9_c01221{width:19.930500px;}
._7_c01221{width:26.013036px;}
._0_c01221{width:53.283031px;}
._1_c01221{width:79.858548px;}
._2_c01221{width:106.874057px;}
.fc5_c01221{color:rgb(79,153,5);}
.fc4_c01221{color:rgb(207,92,0);}
.fc3_c01221{color:rgb(0,0,207);}
.fc2_c01221{color:rgb(0,0,0);}
.fc1_c01221{color:rgb(143,89,3);}
.fc0_c01221{color:rgb(33,74,135);}
.fs0_c01221{font-size:43.999200px;}
.fs2_c01221{font-size:59.775600px;}
.fs1_c01221{font-size:86.077200px;}
.y0_c01221{bottom:0.000000px;}
.y1f_c01221{bottom:44.250000px;}
.y1e_c01221{bottom:82.051500px;}
.y1d_c01221{bottom:112.167000px;}
.y1c_c01221{bottom:130.099500px;}
.y1b_c01221{bottom:160.215000px;}
.y1a_c01221{bottom:190.330500px;}
.y19_c01221{bottom:237.258000px;}
.y18_c01221{bottom:716.028000px;}
.y17_c01221{bottom:732.465000px;}
.y16_c01221{bottom:748.903500px;}
.y15_c01221{bottom:765.342000px;}
.y14_c01221{bottom:781.780500px;}
.y13_c01221{bottom:798.219000px;}
.y12_c01221{bottom:814.657500px;}
.y11_c01221{bottom:831.096000px;}
.y10_c01221{bottom:847.534500px;}
.yf_c01221{bottom:863.973000px;}
.ye_c01221{bottom:880.411500px;}
.yd_c01221{bottom:913.287000px;}
.yc_c01221{bottom:929.725500px;}
.yb_c01221{bottom:946.164000px;}
.ya_c01221{bottom:979.041000px;}
.y9_c01221{bottom:995.479500px;}
.y8_c01221{bottom:1011.918000px;}
.y7_c01221{bottom:1028.356500px;}
.y6_c01221{bottom:1044.795000px;}
.y5_c01221{bottom:1061.232000px;}
.y4_c01221{bottom:1077.670500px;}
.y3_c01221{bottom:1126.986000px;}
.y2_c01221{bottom:1143.424500px;}
.y1_c01221{bottom:1159.863000px;}
.h3_c01221{height:35.190766px;}
.h2_c01221{height:36.007158px;}
.h5_c01221{height:40.511979px;}
.h6_c01221{height:52.332837px;}
.h4_c01221{height:58.337477px;}
.h0_c01221{height:1262.835000px;}
.h1_c01221{height:1263.000000px;}
.w0_c01221{width:892.920000px;}
.w1_c01221{width:893.250000px;}
.x0_c01221{left:0.000000px;}
.x4_c01221{left:127.558500px;}
.x2_c01221{left:137.122500px;}
.x1_c01221{left:143.770500px;}
.x3_c01221{left:177.007500px;}
.x5_c01221{left:435.249000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls4_c01221{letter-spacing:0.000000pt;}
.ls0_c01221{letter-spacing:0.078221pt;}
.ls1_c01221{letter-spacing:0.087539pt;}
.ls3_c01221{letter-spacing:0.092873pt;}
.ls2_c01221{letter-spacing:23.724873pt;}
.ws1_c01221{word-spacing:-23.622682pt;}
.ws6_c01221{word-spacing:-23.544461pt;}
.wsd_c01221{word-spacing:-16.684034pt;}
.wsc_c01221{word-spacing:-14.027341pt;}
.wse_c01221{word-spacing:-13.283467pt;}
.wsb_c01221{word-spacing:-10.626773pt;}
.ws9_c01221{word-spacing:-8.878599pt;}
.wsa_c01221{word-spacing:-8.877777pt;}
.ws5_c01221{word-spacing:0.000000pt;}
.ws3_c01221{word-spacing:0.039110pt;}
.ws2_c01221{word-spacing:0.065111pt;}
.ws0_c01221{word-spacing:0.074430pt;}
.ws7_c01221{word-spacing:0.189730pt;}
.ws4_c01221{word-spacing:0.195063pt;}
.ws8_c01221{word-spacing:38.256533pt;}
._6_c01221{margin-left:-7.039202pt;}
._5_c01221{margin-left:-5.661967pt;}
._8_c01221{margin-left:-3.453701pt;}
._4_c01221{margin-left:-1.377235pt;}
._3_c01221{width:1.041382pt;}
._9_c01221{width:17.716000pt;}
._7_c01221{width:23.122699pt;}
._0_c01221{width:47.362694pt;}
._1_c01221{width:70.985376pt;}
._2_c01221{width:94.999162pt;}
.fs0_c01221{font-size:39.110400pt;}
.fs2_c01221{font-size:53.133867pt;}
.fs1_c01221{font-size:76.513067pt;}
.y0_c01221{bottom:0.000000pt;}
.y1f_c01221{bottom:39.333333pt;}
.y1e_c01221{bottom:72.934667pt;}
.y1d_c01221{bottom:99.704000pt;}
.y1c_c01221{bottom:115.644000pt;}
.y1b_c01221{bottom:142.413333pt;}
.y1a_c01221{bottom:169.182667pt;}
.y19_c01221{bottom:210.896000pt;}
.y18_c01221{bottom:636.469333pt;}
.y17_c01221{bottom:651.080000pt;}
.y16_c01221{bottom:665.692000pt;}
.y15_c01221{bottom:680.304000pt;}
.y14_c01221{bottom:694.916000pt;}
.y13_c01221{bottom:709.528000pt;}
.y12_c01221{bottom:724.140000pt;}
.y11_c01221{bottom:738.752000pt;}
.y10_c01221{bottom:753.364000pt;}
.yf_c01221{bottom:767.976000pt;}
.ye_c01221{bottom:782.588000pt;}
.yd_c01221{bottom:811.810667pt;}
.yc_c01221{bottom:826.422667pt;}
.yb_c01221{bottom:841.034667pt;}
.ya_c01221{bottom:870.258667pt;}
.y9_c01221{bottom:884.870667pt;}
.y8_c01221{bottom:899.482667pt;}
.y7_c01221{bottom:914.094667pt;}
.y6_c01221{bottom:928.706667pt;}
.y5_c01221{bottom:943.317333pt;}
.y4_c01221{bottom:957.929333pt;}
.y3_c01221{bottom:1001.765333pt;}
.y2_c01221{bottom:1016.377333pt;}
.y1_c01221{bottom:1030.989333pt;}
.h3_c01221{height:31.280681pt;}
.h2_c01221{height:32.006363pt;}
.h5_c01221{height:36.010648pt;}
.h6_c01221{height:46.518078pt;}
.h4_c01221{height:51.855535pt;}
.h0_c01221{height:1122.520000pt;}
.h1_c01221{height:1122.666667pt;}
.w0_c01221{width:793.706667pt;}
.w1_c01221{width:794.000000pt;}
.x0_c01221{left:0.000000pt;}
.x4_c01221{left:113.385333pt;}
.x2_c01221{left:121.886667pt;}
.x1_c01221{left:127.796000pt;}
.x3_c01221{left:157.340000pt;}
.x5_c01221{left:386.888000pt;}
}





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

.ir_c01222:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01222;src:url('chunks/assets/font_8ff4483a1155fd8ded0d0c0d.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01222;src:url('chunks/assets/font_948cb219ba32b0a6e7a877ba.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01222;src:url('chunks/assets/font_6601e8bcff58311dc584c933.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01222;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01222;src:url('chunks/assets/font_04c9b41b8092a8c241e057f8.woff2')format("woff");}.ff6_c01222{font-family:ff6_c01222;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01222{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01222{vertical-align:0.000000px;}
.ls4_c01222{letter-spacing:0.000000px;}
.ls0_c01222{letter-spacing:0.087998px;}
.ls2_c01222{letter-spacing:0.098482px;}
.ls1_c01222{letter-spacing:0.104482px;}
.ls3_c01222{letter-spacing:26.690482px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01222{word-spacing:-33.713438px;}
.ws4_c01222{word-spacing:-26.575517px;}
.wsa_c01222{word-spacing:-26.487518px;}
.ws3_c01222{word-spacing:-21.553319px;}
.ws2_c01222{word-spacing:-21.519216px;}
.ws7_c01222{word-spacing:-18.769538px;}
.ws1_c01222{word-spacing:-17.633802px;}
.ws5_c01222{word-spacing:-14.107042px;}
.ws6_c01222{word-spacing:-12.074671px;}
.ws0_c01222{word-spacing:-7.686144px;}
.wse_c01222{word-spacing:0.000000px;}
.wsb_c01222{word-spacing:0.043999px;}
.ws11_c01222{word-spacing:0.056767px;}
.wsf_c01222{word-spacing:0.073250px;}
.ws13_c01222{word-spacing:0.083734px;}
.ws9_c01222{word-spacing:0.175997px;}
.ws12_c01222{word-spacing:0.202963px;}
.wsc_c01222{word-spacing:0.213446px;}
.wsd_c01222{word-spacing:0.219446px;}
.ws10_c01222{word-spacing:26.619516px;}
._7_c01222{margin-left:-2211.000050px;}
._4_c01222{margin-left:-3.825638px;}
._1_c01222{margin-left:-2.347817px;}
._0_c01222{margin-left:-1.075961px;}
._5_c01222{width:1.005737px;}
._2_c01222{width:20.742133px;}
._3_c01222{width:40.109428px;}
._9_c01222{width:53.283031px;}
._6_c01222{width:79.858548px;}
._8_c01222{width:133.452408px;}
.fc6_c01222{color:rgb(0,0,207);}
.fc5_c01222{color:rgb(79,153,5);}
.fc3_c01222{color:rgb(33,74,135);}
.fc2_c01222{color:rgb(143,89,3);}
.fc4_c01222{color:rgb(207,92,0);}
.fc1_c01222{color:rgb(6,69,173);}
.fc0_c01222{color:rgb(0,0,0);}
.fs2_c01222{font-size:31.015800px;}
.fs1_c01222{font-size:43.999200px;}
.fs0_c01222{font-size:59.775600px;}
.y0_c01222{bottom:0.000000px;}
.y32_c01222{bottom:44.250000px;}
.y31_c01222{bottom:96.919500px;}
.y30_c01222{bottom:113.358000px;}
.y2f_c01222{bottom:129.796500px;}
.y2e_c01222{bottom:146.235000px;}
.y2d_c01222{bottom:162.673500px;}
.y2c_c01222{bottom:179.112000px;}
.y2b_c01222{bottom:195.550500px;}
.y2a_c01222{bottom:211.989000px;}
.y29_c01222{bottom:228.427500px;}
.y28_c01222{bottom:244.866000px;}
.y27_c01222{bottom:261.304500px;}
.y26_c01222{bottom:294.180000px;}
.y25_c01222{bottom:310.618500px;}
.y24_c01222{bottom:327.057000px;}
.y23_c01222{bottom:359.934000px;}
.y22_c01222{bottom:376.372500px;}
.y21_c01222{bottom:392.811000px;}
.y20_c01222{bottom:409.249500px;}
.y1f_c01222{bottom:425.688000px;}
.y1e_c01222{bottom:442.125000px;}
.y1d_c01222{bottom:458.563500px;}
.y1c_c01222{bottom:507.879000px;}
.y1b_c01222{bottom:524.317500px;}
.y1a_c01222{bottom:540.756000px;}
.y19_c01222{bottom:557.194500px;}
.y18_c01222{bottom:573.633000px;}
.y17_c01222{bottom:590.071500px;}
.y16_c01222{bottom:606.508500px;}
.y15_c01222{bottom:622.947000px;}
.y14_c01222{bottom:639.385500px;}
.y13_c01222{bottom:655.450500px;}
.y12_c01222{bottom:671.889000px;}
.y11_c01222{bottom:688.327500px;}
.y10_c01222{bottom:704.766000px;}
.yf_c01222{bottom:721.204500px;}
.ye_c01222{bottom:737.643000px;}
.yd_c01222{bottom:754.081500px;}
.yc_c01222{bottom:770.518500px;}
.yb_c01222{bottom:803.395500px;}
.ya_c01222{bottom:819.834000px;}
.y9_c01222{bottom:869.149500px;}
.y8_c01222{bottom:885.588000px;}
.y7_c01222{bottom:901.653000px;}
.y6_c01222{bottom:1070.199000px;}
.y5_c01222{bottom:1088.131500px;}
.y4_c01222{bottom:1106.064000px;}
.y3_c01222{bottom:1123.998000px;}
.y2_c01222{bottom:1141.930500px;}
.y1_c01222{bottom:1159.863000px;}
.h3_c01222{height:35.190766px;}
.h4_c01222{height:36.007158px;}
.h2_c01222{height:52.332837px;}
.h0_c01222{height:1262.835000px;}
.h1_c01222{height:1263.000000px;}
.w0_c01222{width:892.920000px;}
.w1_c01222{width:893.250000px;}
.x0_c01222{left:0.000000px;}
.x1_c01222{left:127.558500px;}
.x2_c01222{left:137.122500px;}
.x3_c01222{left:143.770500px;}
.x4_c01222{left:170.359500px;}
.x5_c01222{left:177.007500px;}
.x6_c01222{left:435.249000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls4_c01222{letter-spacing:0.000000pt;}
.ls0_c01222{letter-spacing:0.078221pt;}
.ls2_c01222{letter-spacing:0.087539pt;}
.ls1_c01222{letter-spacing:0.092873pt;}
.ls3_c01222{letter-spacing:23.724873pt;}
.ws8_c01222{word-spacing:-29.967501pt;}
.ws4_c01222{word-spacing:-23.622682pt;}
.wsa_c01222{word-spacing:-23.544461pt;}
.ws3_c01222{word-spacing:-19.158506pt;}
.ws2_c01222{word-spacing:-19.128192pt;}
.ws7_c01222{word-spacing:-16.684034pt;}
.ws1_c01222{word-spacing:-15.674491pt;}
.ws5_c01222{word-spacing:-12.539593pt;}
.ws6_c01222{word-spacing:-10.733041pt;}
.ws0_c01222{word-spacing:-6.832128pt;}
.wse_c01222{word-spacing:0.000000pt;}
.wsb_c01222{word-spacing:0.039110pt;}
.ws11_c01222{word-spacing:0.050460pt;}
.wsf_c01222{word-spacing:0.065111pt;}
.ws13_c01222{word-spacing:0.074430pt;}
.ws9_c01222{word-spacing:0.156442pt;}
.ws12_c01222{word-spacing:0.180412pt;}
.wsc_c01222{word-spacing:0.189730pt;}
.wsd_c01222{word-spacing:0.195063pt;}
.ws10_c01222{word-spacing:23.661792pt;}
._7_c01222{margin-left:-1965.333378pt;}
._4_c01222{margin-left:-3.400567pt;}
._1_c01222{margin-left:-2.086948pt;}
._0_c01222{margin-left:-0.956410pt;}
._5_c01222{width:0.893988pt;}
._2_c01222{width:18.437452pt;}
._3_c01222{width:35.652825pt;}
._9_c01222{width:47.362694pt;}
._6_c01222{width:70.985376pt;}
._8_c01222{width:118.624363pt;}
.fs2_c01222{font-size:27.569600pt;}
.fs1_c01222{font-size:39.110400pt;}
.fs0_c01222{font-size:53.133867pt;}
.y0_c01222{bottom:0.000000pt;}
.y32_c01222{bottom:39.333333pt;}
.y31_c01222{bottom:86.150667pt;}
.y30_c01222{bottom:100.762667pt;}
.y2f_c01222{bottom:115.374667pt;}
.y2e_c01222{bottom:129.986667pt;}
.y2d_c01222{bottom:144.598667pt;}
.y2c_c01222{bottom:159.210667pt;}
.y2b_c01222{bottom:173.822667pt;}
.y2a_c01222{bottom:188.434667pt;}
.y29_c01222{bottom:203.046667pt;}
.y28_c01222{bottom:217.658667pt;}
.y27_c01222{bottom:232.270667pt;}
.y26_c01222{bottom:261.493333pt;}
.y25_c01222{bottom:276.105333pt;}
.y24_c01222{bottom:290.717333pt;}
.y23_c01222{bottom:319.941333pt;}
.y22_c01222{bottom:334.553333pt;}
.y21_c01222{bottom:349.165333pt;}
.y20_c01222{bottom:363.777333pt;}
.y1f_c01222{bottom:378.389333pt;}
.y1e_c01222{bottom:393.000000pt;}
.y1d_c01222{bottom:407.612000pt;}
.y1c_c01222{bottom:451.448000pt;}
.y1b_c01222{bottom:466.060000pt;}
.y1a_c01222{bottom:480.672000pt;}
.y19_c01222{bottom:495.284000pt;}
.y18_c01222{bottom:509.896000pt;}
.y17_c01222{bottom:524.508000pt;}
.y16_c01222{bottom:539.118667pt;}
.y15_c01222{bottom:553.730667pt;}
.y14_c01222{bottom:568.342667pt;}
.y13_c01222{bottom:582.622667pt;}
.y12_c01222{bottom:597.234667pt;}
.y11_c01222{bottom:611.846667pt;}
.y10_c01222{bottom:626.458667pt;}
.yf_c01222{bottom:641.070667pt;}
.ye_c01222{bottom:655.682667pt;}
.yd_c01222{bottom:670.294667pt;}
.yc_c01222{bottom:684.905333pt;}
.yb_c01222{bottom:714.129333pt;}
.ya_c01222{bottom:728.741333pt;}
.y9_c01222{bottom:772.577333pt;}
.y8_c01222{bottom:787.189333pt;}
.y7_c01222{bottom:801.469333pt;}
.y6_c01222{bottom:951.288000pt;}
.y5_c01222{bottom:967.228000pt;}
.y4_c01222{bottom:983.168000pt;}
.y3_c01222{bottom:999.109333pt;}
.y2_c01222{bottom:1015.049333pt;}
.y1_c01222{bottom:1030.989333pt;}
.h3_c01222{height:31.280681pt;}
.h4_c01222{height:32.006363pt;}
.h2_c01222{height:46.518078pt;}
.h0_c01222{height:1122.520000pt;}
.h1_c01222{height:1122.666667pt;}
.w0_c01222{width:793.706667pt;}
.w1_c01222{width:794.000000pt;}
.x0_c01222{left:0.000000pt;}
.x1_c01222{left:113.385333pt;}
.x2_c01222{left:121.886667pt;}
.x3_c01222{left:127.796000pt;}
.x4_c01222{left:151.430667pt;}
.x5_c01222{left:157.340000pt;}
.x6_c01222{left:386.888000pt;}
}





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

.ir_c01223:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_88a5d9cf3ba2e24cca6581fa.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01223;src:url('chunks/assets/font_79ce17d2280f3998748850f4.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01223;src:url('chunks/assets/font_de7f8498ddf98fa1fe9d9957.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01223;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01223;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01223{font-family:ff5_c01223;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01223;src:url('chunks/assets/font_9b1ba21ea7b5f07f0d5e07fa.woff2')format("woff");}.ff6_c01223{font-family:ff6_c01223;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01223{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01223{vertical-align:0.000000px;}
.ls3_c01223{letter-spacing:0.000000px;}
.ls0_c01223{letter-spacing:0.087998px;}
.ls2_c01223{letter-spacing:0.098482px;}
.ls1_c01223{letter-spacing:0.104482px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01223{word-spacing:-33.713438px;}
.ws2_c01223{word-spacing:-26.575517px;}
.ws10_c01223{word-spacing:-26.487518px;}
.wsb_c01223{word-spacing:-21.553319px;}
.wsa_c01223{word-spacing:-21.519216px;}
.ws7_c01223{word-spacing:-18.769538px;}
.ws9_c01223{word-spacing:-17.633802px;}
.ws5_c01223{word-spacing:-16.976270px;}
.ws6_c01223{word-spacing:-14.943900px;}
.wsc_c01223{word-spacing:-14.107042px;}
.ws4_c01223{word-spacing:-13.150632px;}
.wsd_c01223{word-spacing:-12.074671px;}
.ws1_c01223{word-spacing:-9.988424px;}
.ws3_c01223{word-spacing:-9.987499px;}
.ws8_c01223{word-spacing:-7.686144px;}
.ws14_c01223{word-spacing:0.000000px;}
.ws11_c01223{word-spacing:0.043999px;}
.ws17_c01223{word-spacing:0.056767px;}
.ws15_c01223{word-spacing:0.073250px;}
.wsf_c01223{word-spacing:0.175997px;}
.ws18_c01223{word-spacing:0.202963px;}
.ws12_c01223{word-spacing:0.213446px;}
.ws13_c01223{word-spacing:0.219446px;}
.ws16_c01223{word-spacing:26.619516px;}
.ws0_c01223{word-spacing:43.038600px;}
._9_c01223{margin-left:-2211.000050px;}
._2_c01223{margin-left:-7.919102px;}
._1_c01223{margin-left:-6.369713px;}
._4_c01223{margin-left:-4.124516px;}
._0_c01223{margin-left:-1.549390px;}
._7_c01223{width:1.005737px;}
._5_c01223{width:19.930500px;}
._3_c01223{width:23.530548px;}
._6_c01223{width:40.109428px;}
._b_c01223{width:53.283031px;}
._8_c01223{width:79.858548px;}
._a_c01223{width:133.452408px;}
.fc6_c01223{color:rgb(0,0,207);}
.fc5_c01223{color:rgb(79,153,5);}
.fc3_c01223{color:rgb(33,74,135);}
.fc2_c01223{color:rgb(143,89,3);}
.fc4_c01223{color:rgb(207,92,0);}
.fc1_c01223{color:rgb(6,69,173);}
.fc0_c01223{color:rgb(0,0,0);}
.fs3_c01223{font-size:31.015800px;}
.fs2_c01223{font-size:43.999200px;}
.fs1_c01223{font-size:59.775600px;}
.fs0_c01223{font-size:86.077200px;}
.y0_c01223{bottom:0.000000px;}
.y20_c01223{bottom:44.250000px;}
.y1f_c01223{bottom:86.982000px;}
.y1e_c01223{bottom:103.420500px;}
.y1d_c01223{bottom:119.859000px;}
.y1c_c01223{bottom:136.297500px;}
.y1b_c01223{bottom:152.736000px;}
.y1a_c01223{bottom:169.174500px;}
.y19_c01223{bottom:185.239500px;}
.y18_c01223{bottom:201.678000px;}
.y17_c01223{bottom:218.115000px;}
.y16_c01223{bottom:234.553500px;}
.y15_c01223{bottom:250.992000px;}
.y14_c01223{bottom:267.430500px;}
.y13_c01223{bottom:283.869000px;}
.y12_c01223{bottom:300.307500px;}
.y11_c01223{bottom:333.184500px;}
.y10_c01223{bottom:349.623000px;}
.yf_c01223{bottom:398.937000px;}
.ye_c01223{bottom:415.375500px;}
.yd_c01223{bottom:431.440500px;}
.yc_c01223{bottom:476.827500px;}
.yb_c01223{bottom:494.760000px;}
.ya_c01223{bottom:512.694000px;}
.y9_c01223{bottom:530.626500px;}
.y8_c01223{bottom:548.559000px;}
.y7_c01223{bottom:566.491500px;}
.y6_c01223{bottom:593.472000px;}
.y5_c01223{bottom:620.451000px;}
.y4_c01223{bottom:638.383500px;}
.y3_c01223{bottom:665.364000px;}
.y2_c01223{bottom:692.343000px;}
.y1_c01223{bottom:734.731500px;}
.h5_c01223{height:35.190766px;}
.h6_c01223{height:36.007158px;}
.h3_c01223{height:40.511979px;}
.h4_c01223{height:52.332837px;}
.h2_c01223{height:58.337477px;}
.h0_c01223{height:1262.835000px;}
.h1_c01223{height:1263.000000px;}
.w0_c01223{width:892.920000px;}
.w1_c01223{width:893.250000px;}
.x0_c01223{left:0.000000px;}
.x1_c01223{left:127.558500px;}
.x2_c01223{left:137.122500px;}
.x3_c01223{left:143.770500px;}
.x4_c01223{left:170.359500px;}
.x5_c01223{left:435.249000px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls3_c01223{letter-spacing:0.000000pt;}
.ls0_c01223{letter-spacing:0.078221pt;}
.ls2_c01223{letter-spacing:0.087539pt;}
.ls1_c01223{letter-spacing:0.092873pt;}
.wse_c01223{word-spacing:-29.967501pt;}
.ws2_c01223{word-spacing:-23.622682pt;}
.ws10_c01223{word-spacing:-23.544461pt;}
.wsb_c01223{word-spacing:-19.158506pt;}
.wsa_c01223{word-spacing:-19.128192pt;}
.ws7_c01223{word-spacing:-16.684034pt;}
.ws9_c01223{word-spacing:-15.674491pt;}
.ws5_c01223{word-spacing:-15.090018pt;}
.ws6_c01223{word-spacing:-13.283467pt;}
.wsc_c01223{word-spacing:-12.539593pt;}
.ws4_c01223{word-spacing:-11.689451pt;}
.wsd_c01223{word-spacing:-10.733041pt;}
.ws1_c01223{word-spacing:-8.878599pt;}
.ws3_c01223{word-spacing:-8.877777pt;}
.ws8_c01223{word-spacing:-6.832128pt;}
.ws14_c01223{word-spacing:0.000000pt;}
.ws11_c01223{word-spacing:0.039110pt;}
.ws17_c01223{word-spacing:0.050460pt;}
.ws15_c01223{word-spacing:0.065111pt;}
.wsf_c01223{word-spacing:0.156442pt;}
.ws18_c01223{word-spacing:0.180412pt;}
.ws12_c01223{word-spacing:0.189730pt;}
.ws13_c01223{word-spacing:0.195063pt;}
.ws16_c01223{word-spacing:23.661792pt;}
.ws0_c01223{word-spacing:38.256533pt;}
._9_c01223{margin-left:-1965.333378pt;}
._2_c01223{margin-left:-7.039202pt;}
._1_c01223{margin-left:-5.661967pt;}
._4_c01223{margin-left:-3.666237pt;}
._0_c01223{margin-left:-1.377235pt;}
._7_c01223{width:0.893988pt;}
._5_c01223{width:17.716000pt;}
._3_c01223{width:20.916043pt;}
._6_c01223{width:35.652825pt;}
._b_c01223{width:47.362694pt;}
._8_c01223{width:70.985376pt;}
._a_c01223{width:118.624363pt;}
.fs3_c01223{font-size:27.569600pt;}
.fs2_c01223{font-size:39.110400pt;}
.fs1_c01223{font-size:53.133867pt;}
.fs0_c01223{font-size:76.513067pt;}
.y0_c01223{bottom:0.000000pt;}
.y20_c01223{bottom:39.333333pt;}
.y1f_c01223{bottom:77.317333pt;}
.y1e_c01223{bottom:91.929333pt;}
.y1d_c01223{bottom:106.541333pt;}
.y1c_c01223{bottom:121.153333pt;}
.y1b_c01223{bottom:135.765333pt;}
.y1a_c01223{bottom:150.377333pt;}
.y19_c01223{bottom:164.657333pt;}
.y18_c01223{bottom:179.269333pt;}
.y17_c01223{bottom:193.880000pt;}
.y16_c01223{bottom:208.492000pt;}
.y15_c01223{bottom:223.104000pt;}
.y14_c01223{bottom:237.716000pt;}
.y13_c01223{bottom:252.328000pt;}
.y12_c01223{bottom:266.940000pt;}
.y11_c01223{bottom:296.164000pt;}
.y10_c01223{bottom:310.776000pt;}
.yf_c01223{bottom:354.610667pt;}
.ye_c01223{bottom:369.222667pt;}
.yd_c01223{bottom:383.502667pt;}
.yc_c01223{bottom:423.846667pt;}
.yb_c01223{bottom:439.786667pt;}
.ya_c01223{bottom:455.728000pt;}
.y9_c01223{bottom:471.668000pt;}
.y8_c01223{bottom:487.608000pt;}
.y7_c01223{bottom:503.548000pt;}
.y6_c01223{bottom:527.530667pt;}
.y5_c01223{bottom:551.512000pt;}
.y4_c01223{bottom:567.452000pt;}
.y3_c01223{bottom:591.434667pt;}
.y2_c01223{bottom:615.416000pt;}
.y1_c01223{bottom:653.094667pt;}
.h5_c01223{height:31.280681pt;}
.h6_c01223{height:32.006363pt;}
.h3_c01223{height:36.010648pt;}
.h4_c01223{height:46.518078pt;}
.h2_c01223{height:51.855535pt;}
.h0_c01223{height:1122.520000pt;}
.h1_c01223{height:1122.666667pt;}
.w0_c01223{width:793.706667pt;}
.w1_c01223{width:794.000000pt;}
.x0_c01223{left:0.000000pt;}
.x1_c01223{left:113.385333pt;}
.x2_c01223{left:121.886667pt;}
.x3_c01223{left:127.796000pt;}
.x4_c01223{left:151.430667pt;}
.x5_c01223{left:386.888000pt;}
}





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

.ir_c01224:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_94863b14c0c397756a3ff877.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01224;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01224;src:url('chunks/assets/font_ca06923cc11ab6e875590bdb.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01224;src:url('chunks/assets/font_e3bae336d8b76614f8ba35cf.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01224;src:url('chunks/assets/font_7a49b46cc9f406536491d8f3.woff2')format("woff");}.ff5_c01224{font-family:ff5_c01224;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.ls4_c01224{letter-spacing:0.000000px;}
.ls0_c01224{letter-spacing:0.087998px;}
.ls1_c01224{letter-spacing:0.098482px;}
.ls3_c01224{letter-spacing:0.104482px;}
.ls2_c01224{letter-spacing:26.690482px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01224{word-spacing:-26.575517px;}
.ws6_c01224{word-spacing:-26.487518px;}
.wsc_c01224{word-spacing:-18.829314px;}
.wse_c01224{word-spacing:-18.769538px;}
.wsb_c01224{word-spacing:-15.063451px;}
.wsd_c01224{word-spacing:-14.943900px;}
.ws9_c01224{word-spacing:-9.988424px;}
.wsa_c01224{word-spacing:-9.987499px;}
.ws5_c01224{word-spacing:0.000000px;}
.ws3_c01224{word-spacing:0.043999px;}
.ws2_c01224{word-spacing:0.073250px;}
.ws0_c01224{word-spacing:0.083734px;}
.ws7_c01224{word-spacing:0.213446px;}
.ws4_c01224{word-spacing:0.219446px;}
.ws8_c01224{word-spacing:43.038600px;}
._5_c01224{margin-left:-7.919102px;}
._4_c01224{margin-left:-6.369713px;}
._7_c01224{margin-left:-4.303843px;}
._3_c01224{margin-left:-1.549390px;}
._2_c01224{width:1.182038px;}
._6_c01224{width:19.935367px;}
._0_c01224{width:53.283031px;}
._1_c01224{width:79.858548px;}
.fc5_c01224{color:rgb(79,153,5);}
.fc4_c01224{color:rgb(207,92,0);}
.fc3_c01224{color:rgb(0,0,207);}
.fc2_c01224{color:rgb(0,0,0);}
.fc1_c01224{color:rgb(143,89,3);}
.fc0_c01224{color:rgb(33,74,135);}
.fs0_c01224{font-size:43.999200px;}
.fs2_c01224{font-size:59.775600px;}
.fs1_c01224{font-size:86.077200px;}
.y0_c01224{bottom:0.000000px;}
.y1f_c01224{bottom:44.250000px;}
.y1e_c01224{bottom:82.051500px;}
.y1d_c01224{bottom:112.167000px;}
.y1c_c01224{bottom:130.099500px;}
.y1b_c01224{bottom:160.215000px;}
.y1a_c01224{bottom:190.330500px;}
.y19_c01224{bottom:237.258000px;}
.y18_c01224{bottom:716.028000px;}
.y17_c01224{bottom:732.465000px;}
.y16_c01224{bottom:748.903500px;}
.y15_c01224{bottom:765.342000px;}
.y14_c01224{bottom:781.780500px;}
.y13_c01224{bottom:798.219000px;}
.y12_c01224{bottom:814.657500px;}
.y11_c01224{bottom:831.096000px;}
.y10_c01224{bottom:847.534500px;}
.yf_c01224{bottom:863.973000px;}
.ye_c01224{bottom:880.411500px;}
.yd_c01224{bottom:913.287000px;}
.yc_c01224{bottom:929.725500px;}
.yb_c01224{bottom:946.164000px;}
.ya_c01224{bottom:979.041000px;}
.y9_c01224{bottom:995.479500px;}
.y8_c01224{bottom:1011.918000px;}
.y7_c01224{bottom:1028.356500px;}
.y6_c01224{bottom:1044.795000px;}
.y5_c01224{bottom:1061.232000px;}
.y4_c01224{bottom:1077.670500px;}
.y3_c01224{bottom:1126.986000px;}
.y2_c01224{bottom:1143.424500px;}
.y1_c01224{bottom:1159.863000px;}
.h3_c01224{height:35.190766px;}
.h2_c01224{height:36.007158px;}
.h5_c01224{height:40.511979px;}
.h6_c01224{height:52.332837px;}
.h4_c01224{height:58.337477px;}
.h0_c01224{height:1262.835000px;}
.h1_c01224{height:1263.000000px;}
.w0_c01224{width:892.920000px;}
.w1_c01224{width:893.250000px;}
.x0_c01224{left:0.000000px;}
.x4_c01224{left:127.558500px;}
.x2_c01224{left:137.122500px;}
.x1_c01224{left:143.770500px;}
.x3_c01224{left:177.007500px;}
.x5_c01224{left:435.249000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls4_c01224{letter-spacing:0.000000pt;}
.ls0_c01224{letter-spacing:0.078221pt;}
.ls1_c01224{letter-spacing:0.087539pt;}
.ls3_c01224{letter-spacing:0.092873pt;}
.ls2_c01224{letter-spacing:23.724873pt;}
.ws1_c01224{word-spacing:-23.622682pt;}
.ws6_c01224{word-spacing:-23.544461pt;}
.wsc_c01224{word-spacing:-16.737168pt;}
.wse_c01224{word-spacing:-16.684034pt;}
.wsb_c01224{word-spacing:-13.389734pt;}
.wsd_c01224{word-spacing:-13.283467pt;}
.ws9_c01224{word-spacing:-8.878599pt;}
.wsa_c01224{word-spacing:-8.877777pt;}
.ws5_c01224{word-spacing:0.000000pt;}
.ws3_c01224{word-spacing:0.039110pt;}
.ws2_c01224{word-spacing:0.065111pt;}
.ws0_c01224{word-spacing:0.074430pt;}
.ws7_c01224{word-spacing:0.189730pt;}
.ws4_c01224{word-spacing:0.195063pt;}
.ws8_c01224{word-spacing:38.256533pt;}
._5_c01224{margin-left:-7.039202pt;}
._4_c01224{margin-left:-5.661967pt;}
._7_c01224{margin-left:-3.825638pt;}
._3_c01224{margin-left:-1.377235pt;}
._2_c01224{width:1.050701pt;}
._6_c01224{width:17.720326pt;}
._0_c01224{width:47.362694pt;}
._1_c01224{width:70.985376pt;}
.fs0_c01224{font-size:39.110400pt;}
.fs2_c01224{font-size:53.133867pt;}
.fs1_c01224{font-size:76.513067pt;}
.y0_c01224{bottom:0.000000pt;}
.y1f_c01224{bottom:39.333333pt;}
.y1e_c01224{bottom:72.934667pt;}
.y1d_c01224{bottom:99.704000pt;}
.y1c_c01224{bottom:115.644000pt;}
.y1b_c01224{bottom:142.413333pt;}
.y1a_c01224{bottom:169.182667pt;}
.y19_c01224{bottom:210.896000pt;}
.y18_c01224{bottom:636.469333pt;}
.y17_c01224{bottom:651.080000pt;}
.y16_c01224{bottom:665.692000pt;}
.y15_c01224{bottom:680.304000pt;}
.y14_c01224{bottom:694.916000pt;}
.y13_c01224{bottom:709.528000pt;}
.y12_c01224{bottom:724.140000pt;}
.y11_c01224{bottom:738.752000pt;}
.y10_c01224{bottom:753.364000pt;}
.yf_c01224{bottom:767.976000pt;}
.ye_c01224{bottom:782.588000pt;}
.yd_c01224{bottom:811.810667pt;}
.yc_c01224{bottom:826.422667pt;}
.yb_c01224{bottom:841.034667pt;}
.ya_c01224{bottom:870.258667pt;}
.y9_c01224{bottom:884.870667pt;}
.y8_c01224{bottom:899.482667pt;}
.y7_c01224{bottom:914.094667pt;}
.y6_c01224{bottom:928.706667pt;}
.y5_c01224{bottom:943.317333pt;}
.y4_c01224{bottom:957.929333pt;}
.y3_c01224{bottom:1001.765333pt;}
.y2_c01224{bottom:1016.377333pt;}
.y1_c01224{bottom:1030.989333pt;}
.h3_c01224{height:31.280681pt;}
.h2_c01224{height:32.006363pt;}
.h5_c01224{height:36.010648pt;}
.h6_c01224{height:46.518078pt;}
.h4_c01224{height:51.855535pt;}
.h0_c01224{height:1122.520000pt;}
.h1_c01224{height:1122.666667pt;}
.w0_c01224{width:793.706667pt;}
.w1_c01224{width:794.000000pt;}
.x0_c01224{left:0.000000pt;}
.x4_c01224{left:113.385333pt;}
.x2_c01224{left:121.886667pt;}
.x1_c01224{left:127.796000pt;}
.x3_c01224{left:157.340000pt;}
.x5_c01224{left:386.888000pt;}
}





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

.ir_c01225:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01225;src:url('chunks/assets/font_a64d33bc0acec37fc2b50057.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01225;src:url('chunks/assets/font_7ddff429fa42fc3af4ddb7e5.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01225;src:url('chunks/assets/font_3812df1b88514c66046a2a56.woff2')format("woff");}.ff4_c01225{font-family:ff4_c01225;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01225;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01225{font-family:ff5_c01225;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01225;src:url('chunks/assets/font_0e9774347c8017330358a38f.woff2')format("woff");}.ff6_c01225{font-family:ff6_c01225;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01225{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01225{vertical-align:0.000000px;}
.ls4_c01225{letter-spacing:0.000000px;}
.ls0_c01225{letter-spacing:0.087998px;}
.ls2_c01225{letter-spacing:0.098482px;}
.ls1_c01225{letter-spacing:0.104482px;}
.ls3_c01225{letter-spacing:26.690482px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01225{word-spacing:-33.713438px;}
.ws4_c01225{word-spacing:-26.575517px;}
.wsa_c01225{word-spacing:-26.487518px;}
.ws3_c01225{word-spacing:-21.553319px;}
.ws2_c01225{word-spacing:-21.519216px;}
.ws1_c01225{word-spacing:-19.247743px;}
.ws7_c01225{word-spacing:-18.769538px;}
.ws5_c01225{word-spacing:-14.107042px;}
.ws6_c01225{word-spacing:-12.074671px;}
.ws0_c01225{word-spacing:-10.230144px;}
.wse_c01225{word-spacing:0.000000px;}
.wsb_c01225{word-spacing:0.043999px;}
.ws11_c01225{word-spacing:0.056767px;}
.wsf_c01225{word-spacing:0.073250px;}
.ws13_c01225{word-spacing:0.083734px;}
.ws9_c01225{word-spacing:0.175997px;}
.ws12_c01225{word-spacing:0.202963px;}
.wsc_c01225{word-spacing:0.213446px;}
.wsd_c01225{word-spacing:0.219446px;}
.ws10_c01225{word-spacing:26.619516px;}
._7_c01225{margin-left:-2211.000050px;}
._4_c01225{margin-left:-3.825638px;}
._1_c01225{margin-left:-2.347817px;}
._0_c01225{margin-left:-1.075961px;}
._5_c01225{width:1.005737px;}
._2_c01225{width:20.742133px;}
._3_c01225{width:40.109428px;}
._9_c01225{width:53.283031px;}
._6_c01225{width:79.858548px;}
._8_c01225{width:133.452408px;}
.fc6_c01225{color:rgb(0,0,207);}
.fc5_c01225{color:rgb(79,153,5);}
.fc3_c01225{color:rgb(33,74,135);}
.fc2_c01225{color:rgb(143,89,3);}
.fc4_c01225{color:rgb(207,92,0);}
.fc1_c01225{color:rgb(6,69,173);}
.fc0_c01225{color:rgb(0,0,0);}
.fs2_c01225{font-size:31.015800px;}
.fs1_c01225{font-size:43.999200px;}
.fs0_c01225{font-size:59.775600px;}
.y0_c01225{bottom:0.000000px;}
.y32_c01225{bottom:44.250000px;}
.y31_c01225{bottom:96.919500px;}
.y30_c01225{bottom:113.358000px;}
.y2f_c01225{bottom:129.796500px;}
.y2e_c01225{bottom:146.235000px;}
.y2d_c01225{bottom:162.673500px;}
.y2c_c01225{bottom:179.112000px;}
.y2b_c01225{bottom:195.550500px;}
.y2a_c01225{bottom:211.989000px;}
.y29_c01225{bottom:228.427500px;}
.y28_c01225{bottom:244.866000px;}
.y27_c01225{bottom:261.304500px;}
.y26_c01225{bottom:294.180000px;}
.y25_c01225{bottom:310.618500px;}
.y24_c01225{bottom:327.057000px;}
.y23_c01225{bottom:359.934000px;}
.y22_c01225{bottom:376.372500px;}
.y21_c01225{bottom:392.811000px;}
.y20_c01225{bottom:409.249500px;}
.y1f_c01225{bottom:425.688000px;}
.y1e_c01225{bottom:442.125000px;}
.y1d_c01225{bottom:458.563500px;}
.y1c_c01225{bottom:507.879000px;}
.y1b_c01225{bottom:524.317500px;}
.y1a_c01225{bottom:540.756000px;}
.y19_c01225{bottom:557.194500px;}
.y18_c01225{bottom:573.633000px;}
.y17_c01225{bottom:590.071500px;}
.y16_c01225{bottom:606.508500px;}
.y15_c01225{bottom:622.947000px;}
.y14_c01225{bottom:639.385500px;}
.y13_c01225{bottom:655.450500px;}
.y12_c01225{bottom:671.889000px;}
.y11_c01225{bottom:688.327500px;}
.y10_c01225{bottom:704.766000px;}
.yf_c01225{bottom:721.204500px;}
.ye_c01225{bottom:737.643000px;}
.yd_c01225{bottom:754.081500px;}
.yc_c01225{bottom:770.518500px;}
.yb_c01225{bottom:803.395500px;}
.ya_c01225{bottom:819.834000px;}
.y9_c01225{bottom:869.149500px;}
.y8_c01225{bottom:885.588000px;}
.y7_c01225{bottom:901.653000px;}
.y6_c01225{bottom:1070.199000px;}
.y5_c01225{bottom:1088.131500px;}
.y4_c01225{bottom:1106.064000px;}
.y3_c01225{bottom:1123.998000px;}
.y2_c01225{bottom:1141.930500px;}
.y1_c01225{bottom:1159.863000px;}
.h3_c01225{height:35.190766px;}
.h4_c01225{height:36.007158px;}
.h2_c01225{height:52.332837px;}
.h0_c01225{height:1262.835000px;}
.h1_c01225{height:1263.000000px;}
.w0_c01225{width:892.920000px;}
.w1_c01225{width:893.250000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:127.558500px;}
.x2_c01225{left:137.122500px;}
.x3_c01225{left:143.770500px;}
.x4_c01225{left:170.359500px;}
.x5_c01225{left:177.007500px;}
.x6_c01225{left:435.249000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls4_c01225{letter-spacing:0.000000pt;}
.ls0_c01225{letter-spacing:0.078221pt;}
.ls2_c01225{letter-spacing:0.087539pt;}
.ls1_c01225{letter-spacing:0.092873pt;}
.ls3_c01225{letter-spacing:23.724873pt;}
.ws8_c01225{word-spacing:-29.967501pt;}
.ws4_c01225{word-spacing:-23.622682pt;}
.wsa_c01225{word-spacing:-23.544461pt;}
.ws3_c01225{word-spacing:-19.158506pt;}
.ws2_c01225{word-spacing:-19.128192pt;}
.ws1_c01225{word-spacing:-17.109105pt;}
.ws7_c01225{word-spacing:-16.684034pt;}
.ws5_c01225{word-spacing:-12.539593pt;}
.ws6_c01225{word-spacing:-10.733041pt;}
.ws0_c01225{word-spacing:-9.093461pt;}
.wse_c01225{word-spacing:0.000000pt;}
.wsb_c01225{word-spacing:0.039110pt;}
.ws11_c01225{word-spacing:0.050460pt;}
.wsf_c01225{word-spacing:0.065111pt;}
.ws13_c01225{word-spacing:0.074430pt;}
.ws9_c01225{word-spacing:0.156442pt;}
.ws12_c01225{word-spacing:0.180412pt;}
.wsc_c01225{word-spacing:0.189730pt;}
.wsd_c01225{word-spacing:0.195063pt;}
.ws10_c01225{word-spacing:23.661792pt;}
._7_c01225{margin-left:-1965.333378pt;}
._4_c01225{margin-left:-3.400567pt;}
._1_c01225{margin-left:-2.086948pt;}
._0_c01225{margin-left:-0.956410pt;}
._5_c01225{width:0.893988pt;}
._2_c01225{width:18.437452pt;}
._3_c01225{width:35.652825pt;}
._9_c01225{width:47.362694pt;}
._6_c01225{width:70.985376pt;}
._8_c01225{width:118.624363pt;}
.fs2_c01225{font-size:27.569600pt;}
.fs1_c01225{font-size:39.110400pt;}
.fs0_c01225{font-size:53.133867pt;}
.y0_c01225{bottom:0.000000pt;}
.y32_c01225{bottom:39.333333pt;}
.y31_c01225{bottom:86.150667pt;}
.y30_c01225{bottom:100.762667pt;}
.y2f_c01225{bottom:115.374667pt;}
.y2e_c01225{bottom:129.986667pt;}
.y2d_c01225{bottom:144.598667pt;}
.y2c_c01225{bottom:159.210667pt;}
.y2b_c01225{bottom:173.822667pt;}
.y2a_c01225{bottom:188.434667pt;}
.y29_c01225{bottom:203.046667pt;}
.y28_c01225{bottom:217.658667pt;}
.y27_c01225{bottom:232.270667pt;}
.y26_c01225{bottom:261.493333pt;}
.y25_c01225{bottom:276.105333pt;}
.y24_c01225{bottom:290.717333pt;}
.y23_c01225{bottom:319.941333pt;}
.y22_c01225{bottom:334.553333pt;}
.y21_c01225{bottom:349.165333pt;}
.y20_c01225{bottom:363.777333pt;}
.y1f_c01225{bottom:378.389333pt;}
.y1e_c01225{bottom:393.000000pt;}
.y1d_c01225{bottom:407.612000pt;}
.y1c_c01225{bottom:451.448000pt;}
.y1b_c01225{bottom:466.060000pt;}
.y1a_c01225{bottom:480.672000pt;}
.y19_c01225{bottom:495.284000pt;}
.y18_c01225{bottom:509.896000pt;}
.y17_c01225{bottom:524.508000pt;}
.y16_c01225{bottom:539.118667pt;}
.y15_c01225{bottom:553.730667pt;}
.y14_c01225{bottom:568.342667pt;}
.y13_c01225{bottom:582.622667pt;}
.y12_c01225{bottom:597.234667pt;}
.y11_c01225{bottom:611.846667pt;}
.y10_c01225{bottom:626.458667pt;}
.yf_c01225{bottom:641.070667pt;}
.ye_c01225{bottom:655.682667pt;}
.yd_c01225{bottom:670.294667pt;}
.yc_c01225{bottom:684.905333pt;}
.yb_c01225{bottom:714.129333pt;}
.ya_c01225{bottom:728.741333pt;}
.y9_c01225{bottom:772.577333pt;}
.y8_c01225{bottom:787.189333pt;}
.y7_c01225{bottom:801.469333pt;}
.y6_c01225{bottom:951.288000pt;}
.y5_c01225{bottom:967.228000pt;}
.y4_c01225{bottom:983.168000pt;}
.y3_c01225{bottom:999.109333pt;}
.y2_c01225{bottom:1015.049333pt;}
.y1_c01225{bottom:1030.989333pt;}
.h3_c01225{height:31.280681pt;}
.h4_c01225{height:32.006363pt;}
.h2_c01225{height:46.518078pt;}
.h0_c01225{height:1122.520000pt;}
.h1_c01225{height:1122.666667pt;}
.w0_c01225{width:793.706667pt;}
.w1_c01225{width:794.000000pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:113.385333pt;}
.x2_c01225{left:121.886667pt;}
.x3_c01225{left:127.796000pt;}
.x4_c01225{left:151.430667pt;}
.x5_c01225{left:157.340000pt;}
.x6_c01225{left:386.888000pt;}
}





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

.ir_c01226:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_75528a997fc9e95fe866dc32.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01226;src:url('chunks/assets/font_1fa0b03f313385a1ffffd891.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01226;src:url('chunks/assets/font_8623823dc9d7bd0e5066369e.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01226;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01226;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01226{font-family:ff5_c01226;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01226{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.ls3_c01226{letter-spacing:0.000000px;}
.ls0_c01226{letter-spacing:0.087998px;}
.ls2_c01226{letter-spacing:0.098482px;}
.ls1_c01226{letter-spacing:0.104482px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01226{word-spacing:-26.575517px;}
.ws19_c01226{word-spacing:-26.487518px;}
.ws5_c01226{word-spacing:-19.725948px;}
.ws16_c01226{word-spacing:-18.889090px;}
.ws11_c01226{word-spacing:-18.829314px;}
.ws6_c01226{word-spacing:-18.769538px;}
.ws17_c01226{word-spacing:-18.410885px;}
.wsf_c01226{word-spacing:-17.275148px;}
.wse_c01226{word-spacing:-17.215373px;}
.ws10_c01226{word-spacing:-17.155597px;}
.ws4_c01226{word-spacing:-15.900310px;}
.wsa_c01226{word-spacing:-15.601432px;}
.ws7_c01226{word-spacing:-14.943900px;}
.ws15_c01226{word-spacing:-14.525471px;}
.ws14_c01226{word-spacing:-13.987490px;}
.wsb_c01226{word-spacing:-13.808164px;}
.ws9_c01226{word-spacing:-13.748388px;}
.wsc_c01226{word-spacing:-12.732203px;}
.wsd_c01226{word-spacing:-12.672427px;}
.ws1_c01226{word-spacing:-9.988424px;}
.ws3_c01226{word-spacing:-9.987499px;}
.ws13_c01226{word-spacing:-2.630126px;}
.ws1d_c01226{word-spacing:0.000000px;}
.ws8_c01226{word-spacing:0.017856px;}
.ws1a_c01226{word-spacing:0.043999px;}
.ws18_c01226{word-spacing:0.175997px;}
.ws1c_c01226{word-spacing:0.213446px;}
.ws1b_c01226{word-spacing:0.219446px;}
.ws12_c01226{word-spacing:0.896634px;}
.ws0_c01226{word-spacing:43.038600px;}
._3_c01226{margin-left:-9.468492px;}
._2_c01226{margin-left:-7.919102px;}
._1_c01226{margin-left:-6.369713px;}
._8_c01226{margin-left:-4.656358px;}
._5_c01226{margin-left:-3.612812px;}
._0_c01226{margin-left:-1.549390px;}
._d_c01226{width:1.005737px;}
._9_c01226{width:17.505421px;}
._4_c01226{width:19.494226px;}
._7_c01226{width:21.220338px;}
._6_c01226{width:29.529146px;}
._c_c01226{width:32.637478px;}
._a_c01226{width:35.267604px;}
._b_c01226{width:68.443062px;}
.fc5_c01226{color:rgb(79,153,5);}
.fc3_c01226{color:rgb(33,74,135);}
.fc2_c01226{color:rgb(143,89,3);}
.fc4_c01226{color:rgb(207,92,0);}
.fc1_c01226{color:rgb(6,69,173);}
.fc0_c01226{color:rgb(0,0,0);}
.fs2_c01226{font-size:43.999200px;}
.fs1_c01226{font-size:59.775600px;}
.fs0_c01226{font-size:86.077200px;}
.y0_c01226{bottom:0.000000px;}
.y1c_c01226{bottom:44.250000px;}
.y1b_c01226{bottom:86.982000px;}
.y1a_c01226{bottom:103.420500px;}
.y19_c01226{bottom:119.485500px;}
.y18_c01226{bottom:167.907000px;}
.y17_c01226{bottom:185.839500px;}
.y16_c01226{bottom:203.772000px;}
.y15_c01226{bottom:221.704500px;}
.y14_c01226{bottom:239.637000px;}
.y13_c01226{bottom:257.571000px;}
.y12_c01226{bottom:275.503500px;}
.y11_c01226{bottom:317.560500px;}
.y10_c01226{bottom:347.620500px;}
.yf_c01226{bottom:377.680500px;}
.ye_c01226{bottom:407.739000px;}
.yd_c01226{bottom:425.673000px;}
.yc_c01226{bottom:467.730000px;}
.yb_c01226{bottom:485.662500px;}
.ya_c01226{bottom:512.647500px;}
.y9_c01226{bottom:530.580000px;}
.y8_c01226{bottom:548.514000px;}
.y7_c01226{bottom:566.446500px;}
.y6_c01226{bottom:593.431500px;}
.y5_c01226{bottom:620.416500px;}
.y4_c01226{bottom:638.349000px;}
.y3_c01226{bottom:665.334000px;}
.y2_c01226{bottom:692.319000px;}
.y1_c01226{bottom:734.715000px;}
.h5_c01226{height:35.190766px;}
.h6_c01226{height:36.007158px;}
.h3_c01226{height:40.511979px;}
.h4_c01226{height:52.332837px;}
.h2_c01226{height:58.337477px;}
.h0_c01226{height:1262.835000px;}
.h1_c01226{height:1263.000000px;}
.w0_c01226{width:892.920000px;}
.w1_c01226{width:893.250000px;}
.x0_c01226{left:0.000000px;}
.x1_c01226{left:127.558500px;}
.x4_c01226{left:137.122500px;}
.x2_c01226{left:152.215500px;}
.x3_c01226{left:164.919000px;}
.x5_c01226{left:435.249000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls3_c01226{letter-spacing:0.000000pt;}
.ls0_c01226{letter-spacing:0.078221pt;}
.ls2_c01226{letter-spacing:0.087539pt;}
.ls1_c01226{letter-spacing:0.092873pt;}
.ws2_c01226{word-spacing:-23.622682pt;}
.ws19_c01226{word-spacing:-23.544461pt;}
.ws5_c01226{word-spacing:-17.534176pt;}
.ws16_c01226{word-spacing:-16.790302pt;}
.ws11_c01226{word-spacing:-16.737168pt;}
.ws6_c01226{word-spacing:-16.684034pt;}
.ws17_c01226{word-spacing:-16.365231pt;}
.wsf_c01226{word-spacing:-15.355687pt;}
.wse_c01226{word-spacing:-15.302554pt;}
.ws10_c01226{word-spacing:-15.249420pt;}
.ws4_c01226{word-spacing:-14.133609pt;}
.wsa_c01226{word-spacing:-13.867939pt;}
.ws7_c01226{word-spacing:-13.283467pt;}
.ws15_c01226{word-spacing:-12.911530pt;}
.ws14_c01226{word-spacing:-12.433325pt;}
.wsb_c01226{word-spacing:-12.273923pt;}
.ws9_c01226{word-spacing:-12.220789pt;}
.wsc_c01226{word-spacing:-11.317514pt;}
.wsd_c01226{word-spacing:-11.264380pt;}
.ws1_c01226{word-spacing:-8.878599pt;}
.ws3_c01226{word-spacing:-8.877777pt;}
.ws13_c01226{word-spacing:-2.337890pt;}
.ws1d_c01226{word-spacing:0.000000pt;}
.ws8_c01226{word-spacing:0.015872pt;}
.ws1a_c01226{word-spacing:0.039110pt;}
.ws18_c01226{word-spacing:0.156442pt;}
.ws1c_c01226{word-spacing:0.189730pt;}
.ws1b_c01226{word-spacing:0.195063pt;}
.ws12_c01226{word-spacing:0.797008pt;}
.ws0_c01226{word-spacing:38.256533pt;}
._3_c01226{margin-left:-8.416437pt;}
._2_c01226{margin-left:-7.039202pt;}
._1_c01226{margin-left:-5.661967pt;}
._8_c01226{margin-left:-4.138985pt;}
._5_c01226{margin-left:-3.211389pt;}
._0_c01226{margin-left:-1.377235pt;}
._d_c01226{width:0.893988pt;}
._9_c01226{width:15.560374pt;}
._4_c01226{width:17.328201pt;}
._7_c01226{width:18.862523pt;}
._6_c01226{width:26.248130pt;}
._c_c01226{width:29.011091pt;}
._a_c01226{width:31.348981pt;}
._b_c01226{width:60.838277pt;}
.fs2_c01226{font-size:39.110400pt;}
.fs1_c01226{font-size:53.133867pt;}
.fs0_c01226{font-size:76.513067pt;}
.y0_c01226{bottom:0.000000pt;}
.y1c_c01226{bottom:39.333333pt;}
.y1b_c01226{bottom:77.317333pt;}
.y1a_c01226{bottom:91.929333pt;}
.y19_c01226{bottom:106.209333pt;}
.y18_c01226{bottom:149.250667pt;}
.y17_c01226{bottom:165.190667pt;}
.y16_c01226{bottom:181.130667pt;}
.y15_c01226{bottom:197.070667pt;}
.y14_c01226{bottom:213.010667pt;}
.y13_c01226{bottom:228.952000pt;}
.y12_c01226{bottom:244.892000pt;}
.y11_c01226{bottom:282.276000pt;}
.y10_c01226{bottom:308.996000pt;}
.yf_c01226{bottom:335.716000pt;}
.ye_c01226{bottom:362.434667pt;}
.yd_c01226{bottom:378.376000pt;}
.yc_c01226{bottom:415.760000pt;}
.yb_c01226{bottom:431.700000pt;}
.ya_c01226{bottom:455.686667pt;}
.y9_c01226{bottom:471.626667pt;}
.y8_c01226{bottom:487.568000pt;}
.y7_c01226{bottom:503.508000pt;}
.y6_c01226{bottom:527.494667pt;}
.y5_c01226{bottom:551.481333pt;}
.y4_c01226{bottom:567.421333pt;}
.y3_c01226{bottom:591.408000pt;}
.y2_c01226{bottom:615.394667pt;}
.y1_c01226{bottom:653.080000pt;}
.h5_c01226{height:31.280681pt;}
.h6_c01226{height:32.006363pt;}
.h3_c01226{height:36.010648pt;}
.h4_c01226{height:46.518078pt;}
.h2_c01226{height:51.855535pt;}
.h0_c01226{height:1122.520000pt;}
.h1_c01226{height:1122.666667pt;}
.w0_c01226{width:793.706667pt;}
.w1_c01226{width:794.000000pt;}
.x0_c01226{left:0.000000pt;}
.x1_c01226{left:113.385333pt;}
.x4_c01226{left:121.886667pt;}
.x2_c01226{left:135.302667pt;}
.x3_c01226{left:146.594667pt;}
.x5_c01226{left:386.888000pt;}
}





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

.ir_c01227:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01227;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01227;src:url('chunks/assets/font_4f45404a69a675993cc27bf6.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01227;src:url('chunks/assets/font_b2e37c897bfa6f21e123797b.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls4_c01227{letter-spacing:0.000000px;}
.ls1_c01227{letter-spacing:0.087998px;}
.ls2_c01227{letter-spacing:0.098482px;}
.ls0_c01227{letter-spacing:0.104482px;}
.ls3_c01227{letter-spacing:26.690482px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01227{word-spacing:-26.575517px;}
.ws0_c01227{word-spacing:-26.487518px;}
.ws5_c01227{word-spacing:0.000000px;}
.ws7_c01227{word-spacing:0.036900px;}
.ws4_c01227{word-spacing:0.043999px;}
.ws6_c01227{word-spacing:0.053933px;}
.wsa_c01227{word-spacing:0.064416px;}
.ws8_c01227{word-spacing:0.070416px;}
.wsb_c01227{word-spacing:0.100217px;}
.ws2_c01227{word-spacing:0.175997px;}
.ws3_c01227{word-spacing:0.213446px;}
.ws9_c01227{word-spacing:0.219446px;}
._0_c01227{width:1.047451px;}
._1_c01227{width:53.723023px;}
.fc5_c01227{color:rgb(0,0,207);}
.fc4_c01227{color:rgb(143,89,3);}
.fc3_c01227{color:rgb(79,153,5);}
.fc2_c01227{color:rgb(207,92,0);}
.fc1_c01227{color:rgb(0,0,0);}
.fc0_c01227{color:rgb(33,74,135);}
.fs0_c01227{font-size:43.999200px;}
.fs1_c01227{font-size:59.775600px;}
.y0_c01227{bottom:0.000000px;}
.y39_c01227{bottom:44.250000px;}
.y38_c01227{bottom:91.369500px;}
.y37_c01227{bottom:107.808000px;}
.y36_c01227{bottom:124.246500px;}
.y35_c01227{bottom:140.685000px;}
.y34_c01227{bottom:157.123500px;}
.y33_c01227{bottom:173.562000px;}
.y32_c01227{bottom:190.000500px;}
.y31_c01227{bottom:206.437500px;}
.y30_c01227{bottom:222.876000px;}
.y2f_c01227{bottom:239.314500px;}
.y2e_c01227{bottom:255.753000px;}
.y2d_c01227{bottom:272.191500px;}
.y2c_c01227{bottom:288.630000px;}
.y2b_c01227{bottom:305.068500px;}
.y2a_c01227{bottom:321.507000px;}
.y29_c01227{bottom:337.945500px;}
.y28_c01227{bottom:354.384000px;}
.y27_c01227{bottom:370.822500px;}
.y26_c01227{bottom:403.698000px;}
.y25_c01227{bottom:420.136500px;}
.y24_c01227{bottom:436.575000px;}
.y23_c01227{bottom:453.013500px;}
.y22_c01227{bottom:469.452000px;}
.y21_c01227{bottom:485.890500px;}
.y20_c01227{bottom:518.767500px;}
.y1f_c01227{bottom:535.206000px;}
.y1e_c01227{bottom:551.643000px;}
.y1d_c01227{bottom:568.081500px;}
.y1c_c01227{bottom:600.958500px;}
.y1b_c01227{bottom:617.397000px;}
.y1a_c01227{bottom:633.835500px;}
.y19_c01227{bottom:650.274000px;}
.y18_c01227{bottom:683.151000px;}
.y17_c01227{bottom:699.589500px;}
.y16_c01227{bottom:716.028000px;}
.y15_c01227{bottom:732.465000px;}
.y14_c01227{bottom:748.903500px;}
.y13_c01227{bottom:765.342000px;}
.y12_c01227{bottom:781.780500px;}
.y11_c01227{bottom:814.657500px;}
.y10_c01227{bottom:831.096000px;}
.yf_c01227{bottom:847.534500px;}
.ye_c01227{bottom:880.411500px;}
.yd_c01227{bottom:896.848500px;}
.yc_c01227{bottom:946.164000px;}
.yb_c01227{bottom:962.602500px;}
.ya_c01227{bottom:995.479500px;}
.y9_c01227{bottom:1011.918000px;}
.y8_c01227{bottom:1028.356500px;}
.y7_c01227{bottom:1044.795000px;}
.y6_c01227{bottom:1077.670500px;}
.y5_c01227{bottom:1094.109000px;}
.y4_c01227{bottom:1110.547500px;}
.y3_c01227{bottom:1126.986000px;}
.y2_c01227{bottom:1143.424500px;}
.y1_c01227{bottom:1159.863000px;}
.h3_c01227{height:35.190766px;}
.h2_c01227{height:36.007158px;}
.h4_c01227{height:52.332837px;}
.h0_c01227{height:1262.835000px;}
.h1_c01227{height:1263.000000px;}
.w0_c01227{width:892.920000px;}
.w1_c01227{width:893.250000px;}
.x0_c01227{left:0.000000px;}
.x1_c01227{left:137.122500px;}
.x2_c01227{left:143.770500px;}
.x5_c01227{left:170.359500px;}
.x4_c01227{left:177.007500px;}
.x3_c01227{left:203.596500px;}
.x6_c01227{left:210.243000px;}
.x7_c01227{left:435.249000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls4_c01227{letter-spacing:0.000000pt;}
.ls1_c01227{letter-spacing:0.078221pt;}
.ls2_c01227{letter-spacing:0.087539pt;}
.ls0_c01227{letter-spacing:0.092873pt;}
.ls3_c01227{letter-spacing:23.724873pt;}
.ws1_c01227{word-spacing:-23.622682pt;}
.ws0_c01227{word-spacing:-23.544461pt;}
.ws5_c01227{word-spacing:0.000000pt;}
.ws7_c01227{word-spacing:0.032800pt;}
.ws4_c01227{word-spacing:0.039110pt;}
.ws6_c01227{word-spacing:0.047940pt;}
.wsa_c01227{word-spacing:0.057259pt;}
.ws8_c01227{word-spacing:0.062592pt;}
.wsb_c01227{word-spacing:0.089082pt;}
.ws2_c01227{word-spacing:0.156442pt;}
.ws3_c01227{word-spacing:0.189730pt;}
.ws9_c01227{word-spacing:0.195063pt;}
._0_c01227{width:0.931068pt;}
._1_c01227{width:47.753798pt;}
.fs0_c01227{font-size:39.110400pt;}
.fs1_c01227{font-size:53.133867pt;}
.y0_c01227{bottom:0.000000pt;}
.y39_c01227{bottom:39.333333pt;}
.y38_c01227{bottom:81.217333pt;}
.y37_c01227{bottom:95.829333pt;}
.y36_c01227{bottom:110.441333pt;}
.y35_c01227{bottom:125.053333pt;}
.y34_c01227{bottom:139.665333pt;}
.y33_c01227{bottom:154.277333pt;}
.y32_c01227{bottom:168.889333pt;}
.y31_c01227{bottom:183.500000pt;}
.y30_c01227{bottom:198.112000pt;}
.y2f_c01227{bottom:212.724000pt;}
.y2e_c01227{bottom:227.336000pt;}
.y2d_c01227{bottom:241.948000pt;}
.y2c_c01227{bottom:256.560000pt;}
.y2b_c01227{bottom:271.172000pt;}
.y2a_c01227{bottom:285.784000pt;}
.y29_c01227{bottom:300.396000pt;}
.y28_c01227{bottom:315.008000pt;}
.y27_c01227{bottom:329.620000pt;}
.y26_c01227{bottom:358.842667pt;}
.y25_c01227{bottom:373.454667pt;}
.y24_c01227{bottom:388.066667pt;}
.y23_c01227{bottom:402.678667pt;}
.y22_c01227{bottom:417.290667pt;}
.y21_c01227{bottom:431.902667pt;}
.y20_c01227{bottom:461.126667pt;}
.y1f_c01227{bottom:475.738667pt;}
.y1e_c01227{bottom:490.349333pt;}
.y1d_c01227{bottom:504.961333pt;}
.y1c_c01227{bottom:534.185333pt;}
.y1b_c01227{bottom:548.797333pt;}
.y1a_c01227{bottom:563.409333pt;}
.y19_c01227{bottom:578.021333pt;}
.y18_c01227{bottom:607.245333pt;}
.y17_c01227{bottom:621.857333pt;}
.y16_c01227{bottom:636.469333pt;}
.y15_c01227{bottom:651.080000pt;}
.y14_c01227{bottom:665.692000pt;}
.y13_c01227{bottom:680.304000pt;}
.y12_c01227{bottom:694.916000pt;}
.y11_c01227{bottom:724.140000pt;}
.y10_c01227{bottom:738.752000pt;}
.yf_c01227{bottom:753.364000pt;}
.ye_c01227{bottom:782.588000pt;}
.yd_c01227{bottom:797.198667pt;}
.yc_c01227{bottom:841.034667pt;}
.yb_c01227{bottom:855.646667pt;}
.ya_c01227{bottom:884.870667pt;}
.y9_c01227{bottom:899.482667pt;}
.y8_c01227{bottom:914.094667pt;}
.y7_c01227{bottom:928.706667pt;}
.y6_c01227{bottom:957.929333pt;}
.y5_c01227{bottom:972.541333pt;}
.y4_c01227{bottom:987.153333pt;}
.y3_c01227{bottom:1001.765333pt;}
.y2_c01227{bottom:1016.377333pt;}
.y1_c01227{bottom:1030.989333pt;}
.h3_c01227{height:31.280681pt;}
.h2_c01227{height:32.006363pt;}
.h4_c01227{height:46.518078pt;}
.h0_c01227{height:1122.520000pt;}
.h1_c01227{height:1122.666667pt;}
.w0_c01227{width:793.706667pt;}
.w1_c01227{width:794.000000pt;}
.x0_c01227{left:0.000000pt;}
.x1_c01227{left:121.886667pt;}
.x2_c01227{left:127.796000pt;}
.x5_c01227{left:151.430667pt;}
.x4_c01227{left:157.340000pt;}
.x3_c01227{left:180.974667pt;}
.x6_c01227{left:186.882667pt;}
.x7_c01227{left:386.888000pt;}
}





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

.ir_c01228:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_dbd4201ae434d24bdf67f892.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01228;src:url('chunks/assets/font_dbc9a6bbca5ec232cd26e4df.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01228;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01228;src:url('chunks/assets/font_03a928a885bef05e9bb6d899.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01228{vertical-align:0.000000px;}
.ls5_c01228{letter-spacing:0.000000px;}
.ls0_c01228{letter-spacing:0.087998px;}
.ls2_c01228{letter-spacing:0.098482px;}
.ls1_c01228{letter-spacing:0.104482px;}
.ls3_c01228{letter-spacing:0.140482px;}
.ls4_c01228{letter-spacing:0.146482px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:-26.575517px;}
.ws3_c01228{word-spacing:-26.487518px;}
.ws4_c01228{word-spacing:0.000000px;}
.ws1_c01228{word-spacing:0.043999px;}
.ws2_c01228{word-spacing:0.053933px;}
.ws5_c01228{word-spacing:0.056767px;}
.ws6_c01228{word-spacing:0.213446px;}
._0_c01228{width:1.073318px;}
.fc5_c01228{color:rgb(143,89,3);}
.fc4_c01228{color:rgb(79,153,5);}
.fc3_c01228{color:rgb(0,0,207);}
.fc2_c01228{color:rgb(207,92,0);}
.fc1_c01228{color:rgb(0,0,0);}
.fc0_c01228{color:rgb(33,74,135);}
.fs0_c01228{font-size:43.999200px;}
.fs1_c01228{font-size:59.775600px;}
.y0_c01228{bottom:0.000000px;}
.y2d_c01228{bottom:44.250000px;}
.y2c_c01228{bottom:403.698000px;}
.y2b_c01228{bottom:420.136500px;}
.y2a_c01228{bottom:436.575000px;}
.y29_c01228{bottom:453.013500px;}
.y28_c01228{bottom:469.452000px;}
.y27_c01228{bottom:485.890500px;}
.y26_c01228{bottom:502.329000px;}
.y25_c01228{bottom:518.767500px;}
.y24_c01228{bottom:535.206000px;}
.y23_c01228{bottom:551.643000px;}
.y22_c01228{bottom:568.081500px;}
.y21_c01228{bottom:600.958500px;}
.y20_c01228{bottom:617.397000px;}
.y1f_c01228{bottom:633.835500px;}
.y1e_c01228{bottom:666.712500px;}
.y1d_c01228{bottom:683.151000px;}
.y1c_c01228{bottom:699.589500px;}
.y1b_c01228{bottom:716.028000px;}
.y1a_c01228{bottom:732.465000px;}
.y19_c01228{bottom:748.903500px;}
.y18_c01228{bottom:765.342000px;}
.y17_c01228{bottom:781.780500px;}
.y16_c01228{bottom:798.219000px;}
.y15_c01228{bottom:814.657500px;}
.y14_c01228{bottom:831.096000px;}
.y13_c01228{bottom:847.534500px;}
.y12_c01228{bottom:863.973000px;}
.y11_c01228{bottom:880.411500px;}
.y10_c01228{bottom:896.848500px;}
.yf_c01228{bottom:913.287000px;}
.ye_c01228{bottom:929.725500px;}
.yd_c01228{bottom:946.164000px;}
.yc_c01228{bottom:962.602500px;}
.yb_c01228{bottom:979.041000px;}
.ya_c01228{bottom:995.479500px;}
.y9_c01228{bottom:1011.918000px;}
.y8_c01228{bottom:1028.356500px;}
.y7_c01228{bottom:1044.795000px;}
.y6_c01228{bottom:1061.232000px;}
.y5_c01228{bottom:1077.670500px;}
.y4_c01228{bottom:1110.547500px;}
.y3_c01228{bottom:1126.986000px;}
.y2_c01228{bottom:1143.424500px;}
.y1_c01228{bottom:1159.863000px;}
.h3_c01228{height:35.190766px;}
.h2_c01228{height:36.007158px;}
.h4_c01228{height:52.332837px;}
.h0_c01228{height:1262.835000px;}
.h1_c01228{height:1263.000000px;}
.w0_c01228{width:892.920000px;}
.w1_c01228{width:893.250000px;}
.x0_c01228{left:0.000000px;}
.x3_c01228{left:137.122500px;}
.x4_c01228{left:143.770500px;}
.x7_c01228{left:177.007500px;}
.x1_c01228{left:230.185500px;}
.x5_c01228{left:243.480000px;}
.x2_c01228{left:256.774500px;}
.x6_c01228{left:276.715500px;}
.x8_c01228{left:435.249000px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls5_c01228{letter-spacing:0.000000pt;}
.ls0_c01228{letter-spacing:0.078221pt;}
.ls2_c01228{letter-spacing:0.087539pt;}
.ls1_c01228{letter-spacing:0.092873pt;}
.ls3_c01228{letter-spacing:0.124873pt;}
.ls4_c01228{letter-spacing:0.130206pt;}
.ws0_c01228{word-spacing:-23.622682pt;}
.ws3_c01228{word-spacing:-23.544461pt;}
.ws4_c01228{word-spacing:0.000000pt;}
.ws1_c01228{word-spacing:0.039110pt;}
.ws2_c01228{word-spacing:0.047940pt;}
.ws5_c01228{word-spacing:0.050460pt;}
.ws6_c01228{word-spacing:0.189730pt;}
._0_c01228{width:0.954061pt;}
.fs0_c01228{font-size:39.110400pt;}
.fs1_c01228{font-size:53.133867pt;}
.y0_c01228{bottom:0.000000pt;}
.y2d_c01228{bottom:39.333333pt;}
.y2c_c01228{bottom:358.842667pt;}
.y2b_c01228{bottom:373.454667pt;}
.y2a_c01228{bottom:388.066667pt;}
.y29_c01228{bottom:402.678667pt;}
.y28_c01228{bottom:417.290667pt;}
.y27_c01228{bottom:431.902667pt;}
.y26_c01228{bottom:446.514667pt;}
.y25_c01228{bottom:461.126667pt;}
.y24_c01228{bottom:475.738667pt;}
.y23_c01228{bottom:490.349333pt;}
.y22_c01228{bottom:504.961333pt;}
.y21_c01228{bottom:534.185333pt;}
.y20_c01228{bottom:548.797333pt;}
.y1f_c01228{bottom:563.409333pt;}
.y1e_c01228{bottom:592.633333pt;}
.y1d_c01228{bottom:607.245333pt;}
.y1c_c01228{bottom:621.857333pt;}
.y1b_c01228{bottom:636.469333pt;}
.y1a_c01228{bottom:651.080000pt;}
.y19_c01228{bottom:665.692000pt;}
.y18_c01228{bottom:680.304000pt;}
.y17_c01228{bottom:694.916000pt;}
.y16_c01228{bottom:709.528000pt;}
.y15_c01228{bottom:724.140000pt;}
.y14_c01228{bottom:738.752000pt;}
.y13_c01228{bottom:753.364000pt;}
.y12_c01228{bottom:767.976000pt;}
.y11_c01228{bottom:782.588000pt;}
.y10_c01228{bottom:797.198667pt;}
.yf_c01228{bottom:811.810667pt;}
.ye_c01228{bottom:826.422667pt;}
.yd_c01228{bottom:841.034667pt;}
.yc_c01228{bottom:855.646667pt;}
.yb_c01228{bottom:870.258667pt;}
.ya_c01228{bottom:884.870667pt;}
.y9_c01228{bottom:899.482667pt;}
.y8_c01228{bottom:914.094667pt;}
.y7_c01228{bottom:928.706667pt;}
.y6_c01228{bottom:943.317333pt;}
.y5_c01228{bottom:957.929333pt;}
.y4_c01228{bottom:987.153333pt;}
.y3_c01228{bottom:1001.765333pt;}
.y2_c01228{bottom:1016.377333pt;}
.y1_c01228{bottom:1030.989333pt;}
.h3_c01228{height:31.280681pt;}
.h2_c01228{height:32.006363pt;}
.h4_c01228{height:46.518078pt;}
.h0_c01228{height:1122.520000pt;}
.h1_c01228{height:1122.666667pt;}
.w0_c01228{width:793.706667pt;}
.w1_c01228{width:794.000000pt;}
.x0_c01228{left:0.000000pt;}
.x3_c01228{left:121.886667pt;}
.x4_c01228{left:127.796000pt;}
.x7_c01228{left:157.340000pt;}
.x1_c01228{left:204.609333pt;}
.x5_c01228{left:216.426667pt;}
.x2_c01228{left:228.244000pt;}
.x6_c01228{left:245.969333pt;}
.x8_c01228{left:386.888000pt;}
}





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

.ir_c01229:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_cb60ab4a612e54bd31177271.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01229;src:url('chunks/assets/font_8af5f79d4c9260cd1a5426a0.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01229;src:url('chunks/assets/font_3099c20f1c691c0de0a6e44a.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01229;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01229{font-family:ff4_c01229;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01229;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01229{font-family:ff5_c01229;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01229;src:url('chunks/assets/font_1ad65651e4a744853735ecf4.woff2')format("woff");}.ff6_c01229{font-family:ff6_c01229;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01229{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01229{vertical-align:0.000000px;}
.ls3_c01229{letter-spacing:0.000000px;}
.ls0_c01229{letter-spacing:0.087998px;}
.ls2_c01229{letter-spacing:0.098482px;}
.ls1_c01229{letter-spacing:0.104482px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01229{word-spacing:-33.713438px;}
.ws2_c01229{word-spacing:-26.575517px;}
.ws10_c01229{word-spacing:-26.487518px;}
.wsb_c01229{word-spacing:-21.553319px;}
.wsa_c01229{word-spacing:-21.519216px;}
.ws6_c01229{word-spacing:-18.769538px;}
.ws5_c01229{word-spacing:-16.438290px;}
.ws9_c01229{word-spacing:-16.019861px;}
.ws7_c01229{word-spacing:-14.943900px;}
.wsc_c01229{word-spacing:-14.107042px;}
.ws4_c01229{word-spacing:-12.612652px;}
.wsd_c01229{word-spacing:-12.074671px;}
.ws1_c01229{word-spacing:-9.988424px;}
.ws3_c01229{word-spacing:-9.987499px;}
.ws8_c01229{word-spacing:-4.536144px;}
.ws14_c01229{word-spacing:0.000000px;}
.ws11_c01229{word-spacing:0.043999px;}
.ws17_c01229{word-spacing:0.056767px;}
.ws15_c01229{word-spacing:0.073250px;}
.wsf_c01229{word-spacing:0.175997px;}
.ws18_c01229{word-spacing:0.202963px;}
.ws12_c01229{word-spacing:0.213446px;}
.ws13_c01229{word-spacing:0.219446px;}
.ws16_c01229{word-spacing:26.619516px;}
.ws0_c01229{word-spacing:43.038600px;}
._a_c01229{margin-left:-2264.151084px;}
._3_c01229{margin-left:-9.468492px;}
._2_c01229{margin-left:-7.919102px;}
._1_c01229{margin-left:-6.369713px;}
._5_c01229{margin-left:-3.553037px;}
._0_c01229{margin-left:-1.549390px;}
._8_c01229{width:1.005737px;}
._6_c01229{width:19.930500px;}
._4_c01229{width:24.690568px;}
._7_c01229{width:40.109428px;}
._c_c01229{width:53.283031px;}
._9_c01229{width:79.858548px;}
._b_c01229{width:133.452408px;}
.fc6_c01229{color:rgb(0,0,207);}
.fc5_c01229{color:rgb(79,153,5);}
.fc3_c01229{color:rgb(33,74,135);}
.fc2_c01229{color:rgb(143,89,3);}
.fc4_c01229{color:rgb(207,92,0);}
.fc1_c01229{color:rgb(6,69,173);}
.fc0_c01229{color:rgb(0,0,0);}
.fs3_c01229{font-size:31.015800px;}
.fs2_c01229{font-size:43.999200px;}
.fs1_c01229{font-size:59.775600px;}
.fs0_c01229{font-size:86.077200px;}
.y0_c01229{bottom:0.000000px;}
.y20_c01229{bottom:44.250000px;}
.y1f_c01229{bottom:86.982000px;}
.y1e_c01229{bottom:103.420500px;}
.y1d_c01229{bottom:119.859000px;}
.y1c_c01229{bottom:136.297500px;}
.y1b_c01229{bottom:152.736000px;}
.y1a_c01229{bottom:169.174500px;}
.y19_c01229{bottom:185.239500px;}
.y18_c01229{bottom:201.678000px;}
.y17_c01229{bottom:218.115000px;}
.y16_c01229{bottom:234.553500px;}
.y15_c01229{bottom:250.992000px;}
.y14_c01229{bottom:267.430500px;}
.y13_c01229{bottom:283.869000px;}
.y12_c01229{bottom:300.307500px;}
.y11_c01229{bottom:333.184500px;}
.y10_c01229{bottom:349.623000px;}
.yf_c01229{bottom:398.937000px;}
.ye_c01229{bottom:415.375500px;}
.yd_c01229{bottom:431.440500px;}
.yc_c01229{bottom:476.827500px;}
.yb_c01229{bottom:494.760000px;}
.ya_c01229{bottom:512.694000px;}
.y9_c01229{bottom:530.626500px;}
.y8_c01229{bottom:548.559000px;}
.y7_c01229{bottom:566.491500px;}
.y6_c01229{bottom:593.472000px;}
.y5_c01229{bottom:620.451000px;}
.y4_c01229{bottom:638.383500px;}
.y3_c01229{bottom:665.364000px;}
.y2_c01229{bottom:692.343000px;}
.y1_c01229{bottom:734.731500px;}
.h5_c01229{height:35.190766px;}
.h6_c01229{height:36.007158px;}
.h3_c01229{height:40.511979px;}
.h4_c01229{height:52.332837px;}
.h2_c01229{height:58.337477px;}
.h0_c01229{height:1262.835000px;}
.h1_c01229{height:1263.000000px;}
.w0_c01229{width:892.920000px;}
.w1_c01229{width:893.250000px;}
.x0_c01229{left:0.000000px;}
.x1_c01229{left:127.558500px;}
.x2_c01229{left:137.122500px;}
.x3_c01229{left:143.770500px;}
.x4_c01229{left:170.359500px;}
.x5_c01229{left:435.249000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls3_c01229{letter-spacing:0.000000pt;}
.ls0_c01229{letter-spacing:0.078221pt;}
.ls2_c01229{letter-spacing:0.087539pt;}
.ls1_c01229{letter-spacing:0.092873pt;}
.wse_c01229{word-spacing:-29.967501pt;}
.ws2_c01229{word-spacing:-23.622682pt;}
.ws10_c01229{word-spacing:-23.544461pt;}
.wsb_c01229{word-spacing:-19.158506pt;}
.wsa_c01229{word-spacing:-19.128192pt;}
.ws6_c01229{word-spacing:-16.684034pt;}
.ws5_c01229{word-spacing:-14.611813pt;}
.ws9_c01229{word-spacing:-14.239876pt;}
.ws7_c01229{word-spacing:-13.283467pt;}
.wsc_c01229{word-spacing:-12.539593pt;}
.ws4_c01229{word-spacing:-11.211246pt;}
.wsd_c01229{word-spacing:-10.733041pt;}
.ws1_c01229{word-spacing:-8.878599pt;}
.ws3_c01229{word-spacing:-8.877777pt;}
.ws8_c01229{word-spacing:-4.032128pt;}
.ws14_c01229{word-spacing:0.000000pt;}
.ws11_c01229{word-spacing:0.039110pt;}
.ws17_c01229{word-spacing:0.050460pt;}
.ws15_c01229{word-spacing:0.065111pt;}
.wsf_c01229{word-spacing:0.156442pt;}
.ws18_c01229{word-spacing:0.180412pt;}
.ws12_c01229{word-spacing:0.189730pt;}
.ws13_c01229{word-spacing:0.195063pt;}
.ws16_c01229{word-spacing:23.661792pt;}
.ws0_c01229{word-spacing:38.256533pt;}
._a_c01229{margin-left:-2012.578741pt;}
._3_c01229{margin-left:-8.416437pt;}
._2_c01229{margin-left:-7.039202pt;}
._1_c01229{margin-left:-5.661967pt;}
._5_c01229{margin-left:-3.158255pt;}
._0_c01229{margin-left:-1.377235pt;}
._8_c01229{width:0.893988pt;}
._6_c01229{width:17.716000pt;}
._4_c01229{width:21.947171pt;}
._7_c01229{width:35.652825pt;}
._c_c01229{width:47.362694pt;}
._9_c01229{width:70.985376pt;}
._b_c01229{width:118.624363pt;}
.fs3_c01229{font-size:27.569600pt;}
.fs2_c01229{font-size:39.110400pt;}
.fs1_c01229{font-size:53.133867pt;}
.fs0_c01229{font-size:76.513067pt;}
.y0_c01229{bottom:0.000000pt;}
.y20_c01229{bottom:39.333333pt;}
.y1f_c01229{bottom:77.317333pt;}
.y1e_c01229{bottom:91.929333pt;}
.y1d_c01229{bottom:106.541333pt;}
.y1c_c01229{bottom:121.153333pt;}
.y1b_c01229{bottom:135.765333pt;}
.y1a_c01229{bottom:150.377333pt;}
.y19_c01229{bottom:164.657333pt;}
.y18_c01229{bottom:179.269333pt;}
.y17_c01229{bottom:193.880000pt;}
.y16_c01229{bottom:208.492000pt;}
.y15_c01229{bottom:223.104000pt;}
.y14_c01229{bottom:237.716000pt;}
.y13_c01229{bottom:252.328000pt;}
.y12_c01229{bottom:266.940000pt;}
.y11_c01229{bottom:296.164000pt;}
.y10_c01229{bottom:310.776000pt;}
.yf_c01229{bottom:354.610667pt;}
.ye_c01229{bottom:369.222667pt;}
.yd_c01229{bottom:383.502667pt;}
.yc_c01229{bottom:423.846667pt;}
.yb_c01229{bottom:439.786667pt;}
.ya_c01229{bottom:455.728000pt;}
.y9_c01229{bottom:471.668000pt;}
.y8_c01229{bottom:487.608000pt;}
.y7_c01229{bottom:503.548000pt;}
.y6_c01229{bottom:527.530667pt;}
.y5_c01229{bottom:551.512000pt;}
.y4_c01229{bottom:567.452000pt;}
.y3_c01229{bottom:591.434667pt;}
.y2_c01229{bottom:615.416000pt;}
.y1_c01229{bottom:653.094667pt;}
.h5_c01229{height:31.280681pt;}
.h6_c01229{height:32.006363pt;}
.h3_c01229{height:36.010648pt;}
.h4_c01229{height:46.518078pt;}
.h2_c01229{height:51.855535pt;}
.h0_c01229{height:1122.520000pt;}
.h1_c01229{height:1122.666667pt;}
.w0_c01229{width:793.706667pt;}
.w1_c01229{width:794.000000pt;}
.x0_c01229{left:0.000000pt;}
.x1_c01229{left:113.385333pt;}
.x2_c01229{left:121.886667pt;}
.x3_c01229{left:127.796000pt;}
.x4_c01229{left:151.430667pt;}
.x5_c01229{left:386.888000pt;}
}





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

.ir_c01230:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_577e73ffdf17c14122a7d95a.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01230;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01230;src:url('chunks/assets/font_6a7f15ac1b4ad1c613343522.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01230;src:url('chunks/assets/font_3955b58c8e443c57852dc2c6.woff2')format("woff");}.ff4_c01230{font-family:ff4_c01230;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01230;src:url('chunks/assets/font_0c3e2b120d035ffdd7ae0bd4.woff2')format("woff");}.ff5_c01230{font-family:ff5_c01230;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls4_c01230{letter-spacing:0.000000px;}
.ls0_c01230{letter-spacing:0.087998px;}
.ls1_c01230{letter-spacing:0.098482px;}
.ls3_c01230{letter-spacing:0.104482px;}
.ls2_c01230{letter-spacing:26.690482px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01230{word-spacing:-26.575517px;}
.ws6_c01230{word-spacing:-26.487518px;}
.wsd_c01230{word-spacing:-18.769538px;}
.wsc_c01230{word-spacing:-18.530436px;}
.wse_c01230{word-spacing:-14.943900px;}
.wsb_c01230{word-spacing:-14.764573px;}
.ws9_c01230{word-spacing:-9.988424px;}
.wsa_c01230{word-spacing:-9.987499px;}
.ws5_c01230{word-spacing:0.000000px;}
.ws3_c01230{word-spacing:0.043999px;}
.ws2_c01230{word-spacing:0.073250px;}
.ws0_c01230{word-spacing:0.083734px;}
.ws7_c01230{word-spacing:0.213446px;}
.ws4_c01230{word-spacing:0.219446px;}
.ws8_c01230{word-spacing:43.038600px;}
._6_c01230{margin-left:-9.468492px;}
._5_c01230{margin-left:-7.919102px;}
._4_c01230{margin-left:-6.369713px;}
._8_c01230{margin-left:-3.851915px;}
._3_c01230{margin-left:-1.549390px;}
._2_c01230{width:1.020816px;}
._7_c01230{width:20.440489px;}
._0_c01230{width:53.283031px;}
._1_c01230{width:79.858548px;}
.fc5_c01230{color:rgb(79,153,5);}
.fc4_c01230{color:rgb(207,92,0);}
.fc3_c01230{color:rgb(0,0,207);}
.fc2_c01230{color:rgb(0,0,0);}
.fc1_c01230{color:rgb(143,89,3);}
.fc0_c01230{color:rgb(33,74,135);}
.fs0_c01230{font-size:43.999200px;}
.fs2_c01230{font-size:59.775600px;}
.fs1_c01230{font-size:86.077200px;}
.y0_c01230{bottom:0.000000px;}
.y1f_c01230{bottom:44.250000px;}
.y1e_c01230{bottom:82.051500px;}
.y1d_c01230{bottom:112.167000px;}
.y1c_c01230{bottom:130.099500px;}
.y1b_c01230{bottom:160.215000px;}
.y1a_c01230{bottom:190.330500px;}
.y19_c01230{bottom:237.258000px;}
.y18_c01230{bottom:716.028000px;}
.y17_c01230{bottom:732.465000px;}
.y16_c01230{bottom:748.903500px;}
.y15_c01230{bottom:765.342000px;}
.y14_c01230{bottom:781.780500px;}
.y13_c01230{bottom:798.219000px;}
.y12_c01230{bottom:814.657500px;}
.y11_c01230{bottom:831.096000px;}
.y10_c01230{bottom:847.534500px;}
.yf_c01230{bottom:863.973000px;}
.ye_c01230{bottom:880.411500px;}
.yd_c01230{bottom:913.287000px;}
.yc_c01230{bottom:929.725500px;}
.yb_c01230{bottom:946.164000px;}
.ya_c01230{bottom:979.041000px;}
.y9_c01230{bottom:995.479500px;}
.y8_c01230{bottom:1011.918000px;}
.y7_c01230{bottom:1028.356500px;}
.y6_c01230{bottom:1044.795000px;}
.y5_c01230{bottom:1061.232000px;}
.y4_c01230{bottom:1077.670500px;}
.y3_c01230{bottom:1126.986000px;}
.y2_c01230{bottom:1143.424500px;}
.y1_c01230{bottom:1159.863000px;}
.h3_c01230{height:35.190766px;}
.h2_c01230{height:36.007158px;}
.h5_c01230{height:40.511979px;}
.h6_c01230{height:52.332837px;}
.h4_c01230{height:58.337477px;}
.h0_c01230{height:1262.835000px;}
.h1_c01230{height:1263.000000px;}
.w0_c01230{width:892.920000px;}
.w1_c01230{width:893.250000px;}
.x0_c01230{left:0.000000px;}
.x4_c01230{left:127.558500px;}
.x2_c01230{left:137.122500px;}
.x1_c01230{left:143.770500px;}
.x3_c01230{left:177.007500px;}
.x5_c01230{left:435.249000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls4_c01230{letter-spacing:0.000000pt;}
.ls0_c01230{letter-spacing:0.078221pt;}
.ls1_c01230{letter-spacing:0.087539pt;}
.ls3_c01230{letter-spacing:0.092873pt;}
.ls2_c01230{letter-spacing:23.724873pt;}
.ws1_c01230{word-spacing:-23.622682pt;}
.ws6_c01230{word-spacing:-23.544461pt;}
.wsd_c01230{word-spacing:-16.684034pt;}
.wsc_c01230{word-spacing:-16.471499pt;}
.wse_c01230{word-spacing:-13.283467pt;}
.wsb_c01230{word-spacing:-13.124065pt;}
.ws9_c01230{word-spacing:-8.878599pt;}
.wsa_c01230{word-spacing:-8.877777pt;}
.ws5_c01230{word-spacing:0.000000pt;}
.ws3_c01230{word-spacing:0.039110pt;}
.ws2_c01230{word-spacing:0.065111pt;}
.ws0_c01230{word-spacing:0.074430pt;}
.ws7_c01230{word-spacing:0.189730pt;}
.ws4_c01230{word-spacing:0.195063pt;}
.ws8_c01230{word-spacing:38.256533pt;}
._6_c01230{margin-left:-8.416437pt;}
._5_c01230{margin-left:-7.039202pt;}
._4_c01230{margin-left:-5.661967pt;}
._8_c01230{margin-left:-3.423924pt;}
._3_c01230{margin-left:-1.377235pt;}
._2_c01230{width:0.907392pt;}
._7_c01230{width:18.169324pt;}
._0_c01230{width:47.362694pt;}
._1_c01230{width:70.985376pt;}
.fs0_c01230{font-size:39.110400pt;}
.fs2_c01230{font-size:53.133867pt;}
.fs1_c01230{font-size:76.513067pt;}
.y0_c01230{bottom:0.000000pt;}
.y1f_c01230{bottom:39.333333pt;}
.y1e_c01230{bottom:72.934667pt;}
.y1d_c01230{bottom:99.704000pt;}
.y1c_c01230{bottom:115.644000pt;}
.y1b_c01230{bottom:142.413333pt;}
.y1a_c01230{bottom:169.182667pt;}
.y19_c01230{bottom:210.896000pt;}
.y18_c01230{bottom:636.469333pt;}
.y17_c01230{bottom:651.080000pt;}
.y16_c01230{bottom:665.692000pt;}
.y15_c01230{bottom:680.304000pt;}
.y14_c01230{bottom:694.916000pt;}
.y13_c01230{bottom:709.528000pt;}
.y12_c01230{bottom:724.140000pt;}
.y11_c01230{bottom:738.752000pt;}
.y10_c01230{bottom:753.364000pt;}
.yf_c01230{bottom:767.976000pt;}
.ye_c01230{bottom:782.588000pt;}
.yd_c01230{bottom:811.810667pt;}
.yc_c01230{bottom:826.422667pt;}
.yb_c01230{bottom:841.034667pt;}
.ya_c01230{bottom:870.258667pt;}
.y9_c01230{bottom:884.870667pt;}
.y8_c01230{bottom:899.482667pt;}
.y7_c01230{bottom:914.094667pt;}
.y6_c01230{bottom:928.706667pt;}
.y5_c01230{bottom:943.317333pt;}
.y4_c01230{bottom:957.929333pt;}
.y3_c01230{bottom:1001.765333pt;}
.y2_c01230{bottom:1016.377333pt;}
.y1_c01230{bottom:1030.989333pt;}
.h3_c01230{height:31.280681pt;}
.h2_c01230{height:32.006363pt;}
.h5_c01230{height:36.010648pt;}
.h6_c01230{height:46.518078pt;}
.h4_c01230{height:51.855535pt;}
.h0_c01230{height:1122.520000pt;}
.h1_c01230{height:1122.666667pt;}
.w0_c01230{width:793.706667pt;}
.w1_c01230{width:794.000000pt;}
.x0_c01230{left:0.000000pt;}
.x4_c01230{left:113.385333pt;}
.x2_c01230{left:121.886667pt;}
.x1_c01230{left:127.796000pt;}
.x3_c01230{left:157.340000pt;}
.x5_c01230{left:386.888000pt;}
}





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

.ir_c01231:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01231;src:url('chunks/assets/font_8ff4483a1155fd8ded0d0c0d.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01231;src:url('chunks/assets/font_e61ae146ef6b60c6639759f6.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01231;src:url('chunks/assets/font_a75f804606f25a2a04a906a1.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01231;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01231{font-family:ff5_c01231;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01231;src:url('chunks/assets/font_f8653faebadbd3c8c0d58808.woff2')format("woff");}.ff6_c01231{font-family:ff6_c01231;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.ls4_c01231{letter-spacing:0.000000px;}
.ls0_c01231{letter-spacing:0.087998px;}
.ls2_c01231{letter-spacing:0.098482px;}
.ls1_c01231{letter-spacing:0.104482px;}
.ls3_c01231{letter-spacing:26.690482px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01231{word-spacing:-33.713438px;}
.ws4_c01231{word-spacing:-26.575517px;}
.wsa_c01231{word-spacing:-26.487518px;}
.ws3_c01231{word-spacing:-21.553319px;}
.ws2_c01231{word-spacing:-21.519216px;}
.ws7_c01231{word-spacing:-18.769538px;}
.ws1_c01231{word-spacing:-17.633802px;}
.ws5_c01231{word-spacing:-14.107042px;}
.ws6_c01231{word-spacing:-12.074671px;}
.ws0_c01231{word-spacing:-7.686144px;}
.wse_c01231{word-spacing:0.000000px;}
.wsb_c01231{word-spacing:0.043999px;}
.ws11_c01231{word-spacing:0.056767px;}
.wsf_c01231{word-spacing:0.073250px;}
.ws13_c01231{word-spacing:0.083734px;}
.ws9_c01231{word-spacing:0.175997px;}
.ws12_c01231{word-spacing:0.202963px;}
.wsc_c01231{word-spacing:0.213446px;}
.wsd_c01231{word-spacing:0.219446px;}
.ws10_c01231{word-spacing:26.619516px;}
._7_c01231{margin-left:-2264.151084px;}
._4_c01231{margin-left:-3.825638px;}
._1_c01231{margin-left:-2.347817px;}
._0_c01231{margin-left:-1.075961px;}
._5_c01231{width:1.005737px;}
._2_c01231{width:20.742133px;}
._3_c01231{width:40.109428px;}
._9_c01231{width:53.283031px;}
._6_c01231{width:79.858548px;}
._8_c01231{width:133.452408px;}
.fc6_c01231{color:rgb(0,0,207);}
.fc5_c01231{color:rgb(79,153,5);}
.fc3_c01231{color:rgb(33,74,135);}
.fc2_c01231{color:rgb(143,89,3);}
.fc4_c01231{color:rgb(207,92,0);}
.fc1_c01231{color:rgb(6,69,173);}
.fc0_c01231{color:rgb(0,0,0);}
.fs2_c01231{font-size:31.015800px;}
.fs1_c01231{font-size:43.999200px;}
.fs0_c01231{font-size:59.775600px;}
.y0_c01231{bottom:0.000000px;}
.y32_c01231{bottom:44.250000px;}
.y31_c01231{bottom:96.919500px;}
.y30_c01231{bottom:113.358000px;}
.y2f_c01231{bottom:129.796500px;}
.y2e_c01231{bottom:146.235000px;}
.y2d_c01231{bottom:162.673500px;}
.y2c_c01231{bottom:179.112000px;}
.y2b_c01231{bottom:195.550500px;}
.y2a_c01231{bottom:211.989000px;}
.y29_c01231{bottom:228.427500px;}
.y28_c01231{bottom:244.866000px;}
.y27_c01231{bottom:261.304500px;}
.y26_c01231{bottom:294.180000px;}
.y25_c01231{bottom:310.618500px;}
.y24_c01231{bottom:327.057000px;}
.y23_c01231{bottom:359.934000px;}
.y22_c01231{bottom:376.372500px;}
.y21_c01231{bottom:392.811000px;}
.y20_c01231{bottom:409.249500px;}
.y1f_c01231{bottom:425.688000px;}
.y1e_c01231{bottom:442.125000px;}
.y1d_c01231{bottom:458.563500px;}
.y1c_c01231{bottom:507.879000px;}
.y1b_c01231{bottom:524.317500px;}
.y1a_c01231{bottom:540.756000px;}
.y19_c01231{bottom:557.194500px;}
.y18_c01231{bottom:573.633000px;}
.y17_c01231{bottom:590.071500px;}
.y16_c01231{bottom:606.508500px;}
.y15_c01231{bottom:622.947000px;}
.y14_c01231{bottom:639.385500px;}
.y13_c01231{bottom:655.450500px;}
.y12_c01231{bottom:671.889000px;}
.y11_c01231{bottom:688.327500px;}
.y10_c01231{bottom:704.766000px;}
.yf_c01231{bottom:721.204500px;}
.ye_c01231{bottom:737.643000px;}
.yd_c01231{bottom:754.081500px;}
.yc_c01231{bottom:770.518500px;}
.yb_c01231{bottom:803.395500px;}
.ya_c01231{bottom:819.834000px;}
.y9_c01231{bottom:869.149500px;}
.y8_c01231{bottom:885.588000px;}
.y7_c01231{bottom:901.653000px;}
.y6_c01231{bottom:1070.199000px;}
.y5_c01231{bottom:1088.131500px;}
.y4_c01231{bottom:1106.064000px;}
.y3_c01231{bottom:1123.998000px;}
.y2_c01231{bottom:1141.930500px;}
.y1_c01231{bottom:1159.863000px;}
.h3_c01231{height:35.190766px;}
.h4_c01231{height:36.007158px;}
.h2_c01231{height:52.332837px;}
.h0_c01231{height:1262.835000px;}
.h1_c01231{height:1263.000000px;}
.w0_c01231{width:892.920000px;}
.w1_c01231{width:893.250000px;}
.x0_c01231{left:0.000000px;}
.x1_c01231{left:127.558500px;}
.x2_c01231{left:137.122500px;}
.x3_c01231{left:143.770500px;}
.x4_c01231{left:170.359500px;}
.x5_c01231{left:177.007500px;}
.x6_c01231{left:435.249000px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls4_c01231{letter-spacing:0.000000pt;}
.ls0_c01231{letter-spacing:0.078221pt;}
.ls2_c01231{letter-spacing:0.087539pt;}
.ls1_c01231{letter-spacing:0.092873pt;}
.ls3_c01231{letter-spacing:23.724873pt;}
.ws8_c01231{word-spacing:-29.967501pt;}
.ws4_c01231{word-spacing:-23.622682pt;}
.wsa_c01231{word-spacing:-23.544461pt;}
.ws3_c01231{word-spacing:-19.158506pt;}
.ws2_c01231{word-spacing:-19.128192pt;}
.ws7_c01231{word-spacing:-16.684034pt;}
.ws1_c01231{word-spacing:-15.674491pt;}
.ws5_c01231{word-spacing:-12.539593pt;}
.ws6_c01231{word-spacing:-10.733041pt;}
.ws0_c01231{word-spacing:-6.832128pt;}
.wse_c01231{word-spacing:0.000000pt;}
.wsb_c01231{word-spacing:0.039110pt;}
.ws11_c01231{word-spacing:0.050460pt;}
.wsf_c01231{word-spacing:0.065111pt;}
.ws13_c01231{word-spacing:0.074430pt;}
.ws9_c01231{word-spacing:0.156442pt;}
.ws12_c01231{word-spacing:0.180412pt;}
.wsc_c01231{word-spacing:0.189730pt;}
.wsd_c01231{word-spacing:0.195063pt;}
.ws10_c01231{word-spacing:23.661792pt;}
._7_c01231{margin-left:-2012.578741pt;}
._4_c01231{margin-left:-3.400567pt;}
._1_c01231{margin-left:-2.086948pt;}
._0_c01231{margin-left:-0.956410pt;}
._5_c01231{width:0.893988pt;}
._2_c01231{width:18.437452pt;}
._3_c01231{width:35.652825pt;}
._9_c01231{width:47.362694pt;}
._6_c01231{width:70.985376pt;}
._8_c01231{width:118.624363pt;}
.fs2_c01231{font-size:27.569600pt;}
.fs1_c01231{font-size:39.110400pt;}
.fs0_c01231{font-size:53.133867pt;}
.y0_c01231{bottom:0.000000pt;}
.y32_c01231{bottom:39.333333pt;}
.y31_c01231{bottom:86.150667pt;}
.y30_c01231{bottom:100.762667pt;}
.y2f_c01231{bottom:115.374667pt;}
.y2e_c01231{bottom:129.986667pt;}
.y2d_c01231{bottom:144.598667pt;}
.y2c_c01231{bottom:159.210667pt;}
.y2b_c01231{bottom:173.822667pt;}
.y2a_c01231{bottom:188.434667pt;}
.y29_c01231{bottom:203.046667pt;}
.y28_c01231{bottom:217.658667pt;}
.y27_c01231{bottom:232.270667pt;}
.y26_c01231{bottom:261.493333pt;}
.y25_c01231{bottom:276.105333pt;}
.y24_c01231{bottom:290.717333pt;}
.y23_c01231{bottom:319.941333pt;}
.y22_c01231{bottom:334.553333pt;}
.y21_c01231{bottom:349.165333pt;}
.y20_c01231{bottom:363.777333pt;}
.y1f_c01231{bottom:378.389333pt;}
.y1e_c01231{bottom:393.000000pt;}
.y1d_c01231{bottom:407.612000pt;}
.y1c_c01231{bottom:451.448000pt;}
.y1b_c01231{bottom:466.060000pt;}
.y1a_c01231{bottom:480.672000pt;}
.y19_c01231{bottom:495.284000pt;}
.y18_c01231{bottom:509.896000pt;}
.y17_c01231{bottom:524.508000pt;}
.y16_c01231{bottom:539.118667pt;}
.y15_c01231{bottom:553.730667pt;}
.y14_c01231{bottom:568.342667pt;}
.y13_c01231{bottom:582.622667pt;}
.y12_c01231{bottom:597.234667pt;}
.y11_c01231{bottom:611.846667pt;}
.y10_c01231{bottom:626.458667pt;}
.yf_c01231{bottom:641.070667pt;}
.ye_c01231{bottom:655.682667pt;}
.yd_c01231{bottom:670.294667pt;}
.yc_c01231{bottom:684.905333pt;}
.yb_c01231{bottom:714.129333pt;}
.ya_c01231{bottom:728.741333pt;}
.y9_c01231{bottom:772.577333pt;}
.y8_c01231{bottom:787.189333pt;}
.y7_c01231{bottom:801.469333pt;}
.y6_c01231{bottom:951.288000pt;}
.y5_c01231{bottom:967.228000pt;}
.y4_c01231{bottom:983.168000pt;}
.y3_c01231{bottom:999.109333pt;}
.y2_c01231{bottom:1015.049333pt;}
.y1_c01231{bottom:1030.989333pt;}
.h3_c01231{height:31.280681pt;}
.h4_c01231{height:32.006363pt;}
.h2_c01231{height:46.518078pt;}
.h0_c01231{height:1122.520000pt;}
.h1_c01231{height:1122.666667pt;}
.w0_c01231{width:793.706667pt;}
.w1_c01231{width:794.000000pt;}
.x0_c01231{left:0.000000pt;}
.x1_c01231{left:113.385333pt;}
.x2_c01231{left:121.886667pt;}
.x3_c01231{left:127.796000pt;}
.x4_c01231{left:151.430667pt;}
.x5_c01231{left:157.340000pt;}
.x6_c01231{left:386.888000pt;}
}





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

.ir_c01232:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_df7fcb3f6f340e490e0fe00f.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01232;src:url('chunks/assets/font_b6f56a55fd34789aaa1e1527.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01232;src:url('chunks/assets/font_317f5b9e972bfafe9630f03d.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01232;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01232;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01232{font-family:ff5_c01232;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01232;src:url('chunks/assets/font_e8623fed1425067ddee88d62.woff2')format("woff");}.ff6_c01232{font-family:ff6_c01232;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls3_c01232{letter-spacing:0.000000px;}
.ls0_c01232{letter-spacing:0.087998px;}
.ls2_c01232{letter-spacing:0.098482px;}
.ls1_c01232{letter-spacing:0.104482px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01232{word-spacing:-33.713438px;}
.ws2_c01232{word-spacing:-26.575517px;}
.ws10_c01232{word-spacing:-26.487518px;}
.wsb_c01232{word-spacing:-21.553319px;}
.wsa_c01232{word-spacing:-21.519216px;}
.ws5_c01232{word-spacing:-19.785724px;}
.ws7_c01232{word-spacing:-18.769538px;}
.ws9_c01232{word-spacing:-17.633802px;}
.ws4_c01232{word-spacing:-15.960085px;}
.ws6_c01232{word-spacing:-14.943900px;}
.wsc_c01232{word-spacing:-14.107042px;}
.wsd_c01232{word-spacing:-12.074671px;}
.ws1_c01232{word-spacing:-9.988424px;}
.ws3_c01232{word-spacing:-9.987499px;}
.ws8_c01232{word-spacing:-7.686144px;}
.ws14_c01232{word-spacing:0.000000px;}
.ws11_c01232{word-spacing:0.043999px;}
.ws17_c01232{word-spacing:0.056767px;}
.ws15_c01232{word-spacing:0.073250px;}
.wsf_c01232{word-spacing:0.175997px;}
.ws18_c01232{word-spacing:0.202963px;}
.ws12_c01232{word-spacing:0.213446px;}
.ws13_c01232{word-spacing:0.219446px;}
.ws16_c01232{word-spacing:26.619516px;}
.ws0_c01232{word-spacing:43.038600px;}
._a_c01232{margin-left:-2264.151084px;}
._3_c01232{margin-left:-9.468492px;}
._2_c01232{margin-left:-7.919102px;}
._1_c01232{margin-left:-6.369713px;}
._5_c01232{margin-left:-3.612812px;}
._0_c01232{margin-left:-1.549390px;}
._8_c01232{width:1.005737px;}
._4_c01232{width:19.464001px;}
._6_c01232{width:20.742133px;}
._7_c01232{width:40.109428px;}
._c_c01232{width:53.283031px;}
._9_c01232{width:79.858548px;}
._b_c01232{width:133.452408px;}
.fc6_c01232{color:rgb(0,0,207);}
.fc5_c01232{color:rgb(79,153,5);}
.fc3_c01232{color:rgb(33,74,135);}
.fc2_c01232{color:rgb(143,89,3);}
.fc4_c01232{color:rgb(207,92,0);}
.fc1_c01232{color:rgb(6,69,173);}
.fc0_c01232{color:rgb(0,0,0);}
.fs3_c01232{font-size:31.015800px;}
.fs2_c01232{font-size:43.999200px;}
.fs1_c01232{font-size:59.775600px;}
.fs0_c01232{font-size:86.077200px;}
.y0_c01232{bottom:0.000000px;}
.y20_c01232{bottom:44.250000px;}
.y1f_c01232{bottom:86.982000px;}
.y1e_c01232{bottom:103.420500px;}
.y1d_c01232{bottom:119.859000px;}
.y1c_c01232{bottom:136.297500px;}
.y1b_c01232{bottom:152.736000px;}
.y1a_c01232{bottom:169.174500px;}
.y19_c01232{bottom:185.239500px;}
.y18_c01232{bottom:201.678000px;}
.y17_c01232{bottom:218.115000px;}
.y16_c01232{bottom:234.553500px;}
.y15_c01232{bottom:250.992000px;}
.y14_c01232{bottom:267.430500px;}
.y13_c01232{bottom:283.869000px;}
.y12_c01232{bottom:300.307500px;}
.y11_c01232{bottom:333.184500px;}
.y10_c01232{bottom:349.623000px;}
.yf_c01232{bottom:398.937000px;}
.ye_c01232{bottom:415.375500px;}
.yd_c01232{bottom:431.440500px;}
.yc_c01232{bottom:476.827500px;}
.yb_c01232{bottom:494.760000px;}
.ya_c01232{bottom:512.694000px;}
.y9_c01232{bottom:530.626500px;}
.y8_c01232{bottom:548.559000px;}
.y7_c01232{bottom:566.491500px;}
.y6_c01232{bottom:593.472000px;}
.y5_c01232{bottom:620.451000px;}
.y4_c01232{bottom:638.383500px;}
.y3_c01232{bottom:665.364000px;}
.y2_c01232{bottom:692.343000px;}
.y1_c01232{bottom:734.731500px;}
.h5_c01232{height:35.190766px;}
.h6_c01232{height:36.007158px;}
.h3_c01232{height:40.511979px;}
.h4_c01232{height:52.332837px;}
.h2_c01232{height:58.337477px;}
.h0_c01232{height:1262.835000px;}
.h1_c01232{height:1263.000000px;}
.w0_c01232{width:892.920000px;}
.w1_c01232{width:893.250000px;}
.x0_c01232{left:0.000000px;}
.x1_c01232{left:127.558500px;}
.x2_c01232{left:137.122500px;}
.x3_c01232{left:143.770500px;}
.x4_c01232{left:170.359500px;}
.x5_c01232{left:435.249000px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls3_c01232{letter-spacing:0.000000pt;}
.ls0_c01232{letter-spacing:0.078221pt;}
.ls2_c01232{letter-spacing:0.087539pt;}
.ls1_c01232{letter-spacing:0.092873pt;}
.wse_c01232{word-spacing:-29.967501pt;}
.ws2_c01232{word-spacing:-23.622682pt;}
.ws10_c01232{word-spacing:-23.544461pt;}
.wsb_c01232{word-spacing:-19.158506pt;}
.wsa_c01232{word-spacing:-19.128192pt;}
.ws5_c01232{word-spacing:-17.587310pt;}
.ws7_c01232{word-spacing:-16.684034pt;}
.ws9_c01232{word-spacing:-15.674491pt;}
.ws4_c01232{word-spacing:-14.186742pt;}
.ws6_c01232{word-spacing:-13.283467pt;}
.wsc_c01232{word-spacing:-12.539593pt;}
.wsd_c01232{word-spacing:-10.733041pt;}
.ws1_c01232{word-spacing:-8.878599pt;}
.ws3_c01232{word-spacing:-8.877777pt;}
.ws8_c01232{word-spacing:-6.832128pt;}
.ws14_c01232{word-spacing:0.000000pt;}
.ws11_c01232{word-spacing:0.039110pt;}
.ws17_c01232{word-spacing:0.050460pt;}
.ws15_c01232{word-spacing:0.065111pt;}
.wsf_c01232{word-spacing:0.156442pt;}
.ws18_c01232{word-spacing:0.180412pt;}
.ws12_c01232{word-spacing:0.189730pt;}
.ws13_c01232{word-spacing:0.195063pt;}
.ws16_c01232{word-spacing:23.661792pt;}
.ws0_c01232{word-spacing:38.256533pt;}
._a_c01232{margin-left:-2012.578741pt;}
._3_c01232{margin-left:-8.416437pt;}
._2_c01232{margin-left:-7.039202pt;}
._1_c01232{margin-left:-5.661967pt;}
._5_c01232{margin-left:-3.211389pt;}
._0_c01232{margin-left:-1.377235pt;}
._8_c01232{width:0.893988pt;}
._4_c01232{width:17.301334pt;}
._6_c01232{width:18.437452pt;}
._7_c01232{width:35.652825pt;}
._c_c01232{width:47.362694pt;}
._9_c01232{width:70.985376pt;}
._b_c01232{width:118.624363pt;}
.fs3_c01232{font-size:27.569600pt;}
.fs2_c01232{font-size:39.110400pt;}
.fs1_c01232{font-size:53.133867pt;}
.fs0_c01232{font-size:76.513067pt;}
.y0_c01232{bottom:0.000000pt;}
.y20_c01232{bottom:39.333333pt;}
.y1f_c01232{bottom:77.317333pt;}
.y1e_c01232{bottom:91.929333pt;}
.y1d_c01232{bottom:106.541333pt;}
.y1c_c01232{bottom:121.153333pt;}
.y1b_c01232{bottom:135.765333pt;}
.y1a_c01232{bottom:150.377333pt;}
.y19_c01232{bottom:164.657333pt;}
.y18_c01232{bottom:179.269333pt;}
.y17_c01232{bottom:193.880000pt;}
.y16_c01232{bottom:208.492000pt;}
.y15_c01232{bottom:223.104000pt;}
.y14_c01232{bottom:237.716000pt;}
.y13_c01232{bottom:252.328000pt;}
.y12_c01232{bottom:266.940000pt;}
.y11_c01232{bottom:296.164000pt;}
.y10_c01232{bottom:310.776000pt;}
.yf_c01232{bottom:354.610667pt;}
.ye_c01232{bottom:369.222667pt;}
.yd_c01232{bottom:383.502667pt;}
.yc_c01232{bottom:423.846667pt;}
.yb_c01232{bottom:439.786667pt;}
.ya_c01232{bottom:455.728000pt;}
.y9_c01232{bottom:471.668000pt;}
.y8_c01232{bottom:487.608000pt;}
.y7_c01232{bottom:503.548000pt;}
.y6_c01232{bottom:527.530667pt;}
.y5_c01232{bottom:551.512000pt;}
.y4_c01232{bottom:567.452000pt;}
.y3_c01232{bottom:591.434667pt;}
.y2_c01232{bottom:615.416000pt;}
.y1_c01232{bottom:653.094667pt;}
.h5_c01232{height:31.280681pt;}
.h6_c01232{height:32.006363pt;}
.h3_c01232{height:36.010648pt;}
.h4_c01232{height:46.518078pt;}
.h2_c01232{height:51.855535pt;}
.h0_c01232{height:1122.520000pt;}
.h1_c01232{height:1122.666667pt;}
.w0_c01232{width:793.706667pt;}
.w1_c01232{width:794.000000pt;}
.x0_c01232{left:0.000000pt;}
.x1_c01232{left:113.385333pt;}
.x2_c01232{left:121.886667pt;}
.x3_c01232{left:127.796000pt;}
.x4_c01232{left:151.430667pt;}
.x5_c01232{left:386.888000pt;}
}





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

.ir_c01233:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_28c67a026849f4484b0cf61d.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01233;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01233;src:url('chunks/assets/font_ec5bed0a42d217b4aca834a3.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01233;src:url('chunks/assets/font_28ce225a66c85b55780b8706.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01233;src:url('chunks/assets/font_d093ec8b88c1c58f4c3c161c.woff2')format("woff");}.ff5_c01233{font-family:ff5_c01233;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls4_c01233{letter-spacing:0.000000px;}
.ls0_c01233{letter-spacing:0.087998px;}
.ls1_c01233{letter-spacing:0.098482px;}
.ls3_c01233{letter-spacing:0.104482px;}
.ls2_c01233{letter-spacing:26.690482px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01233{word-spacing:-26.575517px;}
.ws6_c01233{word-spacing:-26.487518px;}
.wsd_c01233{word-spacing:-18.769538px;}
.wsc_c01233{word-spacing:-15.362329px;}
.wse_c01233{word-spacing:-14.943900px;}
.wsb_c01233{word-spacing:-11.536691px;}
.ws9_c01233{word-spacing:-9.988424px;}
.wsa_c01233{word-spacing:-9.987499px;}
.ws5_c01233{word-spacing:0.000000px;}
.ws3_c01233{word-spacing:0.043999px;}
.ws2_c01233{word-spacing:0.073250px;}
.ws0_c01233{word-spacing:0.083734px;}
.ws7_c01233{word-spacing:0.213446px;}
.ws4_c01233{word-spacing:0.219446px;}
.ws8_c01233{word-spacing:43.038600px;}
._6_c01233{margin-left:-9.468492px;}
._5_c01233{margin-left:-7.919102px;}
._4_c01233{margin-left:-6.369713px;}
._8_c01233{margin-left:-3.612812px;}
._3_c01233{margin-left:-1.549390px;}
._2_c01233{width:1.020816px;}
._9_c01233{width:19.930500px;}
._7_c01233{width:26.818607px;}
._0_c01233{width:53.283031px;}
._1_c01233{width:79.858548px;}
.fc5_c01233{color:rgb(79,153,5);}
.fc4_c01233{color:rgb(207,92,0);}
.fc3_c01233{color:rgb(0,0,207);}
.fc2_c01233{color:rgb(0,0,0);}
.fc1_c01233{color:rgb(143,89,3);}
.fc0_c01233{color:rgb(33,74,135);}
.fs0_c01233{font-size:43.999200px;}
.fs2_c01233{font-size:59.775600px;}
.fs1_c01233{font-size:86.077200px;}
.y0_c01233{bottom:0.000000px;}
.y1f_c01233{bottom:44.250000px;}
.y1e_c01233{bottom:82.051500px;}
.y1d_c01233{bottom:112.167000px;}
.y1c_c01233{bottom:130.099500px;}
.y1b_c01233{bottom:160.215000px;}
.y1a_c01233{bottom:190.330500px;}
.y19_c01233{bottom:237.258000px;}
.y18_c01233{bottom:716.028000px;}
.y17_c01233{bottom:732.465000px;}
.y16_c01233{bottom:748.903500px;}
.y15_c01233{bottom:765.342000px;}
.y14_c01233{bottom:781.780500px;}
.y13_c01233{bottom:798.219000px;}
.y12_c01233{bottom:814.657500px;}
.y11_c01233{bottom:831.096000px;}
.y10_c01233{bottom:847.534500px;}
.yf_c01233{bottom:863.973000px;}
.ye_c01233{bottom:880.411500px;}
.yd_c01233{bottom:913.287000px;}
.yc_c01233{bottom:929.725500px;}
.yb_c01233{bottom:946.164000px;}
.ya_c01233{bottom:979.041000px;}
.y9_c01233{bottom:995.479500px;}
.y8_c01233{bottom:1011.918000px;}
.y7_c01233{bottom:1028.356500px;}
.y6_c01233{bottom:1044.795000px;}
.y5_c01233{bottom:1061.232000px;}
.y4_c01233{bottom:1077.670500px;}
.y3_c01233{bottom:1126.986000px;}
.y2_c01233{bottom:1143.424500px;}
.y1_c01233{bottom:1159.863000px;}
.h3_c01233{height:35.190766px;}
.h2_c01233{height:36.007158px;}
.h5_c01233{height:40.511979px;}
.h6_c01233{height:52.332837px;}
.h4_c01233{height:58.337477px;}
.h0_c01233{height:1262.835000px;}
.h1_c01233{height:1263.000000px;}
.w0_c01233{width:892.920000px;}
.w1_c01233{width:893.250000px;}
.x0_c01233{left:0.000000px;}
.x4_c01233{left:127.558500px;}
.x2_c01233{left:137.122500px;}
.x1_c01233{left:143.770500px;}
.x3_c01233{left:177.007500px;}
.x5_c01233{left:435.249000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls4_c01233{letter-spacing:0.000000pt;}
.ls0_c01233{letter-spacing:0.078221pt;}
.ls1_c01233{letter-spacing:0.087539pt;}
.ls3_c01233{letter-spacing:0.092873pt;}
.ls2_c01233{letter-spacing:23.724873pt;}
.ws1_c01233{word-spacing:-23.622682pt;}
.ws6_c01233{word-spacing:-23.544461pt;}
.wsd_c01233{word-spacing:-16.684034pt;}
.wsc_c01233{word-spacing:-13.655404pt;}
.wse_c01233{word-spacing:-13.283467pt;}
.wsb_c01233{word-spacing:-10.254836pt;}
.ws9_c01233{word-spacing:-8.878599pt;}
.wsa_c01233{word-spacing:-8.877777pt;}
.ws5_c01233{word-spacing:0.000000pt;}
.ws3_c01233{word-spacing:0.039110pt;}
.ws2_c01233{word-spacing:0.065111pt;}
.ws0_c01233{word-spacing:0.074430pt;}
.ws7_c01233{word-spacing:0.189730pt;}
.ws4_c01233{word-spacing:0.195063pt;}
.ws8_c01233{word-spacing:38.256533pt;}
._6_c01233{margin-left:-8.416437pt;}
._5_c01233{margin-left:-7.039202pt;}
._4_c01233{margin-left:-5.661967pt;}
._8_c01233{margin-left:-3.211389pt;}
._3_c01233{margin-left:-1.377235pt;}
._2_c01233{width:0.907392pt;}
._9_c01233{width:17.716000pt;}
._7_c01233{width:23.838762pt;}
._0_c01233{width:47.362694pt;}
._1_c01233{width:70.985376pt;}
.fs0_c01233{font-size:39.110400pt;}
.fs2_c01233{font-size:53.133867pt;}
.fs1_c01233{font-size:76.513067pt;}
.y0_c01233{bottom:0.000000pt;}
.y1f_c01233{bottom:39.333333pt;}
.y1e_c01233{bottom:72.934667pt;}
.y1d_c01233{bottom:99.704000pt;}
.y1c_c01233{bottom:115.644000pt;}
.y1b_c01233{bottom:142.413333pt;}
.y1a_c01233{bottom:169.182667pt;}
.y19_c01233{bottom:210.896000pt;}
.y18_c01233{bottom:636.469333pt;}
.y17_c01233{bottom:651.080000pt;}
.y16_c01233{bottom:665.692000pt;}
.y15_c01233{bottom:680.304000pt;}
.y14_c01233{bottom:694.916000pt;}
.y13_c01233{bottom:709.528000pt;}
.y12_c01233{bottom:724.140000pt;}
.y11_c01233{bottom:738.752000pt;}
.y10_c01233{bottom:753.364000pt;}
.yf_c01233{bottom:767.976000pt;}
.ye_c01233{bottom:782.588000pt;}
.yd_c01233{bottom:811.810667pt;}
.yc_c01233{bottom:826.422667pt;}
.yb_c01233{bottom:841.034667pt;}
.ya_c01233{bottom:870.258667pt;}
.y9_c01233{bottom:884.870667pt;}
.y8_c01233{bottom:899.482667pt;}
.y7_c01233{bottom:914.094667pt;}
.y6_c01233{bottom:928.706667pt;}
.y5_c01233{bottom:943.317333pt;}
.y4_c01233{bottom:957.929333pt;}
.y3_c01233{bottom:1001.765333pt;}
.y2_c01233{bottom:1016.377333pt;}
.y1_c01233{bottom:1030.989333pt;}
.h3_c01233{height:31.280681pt;}
.h2_c01233{height:32.006363pt;}
.h5_c01233{height:36.010648pt;}
.h6_c01233{height:46.518078pt;}
.h4_c01233{height:51.855535pt;}
.h0_c01233{height:1122.520000pt;}
.h1_c01233{height:1122.666667pt;}
.w0_c01233{width:793.706667pt;}
.w1_c01233{width:794.000000pt;}
.x0_c01233{left:0.000000pt;}
.x4_c01233{left:113.385333pt;}
.x2_c01233{left:121.886667pt;}
.x1_c01233{left:127.796000pt;}
.x3_c01233{left:157.340000pt;}
.x5_c01233{left:386.888000pt;}
}





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

.ir_c01234:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01234;src:url('chunks/assets/font_8ff4483a1155fd8ded0d0c0d.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01234;src:url('chunks/assets/font_63e49bbe33230d250cd2c203.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01234;src:url('chunks/assets/font_ce175357ef01ef490e64446d.woff2')format("woff");}.ff4_c01234{font-family:ff4_c01234;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01234;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01234{font-family:ff5_c01234;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01234;src:url('chunks/assets/font_1dc9733897a0df41bb26a0be.woff2')format("woff");}.ff6_c01234{font-family:ff6_c01234;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01234{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.ls4_c01234{letter-spacing:0.000000px;}
.ls0_c01234{letter-spacing:0.087998px;}
.ls2_c01234{letter-spacing:0.098482px;}
.ls1_c01234{letter-spacing:0.104482px;}
.ls3_c01234{letter-spacing:26.690482px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01234{word-spacing:-33.713438px;}
.ws4_c01234{word-spacing:-26.575517px;}
.wsa_c01234{word-spacing:-26.487518px;}
.ws3_c01234{word-spacing:-21.553319px;}
.ws2_c01234{word-spacing:-21.519216px;}
.ws1_c01234{word-spacing:-19.247743px;}
.ws7_c01234{word-spacing:-18.769538px;}
.ws5_c01234{word-spacing:-14.107042px;}
.ws6_c01234{word-spacing:-12.074671px;}
.ws0_c01234{word-spacing:-10.230144px;}
.wse_c01234{word-spacing:0.000000px;}
.wsb_c01234{word-spacing:0.043999px;}
.ws11_c01234{word-spacing:0.056767px;}
.wsf_c01234{word-spacing:0.073250px;}
.ws13_c01234{word-spacing:0.083734px;}
.ws9_c01234{word-spacing:0.175997px;}
.ws12_c01234{word-spacing:0.202963px;}
.wsc_c01234{word-spacing:0.213446px;}
.wsd_c01234{word-spacing:0.219446px;}
.ws10_c01234{word-spacing:26.619516px;}
._7_c01234{margin-left:-2264.151084px;}
._4_c01234{margin-left:-3.825638px;}
._1_c01234{margin-left:-2.347817px;}
._0_c01234{margin-left:-1.075961px;}
._5_c01234{width:1.005737px;}
._2_c01234{width:20.742133px;}
._3_c01234{width:40.109428px;}
._9_c01234{width:53.283031px;}
._6_c01234{width:79.858548px;}
._a_c01234{width:106.918056px;}
._8_c01234{width:133.452408px;}
.fc6_c01234{color:rgb(0,0,207);}
.fc5_c01234{color:rgb(79,153,5);}
.fc3_c01234{color:rgb(33,74,135);}
.fc2_c01234{color:rgb(143,89,3);}
.fc4_c01234{color:rgb(207,92,0);}
.fc1_c01234{color:rgb(6,69,173);}
.fc0_c01234{color:rgb(0,0,0);}
.fs2_c01234{font-size:31.015800px;}
.fs1_c01234{font-size:43.999200px;}
.fs0_c01234{font-size:59.775600px;}
.y0_c01234{bottom:0.000000px;}
.y32_c01234{bottom:44.250000px;}
.y31_c01234{bottom:96.919500px;}
.y30_c01234{bottom:113.358000px;}
.y2f_c01234{bottom:129.796500px;}
.y2e_c01234{bottom:146.235000px;}
.y2d_c01234{bottom:162.673500px;}
.y2c_c01234{bottom:179.112000px;}
.y2b_c01234{bottom:195.550500px;}
.y2a_c01234{bottom:211.989000px;}
.y29_c01234{bottom:228.427500px;}
.y28_c01234{bottom:244.866000px;}
.y27_c01234{bottom:261.304500px;}
.y26_c01234{bottom:294.180000px;}
.y25_c01234{bottom:310.618500px;}
.y24_c01234{bottom:327.057000px;}
.y23_c01234{bottom:359.934000px;}
.y22_c01234{bottom:376.372500px;}
.y21_c01234{bottom:392.811000px;}
.y20_c01234{bottom:409.249500px;}
.y1f_c01234{bottom:425.688000px;}
.y1e_c01234{bottom:442.125000px;}
.y1d_c01234{bottom:458.563500px;}
.y1c_c01234{bottom:507.879000px;}
.y1b_c01234{bottom:524.317500px;}
.y1a_c01234{bottom:540.756000px;}
.y19_c01234{bottom:557.194500px;}
.y18_c01234{bottom:573.633000px;}
.y17_c01234{bottom:590.071500px;}
.y16_c01234{bottom:606.508500px;}
.y15_c01234{bottom:622.947000px;}
.y14_c01234{bottom:639.385500px;}
.y13_c01234{bottom:655.450500px;}
.y12_c01234{bottom:671.889000px;}
.y11_c01234{bottom:688.327500px;}
.y10_c01234{bottom:704.766000px;}
.yf_c01234{bottom:721.204500px;}
.ye_c01234{bottom:737.643000px;}
.yd_c01234{bottom:754.081500px;}
.yc_c01234{bottom:770.518500px;}
.yb_c01234{bottom:803.395500px;}
.ya_c01234{bottom:819.834000px;}
.y9_c01234{bottom:869.149500px;}
.y8_c01234{bottom:885.588000px;}
.y7_c01234{bottom:901.653000px;}
.y6_c01234{bottom:1070.199000px;}
.y5_c01234{bottom:1088.131500px;}
.y4_c01234{bottom:1106.064000px;}
.y3_c01234{bottom:1123.998000px;}
.y2_c01234{bottom:1141.930500px;}
.y1_c01234{bottom:1159.863000px;}
.h3_c01234{height:35.190766px;}
.h4_c01234{height:36.007158px;}
.h2_c01234{height:52.332837px;}
.h0_c01234{height:1262.835000px;}
.h1_c01234{height:1263.000000px;}
.w0_c01234{width:892.920000px;}
.w1_c01234{width:893.250000px;}
.x0_c01234{left:0.000000px;}
.x1_c01234{left:127.558500px;}
.x2_c01234{left:137.122500px;}
.x3_c01234{left:143.770500px;}
.x4_c01234{left:170.359500px;}
.x5_c01234{left:177.007500px;}
.x6_c01234{left:435.249000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls4_c01234{letter-spacing:0.000000pt;}
.ls0_c01234{letter-spacing:0.078221pt;}
.ls2_c01234{letter-spacing:0.087539pt;}
.ls1_c01234{letter-spacing:0.092873pt;}
.ls3_c01234{letter-spacing:23.724873pt;}
.ws8_c01234{word-spacing:-29.967501pt;}
.ws4_c01234{word-spacing:-23.622682pt;}
.wsa_c01234{word-spacing:-23.544461pt;}
.ws3_c01234{word-spacing:-19.158506pt;}
.ws2_c01234{word-spacing:-19.128192pt;}
.ws1_c01234{word-spacing:-17.109105pt;}
.ws7_c01234{word-spacing:-16.684034pt;}
.ws5_c01234{word-spacing:-12.539593pt;}
.ws6_c01234{word-spacing:-10.733041pt;}
.ws0_c01234{word-spacing:-9.093461pt;}
.wse_c01234{word-spacing:0.000000pt;}
.wsb_c01234{word-spacing:0.039110pt;}
.ws11_c01234{word-spacing:0.050460pt;}
.wsf_c01234{word-spacing:0.065111pt;}
.ws13_c01234{word-spacing:0.074430pt;}
.ws9_c01234{word-spacing:0.156442pt;}
.ws12_c01234{word-spacing:0.180412pt;}
.wsc_c01234{word-spacing:0.189730pt;}
.wsd_c01234{word-spacing:0.195063pt;}
.ws10_c01234{word-spacing:23.661792pt;}
._7_c01234{margin-left:-2012.578741pt;}
._4_c01234{margin-left:-3.400567pt;}
._1_c01234{margin-left:-2.086948pt;}
._0_c01234{margin-left:-0.956410pt;}
._5_c01234{width:0.893988pt;}
._2_c01234{width:18.437452pt;}
._3_c01234{width:35.652825pt;}
._9_c01234{width:47.362694pt;}
._6_c01234{width:70.985376pt;}
._a_c01234{width:95.038272pt;}
._8_c01234{width:118.624363pt;}
.fs2_c01234{font-size:27.569600pt;}
.fs1_c01234{font-size:39.110400pt;}
.fs0_c01234{font-size:53.133867pt;}
.y0_c01234{bottom:0.000000pt;}
.y32_c01234{bottom:39.333333pt;}
.y31_c01234{bottom:86.150667pt;}
.y30_c01234{bottom:100.762667pt;}
.y2f_c01234{bottom:115.374667pt;}
.y2e_c01234{bottom:129.986667pt;}
.y2d_c01234{bottom:144.598667pt;}
.y2c_c01234{bottom:159.210667pt;}
.y2b_c01234{bottom:173.822667pt;}
.y2a_c01234{bottom:188.434667pt;}
.y29_c01234{bottom:203.046667pt;}
.y28_c01234{bottom:217.658667pt;}
.y27_c01234{bottom:232.270667pt;}
.y26_c01234{bottom:261.493333pt;}
.y25_c01234{bottom:276.105333pt;}
.y24_c01234{bottom:290.717333pt;}
.y23_c01234{bottom:319.941333pt;}
.y22_c01234{bottom:334.553333pt;}
.y21_c01234{bottom:349.165333pt;}
.y20_c01234{bottom:363.777333pt;}
.y1f_c01234{bottom:378.389333pt;}
.y1e_c01234{bottom:393.000000pt;}
.y1d_c01234{bottom:407.612000pt;}
.y1c_c01234{bottom:451.448000pt;}
.y1b_c01234{bottom:466.060000pt;}
.y1a_c01234{bottom:480.672000pt;}
.y19_c01234{bottom:495.284000pt;}
.y18_c01234{bottom:509.896000pt;}
.y17_c01234{bottom:524.508000pt;}
.y16_c01234{bottom:539.118667pt;}
.y15_c01234{bottom:553.730667pt;}
.y14_c01234{bottom:568.342667pt;}
.y13_c01234{bottom:582.622667pt;}
.y12_c01234{bottom:597.234667pt;}
.y11_c01234{bottom:611.846667pt;}
.y10_c01234{bottom:626.458667pt;}
.yf_c01234{bottom:641.070667pt;}
.ye_c01234{bottom:655.682667pt;}
.yd_c01234{bottom:670.294667pt;}
.yc_c01234{bottom:684.905333pt;}
.yb_c01234{bottom:714.129333pt;}
.ya_c01234{bottom:728.741333pt;}
.y9_c01234{bottom:772.577333pt;}
.y8_c01234{bottom:787.189333pt;}
.y7_c01234{bottom:801.469333pt;}
.y6_c01234{bottom:951.288000pt;}
.y5_c01234{bottom:967.228000pt;}
.y4_c01234{bottom:983.168000pt;}
.y3_c01234{bottom:999.109333pt;}
.y2_c01234{bottom:1015.049333pt;}
.y1_c01234{bottom:1030.989333pt;}
.h3_c01234{height:31.280681pt;}
.h4_c01234{height:32.006363pt;}
.h2_c01234{height:46.518078pt;}
.h0_c01234{height:1122.520000pt;}
.h1_c01234{height:1122.666667pt;}
.w0_c01234{width:793.706667pt;}
.w1_c01234{width:794.000000pt;}
.x0_c01234{left:0.000000pt;}
.x1_c01234{left:113.385333pt;}
.x2_c01234{left:121.886667pt;}
.x3_c01234{left:127.796000pt;}
.x4_c01234{left:151.430667pt;}
.x5_c01234{left:157.340000pt;}
.x6_c01234{left:386.888000pt;}
}





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

.ir_c01235:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_369e6f4e98bb417727d24271.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01235;src:url('chunks/assets/font_805e2c3ca2cfe55e9aed373e.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01235;src:url('chunks/assets/font_9de74ef87f42982c495faa16.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01235;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01235;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01235{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01235{vertical-align:0.000000px;}
.ls3_c01235{letter-spacing:0.000000px;}
.ls0_c01235{letter-spacing:0.087998px;}
.ls2_c01235{letter-spacing:0.098482px;}
.ls1_c01235{letter-spacing:0.104482px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01235{word-spacing:-26.575517px;}
.ws18_c01235{word-spacing:-26.487518px;}
.ws11_c01235{word-spacing:-21.758318px;}
.ws12_c01235{word-spacing:-21.519216px;}
.ws13_c01235{word-spacing:-20.981236px;}
.ws14_c01235{word-spacing:-20.921460px;}
.ws10_c01235{word-spacing:-20.084602px;}
.wsf_c01235{word-spacing:-18.829314px;}
.ws5_c01235{word-spacing:-18.769538px;}
.wsd_c01235{word-spacing:-17.275148px;}
.wsc_c01235{word-spacing:-17.215373px;}
.wse_c01235{word-spacing:-17.155597px;}
.ws8_c01235{word-spacing:-15.601432px;}
.ws4_c01235{word-spacing:-14.943900px;}
.ws16_c01235{word-spacing:-14.764573px;}
.ws15_c01235{word-spacing:-14.525471px;}
.ws9_c01235{word-spacing:-13.808164px;}
.ws7_c01235{word-spacing:-13.748388px;}
.wsa_c01235{word-spacing:-12.732203px;}
.wsb_c01235{word-spacing:-12.672427px;}
.ws1_c01235{word-spacing:-9.988424px;}
.ws3_c01235{word-spacing:-9.987499px;}
.ws1c_c01235{word-spacing:0.000000px;}
.ws6_c01235{word-spacing:0.017856px;}
.ws19_c01235{word-spacing:0.043999px;}
.ws17_c01235{word-spacing:0.175997px;}
.ws1b_c01235{word-spacing:0.213446px;}
.ws1a_c01235{word-spacing:0.219446px;}
.ws0_c01235{word-spacing:43.038600px;}
._1_c01235{margin-left:-6.369713px;}
._6_c01235{margin-left:-4.656358px;}
._4_c01235{margin-left:-2.998955px;}
._0_c01235{margin-left:-1.549390px;}
._9_c01235{width:1.005737px;}
._7_c01235{width:17.505421px;}
._2_c01235{width:19.935816px;}
._5_c01235{width:21.220338px;}
._3_c01235{width:29.529146px;}
._8_c01235{width:32.039722px;}
.fc5_c01235{color:rgb(79,153,5);}
.fc3_c01235{color:rgb(33,74,135);}
.fc2_c01235{color:rgb(143,89,3);}
.fc4_c01235{color:rgb(207,92,0);}
.fc1_c01235{color:rgb(6,69,173);}
.fc0_c01235{color:rgb(0,0,0);}
.fs2_c01235{font-size:43.999200px;}
.fs1_c01235{font-size:59.775600px;}
.fs0_c01235{font-size:86.077200px;}
.y0_c01235{bottom:0.000000px;}
.y1d_c01235{bottom:44.250000px;}
.y1c_c01235{bottom:82.051500px;}
.y1b_c01235{bottom:98.490000px;}
.y1a_c01235{bottom:114.927000px;}
.y19_c01235{bottom:131.365500px;}
.y18_c01235{bottom:147.430500px;}
.y17_c01235{bottom:194.128500px;}
.y16_c01235{bottom:212.061000px;}
.y15_c01235{bottom:229.993500px;}
.y14_c01235{bottom:247.926000px;}
.y13_c01235{bottom:265.858500px;}
.y12_c01235{bottom:283.792500px;}
.y11_c01235{bottom:301.725000px;}
.y10_c01235{bottom:342.058500px;}
.yf_c01235{bottom:371.443500px;}
.ye_c01235{bottom:400.828500px;}
.yd_c01235{bottom:430.213500px;}
.yc_c01235{bottom:448.146000px;}
.yb_c01235{bottom:488.479500px;}
.ya_c01235{bottom:506.412000px;}
.y9_c01235{bottom:533.059500px;}
.y8_c01235{bottom:550.993500px;}
.y7_c01235{bottom:568.926000px;}
.y6_c01235{bottom:586.858500px;}
.y5_c01235{bottom:613.506000px;}
.y4_c01235{bottom:640.153500px;}
.y3_c01235{bottom:666.801000px;}
.y2_c01235{bottom:693.448500px;}
.y1_c01235{bottom:735.469500px;}
.h5_c01235{height:35.190766px;}
.h6_c01235{height:36.007158px;}
.h3_c01235{height:40.511979px;}
.h4_c01235{height:52.332837px;}
.h2_c01235{height:58.337477px;}
.h0_c01235{height:1262.835000px;}
.h1_c01235{height:1263.000000px;}
.w0_c01235{width:892.920000px;}
.w1_c01235{width:893.250000px;}
.x0_c01235{left:0.000000px;}
.x1_c01235{left:127.558500px;}
.x4_c01235{left:137.122500px;}
.x2_c01235{left:152.215500px;}
.x3_c01235{left:164.919000px;}
.x5_c01235{left:435.249000px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls3_c01235{letter-spacing:0.000000pt;}
.ls0_c01235{letter-spacing:0.078221pt;}
.ls2_c01235{letter-spacing:0.087539pt;}
.ls1_c01235{letter-spacing:0.092873pt;}
.ws2_c01235{word-spacing:-23.622682pt;}
.ws18_c01235{word-spacing:-23.544461pt;}
.ws11_c01235{word-spacing:-19.340727pt;}
.ws12_c01235{word-spacing:-19.128192pt;}
.ws13_c01235{word-spacing:-18.649987pt;}
.ws14_c01235{word-spacing:-18.596853pt;}
.ws10_c01235{word-spacing:-17.852979pt;}
.wsf_c01235{word-spacing:-16.737168pt;}
.ws5_c01235{word-spacing:-16.684034pt;}
.wsd_c01235{word-spacing:-15.355687pt;}
.wsc_c01235{word-spacing:-15.302554pt;}
.wse_c01235{word-spacing:-15.249420pt;}
.ws8_c01235{word-spacing:-13.867939pt;}
.ws4_c01235{word-spacing:-13.283467pt;}
.ws16_c01235{word-spacing:-13.124065pt;}
.ws15_c01235{word-spacing:-12.911530pt;}
.ws9_c01235{word-spacing:-12.273923pt;}
.ws7_c01235{word-spacing:-12.220789pt;}
.wsa_c01235{word-spacing:-11.317514pt;}
.wsb_c01235{word-spacing:-11.264380pt;}
.ws1_c01235{word-spacing:-8.878599pt;}
.ws3_c01235{word-spacing:-8.877777pt;}
.ws1c_c01235{word-spacing:0.000000pt;}
.ws6_c01235{word-spacing:0.015872pt;}
.ws19_c01235{word-spacing:0.039110pt;}
.ws17_c01235{word-spacing:0.156442pt;}
.ws1b_c01235{word-spacing:0.189730pt;}
.ws1a_c01235{word-spacing:0.195063pt;}
.ws0_c01235{word-spacing:38.256533pt;}
._1_c01235{margin-left:-5.661967pt;}
._6_c01235{margin-left:-4.138985pt;}
._4_c01235{margin-left:-2.665738pt;}
._0_c01235{margin-left:-1.377235pt;}
._9_c01235{width:0.893988pt;}
._7_c01235{width:15.560374pt;}
._2_c01235{width:17.720725pt;}
._5_c01235{width:18.862523pt;}
._3_c01235{width:26.248130pt;}
._8_c01235{width:28.479753pt;}
.fs2_c01235{font-size:39.110400pt;}
.fs1_c01235{font-size:53.133867pt;}
.fs0_c01235{font-size:76.513067pt;}
.y0_c01235{bottom:0.000000pt;}
.y1d_c01235{bottom:39.333333pt;}
.y1c_c01235{bottom:72.934667pt;}
.y1b_c01235{bottom:87.546667pt;}
.y1a_c01235{bottom:102.157333pt;}
.y19_c01235{bottom:116.769333pt;}
.y18_c01235{bottom:131.049333pt;}
.y17_c01235{bottom:172.558667pt;}
.y16_c01235{bottom:188.498667pt;}
.y15_c01235{bottom:204.438667pt;}
.y14_c01235{bottom:220.378667pt;}
.y13_c01235{bottom:236.318667pt;}
.y12_c01235{bottom:252.260000pt;}
.y11_c01235{bottom:268.200000pt;}
.y10_c01235{bottom:304.052000pt;}
.yf_c01235{bottom:330.172000pt;}
.ye_c01235{bottom:356.292000pt;}
.yd_c01235{bottom:382.412000pt;}
.yc_c01235{bottom:398.352000pt;}
.yb_c01235{bottom:434.204000pt;}
.ya_c01235{bottom:450.144000pt;}
.y9_c01235{bottom:473.830667pt;}
.y8_c01235{bottom:489.772000pt;}
.y7_c01235{bottom:505.712000pt;}
.y6_c01235{bottom:521.652000pt;}
.y5_c01235{bottom:545.338667pt;}
.y4_c01235{bottom:569.025333pt;}
.y3_c01235{bottom:592.712000pt;}
.y2_c01235{bottom:616.398667pt;}
.y1_c01235{bottom:653.750667pt;}
.h5_c01235{height:31.280681pt;}
.h6_c01235{height:32.006363pt;}
.h3_c01235{height:36.010648pt;}
.h4_c01235{height:46.518078pt;}
.h2_c01235{height:51.855535pt;}
.h0_c01235{height:1122.520000pt;}
.h1_c01235{height:1122.666667pt;}
.w0_c01235{width:793.706667pt;}
.w1_c01235{width:794.000000pt;}
.x0_c01235{left:0.000000pt;}
.x1_c01235{left:113.385333pt;}
.x4_c01235{left:121.886667pt;}
.x2_c01235{left:135.302667pt;}
.x3_c01235{left:146.594667pt;}
.x5_c01235{left:386.888000pt;}
}





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

.ir_c01236:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01236;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01236;src:url('chunks/assets/font_7ed2833c28aaaace4779bcdc.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01236;src:url('chunks/assets/font_9b555904d4c74242a7c79cc7.woff2')format("woff");}.ff4_c01236{font-family:ff4_c01236;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.ls4_c01236{letter-spacing:0.000000px;}
.ls1_c01236{letter-spacing:0.087998px;}
.ls2_c01236{letter-spacing:0.098482px;}
.ls0_c01236{letter-spacing:0.104482px;}
.ls3_c01236{letter-spacing:26.690482px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01236{word-spacing:-26.575517px;}
.ws0_c01236{word-spacing:-26.487518px;}
.ws2_c01236{word-spacing:0.000000px;}
.ws7_c01236{word-spacing:0.036900px;}
.ws4_c01236{word-spacing:0.043999px;}
.ws6_c01236{word-spacing:0.053933px;}
.wsa_c01236{word-spacing:0.064416px;}
.ws8_c01236{word-spacing:0.070416px;}
.wsb_c01236{word-spacing:0.100217px;}
.ws5_c01236{word-spacing:0.175997px;}
.ws3_c01236{word-spacing:0.213446px;}
.ws9_c01236{word-spacing:0.219446px;}
._0_c01236{width:1.031604px;}
.fc5_c01236{color:rgb(0,0,207);}
.fc4_c01236{color:rgb(143,89,3);}
.fc3_c01236{color:rgb(79,153,5);}
.fc2_c01236{color:rgb(207,92,0);}
.fc1_c01236{color:rgb(0,0,0);}
.fc0_c01236{color:rgb(33,74,135);}
.fs0_c01236{font-size:43.999200px;}
.fs1_c01236{font-size:59.775600px;}
.y0_c01236{bottom:0.000000px;}
.y39_c01236{bottom:44.250000px;}
.y38_c01236{bottom:91.369500px;}
.y37_c01236{bottom:107.808000px;}
.y36_c01236{bottom:124.246500px;}
.y35_c01236{bottom:140.685000px;}
.y34_c01236{bottom:157.123500px;}
.y33_c01236{bottom:173.562000px;}
.y32_c01236{bottom:190.000500px;}
.y31_c01236{bottom:206.437500px;}
.y30_c01236{bottom:222.876000px;}
.y2f_c01236{bottom:239.314500px;}
.y2e_c01236{bottom:255.753000px;}
.y2d_c01236{bottom:272.191500px;}
.y2c_c01236{bottom:288.630000px;}
.y2b_c01236{bottom:305.068500px;}
.y2a_c01236{bottom:321.507000px;}
.y29_c01236{bottom:337.945500px;}
.y28_c01236{bottom:354.384000px;}
.y27_c01236{bottom:370.822500px;}
.y26_c01236{bottom:387.259500px;}
.y25_c01236{bottom:403.698000px;}
.y24_c01236{bottom:436.575000px;}
.y23_c01236{bottom:453.013500px;}
.y22_c01236{bottom:469.452000px;}
.y21_c01236{bottom:485.890500px;}
.y20_c01236{bottom:502.329000px;}
.y1f_c01236{bottom:518.767500px;}
.y1e_c01236{bottom:551.643000px;}
.y1d_c01236{bottom:568.081500px;}
.y1c_c01236{bottom:584.520000px;}
.y1b_c01236{bottom:600.958500px;}
.y1a_c01236{bottom:633.835500px;}
.y19_c01236{bottom:650.274000px;}
.y18_c01236{bottom:666.712500px;}
.y17_c01236{bottom:683.151000px;}
.y16_c01236{bottom:716.028000px;}
.y15_c01236{bottom:732.465000px;}
.y14_c01236{bottom:748.903500px;}
.y13_c01236{bottom:765.342000px;}
.y12_c01236{bottom:781.780500px;}
.y11_c01236{bottom:798.219000px;}
.y10_c01236{bottom:814.657500px;}
.yf_c01236{bottom:847.534500px;}
.ye_c01236{bottom:863.973000px;}
.yd_c01236{bottom:880.411500px;}
.yc_c01236{bottom:913.287000px;}
.yb_c01236{bottom:929.725500px;}
.ya_c01236{bottom:979.041000px;}
.y9_c01236{bottom:995.479500px;}
.y8_c01236{bottom:1028.356500px;}
.y7_c01236{bottom:1044.795000px;}
.y6_c01236{bottom:1061.232000px;}
.y5_c01236{bottom:1077.670500px;}
.y4_c01236{bottom:1110.547500px;}
.y3_c01236{bottom:1126.986000px;}
.y2_c01236{bottom:1143.424500px;}
.y1_c01236{bottom:1159.863000px;}
.h3_c01236{height:35.190766px;}
.h2_c01236{height:36.007158px;}
.h4_c01236{height:52.332837px;}
.h0_c01236{height:1262.835000px;}
.h1_c01236{height:1263.000000px;}
.w0_c01236{width:892.920000px;}
.w1_c01236{width:893.250000px;}
.x0_c01236{left:0.000000px;}
.x1_c01236{left:137.122500px;}
.x2_c01236{left:143.770500px;}
.x5_c01236{left:170.359500px;}
.x4_c01236{left:177.007500px;}
.x3_c01236{left:203.596500px;}
.x6_c01236{left:210.243000px;}
.x7_c01236{left:230.185500px;}
.x8_c01236{left:256.774500px;}
.x9_c01236{left:435.249000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls4_c01236{letter-spacing:0.000000pt;}
.ls1_c01236{letter-spacing:0.078221pt;}
.ls2_c01236{letter-spacing:0.087539pt;}
.ls0_c01236{letter-spacing:0.092873pt;}
.ls3_c01236{letter-spacing:23.724873pt;}
.ws1_c01236{word-spacing:-23.622682pt;}
.ws0_c01236{word-spacing:-23.544461pt;}
.ws2_c01236{word-spacing:0.000000pt;}
.ws7_c01236{word-spacing:0.032800pt;}
.ws4_c01236{word-spacing:0.039110pt;}
.ws6_c01236{word-spacing:0.047940pt;}
.wsa_c01236{word-spacing:0.057259pt;}
.ws8_c01236{word-spacing:0.062592pt;}
.wsb_c01236{word-spacing:0.089082pt;}
.ws5_c01236{word-spacing:0.156442pt;}
.ws3_c01236{word-spacing:0.189730pt;}
.ws9_c01236{word-spacing:0.195063pt;}
._0_c01236{width:0.916981pt;}
.fs0_c01236{font-size:39.110400pt;}
.fs1_c01236{font-size:53.133867pt;}
.y0_c01236{bottom:0.000000pt;}
.y39_c01236{bottom:39.333333pt;}
.y38_c01236{bottom:81.217333pt;}
.y37_c01236{bottom:95.829333pt;}
.y36_c01236{bottom:110.441333pt;}
.y35_c01236{bottom:125.053333pt;}
.y34_c01236{bottom:139.665333pt;}
.y33_c01236{bottom:154.277333pt;}
.y32_c01236{bottom:168.889333pt;}
.y31_c01236{bottom:183.500000pt;}
.y30_c01236{bottom:198.112000pt;}
.y2f_c01236{bottom:212.724000pt;}
.y2e_c01236{bottom:227.336000pt;}
.y2d_c01236{bottom:241.948000pt;}
.y2c_c01236{bottom:256.560000pt;}
.y2b_c01236{bottom:271.172000pt;}
.y2a_c01236{bottom:285.784000pt;}
.y29_c01236{bottom:300.396000pt;}
.y28_c01236{bottom:315.008000pt;}
.y27_c01236{bottom:329.620000pt;}
.y26_c01236{bottom:344.230667pt;}
.y25_c01236{bottom:358.842667pt;}
.y24_c01236{bottom:388.066667pt;}
.y23_c01236{bottom:402.678667pt;}
.y22_c01236{bottom:417.290667pt;}
.y21_c01236{bottom:431.902667pt;}
.y20_c01236{bottom:446.514667pt;}
.y1f_c01236{bottom:461.126667pt;}
.y1e_c01236{bottom:490.349333pt;}
.y1d_c01236{bottom:504.961333pt;}
.y1c_c01236{bottom:519.573333pt;}
.y1b_c01236{bottom:534.185333pt;}
.y1a_c01236{bottom:563.409333pt;}
.y19_c01236{bottom:578.021333pt;}
.y18_c01236{bottom:592.633333pt;}
.y17_c01236{bottom:607.245333pt;}
.y16_c01236{bottom:636.469333pt;}
.y15_c01236{bottom:651.080000pt;}
.y14_c01236{bottom:665.692000pt;}
.y13_c01236{bottom:680.304000pt;}
.y12_c01236{bottom:694.916000pt;}
.y11_c01236{bottom:709.528000pt;}
.y10_c01236{bottom:724.140000pt;}
.yf_c01236{bottom:753.364000pt;}
.ye_c01236{bottom:767.976000pt;}
.yd_c01236{bottom:782.588000pt;}
.yc_c01236{bottom:811.810667pt;}
.yb_c01236{bottom:826.422667pt;}
.ya_c01236{bottom:870.258667pt;}
.y9_c01236{bottom:884.870667pt;}
.y8_c01236{bottom:914.094667pt;}
.y7_c01236{bottom:928.706667pt;}
.y6_c01236{bottom:943.317333pt;}
.y5_c01236{bottom:957.929333pt;}
.y4_c01236{bottom:987.153333pt;}
.y3_c01236{bottom:1001.765333pt;}
.y2_c01236{bottom:1016.377333pt;}
.y1_c01236{bottom:1030.989333pt;}
.h3_c01236{height:31.280681pt;}
.h2_c01236{height:32.006363pt;}
.h4_c01236{height:46.518078pt;}
.h0_c01236{height:1122.520000pt;}
.h1_c01236{height:1122.666667pt;}
.w0_c01236{width:793.706667pt;}
.w1_c01236{width:794.000000pt;}
.x0_c01236{left:0.000000pt;}
.x1_c01236{left:121.886667pt;}
.x2_c01236{left:127.796000pt;}
.x5_c01236{left:151.430667pt;}
.x4_c01236{left:157.340000pt;}
.x3_c01236{left:180.974667pt;}
.x6_c01236{left:186.882667pt;}
.x7_c01236{left:204.609333pt;}
.x8_c01236{left:228.244000pt;}
.x9_c01236{left:386.888000pt;}
}





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

.ir_c01237:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_67d5c702b5e86a75a7d5f225.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01237;src:url('chunks/assets/font_5f9b4db38e0ff356affda4fb.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01237;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01237;src:url('chunks/assets/font_7103f025013492c0837bcd04.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls4_c01237{letter-spacing:0.000000px;}
.ls0_c01237{letter-spacing:0.087998px;}
.ls1_c01237{letter-spacing:0.098482px;}
.ls3_c01237{letter-spacing:0.104482px;}
.ls2_c01237{letter-spacing:0.140482px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01237{word-spacing:-26.575517px;}
.ws2_c01237{word-spacing:-26.487518px;}
.ws4_c01237{word-spacing:0.000000px;}
.ws3_c01237{word-spacing:0.043999px;}
.ws1_c01237{word-spacing:0.053933px;}
.ws5_c01237{word-spacing:0.056767px;}
.ws6_c01237{word-spacing:0.213446px;}
._0_c01237{width:1.028438px;}
.fc5_c01237{color:rgb(0,0,207);}
.fc4_c01237{color:rgb(79,153,5);}
.fc3_c01237{color:rgb(33,74,135);}
.fc2_c01237{color:rgb(207,92,0);}
.fc1_c01237{color:rgb(143,89,3);}
.fc0_c01237{color:rgb(0,0,0);}
.fs0_c01237{font-size:43.999200px;}
.fs1_c01237{font-size:59.775600px;}
.y0_c01237{bottom:0.000000px;}
.y2b_c01237{bottom:44.250000px;}
.y2a_c01237{bottom:436.575000px;}
.y29_c01237{bottom:453.013500px;}
.y28_c01237{bottom:469.452000px;}
.y27_c01237{bottom:485.890500px;}
.y26_c01237{bottom:502.329000px;}
.y25_c01237{bottom:518.767500px;}
.y24_c01237{bottom:535.206000px;}
.y23_c01237{bottom:551.643000px;}
.y22_c01237{bottom:568.081500px;}
.y21_c01237{bottom:584.520000px;}
.y20_c01237{bottom:600.958500px;}
.y1f_c01237{bottom:633.835500px;}
.y1e_c01237{bottom:650.274000px;}
.y1d_c01237{bottom:666.712500px;}
.y1c_c01237{bottom:699.589500px;}
.y1b_c01237{bottom:716.028000px;}
.y1a_c01237{bottom:732.465000px;}
.y19_c01237{bottom:748.903500px;}
.y18_c01237{bottom:765.342000px;}
.y17_c01237{bottom:781.780500px;}
.y16_c01237{bottom:798.219000px;}
.y15_c01237{bottom:814.657500px;}
.y14_c01237{bottom:831.096000px;}
.y13_c01237{bottom:847.534500px;}
.y12_c01237{bottom:863.973000px;}
.y11_c01237{bottom:880.411500px;}
.y10_c01237{bottom:896.848500px;}
.yf_c01237{bottom:913.287000px;}
.ye_c01237{bottom:929.725500px;}
.yd_c01237{bottom:946.164000px;}
.yc_c01237{bottom:962.602500px;}
.yb_c01237{bottom:979.041000px;}
.ya_c01237{bottom:995.479500px;}
.y9_c01237{bottom:1011.918000px;}
.y8_c01237{bottom:1028.356500px;}
.y7_c01237{bottom:1044.795000px;}
.y6_c01237{bottom:1061.232000px;}
.y5_c01237{bottom:1077.670500px;}
.y4_c01237{bottom:1094.109000px;}
.y3_c01237{bottom:1110.547500px;}
.y2_c01237{bottom:1143.424500px;}
.y1_c01237{bottom:1159.863000px;}
.h3_c01237{height:35.190766px;}
.h2_c01237{height:36.007158px;}
.h4_c01237{height:52.332837px;}
.h0_c01237{height:1262.835000px;}
.h1_c01237{height:1263.000000px;}
.w0_c01237{width:892.920000px;}
.w1_c01237{width:893.250000px;}
.x0_c01237{left:0.000000px;}
.x1_c01237{left:137.122500px;}
.x2_c01237{left:143.770500px;}
.x6_c01237{left:177.007500px;}
.x5_c01237{left:230.185500px;}
.x3_c01237{left:243.480000px;}
.x4_c01237{left:276.715500px;}
.x7_c01237{left:435.249000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls4_c01237{letter-spacing:0.000000pt;}
.ls0_c01237{letter-spacing:0.078221pt;}
.ls1_c01237{letter-spacing:0.087539pt;}
.ls3_c01237{letter-spacing:0.092873pt;}
.ls2_c01237{letter-spacing:0.124873pt;}
.ws0_c01237{word-spacing:-23.622682pt;}
.ws2_c01237{word-spacing:-23.544461pt;}
.ws4_c01237{word-spacing:0.000000pt;}
.ws3_c01237{word-spacing:0.039110pt;}
.ws1_c01237{word-spacing:0.047940pt;}
.ws5_c01237{word-spacing:0.050460pt;}
.ws6_c01237{word-spacing:0.189730pt;}
._0_c01237{width:0.914167pt;}
.fs0_c01237{font-size:39.110400pt;}
.fs1_c01237{font-size:53.133867pt;}
.y0_c01237{bottom:0.000000pt;}
.y2b_c01237{bottom:39.333333pt;}
.y2a_c01237{bottom:388.066667pt;}
.y29_c01237{bottom:402.678667pt;}
.y28_c01237{bottom:417.290667pt;}
.y27_c01237{bottom:431.902667pt;}
.y26_c01237{bottom:446.514667pt;}
.y25_c01237{bottom:461.126667pt;}
.y24_c01237{bottom:475.738667pt;}
.y23_c01237{bottom:490.349333pt;}
.y22_c01237{bottom:504.961333pt;}
.y21_c01237{bottom:519.573333pt;}
.y20_c01237{bottom:534.185333pt;}
.y1f_c01237{bottom:563.409333pt;}
.y1e_c01237{bottom:578.021333pt;}
.y1d_c01237{bottom:592.633333pt;}
.y1c_c01237{bottom:621.857333pt;}
.y1b_c01237{bottom:636.469333pt;}
.y1a_c01237{bottom:651.080000pt;}
.y19_c01237{bottom:665.692000pt;}
.y18_c01237{bottom:680.304000pt;}
.y17_c01237{bottom:694.916000pt;}
.y16_c01237{bottom:709.528000pt;}
.y15_c01237{bottom:724.140000pt;}
.y14_c01237{bottom:738.752000pt;}
.y13_c01237{bottom:753.364000pt;}
.y12_c01237{bottom:767.976000pt;}
.y11_c01237{bottom:782.588000pt;}
.y10_c01237{bottom:797.198667pt;}
.yf_c01237{bottom:811.810667pt;}
.ye_c01237{bottom:826.422667pt;}
.yd_c01237{bottom:841.034667pt;}
.yc_c01237{bottom:855.646667pt;}
.yb_c01237{bottom:870.258667pt;}
.ya_c01237{bottom:884.870667pt;}
.y9_c01237{bottom:899.482667pt;}
.y8_c01237{bottom:914.094667pt;}
.y7_c01237{bottom:928.706667pt;}
.y6_c01237{bottom:943.317333pt;}
.y5_c01237{bottom:957.929333pt;}
.y4_c01237{bottom:972.541333pt;}
.y3_c01237{bottom:987.153333pt;}
.y2_c01237{bottom:1016.377333pt;}
.y1_c01237{bottom:1030.989333pt;}
.h3_c01237{height:31.280681pt;}
.h2_c01237{height:32.006363pt;}
.h4_c01237{height:46.518078pt;}
.h0_c01237{height:1122.520000pt;}
.h1_c01237{height:1122.666667pt;}
.w0_c01237{width:793.706667pt;}
.w1_c01237{width:794.000000pt;}
.x0_c01237{left:0.000000pt;}
.x1_c01237{left:121.886667pt;}
.x2_c01237{left:127.796000pt;}
.x6_c01237{left:157.340000pt;}
.x5_c01237{left:204.609333pt;}
.x3_c01237{left:216.426667pt;}
.x4_c01237{left:245.969333pt;}
.x7_c01237{left:386.888000pt;}
}





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

.ir_c01238:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_0fe22b92db556eae0a85af71.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01238;src:url('chunks/assets/font_9d696fa791a445a5b4887583.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01238;src:url('chunks/assets/font_9ed07221dad0dc47cb772acd.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01238;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01238{font-family:ff4_c01238;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01238;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01238{font-family:ff5_c01238;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01238{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01238{vertical-align:0.000000px;}
.ls3_c01238{letter-spacing:0.000000px;}
.ls0_c01238{letter-spacing:0.087998px;}
.ls2_c01238{letter-spacing:0.098482px;}
.ls1_c01238{letter-spacing:0.104482px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01238{word-spacing:-33.713438px;}
.ws2_c01238{word-spacing:-26.575517px;}
.wse_c01238{word-spacing:-26.487518px;}
.ws9_c01238{word-spacing:-21.553319px;}
.ws8_c01238{word-spacing:-21.519216px;}
.ws5_c01238{word-spacing:-18.769538px;}
.ws7_c01238{word-spacing:-16.019861px;}
.ws4_c01238{word-spacing:-14.943900px;}
.wsa_c01238{word-spacing:-14.107042px;}
.wsb_c01238{word-spacing:-12.074671px;}
.ws1_c01238{word-spacing:-9.988424px;}
.ws3_c01238{word-spacing:-9.987499px;}
.ws6_c01238{word-spacing:-4.536144px;}
.ws12_c01238{word-spacing:0.000000px;}
.wsf_c01238{word-spacing:0.043999px;}
.ws15_c01238{word-spacing:0.056767px;}
.ws13_c01238{word-spacing:0.073250px;}
.ws14_c01238{word-spacing:0.083734px;}
.wsd_c01238{word-spacing:0.175997px;}
.ws16_c01238{word-spacing:0.202963px;}
.ws10_c01238{word-spacing:0.213446px;}
.ws11_c01238{word-spacing:0.219446px;}
.ws0_c01238{word-spacing:43.038600px;}
._1_c01238{margin-left:-6.369713px;}
._4_c01238{margin-left:-3.825638px;}
._0_c01238{margin-left:-1.549390px;}
._5_c01238{width:1.005737px;}
._2_c01238{width:19.935816px;}
._3_c01238{width:40.109428px;}
._7_c01238{width:53.283031px;}
._6_c01238{width:79.858548px;}
._8_c01238{width:133.452408px;}
.fc6_c01238{color:rgb(0,0,207);}
.fc5_c01238{color:rgb(79,153,5);}
.fc3_c01238{color:rgb(33,74,135);}
.fc2_c01238{color:rgb(143,89,3);}
.fc4_c01238{color:rgb(207,92,0);}
.fc1_c01238{color:rgb(6,69,173);}
.fc0_c01238{color:rgb(0,0,0);}
.fs2_c01238{font-size:43.999200px;}
.fs1_c01238{font-size:59.775600px;}
.fs0_c01238{font-size:86.077200px;}
.y0_c01238{bottom:0.000000px;}
.y20_c01238{bottom:44.250000px;}
.y1f_c01238{bottom:86.982000px;}
.y1e_c01238{bottom:103.420500px;}
.y1d_c01238{bottom:119.859000px;}
.y1c_c01238{bottom:136.297500px;}
.y1b_c01238{bottom:152.736000px;}
.y1a_c01238{bottom:169.174500px;}
.y19_c01238{bottom:185.613000px;}
.y18_c01238{bottom:202.051500px;}
.y17_c01238{bottom:218.490000px;}
.y16_c01238{bottom:234.927000px;}
.y15_c01238{bottom:251.365500px;}
.y14_c01238{bottom:267.804000px;}
.y13_c01238{bottom:284.242500px;}
.y12_c01238{bottom:300.681000px;}
.y11_c01238{bottom:317.119500px;}
.y10_c01238{bottom:349.996500px;}
.yf_c01238{bottom:366.435000px;}
.ye_c01238{bottom:415.749000px;}
.yd_c01238{bottom:432.187500px;}
.yc_c01238{bottom:448.252500px;}
.yb_c01238{bottom:493.890000px;}
.ya_c01238{bottom:511.822500px;}
.y9_c01238{bottom:529.756500px;}
.y8_c01238{bottom:547.689000px;}
.y7_c01238{bottom:565.621500px;}
.y6_c01238{bottom:583.554000px;}
.y5_c01238{bottom:610.633500px;}
.y4_c01238{bottom:637.714500px;}
.y3_c01238{bottom:664.794000px;}
.y2_c01238{bottom:691.873500px;}
.y1_c01238{bottom:734.407500px;}
.h5_c01238{height:35.190766px;}
.h6_c01238{height:36.007158px;}
.h3_c01238{height:40.511979px;}
.h4_c01238{height:52.332837px;}
.h2_c01238{height:58.337477px;}
.h0_c01238{height:1262.835000px;}
.h1_c01238{height:1263.000000px;}
.w0_c01238{width:892.920000px;}
.w1_c01238{width:893.250000px;}
.x0_c01238{left:0.000000px;}
.x1_c01238{left:127.558500px;}
.x2_c01238{left:137.122500px;}
.x3_c01238{left:143.770500px;}
.x4_c01238{left:435.249000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls3_c01238{letter-spacing:0.000000pt;}
.ls0_c01238{letter-spacing:0.078221pt;}
.ls2_c01238{letter-spacing:0.087539pt;}
.ls1_c01238{letter-spacing:0.092873pt;}
.wsc_c01238{word-spacing:-29.967501pt;}
.ws2_c01238{word-spacing:-23.622682pt;}
.wse_c01238{word-spacing:-23.544461pt;}
.ws9_c01238{word-spacing:-19.158506pt;}
.ws8_c01238{word-spacing:-19.128192pt;}
.ws5_c01238{word-spacing:-16.684034pt;}
.ws7_c01238{word-spacing:-14.239876pt;}
.ws4_c01238{word-spacing:-13.283467pt;}
.wsa_c01238{word-spacing:-12.539593pt;}
.wsb_c01238{word-spacing:-10.733041pt;}
.ws1_c01238{word-spacing:-8.878599pt;}
.ws3_c01238{word-spacing:-8.877777pt;}
.ws6_c01238{word-spacing:-4.032128pt;}
.ws12_c01238{word-spacing:0.000000pt;}
.wsf_c01238{word-spacing:0.039110pt;}
.ws15_c01238{word-spacing:0.050460pt;}
.ws13_c01238{word-spacing:0.065111pt;}
.ws14_c01238{word-spacing:0.074430pt;}
.wsd_c01238{word-spacing:0.156442pt;}
.ws16_c01238{word-spacing:0.180412pt;}
.ws10_c01238{word-spacing:0.189730pt;}
.ws11_c01238{word-spacing:0.195063pt;}
.ws0_c01238{word-spacing:38.256533pt;}
._1_c01238{margin-left:-5.661967pt;}
._4_c01238{margin-left:-3.400567pt;}
._0_c01238{margin-left:-1.377235pt;}
._5_c01238{width:0.893988pt;}
._2_c01238{width:17.720725pt;}
._3_c01238{width:35.652825pt;}
._7_c01238{width:47.362694pt;}
._6_c01238{width:70.985376pt;}
._8_c01238{width:118.624363pt;}
.fs2_c01238{font-size:39.110400pt;}
.fs1_c01238{font-size:53.133867pt;}
.fs0_c01238{font-size:76.513067pt;}
.y0_c01238{bottom:0.000000pt;}
.y20_c01238{bottom:39.333333pt;}
.y1f_c01238{bottom:77.317333pt;}
.y1e_c01238{bottom:91.929333pt;}
.y1d_c01238{bottom:106.541333pt;}
.y1c_c01238{bottom:121.153333pt;}
.y1b_c01238{bottom:135.765333pt;}
.y1a_c01238{bottom:150.377333pt;}
.y19_c01238{bottom:164.989333pt;}
.y18_c01238{bottom:179.601333pt;}
.y17_c01238{bottom:194.213333pt;}
.y16_c01238{bottom:208.824000pt;}
.y15_c01238{bottom:223.436000pt;}
.y14_c01238{bottom:238.048000pt;}
.y13_c01238{bottom:252.660000pt;}
.y12_c01238{bottom:267.272000pt;}
.y11_c01238{bottom:281.884000pt;}
.y10_c01238{bottom:311.108000pt;}
.yf_c01238{bottom:325.720000pt;}
.ye_c01238{bottom:369.554667pt;}
.yd_c01238{bottom:384.166667pt;}
.yc_c01238{bottom:398.446667pt;}
.yb_c01238{bottom:439.013333pt;}
.ya_c01238{bottom:454.953333pt;}
.y9_c01238{bottom:470.894667pt;}
.y8_c01238{bottom:486.834667pt;}
.y7_c01238{bottom:502.774667pt;}
.y6_c01238{bottom:518.714667pt;}
.y5_c01238{bottom:542.785333pt;}
.y4_c01238{bottom:566.857333pt;}
.y3_c01238{bottom:590.928000pt;}
.y2_c01238{bottom:614.998667pt;}
.y1_c01238{bottom:652.806667pt;}
.h5_c01238{height:31.280681pt;}
.h6_c01238{height:32.006363pt;}
.h3_c01238{height:36.010648pt;}
.h4_c01238{height:46.518078pt;}
.h2_c01238{height:51.855535pt;}
.h0_c01238{height:1122.520000pt;}
.h1_c01238{height:1122.666667pt;}
.w0_c01238{width:793.706667pt;}
.w1_c01238{width:794.000000pt;}
.x0_c01238{left:0.000000pt;}
.x1_c01238{left:113.385333pt;}
.x2_c01238{left:121.886667pt;}
.x3_c01238{left:127.796000pt;}
.x4_c01238{left:386.888000pt;}
}





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

.ir_c01239:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_02f99e93f58559e22051e762.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01239;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01239;src:url('chunks/assets/font_1095910a3d000989f22481a7.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01239;src:url('chunks/assets/font_a02d62218bf1832d9e86b96d.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01239;src:url('chunks/assets/font_aca5262258bc004453ad3836.woff2')format("woff");}.ff5_c01239{font-family:ff5_c01239;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01239{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.ls4_c01239{letter-spacing:0.000000px;}
.ls0_c01239{letter-spacing:0.087998px;}
.ls2_c01239{letter-spacing:0.098482px;}
.ls3_c01239{letter-spacing:0.104482px;}
.ls1_c01239{letter-spacing:26.690482px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01239{word-spacing:-26.575517px;}
.ws4_c01239{word-spacing:-26.487518px;}
.wse_c01239{word-spacing:-21.553319px;}
.wsd_c01239{word-spacing:-21.519216px;}
.wsa_c01239{word-spacing:-18.769538px;}
.wsc_c01239{word-spacing:-17.633802px;}
.ws9_c01239{word-spacing:-14.943900px;}
.wsf_c01239{word-spacing:-14.107042px;}
.ws10_c01239{word-spacing:-12.074671px;}
.ws7_c01239{word-spacing:-9.988424px;}
.ws8_c01239{word-spacing:-9.987499px;}
.wsb_c01239{word-spacing:-7.686144px;}
.ws3_c01239{word-spacing:0.000000px;}
.ws0_c01239{word-spacing:0.043999px;}
.ws5_c01239{word-spacing:0.213446px;}
.ws1_c01239{word-spacing:0.219446px;}
.ws6_c01239{word-spacing:43.038600px;}
._2_c01239{margin-left:-6.369713px;}
._1_c01239{margin-left:-1.549390px;}
._0_c01239{width:1.047206px;}
._3_c01239{width:19.935816px;}
._4_c01239{width:40.109428px;}
.fc5_c01239{color:rgb(79,153,5);}
.fc4_c01239{color:rgb(143,89,3);}
.fc3_c01239{color:rgb(0,0,0);}
.fc6_c01239{color:rgb(6,69,173);}
.fc2_c01239{color:rgb(207,92,0);}
.fc1_c01239{color:rgb(0,0,207);}
.fc0_c01239{color:rgb(33,74,135);}
.fs0_c01239{font-size:43.999200px;}
.fs2_c01239{font-size:59.775600px;}
.fs1_c01239{font-size:86.077200px;}
.y0_c01239{bottom:0.000000px;}
.y20_c01239{bottom:44.250000px;}
.y1f_c01239{bottom:82.051500px;}
.y1e_c01239{bottom:99.984000px;}
.y1d_c01239{bottom:117.916500px;}
.y1c_c01239{bottom:135.849000px;}
.y1b_c01239{bottom:162.501000px;}
.y1a_c01239{bottom:189.151500px;}
.y19_c01239{bottom:215.802000px;}
.y18_c01239{bottom:242.454000px;}
.y17_c01239{bottom:284.478000px;}
.y16_c01239{bottom:748.903500px;}
.y15_c01239{bottom:765.342000px;}
.y14_c01239{bottom:781.780500px;}
.y13_c01239{bottom:798.219000px;}
.y12_c01239{bottom:814.657500px;}
.y11_c01239{bottom:831.096000px;}
.y10_c01239{bottom:847.534500px;}
.yf_c01239{bottom:863.973000px;}
.ye_c01239{bottom:880.411500px;}
.yd_c01239{bottom:896.848500px;}
.yc_c01239{bottom:913.287000px;}
.yb_c01239{bottom:946.164000px;}
.ya_c01239{bottom:962.602500px;}
.y9_c01239{bottom:979.041000px;}
.y8_c01239{bottom:1011.918000px;}
.y7_c01239{bottom:1028.356500px;}
.y6_c01239{bottom:1044.795000px;}
.y5_c01239{bottom:1061.232000px;}
.y4_c01239{bottom:1077.670500px;}
.y3_c01239{bottom:1094.109000px;}
.y2_c01239{bottom:1110.547500px;}
.y1_c01239{bottom:1159.863000px;}
.h3_c01239{height:35.190766px;}
.h2_c01239{height:36.007158px;}
.h5_c01239{height:40.511979px;}
.h6_c01239{height:52.332837px;}
.h4_c01239{height:58.337477px;}
.h0_c01239{height:1262.835000px;}
.h1_c01239{height:1263.000000px;}
.w0_c01239{width:892.920000px;}
.w1_c01239{width:893.250000px;}
.x0_c01239{left:0.000000px;}
.x4_c01239{left:127.558500px;}
.x2_c01239{left:137.122500px;}
.x1_c01239{left:143.770500px;}
.x3_c01239{left:177.007500px;}
.x5_c01239{left:435.249000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls4_c01239{letter-spacing:0.000000pt;}
.ls0_c01239{letter-spacing:0.078221pt;}
.ls2_c01239{letter-spacing:0.087539pt;}
.ls3_c01239{letter-spacing:0.092873pt;}
.ls1_c01239{letter-spacing:23.724873pt;}
.ws2_c01239{word-spacing:-23.622682pt;}
.ws4_c01239{word-spacing:-23.544461pt;}
.wse_c01239{word-spacing:-19.158506pt;}
.wsd_c01239{word-spacing:-19.128192pt;}
.wsa_c01239{word-spacing:-16.684034pt;}
.wsc_c01239{word-spacing:-15.674491pt;}
.ws9_c01239{word-spacing:-13.283467pt;}
.wsf_c01239{word-spacing:-12.539593pt;}
.ws10_c01239{word-spacing:-10.733041pt;}
.ws7_c01239{word-spacing:-8.878599pt;}
.ws8_c01239{word-spacing:-8.877777pt;}
.wsb_c01239{word-spacing:-6.832128pt;}
.ws3_c01239{word-spacing:0.000000pt;}
.ws0_c01239{word-spacing:0.039110pt;}
.ws5_c01239{word-spacing:0.189730pt;}
.ws1_c01239{word-spacing:0.195063pt;}
.ws6_c01239{word-spacing:38.256533pt;}
._2_c01239{margin-left:-5.661967pt;}
._1_c01239{margin-left:-1.377235pt;}
._0_c01239{width:0.930850pt;}
._3_c01239{width:17.720725pt;}
._4_c01239{width:35.652825pt;}
.fs0_c01239{font-size:39.110400pt;}
.fs2_c01239{font-size:53.133867pt;}
.fs1_c01239{font-size:76.513067pt;}
.y0_c01239{bottom:0.000000pt;}
.y20_c01239{bottom:39.333333pt;}
.y1f_c01239{bottom:72.934667pt;}
.y1e_c01239{bottom:88.874667pt;}
.y1d_c01239{bottom:104.814667pt;}
.y1c_c01239{bottom:120.754667pt;}
.y1b_c01239{bottom:144.445333pt;}
.y1a_c01239{bottom:168.134667pt;}
.y19_c01239{bottom:191.824000pt;}
.y18_c01239{bottom:215.514667pt;}
.y17_c01239{bottom:252.869333pt;}
.y16_c01239{bottom:665.692000pt;}
.y15_c01239{bottom:680.304000pt;}
.y14_c01239{bottom:694.916000pt;}
.y13_c01239{bottom:709.528000pt;}
.y12_c01239{bottom:724.140000pt;}
.y11_c01239{bottom:738.752000pt;}
.y10_c01239{bottom:753.364000pt;}
.yf_c01239{bottom:767.976000pt;}
.ye_c01239{bottom:782.588000pt;}
.yd_c01239{bottom:797.198667pt;}
.yc_c01239{bottom:811.810667pt;}
.yb_c01239{bottom:841.034667pt;}
.ya_c01239{bottom:855.646667pt;}
.y9_c01239{bottom:870.258667pt;}
.y8_c01239{bottom:899.482667pt;}
.y7_c01239{bottom:914.094667pt;}
.y6_c01239{bottom:928.706667pt;}
.y5_c01239{bottom:943.317333pt;}
.y4_c01239{bottom:957.929333pt;}
.y3_c01239{bottom:972.541333pt;}
.y2_c01239{bottom:987.153333pt;}
.y1_c01239{bottom:1030.989333pt;}
.h3_c01239{height:31.280681pt;}
.h2_c01239{height:32.006363pt;}
.h5_c01239{height:36.010648pt;}
.h6_c01239{height:46.518078pt;}
.h4_c01239{height:51.855535pt;}
.h0_c01239{height:1122.520000pt;}
.h1_c01239{height:1122.666667pt;}
.w0_c01239{width:793.706667pt;}
.w1_c01239{width:794.000000pt;}
.x0_c01239{left:0.000000pt;}
.x4_c01239{left:113.385333pt;}
.x2_c01239{left:121.886667pt;}
.x1_c01239{left:127.796000pt;}
.x3_c01239{left:157.340000pt;}
.x5_c01239{left:386.888000pt;}
}





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

.ir_c01240:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_3439a91d227a38c5010fd71d.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01240;src:url('chunks/assets/font_70aa6be3bb65a76767e27d06.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01240;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01240;src:url('chunks/assets/font_6158e3d9e68358f551ee8da5.woff2')format("woff");}.ff4_c01240{font-family:ff4_c01240;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01240{vertical-align:0.000000px;}
.ls4_c01240{letter-spacing:0.000000px;}
.ls1_c01240{letter-spacing:0.087998px;}
.ls2_c01240{letter-spacing:0.098482px;}
.ls0_c01240{letter-spacing:0.104482px;}
.ls3_c01240{letter-spacing:26.690482px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01240{word-spacing:-33.713438px;}
.ws4_c01240{word-spacing:-26.575517px;}
.ws3_c01240{word-spacing:-26.487518px;}
.ws0_c01240{word-spacing:-18.769538px;}
.ws8_c01240{word-spacing:0.000000px;}
.ws5_c01240{word-spacing:0.043999px;}
.wsb_c01240{word-spacing:0.056767px;}
.ws9_c01240{word-spacing:0.073250px;}
.wsa_c01240{word-spacing:0.083734px;}
.ws2_c01240{word-spacing:0.175997px;}
.wsc_c01240{word-spacing:0.202963px;}
.ws6_c01240{word-spacing:0.213446px;}
.ws7_c01240{word-spacing:0.219446px;}
._0_c01240{margin-left:-3.825638px;}
._1_c01240{width:1.005737px;}
._3_c01240{width:53.283031px;}
._2_c01240{width:79.858548px;}
._5_c01240{width:106.786058px;}
._4_c01240{width:133.452408px;}
.fc5_c01240{color:rgb(0,0,207);}
.fc4_c01240{color:rgb(79,153,5);}
.fc3_c01240{color:rgb(207,92,0);}
.fc2_c01240{color:rgb(33,74,135);}
.fc1_c01240{color:rgb(143,89,3);}
.fc0_c01240{color:rgb(0,0,0);}
.fs1_c01240{font-size:43.999200px;}
.fs0_c01240{font-size:59.775600px;}
.y0_c01240{bottom:0.000000px;}
.y2d_c01240{bottom:44.250000px;}
.y2c_c01240{bottom:96.919500px;}
.y2b_c01240{bottom:113.358000px;}
.y2a_c01240{bottom:129.796500px;}
.y29_c01240{bottom:146.235000px;}
.y28_c01240{bottom:162.673500px;}
.y27_c01240{bottom:179.112000px;}
.y26_c01240{bottom:195.550500px;}
.y25_c01240{bottom:211.989000px;}
.y24_c01240{bottom:228.427500px;}
.y23_c01240{bottom:244.866000px;}
.y22_c01240{bottom:261.304500px;}
.y21_c01240{bottom:294.180000px;}
.y20_c01240{bottom:310.618500px;}
.y1f_c01240{bottom:327.057000px;}
.y1e_c01240{bottom:359.934000px;}
.y1d_c01240{bottom:376.372500px;}
.y1c_c01240{bottom:392.811000px;}
.y1b_c01240{bottom:409.249500px;}
.y1a_c01240{bottom:425.688000px;}
.y19_c01240{bottom:442.125000px;}
.y18_c01240{bottom:458.563500px;}
.y17_c01240{bottom:507.879000px;}
.y16_c01240{bottom:524.317500px;}
.y15_c01240{bottom:540.756000px;}
.y14_c01240{bottom:557.194500px;}
.y13_c01240{bottom:573.633000px;}
.y12_c01240{bottom:590.071500px;}
.y11_c01240{bottom:606.508500px;}
.y10_c01240{bottom:622.947000px;}
.yf_c01240{bottom:639.385500px;}
.ye_c01240{bottom:655.824000px;}
.yd_c01240{bottom:672.262500px;}
.yc_c01240{bottom:688.701000px;}
.yb_c01240{bottom:705.139500px;}
.ya_c01240{bottom:721.578000px;}
.y9_c01240{bottom:738.016500px;}
.y8_c01240{bottom:754.455000px;}
.y7_c01240{bottom:787.330500px;}
.y6_c01240{bottom:803.769000px;}
.y5_c01240{bottom:853.084500px;}
.y4_c01240{bottom:869.523000px;}
.y3_c01240{bottom:885.588000px;}
.y2_c01240{bottom:1141.930500px;}
.y1_c01240{bottom:1159.863000px;}
.h3_c01240{height:35.190766px;}
.h4_c01240{height:36.007158px;}
.h2_c01240{height:52.332837px;}
.h0_c01240{height:1262.835000px;}
.h1_c01240{height:1263.000000px;}
.w0_c01240{width:892.920000px;}
.w1_c01240{width:893.250000px;}
.x0_c01240{left:0.000000px;}
.x1_c01240{left:127.558500px;}
.x2_c01240{left:137.122500px;}
.x3_c01240{left:143.770500px;}
.x4_c01240{left:177.007500px;}
.x5_c01240{left:435.249000px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls4_c01240{letter-spacing:0.000000pt;}
.ls1_c01240{letter-spacing:0.078221pt;}
.ls2_c01240{letter-spacing:0.087539pt;}
.ls0_c01240{letter-spacing:0.092873pt;}
.ls3_c01240{letter-spacing:23.724873pt;}
.ws1_c01240{word-spacing:-29.967501pt;}
.ws4_c01240{word-spacing:-23.622682pt;}
.ws3_c01240{word-spacing:-23.544461pt;}
.ws0_c01240{word-spacing:-16.684034pt;}
.ws8_c01240{word-spacing:0.000000pt;}
.ws5_c01240{word-spacing:0.039110pt;}
.wsb_c01240{word-spacing:0.050460pt;}
.ws9_c01240{word-spacing:0.065111pt;}
.wsa_c01240{word-spacing:0.074430pt;}
.ws2_c01240{word-spacing:0.156442pt;}
.wsc_c01240{word-spacing:0.180412pt;}
.ws6_c01240{word-spacing:0.189730pt;}
.ws7_c01240{word-spacing:0.195063pt;}
._0_c01240{margin-left:-3.400567pt;}
._1_c01240{width:0.893988pt;}
._3_c01240{width:47.362694pt;}
._2_c01240{width:70.985376pt;}
._5_c01240{width:94.920941pt;}
._4_c01240{width:118.624363pt;}
.fs1_c01240{font-size:39.110400pt;}
.fs0_c01240{font-size:53.133867pt;}
.y0_c01240{bottom:0.000000pt;}
.y2d_c01240{bottom:39.333333pt;}
.y2c_c01240{bottom:86.150667pt;}
.y2b_c01240{bottom:100.762667pt;}
.y2a_c01240{bottom:115.374667pt;}
.y29_c01240{bottom:129.986667pt;}
.y28_c01240{bottom:144.598667pt;}
.y27_c01240{bottom:159.210667pt;}
.y26_c01240{bottom:173.822667pt;}
.y25_c01240{bottom:188.434667pt;}
.y24_c01240{bottom:203.046667pt;}
.y23_c01240{bottom:217.658667pt;}
.y22_c01240{bottom:232.270667pt;}
.y21_c01240{bottom:261.493333pt;}
.y20_c01240{bottom:276.105333pt;}
.y1f_c01240{bottom:290.717333pt;}
.y1e_c01240{bottom:319.941333pt;}
.y1d_c01240{bottom:334.553333pt;}
.y1c_c01240{bottom:349.165333pt;}
.y1b_c01240{bottom:363.777333pt;}
.y1a_c01240{bottom:378.389333pt;}
.y19_c01240{bottom:393.000000pt;}
.y18_c01240{bottom:407.612000pt;}
.y17_c01240{bottom:451.448000pt;}
.y16_c01240{bottom:466.060000pt;}
.y15_c01240{bottom:480.672000pt;}
.y14_c01240{bottom:495.284000pt;}
.y13_c01240{bottom:509.896000pt;}
.y12_c01240{bottom:524.508000pt;}
.y11_c01240{bottom:539.118667pt;}
.y10_c01240{bottom:553.730667pt;}
.yf_c01240{bottom:568.342667pt;}
.ye_c01240{bottom:582.954667pt;}
.yd_c01240{bottom:597.566667pt;}
.yc_c01240{bottom:612.178667pt;}
.yb_c01240{bottom:626.790667pt;}
.ya_c01240{bottom:641.402667pt;}
.y9_c01240{bottom:656.014667pt;}
.y8_c01240{bottom:670.626667pt;}
.y7_c01240{bottom:699.849333pt;}
.y6_c01240{bottom:714.461333pt;}
.y5_c01240{bottom:758.297333pt;}
.y4_c01240{bottom:772.909333pt;}
.y3_c01240{bottom:787.189333pt;}
.y2_c01240{bottom:1015.049333pt;}
.y1_c01240{bottom:1030.989333pt;}
.h3_c01240{height:31.280681pt;}
.h4_c01240{height:32.006363pt;}
.h2_c01240{height:46.518078pt;}
.h0_c01240{height:1122.520000pt;}
.h1_c01240{height:1122.666667pt;}
.w0_c01240{width:793.706667pt;}
.w1_c01240{width:794.000000pt;}
.x0_c01240{left:0.000000pt;}
.x1_c01240{left:113.385333pt;}
.x2_c01240{left:121.886667pt;}
.x3_c01240{left:127.796000pt;}
.x4_c01240{left:157.340000pt;}
.x5_c01240{left:386.888000pt;}
}





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

.ir_c01241:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_edca4cca7fa8d49fb69e6846.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01241;src:url('chunks/assets/font_f19a49502b85b0bd309ce4db.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01241;src:url('chunks/assets/font_8b52630c2943badf2feb585a.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01241;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01241;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01241{font-family:ff5_c01241;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01241{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01241{vertical-align:0.000000px;}
.ls3_c01241{letter-spacing:0.000000px;}
.ls0_c01241{letter-spacing:0.087998px;}
.ls2_c01241{letter-spacing:0.098482px;}
.ls1_c01241{letter-spacing:0.104482px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01241{word-spacing:-33.713438px;}
.ws2_c01241{word-spacing:-26.575517px;}
.wse_c01241{word-spacing:-26.487518px;}
.ws9_c01241{word-spacing:-21.553319px;}
.ws8_c01241{word-spacing:-21.519216px;}
.ws5_c01241{word-spacing:-18.769538px;}
.ws7_c01241{word-spacing:-17.633802px;}
.ws4_c01241{word-spacing:-14.943900px;}
.wsa_c01241{word-spacing:-14.107042px;}
.wsb_c01241{word-spacing:-12.074671px;}
.ws1_c01241{word-spacing:-9.988424px;}
.ws3_c01241{word-spacing:-9.987499px;}
.ws6_c01241{word-spacing:-7.686144px;}
.ws12_c01241{word-spacing:0.000000px;}
.wsf_c01241{word-spacing:0.043999px;}
.ws15_c01241{word-spacing:0.056767px;}
.ws13_c01241{word-spacing:0.073250px;}
.ws14_c01241{word-spacing:0.083734px;}
.wsd_c01241{word-spacing:0.175997px;}
.ws16_c01241{word-spacing:0.202963px;}
.ws10_c01241{word-spacing:0.213446px;}
.ws11_c01241{word-spacing:0.219446px;}
.ws0_c01241{word-spacing:43.038600px;}
._1_c01241{margin-left:-6.369713px;}
._4_c01241{margin-left:-3.825638px;}
._0_c01241{margin-left:-1.549390px;}
._5_c01241{width:1.005737px;}
._2_c01241{width:19.935816px;}
._3_c01241{width:40.109428px;}
._7_c01241{width:53.283031px;}
._6_c01241{width:79.858548px;}
._8_c01241{width:133.452408px;}
.fc6_c01241{color:rgb(0,0,207);}
.fc5_c01241{color:rgb(79,153,5);}
.fc3_c01241{color:rgb(33,74,135);}
.fc2_c01241{color:rgb(143,89,3);}
.fc4_c01241{color:rgb(207,92,0);}
.fc1_c01241{color:rgb(6,69,173);}
.fc0_c01241{color:rgb(0,0,0);}
.fs2_c01241{font-size:43.999200px;}
.fs1_c01241{font-size:59.775600px;}
.fs0_c01241{font-size:86.077200px;}
.y0_c01241{bottom:0.000000px;}
.y20_c01241{bottom:44.250000px;}
.y1f_c01241{bottom:86.982000px;}
.y1e_c01241{bottom:103.420500px;}
.y1d_c01241{bottom:119.859000px;}
.y1c_c01241{bottom:136.297500px;}
.y1b_c01241{bottom:152.736000px;}
.y1a_c01241{bottom:169.174500px;}
.y19_c01241{bottom:185.613000px;}
.y18_c01241{bottom:202.051500px;}
.y17_c01241{bottom:218.490000px;}
.y16_c01241{bottom:234.927000px;}
.y15_c01241{bottom:251.365500px;}
.y14_c01241{bottom:267.804000px;}
.y13_c01241{bottom:284.242500px;}
.y12_c01241{bottom:300.681000px;}
.y11_c01241{bottom:317.119500px;}
.y10_c01241{bottom:349.996500px;}
.yf_c01241{bottom:366.435000px;}
.ye_c01241{bottom:415.749000px;}
.yd_c01241{bottom:432.187500px;}
.yc_c01241{bottom:448.252500px;}
.yb_c01241{bottom:493.890000px;}
.ya_c01241{bottom:511.822500px;}
.y9_c01241{bottom:529.756500px;}
.y8_c01241{bottom:547.689000px;}
.y7_c01241{bottom:565.621500px;}
.y6_c01241{bottom:583.554000px;}
.y5_c01241{bottom:610.633500px;}
.y4_c01241{bottom:637.714500px;}
.y3_c01241{bottom:664.794000px;}
.y2_c01241{bottom:691.873500px;}
.y1_c01241{bottom:734.407500px;}
.h5_c01241{height:35.190766px;}
.h6_c01241{height:36.007158px;}
.h3_c01241{height:40.511979px;}
.h4_c01241{height:52.332837px;}
.h2_c01241{height:58.337477px;}
.h0_c01241{height:1262.835000px;}
.h1_c01241{height:1263.000000px;}
.w0_c01241{width:892.920000px;}
.w1_c01241{width:893.250000px;}
.x0_c01241{left:0.000000px;}
.x1_c01241{left:127.558500px;}
.x2_c01241{left:137.122500px;}
.x3_c01241{left:143.770500px;}
.x4_c01241{left:435.249000px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.ls3_c01241{letter-spacing:0.000000pt;}
.ls0_c01241{letter-spacing:0.078221pt;}
.ls2_c01241{letter-spacing:0.087539pt;}
.ls1_c01241{letter-spacing:0.092873pt;}
.wsc_c01241{word-spacing:-29.967501pt;}
.ws2_c01241{word-spacing:-23.622682pt;}
.wse_c01241{word-spacing:-23.544461pt;}
.ws9_c01241{word-spacing:-19.158506pt;}
.ws8_c01241{word-spacing:-19.128192pt;}
.ws5_c01241{word-spacing:-16.684034pt;}
.ws7_c01241{word-spacing:-15.674491pt;}
.ws4_c01241{word-spacing:-13.283467pt;}
.wsa_c01241{word-spacing:-12.539593pt;}
.wsb_c01241{word-spacing:-10.733041pt;}
.ws1_c01241{word-spacing:-8.878599pt;}
.ws3_c01241{word-spacing:-8.877777pt;}
.ws6_c01241{word-spacing:-6.832128pt;}
.ws12_c01241{word-spacing:0.000000pt;}
.wsf_c01241{word-spacing:0.039110pt;}
.ws15_c01241{word-spacing:0.050460pt;}
.ws13_c01241{word-spacing:0.065111pt;}
.ws14_c01241{word-spacing:0.074430pt;}
.wsd_c01241{word-spacing:0.156442pt;}
.ws16_c01241{word-spacing:0.180412pt;}
.ws10_c01241{word-spacing:0.189730pt;}
.ws11_c01241{word-spacing:0.195063pt;}
.ws0_c01241{word-spacing:38.256533pt;}
._1_c01241{margin-left:-5.661967pt;}
._4_c01241{margin-left:-3.400567pt;}
._0_c01241{margin-left:-1.377235pt;}
._5_c01241{width:0.893988pt;}
._2_c01241{width:17.720725pt;}
._3_c01241{width:35.652825pt;}
._7_c01241{width:47.362694pt;}
._6_c01241{width:70.985376pt;}
._8_c01241{width:118.624363pt;}
.fs2_c01241{font-size:39.110400pt;}
.fs1_c01241{font-size:53.133867pt;}
.fs0_c01241{font-size:76.513067pt;}
.y0_c01241{bottom:0.000000pt;}
.y20_c01241{bottom:39.333333pt;}
.y1f_c01241{bottom:77.317333pt;}
.y1e_c01241{bottom:91.929333pt;}
.y1d_c01241{bottom:106.541333pt;}
.y1c_c01241{bottom:121.153333pt;}
.y1b_c01241{bottom:135.765333pt;}
.y1a_c01241{bottom:150.377333pt;}
.y19_c01241{bottom:164.989333pt;}
.y18_c01241{bottom:179.601333pt;}
.y17_c01241{bottom:194.213333pt;}
.y16_c01241{bottom:208.824000pt;}
.y15_c01241{bottom:223.436000pt;}
.y14_c01241{bottom:238.048000pt;}
.y13_c01241{bottom:252.660000pt;}
.y12_c01241{bottom:267.272000pt;}
.y11_c01241{bottom:281.884000pt;}
.y10_c01241{bottom:311.108000pt;}
.yf_c01241{bottom:325.720000pt;}
.ye_c01241{bottom:369.554667pt;}
.yd_c01241{bottom:384.166667pt;}
.yc_c01241{bottom:398.446667pt;}
.yb_c01241{bottom:439.013333pt;}
.ya_c01241{bottom:454.953333pt;}
.y9_c01241{bottom:470.894667pt;}
.y8_c01241{bottom:486.834667pt;}
.y7_c01241{bottom:502.774667pt;}
.y6_c01241{bottom:518.714667pt;}
.y5_c01241{bottom:542.785333pt;}
.y4_c01241{bottom:566.857333pt;}
.y3_c01241{bottom:590.928000pt;}
.y2_c01241{bottom:614.998667pt;}
.y1_c01241{bottom:652.806667pt;}
.h5_c01241{height:31.280681pt;}
.h6_c01241{height:32.006363pt;}
.h3_c01241{height:36.010648pt;}
.h4_c01241{height:46.518078pt;}
.h2_c01241{height:51.855535pt;}
.h0_c01241{height:1122.520000pt;}
.h1_c01241{height:1122.666667pt;}
.w0_c01241{width:793.706667pt;}
.w1_c01241{width:794.000000pt;}
.x0_c01241{left:0.000000pt;}
.x1_c01241{left:113.385333pt;}
.x2_c01241{left:121.886667pt;}
.x3_c01241{left:127.796000pt;}
.x4_c01241{left:386.888000pt;}
}





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

.ir_c01242:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_62ba0331c2f1effc8117effa.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01242;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01242;src:url('chunks/assets/font_d9ce24fdb86e466a42780cba.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01242;src:url('chunks/assets/font_549e647df49d03387d7cc683.woff2')format("woff");}.ff4_c01242{font-family:ff4_c01242;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01242;src:url('chunks/assets/font_c077120d026e60039c339ef2.woff2')format("woff");}.ff5_c01242{font-family:ff5_c01242;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01242{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01242{vertical-align:0.000000px;}
.ls4_c01242{letter-spacing:0.000000px;}
.ls0_c01242{letter-spacing:0.087998px;}
.ls2_c01242{letter-spacing:0.098482px;}
.ls3_c01242{letter-spacing:0.104482px;}
.ls1_c01242{letter-spacing:26.690482px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01242{word-spacing:-26.575517px;}
.ws4_c01242{word-spacing:-26.487518px;}
.wse_c01242{word-spacing:-21.553319px;}
.wsd_c01242{word-spacing:-21.519216px;}
.wsc_c01242{word-spacing:-19.247743px;}
.wsa_c01242{word-spacing:-18.769538px;}
.ws9_c01242{word-spacing:-14.943900px;}
.wsf_c01242{word-spacing:-14.107042px;}
.ws10_c01242{word-spacing:-12.074671px;}
.wsb_c01242{word-spacing:-10.230144px;}
.ws7_c01242{word-spacing:-9.988424px;}
.ws8_c01242{word-spacing:-9.987499px;}
.ws3_c01242{word-spacing:0.000000px;}
.ws0_c01242{word-spacing:0.043999px;}
.ws5_c01242{word-spacing:0.213446px;}
.ws1_c01242{word-spacing:0.219446px;}
.ws6_c01242{word-spacing:43.038600px;}
._3_c01242{margin-left:-6.369713px;}
._2_c01242{margin-left:-1.549390px;}
._1_c01242{width:1.063690px;}
._4_c01242{width:19.935816px;}
._5_c01242{width:40.109428px;}
._0_c01242{width:106.786058px;}
.fc5_c01242{color:rgb(79,153,5);}
.fc4_c01242{color:rgb(143,89,3);}
.fc3_c01242{color:rgb(0,0,0);}
.fc6_c01242{color:rgb(6,69,173);}
.fc2_c01242{color:rgb(207,92,0);}
.fc1_c01242{color:rgb(0,0,207);}
.fc0_c01242{color:rgb(33,74,135);}
.fs0_c01242{font-size:43.999200px;}
.fs2_c01242{font-size:59.775600px;}
.fs1_c01242{font-size:86.077200px;}
.y0_c01242{bottom:0.000000px;}
.y20_c01242{bottom:44.250000px;}
.y1f_c01242{bottom:82.051500px;}
.y1e_c01242{bottom:99.984000px;}
.y1d_c01242{bottom:117.916500px;}
.y1c_c01242{bottom:135.849000px;}
.y1b_c01242{bottom:162.501000px;}
.y1a_c01242{bottom:189.151500px;}
.y19_c01242{bottom:215.802000px;}
.y18_c01242{bottom:242.454000px;}
.y17_c01242{bottom:284.478000px;}
.y16_c01242{bottom:748.903500px;}
.y15_c01242{bottom:765.342000px;}
.y14_c01242{bottom:781.780500px;}
.y13_c01242{bottom:798.219000px;}
.y12_c01242{bottom:814.657500px;}
.y11_c01242{bottom:831.096000px;}
.y10_c01242{bottom:847.534500px;}
.yf_c01242{bottom:863.973000px;}
.ye_c01242{bottom:880.411500px;}
.yd_c01242{bottom:896.848500px;}
.yc_c01242{bottom:913.287000px;}
.yb_c01242{bottom:946.164000px;}
.ya_c01242{bottom:962.602500px;}
.y9_c01242{bottom:979.041000px;}
.y8_c01242{bottom:1011.918000px;}
.y7_c01242{bottom:1028.356500px;}
.y6_c01242{bottom:1044.795000px;}
.y5_c01242{bottom:1061.232000px;}
.y4_c01242{bottom:1077.670500px;}
.y3_c01242{bottom:1094.109000px;}
.y2_c01242{bottom:1110.547500px;}
.y1_c01242{bottom:1159.863000px;}
.h3_c01242{height:35.190766px;}
.h2_c01242{height:36.007158px;}
.h5_c01242{height:40.511979px;}
.h6_c01242{height:52.332837px;}
.h4_c01242{height:58.337477px;}
.h0_c01242{height:1262.835000px;}
.h1_c01242{height:1263.000000px;}
.w0_c01242{width:892.920000px;}
.w1_c01242{width:893.250000px;}
.x0_c01242{left:0.000000px;}
.x4_c01242{left:127.558500px;}
.x2_c01242{left:137.122500px;}
.x1_c01242{left:143.770500px;}
.x3_c01242{left:177.007500px;}
.x5_c01242{left:435.249000px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls4_c01242{letter-spacing:0.000000pt;}
.ls0_c01242{letter-spacing:0.078221pt;}
.ls2_c01242{letter-spacing:0.087539pt;}
.ls3_c01242{letter-spacing:0.092873pt;}
.ls1_c01242{letter-spacing:23.724873pt;}
.ws2_c01242{word-spacing:-23.622682pt;}
.ws4_c01242{word-spacing:-23.544461pt;}
.wse_c01242{word-spacing:-19.158506pt;}
.wsd_c01242{word-spacing:-19.128192pt;}
.wsc_c01242{word-spacing:-17.109105pt;}
.wsa_c01242{word-spacing:-16.684034pt;}
.ws9_c01242{word-spacing:-13.283467pt;}
.wsf_c01242{word-spacing:-12.539593pt;}
.ws10_c01242{word-spacing:-10.733041pt;}
.wsb_c01242{word-spacing:-9.093461pt;}
.ws7_c01242{word-spacing:-8.878599pt;}
.ws8_c01242{word-spacing:-8.877777pt;}
.ws3_c01242{word-spacing:0.000000pt;}
.ws0_c01242{word-spacing:0.039110pt;}
.ws5_c01242{word-spacing:0.189730pt;}
.ws1_c01242{word-spacing:0.195063pt;}
.ws6_c01242{word-spacing:38.256533pt;}
._3_c01242{margin-left:-5.661967pt;}
._2_c01242{margin-left:-1.377235pt;}
._1_c01242{width:0.945502pt;}
._4_c01242{width:17.720725pt;}
._5_c01242{width:35.652825pt;}
._0_c01242{width:94.920941pt;}
.fs0_c01242{font-size:39.110400pt;}
.fs2_c01242{font-size:53.133867pt;}
.fs1_c01242{font-size:76.513067pt;}
.y0_c01242{bottom:0.000000pt;}
.y20_c01242{bottom:39.333333pt;}
.y1f_c01242{bottom:72.934667pt;}
.y1e_c01242{bottom:88.874667pt;}
.y1d_c01242{bottom:104.814667pt;}
.y1c_c01242{bottom:120.754667pt;}
.y1b_c01242{bottom:144.445333pt;}
.y1a_c01242{bottom:168.134667pt;}
.y19_c01242{bottom:191.824000pt;}
.y18_c01242{bottom:215.514667pt;}
.y17_c01242{bottom:252.869333pt;}
.y16_c01242{bottom:665.692000pt;}
.y15_c01242{bottom:680.304000pt;}
.y14_c01242{bottom:694.916000pt;}
.y13_c01242{bottom:709.528000pt;}
.y12_c01242{bottom:724.140000pt;}
.y11_c01242{bottom:738.752000pt;}
.y10_c01242{bottom:753.364000pt;}
.yf_c01242{bottom:767.976000pt;}
.ye_c01242{bottom:782.588000pt;}
.yd_c01242{bottom:797.198667pt;}
.yc_c01242{bottom:811.810667pt;}
.yb_c01242{bottom:841.034667pt;}
.ya_c01242{bottom:855.646667pt;}
.y9_c01242{bottom:870.258667pt;}
.y8_c01242{bottom:899.482667pt;}
.y7_c01242{bottom:914.094667pt;}
.y6_c01242{bottom:928.706667pt;}
.y5_c01242{bottom:943.317333pt;}
.y4_c01242{bottom:957.929333pt;}
.y3_c01242{bottom:972.541333pt;}
.y2_c01242{bottom:987.153333pt;}
.y1_c01242{bottom:1030.989333pt;}
.h3_c01242{height:31.280681pt;}
.h2_c01242{height:32.006363pt;}
.h5_c01242{height:36.010648pt;}
.h6_c01242{height:46.518078pt;}
.h4_c01242{height:51.855535pt;}
.h0_c01242{height:1122.520000pt;}
.h1_c01242{height:1122.666667pt;}
.w0_c01242{width:793.706667pt;}
.w1_c01242{width:794.000000pt;}
.x0_c01242{left:0.000000pt;}
.x4_c01242{left:113.385333pt;}
.x2_c01242{left:121.886667pt;}
.x1_c01242{left:127.796000pt;}
.x3_c01242{left:157.340000pt;}
.x5_c01242{left:386.888000pt;}
}





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

.ir_c01243:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_51aac675faa31a7210a8152c.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01243;src:url('chunks/assets/font_7c18e148a15924a45bca0e76.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01243;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01243;src:url('chunks/assets/font_a4395560036ffa712ef31131.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01243{vertical-align:0.000000px;}
.ls4_c01243{letter-spacing:0.000000px;}
.ls1_c01243{letter-spacing:0.087998px;}
.ls2_c01243{letter-spacing:0.098482px;}
.ls0_c01243{letter-spacing:0.104482px;}
.ls3_c01243{letter-spacing:26.690482px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01243{word-spacing:-33.713438px;}
.ws4_c01243{word-spacing:-26.575517px;}
.ws3_c01243{word-spacing:-26.487518px;}
.ws0_c01243{word-spacing:-18.769538px;}
.ws8_c01243{word-spacing:0.000000px;}
.ws5_c01243{word-spacing:0.043999px;}
.wsb_c01243{word-spacing:0.056767px;}
.ws9_c01243{word-spacing:0.073250px;}
.wsa_c01243{word-spacing:0.083734px;}
.ws2_c01243{word-spacing:0.175997px;}
.wsc_c01243{word-spacing:0.202963px;}
.ws6_c01243{word-spacing:0.213446px;}
.ws7_c01243{word-spacing:0.219446px;}
._0_c01243{margin-left:-3.825638px;}
._1_c01243{width:1.005737px;}
._3_c01243{width:53.283031px;}
._2_c01243{width:79.858548px;}
._4_c01243{width:133.452408px;}
.fc5_c01243{color:rgb(0,0,207);}
.fc4_c01243{color:rgb(79,153,5);}
.fc3_c01243{color:rgb(207,92,0);}
.fc2_c01243{color:rgb(33,74,135);}
.fc1_c01243{color:rgb(143,89,3);}
.fc0_c01243{color:rgb(0,0,0);}
.fs1_c01243{font-size:43.999200px;}
.fs0_c01243{font-size:59.775600px;}
.y0_c01243{bottom:0.000000px;}
.y2d_c01243{bottom:44.250000px;}
.y2c_c01243{bottom:96.919500px;}
.y2b_c01243{bottom:113.358000px;}
.y2a_c01243{bottom:129.796500px;}
.y29_c01243{bottom:146.235000px;}
.y28_c01243{bottom:162.673500px;}
.y27_c01243{bottom:179.112000px;}
.y26_c01243{bottom:195.550500px;}
.y25_c01243{bottom:211.989000px;}
.y24_c01243{bottom:228.427500px;}
.y23_c01243{bottom:244.866000px;}
.y22_c01243{bottom:261.304500px;}
.y21_c01243{bottom:294.180000px;}
.y20_c01243{bottom:310.618500px;}
.y1f_c01243{bottom:327.057000px;}
.y1e_c01243{bottom:359.934000px;}
.y1d_c01243{bottom:376.372500px;}
.y1c_c01243{bottom:392.811000px;}
.y1b_c01243{bottom:409.249500px;}
.y1a_c01243{bottom:425.688000px;}
.y19_c01243{bottom:442.125000px;}
.y18_c01243{bottom:458.563500px;}
.y17_c01243{bottom:507.879000px;}
.y16_c01243{bottom:524.317500px;}
.y15_c01243{bottom:540.756000px;}
.y14_c01243{bottom:557.194500px;}
.y13_c01243{bottom:573.633000px;}
.y12_c01243{bottom:590.071500px;}
.y11_c01243{bottom:606.508500px;}
.y10_c01243{bottom:622.947000px;}
.yf_c01243{bottom:639.385500px;}
.ye_c01243{bottom:655.824000px;}
.yd_c01243{bottom:672.262500px;}
.yc_c01243{bottom:688.701000px;}
.yb_c01243{bottom:705.139500px;}
.ya_c01243{bottom:721.578000px;}
.y9_c01243{bottom:738.016500px;}
.y8_c01243{bottom:754.455000px;}
.y7_c01243{bottom:787.330500px;}
.y6_c01243{bottom:803.769000px;}
.y5_c01243{bottom:853.084500px;}
.y4_c01243{bottom:869.523000px;}
.y3_c01243{bottom:885.588000px;}
.y2_c01243{bottom:1141.930500px;}
.y1_c01243{bottom:1159.863000px;}
.h3_c01243{height:35.190766px;}
.h4_c01243{height:36.007158px;}
.h2_c01243{height:52.332837px;}
.h0_c01243{height:1262.835000px;}
.h1_c01243{height:1263.000000px;}
.w0_c01243{width:892.920000px;}
.w1_c01243{width:893.250000px;}
.x0_c01243{left:0.000000px;}
.x1_c01243{left:127.558500px;}
.x2_c01243{left:137.122500px;}
.x3_c01243{left:143.770500px;}
.x4_c01243{left:177.007500px;}
.x5_c01243{left:435.249000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls4_c01243{letter-spacing:0.000000pt;}
.ls1_c01243{letter-spacing:0.078221pt;}
.ls2_c01243{letter-spacing:0.087539pt;}
.ls0_c01243{letter-spacing:0.092873pt;}
.ls3_c01243{letter-spacing:23.724873pt;}
.ws1_c01243{word-spacing:-29.967501pt;}
.ws4_c01243{word-spacing:-23.622682pt;}
.ws3_c01243{word-spacing:-23.544461pt;}
.ws0_c01243{word-spacing:-16.684034pt;}
.ws8_c01243{word-spacing:0.000000pt;}
.ws5_c01243{word-spacing:0.039110pt;}
.wsb_c01243{word-spacing:0.050460pt;}
.ws9_c01243{word-spacing:0.065111pt;}
.wsa_c01243{word-spacing:0.074430pt;}
.ws2_c01243{word-spacing:0.156442pt;}
.wsc_c01243{word-spacing:0.180412pt;}
.ws6_c01243{word-spacing:0.189730pt;}
.ws7_c01243{word-spacing:0.195063pt;}
._0_c01243{margin-left:-3.400567pt;}
._1_c01243{width:0.893988pt;}
._3_c01243{width:47.362694pt;}
._2_c01243{width:70.985376pt;}
._4_c01243{width:118.624363pt;}
.fs1_c01243{font-size:39.110400pt;}
.fs0_c01243{font-size:53.133867pt;}
.y0_c01243{bottom:0.000000pt;}
.y2d_c01243{bottom:39.333333pt;}
.y2c_c01243{bottom:86.150667pt;}
.y2b_c01243{bottom:100.762667pt;}
.y2a_c01243{bottom:115.374667pt;}
.y29_c01243{bottom:129.986667pt;}
.y28_c01243{bottom:144.598667pt;}
.y27_c01243{bottom:159.210667pt;}
.y26_c01243{bottom:173.822667pt;}
.y25_c01243{bottom:188.434667pt;}
.y24_c01243{bottom:203.046667pt;}
.y23_c01243{bottom:217.658667pt;}
.y22_c01243{bottom:232.270667pt;}
.y21_c01243{bottom:261.493333pt;}
.y20_c01243{bottom:276.105333pt;}
.y1f_c01243{bottom:290.717333pt;}
.y1e_c01243{bottom:319.941333pt;}
.y1d_c01243{bottom:334.553333pt;}
.y1c_c01243{bottom:349.165333pt;}
.y1b_c01243{bottom:363.777333pt;}
.y1a_c01243{bottom:378.389333pt;}
.y19_c01243{bottom:393.000000pt;}
.y18_c01243{bottom:407.612000pt;}
.y17_c01243{bottom:451.448000pt;}
.y16_c01243{bottom:466.060000pt;}
.y15_c01243{bottom:480.672000pt;}
.y14_c01243{bottom:495.284000pt;}
.y13_c01243{bottom:509.896000pt;}
.y12_c01243{bottom:524.508000pt;}
.y11_c01243{bottom:539.118667pt;}
.y10_c01243{bottom:553.730667pt;}
.yf_c01243{bottom:568.342667pt;}
.ye_c01243{bottom:582.954667pt;}
.yd_c01243{bottom:597.566667pt;}
.yc_c01243{bottom:612.178667pt;}
.yb_c01243{bottom:626.790667pt;}
.ya_c01243{bottom:641.402667pt;}
.y9_c01243{bottom:656.014667pt;}
.y8_c01243{bottom:670.626667pt;}
.y7_c01243{bottom:699.849333pt;}
.y6_c01243{bottom:714.461333pt;}
.y5_c01243{bottom:758.297333pt;}
.y4_c01243{bottom:772.909333pt;}
.y3_c01243{bottom:787.189333pt;}
.y2_c01243{bottom:1015.049333pt;}
.y1_c01243{bottom:1030.989333pt;}
.h3_c01243{height:31.280681pt;}
.h4_c01243{height:32.006363pt;}
.h2_c01243{height:46.518078pt;}
.h0_c01243{height:1122.520000pt;}
.h1_c01243{height:1122.666667pt;}
.w0_c01243{width:793.706667pt;}
.w1_c01243{width:794.000000pt;}
.x0_c01243{left:0.000000pt;}
.x1_c01243{left:113.385333pt;}
.x2_c01243{left:121.886667pt;}
.x3_c01243{left:127.796000pt;}
.x4_c01243{left:157.340000pt;}
.x5_c01243{left:386.888000pt;}
}





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




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

.ir_c01245:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01245;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01245;src:url('chunks/assets/font_53f171f9ff86d8c33396add4.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01245;src:url('chunks/assets/font_90fe31361ad51ba671226998.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01245{vertical-align:0.000000px;}
.ls4_c01245{letter-spacing:0.000000px;}
.ls1_c01245{letter-spacing:0.087998px;}
.ls2_c01245{letter-spacing:0.098482px;}
.ls0_c01245{letter-spacing:0.104482px;}
.ls3_c01245{letter-spacing:26.690482px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01245{word-spacing:-26.575517px;}
.ws0_c01245{word-spacing:-26.487518px;}
.ws2_c01245{word-spacing:0.000000px;}
.ws7_c01245{word-spacing:0.036900px;}
.ws4_c01245{word-spacing:0.043999px;}
.ws6_c01245{word-spacing:0.053933px;}
.wsa_c01245{word-spacing:0.064416px;}
.ws8_c01245{word-spacing:0.070416px;}
.wsb_c01245{word-spacing:0.100217px;}
.ws5_c01245{word-spacing:0.175997px;}
.ws3_c01245{word-spacing:0.213446px;}
.ws9_c01245{word-spacing:0.219446px;}
._0_c01245{width:1.031604px;}
._1_c01245{width:53.547026px;}
.fc5_c01245{color:rgb(0,0,207);}
.fc4_c01245{color:rgb(143,89,3);}
.fc3_c01245{color:rgb(79,153,5);}
.fc2_c01245{color:rgb(207,92,0);}
.fc1_c01245{color:rgb(0,0,0);}
.fc0_c01245{color:rgb(33,74,135);}
.fs0_c01245{font-size:43.999200px;}
.fs1_c01245{font-size:59.775600px;}
.y0_c01245{bottom:0.000000px;}
.y39_c01245{bottom:44.250000px;}
.y38_c01245{bottom:91.369500px;}
.y37_c01245{bottom:107.808000px;}
.y36_c01245{bottom:124.246500px;}
.y35_c01245{bottom:140.685000px;}
.y34_c01245{bottom:157.123500px;}
.y33_c01245{bottom:173.562000px;}
.y32_c01245{bottom:190.000500px;}
.y31_c01245{bottom:206.437500px;}
.y30_c01245{bottom:222.876000px;}
.y2f_c01245{bottom:239.314500px;}
.y2e_c01245{bottom:255.753000px;}
.y2d_c01245{bottom:272.191500px;}
.y2c_c01245{bottom:288.630000px;}
.y2b_c01245{bottom:305.068500px;}
.y2a_c01245{bottom:321.507000px;}
.y29_c01245{bottom:337.945500px;}
.y28_c01245{bottom:354.384000px;}
.y27_c01245{bottom:370.822500px;}
.y26_c01245{bottom:387.259500px;}
.y25_c01245{bottom:403.698000px;}
.y24_c01245{bottom:436.575000px;}
.y23_c01245{bottom:453.013500px;}
.y22_c01245{bottom:469.452000px;}
.y21_c01245{bottom:485.890500px;}
.y20_c01245{bottom:502.329000px;}
.y1f_c01245{bottom:518.767500px;}
.y1e_c01245{bottom:551.643000px;}
.y1d_c01245{bottom:568.081500px;}
.y1c_c01245{bottom:584.520000px;}
.y1b_c01245{bottom:600.958500px;}
.y1a_c01245{bottom:633.835500px;}
.y19_c01245{bottom:650.274000px;}
.y18_c01245{bottom:666.712500px;}
.y17_c01245{bottom:683.151000px;}
.y16_c01245{bottom:716.028000px;}
.y15_c01245{bottom:732.465000px;}
.y14_c01245{bottom:748.903500px;}
.y13_c01245{bottom:765.342000px;}
.y12_c01245{bottom:781.780500px;}
.y11_c01245{bottom:798.219000px;}
.y10_c01245{bottom:814.657500px;}
.yf_c01245{bottom:847.534500px;}
.ye_c01245{bottom:863.973000px;}
.yd_c01245{bottom:880.411500px;}
.yc_c01245{bottom:913.287000px;}
.yb_c01245{bottom:929.725500px;}
.ya_c01245{bottom:979.041000px;}
.y9_c01245{bottom:995.479500px;}
.y8_c01245{bottom:1028.356500px;}
.y7_c01245{bottom:1044.795000px;}
.y6_c01245{bottom:1061.232000px;}
.y5_c01245{bottom:1077.670500px;}
.y4_c01245{bottom:1110.547500px;}
.y3_c01245{bottom:1126.986000px;}
.y2_c01245{bottom:1143.424500px;}
.y1_c01245{bottom:1159.863000px;}
.h3_c01245{height:35.190766px;}
.h2_c01245{height:36.007158px;}
.h4_c01245{height:52.332837px;}
.h0_c01245{height:1262.835000px;}
.h1_c01245{height:1263.000000px;}
.w0_c01245{width:892.920000px;}
.w1_c01245{width:893.250000px;}
.x0_c01245{left:0.000000px;}
.x1_c01245{left:137.122500px;}
.x2_c01245{left:143.770500px;}
.x5_c01245{left:170.359500px;}
.x4_c01245{left:177.007500px;}
.x3_c01245{left:203.596500px;}
.x6_c01245{left:210.243000px;}
.x7_c01245{left:230.185500px;}
.x8_c01245{left:256.774500px;}
.x9_c01245{left:435.249000px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls4_c01245{letter-spacing:0.000000pt;}
.ls1_c01245{letter-spacing:0.078221pt;}
.ls2_c01245{letter-spacing:0.087539pt;}
.ls0_c01245{letter-spacing:0.092873pt;}
.ls3_c01245{letter-spacing:23.724873pt;}
.ws1_c01245{word-spacing:-23.622682pt;}
.ws0_c01245{word-spacing:-23.544461pt;}
.ws2_c01245{word-spacing:0.000000pt;}
.ws7_c01245{word-spacing:0.032800pt;}
.ws4_c01245{word-spacing:0.039110pt;}
.ws6_c01245{word-spacing:0.047940pt;}
.wsa_c01245{word-spacing:0.057259pt;}
.ws8_c01245{word-spacing:0.062592pt;}
.wsb_c01245{word-spacing:0.089082pt;}
.ws5_c01245{word-spacing:0.156442pt;}
.ws3_c01245{word-spacing:0.189730pt;}
.ws9_c01245{word-spacing:0.195063pt;}
._0_c01245{width:0.916981pt;}
._1_c01245{width:47.597357pt;}
.fs0_c01245{font-size:39.110400pt;}
.fs1_c01245{font-size:53.133867pt;}
.y0_c01245{bottom:0.000000pt;}
.y39_c01245{bottom:39.333333pt;}
.y38_c01245{bottom:81.217333pt;}
.y37_c01245{bottom:95.829333pt;}
.y36_c01245{bottom:110.441333pt;}
.y35_c01245{bottom:125.053333pt;}
.y34_c01245{bottom:139.665333pt;}
.y33_c01245{bottom:154.277333pt;}
.y32_c01245{bottom:168.889333pt;}
.y31_c01245{bottom:183.500000pt;}
.y30_c01245{bottom:198.112000pt;}
.y2f_c01245{bottom:212.724000pt;}
.y2e_c01245{bottom:227.336000pt;}
.y2d_c01245{bottom:241.948000pt;}
.y2c_c01245{bottom:256.560000pt;}
.y2b_c01245{bottom:271.172000pt;}
.y2a_c01245{bottom:285.784000pt;}
.y29_c01245{bottom:300.396000pt;}
.y28_c01245{bottom:315.008000pt;}
.y27_c01245{bottom:329.620000pt;}
.y26_c01245{bottom:344.230667pt;}
.y25_c01245{bottom:358.842667pt;}
.y24_c01245{bottom:388.066667pt;}
.y23_c01245{bottom:402.678667pt;}
.y22_c01245{bottom:417.290667pt;}
.y21_c01245{bottom:431.902667pt;}
.y20_c01245{bottom:446.514667pt;}
.y1f_c01245{bottom:461.126667pt;}
.y1e_c01245{bottom:490.349333pt;}
.y1d_c01245{bottom:504.961333pt;}
.y1c_c01245{bottom:519.573333pt;}
.y1b_c01245{bottom:534.185333pt;}
.y1a_c01245{bottom:563.409333pt;}
.y19_c01245{bottom:578.021333pt;}
.y18_c01245{bottom:592.633333pt;}
.y17_c01245{bottom:607.245333pt;}
.y16_c01245{bottom:636.469333pt;}
.y15_c01245{bottom:651.080000pt;}
.y14_c01245{bottom:665.692000pt;}
.y13_c01245{bottom:680.304000pt;}
.y12_c01245{bottom:694.916000pt;}
.y11_c01245{bottom:709.528000pt;}
.y10_c01245{bottom:724.140000pt;}
.yf_c01245{bottom:753.364000pt;}
.ye_c01245{bottom:767.976000pt;}
.yd_c01245{bottom:782.588000pt;}
.yc_c01245{bottom:811.810667pt;}
.yb_c01245{bottom:826.422667pt;}
.ya_c01245{bottom:870.258667pt;}
.y9_c01245{bottom:884.870667pt;}
.y8_c01245{bottom:914.094667pt;}
.y7_c01245{bottom:928.706667pt;}
.y6_c01245{bottom:943.317333pt;}
.y5_c01245{bottom:957.929333pt;}
.y4_c01245{bottom:987.153333pt;}
.y3_c01245{bottom:1001.765333pt;}
.y2_c01245{bottom:1016.377333pt;}
.y1_c01245{bottom:1030.989333pt;}
.h3_c01245{height:31.280681pt;}
.h2_c01245{height:32.006363pt;}
.h4_c01245{height:46.518078pt;}
.h0_c01245{height:1122.520000pt;}
.h1_c01245{height:1122.666667pt;}
.w0_c01245{width:793.706667pt;}
.w1_c01245{width:794.000000pt;}
.x0_c01245{left:0.000000pt;}
.x1_c01245{left:121.886667pt;}
.x2_c01245{left:127.796000pt;}
.x5_c01245{left:151.430667pt;}
.x4_c01245{left:157.340000pt;}
.x3_c01245{left:180.974667pt;}
.x6_c01245{left:186.882667pt;}
.x7_c01245{left:204.609333pt;}
.x8_c01245{left:228.244000pt;}
.x9_c01245{left:386.888000pt;}
}





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

.ir_c01246:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_a81735f57cdb032098521908.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01246;src:url('chunks/assets/font_5f9b4db38e0ff356affda4fb.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01246;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01246;src:url('chunks/assets/font_852ed5ff81d249ea8171f41f.woff2')format("woff");}.ff4_c01246{font-family:ff4_c01246;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls4_c01246{letter-spacing:0.000000px;}
.ls0_c01246{letter-spacing:0.087998px;}
.ls1_c01246{letter-spacing:0.098482px;}
.ls3_c01246{letter-spacing:0.104482px;}
.ls2_c01246{letter-spacing:0.140482px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:-26.575517px;}
.ws2_c01246{word-spacing:-26.487518px;}
.ws4_c01246{word-spacing:0.000000px;}
.ws3_c01246{word-spacing:0.043999px;}
.ws1_c01246{word-spacing:0.053933px;}
.ws5_c01246{word-spacing:0.056767px;}
.ws6_c01246{word-spacing:0.213446px;}
._0_c01246{width:1.028438px;}
.fc5_c01246{color:rgb(0,0,207);}
.fc4_c01246{color:rgb(79,153,5);}
.fc3_c01246{color:rgb(33,74,135);}
.fc2_c01246{color:rgb(207,92,0);}
.fc1_c01246{color:rgb(143,89,3);}
.fc0_c01246{color:rgb(0,0,0);}
.fs0_c01246{font-size:43.999200px;}
.fs1_c01246{font-size:59.775600px;}
.y0_c01246{bottom:0.000000px;}
.y2b_c01246{bottom:44.250000px;}
.y2a_c01246{bottom:436.575000px;}
.y29_c01246{bottom:453.013500px;}
.y28_c01246{bottom:469.452000px;}
.y27_c01246{bottom:485.890500px;}
.y26_c01246{bottom:502.329000px;}
.y25_c01246{bottom:518.767500px;}
.y24_c01246{bottom:535.206000px;}
.y23_c01246{bottom:551.643000px;}
.y22_c01246{bottom:568.081500px;}
.y21_c01246{bottom:584.520000px;}
.y20_c01246{bottom:600.958500px;}
.y1f_c01246{bottom:633.835500px;}
.y1e_c01246{bottom:650.274000px;}
.y1d_c01246{bottom:666.712500px;}
.y1c_c01246{bottom:699.589500px;}
.y1b_c01246{bottom:716.028000px;}
.y1a_c01246{bottom:732.465000px;}
.y19_c01246{bottom:748.903500px;}
.y18_c01246{bottom:765.342000px;}
.y17_c01246{bottom:781.780500px;}
.y16_c01246{bottom:798.219000px;}
.y15_c01246{bottom:814.657500px;}
.y14_c01246{bottom:831.096000px;}
.y13_c01246{bottom:847.534500px;}
.y12_c01246{bottom:863.973000px;}
.y11_c01246{bottom:880.411500px;}
.y10_c01246{bottom:896.848500px;}
.yf_c01246{bottom:913.287000px;}
.ye_c01246{bottom:929.725500px;}
.yd_c01246{bottom:946.164000px;}
.yc_c01246{bottom:962.602500px;}
.yb_c01246{bottom:979.041000px;}
.ya_c01246{bottom:995.479500px;}
.y9_c01246{bottom:1011.918000px;}
.y8_c01246{bottom:1028.356500px;}
.y7_c01246{bottom:1044.795000px;}
.y6_c01246{bottom:1061.232000px;}
.y5_c01246{bottom:1077.670500px;}
.y4_c01246{bottom:1094.109000px;}
.y3_c01246{bottom:1110.547500px;}
.y2_c01246{bottom:1143.424500px;}
.y1_c01246{bottom:1159.863000px;}
.h3_c01246{height:35.190766px;}
.h2_c01246{height:36.007158px;}
.h4_c01246{height:52.332837px;}
.h0_c01246{height:1262.835000px;}
.h1_c01246{height:1263.000000px;}
.w0_c01246{width:892.920000px;}
.w1_c01246{width:893.250000px;}
.x0_c01246{left:0.000000px;}
.x1_c01246{left:137.122500px;}
.x2_c01246{left:143.770500px;}
.x6_c01246{left:177.007500px;}
.x5_c01246{left:230.185500px;}
.x3_c01246{left:243.480000px;}
.x4_c01246{left:276.715500px;}
.x7_c01246{left:435.249000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls4_c01246{letter-spacing:0.000000pt;}
.ls0_c01246{letter-spacing:0.078221pt;}
.ls1_c01246{letter-spacing:0.087539pt;}
.ls3_c01246{letter-spacing:0.092873pt;}
.ls2_c01246{letter-spacing:0.124873pt;}
.ws0_c01246{word-spacing:-23.622682pt;}
.ws2_c01246{word-spacing:-23.544461pt;}
.ws4_c01246{word-spacing:0.000000pt;}
.ws3_c01246{word-spacing:0.039110pt;}
.ws1_c01246{word-spacing:0.047940pt;}
.ws5_c01246{word-spacing:0.050460pt;}
.ws6_c01246{word-spacing:0.189730pt;}
._0_c01246{width:0.914167pt;}
.fs0_c01246{font-size:39.110400pt;}
.fs1_c01246{font-size:53.133867pt;}
.y0_c01246{bottom:0.000000pt;}
.y2b_c01246{bottom:39.333333pt;}
.y2a_c01246{bottom:388.066667pt;}
.y29_c01246{bottom:402.678667pt;}
.y28_c01246{bottom:417.290667pt;}
.y27_c01246{bottom:431.902667pt;}
.y26_c01246{bottom:446.514667pt;}
.y25_c01246{bottom:461.126667pt;}
.y24_c01246{bottom:475.738667pt;}
.y23_c01246{bottom:490.349333pt;}
.y22_c01246{bottom:504.961333pt;}
.y21_c01246{bottom:519.573333pt;}
.y20_c01246{bottom:534.185333pt;}
.y1f_c01246{bottom:563.409333pt;}
.y1e_c01246{bottom:578.021333pt;}
.y1d_c01246{bottom:592.633333pt;}
.y1c_c01246{bottom:621.857333pt;}
.y1b_c01246{bottom:636.469333pt;}
.y1a_c01246{bottom:651.080000pt;}
.y19_c01246{bottom:665.692000pt;}
.y18_c01246{bottom:680.304000pt;}
.y17_c01246{bottom:694.916000pt;}
.y16_c01246{bottom:709.528000pt;}
.y15_c01246{bottom:724.140000pt;}
.y14_c01246{bottom:738.752000pt;}
.y13_c01246{bottom:753.364000pt;}
.y12_c01246{bottom:767.976000pt;}
.y11_c01246{bottom:782.588000pt;}
.y10_c01246{bottom:797.198667pt;}
.yf_c01246{bottom:811.810667pt;}
.ye_c01246{bottom:826.422667pt;}
.yd_c01246{bottom:841.034667pt;}
.yc_c01246{bottom:855.646667pt;}
.yb_c01246{bottom:870.258667pt;}
.ya_c01246{bottom:884.870667pt;}
.y9_c01246{bottom:899.482667pt;}
.y8_c01246{bottom:914.094667pt;}
.y7_c01246{bottom:928.706667pt;}
.y6_c01246{bottom:943.317333pt;}
.y5_c01246{bottom:957.929333pt;}
.y4_c01246{bottom:972.541333pt;}
.y3_c01246{bottom:987.153333pt;}
.y2_c01246{bottom:1016.377333pt;}
.y1_c01246{bottom:1030.989333pt;}
.h3_c01246{height:31.280681pt;}
.h2_c01246{height:32.006363pt;}
.h4_c01246{height:46.518078pt;}
.h0_c01246{height:1122.520000pt;}
.h1_c01246{height:1122.666667pt;}
.w0_c01246{width:793.706667pt;}
.w1_c01246{width:794.000000pt;}
.x0_c01246{left:0.000000pt;}
.x1_c01246{left:121.886667pt;}
.x2_c01246{left:127.796000pt;}
.x6_c01246{left:157.340000pt;}
.x5_c01246{left:204.609333pt;}
.x3_c01246{left:216.426667pt;}
.x4_c01246{left:245.969333pt;}
.x7_c01246{left:386.888000pt;}
}





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

.ir_c01247:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_6d2d45260d19958af0fced9c.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01247;src:url('chunks/assets/font_37c7ed79371a59635b8d82f3.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01247;src:url('chunks/assets/font_59a435efe0f0c18c3dc53c8b.woff2')format("woff");}.ff3_c01247{font-family:ff3_c01247;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01247;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01247{font-family:ff4_c01247;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01247;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01247{font-family:ff5_c01247;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01247{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01247{vertical-align:0.000000px;}
.ls3_c01247{letter-spacing:0.000000px;}
.ls0_c01247{letter-spacing:0.087998px;}
.ls2_c01247{letter-spacing:0.098482px;}
.ls1_c01247{letter-spacing:0.104482px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01247{word-spacing:-33.713438px;}
.ws2_c01247{word-spacing:-26.575517px;}
.wse_c01247{word-spacing:-26.487518px;}
.ws9_c01247{word-spacing:-21.553319px;}
.ws8_c01247{word-spacing:-21.519216px;}
.ws5_c01247{word-spacing:-18.769538px;}
.ws7_c01247{word-spacing:-16.019861px;}
.ws4_c01247{word-spacing:-14.943900px;}
.wsa_c01247{word-spacing:-14.107042px;}
.wsb_c01247{word-spacing:-12.074671px;}
.ws1_c01247{word-spacing:-9.988424px;}
.ws3_c01247{word-spacing:-9.987499px;}
.ws6_c01247{word-spacing:-4.536144px;}
.ws12_c01247{word-spacing:0.000000px;}
.wsf_c01247{word-spacing:0.043999px;}
.ws15_c01247{word-spacing:0.056767px;}
.ws13_c01247{word-spacing:0.073250px;}
.ws14_c01247{word-spacing:0.083734px;}
.wsd_c01247{word-spacing:0.175997px;}
.ws16_c01247{word-spacing:0.202963px;}
.ws10_c01247{word-spacing:0.213446px;}
.ws11_c01247{word-spacing:0.219446px;}
.ws0_c01247{word-spacing:43.038600px;}
._1_c01247{margin-left:-6.369713px;}
._4_c01247{margin-left:-3.825638px;}
._0_c01247{margin-left:-1.549390px;}
._5_c01247{width:1.005737px;}
._2_c01247{width:19.935816px;}
._3_c01247{width:40.109428px;}
._7_c01247{width:53.283031px;}
._6_c01247{width:79.858548px;}
._8_c01247{width:133.452408px;}
.fc6_c01247{color:rgb(0,0,207);}
.fc5_c01247{color:rgb(79,153,5);}
.fc3_c01247{color:rgb(33,74,135);}
.fc2_c01247{color:rgb(143,89,3);}
.fc4_c01247{color:rgb(207,92,0);}
.fc1_c01247{color:rgb(6,69,173);}
.fc0_c01247{color:rgb(0,0,0);}
.fs2_c01247{font-size:43.999200px;}
.fs1_c01247{font-size:59.775600px;}
.fs0_c01247{font-size:86.077200px;}
.y0_c01247{bottom:0.000000px;}
.y20_c01247{bottom:44.250000px;}
.y1f_c01247{bottom:86.982000px;}
.y1e_c01247{bottom:103.420500px;}
.y1d_c01247{bottom:119.859000px;}
.y1c_c01247{bottom:136.297500px;}
.y1b_c01247{bottom:152.736000px;}
.y1a_c01247{bottom:169.174500px;}
.y19_c01247{bottom:185.613000px;}
.y18_c01247{bottom:202.051500px;}
.y17_c01247{bottom:218.490000px;}
.y16_c01247{bottom:234.927000px;}
.y15_c01247{bottom:251.365500px;}
.y14_c01247{bottom:267.804000px;}
.y13_c01247{bottom:284.242500px;}
.y12_c01247{bottom:300.681000px;}
.y11_c01247{bottom:317.119500px;}
.y10_c01247{bottom:349.996500px;}
.yf_c01247{bottom:366.435000px;}
.ye_c01247{bottom:415.749000px;}
.yd_c01247{bottom:432.187500px;}
.yc_c01247{bottom:448.252500px;}
.yb_c01247{bottom:493.890000px;}
.ya_c01247{bottom:511.822500px;}
.y9_c01247{bottom:529.756500px;}
.y8_c01247{bottom:547.689000px;}
.y7_c01247{bottom:565.621500px;}
.y6_c01247{bottom:583.554000px;}
.y5_c01247{bottom:610.633500px;}
.y4_c01247{bottom:637.714500px;}
.y3_c01247{bottom:664.794000px;}
.y2_c01247{bottom:691.873500px;}
.y1_c01247{bottom:734.407500px;}
.h5_c01247{height:35.190766px;}
.h6_c01247{height:36.007158px;}
.h3_c01247{height:40.511979px;}
.h4_c01247{height:52.332837px;}
.h2_c01247{height:58.337477px;}
.h0_c01247{height:1262.835000px;}
.h1_c01247{height:1263.000000px;}
.w0_c01247{width:892.920000px;}
.w1_c01247{width:893.250000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:127.558500px;}
.x2_c01247{left:137.122500px;}
.x3_c01247{left:143.770500px;}
.x4_c01247{left:435.249000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls3_c01247{letter-spacing:0.000000pt;}
.ls0_c01247{letter-spacing:0.078221pt;}
.ls2_c01247{letter-spacing:0.087539pt;}
.ls1_c01247{letter-spacing:0.092873pt;}
.wsc_c01247{word-spacing:-29.967501pt;}
.ws2_c01247{word-spacing:-23.622682pt;}
.wse_c01247{word-spacing:-23.544461pt;}
.ws9_c01247{word-spacing:-19.158506pt;}
.ws8_c01247{word-spacing:-19.128192pt;}
.ws5_c01247{word-spacing:-16.684034pt;}
.ws7_c01247{word-spacing:-14.239876pt;}
.ws4_c01247{word-spacing:-13.283467pt;}
.wsa_c01247{word-spacing:-12.539593pt;}
.wsb_c01247{word-spacing:-10.733041pt;}
.ws1_c01247{word-spacing:-8.878599pt;}
.ws3_c01247{word-spacing:-8.877777pt;}
.ws6_c01247{word-spacing:-4.032128pt;}
.ws12_c01247{word-spacing:0.000000pt;}
.wsf_c01247{word-spacing:0.039110pt;}
.ws15_c01247{word-spacing:0.050460pt;}
.ws13_c01247{word-spacing:0.065111pt;}
.ws14_c01247{word-spacing:0.074430pt;}
.wsd_c01247{word-spacing:0.156442pt;}
.ws16_c01247{word-spacing:0.180412pt;}
.ws10_c01247{word-spacing:0.189730pt;}
.ws11_c01247{word-spacing:0.195063pt;}
.ws0_c01247{word-spacing:38.256533pt;}
._1_c01247{margin-left:-5.661967pt;}
._4_c01247{margin-left:-3.400567pt;}
._0_c01247{margin-left:-1.377235pt;}
._5_c01247{width:0.893988pt;}
._2_c01247{width:17.720725pt;}
._3_c01247{width:35.652825pt;}
._7_c01247{width:47.362694pt;}
._6_c01247{width:70.985376pt;}
._8_c01247{width:118.624363pt;}
.fs2_c01247{font-size:39.110400pt;}
.fs1_c01247{font-size:53.133867pt;}
.fs0_c01247{font-size:76.513067pt;}
.y0_c01247{bottom:0.000000pt;}
.y20_c01247{bottom:39.333333pt;}
.y1f_c01247{bottom:77.317333pt;}
.y1e_c01247{bottom:91.929333pt;}
.y1d_c01247{bottom:106.541333pt;}
.y1c_c01247{bottom:121.153333pt;}
.y1b_c01247{bottom:135.765333pt;}
.y1a_c01247{bottom:150.377333pt;}
.y19_c01247{bottom:164.989333pt;}
.y18_c01247{bottom:179.601333pt;}
.y17_c01247{bottom:194.213333pt;}
.y16_c01247{bottom:208.824000pt;}
.y15_c01247{bottom:223.436000pt;}
.y14_c01247{bottom:238.048000pt;}
.y13_c01247{bottom:252.660000pt;}
.y12_c01247{bottom:267.272000pt;}
.y11_c01247{bottom:281.884000pt;}
.y10_c01247{bottom:311.108000pt;}
.yf_c01247{bottom:325.720000pt;}
.ye_c01247{bottom:369.554667pt;}
.yd_c01247{bottom:384.166667pt;}
.yc_c01247{bottom:398.446667pt;}
.yb_c01247{bottom:439.013333pt;}
.ya_c01247{bottom:454.953333pt;}
.y9_c01247{bottom:470.894667pt;}
.y8_c01247{bottom:486.834667pt;}
.y7_c01247{bottom:502.774667pt;}
.y6_c01247{bottom:518.714667pt;}
.y5_c01247{bottom:542.785333pt;}
.y4_c01247{bottom:566.857333pt;}
.y3_c01247{bottom:590.928000pt;}
.y2_c01247{bottom:614.998667pt;}
.y1_c01247{bottom:652.806667pt;}
.h5_c01247{height:31.280681pt;}
.h6_c01247{height:32.006363pt;}
.h3_c01247{height:36.010648pt;}
.h4_c01247{height:46.518078pt;}
.h2_c01247{height:51.855535pt;}
.h0_c01247{height:1122.520000pt;}
.h1_c01247{height:1122.666667pt;}
.w0_c01247{width:793.706667pt;}
.w1_c01247{width:794.000000pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:113.385333pt;}
.x2_c01247{left:121.886667pt;}
.x3_c01247{left:127.796000pt;}
.x4_c01247{left:386.888000pt;}
}





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

.ir_c01248:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_90a05f6144f40b7ebf8ba227.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01248;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01248;src:url('chunks/assets/font_9ffca79027cf8db861545d94.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01248;src:url('chunks/assets/font_9bf4aa0dacd974ecf61b3f88.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01248;src:url('chunks/assets/font_306a588f2985cd259db737d3.woff2')format("woff");}.ff5_c01248{font-family:ff5_c01248;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01248{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01248{vertical-align:0.000000px;}
.ls4_c01248{letter-spacing:0.000000px;}
.ls0_c01248{letter-spacing:0.087998px;}
.ls2_c01248{letter-spacing:0.098482px;}
.ls3_c01248{letter-spacing:0.104482px;}
.ls1_c01248{letter-spacing:26.690482px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01248{word-spacing:-26.575517px;}
.ws4_c01248{word-spacing:-26.487518px;}
.wse_c01248{word-spacing:-21.553319px;}
.wsd_c01248{word-spacing:-21.519216px;}
.wsa_c01248{word-spacing:-18.769538px;}
.wsc_c01248{word-spacing:-17.633802px;}
.ws9_c01248{word-spacing:-14.943900px;}
.wsf_c01248{word-spacing:-14.107042px;}
.ws10_c01248{word-spacing:-12.074671px;}
.ws7_c01248{word-spacing:-9.988424px;}
.ws8_c01248{word-spacing:-9.987499px;}
.wsb_c01248{word-spacing:-7.686144px;}
.ws3_c01248{word-spacing:0.000000px;}
.ws0_c01248{word-spacing:0.043999px;}
.ws5_c01248{word-spacing:0.213446px;}
.ws1_c01248{word-spacing:0.219446px;}
.ws6_c01248{word-spacing:43.038600px;}
._3_c01248{margin-left:-6.369713px;}
._2_c01248{margin-left:-1.549390px;}
._1_c01248{width:1.041538px;}
._4_c01248{width:19.935816px;}
._5_c01248{width:40.109428px;}
._0_c01248{width:53.547026px;}
.fc5_c01248{color:rgb(79,153,5);}
.fc4_c01248{color:rgb(143,89,3);}
.fc3_c01248{color:rgb(0,0,0);}
.fc6_c01248{color:rgb(6,69,173);}
.fc2_c01248{color:rgb(207,92,0);}
.fc1_c01248{color:rgb(0,0,207);}
.fc0_c01248{color:rgb(33,74,135);}
.fs0_c01248{font-size:43.999200px;}
.fs2_c01248{font-size:59.775600px;}
.fs1_c01248{font-size:86.077200px;}
.y0_c01248{bottom:0.000000px;}
.y20_c01248{bottom:44.250000px;}
.y1f_c01248{bottom:82.051500px;}
.y1e_c01248{bottom:99.984000px;}
.y1d_c01248{bottom:117.916500px;}
.y1c_c01248{bottom:135.849000px;}
.y1b_c01248{bottom:162.501000px;}
.y1a_c01248{bottom:189.151500px;}
.y19_c01248{bottom:215.802000px;}
.y18_c01248{bottom:242.454000px;}
.y17_c01248{bottom:284.478000px;}
.y16_c01248{bottom:748.903500px;}
.y15_c01248{bottom:765.342000px;}
.y14_c01248{bottom:781.780500px;}
.y13_c01248{bottom:798.219000px;}
.y12_c01248{bottom:814.657500px;}
.y11_c01248{bottom:831.096000px;}
.y10_c01248{bottom:847.534500px;}
.yf_c01248{bottom:863.973000px;}
.ye_c01248{bottom:880.411500px;}
.yd_c01248{bottom:896.848500px;}
.yc_c01248{bottom:913.287000px;}
.yb_c01248{bottom:946.164000px;}
.ya_c01248{bottom:962.602500px;}
.y9_c01248{bottom:979.041000px;}
.y8_c01248{bottom:1011.918000px;}
.y7_c01248{bottom:1028.356500px;}
.y6_c01248{bottom:1044.795000px;}
.y5_c01248{bottom:1061.232000px;}
.y4_c01248{bottom:1077.670500px;}
.y3_c01248{bottom:1094.109000px;}
.y2_c01248{bottom:1110.547500px;}
.y1_c01248{bottom:1159.863000px;}
.h3_c01248{height:35.190766px;}
.h2_c01248{height:36.007158px;}
.h5_c01248{height:40.511979px;}
.h6_c01248{height:52.332837px;}
.h4_c01248{height:58.337477px;}
.h0_c01248{height:1262.835000px;}
.h1_c01248{height:1263.000000px;}
.w0_c01248{width:892.920000px;}
.w1_c01248{width:893.250000px;}
.x0_c01248{left:0.000000px;}
.x4_c01248{left:127.558500px;}
.x2_c01248{left:137.122500px;}
.x1_c01248{left:143.770500px;}
.x3_c01248{left:177.007500px;}
.x5_c01248{left:435.249000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls4_c01248{letter-spacing:0.000000pt;}
.ls0_c01248{letter-spacing:0.078221pt;}
.ls2_c01248{letter-spacing:0.087539pt;}
.ls3_c01248{letter-spacing:0.092873pt;}
.ls1_c01248{letter-spacing:23.724873pt;}
.ws2_c01248{word-spacing:-23.622682pt;}
.ws4_c01248{word-spacing:-23.544461pt;}
.wse_c01248{word-spacing:-19.158506pt;}
.wsd_c01248{word-spacing:-19.128192pt;}
.wsa_c01248{word-spacing:-16.684034pt;}
.wsc_c01248{word-spacing:-15.674491pt;}
.ws9_c01248{word-spacing:-13.283467pt;}
.wsf_c01248{word-spacing:-12.539593pt;}
.ws10_c01248{word-spacing:-10.733041pt;}
.ws7_c01248{word-spacing:-8.878599pt;}
.ws8_c01248{word-spacing:-8.877777pt;}
.wsb_c01248{word-spacing:-6.832128pt;}
.ws3_c01248{word-spacing:0.000000pt;}
.ws0_c01248{word-spacing:0.039110pt;}
.ws5_c01248{word-spacing:0.189730pt;}
.ws1_c01248{word-spacing:0.195063pt;}
.ws6_c01248{word-spacing:38.256533pt;}
._3_c01248{margin-left:-5.661967pt;}
._2_c01248{margin-left:-1.377235pt;}
._1_c01248{width:0.925811pt;}
._4_c01248{width:17.720725pt;}
._5_c01248{width:35.652825pt;}
._0_c01248{width:47.597357pt;}
.fs0_c01248{font-size:39.110400pt;}
.fs2_c01248{font-size:53.133867pt;}
.fs1_c01248{font-size:76.513067pt;}
.y0_c01248{bottom:0.000000pt;}
.y20_c01248{bottom:39.333333pt;}
.y1f_c01248{bottom:72.934667pt;}
.y1e_c01248{bottom:88.874667pt;}
.y1d_c01248{bottom:104.814667pt;}
.y1c_c01248{bottom:120.754667pt;}
.y1b_c01248{bottom:144.445333pt;}
.y1a_c01248{bottom:168.134667pt;}
.y19_c01248{bottom:191.824000pt;}
.y18_c01248{bottom:215.514667pt;}
.y17_c01248{bottom:252.869333pt;}
.y16_c01248{bottom:665.692000pt;}
.y15_c01248{bottom:680.304000pt;}
.y14_c01248{bottom:694.916000pt;}
.y13_c01248{bottom:709.528000pt;}
.y12_c01248{bottom:724.140000pt;}
.y11_c01248{bottom:738.752000pt;}
.y10_c01248{bottom:753.364000pt;}
.yf_c01248{bottom:767.976000pt;}
.ye_c01248{bottom:782.588000pt;}
.yd_c01248{bottom:797.198667pt;}
.yc_c01248{bottom:811.810667pt;}
.yb_c01248{bottom:841.034667pt;}
.ya_c01248{bottom:855.646667pt;}
.y9_c01248{bottom:870.258667pt;}
.y8_c01248{bottom:899.482667pt;}
.y7_c01248{bottom:914.094667pt;}
.y6_c01248{bottom:928.706667pt;}
.y5_c01248{bottom:943.317333pt;}
.y4_c01248{bottom:957.929333pt;}
.y3_c01248{bottom:972.541333pt;}
.y2_c01248{bottom:987.153333pt;}
.y1_c01248{bottom:1030.989333pt;}
.h3_c01248{height:31.280681pt;}
.h2_c01248{height:32.006363pt;}
.h5_c01248{height:36.010648pt;}
.h6_c01248{height:46.518078pt;}
.h4_c01248{height:51.855535pt;}
.h0_c01248{height:1122.520000pt;}
.h1_c01248{height:1122.666667pt;}
.w0_c01248{width:793.706667pt;}
.w1_c01248{width:794.000000pt;}
.x0_c01248{left:0.000000pt;}
.x4_c01248{left:113.385333pt;}
.x2_c01248{left:121.886667pt;}
.x1_c01248{left:127.796000pt;}
.x3_c01248{left:157.340000pt;}
.x5_c01248{left:386.888000pt;}
}





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

.ir_c01249:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_57f326f69bc0037ec571cde5.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01249;src:url('chunks/assets/font_76207860a56e034684607761.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01249;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01249;src:url('chunks/assets/font_4e08581555bf2a1befdd5ce5.woff2')format("woff");}.ff4_c01249{font-family:ff4_c01249;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01249{vertical-align:0.000000px;}
.ls4_c01249{letter-spacing:0.000000px;}
.ls1_c01249{letter-spacing:0.087998px;}
.ls2_c01249{letter-spacing:0.098482px;}
.ls0_c01249{letter-spacing:0.104482px;}
.ls3_c01249{letter-spacing:26.690482px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01249{word-spacing:-33.713438px;}
.ws4_c01249{word-spacing:-26.575517px;}
.ws3_c01249{word-spacing:-26.487518px;}
.ws0_c01249{word-spacing:-18.769538px;}
.ws8_c01249{word-spacing:0.000000px;}
.ws5_c01249{word-spacing:0.043999px;}
.wsb_c01249{word-spacing:0.056767px;}
.ws9_c01249{word-spacing:0.073250px;}
.wsa_c01249{word-spacing:0.083734px;}
.ws2_c01249{word-spacing:0.175997px;}
.wsc_c01249{word-spacing:0.202963px;}
.ws6_c01249{word-spacing:0.213446px;}
.ws7_c01249{word-spacing:0.219446px;}
._0_c01249{margin-left:-3.825638px;}
._1_c01249{width:1.005737px;}
._3_c01249{width:53.283031px;}
._2_c01249{width:79.858548px;}
._4_c01249{width:133.452408px;}
.fc5_c01249{color:rgb(0,0,207);}
.fc4_c01249{color:rgb(79,153,5);}
.fc3_c01249{color:rgb(207,92,0);}
.fc2_c01249{color:rgb(33,74,135);}
.fc1_c01249{color:rgb(143,89,3);}
.fc0_c01249{color:rgb(0,0,0);}
.fs1_c01249{font-size:43.999200px;}
.fs0_c01249{font-size:59.775600px;}
.y0_c01249{bottom:0.000000px;}
.y2d_c01249{bottom:44.250000px;}
.y2c_c01249{bottom:96.919500px;}
.y2b_c01249{bottom:113.358000px;}
.y2a_c01249{bottom:129.796500px;}
.y29_c01249{bottom:146.235000px;}
.y28_c01249{bottom:162.673500px;}
.y27_c01249{bottom:179.112000px;}
.y26_c01249{bottom:195.550500px;}
.y25_c01249{bottom:211.989000px;}
.y24_c01249{bottom:228.427500px;}
.y23_c01249{bottom:244.866000px;}
.y22_c01249{bottom:261.304500px;}
.y21_c01249{bottom:294.180000px;}
.y20_c01249{bottom:310.618500px;}
.y1f_c01249{bottom:327.057000px;}
.y1e_c01249{bottom:359.934000px;}
.y1d_c01249{bottom:376.372500px;}
.y1c_c01249{bottom:392.811000px;}
.y1b_c01249{bottom:409.249500px;}
.y1a_c01249{bottom:425.688000px;}
.y19_c01249{bottom:442.125000px;}
.y18_c01249{bottom:458.563500px;}
.y17_c01249{bottom:507.879000px;}
.y16_c01249{bottom:524.317500px;}
.y15_c01249{bottom:540.756000px;}
.y14_c01249{bottom:557.194500px;}
.y13_c01249{bottom:573.633000px;}
.y12_c01249{bottom:590.071500px;}
.y11_c01249{bottom:606.508500px;}
.y10_c01249{bottom:622.947000px;}
.yf_c01249{bottom:639.385500px;}
.ye_c01249{bottom:655.824000px;}
.yd_c01249{bottom:672.262500px;}
.yc_c01249{bottom:688.701000px;}
.yb_c01249{bottom:705.139500px;}
.ya_c01249{bottom:721.578000px;}
.y9_c01249{bottom:738.016500px;}
.y8_c01249{bottom:754.455000px;}
.y7_c01249{bottom:787.330500px;}
.y6_c01249{bottom:803.769000px;}
.y5_c01249{bottom:853.084500px;}
.y4_c01249{bottom:869.523000px;}
.y3_c01249{bottom:885.588000px;}
.y2_c01249{bottom:1141.930500px;}
.y1_c01249{bottom:1159.863000px;}
.h3_c01249{height:35.190766px;}
.h4_c01249{height:36.007158px;}
.h2_c01249{height:52.332837px;}
.h0_c01249{height:1262.835000px;}
.h1_c01249{height:1263.000000px;}
.w0_c01249{width:892.920000px;}
.w1_c01249{width:893.250000px;}
.x0_c01249{left:0.000000px;}
.x1_c01249{left:127.558500px;}
.x2_c01249{left:137.122500px;}
.x3_c01249{left:143.770500px;}
.x4_c01249{left:177.007500px;}
.x5_c01249{left:435.249000px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls4_c01249{letter-spacing:0.000000pt;}
.ls1_c01249{letter-spacing:0.078221pt;}
.ls2_c01249{letter-spacing:0.087539pt;}
.ls0_c01249{letter-spacing:0.092873pt;}
.ls3_c01249{letter-spacing:23.724873pt;}
.ws1_c01249{word-spacing:-29.967501pt;}
.ws4_c01249{word-spacing:-23.622682pt;}
.ws3_c01249{word-spacing:-23.544461pt;}
.ws0_c01249{word-spacing:-16.684034pt;}
.ws8_c01249{word-spacing:0.000000pt;}
.ws5_c01249{word-spacing:0.039110pt;}
.wsb_c01249{word-spacing:0.050460pt;}
.ws9_c01249{word-spacing:0.065111pt;}
.wsa_c01249{word-spacing:0.074430pt;}
.ws2_c01249{word-spacing:0.156442pt;}
.wsc_c01249{word-spacing:0.180412pt;}
.ws6_c01249{word-spacing:0.189730pt;}
.ws7_c01249{word-spacing:0.195063pt;}
._0_c01249{margin-left:-3.400567pt;}
._1_c01249{width:0.893988pt;}
._3_c01249{width:47.362694pt;}
._2_c01249{width:70.985376pt;}
._4_c01249{width:118.624363pt;}
.fs1_c01249{font-size:39.110400pt;}
.fs0_c01249{font-size:53.133867pt;}
.y0_c01249{bottom:0.000000pt;}
.y2d_c01249{bottom:39.333333pt;}
.y2c_c01249{bottom:86.150667pt;}
.y2b_c01249{bottom:100.762667pt;}
.y2a_c01249{bottom:115.374667pt;}
.y29_c01249{bottom:129.986667pt;}
.y28_c01249{bottom:144.598667pt;}
.y27_c01249{bottom:159.210667pt;}
.y26_c01249{bottom:173.822667pt;}
.y25_c01249{bottom:188.434667pt;}
.y24_c01249{bottom:203.046667pt;}
.y23_c01249{bottom:217.658667pt;}
.y22_c01249{bottom:232.270667pt;}
.y21_c01249{bottom:261.493333pt;}
.y20_c01249{bottom:276.105333pt;}
.y1f_c01249{bottom:290.717333pt;}
.y1e_c01249{bottom:319.941333pt;}
.y1d_c01249{bottom:334.553333pt;}
.y1c_c01249{bottom:349.165333pt;}
.y1b_c01249{bottom:363.777333pt;}
.y1a_c01249{bottom:378.389333pt;}
.y19_c01249{bottom:393.000000pt;}
.y18_c01249{bottom:407.612000pt;}
.y17_c01249{bottom:451.448000pt;}
.y16_c01249{bottom:466.060000pt;}
.y15_c01249{bottom:480.672000pt;}
.y14_c01249{bottom:495.284000pt;}
.y13_c01249{bottom:509.896000pt;}
.y12_c01249{bottom:524.508000pt;}
.y11_c01249{bottom:539.118667pt;}
.y10_c01249{bottom:553.730667pt;}
.yf_c01249{bottom:568.342667pt;}
.ye_c01249{bottom:582.954667pt;}
.yd_c01249{bottom:597.566667pt;}
.yc_c01249{bottom:612.178667pt;}
.yb_c01249{bottom:626.790667pt;}
.ya_c01249{bottom:641.402667pt;}
.y9_c01249{bottom:656.014667pt;}
.y8_c01249{bottom:670.626667pt;}
.y7_c01249{bottom:699.849333pt;}
.y6_c01249{bottom:714.461333pt;}
.y5_c01249{bottom:758.297333pt;}
.y4_c01249{bottom:772.909333pt;}
.y3_c01249{bottom:787.189333pt;}
.y2_c01249{bottom:1015.049333pt;}
.y1_c01249{bottom:1030.989333pt;}
.h3_c01249{height:31.280681pt;}
.h4_c01249{height:32.006363pt;}
.h2_c01249{height:46.518078pt;}
.h0_c01249{height:1122.520000pt;}
.h1_c01249{height:1122.666667pt;}
.w0_c01249{width:793.706667pt;}
.w1_c01249{width:794.000000pt;}
.x0_c01249{left:0.000000pt;}
.x1_c01249{left:113.385333pt;}
.x2_c01249{left:121.886667pt;}
.x3_c01249{left:127.796000pt;}
.x4_c01249{left:157.340000pt;}
.x5_c01249{left:386.888000pt;}
}





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

.ir_c01250:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_f6b8727071376287ea088a4d.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01250;src:url('chunks/assets/font_379de60dc8bebcdb992331ec.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01250;src:url('chunks/assets/font_eac6e6ccbffd1c0d28397d4b.woff2')format("woff");}.ff3_c01250{font-family:ff3_c01250;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01250;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01250{font-family:ff4_c01250;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01250;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01250{font-family:ff5_c01250;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01250{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01250{vertical-align:0.000000px;}
.ls3_c01250{letter-spacing:0.000000px;}
.ls0_c01250{letter-spacing:0.087998px;}
.ls2_c01250{letter-spacing:0.098482px;}
.ls1_c01250{letter-spacing:0.104482px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01250{word-spacing:-33.713438px;}
.ws2_c01250{word-spacing:-26.575517px;}
.wse_c01250{word-spacing:-26.487518px;}
.ws9_c01250{word-spacing:-21.553319px;}
.ws8_c01250{word-spacing:-21.519216px;}
.ws5_c01250{word-spacing:-18.769538px;}
.ws7_c01250{word-spacing:-17.633802px;}
.ws4_c01250{word-spacing:-14.943900px;}
.wsa_c01250{word-spacing:-14.107042px;}
.wsb_c01250{word-spacing:-12.074671px;}
.ws1_c01250{word-spacing:-9.988424px;}
.ws3_c01250{word-spacing:-9.987499px;}
.ws6_c01250{word-spacing:-7.686144px;}
.ws12_c01250{word-spacing:0.000000px;}
.wsf_c01250{word-spacing:0.043999px;}
.ws15_c01250{word-spacing:0.056767px;}
.ws13_c01250{word-spacing:0.073250px;}
.ws14_c01250{word-spacing:0.083734px;}
.wsd_c01250{word-spacing:0.175997px;}
.ws16_c01250{word-spacing:0.202963px;}
.ws10_c01250{word-spacing:0.213446px;}
.ws11_c01250{word-spacing:0.219446px;}
.ws0_c01250{word-spacing:43.038600px;}
._1_c01250{margin-left:-6.369713px;}
._4_c01250{margin-left:-3.825638px;}
._0_c01250{margin-left:-1.549390px;}
._5_c01250{width:1.005737px;}
._2_c01250{width:19.935816px;}
._3_c01250{width:40.109428px;}
._7_c01250{width:53.283031px;}
._6_c01250{width:79.858548px;}
._8_c01250{width:133.452408px;}
.fc6_c01250{color:rgb(0,0,207);}
.fc5_c01250{color:rgb(79,153,5);}
.fc3_c01250{color:rgb(33,74,135);}
.fc2_c01250{color:rgb(143,89,3);}
.fc4_c01250{color:rgb(207,92,0);}
.fc1_c01250{color:rgb(6,69,173);}
.fc0_c01250{color:rgb(0,0,0);}
.fs2_c01250{font-size:43.999200px;}
.fs1_c01250{font-size:59.775600px;}
.fs0_c01250{font-size:86.077200px;}
.y0_c01250{bottom:0.000000px;}
.y20_c01250{bottom:44.250000px;}
.y1f_c01250{bottom:86.982000px;}
.y1e_c01250{bottom:103.420500px;}
.y1d_c01250{bottom:119.859000px;}
.y1c_c01250{bottom:136.297500px;}
.y1b_c01250{bottom:152.736000px;}
.y1a_c01250{bottom:169.174500px;}
.y19_c01250{bottom:185.613000px;}
.y18_c01250{bottom:202.051500px;}
.y17_c01250{bottom:218.490000px;}
.y16_c01250{bottom:234.927000px;}
.y15_c01250{bottom:251.365500px;}
.y14_c01250{bottom:267.804000px;}
.y13_c01250{bottom:284.242500px;}
.y12_c01250{bottom:300.681000px;}
.y11_c01250{bottom:317.119500px;}
.y10_c01250{bottom:349.996500px;}
.yf_c01250{bottom:366.435000px;}
.ye_c01250{bottom:415.749000px;}
.yd_c01250{bottom:432.187500px;}
.yc_c01250{bottom:448.252500px;}
.yb_c01250{bottom:493.890000px;}
.ya_c01250{bottom:511.822500px;}
.y9_c01250{bottom:529.756500px;}
.y8_c01250{bottom:547.689000px;}
.y7_c01250{bottom:565.621500px;}
.y6_c01250{bottom:583.554000px;}
.y5_c01250{bottom:610.633500px;}
.y4_c01250{bottom:637.714500px;}
.y3_c01250{bottom:664.794000px;}
.y2_c01250{bottom:691.873500px;}
.y1_c01250{bottom:734.407500px;}
.h5_c01250{height:35.190766px;}
.h6_c01250{height:36.007158px;}
.h3_c01250{height:40.511979px;}
.h4_c01250{height:52.332837px;}
.h2_c01250{height:58.337477px;}
.h0_c01250{height:1262.835000px;}
.h1_c01250{height:1263.000000px;}
.w0_c01250{width:892.920000px;}
.w1_c01250{width:893.250000px;}
.x0_c01250{left:0.000000px;}
.x1_c01250{left:127.558500px;}
.x2_c01250{left:137.122500px;}
.x3_c01250{left:143.770500px;}
.x4_c01250{left:435.249000px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls3_c01250{letter-spacing:0.000000pt;}
.ls0_c01250{letter-spacing:0.078221pt;}
.ls2_c01250{letter-spacing:0.087539pt;}
.ls1_c01250{letter-spacing:0.092873pt;}
.wsc_c01250{word-spacing:-29.967501pt;}
.ws2_c01250{word-spacing:-23.622682pt;}
.wse_c01250{word-spacing:-23.544461pt;}
.ws9_c01250{word-spacing:-19.158506pt;}
.ws8_c01250{word-spacing:-19.128192pt;}
.ws5_c01250{word-spacing:-16.684034pt;}
.ws7_c01250{word-spacing:-15.674491pt;}
.ws4_c01250{word-spacing:-13.283467pt;}
.wsa_c01250{word-spacing:-12.539593pt;}
.wsb_c01250{word-spacing:-10.733041pt;}
.ws1_c01250{word-spacing:-8.878599pt;}
.ws3_c01250{word-spacing:-8.877777pt;}
.ws6_c01250{word-spacing:-6.832128pt;}
.ws12_c01250{word-spacing:0.000000pt;}
.wsf_c01250{word-spacing:0.039110pt;}
.ws15_c01250{word-spacing:0.050460pt;}
.ws13_c01250{word-spacing:0.065111pt;}
.ws14_c01250{word-spacing:0.074430pt;}
.wsd_c01250{word-spacing:0.156442pt;}
.ws16_c01250{word-spacing:0.180412pt;}
.ws10_c01250{word-spacing:0.189730pt;}
.ws11_c01250{word-spacing:0.195063pt;}
.ws0_c01250{word-spacing:38.256533pt;}
._1_c01250{margin-left:-5.661967pt;}
._4_c01250{margin-left:-3.400567pt;}
._0_c01250{margin-left:-1.377235pt;}
._5_c01250{width:0.893988pt;}
._2_c01250{width:17.720725pt;}
._3_c01250{width:35.652825pt;}
._7_c01250{width:47.362694pt;}
._6_c01250{width:70.985376pt;}
._8_c01250{width:118.624363pt;}
.fs2_c01250{font-size:39.110400pt;}
.fs1_c01250{font-size:53.133867pt;}
.fs0_c01250{font-size:76.513067pt;}
.y0_c01250{bottom:0.000000pt;}
.y20_c01250{bottom:39.333333pt;}
.y1f_c01250{bottom:77.317333pt;}
.y1e_c01250{bottom:91.929333pt;}
.y1d_c01250{bottom:106.541333pt;}
.y1c_c01250{bottom:121.153333pt;}
.y1b_c01250{bottom:135.765333pt;}
.y1a_c01250{bottom:150.377333pt;}
.y19_c01250{bottom:164.989333pt;}
.y18_c01250{bottom:179.601333pt;}
.y17_c01250{bottom:194.213333pt;}
.y16_c01250{bottom:208.824000pt;}
.y15_c01250{bottom:223.436000pt;}
.y14_c01250{bottom:238.048000pt;}
.y13_c01250{bottom:252.660000pt;}
.y12_c01250{bottom:267.272000pt;}
.y11_c01250{bottom:281.884000pt;}
.y10_c01250{bottom:311.108000pt;}
.yf_c01250{bottom:325.720000pt;}
.ye_c01250{bottom:369.554667pt;}
.yd_c01250{bottom:384.166667pt;}
.yc_c01250{bottom:398.446667pt;}
.yb_c01250{bottom:439.013333pt;}
.ya_c01250{bottom:454.953333pt;}
.y9_c01250{bottom:470.894667pt;}
.y8_c01250{bottom:486.834667pt;}
.y7_c01250{bottom:502.774667pt;}
.y6_c01250{bottom:518.714667pt;}
.y5_c01250{bottom:542.785333pt;}
.y4_c01250{bottom:566.857333pt;}
.y3_c01250{bottom:590.928000pt;}
.y2_c01250{bottom:614.998667pt;}
.y1_c01250{bottom:652.806667pt;}
.h5_c01250{height:31.280681pt;}
.h6_c01250{height:32.006363pt;}
.h3_c01250{height:36.010648pt;}
.h4_c01250{height:46.518078pt;}
.h2_c01250{height:51.855535pt;}
.h0_c01250{height:1122.520000pt;}
.h1_c01250{height:1122.666667pt;}
.w0_c01250{width:793.706667pt;}
.w1_c01250{width:794.000000pt;}
.x0_c01250{left:0.000000pt;}
.x1_c01250{left:113.385333pt;}
.x2_c01250{left:121.886667pt;}
.x3_c01250{left:127.796000pt;}
.x4_c01250{left:386.888000pt;}
}





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

.ir_c01251:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_32233828a7b571b0d38a1ac9.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01251;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01251;src:url('chunks/assets/font_08b9e8e888d950213727a504.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01251;src:url('chunks/assets/font_794acbe1ea6a147127047d76.woff2')format("woff");}.ff4_c01251{font-family:ff4_c01251;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01251;src:url('chunks/assets/font_1d9fdc74078601bcb891ed03.woff2')format("woff");}.ff5_c01251{font-family:ff5_c01251;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01251{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01251{vertical-align:0.000000px;}
.ls4_c01251{letter-spacing:0.000000px;}
.ls0_c01251{letter-spacing:0.087998px;}
.ls2_c01251{letter-spacing:0.098482px;}
.ls3_c01251{letter-spacing:0.104482px;}
.ls1_c01251{letter-spacing:26.690482px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01251{word-spacing:-26.575517px;}
.ws4_c01251{word-spacing:-26.487518px;}
.wse_c01251{word-spacing:-21.553319px;}
.wsd_c01251{word-spacing:-21.519216px;}
.wsc_c01251{word-spacing:-19.247743px;}
.wsa_c01251{word-spacing:-18.769538px;}
.ws9_c01251{word-spacing:-14.943900px;}
.wsf_c01251{word-spacing:-14.107042px;}
.ws10_c01251{word-spacing:-12.074671px;}
.wsb_c01251{word-spacing:-10.230144px;}
.ws7_c01251{word-spacing:-9.988424px;}
.ws8_c01251{word-spacing:-9.987499px;}
.ws3_c01251{word-spacing:0.000000px;}
.ws0_c01251{word-spacing:0.043999px;}
.ws5_c01251{word-spacing:0.213446px;}
.ws1_c01251{word-spacing:0.219446px;}
.ws6_c01251{word-spacing:43.038600px;}
._2_c01251{margin-left:-6.369713px;}
._1_c01251{margin-left:-1.549390px;}
._0_c01251{width:1.041538px;}
._3_c01251{width:19.935816px;}
._4_c01251{width:40.109428px;}
.fc5_c01251{color:rgb(79,153,5);}
.fc4_c01251{color:rgb(143,89,3);}
.fc3_c01251{color:rgb(0,0,0);}
.fc6_c01251{color:rgb(6,69,173);}
.fc2_c01251{color:rgb(207,92,0);}
.fc1_c01251{color:rgb(0,0,207);}
.fc0_c01251{color:rgb(33,74,135);}
.fs0_c01251{font-size:43.999200px;}
.fs2_c01251{font-size:59.775600px;}
.fs1_c01251{font-size:86.077200px;}
.y0_c01251{bottom:0.000000px;}
.y20_c01251{bottom:44.250000px;}
.y1f_c01251{bottom:82.051500px;}
.y1e_c01251{bottom:99.984000px;}
.y1d_c01251{bottom:117.916500px;}
.y1c_c01251{bottom:135.849000px;}
.y1b_c01251{bottom:162.501000px;}
.y1a_c01251{bottom:189.151500px;}
.y19_c01251{bottom:215.802000px;}
.y18_c01251{bottom:242.454000px;}
.y17_c01251{bottom:284.478000px;}
.y16_c01251{bottom:748.903500px;}
.y15_c01251{bottom:765.342000px;}
.y14_c01251{bottom:781.780500px;}
.y13_c01251{bottom:798.219000px;}
.y12_c01251{bottom:814.657500px;}
.y11_c01251{bottom:831.096000px;}
.y10_c01251{bottom:847.534500px;}
.yf_c01251{bottom:863.973000px;}
.ye_c01251{bottom:880.411500px;}
.yd_c01251{bottom:896.848500px;}
.yc_c01251{bottom:913.287000px;}
.yb_c01251{bottom:946.164000px;}
.ya_c01251{bottom:962.602500px;}
.y9_c01251{bottom:979.041000px;}
.y8_c01251{bottom:1011.918000px;}
.y7_c01251{bottom:1028.356500px;}
.y6_c01251{bottom:1044.795000px;}
.y5_c01251{bottom:1061.232000px;}
.y4_c01251{bottom:1077.670500px;}
.y3_c01251{bottom:1094.109000px;}
.y2_c01251{bottom:1110.547500px;}
.y1_c01251{bottom:1159.863000px;}
.h3_c01251{height:35.190766px;}
.h2_c01251{height:36.007158px;}
.h5_c01251{height:40.511979px;}
.h6_c01251{height:52.332837px;}
.h4_c01251{height:58.337477px;}
.h0_c01251{height:1262.835000px;}
.h1_c01251{height:1263.000000px;}
.w0_c01251{width:892.920000px;}
.w1_c01251{width:893.250000px;}
.x0_c01251{left:0.000000px;}
.x4_c01251{left:127.558500px;}
.x2_c01251{left:137.122500px;}
.x1_c01251{left:143.770500px;}
.x3_c01251{left:177.007500px;}
.x5_c01251{left:435.249000px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls4_c01251{letter-spacing:0.000000pt;}
.ls0_c01251{letter-spacing:0.078221pt;}
.ls2_c01251{letter-spacing:0.087539pt;}
.ls3_c01251{letter-spacing:0.092873pt;}
.ls1_c01251{letter-spacing:23.724873pt;}
.ws2_c01251{word-spacing:-23.622682pt;}
.ws4_c01251{word-spacing:-23.544461pt;}
.wse_c01251{word-spacing:-19.158506pt;}
.wsd_c01251{word-spacing:-19.128192pt;}
.wsc_c01251{word-spacing:-17.109105pt;}
.wsa_c01251{word-spacing:-16.684034pt;}
.ws9_c01251{word-spacing:-13.283467pt;}
.wsf_c01251{word-spacing:-12.539593pt;}
.ws10_c01251{word-spacing:-10.733041pt;}
.wsb_c01251{word-spacing:-9.093461pt;}
.ws7_c01251{word-spacing:-8.878599pt;}
.ws8_c01251{word-spacing:-8.877777pt;}
.ws3_c01251{word-spacing:0.000000pt;}
.ws0_c01251{word-spacing:0.039110pt;}
.ws5_c01251{word-spacing:0.189730pt;}
.ws1_c01251{word-spacing:0.195063pt;}
.ws6_c01251{word-spacing:38.256533pt;}
._2_c01251{margin-left:-5.661967pt;}
._1_c01251{margin-left:-1.377235pt;}
._0_c01251{width:0.925811pt;}
._3_c01251{width:17.720725pt;}
._4_c01251{width:35.652825pt;}
.fs0_c01251{font-size:39.110400pt;}
.fs2_c01251{font-size:53.133867pt;}
.fs1_c01251{font-size:76.513067pt;}
.y0_c01251{bottom:0.000000pt;}
.y20_c01251{bottom:39.333333pt;}
.y1f_c01251{bottom:72.934667pt;}
.y1e_c01251{bottom:88.874667pt;}
.y1d_c01251{bottom:104.814667pt;}
.y1c_c01251{bottom:120.754667pt;}
.y1b_c01251{bottom:144.445333pt;}
.y1a_c01251{bottom:168.134667pt;}
.y19_c01251{bottom:191.824000pt;}
.y18_c01251{bottom:215.514667pt;}
.y17_c01251{bottom:252.869333pt;}
.y16_c01251{bottom:665.692000pt;}
.y15_c01251{bottom:680.304000pt;}
.y14_c01251{bottom:694.916000pt;}
.y13_c01251{bottom:709.528000pt;}
.y12_c01251{bottom:724.140000pt;}
.y11_c01251{bottom:738.752000pt;}
.y10_c01251{bottom:753.364000pt;}
.yf_c01251{bottom:767.976000pt;}
.ye_c01251{bottom:782.588000pt;}
.yd_c01251{bottom:797.198667pt;}
.yc_c01251{bottom:811.810667pt;}
.yb_c01251{bottom:841.034667pt;}
.ya_c01251{bottom:855.646667pt;}
.y9_c01251{bottom:870.258667pt;}
.y8_c01251{bottom:899.482667pt;}
.y7_c01251{bottom:914.094667pt;}
.y6_c01251{bottom:928.706667pt;}
.y5_c01251{bottom:943.317333pt;}
.y4_c01251{bottom:957.929333pt;}
.y3_c01251{bottom:972.541333pt;}
.y2_c01251{bottom:987.153333pt;}
.y1_c01251{bottom:1030.989333pt;}
.h3_c01251{height:31.280681pt;}
.h2_c01251{height:32.006363pt;}
.h5_c01251{height:36.010648pt;}
.h6_c01251{height:46.518078pt;}
.h4_c01251{height:51.855535pt;}
.h0_c01251{height:1122.520000pt;}
.h1_c01251{height:1122.666667pt;}
.w0_c01251{width:793.706667pt;}
.w1_c01251{width:794.000000pt;}
.x0_c01251{left:0.000000pt;}
.x4_c01251{left:113.385333pt;}
.x2_c01251{left:121.886667pt;}
.x1_c01251{left:127.796000pt;}
.x3_c01251{left:157.340000pt;}
.x5_c01251{left:386.888000pt;}
}





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

.ir_c01252:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_cfe6aaf108c96dc67308487d.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01252;src:url('chunks/assets/font_9bd513e6488c8b9de1691260.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01252;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01252;src:url('chunks/assets/font_9f78eacea816ec978a1d255c.woff2')format("woff");}.ff4_c01252{font-family:ff4_c01252;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01252{vertical-align:0.000000px;}
.ls4_c01252{letter-spacing:0.000000px;}
.ls1_c01252{letter-spacing:0.087998px;}
.ls2_c01252{letter-spacing:0.098482px;}
.ls0_c01252{letter-spacing:0.104482px;}
.ls3_c01252{letter-spacing:26.690482px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01252{word-spacing:-33.713438px;}
.ws4_c01252{word-spacing:-26.575517px;}
.ws3_c01252{word-spacing:-26.487518px;}
.ws0_c01252{word-spacing:-18.769538px;}
.ws8_c01252{word-spacing:0.000000px;}
.ws5_c01252{word-spacing:0.043999px;}
.wsb_c01252{word-spacing:0.056767px;}
.ws9_c01252{word-spacing:0.073250px;}
.wsa_c01252{word-spacing:0.083734px;}
.ws2_c01252{word-spacing:0.175997px;}
.wsc_c01252{word-spacing:0.202963px;}
.ws6_c01252{word-spacing:0.213446px;}
.ws7_c01252{word-spacing:0.219446px;}
._0_c01252{margin-left:-3.825638px;}
._1_c01252{width:1.005737px;}
._3_c01252{width:53.283031px;}
._2_c01252{width:79.858548px;}
._5_c01252{width:106.742059px;}
._4_c01252{width:133.452408px;}
.fc5_c01252{color:rgb(0,0,207);}
.fc4_c01252{color:rgb(79,153,5);}
.fc3_c01252{color:rgb(207,92,0);}
.fc2_c01252{color:rgb(33,74,135);}
.fc1_c01252{color:rgb(143,89,3);}
.fc0_c01252{color:rgb(0,0,0);}
.fs1_c01252{font-size:43.999200px;}
.fs0_c01252{font-size:59.775600px;}
.y0_c01252{bottom:0.000000px;}
.y2d_c01252{bottom:44.250000px;}
.y2c_c01252{bottom:96.919500px;}
.y2b_c01252{bottom:113.358000px;}
.y2a_c01252{bottom:129.796500px;}
.y29_c01252{bottom:146.235000px;}
.y28_c01252{bottom:162.673500px;}
.y27_c01252{bottom:179.112000px;}
.y26_c01252{bottom:195.550500px;}
.y25_c01252{bottom:211.989000px;}
.y24_c01252{bottom:228.427500px;}
.y23_c01252{bottom:244.866000px;}
.y22_c01252{bottom:261.304500px;}
.y21_c01252{bottom:294.180000px;}
.y20_c01252{bottom:310.618500px;}
.y1f_c01252{bottom:327.057000px;}
.y1e_c01252{bottom:359.934000px;}
.y1d_c01252{bottom:376.372500px;}
.y1c_c01252{bottom:392.811000px;}
.y1b_c01252{bottom:409.249500px;}
.y1a_c01252{bottom:425.688000px;}
.y19_c01252{bottom:442.125000px;}
.y18_c01252{bottom:458.563500px;}
.y17_c01252{bottom:507.879000px;}
.y16_c01252{bottom:524.317500px;}
.y15_c01252{bottom:540.756000px;}
.y14_c01252{bottom:557.194500px;}
.y13_c01252{bottom:573.633000px;}
.y12_c01252{bottom:590.071500px;}
.y11_c01252{bottom:606.508500px;}
.y10_c01252{bottom:622.947000px;}
.yf_c01252{bottom:639.385500px;}
.ye_c01252{bottom:655.824000px;}
.yd_c01252{bottom:672.262500px;}
.yc_c01252{bottom:688.701000px;}
.yb_c01252{bottom:705.139500px;}
.ya_c01252{bottom:721.578000px;}
.y9_c01252{bottom:738.016500px;}
.y8_c01252{bottom:754.455000px;}
.y7_c01252{bottom:787.330500px;}
.y6_c01252{bottom:803.769000px;}
.y5_c01252{bottom:853.084500px;}
.y4_c01252{bottom:869.523000px;}
.y3_c01252{bottom:885.588000px;}
.y2_c01252{bottom:1141.930500px;}
.y1_c01252{bottom:1159.863000px;}
.h3_c01252{height:35.190766px;}
.h4_c01252{height:36.007158px;}
.h2_c01252{height:52.332837px;}
.h0_c01252{height:1262.835000px;}
.h1_c01252{height:1263.000000px;}
.w0_c01252{width:892.920000px;}
.w1_c01252{width:893.250000px;}
.x0_c01252{left:0.000000px;}
.x1_c01252{left:127.558500px;}
.x2_c01252{left:137.122500px;}
.x3_c01252{left:143.770500px;}
.x4_c01252{left:177.007500px;}
.x5_c01252{left:435.249000px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls4_c01252{letter-spacing:0.000000pt;}
.ls1_c01252{letter-spacing:0.078221pt;}
.ls2_c01252{letter-spacing:0.087539pt;}
.ls0_c01252{letter-spacing:0.092873pt;}
.ls3_c01252{letter-spacing:23.724873pt;}
.ws1_c01252{word-spacing:-29.967501pt;}
.ws4_c01252{word-spacing:-23.622682pt;}
.ws3_c01252{word-spacing:-23.544461pt;}
.ws0_c01252{word-spacing:-16.684034pt;}
.ws8_c01252{word-spacing:0.000000pt;}
.ws5_c01252{word-spacing:0.039110pt;}
.wsb_c01252{word-spacing:0.050460pt;}
.ws9_c01252{word-spacing:0.065111pt;}
.wsa_c01252{word-spacing:0.074430pt;}
.ws2_c01252{word-spacing:0.156442pt;}
.wsc_c01252{word-spacing:0.180412pt;}
.ws6_c01252{word-spacing:0.189730pt;}
.ws7_c01252{word-spacing:0.195063pt;}
._0_c01252{margin-left:-3.400567pt;}
._1_c01252{width:0.893988pt;}
._3_c01252{width:47.362694pt;}
._2_c01252{width:70.985376pt;}
._5_c01252{width:94.881830pt;}
._4_c01252{width:118.624363pt;}
.fs1_c01252{font-size:39.110400pt;}
.fs0_c01252{font-size:53.133867pt;}
.y0_c01252{bottom:0.000000pt;}
.y2d_c01252{bottom:39.333333pt;}
.y2c_c01252{bottom:86.150667pt;}
.y2b_c01252{bottom:100.762667pt;}
.y2a_c01252{bottom:115.374667pt;}
.y29_c01252{bottom:129.986667pt;}
.y28_c01252{bottom:144.598667pt;}
.y27_c01252{bottom:159.210667pt;}
.y26_c01252{bottom:173.822667pt;}
.y25_c01252{bottom:188.434667pt;}
.y24_c01252{bottom:203.046667pt;}
.y23_c01252{bottom:217.658667pt;}
.y22_c01252{bottom:232.270667pt;}
.y21_c01252{bottom:261.493333pt;}
.y20_c01252{bottom:276.105333pt;}
.y1f_c01252{bottom:290.717333pt;}
.y1e_c01252{bottom:319.941333pt;}
.y1d_c01252{bottom:334.553333pt;}
.y1c_c01252{bottom:349.165333pt;}
.y1b_c01252{bottom:363.777333pt;}
.y1a_c01252{bottom:378.389333pt;}
.y19_c01252{bottom:393.000000pt;}
.y18_c01252{bottom:407.612000pt;}
.y17_c01252{bottom:451.448000pt;}
.y16_c01252{bottom:466.060000pt;}
.y15_c01252{bottom:480.672000pt;}
.y14_c01252{bottom:495.284000pt;}
.y13_c01252{bottom:509.896000pt;}
.y12_c01252{bottom:524.508000pt;}
.y11_c01252{bottom:539.118667pt;}
.y10_c01252{bottom:553.730667pt;}
.yf_c01252{bottom:568.342667pt;}
.ye_c01252{bottom:582.954667pt;}
.yd_c01252{bottom:597.566667pt;}
.yc_c01252{bottom:612.178667pt;}
.yb_c01252{bottom:626.790667pt;}
.ya_c01252{bottom:641.402667pt;}
.y9_c01252{bottom:656.014667pt;}
.y8_c01252{bottom:670.626667pt;}
.y7_c01252{bottom:699.849333pt;}
.y6_c01252{bottom:714.461333pt;}
.y5_c01252{bottom:758.297333pt;}
.y4_c01252{bottom:772.909333pt;}
.y3_c01252{bottom:787.189333pt;}
.y2_c01252{bottom:1015.049333pt;}
.y1_c01252{bottom:1030.989333pt;}
.h3_c01252{height:31.280681pt;}
.h4_c01252{height:32.006363pt;}
.h2_c01252{height:46.518078pt;}
.h0_c01252{height:1122.520000pt;}
.h1_c01252{height:1122.666667pt;}
.w0_c01252{width:793.706667pt;}
.w1_c01252{width:794.000000pt;}
.x0_c01252{left:0.000000pt;}
.x1_c01252{left:113.385333pt;}
.x2_c01252{left:121.886667pt;}
.x3_c01252{left:127.796000pt;}
.x4_c01252{left:157.340000pt;}
.x5_c01252{left:386.888000pt;}
}





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

.ir_c01253:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_0dd7fb559e484fa19ff4d4e6.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01253;src:url('chunks/assets/font_583cae5512421fd9fd8df64b.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01253;src:url('chunks/assets/font_2cf1879fee57c658e5eec1f6.woff2')format("woff");}.ff3_c01253{font-family:ff3_c01253;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01253;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01253{font-family:ff4_c01253;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01253;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01253{font-family:ff5_c01253;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01253{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01253{vertical-align:0.000000px;}
.ls3_c01253{letter-spacing:0.000000px;}
.ls0_c01253{letter-spacing:0.087998px;}
.ls2_c01253{letter-spacing:0.098482px;}
.ls1_c01253{letter-spacing:0.104482px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01253{word-spacing:-26.575517px;}
.ws18_c01253{word-spacing:-26.487518px;}
.wsf_c01253{word-spacing:-18.829314px;}
.ws5_c01253{word-spacing:-18.769538px;}
.ws12_c01253{word-spacing:-18.171782px;}
.wsd_c01253{word-spacing:-17.275148px;}
.wsc_c01253{word-spacing:-17.215373px;}
.wse_c01253{word-spacing:-17.155597px;}
.ws10_c01253{word-spacing:-15.960085px;}
.ws8_c01253{word-spacing:-15.601432px;}
.ws4_c01253{word-spacing:-14.943900px;}
.ws16_c01253{word-spacing:-14.764573px;}
.ws15_c01253{word-spacing:-14.525471px;}
.ws9_c01253{word-spacing:-13.808164px;}
.ws7_c01253{word-spacing:-13.748388px;}
.ws14_c01253{word-spacing:-13.210408px;}
.ws13_c01253{word-spacing:-13.196971px;}
.ws11_c01253{word-spacing:-13.090856px;}
.wsa_c01253{word-spacing:-12.732203px;}
.wsb_c01253{word-spacing:-12.672427px;}
.ws1_c01253{word-spacing:-9.988424px;}
.ws3_c01253{word-spacing:-9.987499px;}
.ws1c_c01253{word-spacing:0.000000px;}
.ws6_c01253{word-spacing:0.017856px;}
.ws19_c01253{word-spacing:0.043999px;}
.ws17_c01253{word-spacing:0.175997px;}
.ws1b_c01253{word-spacing:0.213446px;}
.ws1a_c01253{word-spacing:0.219446px;}
.ws0_c01253{word-spacing:43.038600px;}
._1_c01253{margin-left:-6.369713px;}
._6_c01253{margin-left:-4.656358px;}
._4_c01253{margin-left:-2.998955px;}
._0_c01253{margin-left:-1.549390px;}
._a_c01253{width:1.005737px;}
._7_c01253{width:17.505421px;}
._2_c01253{width:19.935816px;}
._5_c01253{width:21.220338px;}
._8_c01253{width:22.237850px;}
._3_c01253{width:29.529146px;}
._9_c01253{width:32.039722px;}
.fc5_c01253{color:rgb(79,153,5);}
.fc3_c01253{color:rgb(33,74,135);}
.fc2_c01253{color:rgb(143,89,3);}
.fc4_c01253{color:rgb(207,92,0);}
.fc1_c01253{color:rgb(6,69,173);}
.fc0_c01253{color:rgb(0,0,0);}
.fs2_c01253{font-size:43.999200px;}
.fs1_c01253{font-size:59.775600px;}
.fs0_c01253{font-size:86.077200px;}
.y0_c01253{bottom:0.000000px;}
.y1d_c01253{bottom:44.250000px;}
.y1c_c01253{bottom:82.051500px;}
.y1b_c01253{bottom:98.490000px;}
.y1a_c01253{bottom:114.927000px;}
.y19_c01253{bottom:131.365500px;}
.y18_c01253{bottom:147.430500px;}
.y17_c01253{bottom:194.128500px;}
.y16_c01253{bottom:212.061000px;}
.y15_c01253{bottom:229.993500px;}
.y14_c01253{bottom:247.926000px;}
.y13_c01253{bottom:265.858500px;}
.y12_c01253{bottom:283.792500px;}
.y11_c01253{bottom:301.725000px;}
.y10_c01253{bottom:342.058500px;}
.yf_c01253{bottom:371.443500px;}
.ye_c01253{bottom:400.828500px;}
.yd_c01253{bottom:430.213500px;}
.yc_c01253{bottom:448.146000px;}
.yb_c01253{bottom:488.479500px;}
.ya_c01253{bottom:506.412000px;}
.y9_c01253{bottom:533.059500px;}
.y8_c01253{bottom:550.993500px;}
.y7_c01253{bottom:568.926000px;}
.y6_c01253{bottom:586.858500px;}
.y5_c01253{bottom:613.506000px;}
.y4_c01253{bottom:640.153500px;}
.y3_c01253{bottom:666.801000px;}
.y2_c01253{bottom:693.448500px;}
.y1_c01253{bottom:735.469500px;}
.h5_c01253{height:35.190766px;}
.h6_c01253{height:36.007158px;}
.h3_c01253{height:40.511979px;}
.h4_c01253{height:52.332837px;}
.h2_c01253{height:58.337477px;}
.h0_c01253{height:1262.835000px;}
.h1_c01253{height:1263.000000px;}
.w0_c01253{width:892.920000px;}
.w1_c01253{width:893.250000px;}
.x0_c01253{left:0.000000px;}
.x1_c01253{left:127.558500px;}
.x4_c01253{left:137.122500px;}
.x2_c01253{left:152.215500px;}
.x3_c01253{left:164.919000px;}
.x5_c01253{left:435.249000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls3_c01253{letter-spacing:0.000000pt;}
.ls0_c01253{letter-spacing:0.078221pt;}
.ls2_c01253{letter-spacing:0.087539pt;}
.ls1_c01253{letter-spacing:0.092873pt;}
.ws2_c01253{word-spacing:-23.622682pt;}
.ws18_c01253{word-spacing:-23.544461pt;}
.wsf_c01253{word-spacing:-16.737168pt;}
.ws5_c01253{word-spacing:-16.684034pt;}
.ws12_c01253{word-spacing:-16.152695pt;}
.wsd_c01253{word-spacing:-15.355687pt;}
.wsc_c01253{word-spacing:-15.302554pt;}
.wse_c01253{word-spacing:-15.249420pt;}
.ws10_c01253{word-spacing:-14.186742pt;}
.ws8_c01253{word-spacing:-13.867939pt;}
.ws4_c01253{word-spacing:-13.283467pt;}
.ws16_c01253{word-spacing:-13.124065pt;}
.ws15_c01253{word-spacing:-12.911530pt;}
.ws9_c01253{word-spacing:-12.273923pt;}
.ws7_c01253{word-spacing:-12.220789pt;}
.ws14_c01253{word-spacing:-11.742585pt;}
.ws13_c01253{word-spacing:-11.730641pt;}
.ws11_c01253{word-spacing:-11.636317pt;}
.wsa_c01253{word-spacing:-11.317514pt;}
.wsb_c01253{word-spacing:-11.264380pt;}
.ws1_c01253{word-spacing:-8.878599pt;}
.ws3_c01253{word-spacing:-8.877777pt;}
.ws1c_c01253{word-spacing:0.000000pt;}
.ws6_c01253{word-spacing:0.015872pt;}
.ws19_c01253{word-spacing:0.039110pt;}
.ws17_c01253{word-spacing:0.156442pt;}
.ws1b_c01253{word-spacing:0.189730pt;}
.ws1a_c01253{word-spacing:0.195063pt;}
.ws0_c01253{word-spacing:38.256533pt;}
._1_c01253{margin-left:-5.661967pt;}
._6_c01253{margin-left:-4.138985pt;}
._4_c01253{margin-left:-2.665738pt;}
._0_c01253{margin-left:-1.377235pt;}
._a_c01253{width:0.893988pt;}
._7_c01253{width:15.560374pt;}
._2_c01253{width:17.720725pt;}
._5_c01253{width:18.862523pt;}
._8_c01253{width:19.766978pt;}
._3_c01253{width:26.248130pt;}
._9_c01253{width:28.479753pt;}
.fs2_c01253{font-size:39.110400pt;}
.fs1_c01253{font-size:53.133867pt;}
.fs0_c01253{font-size:76.513067pt;}
.y0_c01253{bottom:0.000000pt;}
.y1d_c01253{bottom:39.333333pt;}
.y1c_c01253{bottom:72.934667pt;}
.y1b_c01253{bottom:87.546667pt;}
.y1a_c01253{bottom:102.157333pt;}
.y19_c01253{bottom:116.769333pt;}
.y18_c01253{bottom:131.049333pt;}
.y17_c01253{bottom:172.558667pt;}
.y16_c01253{bottom:188.498667pt;}
.y15_c01253{bottom:204.438667pt;}
.y14_c01253{bottom:220.378667pt;}
.y13_c01253{bottom:236.318667pt;}
.y12_c01253{bottom:252.260000pt;}
.y11_c01253{bottom:268.200000pt;}
.y10_c01253{bottom:304.052000pt;}
.yf_c01253{bottom:330.172000pt;}
.ye_c01253{bottom:356.292000pt;}
.yd_c01253{bottom:382.412000pt;}
.yc_c01253{bottom:398.352000pt;}
.yb_c01253{bottom:434.204000pt;}
.ya_c01253{bottom:450.144000pt;}
.y9_c01253{bottom:473.830667pt;}
.y8_c01253{bottom:489.772000pt;}
.y7_c01253{bottom:505.712000pt;}
.y6_c01253{bottom:521.652000pt;}
.y5_c01253{bottom:545.338667pt;}
.y4_c01253{bottom:569.025333pt;}
.y3_c01253{bottom:592.712000pt;}
.y2_c01253{bottom:616.398667pt;}
.y1_c01253{bottom:653.750667pt;}
.h5_c01253{height:31.280681pt;}
.h6_c01253{height:32.006363pt;}
.h3_c01253{height:36.010648pt;}
.h4_c01253{height:46.518078pt;}
.h2_c01253{height:51.855535pt;}
.h0_c01253{height:1122.520000pt;}
.h1_c01253{height:1122.666667pt;}
.w0_c01253{width:793.706667pt;}
.w1_c01253{width:794.000000pt;}
.x0_c01253{left:0.000000pt;}
.x1_c01253{left:113.385333pt;}
.x4_c01253{left:121.886667pt;}
.x2_c01253{left:135.302667pt;}
.x3_c01253{left:146.594667pt;}
.x5_c01253{left:386.888000pt;}
}





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

.ir_c01254:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01254;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01254;src:url('chunks/assets/font_25952ecbcb35b9f71d02a0d3.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01254;src:url('chunks/assets/font_d1763b9f7beadb7e82c6a059.woff2')format("woff");}.ff4_c01254{font-family:ff4_c01254;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01254{vertical-align:0.000000px;}
.ls4_c01254{letter-spacing:0.000000px;}
.ls1_c01254{letter-spacing:0.087998px;}
.ls2_c01254{letter-spacing:0.098482px;}
.ls0_c01254{letter-spacing:0.104482px;}
.ls3_c01254{letter-spacing:26.690482px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01254{word-spacing:-26.575517px;}
.ws0_c01254{word-spacing:-26.487518px;}
.ws2_c01254{word-spacing:0.000000px;}
.ws7_c01254{word-spacing:0.036900px;}
.ws4_c01254{word-spacing:0.043999px;}
.ws6_c01254{word-spacing:0.053933px;}
.wsa_c01254{word-spacing:0.064416px;}
.ws8_c01254{word-spacing:0.070416px;}
.wsb_c01254{word-spacing:0.100217px;}
.ws5_c01254{word-spacing:0.175997px;}
.ws3_c01254{word-spacing:0.213446px;}
.ws9_c01254{word-spacing:0.219446px;}
._0_c01254{width:1.031604px;}
._1_c01254{width:80.078544px;}
.fc5_c01254{color:rgb(0,0,207);}
.fc4_c01254{color:rgb(143,89,3);}
.fc3_c01254{color:rgb(79,153,5);}
.fc2_c01254{color:rgb(207,92,0);}
.fc1_c01254{color:rgb(0,0,0);}
.fc0_c01254{color:rgb(33,74,135);}
.fs0_c01254{font-size:43.999200px;}
.fs1_c01254{font-size:59.775600px;}
.y0_c01254{bottom:0.000000px;}
.y39_c01254{bottom:44.250000px;}
.y38_c01254{bottom:91.369500px;}
.y37_c01254{bottom:107.808000px;}
.y36_c01254{bottom:124.246500px;}
.y35_c01254{bottom:140.685000px;}
.y34_c01254{bottom:157.123500px;}
.y33_c01254{bottom:173.562000px;}
.y32_c01254{bottom:190.000500px;}
.y31_c01254{bottom:206.437500px;}
.y30_c01254{bottom:222.876000px;}
.y2f_c01254{bottom:239.314500px;}
.y2e_c01254{bottom:255.753000px;}
.y2d_c01254{bottom:272.191500px;}
.y2c_c01254{bottom:288.630000px;}
.y2b_c01254{bottom:305.068500px;}
.y2a_c01254{bottom:321.507000px;}
.y29_c01254{bottom:337.945500px;}
.y28_c01254{bottom:354.384000px;}
.y27_c01254{bottom:370.822500px;}
.y26_c01254{bottom:387.259500px;}
.y25_c01254{bottom:403.698000px;}
.y24_c01254{bottom:436.575000px;}
.y23_c01254{bottom:453.013500px;}
.y22_c01254{bottom:469.452000px;}
.y21_c01254{bottom:485.890500px;}
.y20_c01254{bottom:502.329000px;}
.y1f_c01254{bottom:518.767500px;}
.y1e_c01254{bottom:551.643000px;}
.y1d_c01254{bottom:568.081500px;}
.y1c_c01254{bottom:584.520000px;}
.y1b_c01254{bottom:600.958500px;}
.y1a_c01254{bottom:633.835500px;}
.y19_c01254{bottom:650.274000px;}
.y18_c01254{bottom:666.712500px;}
.y17_c01254{bottom:683.151000px;}
.y16_c01254{bottom:716.028000px;}
.y15_c01254{bottom:732.465000px;}
.y14_c01254{bottom:748.903500px;}
.y13_c01254{bottom:765.342000px;}
.y12_c01254{bottom:781.780500px;}
.y11_c01254{bottom:798.219000px;}
.y10_c01254{bottom:814.657500px;}
.yf_c01254{bottom:847.534500px;}
.ye_c01254{bottom:863.973000px;}
.yd_c01254{bottom:880.411500px;}
.yc_c01254{bottom:913.287000px;}
.yb_c01254{bottom:929.725500px;}
.ya_c01254{bottom:979.041000px;}
.y9_c01254{bottom:995.479500px;}
.y8_c01254{bottom:1028.356500px;}
.y7_c01254{bottom:1044.795000px;}
.y6_c01254{bottom:1061.232000px;}
.y5_c01254{bottom:1077.670500px;}
.y4_c01254{bottom:1110.547500px;}
.y3_c01254{bottom:1126.986000px;}
.y2_c01254{bottom:1143.424500px;}
.y1_c01254{bottom:1159.863000px;}
.h3_c01254{height:35.190766px;}
.h2_c01254{height:36.007158px;}
.h4_c01254{height:52.332837px;}
.h0_c01254{height:1262.835000px;}
.h1_c01254{height:1263.000000px;}
.w0_c01254{width:892.920000px;}
.w1_c01254{width:893.250000px;}
.x0_c01254{left:0.000000px;}
.x1_c01254{left:137.122500px;}
.x2_c01254{left:143.770500px;}
.x5_c01254{left:170.359500px;}
.x4_c01254{left:177.007500px;}
.x3_c01254{left:203.596500px;}
.x6_c01254{left:210.243000px;}
.x7_c01254{left:230.185500px;}
.x8_c01254{left:256.774500px;}
.x9_c01254{left:435.249000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls4_c01254{letter-spacing:0.000000pt;}
.ls1_c01254{letter-spacing:0.078221pt;}
.ls2_c01254{letter-spacing:0.087539pt;}
.ls0_c01254{letter-spacing:0.092873pt;}
.ls3_c01254{letter-spacing:23.724873pt;}
.ws1_c01254{word-spacing:-23.622682pt;}
.ws0_c01254{word-spacing:-23.544461pt;}
.ws2_c01254{word-spacing:0.000000pt;}
.ws7_c01254{word-spacing:0.032800pt;}
.ws4_c01254{word-spacing:0.039110pt;}
.ws6_c01254{word-spacing:0.047940pt;}
.wsa_c01254{word-spacing:0.057259pt;}
.ws8_c01254{word-spacing:0.062592pt;}
.wsb_c01254{word-spacing:0.089082pt;}
.ws5_c01254{word-spacing:0.156442pt;}
.ws3_c01254{word-spacing:0.189730pt;}
.ws9_c01254{word-spacing:0.195063pt;}
._0_c01254{width:0.916981pt;}
._1_c01254{width:71.180928pt;}
.fs0_c01254{font-size:39.110400pt;}
.fs1_c01254{font-size:53.133867pt;}
.y0_c01254{bottom:0.000000pt;}
.y39_c01254{bottom:39.333333pt;}
.y38_c01254{bottom:81.217333pt;}
.y37_c01254{bottom:95.829333pt;}
.y36_c01254{bottom:110.441333pt;}
.y35_c01254{bottom:125.053333pt;}
.y34_c01254{bottom:139.665333pt;}
.y33_c01254{bottom:154.277333pt;}
.y32_c01254{bottom:168.889333pt;}
.y31_c01254{bottom:183.500000pt;}
.y30_c01254{bottom:198.112000pt;}
.y2f_c01254{bottom:212.724000pt;}
.y2e_c01254{bottom:227.336000pt;}
.y2d_c01254{bottom:241.948000pt;}
.y2c_c01254{bottom:256.560000pt;}
.y2b_c01254{bottom:271.172000pt;}
.y2a_c01254{bottom:285.784000pt;}
.y29_c01254{bottom:300.396000pt;}
.y28_c01254{bottom:315.008000pt;}
.y27_c01254{bottom:329.620000pt;}
.y26_c01254{bottom:344.230667pt;}
.y25_c01254{bottom:358.842667pt;}
.y24_c01254{bottom:388.066667pt;}
.y23_c01254{bottom:402.678667pt;}
.y22_c01254{bottom:417.290667pt;}
.y21_c01254{bottom:431.902667pt;}
.y20_c01254{bottom:446.514667pt;}
.y1f_c01254{bottom:461.126667pt;}
.y1e_c01254{bottom:490.349333pt;}
.y1d_c01254{bottom:504.961333pt;}
.y1c_c01254{bottom:519.573333pt;}
.y1b_c01254{bottom:534.185333pt;}
.y1a_c01254{bottom:563.409333pt;}
.y19_c01254{bottom:578.021333pt;}
.y18_c01254{bottom:592.633333pt;}
.y17_c01254{bottom:607.245333pt;}
.y16_c01254{bottom:636.469333pt;}
.y15_c01254{bottom:651.080000pt;}
.y14_c01254{bottom:665.692000pt;}
.y13_c01254{bottom:680.304000pt;}
.y12_c01254{bottom:694.916000pt;}
.y11_c01254{bottom:709.528000pt;}
.y10_c01254{bottom:724.140000pt;}
.yf_c01254{bottom:753.364000pt;}
.ye_c01254{bottom:767.976000pt;}
.yd_c01254{bottom:782.588000pt;}
.yc_c01254{bottom:811.810667pt;}
.yb_c01254{bottom:826.422667pt;}
.ya_c01254{bottom:870.258667pt;}
.y9_c01254{bottom:884.870667pt;}
.y8_c01254{bottom:914.094667pt;}
.y7_c01254{bottom:928.706667pt;}
.y6_c01254{bottom:943.317333pt;}
.y5_c01254{bottom:957.929333pt;}
.y4_c01254{bottom:987.153333pt;}
.y3_c01254{bottom:1001.765333pt;}
.y2_c01254{bottom:1016.377333pt;}
.y1_c01254{bottom:1030.989333pt;}
.h3_c01254{height:31.280681pt;}
.h2_c01254{height:32.006363pt;}
.h4_c01254{height:46.518078pt;}
.h0_c01254{height:1122.520000pt;}
.h1_c01254{height:1122.666667pt;}
.w0_c01254{width:793.706667pt;}
.w1_c01254{width:794.000000pt;}
.x0_c01254{left:0.000000pt;}
.x1_c01254{left:121.886667pt;}
.x2_c01254{left:127.796000pt;}
.x5_c01254{left:151.430667pt;}
.x4_c01254{left:157.340000pt;}
.x3_c01254{left:180.974667pt;}
.x6_c01254{left:186.882667pt;}
.x7_c01254{left:204.609333pt;}
.x8_c01254{left:228.244000pt;}
.x9_c01254{left:386.888000pt;}
}





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

.ir_c01255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_6408d2f763d51dffa090fc63.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01255;src:url('chunks/assets/font_5f9b4db38e0ff356affda4fb.woff2')format("woff");}.ff2_c01255{font-family:ff2_c01255;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01255;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01255{font-family:ff3_c01255;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01255;src:url('chunks/assets/font_841c933539afe7f480680e29.woff2')format("woff");}.ff4_c01255{font-family:ff4_c01255;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01255{vertical-align:0.000000px;}
.ls4_c01255{letter-spacing:0.000000px;}
.ls0_c01255{letter-spacing:0.087998px;}
.ls1_c01255{letter-spacing:0.098482px;}
.ls3_c01255{letter-spacing:0.104482px;}
.ls2_c01255{letter-spacing:0.140482px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01255{word-spacing:-26.575517px;}
.ws2_c01255{word-spacing:-26.487518px;}
.ws4_c01255{word-spacing:0.000000px;}
.ws3_c01255{word-spacing:0.043999px;}
.ws1_c01255{word-spacing:0.053933px;}
.ws5_c01255{word-spacing:0.056767px;}
.ws6_c01255{word-spacing:0.213446px;}
._0_c01255{width:1.028438px;}
.fc5_c01255{color:rgb(0,0,207);}
.fc4_c01255{color:rgb(79,153,5);}
.fc3_c01255{color:rgb(33,74,135);}
.fc2_c01255{color:rgb(207,92,0);}
.fc1_c01255{color:rgb(143,89,3);}
.fc0_c01255{color:rgb(0,0,0);}
.fs0_c01255{font-size:43.999200px;}
.fs1_c01255{font-size:59.775600px;}
.y0_c01255{bottom:0.000000px;}
.y2b_c01255{bottom:44.250000px;}
.y2a_c01255{bottom:436.575000px;}
.y29_c01255{bottom:453.013500px;}
.y28_c01255{bottom:469.452000px;}
.y27_c01255{bottom:485.890500px;}
.y26_c01255{bottom:502.329000px;}
.y25_c01255{bottom:518.767500px;}
.y24_c01255{bottom:535.206000px;}
.y23_c01255{bottom:551.643000px;}
.y22_c01255{bottom:568.081500px;}
.y21_c01255{bottom:584.520000px;}
.y20_c01255{bottom:600.958500px;}
.y1f_c01255{bottom:633.835500px;}
.y1e_c01255{bottom:650.274000px;}
.y1d_c01255{bottom:666.712500px;}
.y1c_c01255{bottom:699.589500px;}
.y1b_c01255{bottom:716.028000px;}
.y1a_c01255{bottom:732.465000px;}
.y19_c01255{bottom:748.903500px;}
.y18_c01255{bottom:765.342000px;}
.y17_c01255{bottom:781.780500px;}
.y16_c01255{bottom:798.219000px;}
.y15_c01255{bottom:814.657500px;}
.y14_c01255{bottom:831.096000px;}
.y13_c01255{bottom:847.534500px;}
.y12_c01255{bottom:863.973000px;}
.y11_c01255{bottom:880.411500px;}
.y10_c01255{bottom:896.848500px;}
.yf_c01255{bottom:913.287000px;}
.ye_c01255{bottom:929.725500px;}
.yd_c01255{bottom:946.164000px;}
.yc_c01255{bottom:962.602500px;}
.yb_c01255{bottom:979.041000px;}
.ya_c01255{bottom:995.479500px;}
.y9_c01255{bottom:1011.918000px;}
.y8_c01255{bottom:1028.356500px;}
.y7_c01255{bottom:1044.795000px;}
.y6_c01255{bottom:1061.232000px;}
.y5_c01255{bottom:1077.670500px;}
.y4_c01255{bottom:1094.109000px;}
.y3_c01255{bottom:1110.547500px;}
.y2_c01255{bottom:1143.424500px;}
.y1_c01255{bottom:1159.863000px;}
.h3_c01255{height:35.190766px;}
.h2_c01255{height:36.007158px;}
.h4_c01255{height:52.332837px;}
.h0_c01255{height:1262.835000px;}
.h1_c01255{height:1263.000000px;}
.w0_c01255{width:892.920000px;}
.w1_c01255{width:893.250000px;}
.x0_c01255{left:0.000000px;}
.x1_c01255{left:137.122500px;}
.x2_c01255{left:143.770500px;}
.x6_c01255{left:177.007500px;}
.x5_c01255{left:230.185500px;}
.x3_c01255{left:243.480000px;}
.x4_c01255{left:276.715500px;}
.x7_c01255{left:435.249000px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls4_c01255{letter-spacing:0.000000pt;}
.ls0_c01255{letter-spacing:0.078221pt;}
.ls1_c01255{letter-spacing:0.087539pt;}
.ls3_c01255{letter-spacing:0.092873pt;}
.ls2_c01255{letter-spacing:0.124873pt;}
.ws0_c01255{word-spacing:-23.622682pt;}
.ws2_c01255{word-spacing:-23.544461pt;}
.ws4_c01255{word-spacing:0.000000pt;}
.ws3_c01255{word-spacing:0.039110pt;}
.ws1_c01255{word-spacing:0.047940pt;}
.ws5_c01255{word-spacing:0.050460pt;}
.ws6_c01255{word-spacing:0.189730pt;}
._0_c01255{width:0.914167pt;}
.fs0_c01255{font-size:39.110400pt;}
.fs1_c01255{font-size:53.133867pt;}
.y0_c01255{bottom:0.000000pt;}
.y2b_c01255{bottom:39.333333pt;}
.y2a_c01255{bottom:388.066667pt;}
.y29_c01255{bottom:402.678667pt;}
.y28_c01255{bottom:417.290667pt;}
.y27_c01255{bottom:431.902667pt;}
.y26_c01255{bottom:446.514667pt;}
.y25_c01255{bottom:461.126667pt;}
.y24_c01255{bottom:475.738667pt;}
.y23_c01255{bottom:490.349333pt;}
.y22_c01255{bottom:504.961333pt;}
.y21_c01255{bottom:519.573333pt;}
.y20_c01255{bottom:534.185333pt;}
.y1f_c01255{bottom:563.409333pt;}
.y1e_c01255{bottom:578.021333pt;}
.y1d_c01255{bottom:592.633333pt;}
.y1c_c01255{bottom:621.857333pt;}
.y1b_c01255{bottom:636.469333pt;}
.y1a_c01255{bottom:651.080000pt;}
.y19_c01255{bottom:665.692000pt;}
.y18_c01255{bottom:680.304000pt;}
.y17_c01255{bottom:694.916000pt;}
.y16_c01255{bottom:709.528000pt;}
.y15_c01255{bottom:724.140000pt;}
.y14_c01255{bottom:738.752000pt;}
.y13_c01255{bottom:753.364000pt;}
.y12_c01255{bottom:767.976000pt;}
.y11_c01255{bottom:782.588000pt;}
.y10_c01255{bottom:797.198667pt;}
.yf_c01255{bottom:811.810667pt;}
.ye_c01255{bottom:826.422667pt;}
.yd_c01255{bottom:841.034667pt;}
.yc_c01255{bottom:855.646667pt;}
.yb_c01255{bottom:870.258667pt;}
.ya_c01255{bottom:884.870667pt;}
.y9_c01255{bottom:899.482667pt;}
.y8_c01255{bottom:914.094667pt;}
.y7_c01255{bottom:928.706667pt;}
.y6_c01255{bottom:943.317333pt;}
.y5_c01255{bottom:957.929333pt;}
.y4_c01255{bottom:972.541333pt;}
.y3_c01255{bottom:987.153333pt;}
.y2_c01255{bottom:1016.377333pt;}
.y1_c01255{bottom:1030.989333pt;}
.h3_c01255{height:31.280681pt;}
.h2_c01255{height:32.006363pt;}
.h4_c01255{height:46.518078pt;}
.h0_c01255{height:1122.520000pt;}
.h1_c01255{height:1122.666667pt;}
.w0_c01255{width:793.706667pt;}
.w1_c01255{width:794.000000pt;}
.x0_c01255{left:0.000000pt;}
.x1_c01255{left:121.886667pt;}
.x2_c01255{left:127.796000pt;}
.x6_c01255{left:157.340000pt;}
.x5_c01255{left:204.609333pt;}
.x3_c01255{left:216.426667pt;}
.x4_c01255{left:245.969333pt;}
.x7_c01255{left:386.888000pt;}
}





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

.ir_c01256:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_f15fcb7f13915b5b150104c3.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01256;src:url('chunks/assets/font_c9a6ae3d60eeb629d64f06b3.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01256;src:url('chunks/assets/font_04187e47b6646a7c810f7c82.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01256;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01256{font-family:ff4_c01256;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01256;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01256{font-family:ff5_c01256;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01256{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01256{vertical-align:0.000000px;}
.ls3_c01256{letter-spacing:0.000000px;}
.ls0_c01256{letter-spacing:0.087998px;}
.ls2_c01256{letter-spacing:0.098482px;}
.ls1_c01256{letter-spacing:0.104482px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01256{word-spacing:-33.713438px;}
.ws2_c01256{word-spacing:-26.575517px;}
.wse_c01256{word-spacing:-26.487518px;}
.ws9_c01256{word-spacing:-21.553319px;}
.ws8_c01256{word-spacing:-21.519216px;}
.ws5_c01256{word-spacing:-18.769538px;}
.ws7_c01256{word-spacing:-16.019861px;}
.ws4_c01256{word-spacing:-14.943900px;}
.wsa_c01256{word-spacing:-14.107042px;}
.wsb_c01256{word-spacing:-12.074671px;}
.ws1_c01256{word-spacing:-9.988424px;}
.ws3_c01256{word-spacing:-9.987499px;}
.ws6_c01256{word-spacing:-4.536144px;}
.ws12_c01256{word-spacing:0.000000px;}
.wsf_c01256{word-spacing:0.043999px;}
.ws15_c01256{word-spacing:0.056767px;}
.ws13_c01256{word-spacing:0.073250px;}
.ws14_c01256{word-spacing:0.083734px;}
.wsd_c01256{word-spacing:0.175997px;}
.ws16_c01256{word-spacing:0.202963px;}
.ws10_c01256{word-spacing:0.213446px;}
.ws11_c01256{word-spacing:0.219446px;}
.ws0_c01256{word-spacing:43.038600px;}
._1_c01256{margin-left:-6.369713px;}
._4_c01256{margin-left:-3.825638px;}
._0_c01256{margin-left:-1.549390px;}
._5_c01256{width:1.005737px;}
._2_c01256{width:19.935816px;}
._3_c01256{width:40.109428px;}
._7_c01256{width:53.283031px;}
._6_c01256{width:79.858548px;}
._8_c01256{width:133.452408px;}
.fc6_c01256{color:rgb(0,0,207);}
.fc5_c01256{color:rgb(79,153,5);}
.fc3_c01256{color:rgb(33,74,135);}
.fc2_c01256{color:rgb(143,89,3);}
.fc4_c01256{color:rgb(207,92,0);}
.fc1_c01256{color:rgb(6,69,173);}
.fc0_c01256{color:rgb(0,0,0);}
.fs2_c01256{font-size:43.999200px;}
.fs1_c01256{font-size:59.775600px;}
.fs0_c01256{font-size:86.077200px;}
.y0_c01256{bottom:0.000000px;}
.y20_c01256{bottom:44.250000px;}
.y1f_c01256{bottom:86.982000px;}
.y1e_c01256{bottom:103.420500px;}
.y1d_c01256{bottom:119.859000px;}
.y1c_c01256{bottom:136.297500px;}
.y1b_c01256{bottom:152.736000px;}
.y1a_c01256{bottom:169.174500px;}
.y19_c01256{bottom:185.613000px;}
.y18_c01256{bottom:202.051500px;}
.y17_c01256{bottom:218.490000px;}
.y16_c01256{bottom:234.927000px;}
.y15_c01256{bottom:251.365500px;}
.y14_c01256{bottom:267.804000px;}
.y13_c01256{bottom:284.242500px;}
.y12_c01256{bottom:300.681000px;}
.y11_c01256{bottom:317.119500px;}
.y10_c01256{bottom:349.996500px;}
.yf_c01256{bottom:366.435000px;}
.ye_c01256{bottom:415.749000px;}
.yd_c01256{bottom:432.187500px;}
.yc_c01256{bottom:448.252500px;}
.yb_c01256{bottom:493.890000px;}
.ya_c01256{bottom:511.822500px;}
.y9_c01256{bottom:529.756500px;}
.y8_c01256{bottom:547.689000px;}
.y7_c01256{bottom:565.621500px;}
.y6_c01256{bottom:583.554000px;}
.y5_c01256{bottom:610.633500px;}
.y4_c01256{bottom:637.714500px;}
.y3_c01256{bottom:664.794000px;}
.y2_c01256{bottom:691.873500px;}
.y1_c01256{bottom:734.407500px;}
.h5_c01256{height:35.190766px;}
.h6_c01256{height:36.007158px;}
.h3_c01256{height:40.511979px;}
.h4_c01256{height:52.332837px;}
.h2_c01256{height:58.337477px;}
.h0_c01256{height:1262.835000px;}
.h1_c01256{height:1263.000000px;}
.w0_c01256{width:892.920000px;}
.w1_c01256{width:893.250000px;}
.x0_c01256{left:0.000000px;}
.x1_c01256{left:127.558500px;}
.x2_c01256{left:137.122500px;}
.x3_c01256{left:143.770500px;}
.x4_c01256{left:435.249000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls3_c01256{letter-spacing:0.000000pt;}
.ls0_c01256{letter-spacing:0.078221pt;}
.ls2_c01256{letter-spacing:0.087539pt;}
.ls1_c01256{letter-spacing:0.092873pt;}
.wsc_c01256{word-spacing:-29.967501pt;}
.ws2_c01256{word-spacing:-23.622682pt;}
.wse_c01256{word-spacing:-23.544461pt;}
.ws9_c01256{word-spacing:-19.158506pt;}
.ws8_c01256{word-spacing:-19.128192pt;}
.ws5_c01256{word-spacing:-16.684034pt;}
.ws7_c01256{word-spacing:-14.239876pt;}
.ws4_c01256{word-spacing:-13.283467pt;}
.wsa_c01256{word-spacing:-12.539593pt;}
.wsb_c01256{word-spacing:-10.733041pt;}
.ws1_c01256{word-spacing:-8.878599pt;}
.ws3_c01256{word-spacing:-8.877777pt;}
.ws6_c01256{word-spacing:-4.032128pt;}
.ws12_c01256{word-spacing:0.000000pt;}
.wsf_c01256{word-spacing:0.039110pt;}
.ws15_c01256{word-spacing:0.050460pt;}
.ws13_c01256{word-spacing:0.065111pt;}
.ws14_c01256{word-spacing:0.074430pt;}
.wsd_c01256{word-spacing:0.156442pt;}
.ws16_c01256{word-spacing:0.180412pt;}
.ws10_c01256{word-spacing:0.189730pt;}
.ws11_c01256{word-spacing:0.195063pt;}
.ws0_c01256{word-spacing:38.256533pt;}
._1_c01256{margin-left:-5.661967pt;}
._4_c01256{margin-left:-3.400567pt;}
._0_c01256{margin-left:-1.377235pt;}
._5_c01256{width:0.893988pt;}
._2_c01256{width:17.720725pt;}
._3_c01256{width:35.652825pt;}
._7_c01256{width:47.362694pt;}
._6_c01256{width:70.985376pt;}
._8_c01256{width:118.624363pt;}
.fs2_c01256{font-size:39.110400pt;}
.fs1_c01256{font-size:53.133867pt;}
.fs0_c01256{font-size:76.513067pt;}
.y0_c01256{bottom:0.000000pt;}
.y20_c01256{bottom:39.333333pt;}
.y1f_c01256{bottom:77.317333pt;}
.y1e_c01256{bottom:91.929333pt;}
.y1d_c01256{bottom:106.541333pt;}
.y1c_c01256{bottom:121.153333pt;}
.y1b_c01256{bottom:135.765333pt;}
.y1a_c01256{bottom:150.377333pt;}
.y19_c01256{bottom:164.989333pt;}
.y18_c01256{bottom:179.601333pt;}
.y17_c01256{bottom:194.213333pt;}
.y16_c01256{bottom:208.824000pt;}
.y15_c01256{bottom:223.436000pt;}
.y14_c01256{bottom:238.048000pt;}
.y13_c01256{bottom:252.660000pt;}
.y12_c01256{bottom:267.272000pt;}
.y11_c01256{bottom:281.884000pt;}
.y10_c01256{bottom:311.108000pt;}
.yf_c01256{bottom:325.720000pt;}
.ye_c01256{bottom:369.554667pt;}
.yd_c01256{bottom:384.166667pt;}
.yc_c01256{bottom:398.446667pt;}
.yb_c01256{bottom:439.013333pt;}
.ya_c01256{bottom:454.953333pt;}
.y9_c01256{bottom:470.894667pt;}
.y8_c01256{bottom:486.834667pt;}
.y7_c01256{bottom:502.774667pt;}
.y6_c01256{bottom:518.714667pt;}
.y5_c01256{bottom:542.785333pt;}
.y4_c01256{bottom:566.857333pt;}
.y3_c01256{bottom:590.928000pt;}
.y2_c01256{bottom:614.998667pt;}
.y1_c01256{bottom:652.806667pt;}
.h5_c01256{height:31.280681pt;}
.h6_c01256{height:32.006363pt;}
.h3_c01256{height:36.010648pt;}
.h4_c01256{height:46.518078pt;}
.h2_c01256{height:51.855535pt;}
.h0_c01256{height:1122.520000pt;}
.h1_c01256{height:1122.666667pt;}
.w0_c01256{width:793.706667pt;}
.w1_c01256{width:794.000000pt;}
.x0_c01256{left:0.000000pt;}
.x1_c01256{left:113.385333pt;}
.x2_c01256{left:121.886667pt;}
.x3_c01256{left:127.796000pt;}
.x4_c01256{left:386.888000pt;}
}





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

.ir_c01257:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_7bec15fb35a419f86a16d68f.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01257;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01257;src:url('chunks/assets/font_3b94df235338363e59283945.woff2')format("woff");}.ff3_c01257{font-family:ff3_c01257;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01257;src:url('chunks/assets/font_dde3bb4f404665d9ec2fdea4.woff2')format("woff");}.ff4_c01257{font-family:ff4_c01257;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01257;src:url('chunks/assets/font_580c4ad46d11e437721463a6.woff2')format("woff");}.ff5_c01257{font-family:ff5_c01257;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01257{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01257{vertical-align:0.000000px;}
.ls4_c01257{letter-spacing:0.000000px;}
.ls0_c01257{letter-spacing:0.087998px;}
.ls2_c01257{letter-spacing:0.098482px;}
.ls3_c01257{letter-spacing:0.104482px;}
.ls1_c01257{letter-spacing:26.690482px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01257{word-spacing:-26.575517px;}
.ws4_c01257{word-spacing:-26.487518px;}
.wse_c01257{word-spacing:-21.553319px;}
.wsd_c01257{word-spacing:-21.519216px;}
.wsa_c01257{word-spacing:-18.769538px;}
.wsc_c01257{word-spacing:-17.633802px;}
.ws9_c01257{word-spacing:-14.943900px;}
.wsf_c01257{word-spacing:-14.107042px;}
.ws10_c01257{word-spacing:-12.074671px;}
.ws7_c01257{word-spacing:-9.988424px;}
.ws8_c01257{word-spacing:-9.987499px;}
.wsb_c01257{word-spacing:-7.686144px;}
.ws3_c01257{word-spacing:0.000000px;}
.ws0_c01257{word-spacing:0.043999px;}
.ws5_c01257{word-spacing:0.213446px;}
.ws1_c01257{word-spacing:0.219446px;}
.ws6_c01257{word-spacing:43.038600px;}
._3_c01257{margin-left:-6.369713px;}
._2_c01257{margin-left:-1.549390px;}
._1_c01257{width:1.041538px;}
._4_c01257{width:19.935816px;}
._5_c01257{width:40.109428px;}
._0_c01257{width:80.078544px;}
.fc5_c01257{color:rgb(79,153,5);}
.fc4_c01257{color:rgb(143,89,3);}
.fc3_c01257{color:rgb(0,0,0);}
.fc6_c01257{color:rgb(6,69,173);}
.fc2_c01257{color:rgb(207,92,0);}
.fc1_c01257{color:rgb(0,0,207);}
.fc0_c01257{color:rgb(33,74,135);}
.fs0_c01257{font-size:43.999200px;}
.fs2_c01257{font-size:59.775600px;}
.fs1_c01257{font-size:86.077200px;}
.y0_c01257{bottom:0.000000px;}
.y20_c01257{bottom:44.250000px;}
.y1f_c01257{bottom:82.051500px;}
.y1e_c01257{bottom:99.984000px;}
.y1d_c01257{bottom:117.916500px;}
.y1c_c01257{bottom:135.849000px;}
.y1b_c01257{bottom:162.501000px;}
.y1a_c01257{bottom:189.151500px;}
.y19_c01257{bottom:215.802000px;}
.y18_c01257{bottom:242.454000px;}
.y17_c01257{bottom:284.478000px;}
.y16_c01257{bottom:748.903500px;}
.y15_c01257{bottom:765.342000px;}
.y14_c01257{bottom:781.780500px;}
.y13_c01257{bottom:798.219000px;}
.y12_c01257{bottom:814.657500px;}
.y11_c01257{bottom:831.096000px;}
.y10_c01257{bottom:847.534500px;}
.yf_c01257{bottom:863.973000px;}
.ye_c01257{bottom:880.411500px;}
.yd_c01257{bottom:896.848500px;}
.yc_c01257{bottom:913.287000px;}
.yb_c01257{bottom:946.164000px;}
.ya_c01257{bottom:962.602500px;}
.y9_c01257{bottom:979.041000px;}
.y8_c01257{bottom:1011.918000px;}
.y7_c01257{bottom:1028.356500px;}
.y6_c01257{bottom:1044.795000px;}
.y5_c01257{bottom:1061.232000px;}
.y4_c01257{bottom:1077.670500px;}
.y3_c01257{bottom:1094.109000px;}
.y2_c01257{bottom:1110.547500px;}
.y1_c01257{bottom:1159.863000px;}
.h3_c01257{height:35.190766px;}
.h2_c01257{height:36.007158px;}
.h5_c01257{height:40.511979px;}
.h6_c01257{height:52.332837px;}
.h4_c01257{height:58.337477px;}
.h0_c01257{height:1262.835000px;}
.h1_c01257{height:1263.000000px;}
.w0_c01257{width:892.920000px;}
.w1_c01257{width:893.250000px;}
.x0_c01257{left:0.000000px;}
.x4_c01257{left:127.558500px;}
.x2_c01257{left:137.122500px;}
.x1_c01257{left:143.770500px;}
.x3_c01257{left:177.007500px;}
.x5_c01257{left:435.249000px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls4_c01257{letter-spacing:0.000000pt;}
.ls0_c01257{letter-spacing:0.078221pt;}
.ls2_c01257{letter-spacing:0.087539pt;}
.ls3_c01257{letter-spacing:0.092873pt;}
.ls1_c01257{letter-spacing:23.724873pt;}
.ws2_c01257{word-spacing:-23.622682pt;}
.ws4_c01257{word-spacing:-23.544461pt;}
.wse_c01257{word-spacing:-19.158506pt;}
.wsd_c01257{word-spacing:-19.128192pt;}
.wsa_c01257{word-spacing:-16.684034pt;}
.wsc_c01257{word-spacing:-15.674491pt;}
.ws9_c01257{word-spacing:-13.283467pt;}
.wsf_c01257{word-spacing:-12.539593pt;}
.ws10_c01257{word-spacing:-10.733041pt;}
.ws7_c01257{word-spacing:-8.878599pt;}
.ws8_c01257{word-spacing:-8.877777pt;}
.wsb_c01257{word-spacing:-6.832128pt;}
.ws3_c01257{word-spacing:0.000000pt;}
.ws0_c01257{word-spacing:0.039110pt;}
.ws5_c01257{word-spacing:0.189730pt;}
.ws1_c01257{word-spacing:0.195063pt;}
.ws6_c01257{word-spacing:38.256533pt;}
._3_c01257{margin-left:-5.661967pt;}
._2_c01257{margin-left:-1.377235pt;}
._1_c01257{width:0.925811pt;}
._4_c01257{width:17.720725pt;}
._5_c01257{width:35.652825pt;}
._0_c01257{width:71.180928pt;}
.fs0_c01257{font-size:39.110400pt;}
.fs2_c01257{font-size:53.133867pt;}
.fs1_c01257{font-size:76.513067pt;}
.y0_c01257{bottom:0.000000pt;}
.y20_c01257{bottom:39.333333pt;}
.y1f_c01257{bottom:72.934667pt;}
.y1e_c01257{bottom:88.874667pt;}
.y1d_c01257{bottom:104.814667pt;}
.y1c_c01257{bottom:120.754667pt;}
.y1b_c01257{bottom:144.445333pt;}
.y1a_c01257{bottom:168.134667pt;}
.y19_c01257{bottom:191.824000pt;}
.y18_c01257{bottom:215.514667pt;}
.y17_c01257{bottom:252.869333pt;}
.y16_c01257{bottom:665.692000pt;}
.y15_c01257{bottom:680.304000pt;}
.y14_c01257{bottom:694.916000pt;}
.y13_c01257{bottom:709.528000pt;}
.y12_c01257{bottom:724.140000pt;}
.y11_c01257{bottom:738.752000pt;}
.y10_c01257{bottom:753.364000pt;}
.yf_c01257{bottom:767.976000pt;}
.ye_c01257{bottom:782.588000pt;}
.yd_c01257{bottom:797.198667pt;}
.yc_c01257{bottom:811.810667pt;}
.yb_c01257{bottom:841.034667pt;}
.ya_c01257{bottom:855.646667pt;}
.y9_c01257{bottom:870.258667pt;}
.y8_c01257{bottom:899.482667pt;}
.y7_c01257{bottom:914.094667pt;}
.y6_c01257{bottom:928.706667pt;}
.y5_c01257{bottom:943.317333pt;}
.y4_c01257{bottom:957.929333pt;}
.y3_c01257{bottom:972.541333pt;}
.y2_c01257{bottom:987.153333pt;}
.y1_c01257{bottom:1030.989333pt;}
.h3_c01257{height:31.280681pt;}
.h2_c01257{height:32.006363pt;}
.h5_c01257{height:36.010648pt;}
.h6_c01257{height:46.518078pt;}
.h4_c01257{height:51.855535pt;}
.h0_c01257{height:1122.520000pt;}
.h1_c01257{height:1122.666667pt;}
.w0_c01257{width:793.706667pt;}
.w1_c01257{width:794.000000pt;}
.x0_c01257{left:0.000000pt;}
.x4_c01257{left:113.385333pt;}
.x2_c01257{left:121.886667pt;}
.x1_c01257{left:127.796000pt;}
.x3_c01257{left:157.340000pt;}
.x5_c01257{left:386.888000pt;}
}





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

.ir_c01258:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_3da4be91151cb0a49f4438cd.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01258;src:url('chunks/assets/font_b0164bbc13e5e412cd046bcf.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01258;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01258{font-family:ff3_c01258;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01258;src:url('chunks/assets/font_5ac9212c805e2dea81e859bc.woff2')format("woff");}.ff4_c01258{font-family:ff4_c01258;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01258{vertical-align:0.000000px;}
.ls4_c01258{letter-spacing:0.000000px;}
.ls1_c01258{letter-spacing:0.087998px;}
.ls2_c01258{letter-spacing:0.098482px;}
.ls0_c01258{letter-spacing:0.104482px;}
.ls3_c01258{letter-spacing:26.690482px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01258{word-spacing:-33.713438px;}
.ws4_c01258{word-spacing:-26.575517px;}
.ws3_c01258{word-spacing:-26.487518px;}
.ws0_c01258{word-spacing:-18.769538px;}
.ws8_c01258{word-spacing:0.000000px;}
.ws5_c01258{word-spacing:0.043999px;}
.wsb_c01258{word-spacing:0.056767px;}
.ws9_c01258{word-spacing:0.073250px;}
.wsa_c01258{word-spacing:0.083734px;}
.ws2_c01258{word-spacing:0.175997px;}
.wsc_c01258{word-spacing:0.202963px;}
.ws6_c01258{word-spacing:0.213446px;}
.ws7_c01258{word-spacing:0.219446px;}
._0_c01258{margin-left:-3.825638px;}
._1_c01258{width:1.005737px;}
._3_c01258{width:53.283031px;}
._2_c01258{width:79.858548px;}
._4_c01258{width:133.452408px;}
.fc5_c01258{color:rgb(0,0,207);}
.fc4_c01258{color:rgb(79,153,5);}
.fc3_c01258{color:rgb(207,92,0);}
.fc2_c01258{color:rgb(33,74,135);}
.fc1_c01258{color:rgb(143,89,3);}
.fc0_c01258{color:rgb(0,0,0);}
.fs1_c01258{font-size:43.999200px;}
.fs0_c01258{font-size:59.775600px;}
.y0_c01258{bottom:0.000000px;}
.y2d_c01258{bottom:44.250000px;}
.y2c_c01258{bottom:96.919500px;}
.y2b_c01258{bottom:113.358000px;}
.y2a_c01258{bottom:129.796500px;}
.y29_c01258{bottom:146.235000px;}
.y28_c01258{bottom:162.673500px;}
.y27_c01258{bottom:179.112000px;}
.y26_c01258{bottom:195.550500px;}
.y25_c01258{bottom:211.989000px;}
.y24_c01258{bottom:228.427500px;}
.y23_c01258{bottom:244.866000px;}
.y22_c01258{bottom:261.304500px;}
.y21_c01258{bottom:294.180000px;}
.y20_c01258{bottom:310.618500px;}
.y1f_c01258{bottom:327.057000px;}
.y1e_c01258{bottom:359.934000px;}
.y1d_c01258{bottom:376.372500px;}
.y1c_c01258{bottom:392.811000px;}
.y1b_c01258{bottom:409.249500px;}
.y1a_c01258{bottom:425.688000px;}
.y19_c01258{bottom:442.125000px;}
.y18_c01258{bottom:458.563500px;}
.y17_c01258{bottom:507.879000px;}
.y16_c01258{bottom:524.317500px;}
.y15_c01258{bottom:540.756000px;}
.y14_c01258{bottom:557.194500px;}
.y13_c01258{bottom:573.633000px;}
.y12_c01258{bottom:590.071500px;}
.y11_c01258{bottom:606.508500px;}
.y10_c01258{bottom:622.947000px;}
.yf_c01258{bottom:639.385500px;}
.ye_c01258{bottom:655.824000px;}
.yd_c01258{bottom:672.262500px;}
.yc_c01258{bottom:688.701000px;}
.yb_c01258{bottom:705.139500px;}
.ya_c01258{bottom:721.578000px;}
.y9_c01258{bottom:738.016500px;}
.y8_c01258{bottom:754.455000px;}
.y7_c01258{bottom:787.330500px;}
.y6_c01258{bottom:803.769000px;}
.y5_c01258{bottom:853.084500px;}
.y4_c01258{bottom:869.523000px;}
.y3_c01258{bottom:885.588000px;}
.y2_c01258{bottom:1141.930500px;}
.y1_c01258{bottom:1159.863000px;}
.h3_c01258{height:35.190766px;}
.h4_c01258{height:36.007158px;}
.h2_c01258{height:52.332837px;}
.h0_c01258{height:1262.835000px;}
.h1_c01258{height:1263.000000px;}
.w0_c01258{width:892.920000px;}
.w1_c01258{width:893.250000px;}
.x0_c01258{left:0.000000px;}
.x1_c01258{left:127.558500px;}
.x2_c01258{left:137.122500px;}
.x3_c01258{left:143.770500px;}
.x4_c01258{left:177.007500px;}
.x5_c01258{left:435.249000px;}
@media print{
.v0_c01258{vertical-align:0.000000pt;}
.ls4_c01258{letter-spacing:0.000000pt;}
.ls1_c01258{letter-spacing:0.078221pt;}
.ls2_c01258{letter-spacing:0.087539pt;}
.ls0_c01258{letter-spacing:0.092873pt;}
.ls3_c01258{letter-spacing:23.724873pt;}
.ws1_c01258{word-spacing:-29.967501pt;}
.ws4_c01258{word-spacing:-23.622682pt;}
.ws3_c01258{word-spacing:-23.544461pt;}
.ws0_c01258{word-spacing:-16.684034pt;}
.ws8_c01258{word-spacing:0.000000pt;}
.ws5_c01258{word-spacing:0.039110pt;}
.wsb_c01258{word-spacing:0.050460pt;}
.ws9_c01258{word-spacing:0.065111pt;}
.wsa_c01258{word-spacing:0.074430pt;}
.ws2_c01258{word-spacing:0.156442pt;}
.wsc_c01258{word-spacing:0.180412pt;}
.ws6_c01258{word-spacing:0.189730pt;}
.ws7_c01258{word-spacing:0.195063pt;}
._0_c01258{margin-left:-3.400567pt;}
._1_c01258{width:0.893988pt;}
._3_c01258{width:47.362694pt;}
._2_c01258{width:70.985376pt;}
._4_c01258{width:118.624363pt;}
.fs1_c01258{font-size:39.110400pt;}
.fs0_c01258{font-size:53.133867pt;}
.y0_c01258{bottom:0.000000pt;}
.y2d_c01258{bottom:39.333333pt;}
.y2c_c01258{bottom:86.150667pt;}
.y2b_c01258{bottom:100.762667pt;}
.y2a_c01258{bottom:115.374667pt;}
.y29_c01258{bottom:129.986667pt;}
.y28_c01258{bottom:144.598667pt;}
.y27_c01258{bottom:159.210667pt;}
.y26_c01258{bottom:173.822667pt;}
.y25_c01258{bottom:188.434667pt;}
.y24_c01258{bottom:203.046667pt;}
.y23_c01258{bottom:217.658667pt;}
.y22_c01258{bottom:232.270667pt;}
.y21_c01258{bottom:261.493333pt;}
.y20_c01258{bottom:276.105333pt;}
.y1f_c01258{bottom:290.717333pt;}
.y1e_c01258{bottom:319.941333pt;}
.y1d_c01258{bottom:334.553333pt;}
.y1c_c01258{bottom:349.165333pt;}
.y1b_c01258{bottom:363.777333pt;}
.y1a_c01258{bottom:378.389333pt;}
.y19_c01258{bottom:393.000000pt;}
.y18_c01258{bottom:407.612000pt;}
.y17_c01258{bottom:451.448000pt;}
.y16_c01258{bottom:466.060000pt;}
.y15_c01258{bottom:480.672000pt;}
.y14_c01258{bottom:495.284000pt;}
.y13_c01258{bottom:509.896000pt;}
.y12_c01258{bottom:524.508000pt;}
.y11_c01258{bottom:539.118667pt;}
.y10_c01258{bottom:553.730667pt;}
.yf_c01258{bottom:568.342667pt;}
.ye_c01258{bottom:582.954667pt;}
.yd_c01258{bottom:597.566667pt;}
.yc_c01258{bottom:612.178667pt;}
.yb_c01258{bottom:626.790667pt;}
.ya_c01258{bottom:641.402667pt;}
.y9_c01258{bottom:656.014667pt;}
.y8_c01258{bottom:670.626667pt;}
.y7_c01258{bottom:699.849333pt;}
.y6_c01258{bottom:714.461333pt;}
.y5_c01258{bottom:758.297333pt;}
.y4_c01258{bottom:772.909333pt;}
.y3_c01258{bottom:787.189333pt;}
.y2_c01258{bottom:1015.049333pt;}
.y1_c01258{bottom:1030.989333pt;}
.h3_c01258{height:31.280681pt;}
.h4_c01258{height:32.006363pt;}
.h2_c01258{height:46.518078pt;}
.h0_c01258{height:1122.520000pt;}
.h1_c01258{height:1122.666667pt;}
.w0_c01258{width:793.706667pt;}
.w1_c01258{width:794.000000pt;}
.x0_c01258{left:0.000000pt;}
.x1_c01258{left:113.385333pt;}
.x2_c01258{left:121.886667pt;}
.x3_c01258{left:127.796000pt;}
.x4_c01258{left:157.340000pt;}
.x5_c01258{left:386.888000pt;}
}





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

.ir_c01259:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_b4bd09d17473c8f6108b8c97.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01259;src:url('chunks/assets/font_cfd1004446da90b729d4871a.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01259;src:url('chunks/assets/font_6808bfe2465814b1dfde96ec.woff2')format("woff");}.ff3_c01259{font-family:ff3_c01259;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01259;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01259{font-family:ff4_c01259;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01259;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01259{font-family:ff5_c01259;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01259{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01259{vertical-align:0.000000px;}
.ls3_c01259{letter-spacing:0.000000px;}
.ls0_c01259{letter-spacing:0.087998px;}
.ls2_c01259{letter-spacing:0.098482px;}
.ls1_c01259{letter-spacing:0.104482px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01259{word-spacing:-33.713438px;}
.ws2_c01259{word-spacing:-26.575517px;}
.wse_c01259{word-spacing:-26.487518px;}
.ws9_c01259{word-spacing:-21.553319px;}
.ws8_c01259{word-spacing:-21.519216px;}
.ws5_c01259{word-spacing:-18.769538px;}
.ws7_c01259{word-spacing:-17.633802px;}
.ws4_c01259{word-spacing:-14.943900px;}
.wsa_c01259{word-spacing:-14.107042px;}
.wsb_c01259{word-spacing:-12.074671px;}
.ws1_c01259{word-spacing:-9.988424px;}
.ws3_c01259{word-spacing:-9.987499px;}
.ws6_c01259{word-spacing:-7.686144px;}
.ws12_c01259{word-spacing:0.000000px;}
.wsf_c01259{word-spacing:0.043999px;}
.ws15_c01259{word-spacing:0.056767px;}
.ws13_c01259{word-spacing:0.073250px;}
.ws14_c01259{word-spacing:0.083734px;}
.wsd_c01259{word-spacing:0.175997px;}
.ws16_c01259{word-spacing:0.202963px;}
.ws10_c01259{word-spacing:0.213446px;}
.ws11_c01259{word-spacing:0.219446px;}
.ws0_c01259{word-spacing:43.038600px;}
._1_c01259{margin-left:-6.369713px;}
._4_c01259{margin-left:-3.825638px;}
._0_c01259{margin-left:-1.549390px;}
._5_c01259{width:1.005737px;}
._2_c01259{width:19.935816px;}
._3_c01259{width:40.109428px;}
._7_c01259{width:53.283031px;}
._6_c01259{width:79.858548px;}
._8_c01259{width:133.452408px;}
.fc6_c01259{color:rgb(0,0,207);}
.fc5_c01259{color:rgb(79,153,5);}
.fc3_c01259{color:rgb(33,74,135);}
.fc2_c01259{color:rgb(143,89,3);}
.fc4_c01259{color:rgb(207,92,0);}
.fc1_c01259{color:rgb(6,69,173);}
.fc0_c01259{color:rgb(0,0,0);}
.fs2_c01259{font-size:43.999200px;}
.fs1_c01259{font-size:59.775600px;}
.fs0_c01259{font-size:86.077200px;}
.y0_c01259{bottom:0.000000px;}
.y20_c01259{bottom:44.250000px;}
.y1f_c01259{bottom:86.982000px;}
.y1e_c01259{bottom:103.420500px;}
.y1d_c01259{bottom:119.859000px;}
.y1c_c01259{bottom:136.297500px;}
.y1b_c01259{bottom:152.736000px;}
.y1a_c01259{bottom:169.174500px;}
.y19_c01259{bottom:185.613000px;}
.y18_c01259{bottom:202.051500px;}
.y17_c01259{bottom:218.490000px;}
.y16_c01259{bottom:234.927000px;}
.y15_c01259{bottom:251.365500px;}
.y14_c01259{bottom:267.804000px;}
.y13_c01259{bottom:284.242500px;}
.y12_c01259{bottom:300.681000px;}
.y11_c01259{bottom:317.119500px;}
.y10_c01259{bottom:349.996500px;}
.yf_c01259{bottom:366.435000px;}
.ye_c01259{bottom:415.749000px;}
.yd_c01259{bottom:432.187500px;}
.yc_c01259{bottom:448.252500px;}
.yb_c01259{bottom:493.890000px;}
.ya_c01259{bottom:511.822500px;}
.y9_c01259{bottom:529.756500px;}
.y8_c01259{bottom:547.689000px;}
.y7_c01259{bottom:565.621500px;}
.y6_c01259{bottom:583.554000px;}
.y5_c01259{bottom:610.633500px;}
.y4_c01259{bottom:637.714500px;}
.y3_c01259{bottom:664.794000px;}
.y2_c01259{bottom:691.873500px;}
.y1_c01259{bottom:734.407500px;}
.h5_c01259{height:35.190766px;}
.h6_c01259{height:36.007158px;}
.h3_c01259{height:40.511979px;}
.h4_c01259{height:52.332837px;}
.h2_c01259{height:58.337477px;}
.h0_c01259{height:1262.835000px;}
.h1_c01259{height:1263.000000px;}
.w0_c01259{width:892.920000px;}
.w1_c01259{width:893.250000px;}
.x0_c01259{left:0.000000px;}
.x1_c01259{left:127.558500px;}
.x2_c01259{left:137.122500px;}
.x3_c01259{left:143.770500px;}
.x4_c01259{left:435.249000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls3_c01259{letter-spacing:0.000000pt;}
.ls0_c01259{letter-spacing:0.078221pt;}
.ls2_c01259{letter-spacing:0.087539pt;}
.ls1_c01259{letter-spacing:0.092873pt;}
.wsc_c01259{word-spacing:-29.967501pt;}
.ws2_c01259{word-spacing:-23.622682pt;}
.wse_c01259{word-spacing:-23.544461pt;}
.ws9_c01259{word-spacing:-19.158506pt;}
.ws8_c01259{word-spacing:-19.128192pt;}
.ws5_c01259{word-spacing:-16.684034pt;}
.ws7_c01259{word-spacing:-15.674491pt;}
.ws4_c01259{word-spacing:-13.283467pt;}
.wsa_c01259{word-spacing:-12.539593pt;}
.wsb_c01259{word-spacing:-10.733041pt;}
.ws1_c01259{word-spacing:-8.878599pt;}
.ws3_c01259{word-spacing:-8.877777pt;}
.ws6_c01259{word-spacing:-6.832128pt;}
.ws12_c01259{word-spacing:0.000000pt;}
.wsf_c01259{word-spacing:0.039110pt;}
.ws15_c01259{word-spacing:0.050460pt;}
.ws13_c01259{word-spacing:0.065111pt;}
.ws14_c01259{word-spacing:0.074430pt;}
.wsd_c01259{word-spacing:0.156442pt;}
.ws16_c01259{word-spacing:0.180412pt;}
.ws10_c01259{word-spacing:0.189730pt;}
.ws11_c01259{word-spacing:0.195063pt;}
.ws0_c01259{word-spacing:38.256533pt;}
._1_c01259{margin-left:-5.661967pt;}
._4_c01259{margin-left:-3.400567pt;}
._0_c01259{margin-left:-1.377235pt;}
._5_c01259{width:0.893988pt;}
._2_c01259{width:17.720725pt;}
._3_c01259{width:35.652825pt;}
._7_c01259{width:47.362694pt;}
._6_c01259{width:70.985376pt;}
._8_c01259{width:118.624363pt;}
.fs2_c01259{font-size:39.110400pt;}
.fs1_c01259{font-size:53.133867pt;}
.fs0_c01259{font-size:76.513067pt;}
.y0_c01259{bottom:0.000000pt;}
.y20_c01259{bottom:39.333333pt;}
.y1f_c01259{bottom:77.317333pt;}
.y1e_c01259{bottom:91.929333pt;}
.y1d_c01259{bottom:106.541333pt;}
.y1c_c01259{bottom:121.153333pt;}
.y1b_c01259{bottom:135.765333pt;}
.y1a_c01259{bottom:150.377333pt;}
.y19_c01259{bottom:164.989333pt;}
.y18_c01259{bottom:179.601333pt;}
.y17_c01259{bottom:194.213333pt;}
.y16_c01259{bottom:208.824000pt;}
.y15_c01259{bottom:223.436000pt;}
.y14_c01259{bottom:238.048000pt;}
.y13_c01259{bottom:252.660000pt;}
.y12_c01259{bottom:267.272000pt;}
.y11_c01259{bottom:281.884000pt;}
.y10_c01259{bottom:311.108000pt;}
.yf_c01259{bottom:325.720000pt;}
.ye_c01259{bottom:369.554667pt;}
.yd_c01259{bottom:384.166667pt;}
.yc_c01259{bottom:398.446667pt;}
.yb_c01259{bottom:439.013333pt;}
.ya_c01259{bottom:454.953333pt;}
.y9_c01259{bottom:470.894667pt;}
.y8_c01259{bottom:486.834667pt;}
.y7_c01259{bottom:502.774667pt;}
.y6_c01259{bottom:518.714667pt;}
.y5_c01259{bottom:542.785333pt;}
.y4_c01259{bottom:566.857333pt;}
.y3_c01259{bottom:590.928000pt;}
.y2_c01259{bottom:614.998667pt;}
.y1_c01259{bottom:652.806667pt;}
.h5_c01259{height:31.280681pt;}
.h6_c01259{height:32.006363pt;}
.h3_c01259{height:36.010648pt;}
.h4_c01259{height:46.518078pt;}
.h2_c01259{height:51.855535pt;}
.h0_c01259{height:1122.520000pt;}
.h1_c01259{height:1122.666667pt;}
.w0_c01259{width:793.706667pt;}
.w1_c01259{width:794.000000pt;}
.x0_c01259{left:0.000000pt;}
.x1_c01259{left:113.385333pt;}
.x2_c01259{left:121.886667pt;}
.x3_c01259{left:127.796000pt;}
.x4_c01259{left:386.888000pt;}
}





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

.ir_c01260:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_3cf4e8b105261df208227f18.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01260;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01260;src:url('chunks/assets/font_de120b23616a0c6a12316c76.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01260;src:url('chunks/assets/font_8f77dd9131dc41808323d0b3.woff2')format("woff");}.ff4_c01260{font-family:ff4_c01260;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01260;src:url('chunks/assets/font_6174459d5f96105a370170ed.woff2')format("woff");}.ff5_c01260{font-family:ff5_c01260;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01260{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01260{vertical-align:0.000000px;}
.ls4_c01260{letter-spacing:0.000000px;}
.ls0_c01260{letter-spacing:0.087998px;}
.ls2_c01260{letter-spacing:0.098482px;}
.ls3_c01260{letter-spacing:0.104482px;}
.ls1_c01260{letter-spacing:26.690482px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01260{word-spacing:-26.575517px;}
.ws4_c01260{word-spacing:-26.487518px;}
.wse_c01260{word-spacing:-21.553319px;}
.wsd_c01260{word-spacing:-21.519216px;}
.wsc_c01260{word-spacing:-19.247743px;}
.wsa_c01260{word-spacing:-18.769538px;}
.ws9_c01260{word-spacing:-14.943900px;}
.wsf_c01260{word-spacing:-14.107042px;}
.ws10_c01260{word-spacing:-12.074671px;}
.wsb_c01260{word-spacing:-10.230144px;}
.ws7_c01260{word-spacing:-9.988424px;}
.ws8_c01260{word-spacing:-9.987499px;}
.ws3_c01260{word-spacing:0.000000px;}
.ws0_c01260{word-spacing:0.043999px;}
.ws5_c01260{word-spacing:0.213446px;}
.ws1_c01260{word-spacing:0.219446px;}
.ws6_c01260{word-spacing:43.038600px;}
._3_c01260{margin-left:-6.369713px;}
._2_c01260{margin-left:-1.549390px;}
._1_c01260{width:1.041538px;}
._4_c01260{width:19.935816px;}
._5_c01260{width:40.109428px;}
._0_c01260{width:53.503027px;}
.fc5_c01260{color:rgb(79,153,5);}
.fc4_c01260{color:rgb(143,89,3);}
.fc3_c01260{color:rgb(0,0,0);}
.fc6_c01260{color:rgb(6,69,173);}
.fc2_c01260{color:rgb(207,92,0);}
.fc1_c01260{color:rgb(0,0,207);}
.fc0_c01260{color:rgb(33,74,135);}
.fs0_c01260{font-size:43.999200px;}
.fs2_c01260{font-size:59.775600px;}
.fs1_c01260{font-size:86.077200px;}
.y0_c01260{bottom:0.000000px;}
.y20_c01260{bottom:44.250000px;}
.y1f_c01260{bottom:82.051500px;}
.y1e_c01260{bottom:99.984000px;}
.y1d_c01260{bottom:117.916500px;}
.y1c_c01260{bottom:135.849000px;}
.y1b_c01260{bottom:162.501000px;}
.y1a_c01260{bottom:189.151500px;}
.y19_c01260{bottom:215.802000px;}
.y18_c01260{bottom:242.454000px;}
.y17_c01260{bottom:284.478000px;}
.y16_c01260{bottom:748.903500px;}
.y15_c01260{bottom:765.342000px;}
.y14_c01260{bottom:781.780500px;}
.y13_c01260{bottom:798.219000px;}
.y12_c01260{bottom:814.657500px;}
.y11_c01260{bottom:831.096000px;}
.y10_c01260{bottom:847.534500px;}
.yf_c01260{bottom:863.973000px;}
.ye_c01260{bottom:880.411500px;}
.yd_c01260{bottom:896.848500px;}
.yc_c01260{bottom:913.287000px;}
.yb_c01260{bottom:946.164000px;}
.ya_c01260{bottom:962.602500px;}
.y9_c01260{bottom:979.041000px;}
.y8_c01260{bottom:1011.918000px;}
.y7_c01260{bottom:1028.356500px;}
.y6_c01260{bottom:1044.795000px;}
.y5_c01260{bottom:1061.232000px;}
.y4_c01260{bottom:1077.670500px;}
.y3_c01260{bottom:1094.109000px;}
.y2_c01260{bottom:1110.547500px;}
.y1_c01260{bottom:1159.863000px;}
.h3_c01260{height:35.190766px;}
.h2_c01260{height:36.007158px;}
.h5_c01260{height:40.511979px;}
.h6_c01260{height:52.332837px;}
.h4_c01260{height:58.337477px;}
.h0_c01260{height:1262.835000px;}
.h1_c01260{height:1263.000000px;}
.w0_c01260{width:892.920000px;}
.w1_c01260{width:893.250000px;}
.x0_c01260{left:0.000000px;}
.x4_c01260{left:127.558500px;}
.x2_c01260{left:137.122500px;}
.x1_c01260{left:143.770500px;}
.x3_c01260{left:177.007500px;}
.x5_c01260{left:435.249000px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.ls4_c01260{letter-spacing:0.000000pt;}
.ls0_c01260{letter-spacing:0.078221pt;}
.ls2_c01260{letter-spacing:0.087539pt;}
.ls3_c01260{letter-spacing:0.092873pt;}
.ls1_c01260{letter-spacing:23.724873pt;}
.ws2_c01260{word-spacing:-23.622682pt;}
.ws4_c01260{word-spacing:-23.544461pt;}
.wse_c01260{word-spacing:-19.158506pt;}
.wsd_c01260{word-spacing:-19.128192pt;}
.wsc_c01260{word-spacing:-17.109105pt;}
.wsa_c01260{word-spacing:-16.684034pt;}
.ws9_c01260{word-spacing:-13.283467pt;}
.wsf_c01260{word-spacing:-12.539593pt;}
.ws10_c01260{word-spacing:-10.733041pt;}
.wsb_c01260{word-spacing:-9.093461pt;}
.ws7_c01260{word-spacing:-8.878599pt;}
.ws8_c01260{word-spacing:-8.877777pt;}
.ws3_c01260{word-spacing:0.000000pt;}
.ws0_c01260{word-spacing:0.039110pt;}
.ws5_c01260{word-spacing:0.189730pt;}
.ws1_c01260{word-spacing:0.195063pt;}
.ws6_c01260{word-spacing:38.256533pt;}
._3_c01260{margin-left:-5.661967pt;}
._2_c01260{margin-left:-1.377235pt;}
._1_c01260{width:0.925811pt;}
._4_c01260{width:17.720725pt;}
._5_c01260{width:35.652825pt;}
._0_c01260{width:47.558246pt;}
.fs0_c01260{font-size:39.110400pt;}
.fs2_c01260{font-size:53.133867pt;}
.fs1_c01260{font-size:76.513067pt;}
.y0_c01260{bottom:0.000000pt;}
.y20_c01260{bottom:39.333333pt;}
.y1f_c01260{bottom:72.934667pt;}
.y1e_c01260{bottom:88.874667pt;}
.y1d_c01260{bottom:104.814667pt;}
.y1c_c01260{bottom:120.754667pt;}
.y1b_c01260{bottom:144.445333pt;}
.y1a_c01260{bottom:168.134667pt;}
.y19_c01260{bottom:191.824000pt;}
.y18_c01260{bottom:215.514667pt;}
.y17_c01260{bottom:252.869333pt;}
.y16_c01260{bottom:665.692000pt;}
.y15_c01260{bottom:680.304000pt;}
.y14_c01260{bottom:694.916000pt;}
.y13_c01260{bottom:709.528000pt;}
.y12_c01260{bottom:724.140000pt;}
.y11_c01260{bottom:738.752000pt;}
.y10_c01260{bottom:753.364000pt;}
.yf_c01260{bottom:767.976000pt;}
.ye_c01260{bottom:782.588000pt;}
.yd_c01260{bottom:797.198667pt;}
.yc_c01260{bottom:811.810667pt;}
.yb_c01260{bottom:841.034667pt;}
.ya_c01260{bottom:855.646667pt;}
.y9_c01260{bottom:870.258667pt;}
.y8_c01260{bottom:899.482667pt;}
.y7_c01260{bottom:914.094667pt;}
.y6_c01260{bottom:928.706667pt;}
.y5_c01260{bottom:943.317333pt;}
.y4_c01260{bottom:957.929333pt;}
.y3_c01260{bottom:972.541333pt;}
.y2_c01260{bottom:987.153333pt;}
.y1_c01260{bottom:1030.989333pt;}
.h3_c01260{height:31.280681pt;}
.h2_c01260{height:32.006363pt;}
.h5_c01260{height:36.010648pt;}
.h6_c01260{height:46.518078pt;}
.h4_c01260{height:51.855535pt;}
.h0_c01260{height:1122.520000pt;}
.h1_c01260{height:1122.666667pt;}
.w0_c01260{width:793.706667pt;}
.w1_c01260{width:794.000000pt;}
.x0_c01260{left:0.000000pt;}
.x4_c01260{left:113.385333pt;}
.x2_c01260{left:121.886667pt;}
.x1_c01260{left:127.796000pt;}
.x3_c01260{left:157.340000pt;}
.x5_c01260{left:386.888000pt;}
}





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

.ir_c01261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_7a4fc61bf0ecd76925e09dd8.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01261;src:url('chunks/assets/font_ea73689608777db91ec6621e.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01261;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01261;src:url('chunks/assets/font_10483fe4db6328ab0d8ca54b.woff2')format("woff");}.ff4_c01261{font-family:ff4_c01261;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01261{vertical-align:0.000000px;}
.ls4_c01261{letter-spacing:0.000000px;}
.ls1_c01261{letter-spacing:0.087998px;}
.ls2_c01261{letter-spacing:0.098482px;}
.ls0_c01261{letter-spacing:0.104482px;}
.ls3_c01261{letter-spacing:26.690482px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01261{word-spacing:-33.713438px;}
.ws4_c01261{word-spacing:-26.575517px;}
.ws3_c01261{word-spacing:-26.487518px;}
.ws0_c01261{word-spacing:-18.769538px;}
.ws8_c01261{word-spacing:0.000000px;}
.ws5_c01261{word-spacing:0.043999px;}
.wsb_c01261{word-spacing:0.056767px;}
.ws9_c01261{word-spacing:0.073250px;}
.wsa_c01261{word-spacing:0.083734px;}
.ws2_c01261{word-spacing:0.175997px;}
.wsc_c01261{word-spacing:0.202963px;}
.ws6_c01261{word-spacing:0.213446px;}
.ws7_c01261{word-spacing:0.219446px;}
._0_c01261{margin-left:-3.825638px;}
._1_c01261{width:1.005737px;}
._3_c01261{width:53.283031px;}
._2_c01261{width:79.858548px;}
._4_c01261{width:133.452408px;}
.fc5_c01261{color:rgb(0,0,207);}
.fc4_c01261{color:rgb(79,153,5);}
.fc3_c01261{color:rgb(207,92,0);}
.fc2_c01261{color:rgb(33,74,135);}
.fc1_c01261{color:rgb(143,89,3);}
.fc0_c01261{color:rgb(0,0,0);}
.fs1_c01261{font-size:43.999200px;}
.fs0_c01261{font-size:59.775600px;}
.y0_c01261{bottom:0.000000px;}
.y2d_c01261{bottom:44.250000px;}
.y2c_c01261{bottom:96.919500px;}
.y2b_c01261{bottom:113.358000px;}
.y2a_c01261{bottom:129.796500px;}
.y29_c01261{bottom:146.235000px;}
.y28_c01261{bottom:162.673500px;}
.y27_c01261{bottom:179.112000px;}
.y26_c01261{bottom:195.550500px;}
.y25_c01261{bottom:211.989000px;}
.y24_c01261{bottom:228.427500px;}
.y23_c01261{bottom:244.866000px;}
.y22_c01261{bottom:261.304500px;}
.y21_c01261{bottom:294.180000px;}
.y20_c01261{bottom:310.618500px;}
.y1f_c01261{bottom:327.057000px;}
.y1e_c01261{bottom:359.934000px;}
.y1d_c01261{bottom:376.372500px;}
.y1c_c01261{bottom:392.811000px;}
.y1b_c01261{bottom:409.249500px;}
.y1a_c01261{bottom:425.688000px;}
.y19_c01261{bottom:442.125000px;}
.y18_c01261{bottom:458.563500px;}
.y17_c01261{bottom:507.879000px;}
.y16_c01261{bottom:524.317500px;}
.y15_c01261{bottom:540.756000px;}
.y14_c01261{bottom:557.194500px;}
.y13_c01261{bottom:573.633000px;}
.y12_c01261{bottom:590.071500px;}
.y11_c01261{bottom:606.508500px;}
.y10_c01261{bottom:622.947000px;}
.yf_c01261{bottom:639.385500px;}
.ye_c01261{bottom:655.824000px;}
.yd_c01261{bottom:672.262500px;}
.yc_c01261{bottom:688.701000px;}
.yb_c01261{bottom:705.139500px;}
.ya_c01261{bottom:721.578000px;}
.y9_c01261{bottom:738.016500px;}
.y8_c01261{bottom:754.455000px;}
.y7_c01261{bottom:787.330500px;}
.y6_c01261{bottom:803.769000px;}
.y5_c01261{bottom:853.084500px;}
.y4_c01261{bottom:869.523000px;}
.y3_c01261{bottom:885.588000px;}
.y2_c01261{bottom:1141.930500px;}
.y1_c01261{bottom:1159.863000px;}
.h3_c01261{height:35.190766px;}
.h4_c01261{height:36.007158px;}
.h2_c01261{height:52.332837px;}
.h0_c01261{height:1262.835000px;}
.h1_c01261{height:1263.000000px;}
.w0_c01261{width:892.920000px;}
.w1_c01261{width:893.250000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:127.558500px;}
.x2_c01261{left:137.122500px;}
.x3_c01261{left:143.770500px;}
.x4_c01261{left:177.007500px;}
.x5_c01261{left:435.249000px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls4_c01261{letter-spacing:0.000000pt;}
.ls1_c01261{letter-spacing:0.078221pt;}
.ls2_c01261{letter-spacing:0.087539pt;}
.ls0_c01261{letter-spacing:0.092873pt;}
.ls3_c01261{letter-spacing:23.724873pt;}
.ws1_c01261{word-spacing:-29.967501pt;}
.ws4_c01261{word-spacing:-23.622682pt;}
.ws3_c01261{word-spacing:-23.544461pt;}
.ws0_c01261{word-spacing:-16.684034pt;}
.ws8_c01261{word-spacing:0.000000pt;}
.ws5_c01261{word-spacing:0.039110pt;}
.wsb_c01261{word-spacing:0.050460pt;}
.ws9_c01261{word-spacing:0.065111pt;}
.wsa_c01261{word-spacing:0.074430pt;}
.ws2_c01261{word-spacing:0.156442pt;}
.wsc_c01261{word-spacing:0.180412pt;}
.ws6_c01261{word-spacing:0.189730pt;}
.ws7_c01261{word-spacing:0.195063pt;}
._0_c01261{margin-left:-3.400567pt;}
._1_c01261{width:0.893988pt;}
._3_c01261{width:47.362694pt;}
._2_c01261{width:70.985376pt;}
._4_c01261{width:118.624363pt;}
.fs1_c01261{font-size:39.110400pt;}
.fs0_c01261{font-size:53.133867pt;}
.y0_c01261{bottom:0.000000pt;}
.y2d_c01261{bottom:39.333333pt;}
.y2c_c01261{bottom:86.150667pt;}
.y2b_c01261{bottom:100.762667pt;}
.y2a_c01261{bottom:115.374667pt;}
.y29_c01261{bottom:129.986667pt;}
.y28_c01261{bottom:144.598667pt;}
.y27_c01261{bottom:159.210667pt;}
.y26_c01261{bottom:173.822667pt;}
.y25_c01261{bottom:188.434667pt;}
.y24_c01261{bottom:203.046667pt;}
.y23_c01261{bottom:217.658667pt;}
.y22_c01261{bottom:232.270667pt;}
.y21_c01261{bottom:261.493333pt;}
.y20_c01261{bottom:276.105333pt;}
.y1f_c01261{bottom:290.717333pt;}
.y1e_c01261{bottom:319.941333pt;}
.y1d_c01261{bottom:334.553333pt;}
.y1c_c01261{bottom:349.165333pt;}
.y1b_c01261{bottom:363.777333pt;}
.y1a_c01261{bottom:378.389333pt;}
.y19_c01261{bottom:393.000000pt;}
.y18_c01261{bottom:407.612000pt;}
.y17_c01261{bottom:451.448000pt;}
.y16_c01261{bottom:466.060000pt;}
.y15_c01261{bottom:480.672000pt;}
.y14_c01261{bottom:495.284000pt;}
.y13_c01261{bottom:509.896000pt;}
.y12_c01261{bottom:524.508000pt;}
.y11_c01261{bottom:539.118667pt;}
.y10_c01261{bottom:553.730667pt;}
.yf_c01261{bottom:568.342667pt;}
.ye_c01261{bottom:582.954667pt;}
.yd_c01261{bottom:597.566667pt;}
.yc_c01261{bottom:612.178667pt;}
.yb_c01261{bottom:626.790667pt;}
.ya_c01261{bottom:641.402667pt;}
.y9_c01261{bottom:656.014667pt;}
.y8_c01261{bottom:670.626667pt;}
.y7_c01261{bottom:699.849333pt;}
.y6_c01261{bottom:714.461333pt;}
.y5_c01261{bottom:758.297333pt;}
.y4_c01261{bottom:772.909333pt;}
.y3_c01261{bottom:787.189333pt;}
.y2_c01261{bottom:1015.049333pt;}
.y1_c01261{bottom:1030.989333pt;}
.h3_c01261{height:31.280681pt;}
.h4_c01261{height:32.006363pt;}
.h2_c01261{height:46.518078pt;}
.h0_c01261{height:1122.520000pt;}
.h1_c01261{height:1122.666667pt;}
.w0_c01261{width:793.706667pt;}
.w1_c01261{width:794.000000pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:113.385333pt;}
.x2_c01261{left:121.886667pt;}
.x3_c01261{left:127.796000pt;}
.x4_c01261{left:157.340000pt;}
.x5_c01261{left:386.888000pt;}
}





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

.ir_c01262:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_21219366f0d799b9076a2739.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01262;src:url('chunks/assets/font_1db2732a843f382476489db4.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01262;src:url('chunks/assets/font_13f1a909ae9b6e4770c49f99.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01262;src:url('chunks/assets/font_8b4f8e2516153f45419e7b64.woff2')format("woff");}.ff4_c01262{font-family:ff4_c01262;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01262;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01262{font-family:ff5_c01262;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01262{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01262{vertical-align:0.000000px;}
.ls3_c01262{letter-spacing:0.000000px;}
.ls0_c01262{letter-spacing:0.087998px;}
.ls2_c01262{letter-spacing:0.098482px;}
.ls1_c01262{letter-spacing:0.104482px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01262{word-spacing:-26.575517px;}
.ws18_c01262{word-spacing:-26.487518px;}
.ws16_c01262{word-spacing:-21.758318px;}
.wsf_c01262{word-spacing:-18.829314px;}
.ws5_c01262{word-spacing:-18.769538px;}
.ws13_c01262{word-spacing:-18.052231px;}
.ws14_c01262{word-spacing:-17.992456px;}
.wsd_c01262{word-spacing:-17.275148px;}
.wsc_c01262{word-spacing:-17.215373px;}
.wse_c01262{word-spacing:-17.155597px;}
.ws15_c01262{word-spacing:-16.976270px;}
.ws10_c01262{word-spacing:-16.318739px;}
.ws12_c01262{word-spacing:-16.079636px;}
.ws8_c01262{word-spacing:-15.601432px;}
.ws4_c01262{word-spacing:-14.943900px;}
.ws9_c01262{word-spacing:-13.808164px;}
.ws7_c01262{word-spacing:-13.748388px;}
.wsa_c01262{word-spacing:-12.732203px;}
.wsb_c01262{word-spacing:-12.672427px;}
.ws11_c01262{word-spacing:-10.759608px;}
.ws1_c01262{word-spacing:-9.988424px;}
.ws3_c01262{word-spacing:-9.987499px;}
.ws1c_c01262{word-spacing:0.000000px;}
.ws6_c01262{word-spacing:0.017856px;}
.ws19_c01262{word-spacing:0.043999px;}
.ws17_c01262{word-spacing:0.175997px;}
.ws1b_c01262{word-spacing:0.213446px;}
.ws1a_c01262{word-spacing:0.219446px;}
.ws0_c01262{word-spacing:43.038600px;}
._2_c01262{margin-left:-7.919102px;}
._1_c01262{margin-left:-6.369713px;}
._4_c01262{margin-left:-4.124516px;}
._6_c01262{margin-left:-2.998955px;}
._0_c01262{margin-left:-1.549390px;}
._a_c01262{width:1.005737px;}
._3_c01262{width:19.935816px;}
._7_c01262{width:21.220338px;}
._8_c01262{width:25.058599px;}
._9_c01262{width:27.795654px;}
._5_c01262{width:29.529146px;}
.fc5_c01262{color:rgb(79,153,5);}
.fc3_c01262{color:rgb(33,74,135);}
.fc2_c01262{color:rgb(143,89,3);}
.fc4_c01262{color:rgb(207,92,0);}
.fc1_c01262{color:rgb(6,69,173);}
.fc0_c01262{color:rgb(0,0,0);}
.fs2_c01262{font-size:43.999200px;}
.fs1_c01262{font-size:59.775600px;}
.fs0_c01262{font-size:86.077200px;}
.y0_c01262{bottom:0.000000px;}
.y1d_c01262{bottom:44.250000px;}
.y1c_c01262{bottom:82.051500px;}
.y1b_c01262{bottom:98.490000px;}
.y1a_c01262{bottom:114.927000px;}
.y19_c01262{bottom:131.365500px;}
.y18_c01262{bottom:147.430500px;}
.y17_c01262{bottom:194.128500px;}
.y16_c01262{bottom:212.061000px;}
.y15_c01262{bottom:229.993500px;}
.y14_c01262{bottom:247.926000px;}
.y13_c01262{bottom:265.858500px;}
.y12_c01262{bottom:283.792500px;}
.y11_c01262{bottom:301.725000px;}
.y10_c01262{bottom:342.058500px;}
.yf_c01262{bottom:371.443500px;}
.ye_c01262{bottom:400.828500px;}
.yd_c01262{bottom:430.213500px;}
.yc_c01262{bottom:448.146000px;}
.yb_c01262{bottom:488.479500px;}
.ya_c01262{bottom:506.412000px;}
.y9_c01262{bottom:533.059500px;}
.y8_c01262{bottom:550.993500px;}
.y7_c01262{bottom:568.926000px;}
.y6_c01262{bottom:586.858500px;}
.y5_c01262{bottom:613.506000px;}
.y4_c01262{bottom:640.153500px;}
.y3_c01262{bottom:666.801000px;}
.y2_c01262{bottom:693.448500px;}
.y1_c01262{bottom:735.469500px;}
.h5_c01262{height:35.190766px;}
.h6_c01262{height:36.007158px;}
.h3_c01262{height:40.511979px;}
.h4_c01262{height:52.332837px;}
.h2_c01262{height:58.337477px;}
.h0_c01262{height:1262.835000px;}
.h1_c01262{height:1263.000000px;}
.w0_c01262{width:892.920000px;}
.w1_c01262{width:893.250000px;}
.x0_c01262{left:0.000000px;}
.x1_c01262{left:127.558500px;}
.x4_c01262{left:137.122500px;}
.x2_c01262{left:152.215500px;}
.x3_c01262{left:164.919000px;}
.x5_c01262{left:435.249000px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls3_c01262{letter-spacing:0.000000pt;}
.ls0_c01262{letter-spacing:0.078221pt;}
.ls2_c01262{letter-spacing:0.087539pt;}
.ls1_c01262{letter-spacing:0.092873pt;}
.ws2_c01262{word-spacing:-23.622682pt;}
.ws18_c01262{word-spacing:-23.544461pt;}
.ws16_c01262{word-spacing:-19.340727pt;}
.wsf_c01262{word-spacing:-16.737168pt;}
.ws5_c01262{word-spacing:-16.684034pt;}
.ws13_c01262{word-spacing:-16.046428pt;}
.ws14_c01262{word-spacing:-15.993294pt;}
.wsd_c01262{word-spacing:-15.355687pt;}
.wsc_c01262{word-spacing:-15.302554pt;}
.wse_c01262{word-spacing:-15.249420pt;}
.ws15_c01262{word-spacing:-15.090018pt;}
.ws10_c01262{word-spacing:-14.505546pt;}
.ws12_c01262{word-spacing:-14.293010pt;}
.ws8_c01262{word-spacing:-13.867939pt;}
.ws4_c01262{word-spacing:-13.283467pt;}
.ws9_c01262{word-spacing:-12.273923pt;}
.ws7_c01262{word-spacing:-12.220789pt;}
.wsa_c01262{word-spacing:-11.317514pt;}
.wsb_c01262{word-spacing:-11.264380pt;}
.ws11_c01262{word-spacing:-9.564096pt;}
.ws1_c01262{word-spacing:-8.878599pt;}
.ws3_c01262{word-spacing:-8.877777pt;}
.ws1c_c01262{word-spacing:0.000000pt;}
.ws6_c01262{word-spacing:0.015872pt;}
.ws19_c01262{word-spacing:0.039110pt;}
.ws17_c01262{word-spacing:0.156442pt;}
.ws1b_c01262{word-spacing:0.189730pt;}
.ws1a_c01262{word-spacing:0.195063pt;}
.ws0_c01262{word-spacing:38.256533pt;}
._2_c01262{margin-left:-7.039202pt;}
._1_c01262{margin-left:-5.661967pt;}
._4_c01262{margin-left:-3.666237pt;}
._6_c01262{margin-left:-2.665738pt;}
._0_c01262{margin-left:-1.377235pt;}
._a_c01262{width:0.893988pt;}
._3_c01262{width:17.720725pt;}
._7_c01262{width:18.862523pt;}
._8_c01262{width:22.274310pt;}
._9_c01262{width:24.707248pt;}
._5_c01262{width:26.248130pt;}
.fs2_c01262{font-size:39.110400pt;}
.fs1_c01262{font-size:53.133867pt;}
.fs0_c01262{font-size:76.513067pt;}
.y0_c01262{bottom:0.000000pt;}
.y1d_c01262{bottom:39.333333pt;}
.y1c_c01262{bottom:72.934667pt;}
.y1b_c01262{bottom:87.546667pt;}
.y1a_c01262{bottom:102.157333pt;}
.y19_c01262{bottom:116.769333pt;}
.y18_c01262{bottom:131.049333pt;}
.y17_c01262{bottom:172.558667pt;}
.y16_c01262{bottom:188.498667pt;}
.y15_c01262{bottom:204.438667pt;}
.y14_c01262{bottom:220.378667pt;}
.y13_c01262{bottom:236.318667pt;}
.y12_c01262{bottom:252.260000pt;}
.y11_c01262{bottom:268.200000pt;}
.y10_c01262{bottom:304.052000pt;}
.yf_c01262{bottom:330.172000pt;}
.ye_c01262{bottom:356.292000pt;}
.yd_c01262{bottom:382.412000pt;}
.yc_c01262{bottom:398.352000pt;}
.yb_c01262{bottom:434.204000pt;}
.ya_c01262{bottom:450.144000pt;}
.y9_c01262{bottom:473.830667pt;}
.y8_c01262{bottom:489.772000pt;}
.y7_c01262{bottom:505.712000pt;}
.y6_c01262{bottom:521.652000pt;}
.y5_c01262{bottom:545.338667pt;}
.y4_c01262{bottom:569.025333pt;}
.y3_c01262{bottom:592.712000pt;}
.y2_c01262{bottom:616.398667pt;}
.y1_c01262{bottom:653.750667pt;}
.h5_c01262{height:31.280681pt;}
.h6_c01262{height:32.006363pt;}
.h3_c01262{height:36.010648pt;}
.h4_c01262{height:46.518078pt;}
.h2_c01262{height:51.855535pt;}
.h0_c01262{height:1122.520000pt;}
.h1_c01262{height:1122.666667pt;}
.w0_c01262{width:793.706667pt;}
.w1_c01262{width:794.000000pt;}
.x0_c01262{left:0.000000pt;}
.x1_c01262{left:113.385333pt;}
.x4_c01262{left:121.886667pt;}
.x2_c01262{left:135.302667pt;}
.x3_c01262{left:146.594667pt;}
.x5_c01262{left:386.888000pt;}
}





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

.ir_c01263:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_6b64d22b641d134045189a0b.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01263;src:url('chunks/assets/font_d363b82bb6e45788d0f397af.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01263;src:url('chunks/assets/font_ecd487db0373f38537890e5b.woff2')format("woff");}.ff3_c01263{font-family:ff3_c01263;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01263;src:url('chunks/assets/font_90fe31361ad51ba671226998.woff2')format("woff");}.ff4_c01263{font-family:ff4_c01263;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls4_c01263{letter-spacing:0.000000px;}
.ls1_c01263{letter-spacing:0.087998px;}
.ls2_c01263{letter-spacing:0.098482px;}
.ls0_c01263{letter-spacing:0.104482px;}
.ls3_c01263{letter-spacing:26.690482px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01263{word-spacing:-26.575517px;}
.ws0_c01263{word-spacing:-26.487518px;}
.ws2_c01263{word-spacing:0.000000px;}
.ws7_c01263{word-spacing:0.036900px;}
.ws4_c01263{word-spacing:0.043999px;}
.ws6_c01263{word-spacing:0.053933px;}
.wsa_c01263{word-spacing:0.064416px;}
.ws8_c01263{word-spacing:0.070416px;}
.wsb_c01263{word-spacing:0.100217px;}
.ws5_c01263{word-spacing:0.175997px;}
.ws3_c01263{word-spacing:0.213446px;}
.ws9_c01263{word-spacing:0.219446px;}
._0_c01263{width:1.031604px;}
._1_c01263{width:53.635025px;}
.fc5_c01263{color:rgb(0,0,207);}
.fc4_c01263{color:rgb(143,89,3);}
.fc3_c01263{color:rgb(79,153,5);}
.fc2_c01263{color:rgb(207,92,0);}
.fc1_c01263{color:rgb(0,0,0);}
.fc0_c01263{color:rgb(33,74,135);}
.fs0_c01263{font-size:43.999200px;}
.fs1_c01263{font-size:59.775600px;}
.y0_c01263{bottom:0.000000px;}
.y39_c01263{bottom:44.250000px;}
.y38_c01263{bottom:91.369500px;}
.y37_c01263{bottom:107.808000px;}
.y36_c01263{bottom:124.246500px;}
.y35_c01263{bottom:140.685000px;}
.y34_c01263{bottom:157.123500px;}
.y33_c01263{bottom:173.562000px;}
.y32_c01263{bottom:190.000500px;}
.y31_c01263{bottom:206.437500px;}
.y30_c01263{bottom:222.876000px;}
.y2f_c01263{bottom:239.314500px;}
.y2e_c01263{bottom:255.753000px;}
.y2d_c01263{bottom:272.191500px;}
.y2c_c01263{bottom:288.630000px;}
.y2b_c01263{bottom:305.068500px;}
.y2a_c01263{bottom:321.507000px;}
.y29_c01263{bottom:337.945500px;}
.y28_c01263{bottom:354.384000px;}
.y27_c01263{bottom:370.822500px;}
.y26_c01263{bottom:387.259500px;}
.y25_c01263{bottom:403.698000px;}
.y24_c01263{bottom:436.575000px;}
.y23_c01263{bottom:453.013500px;}
.y22_c01263{bottom:469.452000px;}
.y21_c01263{bottom:485.890500px;}
.y20_c01263{bottom:502.329000px;}
.y1f_c01263{bottom:518.767500px;}
.y1e_c01263{bottom:551.643000px;}
.y1d_c01263{bottom:568.081500px;}
.y1c_c01263{bottom:584.520000px;}
.y1b_c01263{bottom:600.958500px;}
.y1a_c01263{bottom:633.835500px;}
.y19_c01263{bottom:650.274000px;}
.y18_c01263{bottom:666.712500px;}
.y17_c01263{bottom:683.151000px;}
.y16_c01263{bottom:716.028000px;}
.y15_c01263{bottom:732.465000px;}
.y14_c01263{bottom:748.903500px;}
.y13_c01263{bottom:765.342000px;}
.y12_c01263{bottom:781.780500px;}
.y11_c01263{bottom:798.219000px;}
.y10_c01263{bottom:814.657500px;}
.yf_c01263{bottom:847.534500px;}
.ye_c01263{bottom:863.973000px;}
.yd_c01263{bottom:880.411500px;}
.yc_c01263{bottom:913.287000px;}
.yb_c01263{bottom:929.725500px;}
.ya_c01263{bottom:979.041000px;}
.y9_c01263{bottom:995.479500px;}
.y8_c01263{bottom:1028.356500px;}
.y7_c01263{bottom:1044.795000px;}
.y6_c01263{bottom:1061.232000px;}
.y5_c01263{bottom:1077.670500px;}
.y4_c01263{bottom:1110.547500px;}
.y3_c01263{bottom:1126.986000px;}
.y2_c01263{bottom:1143.424500px;}
.y1_c01263{bottom:1159.863000px;}
.h3_c01263{height:35.190766px;}
.h2_c01263{height:36.007158px;}
.h4_c01263{height:52.332837px;}
.h0_c01263{height:1262.835000px;}
.h1_c01263{height:1263.000000px;}
.w0_c01263{width:892.920000px;}
.w1_c01263{width:893.250000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:137.122500px;}
.x2_c01263{left:143.770500px;}
.x5_c01263{left:170.359500px;}
.x4_c01263{left:177.007500px;}
.x3_c01263{left:203.596500px;}
.x6_c01263{left:210.243000px;}
.x7_c01263{left:230.185500px;}
.x8_c01263{left:256.774500px;}
.x9_c01263{left:435.249000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls4_c01263{letter-spacing:0.000000pt;}
.ls1_c01263{letter-spacing:0.078221pt;}
.ls2_c01263{letter-spacing:0.087539pt;}
.ls0_c01263{letter-spacing:0.092873pt;}
.ls3_c01263{letter-spacing:23.724873pt;}
.ws1_c01263{word-spacing:-23.622682pt;}
.ws0_c01263{word-spacing:-23.544461pt;}
.ws2_c01263{word-spacing:0.000000pt;}
.ws7_c01263{word-spacing:0.032800pt;}
.ws4_c01263{word-spacing:0.039110pt;}
.ws6_c01263{word-spacing:0.047940pt;}
.wsa_c01263{word-spacing:0.057259pt;}
.ws8_c01263{word-spacing:0.062592pt;}
.wsb_c01263{word-spacing:0.089082pt;}
.ws5_c01263{word-spacing:0.156442pt;}
.ws3_c01263{word-spacing:0.189730pt;}
.ws9_c01263{word-spacing:0.195063pt;}
._0_c01263{width:0.916981pt;}
._1_c01263{width:47.675578pt;}
.fs0_c01263{font-size:39.110400pt;}
.fs1_c01263{font-size:53.133867pt;}
.y0_c01263{bottom:0.000000pt;}
.y39_c01263{bottom:39.333333pt;}
.y38_c01263{bottom:81.217333pt;}
.y37_c01263{bottom:95.829333pt;}
.y36_c01263{bottom:110.441333pt;}
.y35_c01263{bottom:125.053333pt;}
.y34_c01263{bottom:139.665333pt;}
.y33_c01263{bottom:154.277333pt;}
.y32_c01263{bottom:168.889333pt;}
.y31_c01263{bottom:183.500000pt;}
.y30_c01263{bottom:198.112000pt;}
.y2f_c01263{bottom:212.724000pt;}
.y2e_c01263{bottom:227.336000pt;}
.y2d_c01263{bottom:241.948000pt;}
.y2c_c01263{bottom:256.560000pt;}
.y2b_c01263{bottom:271.172000pt;}
.y2a_c01263{bottom:285.784000pt;}
.y29_c01263{bottom:300.396000pt;}
.y28_c01263{bottom:315.008000pt;}
.y27_c01263{bottom:329.620000pt;}
.y26_c01263{bottom:344.230667pt;}
.y25_c01263{bottom:358.842667pt;}
.y24_c01263{bottom:388.066667pt;}
.y23_c01263{bottom:402.678667pt;}
.y22_c01263{bottom:417.290667pt;}
.y21_c01263{bottom:431.902667pt;}
.y20_c01263{bottom:446.514667pt;}
.y1f_c01263{bottom:461.126667pt;}
.y1e_c01263{bottom:490.349333pt;}
.y1d_c01263{bottom:504.961333pt;}
.y1c_c01263{bottom:519.573333pt;}
.y1b_c01263{bottom:534.185333pt;}
.y1a_c01263{bottom:563.409333pt;}
.y19_c01263{bottom:578.021333pt;}
.y18_c01263{bottom:592.633333pt;}
.y17_c01263{bottom:607.245333pt;}
.y16_c01263{bottom:636.469333pt;}
.y15_c01263{bottom:651.080000pt;}
.y14_c01263{bottom:665.692000pt;}
.y13_c01263{bottom:680.304000pt;}
.y12_c01263{bottom:694.916000pt;}
.y11_c01263{bottom:709.528000pt;}
.y10_c01263{bottom:724.140000pt;}
.yf_c01263{bottom:753.364000pt;}
.ye_c01263{bottom:767.976000pt;}
.yd_c01263{bottom:782.588000pt;}
.yc_c01263{bottom:811.810667pt;}
.yb_c01263{bottom:826.422667pt;}
.ya_c01263{bottom:870.258667pt;}
.y9_c01263{bottom:884.870667pt;}
.y8_c01263{bottom:914.094667pt;}
.y7_c01263{bottom:928.706667pt;}
.y6_c01263{bottom:943.317333pt;}
.y5_c01263{bottom:957.929333pt;}
.y4_c01263{bottom:987.153333pt;}
.y3_c01263{bottom:1001.765333pt;}
.y2_c01263{bottom:1016.377333pt;}
.y1_c01263{bottom:1030.989333pt;}
.h3_c01263{height:31.280681pt;}
.h2_c01263{height:32.006363pt;}
.h4_c01263{height:46.518078pt;}
.h0_c01263{height:1122.520000pt;}
.h1_c01263{height:1122.666667pt;}
.w0_c01263{width:793.706667pt;}
.w1_c01263{width:794.000000pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:121.886667pt;}
.x2_c01263{left:127.796000pt;}
.x5_c01263{left:151.430667pt;}
.x4_c01263{left:157.340000pt;}
.x3_c01263{left:180.974667pt;}
.x6_c01263{left:186.882667pt;}
.x7_c01263{left:204.609333pt;}
.x8_c01263{left:228.244000pt;}
.x9_c01263{left:386.888000pt;}
}





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

.ir_c01264:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_e76810395455ba5201b3cf11.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01264;src:url('chunks/assets/font_5f9b4db38e0ff356affda4fb.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01264;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01264{font-family:ff3_c01264;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01264;src:url('chunks/assets/font_841c933539afe7f480680e29.woff2')format("woff");}.ff4_c01264{font-family:ff4_c01264;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01264{vertical-align:0.000000px;}
.ls4_c01264{letter-spacing:0.000000px;}
.ls0_c01264{letter-spacing:0.087998px;}
.ls1_c01264{letter-spacing:0.098482px;}
.ls3_c01264{letter-spacing:0.104482px;}
.ls2_c01264{letter-spacing:0.140482px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01264{word-spacing:-26.575517px;}
.ws2_c01264{word-spacing:-26.487518px;}
.ws4_c01264{word-spacing:0.000000px;}
.ws3_c01264{word-spacing:0.043999px;}
.ws1_c01264{word-spacing:0.053933px;}
.ws5_c01264{word-spacing:0.056767px;}
.ws6_c01264{word-spacing:0.213446px;}
._0_c01264{width:1.028438px;}
.fc5_c01264{color:rgb(0,0,207);}
.fc4_c01264{color:rgb(79,153,5);}
.fc3_c01264{color:rgb(33,74,135);}
.fc2_c01264{color:rgb(207,92,0);}
.fc1_c01264{color:rgb(143,89,3);}
.fc0_c01264{color:rgb(0,0,0);}
.fs0_c01264{font-size:43.999200px;}
.fs1_c01264{font-size:59.775600px;}
.y0_c01264{bottom:0.000000px;}
.y2b_c01264{bottom:44.250000px;}
.y2a_c01264{bottom:436.575000px;}
.y29_c01264{bottom:453.013500px;}
.y28_c01264{bottom:469.452000px;}
.y27_c01264{bottom:485.890500px;}
.y26_c01264{bottom:502.329000px;}
.y25_c01264{bottom:518.767500px;}
.y24_c01264{bottom:535.206000px;}
.y23_c01264{bottom:551.643000px;}
.y22_c01264{bottom:568.081500px;}
.y21_c01264{bottom:584.520000px;}
.y20_c01264{bottom:600.958500px;}
.y1f_c01264{bottom:633.835500px;}
.y1e_c01264{bottom:650.274000px;}
.y1d_c01264{bottom:666.712500px;}
.y1c_c01264{bottom:699.589500px;}
.y1b_c01264{bottom:716.028000px;}
.y1a_c01264{bottom:732.465000px;}
.y19_c01264{bottom:748.903500px;}
.y18_c01264{bottom:765.342000px;}
.y17_c01264{bottom:781.780500px;}
.y16_c01264{bottom:798.219000px;}
.y15_c01264{bottom:814.657500px;}
.y14_c01264{bottom:831.096000px;}
.y13_c01264{bottom:847.534500px;}
.y12_c01264{bottom:863.973000px;}
.y11_c01264{bottom:880.411500px;}
.y10_c01264{bottom:896.848500px;}
.yf_c01264{bottom:913.287000px;}
.ye_c01264{bottom:929.725500px;}
.yd_c01264{bottom:946.164000px;}
.yc_c01264{bottom:962.602500px;}
.yb_c01264{bottom:979.041000px;}
.ya_c01264{bottom:995.479500px;}
.y9_c01264{bottom:1011.918000px;}
.y8_c01264{bottom:1028.356500px;}
.y7_c01264{bottom:1044.795000px;}
.y6_c01264{bottom:1061.232000px;}
.y5_c01264{bottom:1077.670500px;}
.y4_c01264{bottom:1094.109000px;}
.y3_c01264{bottom:1110.547500px;}
.y2_c01264{bottom:1143.424500px;}
.y1_c01264{bottom:1159.863000px;}
.h3_c01264{height:35.190766px;}
.h2_c01264{height:36.007158px;}
.h4_c01264{height:52.332837px;}
.h0_c01264{height:1262.835000px;}
.h1_c01264{height:1263.000000px;}
.w0_c01264{width:892.920000px;}
.w1_c01264{width:893.250000px;}
.x0_c01264{left:0.000000px;}
.x1_c01264{left:137.122500px;}
.x2_c01264{left:143.770500px;}
.x6_c01264{left:177.007500px;}
.x5_c01264{left:230.185500px;}
.x3_c01264{left:243.480000px;}
.x4_c01264{left:276.715500px;}
.x7_c01264{left:435.249000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls4_c01264{letter-spacing:0.000000pt;}
.ls0_c01264{letter-spacing:0.078221pt;}
.ls1_c01264{letter-spacing:0.087539pt;}
.ls3_c01264{letter-spacing:0.092873pt;}
.ls2_c01264{letter-spacing:0.124873pt;}
.ws0_c01264{word-spacing:-23.622682pt;}
.ws2_c01264{word-spacing:-23.544461pt;}
.ws4_c01264{word-spacing:0.000000pt;}
.ws3_c01264{word-spacing:0.039110pt;}
.ws1_c01264{word-spacing:0.047940pt;}
.ws5_c01264{word-spacing:0.050460pt;}
.ws6_c01264{word-spacing:0.189730pt;}
._0_c01264{width:0.914167pt;}
.fs0_c01264{font-size:39.110400pt;}
.fs1_c01264{font-size:53.133867pt;}
.y0_c01264{bottom:0.000000pt;}
.y2b_c01264{bottom:39.333333pt;}
.y2a_c01264{bottom:388.066667pt;}
.y29_c01264{bottom:402.678667pt;}
.y28_c01264{bottom:417.290667pt;}
.y27_c01264{bottom:431.902667pt;}
.y26_c01264{bottom:446.514667pt;}
.y25_c01264{bottom:461.126667pt;}
.y24_c01264{bottom:475.738667pt;}
.y23_c01264{bottom:490.349333pt;}
.y22_c01264{bottom:504.961333pt;}
.y21_c01264{bottom:519.573333pt;}
.y20_c01264{bottom:534.185333pt;}
.y1f_c01264{bottom:563.409333pt;}
.y1e_c01264{bottom:578.021333pt;}
.y1d_c01264{bottom:592.633333pt;}
.y1c_c01264{bottom:621.857333pt;}
.y1b_c01264{bottom:636.469333pt;}
.y1a_c01264{bottom:651.080000pt;}
.y19_c01264{bottom:665.692000pt;}
.y18_c01264{bottom:680.304000pt;}
.y17_c01264{bottom:694.916000pt;}
.y16_c01264{bottom:709.528000pt;}
.y15_c01264{bottom:724.140000pt;}
.y14_c01264{bottom:738.752000pt;}
.y13_c01264{bottom:753.364000pt;}
.y12_c01264{bottom:767.976000pt;}
.y11_c01264{bottom:782.588000pt;}
.y10_c01264{bottom:797.198667pt;}
.yf_c01264{bottom:811.810667pt;}
.ye_c01264{bottom:826.422667pt;}
.yd_c01264{bottom:841.034667pt;}
.yc_c01264{bottom:855.646667pt;}
.yb_c01264{bottom:870.258667pt;}
.ya_c01264{bottom:884.870667pt;}
.y9_c01264{bottom:899.482667pt;}
.y8_c01264{bottom:914.094667pt;}
.y7_c01264{bottom:928.706667pt;}
.y6_c01264{bottom:943.317333pt;}
.y5_c01264{bottom:957.929333pt;}
.y4_c01264{bottom:972.541333pt;}
.y3_c01264{bottom:987.153333pt;}
.y2_c01264{bottom:1016.377333pt;}
.y1_c01264{bottom:1030.989333pt;}
.h3_c01264{height:31.280681pt;}
.h2_c01264{height:32.006363pt;}
.h4_c01264{height:46.518078pt;}
.h0_c01264{height:1122.520000pt;}
.h1_c01264{height:1122.666667pt;}
.w0_c01264{width:793.706667pt;}
.w1_c01264{width:794.000000pt;}
.x0_c01264{left:0.000000pt;}
.x1_c01264{left:121.886667pt;}
.x2_c01264{left:127.796000pt;}
.x6_c01264{left:157.340000pt;}
.x5_c01264{left:204.609333pt;}
.x3_c01264{left:216.426667pt;}
.x4_c01264{left:245.969333pt;}
.x7_c01264{left:386.888000pt;}
}





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

.ir_c01265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_299dced3ae3403261029eeec.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01265;src:url('chunks/assets/font_d90a10cab57c061b5692d89c.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01265;src:url('chunks/assets/font_aecead17f2614a23ee5f87d5.woff2')format("woff");}.ff3_c01265{font-family:ff3_c01265;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01265;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01265{font-family:ff4_c01265;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01265;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01265{font-family:ff5_c01265;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01265{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01265{vertical-align:0.000000px;}
.ls3_c01265{letter-spacing:0.000000px;}
.ls0_c01265{letter-spacing:0.087998px;}
.ls2_c01265{letter-spacing:0.098482px;}
.ls1_c01265{letter-spacing:0.104482px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01265{word-spacing:-33.713438px;}
.ws2_c01265{word-spacing:-26.575517px;}
.wse_c01265{word-spacing:-26.487518px;}
.ws9_c01265{word-spacing:-21.553319px;}
.ws8_c01265{word-spacing:-21.519216px;}
.ws5_c01265{word-spacing:-18.769538px;}
.ws7_c01265{word-spacing:-16.019861px;}
.ws4_c01265{word-spacing:-14.943900px;}
.wsa_c01265{word-spacing:-14.107042px;}
.wsb_c01265{word-spacing:-12.074671px;}
.ws1_c01265{word-spacing:-9.988424px;}
.ws3_c01265{word-spacing:-9.987499px;}
.ws6_c01265{word-spacing:-4.536144px;}
.ws12_c01265{word-spacing:0.000000px;}
.wsf_c01265{word-spacing:0.043999px;}
.ws15_c01265{word-spacing:0.056767px;}
.ws13_c01265{word-spacing:0.073250px;}
.ws14_c01265{word-spacing:0.083734px;}
.wsd_c01265{word-spacing:0.175997px;}
.ws16_c01265{word-spacing:0.202963px;}
.ws10_c01265{word-spacing:0.213446px;}
.ws11_c01265{word-spacing:0.219446px;}
.ws0_c01265{word-spacing:43.038600px;}
._2_c01265{margin-left:-7.919102px;}
._1_c01265{margin-left:-6.369713px;}
._4_c01265{margin-left:-4.124516px;}
._0_c01265{margin-left:-1.549390px;}
._6_c01265{width:1.005737px;}
._3_c01265{width:19.935816px;}
._5_c01265{width:40.109428px;}
._8_c01265{width:53.283031px;}
._7_c01265{width:79.858548px;}
._9_c01265{width:133.452408px;}
.fc6_c01265{color:rgb(0,0,207);}
.fc5_c01265{color:rgb(79,153,5);}
.fc3_c01265{color:rgb(33,74,135);}
.fc2_c01265{color:rgb(143,89,3);}
.fc4_c01265{color:rgb(207,92,0);}
.fc1_c01265{color:rgb(6,69,173);}
.fc0_c01265{color:rgb(0,0,0);}
.fs2_c01265{font-size:43.999200px;}
.fs1_c01265{font-size:59.775600px;}
.fs0_c01265{font-size:86.077200px;}
.y0_c01265{bottom:0.000000px;}
.y20_c01265{bottom:44.250000px;}
.y1f_c01265{bottom:86.982000px;}
.y1e_c01265{bottom:103.420500px;}
.y1d_c01265{bottom:119.859000px;}
.y1c_c01265{bottom:136.297500px;}
.y1b_c01265{bottom:152.736000px;}
.y1a_c01265{bottom:169.174500px;}
.y19_c01265{bottom:185.613000px;}
.y18_c01265{bottom:202.051500px;}
.y17_c01265{bottom:218.490000px;}
.y16_c01265{bottom:234.927000px;}
.y15_c01265{bottom:251.365500px;}
.y14_c01265{bottom:267.804000px;}
.y13_c01265{bottom:284.242500px;}
.y12_c01265{bottom:300.681000px;}
.y11_c01265{bottom:317.119500px;}
.y10_c01265{bottom:349.996500px;}
.yf_c01265{bottom:366.435000px;}
.ye_c01265{bottom:415.749000px;}
.yd_c01265{bottom:432.187500px;}
.yc_c01265{bottom:448.252500px;}
.yb_c01265{bottom:493.890000px;}
.ya_c01265{bottom:511.822500px;}
.y9_c01265{bottom:529.756500px;}
.y8_c01265{bottom:547.689000px;}
.y7_c01265{bottom:565.621500px;}
.y6_c01265{bottom:583.554000px;}
.y5_c01265{bottom:610.633500px;}
.y4_c01265{bottom:637.714500px;}
.y3_c01265{bottom:664.794000px;}
.y2_c01265{bottom:691.873500px;}
.y1_c01265{bottom:734.407500px;}
.h5_c01265{height:35.190766px;}
.h6_c01265{height:36.007158px;}
.h3_c01265{height:40.511979px;}
.h4_c01265{height:52.332837px;}
.h2_c01265{height:58.337477px;}
.h0_c01265{height:1262.835000px;}
.h1_c01265{height:1263.000000px;}
.w0_c01265{width:892.920000px;}
.w1_c01265{width:893.250000px;}
.x0_c01265{left:0.000000px;}
.x1_c01265{left:127.558500px;}
.x2_c01265{left:137.122500px;}
.x3_c01265{left:143.770500px;}
.x4_c01265{left:435.249000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls3_c01265{letter-spacing:0.000000pt;}
.ls0_c01265{letter-spacing:0.078221pt;}
.ls2_c01265{letter-spacing:0.087539pt;}
.ls1_c01265{letter-spacing:0.092873pt;}
.wsc_c01265{word-spacing:-29.967501pt;}
.ws2_c01265{word-spacing:-23.622682pt;}
.wse_c01265{word-spacing:-23.544461pt;}
.ws9_c01265{word-spacing:-19.158506pt;}
.ws8_c01265{word-spacing:-19.128192pt;}
.ws5_c01265{word-spacing:-16.684034pt;}
.ws7_c01265{word-spacing:-14.239876pt;}
.ws4_c01265{word-spacing:-13.283467pt;}
.wsa_c01265{word-spacing:-12.539593pt;}
.wsb_c01265{word-spacing:-10.733041pt;}
.ws1_c01265{word-spacing:-8.878599pt;}
.ws3_c01265{word-spacing:-8.877777pt;}
.ws6_c01265{word-spacing:-4.032128pt;}
.ws12_c01265{word-spacing:0.000000pt;}
.wsf_c01265{word-spacing:0.039110pt;}
.ws15_c01265{word-spacing:0.050460pt;}
.ws13_c01265{word-spacing:0.065111pt;}
.ws14_c01265{word-spacing:0.074430pt;}
.wsd_c01265{word-spacing:0.156442pt;}
.ws16_c01265{word-spacing:0.180412pt;}
.ws10_c01265{word-spacing:0.189730pt;}
.ws11_c01265{word-spacing:0.195063pt;}
.ws0_c01265{word-spacing:38.256533pt;}
._2_c01265{margin-left:-7.039202pt;}
._1_c01265{margin-left:-5.661967pt;}
._4_c01265{margin-left:-3.666237pt;}
._0_c01265{margin-left:-1.377235pt;}
._6_c01265{width:0.893988pt;}
._3_c01265{width:17.720725pt;}
._5_c01265{width:35.652825pt;}
._8_c01265{width:47.362694pt;}
._7_c01265{width:70.985376pt;}
._9_c01265{width:118.624363pt;}
.fs2_c01265{font-size:39.110400pt;}
.fs1_c01265{font-size:53.133867pt;}
.fs0_c01265{font-size:76.513067pt;}
.y0_c01265{bottom:0.000000pt;}
.y20_c01265{bottom:39.333333pt;}
.y1f_c01265{bottom:77.317333pt;}
.y1e_c01265{bottom:91.929333pt;}
.y1d_c01265{bottom:106.541333pt;}
.y1c_c01265{bottom:121.153333pt;}
.y1b_c01265{bottom:135.765333pt;}
.y1a_c01265{bottom:150.377333pt;}
.y19_c01265{bottom:164.989333pt;}
.y18_c01265{bottom:179.601333pt;}
.y17_c01265{bottom:194.213333pt;}
.y16_c01265{bottom:208.824000pt;}
.y15_c01265{bottom:223.436000pt;}
.y14_c01265{bottom:238.048000pt;}
.y13_c01265{bottom:252.660000pt;}
.y12_c01265{bottom:267.272000pt;}
.y11_c01265{bottom:281.884000pt;}
.y10_c01265{bottom:311.108000pt;}
.yf_c01265{bottom:325.720000pt;}
.ye_c01265{bottom:369.554667pt;}
.yd_c01265{bottom:384.166667pt;}
.yc_c01265{bottom:398.446667pt;}
.yb_c01265{bottom:439.013333pt;}
.ya_c01265{bottom:454.953333pt;}
.y9_c01265{bottom:470.894667pt;}
.y8_c01265{bottom:486.834667pt;}
.y7_c01265{bottom:502.774667pt;}
.y6_c01265{bottom:518.714667pt;}
.y5_c01265{bottom:542.785333pt;}
.y4_c01265{bottom:566.857333pt;}
.y3_c01265{bottom:590.928000pt;}
.y2_c01265{bottom:614.998667pt;}
.y1_c01265{bottom:652.806667pt;}
.h5_c01265{height:31.280681pt;}
.h6_c01265{height:32.006363pt;}
.h3_c01265{height:36.010648pt;}
.h4_c01265{height:46.518078pt;}
.h2_c01265{height:51.855535pt;}
.h0_c01265{height:1122.520000pt;}
.h1_c01265{height:1122.666667pt;}
.w0_c01265{width:793.706667pt;}
.w1_c01265{width:794.000000pt;}
.x0_c01265{left:0.000000pt;}
.x1_c01265{left:113.385333pt;}
.x2_c01265{left:121.886667pt;}
.x3_c01265{left:127.796000pt;}
.x4_c01265{left:386.888000pt;}
}





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

.ir_c01266:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_5800c02f417fd598e3bf4dce.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01266;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01266;src:url('chunks/assets/font_37e5348f156de461c2fcc795.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01266;src:url('chunks/assets/font_218f6d485bb874e7512b238a.woff2')format("woff");}.ff4_c01266{font-family:ff4_c01266;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01266;src:url('chunks/assets/font_171c58d81a5d0b0f3b49b9c4.woff2')format("woff");}.ff5_c01266{font-family:ff5_c01266;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01266{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01266{vertical-align:0.000000px;}
.ls4_c01266{letter-spacing:0.000000px;}
.ls0_c01266{letter-spacing:0.087998px;}
.ls2_c01266{letter-spacing:0.098482px;}
.ls3_c01266{letter-spacing:0.104482px;}
.ls1_c01266{letter-spacing:26.690482px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01266{word-spacing:-26.575517px;}
.ws4_c01266{word-spacing:-26.487518px;}
.wse_c01266{word-spacing:-21.553319px;}
.wsd_c01266{word-spacing:-21.519216px;}
.wsa_c01266{word-spacing:-18.769538px;}
.wsc_c01266{word-spacing:-17.633802px;}
.ws9_c01266{word-spacing:-14.943900px;}
.wsf_c01266{word-spacing:-14.107042px;}
.ws10_c01266{word-spacing:-12.074671px;}
.ws7_c01266{word-spacing:-9.988424px;}
.ws8_c01266{word-spacing:-9.987499px;}
.wsb_c01266{word-spacing:-7.686144px;}
.ws3_c01266{word-spacing:0.000000px;}
.ws0_c01266{word-spacing:0.043999px;}
.ws5_c01266{word-spacing:0.213446px;}
.ws1_c01266{word-spacing:0.219446px;}
.ws6_c01266{word-spacing:43.038600px;}
._4_c01266{margin-left:-7.919102px;}
._3_c01266{margin-left:-6.369713px;}
._6_c01266{margin-left:-4.124516px;}
._2_c01266{margin-left:-1.549390px;}
._1_c01266{width:1.090656px;}
._5_c01266{width:19.935816px;}
._7_c01266{width:40.109428px;}
._0_c01266{width:53.635025px;}
.fc5_c01266{color:rgb(79,153,5);}
.fc4_c01266{color:rgb(143,89,3);}
.fc3_c01266{color:rgb(0,0,0);}
.fc6_c01266{color:rgb(6,69,173);}
.fc2_c01266{color:rgb(207,92,0);}
.fc1_c01266{color:rgb(0,0,207);}
.fc0_c01266{color:rgb(33,74,135);}
.fs0_c01266{font-size:43.999200px;}
.fs2_c01266{font-size:59.775600px;}
.fs1_c01266{font-size:86.077200px;}
.y0_c01266{bottom:0.000000px;}
.y20_c01266{bottom:44.250000px;}
.y1f_c01266{bottom:82.051500px;}
.y1e_c01266{bottom:99.984000px;}
.y1d_c01266{bottom:117.916500px;}
.y1c_c01266{bottom:135.849000px;}
.y1b_c01266{bottom:162.501000px;}
.y1a_c01266{bottom:189.151500px;}
.y19_c01266{bottom:215.802000px;}
.y18_c01266{bottom:242.454000px;}
.y17_c01266{bottom:284.478000px;}
.y16_c01266{bottom:748.903500px;}
.y15_c01266{bottom:765.342000px;}
.y14_c01266{bottom:781.780500px;}
.y13_c01266{bottom:798.219000px;}
.y12_c01266{bottom:814.657500px;}
.y11_c01266{bottom:831.096000px;}
.y10_c01266{bottom:847.534500px;}
.yf_c01266{bottom:863.973000px;}
.ye_c01266{bottom:880.411500px;}
.yd_c01266{bottom:896.848500px;}
.yc_c01266{bottom:913.287000px;}
.yb_c01266{bottom:946.164000px;}
.ya_c01266{bottom:962.602500px;}
.y9_c01266{bottom:979.041000px;}
.y8_c01266{bottom:1011.918000px;}
.y7_c01266{bottom:1028.356500px;}
.y6_c01266{bottom:1044.795000px;}
.y5_c01266{bottom:1061.232000px;}
.y4_c01266{bottom:1077.670500px;}
.y3_c01266{bottom:1094.109000px;}
.y2_c01266{bottom:1110.547500px;}
.y1_c01266{bottom:1159.863000px;}
.h3_c01266{height:35.190766px;}
.h2_c01266{height:36.007158px;}
.h5_c01266{height:40.511979px;}
.h6_c01266{height:52.332837px;}
.h4_c01266{height:58.337477px;}
.h0_c01266{height:1262.835000px;}
.h1_c01266{height:1263.000000px;}
.w0_c01266{width:892.920000px;}
.w1_c01266{width:893.250000px;}
.x0_c01266{left:0.000000px;}
.x4_c01266{left:127.558500px;}
.x2_c01266{left:137.122500px;}
.x1_c01266{left:143.770500px;}
.x3_c01266{left:177.007500px;}
.x5_c01266{left:435.249000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls4_c01266{letter-spacing:0.000000pt;}
.ls0_c01266{letter-spacing:0.078221pt;}
.ls2_c01266{letter-spacing:0.087539pt;}
.ls3_c01266{letter-spacing:0.092873pt;}
.ls1_c01266{letter-spacing:23.724873pt;}
.ws2_c01266{word-spacing:-23.622682pt;}
.ws4_c01266{word-spacing:-23.544461pt;}
.wse_c01266{word-spacing:-19.158506pt;}
.wsd_c01266{word-spacing:-19.128192pt;}
.wsa_c01266{word-spacing:-16.684034pt;}
.wsc_c01266{word-spacing:-15.674491pt;}
.ws9_c01266{word-spacing:-13.283467pt;}
.wsf_c01266{word-spacing:-12.539593pt;}
.ws10_c01266{word-spacing:-10.733041pt;}
.ws7_c01266{word-spacing:-8.878599pt;}
.ws8_c01266{word-spacing:-8.877777pt;}
.wsb_c01266{word-spacing:-6.832128pt;}
.ws3_c01266{word-spacing:0.000000pt;}
.ws0_c01266{word-spacing:0.039110pt;}
.ws5_c01266{word-spacing:0.189730pt;}
.ws1_c01266{word-spacing:0.195063pt;}
.ws6_c01266{word-spacing:38.256533pt;}
._4_c01266{margin-left:-7.039202pt;}
._3_c01266{margin-left:-5.661967pt;}
._6_c01266{margin-left:-3.666237pt;}
._2_c01266{margin-left:-1.377235pt;}
._1_c01266{width:0.969472pt;}
._5_c01266{width:17.720725pt;}
._7_c01266{width:35.652825pt;}
._0_c01266{width:47.675578pt;}
.fs0_c01266{font-size:39.110400pt;}
.fs2_c01266{font-size:53.133867pt;}
.fs1_c01266{font-size:76.513067pt;}
.y0_c01266{bottom:0.000000pt;}
.y20_c01266{bottom:39.333333pt;}
.y1f_c01266{bottom:72.934667pt;}
.y1e_c01266{bottom:88.874667pt;}
.y1d_c01266{bottom:104.814667pt;}
.y1c_c01266{bottom:120.754667pt;}
.y1b_c01266{bottom:144.445333pt;}
.y1a_c01266{bottom:168.134667pt;}
.y19_c01266{bottom:191.824000pt;}
.y18_c01266{bottom:215.514667pt;}
.y17_c01266{bottom:252.869333pt;}
.y16_c01266{bottom:665.692000pt;}
.y15_c01266{bottom:680.304000pt;}
.y14_c01266{bottom:694.916000pt;}
.y13_c01266{bottom:709.528000pt;}
.y12_c01266{bottom:724.140000pt;}
.y11_c01266{bottom:738.752000pt;}
.y10_c01266{bottom:753.364000pt;}
.yf_c01266{bottom:767.976000pt;}
.ye_c01266{bottom:782.588000pt;}
.yd_c01266{bottom:797.198667pt;}
.yc_c01266{bottom:811.810667pt;}
.yb_c01266{bottom:841.034667pt;}
.ya_c01266{bottom:855.646667pt;}
.y9_c01266{bottom:870.258667pt;}
.y8_c01266{bottom:899.482667pt;}
.y7_c01266{bottom:914.094667pt;}
.y6_c01266{bottom:928.706667pt;}
.y5_c01266{bottom:943.317333pt;}
.y4_c01266{bottom:957.929333pt;}
.y3_c01266{bottom:972.541333pt;}
.y2_c01266{bottom:987.153333pt;}
.y1_c01266{bottom:1030.989333pt;}
.h3_c01266{height:31.280681pt;}
.h2_c01266{height:32.006363pt;}
.h5_c01266{height:36.010648pt;}
.h6_c01266{height:46.518078pt;}
.h4_c01266{height:51.855535pt;}
.h0_c01266{height:1122.520000pt;}
.h1_c01266{height:1122.666667pt;}
.w0_c01266{width:793.706667pt;}
.w1_c01266{width:794.000000pt;}
.x0_c01266{left:0.000000pt;}
.x4_c01266{left:113.385333pt;}
.x2_c01266{left:121.886667pt;}
.x1_c01266{left:127.796000pt;}
.x3_c01266{left:157.340000pt;}
.x5_c01266{left:386.888000pt;}
}





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

.ir_c01267:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_528e05406660da6b74cc7a8a.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01267;src:url('chunks/assets/font_07e7a71fb88b2ad9333e29db.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01267;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01267{font-family:ff3_c01267;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01267;src:url('chunks/assets/font_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c01267{font-family:ff4_c01267;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01267{vertical-align:0.000000px;}
.ls4_c01267{letter-spacing:0.000000px;}
.ls1_c01267{letter-spacing:0.087998px;}
.ls2_c01267{letter-spacing:0.098482px;}
.ls0_c01267{letter-spacing:0.104482px;}
.ls3_c01267{letter-spacing:26.690482px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01267{word-spacing:-33.713438px;}
.ws4_c01267{word-spacing:-26.575517px;}
.ws3_c01267{word-spacing:-26.487518px;}
.ws0_c01267{word-spacing:-18.769538px;}
.ws8_c01267{word-spacing:0.000000px;}
.ws5_c01267{word-spacing:0.043999px;}
.wsb_c01267{word-spacing:0.056767px;}
.ws9_c01267{word-spacing:0.073250px;}
.wsa_c01267{word-spacing:0.083734px;}
.ws2_c01267{word-spacing:0.175997px;}
.wsc_c01267{word-spacing:0.202963px;}
.ws6_c01267{word-spacing:0.213446px;}
.ws7_c01267{word-spacing:0.219446px;}
._0_c01267{margin-left:-3.825638px;}
._1_c01267{width:1.005737px;}
._3_c01267{width:53.283031px;}
._2_c01267{width:79.858548px;}
._4_c01267{width:133.452408px;}
.fc5_c01267{color:rgb(0,0,207);}
.fc4_c01267{color:rgb(79,153,5);}
.fc3_c01267{color:rgb(207,92,0);}
.fc2_c01267{color:rgb(33,74,135);}
.fc1_c01267{color:rgb(143,89,3);}
.fc0_c01267{color:rgb(0,0,0);}
.fs1_c01267{font-size:43.999200px;}
.fs0_c01267{font-size:59.775600px;}
.y0_c01267{bottom:0.000000px;}
.y2d_c01267{bottom:44.250000px;}
.y2c_c01267{bottom:96.919500px;}
.y2b_c01267{bottom:113.358000px;}
.y2a_c01267{bottom:129.796500px;}
.y29_c01267{bottom:146.235000px;}
.y28_c01267{bottom:162.673500px;}
.y27_c01267{bottom:179.112000px;}
.y26_c01267{bottom:195.550500px;}
.y25_c01267{bottom:211.989000px;}
.y24_c01267{bottom:228.427500px;}
.y23_c01267{bottom:244.866000px;}
.y22_c01267{bottom:261.304500px;}
.y21_c01267{bottom:294.180000px;}
.y20_c01267{bottom:310.618500px;}
.y1f_c01267{bottom:327.057000px;}
.y1e_c01267{bottom:359.934000px;}
.y1d_c01267{bottom:376.372500px;}
.y1c_c01267{bottom:392.811000px;}
.y1b_c01267{bottom:409.249500px;}
.y1a_c01267{bottom:425.688000px;}
.y19_c01267{bottom:442.125000px;}
.y18_c01267{bottom:458.563500px;}
.y17_c01267{bottom:507.879000px;}
.y16_c01267{bottom:524.317500px;}
.y15_c01267{bottom:540.756000px;}
.y14_c01267{bottom:557.194500px;}
.y13_c01267{bottom:573.633000px;}
.y12_c01267{bottom:590.071500px;}
.y11_c01267{bottom:606.508500px;}
.y10_c01267{bottom:622.947000px;}
.yf_c01267{bottom:639.385500px;}
.ye_c01267{bottom:655.824000px;}
.yd_c01267{bottom:672.262500px;}
.yc_c01267{bottom:688.701000px;}
.yb_c01267{bottom:705.139500px;}
.ya_c01267{bottom:721.578000px;}
.y9_c01267{bottom:738.016500px;}
.y8_c01267{bottom:754.455000px;}
.y7_c01267{bottom:787.330500px;}
.y6_c01267{bottom:803.769000px;}
.y5_c01267{bottom:853.084500px;}
.y4_c01267{bottom:869.523000px;}
.y3_c01267{bottom:885.588000px;}
.y2_c01267{bottom:1141.930500px;}
.y1_c01267{bottom:1159.863000px;}
.h3_c01267{height:35.190766px;}
.h4_c01267{height:36.007158px;}
.h2_c01267{height:52.332837px;}
.h0_c01267{height:1262.835000px;}
.h1_c01267{height:1263.000000px;}
.w0_c01267{width:892.920000px;}
.w1_c01267{width:893.250000px;}
.x0_c01267{left:0.000000px;}
.x1_c01267{left:127.558500px;}
.x2_c01267{left:137.122500px;}
.x3_c01267{left:143.770500px;}
.x4_c01267{left:177.007500px;}
.x5_c01267{left:435.249000px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.ls4_c01267{letter-spacing:0.000000pt;}
.ls1_c01267{letter-spacing:0.078221pt;}
.ls2_c01267{letter-spacing:0.087539pt;}
.ls0_c01267{letter-spacing:0.092873pt;}
.ls3_c01267{letter-spacing:23.724873pt;}
.ws1_c01267{word-spacing:-29.967501pt;}
.ws4_c01267{word-spacing:-23.622682pt;}
.ws3_c01267{word-spacing:-23.544461pt;}
.ws0_c01267{word-spacing:-16.684034pt;}
.ws8_c01267{word-spacing:0.000000pt;}
.ws5_c01267{word-spacing:0.039110pt;}
.wsb_c01267{word-spacing:0.050460pt;}
.ws9_c01267{word-spacing:0.065111pt;}
.wsa_c01267{word-spacing:0.074430pt;}
.ws2_c01267{word-spacing:0.156442pt;}
.wsc_c01267{word-spacing:0.180412pt;}
.ws6_c01267{word-spacing:0.189730pt;}
.ws7_c01267{word-spacing:0.195063pt;}
._0_c01267{margin-left:-3.400567pt;}
._1_c01267{width:0.893988pt;}
._3_c01267{width:47.362694pt;}
._2_c01267{width:70.985376pt;}
._4_c01267{width:118.624363pt;}
.fs1_c01267{font-size:39.110400pt;}
.fs0_c01267{font-size:53.133867pt;}
.y0_c01267{bottom:0.000000pt;}
.y2d_c01267{bottom:39.333333pt;}
.y2c_c01267{bottom:86.150667pt;}
.y2b_c01267{bottom:100.762667pt;}
.y2a_c01267{bottom:115.374667pt;}
.y29_c01267{bottom:129.986667pt;}
.y28_c01267{bottom:144.598667pt;}
.y27_c01267{bottom:159.210667pt;}
.y26_c01267{bottom:173.822667pt;}
.y25_c01267{bottom:188.434667pt;}
.y24_c01267{bottom:203.046667pt;}
.y23_c01267{bottom:217.658667pt;}
.y22_c01267{bottom:232.270667pt;}
.y21_c01267{bottom:261.493333pt;}
.y20_c01267{bottom:276.105333pt;}
.y1f_c01267{bottom:290.717333pt;}
.y1e_c01267{bottom:319.941333pt;}
.y1d_c01267{bottom:334.553333pt;}
.y1c_c01267{bottom:349.165333pt;}
.y1b_c01267{bottom:363.777333pt;}
.y1a_c01267{bottom:378.389333pt;}
.y19_c01267{bottom:393.000000pt;}
.y18_c01267{bottom:407.612000pt;}
.y17_c01267{bottom:451.448000pt;}
.y16_c01267{bottom:466.060000pt;}
.y15_c01267{bottom:480.672000pt;}
.y14_c01267{bottom:495.284000pt;}
.y13_c01267{bottom:509.896000pt;}
.y12_c01267{bottom:524.508000pt;}
.y11_c01267{bottom:539.118667pt;}
.y10_c01267{bottom:553.730667pt;}
.yf_c01267{bottom:568.342667pt;}
.ye_c01267{bottom:582.954667pt;}
.yd_c01267{bottom:597.566667pt;}
.yc_c01267{bottom:612.178667pt;}
.yb_c01267{bottom:626.790667pt;}
.ya_c01267{bottom:641.402667pt;}
.y9_c01267{bottom:656.014667pt;}
.y8_c01267{bottom:670.626667pt;}
.y7_c01267{bottom:699.849333pt;}
.y6_c01267{bottom:714.461333pt;}
.y5_c01267{bottom:758.297333pt;}
.y4_c01267{bottom:772.909333pt;}
.y3_c01267{bottom:787.189333pt;}
.y2_c01267{bottom:1015.049333pt;}
.y1_c01267{bottom:1030.989333pt;}
.h3_c01267{height:31.280681pt;}
.h4_c01267{height:32.006363pt;}
.h2_c01267{height:46.518078pt;}
.h0_c01267{height:1122.520000pt;}
.h1_c01267{height:1122.666667pt;}
.w0_c01267{width:793.706667pt;}
.w1_c01267{width:794.000000pt;}
.x0_c01267{left:0.000000pt;}
.x1_c01267{left:113.385333pt;}
.x2_c01267{left:121.886667pt;}
.x3_c01267{left:127.796000pt;}
.x4_c01267{left:157.340000pt;}
.x5_c01267{left:386.888000pt;}
}





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

.ir_c01268:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_5356092e67aca16939433a3f.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01268;src:url('chunks/assets/font_258c7eab896c6c4f767c22f3.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01268;src:url('chunks/assets/font_5ace5bd72ff46106b85c0ec2.woff2')format("woff");}.ff3_c01268{font-family:ff3_c01268;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01268;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01268{font-family:ff4_c01268;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01268;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01268{font-family:ff5_c01268;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01268{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01268{vertical-align:0.000000px;}
.ls3_c01268{letter-spacing:0.000000px;}
.ls0_c01268{letter-spacing:0.087998px;}
.ls2_c01268{letter-spacing:0.098482px;}
.ls1_c01268{letter-spacing:0.104482px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01268{word-spacing:-33.713438px;}
.ws2_c01268{word-spacing:-26.575517px;}
.wse_c01268{word-spacing:-26.487518px;}
.ws9_c01268{word-spacing:-21.553319px;}
.ws8_c01268{word-spacing:-21.519216px;}
.ws5_c01268{word-spacing:-18.769538px;}
.ws7_c01268{word-spacing:-17.633802px;}
.ws4_c01268{word-spacing:-14.943900px;}
.wsa_c01268{word-spacing:-14.107042px;}
.wsb_c01268{word-spacing:-12.074671px;}
.ws1_c01268{word-spacing:-9.988424px;}
.ws3_c01268{word-spacing:-9.987499px;}
.ws6_c01268{word-spacing:-7.686144px;}
.ws12_c01268{word-spacing:0.000000px;}
.wsf_c01268{word-spacing:0.043999px;}
.ws15_c01268{word-spacing:0.056767px;}
.ws13_c01268{word-spacing:0.073250px;}
.ws14_c01268{word-spacing:0.083734px;}
.wsd_c01268{word-spacing:0.175997px;}
.ws16_c01268{word-spacing:0.202963px;}
.ws10_c01268{word-spacing:0.213446px;}
.ws11_c01268{word-spacing:0.219446px;}
.ws0_c01268{word-spacing:43.038600px;}
._2_c01268{margin-left:-7.919102px;}
._1_c01268{margin-left:-6.369713px;}
._4_c01268{margin-left:-4.124516px;}
._0_c01268{margin-left:-1.549390px;}
._6_c01268{width:1.005737px;}
._3_c01268{width:19.935816px;}
._5_c01268{width:40.109428px;}
._8_c01268{width:53.283031px;}
._7_c01268{width:79.858548px;}
._9_c01268{width:133.452408px;}
.fc6_c01268{color:rgb(0,0,207);}
.fc5_c01268{color:rgb(79,153,5);}
.fc3_c01268{color:rgb(33,74,135);}
.fc2_c01268{color:rgb(143,89,3);}
.fc4_c01268{color:rgb(207,92,0);}
.fc1_c01268{color:rgb(6,69,173);}
.fc0_c01268{color:rgb(0,0,0);}
.fs2_c01268{font-size:43.999200px;}
.fs1_c01268{font-size:59.775600px;}
.fs0_c01268{font-size:86.077200px;}
.y0_c01268{bottom:0.000000px;}
.y20_c01268{bottom:44.250000px;}
.y1f_c01268{bottom:86.982000px;}
.y1e_c01268{bottom:103.420500px;}
.y1d_c01268{bottom:119.859000px;}
.y1c_c01268{bottom:136.297500px;}
.y1b_c01268{bottom:152.736000px;}
.y1a_c01268{bottom:169.174500px;}
.y19_c01268{bottom:185.613000px;}
.y18_c01268{bottom:202.051500px;}
.y17_c01268{bottom:218.490000px;}
.y16_c01268{bottom:234.927000px;}
.y15_c01268{bottom:251.365500px;}
.y14_c01268{bottom:267.804000px;}
.y13_c01268{bottom:284.242500px;}
.y12_c01268{bottom:300.681000px;}
.y11_c01268{bottom:317.119500px;}
.y10_c01268{bottom:349.996500px;}
.yf_c01268{bottom:366.435000px;}
.ye_c01268{bottom:415.749000px;}
.yd_c01268{bottom:432.187500px;}
.yc_c01268{bottom:448.252500px;}
.yb_c01268{bottom:493.890000px;}
.ya_c01268{bottom:511.822500px;}
.y9_c01268{bottom:529.756500px;}
.y8_c01268{bottom:547.689000px;}
.y7_c01268{bottom:565.621500px;}
.y6_c01268{bottom:583.554000px;}
.y5_c01268{bottom:610.633500px;}
.y4_c01268{bottom:637.714500px;}
.y3_c01268{bottom:664.794000px;}
.y2_c01268{bottom:691.873500px;}
.y1_c01268{bottom:734.407500px;}
.h5_c01268{height:35.190766px;}
.h6_c01268{height:36.007158px;}
.h3_c01268{height:40.511979px;}
.h4_c01268{height:52.332837px;}
.h2_c01268{height:58.337477px;}
.h0_c01268{height:1262.835000px;}
.h1_c01268{height:1263.000000px;}
.w0_c01268{width:892.920000px;}
.w1_c01268{width:893.250000px;}
.x0_c01268{left:0.000000px;}
.x1_c01268{left:127.558500px;}
.x2_c01268{left:137.122500px;}
.x3_c01268{left:143.770500px;}
.x4_c01268{left:435.249000px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls3_c01268{letter-spacing:0.000000pt;}
.ls0_c01268{letter-spacing:0.078221pt;}
.ls2_c01268{letter-spacing:0.087539pt;}
.ls1_c01268{letter-spacing:0.092873pt;}
.wsc_c01268{word-spacing:-29.967501pt;}
.ws2_c01268{word-spacing:-23.622682pt;}
.wse_c01268{word-spacing:-23.544461pt;}
.ws9_c01268{word-spacing:-19.158506pt;}
.ws8_c01268{word-spacing:-19.128192pt;}
.ws5_c01268{word-spacing:-16.684034pt;}
.ws7_c01268{word-spacing:-15.674491pt;}
.ws4_c01268{word-spacing:-13.283467pt;}
.wsa_c01268{word-spacing:-12.539593pt;}
.wsb_c01268{word-spacing:-10.733041pt;}
.ws1_c01268{word-spacing:-8.878599pt;}
.ws3_c01268{word-spacing:-8.877777pt;}
.ws6_c01268{word-spacing:-6.832128pt;}
.ws12_c01268{word-spacing:0.000000pt;}
.wsf_c01268{word-spacing:0.039110pt;}
.ws15_c01268{word-spacing:0.050460pt;}
.ws13_c01268{word-spacing:0.065111pt;}
.ws14_c01268{word-spacing:0.074430pt;}
.wsd_c01268{word-spacing:0.156442pt;}
.ws16_c01268{word-spacing:0.180412pt;}
.ws10_c01268{word-spacing:0.189730pt;}
.ws11_c01268{word-spacing:0.195063pt;}
.ws0_c01268{word-spacing:38.256533pt;}
._2_c01268{margin-left:-7.039202pt;}
._1_c01268{margin-left:-5.661967pt;}
._4_c01268{margin-left:-3.666237pt;}
._0_c01268{margin-left:-1.377235pt;}
._6_c01268{width:0.893988pt;}
._3_c01268{width:17.720725pt;}
._5_c01268{width:35.652825pt;}
._8_c01268{width:47.362694pt;}
._7_c01268{width:70.985376pt;}
._9_c01268{width:118.624363pt;}
.fs2_c01268{font-size:39.110400pt;}
.fs1_c01268{font-size:53.133867pt;}
.fs0_c01268{font-size:76.513067pt;}
.y0_c01268{bottom:0.000000pt;}
.y20_c01268{bottom:39.333333pt;}
.y1f_c01268{bottom:77.317333pt;}
.y1e_c01268{bottom:91.929333pt;}
.y1d_c01268{bottom:106.541333pt;}
.y1c_c01268{bottom:121.153333pt;}
.y1b_c01268{bottom:135.765333pt;}
.y1a_c01268{bottom:150.377333pt;}
.y19_c01268{bottom:164.989333pt;}
.y18_c01268{bottom:179.601333pt;}
.y17_c01268{bottom:194.213333pt;}
.y16_c01268{bottom:208.824000pt;}
.y15_c01268{bottom:223.436000pt;}
.y14_c01268{bottom:238.048000pt;}
.y13_c01268{bottom:252.660000pt;}
.y12_c01268{bottom:267.272000pt;}
.y11_c01268{bottom:281.884000pt;}
.y10_c01268{bottom:311.108000pt;}
.yf_c01268{bottom:325.720000pt;}
.ye_c01268{bottom:369.554667pt;}
.yd_c01268{bottom:384.166667pt;}
.yc_c01268{bottom:398.446667pt;}
.yb_c01268{bottom:439.013333pt;}
.ya_c01268{bottom:454.953333pt;}
.y9_c01268{bottom:470.894667pt;}
.y8_c01268{bottom:486.834667pt;}
.y7_c01268{bottom:502.774667pt;}
.y6_c01268{bottom:518.714667pt;}
.y5_c01268{bottom:542.785333pt;}
.y4_c01268{bottom:566.857333pt;}
.y3_c01268{bottom:590.928000pt;}
.y2_c01268{bottom:614.998667pt;}
.y1_c01268{bottom:652.806667pt;}
.h5_c01268{height:31.280681pt;}
.h6_c01268{height:32.006363pt;}
.h3_c01268{height:36.010648pt;}
.h4_c01268{height:46.518078pt;}
.h2_c01268{height:51.855535pt;}
.h0_c01268{height:1122.520000pt;}
.h1_c01268{height:1122.666667pt;}
.w0_c01268{width:793.706667pt;}
.w1_c01268{width:794.000000pt;}
.x0_c01268{left:0.000000pt;}
.x1_c01268{left:113.385333pt;}
.x2_c01268{left:121.886667pt;}
.x3_c01268{left:127.796000pt;}
.x4_c01268{left:386.888000pt;}
}





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

.ir_c01269:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_489cdbb9ce322960a9122a35.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01269;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01269;src:url('chunks/assets/font_a68f559420f5cc78bded9741.woff2')format("woff");}.ff3_c01269{font-family:ff3_c01269;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01269;src:url('chunks/assets/font_24a3047ae2eb768f34345408.woff2')format("woff");}.ff4_c01269{font-family:ff4_c01269;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01269;src:url('chunks/assets/font_69ecd968e6d577841b306555.woff2')format("woff");}.ff5_c01269{font-family:ff5_c01269;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01269{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.ls4_c01269{letter-spacing:0.000000px;}
.ls0_c01269{letter-spacing:0.087998px;}
.ls2_c01269{letter-spacing:0.098482px;}
.ls3_c01269{letter-spacing:0.104482px;}
.ls1_c01269{letter-spacing:26.690482px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01269{word-spacing:-26.575517px;}
.ws4_c01269{word-spacing:-26.487518px;}
.wse_c01269{word-spacing:-21.553319px;}
.wsd_c01269{word-spacing:-21.519216px;}
.wsc_c01269{word-spacing:-19.247743px;}
.wsa_c01269{word-spacing:-18.769538px;}
.ws9_c01269{word-spacing:-14.943900px;}
.wsf_c01269{word-spacing:-14.107042px;}
.ws10_c01269{word-spacing:-12.074671px;}
.wsb_c01269{word-spacing:-10.230144px;}
.ws7_c01269{word-spacing:-9.988424px;}
.ws8_c01269{word-spacing:-9.987499px;}
.ws3_c01269{word-spacing:0.000000px;}
.ws0_c01269{word-spacing:0.043999px;}
.ws5_c01269{word-spacing:0.213446px;}
.ws1_c01269{word-spacing:0.219446px;}
.ws6_c01269{word-spacing:43.038600px;}
._3_c01269{margin-left:-7.919102px;}
._2_c01269{margin-left:-6.369713px;}
._5_c01269{margin-left:-4.124516px;}
._1_c01269{margin-left:-1.549390px;}
._0_c01269{width:1.101139px;}
._4_c01269{width:19.935816px;}
._6_c01269{width:40.109428px;}
.fc5_c01269{color:rgb(79,153,5);}
.fc4_c01269{color:rgb(143,89,3);}
.fc3_c01269{color:rgb(0,0,0);}
.fc6_c01269{color:rgb(6,69,173);}
.fc2_c01269{color:rgb(207,92,0);}
.fc1_c01269{color:rgb(0,0,207);}
.fc0_c01269{color:rgb(33,74,135);}
.fs0_c01269{font-size:43.999200px;}
.fs2_c01269{font-size:59.775600px;}
.fs1_c01269{font-size:86.077200px;}
.y0_c01269{bottom:0.000000px;}
.y20_c01269{bottom:44.250000px;}
.y1f_c01269{bottom:82.051500px;}
.y1e_c01269{bottom:99.984000px;}
.y1d_c01269{bottom:117.916500px;}
.y1c_c01269{bottom:135.849000px;}
.y1b_c01269{bottom:162.501000px;}
.y1a_c01269{bottom:189.151500px;}
.y19_c01269{bottom:215.802000px;}
.y18_c01269{bottom:242.454000px;}
.y17_c01269{bottom:284.478000px;}
.y16_c01269{bottom:748.903500px;}
.y15_c01269{bottom:765.342000px;}
.y14_c01269{bottom:781.780500px;}
.y13_c01269{bottom:798.219000px;}
.y12_c01269{bottom:814.657500px;}
.y11_c01269{bottom:831.096000px;}
.y10_c01269{bottom:847.534500px;}
.yf_c01269{bottom:863.973000px;}
.ye_c01269{bottom:880.411500px;}
.yd_c01269{bottom:896.848500px;}
.yc_c01269{bottom:913.287000px;}
.yb_c01269{bottom:946.164000px;}
.ya_c01269{bottom:962.602500px;}
.y9_c01269{bottom:979.041000px;}
.y8_c01269{bottom:1011.918000px;}
.y7_c01269{bottom:1028.356500px;}
.y6_c01269{bottom:1044.795000px;}
.y5_c01269{bottom:1061.232000px;}
.y4_c01269{bottom:1077.670500px;}
.y3_c01269{bottom:1094.109000px;}
.y2_c01269{bottom:1110.547500px;}
.y1_c01269{bottom:1159.863000px;}
.h3_c01269{height:35.190766px;}
.h2_c01269{height:36.007158px;}
.h5_c01269{height:40.511979px;}
.h6_c01269{height:52.332837px;}
.h4_c01269{height:58.337477px;}
.h0_c01269{height:1262.835000px;}
.h1_c01269{height:1263.000000px;}
.w0_c01269{width:892.920000px;}
.w1_c01269{width:893.250000px;}
.x0_c01269{left:0.000000px;}
.x4_c01269{left:127.558500px;}
.x2_c01269{left:137.122500px;}
.x1_c01269{left:143.770500px;}
.x3_c01269{left:177.007500px;}
.x5_c01269{left:435.249000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls4_c01269{letter-spacing:0.000000pt;}
.ls0_c01269{letter-spacing:0.078221pt;}
.ls2_c01269{letter-spacing:0.087539pt;}
.ls3_c01269{letter-spacing:0.092873pt;}
.ls1_c01269{letter-spacing:23.724873pt;}
.ws2_c01269{word-spacing:-23.622682pt;}
.ws4_c01269{word-spacing:-23.544461pt;}
.wse_c01269{word-spacing:-19.158506pt;}
.wsd_c01269{word-spacing:-19.128192pt;}
.wsc_c01269{word-spacing:-17.109105pt;}
.wsa_c01269{word-spacing:-16.684034pt;}
.ws9_c01269{word-spacing:-13.283467pt;}
.wsf_c01269{word-spacing:-12.539593pt;}
.ws10_c01269{word-spacing:-10.733041pt;}
.wsb_c01269{word-spacing:-9.093461pt;}
.ws7_c01269{word-spacing:-8.878599pt;}
.ws8_c01269{word-spacing:-8.877777pt;}
.ws3_c01269{word-spacing:0.000000pt;}
.ws0_c01269{word-spacing:0.039110pt;}
.ws5_c01269{word-spacing:0.189730pt;}
.ws1_c01269{word-spacing:0.195063pt;}
.ws6_c01269{word-spacing:38.256533pt;}
._3_c01269{margin-left:-7.039202pt;}
._2_c01269{margin-left:-5.661967pt;}
._5_c01269{margin-left:-3.666237pt;}
._1_c01269{margin-left:-1.377235pt;}
._0_c01269{width:0.978790pt;}
._4_c01269{width:17.720725pt;}
._6_c01269{width:35.652825pt;}
.fs0_c01269{font-size:39.110400pt;}
.fs2_c01269{font-size:53.133867pt;}
.fs1_c01269{font-size:76.513067pt;}
.y0_c01269{bottom:0.000000pt;}
.y20_c01269{bottom:39.333333pt;}
.y1f_c01269{bottom:72.934667pt;}
.y1e_c01269{bottom:88.874667pt;}
.y1d_c01269{bottom:104.814667pt;}
.y1c_c01269{bottom:120.754667pt;}
.y1b_c01269{bottom:144.445333pt;}
.y1a_c01269{bottom:168.134667pt;}
.y19_c01269{bottom:191.824000pt;}
.y18_c01269{bottom:215.514667pt;}
.y17_c01269{bottom:252.869333pt;}
.y16_c01269{bottom:665.692000pt;}
.y15_c01269{bottom:680.304000pt;}
.y14_c01269{bottom:694.916000pt;}
.y13_c01269{bottom:709.528000pt;}
.y12_c01269{bottom:724.140000pt;}
.y11_c01269{bottom:738.752000pt;}
.y10_c01269{bottom:753.364000pt;}
.yf_c01269{bottom:767.976000pt;}
.ye_c01269{bottom:782.588000pt;}
.yd_c01269{bottom:797.198667pt;}
.yc_c01269{bottom:811.810667pt;}
.yb_c01269{bottom:841.034667pt;}
.ya_c01269{bottom:855.646667pt;}
.y9_c01269{bottom:870.258667pt;}
.y8_c01269{bottom:899.482667pt;}
.y7_c01269{bottom:914.094667pt;}
.y6_c01269{bottom:928.706667pt;}
.y5_c01269{bottom:943.317333pt;}
.y4_c01269{bottom:957.929333pt;}
.y3_c01269{bottom:972.541333pt;}
.y2_c01269{bottom:987.153333pt;}
.y1_c01269{bottom:1030.989333pt;}
.h3_c01269{height:31.280681pt;}
.h2_c01269{height:32.006363pt;}
.h5_c01269{height:36.010648pt;}
.h6_c01269{height:46.518078pt;}
.h4_c01269{height:51.855535pt;}
.h0_c01269{height:1122.520000pt;}
.h1_c01269{height:1122.666667pt;}
.w0_c01269{width:793.706667pt;}
.w1_c01269{width:794.000000pt;}
.x0_c01269{left:0.000000pt;}
.x4_c01269{left:113.385333pt;}
.x2_c01269{left:121.886667pt;}
.x1_c01269{left:127.796000pt;}
.x3_c01269{left:157.340000pt;}
.x5_c01269{left:386.888000pt;}
}





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

.ir_c01270:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_9f23eeea865035153e78735a.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01270;src:url('chunks/assets/font_946b3feb0abc446ae2152a62.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01270;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01270{font-family:ff3_c01270;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01270;src:url('chunks/assets/font_06bdf14132e1b2f6feaf4b88.woff2')format("woff");}.ff4_c01270{font-family:ff4_c01270;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.ls4_c01270{letter-spacing:0.000000px;}
.ls1_c01270{letter-spacing:0.087998px;}
.ls2_c01270{letter-spacing:0.098482px;}
.ls0_c01270{letter-spacing:0.104482px;}
.ls3_c01270{letter-spacing:26.690482px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01270{word-spacing:-33.713438px;}
.ws4_c01270{word-spacing:-26.575517px;}
.ws3_c01270{word-spacing:-26.487518px;}
.ws0_c01270{word-spacing:-18.769538px;}
.ws8_c01270{word-spacing:0.000000px;}
.ws5_c01270{word-spacing:0.043999px;}
.wsb_c01270{word-spacing:0.056767px;}
.ws9_c01270{word-spacing:0.073250px;}
.wsa_c01270{word-spacing:0.083734px;}
.ws2_c01270{word-spacing:0.175997px;}
.wsc_c01270{word-spacing:0.202963px;}
.ws6_c01270{word-spacing:0.213446px;}
.ws7_c01270{word-spacing:0.219446px;}
._0_c01270{margin-left:-3.825638px;}
._1_c01270{width:1.005737px;}
._3_c01270{width:53.283031px;}
._2_c01270{width:79.858548px;}
._5_c01270{width:106.830058px;}
._4_c01270{width:133.452408px;}
.fc5_c01270{color:rgb(0,0,207);}
.fc4_c01270{color:rgb(79,153,5);}
.fc3_c01270{color:rgb(207,92,0);}
.fc2_c01270{color:rgb(33,74,135);}
.fc1_c01270{color:rgb(143,89,3);}
.fc0_c01270{color:rgb(0,0,0);}
.fs1_c01270{font-size:43.999200px;}
.fs0_c01270{font-size:59.775600px;}
.y0_c01270{bottom:0.000000px;}
.y2d_c01270{bottom:44.250000px;}
.y2c_c01270{bottom:96.919500px;}
.y2b_c01270{bottom:113.358000px;}
.y2a_c01270{bottom:129.796500px;}
.y29_c01270{bottom:146.235000px;}
.y28_c01270{bottom:162.673500px;}
.y27_c01270{bottom:179.112000px;}
.y26_c01270{bottom:195.550500px;}
.y25_c01270{bottom:211.989000px;}
.y24_c01270{bottom:228.427500px;}
.y23_c01270{bottom:244.866000px;}
.y22_c01270{bottom:261.304500px;}
.y21_c01270{bottom:294.180000px;}
.y20_c01270{bottom:310.618500px;}
.y1f_c01270{bottom:327.057000px;}
.y1e_c01270{bottom:359.934000px;}
.y1d_c01270{bottom:376.372500px;}
.y1c_c01270{bottom:392.811000px;}
.y1b_c01270{bottom:409.249500px;}
.y1a_c01270{bottom:425.688000px;}
.y19_c01270{bottom:442.125000px;}
.y18_c01270{bottom:458.563500px;}
.y17_c01270{bottom:507.879000px;}
.y16_c01270{bottom:524.317500px;}
.y15_c01270{bottom:540.756000px;}
.y14_c01270{bottom:557.194500px;}
.y13_c01270{bottom:573.633000px;}
.y12_c01270{bottom:590.071500px;}
.y11_c01270{bottom:606.508500px;}
.y10_c01270{bottom:622.947000px;}
.yf_c01270{bottom:639.385500px;}
.ye_c01270{bottom:655.824000px;}
.yd_c01270{bottom:672.262500px;}
.yc_c01270{bottom:688.701000px;}
.yb_c01270{bottom:705.139500px;}
.ya_c01270{bottom:721.578000px;}
.y9_c01270{bottom:738.016500px;}
.y8_c01270{bottom:754.455000px;}
.y7_c01270{bottom:787.330500px;}
.y6_c01270{bottom:803.769000px;}
.y5_c01270{bottom:853.084500px;}
.y4_c01270{bottom:869.523000px;}
.y3_c01270{bottom:885.588000px;}
.y2_c01270{bottom:1141.930500px;}
.y1_c01270{bottom:1159.863000px;}
.h3_c01270{height:35.190766px;}
.h4_c01270{height:36.007158px;}
.h2_c01270{height:52.332837px;}
.h0_c01270{height:1262.835000px;}
.h1_c01270{height:1263.000000px;}
.w0_c01270{width:892.920000px;}
.w1_c01270{width:893.250000px;}
.x0_c01270{left:0.000000px;}
.x1_c01270{left:127.558500px;}
.x2_c01270{left:137.122500px;}
.x3_c01270{left:143.770500px;}
.x4_c01270{left:177.007500px;}
.x5_c01270{left:435.249000px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls4_c01270{letter-spacing:0.000000pt;}
.ls1_c01270{letter-spacing:0.078221pt;}
.ls2_c01270{letter-spacing:0.087539pt;}
.ls0_c01270{letter-spacing:0.092873pt;}
.ls3_c01270{letter-spacing:23.724873pt;}
.ws1_c01270{word-spacing:-29.967501pt;}
.ws4_c01270{word-spacing:-23.622682pt;}
.ws3_c01270{word-spacing:-23.544461pt;}
.ws0_c01270{word-spacing:-16.684034pt;}
.ws8_c01270{word-spacing:0.000000pt;}
.ws5_c01270{word-spacing:0.039110pt;}
.wsb_c01270{word-spacing:0.050460pt;}
.ws9_c01270{word-spacing:0.065111pt;}
.wsa_c01270{word-spacing:0.074430pt;}
.ws2_c01270{word-spacing:0.156442pt;}
.wsc_c01270{word-spacing:0.180412pt;}
.ws6_c01270{word-spacing:0.189730pt;}
.ws7_c01270{word-spacing:0.195063pt;}
._0_c01270{margin-left:-3.400567pt;}
._1_c01270{width:0.893988pt;}
._3_c01270{width:47.362694pt;}
._2_c01270{width:70.985376pt;}
._5_c01270{width:94.960051pt;}
._4_c01270{width:118.624363pt;}
.fs1_c01270{font-size:39.110400pt;}
.fs0_c01270{font-size:53.133867pt;}
.y0_c01270{bottom:0.000000pt;}
.y2d_c01270{bottom:39.333333pt;}
.y2c_c01270{bottom:86.150667pt;}
.y2b_c01270{bottom:100.762667pt;}
.y2a_c01270{bottom:115.374667pt;}
.y29_c01270{bottom:129.986667pt;}
.y28_c01270{bottom:144.598667pt;}
.y27_c01270{bottom:159.210667pt;}
.y26_c01270{bottom:173.822667pt;}
.y25_c01270{bottom:188.434667pt;}
.y24_c01270{bottom:203.046667pt;}
.y23_c01270{bottom:217.658667pt;}
.y22_c01270{bottom:232.270667pt;}
.y21_c01270{bottom:261.493333pt;}
.y20_c01270{bottom:276.105333pt;}
.y1f_c01270{bottom:290.717333pt;}
.y1e_c01270{bottom:319.941333pt;}
.y1d_c01270{bottom:334.553333pt;}
.y1c_c01270{bottom:349.165333pt;}
.y1b_c01270{bottom:363.777333pt;}
.y1a_c01270{bottom:378.389333pt;}
.y19_c01270{bottom:393.000000pt;}
.y18_c01270{bottom:407.612000pt;}
.y17_c01270{bottom:451.448000pt;}
.y16_c01270{bottom:466.060000pt;}
.y15_c01270{bottom:480.672000pt;}
.y14_c01270{bottom:495.284000pt;}
.y13_c01270{bottom:509.896000pt;}
.y12_c01270{bottom:524.508000pt;}
.y11_c01270{bottom:539.118667pt;}
.y10_c01270{bottom:553.730667pt;}
.yf_c01270{bottom:568.342667pt;}
.ye_c01270{bottom:582.954667pt;}
.yd_c01270{bottom:597.566667pt;}
.yc_c01270{bottom:612.178667pt;}
.yb_c01270{bottom:626.790667pt;}
.ya_c01270{bottom:641.402667pt;}
.y9_c01270{bottom:656.014667pt;}
.y8_c01270{bottom:670.626667pt;}
.y7_c01270{bottom:699.849333pt;}
.y6_c01270{bottom:714.461333pt;}
.y5_c01270{bottom:758.297333pt;}
.y4_c01270{bottom:772.909333pt;}
.y3_c01270{bottom:787.189333pt;}
.y2_c01270{bottom:1015.049333pt;}
.y1_c01270{bottom:1030.989333pt;}
.h3_c01270{height:31.280681pt;}
.h4_c01270{height:32.006363pt;}
.h2_c01270{height:46.518078pt;}
.h0_c01270{height:1122.520000pt;}
.h1_c01270{height:1122.666667pt;}
.w0_c01270{width:793.706667pt;}
.w1_c01270{width:794.000000pt;}
.x0_c01270{left:0.000000pt;}
.x1_c01270{left:113.385333pt;}
.x2_c01270{left:121.886667pt;}
.x3_c01270{left:127.796000pt;}
.x4_c01270{left:157.340000pt;}
.x5_c01270{left:386.888000pt;}
}





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

.ir_c01271:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_cd1a28ddef276351e5ada07c.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01271;src:url('chunks/assets/font_9e39f6d7d52dabc86dc54b3b.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01271;src:url('chunks/assets/font_3c35383f710dd8dd71646c43.woff2')format("woff");}.ff3_c01271{font-family:ff3_c01271;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01271;src:url('chunks/assets/font_f05f70ad2d91f539ec2f7967.woff2')format("woff");}.ff4_c01271{font-family:ff4_c01271;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01271;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01271{font-family:ff5_c01271;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01271{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01271{vertical-align:0.000000px;}
.ls3_c01271{letter-spacing:0.000000px;}
.ls0_c01271{letter-spacing:0.087998px;}
.ls2_c01271{letter-spacing:0.098482px;}
.ls1_c01271{letter-spacing:0.104482px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01271{word-spacing:-26.575517px;}
.wse_c01271{word-spacing:-26.487518px;}
.ws8_c01271{word-spacing:-23.798270px;}
.ws7_c01271{word-spacing:-23.730913px;}
.ws9_c01271{word-spacing:-22.356074px;}
.ws5_c01271{word-spacing:-18.769538px;}
.wsc_c01271{word-spacing:-18.590212px;}
.wsb_c01271{word-spacing:-17.693578px;}
.wsa_c01271{word-spacing:-15.063451px;}
.ws4_c01271{word-spacing:-14.943900px;}
.ws6_c01271{word-spacing:-12.474144px;}
.ws1_c01271{word-spacing:-9.988424px;}
.ws3_c01271{word-spacing:-9.987499px;}
.ws12_c01271{word-spacing:0.000000px;}
.wsf_c01271{word-spacing:0.043999px;}
.wsd_c01271{word-spacing:0.175997px;}
.ws11_c01271{word-spacing:0.213446px;}
.ws10_c01271{word-spacing:0.219446px;}
.ws0_c01271{word-spacing:43.038600px;}
._1_c01271{margin-left:-6.580632px;}
._7_c01271{margin-left:-3.138872px;}
._2_c01271{margin-left:-1.075961px;}
._8_c01271{width:1.005737px;}
._3_c01271{width:10.998710px;}
._4_c01271{width:12.493100px;}
._5_c01271{width:18.709763px;}
._0_c01271{width:19.935816px;}
._6_c01271{width:23.073382px;}
.fc5_c01271{color:rgb(79,153,5);}
.fc3_c01271{color:rgb(33,74,135);}
.fc2_c01271{color:rgb(143,89,3);}
.fc4_c01271{color:rgb(207,92,0);}
.fc1_c01271{color:rgb(6,69,173);}
.fc0_c01271{color:rgb(0,0,0);}
.fs2_c01271{font-size:43.999200px;}
.fs1_c01271{font-size:59.775600px;}
.fs0_c01271{font-size:86.077200px;}
.y0_c01271{bottom:0.000000px;}
.y1e_c01271{bottom:44.250000px;}
.y1d_c01271{bottom:86.982000px;}
.y1c_c01271{bottom:136.297500px;}
.y1b_c01271{bottom:152.736000px;}
.y1a_c01271{bottom:185.613000px;}
.y19_c01271{bottom:202.051500px;}
.y18_c01271{bottom:234.927000px;}
.y17_c01271{bottom:251.365500px;}
.y16_c01271{bottom:267.804000px;}
.y15_c01271{bottom:284.242500px;}
.y14_c01271{bottom:317.119500px;}
.y13_c01271{bottom:333.558000px;}
.y12_c01271{bottom:349.996500px;}
.y11_c01271{bottom:366.435000px;}
.y10_c01271{bottom:382.873500px;}
.yf_c01271{bottom:399.310500px;}
.ye_c01271{bottom:415.749000px;}
.yd_c01271{bottom:432.187500px;}
.yc_c01271{bottom:448.252500px;}
.yb_c01271{bottom:495.994500px;}
.ya_c01271{bottom:513.927000px;}
.y9_c01271{bottom:531.859500px;}
.y8_c01271{bottom:549.792000px;}
.y7_c01271{bottom:567.726000px;}
.y6_c01271{bottom:585.658500px;}
.y5_c01271{bottom:612.480000px;}
.y4_c01271{bottom:639.301500px;}
.y3_c01271{bottom:666.123000px;}
.y2_c01271{bottom:692.944500px;}
.y1_c01271{bottom:735.139500px;}
.h5_c01271{height:35.190766px;}
.h6_c01271{height:36.007158px;}
.h3_c01271{height:40.511979px;}
.h4_c01271{height:52.332837px;}
.h2_c01271{height:58.337477px;}
.h0_c01271{height:1262.835000px;}
.h1_c01271{height:1263.000000px;}
.w0_c01271{width:892.920000px;}
.w1_c01271{width:893.250000px;}
.x0_c01271{left:0.000000px;}
.x1_c01271{left:127.558500px;}
.x2_c01271{left:137.122500px;}
.x3_c01271{left:435.249000px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls3_c01271{letter-spacing:0.000000pt;}
.ls0_c01271{letter-spacing:0.078221pt;}
.ls2_c01271{letter-spacing:0.087539pt;}
.ls1_c01271{letter-spacing:0.092873pt;}
.ws2_c01271{word-spacing:-23.622682pt;}
.wse_c01271{word-spacing:-23.544461pt;}
.ws8_c01271{word-spacing:-21.154018pt;}
.ws7_c01271{word-spacing:-21.094145pt;}
.ws9_c01271{word-spacing:-19.872066pt;}
.ws5_c01271{word-spacing:-16.684034pt;}
.wsc_c01271{word-spacing:-16.524633pt;}
.wsb_c01271{word-spacing:-15.727625pt;}
.wsa_c01271{word-spacing:-13.389734pt;}
.ws4_c01271{word-spacing:-13.283467pt;}
.ws6_c01271{word-spacing:-11.088128pt;}
.ws1_c01271{word-spacing:-8.878599pt;}
.ws3_c01271{word-spacing:-8.877777pt;}
.ws12_c01271{word-spacing:0.000000pt;}
.wsf_c01271{word-spacing:0.039110pt;}
.wsd_c01271{word-spacing:0.156442pt;}
.ws11_c01271{word-spacing:0.189730pt;}
.ws10_c01271{word-spacing:0.195063pt;}
.ws0_c01271{word-spacing:38.256533pt;}
._1_c01271{margin-left:-5.849451pt;}
._7_c01271{margin-left:-2.790109pt;}
._2_c01271{margin-left:-0.956410pt;}
._8_c01271{width:0.893988pt;}
._3_c01271{width:9.776631pt;}
._4_c01271{width:11.104978pt;}
._5_c01271{width:16.630900pt;}
._0_c01271{width:17.720725pt;}
._6_c01271{width:20.509673pt;}
.fs2_c01271{font-size:39.110400pt;}
.fs1_c01271{font-size:53.133867pt;}
.fs0_c01271{font-size:76.513067pt;}
.y0_c01271{bottom:0.000000pt;}
.y1e_c01271{bottom:39.333333pt;}
.y1d_c01271{bottom:77.317333pt;}
.y1c_c01271{bottom:121.153333pt;}
.y1b_c01271{bottom:135.765333pt;}
.y1a_c01271{bottom:164.989333pt;}
.y19_c01271{bottom:179.601333pt;}
.y18_c01271{bottom:208.824000pt;}
.y17_c01271{bottom:223.436000pt;}
.y16_c01271{bottom:238.048000pt;}
.y15_c01271{bottom:252.660000pt;}
.y14_c01271{bottom:281.884000pt;}
.y13_c01271{bottom:296.496000pt;}
.y12_c01271{bottom:311.108000pt;}
.y11_c01271{bottom:325.720000pt;}
.y10_c01271{bottom:340.332000pt;}
.yf_c01271{bottom:354.942667pt;}
.ye_c01271{bottom:369.554667pt;}
.yd_c01271{bottom:384.166667pt;}
.yc_c01271{bottom:398.446667pt;}
.yb_c01271{bottom:440.884000pt;}
.ya_c01271{bottom:456.824000pt;}
.y9_c01271{bottom:472.764000pt;}
.y8_c01271{bottom:488.704000pt;}
.y7_c01271{bottom:504.645333pt;}
.y6_c01271{bottom:520.585333pt;}
.y5_c01271{bottom:544.426667pt;}
.y4_c01271{bottom:568.268000pt;}
.y3_c01271{bottom:592.109333pt;}
.y2_c01271{bottom:615.950667pt;}
.y1_c01271{bottom:653.457333pt;}
.h5_c01271{height:31.280681pt;}
.h6_c01271{height:32.006363pt;}
.h3_c01271{height:36.010648pt;}
.h4_c01271{height:46.518078pt;}
.h2_c01271{height:51.855535pt;}
.h0_c01271{height:1122.520000pt;}
.h1_c01271{height:1122.666667pt;}
.w0_c01271{width:793.706667pt;}
.w1_c01271{width:794.000000pt;}
.x0_c01271{left:0.000000pt;}
.x1_c01271{left:113.385333pt;}
.x2_c01271{left:121.886667pt;}
.x3_c01271{left:386.888000pt;}
}





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

.ir_c01272:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_82e96b722507f4a4e2bb149f.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01272;src:url('chunks/assets/font_f89fa032ed2e7bf8277eea5e.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01272;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01272;src:url('chunks/assets/font_7879eadb2f6e8e2988df1f28.woff2')format("woff");}.ff4_c01272{font-family:ff4_c01272;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01272;src:url('chunks/assets/font_f2b9990ac5809171cad56dd0.woff2')format("woff");}.ff5_c01272{font-family:ff5_c01272;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01272{vertical-align:0.000000px;}
.ls3_c01272{letter-spacing:0.000000px;}
.ls0_c01272{letter-spacing:0.087998px;}
.ls1_c01272{letter-spacing:0.098482px;}
.ls2_c01272{letter-spacing:0.104482px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01272{word-spacing:-26.575517px;}
.ws1_c01272{word-spacing:-26.487518px;}
.wsa_c01272{word-spacing:-18.769538px;}
.ws9_c01272{word-spacing:-14.943900px;}
.ws7_c01272{word-spacing:-9.988424px;}
.ws8_c01272{word-spacing:-9.987499px;}
.ws4_c01272{word-spacing:0.000000px;}
.ws3_c01272{word-spacing:0.043999px;}
.ws2_c01272{word-spacing:0.056767px;}
.ws5_c01272{word-spacing:0.213446px;}
.ws6_c01272{word-spacing:43.038600px;}
._2_c01272{margin-left:-6.580632px;}
._0_c01272{width:1.041538px;}
._1_c01272{width:19.935816px;}
.fc5_c01272{color:rgb(79,153,5);}
.fc4_c01272{color:rgb(0,0,207);}
.fc3_c01272{color:rgb(207,92,0);}
.fc2_c01272{color:rgb(33,74,135);}
.fc1_c01272{color:rgb(143,89,3);}
.fc0_c01272{color:rgb(0,0,0);}
.fs0_c01272{font-size:43.999200px;}
.fs2_c01272{font-size:59.775600px;}
.fs1_c01272{font-size:86.077200px;}
.y0_c01272{bottom:0.000000px;}
.y21_c01272{bottom:44.250000px;}
.y20_c01272{bottom:82.051500px;}
.y1f_c01272{bottom:112.338000px;}
.y1e_c01272{bottom:142.626000px;}
.y1d_c01272{bottom:172.914000px;}
.y1c_c01272{bottom:220.090500px;}
.y1b_c01272{bottom:699.589500px;}
.y1a_c01272{bottom:716.028000px;}
.y19_c01272{bottom:732.465000px;}
.y18_c01272{bottom:748.903500px;}
.y17_c01272{bottom:765.342000px;}
.y16_c01272{bottom:781.780500px;}
.y15_c01272{bottom:798.219000px;}
.y14_c01272{bottom:814.657500px;}
.y13_c01272{bottom:831.096000px;}
.y12_c01272{bottom:847.534500px;}
.y11_c01272{bottom:863.973000px;}
.y10_c01272{bottom:896.848500px;}
.yf_c01272{bottom:913.287000px;}
.ye_c01272{bottom:929.725500px;}
.yd_c01272{bottom:962.602500px;}
.yc_c01272{bottom:979.041000px;}
.yb_c01272{bottom:995.479500px;}
.ya_c01272{bottom:1011.918000px;}
.y9_c01272{bottom:1028.356500px;}
.y8_c01272{bottom:1044.795000px;}
.y7_c01272{bottom:1061.232000px;}
.y6_c01272{bottom:1077.670500px;}
.y5_c01272{bottom:1094.109000px;}
.y4_c01272{bottom:1110.547500px;}
.y3_c01272{bottom:1126.986000px;}
.y2_c01272{bottom:1143.424500px;}
.y1_c01272{bottom:1159.863000px;}
.h3_c01272{height:35.190766px;}
.h2_c01272{height:36.007158px;}
.h5_c01272{height:40.511979px;}
.h6_c01272{height:52.332837px;}
.h4_c01272{height:58.337477px;}
.h0_c01272{height:1262.835000px;}
.h1_c01272{height:1263.000000px;}
.w0_c01272{width:892.920000px;}
.w1_c01272{width:893.250000px;}
.x0_c01272{left:0.000000px;}
.x4_c01272{left:127.558500px;}
.x1_c01272{left:137.122500px;}
.x3_c01272{left:177.007500px;}
.x2_c01272{left:230.185500px;}
.x5_c01272{left:435.249000px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls3_c01272{letter-spacing:0.000000pt;}
.ls0_c01272{letter-spacing:0.078221pt;}
.ls1_c01272{letter-spacing:0.087539pt;}
.ls2_c01272{letter-spacing:0.092873pt;}
.ws0_c01272{word-spacing:-23.622682pt;}
.ws1_c01272{word-spacing:-23.544461pt;}
.wsa_c01272{word-spacing:-16.684034pt;}
.ws9_c01272{word-spacing:-13.283467pt;}
.ws7_c01272{word-spacing:-8.878599pt;}
.ws8_c01272{word-spacing:-8.877777pt;}
.ws4_c01272{word-spacing:0.000000pt;}
.ws3_c01272{word-spacing:0.039110pt;}
.ws2_c01272{word-spacing:0.050460pt;}
.ws5_c01272{word-spacing:0.189730pt;}
.ws6_c01272{word-spacing:38.256533pt;}
._2_c01272{margin-left:-5.849451pt;}
._0_c01272{width:0.925811pt;}
._1_c01272{width:17.720725pt;}
.fs0_c01272{font-size:39.110400pt;}
.fs2_c01272{font-size:53.133867pt;}
.fs1_c01272{font-size:76.513067pt;}
.y0_c01272{bottom:0.000000pt;}
.y21_c01272{bottom:39.333333pt;}
.y20_c01272{bottom:72.934667pt;}
.y1f_c01272{bottom:99.856000pt;}
.y1e_c01272{bottom:126.778667pt;}
.y1d_c01272{bottom:153.701333pt;}
.y1c_c01272{bottom:195.636000pt;}
.y1b_c01272{bottom:621.857333pt;}
.y1a_c01272{bottom:636.469333pt;}
.y19_c01272{bottom:651.080000pt;}
.y18_c01272{bottom:665.692000pt;}
.y17_c01272{bottom:680.304000pt;}
.y16_c01272{bottom:694.916000pt;}
.y15_c01272{bottom:709.528000pt;}
.y14_c01272{bottom:724.140000pt;}
.y13_c01272{bottom:738.752000pt;}
.y12_c01272{bottom:753.364000pt;}
.y11_c01272{bottom:767.976000pt;}
.y10_c01272{bottom:797.198667pt;}
.yf_c01272{bottom:811.810667pt;}
.ye_c01272{bottom:826.422667pt;}
.yd_c01272{bottom:855.646667pt;}
.yc_c01272{bottom:870.258667pt;}
.yb_c01272{bottom:884.870667pt;}
.ya_c01272{bottom:899.482667pt;}
.y9_c01272{bottom:914.094667pt;}
.y8_c01272{bottom:928.706667pt;}
.y7_c01272{bottom:943.317333pt;}
.y6_c01272{bottom:957.929333pt;}
.y5_c01272{bottom:972.541333pt;}
.y4_c01272{bottom:987.153333pt;}
.y3_c01272{bottom:1001.765333pt;}
.y2_c01272{bottom:1016.377333pt;}
.y1_c01272{bottom:1030.989333pt;}
.h3_c01272{height:31.280681pt;}
.h2_c01272{height:32.006363pt;}
.h5_c01272{height:36.010648pt;}
.h6_c01272{height:46.518078pt;}
.h4_c01272{height:51.855535pt;}
.h0_c01272{height:1122.520000pt;}
.h1_c01272{height:1122.666667pt;}
.w0_c01272{width:793.706667pt;}
.w1_c01272{width:794.000000pt;}
.x0_c01272{left:0.000000pt;}
.x4_c01272{left:113.385333pt;}
.x1_c01272{left:121.886667pt;}
.x3_c01272{left:157.340000pt;}
.x2_c01272{left:204.609333pt;}
.x5_c01272{left:386.888000pt;}
}





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

.ir_c01273:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01273;src:url('chunks/assets/font_46b05c9ff1714caf51188693.woff2')format("woff");}.ff2_c01273{font-family:ff2_c01273;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01273;src:url('chunks/assets/font_ff891201c877bce17bd6dd7e.woff2')format("woff");}.ff3_c01273{font-family:ff3_c01273;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01273;src:url('chunks/assets/font_61d120dcf6fe1a5c4501a440.woff2')format("woff");}.ff4_c01273{font-family:ff4_c01273;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01273;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01273{font-family:ff5_c01273;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01273{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01273{vertical-align:0.000000px;}
.ls4_c01273{letter-spacing:0.000000px;}
.ls0_c01273{letter-spacing:0.087998px;}
.ls2_c01273{letter-spacing:0.098482px;}
.ls1_c01273{letter-spacing:0.104482px;}
.ls3_c01273{letter-spacing:26.690482px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01273{word-spacing:-33.713438px;}
.ws4_c01273{word-spacing:-26.575517px;}
.wsa_c01273{word-spacing:-26.487518px;}
.ws3_c01273{word-spacing:-21.553319px;}
.ws2_c01273{word-spacing:-21.519216px;}
.ws7_c01273{word-spacing:-18.769538px;}
.ws1_c01273{word-spacing:-16.019861px;}
.ws5_c01273{word-spacing:-14.107042px;}
.ws6_c01273{word-spacing:-12.074671px;}
.ws0_c01273{word-spacing:-4.536144px;}
.wse_c01273{word-spacing:0.000000px;}
.wsb_c01273{word-spacing:0.043999px;}
.ws11_c01273{word-spacing:0.056767px;}
.wsf_c01273{word-spacing:0.073250px;}
.ws10_c01273{word-spacing:0.083734px;}
.ws9_c01273{word-spacing:0.175997px;}
.ws12_c01273{word-spacing:0.202963px;}
.wsc_c01273{word-spacing:0.213446px;}
.wsd_c01273{word-spacing:0.219446px;}
._4_c01273{margin-left:-3.825638px;}
._1_c01273{margin-left:-2.347817px;}
._0_c01273{margin-left:-1.075961px;}
._5_c01273{width:1.005737px;}
._2_c01273{width:20.742133px;}
._3_c01273{width:40.109428px;}
._7_c01273{width:53.283031px;}
._6_c01273{width:79.858548px;}
._8_c01273{width:133.452408px;}
.fc6_c01273{color:rgb(0,0,207);}
.fc5_c01273{color:rgb(79,153,5);}
.fc3_c01273{color:rgb(33,74,135);}
.fc2_c01273{color:rgb(143,89,3);}
.fc4_c01273{color:rgb(207,92,0);}
.fc1_c01273{color:rgb(6,69,173);}
.fc0_c01273{color:rgb(0,0,0);}
.fs1_c01273{font-size:43.999200px;}
.fs0_c01273{font-size:59.775600px;}
.y0_c01273{bottom:0.000000px;}
.y31_c01273{bottom:44.250000px;}
.y30_c01273{bottom:96.919500px;}
.y2f_c01273{bottom:113.358000px;}
.y2e_c01273{bottom:129.796500px;}
.y2d_c01273{bottom:146.235000px;}
.y2c_c01273{bottom:162.673500px;}
.y2b_c01273{bottom:179.112000px;}
.y2a_c01273{bottom:195.550500px;}
.y29_c01273{bottom:211.989000px;}
.y28_c01273{bottom:228.427500px;}
.y27_c01273{bottom:244.866000px;}
.y26_c01273{bottom:261.304500px;}
.y25_c01273{bottom:294.180000px;}
.y24_c01273{bottom:310.618500px;}
.y23_c01273{bottom:327.057000px;}
.y22_c01273{bottom:359.934000px;}
.y21_c01273{bottom:376.372500px;}
.y20_c01273{bottom:392.811000px;}
.y1f_c01273{bottom:409.249500px;}
.y1e_c01273{bottom:425.688000px;}
.y1d_c01273{bottom:442.125000px;}
.y1c_c01273{bottom:458.563500px;}
.y1b_c01273{bottom:507.879000px;}
.y1a_c01273{bottom:524.317500px;}
.y19_c01273{bottom:540.756000px;}
.y18_c01273{bottom:557.194500px;}
.y17_c01273{bottom:573.633000px;}
.y16_c01273{bottom:590.071500px;}
.y15_c01273{bottom:606.508500px;}
.y14_c01273{bottom:622.947000px;}
.y13_c01273{bottom:639.385500px;}
.y12_c01273{bottom:655.824000px;}
.y11_c01273{bottom:672.262500px;}
.y10_c01273{bottom:688.701000px;}
.yf_c01273{bottom:705.139500px;}
.ye_c01273{bottom:721.578000px;}
.yd_c01273{bottom:738.016500px;}
.yc_c01273{bottom:754.455000px;}
.yb_c01273{bottom:787.330500px;}
.ya_c01273{bottom:803.769000px;}
.y9_c01273{bottom:853.084500px;}
.y8_c01273{bottom:869.523000px;}
.y7_c01273{bottom:885.588000px;}
.y6_c01273{bottom:1070.199000px;}
.y5_c01273{bottom:1088.131500px;}
.y4_c01273{bottom:1106.064000px;}
.y3_c01273{bottom:1123.998000px;}
.y2_c01273{bottom:1141.930500px;}
.y1_c01273{bottom:1159.863000px;}
.h3_c01273{height:35.190766px;}
.h4_c01273{height:36.007158px;}
.h2_c01273{height:52.332837px;}
.h0_c01273{height:1262.835000px;}
.h1_c01273{height:1263.000000px;}
.w0_c01273{width:892.920000px;}
.w1_c01273{width:893.250000px;}
.x0_c01273{left:0.000000px;}
.x1_c01273{left:127.558500px;}
.x2_c01273{left:137.122500px;}
.x3_c01273{left:143.770500px;}
.x4_c01273{left:177.007500px;}
.x5_c01273{left:435.249000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls4_c01273{letter-spacing:0.000000pt;}
.ls0_c01273{letter-spacing:0.078221pt;}
.ls2_c01273{letter-spacing:0.087539pt;}
.ls1_c01273{letter-spacing:0.092873pt;}
.ls3_c01273{letter-spacing:23.724873pt;}
.ws8_c01273{word-spacing:-29.967501pt;}
.ws4_c01273{word-spacing:-23.622682pt;}
.wsa_c01273{word-spacing:-23.544461pt;}
.ws3_c01273{word-spacing:-19.158506pt;}
.ws2_c01273{word-spacing:-19.128192pt;}
.ws7_c01273{word-spacing:-16.684034pt;}
.ws1_c01273{word-spacing:-14.239876pt;}
.ws5_c01273{word-spacing:-12.539593pt;}
.ws6_c01273{word-spacing:-10.733041pt;}
.ws0_c01273{word-spacing:-4.032128pt;}
.wse_c01273{word-spacing:0.000000pt;}
.wsb_c01273{word-spacing:0.039110pt;}
.ws11_c01273{word-spacing:0.050460pt;}
.wsf_c01273{word-spacing:0.065111pt;}
.ws10_c01273{word-spacing:0.074430pt;}
.ws9_c01273{word-spacing:0.156442pt;}
.ws12_c01273{word-spacing:0.180412pt;}
.wsc_c01273{word-spacing:0.189730pt;}
.wsd_c01273{word-spacing:0.195063pt;}
._4_c01273{margin-left:-3.400567pt;}
._1_c01273{margin-left:-2.086948pt;}
._0_c01273{margin-left:-0.956410pt;}
._5_c01273{width:0.893988pt;}
._2_c01273{width:18.437452pt;}
._3_c01273{width:35.652825pt;}
._7_c01273{width:47.362694pt;}
._6_c01273{width:70.985376pt;}
._8_c01273{width:118.624363pt;}
.fs1_c01273{font-size:39.110400pt;}
.fs0_c01273{font-size:53.133867pt;}
.y0_c01273{bottom:0.000000pt;}
.y31_c01273{bottom:39.333333pt;}
.y30_c01273{bottom:86.150667pt;}
.y2f_c01273{bottom:100.762667pt;}
.y2e_c01273{bottom:115.374667pt;}
.y2d_c01273{bottom:129.986667pt;}
.y2c_c01273{bottom:144.598667pt;}
.y2b_c01273{bottom:159.210667pt;}
.y2a_c01273{bottom:173.822667pt;}
.y29_c01273{bottom:188.434667pt;}
.y28_c01273{bottom:203.046667pt;}
.y27_c01273{bottom:217.658667pt;}
.y26_c01273{bottom:232.270667pt;}
.y25_c01273{bottom:261.493333pt;}
.y24_c01273{bottom:276.105333pt;}
.y23_c01273{bottom:290.717333pt;}
.y22_c01273{bottom:319.941333pt;}
.y21_c01273{bottom:334.553333pt;}
.y20_c01273{bottom:349.165333pt;}
.y1f_c01273{bottom:363.777333pt;}
.y1e_c01273{bottom:378.389333pt;}
.y1d_c01273{bottom:393.000000pt;}
.y1c_c01273{bottom:407.612000pt;}
.y1b_c01273{bottom:451.448000pt;}
.y1a_c01273{bottom:466.060000pt;}
.y19_c01273{bottom:480.672000pt;}
.y18_c01273{bottom:495.284000pt;}
.y17_c01273{bottom:509.896000pt;}
.y16_c01273{bottom:524.508000pt;}
.y15_c01273{bottom:539.118667pt;}
.y14_c01273{bottom:553.730667pt;}
.y13_c01273{bottom:568.342667pt;}
.y12_c01273{bottom:582.954667pt;}
.y11_c01273{bottom:597.566667pt;}
.y10_c01273{bottom:612.178667pt;}
.yf_c01273{bottom:626.790667pt;}
.ye_c01273{bottom:641.402667pt;}
.yd_c01273{bottom:656.014667pt;}
.yc_c01273{bottom:670.626667pt;}
.yb_c01273{bottom:699.849333pt;}
.ya_c01273{bottom:714.461333pt;}
.y9_c01273{bottom:758.297333pt;}
.y8_c01273{bottom:772.909333pt;}
.y7_c01273{bottom:787.189333pt;}
.y6_c01273{bottom:951.288000pt;}
.y5_c01273{bottom:967.228000pt;}
.y4_c01273{bottom:983.168000pt;}
.y3_c01273{bottom:999.109333pt;}
.y2_c01273{bottom:1015.049333pt;}
.y1_c01273{bottom:1030.989333pt;}
.h3_c01273{height:31.280681pt;}
.h4_c01273{height:32.006363pt;}
.h2_c01273{height:46.518078pt;}
.h0_c01273{height:1122.520000pt;}
.h1_c01273{height:1122.666667pt;}
.w0_c01273{width:793.706667pt;}
.w1_c01273{width:794.000000pt;}
.x0_c01273{left:0.000000pt;}
.x1_c01273{left:113.385333pt;}
.x2_c01273{left:121.886667pt;}
.x3_c01273{left:127.796000pt;}
.x4_c01273{left:157.340000pt;}
.x5_c01273{left:386.888000pt;}
}





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

.ir_c01274:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_5a1259a293bf0d98cc109b8a.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01274;src:url('chunks/assets/font_e1e7521b28e8e4a3d103e8d3.woff2')format("woff");}.ff2_c01274{font-family:ff2_c01274;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01274;src:url('chunks/assets/font_d4a54abc0a6142b47b78947d.woff2')format("woff");}.ff3_c01274{font-family:ff3_c01274;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01274;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01274{font-family:ff4_c01274;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01274;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01274{font-family:ff5_c01274;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01274{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01274{vertical-align:0.000000px;}
.ls3_c01274{letter-spacing:0.000000px;}
.ls0_c01274{letter-spacing:0.087998px;}
.ls2_c01274{letter-spacing:0.098482px;}
.ls1_c01274{letter-spacing:0.104482px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01274{word-spacing:-33.713438px;}
.ws2_c01274{word-spacing:-26.575517px;}
.wse_c01274{word-spacing:-26.487518px;}
.ws9_c01274{word-spacing:-21.553319px;}
.ws8_c01274{word-spacing:-21.519216px;}
.ws5_c01274{word-spacing:-18.769538px;}
.ws7_c01274{word-spacing:-17.633802px;}
.ws4_c01274{word-spacing:-14.943900px;}
.wsa_c01274{word-spacing:-14.107042px;}
.wsb_c01274{word-spacing:-12.074671px;}
.ws1_c01274{word-spacing:-9.988424px;}
.ws3_c01274{word-spacing:-9.987499px;}
.ws6_c01274{word-spacing:-7.686144px;}
.ws12_c01274{word-spacing:0.000000px;}
.wsf_c01274{word-spacing:0.043999px;}
.ws15_c01274{word-spacing:0.056767px;}
.ws13_c01274{word-spacing:0.073250px;}
.ws14_c01274{word-spacing:0.083734px;}
.wsd_c01274{word-spacing:0.175997px;}
.ws16_c01274{word-spacing:0.202963px;}
.ws10_c01274{word-spacing:0.213446px;}
.ws11_c01274{word-spacing:0.219446px;}
.ws0_c01274{word-spacing:43.038600px;}
._1_c01274{margin-left:-6.580632px;}
._5_c01274{margin-left:-3.825638px;}
._3_c01274{margin-left:-2.347817px;}
._2_c01274{margin-left:-1.075961px;}
._6_c01274{width:1.005737px;}
._0_c01274{width:19.935816px;}
._4_c01274{width:40.109428px;}
._8_c01274{width:53.283031px;}
._7_c01274{width:79.858548px;}
._9_c01274{width:133.452408px;}
.fc6_c01274{color:rgb(0,0,207);}
.fc5_c01274{color:rgb(79,153,5);}
.fc3_c01274{color:rgb(33,74,135);}
.fc2_c01274{color:rgb(143,89,3);}
.fc4_c01274{color:rgb(207,92,0);}
.fc1_c01274{color:rgb(6,69,173);}
.fc0_c01274{color:rgb(0,0,0);}
.fs2_c01274{font-size:43.999200px;}
.fs1_c01274{font-size:59.775600px;}
.fs0_c01274{font-size:86.077200px;}
.y0_c01274{bottom:0.000000px;}
.y20_c01274{bottom:44.250000px;}
.y1f_c01274{bottom:86.982000px;}
.y1e_c01274{bottom:103.420500px;}
.y1d_c01274{bottom:119.859000px;}
.y1c_c01274{bottom:136.297500px;}
.y1b_c01274{bottom:152.736000px;}
.y1a_c01274{bottom:169.174500px;}
.y19_c01274{bottom:185.613000px;}
.y18_c01274{bottom:202.051500px;}
.y17_c01274{bottom:218.490000px;}
.y16_c01274{bottom:234.927000px;}
.y15_c01274{bottom:251.365500px;}
.y14_c01274{bottom:267.804000px;}
.y13_c01274{bottom:284.242500px;}
.y12_c01274{bottom:300.681000px;}
.y11_c01274{bottom:317.119500px;}
.y10_c01274{bottom:349.996500px;}
.yf_c01274{bottom:366.435000px;}
.ye_c01274{bottom:415.749000px;}
.yd_c01274{bottom:432.187500px;}
.yc_c01274{bottom:448.252500px;}
.yb_c01274{bottom:493.890000px;}
.ya_c01274{bottom:511.822500px;}
.y9_c01274{bottom:529.756500px;}
.y8_c01274{bottom:547.689000px;}
.y7_c01274{bottom:565.621500px;}
.y6_c01274{bottom:583.554000px;}
.y5_c01274{bottom:610.633500px;}
.y4_c01274{bottom:637.714500px;}
.y3_c01274{bottom:664.794000px;}
.y2_c01274{bottom:691.873500px;}
.y1_c01274{bottom:734.407500px;}
.h5_c01274{height:35.190766px;}
.h6_c01274{height:36.007158px;}
.h3_c01274{height:40.511979px;}
.h4_c01274{height:52.332837px;}
.h2_c01274{height:58.337477px;}
.h0_c01274{height:1262.835000px;}
.h1_c01274{height:1263.000000px;}
.w0_c01274{width:892.920000px;}
.w1_c01274{width:893.250000px;}
.x0_c01274{left:0.000000px;}
.x1_c01274{left:127.558500px;}
.x2_c01274{left:137.122500px;}
.x3_c01274{left:143.770500px;}
.x4_c01274{left:435.249000px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls3_c01274{letter-spacing:0.000000pt;}
.ls0_c01274{letter-spacing:0.078221pt;}
.ls2_c01274{letter-spacing:0.087539pt;}
.ls1_c01274{letter-spacing:0.092873pt;}
.wsc_c01274{word-spacing:-29.967501pt;}
.ws2_c01274{word-spacing:-23.622682pt;}
.wse_c01274{word-spacing:-23.544461pt;}
.ws9_c01274{word-spacing:-19.158506pt;}
.ws8_c01274{word-spacing:-19.128192pt;}
.ws5_c01274{word-spacing:-16.684034pt;}
.ws7_c01274{word-spacing:-15.674491pt;}
.ws4_c01274{word-spacing:-13.283467pt;}
.wsa_c01274{word-spacing:-12.539593pt;}
.wsb_c01274{word-spacing:-10.733041pt;}
.ws1_c01274{word-spacing:-8.878599pt;}
.ws3_c01274{word-spacing:-8.877777pt;}
.ws6_c01274{word-spacing:-6.832128pt;}
.ws12_c01274{word-spacing:0.000000pt;}
.wsf_c01274{word-spacing:0.039110pt;}
.ws15_c01274{word-spacing:0.050460pt;}
.ws13_c01274{word-spacing:0.065111pt;}
.ws14_c01274{word-spacing:0.074430pt;}
.wsd_c01274{word-spacing:0.156442pt;}
.ws16_c01274{word-spacing:0.180412pt;}
.ws10_c01274{word-spacing:0.189730pt;}
.ws11_c01274{word-spacing:0.195063pt;}
.ws0_c01274{word-spacing:38.256533pt;}
._1_c01274{margin-left:-5.849451pt;}
._5_c01274{margin-left:-3.400567pt;}
._3_c01274{margin-left:-2.086948pt;}
._2_c01274{margin-left:-0.956410pt;}
._6_c01274{width:0.893988pt;}
._0_c01274{width:17.720725pt;}
._4_c01274{width:35.652825pt;}
._8_c01274{width:47.362694pt;}
._7_c01274{width:70.985376pt;}
._9_c01274{width:118.624363pt;}
.fs2_c01274{font-size:39.110400pt;}
.fs1_c01274{font-size:53.133867pt;}
.fs0_c01274{font-size:76.513067pt;}
.y0_c01274{bottom:0.000000pt;}
.y20_c01274{bottom:39.333333pt;}
.y1f_c01274{bottom:77.317333pt;}
.y1e_c01274{bottom:91.929333pt;}
.y1d_c01274{bottom:106.541333pt;}
.y1c_c01274{bottom:121.153333pt;}
.y1b_c01274{bottom:135.765333pt;}
.y1a_c01274{bottom:150.377333pt;}
.y19_c01274{bottom:164.989333pt;}
.y18_c01274{bottom:179.601333pt;}
.y17_c01274{bottom:194.213333pt;}
.y16_c01274{bottom:208.824000pt;}
.y15_c01274{bottom:223.436000pt;}
.y14_c01274{bottom:238.048000pt;}
.y13_c01274{bottom:252.660000pt;}
.y12_c01274{bottom:267.272000pt;}
.y11_c01274{bottom:281.884000pt;}
.y10_c01274{bottom:311.108000pt;}
.yf_c01274{bottom:325.720000pt;}
.ye_c01274{bottom:369.554667pt;}
.yd_c01274{bottom:384.166667pt;}
.yc_c01274{bottom:398.446667pt;}
.yb_c01274{bottom:439.013333pt;}
.ya_c01274{bottom:454.953333pt;}
.y9_c01274{bottom:470.894667pt;}
.y8_c01274{bottom:486.834667pt;}
.y7_c01274{bottom:502.774667pt;}
.y6_c01274{bottom:518.714667pt;}
.y5_c01274{bottom:542.785333pt;}
.y4_c01274{bottom:566.857333pt;}
.y3_c01274{bottom:590.928000pt;}
.y2_c01274{bottom:614.998667pt;}
.y1_c01274{bottom:652.806667pt;}
.h5_c01274{height:31.280681pt;}
.h6_c01274{height:32.006363pt;}
.h3_c01274{height:36.010648pt;}
.h4_c01274{height:46.518078pt;}
.h2_c01274{height:51.855535pt;}
.h0_c01274{height:1122.520000pt;}
.h1_c01274{height:1122.666667pt;}
.w0_c01274{width:793.706667pt;}
.w1_c01274{width:794.000000pt;}
.x0_c01274{left:0.000000pt;}
.x1_c01274{left:113.385333pt;}
.x2_c01274{left:121.886667pt;}
.x3_c01274{left:127.796000pt;}
.x4_c01274{left:386.888000pt;}
}





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

.ir_c01275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_b3448ce02e60720115217cb1.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01275;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01275;src:url('chunks/assets/font_6afec7afeb9da019c7752cbf.woff2')format("woff");}.ff3_c01275{font-family:ff3_c01275;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01275;src:url('chunks/assets/font_cd1a28ddef276351e5ada07c.woff2')format("woff");}.ff4_c01275{font-family:ff4_c01275;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01275;src:url('chunks/assets/font_3d18df7a351d70d30863a71a.woff2')format("woff");}.ff5_c01275{font-family:ff5_c01275;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01275{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01275{vertical-align:0.000000px;}
.ls4_c01275{letter-spacing:0.000000px;}
.ls0_c01275{letter-spacing:0.087998px;}
.ls2_c01275{letter-spacing:0.098482px;}
.ls3_c01275{letter-spacing:0.104482px;}
.ls1_c01275{letter-spacing:26.690482px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01275{word-spacing:-26.575517px;}
.ws4_c01275{word-spacing:-26.487518px;}
.wse_c01275{word-spacing:-21.553319px;}
.wsd_c01275{word-spacing:-21.519216px;}
.wsa_c01275{word-spacing:-18.769538px;}
.wsc_c01275{word-spacing:-17.633802px;}
.ws9_c01275{word-spacing:-14.943900px;}
.wsf_c01275{word-spacing:-14.107042px;}
.ws10_c01275{word-spacing:-12.074671px;}
.ws7_c01275{word-spacing:-9.988424px;}
.ws8_c01275{word-spacing:-9.987499px;}
.wsb_c01275{word-spacing:-7.686144px;}
.ws3_c01275{word-spacing:0.000000px;}
.ws0_c01275{word-spacing:0.043999px;}
.ws5_c01275{word-spacing:0.213446px;}
.ws1_c01275{word-spacing:0.219446px;}
.ws6_c01275{word-spacing:43.038600px;}
._3_c01275{margin-left:-6.580632px;}
._5_c01275{margin-left:-2.347817px;}
._4_c01275{margin-left:-1.075961px;}
._1_c01275{width:1.009757px;}
._2_c01275{width:19.935816px;}
._6_c01275{width:40.109428px;}
._0_c01275{width:106.742059px;}
.fc5_c01275{color:rgb(79,153,5);}
.fc4_c01275{color:rgb(143,89,3);}
.fc3_c01275{color:rgb(0,0,0);}
.fc6_c01275{color:rgb(6,69,173);}
.fc2_c01275{color:rgb(207,92,0);}
.fc1_c01275{color:rgb(0,0,207);}
.fc0_c01275{color:rgb(33,74,135);}
.fs0_c01275{font-size:43.999200px;}
.fs2_c01275{font-size:59.775600px;}
.fs1_c01275{font-size:86.077200px;}
.y0_c01275{bottom:0.000000px;}
.y20_c01275{bottom:44.250000px;}
.y1f_c01275{bottom:82.051500px;}
.y1e_c01275{bottom:99.984000px;}
.y1d_c01275{bottom:117.916500px;}
.y1c_c01275{bottom:135.849000px;}
.y1b_c01275{bottom:162.501000px;}
.y1a_c01275{bottom:189.151500px;}
.y19_c01275{bottom:215.802000px;}
.y18_c01275{bottom:242.454000px;}
.y17_c01275{bottom:284.478000px;}
.y16_c01275{bottom:748.903500px;}
.y15_c01275{bottom:765.342000px;}
.y14_c01275{bottom:781.780500px;}
.y13_c01275{bottom:798.219000px;}
.y12_c01275{bottom:814.657500px;}
.y11_c01275{bottom:831.096000px;}
.y10_c01275{bottom:847.534500px;}
.yf_c01275{bottom:863.973000px;}
.ye_c01275{bottom:880.411500px;}
.yd_c01275{bottom:896.848500px;}
.yc_c01275{bottom:913.287000px;}
.yb_c01275{bottom:946.164000px;}
.ya_c01275{bottom:962.602500px;}
.y9_c01275{bottom:979.041000px;}
.y8_c01275{bottom:1011.918000px;}
.y7_c01275{bottom:1028.356500px;}
.y6_c01275{bottom:1044.795000px;}
.y5_c01275{bottom:1061.232000px;}
.y4_c01275{bottom:1077.670500px;}
.y3_c01275{bottom:1094.109000px;}
.y2_c01275{bottom:1110.547500px;}
.y1_c01275{bottom:1159.863000px;}
.h3_c01275{height:35.190766px;}
.h2_c01275{height:36.007158px;}
.h5_c01275{height:40.511979px;}
.h6_c01275{height:52.332837px;}
.h4_c01275{height:58.337477px;}
.h0_c01275{height:1262.835000px;}
.h1_c01275{height:1263.000000px;}
.w0_c01275{width:892.920000px;}
.w1_c01275{width:893.250000px;}
.x0_c01275{left:0.000000px;}
.x4_c01275{left:127.558500px;}
.x2_c01275{left:137.122500px;}
.x1_c01275{left:143.770500px;}
.x3_c01275{left:177.007500px;}
.x5_c01275{left:435.249000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls4_c01275{letter-spacing:0.000000pt;}
.ls0_c01275{letter-spacing:0.078221pt;}
.ls2_c01275{letter-spacing:0.087539pt;}
.ls3_c01275{letter-spacing:0.092873pt;}
.ls1_c01275{letter-spacing:23.724873pt;}
.ws2_c01275{word-spacing:-23.622682pt;}
.ws4_c01275{word-spacing:-23.544461pt;}
.wse_c01275{word-spacing:-19.158506pt;}
.wsd_c01275{word-spacing:-19.128192pt;}
.wsa_c01275{word-spacing:-16.684034pt;}
.wsc_c01275{word-spacing:-15.674491pt;}
.ws9_c01275{word-spacing:-13.283467pt;}
.wsf_c01275{word-spacing:-12.539593pt;}
.ws10_c01275{word-spacing:-10.733041pt;}
.ws7_c01275{word-spacing:-8.878599pt;}
.ws8_c01275{word-spacing:-8.877777pt;}
.wsb_c01275{word-spacing:-6.832128pt;}
.ws3_c01275{word-spacing:0.000000pt;}
.ws0_c01275{word-spacing:0.039110pt;}
.ws5_c01275{word-spacing:0.189730pt;}
.ws1_c01275{word-spacing:0.195063pt;}
.ws6_c01275{word-spacing:38.256533pt;}
._3_c01275{margin-left:-5.849451pt;}
._5_c01275{margin-left:-2.086948pt;}
._4_c01275{margin-left:-0.956410pt;}
._1_c01275{width:0.897562pt;}
._2_c01275{width:17.720725pt;}
._6_c01275{width:35.652825pt;}
._0_c01275{width:94.881830pt;}
.fs0_c01275{font-size:39.110400pt;}
.fs2_c01275{font-size:53.133867pt;}
.fs1_c01275{font-size:76.513067pt;}
.y0_c01275{bottom:0.000000pt;}
.y20_c01275{bottom:39.333333pt;}
.y1f_c01275{bottom:72.934667pt;}
.y1e_c01275{bottom:88.874667pt;}
.y1d_c01275{bottom:104.814667pt;}
.y1c_c01275{bottom:120.754667pt;}
.y1b_c01275{bottom:144.445333pt;}
.y1a_c01275{bottom:168.134667pt;}
.y19_c01275{bottom:191.824000pt;}
.y18_c01275{bottom:215.514667pt;}
.y17_c01275{bottom:252.869333pt;}
.y16_c01275{bottom:665.692000pt;}
.y15_c01275{bottom:680.304000pt;}
.y14_c01275{bottom:694.916000pt;}
.y13_c01275{bottom:709.528000pt;}
.y12_c01275{bottom:724.140000pt;}
.y11_c01275{bottom:738.752000pt;}
.y10_c01275{bottom:753.364000pt;}
.yf_c01275{bottom:767.976000pt;}
.ye_c01275{bottom:782.588000pt;}
.yd_c01275{bottom:797.198667pt;}
.yc_c01275{bottom:811.810667pt;}
.yb_c01275{bottom:841.034667pt;}
.ya_c01275{bottom:855.646667pt;}
.y9_c01275{bottom:870.258667pt;}
.y8_c01275{bottom:899.482667pt;}
.y7_c01275{bottom:914.094667pt;}
.y6_c01275{bottom:928.706667pt;}
.y5_c01275{bottom:943.317333pt;}
.y4_c01275{bottom:957.929333pt;}
.y3_c01275{bottom:972.541333pt;}
.y2_c01275{bottom:987.153333pt;}
.y1_c01275{bottom:1030.989333pt;}
.h3_c01275{height:31.280681pt;}
.h2_c01275{height:32.006363pt;}
.h5_c01275{height:36.010648pt;}
.h6_c01275{height:46.518078pt;}
.h4_c01275{height:51.855535pt;}
.h0_c01275{height:1122.520000pt;}
.h1_c01275{height:1122.666667pt;}
.w0_c01275{width:793.706667pt;}
.w1_c01275{width:794.000000pt;}
.x0_c01275{left:0.000000pt;}
.x4_c01275{left:113.385333pt;}
.x2_c01275{left:121.886667pt;}
.x1_c01275{left:127.796000pt;}
.x3_c01275{left:157.340000pt;}
.x5_c01275{left:386.888000pt;}
}





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

.ir_c01276:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_6ccee320ad7c711d466ab15c.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01276;src:url('chunks/assets/font_8cd3855a9a0f0969d31ac493.woff2')format("woff");}.ff2_c01276{font-family:ff2_c01276;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01276;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01276{font-family:ff3_c01276;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01276;src:url('chunks/assets/font_505490bed0a3fe02413749f5.woff2')format("woff");}.ff4_c01276{font-family:ff4_c01276;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls4_c01276{letter-spacing:0.000000px;}
.ls1_c01276{letter-spacing:0.087998px;}
.ls2_c01276{letter-spacing:0.098482px;}
.ls0_c01276{letter-spacing:0.104482px;}
.ls3_c01276{letter-spacing:26.690482px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01276{word-spacing:-33.713438px;}
.ws4_c01276{word-spacing:-26.575517px;}
.ws3_c01276{word-spacing:-26.487518px;}
.ws0_c01276{word-spacing:-18.769538px;}
.ws8_c01276{word-spacing:0.000000px;}
.ws5_c01276{word-spacing:0.043999px;}
.wsb_c01276{word-spacing:0.056767px;}
.ws9_c01276{word-spacing:0.073250px;}
.wsa_c01276{word-spacing:0.083734px;}
.ws2_c01276{word-spacing:0.175997px;}
.wsc_c01276{word-spacing:0.202963px;}
.ws6_c01276{word-spacing:0.213446px;}
.ws7_c01276{word-spacing:0.219446px;}
._0_c01276{margin-left:-3.825638px;}
._1_c01276{width:1.005737px;}
._3_c01276{width:53.283031px;}
._2_c01276{width:79.858548px;}
._5_c01276{width:106.742059px;}
._4_c01276{width:133.452408px;}
.fc5_c01276{color:rgb(0,0,207);}
.fc4_c01276{color:rgb(79,153,5);}
.fc3_c01276{color:rgb(207,92,0);}
.fc2_c01276{color:rgb(33,74,135);}
.fc1_c01276{color:rgb(143,89,3);}
.fc0_c01276{color:rgb(0,0,0);}
.fs1_c01276{font-size:43.999200px;}
.fs0_c01276{font-size:59.775600px;}
.y0_c01276{bottom:0.000000px;}
.y2d_c01276{bottom:44.250000px;}
.y2c_c01276{bottom:96.919500px;}
.y2b_c01276{bottom:113.358000px;}
.y2a_c01276{bottom:129.796500px;}
.y29_c01276{bottom:146.235000px;}
.y28_c01276{bottom:162.673500px;}
.y27_c01276{bottom:179.112000px;}
.y26_c01276{bottom:195.550500px;}
.y25_c01276{bottom:211.989000px;}
.y24_c01276{bottom:228.427500px;}
.y23_c01276{bottom:244.866000px;}
.y22_c01276{bottom:261.304500px;}
.y21_c01276{bottom:294.180000px;}
.y20_c01276{bottom:310.618500px;}
.y1f_c01276{bottom:327.057000px;}
.y1e_c01276{bottom:359.934000px;}
.y1d_c01276{bottom:376.372500px;}
.y1c_c01276{bottom:392.811000px;}
.y1b_c01276{bottom:409.249500px;}
.y1a_c01276{bottom:425.688000px;}
.y19_c01276{bottom:442.125000px;}
.y18_c01276{bottom:458.563500px;}
.y17_c01276{bottom:507.879000px;}
.y16_c01276{bottom:524.317500px;}
.y15_c01276{bottom:540.756000px;}
.y14_c01276{bottom:557.194500px;}
.y13_c01276{bottom:573.633000px;}
.y12_c01276{bottom:590.071500px;}
.y11_c01276{bottom:606.508500px;}
.y10_c01276{bottom:622.947000px;}
.yf_c01276{bottom:639.385500px;}
.ye_c01276{bottom:655.824000px;}
.yd_c01276{bottom:672.262500px;}
.yc_c01276{bottom:688.701000px;}
.yb_c01276{bottom:705.139500px;}
.ya_c01276{bottom:721.578000px;}
.y9_c01276{bottom:738.016500px;}
.y8_c01276{bottom:754.455000px;}
.y7_c01276{bottom:787.330500px;}
.y6_c01276{bottom:803.769000px;}
.y5_c01276{bottom:853.084500px;}
.y4_c01276{bottom:869.523000px;}
.y3_c01276{bottom:885.588000px;}
.y2_c01276{bottom:1141.930500px;}
.y1_c01276{bottom:1159.863000px;}
.h3_c01276{height:35.190766px;}
.h4_c01276{height:36.007158px;}
.h2_c01276{height:52.332837px;}
.h0_c01276{height:1262.835000px;}
.h1_c01276{height:1263.000000px;}
.w0_c01276{width:892.920000px;}
.w1_c01276{width:893.250000px;}
.x0_c01276{left:0.000000px;}
.x1_c01276{left:127.558500px;}
.x2_c01276{left:137.122500px;}
.x3_c01276{left:143.770500px;}
.x4_c01276{left:177.007500px;}
.x5_c01276{left:435.249000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls4_c01276{letter-spacing:0.000000pt;}
.ls1_c01276{letter-spacing:0.078221pt;}
.ls2_c01276{letter-spacing:0.087539pt;}
.ls0_c01276{letter-spacing:0.092873pt;}
.ls3_c01276{letter-spacing:23.724873pt;}
.ws1_c01276{word-spacing:-29.967501pt;}
.ws4_c01276{word-spacing:-23.622682pt;}
.ws3_c01276{word-spacing:-23.544461pt;}
.ws0_c01276{word-spacing:-16.684034pt;}
.ws8_c01276{word-spacing:0.000000pt;}
.ws5_c01276{word-spacing:0.039110pt;}
.wsb_c01276{word-spacing:0.050460pt;}
.ws9_c01276{word-spacing:0.065111pt;}
.wsa_c01276{word-spacing:0.074430pt;}
.ws2_c01276{word-spacing:0.156442pt;}
.wsc_c01276{word-spacing:0.180412pt;}
.ws6_c01276{word-spacing:0.189730pt;}
.ws7_c01276{word-spacing:0.195063pt;}
._0_c01276{margin-left:-3.400567pt;}
._1_c01276{width:0.893988pt;}
._3_c01276{width:47.362694pt;}
._2_c01276{width:70.985376pt;}
._5_c01276{width:94.881830pt;}
._4_c01276{width:118.624363pt;}
.fs1_c01276{font-size:39.110400pt;}
.fs0_c01276{font-size:53.133867pt;}
.y0_c01276{bottom:0.000000pt;}
.y2d_c01276{bottom:39.333333pt;}
.y2c_c01276{bottom:86.150667pt;}
.y2b_c01276{bottom:100.762667pt;}
.y2a_c01276{bottom:115.374667pt;}
.y29_c01276{bottom:129.986667pt;}
.y28_c01276{bottom:144.598667pt;}
.y27_c01276{bottom:159.210667pt;}
.y26_c01276{bottom:173.822667pt;}
.y25_c01276{bottom:188.434667pt;}
.y24_c01276{bottom:203.046667pt;}
.y23_c01276{bottom:217.658667pt;}
.y22_c01276{bottom:232.270667pt;}
.y21_c01276{bottom:261.493333pt;}
.y20_c01276{bottom:276.105333pt;}
.y1f_c01276{bottom:290.717333pt;}
.y1e_c01276{bottom:319.941333pt;}
.y1d_c01276{bottom:334.553333pt;}
.y1c_c01276{bottom:349.165333pt;}
.y1b_c01276{bottom:363.777333pt;}
.y1a_c01276{bottom:378.389333pt;}
.y19_c01276{bottom:393.000000pt;}
.y18_c01276{bottom:407.612000pt;}
.y17_c01276{bottom:451.448000pt;}
.y16_c01276{bottom:466.060000pt;}
.y15_c01276{bottom:480.672000pt;}
.y14_c01276{bottom:495.284000pt;}
.y13_c01276{bottom:509.896000pt;}
.y12_c01276{bottom:524.508000pt;}
.y11_c01276{bottom:539.118667pt;}
.y10_c01276{bottom:553.730667pt;}
.yf_c01276{bottom:568.342667pt;}
.ye_c01276{bottom:582.954667pt;}
.yd_c01276{bottom:597.566667pt;}
.yc_c01276{bottom:612.178667pt;}
.yb_c01276{bottom:626.790667pt;}
.ya_c01276{bottom:641.402667pt;}
.y9_c01276{bottom:656.014667pt;}
.y8_c01276{bottom:670.626667pt;}
.y7_c01276{bottom:699.849333pt;}
.y6_c01276{bottom:714.461333pt;}
.y5_c01276{bottom:758.297333pt;}
.y4_c01276{bottom:772.909333pt;}
.y3_c01276{bottom:787.189333pt;}
.y2_c01276{bottom:1015.049333pt;}
.y1_c01276{bottom:1030.989333pt;}
.h3_c01276{height:31.280681pt;}
.h4_c01276{height:32.006363pt;}
.h2_c01276{height:46.518078pt;}
.h0_c01276{height:1122.520000pt;}
.h1_c01276{height:1122.666667pt;}
.w0_c01276{width:793.706667pt;}
.w1_c01276{width:794.000000pt;}
.x0_c01276{left:0.000000pt;}
.x1_c01276{left:113.385333pt;}
.x2_c01276{left:121.886667pt;}
.x3_c01276{left:127.796000pt;}
.x4_c01276{left:157.340000pt;}
.x5_c01276{left:386.888000pt;}
}





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

.ir_c01277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_2fbb3ac03f5cb706b9453c2c.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01277;src:url('chunks/assets/font_00bb50b435e84930f2fbea10.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01277;src:url('chunks/assets/font_9176248b622b561757f3155b.woff2')format("woff");}.ff3_c01277{font-family:ff3_c01277;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01277;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01277{font-family:ff4_c01277;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01277;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01277{font-family:ff5_c01277;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01277{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01277{vertical-align:0.000000px;}
.ls3_c01277{letter-spacing:0.000000px;}
.ls0_c01277{letter-spacing:0.087998px;}
.ls2_c01277{letter-spacing:0.098482px;}
.ls1_c01277{letter-spacing:0.104482px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01277{word-spacing:-33.713438px;}
.ws2_c01277{word-spacing:-26.575517px;}
.wse_c01277{word-spacing:-26.487518px;}
.ws9_c01277{word-spacing:-21.553319px;}
.ws8_c01277{word-spacing:-21.519216px;}
.ws7_c01277{word-spacing:-19.247743px;}
.ws5_c01277{word-spacing:-18.769538px;}
.ws4_c01277{word-spacing:-14.943900px;}
.wsa_c01277{word-spacing:-14.107042px;}
.wsb_c01277{word-spacing:-12.074671px;}
.ws6_c01277{word-spacing:-10.230144px;}
.ws1_c01277{word-spacing:-9.988424px;}
.ws3_c01277{word-spacing:-9.987499px;}
.ws12_c01277{word-spacing:0.000000px;}
.wsf_c01277{word-spacing:0.043999px;}
.ws15_c01277{word-spacing:0.056767px;}
.ws13_c01277{word-spacing:0.073250px;}
.ws14_c01277{word-spacing:0.083734px;}
.wsd_c01277{word-spacing:0.175997px;}
.ws16_c01277{word-spacing:0.202963px;}
.ws10_c01277{word-spacing:0.213446px;}
.ws11_c01277{word-spacing:0.219446px;}
.ws0_c01277{word-spacing:43.038600px;}
._1_c01277{margin-left:-6.580632px;}
._5_c01277{margin-left:-3.825638px;}
._3_c01277{margin-left:-2.347817px;}
._2_c01277{margin-left:-1.075961px;}
._6_c01277{width:1.005737px;}
._0_c01277{width:19.935816px;}
._4_c01277{width:40.109428px;}
._8_c01277{width:53.283031px;}
._7_c01277{width:79.858548px;}
._9_c01277{width:133.452408px;}
.fc6_c01277{color:rgb(0,0,207);}
.fc5_c01277{color:rgb(79,153,5);}
.fc3_c01277{color:rgb(33,74,135);}
.fc2_c01277{color:rgb(143,89,3);}
.fc4_c01277{color:rgb(207,92,0);}
.fc1_c01277{color:rgb(6,69,173);}
.fc0_c01277{color:rgb(0,0,0);}
.fs2_c01277{font-size:43.999200px;}
.fs1_c01277{font-size:59.775600px;}
.fs0_c01277{font-size:86.077200px;}
.y0_c01277{bottom:0.000000px;}
.y20_c01277{bottom:44.250000px;}
.y1f_c01277{bottom:86.982000px;}
.y1e_c01277{bottom:103.420500px;}
.y1d_c01277{bottom:119.859000px;}
.y1c_c01277{bottom:136.297500px;}
.y1b_c01277{bottom:152.736000px;}
.y1a_c01277{bottom:169.174500px;}
.y19_c01277{bottom:185.613000px;}
.y18_c01277{bottom:202.051500px;}
.y17_c01277{bottom:218.490000px;}
.y16_c01277{bottom:234.927000px;}
.y15_c01277{bottom:251.365500px;}
.y14_c01277{bottom:267.804000px;}
.y13_c01277{bottom:284.242500px;}
.y12_c01277{bottom:300.681000px;}
.y11_c01277{bottom:317.119500px;}
.y10_c01277{bottom:349.996500px;}
.yf_c01277{bottom:366.435000px;}
.ye_c01277{bottom:415.749000px;}
.yd_c01277{bottom:432.187500px;}
.yc_c01277{bottom:448.252500px;}
.yb_c01277{bottom:493.890000px;}
.ya_c01277{bottom:511.822500px;}
.y9_c01277{bottom:529.756500px;}
.y8_c01277{bottom:547.689000px;}
.y7_c01277{bottom:565.621500px;}
.y6_c01277{bottom:583.554000px;}
.y5_c01277{bottom:610.633500px;}
.y4_c01277{bottom:637.714500px;}
.y3_c01277{bottom:664.794000px;}
.y2_c01277{bottom:691.873500px;}
.y1_c01277{bottom:734.407500px;}
.h5_c01277{height:35.190766px;}
.h6_c01277{height:36.007158px;}
.h3_c01277{height:40.511979px;}
.h4_c01277{height:52.332837px;}
.h2_c01277{height:58.337477px;}
.h0_c01277{height:1262.835000px;}
.h1_c01277{height:1263.000000px;}
.w0_c01277{width:892.920000px;}
.w1_c01277{width:893.250000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:127.558500px;}
.x2_c01277{left:137.122500px;}
.x3_c01277{left:143.770500px;}
.x4_c01277{left:435.249000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls3_c01277{letter-spacing:0.000000pt;}
.ls0_c01277{letter-spacing:0.078221pt;}
.ls2_c01277{letter-spacing:0.087539pt;}
.ls1_c01277{letter-spacing:0.092873pt;}
.wsc_c01277{word-spacing:-29.967501pt;}
.ws2_c01277{word-spacing:-23.622682pt;}
.wse_c01277{word-spacing:-23.544461pt;}
.ws9_c01277{word-spacing:-19.158506pt;}
.ws8_c01277{word-spacing:-19.128192pt;}
.ws7_c01277{word-spacing:-17.109105pt;}
.ws5_c01277{word-spacing:-16.684034pt;}
.ws4_c01277{word-spacing:-13.283467pt;}
.wsa_c01277{word-spacing:-12.539593pt;}
.wsb_c01277{word-spacing:-10.733041pt;}
.ws6_c01277{word-spacing:-9.093461pt;}
.ws1_c01277{word-spacing:-8.878599pt;}
.ws3_c01277{word-spacing:-8.877777pt;}
.ws12_c01277{word-spacing:0.000000pt;}
.wsf_c01277{word-spacing:0.039110pt;}
.ws15_c01277{word-spacing:0.050460pt;}
.ws13_c01277{word-spacing:0.065111pt;}
.ws14_c01277{word-spacing:0.074430pt;}
.wsd_c01277{word-spacing:0.156442pt;}
.ws16_c01277{word-spacing:0.180412pt;}
.ws10_c01277{word-spacing:0.189730pt;}
.ws11_c01277{word-spacing:0.195063pt;}
.ws0_c01277{word-spacing:38.256533pt;}
._1_c01277{margin-left:-5.849451pt;}
._5_c01277{margin-left:-3.400567pt;}
._3_c01277{margin-left:-2.086948pt;}
._2_c01277{margin-left:-0.956410pt;}
._6_c01277{width:0.893988pt;}
._0_c01277{width:17.720725pt;}
._4_c01277{width:35.652825pt;}
._8_c01277{width:47.362694pt;}
._7_c01277{width:70.985376pt;}
._9_c01277{width:118.624363pt;}
.fs2_c01277{font-size:39.110400pt;}
.fs1_c01277{font-size:53.133867pt;}
.fs0_c01277{font-size:76.513067pt;}
.y0_c01277{bottom:0.000000pt;}
.y20_c01277{bottom:39.333333pt;}
.y1f_c01277{bottom:77.317333pt;}
.y1e_c01277{bottom:91.929333pt;}
.y1d_c01277{bottom:106.541333pt;}
.y1c_c01277{bottom:121.153333pt;}
.y1b_c01277{bottom:135.765333pt;}
.y1a_c01277{bottom:150.377333pt;}
.y19_c01277{bottom:164.989333pt;}
.y18_c01277{bottom:179.601333pt;}
.y17_c01277{bottom:194.213333pt;}
.y16_c01277{bottom:208.824000pt;}
.y15_c01277{bottom:223.436000pt;}
.y14_c01277{bottom:238.048000pt;}
.y13_c01277{bottom:252.660000pt;}
.y12_c01277{bottom:267.272000pt;}
.y11_c01277{bottom:281.884000pt;}
.y10_c01277{bottom:311.108000pt;}
.yf_c01277{bottom:325.720000pt;}
.ye_c01277{bottom:369.554667pt;}
.yd_c01277{bottom:384.166667pt;}
.yc_c01277{bottom:398.446667pt;}
.yb_c01277{bottom:439.013333pt;}
.ya_c01277{bottom:454.953333pt;}
.y9_c01277{bottom:470.894667pt;}
.y8_c01277{bottom:486.834667pt;}
.y7_c01277{bottom:502.774667pt;}
.y6_c01277{bottom:518.714667pt;}
.y5_c01277{bottom:542.785333pt;}
.y4_c01277{bottom:566.857333pt;}
.y3_c01277{bottom:590.928000pt;}
.y2_c01277{bottom:614.998667pt;}
.y1_c01277{bottom:652.806667pt;}
.h5_c01277{height:31.280681pt;}
.h6_c01277{height:32.006363pt;}
.h3_c01277{height:36.010648pt;}
.h4_c01277{height:46.518078pt;}
.h2_c01277{height:51.855535pt;}
.h0_c01277{height:1122.520000pt;}
.h1_c01277{height:1122.666667pt;}
.w0_c01277{width:793.706667pt;}
.w1_c01277{width:794.000000pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:113.385333pt;}
.x2_c01277{left:121.886667pt;}
.x3_c01277{left:127.796000pt;}
.x4_c01277{left:386.888000pt;}
}





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

.ir_c01278:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_1e3af16c9ceb91549492687f.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01278;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01278;src:url('chunks/assets/font_2720bfd7f77c716eff3f2ba4.woff2')format("woff");}.ff3_c01278{font-family:ff3_c01278;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01278;src:url('chunks/assets/font_3150032536a082955645ad82.woff2')format("woff");}.ff4_c01278{font-family:ff4_c01278;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01278;src:url('chunks/assets/font_7e91a62f0a7fbab61eae3974.woff2')format("woff");}.ff5_c01278{font-family:ff5_c01278;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01278{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01278{vertical-align:0.000000px;}
.ls4_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:0.087998px;}
.ls2_c01278{letter-spacing:0.098482px;}
.ls3_c01278{letter-spacing:0.104482px;}
.ls1_c01278{letter-spacing:26.690482px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01278{word-spacing:-26.575517px;}
.ws4_c01278{word-spacing:-26.487518px;}
.wsa_c01278{word-spacing:-18.769538px;}
.ws10_c01278{word-spacing:-17.693578px;}
.wsd_c01278{word-spacing:-17.454475px;}
.wsc_c01278{word-spacing:-17.394700px;}
.wse_c01278{word-spacing:-17.095822px;}
.wsf_c01278{word-spacing:-15.063451px;}
.ws9_c01278{word-spacing:-14.943900px;}
.ws7_c01278{word-spacing:-9.988424px;}
.ws8_c01278{word-spacing:-9.987499px;}
.wsb_c01278{word-spacing:-7.266144px;}
.ws3_c01278{word-spacing:0.000000px;}
.ws0_c01278{word-spacing:0.043999px;}
.ws5_c01278{word-spacing:0.213446px;}
.ws1_c01278{word-spacing:0.219446px;}
.ws6_c01278{word-spacing:43.038600px;}
._2_c01278{margin-left:-1.549390px;}
._1_c01278{width:1.020240px;}
._4_c01278{width:17.633802px;}
._3_c01278{width:19.935816px;}
._6_c01278{width:23.073382px;}
._5_c01278{width:24.986201px;}
._0_c01278{width:80.166542px;}
.fc5_c01278{color:rgb(79,153,5);}
.fc4_c01278{color:rgb(143,89,3);}
.fc3_c01278{color:rgb(0,0,0);}
.fc6_c01278{color:rgb(6,69,173);}
.fc2_c01278{color:rgb(207,92,0);}
.fc1_c01278{color:rgb(0,0,207);}
.fc0_c01278{color:rgb(33,74,135);}
.fs0_c01278{font-size:43.999200px;}
.fs2_c01278{font-size:59.775600px;}
.fs1_c01278{font-size:86.077200px;}
.y0_c01278{bottom:0.000000px;}
.y20_c01278{bottom:44.250000px;}
.y1f_c01278{bottom:82.051500px;}
.y1e_c01278{bottom:99.984000px;}
.y1d_c01278{bottom:117.916500px;}
.y1c_c01278{bottom:135.849000px;}
.y1b_c01278{bottom:162.501000px;}
.y1a_c01278{bottom:189.151500px;}
.y19_c01278{bottom:215.802000px;}
.y18_c01278{bottom:242.454000px;}
.y17_c01278{bottom:284.478000px;}
.y16_c01278{bottom:748.903500px;}
.y15_c01278{bottom:765.342000px;}
.y14_c01278{bottom:781.780500px;}
.y13_c01278{bottom:798.219000px;}
.y12_c01278{bottom:814.657500px;}
.y11_c01278{bottom:831.096000px;}
.y10_c01278{bottom:847.534500px;}
.yf_c01278{bottom:863.973000px;}
.ye_c01278{bottom:880.411500px;}
.yd_c01278{bottom:896.848500px;}
.yc_c01278{bottom:913.287000px;}
.yb_c01278{bottom:946.164000px;}
.ya_c01278{bottom:962.602500px;}
.y9_c01278{bottom:979.041000px;}
.y8_c01278{bottom:1011.918000px;}
.y7_c01278{bottom:1028.356500px;}
.y6_c01278{bottom:1044.795000px;}
.y5_c01278{bottom:1061.232000px;}
.y4_c01278{bottom:1077.670500px;}
.y3_c01278{bottom:1094.109000px;}
.y2_c01278{bottom:1110.547500px;}
.y1_c01278{bottom:1159.863000px;}
.h3_c01278{height:35.190766px;}
.h2_c01278{height:36.007158px;}
.h5_c01278{height:40.511979px;}
.h6_c01278{height:52.332837px;}
.h4_c01278{height:58.337477px;}
.h0_c01278{height:1262.835000px;}
.h1_c01278{height:1263.000000px;}
.w0_c01278{width:892.920000px;}
.w1_c01278{width:893.250000px;}
.x0_c01278{left:0.000000px;}
.x4_c01278{left:127.558500px;}
.x2_c01278{left:137.122500px;}
.x1_c01278{left:143.770500px;}
.x3_c01278{left:177.007500px;}
.x5_c01278{left:435.249000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls4_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:0.078221pt;}
.ls2_c01278{letter-spacing:0.087539pt;}
.ls3_c01278{letter-spacing:0.092873pt;}
.ls1_c01278{letter-spacing:23.724873pt;}
.ws2_c01278{word-spacing:-23.622682pt;}
.ws4_c01278{word-spacing:-23.544461pt;}
.wsa_c01278{word-spacing:-16.684034pt;}
.ws10_c01278{word-spacing:-15.727625pt;}
.wsd_c01278{word-spacing:-15.515089pt;}
.wsc_c01278{word-spacing:-15.461955pt;}
.wse_c01278{word-spacing:-15.196286pt;}
.wsf_c01278{word-spacing:-13.389734pt;}
.ws9_c01278{word-spacing:-13.283467pt;}
.ws7_c01278{word-spacing:-8.878599pt;}
.ws8_c01278{word-spacing:-8.877777pt;}
.wsb_c01278{word-spacing:-6.458795pt;}
.ws3_c01278{word-spacing:0.000000pt;}
.ws0_c01278{word-spacing:0.039110pt;}
.ws5_c01278{word-spacing:0.189730pt;}
.ws1_c01278{word-spacing:0.195063pt;}
.ws6_c01278{word-spacing:38.256533pt;}
._2_c01278{margin-left:-1.377235pt;}
._1_c01278{width:0.906880pt;}
._4_c01278{width:15.674491pt;}
._3_c01278{width:17.720725pt;}
._6_c01278{width:20.509673pt;}
._5_c01278{width:22.209956pt;}
._0_c01278{width:71.259149pt;}
.fs0_c01278{font-size:39.110400pt;}
.fs2_c01278{font-size:53.133867pt;}
.fs1_c01278{font-size:76.513067pt;}
.y0_c01278{bottom:0.000000pt;}
.y20_c01278{bottom:39.333333pt;}
.y1f_c01278{bottom:72.934667pt;}
.y1e_c01278{bottom:88.874667pt;}
.y1d_c01278{bottom:104.814667pt;}
.y1c_c01278{bottom:120.754667pt;}
.y1b_c01278{bottom:144.445333pt;}
.y1a_c01278{bottom:168.134667pt;}
.y19_c01278{bottom:191.824000pt;}
.y18_c01278{bottom:215.514667pt;}
.y17_c01278{bottom:252.869333pt;}
.y16_c01278{bottom:665.692000pt;}
.y15_c01278{bottom:680.304000pt;}
.y14_c01278{bottom:694.916000pt;}
.y13_c01278{bottom:709.528000pt;}
.y12_c01278{bottom:724.140000pt;}
.y11_c01278{bottom:738.752000pt;}
.y10_c01278{bottom:753.364000pt;}
.yf_c01278{bottom:767.976000pt;}
.ye_c01278{bottom:782.588000pt;}
.yd_c01278{bottom:797.198667pt;}
.yc_c01278{bottom:811.810667pt;}
.yb_c01278{bottom:841.034667pt;}
.ya_c01278{bottom:855.646667pt;}
.y9_c01278{bottom:870.258667pt;}
.y8_c01278{bottom:899.482667pt;}
.y7_c01278{bottom:914.094667pt;}
.y6_c01278{bottom:928.706667pt;}
.y5_c01278{bottom:943.317333pt;}
.y4_c01278{bottom:957.929333pt;}
.y3_c01278{bottom:972.541333pt;}
.y2_c01278{bottom:987.153333pt;}
.y1_c01278{bottom:1030.989333pt;}
.h3_c01278{height:31.280681pt;}
.h2_c01278{height:32.006363pt;}
.h5_c01278{height:36.010648pt;}
.h6_c01278{height:46.518078pt;}
.h4_c01278{height:51.855535pt;}
.h0_c01278{height:1122.520000pt;}
.h1_c01278{height:1122.666667pt;}
.w0_c01278{width:793.706667pt;}
.w1_c01278{width:794.000000pt;}
.x0_c01278{left:0.000000pt;}
.x4_c01278{left:113.385333pt;}
.x2_c01278{left:121.886667pt;}
.x1_c01278{left:127.796000pt;}
.x3_c01278{left:157.340000pt;}
.x5_c01278{left:386.888000pt;}
}





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

.ir_c01279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_424f66f3dd2c4c63ab77f529.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01279;src:url('chunks/assets/font_9b63a409901cca5f77ffa6c0.woff2')format("woff");}.ff2_c01279{font-family:ff2_c01279;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01279;src:url('chunks/assets/font_0c58774e3352720f512d0b70.woff2')format("woff");}.ff3_c01279{font-family:ff3_c01279;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01279;src:url('chunks/assets/font_aeefb61c68c0217208060292.woff2')format("woff");}.ff4_c01279{font-family:ff4_c01279;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01279{vertical-align:0.000000px;}
.ls3_c01279{letter-spacing:0.000000px;}
.ls1_c01279{letter-spacing:0.087998px;}
.ls2_c01279{letter-spacing:0.098482px;}
.ls0_c01279{letter-spacing:0.104482px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01279{word-spacing:-26.575517px;}
.ws3_c01279{word-spacing:-26.487518px;}
.ws1_c01279{word-spacing:-18.769538px;}
.ws0_c01279{word-spacing:-18.590212px;}
.ws8_c01279{word-spacing:0.000000px;}
.ws5_c01279{word-spacing:0.043999px;}
.ws9_c01279{word-spacing:0.056767px;}
.ws2_c01279{word-spacing:0.175997px;}
.ws7_c01279{word-spacing:0.213446px;}
.ws6_c01279{word-spacing:0.219446px;}
._1_c01279{margin-left:-3.825638px;}
._2_c01279{width:1.005737px;}
._0_c01279{width:20.622582px;}
._3_c01279{width:80.122543px;}
.fc5_c01279{color:rgb(0,0,207);}
.fc4_c01279{color:rgb(79,153,5);}
.fc3_c01279{color:rgb(207,92,0);}
.fc2_c01279{color:rgb(33,74,135);}
.fc1_c01279{color:rgb(143,89,3);}
.fc0_c01279{color:rgb(0,0,0);}
.fs1_c01279{font-size:43.999200px;}
.fs0_c01279{font-size:59.775600px;}
.y0_c01279{bottom:0.000000px;}
.y30_c01279{bottom:44.250000px;}
.y2f_c01279{bottom:96.919500px;}
.y2e_c01279{bottom:113.358000px;}
.y2d_c01279{bottom:129.796500px;}
.y2c_c01279{bottom:146.235000px;}
.y2b_c01279{bottom:162.673500px;}
.y2a_c01279{bottom:179.112000px;}
.y29_c01279{bottom:195.550500px;}
.y28_c01279{bottom:211.989000px;}
.y27_c01279{bottom:228.427500px;}
.y26_c01279{bottom:244.866000px;}
.y25_c01279{bottom:261.304500px;}
.y24_c01279{bottom:294.180000px;}
.y23_c01279{bottom:310.618500px;}
.y22_c01279{bottom:327.057000px;}
.y21_c01279{bottom:359.934000px;}
.y20_c01279{bottom:376.372500px;}
.y1f_c01279{bottom:392.811000px;}
.y1e_c01279{bottom:409.249500px;}
.y1d_c01279{bottom:425.688000px;}
.y1c_c01279{bottom:442.125000px;}
.y1b_c01279{bottom:458.563500px;}
.y1a_c01279{bottom:475.002000px;}
.y19_c01279{bottom:491.440500px;}
.y18_c01279{bottom:507.879000px;}
.y17_c01279{bottom:524.317500px;}
.y16_c01279{bottom:540.756000px;}
.y15_c01279{bottom:557.194500px;}
.y14_c01279{bottom:573.633000px;}
.y13_c01279{bottom:622.947000px;}
.y12_c01279{bottom:639.385500px;}
.y11_c01279{bottom:672.262500px;}
.y10_c01279{bottom:688.701000px;}
.yf_c01279{bottom:721.578000px;}
.ye_c01279{bottom:738.016500px;}
.yd_c01279{bottom:754.455000px;}
.yc_c01279{bottom:770.893500px;}
.yb_c01279{bottom:803.769000px;}
.ya_c01279{bottom:820.207500px;}
.y9_c01279{bottom:836.646000px;}
.y8_c01279{bottom:853.084500px;}
.y7_c01279{bottom:869.523000px;}
.y6_c01279{bottom:885.961500px;}
.y5_c01279{bottom:902.400000px;}
.y4_c01279{bottom:918.838500px;}
.y3_c01279{bottom:934.903500px;}
.y2_c01279{bottom:1141.930500px;}
.y1_c01279{bottom:1159.863000px;}
.h3_c01279{height:35.190766px;}
.h4_c01279{height:36.007158px;}
.h2_c01279{height:52.332837px;}
.h0_c01279{height:1262.835000px;}
.h1_c01279{height:1263.000000px;}
.w0_c01279{width:892.920000px;}
.w1_c01279{width:893.250000px;}
.x0_c01279{left:0.000000px;}
.x1_c01279{left:127.558500px;}
.x2_c01279{left:137.122500px;}
.x4_c01279{left:177.007500px;}
.x3_c01279{left:230.185500px;}
.x5_c01279{left:435.249000px;}
@media print{
.v0_c01279{vertical-align:0.000000pt;}
.ls3_c01279{letter-spacing:0.000000pt;}
.ls1_c01279{letter-spacing:0.078221pt;}
.ls2_c01279{letter-spacing:0.087539pt;}
.ls0_c01279{letter-spacing:0.092873pt;}
.ws4_c01279{word-spacing:-23.622682pt;}
.ws3_c01279{word-spacing:-23.544461pt;}
.ws1_c01279{word-spacing:-16.684034pt;}
.ws0_c01279{word-spacing:-16.524633pt;}
.ws8_c01279{word-spacing:0.000000pt;}
.ws5_c01279{word-spacing:0.039110pt;}
.ws9_c01279{word-spacing:0.050460pt;}
.ws2_c01279{word-spacing:0.156442pt;}
.ws7_c01279{word-spacing:0.189730pt;}
.ws6_c01279{word-spacing:0.195063pt;}
._1_c01279{margin-left:-3.400567pt;}
._2_c01279{width:0.893988pt;}
._0_c01279{width:18.331184pt;}
._3_c01279{width:71.220038pt;}
.fs1_c01279{font-size:39.110400pt;}
.fs0_c01279{font-size:53.133867pt;}
.y0_c01279{bottom:0.000000pt;}
.y30_c01279{bottom:39.333333pt;}
.y2f_c01279{bottom:86.150667pt;}
.y2e_c01279{bottom:100.762667pt;}
.y2d_c01279{bottom:115.374667pt;}
.y2c_c01279{bottom:129.986667pt;}
.y2b_c01279{bottom:144.598667pt;}
.y2a_c01279{bottom:159.210667pt;}
.y29_c01279{bottom:173.822667pt;}
.y28_c01279{bottom:188.434667pt;}
.y27_c01279{bottom:203.046667pt;}
.y26_c01279{bottom:217.658667pt;}
.y25_c01279{bottom:232.270667pt;}
.y24_c01279{bottom:261.493333pt;}
.y23_c01279{bottom:276.105333pt;}
.y22_c01279{bottom:290.717333pt;}
.y21_c01279{bottom:319.941333pt;}
.y20_c01279{bottom:334.553333pt;}
.y1f_c01279{bottom:349.165333pt;}
.y1e_c01279{bottom:363.777333pt;}
.y1d_c01279{bottom:378.389333pt;}
.y1c_c01279{bottom:393.000000pt;}
.y1b_c01279{bottom:407.612000pt;}
.y1a_c01279{bottom:422.224000pt;}
.y19_c01279{bottom:436.836000pt;}
.y18_c01279{bottom:451.448000pt;}
.y17_c01279{bottom:466.060000pt;}
.y16_c01279{bottom:480.672000pt;}
.y15_c01279{bottom:495.284000pt;}
.y14_c01279{bottom:509.896000pt;}
.y13_c01279{bottom:553.730667pt;}
.y12_c01279{bottom:568.342667pt;}
.y11_c01279{bottom:597.566667pt;}
.y10_c01279{bottom:612.178667pt;}
.yf_c01279{bottom:641.402667pt;}
.ye_c01279{bottom:656.014667pt;}
.yd_c01279{bottom:670.626667pt;}
.yc_c01279{bottom:685.238667pt;}
.yb_c01279{bottom:714.461333pt;}
.ya_c01279{bottom:729.073333pt;}
.y9_c01279{bottom:743.685333pt;}
.y8_c01279{bottom:758.297333pt;}
.y7_c01279{bottom:772.909333pt;}
.y6_c01279{bottom:787.521333pt;}
.y5_c01279{bottom:802.133333pt;}
.y4_c01279{bottom:816.745333pt;}
.y3_c01279{bottom:831.025333pt;}
.y2_c01279{bottom:1015.049333pt;}
.y1_c01279{bottom:1030.989333pt;}
.h3_c01279{height:31.280681pt;}
.h4_c01279{height:32.006363pt;}
.h2_c01279{height:46.518078pt;}
.h0_c01279{height:1122.520000pt;}
.h1_c01279{height:1122.666667pt;}
.w0_c01279{width:793.706667pt;}
.w1_c01279{width:794.000000pt;}
.x0_c01279{left:0.000000pt;}
.x1_c01279{left:113.385333pt;}
.x2_c01279{left:121.886667pt;}
.x4_c01279{left:157.340000pt;}
.x3_c01279{left:204.609333pt;}
.x5_c01279{left:386.888000pt;}
}





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

.ir_c01280:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_4879a26ce824f34190e0d00b.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01280;src:url('chunks/assets/font_5dc9d7cd86cf6b57901e187c.woff2')format("woff");}.ff2_c01280{font-family:ff2_c01280;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01280;src:url('chunks/assets/font_b8a2a3a53d154bd00bbe0bd3.woff2')format("woff");}.ff3_c01280{font-family:ff3_c01280;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01280;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01280{font-family:ff4_c01280;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01280;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01280{font-family:ff5_c01280;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01280{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01280{vertical-align:0.000000px;}
.ls3_c01280{letter-spacing:0.000000px;}
.ls0_c01280{letter-spacing:0.087998px;}
.ls2_c01280{letter-spacing:0.098482px;}
.ls1_c01280{letter-spacing:0.104482px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01280{word-spacing:-33.713438px;}
.ws2_c01280{word-spacing:-26.575517px;}
.wse_c01280{word-spacing:-26.487518px;}
.ws9_c01280{word-spacing:-21.553319px;}
.ws8_c01280{word-spacing:-21.519216px;}
.ws5_c01280{word-spacing:-18.769538px;}
.ws7_c01280{word-spacing:-16.019861px;}
.ws4_c01280{word-spacing:-14.943900px;}
.wsa_c01280{word-spacing:-14.107042px;}
.wsb_c01280{word-spacing:-12.074671px;}
.ws1_c01280{word-spacing:-9.988424px;}
.ws3_c01280{word-spacing:-9.987499px;}
.ws6_c01280{word-spacing:-4.536144px;}
.ws12_c01280{word-spacing:0.000000px;}
.wsf_c01280{word-spacing:0.043999px;}
.ws15_c01280{word-spacing:0.056767px;}
.ws13_c01280{word-spacing:0.073250px;}
.ws14_c01280{word-spacing:0.083734px;}
.wsd_c01280{word-spacing:0.175997px;}
.ws16_c01280{word-spacing:0.202963px;}
.ws10_c01280{word-spacing:0.213446px;}
.ws11_c01280{word-spacing:0.219446px;}
.ws0_c01280{word-spacing:43.038600px;}
._3_c01280{margin-left:-3.825638px;}
._0_c01280{margin-left:-1.549390px;}
._4_c01280{width:1.005737px;}
._1_c01280{width:19.935816px;}
._2_c01280{width:40.109428px;}
._6_c01280{width:53.283031px;}
._5_c01280{width:79.858548px;}
._7_c01280{width:133.452408px;}
.fc6_c01280{color:rgb(0,0,207);}
.fc5_c01280{color:rgb(79,153,5);}
.fc3_c01280{color:rgb(33,74,135);}
.fc2_c01280{color:rgb(143,89,3);}
.fc4_c01280{color:rgb(207,92,0);}
.fc1_c01280{color:rgb(6,69,173);}
.fc0_c01280{color:rgb(0,0,0);}
.fs2_c01280{font-size:43.999200px;}
.fs1_c01280{font-size:59.775600px;}
.fs0_c01280{font-size:86.077200px;}
.y0_c01280{bottom:0.000000px;}
.y20_c01280{bottom:44.250000px;}
.y1f_c01280{bottom:86.982000px;}
.y1e_c01280{bottom:103.420500px;}
.y1d_c01280{bottom:119.859000px;}
.y1c_c01280{bottom:136.297500px;}
.y1b_c01280{bottom:152.736000px;}
.y1a_c01280{bottom:169.174500px;}
.y19_c01280{bottom:185.613000px;}
.y18_c01280{bottom:202.051500px;}
.y17_c01280{bottom:218.490000px;}
.y16_c01280{bottom:234.927000px;}
.y15_c01280{bottom:251.365500px;}
.y14_c01280{bottom:267.804000px;}
.y13_c01280{bottom:284.242500px;}
.y12_c01280{bottom:300.681000px;}
.y11_c01280{bottom:317.119500px;}
.y10_c01280{bottom:349.996500px;}
.yf_c01280{bottom:366.435000px;}
.ye_c01280{bottom:415.749000px;}
.yd_c01280{bottom:432.187500px;}
.yc_c01280{bottom:448.252500px;}
.yb_c01280{bottom:493.890000px;}
.ya_c01280{bottom:511.822500px;}
.y9_c01280{bottom:529.756500px;}
.y8_c01280{bottom:547.689000px;}
.y7_c01280{bottom:565.621500px;}
.y6_c01280{bottom:583.554000px;}
.y5_c01280{bottom:610.633500px;}
.y4_c01280{bottom:637.714500px;}
.y3_c01280{bottom:664.794000px;}
.y2_c01280{bottom:691.873500px;}
.y1_c01280{bottom:734.407500px;}
.h5_c01280{height:35.190766px;}
.h6_c01280{height:36.007158px;}
.h3_c01280{height:40.511979px;}
.h4_c01280{height:52.332837px;}
.h2_c01280{height:58.337477px;}
.h0_c01280{height:1262.835000px;}
.h1_c01280{height:1263.000000px;}
.w0_c01280{width:892.920000px;}
.w1_c01280{width:893.250000px;}
.x0_c01280{left:0.000000px;}
.x1_c01280{left:127.558500px;}
.x2_c01280{left:137.122500px;}
.x3_c01280{left:143.770500px;}
.x4_c01280{left:435.249000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls3_c01280{letter-spacing:0.000000pt;}
.ls0_c01280{letter-spacing:0.078221pt;}
.ls2_c01280{letter-spacing:0.087539pt;}
.ls1_c01280{letter-spacing:0.092873pt;}
.wsc_c01280{word-spacing:-29.967501pt;}
.ws2_c01280{word-spacing:-23.622682pt;}
.wse_c01280{word-spacing:-23.544461pt;}
.ws9_c01280{word-spacing:-19.158506pt;}
.ws8_c01280{word-spacing:-19.128192pt;}
.ws5_c01280{word-spacing:-16.684034pt;}
.ws7_c01280{word-spacing:-14.239876pt;}
.ws4_c01280{word-spacing:-13.283467pt;}
.wsa_c01280{word-spacing:-12.539593pt;}
.wsb_c01280{word-spacing:-10.733041pt;}
.ws1_c01280{word-spacing:-8.878599pt;}
.ws3_c01280{word-spacing:-8.877777pt;}
.ws6_c01280{word-spacing:-4.032128pt;}
.ws12_c01280{word-spacing:0.000000pt;}
.wsf_c01280{word-spacing:0.039110pt;}
.ws15_c01280{word-spacing:0.050460pt;}
.ws13_c01280{word-spacing:0.065111pt;}
.ws14_c01280{word-spacing:0.074430pt;}
.wsd_c01280{word-spacing:0.156442pt;}
.ws16_c01280{word-spacing:0.180412pt;}
.ws10_c01280{word-spacing:0.189730pt;}
.ws11_c01280{word-spacing:0.195063pt;}
.ws0_c01280{word-spacing:38.256533pt;}
._3_c01280{margin-left:-3.400567pt;}
._0_c01280{margin-left:-1.377235pt;}
._4_c01280{width:0.893988pt;}
._1_c01280{width:17.720725pt;}
._2_c01280{width:35.652825pt;}
._6_c01280{width:47.362694pt;}
._5_c01280{width:70.985376pt;}
._7_c01280{width:118.624363pt;}
.fs2_c01280{font-size:39.110400pt;}
.fs1_c01280{font-size:53.133867pt;}
.fs0_c01280{font-size:76.513067pt;}
.y0_c01280{bottom:0.000000pt;}
.y20_c01280{bottom:39.333333pt;}
.y1f_c01280{bottom:77.317333pt;}
.y1e_c01280{bottom:91.929333pt;}
.y1d_c01280{bottom:106.541333pt;}
.y1c_c01280{bottom:121.153333pt;}
.y1b_c01280{bottom:135.765333pt;}
.y1a_c01280{bottom:150.377333pt;}
.y19_c01280{bottom:164.989333pt;}
.y18_c01280{bottom:179.601333pt;}
.y17_c01280{bottom:194.213333pt;}
.y16_c01280{bottom:208.824000pt;}
.y15_c01280{bottom:223.436000pt;}
.y14_c01280{bottom:238.048000pt;}
.y13_c01280{bottom:252.660000pt;}
.y12_c01280{bottom:267.272000pt;}
.y11_c01280{bottom:281.884000pt;}
.y10_c01280{bottom:311.108000pt;}
.yf_c01280{bottom:325.720000pt;}
.ye_c01280{bottom:369.554667pt;}
.yd_c01280{bottom:384.166667pt;}
.yc_c01280{bottom:398.446667pt;}
.yb_c01280{bottom:439.013333pt;}
.ya_c01280{bottom:454.953333pt;}
.y9_c01280{bottom:470.894667pt;}
.y8_c01280{bottom:486.834667pt;}
.y7_c01280{bottom:502.774667pt;}
.y6_c01280{bottom:518.714667pt;}
.y5_c01280{bottom:542.785333pt;}
.y4_c01280{bottom:566.857333pt;}
.y3_c01280{bottom:590.928000pt;}
.y2_c01280{bottom:614.998667pt;}
.y1_c01280{bottom:652.806667pt;}
.h5_c01280{height:31.280681pt;}
.h6_c01280{height:32.006363pt;}
.h3_c01280{height:36.010648pt;}
.h4_c01280{height:46.518078pt;}
.h2_c01280{height:51.855535pt;}
.h0_c01280{height:1122.520000pt;}
.h1_c01280{height:1122.666667pt;}
.w0_c01280{width:793.706667pt;}
.w1_c01280{width:794.000000pt;}
.x0_c01280{left:0.000000pt;}
.x1_c01280{left:113.385333pt;}
.x2_c01280{left:121.886667pt;}
.x3_c01280{left:127.796000pt;}
.x4_c01280{left:386.888000pt;}
}





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

.ir_c01281:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_b1be5d43f00645092a895dc7.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01281;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01281;src:url('chunks/assets/font_69b5ebc18cf6bd5cc9cb3b23.woff2')format("woff");}.ff3_c01281{font-family:ff3_c01281;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01281;src:url('chunks/assets/font_f63894320bf2f1b124ab0aa0.woff2')format("woff");}.ff4_c01281{font-family:ff4_c01281;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01281;src:url('chunks/assets/font_b1e379f20b7f1525fde25140.woff2')format("woff");}.ff5_c01281{font-family:ff5_c01281;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01281{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01281{vertical-align:0.000000px;}
.ls4_c01281{letter-spacing:0.000000px;}
.ls0_c01281{letter-spacing:0.087998px;}
.ls2_c01281{letter-spacing:0.098482px;}
.ls3_c01281{letter-spacing:0.104482px;}
.ls1_c01281{letter-spacing:26.690482px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01281{word-spacing:-26.575517px;}
.ws4_c01281{word-spacing:-26.487518px;}
.wse_c01281{word-spacing:-21.553319px;}
.wsd_c01281{word-spacing:-21.519216px;}
.wsa_c01281{word-spacing:-18.769538px;}
.wsc_c01281{word-spacing:-17.633802px;}
.ws9_c01281{word-spacing:-14.943900px;}
.wsf_c01281{word-spacing:-14.107042px;}
.ws10_c01281{word-spacing:-12.074671px;}
.ws7_c01281{word-spacing:-9.988424px;}
.ws8_c01281{word-spacing:-9.987499px;}
.wsb_c01281{word-spacing:-7.686144px;}
.ws3_c01281{word-spacing:0.000000px;}
.ws0_c01281{word-spacing:0.043999px;}
.ws5_c01281{word-spacing:0.213446px;}
.ws1_c01281{word-spacing:0.219446px;}
.ws6_c01281{word-spacing:43.038600px;}
._2_c01281{margin-left:-1.549390px;}
._1_c01281{width:1.041538px;}
._3_c01281{width:19.935816px;}
._4_c01281{width:40.109428px;}
._0_c01281{width:80.122543px;}
.fc5_c01281{color:rgb(79,153,5);}
.fc4_c01281{color:rgb(143,89,3);}
.fc3_c01281{color:rgb(0,0,0);}
.fc6_c01281{color:rgb(6,69,173);}
.fc2_c01281{color:rgb(207,92,0);}
.fc1_c01281{color:rgb(0,0,207);}
.fc0_c01281{color:rgb(33,74,135);}
.fs0_c01281{font-size:43.999200px;}
.fs2_c01281{font-size:59.775600px;}
.fs1_c01281{font-size:86.077200px;}
.y0_c01281{bottom:0.000000px;}
.y20_c01281{bottom:44.250000px;}
.y1f_c01281{bottom:82.051500px;}
.y1e_c01281{bottom:99.984000px;}
.y1d_c01281{bottom:117.916500px;}
.y1c_c01281{bottom:135.849000px;}
.y1b_c01281{bottom:162.501000px;}
.y1a_c01281{bottom:189.151500px;}
.y19_c01281{bottom:215.802000px;}
.y18_c01281{bottom:242.454000px;}
.y17_c01281{bottom:284.478000px;}
.y16_c01281{bottom:748.903500px;}
.y15_c01281{bottom:765.342000px;}
.y14_c01281{bottom:781.780500px;}
.y13_c01281{bottom:798.219000px;}
.y12_c01281{bottom:814.657500px;}
.y11_c01281{bottom:831.096000px;}
.y10_c01281{bottom:847.534500px;}
.yf_c01281{bottom:863.973000px;}
.ye_c01281{bottom:880.411500px;}
.yd_c01281{bottom:896.848500px;}
.yc_c01281{bottom:913.287000px;}
.yb_c01281{bottom:946.164000px;}
.ya_c01281{bottom:962.602500px;}
.y9_c01281{bottom:979.041000px;}
.y8_c01281{bottom:1011.918000px;}
.y7_c01281{bottom:1028.356500px;}
.y6_c01281{bottom:1044.795000px;}
.y5_c01281{bottom:1061.232000px;}
.y4_c01281{bottom:1077.670500px;}
.y3_c01281{bottom:1094.109000px;}
.y2_c01281{bottom:1110.547500px;}
.y1_c01281{bottom:1159.863000px;}
.h3_c01281{height:35.190766px;}
.h2_c01281{height:36.007158px;}
.h5_c01281{height:40.511979px;}
.h6_c01281{height:52.332837px;}
.h4_c01281{height:58.337477px;}
.h0_c01281{height:1262.835000px;}
.h1_c01281{height:1263.000000px;}
.w0_c01281{width:892.920000px;}
.w1_c01281{width:893.250000px;}
.x0_c01281{left:0.000000px;}
.x4_c01281{left:127.558500px;}
.x2_c01281{left:137.122500px;}
.x1_c01281{left:143.770500px;}
.x3_c01281{left:177.007500px;}
.x5_c01281{left:435.249000px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls4_c01281{letter-spacing:0.000000pt;}
.ls0_c01281{letter-spacing:0.078221pt;}
.ls2_c01281{letter-spacing:0.087539pt;}
.ls3_c01281{letter-spacing:0.092873pt;}
.ls1_c01281{letter-spacing:23.724873pt;}
.ws2_c01281{word-spacing:-23.622682pt;}
.ws4_c01281{word-spacing:-23.544461pt;}
.wse_c01281{word-spacing:-19.158506pt;}
.wsd_c01281{word-spacing:-19.128192pt;}
.wsa_c01281{word-spacing:-16.684034pt;}
.wsc_c01281{word-spacing:-15.674491pt;}
.ws9_c01281{word-spacing:-13.283467pt;}
.wsf_c01281{word-spacing:-12.539593pt;}
.ws10_c01281{word-spacing:-10.733041pt;}
.ws7_c01281{word-spacing:-8.878599pt;}
.ws8_c01281{word-spacing:-8.877777pt;}
.wsb_c01281{word-spacing:-6.832128pt;}
.ws3_c01281{word-spacing:0.000000pt;}
.ws0_c01281{word-spacing:0.039110pt;}
.ws5_c01281{word-spacing:0.189730pt;}
.ws1_c01281{word-spacing:0.195063pt;}
.ws6_c01281{word-spacing:38.256533pt;}
._2_c01281{margin-left:-1.377235pt;}
._1_c01281{width:0.925811pt;}
._3_c01281{width:17.720725pt;}
._4_c01281{width:35.652825pt;}
._0_c01281{width:71.220038pt;}
.fs0_c01281{font-size:39.110400pt;}
.fs2_c01281{font-size:53.133867pt;}
.fs1_c01281{font-size:76.513067pt;}
.y0_c01281{bottom:0.000000pt;}
.y20_c01281{bottom:39.333333pt;}
.y1f_c01281{bottom:72.934667pt;}
.y1e_c01281{bottom:88.874667pt;}
.y1d_c01281{bottom:104.814667pt;}
.y1c_c01281{bottom:120.754667pt;}
.y1b_c01281{bottom:144.445333pt;}
.y1a_c01281{bottom:168.134667pt;}
.y19_c01281{bottom:191.824000pt;}
.y18_c01281{bottom:215.514667pt;}
.y17_c01281{bottom:252.869333pt;}
.y16_c01281{bottom:665.692000pt;}
.y15_c01281{bottom:680.304000pt;}
.y14_c01281{bottom:694.916000pt;}
.y13_c01281{bottom:709.528000pt;}
.y12_c01281{bottom:724.140000pt;}
.y11_c01281{bottom:738.752000pt;}
.y10_c01281{bottom:753.364000pt;}
.yf_c01281{bottom:767.976000pt;}
.ye_c01281{bottom:782.588000pt;}
.yd_c01281{bottom:797.198667pt;}
.yc_c01281{bottom:811.810667pt;}
.yb_c01281{bottom:841.034667pt;}
.ya_c01281{bottom:855.646667pt;}
.y9_c01281{bottom:870.258667pt;}
.y8_c01281{bottom:899.482667pt;}
.y7_c01281{bottom:914.094667pt;}
.y6_c01281{bottom:928.706667pt;}
.y5_c01281{bottom:943.317333pt;}
.y4_c01281{bottom:957.929333pt;}
.y3_c01281{bottom:972.541333pt;}
.y2_c01281{bottom:987.153333pt;}
.y1_c01281{bottom:1030.989333pt;}
.h3_c01281{height:31.280681pt;}
.h2_c01281{height:32.006363pt;}
.h5_c01281{height:36.010648pt;}
.h6_c01281{height:46.518078pt;}
.h4_c01281{height:51.855535pt;}
.h0_c01281{height:1122.520000pt;}
.h1_c01281{height:1122.666667pt;}
.w0_c01281{width:793.706667pt;}
.w1_c01281{width:794.000000pt;}
.x0_c01281{left:0.000000pt;}
.x4_c01281{left:113.385333pt;}
.x2_c01281{left:121.886667pt;}
.x1_c01281{left:127.796000pt;}
.x3_c01281{left:157.340000pt;}
.x5_c01281{left:386.888000pt;}
}





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

.ir_c01282:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_8e451f98ec0e8369adc8ef74.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01282;src:url('chunks/assets/font_65ead64ef59a38eeb20a924e.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01282;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01282{font-family:ff3_c01282;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01282;src:url('chunks/assets/font_c420a020ab5ef0e168db8150.woff2')format("woff");}.ff4_c01282{font-family:ff4_c01282;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01282{vertical-align:0.000000px;}
.ls4_c01282{letter-spacing:0.000000px;}
.ls1_c01282{letter-spacing:0.087998px;}
.ls2_c01282{letter-spacing:0.098482px;}
.ls0_c01282{letter-spacing:0.104482px;}
.ls3_c01282{letter-spacing:26.690482px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01282{word-spacing:-33.713438px;}
.ws4_c01282{word-spacing:-26.575517px;}
.ws3_c01282{word-spacing:-26.487518px;}
.ws0_c01282{word-spacing:-18.769538px;}
.ws8_c01282{word-spacing:0.000000px;}
.ws5_c01282{word-spacing:0.043999px;}
.wsb_c01282{word-spacing:0.056767px;}
.ws9_c01282{word-spacing:0.073250px;}
.wsa_c01282{word-spacing:0.083734px;}
.ws2_c01282{word-spacing:0.175997px;}
.wsc_c01282{word-spacing:0.202963px;}
.ws6_c01282{word-spacing:0.213446px;}
.ws7_c01282{word-spacing:0.219446px;}
._0_c01282{margin-left:-3.825638px;}
._1_c01282{width:1.005737px;}
._3_c01282{width:53.283031px;}
._2_c01282{width:79.858548px;}
._4_c01282{width:133.452408px;}
.fc5_c01282{color:rgb(0,0,207);}
.fc4_c01282{color:rgb(79,153,5);}
.fc3_c01282{color:rgb(207,92,0);}
.fc2_c01282{color:rgb(33,74,135);}
.fc1_c01282{color:rgb(143,89,3);}
.fc0_c01282{color:rgb(0,0,0);}
.fs1_c01282{font-size:43.999200px;}
.fs0_c01282{font-size:59.775600px;}
.y0_c01282{bottom:0.000000px;}
.y2d_c01282{bottom:44.250000px;}
.y2c_c01282{bottom:96.919500px;}
.y2b_c01282{bottom:113.358000px;}
.y2a_c01282{bottom:129.796500px;}
.y29_c01282{bottom:146.235000px;}
.y28_c01282{bottom:162.673500px;}
.y27_c01282{bottom:179.112000px;}
.y26_c01282{bottom:195.550500px;}
.y25_c01282{bottom:211.989000px;}
.y24_c01282{bottom:228.427500px;}
.y23_c01282{bottom:244.866000px;}
.y22_c01282{bottom:261.304500px;}
.y21_c01282{bottom:294.180000px;}
.y20_c01282{bottom:310.618500px;}
.y1f_c01282{bottom:327.057000px;}
.y1e_c01282{bottom:359.934000px;}
.y1d_c01282{bottom:376.372500px;}
.y1c_c01282{bottom:392.811000px;}
.y1b_c01282{bottom:409.249500px;}
.y1a_c01282{bottom:425.688000px;}
.y19_c01282{bottom:442.125000px;}
.y18_c01282{bottom:458.563500px;}
.y17_c01282{bottom:507.879000px;}
.y16_c01282{bottom:524.317500px;}
.y15_c01282{bottom:540.756000px;}
.y14_c01282{bottom:557.194500px;}
.y13_c01282{bottom:573.633000px;}
.y12_c01282{bottom:590.071500px;}
.y11_c01282{bottom:606.508500px;}
.y10_c01282{bottom:622.947000px;}
.yf_c01282{bottom:639.385500px;}
.ye_c01282{bottom:655.824000px;}
.yd_c01282{bottom:672.262500px;}
.yc_c01282{bottom:688.701000px;}
.yb_c01282{bottom:705.139500px;}
.ya_c01282{bottom:721.578000px;}
.y9_c01282{bottom:738.016500px;}
.y8_c01282{bottom:754.455000px;}
.y7_c01282{bottom:787.330500px;}
.y6_c01282{bottom:803.769000px;}
.y5_c01282{bottom:853.084500px;}
.y4_c01282{bottom:869.523000px;}
.y3_c01282{bottom:885.588000px;}
.y2_c01282{bottom:1141.930500px;}
.y1_c01282{bottom:1159.863000px;}
.h3_c01282{height:35.190766px;}
.h4_c01282{height:36.007158px;}
.h2_c01282{height:52.332837px;}
.h0_c01282{height:1262.835000px;}
.h1_c01282{height:1263.000000px;}
.w0_c01282{width:892.920000px;}
.w1_c01282{width:893.250000px;}
.x0_c01282{left:0.000000px;}
.x1_c01282{left:127.558500px;}
.x2_c01282{left:137.122500px;}
.x3_c01282{left:143.770500px;}
.x4_c01282{left:177.007500px;}
.x5_c01282{left:435.249000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls4_c01282{letter-spacing:0.000000pt;}
.ls1_c01282{letter-spacing:0.078221pt;}
.ls2_c01282{letter-spacing:0.087539pt;}
.ls0_c01282{letter-spacing:0.092873pt;}
.ls3_c01282{letter-spacing:23.724873pt;}
.ws1_c01282{word-spacing:-29.967501pt;}
.ws4_c01282{word-spacing:-23.622682pt;}
.ws3_c01282{word-spacing:-23.544461pt;}
.ws0_c01282{word-spacing:-16.684034pt;}
.ws8_c01282{word-spacing:0.000000pt;}
.ws5_c01282{word-spacing:0.039110pt;}
.wsb_c01282{word-spacing:0.050460pt;}
.ws9_c01282{word-spacing:0.065111pt;}
.wsa_c01282{word-spacing:0.074430pt;}
.ws2_c01282{word-spacing:0.156442pt;}
.wsc_c01282{word-spacing:0.180412pt;}
.ws6_c01282{word-spacing:0.189730pt;}
.ws7_c01282{word-spacing:0.195063pt;}
._0_c01282{margin-left:-3.400567pt;}
._1_c01282{width:0.893988pt;}
._3_c01282{width:47.362694pt;}
._2_c01282{width:70.985376pt;}
._4_c01282{width:118.624363pt;}
.fs1_c01282{font-size:39.110400pt;}
.fs0_c01282{font-size:53.133867pt;}
.y0_c01282{bottom:0.000000pt;}
.y2d_c01282{bottom:39.333333pt;}
.y2c_c01282{bottom:86.150667pt;}
.y2b_c01282{bottom:100.762667pt;}
.y2a_c01282{bottom:115.374667pt;}
.y29_c01282{bottom:129.986667pt;}
.y28_c01282{bottom:144.598667pt;}
.y27_c01282{bottom:159.210667pt;}
.y26_c01282{bottom:173.822667pt;}
.y25_c01282{bottom:188.434667pt;}
.y24_c01282{bottom:203.046667pt;}
.y23_c01282{bottom:217.658667pt;}
.y22_c01282{bottom:232.270667pt;}
.y21_c01282{bottom:261.493333pt;}
.y20_c01282{bottom:276.105333pt;}
.y1f_c01282{bottom:290.717333pt;}
.y1e_c01282{bottom:319.941333pt;}
.y1d_c01282{bottom:334.553333pt;}
.y1c_c01282{bottom:349.165333pt;}
.y1b_c01282{bottom:363.777333pt;}
.y1a_c01282{bottom:378.389333pt;}
.y19_c01282{bottom:393.000000pt;}
.y18_c01282{bottom:407.612000pt;}
.y17_c01282{bottom:451.448000pt;}
.y16_c01282{bottom:466.060000pt;}
.y15_c01282{bottom:480.672000pt;}
.y14_c01282{bottom:495.284000pt;}
.y13_c01282{bottom:509.896000pt;}
.y12_c01282{bottom:524.508000pt;}
.y11_c01282{bottom:539.118667pt;}
.y10_c01282{bottom:553.730667pt;}
.yf_c01282{bottom:568.342667pt;}
.ye_c01282{bottom:582.954667pt;}
.yd_c01282{bottom:597.566667pt;}
.yc_c01282{bottom:612.178667pt;}
.yb_c01282{bottom:626.790667pt;}
.ya_c01282{bottom:641.402667pt;}
.y9_c01282{bottom:656.014667pt;}
.y8_c01282{bottom:670.626667pt;}
.y7_c01282{bottom:699.849333pt;}
.y6_c01282{bottom:714.461333pt;}
.y5_c01282{bottom:758.297333pt;}
.y4_c01282{bottom:772.909333pt;}
.y3_c01282{bottom:787.189333pt;}
.y2_c01282{bottom:1015.049333pt;}
.y1_c01282{bottom:1030.989333pt;}
.h3_c01282{height:31.280681pt;}
.h4_c01282{height:32.006363pt;}
.h2_c01282{height:46.518078pt;}
.h0_c01282{height:1122.520000pt;}
.h1_c01282{height:1122.666667pt;}
.w0_c01282{width:793.706667pt;}
.w1_c01282{width:794.000000pt;}
.x0_c01282{left:0.000000pt;}
.x1_c01282{left:113.385333pt;}
.x2_c01282{left:121.886667pt;}
.x3_c01282{left:127.796000pt;}
.x4_c01282{left:157.340000pt;}
.x5_c01282{left:386.888000pt;}
}





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

.ir_c01283:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_6e2448f9f5bef7044761ebe2.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01283;src:url('chunks/assets/font_8b608a64dc94146b39ac0e08.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01283;src:url('chunks/assets/font_3de0384340a2e27609abe508.woff2')format("woff");}.ff3_c01283{font-family:ff3_c01283;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01283;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01283{font-family:ff4_c01283;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01283;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01283{font-family:ff5_c01283;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01283{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01283{vertical-align:0.000000px;}
.ls3_c01283{letter-spacing:0.000000px;}
.ls0_c01283{letter-spacing:0.087998px;}
.ls2_c01283{letter-spacing:0.098482px;}
.ls1_c01283{letter-spacing:0.104482px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01283{word-spacing:-33.713438px;}
.ws2_c01283{word-spacing:-26.575517px;}
.wse_c01283{word-spacing:-26.487518px;}
.ws9_c01283{word-spacing:-21.553319px;}
.ws8_c01283{word-spacing:-21.519216px;}
.ws5_c01283{word-spacing:-18.769538px;}
.ws7_c01283{word-spacing:-17.633802px;}
.ws4_c01283{word-spacing:-14.943900px;}
.wsa_c01283{word-spacing:-14.107042px;}
.wsb_c01283{word-spacing:-12.074671px;}
.ws1_c01283{word-spacing:-9.988424px;}
.ws3_c01283{word-spacing:-9.987499px;}
.ws6_c01283{word-spacing:-7.686144px;}
.ws12_c01283{word-spacing:0.000000px;}
.wsf_c01283{word-spacing:0.043999px;}
.ws15_c01283{word-spacing:0.056767px;}
.ws13_c01283{word-spacing:0.073250px;}
.ws14_c01283{word-spacing:0.083734px;}
.wsd_c01283{word-spacing:0.175997px;}
.ws16_c01283{word-spacing:0.202963px;}
.ws10_c01283{word-spacing:0.213446px;}
.ws11_c01283{word-spacing:0.219446px;}
.ws0_c01283{word-spacing:42.952523px;}
._0_c01283{margin-left:-4.734246px;}
._5_c01283{margin-left:-3.287658px;}
._1_c01283{margin-left:-1.463312px;}
._6_c01283{width:1.005737px;}
._4_c01283{width:15.972059px;}
._2_c01283{width:19.935816px;}
._3_c01283{width:40.109428px;}
._8_c01283{width:53.283031px;}
._7_c01283{width:79.858548px;}
._9_c01283{width:133.452408px;}
.fc6_c01283{color:rgb(0,0,207);}
.fc5_c01283{color:rgb(79,153,5);}
.fc3_c01283{color:rgb(33,74,135);}
.fc2_c01283{color:rgb(143,89,3);}
.fc4_c01283{color:rgb(207,92,0);}
.fc1_c01283{color:rgb(6,69,173);}
.fc0_c01283{color:rgb(0,0,0);}
.fs2_c01283{font-size:43.999200px;}
.fs1_c01283{font-size:59.775600px;}
.fs0_c01283{font-size:86.077200px;}
.y0_c01283{bottom:0.000000px;}
.y20_c01283{bottom:44.250000px;}
.y1f_c01283{bottom:86.982000px;}
.y1e_c01283{bottom:103.420500px;}
.y1d_c01283{bottom:119.859000px;}
.y1c_c01283{bottom:136.297500px;}
.y1b_c01283{bottom:152.736000px;}
.y1a_c01283{bottom:169.174500px;}
.y19_c01283{bottom:185.613000px;}
.y18_c01283{bottom:202.051500px;}
.y17_c01283{bottom:218.490000px;}
.y16_c01283{bottom:234.927000px;}
.y15_c01283{bottom:251.365500px;}
.y14_c01283{bottom:267.804000px;}
.y13_c01283{bottom:284.242500px;}
.y12_c01283{bottom:300.681000px;}
.y11_c01283{bottom:317.119500px;}
.y10_c01283{bottom:349.996500px;}
.yf_c01283{bottom:366.435000px;}
.ye_c01283{bottom:415.749000px;}
.yd_c01283{bottom:432.187500px;}
.yc_c01283{bottom:448.252500px;}
.yb_c01283{bottom:493.890000px;}
.ya_c01283{bottom:511.822500px;}
.y9_c01283{bottom:529.756500px;}
.y8_c01283{bottom:547.689000px;}
.y7_c01283{bottom:565.621500px;}
.y6_c01283{bottom:583.554000px;}
.y5_c01283{bottom:610.633500px;}
.y4_c01283{bottom:637.714500px;}
.y3_c01283{bottom:664.794000px;}
.y2_c01283{bottom:691.873500px;}
.y1_c01283{bottom:734.407500px;}
.h5_c01283{height:35.190766px;}
.h6_c01283{height:36.007158px;}
.h3_c01283{height:40.511979px;}
.h4_c01283{height:52.332837px;}
.h2_c01283{height:58.337477px;}
.h0_c01283{height:1262.835000px;}
.h1_c01283{height:1263.000000px;}
.w0_c01283{width:892.920000px;}
.w1_c01283{width:893.250000px;}
.x0_c01283{left:0.000000px;}
.x1_c01283{left:127.558500px;}
.x2_c01283{left:137.122500px;}
.x3_c01283{left:143.770500px;}
.x4_c01283{left:435.249000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls3_c01283{letter-spacing:0.000000pt;}
.ls0_c01283{letter-spacing:0.078221pt;}
.ls2_c01283{letter-spacing:0.087539pt;}
.ls1_c01283{letter-spacing:0.092873pt;}
.wsc_c01283{word-spacing:-29.967501pt;}
.ws2_c01283{word-spacing:-23.622682pt;}
.wse_c01283{word-spacing:-23.544461pt;}
.ws9_c01283{word-spacing:-19.158506pt;}
.ws8_c01283{word-spacing:-19.128192pt;}
.ws5_c01283{word-spacing:-16.684034pt;}
.ws7_c01283{word-spacing:-15.674491pt;}
.ws4_c01283{word-spacing:-13.283467pt;}
.wsa_c01283{word-spacing:-12.539593pt;}
.wsb_c01283{word-spacing:-10.733041pt;}
.ws1_c01283{word-spacing:-8.878599pt;}
.ws3_c01283{word-spacing:-8.877777pt;}
.ws6_c01283{word-spacing:-6.832128pt;}
.ws12_c01283{word-spacing:0.000000pt;}
.wsf_c01283{word-spacing:0.039110pt;}
.ws15_c01283{word-spacing:0.050460pt;}
.ws13_c01283{word-spacing:0.065111pt;}
.ws14_c01283{word-spacing:0.074430pt;}
.wsd_c01283{word-spacing:0.156442pt;}
.ws16_c01283{word-spacing:0.180412pt;}
.ws10_c01283{word-spacing:0.189730pt;}
.ws11_c01283{word-spacing:0.195063pt;}
.ws0_c01283{word-spacing:38.180020pt;}
._0_c01283{margin-left:-4.208219pt;}
._5_c01283{margin-left:-2.922363pt;}
._1_c01283{margin-left:-1.300722pt;}
._6_c01283{width:0.893988pt;}
._4_c01283{width:14.197386pt;}
._2_c01283{width:17.720725pt;}
._3_c01283{width:35.652825pt;}
._8_c01283{width:47.362694pt;}
._7_c01283{width:70.985376pt;}
._9_c01283{width:118.624363pt;}
.fs2_c01283{font-size:39.110400pt;}
.fs1_c01283{font-size:53.133867pt;}
.fs0_c01283{font-size:76.513067pt;}
.y0_c01283{bottom:0.000000pt;}
.y20_c01283{bottom:39.333333pt;}
.y1f_c01283{bottom:77.317333pt;}
.y1e_c01283{bottom:91.929333pt;}
.y1d_c01283{bottom:106.541333pt;}
.y1c_c01283{bottom:121.153333pt;}
.y1b_c01283{bottom:135.765333pt;}
.y1a_c01283{bottom:150.377333pt;}
.y19_c01283{bottom:164.989333pt;}
.y18_c01283{bottom:179.601333pt;}
.y17_c01283{bottom:194.213333pt;}
.y16_c01283{bottom:208.824000pt;}
.y15_c01283{bottom:223.436000pt;}
.y14_c01283{bottom:238.048000pt;}
.y13_c01283{bottom:252.660000pt;}
.y12_c01283{bottom:267.272000pt;}
.y11_c01283{bottom:281.884000pt;}
.y10_c01283{bottom:311.108000pt;}
.yf_c01283{bottom:325.720000pt;}
.ye_c01283{bottom:369.554667pt;}
.yd_c01283{bottom:384.166667pt;}
.yc_c01283{bottom:398.446667pt;}
.yb_c01283{bottom:439.013333pt;}
.ya_c01283{bottom:454.953333pt;}
.y9_c01283{bottom:470.894667pt;}
.y8_c01283{bottom:486.834667pt;}
.y7_c01283{bottom:502.774667pt;}
.y6_c01283{bottom:518.714667pt;}
.y5_c01283{bottom:542.785333pt;}
.y4_c01283{bottom:566.857333pt;}
.y3_c01283{bottom:590.928000pt;}
.y2_c01283{bottom:614.998667pt;}
.y1_c01283{bottom:652.806667pt;}
.h5_c01283{height:31.280681pt;}
.h6_c01283{height:32.006363pt;}
.h3_c01283{height:36.010648pt;}
.h4_c01283{height:46.518078pt;}
.h2_c01283{height:51.855535pt;}
.h0_c01283{height:1122.520000pt;}
.h1_c01283{height:1122.666667pt;}
.w0_c01283{width:793.706667pt;}
.w1_c01283{width:794.000000pt;}
.x0_c01283{left:0.000000pt;}
.x1_c01283{left:113.385333pt;}
.x2_c01283{left:121.886667pt;}
.x3_c01283{left:127.796000pt;}
.x4_c01283{left:386.888000pt;}
}





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

.ir_c01284:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_9ded112e08b2e87402a6f3c5.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01284;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01284;src:url('chunks/assets/font_b91d6e0b8446cac6e6efa775.woff2')format("woff");}.ff3_c01284{font-family:ff3_c01284;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01284;src:url('chunks/assets/font_331b5aa42ff13b22e235a474.woff2')format("woff");}.ff4_c01284{font-family:ff4_c01284;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01284;src:url('chunks/assets/font_b1e379f20b7f1525fde25140.woff2')format("woff");}.ff5_c01284{font-family:ff5_c01284;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01284{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01284{vertical-align:0.000000px;}
.ls4_c01284{letter-spacing:0.000000px;}
.ls0_c01284{letter-spacing:0.087998px;}
.ls2_c01284{letter-spacing:0.098482px;}
.ls3_c01284{letter-spacing:0.104482px;}
.ls1_c01284{letter-spacing:26.690482px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01284{word-spacing:-26.575517px;}
.ws4_c01284{word-spacing:-26.487518px;}
.wse_c01284{word-spacing:-21.553319px;}
.wsd_c01284{word-spacing:-21.519216px;}
.wsc_c01284{word-spacing:-19.247743px;}
.wsa_c01284{word-spacing:-18.769538px;}
.ws9_c01284{word-spacing:-14.943900px;}
.wsf_c01284{word-spacing:-14.107042px;}
.ws10_c01284{word-spacing:-12.074671px;}
.wsb_c01284{word-spacing:-10.230144px;}
.ws7_c01284{word-spacing:-9.988424px;}
.ws8_c01284{word-spacing:-9.987499px;}
.ws3_c01284{word-spacing:0.000000px;}
.ws0_c01284{word-spacing:0.043999px;}
.ws5_c01284{word-spacing:0.213446px;}
.ws1_c01284{word-spacing:0.219446px;}
.ws6_c01284{word-spacing:43.038600px;}
._2_c01284{margin-left:-1.549390px;}
._1_c01284{width:1.041538px;}
._3_c01284{width:19.935816px;}
._4_c01284{width:40.109428px;}
._0_c01284{width:53.547026px;}
.fc5_c01284{color:rgb(79,153,5);}
.fc4_c01284{color:rgb(143,89,3);}
.fc3_c01284{color:rgb(0,0,0);}
.fc6_c01284{color:rgb(6,69,173);}
.fc2_c01284{color:rgb(207,92,0);}
.fc1_c01284{color:rgb(0,0,207);}
.fc0_c01284{color:rgb(33,74,135);}
.fs0_c01284{font-size:43.999200px;}
.fs2_c01284{font-size:59.775600px;}
.fs1_c01284{font-size:86.077200px;}
.y0_c01284{bottom:0.000000px;}
.y20_c01284{bottom:44.250000px;}
.y1f_c01284{bottom:82.051500px;}
.y1e_c01284{bottom:99.984000px;}
.y1d_c01284{bottom:117.916500px;}
.y1c_c01284{bottom:135.849000px;}
.y1b_c01284{bottom:162.501000px;}
.y1a_c01284{bottom:189.151500px;}
.y19_c01284{bottom:215.802000px;}
.y18_c01284{bottom:242.454000px;}
.y17_c01284{bottom:284.478000px;}
.y16_c01284{bottom:748.903500px;}
.y15_c01284{bottom:765.342000px;}
.y14_c01284{bottom:781.780500px;}
.y13_c01284{bottom:798.219000px;}
.y12_c01284{bottom:814.657500px;}
.y11_c01284{bottom:831.096000px;}
.y10_c01284{bottom:847.534500px;}
.yf_c01284{bottom:863.973000px;}
.ye_c01284{bottom:880.411500px;}
.yd_c01284{bottom:896.848500px;}
.yc_c01284{bottom:913.287000px;}
.yb_c01284{bottom:946.164000px;}
.ya_c01284{bottom:962.602500px;}
.y9_c01284{bottom:979.041000px;}
.y8_c01284{bottom:1011.918000px;}
.y7_c01284{bottom:1028.356500px;}
.y6_c01284{bottom:1044.795000px;}
.y5_c01284{bottom:1061.232000px;}
.y4_c01284{bottom:1077.670500px;}
.y3_c01284{bottom:1094.109000px;}
.y2_c01284{bottom:1110.547500px;}
.y1_c01284{bottom:1159.863000px;}
.h3_c01284{height:35.190766px;}
.h2_c01284{height:36.007158px;}
.h5_c01284{height:40.511979px;}
.h6_c01284{height:52.332837px;}
.h4_c01284{height:58.337477px;}
.h0_c01284{height:1262.835000px;}
.h1_c01284{height:1263.000000px;}
.w0_c01284{width:892.920000px;}
.w1_c01284{width:893.250000px;}
.x0_c01284{left:0.000000px;}
.x4_c01284{left:127.558500px;}
.x2_c01284{left:137.122500px;}
.x1_c01284{left:143.770500px;}
.x3_c01284{left:177.007500px;}
.x5_c01284{left:435.249000px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls4_c01284{letter-spacing:0.000000pt;}
.ls0_c01284{letter-spacing:0.078221pt;}
.ls2_c01284{letter-spacing:0.087539pt;}
.ls3_c01284{letter-spacing:0.092873pt;}
.ls1_c01284{letter-spacing:23.724873pt;}
.ws2_c01284{word-spacing:-23.622682pt;}
.ws4_c01284{word-spacing:-23.544461pt;}
.wse_c01284{word-spacing:-19.158506pt;}
.wsd_c01284{word-spacing:-19.128192pt;}
.wsc_c01284{word-spacing:-17.109105pt;}
.wsa_c01284{word-spacing:-16.684034pt;}
.ws9_c01284{word-spacing:-13.283467pt;}
.wsf_c01284{word-spacing:-12.539593pt;}
.ws10_c01284{word-spacing:-10.733041pt;}
.wsb_c01284{word-spacing:-9.093461pt;}
.ws7_c01284{word-spacing:-8.878599pt;}
.ws8_c01284{word-spacing:-8.877777pt;}
.ws3_c01284{word-spacing:0.000000pt;}
.ws0_c01284{word-spacing:0.039110pt;}
.ws5_c01284{word-spacing:0.189730pt;}
.ws1_c01284{word-spacing:0.195063pt;}
.ws6_c01284{word-spacing:38.256533pt;}
._2_c01284{margin-left:-1.377235pt;}
._1_c01284{width:0.925811pt;}
._3_c01284{width:17.720725pt;}
._4_c01284{width:35.652825pt;}
._0_c01284{width:47.597357pt;}
.fs0_c01284{font-size:39.110400pt;}
.fs2_c01284{font-size:53.133867pt;}
.fs1_c01284{font-size:76.513067pt;}
.y0_c01284{bottom:0.000000pt;}
.y20_c01284{bottom:39.333333pt;}
.y1f_c01284{bottom:72.934667pt;}
.y1e_c01284{bottom:88.874667pt;}
.y1d_c01284{bottom:104.814667pt;}
.y1c_c01284{bottom:120.754667pt;}
.y1b_c01284{bottom:144.445333pt;}
.y1a_c01284{bottom:168.134667pt;}
.y19_c01284{bottom:191.824000pt;}
.y18_c01284{bottom:215.514667pt;}
.y17_c01284{bottom:252.869333pt;}
.y16_c01284{bottom:665.692000pt;}
.y15_c01284{bottom:680.304000pt;}
.y14_c01284{bottom:694.916000pt;}
.y13_c01284{bottom:709.528000pt;}
.y12_c01284{bottom:724.140000pt;}
.y11_c01284{bottom:738.752000pt;}
.y10_c01284{bottom:753.364000pt;}
.yf_c01284{bottom:767.976000pt;}
.ye_c01284{bottom:782.588000pt;}
.yd_c01284{bottom:797.198667pt;}
.yc_c01284{bottom:811.810667pt;}
.yb_c01284{bottom:841.034667pt;}
.ya_c01284{bottom:855.646667pt;}
.y9_c01284{bottom:870.258667pt;}
.y8_c01284{bottom:899.482667pt;}
.y7_c01284{bottom:914.094667pt;}
.y6_c01284{bottom:928.706667pt;}
.y5_c01284{bottom:943.317333pt;}
.y4_c01284{bottom:957.929333pt;}
.y3_c01284{bottom:972.541333pt;}
.y2_c01284{bottom:987.153333pt;}
.y1_c01284{bottom:1030.989333pt;}
.h3_c01284{height:31.280681pt;}
.h2_c01284{height:32.006363pt;}
.h5_c01284{height:36.010648pt;}
.h6_c01284{height:46.518078pt;}
.h4_c01284{height:51.855535pt;}
.h0_c01284{height:1122.520000pt;}
.h1_c01284{height:1122.666667pt;}
.w0_c01284{width:793.706667pt;}
.w1_c01284{width:794.000000pt;}
.x0_c01284{left:0.000000pt;}
.x4_c01284{left:113.385333pt;}
.x2_c01284{left:121.886667pt;}
.x1_c01284{left:127.796000pt;}
.x3_c01284{left:157.340000pt;}
.x5_c01284{left:386.888000pt;}
}





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

.ir_c01285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_528e05406660da6b74cc7a8a.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01285;src:url('chunks/assets/font_451dd76597807c6d18e21b0a.woff2')format("woff");}.ff2_c01285{font-family:ff2_c01285;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01285;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01285{font-family:ff3_c01285;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01285;src:url('chunks/assets/font_45ba406886ffd7c0bdd4b5df.woff2')format("woff");}.ff4_c01285{font-family:ff4_c01285;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01285{vertical-align:0.000000px;}
.ls4_c01285{letter-spacing:0.000000px;}
.ls1_c01285{letter-spacing:0.087998px;}
.ls2_c01285{letter-spacing:0.098482px;}
.ls0_c01285{letter-spacing:0.104482px;}
.ls3_c01285{letter-spacing:26.690482px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01285{word-spacing:-33.713438px;}
.ws4_c01285{word-spacing:-26.575517px;}
.ws3_c01285{word-spacing:-26.487518px;}
.ws0_c01285{word-spacing:-18.769538px;}
.ws8_c01285{word-spacing:0.000000px;}
.ws5_c01285{word-spacing:0.043999px;}
.wsb_c01285{word-spacing:0.056767px;}
.ws9_c01285{word-spacing:0.073250px;}
.wsa_c01285{word-spacing:0.083734px;}
.ws2_c01285{word-spacing:0.175997px;}
.wsc_c01285{word-spacing:0.202963px;}
.ws6_c01285{word-spacing:0.213446px;}
.ws7_c01285{word-spacing:0.219446px;}
._0_c01285{margin-left:-3.825638px;}
._1_c01285{width:1.005737px;}
._3_c01285{width:53.283031px;}
._2_c01285{width:79.858548px;}
._4_c01285{width:133.452408px;}
.fc5_c01285{color:rgb(0,0,207);}
.fc4_c01285{color:rgb(79,153,5);}
.fc3_c01285{color:rgb(207,92,0);}
.fc2_c01285{color:rgb(33,74,135);}
.fc1_c01285{color:rgb(143,89,3);}
.fc0_c01285{color:rgb(0,0,0);}
.fs1_c01285{font-size:43.999200px;}
.fs0_c01285{font-size:59.775600px;}
.y0_c01285{bottom:0.000000px;}
.y2d_c01285{bottom:44.250000px;}
.y2c_c01285{bottom:96.919500px;}
.y2b_c01285{bottom:113.358000px;}
.y2a_c01285{bottom:129.796500px;}
.y29_c01285{bottom:146.235000px;}
.y28_c01285{bottom:162.673500px;}
.y27_c01285{bottom:179.112000px;}
.y26_c01285{bottom:195.550500px;}
.y25_c01285{bottom:211.989000px;}
.y24_c01285{bottom:228.427500px;}
.y23_c01285{bottom:244.866000px;}
.y22_c01285{bottom:261.304500px;}
.y21_c01285{bottom:294.180000px;}
.y20_c01285{bottom:310.618500px;}
.y1f_c01285{bottom:327.057000px;}
.y1e_c01285{bottom:359.934000px;}
.y1d_c01285{bottom:376.372500px;}
.y1c_c01285{bottom:392.811000px;}
.y1b_c01285{bottom:409.249500px;}
.y1a_c01285{bottom:425.688000px;}
.y19_c01285{bottom:442.125000px;}
.y18_c01285{bottom:458.563500px;}
.y17_c01285{bottom:507.879000px;}
.y16_c01285{bottom:524.317500px;}
.y15_c01285{bottom:540.756000px;}
.y14_c01285{bottom:557.194500px;}
.y13_c01285{bottom:573.633000px;}
.y12_c01285{bottom:590.071500px;}
.y11_c01285{bottom:606.508500px;}
.y10_c01285{bottom:622.947000px;}
.yf_c01285{bottom:639.385500px;}
.ye_c01285{bottom:655.824000px;}
.yd_c01285{bottom:672.262500px;}
.yc_c01285{bottom:688.701000px;}
.yb_c01285{bottom:705.139500px;}
.ya_c01285{bottom:721.578000px;}
.y9_c01285{bottom:738.016500px;}
.y8_c01285{bottom:754.455000px;}
.y7_c01285{bottom:787.330500px;}
.y6_c01285{bottom:803.769000px;}
.y5_c01285{bottom:853.084500px;}
.y4_c01285{bottom:869.523000px;}
.y3_c01285{bottom:885.588000px;}
.y2_c01285{bottom:1141.930500px;}
.y1_c01285{bottom:1159.863000px;}
.h3_c01285{height:35.190766px;}
.h4_c01285{height:36.007158px;}
.h2_c01285{height:52.332837px;}
.h0_c01285{height:1262.835000px;}
.h1_c01285{height:1263.000000px;}
.w0_c01285{width:892.920000px;}
.w1_c01285{width:893.250000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:127.558500px;}
.x2_c01285{left:137.122500px;}
.x3_c01285{left:143.770500px;}
.x4_c01285{left:177.007500px;}
.x5_c01285{left:435.249000px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls4_c01285{letter-spacing:0.000000pt;}
.ls1_c01285{letter-spacing:0.078221pt;}
.ls2_c01285{letter-spacing:0.087539pt;}
.ls0_c01285{letter-spacing:0.092873pt;}
.ls3_c01285{letter-spacing:23.724873pt;}
.ws1_c01285{word-spacing:-29.967501pt;}
.ws4_c01285{word-spacing:-23.622682pt;}
.ws3_c01285{word-spacing:-23.544461pt;}
.ws0_c01285{word-spacing:-16.684034pt;}
.ws8_c01285{word-spacing:0.000000pt;}
.ws5_c01285{word-spacing:0.039110pt;}
.wsb_c01285{word-spacing:0.050460pt;}
.ws9_c01285{word-spacing:0.065111pt;}
.wsa_c01285{word-spacing:0.074430pt;}
.ws2_c01285{word-spacing:0.156442pt;}
.wsc_c01285{word-spacing:0.180412pt;}
.ws6_c01285{word-spacing:0.189730pt;}
.ws7_c01285{word-spacing:0.195063pt;}
._0_c01285{margin-left:-3.400567pt;}
._1_c01285{width:0.893988pt;}
._3_c01285{width:47.362694pt;}
._2_c01285{width:70.985376pt;}
._4_c01285{width:118.624363pt;}
.fs1_c01285{font-size:39.110400pt;}
.fs0_c01285{font-size:53.133867pt;}
.y0_c01285{bottom:0.000000pt;}
.y2d_c01285{bottom:39.333333pt;}
.y2c_c01285{bottom:86.150667pt;}
.y2b_c01285{bottom:100.762667pt;}
.y2a_c01285{bottom:115.374667pt;}
.y29_c01285{bottom:129.986667pt;}
.y28_c01285{bottom:144.598667pt;}
.y27_c01285{bottom:159.210667pt;}
.y26_c01285{bottom:173.822667pt;}
.y25_c01285{bottom:188.434667pt;}
.y24_c01285{bottom:203.046667pt;}
.y23_c01285{bottom:217.658667pt;}
.y22_c01285{bottom:232.270667pt;}
.y21_c01285{bottom:261.493333pt;}
.y20_c01285{bottom:276.105333pt;}
.y1f_c01285{bottom:290.717333pt;}
.y1e_c01285{bottom:319.941333pt;}
.y1d_c01285{bottom:334.553333pt;}
.y1c_c01285{bottom:349.165333pt;}
.y1b_c01285{bottom:363.777333pt;}
.y1a_c01285{bottom:378.389333pt;}
.y19_c01285{bottom:393.000000pt;}
.y18_c01285{bottom:407.612000pt;}
.y17_c01285{bottom:451.448000pt;}
.y16_c01285{bottom:466.060000pt;}
.y15_c01285{bottom:480.672000pt;}
.y14_c01285{bottom:495.284000pt;}
.y13_c01285{bottom:509.896000pt;}
.y12_c01285{bottom:524.508000pt;}
.y11_c01285{bottom:539.118667pt;}
.y10_c01285{bottom:553.730667pt;}
.yf_c01285{bottom:568.342667pt;}
.ye_c01285{bottom:582.954667pt;}
.yd_c01285{bottom:597.566667pt;}
.yc_c01285{bottom:612.178667pt;}
.yb_c01285{bottom:626.790667pt;}
.ya_c01285{bottom:641.402667pt;}
.y9_c01285{bottom:656.014667pt;}
.y8_c01285{bottom:670.626667pt;}
.y7_c01285{bottom:699.849333pt;}
.y6_c01285{bottom:714.461333pt;}
.y5_c01285{bottom:758.297333pt;}
.y4_c01285{bottom:772.909333pt;}
.y3_c01285{bottom:787.189333pt;}
.y2_c01285{bottom:1015.049333pt;}
.y1_c01285{bottom:1030.989333pt;}
.h3_c01285{height:31.280681pt;}
.h4_c01285{height:32.006363pt;}
.h2_c01285{height:46.518078pt;}
.h0_c01285{height:1122.520000pt;}
.h1_c01285{height:1122.666667pt;}
.w0_c01285{width:793.706667pt;}
.w1_c01285{width:794.000000pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:113.385333pt;}
.x2_c01285{left:121.886667pt;}
.x3_c01285{left:127.796000pt;}
.x4_c01285{left:157.340000pt;}
.x5_c01285{left:386.888000pt;}
}





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

.ir_c01286:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_21b3447fcf0857a47cbf1afb.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01286;src:url('chunks/assets/font_fa1b1f53ac410daa45b4365f.woff2')format("woff");}.ff2_c01286{font-family:ff2_c01286;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01286;src:url('chunks/assets/font_7ffd35e723fb4c0533af3bb7.woff2')format("woff");}.ff3_c01286{font-family:ff3_c01286;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01286;src:url('chunks/assets/font_b75bec92a36668682710dbcc.woff2')format("woff");}.ff4_c01286{font-family:ff4_c01286;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01286;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01286{font-family:ff5_c01286;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01286{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01286{vertical-align:0.000000px;}
.ls3_c01286{letter-spacing:0.000000px;}
.ls0_c01286{letter-spacing:0.087998px;}
.ls2_c01286{letter-spacing:0.098482px;}
.ls1_c01286{letter-spacing:0.104482px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01286{word-spacing:-26.575517px;}
.wsf_c01286{word-spacing:-26.487518px;}
.ws8_c01286{word-spacing:-21.280114px;}
.ws7_c01286{word-spacing:-21.220338px;}
.ws5_c01286{word-spacing:-18.769538px;}
.ws4_c01286{word-spacing:-14.943900px;}
.wsd_c01286{word-spacing:-14.764573px;}
.wsc_c01286{word-spacing:-14.525471px;}
.wsb_c01286{word-spacing:-13.210408px;}
.wsa_c01286{word-spacing:-13.196971px;}
.ws9_c01286{word-spacing:-12.014896px;}
.ws6_c01286{word-spacing:-11.232144px;}
.ws1_c01286{word-spacing:-9.988424px;}
.ws3_c01286{word-spacing:-9.987499px;}
.ws13_c01286{word-spacing:0.000000px;}
.ws10_c01286{word-spacing:0.043999px;}
.wse_c01286{word-spacing:0.175997px;}
.ws12_c01286{word-spacing:0.213446px;}
.ws11_c01286{word-spacing:0.219446px;}
.ws0_c01286{word-spacing:43.038600px;}
._6_c01286{margin-left:-3.825638px;}
._1_c01286{margin-left:-1.075961px;}
._7_c01286{width:1.005737px;}
._0_c01286{width:19.935816px;}
._4_c01286{width:22.158017px;}
._2_c01286{width:25.165528px;}
._5_c01286{width:32.039722px;}
._3_c01286{width:40.408306px;}
._8_c01286{width:53.459028px;}
.fc5_c01286{color:rgb(79,153,5);}
.fc3_c01286{color:rgb(33,74,135);}
.fc2_c01286{color:rgb(143,89,3);}
.fc4_c01286{color:rgb(207,92,0);}
.fc1_c01286{color:rgb(6,69,173);}
.fc0_c01286{color:rgb(0,0,0);}
.fs2_c01286{font-size:43.999200px;}
.fs1_c01286{font-size:59.775600px;}
.fs0_c01286{font-size:86.077200px;}
.y0_c01286{bottom:0.000000px;}
.y1e_c01286{bottom:44.250000px;}
.y1d_c01286{bottom:86.982000px;}
.y1c_c01286{bottom:136.297500px;}
.y1b_c01286{bottom:152.736000px;}
.y1a_c01286{bottom:185.613000px;}
.y19_c01286{bottom:202.051500px;}
.y18_c01286{bottom:234.927000px;}
.y17_c01286{bottom:251.365500px;}
.y16_c01286{bottom:267.804000px;}
.y15_c01286{bottom:284.242500px;}
.y14_c01286{bottom:317.119500px;}
.y13_c01286{bottom:333.558000px;}
.y12_c01286{bottom:349.996500px;}
.y11_c01286{bottom:366.435000px;}
.y10_c01286{bottom:382.873500px;}
.yf_c01286{bottom:399.310500px;}
.ye_c01286{bottom:415.749000px;}
.yd_c01286{bottom:432.187500px;}
.yc_c01286{bottom:448.252500px;}
.yb_c01286{bottom:495.994500px;}
.ya_c01286{bottom:513.927000px;}
.y9_c01286{bottom:531.859500px;}
.y8_c01286{bottom:549.792000px;}
.y7_c01286{bottom:567.726000px;}
.y6_c01286{bottom:585.658500px;}
.y5_c01286{bottom:612.480000px;}
.y4_c01286{bottom:639.301500px;}
.y3_c01286{bottom:666.123000px;}
.y2_c01286{bottom:692.944500px;}
.y1_c01286{bottom:735.139500px;}
.h5_c01286{height:35.190766px;}
.h6_c01286{height:36.007158px;}
.h3_c01286{height:40.511979px;}
.h4_c01286{height:52.332837px;}
.h2_c01286{height:58.337477px;}
.h0_c01286{height:1262.835000px;}
.h1_c01286{height:1263.000000px;}
.w0_c01286{width:892.920000px;}
.w1_c01286{width:893.250000px;}
.x0_c01286{left:0.000000px;}
.x1_c01286{left:127.558500px;}
.x2_c01286{left:137.122500px;}
.x3_c01286{left:435.249000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls3_c01286{letter-spacing:0.000000pt;}
.ls0_c01286{letter-spacing:0.078221pt;}
.ls2_c01286{letter-spacing:0.087539pt;}
.ls1_c01286{letter-spacing:0.092873pt;}
.ws2_c01286{word-spacing:-23.622682pt;}
.wsf_c01286{word-spacing:-23.544461pt;}
.ws8_c01286{word-spacing:-18.915657pt;}
.ws7_c01286{word-spacing:-18.862523pt;}
.ws5_c01286{word-spacing:-16.684034pt;}
.ws4_c01286{word-spacing:-13.283467pt;}
.wsd_c01286{word-spacing:-13.124065pt;}
.wsc_c01286{word-spacing:-12.911530pt;}
.wsb_c01286{word-spacing:-11.742585pt;}
.wsa_c01286{word-spacing:-11.730641pt;}
.ws9_c01286{word-spacing:-10.679907pt;}
.ws6_c01286{word-spacing:-9.984128pt;}
.ws1_c01286{word-spacing:-8.878599pt;}
.ws3_c01286{word-spacing:-8.877777pt;}
.ws13_c01286{word-spacing:0.000000pt;}
.ws10_c01286{word-spacing:0.039110pt;}
.wse_c01286{word-spacing:0.156442pt;}
.ws12_c01286{word-spacing:0.189730pt;}
.ws11_c01286{word-spacing:0.195063pt;}
.ws0_c01286{word-spacing:38.256533pt;}
._6_c01286{margin-left:-3.400567pt;}
._1_c01286{margin-left:-0.956410pt;}
._7_c01286{width:0.893988pt;}
._0_c01286{width:17.720725pt;}
._4_c01286{width:19.696015pt;}
._2_c01286{width:22.369358pt;}
._5_c01286{width:28.479753pt;}
._3_c01286{width:35.918494pt;}
._8_c01286{width:47.519136pt;}
.fs2_c01286{font-size:39.110400pt;}
.fs1_c01286{font-size:53.133867pt;}
.fs0_c01286{font-size:76.513067pt;}
.y0_c01286{bottom:0.000000pt;}
.y1e_c01286{bottom:39.333333pt;}
.y1d_c01286{bottom:77.317333pt;}
.y1c_c01286{bottom:121.153333pt;}
.y1b_c01286{bottom:135.765333pt;}
.y1a_c01286{bottom:164.989333pt;}
.y19_c01286{bottom:179.601333pt;}
.y18_c01286{bottom:208.824000pt;}
.y17_c01286{bottom:223.436000pt;}
.y16_c01286{bottom:238.048000pt;}
.y15_c01286{bottom:252.660000pt;}
.y14_c01286{bottom:281.884000pt;}
.y13_c01286{bottom:296.496000pt;}
.y12_c01286{bottom:311.108000pt;}
.y11_c01286{bottom:325.720000pt;}
.y10_c01286{bottom:340.332000pt;}
.yf_c01286{bottom:354.942667pt;}
.ye_c01286{bottom:369.554667pt;}
.yd_c01286{bottom:384.166667pt;}
.yc_c01286{bottom:398.446667pt;}
.yb_c01286{bottom:440.884000pt;}
.ya_c01286{bottom:456.824000pt;}
.y9_c01286{bottom:472.764000pt;}
.y8_c01286{bottom:488.704000pt;}
.y7_c01286{bottom:504.645333pt;}
.y6_c01286{bottom:520.585333pt;}
.y5_c01286{bottom:544.426667pt;}
.y4_c01286{bottom:568.268000pt;}
.y3_c01286{bottom:592.109333pt;}
.y2_c01286{bottom:615.950667pt;}
.y1_c01286{bottom:653.457333pt;}
.h5_c01286{height:31.280681pt;}
.h6_c01286{height:32.006363pt;}
.h3_c01286{height:36.010648pt;}
.h4_c01286{height:46.518078pt;}
.h2_c01286{height:51.855535pt;}
.h0_c01286{height:1122.520000pt;}
.h1_c01286{height:1122.666667pt;}
.w0_c01286{width:793.706667pt;}
.w1_c01286{width:794.000000pt;}
.x0_c01286{left:0.000000pt;}
.x1_c01286{left:113.385333pt;}
.x2_c01286{left:121.886667pt;}
.x3_c01286{left:386.888000pt;}
}





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

.ir_c01287:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_0eeb0a68d7e48c50444f8318.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01287;src:url('chunks/assets/font_f89fa032ed2e7bf8277eea5e.woff2')format("woff");}.ff2_c01287{font-family:ff2_c01287;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01287;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01287{font-family:ff3_c01287;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01287;src:url('chunks/assets/font_cf8f84732e1b1367a329678f.woff2')format("woff");}.ff4_c01287{font-family:ff4_c01287;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01287;src:url('chunks/assets/font_afe52bde1e308b47656f619d.woff2')format("woff");}.ff5_c01287{font-family:ff5_c01287;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01287{vertical-align:0.000000px;}
.ls3_c01287{letter-spacing:0.000000px;}
.ls0_c01287{letter-spacing:0.087998px;}
.ls2_c01287{letter-spacing:0.098482px;}
.ls1_c01287{letter-spacing:0.104482px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01287{word-spacing:-26.575517px;}
.ws1_c01287{word-spacing:-26.487518px;}
.wsa_c01287{word-spacing:-18.769538px;}
.ws9_c01287{word-spacing:-14.943900px;}
.ws7_c01287{word-spacing:-9.988424px;}
.ws8_c01287{word-spacing:-9.987499px;}
.ws4_c01287{word-spacing:0.000000px;}
.ws3_c01287{word-spacing:0.043999px;}
.ws2_c01287{word-spacing:0.056767px;}
.ws5_c01287{word-spacing:0.213446px;}
.ws6_c01287{word-spacing:43.038600px;}
._0_c01287{width:1.041538px;}
._1_c01287{width:19.935816px;}
.fc5_c01287{color:rgb(79,153,5);}
.fc4_c01287{color:rgb(0,0,207);}
.fc3_c01287{color:rgb(207,92,0);}
.fc2_c01287{color:rgb(33,74,135);}
.fc1_c01287{color:rgb(143,89,3);}
.fc0_c01287{color:rgb(0,0,0);}
.fs0_c01287{font-size:43.999200px;}
.fs2_c01287{font-size:59.775600px;}
.fs1_c01287{font-size:86.077200px;}
.y0_c01287{bottom:0.000000px;}
.y21_c01287{bottom:44.250000px;}
.y20_c01287{bottom:82.051500px;}
.y1f_c01287{bottom:112.338000px;}
.y1e_c01287{bottom:142.626000px;}
.y1d_c01287{bottom:172.914000px;}
.y1c_c01287{bottom:220.090500px;}
.y1b_c01287{bottom:699.589500px;}
.y1a_c01287{bottom:716.028000px;}
.y19_c01287{bottom:732.465000px;}
.y18_c01287{bottom:748.903500px;}
.y17_c01287{bottom:765.342000px;}
.y16_c01287{bottom:781.780500px;}
.y15_c01287{bottom:798.219000px;}
.y14_c01287{bottom:814.657500px;}
.y13_c01287{bottom:831.096000px;}
.y12_c01287{bottom:847.534500px;}
.y11_c01287{bottom:863.973000px;}
.y10_c01287{bottom:896.848500px;}
.yf_c01287{bottom:913.287000px;}
.ye_c01287{bottom:929.725500px;}
.yd_c01287{bottom:962.602500px;}
.yc_c01287{bottom:979.041000px;}
.yb_c01287{bottom:995.479500px;}
.ya_c01287{bottom:1011.918000px;}
.y9_c01287{bottom:1028.356500px;}
.y8_c01287{bottom:1044.795000px;}
.y7_c01287{bottom:1061.232000px;}
.y6_c01287{bottom:1077.670500px;}
.y5_c01287{bottom:1094.109000px;}
.y4_c01287{bottom:1110.547500px;}
.y3_c01287{bottom:1126.986000px;}
.y2_c01287{bottom:1143.424500px;}
.y1_c01287{bottom:1159.863000px;}
.h3_c01287{height:35.190766px;}
.h2_c01287{height:36.007158px;}
.h5_c01287{height:40.511979px;}
.h6_c01287{height:52.332837px;}
.h4_c01287{height:58.337477px;}
.h0_c01287{height:1262.835000px;}
.h1_c01287{height:1263.000000px;}
.w0_c01287{width:892.920000px;}
.w1_c01287{width:893.250000px;}
.x0_c01287{left:0.000000px;}
.x4_c01287{left:127.558500px;}
.x1_c01287{left:137.122500px;}
.x3_c01287{left:177.007500px;}
.x2_c01287{left:230.185500px;}
.x5_c01287{left:435.249000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls3_c01287{letter-spacing:0.000000pt;}
.ls0_c01287{letter-spacing:0.078221pt;}
.ls2_c01287{letter-spacing:0.087539pt;}
.ls1_c01287{letter-spacing:0.092873pt;}
.ws0_c01287{word-spacing:-23.622682pt;}
.ws1_c01287{word-spacing:-23.544461pt;}
.wsa_c01287{word-spacing:-16.684034pt;}
.ws9_c01287{word-spacing:-13.283467pt;}
.ws7_c01287{word-spacing:-8.878599pt;}
.ws8_c01287{word-spacing:-8.877777pt;}
.ws4_c01287{word-spacing:0.000000pt;}
.ws3_c01287{word-spacing:0.039110pt;}
.ws2_c01287{word-spacing:0.050460pt;}
.ws5_c01287{word-spacing:0.189730pt;}
.ws6_c01287{word-spacing:38.256533pt;}
._0_c01287{width:0.925811pt;}
._1_c01287{width:17.720725pt;}
.fs0_c01287{font-size:39.110400pt;}
.fs2_c01287{font-size:53.133867pt;}
.fs1_c01287{font-size:76.513067pt;}
.y0_c01287{bottom:0.000000pt;}
.y21_c01287{bottom:39.333333pt;}
.y20_c01287{bottom:72.934667pt;}
.y1f_c01287{bottom:99.856000pt;}
.y1e_c01287{bottom:126.778667pt;}
.y1d_c01287{bottom:153.701333pt;}
.y1c_c01287{bottom:195.636000pt;}
.y1b_c01287{bottom:621.857333pt;}
.y1a_c01287{bottom:636.469333pt;}
.y19_c01287{bottom:651.080000pt;}
.y18_c01287{bottom:665.692000pt;}
.y17_c01287{bottom:680.304000pt;}
.y16_c01287{bottom:694.916000pt;}
.y15_c01287{bottom:709.528000pt;}
.y14_c01287{bottom:724.140000pt;}
.y13_c01287{bottom:738.752000pt;}
.y12_c01287{bottom:753.364000pt;}
.y11_c01287{bottom:767.976000pt;}
.y10_c01287{bottom:797.198667pt;}
.yf_c01287{bottom:811.810667pt;}
.ye_c01287{bottom:826.422667pt;}
.yd_c01287{bottom:855.646667pt;}
.yc_c01287{bottom:870.258667pt;}
.yb_c01287{bottom:884.870667pt;}
.ya_c01287{bottom:899.482667pt;}
.y9_c01287{bottom:914.094667pt;}
.y8_c01287{bottom:928.706667pt;}
.y7_c01287{bottom:943.317333pt;}
.y6_c01287{bottom:957.929333pt;}
.y5_c01287{bottom:972.541333pt;}
.y4_c01287{bottom:987.153333pt;}
.y3_c01287{bottom:1001.765333pt;}
.y2_c01287{bottom:1016.377333pt;}
.y1_c01287{bottom:1030.989333pt;}
.h3_c01287{height:31.280681pt;}
.h2_c01287{height:32.006363pt;}
.h5_c01287{height:36.010648pt;}
.h6_c01287{height:46.518078pt;}
.h4_c01287{height:51.855535pt;}
.h0_c01287{height:1122.520000pt;}
.h1_c01287{height:1122.666667pt;}
.w0_c01287{width:793.706667pt;}
.w1_c01287{width:794.000000pt;}
.x0_c01287{left:0.000000pt;}
.x4_c01287{left:113.385333pt;}
.x1_c01287{left:121.886667pt;}
.x3_c01287{left:157.340000pt;}
.x2_c01287{left:204.609333pt;}
.x5_c01287{left:386.888000pt;}
}





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

.ir_c01288:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01288;src:url('chunks/assets/font_278a21f2ce49500983b0e852.woff2')format("woff");}.ff2_c01288{font-family:ff2_c01288;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01288;src:url('chunks/assets/font_0c39c94be921f7249d0cada7.woff2')format("woff");}.ff3_c01288{font-family:ff3_c01288;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01288;src:url('chunks/assets/font_fc738e0c2ed4da7861f22bfd.woff2')format("woff");}.ff4_c01288{font-family:ff4_c01288;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01288;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01288{font-family:ff5_c01288;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01288{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01288{vertical-align:0.000000px;}
.ls4_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:0.087998px;}
.ls2_c01288{letter-spacing:0.098482px;}
.ls1_c01288{letter-spacing:0.104482px;}
.ls3_c01288{letter-spacing:26.690482px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01288{word-spacing:-33.713438px;}
.ws4_c01288{word-spacing:-26.575517px;}
.wsa_c01288{word-spacing:-26.487518px;}
.ws3_c01288{word-spacing:-21.553319px;}
.ws2_c01288{word-spacing:-21.519216px;}
.ws7_c01288{word-spacing:-18.769538px;}
.ws1_c01288{word-spacing:-16.019861px;}
.ws5_c01288{word-spacing:-14.107042px;}
.ws6_c01288{word-spacing:-12.074671px;}
.ws0_c01288{word-spacing:-4.536144px;}
.wse_c01288{word-spacing:0.000000px;}
.wsb_c01288{word-spacing:0.043999px;}
.ws11_c01288{word-spacing:0.056767px;}
.wsf_c01288{word-spacing:0.073250px;}
.ws10_c01288{word-spacing:0.083734px;}
.ws9_c01288{word-spacing:0.175997px;}
.ws12_c01288{word-spacing:0.202963px;}
.wsc_c01288{word-spacing:0.213446px;}
.wsd_c01288{word-spacing:0.219446px;}
._4_c01288{margin-left:-3.825638px;}
._1_c01288{margin-left:-2.347817px;}
._0_c01288{margin-left:-1.075961px;}
._5_c01288{width:1.005737px;}
._2_c01288{width:20.742133px;}
._3_c01288{width:40.109428px;}
._7_c01288{width:53.283031px;}
._6_c01288{width:79.858548px;}
._8_c01288{width:133.452408px;}
.fc6_c01288{color:rgb(0,0,207);}
.fc5_c01288{color:rgb(79,153,5);}
.fc3_c01288{color:rgb(33,74,135);}
.fc2_c01288{color:rgb(143,89,3);}
.fc4_c01288{color:rgb(207,92,0);}
.fc1_c01288{color:rgb(6,69,173);}
.fc0_c01288{color:rgb(0,0,0);}
.fs1_c01288{font-size:43.999200px;}
.fs0_c01288{font-size:59.775600px;}
.y0_c01288{bottom:0.000000px;}
.y31_c01288{bottom:44.250000px;}
.y30_c01288{bottom:96.919500px;}
.y2f_c01288{bottom:113.358000px;}
.y2e_c01288{bottom:129.796500px;}
.y2d_c01288{bottom:146.235000px;}
.y2c_c01288{bottom:162.673500px;}
.y2b_c01288{bottom:179.112000px;}
.y2a_c01288{bottom:195.550500px;}
.y29_c01288{bottom:211.989000px;}
.y28_c01288{bottom:228.427500px;}
.y27_c01288{bottom:244.866000px;}
.y26_c01288{bottom:261.304500px;}
.y25_c01288{bottom:294.180000px;}
.y24_c01288{bottom:310.618500px;}
.y23_c01288{bottom:327.057000px;}
.y22_c01288{bottom:359.934000px;}
.y21_c01288{bottom:376.372500px;}
.y20_c01288{bottom:392.811000px;}
.y1f_c01288{bottom:409.249500px;}
.y1e_c01288{bottom:425.688000px;}
.y1d_c01288{bottom:442.125000px;}
.y1c_c01288{bottom:458.563500px;}
.y1b_c01288{bottom:507.879000px;}
.y1a_c01288{bottom:524.317500px;}
.y19_c01288{bottom:540.756000px;}
.y18_c01288{bottom:557.194500px;}
.y17_c01288{bottom:573.633000px;}
.y16_c01288{bottom:590.071500px;}
.y15_c01288{bottom:606.508500px;}
.y14_c01288{bottom:622.947000px;}
.y13_c01288{bottom:639.385500px;}
.y12_c01288{bottom:655.824000px;}
.y11_c01288{bottom:672.262500px;}
.y10_c01288{bottom:688.701000px;}
.yf_c01288{bottom:705.139500px;}
.ye_c01288{bottom:721.578000px;}
.yd_c01288{bottom:738.016500px;}
.yc_c01288{bottom:754.455000px;}
.yb_c01288{bottom:787.330500px;}
.ya_c01288{bottom:803.769000px;}
.y9_c01288{bottom:853.084500px;}
.y8_c01288{bottom:869.523000px;}
.y7_c01288{bottom:885.588000px;}
.y6_c01288{bottom:1070.199000px;}
.y5_c01288{bottom:1088.131500px;}
.y4_c01288{bottom:1106.064000px;}
.y3_c01288{bottom:1123.998000px;}
.y2_c01288{bottom:1141.930500px;}
.y1_c01288{bottom:1159.863000px;}
.h3_c01288{height:35.190766px;}
.h4_c01288{height:36.007158px;}
.h2_c01288{height:52.332837px;}
.h0_c01288{height:1262.835000px;}
.h1_c01288{height:1263.000000px;}
.w0_c01288{width:892.920000px;}
.w1_c01288{width:893.250000px;}
.x0_c01288{left:0.000000px;}
.x1_c01288{left:127.558500px;}
.x2_c01288{left:137.122500px;}
.x3_c01288{left:143.770500px;}
.x4_c01288{left:177.007500px;}
.x5_c01288{left:435.249000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls4_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:0.078221pt;}
.ls2_c01288{letter-spacing:0.087539pt;}
.ls1_c01288{letter-spacing:0.092873pt;}
.ls3_c01288{letter-spacing:23.724873pt;}
.ws8_c01288{word-spacing:-29.967501pt;}
.ws4_c01288{word-spacing:-23.622682pt;}
.wsa_c01288{word-spacing:-23.544461pt;}
.ws3_c01288{word-spacing:-19.158506pt;}
.ws2_c01288{word-spacing:-19.128192pt;}
.ws7_c01288{word-spacing:-16.684034pt;}
.ws1_c01288{word-spacing:-14.239876pt;}
.ws5_c01288{word-spacing:-12.539593pt;}
.ws6_c01288{word-spacing:-10.733041pt;}
.ws0_c01288{word-spacing:-4.032128pt;}
.wse_c01288{word-spacing:0.000000pt;}
.wsb_c01288{word-spacing:0.039110pt;}
.ws11_c01288{word-spacing:0.050460pt;}
.wsf_c01288{word-spacing:0.065111pt;}
.ws10_c01288{word-spacing:0.074430pt;}
.ws9_c01288{word-spacing:0.156442pt;}
.ws12_c01288{word-spacing:0.180412pt;}
.wsc_c01288{word-spacing:0.189730pt;}
.wsd_c01288{word-spacing:0.195063pt;}
._4_c01288{margin-left:-3.400567pt;}
._1_c01288{margin-left:-2.086948pt;}
._0_c01288{margin-left:-0.956410pt;}
._5_c01288{width:0.893988pt;}
._2_c01288{width:18.437452pt;}
._3_c01288{width:35.652825pt;}
._7_c01288{width:47.362694pt;}
._6_c01288{width:70.985376pt;}
._8_c01288{width:118.624363pt;}
.fs1_c01288{font-size:39.110400pt;}
.fs0_c01288{font-size:53.133867pt;}
.y0_c01288{bottom:0.000000pt;}
.y31_c01288{bottom:39.333333pt;}
.y30_c01288{bottom:86.150667pt;}
.y2f_c01288{bottom:100.762667pt;}
.y2e_c01288{bottom:115.374667pt;}
.y2d_c01288{bottom:129.986667pt;}
.y2c_c01288{bottom:144.598667pt;}
.y2b_c01288{bottom:159.210667pt;}
.y2a_c01288{bottom:173.822667pt;}
.y29_c01288{bottom:188.434667pt;}
.y28_c01288{bottom:203.046667pt;}
.y27_c01288{bottom:217.658667pt;}
.y26_c01288{bottom:232.270667pt;}
.y25_c01288{bottom:261.493333pt;}
.y24_c01288{bottom:276.105333pt;}
.y23_c01288{bottom:290.717333pt;}
.y22_c01288{bottom:319.941333pt;}
.y21_c01288{bottom:334.553333pt;}
.y20_c01288{bottom:349.165333pt;}
.y1f_c01288{bottom:363.777333pt;}
.y1e_c01288{bottom:378.389333pt;}
.y1d_c01288{bottom:393.000000pt;}
.y1c_c01288{bottom:407.612000pt;}
.y1b_c01288{bottom:451.448000pt;}
.y1a_c01288{bottom:466.060000pt;}
.y19_c01288{bottom:480.672000pt;}
.y18_c01288{bottom:495.284000pt;}
.y17_c01288{bottom:509.896000pt;}
.y16_c01288{bottom:524.508000pt;}
.y15_c01288{bottom:539.118667pt;}
.y14_c01288{bottom:553.730667pt;}
.y13_c01288{bottom:568.342667pt;}
.y12_c01288{bottom:582.954667pt;}
.y11_c01288{bottom:597.566667pt;}
.y10_c01288{bottom:612.178667pt;}
.yf_c01288{bottom:626.790667pt;}
.ye_c01288{bottom:641.402667pt;}
.yd_c01288{bottom:656.014667pt;}
.yc_c01288{bottom:670.626667pt;}
.yb_c01288{bottom:699.849333pt;}
.ya_c01288{bottom:714.461333pt;}
.y9_c01288{bottom:758.297333pt;}
.y8_c01288{bottom:772.909333pt;}
.y7_c01288{bottom:787.189333pt;}
.y6_c01288{bottom:951.288000pt;}
.y5_c01288{bottom:967.228000pt;}
.y4_c01288{bottom:983.168000pt;}
.y3_c01288{bottom:999.109333pt;}
.y2_c01288{bottom:1015.049333pt;}
.y1_c01288{bottom:1030.989333pt;}
.h3_c01288{height:31.280681pt;}
.h4_c01288{height:32.006363pt;}
.h2_c01288{height:46.518078pt;}
.h0_c01288{height:1122.520000pt;}
.h1_c01288{height:1122.666667pt;}
.w0_c01288{width:793.706667pt;}
.w1_c01288{width:794.000000pt;}
.x0_c01288{left:0.000000pt;}
.x1_c01288{left:113.385333pt;}
.x2_c01288{left:121.886667pt;}
.x3_c01288{left:127.796000pt;}
.x4_c01288{left:157.340000pt;}
.x5_c01288{left:386.888000pt;}
}





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

.ir_c01289:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_57226475a265049d1ba65ea8.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01289;src:url('chunks/assets/font_2dcc7255516115e4bc782a30.woff2')format("woff");}.ff2_c01289{font-family:ff2_c01289;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01289;src:url('chunks/assets/font_8e7a5d4e0e4035c02ccec991.woff2')format("woff");}.ff3_c01289{font-family:ff3_c01289;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01289;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01289{font-family:ff4_c01289;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01289;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01289{font-family:ff5_c01289;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01289{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01289{vertical-align:0.000000px;}
.ls3_c01289{letter-spacing:0.000000px;}
.ls0_c01289{letter-spacing:0.087998px;}
.ls2_c01289{letter-spacing:0.098482px;}
.ls1_c01289{letter-spacing:0.104482px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01289{word-spacing:-33.713438px;}
.ws2_c01289{word-spacing:-26.575517px;}
.wse_c01289{word-spacing:-26.487518px;}
.ws9_c01289{word-spacing:-21.553319px;}
.ws8_c01289{word-spacing:-21.519216px;}
.ws5_c01289{word-spacing:-18.769538px;}
.ws7_c01289{word-spacing:-17.633802px;}
.ws4_c01289{word-spacing:-14.943900px;}
.wsa_c01289{word-spacing:-14.107042px;}
.wsb_c01289{word-spacing:-12.074671px;}
.ws1_c01289{word-spacing:-9.988424px;}
.ws3_c01289{word-spacing:-9.987499px;}
.ws6_c01289{word-spacing:-7.686144px;}
.ws12_c01289{word-spacing:0.000000px;}
.wsf_c01289{word-spacing:0.043999px;}
.ws15_c01289{word-spacing:0.056767px;}
.ws13_c01289{word-spacing:0.073250px;}
.ws14_c01289{word-spacing:0.083734px;}
.wsd_c01289{word-spacing:0.175997px;}
.ws16_c01289{word-spacing:0.202963px;}
.ws10_c01289{word-spacing:0.213446px;}
.ws11_c01289{word-spacing:0.219446px;}
.ws0_c01289{word-spacing:43.038600px;}
._4_c01289{margin-left:-3.825638px;}
._2_c01289{margin-left:-2.347817px;}
._1_c01289{margin-left:-1.075961px;}
._5_c01289{width:1.005737px;}
._0_c01289{width:19.935816px;}
._3_c01289{width:40.109428px;}
._7_c01289{width:53.283031px;}
._6_c01289{width:79.858548px;}
._8_c01289{width:133.452408px;}
.fc6_c01289{color:rgb(0,0,207);}
.fc5_c01289{color:rgb(79,153,5);}
.fc3_c01289{color:rgb(33,74,135);}
.fc2_c01289{color:rgb(143,89,3);}
.fc4_c01289{color:rgb(207,92,0);}
.fc1_c01289{color:rgb(6,69,173);}
.fc0_c01289{color:rgb(0,0,0);}
.fs2_c01289{font-size:43.999200px;}
.fs1_c01289{font-size:59.775600px;}
.fs0_c01289{font-size:86.077200px;}
.y0_c01289{bottom:0.000000px;}
.y20_c01289{bottom:44.250000px;}
.y1f_c01289{bottom:86.982000px;}
.y1e_c01289{bottom:103.420500px;}
.y1d_c01289{bottom:119.859000px;}
.y1c_c01289{bottom:136.297500px;}
.y1b_c01289{bottom:152.736000px;}
.y1a_c01289{bottom:169.174500px;}
.y19_c01289{bottom:185.613000px;}
.y18_c01289{bottom:202.051500px;}
.y17_c01289{bottom:218.490000px;}
.y16_c01289{bottom:234.927000px;}
.y15_c01289{bottom:251.365500px;}
.y14_c01289{bottom:267.804000px;}
.y13_c01289{bottom:284.242500px;}
.y12_c01289{bottom:300.681000px;}
.y11_c01289{bottom:317.119500px;}
.y10_c01289{bottom:349.996500px;}
.yf_c01289{bottom:366.435000px;}
.ye_c01289{bottom:415.749000px;}
.yd_c01289{bottom:432.187500px;}
.yc_c01289{bottom:448.252500px;}
.yb_c01289{bottom:493.890000px;}
.ya_c01289{bottom:511.822500px;}
.y9_c01289{bottom:529.756500px;}
.y8_c01289{bottom:547.689000px;}
.y7_c01289{bottom:565.621500px;}
.y6_c01289{bottom:583.554000px;}
.y5_c01289{bottom:610.633500px;}
.y4_c01289{bottom:637.714500px;}
.y3_c01289{bottom:664.794000px;}
.y2_c01289{bottom:691.873500px;}
.y1_c01289{bottom:734.407500px;}
.h5_c01289{height:35.190766px;}
.h6_c01289{height:36.007158px;}
.h3_c01289{height:40.511979px;}
.h4_c01289{height:52.332837px;}
.h2_c01289{height:58.337477px;}
.h0_c01289{height:1262.835000px;}
.h1_c01289{height:1263.000000px;}
.w0_c01289{width:892.920000px;}
.w1_c01289{width:893.250000px;}
.x0_c01289{left:0.000000px;}
.x1_c01289{left:127.558500px;}
.x2_c01289{left:137.122500px;}
.x3_c01289{left:143.770500px;}
.x4_c01289{left:435.249000px;}
@media print{
.v0_c01289{vertical-align:0.000000pt;}
.ls3_c01289{letter-spacing:0.000000pt;}
.ls0_c01289{letter-spacing:0.078221pt;}
.ls2_c01289{letter-spacing:0.087539pt;}
.ls1_c01289{letter-spacing:0.092873pt;}
.wsc_c01289{word-spacing:-29.967501pt;}
.ws2_c01289{word-spacing:-23.622682pt;}
.wse_c01289{word-spacing:-23.544461pt;}
.ws9_c01289{word-spacing:-19.158506pt;}
.ws8_c01289{word-spacing:-19.128192pt;}
.ws5_c01289{word-spacing:-16.684034pt;}
.ws7_c01289{word-spacing:-15.674491pt;}
.ws4_c01289{word-spacing:-13.283467pt;}
.wsa_c01289{word-spacing:-12.539593pt;}
.wsb_c01289{word-spacing:-10.733041pt;}
.ws1_c01289{word-spacing:-8.878599pt;}
.ws3_c01289{word-spacing:-8.877777pt;}
.ws6_c01289{word-spacing:-6.832128pt;}
.ws12_c01289{word-spacing:0.000000pt;}
.wsf_c01289{word-spacing:0.039110pt;}
.ws15_c01289{word-spacing:0.050460pt;}
.ws13_c01289{word-spacing:0.065111pt;}
.ws14_c01289{word-spacing:0.074430pt;}
.wsd_c01289{word-spacing:0.156442pt;}
.ws16_c01289{word-spacing:0.180412pt;}
.ws10_c01289{word-spacing:0.189730pt;}
.ws11_c01289{word-spacing:0.195063pt;}
.ws0_c01289{word-spacing:38.256533pt;}
._4_c01289{margin-left:-3.400567pt;}
._2_c01289{margin-left:-2.086948pt;}
._1_c01289{margin-left:-0.956410pt;}
._5_c01289{width:0.893988pt;}
._0_c01289{width:17.720725pt;}
._3_c01289{width:35.652825pt;}
._7_c01289{width:47.362694pt;}
._6_c01289{width:70.985376pt;}
._8_c01289{width:118.624363pt;}
.fs2_c01289{font-size:39.110400pt;}
.fs1_c01289{font-size:53.133867pt;}
.fs0_c01289{font-size:76.513067pt;}
.y0_c01289{bottom:0.000000pt;}
.y20_c01289{bottom:39.333333pt;}
.y1f_c01289{bottom:77.317333pt;}
.y1e_c01289{bottom:91.929333pt;}
.y1d_c01289{bottom:106.541333pt;}
.y1c_c01289{bottom:121.153333pt;}
.y1b_c01289{bottom:135.765333pt;}
.y1a_c01289{bottom:150.377333pt;}
.y19_c01289{bottom:164.989333pt;}
.y18_c01289{bottom:179.601333pt;}
.y17_c01289{bottom:194.213333pt;}
.y16_c01289{bottom:208.824000pt;}
.y15_c01289{bottom:223.436000pt;}
.y14_c01289{bottom:238.048000pt;}
.y13_c01289{bottom:252.660000pt;}
.y12_c01289{bottom:267.272000pt;}
.y11_c01289{bottom:281.884000pt;}
.y10_c01289{bottom:311.108000pt;}
.yf_c01289{bottom:325.720000pt;}
.ye_c01289{bottom:369.554667pt;}
.yd_c01289{bottom:384.166667pt;}
.yc_c01289{bottom:398.446667pt;}
.yb_c01289{bottom:439.013333pt;}
.ya_c01289{bottom:454.953333pt;}
.y9_c01289{bottom:470.894667pt;}
.y8_c01289{bottom:486.834667pt;}
.y7_c01289{bottom:502.774667pt;}
.y6_c01289{bottom:518.714667pt;}
.y5_c01289{bottom:542.785333pt;}
.y4_c01289{bottom:566.857333pt;}
.y3_c01289{bottom:590.928000pt;}
.y2_c01289{bottom:614.998667pt;}
.y1_c01289{bottom:652.806667pt;}
.h5_c01289{height:31.280681pt;}
.h6_c01289{height:32.006363pt;}
.h3_c01289{height:36.010648pt;}
.h4_c01289{height:46.518078pt;}
.h2_c01289{height:51.855535pt;}
.h0_c01289{height:1122.520000pt;}
.h1_c01289{height:1122.666667pt;}
.w0_c01289{width:793.706667pt;}
.w1_c01289{width:794.000000pt;}
.x0_c01289{left:0.000000pt;}
.x1_c01289{left:113.385333pt;}
.x2_c01289{left:121.886667pt;}
.x3_c01289{left:127.796000pt;}
.x4_c01289{left:386.888000pt;}
}





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

.ir_c01290:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_33dcfcf8272faa34b0441c75.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01290;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01290;src:url('chunks/assets/font_56d2a477cd1a8742661a712f.woff2')format("woff");}.ff3_c01290{font-family:ff3_c01290;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01290;src:url('chunks/assets/font_2961a5edca1de99170615399.woff2')format("woff");}.ff4_c01290{font-family:ff4_c01290;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01290;src:url('chunks/assets/font_ac8eea234a8bee681cb435b0.woff2')format("woff");}.ff5_c01290{font-family:ff5_c01290;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01290{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls4_c01290{letter-spacing:0.000000px;}
.ls0_c01290{letter-spacing:0.087998px;}
.ls2_c01290{letter-spacing:0.098482px;}
.ls3_c01290{letter-spacing:0.104482px;}
.ls1_c01290{letter-spacing:26.690482px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01290{word-spacing:-26.575517px;}
.ws4_c01290{word-spacing:-26.487518px;}
.wse_c01290{word-spacing:-21.553319px;}
.wsd_c01290{word-spacing:-21.519216px;}
.wsa_c01290{word-spacing:-18.769538px;}
.wsc_c01290{word-spacing:-17.633802px;}
.ws9_c01290{word-spacing:-14.943900px;}
.wsf_c01290{word-spacing:-14.107042px;}
.ws10_c01290{word-spacing:-12.074671px;}
.ws7_c01290{word-spacing:-9.988424px;}
.ws8_c01290{word-spacing:-9.987499px;}
.wsb_c01290{word-spacing:-7.686144px;}
.ws3_c01290{word-spacing:0.000000px;}
.ws0_c01290{word-spacing:0.043999px;}
.ws5_c01290{word-spacing:0.213446px;}
.ws1_c01290{word-spacing:0.219446px;}
.ws6_c01290{word-spacing:43.038600px;}
._3_c01290{margin-left:-2.347817px;}
._2_c01290{margin-left:-1.075961px;}
._0_c01290{width:1.041538px;}
._1_c01290{width:19.935816px;}
._4_c01290{width:40.109428px;}
.fc5_c01290{color:rgb(79,153,5);}
.fc4_c01290{color:rgb(143,89,3);}
.fc3_c01290{color:rgb(0,0,0);}
.fc6_c01290{color:rgb(6,69,173);}
.fc2_c01290{color:rgb(207,92,0);}
.fc1_c01290{color:rgb(0,0,207);}
.fc0_c01290{color:rgb(33,74,135);}
.fs0_c01290{font-size:43.999200px;}
.fs2_c01290{font-size:59.775600px;}
.fs1_c01290{font-size:86.077200px;}
.y0_c01290{bottom:0.000000px;}
.y20_c01290{bottom:44.250000px;}
.y1f_c01290{bottom:82.051500px;}
.y1e_c01290{bottom:99.984000px;}
.y1d_c01290{bottom:117.916500px;}
.y1c_c01290{bottom:135.849000px;}
.y1b_c01290{bottom:162.501000px;}
.y1a_c01290{bottom:189.151500px;}
.y19_c01290{bottom:215.802000px;}
.y18_c01290{bottom:242.454000px;}
.y17_c01290{bottom:284.478000px;}
.y16_c01290{bottom:748.903500px;}
.y15_c01290{bottom:765.342000px;}
.y14_c01290{bottom:781.780500px;}
.y13_c01290{bottom:798.219000px;}
.y12_c01290{bottom:814.657500px;}
.y11_c01290{bottom:831.096000px;}
.y10_c01290{bottom:847.534500px;}
.yf_c01290{bottom:863.973000px;}
.ye_c01290{bottom:880.411500px;}
.yd_c01290{bottom:896.848500px;}
.yc_c01290{bottom:913.287000px;}
.yb_c01290{bottom:946.164000px;}
.ya_c01290{bottom:962.602500px;}
.y9_c01290{bottom:979.041000px;}
.y8_c01290{bottom:1011.918000px;}
.y7_c01290{bottom:1028.356500px;}
.y6_c01290{bottom:1044.795000px;}
.y5_c01290{bottom:1061.232000px;}
.y4_c01290{bottom:1077.670500px;}
.y3_c01290{bottom:1094.109000px;}
.y2_c01290{bottom:1110.547500px;}
.y1_c01290{bottom:1159.863000px;}
.h3_c01290{height:35.190766px;}
.h2_c01290{height:36.007158px;}
.h5_c01290{height:40.511979px;}
.h6_c01290{height:52.332837px;}
.h4_c01290{height:58.337477px;}
.h0_c01290{height:1262.835000px;}
.h1_c01290{height:1263.000000px;}
.w0_c01290{width:892.920000px;}
.w1_c01290{width:893.250000px;}
.x0_c01290{left:0.000000px;}
.x4_c01290{left:127.558500px;}
.x2_c01290{left:137.122500px;}
.x1_c01290{left:143.770500px;}
.x3_c01290{left:177.007500px;}
.x5_c01290{left:435.249000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls4_c01290{letter-spacing:0.000000pt;}
.ls0_c01290{letter-spacing:0.078221pt;}
.ls2_c01290{letter-spacing:0.087539pt;}
.ls3_c01290{letter-spacing:0.092873pt;}
.ls1_c01290{letter-spacing:23.724873pt;}
.ws2_c01290{word-spacing:-23.622682pt;}
.ws4_c01290{word-spacing:-23.544461pt;}
.wse_c01290{word-spacing:-19.158506pt;}
.wsd_c01290{word-spacing:-19.128192pt;}
.wsa_c01290{word-spacing:-16.684034pt;}
.wsc_c01290{word-spacing:-15.674491pt;}
.ws9_c01290{word-spacing:-13.283467pt;}
.wsf_c01290{word-spacing:-12.539593pt;}
.ws10_c01290{word-spacing:-10.733041pt;}
.ws7_c01290{word-spacing:-8.878599pt;}
.ws8_c01290{word-spacing:-8.877777pt;}
.wsb_c01290{word-spacing:-6.832128pt;}
.ws3_c01290{word-spacing:0.000000pt;}
.ws0_c01290{word-spacing:0.039110pt;}
.ws5_c01290{word-spacing:0.189730pt;}
.ws1_c01290{word-spacing:0.195063pt;}
.ws6_c01290{word-spacing:38.256533pt;}
._3_c01290{margin-left:-2.086948pt;}
._2_c01290{margin-left:-0.956410pt;}
._0_c01290{width:0.925811pt;}
._1_c01290{width:17.720725pt;}
._4_c01290{width:35.652825pt;}
.fs0_c01290{font-size:39.110400pt;}
.fs2_c01290{font-size:53.133867pt;}
.fs1_c01290{font-size:76.513067pt;}
.y0_c01290{bottom:0.000000pt;}
.y20_c01290{bottom:39.333333pt;}
.y1f_c01290{bottom:72.934667pt;}
.y1e_c01290{bottom:88.874667pt;}
.y1d_c01290{bottom:104.814667pt;}
.y1c_c01290{bottom:120.754667pt;}
.y1b_c01290{bottom:144.445333pt;}
.y1a_c01290{bottom:168.134667pt;}
.y19_c01290{bottom:191.824000pt;}
.y18_c01290{bottom:215.514667pt;}
.y17_c01290{bottom:252.869333pt;}
.y16_c01290{bottom:665.692000pt;}
.y15_c01290{bottom:680.304000pt;}
.y14_c01290{bottom:694.916000pt;}
.y13_c01290{bottom:709.528000pt;}
.y12_c01290{bottom:724.140000pt;}
.y11_c01290{bottom:738.752000pt;}
.y10_c01290{bottom:753.364000pt;}
.yf_c01290{bottom:767.976000pt;}
.ye_c01290{bottom:782.588000pt;}
.yd_c01290{bottom:797.198667pt;}
.yc_c01290{bottom:811.810667pt;}
.yb_c01290{bottom:841.034667pt;}
.ya_c01290{bottom:855.646667pt;}
.y9_c01290{bottom:870.258667pt;}
.y8_c01290{bottom:899.482667pt;}
.y7_c01290{bottom:914.094667pt;}
.y6_c01290{bottom:928.706667pt;}
.y5_c01290{bottom:943.317333pt;}
.y4_c01290{bottom:957.929333pt;}
.y3_c01290{bottom:972.541333pt;}
.y2_c01290{bottom:987.153333pt;}
.y1_c01290{bottom:1030.989333pt;}
.h3_c01290{height:31.280681pt;}
.h2_c01290{height:32.006363pt;}
.h5_c01290{height:36.010648pt;}
.h6_c01290{height:46.518078pt;}
.h4_c01290{height:51.855535pt;}
.h0_c01290{height:1122.520000pt;}
.h1_c01290{height:1122.666667pt;}
.w0_c01290{width:793.706667pt;}
.w1_c01290{width:794.000000pt;}
.x0_c01290{left:0.000000pt;}
.x4_c01290{left:113.385333pt;}
.x2_c01290{left:121.886667pt;}
.x1_c01290{left:127.796000pt;}
.x3_c01290{left:157.340000pt;}
.x5_c01290{left:386.888000pt;}
}





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

.ir_c01291:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_421302c519844bdcb6c9fc7b.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01291;src:url('chunks/assets/font_6e70f839b56fbed6656a13d0.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01291;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01291{font-family:ff3_c01291;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01291;src:url('chunks/assets/font_8a53bc79ad23651a6af69621.woff2')format("woff");}.ff4_c01291{font-family:ff4_c01291;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.ls4_c01291{letter-spacing:0.000000px;}
.ls1_c01291{letter-spacing:0.087998px;}
.ls2_c01291{letter-spacing:0.098482px;}
.ls0_c01291{letter-spacing:0.104482px;}
.ls3_c01291{letter-spacing:26.690482px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01291{word-spacing:-33.713438px;}
.ws4_c01291{word-spacing:-26.575517px;}
.ws3_c01291{word-spacing:-26.487518px;}
.ws0_c01291{word-spacing:-18.769538px;}
.ws8_c01291{word-spacing:0.000000px;}
.ws5_c01291{word-spacing:0.043999px;}
.wsb_c01291{word-spacing:0.056767px;}
.ws9_c01291{word-spacing:0.073250px;}
.wsa_c01291{word-spacing:0.083734px;}
.ws2_c01291{word-spacing:0.175997px;}
.wsc_c01291{word-spacing:0.202963px;}
.ws6_c01291{word-spacing:0.213446px;}
.ws7_c01291{word-spacing:0.219446px;}
._0_c01291{margin-left:-3.825638px;}
._1_c01291{width:1.005737px;}
._3_c01291{width:53.283031px;}
._2_c01291{width:79.858548px;}
._4_c01291{width:133.452408px;}
.fc5_c01291{color:rgb(0,0,207);}
.fc4_c01291{color:rgb(79,153,5);}
.fc3_c01291{color:rgb(207,92,0);}
.fc2_c01291{color:rgb(33,74,135);}
.fc1_c01291{color:rgb(143,89,3);}
.fc0_c01291{color:rgb(0,0,0);}
.fs1_c01291{font-size:43.999200px;}
.fs0_c01291{font-size:59.775600px;}
.y0_c01291{bottom:0.000000px;}
.y2d_c01291{bottom:44.250000px;}
.y2c_c01291{bottom:96.919500px;}
.y2b_c01291{bottom:113.358000px;}
.y2a_c01291{bottom:129.796500px;}
.y29_c01291{bottom:146.235000px;}
.y28_c01291{bottom:162.673500px;}
.y27_c01291{bottom:179.112000px;}
.y26_c01291{bottom:195.550500px;}
.y25_c01291{bottom:211.989000px;}
.y24_c01291{bottom:228.427500px;}
.y23_c01291{bottom:244.866000px;}
.y22_c01291{bottom:261.304500px;}
.y21_c01291{bottom:294.180000px;}
.y20_c01291{bottom:310.618500px;}
.y1f_c01291{bottom:327.057000px;}
.y1e_c01291{bottom:359.934000px;}
.y1d_c01291{bottom:376.372500px;}
.y1c_c01291{bottom:392.811000px;}
.y1b_c01291{bottom:409.249500px;}
.y1a_c01291{bottom:425.688000px;}
.y19_c01291{bottom:442.125000px;}
.y18_c01291{bottom:458.563500px;}
.y17_c01291{bottom:507.879000px;}
.y16_c01291{bottom:524.317500px;}
.y15_c01291{bottom:540.756000px;}
.y14_c01291{bottom:557.194500px;}
.y13_c01291{bottom:573.633000px;}
.y12_c01291{bottom:590.071500px;}
.y11_c01291{bottom:606.508500px;}
.y10_c01291{bottom:622.947000px;}
.yf_c01291{bottom:639.385500px;}
.ye_c01291{bottom:655.824000px;}
.yd_c01291{bottom:672.262500px;}
.yc_c01291{bottom:688.701000px;}
.yb_c01291{bottom:705.139500px;}
.ya_c01291{bottom:721.578000px;}
.y9_c01291{bottom:738.016500px;}
.y8_c01291{bottom:754.455000px;}
.y7_c01291{bottom:787.330500px;}
.y6_c01291{bottom:803.769000px;}
.y5_c01291{bottom:853.084500px;}
.y4_c01291{bottom:869.523000px;}
.y3_c01291{bottom:885.588000px;}
.y2_c01291{bottom:1141.930500px;}
.y1_c01291{bottom:1159.863000px;}
.h3_c01291{height:35.190766px;}
.h4_c01291{height:36.007158px;}
.h2_c01291{height:52.332837px;}
.h0_c01291{height:1262.835000px;}
.h1_c01291{height:1263.000000px;}
.w0_c01291{width:892.920000px;}
.w1_c01291{width:893.250000px;}
.x0_c01291{left:0.000000px;}
.x1_c01291{left:127.558500px;}
.x2_c01291{left:137.122500px;}
.x3_c01291{left:143.770500px;}
.x4_c01291{left:177.007500px;}
.x5_c01291{left:435.249000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls4_c01291{letter-spacing:0.000000pt;}
.ls1_c01291{letter-spacing:0.078221pt;}
.ls2_c01291{letter-spacing:0.087539pt;}
.ls0_c01291{letter-spacing:0.092873pt;}
.ls3_c01291{letter-spacing:23.724873pt;}
.ws1_c01291{word-spacing:-29.967501pt;}
.ws4_c01291{word-spacing:-23.622682pt;}
.ws3_c01291{word-spacing:-23.544461pt;}
.ws0_c01291{word-spacing:-16.684034pt;}
.ws8_c01291{word-spacing:0.000000pt;}
.ws5_c01291{word-spacing:0.039110pt;}
.wsb_c01291{word-spacing:0.050460pt;}
.ws9_c01291{word-spacing:0.065111pt;}
.wsa_c01291{word-spacing:0.074430pt;}
.ws2_c01291{word-spacing:0.156442pt;}
.wsc_c01291{word-spacing:0.180412pt;}
.ws6_c01291{word-spacing:0.189730pt;}
.ws7_c01291{word-spacing:0.195063pt;}
._0_c01291{margin-left:-3.400567pt;}
._1_c01291{width:0.893988pt;}
._3_c01291{width:47.362694pt;}
._2_c01291{width:70.985376pt;}
._4_c01291{width:118.624363pt;}
.fs1_c01291{font-size:39.110400pt;}
.fs0_c01291{font-size:53.133867pt;}
.y0_c01291{bottom:0.000000pt;}
.y2d_c01291{bottom:39.333333pt;}
.y2c_c01291{bottom:86.150667pt;}
.y2b_c01291{bottom:100.762667pt;}
.y2a_c01291{bottom:115.374667pt;}
.y29_c01291{bottom:129.986667pt;}
.y28_c01291{bottom:144.598667pt;}
.y27_c01291{bottom:159.210667pt;}
.y26_c01291{bottom:173.822667pt;}
.y25_c01291{bottom:188.434667pt;}
.y24_c01291{bottom:203.046667pt;}
.y23_c01291{bottom:217.658667pt;}
.y22_c01291{bottom:232.270667pt;}
.y21_c01291{bottom:261.493333pt;}
.y20_c01291{bottom:276.105333pt;}
.y1f_c01291{bottom:290.717333pt;}
.y1e_c01291{bottom:319.941333pt;}
.y1d_c01291{bottom:334.553333pt;}
.y1c_c01291{bottom:349.165333pt;}
.y1b_c01291{bottom:363.777333pt;}
.y1a_c01291{bottom:378.389333pt;}
.y19_c01291{bottom:393.000000pt;}
.y18_c01291{bottom:407.612000pt;}
.y17_c01291{bottom:451.448000pt;}
.y16_c01291{bottom:466.060000pt;}
.y15_c01291{bottom:480.672000pt;}
.y14_c01291{bottom:495.284000pt;}
.y13_c01291{bottom:509.896000pt;}
.y12_c01291{bottom:524.508000pt;}
.y11_c01291{bottom:539.118667pt;}
.y10_c01291{bottom:553.730667pt;}
.yf_c01291{bottom:568.342667pt;}
.ye_c01291{bottom:582.954667pt;}
.yd_c01291{bottom:597.566667pt;}
.yc_c01291{bottom:612.178667pt;}
.yb_c01291{bottom:626.790667pt;}
.ya_c01291{bottom:641.402667pt;}
.y9_c01291{bottom:656.014667pt;}
.y8_c01291{bottom:670.626667pt;}
.y7_c01291{bottom:699.849333pt;}
.y6_c01291{bottom:714.461333pt;}
.y5_c01291{bottom:758.297333pt;}
.y4_c01291{bottom:772.909333pt;}
.y3_c01291{bottom:787.189333pt;}
.y2_c01291{bottom:1015.049333pt;}
.y1_c01291{bottom:1030.989333pt;}
.h3_c01291{height:31.280681pt;}
.h4_c01291{height:32.006363pt;}
.h2_c01291{height:46.518078pt;}
.h0_c01291{height:1122.520000pt;}
.h1_c01291{height:1122.666667pt;}
.w0_c01291{width:793.706667pt;}
.w1_c01291{width:794.000000pt;}
.x0_c01291{left:0.000000pt;}
.x1_c01291{left:113.385333pt;}
.x2_c01291{left:121.886667pt;}
.x3_c01291{left:127.796000pt;}
.x4_c01291{left:157.340000pt;}
.x5_c01291{left:386.888000pt;}
}





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

.ir_c01292:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_c18aa1e32770f168cfd25ee1.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01292;src:url('chunks/assets/font_a90ccadf1fb58d99db376332.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01292;src:url('chunks/assets/font_ab72d84e66c8c6cb3ea6e499.woff2')format("woff");}.ff3_c01292{font-family:ff3_c01292;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01292;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01292{font-family:ff4_c01292;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01292;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01292{font-family:ff5_c01292;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01292{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01292{vertical-align:0.000000px;}
.ls3_c01292{letter-spacing:0.000000px;}
.ls0_c01292{letter-spacing:0.087998px;}
.ls2_c01292{letter-spacing:0.098482px;}
.ls1_c01292{letter-spacing:0.104482px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01292{word-spacing:-33.713438px;}
.ws2_c01292{word-spacing:-26.575517px;}
.wse_c01292{word-spacing:-26.487518px;}
.ws9_c01292{word-spacing:-21.553319px;}
.ws8_c01292{word-spacing:-21.519216px;}
.ws7_c01292{word-spacing:-19.247743px;}
.ws5_c01292{word-spacing:-18.769538px;}
.ws4_c01292{word-spacing:-14.943900px;}
.wsa_c01292{word-spacing:-14.107042px;}
.wsb_c01292{word-spacing:-12.074671px;}
.ws6_c01292{word-spacing:-10.230144px;}
.ws1_c01292{word-spacing:-9.988424px;}
.ws3_c01292{word-spacing:-9.987499px;}
.ws12_c01292{word-spacing:0.000000px;}
.wsf_c01292{word-spacing:0.043999px;}
.ws15_c01292{word-spacing:0.056767px;}
.ws13_c01292{word-spacing:0.073250px;}
.ws14_c01292{word-spacing:0.083734px;}
.wsd_c01292{word-spacing:0.175997px;}
.ws16_c01292{word-spacing:0.202963px;}
.ws10_c01292{word-spacing:0.213446px;}
.ws11_c01292{word-spacing:0.219446px;}
.ws0_c01292{word-spacing:43.038600px;}
._4_c01292{margin-left:-3.825638px;}
._2_c01292{margin-left:-2.347817px;}
._1_c01292{margin-left:-1.075961px;}
._5_c01292{width:1.005737px;}
._0_c01292{width:19.935816px;}
._3_c01292{width:40.109428px;}
._7_c01292{width:53.283031px;}
._6_c01292{width:79.858548px;}
._8_c01292{width:133.452408px;}
.fc6_c01292{color:rgb(0,0,207);}
.fc5_c01292{color:rgb(79,153,5);}
.fc3_c01292{color:rgb(33,74,135);}
.fc2_c01292{color:rgb(143,89,3);}
.fc4_c01292{color:rgb(207,92,0);}
.fc1_c01292{color:rgb(6,69,173);}
.fc0_c01292{color:rgb(0,0,0);}
.fs2_c01292{font-size:43.999200px;}
.fs1_c01292{font-size:59.775600px;}
.fs0_c01292{font-size:86.077200px;}
.y0_c01292{bottom:0.000000px;}
.y20_c01292{bottom:44.250000px;}
.y1f_c01292{bottom:86.982000px;}
.y1e_c01292{bottom:103.420500px;}
.y1d_c01292{bottom:119.859000px;}
.y1c_c01292{bottom:136.297500px;}
.y1b_c01292{bottom:152.736000px;}
.y1a_c01292{bottom:169.174500px;}
.y19_c01292{bottom:185.613000px;}
.y18_c01292{bottom:202.051500px;}
.y17_c01292{bottom:218.490000px;}
.y16_c01292{bottom:234.927000px;}
.y15_c01292{bottom:251.365500px;}
.y14_c01292{bottom:267.804000px;}
.y13_c01292{bottom:284.242500px;}
.y12_c01292{bottom:300.681000px;}
.y11_c01292{bottom:317.119500px;}
.y10_c01292{bottom:349.996500px;}
.yf_c01292{bottom:366.435000px;}
.ye_c01292{bottom:415.749000px;}
.yd_c01292{bottom:432.187500px;}
.yc_c01292{bottom:448.252500px;}
.yb_c01292{bottom:493.890000px;}
.ya_c01292{bottom:511.822500px;}
.y9_c01292{bottom:529.756500px;}
.y8_c01292{bottom:547.689000px;}
.y7_c01292{bottom:565.621500px;}
.y6_c01292{bottom:583.554000px;}
.y5_c01292{bottom:610.633500px;}
.y4_c01292{bottom:637.714500px;}
.y3_c01292{bottom:664.794000px;}
.y2_c01292{bottom:691.873500px;}
.y1_c01292{bottom:734.407500px;}
.h5_c01292{height:35.190766px;}
.h6_c01292{height:36.007158px;}
.h3_c01292{height:40.511979px;}
.h4_c01292{height:52.332837px;}
.h2_c01292{height:58.337477px;}
.h0_c01292{height:1262.835000px;}
.h1_c01292{height:1263.000000px;}
.w0_c01292{width:892.920000px;}
.w1_c01292{width:893.250000px;}
.x0_c01292{left:0.000000px;}
.x1_c01292{left:127.558500px;}
.x2_c01292{left:137.122500px;}
.x3_c01292{left:143.770500px;}
.x4_c01292{left:435.249000px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls3_c01292{letter-spacing:0.000000pt;}
.ls0_c01292{letter-spacing:0.078221pt;}
.ls2_c01292{letter-spacing:0.087539pt;}
.ls1_c01292{letter-spacing:0.092873pt;}
.wsc_c01292{word-spacing:-29.967501pt;}
.ws2_c01292{word-spacing:-23.622682pt;}
.wse_c01292{word-spacing:-23.544461pt;}
.ws9_c01292{word-spacing:-19.158506pt;}
.ws8_c01292{word-spacing:-19.128192pt;}
.ws7_c01292{word-spacing:-17.109105pt;}
.ws5_c01292{word-spacing:-16.684034pt;}
.ws4_c01292{word-spacing:-13.283467pt;}
.wsa_c01292{word-spacing:-12.539593pt;}
.wsb_c01292{word-spacing:-10.733041pt;}
.ws6_c01292{word-spacing:-9.093461pt;}
.ws1_c01292{word-spacing:-8.878599pt;}
.ws3_c01292{word-spacing:-8.877777pt;}
.ws12_c01292{word-spacing:0.000000pt;}
.wsf_c01292{word-spacing:0.039110pt;}
.ws15_c01292{word-spacing:0.050460pt;}
.ws13_c01292{word-spacing:0.065111pt;}
.ws14_c01292{word-spacing:0.074430pt;}
.wsd_c01292{word-spacing:0.156442pt;}
.ws16_c01292{word-spacing:0.180412pt;}
.ws10_c01292{word-spacing:0.189730pt;}
.ws11_c01292{word-spacing:0.195063pt;}
.ws0_c01292{word-spacing:38.256533pt;}
._4_c01292{margin-left:-3.400567pt;}
._2_c01292{margin-left:-2.086948pt;}
._1_c01292{margin-left:-0.956410pt;}
._5_c01292{width:0.893988pt;}
._0_c01292{width:17.720725pt;}
._3_c01292{width:35.652825pt;}
._7_c01292{width:47.362694pt;}
._6_c01292{width:70.985376pt;}
._8_c01292{width:118.624363pt;}
.fs2_c01292{font-size:39.110400pt;}
.fs1_c01292{font-size:53.133867pt;}
.fs0_c01292{font-size:76.513067pt;}
.y0_c01292{bottom:0.000000pt;}
.y20_c01292{bottom:39.333333pt;}
.y1f_c01292{bottom:77.317333pt;}
.y1e_c01292{bottom:91.929333pt;}
.y1d_c01292{bottom:106.541333pt;}
.y1c_c01292{bottom:121.153333pt;}
.y1b_c01292{bottom:135.765333pt;}
.y1a_c01292{bottom:150.377333pt;}
.y19_c01292{bottom:164.989333pt;}
.y18_c01292{bottom:179.601333pt;}
.y17_c01292{bottom:194.213333pt;}
.y16_c01292{bottom:208.824000pt;}
.y15_c01292{bottom:223.436000pt;}
.y14_c01292{bottom:238.048000pt;}
.y13_c01292{bottom:252.660000pt;}
.y12_c01292{bottom:267.272000pt;}
.y11_c01292{bottom:281.884000pt;}
.y10_c01292{bottom:311.108000pt;}
.yf_c01292{bottom:325.720000pt;}
.ye_c01292{bottom:369.554667pt;}
.yd_c01292{bottom:384.166667pt;}
.yc_c01292{bottom:398.446667pt;}
.yb_c01292{bottom:439.013333pt;}
.ya_c01292{bottom:454.953333pt;}
.y9_c01292{bottom:470.894667pt;}
.y8_c01292{bottom:486.834667pt;}
.y7_c01292{bottom:502.774667pt;}
.y6_c01292{bottom:518.714667pt;}
.y5_c01292{bottom:542.785333pt;}
.y4_c01292{bottom:566.857333pt;}
.y3_c01292{bottom:590.928000pt;}
.y2_c01292{bottom:614.998667pt;}
.y1_c01292{bottom:652.806667pt;}
.h5_c01292{height:31.280681pt;}
.h6_c01292{height:32.006363pt;}
.h3_c01292{height:36.010648pt;}
.h4_c01292{height:46.518078pt;}
.h2_c01292{height:51.855535pt;}
.h0_c01292{height:1122.520000pt;}
.h1_c01292{height:1122.666667pt;}
.w0_c01292{width:793.706667pt;}
.w1_c01292{width:794.000000pt;}
.x0_c01292{left:0.000000pt;}
.x1_c01292{left:113.385333pt;}
.x2_c01292{left:121.886667pt;}
.x3_c01292{left:127.796000pt;}
.x4_c01292{left:386.888000pt;}
}





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

.ir_c01293:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_26f0f8059426d4778f9089ba.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01293;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01293;src:url('chunks/assets/font_c658b8170c541a66486317e4.woff2')format("woff");}.ff3_c01293{font-family:ff3_c01293;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01293;src:url('chunks/assets/font_559bce0851b3301c741b062c.woff2')format("woff");}.ff4_c01293{font-family:ff4_c01293;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01293;src:url('chunks/assets/font_c2dfdd711a81186323ac025f.woff2')format("woff");}.ff5_c01293{font-family:ff5_c01293;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01293{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01293{vertical-align:0.000000px;}
.ls4_c01293{letter-spacing:0.000000px;}
.ls0_c01293{letter-spacing:0.087998px;}
.ls2_c01293{letter-spacing:0.098482px;}
.ls3_c01293{letter-spacing:0.104482px;}
.ls1_c01293{letter-spacing:26.690482px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01293{word-spacing:-26.575517px;}
.ws4_c01293{word-spacing:-26.487518px;}
.wsd_c01293{word-spacing:-22.310660px;}
.wsc_c01293{word-spacing:-22.236523px;}
.wsa_c01293{word-spacing:-18.769538px;}
.wse_c01293{word-spacing:-18.590212px;}
.ws10_c01293{word-spacing:-17.693578px;}
.wsf_c01293{word-spacing:-15.063451px;}
.ws9_c01293{word-spacing:-14.943900px;}
.wsb_c01293{word-spacing:-11.730144px;}
.ws7_c01293{word-spacing:-9.988424px;}
.ws8_c01293{word-spacing:-9.987499px;}
.ws3_c01293{word-spacing:0.000000px;}
.ws0_c01293{word-spacing:0.043999px;}
.ws5_c01293{word-spacing:0.213446px;}
.ws1_c01293{word-spacing:0.219446px;}
.ws6_c01293{word-spacing:43.038600px;}
._3_c01293{margin-left:-1.075961px;}
._1_c01293{width:1.041538px;}
._2_c01293{width:19.935816px;}
._4_c01293{width:23.073382px;}
._0_c01293{width:106.654061px;}
.fc5_c01293{color:rgb(79,153,5);}
.fc4_c01293{color:rgb(143,89,3);}
.fc3_c01293{color:rgb(0,0,0);}
.fc6_c01293{color:rgb(6,69,173);}
.fc2_c01293{color:rgb(207,92,0);}
.fc1_c01293{color:rgb(0,0,207);}
.fc0_c01293{color:rgb(33,74,135);}
.fs0_c01293{font-size:43.999200px;}
.fs2_c01293{font-size:59.775600px;}
.fs1_c01293{font-size:86.077200px;}
.y0_c01293{bottom:0.000000px;}
.y20_c01293{bottom:44.250000px;}
.y1f_c01293{bottom:82.051500px;}
.y1e_c01293{bottom:99.984000px;}
.y1d_c01293{bottom:117.916500px;}
.y1c_c01293{bottom:135.849000px;}
.y1b_c01293{bottom:162.501000px;}
.y1a_c01293{bottom:189.151500px;}
.y19_c01293{bottom:215.802000px;}
.y18_c01293{bottom:242.454000px;}
.y17_c01293{bottom:284.478000px;}
.y16_c01293{bottom:748.903500px;}
.y15_c01293{bottom:765.342000px;}
.y14_c01293{bottom:781.780500px;}
.y13_c01293{bottom:798.219000px;}
.y12_c01293{bottom:814.657500px;}
.y11_c01293{bottom:831.096000px;}
.y10_c01293{bottom:847.534500px;}
.yf_c01293{bottom:863.973000px;}
.ye_c01293{bottom:880.411500px;}
.yd_c01293{bottom:896.848500px;}
.yc_c01293{bottom:913.287000px;}
.yb_c01293{bottom:946.164000px;}
.ya_c01293{bottom:962.602500px;}
.y9_c01293{bottom:979.041000px;}
.y8_c01293{bottom:1011.918000px;}
.y7_c01293{bottom:1028.356500px;}
.y6_c01293{bottom:1044.795000px;}
.y5_c01293{bottom:1061.232000px;}
.y4_c01293{bottom:1077.670500px;}
.y3_c01293{bottom:1094.109000px;}
.y2_c01293{bottom:1110.547500px;}
.y1_c01293{bottom:1159.863000px;}
.h3_c01293{height:35.190766px;}
.h2_c01293{height:36.007158px;}
.h5_c01293{height:40.511979px;}
.h6_c01293{height:52.332837px;}
.h4_c01293{height:58.337477px;}
.h0_c01293{height:1262.835000px;}
.h1_c01293{height:1263.000000px;}
.w0_c01293{width:892.920000px;}
.w1_c01293{width:893.250000px;}
.x0_c01293{left:0.000000px;}
.x4_c01293{left:127.558500px;}
.x2_c01293{left:137.122500px;}
.x1_c01293{left:143.770500px;}
.x3_c01293{left:177.007500px;}
.x5_c01293{left:435.249000px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.ls4_c01293{letter-spacing:0.000000pt;}
.ls0_c01293{letter-spacing:0.078221pt;}
.ls2_c01293{letter-spacing:0.087539pt;}
.ls3_c01293{letter-spacing:0.092873pt;}
.ls1_c01293{letter-spacing:23.724873pt;}
.ws2_c01293{word-spacing:-23.622682pt;}
.ws4_c01293{word-spacing:-23.544461pt;}
.wsd_c01293{word-spacing:-19.831698pt;}
.wsc_c01293{word-spacing:-19.765798pt;}
.wsa_c01293{word-spacing:-16.684034pt;}
.wse_c01293{word-spacing:-16.524633pt;}
.ws10_c01293{word-spacing:-15.727625pt;}
.wsf_c01293{word-spacing:-13.389734pt;}
.ws9_c01293{word-spacing:-13.283467pt;}
.wsb_c01293{word-spacing:-10.426795pt;}
.ws7_c01293{word-spacing:-8.878599pt;}
.ws8_c01293{word-spacing:-8.877777pt;}
.ws3_c01293{word-spacing:0.000000pt;}
.ws0_c01293{word-spacing:0.039110pt;}
.ws5_c01293{word-spacing:0.189730pt;}
.ws1_c01293{word-spacing:0.195063pt;}
.ws6_c01293{word-spacing:38.256533pt;}
._3_c01293{margin-left:-0.956410pt;}
._1_c01293{width:0.925811pt;}
._2_c01293{width:17.720725pt;}
._4_c01293{width:20.509673pt;}
._0_c01293{width:94.803610pt;}
.fs0_c01293{font-size:39.110400pt;}
.fs2_c01293{font-size:53.133867pt;}
.fs1_c01293{font-size:76.513067pt;}
.y0_c01293{bottom:0.000000pt;}
.y20_c01293{bottom:39.333333pt;}
.y1f_c01293{bottom:72.934667pt;}
.y1e_c01293{bottom:88.874667pt;}
.y1d_c01293{bottom:104.814667pt;}
.y1c_c01293{bottom:120.754667pt;}
.y1b_c01293{bottom:144.445333pt;}
.y1a_c01293{bottom:168.134667pt;}
.y19_c01293{bottom:191.824000pt;}
.y18_c01293{bottom:215.514667pt;}
.y17_c01293{bottom:252.869333pt;}
.y16_c01293{bottom:665.692000pt;}
.y15_c01293{bottom:680.304000pt;}
.y14_c01293{bottom:694.916000pt;}
.y13_c01293{bottom:709.528000pt;}
.y12_c01293{bottom:724.140000pt;}
.y11_c01293{bottom:738.752000pt;}
.y10_c01293{bottom:753.364000pt;}
.yf_c01293{bottom:767.976000pt;}
.ye_c01293{bottom:782.588000pt;}
.yd_c01293{bottom:797.198667pt;}
.yc_c01293{bottom:811.810667pt;}
.yb_c01293{bottom:841.034667pt;}
.ya_c01293{bottom:855.646667pt;}
.y9_c01293{bottom:870.258667pt;}
.y8_c01293{bottom:899.482667pt;}
.y7_c01293{bottom:914.094667pt;}
.y6_c01293{bottom:928.706667pt;}
.y5_c01293{bottom:943.317333pt;}
.y4_c01293{bottom:957.929333pt;}
.y3_c01293{bottom:972.541333pt;}
.y2_c01293{bottom:987.153333pt;}
.y1_c01293{bottom:1030.989333pt;}
.h3_c01293{height:31.280681pt;}
.h2_c01293{height:32.006363pt;}
.h5_c01293{height:36.010648pt;}
.h6_c01293{height:46.518078pt;}
.h4_c01293{height:51.855535pt;}
.h0_c01293{height:1122.520000pt;}
.h1_c01293{height:1122.666667pt;}
.w0_c01293{width:793.706667pt;}
.w1_c01293{width:794.000000pt;}
.x0_c01293{left:0.000000pt;}
.x4_c01293{left:113.385333pt;}
.x2_c01293{left:121.886667pt;}
.x1_c01293{left:127.796000pt;}
.x3_c01293{left:157.340000pt;}
.x5_c01293{left:386.888000pt;}
}





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

.ir_c01294:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_3da4be91151cb0a49f4438cd.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01294;src:url('chunks/assets/font_9c4a268037ef2776b3fdd9bc.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01294;src:url('chunks/assets/font_6015313480f5c68791a0f58d.woff2')format("woff");}.ff3_c01294{font-family:ff3_c01294;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01294;src:url('chunks/assets/font_04f077dc02f69388ccca4730.woff2')format("woff");}.ff4_c01294{font-family:ff4_c01294;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.ls4_c01294{letter-spacing:0.000000px;}
.ls1_c01294{letter-spacing:0.087998px;}
.ls2_c01294{letter-spacing:0.098482px;}
.ls0_c01294{letter-spacing:0.104482px;}
.ls3_c01294{letter-spacing:0.140482px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01294{word-spacing:-26.575517px;}
.ws3_c01294{word-spacing:-26.487518px;}
.ws1_c01294{word-spacing:-18.769538px;}
.ws0_c01294{word-spacing:-18.590212px;}
.ws8_c01294{word-spacing:0.000000px;}
.ws5_c01294{word-spacing:0.043999px;}
.ws9_c01294{word-spacing:0.056767px;}
.ws2_c01294{word-spacing:0.175997px;}
.ws7_c01294{word-spacing:0.213446px;}
.ws6_c01294{word-spacing:0.219446px;}
._1_c01294{margin-left:-3.825638px;}
._2_c01294{width:1.005737px;}
._0_c01294{width:20.622582px;}
.fc5_c01294{color:rgb(0,0,207);}
.fc4_c01294{color:rgb(79,153,5);}
.fc3_c01294{color:rgb(207,92,0);}
.fc2_c01294{color:rgb(33,74,135);}
.fc1_c01294{color:rgb(143,89,3);}
.fc0_c01294{color:rgb(0,0,0);}
.fs1_c01294{font-size:43.999200px;}
.fs0_c01294{font-size:59.775600px;}
.y0_c01294{bottom:0.000000px;}
.y30_c01294{bottom:44.250000px;}
.y2f_c01294{bottom:96.919500px;}
.y2e_c01294{bottom:113.358000px;}
.y2d_c01294{bottom:129.796500px;}
.y2c_c01294{bottom:146.235000px;}
.y2b_c01294{bottom:162.673500px;}
.y2a_c01294{bottom:179.112000px;}
.y29_c01294{bottom:195.550500px;}
.y28_c01294{bottom:211.989000px;}
.y27_c01294{bottom:228.427500px;}
.y26_c01294{bottom:244.866000px;}
.y25_c01294{bottom:261.304500px;}
.y24_c01294{bottom:294.180000px;}
.y23_c01294{bottom:310.618500px;}
.y22_c01294{bottom:327.057000px;}
.y21_c01294{bottom:359.934000px;}
.y20_c01294{bottom:376.372500px;}
.y1f_c01294{bottom:392.811000px;}
.y1e_c01294{bottom:409.249500px;}
.y1d_c01294{bottom:425.688000px;}
.y1c_c01294{bottom:442.125000px;}
.y1b_c01294{bottom:458.563500px;}
.y1a_c01294{bottom:475.002000px;}
.y19_c01294{bottom:491.440500px;}
.y18_c01294{bottom:507.879000px;}
.y17_c01294{bottom:524.317500px;}
.y16_c01294{bottom:540.756000px;}
.y15_c01294{bottom:557.194500px;}
.y14_c01294{bottom:573.633000px;}
.y13_c01294{bottom:622.947000px;}
.y12_c01294{bottom:639.385500px;}
.y11_c01294{bottom:672.262500px;}
.y10_c01294{bottom:688.701000px;}
.yf_c01294{bottom:721.578000px;}
.ye_c01294{bottom:738.016500px;}
.yd_c01294{bottom:754.455000px;}
.yc_c01294{bottom:770.893500px;}
.yb_c01294{bottom:803.769000px;}
.ya_c01294{bottom:820.207500px;}
.y9_c01294{bottom:836.646000px;}
.y8_c01294{bottom:853.084500px;}
.y7_c01294{bottom:869.523000px;}
.y6_c01294{bottom:885.961500px;}
.y5_c01294{bottom:902.400000px;}
.y4_c01294{bottom:918.838500px;}
.y3_c01294{bottom:934.903500px;}
.y2_c01294{bottom:1141.930500px;}
.y1_c01294{bottom:1159.863000px;}
.h3_c01294{height:35.190766px;}
.h4_c01294{height:36.007158px;}
.h2_c01294{height:52.332837px;}
.h0_c01294{height:1262.835000px;}
.h1_c01294{height:1263.000000px;}
.w0_c01294{width:892.920000px;}
.w1_c01294{width:893.250000px;}
.x0_c01294{left:0.000000px;}
.x1_c01294{left:127.558500px;}
.x2_c01294{left:137.122500px;}
.x4_c01294{left:177.007500px;}
.x3_c01294{left:230.185500px;}
.x5_c01294{left:435.249000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls4_c01294{letter-spacing:0.000000pt;}
.ls1_c01294{letter-spacing:0.078221pt;}
.ls2_c01294{letter-spacing:0.087539pt;}
.ls0_c01294{letter-spacing:0.092873pt;}
.ls3_c01294{letter-spacing:0.124873pt;}
.ws4_c01294{word-spacing:-23.622682pt;}
.ws3_c01294{word-spacing:-23.544461pt;}
.ws1_c01294{word-spacing:-16.684034pt;}
.ws0_c01294{word-spacing:-16.524633pt;}
.ws8_c01294{word-spacing:0.000000pt;}
.ws5_c01294{word-spacing:0.039110pt;}
.ws9_c01294{word-spacing:0.050460pt;}
.ws2_c01294{word-spacing:0.156442pt;}
.ws7_c01294{word-spacing:0.189730pt;}
.ws6_c01294{word-spacing:0.195063pt;}
._1_c01294{margin-left:-3.400567pt;}
._2_c01294{width:0.893988pt;}
._0_c01294{width:18.331184pt;}
.fs1_c01294{font-size:39.110400pt;}
.fs0_c01294{font-size:53.133867pt;}
.y0_c01294{bottom:0.000000pt;}
.y30_c01294{bottom:39.333333pt;}
.y2f_c01294{bottom:86.150667pt;}
.y2e_c01294{bottom:100.762667pt;}
.y2d_c01294{bottom:115.374667pt;}
.y2c_c01294{bottom:129.986667pt;}
.y2b_c01294{bottom:144.598667pt;}
.y2a_c01294{bottom:159.210667pt;}
.y29_c01294{bottom:173.822667pt;}
.y28_c01294{bottom:188.434667pt;}
.y27_c01294{bottom:203.046667pt;}
.y26_c01294{bottom:217.658667pt;}
.y25_c01294{bottom:232.270667pt;}
.y24_c01294{bottom:261.493333pt;}
.y23_c01294{bottom:276.105333pt;}
.y22_c01294{bottom:290.717333pt;}
.y21_c01294{bottom:319.941333pt;}
.y20_c01294{bottom:334.553333pt;}
.y1f_c01294{bottom:349.165333pt;}
.y1e_c01294{bottom:363.777333pt;}
.y1d_c01294{bottom:378.389333pt;}
.y1c_c01294{bottom:393.000000pt;}
.y1b_c01294{bottom:407.612000pt;}
.y1a_c01294{bottom:422.224000pt;}
.y19_c01294{bottom:436.836000pt;}
.y18_c01294{bottom:451.448000pt;}
.y17_c01294{bottom:466.060000pt;}
.y16_c01294{bottom:480.672000pt;}
.y15_c01294{bottom:495.284000pt;}
.y14_c01294{bottom:509.896000pt;}
.y13_c01294{bottom:553.730667pt;}
.y12_c01294{bottom:568.342667pt;}
.y11_c01294{bottom:597.566667pt;}
.y10_c01294{bottom:612.178667pt;}
.yf_c01294{bottom:641.402667pt;}
.ye_c01294{bottom:656.014667pt;}
.yd_c01294{bottom:670.626667pt;}
.yc_c01294{bottom:685.238667pt;}
.yb_c01294{bottom:714.461333pt;}
.ya_c01294{bottom:729.073333pt;}
.y9_c01294{bottom:743.685333pt;}
.y8_c01294{bottom:758.297333pt;}
.y7_c01294{bottom:772.909333pt;}
.y6_c01294{bottom:787.521333pt;}
.y5_c01294{bottom:802.133333pt;}
.y4_c01294{bottom:816.745333pt;}
.y3_c01294{bottom:831.025333pt;}
.y2_c01294{bottom:1015.049333pt;}
.y1_c01294{bottom:1030.989333pt;}
.h3_c01294{height:31.280681pt;}
.h4_c01294{height:32.006363pt;}
.h2_c01294{height:46.518078pt;}
.h0_c01294{height:1122.520000pt;}
.h1_c01294{height:1122.666667pt;}
.w0_c01294{width:793.706667pt;}
.w1_c01294{width:794.000000pt;}
.x0_c01294{left:0.000000pt;}
.x1_c01294{left:113.385333pt;}
.x2_c01294{left:121.886667pt;}
.x4_c01294{left:157.340000pt;}
.x3_c01294{left:204.609333pt;}
.x5_c01294{left:386.888000pt;}
}





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

.ir_c01295:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_835c7dd03cb96245bc6c1c97.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01295;src:url('chunks/assets/font_f07826ff419dc71d3e46e63c.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01295;src:url('chunks/assets/font_fd6e765ead2b34a6ffdec379.woff2')format("woff");}.ff3_c01295{font-family:ff3_c01295;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01295;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01295{font-family:ff4_c01295;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01295;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01295{font-family:ff5_c01295;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01295{vertical-align:0.000000px;}
.ls3_c01295{letter-spacing:0.000000px;}
.ls0_c01295{letter-spacing:0.087998px;}
.ls2_c01295{letter-spacing:0.098482px;}
.ls1_c01295{letter-spacing:0.104482px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01295{word-spacing:-33.713438px;}
.ws2_c01295{word-spacing:-26.575517px;}
.wse_c01295{word-spacing:-26.487518px;}
.ws9_c01295{word-spacing:-21.553319px;}
.ws8_c01295{word-spacing:-21.519216px;}
.ws5_c01295{word-spacing:-18.769538px;}
.ws7_c01295{word-spacing:-16.019861px;}
.ws4_c01295{word-spacing:-14.943900px;}
.wsa_c01295{word-spacing:-14.107042px;}
.wsb_c01295{word-spacing:-12.074671px;}
.ws1_c01295{word-spacing:-9.988424px;}
.ws3_c01295{word-spacing:-9.987499px;}
.ws6_c01295{word-spacing:-4.536144px;}
.ws12_c01295{word-spacing:0.000000px;}
.wsf_c01295{word-spacing:0.043999px;}
.ws15_c01295{word-spacing:0.056767px;}
.ws13_c01295{word-spacing:0.073250px;}
.ws14_c01295{word-spacing:0.083734px;}
.wsd_c01295{word-spacing:0.175997px;}
.ws16_c01295{word-spacing:0.202963px;}
.ws10_c01295{word-spacing:0.213446px;}
.ws11_c01295{word-spacing:0.219446px;}
.ws0_c01295{word-spacing:43.038600px;}
._4_c01295{margin-left:-3.825638px;}
._2_c01295{margin-left:-2.347817px;}
._1_c01295{margin-left:-1.075961px;}
._5_c01295{width:1.005737px;}
._0_c01295{width:19.935816px;}
._3_c01295{width:40.109428px;}
._7_c01295{width:53.283031px;}
._6_c01295{width:79.858548px;}
._8_c01295{width:133.452408px;}
.fc6_c01295{color:rgb(0,0,207);}
.fc5_c01295{color:rgb(79,153,5);}
.fc3_c01295{color:rgb(33,74,135);}
.fc2_c01295{color:rgb(143,89,3);}
.fc4_c01295{color:rgb(207,92,0);}
.fc1_c01295{color:rgb(6,69,173);}
.fc0_c01295{color:rgb(0,0,0);}
.fs2_c01295{font-size:43.999200px;}
.fs1_c01295{font-size:59.775600px;}
.fs0_c01295{font-size:86.077200px;}
.y0_c01295{bottom:0.000000px;}
.y20_c01295{bottom:44.250000px;}
.y1f_c01295{bottom:86.982000px;}
.y1e_c01295{bottom:103.420500px;}
.y1d_c01295{bottom:119.859000px;}
.y1c_c01295{bottom:136.297500px;}
.y1b_c01295{bottom:152.736000px;}
.y1a_c01295{bottom:169.174500px;}
.y19_c01295{bottom:185.613000px;}
.y18_c01295{bottom:202.051500px;}
.y17_c01295{bottom:218.490000px;}
.y16_c01295{bottom:234.927000px;}
.y15_c01295{bottom:251.365500px;}
.y14_c01295{bottom:267.804000px;}
.y13_c01295{bottom:284.242500px;}
.y12_c01295{bottom:300.681000px;}
.y11_c01295{bottom:317.119500px;}
.y10_c01295{bottom:349.996500px;}
.yf_c01295{bottom:366.435000px;}
.ye_c01295{bottom:415.749000px;}
.yd_c01295{bottom:432.187500px;}
.yc_c01295{bottom:448.252500px;}
.yb_c01295{bottom:493.890000px;}
.ya_c01295{bottom:511.822500px;}
.y9_c01295{bottom:529.756500px;}
.y8_c01295{bottom:547.689000px;}
.y7_c01295{bottom:565.621500px;}
.y6_c01295{bottom:583.554000px;}
.y5_c01295{bottom:610.633500px;}
.y4_c01295{bottom:637.714500px;}
.y3_c01295{bottom:664.794000px;}
.y2_c01295{bottom:691.873500px;}
.y1_c01295{bottom:734.407500px;}
.h5_c01295{height:35.190766px;}
.h6_c01295{height:36.007158px;}
.h3_c01295{height:40.511979px;}
.h4_c01295{height:52.332837px;}
.h2_c01295{height:58.337477px;}
.h0_c01295{height:1262.835000px;}
.h1_c01295{height:1263.000000px;}
.w0_c01295{width:892.920000px;}
.w1_c01295{width:893.250000px;}
.x0_c01295{left:0.000000px;}
.x1_c01295{left:127.558500px;}
.x2_c01295{left:137.122500px;}
.x3_c01295{left:143.770500px;}
.x4_c01295{left:435.249000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls3_c01295{letter-spacing:0.000000pt;}
.ls0_c01295{letter-spacing:0.078221pt;}
.ls2_c01295{letter-spacing:0.087539pt;}
.ls1_c01295{letter-spacing:0.092873pt;}
.wsc_c01295{word-spacing:-29.967501pt;}
.ws2_c01295{word-spacing:-23.622682pt;}
.wse_c01295{word-spacing:-23.544461pt;}
.ws9_c01295{word-spacing:-19.158506pt;}
.ws8_c01295{word-spacing:-19.128192pt;}
.ws5_c01295{word-spacing:-16.684034pt;}
.ws7_c01295{word-spacing:-14.239876pt;}
.ws4_c01295{word-spacing:-13.283467pt;}
.wsa_c01295{word-spacing:-12.539593pt;}
.wsb_c01295{word-spacing:-10.733041pt;}
.ws1_c01295{word-spacing:-8.878599pt;}
.ws3_c01295{word-spacing:-8.877777pt;}
.ws6_c01295{word-spacing:-4.032128pt;}
.ws12_c01295{word-spacing:0.000000pt;}
.wsf_c01295{word-spacing:0.039110pt;}
.ws15_c01295{word-spacing:0.050460pt;}
.ws13_c01295{word-spacing:0.065111pt;}
.ws14_c01295{word-spacing:0.074430pt;}
.wsd_c01295{word-spacing:0.156442pt;}
.ws16_c01295{word-spacing:0.180412pt;}
.ws10_c01295{word-spacing:0.189730pt;}
.ws11_c01295{word-spacing:0.195063pt;}
.ws0_c01295{word-spacing:38.256533pt;}
._4_c01295{margin-left:-3.400567pt;}
._2_c01295{margin-left:-2.086948pt;}
._1_c01295{margin-left:-0.956410pt;}
._5_c01295{width:0.893988pt;}
._0_c01295{width:17.720725pt;}
._3_c01295{width:35.652825pt;}
._7_c01295{width:47.362694pt;}
._6_c01295{width:70.985376pt;}
._8_c01295{width:118.624363pt;}
.fs2_c01295{font-size:39.110400pt;}
.fs1_c01295{font-size:53.133867pt;}
.fs0_c01295{font-size:76.513067pt;}
.y0_c01295{bottom:0.000000pt;}
.y20_c01295{bottom:39.333333pt;}
.y1f_c01295{bottom:77.317333pt;}
.y1e_c01295{bottom:91.929333pt;}
.y1d_c01295{bottom:106.541333pt;}
.y1c_c01295{bottom:121.153333pt;}
.y1b_c01295{bottom:135.765333pt;}
.y1a_c01295{bottom:150.377333pt;}
.y19_c01295{bottom:164.989333pt;}
.y18_c01295{bottom:179.601333pt;}
.y17_c01295{bottom:194.213333pt;}
.y16_c01295{bottom:208.824000pt;}
.y15_c01295{bottom:223.436000pt;}
.y14_c01295{bottom:238.048000pt;}
.y13_c01295{bottom:252.660000pt;}
.y12_c01295{bottom:267.272000pt;}
.y11_c01295{bottom:281.884000pt;}
.y10_c01295{bottom:311.108000pt;}
.yf_c01295{bottom:325.720000pt;}
.ye_c01295{bottom:369.554667pt;}
.yd_c01295{bottom:384.166667pt;}
.yc_c01295{bottom:398.446667pt;}
.yb_c01295{bottom:439.013333pt;}
.ya_c01295{bottom:454.953333pt;}
.y9_c01295{bottom:470.894667pt;}
.y8_c01295{bottom:486.834667pt;}
.y7_c01295{bottom:502.774667pt;}
.y6_c01295{bottom:518.714667pt;}
.y5_c01295{bottom:542.785333pt;}
.y4_c01295{bottom:566.857333pt;}
.y3_c01295{bottom:590.928000pt;}
.y2_c01295{bottom:614.998667pt;}
.y1_c01295{bottom:652.806667pt;}
.h5_c01295{height:31.280681pt;}
.h6_c01295{height:32.006363pt;}
.h3_c01295{height:36.010648pt;}
.h4_c01295{height:46.518078pt;}
.h2_c01295{height:51.855535pt;}
.h0_c01295{height:1122.520000pt;}
.h1_c01295{height:1122.666667pt;}
.w0_c01295{width:793.706667pt;}
.w1_c01295{width:794.000000pt;}
.x0_c01295{left:0.000000pt;}
.x1_c01295{left:113.385333pt;}
.x2_c01295{left:121.886667pt;}
.x3_c01295{left:127.796000pt;}
.x4_c01295{left:386.888000pt;}
}





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

.ir_c01296:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_12bf6062e853d51e3a02496e.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01296;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01296;src:url('chunks/assets/font_cf4bdf9bb04cfb5baf31bb4d.woff2')format("woff");}.ff3_c01296{font-family:ff3_c01296;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01296;src:url('chunks/assets/font_735dac0fe4b8f95ff4d5e0ef.woff2')format("woff");}.ff4_c01296{font-family:ff4_c01296;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01296;src:url('chunks/assets/font_1d100244f1cc52216e953596.woff2')format("woff");}.ff5_c01296{font-family:ff5_c01296;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01296{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01296{vertical-align:0.000000px;}
.ls4_c01296{letter-spacing:0.000000px;}
.ls0_c01296{letter-spacing:0.087998px;}
.ls2_c01296{letter-spacing:0.098482px;}
.ls3_c01296{letter-spacing:0.104482px;}
.ls1_c01296{letter-spacing:26.690482px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01296{word-spacing:-26.575517px;}
.ws4_c01296{word-spacing:-26.487518px;}
.wse_c01296{word-spacing:-21.553319px;}
.wsd_c01296{word-spacing:-21.519216px;}
.wsa_c01296{word-spacing:-18.769538px;}
.wsc_c01296{word-spacing:-17.633802px;}
.ws9_c01296{word-spacing:-14.943900px;}
.wsf_c01296{word-spacing:-14.107042px;}
.ws10_c01296{word-spacing:-12.074671px;}
.ws7_c01296{word-spacing:-9.988424px;}
.ws8_c01296{word-spacing:-9.987499px;}
.wsb_c01296{word-spacing:-7.686144px;}
.ws3_c01296{word-spacing:0.000000px;}
.ws0_c01296{word-spacing:0.043999px;}
.ws5_c01296{word-spacing:0.213446px;}
.ws1_c01296{word-spacing:0.219446px;}
.ws6_c01296{word-spacing:43.038600px;}
._3_c01296{margin-left:-2.347817px;}
._2_c01296{margin-left:-1.075961px;}
._0_c01296{width:1.041538px;}
._1_c01296{width:19.935816px;}
._4_c01296{width:40.109428px;}
.fc5_c01296{color:rgb(79,153,5);}
.fc4_c01296{color:rgb(143,89,3);}
.fc3_c01296{color:rgb(0,0,0);}
.fc6_c01296{color:rgb(6,69,173);}
.fc2_c01296{color:rgb(207,92,0);}
.fc1_c01296{color:rgb(0,0,207);}
.fc0_c01296{color:rgb(33,74,135);}
.fs0_c01296{font-size:43.999200px;}
.fs2_c01296{font-size:59.775600px;}
.fs1_c01296{font-size:86.077200px;}
.y0_c01296{bottom:0.000000px;}
.y20_c01296{bottom:44.250000px;}
.y1f_c01296{bottom:82.051500px;}
.y1e_c01296{bottom:99.984000px;}
.y1d_c01296{bottom:117.916500px;}
.y1c_c01296{bottom:135.849000px;}
.y1b_c01296{bottom:162.501000px;}
.y1a_c01296{bottom:189.151500px;}
.y19_c01296{bottom:215.802000px;}
.y18_c01296{bottom:242.454000px;}
.y17_c01296{bottom:284.478000px;}
.y16_c01296{bottom:748.903500px;}
.y15_c01296{bottom:765.342000px;}
.y14_c01296{bottom:781.780500px;}
.y13_c01296{bottom:798.219000px;}
.y12_c01296{bottom:814.657500px;}
.y11_c01296{bottom:831.096000px;}
.y10_c01296{bottom:847.534500px;}
.yf_c01296{bottom:863.973000px;}
.ye_c01296{bottom:880.411500px;}
.yd_c01296{bottom:896.848500px;}
.yc_c01296{bottom:913.287000px;}
.yb_c01296{bottom:946.164000px;}
.ya_c01296{bottom:962.602500px;}
.y9_c01296{bottom:979.041000px;}
.y8_c01296{bottom:1011.918000px;}
.y7_c01296{bottom:1028.356500px;}
.y6_c01296{bottom:1044.795000px;}
.y5_c01296{bottom:1061.232000px;}
.y4_c01296{bottom:1077.670500px;}
.y3_c01296{bottom:1094.109000px;}
.y2_c01296{bottom:1110.547500px;}
.y1_c01296{bottom:1159.863000px;}
.h3_c01296{height:35.190766px;}
.h2_c01296{height:36.007158px;}
.h5_c01296{height:40.511979px;}
.h6_c01296{height:52.332837px;}
.h4_c01296{height:58.337477px;}
.h0_c01296{height:1262.835000px;}
.h1_c01296{height:1263.000000px;}
.w0_c01296{width:892.920000px;}
.w1_c01296{width:893.250000px;}
.x0_c01296{left:0.000000px;}
.x4_c01296{left:127.558500px;}
.x2_c01296{left:137.122500px;}
.x1_c01296{left:143.770500px;}
.x3_c01296{left:177.007500px;}
.x5_c01296{left:435.249000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls4_c01296{letter-spacing:0.000000pt;}
.ls0_c01296{letter-spacing:0.078221pt;}
.ls2_c01296{letter-spacing:0.087539pt;}
.ls3_c01296{letter-spacing:0.092873pt;}
.ls1_c01296{letter-spacing:23.724873pt;}
.ws2_c01296{word-spacing:-23.622682pt;}
.ws4_c01296{word-spacing:-23.544461pt;}
.wse_c01296{word-spacing:-19.158506pt;}
.wsd_c01296{word-spacing:-19.128192pt;}
.wsa_c01296{word-spacing:-16.684034pt;}
.wsc_c01296{word-spacing:-15.674491pt;}
.ws9_c01296{word-spacing:-13.283467pt;}
.wsf_c01296{word-spacing:-12.539593pt;}
.ws10_c01296{word-spacing:-10.733041pt;}
.ws7_c01296{word-spacing:-8.878599pt;}
.ws8_c01296{word-spacing:-8.877777pt;}
.wsb_c01296{word-spacing:-6.832128pt;}
.ws3_c01296{word-spacing:0.000000pt;}
.ws0_c01296{word-spacing:0.039110pt;}
.ws5_c01296{word-spacing:0.189730pt;}
.ws1_c01296{word-spacing:0.195063pt;}
.ws6_c01296{word-spacing:38.256533pt;}
._3_c01296{margin-left:-2.086948pt;}
._2_c01296{margin-left:-0.956410pt;}
._0_c01296{width:0.925811pt;}
._1_c01296{width:17.720725pt;}
._4_c01296{width:35.652825pt;}
.fs0_c01296{font-size:39.110400pt;}
.fs2_c01296{font-size:53.133867pt;}
.fs1_c01296{font-size:76.513067pt;}
.y0_c01296{bottom:0.000000pt;}
.y20_c01296{bottom:39.333333pt;}
.y1f_c01296{bottom:72.934667pt;}
.y1e_c01296{bottom:88.874667pt;}
.y1d_c01296{bottom:104.814667pt;}
.y1c_c01296{bottom:120.754667pt;}
.y1b_c01296{bottom:144.445333pt;}
.y1a_c01296{bottom:168.134667pt;}
.y19_c01296{bottom:191.824000pt;}
.y18_c01296{bottom:215.514667pt;}
.y17_c01296{bottom:252.869333pt;}
.y16_c01296{bottom:665.692000pt;}
.y15_c01296{bottom:680.304000pt;}
.y14_c01296{bottom:694.916000pt;}
.y13_c01296{bottom:709.528000pt;}
.y12_c01296{bottom:724.140000pt;}
.y11_c01296{bottom:738.752000pt;}
.y10_c01296{bottom:753.364000pt;}
.yf_c01296{bottom:767.976000pt;}
.ye_c01296{bottom:782.588000pt;}
.yd_c01296{bottom:797.198667pt;}
.yc_c01296{bottom:811.810667pt;}
.yb_c01296{bottom:841.034667pt;}
.ya_c01296{bottom:855.646667pt;}
.y9_c01296{bottom:870.258667pt;}
.y8_c01296{bottom:899.482667pt;}
.y7_c01296{bottom:914.094667pt;}
.y6_c01296{bottom:928.706667pt;}
.y5_c01296{bottom:943.317333pt;}
.y4_c01296{bottom:957.929333pt;}
.y3_c01296{bottom:972.541333pt;}
.y2_c01296{bottom:987.153333pt;}
.y1_c01296{bottom:1030.989333pt;}
.h3_c01296{height:31.280681pt;}
.h2_c01296{height:32.006363pt;}
.h5_c01296{height:36.010648pt;}
.h6_c01296{height:46.518078pt;}
.h4_c01296{height:51.855535pt;}
.h0_c01296{height:1122.520000pt;}
.h1_c01296{height:1122.666667pt;}
.w0_c01296{width:793.706667pt;}
.w1_c01296{width:794.000000pt;}
.x0_c01296{left:0.000000pt;}
.x4_c01296{left:113.385333pt;}
.x2_c01296{left:121.886667pt;}
.x1_c01296{left:127.796000pt;}
.x3_c01296{left:157.340000pt;}
.x5_c01296{left:386.888000pt;}
}





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

.ir_c01297:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_23a96cfe2c252e54af3d90ea.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01297;src:url('chunks/assets/font_288d276ffad4d80a363fb629.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01297;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01297{font-family:ff3_c01297;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01297;src:url('chunks/assets/font_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c01297{font-family:ff4_c01297;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01297{vertical-align:0.000000px;}
.ls4_c01297{letter-spacing:0.000000px;}
.ls1_c01297{letter-spacing:0.087998px;}
.ls2_c01297{letter-spacing:0.098482px;}
.ls0_c01297{letter-spacing:0.104482px;}
.ls3_c01297{letter-spacing:26.690482px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01297{word-spacing:-33.713438px;}
.ws4_c01297{word-spacing:-26.575517px;}
.ws3_c01297{word-spacing:-26.487518px;}
.ws0_c01297{word-spacing:-18.769538px;}
.ws8_c01297{word-spacing:0.000000px;}
.ws5_c01297{word-spacing:0.043999px;}
.wsb_c01297{word-spacing:0.056767px;}
.ws9_c01297{word-spacing:0.073250px;}
.wsa_c01297{word-spacing:0.083734px;}
.ws2_c01297{word-spacing:0.175997px;}
.wsc_c01297{word-spacing:0.202963px;}
.ws6_c01297{word-spacing:0.213446px;}
.ws7_c01297{word-spacing:0.219446px;}
._0_c01297{margin-left:-3.825638px;}
._1_c01297{width:1.005737px;}
._3_c01297{width:53.283031px;}
._2_c01297{width:79.858548px;}
._5_c01297{width:106.654061px;}
._4_c01297{width:133.452408px;}
.fc5_c01297{color:rgb(0,0,207);}
.fc4_c01297{color:rgb(79,153,5);}
.fc3_c01297{color:rgb(207,92,0);}
.fc2_c01297{color:rgb(33,74,135);}
.fc1_c01297{color:rgb(143,89,3);}
.fc0_c01297{color:rgb(0,0,0);}
.fs1_c01297{font-size:43.999200px;}
.fs0_c01297{font-size:59.775600px;}
.y0_c01297{bottom:0.000000px;}
.y2d_c01297{bottom:44.250000px;}
.y2c_c01297{bottom:96.919500px;}
.y2b_c01297{bottom:113.358000px;}
.y2a_c01297{bottom:129.796500px;}
.y29_c01297{bottom:146.235000px;}
.y28_c01297{bottom:162.673500px;}
.y27_c01297{bottom:179.112000px;}
.y26_c01297{bottom:195.550500px;}
.y25_c01297{bottom:211.989000px;}
.y24_c01297{bottom:228.427500px;}
.y23_c01297{bottom:244.866000px;}
.y22_c01297{bottom:261.304500px;}
.y21_c01297{bottom:294.180000px;}
.y20_c01297{bottom:310.618500px;}
.y1f_c01297{bottom:327.057000px;}
.y1e_c01297{bottom:359.934000px;}
.y1d_c01297{bottom:376.372500px;}
.y1c_c01297{bottom:392.811000px;}
.y1b_c01297{bottom:409.249500px;}
.y1a_c01297{bottom:425.688000px;}
.y19_c01297{bottom:442.125000px;}
.y18_c01297{bottom:458.563500px;}
.y17_c01297{bottom:507.879000px;}
.y16_c01297{bottom:524.317500px;}
.y15_c01297{bottom:540.756000px;}
.y14_c01297{bottom:557.194500px;}
.y13_c01297{bottom:573.633000px;}
.y12_c01297{bottom:590.071500px;}
.y11_c01297{bottom:606.508500px;}
.y10_c01297{bottom:622.947000px;}
.yf_c01297{bottom:639.385500px;}
.ye_c01297{bottom:655.824000px;}
.yd_c01297{bottom:672.262500px;}
.yc_c01297{bottom:688.701000px;}
.yb_c01297{bottom:705.139500px;}
.ya_c01297{bottom:721.578000px;}
.y9_c01297{bottom:738.016500px;}
.y8_c01297{bottom:754.455000px;}
.y7_c01297{bottom:787.330500px;}
.y6_c01297{bottom:803.769000px;}
.y5_c01297{bottom:853.084500px;}
.y4_c01297{bottom:869.523000px;}
.y3_c01297{bottom:885.588000px;}
.y2_c01297{bottom:1141.930500px;}
.y1_c01297{bottom:1159.863000px;}
.h3_c01297{height:35.190766px;}
.h4_c01297{height:36.007158px;}
.h2_c01297{height:52.332837px;}
.h0_c01297{height:1262.835000px;}
.h1_c01297{height:1263.000000px;}
.w0_c01297{width:892.920000px;}
.w1_c01297{width:893.250000px;}
.x0_c01297{left:0.000000px;}
.x1_c01297{left:127.558500px;}
.x2_c01297{left:137.122500px;}
.x3_c01297{left:143.770500px;}
.x4_c01297{left:177.007500px;}
.x5_c01297{left:435.249000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls4_c01297{letter-spacing:0.000000pt;}
.ls1_c01297{letter-spacing:0.078221pt;}
.ls2_c01297{letter-spacing:0.087539pt;}
.ls0_c01297{letter-spacing:0.092873pt;}
.ls3_c01297{letter-spacing:23.724873pt;}
.ws1_c01297{word-spacing:-29.967501pt;}
.ws4_c01297{word-spacing:-23.622682pt;}
.ws3_c01297{word-spacing:-23.544461pt;}
.ws0_c01297{word-spacing:-16.684034pt;}
.ws8_c01297{word-spacing:0.000000pt;}
.ws5_c01297{word-spacing:0.039110pt;}
.wsb_c01297{word-spacing:0.050460pt;}
.ws9_c01297{word-spacing:0.065111pt;}
.wsa_c01297{word-spacing:0.074430pt;}
.ws2_c01297{word-spacing:0.156442pt;}
.wsc_c01297{word-spacing:0.180412pt;}
.ws6_c01297{word-spacing:0.189730pt;}
.ws7_c01297{word-spacing:0.195063pt;}
._0_c01297{margin-left:-3.400567pt;}
._1_c01297{width:0.893988pt;}
._3_c01297{width:47.362694pt;}
._2_c01297{width:70.985376pt;}
._5_c01297{width:94.803610pt;}
._4_c01297{width:118.624363pt;}
.fs1_c01297{font-size:39.110400pt;}
.fs0_c01297{font-size:53.133867pt;}
.y0_c01297{bottom:0.000000pt;}
.y2d_c01297{bottom:39.333333pt;}
.y2c_c01297{bottom:86.150667pt;}
.y2b_c01297{bottom:100.762667pt;}
.y2a_c01297{bottom:115.374667pt;}
.y29_c01297{bottom:129.986667pt;}
.y28_c01297{bottom:144.598667pt;}
.y27_c01297{bottom:159.210667pt;}
.y26_c01297{bottom:173.822667pt;}
.y25_c01297{bottom:188.434667pt;}
.y24_c01297{bottom:203.046667pt;}
.y23_c01297{bottom:217.658667pt;}
.y22_c01297{bottom:232.270667pt;}
.y21_c01297{bottom:261.493333pt;}
.y20_c01297{bottom:276.105333pt;}
.y1f_c01297{bottom:290.717333pt;}
.y1e_c01297{bottom:319.941333pt;}
.y1d_c01297{bottom:334.553333pt;}
.y1c_c01297{bottom:349.165333pt;}
.y1b_c01297{bottom:363.777333pt;}
.y1a_c01297{bottom:378.389333pt;}
.y19_c01297{bottom:393.000000pt;}
.y18_c01297{bottom:407.612000pt;}
.y17_c01297{bottom:451.448000pt;}
.y16_c01297{bottom:466.060000pt;}
.y15_c01297{bottom:480.672000pt;}
.y14_c01297{bottom:495.284000pt;}
.y13_c01297{bottom:509.896000pt;}
.y12_c01297{bottom:524.508000pt;}
.y11_c01297{bottom:539.118667pt;}
.y10_c01297{bottom:553.730667pt;}
.yf_c01297{bottom:568.342667pt;}
.ye_c01297{bottom:582.954667pt;}
.yd_c01297{bottom:597.566667pt;}
.yc_c01297{bottom:612.178667pt;}
.yb_c01297{bottom:626.790667pt;}
.ya_c01297{bottom:641.402667pt;}
.y9_c01297{bottom:656.014667pt;}
.y8_c01297{bottom:670.626667pt;}
.y7_c01297{bottom:699.849333pt;}
.y6_c01297{bottom:714.461333pt;}
.y5_c01297{bottom:758.297333pt;}
.y4_c01297{bottom:772.909333pt;}
.y3_c01297{bottom:787.189333pt;}
.y2_c01297{bottom:1015.049333pt;}
.y1_c01297{bottom:1030.989333pt;}
.h3_c01297{height:31.280681pt;}
.h4_c01297{height:32.006363pt;}
.h2_c01297{height:46.518078pt;}
.h0_c01297{height:1122.520000pt;}
.h1_c01297{height:1122.666667pt;}
.w0_c01297{width:793.706667pt;}
.w1_c01297{width:794.000000pt;}
.x0_c01297{left:0.000000pt;}
.x1_c01297{left:113.385333pt;}
.x2_c01297{left:121.886667pt;}
.x3_c01297{left:127.796000pt;}
.x4_c01297{left:157.340000pt;}
.x5_c01297{left:386.888000pt;}
}





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

.ir_c01298:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_a7af0ec8a3a6411e047b60ed.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01298;src:url('chunks/assets/font_258c7eab896c6c4f767c22f3.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01298;src:url('chunks/assets/font_c835e8040fc3ef5111f11260.woff2')format("woff");}.ff3_c01298{font-family:ff3_c01298;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01298;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01298{font-family:ff4_c01298;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01298;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01298{font-family:ff5_c01298;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01298{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01298{vertical-align:0.000000px;}
.ls3_c01298{letter-spacing:0.000000px;}
.ls0_c01298{letter-spacing:0.087998px;}
.ls2_c01298{letter-spacing:0.098482px;}
.ls1_c01298{letter-spacing:0.104482px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01298{word-spacing:-33.713438px;}
.ws2_c01298{word-spacing:-26.575517px;}
.wse_c01298{word-spacing:-26.487518px;}
.ws9_c01298{word-spacing:-21.553319px;}
.ws8_c01298{word-spacing:-21.519216px;}
.ws5_c01298{word-spacing:-18.769538px;}
.ws7_c01298{word-spacing:-17.633802px;}
.ws4_c01298{word-spacing:-14.943900px;}
.wsa_c01298{word-spacing:-14.107042px;}
.wsb_c01298{word-spacing:-12.074671px;}
.ws1_c01298{word-spacing:-9.988424px;}
.ws3_c01298{word-spacing:-9.987499px;}
.ws6_c01298{word-spacing:-7.686144px;}
.ws12_c01298{word-spacing:0.000000px;}
.wsf_c01298{word-spacing:0.043999px;}
.ws15_c01298{word-spacing:0.056767px;}
.ws13_c01298{word-spacing:0.073250px;}
.ws14_c01298{word-spacing:0.083734px;}
.wsd_c01298{word-spacing:0.175997px;}
.ws16_c01298{word-spacing:0.202963px;}
.ws10_c01298{word-spacing:0.213446px;}
.ws11_c01298{word-spacing:0.219446px;}
.ws0_c01298{word-spacing:43.038600px;}
._4_c01298{margin-left:-3.825638px;}
._2_c01298{margin-left:-2.347817px;}
._1_c01298{margin-left:-1.075961px;}
._5_c01298{width:1.005737px;}
._0_c01298{width:19.935816px;}
._3_c01298{width:40.109428px;}
._7_c01298{width:53.283031px;}
._6_c01298{width:79.858548px;}
._8_c01298{width:133.452408px;}
.fc6_c01298{color:rgb(0,0,207);}
.fc5_c01298{color:rgb(79,153,5);}
.fc3_c01298{color:rgb(33,74,135);}
.fc2_c01298{color:rgb(143,89,3);}
.fc4_c01298{color:rgb(207,92,0);}
.fc1_c01298{color:rgb(6,69,173);}
.fc0_c01298{color:rgb(0,0,0);}
.fs2_c01298{font-size:43.999200px;}
.fs1_c01298{font-size:59.775600px;}
.fs0_c01298{font-size:86.077200px;}
.y0_c01298{bottom:0.000000px;}
.y20_c01298{bottom:44.250000px;}
.y1f_c01298{bottom:86.982000px;}
.y1e_c01298{bottom:103.420500px;}
.y1d_c01298{bottom:119.859000px;}
.y1c_c01298{bottom:136.297500px;}
.y1b_c01298{bottom:152.736000px;}
.y1a_c01298{bottom:169.174500px;}
.y19_c01298{bottom:185.613000px;}
.y18_c01298{bottom:202.051500px;}
.y17_c01298{bottom:218.490000px;}
.y16_c01298{bottom:234.927000px;}
.y15_c01298{bottom:251.365500px;}
.y14_c01298{bottom:267.804000px;}
.y13_c01298{bottom:284.242500px;}
.y12_c01298{bottom:300.681000px;}
.y11_c01298{bottom:317.119500px;}
.y10_c01298{bottom:349.996500px;}
.yf_c01298{bottom:366.435000px;}
.ye_c01298{bottom:415.749000px;}
.yd_c01298{bottom:432.187500px;}
.yc_c01298{bottom:448.252500px;}
.yb_c01298{bottom:493.890000px;}
.ya_c01298{bottom:511.822500px;}
.y9_c01298{bottom:529.756500px;}
.y8_c01298{bottom:547.689000px;}
.y7_c01298{bottom:565.621500px;}
.y6_c01298{bottom:583.554000px;}
.y5_c01298{bottom:610.633500px;}
.y4_c01298{bottom:637.714500px;}
.y3_c01298{bottom:664.794000px;}
.y2_c01298{bottom:691.873500px;}
.y1_c01298{bottom:734.407500px;}
.h5_c01298{height:35.190766px;}
.h6_c01298{height:36.007158px;}
.h3_c01298{height:40.511979px;}
.h4_c01298{height:52.332837px;}
.h2_c01298{height:58.337477px;}
.h0_c01298{height:1262.835000px;}
.h1_c01298{height:1263.000000px;}
.w0_c01298{width:892.920000px;}
.w1_c01298{width:893.250000px;}
.x0_c01298{left:0.000000px;}
.x1_c01298{left:127.558500px;}
.x2_c01298{left:137.122500px;}
.x3_c01298{left:143.770500px;}
.x4_c01298{left:435.249000px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls3_c01298{letter-spacing:0.000000pt;}
.ls0_c01298{letter-spacing:0.078221pt;}
.ls2_c01298{letter-spacing:0.087539pt;}
.ls1_c01298{letter-spacing:0.092873pt;}
.wsc_c01298{word-spacing:-29.967501pt;}
.ws2_c01298{word-spacing:-23.622682pt;}
.wse_c01298{word-spacing:-23.544461pt;}
.ws9_c01298{word-spacing:-19.158506pt;}
.ws8_c01298{word-spacing:-19.128192pt;}
.ws5_c01298{word-spacing:-16.684034pt;}
.ws7_c01298{word-spacing:-15.674491pt;}
.ws4_c01298{word-spacing:-13.283467pt;}
.wsa_c01298{word-spacing:-12.539593pt;}
.wsb_c01298{word-spacing:-10.733041pt;}
.ws1_c01298{word-spacing:-8.878599pt;}
.ws3_c01298{word-spacing:-8.877777pt;}
.ws6_c01298{word-spacing:-6.832128pt;}
.ws12_c01298{word-spacing:0.000000pt;}
.wsf_c01298{word-spacing:0.039110pt;}
.ws15_c01298{word-spacing:0.050460pt;}
.ws13_c01298{word-spacing:0.065111pt;}
.ws14_c01298{word-spacing:0.074430pt;}
.wsd_c01298{word-spacing:0.156442pt;}
.ws16_c01298{word-spacing:0.180412pt;}
.ws10_c01298{word-spacing:0.189730pt;}
.ws11_c01298{word-spacing:0.195063pt;}
.ws0_c01298{word-spacing:38.256533pt;}
._4_c01298{margin-left:-3.400567pt;}
._2_c01298{margin-left:-2.086948pt;}
._1_c01298{margin-left:-0.956410pt;}
._5_c01298{width:0.893988pt;}
._0_c01298{width:17.720725pt;}
._3_c01298{width:35.652825pt;}
._7_c01298{width:47.362694pt;}
._6_c01298{width:70.985376pt;}
._8_c01298{width:118.624363pt;}
.fs2_c01298{font-size:39.110400pt;}
.fs1_c01298{font-size:53.133867pt;}
.fs0_c01298{font-size:76.513067pt;}
.y0_c01298{bottom:0.000000pt;}
.y20_c01298{bottom:39.333333pt;}
.y1f_c01298{bottom:77.317333pt;}
.y1e_c01298{bottom:91.929333pt;}
.y1d_c01298{bottom:106.541333pt;}
.y1c_c01298{bottom:121.153333pt;}
.y1b_c01298{bottom:135.765333pt;}
.y1a_c01298{bottom:150.377333pt;}
.y19_c01298{bottom:164.989333pt;}
.y18_c01298{bottom:179.601333pt;}
.y17_c01298{bottom:194.213333pt;}
.y16_c01298{bottom:208.824000pt;}
.y15_c01298{bottom:223.436000pt;}
.y14_c01298{bottom:238.048000pt;}
.y13_c01298{bottom:252.660000pt;}
.y12_c01298{bottom:267.272000pt;}
.y11_c01298{bottom:281.884000pt;}
.y10_c01298{bottom:311.108000pt;}
.yf_c01298{bottom:325.720000pt;}
.ye_c01298{bottom:369.554667pt;}
.yd_c01298{bottom:384.166667pt;}
.yc_c01298{bottom:398.446667pt;}
.yb_c01298{bottom:439.013333pt;}
.ya_c01298{bottom:454.953333pt;}
.y9_c01298{bottom:470.894667pt;}
.y8_c01298{bottom:486.834667pt;}
.y7_c01298{bottom:502.774667pt;}
.y6_c01298{bottom:518.714667pt;}
.y5_c01298{bottom:542.785333pt;}
.y4_c01298{bottom:566.857333pt;}
.y3_c01298{bottom:590.928000pt;}
.y2_c01298{bottom:614.998667pt;}
.y1_c01298{bottom:652.806667pt;}
.h5_c01298{height:31.280681pt;}
.h6_c01298{height:32.006363pt;}
.h3_c01298{height:36.010648pt;}
.h4_c01298{height:46.518078pt;}
.h2_c01298{height:51.855535pt;}
.h0_c01298{height:1122.520000pt;}
.h1_c01298{height:1122.666667pt;}
.w0_c01298{width:793.706667pt;}
.w1_c01298{width:794.000000pt;}
.x0_c01298{left:0.000000pt;}
.x1_c01298{left:113.385333pt;}
.x2_c01298{left:121.886667pt;}
.x3_c01298{left:127.796000pt;}
.x4_c01298{left:386.888000pt;}
}





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

.ir_c01299:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_6afbdc40d88d214052bb5fc7.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01299;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01299;src:url('chunks/assets/font_fe11bcc0b261849cebbed0a9.woff2')format("woff");}.ff3_c01299{font-family:ff3_c01299;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01299;src:url('chunks/assets/font_4c387e3fa9f4d295d284d359.woff2')format("woff");}.ff4_c01299{font-family:ff4_c01299;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01299;src:url('chunks/assets/font_8283491bdd8ae1771c916021.woff2')format("woff");}.ff5_c01299{font-family:ff5_c01299;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01299{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01299{vertical-align:0.000000px;}
.ls4_c01299{letter-spacing:0.000000px;}
.ls0_c01299{letter-spacing:0.087998px;}
.ls2_c01299{letter-spacing:0.098482px;}
.ls3_c01299{letter-spacing:0.104482px;}
.ls1_c01299{letter-spacing:26.690482px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01299{word-spacing:-26.575517px;}
.ws4_c01299{word-spacing:-26.487518px;}
.wse_c01299{word-spacing:-21.553319px;}
.wsd_c01299{word-spacing:-21.519216px;}
.wsc_c01299{word-spacing:-19.247743px;}
.wsa_c01299{word-spacing:-18.769538px;}
.ws9_c01299{word-spacing:-14.943900px;}
.wsf_c01299{word-spacing:-14.107042px;}
.ws10_c01299{word-spacing:-12.074671px;}
.wsb_c01299{word-spacing:-10.230144px;}
.ws7_c01299{word-spacing:-9.988424px;}
.ws8_c01299{word-spacing:-9.987499px;}
.ws3_c01299{word-spacing:0.000000px;}
.ws0_c01299{word-spacing:0.043999px;}
.ws5_c01299{word-spacing:0.213446px;}
.ws1_c01299{word-spacing:0.219446px;}
.ws6_c01299{word-spacing:43.038600px;}
._4_c01299{margin-left:-2.347817px;}
._3_c01299{margin-left:-1.075961px;}
._1_c01299{width:1.041538px;}
._2_c01299{width:19.935816px;}
._5_c01299{width:40.109428px;}
._0_c01299{width:106.654061px;}
.fc5_c01299{color:rgb(79,153,5);}
.fc4_c01299{color:rgb(143,89,3);}
.fc3_c01299{color:rgb(0,0,0);}
.fc6_c01299{color:rgb(6,69,173);}
.fc2_c01299{color:rgb(207,92,0);}
.fc1_c01299{color:rgb(0,0,207);}
.fc0_c01299{color:rgb(33,74,135);}
.fs0_c01299{font-size:43.999200px;}
.fs2_c01299{font-size:59.775600px;}
.fs1_c01299{font-size:86.077200px;}
.y0_c01299{bottom:0.000000px;}
.y20_c01299{bottom:44.250000px;}
.y1f_c01299{bottom:82.051500px;}
.y1e_c01299{bottom:99.984000px;}
.y1d_c01299{bottom:117.916500px;}
.y1c_c01299{bottom:135.849000px;}
.y1b_c01299{bottom:162.501000px;}
.y1a_c01299{bottom:189.151500px;}
.y19_c01299{bottom:215.802000px;}
.y18_c01299{bottom:242.454000px;}
.y17_c01299{bottom:284.478000px;}
.y16_c01299{bottom:748.903500px;}
.y15_c01299{bottom:765.342000px;}
.y14_c01299{bottom:781.780500px;}
.y13_c01299{bottom:798.219000px;}
.y12_c01299{bottom:814.657500px;}
.y11_c01299{bottom:831.096000px;}
.y10_c01299{bottom:847.534500px;}
.yf_c01299{bottom:863.973000px;}
.ye_c01299{bottom:880.411500px;}
.yd_c01299{bottom:896.848500px;}
.yc_c01299{bottom:913.287000px;}
.yb_c01299{bottom:946.164000px;}
.ya_c01299{bottom:962.602500px;}
.y9_c01299{bottom:979.041000px;}
.y8_c01299{bottom:1011.918000px;}
.y7_c01299{bottom:1028.356500px;}
.y6_c01299{bottom:1044.795000px;}
.y5_c01299{bottom:1061.232000px;}
.y4_c01299{bottom:1077.670500px;}
.y3_c01299{bottom:1094.109000px;}
.y2_c01299{bottom:1110.547500px;}
.y1_c01299{bottom:1159.863000px;}
.h3_c01299{height:35.190766px;}
.h2_c01299{height:36.007158px;}
.h5_c01299{height:40.511979px;}
.h6_c01299{height:52.332837px;}
.h4_c01299{height:58.337477px;}
.h0_c01299{height:1262.835000px;}
.h1_c01299{height:1263.000000px;}
.w0_c01299{width:892.920000px;}
.w1_c01299{width:893.250000px;}
.x0_c01299{left:0.000000px;}
.x4_c01299{left:127.558500px;}
.x2_c01299{left:137.122500px;}
.x1_c01299{left:143.770500px;}
.x3_c01299{left:177.007500px;}
.x5_c01299{left:435.249000px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls4_c01299{letter-spacing:0.000000pt;}
.ls0_c01299{letter-spacing:0.078221pt;}
.ls2_c01299{letter-spacing:0.087539pt;}
.ls3_c01299{letter-spacing:0.092873pt;}
.ls1_c01299{letter-spacing:23.724873pt;}
.ws2_c01299{word-spacing:-23.622682pt;}
.ws4_c01299{word-spacing:-23.544461pt;}
.wse_c01299{word-spacing:-19.158506pt;}
.wsd_c01299{word-spacing:-19.128192pt;}
.wsc_c01299{word-spacing:-17.109105pt;}
.wsa_c01299{word-spacing:-16.684034pt;}
.ws9_c01299{word-spacing:-13.283467pt;}
.wsf_c01299{word-spacing:-12.539593pt;}
.ws10_c01299{word-spacing:-10.733041pt;}
.wsb_c01299{word-spacing:-9.093461pt;}
.ws7_c01299{word-spacing:-8.878599pt;}
.ws8_c01299{word-spacing:-8.877777pt;}
.ws3_c01299{word-spacing:0.000000pt;}
.ws0_c01299{word-spacing:0.039110pt;}
.ws5_c01299{word-spacing:0.189730pt;}
.ws1_c01299{word-spacing:0.195063pt;}
.ws6_c01299{word-spacing:38.256533pt;}
._4_c01299{margin-left:-2.086948pt;}
._3_c01299{margin-left:-0.956410pt;}
._1_c01299{width:0.925811pt;}
._2_c01299{width:17.720725pt;}
._5_c01299{width:35.652825pt;}
._0_c01299{width:94.803610pt;}
.fs0_c01299{font-size:39.110400pt;}
.fs2_c01299{font-size:53.133867pt;}
.fs1_c01299{font-size:76.513067pt;}
.y0_c01299{bottom:0.000000pt;}
.y20_c01299{bottom:39.333333pt;}
.y1f_c01299{bottom:72.934667pt;}
.y1e_c01299{bottom:88.874667pt;}
.y1d_c01299{bottom:104.814667pt;}
.y1c_c01299{bottom:120.754667pt;}
.y1b_c01299{bottom:144.445333pt;}
.y1a_c01299{bottom:168.134667pt;}
.y19_c01299{bottom:191.824000pt;}
.y18_c01299{bottom:215.514667pt;}
.y17_c01299{bottom:252.869333pt;}
.y16_c01299{bottom:665.692000pt;}
.y15_c01299{bottom:680.304000pt;}
.y14_c01299{bottom:694.916000pt;}
.y13_c01299{bottom:709.528000pt;}
.y12_c01299{bottom:724.140000pt;}
.y11_c01299{bottom:738.752000pt;}
.y10_c01299{bottom:753.364000pt;}
.yf_c01299{bottom:767.976000pt;}
.ye_c01299{bottom:782.588000pt;}
.yd_c01299{bottom:797.198667pt;}
.yc_c01299{bottom:811.810667pt;}
.yb_c01299{bottom:841.034667pt;}
.ya_c01299{bottom:855.646667pt;}
.y9_c01299{bottom:870.258667pt;}
.y8_c01299{bottom:899.482667pt;}
.y7_c01299{bottom:914.094667pt;}
.y6_c01299{bottom:928.706667pt;}
.y5_c01299{bottom:943.317333pt;}
.y4_c01299{bottom:957.929333pt;}
.y3_c01299{bottom:972.541333pt;}
.y2_c01299{bottom:987.153333pt;}
.y1_c01299{bottom:1030.989333pt;}
.h3_c01299{height:31.280681pt;}
.h2_c01299{height:32.006363pt;}
.h5_c01299{height:36.010648pt;}
.h6_c01299{height:46.518078pt;}
.h4_c01299{height:51.855535pt;}
.h0_c01299{height:1122.520000pt;}
.h1_c01299{height:1122.666667pt;}
.w0_c01299{width:793.706667pt;}
.w1_c01299{width:794.000000pt;}
.x0_c01299{left:0.000000pt;}
.x4_c01299{left:113.385333pt;}
.x2_c01299{left:121.886667pt;}
.x1_c01299{left:127.796000pt;}
.x3_c01299{left:157.340000pt;}
.x5_c01299{left:386.888000pt;}
}





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

.ir_c01300:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_5d391b579e8dcee3282f0e6f.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01300;src:url('chunks/assets/font_11d9e5234b701436d1bd3741.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01300;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01300{font-family:ff3_c01300;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01300;src:url('chunks/assets/font_06bdf14132e1b2f6feaf4b88.woff2')format("woff");}.ff4_c01300{font-family:ff4_c01300;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.ls4_c01300{letter-spacing:0.000000px;}
.ls1_c01300{letter-spacing:0.087998px;}
.ls2_c01300{letter-spacing:0.098482px;}
.ls0_c01300{letter-spacing:0.104482px;}
.ls3_c01300{letter-spacing:26.690482px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01300{word-spacing:-33.713438px;}
.ws4_c01300{word-spacing:-26.575517px;}
.ws3_c01300{word-spacing:-26.487518px;}
.ws0_c01300{word-spacing:-18.769538px;}
.ws8_c01300{word-spacing:0.000000px;}
.ws5_c01300{word-spacing:0.043999px;}
.wsb_c01300{word-spacing:0.056767px;}
.ws9_c01300{word-spacing:0.073250px;}
.wsa_c01300{word-spacing:0.083734px;}
.ws2_c01300{word-spacing:0.175997px;}
.wsc_c01300{word-spacing:0.202963px;}
.ws6_c01300{word-spacing:0.213446px;}
.ws7_c01300{word-spacing:0.219446px;}
._0_c01300{margin-left:-3.825638px;}
._1_c01300{width:1.005737px;}
._3_c01300{width:53.283031px;}
._2_c01300{width:79.858548px;}
._4_c01300{width:133.452408px;}
.fc5_c01300{color:rgb(0,0,207);}
.fc4_c01300{color:rgb(79,153,5);}
.fc3_c01300{color:rgb(207,92,0);}
.fc2_c01300{color:rgb(33,74,135);}
.fc1_c01300{color:rgb(143,89,3);}
.fc0_c01300{color:rgb(0,0,0);}
.fs1_c01300{font-size:43.999200px;}
.fs0_c01300{font-size:59.775600px;}
.y0_c01300{bottom:0.000000px;}
.y2d_c01300{bottom:44.250000px;}
.y2c_c01300{bottom:96.919500px;}
.y2b_c01300{bottom:113.358000px;}
.y2a_c01300{bottom:129.796500px;}
.y29_c01300{bottom:146.235000px;}
.y28_c01300{bottom:162.673500px;}
.y27_c01300{bottom:179.112000px;}
.y26_c01300{bottom:195.550500px;}
.y25_c01300{bottom:211.989000px;}
.y24_c01300{bottom:228.427500px;}
.y23_c01300{bottom:244.866000px;}
.y22_c01300{bottom:261.304500px;}
.y21_c01300{bottom:294.180000px;}
.y20_c01300{bottom:310.618500px;}
.y1f_c01300{bottom:327.057000px;}
.y1e_c01300{bottom:359.934000px;}
.y1d_c01300{bottom:376.372500px;}
.y1c_c01300{bottom:392.811000px;}
.y1b_c01300{bottom:409.249500px;}
.y1a_c01300{bottom:425.688000px;}
.y19_c01300{bottom:442.125000px;}
.y18_c01300{bottom:458.563500px;}
.y17_c01300{bottom:507.879000px;}
.y16_c01300{bottom:524.317500px;}
.y15_c01300{bottom:540.756000px;}
.y14_c01300{bottom:557.194500px;}
.y13_c01300{bottom:573.633000px;}
.y12_c01300{bottom:590.071500px;}
.y11_c01300{bottom:606.508500px;}
.y10_c01300{bottom:622.947000px;}
.yf_c01300{bottom:639.385500px;}
.ye_c01300{bottom:655.824000px;}
.yd_c01300{bottom:672.262500px;}
.yc_c01300{bottom:688.701000px;}
.yb_c01300{bottom:705.139500px;}
.ya_c01300{bottom:721.578000px;}
.y9_c01300{bottom:738.016500px;}
.y8_c01300{bottom:754.455000px;}
.y7_c01300{bottom:787.330500px;}
.y6_c01300{bottom:803.769000px;}
.y5_c01300{bottom:853.084500px;}
.y4_c01300{bottom:869.523000px;}
.y3_c01300{bottom:885.588000px;}
.y2_c01300{bottom:1141.930500px;}
.y1_c01300{bottom:1159.863000px;}
.h3_c01300{height:35.190766px;}
.h4_c01300{height:36.007158px;}
.h2_c01300{height:52.332837px;}
.h0_c01300{height:1262.835000px;}
.h1_c01300{height:1263.000000px;}
.w0_c01300{width:892.920000px;}
.w1_c01300{width:893.250000px;}
.x0_c01300{left:0.000000px;}
.x1_c01300{left:127.558500px;}
.x2_c01300{left:137.122500px;}
.x3_c01300{left:143.770500px;}
.x4_c01300{left:177.007500px;}
.x5_c01300{left:435.249000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls4_c01300{letter-spacing:0.000000pt;}
.ls1_c01300{letter-spacing:0.078221pt;}
.ls2_c01300{letter-spacing:0.087539pt;}
.ls0_c01300{letter-spacing:0.092873pt;}
.ls3_c01300{letter-spacing:23.724873pt;}
.ws1_c01300{word-spacing:-29.967501pt;}
.ws4_c01300{word-spacing:-23.622682pt;}
.ws3_c01300{word-spacing:-23.544461pt;}
.ws0_c01300{word-spacing:-16.684034pt;}
.ws8_c01300{word-spacing:0.000000pt;}
.ws5_c01300{word-spacing:0.039110pt;}
.wsb_c01300{word-spacing:0.050460pt;}
.ws9_c01300{word-spacing:0.065111pt;}
.wsa_c01300{word-spacing:0.074430pt;}
.ws2_c01300{word-spacing:0.156442pt;}
.wsc_c01300{word-spacing:0.180412pt;}
.ws6_c01300{word-spacing:0.189730pt;}
.ws7_c01300{word-spacing:0.195063pt;}
._0_c01300{margin-left:-3.400567pt;}
._1_c01300{width:0.893988pt;}
._3_c01300{width:47.362694pt;}
._2_c01300{width:70.985376pt;}
._4_c01300{width:118.624363pt;}
.fs1_c01300{font-size:39.110400pt;}
.fs0_c01300{font-size:53.133867pt;}
.y0_c01300{bottom:0.000000pt;}
.y2d_c01300{bottom:39.333333pt;}
.y2c_c01300{bottom:86.150667pt;}
.y2b_c01300{bottom:100.762667pt;}
.y2a_c01300{bottom:115.374667pt;}
.y29_c01300{bottom:129.986667pt;}
.y28_c01300{bottom:144.598667pt;}
.y27_c01300{bottom:159.210667pt;}
.y26_c01300{bottom:173.822667pt;}
.y25_c01300{bottom:188.434667pt;}
.y24_c01300{bottom:203.046667pt;}
.y23_c01300{bottom:217.658667pt;}
.y22_c01300{bottom:232.270667pt;}
.y21_c01300{bottom:261.493333pt;}
.y20_c01300{bottom:276.105333pt;}
.y1f_c01300{bottom:290.717333pt;}
.y1e_c01300{bottom:319.941333pt;}
.y1d_c01300{bottom:334.553333pt;}
.y1c_c01300{bottom:349.165333pt;}
.y1b_c01300{bottom:363.777333pt;}
.y1a_c01300{bottom:378.389333pt;}
.y19_c01300{bottom:393.000000pt;}
.y18_c01300{bottom:407.612000pt;}
.y17_c01300{bottom:451.448000pt;}
.y16_c01300{bottom:466.060000pt;}
.y15_c01300{bottom:480.672000pt;}
.y14_c01300{bottom:495.284000pt;}
.y13_c01300{bottom:509.896000pt;}
.y12_c01300{bottom:524.508000pt;}
.y11_c01300{bottom:539.118667pt;}
.y10_c01300{bottom:553.730667pt;}
.yf_c01300{bottom:568.342667pt;}
.ye_c01300{bottom:582.954667pt;}
.yd_c01300{bottom:597.566667pt;}
.yc_c01300{bottom:612.178667pt;}
.yb_c01300{bottom:626.790667pt;}
.ya_c01300{bottom:641.402667pt;}
.y9_c01300{bottom:656.014667pt;}
.y8_c01300{bottom:670.626667pt;}
.y7_c01300{bottom:699.849333pt;}
.y6_c01300{bottom:714.461333pt;}
.y5_c01300{bottom:758.297333pt;}
.y4_c01300{bottom:772.909333pt;}
.y3_c01300{bottom:787.189333pt;}
.y2_c01300{bottom:1015.049333pt;}
.y1_c01300{bottom:1030.989333pt;}
.h3_c01300{height:31.280681pt;}
.h4_c01300{height:32.006363pt;}
.h2_c01300{height:46.518078pt;}
.h0_c01300{height:1122.520000pt;}
.h1_c01300{height:1122.666667pt;}
.w0_c01300{width:793.706667pt;}
.w1_c01300{width:794.000000pt;}
.x0_c01300{left:0.000000pt;}
.x1_c01300{left:113.385333pt;}
.x2_c01300{left:121.886667pt;}
.x3_c01300{left:127.796000pt;}
.x4_c01300{left:157.340000pt;}
.x5_c01300{left:386.888000pt;}
}





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

.ir_c01301:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_14bd02f95fc35910424cff85.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01301;src:url('chunks/assets/font_578a1e61363609ee8a753bec.woff2')format("woff");}.ff2_c01301{font-family:ff2_c01301;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01301;src:url('chunks/assets/font_7385d6f6cf35740de81840e4.woff2')format("woff");}.ff3_c01301{font-family:ff3_c01301;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01301;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01301{font-family:ff4_c01301;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01301;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01301{font-family:ff5_c01301;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01301{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01301{vertical-align:0.000000px;}
.ls3_c01301{letter-spacing:0.000000px;}
.ls0_c01301{letter-spacing:0.087998px;}
.ls2_c01301{letter-spacing:0.098482px;}
.ls1_c01301{letter-spacing:0.104482px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01301{word-spacing:-26.575517px;}
.ws10_c01301{word-spacing:-26.487518px;}
.wsc_c01301{word-spacing:-21.818094px;}
.wse_c01301{word-spacing:-21.578992px;}
.wsd_c01301{word-spacing:-21.339889px;}
.wsa_c01301{word-spacing:-19.307519px;}
.ws9_c01301{word-spacing:-19.187968px;}
.ws8_c01301{word-spacing:-19.128192px;}
.ws5_c01301{word-spacing:-18.769538px;}
.ws7_c01301{word-spacing:-17.633802px;}
.wsb_c01301{word-spacing:-17.394700px;}
.ws4_c01301{word-spacing:-14.943900px;}
.ws1_c01301{word-spacing:-9.988424px;}
.ws3_c01301{word-spacing:-9.987499px;}
.ws6_c01301{word-spacing:-7.722144px;}
.ws14_c01301{word-spacing:0.000000px;}
.ws11_c01301{word-spacing:0.043999px;}
.wsf_c01301{word-spacing:0.175997px;}
.ws13_c01301{word-spacing:0.213446px;}
.ws12_c01301{word-spacing:0.219446px;}
.ws0_c01301{word-spacing:43.038600px;}
._2_c01301{margin-left:-3.600259px;}
._0_c01301{margin-left:-1.549390px;}
._5_c01301{width:1.005737px;}
._4_c01301{width:18.649987px;}
._1_c01301{width:19.935816px;}
._3_c01301{width:24.204342px;}
.fc5_c01301{color:rgb(79,153,5);}
.fc3_c01301{color:rgb(33,74,135);}
.fc2_c01301{color:rgb(143,89,3);}
.fc4_c01301{color:rgb(207,92,0);}
.fc1_c01301{color:rgb(6,69,173);}
.fc0_c01301{color:rgb(0,0,0);}
.fs2_c01301{font-size:43.999200px;}
.fs1_c01301{font-size:59.775600px;}
.fs0_c01301{font-size:86.077200px;}
.y0_c01301{bottom:0.000000px;}
.y1f_c01301{bottom:44.250000px;}
.y1e_c01301{bottom:98.490000px;}
.y1d_c01301{bottom:114.927000px;}
.y1c_c01301{bottom:147.804000px;}
.y1b_c01301{bottom:164.242500px;}
.y1a_c01301{bottom:197.119500px;}
.y19_c01301{bottom:213.558000px;}
.y18_c01301{bottom:229.996500px;}
.y17_c01301{bottom:246.435000px;}
.y16_c01301{bottom:279.310500px;}
.y15_c01301{bottom:295.749000px;}
.y14_c01301{bottom:312.187500px;}
.y13_c01301{bottom:328.626000px;}
.y12_c01301{bottom:345.064500px;}
.y11_c01301{bottom:361.503000px;}
.y10_c01301{bottom:377.941500px;}
.yf_c01301{bottom:394.380000px;}
.ye_c01301{bottom:410.445000px;}
.yd_c01301{bottom:458.862000px;}
.yc_c01301{bottom:476.794500px;}
.yb_c01301{bottom:494.727000px;}
.ya_c01301{bottom:512.659500px;}
.y9_c01301{bottom:530.593500px;}
.y8_c01301{bottom:548.526000px;}
.y7_c01301{bottom:566.458500px;}
.y6_c01301{bottom:584.391000px;}
.y5_c01301{bottom:611.374500px;}
.y4_c01301{bottom:638.358000px;}
.y3_c01301{bottom:665.341500px;}
.y2_c01301{bottom:692.325000px;}
.y1_c01301{bottom:734.719500px;}
.h5_c01301{height:35.190766px;}
.h6_c01301{height:36.007158px;}
.h3_c01301{height:40.511979px;}
.h4_c01301{height:52.332837px;}
.h2_c01301{height:58.337477px;}
.h0_c01301{height:1262.835000px;}
.h1_c01301{height:1263.000000px;}
.w0_c01301{width:892.920000px;}
.w1_c01301{width:893.250000px;}
.x0_c01301{left:0.000000px;}
.x1_c01301{left:127.558500px;}
.x2_c01301{left:137.122500px;}
.x3_c01301{left:435.249000px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls3_c01301{letter-spacing:0.000000pt;}
.ls0_c01301{letter-spacing:0.078221pt;}
.ls2_c01301{letter-spacing:0.087539pt;}
.ls1_c01301{letter-spacing:0.092873pt;}
.ws2_c01301{word-spacing:-23.622682pt;}
.ws10_c01301{word-spacing:-23.544461pt;}
.wsc_c01301{word-spacing:-19.393861pt;}
.wse_c01301{word-spacing:-19.181326pt;}
.wsd_c01301{word-spacing:-18.968790pt;}
.wsa_c01301{word-spacing:-17.162239pt;}
.ws9_c01301{word-spacing:-17.055971pt;}
.ws8_c01301{word-spacing:-17.002837pt;}
.ws5_c01301{word-spacing:-16.684034pt;}
.ws7_c01301{word-spacing:-15.674491pt;}
.wsb_c01301{word-spacing:-15.461955pt;}
.ws4_c01301{word-spacing:-13.283467pt;}
.ws1_c01301{word-spacing:-8.878599pt;}
.ws3_c01301{word-spacing:-8.877777pt;}
.ws6_c01301{word-spacing:-6.864128pt;}
.ws14_c01301{word-spacing:0.000000pt;}
.ws11_c01301{word-spacing:0.039110pt;}
.wsf_c01301{word-spacing:0.156442pt;}
.ws13_c01301{word-spacing:0.189730pt;}
.ws12_c01301{word-spacing:0.195063pt;}
.ws0_c01301{word-spacing:38.256533pt;}
._2_c01301{margin-left:-3.200230pt;}
._0_c01301{margin-left:-1.377235pt;}
._5_c01301{width:0.893988pt;}
._4_c01301{width:16.577766pt;}
._1_c01301{width:17.720725pt;}
._3_c01301{width:21.514971pt;}
.fs2_c01301{font-size:39.110400pt;}
.fs1_c01301{font-size:53.133867pt;}
.fs0_c01301{font-size:76.513067pt;}
.y0_c01301{bottom:0.000000pt;}
.y1f_c01301{bottom:39.333333pt;}
.y1e_c01301{bottom:87.546667pt;}
.y1d_c01301{bottom:102.157333pt;}
.y1c_c01301{bottom:131.381333pt;}
.y1b_c01301{bottom:145.993333pt;}
.y1a_c01301{bottom:175.217333pt;}
.y19_c01301{bottom:189.829333pt;}
.y18_c01301{bottom:204.441333pt;}
.y17_c01301{bottom:219.053333pt;}
.y16_c01301{bottom:248.276000pt;}
.y15_c01301{bottom:262.888000pt;}
.y14_c01301{bottom:277.500000pt;}
.y13_c01301{bottom:292.112000pt;}
.y12_c01301{bottom:306.724000pt;}
.y11_c01301{bottom:321.336000pt;}
.y10_c01301{bottom:335.948000pt;}
.yf_c01301{bottom:350.560000pt;}
.ye_c01301{bottom:364.840000pt;}
.yd_c01301{bottom:407.877333pt;}
.yc_c01301{bottom:423.817333pt;}
.yb_c01301{bottom:439.757333pt;}
.ya_c01301{bottom:455.697333pt;}
.y9_c01301{bottom:471.638667pt;}
.y8_c01301{bottom:487.578667pt;}
.y7_c01301{bottom:503.518667pt;}
.y6_c01301{bottom:519.458667pt;}
.y5_c01301{bottom:543.444000pt;}
.y4_c01301{bottom:567.429333pt;}
.y3_c01301{bottom:591.414667pt;}
.y2_c01301{bottom:615.400000pt;}
.y1_c01301{bottom:653.084000pt;}
.h5_c01301{height:31.280681pt;}
.h6_c01301{height:32.006363pt;}
.h3_c01301{height:36.010648pt;}
.h4_c01301{height:46.518078pt;}
.h2_c01301{height:51.855535pt;}
.h0_c01301{height:1122.520000pt;}
.h1_c01301{height:1122.666667pt;}
.w0_c01301{width:793.706667pt;}
.w1_c01301{width:794.000000pt;}
.x0_c01301{left:0.000000pt;}
.x1_c01301{left:113.385333pt;}
.x2_c01301{left:121.886667pt;}
.x3_c01301{left:386.888000pt;}
}





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

.ir_c01302:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_f4f110c8365d53e7be6fe7bb.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01302;src:url('chunks/assets/font_fb1f25f516fbb6300b689def.woff2')format("woff");}.ff2_c01302{font-family:ff2_c01302;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01302;src:url('chunks/assets/font_cce614a8b51bc8cb8b27ba2b.woff2')format("woff");}.ff3_c01302{font-family:ff3_c01302;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01302;src:url('chunks/assets/font_d3a202d13651fa903e8040eb.woff2')format("woff");}.ff4_c01302{font-family:ff4_c01302;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls5_c01302{letter-spacing:0.000000px;}
.ls0_c01302{letter-spacing:0.087998px;}
.ls2_c01302{letter-spacing:0.098482px;}
.ls1_c01302{letter-spacing:0.104482px;}
.ls4_c01302{letter-spacing:0.140482px;}
.ls3_c01302{letter-spacing:26.690482px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01302{word-spacing:-26.575517px;}
.ws5_c01302{word-spacing:-26.487518px;}
.ws0_c01302{word-spacing:0.000000px;}
.ws3_c01302{word-spacing:0.036900px;}
.ws7_c01302{word-spacing:0.043999px;}
.ws2_c01302{word-spacing:0.053933px;}
.ws6_c01302{word-spacing:0.056767px;}
.ws4_c01302{word-spacing:0.070416px;}
.ws8_c01302{word-spacing:0.213446px;}
._1_c01302{width:1.041538px;}
._0_c01302{width:53.635025px;}
.fc5_c01302{color:rgb(0,0,207);}
.fc4_c01302{color:rgb(207,92,0);}
.fc3_c01302{color:rgb(79,153,5);}
.fc2_c01302{color:rgb(33,74,135);}
.fc1_c01302{color:rgb(0,0,0);}
.fc0_c01302{color:rgb(143,89,3);}
.fs0_c01302{font-size:43.999200px;}
.fs1_c01302{font-size:59.775600px;}
.y0_c01302{bottom:0.000000px;}
.y2a_c01302{bottom:44.250000px;}
.y29_c01302{bottom:436.575000px;}
.y28_c01302{bottom:453.013500px;}
.y27_c01302{bottom:469.452000px;}
.y26_c01302{bottom:485.890500px;}
.y25_c01302{bottom:502.329000px;}
.y24_c01302{bottom:518.767500px;}
.y23_c01302{bottom:535.206000px;}
.y22_c01302{bottom:551.643000px;}
.y21_c01302{bottom:568.081500px;}
.y20_c01302{bottom:584.520000px;}
.y1f_c01302{bottom:600.958500px;}
.y1e_c01302{bottom:633.835500px;}
.y1d_c01302{bottom:650.274000px;}
.y1c_c01302{bottom:666.712500px;}
.y1b_c01302{bottom:699.589500px;}
.y1a_c01302{bottom:716.028000px;}
.y19_c01302{bottom:732.465000px;}
.y18_c01302{bottom:748.903500px;}
.y17_c01302{bottom:765.342000px;}
.y16_c01302{bottom:781.780500px;}
.y15_c01302{bottom:798.219000px;}
.y14_c01302{bottom:814.657500px;}
.y13_c01302{bottom:831.096000px;}
.y12_c01302{bottom:847.534500px;}
.y11_c01302{bottom:863.973000px;}
.y10_c01302{bottom:880.411500px;}
.yf_c01302{bottom:896.848500px;}
.ye_c01302{bottom:913.287000px;}
.yd_c01302{bottom:929.725500px;}
.yc_c01302{bottom:946.164000px;}
.yb_c01302{bottom:962.602500px;}
.ya_c01302{bottom:995.479500px;}
.y9_c01302{bottom:1011.918000px;}
.y8_c01302{bottom:1028.356500px;}
.y7_c01302{bottom:1044.795000px;}
.y6_c01302{bottom:1061.232000px;}
.y5_c01302{bottom:1077.670500px;}
.y4_c01302{bottom:1094.109000px;}
.y3_c01302{bottom:1110.547500px;}
.y2_c01302{bottom:1126.986000px;}
.y1_c01302{bottom:1143.424500px;}
.h2_c01302{height:35.190766px;}
.h3_c01302{height:36.007158px;}
.h4_c01302{height:52.332837px;}
.h0_c01302{height:1262.835000px;}
.h1_c01302{height:1263.000000px;}
.w0_c01302{width:892.920000px;}
.w1_c01302{width:893.250000px;}
.x0_c01302{left:0.000000px;}
.x1_c01302{left:137.122500px;}
.x2_c01302{left:143.770500px;}
.x4_c01302{left:177.007500px;}
.x3_c01302{left:230.185500px;}
.x5_c01302{left:435.249000px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls5_c01302{letter-spacing:0.000000pt;}
.ls0_c01302{letter-spacing:0.078221pt;}
.ls2_c01302{letter-spacing:0.087539pt;}
.ls1_c01302{letter-spacing:0.092873pt;}
.ls4_c01302{letter-spacing:0.124873pt;}
.ls3_c01302{letter-spacing:23.724873pt;}
.ws1_c01302{word-spacing:-23.622682pt;}
.ws5_c01302{word-spacing:-23.544461pt;}
.ws0_c01302{word-spacing:0.000000pt;}
.ws3_c01302{word-spacing:0.032800pt;}
.ws7_c01302{word-spacing:0.039110pt;}
.ws2_c01302{word-spacing:0.047940pt;}
.ws6_c01302{word-spacing:0.050460pt;}
.ws4_c01302{word-spacing:0.062592pt;}
.ws8_c01302{word-spacing:0.189730pt;}
._1_c01302{width:0.925811pt;}
._0_c01302{width:47.675578pt;}
.fs0_c01302{font-size:39.110400pt;}
.fs1_c01302{font-size:53.133867pt;}
.y0_c01302{bottom:0.000000pt;}
.y2a_c01302{bottom:39.333333pt;}
.y29_c01302{bottom:388.066667pt;}
.y28_c01302{bottom:402.678667pt;}
.y27_c01302{bottom:417.290667pt;}
.y26_c01302{bottom:431.902667pt;}
.y25_c01302{bottom:446.514667pt;}
.y24_c01302{bottom:461.126667pt;}
.y23_c01302{bottom:475.738667pt;}
.y22_c01302{bottom:490.349333pt;}
.y21_c01302{bottom:504.961333pt;}
.y20_c01302{bottom:519.573333pt;}
.y1f_c01302{bottom:534.185333pt;}
.y1e_c01302{bottom:563.409333pt;}
.y1d_c01302{bottom:578.021333pt;}
.y1c_c01302{bottom:592.633333pt;}
.y1b_c01302{bottom:621.857333pt;}
.y1a_c01302{bottom:636.469333pt;}
.y19_c01302{bottom:651.080000pt;}
.y18_c01302{bottom:665.692000pt;}
.y17_c01302{bottom:680.304000pt;}
.y16_c01302{bottom:694.916000pt;}
.y15_c01302{bottom:709.528000pt;}
.y14_c01302{bottom:724.140000pt;}
.y13_c01302{bottom:738.752000pt;}
.y12_c01302{bottom:753.364000pt;}
.y11_c01302{bottom:767.976000pt;}
.y10_c01302{bottom:782.588000pt;}
.yf_c01302{bottom:797.198667pt;}
.ye_c01302{bottom:811.810667pt;}
.yd_c01302{bottom:826.422667pt;}
.yc_c01302{bottom:841.034667pt;}
.yb_c01302{bottom:855.646667pt;}
.ya_c01302{bottom:884.870667pt;}
.y9_c01302{bottom:899.482667pt;}
.y8_c01302{bottom:914.094667pt;}
.y7_c01302{bottom:928.706667pt;}
.y6_c01302{bottom:943.317333pt;}
.y5_c01302{bottom:957.929333pt;}
.y4_c01302{bottom:972.541333pt;}
.y3_c01302{bottom:987.153333pt;}
.y2_c01302{bottom:1001.765333pt;}
.y1_c01302{bottom:1016.377333pt;}
.h2_c01302{height:31.280681pt;}
.h3_c01302{height:32.006363pt;}
.h4_c01302{height:46.518078pt;}
.h0_c01302{height:1122.520000pt;}
.h1_c01302{height:1122.666667pt;}
.w0_c01302{width:793.706667pt;}
.w1_c01302{width:794.000000pt;}
.x0_c01302{left:0.000000pt;}
.x1_c01302{left:121.886667pt;}
.x2_c01302{left:127.796000pt;}
.x4_c01302{left:157.340000pt;}
.x3_c01302{left:204.609333pt;}
.x5_c01302{left:386.888000pt;}
}





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

.ir_c01303:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_c2d5a1059a4fb777c2672585.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01303;src:url('chunks/assets/font_514f85bc13f439330779e441.woff2')format("woff");}.ff2_c01303{font-family:ff2_c01303;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01303;src:url('chunks/assets/font_21d51b8540e33880635718cd.woff2')format("woff");}.ff3_c01303{font-family:ff3_c01303;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01303;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01303{font-family:ff4_c01303;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01303;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01303{font-family:ff5_c01303;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01303{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01303{vertical-align:0.000000px;}
.ls3_c01303{letter-spacing:0.000000px;}
.ls0_c01303{letter-spacing:0.087998px;}
.ls2_c01303{letter-spacing:0.098482px;}
.ls1_c01303{letter-spacing:0.104482px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01303{word-spacing:-33.713438px;}
.ws2_c01303{word-spacing:-26.575517px;}
.wse_c01303{word-spacing:-26.487518px;}
.ws9_c01303{word-spacing:-21.553319px;}
.ws8_c01303{word-spacing:-21.519216px;}
.ws5_c01303{word-spacing:-18.769538px;}
.ws7_c01303{word-spacing:-16.019861px;}
.ws4_c01303{word-spacing:-14.943900px;}
.wsa_c01303{word-spacing:-14.107042px;}
.wsb_c01303{word-spacing:-12.074671px;}
.ws1_c01303{word-spacing:-9.988424px;}
.ws3_c01303{word-spacing:-9.987499px;}
.ws6_c01303{word-spacing:-4.536144px;}
.ws12_c01303{word-spacing:0.000000px;}
.wsf_c01303{word-spacing:0.043999px;}
.ws15_c01303{word-spacing:0.056767px;}
.ws13_c01303{word-spacing:0.073250px;}
.ws14_c01303{word-spacing:0.083734px;}
.wsd_c01303{word-spacing:0.175997px;}
.ws16_c01303{word-spacing:0.202963px;}
.ws10_c01303{word-spacing:0.213446px;}
.ws11_c01303{word-spacing:0.219446px;}
.ws0_c01303{word-spacing:43.038600px;}
._3_c01303{margin-left:-3.825638px;}
._0_c01303{margin-left:-1.549390px;}
._4_c01303{width:1.005737px;}
._1_c01303{width:19.935816px;}
._2_c01303{width:40.109428px;}
._6_c01303{width:53.283031px;}
._5_c01303{width:79.858548px;}
._7_c01303{width:133.452408px;}
.fc6_c01303{color:rgb(0,0,207);}
.fc5_c01303{color:rgb(79,153,5);}
.fc3_c01303{color:rgb(33,74,135);}
.fc2_c01303{color:rgb(143,89,3);}
.fc4_c01303{color:rgb(207,92,0);}
.fc1_c01303{color:rgb(6,69,173);}
.fc0_c01303{color:rgb(0,0,0);}
.fs2_c01303{font-size:43.999200px;}
.fs1_c01303{font-size:59.775600px;}
.fs0_c01303{font-size:86.077200px;}
.y0_c01303{bottom:0.000000px;}
.y20_c01303{bottom:44.250000px;}
.y1f_c01303{bottom:86.982000px;}
.y1e_c01303{bottom:103.420500px;}
.y1d_c01303{bottom:119.859000px;}
.y1c_c01303{bottom:136.297500px;}
.y1b_c01303{bottom:152.736000px;}
.y1a_c01303{bottom:169.174500px;}
.y19_c01303{bottom:185.613000px;}
.y18_c01303{bottom:202.051500px;}
.y17_c01303{bottom:218.490000px;}
.y16_c01303{bottom:234.927000px;}
.y15_c01303{bottom:251.365500px;}
.y14_c01303{bottom:267.804000px;}
.y13_c01303{bottom:284.242500px;}
.y12_c01303{bottom:300.681000px;}
.y11_c01303{bottom:317.119500px;}
.y10_c01303{bottom:349.996500px;}
.yf_c01303{bottom:366.435000px;}
.ye_c01303{bottom:415.749000px;}
.yd_c01303{bottom:432.187500px;}
.yc_c01303{bottom:448.252500px;}
.yb_c01303{bottom:493.890000px;}
.ya_c01303{bottom:511.822500px;}
.y9_c01303{bottom:529.756500px;}
.y8_c01303{bottom:547.689000px;}
.y7_c01303{bottom:565.621500px;}
.y6_c01303{bottom:583.554000px;}
.y5_c01303{bottom:610.633500px;}
.y4_c01303{bottom:637.714500px;}
.y3_c01303{bottom:664.794000px;}
.y2_c01303{bottom:691.873500px;}
.y1_c01303{bottom:734.407500px;}
.h5_c01303{height:35.190766px;}
.h6_c01303{height:36.007158px;}
.h3_c01303{height:40.511979px;}
.h4_c01303{height:52.332837px;}
.h2_c01303{height:58.337477px;}
.h0_c01303{height:1262.835000px;}
.h1_c01303{height:1263.000000px;}
.w0_c01303{width:892.920000px;}
.w1_c01303{width:893.250000px;}
.x0_c01303{left:0.000000px;}
.x1_c01303{left:127.558500px;}
.x2_c01303{left:137.122500px;}
.x3_c01303{left:143.770500px;}
.x4_c01303{left:435.249000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls3_c01303{letter-spacing:0.000000pt;}
.ls0_c01303{letter-spacing:0.078221pt;}
.ls2_c01303{letter-spacing:0.087539pt;}
.ls1_c01303{letter-spacing:0.092873pt;}
.wsc_c01303{word-spacing:-29.967501pt;}
.ws2_c01303{word-spacing:-23.622682pt;}
.wse_c01303{word-spacing:-23.544461pt;}
.ws9_c01303{word-spacing:-19.158506pt;}
.ws8_c01303{word-spacing:-19.128192pt;}
.ws5_c01303{word-spacing:-16.684034pt;}
.ws7_c01303{word-spacing:-14.239876pt;}
.ws4_c01303{word-spacing:-13.283467pt;}
.wsa_c01303{word-spacing:-12.539593pt;}
.wsb_c01303{word-spacing:-10.733041pt;}
.ws1_c01303{word-spacing:-8.878599pt;}
.ws3_c01303{word-spacing:-8.877777pt;}
.ws6_c01303{word-spacing:-4.032128pt;}
.ws12_c01303{word-spacing:0.000000pt;}
.wsf_c01303{word-spacing:0.039110pt;}
.ws15_c01303{word-spacing:0.050460pt;}
.ws13_c01303{word-spacing:0.065111pt;}
.ws14_c01303{word-spacing:0.074430pt;}
.wsd_c01303{word-spacing:0.156442pt;}
.ws16_c01303{word-spacing:0.180412pt;}
.ws10_c01303{word-spacing:0.189730pt;}
.ws11_c01303{word-spacing:0.195063pt;}
.ws0_c01303{word-spacing:38.256533pt;}
._3_c01303{margin-left:-3.400567pt;}
._0_c01303{margin-left:-1.377235pt;}
._4_c01303{width:0.893988pt;}
._1_c01303{width:17.720725pt;}
._2_c01303{width:35.652825pt;}
._6_c01303{width:47.362694pt;}
._5_c01303{width:70.985376pt;}
._7_c01303{width:118.624363pt;}
.fs2_c01303{font-size:39.110400pt;}
.fs1_c01303{font-size:53.133867pt;}
.fs0_c01303{font-size:76.513067pt;}
.y0_c01303{bottom:0.000000pt;}
.y20_c01303{bottom:39.333333pt;}
.y1f_c01303{bottom:77.317333pt;}
.y1e_c01303{bottom:91.929333pt;}
.y1d_c01303{bottom:106.541333pt;}
.y1c_c01303{bottom:121.153333pt;}
.y1b_c01303{bottom:135.765333pt;}
.y1a_c01303{bottom:150.377333pt;}
.y19_c01303{bottom:164.989333pt;}
.y18_c01303{bottom:179.601333pt;}
.y17_c01303{bottom:194.213333pt;}
.y16_c01303{bottom:208.824000pt;}
.y15_c01303{bottom:223.436000pt;}
.y14_c01303{bottom:238.048000pt;}
.y13_c01303{bottom:252.660000pt;}
.y12_c01303{bottom:267.272000pt;}
.y11_c01303{bottom:281.884000pt;}
.y10_c01303{bottom:311.108000pt;}
.yf_c01303{bottom:325.720000pt;}
.ye_c01303{bottom:369.554667pt;}
.yd_c01303{bottom:384.166667pt;}
.yc_c01303{bottom:398.446667pt;}
.yb_c01303{bottom:439.013333pt;}
.ya_c01303{bottom:454.953333pt;}
.y9_c01303{bottom:470.894667pt;}
.y8_c01303{bottom:486.834667pt;}
.y7_c01303{bottom:502.774667pt;}
.y6_c01303{bottom:518.714667pt;}
.y5_c01303{bottom:542.785333pt;}
.y4_c01303{bottom:566.857333pt;}
.y3_c01303{bottom:590.928000pt;}
.y2_c01303{bottom:614.998667pt;}
.y1_c01303{bottom:652.806667pt;}
.h5_c01303{height:31.280681pt;}
.h6_c01303{height:32.006363pt;}
.h3_c01303{height:36.010648pt;}
.h4_c01303{height:46.518078pt;}
.h2_c01303{height:51.855535pt;}
.h0_c01303{height:1122.520000pt;}
.h1_c01303{height:1122.666667pt;}
.w0_c01303{width:793.706667pt;}
.w1_c01303{width:794.000000pt;}
.x0_c01303{left:0.000000pt;}
.x1_c01303{left:113.385333pt;}
.x2_c01303{left:121.886667pt;}
.x3_c01303{left:127.796000pt;}
.x4_c01303{left:386.888000pt;}
}





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

.ir_c01304:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01304;src:url('chunks/assets/font_ca759d9024207af0d70aef00.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01304;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01304{font-family:ff2_c01304;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01304;src:url('chunks/assets/font_c7fb381c52d12124f169832a.woff2')format("woff");}.ff3_c01304{font-family:ff3_c01304;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01304;src:url('chunks/assets/font_c1a0b5413cb2c81bd3aa1d2b.woff2')format("woff");}.ff4_c01304{font-family:ff4_c01304;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01304;src:url('chunks/assets/font_c7e3f4c20d4a0df048fcb486.woff2')format("woff");}.ff5_c01304{font-family:ff5_c01304;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01304{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01304{vertical-align:0.000000px;}
.ls4_c01304{letter-spacing:0.000000px;}
.ls0_c01304{letter-spacing:0.087998px;}
.ls2_c01304{letter-spacing:0.098482px;}
.ls3_c01304{letter-spacing:0.104482px;}
.ls1_c01304{letter-spacing:26.690482px;}
.sc__c01304{text-shadow:none;}
.sc0_c01304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01304{-webkit-text-stroke:0px transparent;}
.sc0_c01304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01304{word-spacing:-26.575517px;}
.ws4_c01304{word-spacing:-26.487518px;}
.wse_c01304{word-spacing:-21.553319px;}
.wsd_c01304{word-spacing:-21.519216px;}
.wsa_c01304{word-spacing:-18.769538px;}
.wsc_c01304{word-spacing:-17.633802px;}
.ws9_c01304{word-spacing:-14.943900px;}
.wsf_c01304{word-spacing:-14.107042px;}
.ws10_c01304{word-spacing:-12.074671px;}
.ws7_c01304{word-spacing:-9.988424px;}
.ws8_c01304{word-spacing:-9.987499px;}
.wsb_c01304{word-spacing:-7.686144px;}
.ws3_c01304{word-spacing:0.000000px;}
.ws0_c01304{word-spacing:0.043999px;}
.ws5_c01304{word-spacing:0.213446px;}
.ws1_c01304{word-spacing:0.219446px;}
.ws6_c01304{word-spacing:43.038600px;}
._2_c01304{margin-left:-1.549390px;}
._1_c01304{width:1.090656px;}
._3_c01304{width:19.935816px;}
._4_c01304{width:40.109428px;}
._0_c01304{width:53.635025px;}
.fc5_c01304{color:rgb(79,153,5);}
.fc4_c01304{color:rgb(143,89,3);}
.fc3_c01304{color:rgb(0,0,0);}
.fc6_c01304{color:rgb(6,69,173);}
.fc2_c01304{color:rgb(207,92,0);}
.fc1_c01304{color:rgb(0,0,207);}
.fc0_c01304{color:rgb(33,74,135);}
.fs0_c01304{font-size:43.999200px;}
.fs2_c01304{font-size:59.775600px;}
.fs1_c01304{font-size:86.077200px;}
.y0_c01304{bottom:0.000000px;}
.y20_c01304{bottom:44.250000px;}
.y1f_c01304{bottom:82.051500px;}
.y1e_c01304{bottom:99.984000px;}
.y1d_c01304{bottom:117.916500px;}
.y1c_c01304{bottom:135.849000px;}
.y1b_c01304{bottom:162.501000px;}
.y1a_c01304{bottom:189.151500px;}
.y19_c01304{bottom:215.802000px;}
.y18_c01304{bottom:242.454000px;}
.y17_c01304{bottom:284.478000px;}
.y16_c01304{bottom:748.903500px;}
.y15_c01304{bottom:765.342000px;}
.y14_c01304{bottom:781.780500px;}
.y13_c01304{bottom:798.219000px;}
.y12_c01304{bottom:814.657500px;}
.y11_c01304{bottom:831.096000px;}
.y10_c01304{bottom:847.534500px;}
.yf_c01304{bottom:863.973000px;}
.ye_c01304{bottom:880.411500px;}
.yd_c01304{bottom:896.848500px;}
.yc_c01304{bottom:913.287000px;}
.yb_c01304{bottom:946.164000px;}
.ya_c01304{bottom:962.602500px;}
.y9_c01304{bottom:979.041000px;}
.y8_c01304{bottom:1011.918000px;}
.y7_c01304{bottom:1028.356500px;}
.y6_c01304{bottom:1044.795000px;}
.y5_c01304{bottom:1061.232000px;}
.y4_c01304{bottom:1077.670500px;}
.y3_c01304{bottom:1094.109000px;}
.y2_c01304{bottom:1110.547500px;}
.y1_c01304{bottom:1159.863000px;}
.h3_c01304{height:35.190766px;}
.h2_c01304{height:36.007158px;}
.h5_c01304{height:40.511979px;}
.h6_c01304{height:52.332837px;}
.h4_c01304{height:58.337477px;}
.h0_c01304{height:1262.835000px;}
.h1_c01304{height:1263.000000px;}
.w0_c01304{width:892.920000px;}
.w1_c01304{width:893.250000px;}
.x0_c01304{left:0.000000px;}
.x4_c01304{left:127.558500px;}
.x2_c01304{left:137.122500px;}
.x1_c01304{left:143.770500px;}
.x3_c01304{left:177.007500px;}
.x5_c01304{left:435.249000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls4_c01304{letter-spacing:0.000000pt;}
.ls0_c01304{letter-spacing:0.078221pt;}
.ls2_c01304{letter-spacing:0.087539pt;}
.ls3_c01304{letter-spacing:0.092873pt;}
.ls1_c01304{letter-spacing:23.724873pt;}
.ws2_c01304{word-spacing:-23.622682pt;}
.ws4_c01304{word-spacing:-23.544461pt;}
.wse_c01304{word-spacing:-19.158506pt;}
.wsd_c01304{word-spacing:-19.128192pt;}
.wsa_c01304{word-spacing:-16.684034pt;}
.wsc_c01304{word-spacing:-15.674491pt;}
.ws9_c01304{word-spacing:-13.283467pt;}
.wsf_c01304{word-spacing:-12.539593pt;}
.ws10_c01304{word-spacing:-10.733041pt;}
.ws7_c01304{word-spacing:-8.878599pt;}
.ws8_c01304{word-spacing:-8.877777pt;}
.wsb_c01304{word-spacing:-6.832128pt;}
.ws3_c01304{word-spacing:0.000000pt;}
.ws0_c01304{word-spacing:0.039110pt;}
.ws5_c01304{word-spacing:0.189730pt;}
.ws1_c01304{word-spacing:0.195063pt;}
.ws6_c01304{word-spacing:38.256533pt;}
._2_c01304{margin-left:-1.377235pt;}
._1_c01304{width:0.969472pt;}
._3_c01304{width:17.720725pt;}
._4_c01304{width:35.652825pt;}
._0_c01304{width:47.675578pt;}
.fs0_c01304{font-size:39.110400pt;}
.fs2_c01304{font-size:53.133867pt;}
.fs1_c01304{font-size:76.513067pt;}
.y0_c01304{bottom:0.000000pt;}
.y20_c01304{bottom:39.333333pt;}
.y1f_c01304{bottom:72.934667pt;}
.y1e_c01304{bottom:88.874667pt;}
.y1d_c01304{bottom:104.814667pt;}
.y1c_c01304{bottom:120.754667pt;}
.y1b_c01304{bottom:144.445333pt;}
.y1a_c01304{bottom:168.134667pt;}
.y19_c01304{bottom:191.824000pt;}
.y18_c01304{bottom:215.514667pt;}
.y17_c01304{bottom:252.869333pt;}
.y16_c01304{bottom:665.692000pt;}
.y15_c01304{bottom:680.304000pt;}
.y14_c01304{bottom:694.916000pt;}
.y13_c01304{bottom:709.528000pt;}
.y12_c01304{bottom:724.140000pt;}
.y11_c01304{bottom:738.752000pt;}
.y10_c01304{bottom:753.364000pt;}
.yf_c01304{bottom:767.976000pt;}
.ye_c01304{bottom:782.588000pt;}
.yd_c01304{bottom:797.198667pt;}
.yc_c01304{bottom:811.810667pt;}
.yb_c01304{bottom:841.034667pt;}
.ya_c01304{bottom:855.646667pt;}
.y9_c01304{bottom:870.258667pt;}
.y8_c01304{bottom:899.482667pt;}
.y7_c01304{bottom:914.094667pt;}
.y6_c01304{bottom:928.706667pt;}
.y5_c01304{bottom:943.317333pt;}
.y4_c01304{bottom:957.929333pt;}
.y3_c01304{bottom:972.541333pt;}
.y2_c01304{bottom:987.153333pt;}
.y1_c01304{bottom:1030.989333pt;}
.h3_c01304{height:31.280681pt;}
.h2_c01304{height:32.006363pt;}
.h5_c01304{height:36.010648pt;}
.h6_c01304{height:46.518078pt;}
.h4_c01304{height:51.855535pt;}
.h0_c01304{height:1122.520000pt;}
.h1_c01304{height:1122.666667pt;}
.w0_c01304{width:793.706667pt;}
.w1_c01304{width:794.000000pt;}
.x0_c01304{left:0.000000pt;}
.x4_c01304{left:113.385333pt;}
.x2_c01304{left:121.886667pt;}
.x1_c01304{left:127.796000pt;}
.x3_c01304{left:157.340000pt;}
.x5_c01304{left:386.888000pt;}
}





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

.ir_c01305:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01305;src:url('chunks/assets/font_9bf06243aa69226d38c7f055.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01305;src:url('chunks/assets/font_92f172fa927a1a18479878ed.woff2')format("woff");}.ff2_c01305{font-family:ff2_c01305;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01305;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01305{font-family:ff3_c01305;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01305;src:url('chunks/assets/font_c363e38adc3b73680f80b637.woff2')format("woff");}.ff4_c01305{font-family:ff4_c01305;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01305{vertical-align:0.000000px;}
.ls4_c01305{letter-spacing:0.000000px;}
.ls1_c01305{letter-spacing:0.087998px;}
.ls2_c01305{letter-spacing:0.098482px;}
.ls0_c01305{letter-spacing:0.104482px;}
.ls3_c01305{letter-spacing:26.690482px;}
.sc__c01305{text-shadow:none;}
.sc0_c01305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01305{-webkit-text-stroke:0px transparent;}
.sc0_c01305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01305{word-spacing:-33.713438px;}
.ws4_c01305{word-spacing:-26.575517px;}
.ws3_c01305{word-spacing:-26.487518px;}
.ws0_c01305{word-spacing:-18.769538px;}
.ws8_c01305{word-spacing:0.000000px;}
.ws5_c01305{word-spacing:0.043999px;}
.wsb_c01305{word-spacing:0.056767px;}
.ws9_c01305{word-spacing:0.073250px;}
.wsa_c01305{word-spacing:0.083734px;}
.ws2_c01305{word-spacing:0.175997px;}
.wsc_c01305{word-spacing:0.202963px;}
.ws6_c01305{word-spacing:0.213446px;}
.ws7_c01305{word-spacing:0.219446px;}
._0_c01305{margin-left:-3.825638px;}
._1_c01305{width:1.005737px;}
._3_c01305{width:53.283031px;}
._2_c01305{width:79.858548px;}
._4_c01305{width:133.452408px;}
.fc5_c01305{color:rgb(0,0,207);}
.fc4_c01305{color:rgb(79,153,5);}
.fc3_c01305{color:rgb(207,92,0);}
.fc2_c01305{color:rgb(33,74,135);}
.fc1_c01305{color:rgb(143,89,3);}
.fc0_c01305{color:rgb(0,0,0);}
.fs1_c01305{font-size:43.999200px;}
.fs0_c01305{font-size:59.775600px;}
.y0_c01305{bottom:0.000000px;}
.y2d_c01305{bottom:44.250000px;}
.y2c_c01305{bottom:96.919500px;}
.y2b_c01305{bottom:113.358000px;}
.y2a_c01305{bottom:129.796500px;}
.y29_c01305{bottom:146.235000px;}
.y28_c01305{bottom:162.673500px;}
.y27_c01305{bottom:179.112000px;}
.y26_c01305{bottom:195.550500px;}
.y25_c01305{bottom:211.989000px;}
.y24_c01305{bottom:228.427500px;}
.y23_c01305{bottom:244.866000px;}
.y22_c01305{bottom:261.304500px;}
.y21_c01305{bottom:294.180000px;}
.y20_c01305{bottom:310.618500px;}
.y1f_c01305{bottom:327.057000px;}
.y1e_c01305{bottom:359.934000px;}
.y1d_c01305{bottom:376.372500px;}
.y1c_c01305{bottom:392.811000px;}
.y1b_c01305{bottom:409.249500px;}
.y1a_c01305{bottom:425.688000px;}
.y19_c01305{bottom:442.125000px;}
.y18_c01305{bottom:458.563500px;}
.y17_c01305{bottom:507.879000px;}
.y16_c01305{bottom:524.317500px;}
.y15_c01305{bottom:540.756000px;}
.y14_c01305{bottom:557.194500px;}
.y13_c01305{bottom:573.633000px;}
.y12_c01305{bottom:590.071500px;}
.y11_c01305{bottom:606.508500px;}
.y10_c01305{bottom:622.947000px;}
.yf_c01305{bottom:639.385500px;}
.ye_c01305{bottom:655.824000px;}
.yd_c01305{bottom:672.262500px;}
.yc_c01305{bottom:688.701000px;}
.yb_c01305{bottom:705.139500px;}
.ya_c01305{bottom:721.578000px;}
.y9_c01305{bottom:738.016500px;}
.y8_c01305{bottom:754.455000px;}
.y7_c01305{bottom:787.330500px;}
.y6_c01305{bottom:803.769000px;}
.y5_c01305{bottom:853.084500px;}
.y4_c01305{bottom:869.523000px;}
.y3_c01305{bottom:885.588000px;}
.y2_c01305{bottom:1141.930500px;}
.y1_c01305{bottom:1159.863000px;}
.h3_c01305{height:35.190766px;}
.h4_c01305{height:36.007158px;}
.h2_c01305{height:52.332837px;}
.h0_c01305{height:1262.835000px;}
.h1_c01305{height:1263.000000px;}
.w0_c01305{width:892.920000px;}
.w1_c01305{width:893.250000px;}
.x0_c01305{left:0.000000px;}
.x1_c01305{left:127.558500px;}
.x2_c01305{left:137.122500px;}
.x3_c01305{left:143.770500px;}
.x4_c01305{left:177.007500px;}
.x5_c01305{left:435.249000px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls4_c01305{letter-spacing:0.000000pt;}
.ls1_c01305{letter-spacing:0.078221pt;}
.ls2_c01305{letter-spacing:0.087539pt;}
.ls0_c01305{letter-spacing:0.092873pt;}
.ls3_c01305{letter-spacing:23.724873pt;}
.ws1_c01305{word-spacing:-29.967501pt;}
.ws4_c01305{word-spacing:-23.622682pt;}
.ws3_c01305{word-spacing:-23.544461pt;}
.ws0_c01305{word-spacing:-16.684034pt;}
.ws8_c01305{word-spacing:0.000000pt;}
.ws5_c01305{word-spacing:0.039110pt;}
.wsb_c01305{word-spacing:0.050460pt;}
.ws9_c01305{word-spacing:0.065111pt;}
.wsa_c01305{word-spacing:0.074430pt;}
.ws2_c01305{word-spacing:0.156442pt;}
.wsc_c01305{word-spacing:0.180412pt;}
.ws6_c01305{word-spacing:0.189730pt;}
.ws7_c01305{word-spacing:0.195063pt;}
._0_c01305{margin-left:-3.400567pt;}
._1_c01305{width:0.893988pt;}
._3_c01305{width:47.362694pt;}
._2_c01305{width:70.985376pt;}
._4_c01305{width:118.624363pt;}
.fs1_c01305{font-size:39.110400pt;}
.fs0_c01305{font-size:53.133867pt;}
.y0_c01305{bottom:0.000000pt;}
.y2d_c01305{bottom:39.333333pt;}
.y2c_c01305{bottom:86.150667pt;}
.y2b_c01305{bottom:100.762667pt;}
.y2a_c01305{bottom:115.374667pt;}
.y29_c01305{bottom:129.986667pt;}
.y28_c01305{bottom:144.598667pt;}
.y27_c01305{bottom:159.210667pt;}
.y26_c01305{bottom:173.822667pt;}
.y25_c01305{bottom:188.434667pt;}
.y24_c01305{bottom:203.046667pt;}
.y23_c01305{bottom:217.658667pt;}
.y22_c01305{bottom:232.270667pt;}
.y21_c01305{bottom:261.493333pt;}
.y20_c01305{bottom:276.105333pt;}
.y1f_c01305{bottom:290.717333pt;}
.y1e_c01305{bottom:319.941333pt;}
.y1d_c01305{bottom:334.553333pt;}
.y1c_c01305{bottom:349.165333pt;}
.y1b_c01305{bottom:363.777333pt;}
.y1a_c01305{bottom:378.389333pt;}
.y19_c01305{bottom:393.000000pt;}
.y18_c01305{bottom:407.612000pt;}
.y17_c01305{bottom:451.448000pt;}
.y16_c01305{bottom:466.060000pt;}
.y15_c01305{bottom:480.672000pt;}
.y14_c01305{bottom:495.284000pt;}
.y13_c01305{bottom:509.896000pt;}
.y12_c01305{bottom:524.508000pt;}
.y11_c01305{bottom:539.118667pt;}
.y10_c01305{bottom:553.730667pt;}
.yf_c01305{bottom:568.342667pt;}
.ye_c01305{bottom:582.954667pt;}
.yd_c01305{bottom:597.566667pt;}
.yc_c01305{bottom:612.178667pt;}
.yb_c01305{bottom:626.790667pt;}
.ya_c01305{bottom:641.402667pt;}
.y9_c01305{bottom:656.014667pt;}
.y8_c01305{bottom:670.626667pt;}
.y7_c01305{bottom:699.849333pt;}
.y6_c01305{bottom:714.461333pt;}
.y5_c01305{bottom:758.297333pt;}
.y4_c01305{bottom:772.909333pt;}
.y3_c01305{bottom:787.189333pt;}
.y2_c01305{bottom:1015.049333pt;}
.y1_c01305{bottom:1030.989333pt;}
.h3_c01305{height:31.280681pt;}
.h4_c01305{height:32.006363pt;}
.h2_c01305{height:46.518078pt;}
.h0_c01305{height:1122.520000pt;}
.h1_c01305{height:1122.666667pt;}
.w0_c01305{width:793.706667pt;}
.w1_c01305{width:794.000000pt;}
.x0_c01305{left:0.000000pt;}
.x1_c01305{left:113.385333pt;}
.x2_c01305{left:121.886667pt;}
.x3_c01305{left:127.796000pt;}
.x4_c01305{left:157.340000pt;}
.x5_c01305{left:386.888000pt;}
}





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

.ir_c01306:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01306;src:url('chunks/assets/font_94cdd54e2322793c62d9dc38.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01306;src:url('chunks/assets/font_258c7eab896c6c4f767c22f3.woff2')format("woff");}.ff2_c01306{font-family:ff2_c01306;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01306;src:url('chunks/assets/font_b2b3c137be39b58842765be2.woff2')format("woff");}.ff3_c01306{font-family:ff3_c01306;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01306;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01306{font-family:ff4_c01306;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01306;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01306{font-family:ff5_c01306;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01306{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01306{vertical-align:0.000000px;}
.ls3_c01306{letter-spacing:0.000000px;}
.ls0_c01306{letter-spacing:0.087998px;}
.ls2_c01306{letter-spacing:0.098482px;}
.ls1_c01306{letter-spacing:0.104482px;}
.sc__c01306{text-shadow:none;}
.sc0_c01306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01306{-webkit-text-stroke:0px transparent;}
.sc0_c01306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01306{word-spacing:-33.713438px;}
.ws2_c01306{word-spacing:-26.575517px;}
.wse_c01306{word-spacing:-26.487518px;}
.ws9_c01306{word-spacing:-21.553319px;}
.ws8_c01306{word-spacing:-21.519216px;}
.ws5_c01306{word-spacing:-18.769538px;}
.ws7_c01306{word-spacing:-17.633802px;}
.ws4_c01306{word-spacing:-14.943900px;}
.wsa_c01306{word-spacing:-14.107042px;}
.wsb_c01306{word-spacing:-12.074671px;}
.ws1_c01306{word-spacing:-9.988424px;}
.ws3_c01306{word-spacing:-9.987499px;}
.ws6_c01306{word-spacing:-7.686144px;}
.ws12_c01306{word-spacing:0.000000px;}
.wsf_c01306{word-spacing:0.043999px;}
.ws15_c01306{word-spacing:0.056767px;}
.ws13_c01306{word-spacing:0.073250px;}
.ws14_c01306{word-spacing:0.083734px;}
.wsd_c01306{word-spacing:0.175997px;}
.ws16_c01306{word-spacing:0.202963px;}
.ws10_c01306{word-spacing:0.213446px;}
.ws11_c01306{word-spacing:0.219446px;}
.ws0_c01306{word-spacing:43.038600px;}
._3_c01306{margin-left:-3.825638px;}
._0_c01306{margin-left:-1.549390px;}
._4_c01306{width:1.005737px;}
._1_c01306{width:19.935816px;}
._2_c01306{width:40.109428px;}
._6_c01306{width:53.283031px;}
._5_c01306{width:79.858548px;}
._7_c01306{width:133.452408px;}
.fc6_c01306{color:rgb(0,0,207);}
.fc5_c01306{color:rgb(79,153,5);}
.fc3_c01306{color:rgb(33,74,135);}
.fc2_c01306{color:rgb(143,89,3);}
.fc4_c01306{color:rgb(207,92,0);}
.fc1_c01306{color:rgb(6,69,173);}
.fc0_c01306{color:rgb(0,0,0);}
.fs2_c01306{font-size:43.999200px;}
.fs1_c01306{font-size:59.775600px;}
.fs0_c01306{font-size:86.077200px;}
.y0_c01306{bottom:0.000000px;}
.y20_c01306{bottom:44.250000px;}
.y1f_c01306{bottom:86.982000px;}
.y1e_c01306{bottom:103.420500px;}
.y1d_c01306{bottom:119.859000px;}
.y1c_c01306{bottom:136.297500px;}
.y1b_c01306{bottom:152.736000px;}
.y1a_c01306{bottom:169.174500px;}
.y19_c01306{bottom:185.613000px;}
.y18_c01306{bottom:202.051500px;}
.y17_c01306{bottom:218.490000px;}
.y16_c01306{bottom:234.927000px;}
.y15_c01306{bottom:251.365500px;}
.y14_c01306{bottom:267.804000px;}
.y13_c01306{bottom:284.242500px;}
.y12_c01306{bottom:300.681000px;}
.y11_c01306{bottom:317.119500px;}
.y10_c01306{bottom:349.996500px;}
.yf_c01306{bottom:366.435000px;}
.ye_c01306{bottom:415.749000px;}
.yd_c01306{bottom:432.187500px;}
.yc_c01306{bottom:448.252500px;}
.yb_c01306{bottom:493.890000px;}
.ya_c01306{bottom:511.822500px;}
.y9_c01306{bottom:529.756500px;}
.y8_c01306{bottom:547.689000px;}
.y7_c01306{bottom:565.621500px;}
.y6_c01306{bottom:583.554000px;}
.y5_c01306{bottom:610.633500px;}
.y4_c01306{bottom:637.714500px;}
.y3_c01306{bottom:664.794000px;}
.y2_c01306{bottom:691.873500px;}
.y1_c01306{bottom:734.407500px;}
.h5_c01306{height:35.190766px;}
.h6_c01306{height:36.007158px;}
.h3_c01306{height:40.511979px;}
.h4_c01306{height:52.332837px;}
.h2_c01306{height:58.337477px;}
.h0_c01306{height:1262.835000px;}
.h1_c01306{height:1263.000000px;}
.w0_c01306{width:892.920000px;}
.w1_c01306{width:893.250000px;}
.x0_c01306{left:0.000000px;}
.x1_c01306{left:127.558500px;}
.x2_c01306{left:137.122500px;}
.x3_c01306{left:143.770500px;}
.x4_c01306{left:435.249000px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls3_c01306{letter-spacing:0.000000pt;}
.ls0_c01306{letter-spacing:0.078221pt;}
.ls2_c01306{letter-spacing:0.087539pt;}
.ls1_c01306{letter-spacing:0.092873pt;}
.wsc_c01306{word-spacing:-29.967501pt;}
.ws2_c01306{word-spacing:-23.622682pt;}
.wse_c01306{word-spacing:-23.544461pt;}
.ws9_c01306{word-spacing:-19.158506pt;}
.ws8_c01306{word-spacing:-19.128192pt;}
.ws5_c01306{word-spacing:-16.684034pt;}
.ws7_c01306{word-spacing:-15.674491pt;}
.ws4_c01306{word-spacing:-13.283467pt;}
.wsa_c01306{word-spacing:-12.539593pt;}
.wsb_c01306{word-spacing:-10.733041pt;}
.ws1_c01306{word-spacing:-8.878599pt;}
.ws3_c01306{word-spacing:-8.877777pt;}
.ws6_c01306{word-spacing:-6.832128pt;}
.ws12_c01306{word-spacing:0.000000pt;}
.wsf_c01306{word-spacing:0.039110pt;}
.ws15_c01306{word-spacing:0.050460pt;}
.ws13_c01306{word-spacing:0.065111pt;}
.ws14_c01306{word-spacing:0.074430pt;}
.wsd_c01306{word-spacing:0.156442pt;}
.ws16_c01306{word-spacing:0.180412pt;}
.ws10_c01306{word-spacing:0.189730pt;}
.ws11_c01306{word-spacing:0.195063pt;}
.ws0_c01306{word-spacing:38.256533pt;}
._3_c01306{margin-left:-3.400567pt;}
._0_c01306{margin-left:-1.377235pt;}
._4_c01306{width:0.893988pt;}
._1_c01306{width:17.720725pt;}
._2_c01306{width:35.652825pt;}
._6_c01306{width:47.362694pt;}
._5_c01306{width:70.985376pt;}
._7_c01306{width:118.624363pt;}
.fs2_c01306{font-size:39.110400pt;}
.fs1_c01306{font-size:53.133867pt;}
.fs0_c01306{font-size:76.513067pt;}
.y0_c01306{bottom:0.000000pt;}
.y20_c01306{bottom:39.333333pt;}
.y1f_c01306{bottom:77.317333pt;}
.y1e_c01306{bottom:91.929333pt;}
.y1d_c01306{bottom:106.541333pt;}
.y1c_c01306{bottom:121.153333pt;}
.y1b_c01306{bottom:135.765333pt;}
.y1a_c01306{bottom:150.377333pt;}
.y19_c01306{bottom:164.989333pt;}
.y18_c01306{bottom:179.601333pt;}
.y17_c01306{bottom:194.213333pt;}
.y16_c01306{bottom:208.824000pt;}
.y15_c01306{bottom:223.436000pt;}
.y14_c01306{bottom:238.048000pt;}
.y13_c01306{bottom:252.660000pt;}
.y12_c01306{bottom:267.272000pt;}
.y11_c01306{bottom:281.884000pt;}
.y10_c01306{bottom:311.108000pt;}
.yf_c01306{bottom:325.720000pt;}
.ye_c01306{bottom:369.554667pt;}
.yd_c01306{bottom:384.166667pt;}
.yc_c01306{bottom:398.446667pt;}
.yb_c01306{bottom:439.013333pt;}
.ya_c01306{bottom:454.953333pt;}
.y9_c01306{bottom:470.894667pt;}
.y8_c01306{bottom:486.834667pt;}
.y7_c01306{bottom:502.774667pt;}
.y6_c01306{bottom:518.714667pt;}
.y5_c01306{bottom:542.785333pt;}
.y4_c01306{bottom:566.857333pt;}
.y3_c01306{bottom:590.928000pt;}
.y2_c01306{bottom:614.998667pt;}
.y1_c01306{bottom:652.806667pt;}
.h5_c01306{height:31.280681pt;}
.h6_c01306{height:32.006363pt;}
.h3_c01306{height:36.010648pt;}
.h4_c01306{height:46.518078pt;}
.h2_c01306{height:51.855535pt;}
.h0_c01306{height:1122.520000pt;}
.h1_c01306{height:1122.666667pt;}
.w0_c01306{width:793.706667pt;}
.w1_c01306{width:794.000000pt;}
.x0_c01306{left:0.000000pt;}
.x1_c01306{left:113.385333pt;}
.x2_c01306{left:121.886667pt;}
.x3_c01306{left:127.796000pt;}
.x4_c01306{left:386.888000pt;}
}





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

.ir_c01307:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01307;src:url('chunks/assets/font_b2184fbc328491b6719148d0.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01307;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01307{font-family:ff2_c01307;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01307;src:url('chunks/assets/font_35c544f63a2dd38d328ce3ec.woff2')format("woff");}.ff3_c01307{font-family:ff3_c01307;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01307;src:url('chunks/assets/font_d85eb87a5709b5d11e9acfce.woff2')format("woff");}.ff4_c01307{font-family:ff4_c01307;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01307;src:url('chunks/assets/font_5a0a5342d61b44a5051699d1.woff2')format("woff");}.ff5_c01307{font-family:ff5_c01307;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01307{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01307{vertical-align:0.000000px;}
.ls4_c01307{letter-spacing:0.000000px;}
.ls0_c01307{letter-spacing:0.087998px;}
.ls2_c01307{letter-spacing:0.098482px;}
.ls3_c01307{letter-spacing:0.104482px;}
.ls1_c01307{letter-spacing:26.690482px;}
.sc__c01307{text-shadow:none;}
.sc0_c01307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01307{-webkit-text-stroke:0px transparent;}
.sc0_c01307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01307{word-spacing:-26.575517px;}
.ws4_c01307{word-spacing:-26.487518px;}
.wse_c01307{word-spacing:-21.553319px;}
.wsd_c01307{word-spacing:-21.519216px;}
.wsc_c01307{word-spacing:-19.247743px;}
.wsa_c01307{word-spacing:-18.769538px;}
.ws9_c01307{word-spacing:-14.943900px;}
.wsf_c01307{word-spacing:-14.107042px;}
.ws10_c01307{word-spacing:-12.074671px;}
.wsb_c01307{word-spacing:-10.230144px;}
.ws7_c01307{word-spacing:-9.988424px;}
.ws8_c01307{word-spacing:-9.987499px;}
.ws3_c01307{word-spacing:0.000000px;}
.ws0_c01307{word-spacing:0.043999px;}
.ws5_c01307{word-spacing:0.213446px;}
.ws1_c01307{word-spacing:0.219446px;}
.ws6_c01307{word-spacing:43.038600px;}
._1_c01307{margin-left:-1.549390px;}
._0_c01307{width:1.101139px;}
._2_c01307{width:19.935816px;}
._3_c01307{width:40.109428px;}
.fc5_c01307{color:rgb(79,153,5);}
.fc4_c01307{color:rgb(143,89,3);}
.fc3_c01307{color:rgb(0,0,0);}
.fc6_c01307{color:rgb(6,69,173);}
.fc2_c01307{color:rgb(207,92,0);}
.fc1_c01307{color:rgb(0,0,207);}
.fc0_c01307{color:rgb(33,74,135);}
.fs0_c01307{font-size:43.999200px;}
.fs2_c01307{font-size:59.775600px;}
.fs1_c01307{font-size:86.077200px;}
.y0_c01307{bottom:0.000000px;}
.y20_c01307{bottom:44.250000px;}
.y1f_c01307{bottom:82.051500px;}
.y1e_c01307{bottom:99.984000px;}
.y1d_c01307{bottom:117.916500px;}
.y1c_c01307{bottom:135.849000px;}
.y1b_c01307{bottom:162.501000px;}
.y1a_c01307{bottom:189.151500px;}
.y19_c01307{bottom:215.802000px;}
.y18_c01307{bottom:242.454000px;}
.y17_c01307{bottom:284.478000px;}
.y16_c01307{bottom:748.903500px;}
.y15_c01307{bottom:765.342000px;}
.y14_c01307{bottom:781.780500px;}
.y13_c01307{bottom:798.219000px;}
.y12_c01307{bottom:814.657500px;}
.y11_c01307{bottom:831.096000px;}
.y10_c01307{bottom:847.534500px;}
.yf_c01307{bottom:863.973000px;}
.ye_c01307{bottom:880.411500px;}
.yd_c01307{bottom:896.848500px;}
.yc_c01307{bottom:913.287000px;}
.yb_c01307{bottom:946.164000px;}
.ya_c01307{bottom:962.602500px;}
.y9_c01307{bottom:979.041000px;}
.y8_c01307{bottom:1011.918000px;}
.y7_c01307{bottom:1028.356500px;}
.y6_c01307{bottom:1044.795000px;}
.y5_c01307{bottom:1061.232000px;}
.y4_c01307{bottom:1077.670500px;}
.y3_c01307{bottom:1094.109000px;}
.y2_c01307{bottom:1110.547500px;}
.y1_c01307{bottom:1159.863000px;}
.h3_c01307{height:35.190766px;}
.h2_c01307{height:36.007158px;}
.h5_c01307{height:40.511979px;}
.h6_c01307{height:52.332837px;}
.h4_c01307{height:58.337477px;}
.h0_c01307{height:1262.835000px;}
.h1_c01307{height:1263.000000px;}
.w0_c01307{width:892.920000px;}
.w1_c01307{width:893.250000px;}
.x0_c01307{left:0.000000px;}
.x4_c01307{left:127.558500px;}
.x2_c01307{left:137.122500px;}
.x1_c01307{left:143.770500px;}
.x3_c01307{left:177.007500px;}
.x5_c01307{left:435.249000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.ls4_c01307{letter-spacing:0.000000pt;}
.ls0_c01307{letter-spacing:0.078221pt;}
.ls2_c01307{letter-spacing:0.087539pt;}
.ls3_c01307{letter-spacing:0.092873pt;}
.ls1_c01307{letter-spacing:23.724873pt;}
.ws2_c01307{word-spacing:-23.622682pt;}
.ws4_c01307{word-spacing:-23.544461pt;}
.wse_c01307{word-spacing:-19.158506pt;}
.wsd_c01307{word-spacing:-19.128192pt;}
.wsc_c01307{word-spacing:-17.109105pt;}
.wsa_c01307{word-spacing:-16.684034pt;}
.ws9_c01307{word-spacing:-13.283467pt;}
.wsf_c01307{word-spacing:-12.539593pt;}
.ws10_c01307{word-spacing:-10.733041pt;}
.wsb_c01307{word-spacing:-9.093461pt;}
.ws7_c01307{word-spacing:-8.878599pt;}
.ws8_c01307{word-spacing:-8.877777pt;}
.ws3_c01307{word-spacing:0.000000pt;}
.ws0_c01307{word-spacing:0.039110pt;}
.ws5_c01307{word-spacing:0.189730pt;}
.ws1_c01307{word-spacing:0.195063pt;}
.ws6_c01307{word-spacing:38.256533pt;}
._1_c01307{margin-left:-1.377235pt;}
._0_c01307{width:0.978790pt;}
._2_c01307{width:17.720725pt;}
._3_c01307{width:35.652825pt;}
.fs0_c01307{font-size:39.110400pt;}
.fs2_c01307{font-size:53.133867pt;}
.fs1_c01307{font-size:76.513067pt;}
.y0_c01307{bottom:0.000000pt;}
.y20_c01307{bottom:39.333333pt;}
.y1f_c01307{bottom:72.934667pt;}
.y1e_c01307{bottom:88.874667pt;}
.y1d_c01307{bottom:104.814667pt;}
.y1c_c01307{bottom:120.754667pt;}
.y1b_c01307{bottom:144.445333pt;}
.y1a_c01307{bottom:168.134667pt;}
.y19_c01307{bottom:191.824000pt;}
.y18_c01307{bottom:215.514667pt;}
.y17_c01307{bottom:252.869333pt;}
.y16_c01307{bottom:665.692000pt;}
.y15_c01307{bottom:680.304000pt;}
.y14_c01307{bottom:694.916000pt;}
.y13_c01307{bottom:709.528000pt;}
.y12_c01307{bottom:724.140000pt;}
.y11_c01307{bottom:738.752000pt;}
.y10_c01307{bottom:753.364000pt;}
.yf_c01307{bottom:767.976000pt;}
.ye_c01307{bottom:782.588000pt;}
.yd_c01307{bottom:797.198667pt;}
.yc_c01307{bottom:811.810667pt;}
.yb_c01307{bottom:841.034667pt;}
.ya_c01307{bottom:855.646667pt;}
.y9_c01307{bottom:870.258667pt;}
.y8_c01307{bottom:899.482667pt;}
.y7_c01307{bottom:914.094667pt;}
.y6_c01307{bottom:928.706667pt;}
.y5_c01307{bottom:943.317333pt;}
.y4_c01307{bottom:957.929333pt;}
.y3_c01307{bottom:972.541333pt;}
.y2_c01307{bottom:987.153333pt;}
.y1_c01307{bottom:1030.989333pt;}
.h3_c01307{height:31.280681pt;}
.h2_c01307{height:32.006363pt;}
.h5_c01307{height:36.010648pt;}
.h6_c01307{height:46.518078pt;}
.h4_c01307{height:51.855535pt;}
.h0_c01307{height:1122.520000pt;}
.h1_c01307{height:1122.666667pt;}
.w0_c01307{width:793.706667pt;}
.w1_c01307{width:794.000000pt;}
.x0_c01307{left:0.000000pt;}
.x4_c01307{left:113.385333pt;}
.x2_c01307{left:121.886667pt;}
.x1_c01307{left:127.796000pt;}
.x3_c01307{left:157.340000pt;}
.x5_c01307{left:386.888000pt;}
}





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

.ir_c01308:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01308;src:url('chunks/assets/font_cf4f0590e8e3578f58f7d4b7.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01308;src:url('chunks/assets/font_8e5f2f5d1bbe5adee54f91f3.woff2')format("woff");}.ff2_c01308{font-family:ff2_c01308;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01308;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01308{font-family:ff3_c01308;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01308;src:url('chunks/assets/font_146a88204cdcd97e63cde073.woff2')format("woff");}.ff4_c01308{font-family:ff4_c01308;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.ls4_c01308{letter-spacing:0.000000px;}
.ls1_c01308{letter-spacing:0.087998px;}
.ls2_c01308{letter-spacing:0.098482px;}
.ls0_c01308{letter-spacing:0.104482px;}
.ls3_c01308{letter-spacing:26.690482px;}
.sc__c01308{text-shadow:none;}
.sc0_c01308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01308{-webkit-text-stroke:0px transparent;}
.sc0_c01308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01308{word-spacing:-33.713438px;}
.ws4_c01308{word-spacing:-26.575517px;}
.ws3_c01308{word-spacing:-26.487518px;}
.ws0_c01308{word-spacing:-18.769538px;}
.ws8_c01308{word-spacing:0.000000px;}
.ws5_c01308{word-spacing:0.043999px;}
.wsb_c01308{word-spacing:0.056767px;}
.ws9_c01308{word-spacing:0.073250px;}
.wsa_c01308{word-spacing:0.083734px;}
.ws2_c01308{word-spacing:0.175997px;}
.wsc_c01308{word-spacing:0.202963px;}
.ws6_c01308{word-spacing:0.213446px;}
.ws7_c01308{word-spacing:0.219446px;}
._0_c01308{margin-left:-3.825638px;}
._1_c01308{width:1.005737px;}
._3_c01308{width:53.283031px;}
._2_c01308{width:79.858548px;}
._5_c01308{width:106.830058px;}
._4_c01308{width:133.452408px;}
.fc5_c01308{color:rgb(0,0,207);}
.fc4_c01308{color:rgb(79,153,5);}
.fc3_c01308{color:rgb(207,92,0);}
.fc2_c01308{color:rgb(33,74,135);}
.fc1_c01308{color:rgb(143,89,3);}
.fc0_c01308{color:rgb(0,0,0);}
.fs1_c01308{font-size:43.999200px;}
.fs0_c01308{font-size:59.775600px;}
.y0_c01308{bottom:0.000000px;}
.y2d_c01308{bottom:44.250000px;}
.y2c_c01308{bottom:96.919500px;}
.y2b_c01308{bottom:113.358000px;}
.y2a_c01308{bottom:129.796500px;}
.y29_c01308{bottom:146.235000px;}
.y28_c01308{bottom:162.673500px;}
.y27_c01308{bottom:179.112000px;}
.y26_c01308{bottom:195.550500px;}
.y25_c01308{bottom:211.989000px;}
.y24_c01308{bottom:228.427500px;}
.y23_c01308{bottom:244.866000px;}
.y22_c01308{bottom:261.304500px;}
.y21_c01308{bottom:294.180000px;}
.y20_c01308{bottom:310.618500px;}
.y1f_c01308{bottom:327.057000px;}
.y1e_c01308{bottom:359.934000px;}
.y1d_c01308{bottom:376.372500px;}
.y1c_c01308{bottom:392.811000px;}
.y1b_c01308{bottom:409.249500px;}
.y1a_c01308{bottom:425.688000px;}
.y19_c01308{bottom:442.125000px;}
.y18_c01308{bottom:458.563500px;}
.y17_c01308{bottom:507.879000px;}
.y16_c01308{bottom:524.317500px;}
.y15_c01308{bottom:540.756000px;}
.y14_c01308{bottom:557.194500px;}
.y13_c01308{bottom:573.633000px;}
.y12_c01308{bottom:590.071500px;}
.y11_c01308{bottom:606.508500px;}
.y10_c01308{bottom:622.947000px;}
.yf_c01308{bottom:639.385500px;}
.ye_c01308{bottom:655.824000px;}
.yd_c01308{bottom:672.262500px;}
.yc_c01308{bottom:688.701000px;}
.yb_c01308{bottom:705.139500px;}
.ya_c01308{bottom:721.578000px;}
.y9_c01308{bottom:738.016500px;}
.y8_c01308{bottom:754.455000px;}
.y7_c01308{bottom:787.330500px;}
.y6_c01308{bottom:803.769000px;}
.y5_c01308{bottom:853.084500px;}
.y4_c01308{bottom:869.523000px;}
.y3_c01308{bottom:885.588000px;}
.y2_c01308{bottom:1141.930500px;}
.y1_c01308{bottom:1159.863000px;}
.h3_c01308{height:35.190766px;}
.h4_c01308{height:36.007158px;}
.h2_c01308{height:52.332837px;}
.h0_c01308{height:1262.835000px;}
.h1_c01308{height:1263.000000px;}
.w0_c01308{width:892.920000px;}
.w1_c01308{width:893.250000px;}
.x0_c01308{left:0.000000px;}
.x1_c01308{left:127.558500px;}
.x2_c01308{left:137.122500px;}
.x3_c01308{left:143.770500px;}
.x4_c01308{left:177.007500px;}
.x5_c01308{left:435.249000px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls4_c01308{letter-spacing:0.000000pt;}
.ls1_c01308{letter-spacing:0.078221pt;}
.ls2_c01308{letter-spacing:0.087539pt;}
.ls0_c01308{letter-spacing:0.092873pt;}
.ls3_c01308{letter-spacing:23.724873pt;}
.ws1_c01308{word-spacing:-29.967501pt;}
.ws4_c01308{word-spacing:-23.622682pt;}
.ws3_c01308{word-spacing:-23.544461pt;}
.ws0_c01308{word-spacing:-16.684034pt;}
.ws8_c01308{word-spacing:0.000000pt;}
.ws5_c01308{word-spacing:0.039110pt;}
.wsb_c01308{word-spacing:0.050460pt;}
.ws9_c01308{word-spacing:0.065111pt;}
.wsa_c01308{word-spacing:0.074430pt;}
.ws2_c01308{word-spacing:0.156442pt;}
.wsc_c01308{word-spacing:0.180412pt;}
.ws6_c01308{word-spacing:0.189730pt;}
.ws7_c01308{word-spacing:0.195063pt;}
._0_c01308{margin-left:-3.400567pt;}
._1_c01308{width:0.893988pt;}
._3_c01308{width:47.362694pt;}
._2_c01308{width:70.985376pt;}
._5_c01308{width:94.960051pt;}
._4_c01308{width:118.624363pt;}
.fs1_c01308{font-size:39.110400pt;}
.fs0_c01308{font-size:53.133867pt;}
.y0_c01308{bottom:0.000000pt;}
.y2d_c01308{bottom:39.333333pt;}
.y2c_c01308{bottom:86.150667pt;}
.y2b_c01308{bottom:100.762667pt;}
.y2a_c01308{bottom:115.374667pt;}
.y29_c01308{bottom:129.986667pt;}
.y28_c01308{bottom:144.598667pt;}
.y27_c01308{bottom:159.210667pt;}
.y26_c01308{bottom:173.822667pt;}
.y25_c01308{bottom:188.434667pt;}
.y24_c01308{bottom:203.046667pt;}
.y23_c01308{bottom:217.658667pt;}
.y22_c01308{bottom:232.270667pt;}
.y21_c01308{bottom:261.493333pt;}
.y20_c01308{bottom:276.105333pt;}
.y1f_c01308{bottom:290.717333pt;}
.y1e_c01308{bottom:319.941333pt;}
.y1d_c01308{bottom:334.553333pt;}
.y1c_c01308{bottom:349.165333pt;}
.y1b_c01308{bottom:363.777333pt;}
.y1a_c01308{bottom:378.389333pt;}
.y19_c01308{bottom:393.000000pt;}
.y18_c01308{bottom:407.612000pt;}
.y17_c01308{bottom:451.448000pt;}
.y16_c01308{bottom:466.060000pt;}
.y15_c01308{bottom:480.672000pt;}
.y14_c01308{bottom:495.284000pt;}
.y13_c01308{bottom:509.896000pt;}
.y12_c01308{bottom:524.508000pt;}
.y11_c01308{bottom:539.118667pt;}
.y10_c01308{bottom:553.730667pt;}
.yf_c01308{bottom:568.342667pt;}
.ye_c01308{bottom:582.954667pt;}
.yd_c01308{bottom:597.566667pt;}
.yc_c01308{bottom:612.178667pt;}
.yb_c01308{bottom:626.790667pt;}
.ya_c01308{bottom:641.402667pt;}
.y9_c01308{bottom:656.014667pt;}
.y8_c01308{bottom:670.626667pt;}
.y7_c01308{bottom:699.849333pt;}
.y6_c01308{bottom:714.461333pt;}
.y5_c01308{bottom:758.297333pt;}
.y4_c01308{bottom:772.909333pt;}
.y3_c01308{bottom:787.189333pt;}
.y2_c01308{bottom:1015.049333pt;}
.y1_c01308{bottom:1030.989333pt;}
.h3_c01308{height:31.280681pt;}
.h4_c01308{height:32.006363pt;}
.h2_c01308{height:46.518078pt;}
.h0_c01308{height:1122.520000pt;}
.h1_c01308{height:1122.666667pt;}
.w0_c01308{width:793.706667pt;}
.w1_c01308{width:794.000000pt;}
.x0_c01308{left:0.000000pt;}
.x1_c01308{left:113.385333pt;}
.x2_c01308{left:121.886667pt;}
.x3_c01308{left:127.796000pt;}
.x4_c01308{left:157.340000pt;}
.x5_c01308{left:386.888000pt;}
}





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

.ir_c01309:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01309;src:url('chunks/assets/font_7548ccdc20e4d6f1371bd89f.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01309;src:url('chunks/assets/font_2d669eade2f515fc29032de4.woff2')format("woff");}.ff2_c01309{font-family:ff2_c01309;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01309;src:url('chunks/assets/font_e4836062d5b3238d91e40a32.woff2')format("woff");}.ff3_c01309{font-family:ff3_c01309;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01309;src:url('chunks/assets/font_95515170092831c0bf98562d.woff2')format("woff");}.ff4_c01309{font-family:ff4_c01309;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01309;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01309{font-family:ff5_c01309;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01309{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01309{vertical-align:0.000000px;}
.ls3_c01309{letter-spacing:0.000000px;}
.ls0_c01309{letter-spacing:0.087998px;}
.ls2_c01309{letter-spacing:0.098482px;}
.ls1_c01309{letter-spacing:0.104482px;}
.sc__c01309{text-shadow:none;}
.sc0_c01309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01309{-webkit-text-stroke:0px transparent;}
.sc0_c01309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01309{word-spacing:-26.575517px;}
.wse_c01309{word-spacing:-26.487518px;}
.ws9_c01309{word-spacing:-22.356074px;}
.ws8_c01309{word-spacing:-21.339889px;}
.ws7_c01309{word-spacing:-21.280114px;}
.ws5_c01309{word-spacing:-18.769538px;}
.wsb_c01309{word-spacing:-18.530436px;}
.wsc_c01309{word-spacing:-17.813129px;}
.ws4_c01309{word-spacing:-14.943900px;}
.wsa_c01309{word-spacing:-12.074671px;}
.ws6_c01309{word-spacing:-11.262144px;}
.ws1_c01309{word-spacing:-9.988424px;}
.ws3_c01309{word-spacing:-9.987499px;}
.ws12_c01309{word-spacing:0.000000px;}
.wsf_c01309{word-spacing:0.043999px;}
.wsd_c01309{word-spacing:0.175997px;}
.ws11_c01309{word-spacing:0.213446px;}
.ws10_c01309{word-spacing:0.219446px;}
.ws0_c01309{word-spacing:43.038600px;}
._2_c01309{margin-left:-6.580632px;}
._7_c01309{margin-left:-4.679447px;}
._8_c01309{margin-left:-3.287658px;}
._0_c01309{margin-left:-1.549390px;}
._9_c01309{width:1.005737px;}
._3_c01309{width:12.552876px;}
._6_c01309{width:16.228422px;}
._4_c01309{width:18.769538px;}
._1_c01309{width:19.935816px;}
._5_c01309{width:23.628312px;}
._a_c01309{width:53.547026px;}
.fc5_c01309{color:rgb(79,153,5);}
.fc3_c01309{color:rgb(33,74,135);}
.fc2_c01309{color:rgb(143,89,3);}
.fc4_c01309{color:rgb(207,92,0);}
.fc1_c01309{color:rgb(6,69,173);}
.fc0_c01309{color:rgb(0,0,0);}
.fs2_c01309{font-size:43.999200px;}
.fs1_c01309{font-size:59.775600px;}
.fs0_c01309{font-size:86.077200px;}
.y0_c01309{bottom:0.000000px;}
.y1e_c01309{bottom:44.250000px;}
.y1d_c01309{bottom:86.982000px;}
.y1c_c01309{bottom:136.297500px;}
.y1b_c01309{bottom:152.736000px;}
.y1a_c01309{bottom:185.613000px;}
.y19_c01309{bottom:202.051500px;}
.y18_c01309{bottom:234.927000px;}
.y17_c01309{bottom:251.365500px;}
.y16_c01309{bottom:267.804000px;}
.y15_c01309{bottom:284.242500px;}
.y14_c01309{bottom:317.119500px;}
.y13_c01309{bottom:333.558000px;}
.y12_c01309{bottom:349.996500px;}
.y11_c01309{bottom:366.435000px;}
.y10_c01309{bottom:382.873500px;}
.yf_c01309{bottom:399.310500px;}
.ye_c01309{bottom:415.749000px;}
.yd_c01309{bottom:432.187500px;}
.yc_c01309{bottom:448.252500px;}
.yb_c01309{bottom:495.994500px;}
.ya_c01309{bottom:513.927000px;}
.y9_c01309{bottom:531.859500px;}
.y8_c01309{bottom:549.792000px;}
.y7_c01309{bottom:567.726000px;}
.y6_c01309{bottom:585.658500px;}
.y5_c01309{bottom:612.480000px;}
.y4_c01309{bottom:639.301500px;}
.y3_c01309{bottom:666.123000px;}
.y2_c01309{bottom:692.944500px;}
.y1_c01309{bottom:735.139500px;}
.h5_c01309{height:35.190766px;}
.h6_c01309{height:36.007158px;}
.h3_c01309{height:40.511979px;}
.h4_c01309{height:52.332837px;}
.h2_c01309{height:58.337477px;}
.h0_c01309{height:1262.835000px;}
.h1_c01309{height:1263.000000px;}
.w0_c01309{width:892.920000px;}
.w1_c01309{width:893.250000px;}
.x0_c01309{left:0.000000px;}
.x1_c01309{left:127.558500px;}
.x2_c01309{left:137.122500px;}
.x3_c01309{left:435.249000px;}
@media print{
.v0_c01309{vertical-align:0.000000pt;}
.ls3_c01309{letter-spacing:0.000000pt;}
.ls0_c01309{letter-spacing:0.078221pt;}
.ls2_c01309{letter-spacing:0.087539pt;}
.ls1_c01309{letter-spacing:0.092873pt;}
.ws2_c01309{word-spacing:-23.622682pt;}
.wse_c01309{word-spacing:-23.544461pt;}
.ws9_c01309{word-spacing:-19.872066pt;}
.ws8_c01309{word-spacing:-18.968790pt;}
.ws7_c01309{word-spacing:-18.915657pt;}
.ws5_c01309{word-spacing:-16.684034pt;}
.wsb_c01309{word-spacing:-16.471499pt;}
.wsc_c01309{word-spacing:-15.833892pt;}
.ws4_c01309{word-spacing:-13.283467pt;}
.wsa_c01309{word-spacing:-10.733041pt;}
.ws6_c01309{word-spacing:-10.010795pt;}
.ws1_c01309{word-spacing:-8.878599pt;}
.ws3_c01309{word-spacing:-8.877777pt;}
.ws12_c01309{word-spacing:0.000000pt;}
.wsf_c01309{word-spacing:0.039110pt;}
.wsd_c01309{word-spacing:0.156442pt;}
.ws11_c01309{word-spacing:0.189730pt;}
.ws10_c01309{word-spacing:0.195063pt;}
.ws0_c01309{word-spacing:38.256533pt;}
._2_c01309{margin-left:-5.849451pt;}
._7_c01309{margin-left:-4.159508pt;}
._8_c01309{margin-left:-2.922363pt;}
._0_c01309{margin-left:-1.377235pt;}
._9_c01309{width:0.893988pt;}
._3_c01309{width:11.158112pt;}
._6_c01309{width:14.425264pt;}
._4_c01309{width:16.684034pt;}
._1_c01309{width:17.720725pt;}
._5_c01309{width:21.002944pt;}
._a_c01309{width:47.597357pt;}
.fs2_c01309{font-size:39.110400pt;}
.fs1_c01309{font-size:53.133867pt;}
.fs0_c01309{font-size:76.513067pt;}
.y0_c01309{bottom:0.000000pt;}
.y1e_c01309{bottom:39.333333pt;}
.y1d_c01309{bottom:77.317333pt;}
.y1c_c01309{bottom:121.153333pt;}
.y1b_c01309{bottom:135.765333pt;}
.y1a_c01309{bottom:164.989333pt;}
.y19_c01309{bottom:179.601333pt;}
.y18_c01309{bottom:208.824000pt;}
.y17_c01309{bottom:223.436000pt;}
.y16_c01309{bottom:238.048000pt;}
.y15_c01309{bottom:252.660000pt;}
.y14_c01309{bottom:281.884000pt;}
.y13_c01309{bottom:296.496000pt;}
.y12_c01309{bottom:311.108000pt;}
.y11_c01309{bottom:325.720000pt;}
.y10_c01309{bottom:340.332000pt;}
.yf_c01309{bottom:354.942667pt;}
.ye_c01309{bottom:369.554667pt;}
.yd_c01309{bottom:384.166667pt;}
.yc_c01309{bottom:398.446667pt;}
.yb_c01309{bottom:440.884000pt;}
.ya_c01309{bottom:456.824000pt;}
.y9_c01309{bottom:472.764000pt;}
.y8_c01309{bottom:488.704000pt;}
.y7_c01309{bottom:504.645333pt;}
.y6_c01309{bottom:520.585333pt;}
.y5_c01309{bottom:544.426667pt;}
.y4_c01309{bottom:568.268000pt;}
.y3_c01309{bottom:592.109333pt;}
.y2_c01309{bottom:615.950667pt;}
.y1_c01309{bottom:653.457333pt;}
.h5_c01309{height:31.280681pt;}
.h6_c01309{height:32.006363pt;}
.h3_c01309{height:36.010648pt;}
.h4_c01309{height:46.518078pt;}
.h2_c01309{height:51.855535pt;}
.h0_c01309{height:1122.520000pt;}
.h1_c01309{height:1122.666667pt;}
.w0_c01309{width:793.706667pt;}
.w1_c01309{width:794.000000pt;}
.x0_c01309{left:0.000000pt;}
.x1_c01309{left:113.385333pt;}
.x2_c01309{left:121.886667pt;}
.x3_c01309{left:386.888000pt;}
}





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

.ir_c01310:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01310;src:url('chunks/assets/font_355a0d17056932a0d43cf63f.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01310;src:url('chunks/assets/font_82c010342ecd87fdb3e25617.woff2')format("woff");}.ff2_c01310{font-family:ff2_c01310;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01310;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01310{font-family:ff3_c01310;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01310;src:url('chunks/assets/font_f601f5ef74037b54e3986a1a.woff2')format("woff");}.ff4_c01310{font-family:ff4_c01310;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01310;src:url('chunks/assets/font_d7b7e7e4f9a8e135ef23d2a2.woff2')format("woff");}.ff5_c01310{font-family:ff5_c01310;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01310{vertical-align:0.000000px;}
.ls4_c01310{letter-spacing:0.000000px;}
.ls0_c01310{letter-spacing:0.087998px;}
.ls3_c01310{letter-spacing:0.098482px;}
.ls1_c01310{letter-spacing:0.104482px;}
.ls2_c01310{letter-spacing:0.146482px;}
.sc__c01310{text-shadow:none;}
.sc0_c01310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01310{-webkit-text-stroke:0px transparent;}
.sc0_c01310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01310{word-spacing:-33.713438px;}
.ws0_c01310{word-spacing:-26.575517px;}
.ws1_c01310{word-spacing:-26.487518px;}
.wsa_c01310{word-spacing:-18.769538px;}
.ws9_c01310{word-spacing:-14.943900px;}
.ws7_c01310{word-spacing:-9.988424px;}
.ws8_c01310{word-spacing:-9.987499px;}
.ws4_c01310{word-spacing:0.000000px;}
.ws3_c01310{word-spacing:0.043999px;}
.ws2_c01310{word-spacing:0.056767px;}
.ws5_c01310{word-spacing:0.213446px;}
.ws6_c01310{word-spacing:43.038600px;}
._3_c01310{margin-left:-6.580632px;}
._1_c01310{margin-left:-1.549390px;}
._0_c01310{width:1.041538px;}
._2_c01310{width:19.935816px;}
.fc5_c01310{color:rgb(79,153,5);}
.fc4_c01310{color:rgb(0,0,207);}
.fc3_c01310{color:rgb(207,92,0);}
.fc2_c01310{color:rgb(33,74,135);}
.fc1_c01310{color:rgb(143,89,3);}
.fc0_c01310{color:rgb(0,0,0);}
.fs0_c01310{font-size:43.999200px;}
.fs2_c01310{font-size:59.775600px;}
.fs1_c01310{font-size:86.077200px;}
.y0_c01310{bottom:0.000000px;}
.y21_c01310{bottom:44.250000px;}
.y20_c01310{bottom:82.051500px;}
.y1f_c01310{bottom:112.338000px;}
.y1e_c01310{bottom:142.626000px;}
.y1d_c01310{bottom:172.914000px;}
.y1c_c01310{bottom:220.090500px;}
.y1b_c01310{bottom:699.589500px;}
.y1a_c01310{bottom:716.028000px;}
.y19_c01310{bottom:732.465000px;}
.y18_c01310{bottom:748.903500px;}
.y17_c01310{bottom:765.342000px;}
.y16_c01310{bottom:781.780500px;}
.y15_c01310{bottom:798.219000px;}
.y14_c01310{bottom:814.657500px;}
.y13_c01310{bottom:831.096000px;}
.y12_c01310{bottom:847.534500px;}
.y11_c01310{bottom:863.973000px;}
.y10_c01310{bottom:896.848500px;}
.yf_c01310{bottom:913.287000px;}
.ye_c01310{bottom:929.725500px;}
.yd_c01310{bottom:962.602500px;}
.yc_c01310{bottom:979.041000px;}
.yb_c01310{bottom:995.479500px;}
.ya_c01310{bottom:1011.918000px;}
.y9_c01310{bottom:1028.356500px;}
.y8_c01310{bottom:1044.795000px;}
.y7_c01310{bottom:1061.232000px;}
.y6_c01310{bottom:1077.670500px;}
.y5_c01310{bottom:1094.109000px;}
.y4_c01310{bottom:1110.547500px;}
.y3_c01310{bottom:1126.986000px;}
.y2_c01310{bottom:1143.424500px;}
.y1_c01310{bottom:1159.863000px;}
.h3_c01310{height:35.190766px;}
.h2_c01310{height:36.007158px;}
.h5_c01310{height:40.511979px;}
.h6_c01310{height:52.332837px;}
.h4_c01310{height:58.337477px;}
.h0_c01310{height:1262.835000px;}
.h1_c01310{height:1263.000000px;}
.w0_c01310{width:892.920000px;}
.w1_c01310{width:893.250000px;}
.x0_c01310{left:0.000000px;}
.x4_c01310{left:127.558500px;}
.x1_c01310{left:137.122500px;}
.x3_c01310{left:177.007500px;}
.x2_c01310{left:230.185500px;}
.x5_c01310{left:435.526500px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.ls4_c01310{letter-spacing:0.000000pt;}
.ls0_c01310{letter-spacing:0.078221pt;}
.ls3_c01310{letter-spacing:0.087539pt;}
.ls1_c01310{letter-spacing:0.092873pt;}
.ls2_c01310{letter-spacing:0.130206pt;}
.wsb_c01310{word-spacing:-29.967501pt;}
.ws0_c01310{word-spacing:-23.622682pt;}
.ws1_c01310{word-spacing:-23.544461pt;}
.wsa_c01310{word-spacing:-16.684034pt;}
.ws9_c01310{word-spacing:-13.283467pt;}
.ws7_c01310{word-spacing:-8.878599pt;}
.ws8_c01310{word-spacing:-8.877777pt;}
.ws4_c01310{word-spacing:0.000000pt;}
.ws3_c01310{word-spacing:0.039110pt;}
.ws2_c01310{word-spacing:0.050460pt;}
.ws5_c01310{word-spacing:0.189730pt;}
.ws6_c01310{word-spacing:38.256533pt;}
._3_c01310{margin-left:-5.849451pt;}
._1_c01310{margin-left:-1.377235pt;}
._0_c01310{width:0.925811pt;}
._2_c01310{width:17.720725pt;}
.fs0_c01310{font-size:39.110400pt;}
.fs2_c01310{font-size:53.133867pt;}
.fs1_c01310{font-size:76.513067pt;}
.y0_c01310{bottom:0.000000pt;}
.y21_c01310{bottom:39.333333pt;}
.y20_c01310{bottom:72.934667pt;}
.y1f_c01310{bottom:99.856000pt;}
.y1e_c01310{bottom:126.778667pt;}
.y1d_c01310{bottom:153.701333pt;}
.y1c_c01310{bottom:195.636000pt;}
.y1b_c01310{bottom:621.857333pt;}
.y1a_c01310{bottom:636.469333pt;}
.y19_c01310{bottom:651.080000pt;}
.y18_c01310{bottom:665.692000pt;}
.y17_c01310{bottom:680.304000pt;}
.y16_c01310{bottom:694.916000pt;}
.y15_c01310{bottom:709.528000pt;}
.y14_c01310{bottom:724.140000pt;}
.y13_c01310{bottom:738.752000pt;}
.y12_c01310{bottom:753.364000pt;}
.y11_c01310{bottom:767.976000pt;}
.y10_c01310{bottom:797.198667pt;}
.yf_c01310{bottom:811.810667pt;}
.ye_c01310{bottom:826.422667pt;}
.yd_c01310{bottom:855.646667pt;}
.yc_c01310{bottom:870.258667pt;}
.yb_c01310{bottom:884.870667pt;}
.ya_c01310{bottom:899.482667pt;}
.y9_c01310{bottom:914.094667pt;}
.y8_c01310{bottom:928.706667pt;}
.y7_c01310{bottom:943.317333pt;}
.y6_c01310{bottom:957.929333pt;}
.y5_c01310{bottom:972.541333pt;}
.y4_c01310{bottom:987.153333pt;}
.y3_c01310{bottom:1001.765333pt;}
.y2_c01310{bottom:1016.377333pt;}
.y1_c01310{bottom:1030.989333pt;}
.h3_c01310{height:31.280681pt;}
.h2_c01310{height:32.006363pt;}
.h5_c01310{height:36.010648pt;}
.h6_c01310{height:46.518078pt;}
.h4_c01310{height:51.855535pt;}
.h0_c01310{height:1122.520000pt;}
.h1_c01310{height:1122.666667pt;}
.w0_c01310{width:793.706667pt;}
.w1_c01310{width:794.000000pt;}
.x0_c01310{left:0.000000pt;}
.x4_c01310{left:113.385333pt;}
.x1_c01310{left:121.886667pt;}
.x3_c01310{left:157.340000pt;}
.x2_c01310{left:204.609333pt;}
.x5_c01310{left:387.134667pt;}
}





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

.ir_c01311:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01311;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01311;src:url('chunks/assets/font_25b3263fd5ad1789454e4168.woff2')format("woff");}.ff2_c01311{font-family:ff2_c01311;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01311;src:url('chunks/assets/font_4e3e7eaf40efb0104f40573a.woff2')format("woff");}.ff3_c01311{font-family:ff3_c01311;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01311;src:url('chunks/assets/font_e81e5ad915a5698278b7e8de.woff2')format("woff");}.ff4_c01311{font-family:ff4_c01311;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01311;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01311{font-family:ff5_c01311;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01311{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01311{vertical-align:0.000000px;}
.ls4_c01311{letter-spacing:0.000000px;}
.ls0_c01311{letter-spacing:0.087998px;}
.ls2_c01311{letter-spacing:0.098482px;}
.ls1_c01311{letter-spacing:0.104482px;}
.ls3_c01311{letter-spacing:26.690482px;}
.sc__c01311{text-shadow:none;}
.sc0_c01311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01311{-webkit-text-stroke:0px transparent;}
.sc0_c01311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01311{word-spacing:-33.713438px;}
.ws4_c01311{word-spacing:-26.575517px;}
.wsa_c01311{word-spacing:-26.487518px;}
.ws3_c01311{word-spacing:-21.553319px;}
.ws2_c01311{word-spacing:-21.519216px;}
.ws7_c01311{word-spacing:-18.769538px;}
.ws1_c01311{word-spacing:-16.019861px;}
.ws5_c01311{word-spacing:-14.107042px;}
.ws6_c01311{word-spacing:-12.074671px;}
.ws0_c01311{word-spacing:-4.536144px;}
.wse_c01311{word-spacing:0.000000px;}
.wsb_c01311{word-spacing:0.043999px;}
.ws11_c01311{word-spacing:0.056767px;}
.wsf_c01311{word-spacing:0.073250px;}
.ws10_c01311{word-spacing:0.083734px;}
.ws9_c01311{word-spacing:0.175997px;}
.ws12_c01311{word-spacing:0.202963px;}
.wsc_c01311{word-spacing:0.213446px;}
.wsd_c01311{word-spacing:0.219446px;}
._4_c01311{margin-left:-3.825638px;}
._1_c01311{margin-left:-2.347817px;}
._0_c01311{margin-left:-1.075961px;}
._5_c01311{width:1.005737px;}
._2_c01311{width:20.742133px;}
._3_c01311{width:40.109428px;}
._7_c01311{width:53.283031px;}
._6_c01311{width:79.858548px;}
._8_c01311{width:133.452408px;}
.fc6_c01311{color:rgb(0,0,207);}
.fc5_c01311{color:rgb(79,153,5);}
.fc3_c01311{color:rgb(33,74,135);}
.fc2_c01311{color:rgb(143,89,3);}
.fc4_c01311{color:rgb(207,92,0);}
.fc1_c01311{color:rgb(6,69,173);}
.fc0_c01311{color:rgb(0,0,0);}
.fs1_c01311{font-size:43.999200px;}
.fs0_c01311{font-size:59.775600px;}
.y0_c01311{bottom:0.000000px;}
.y31_c01311{bottom:44.250000px;}
.y30_c01311{bottom:96.919500px;}
.y2f_c01311{bottom:113.358000px;}
.y2e_c01311{bottom:129.796500px;}
.y2d_c01311{bottom:146.235000px;}
.y2c_c01311{bottom:162.673500px;}
.y2b_c01311{bottom:179.112000px;}
.y2a_c01311{bottom:195.550500px;}
.y29_c01311{bottom:211.989000px;}
.y28_c01311{bottom:228.427500px;}
.y27_c01311{bottom:244.866000px;}
.y26_c01311{bottom:261.304500px;}
.y25_c01311{bottom:294.180000px;}
.y24_c01311{bottom:310.618500px;}
.y23_c01311{bottom:327.057000px;}
.y22_c01311{bottom:359.934000px;}
.y21_c01311{bottom:376.372500px;}
.y20_c01311{bottom:392.811000px;}
.y1f_c01311{bottom:409.249500px;}
.y1e_c01311{bottom:425.688000px;}
.y1d_c01311{bottom:442.125000px;}
.y1c_c01311{bottom:458.563500px;}
.y1b_c01311{bottom:507.879000px;}
.y1a_c01311{bottom:524.317500px;}
.y19_c01311{bottom:540.756000px;}
.y18_c01311{bottom:557.194500px;}
.y17_c01311{bottom:573.633000px;}
.y16_c01311{bottom:590.071500px;}
.y15_c01311{bottom:606.508500px;}
.y14_c01311{bottom:622.947000px;}
.y13_c01311{bottom:639.385500px;}
.y12_c01311{bottom:655.824000px;}
.y11_c01311{bottom:672.262500px;}
.y10_c01311{bottom:688.701000px;}
.yf_c01311{bottom:705.139500px;}
.ye_c01311{bottom:721.578000px;}
.yd_c01311{bottom:738.016500px;}
.yc_c01311{bottom:754.455000px;}
.yb_c01311{bottom:787.330500px;}
.ya_c01311{bottom:803.769000px;}
.y9_c01311{bottom:853.084500px;}
.y8_c01311{bottom:869.523000px;}
.y7_c01311{bottom:885.588000px;}
.y6_c01311{bottom:1070.199000px;}
.y5_c01311{bottom:1088.131500px;}
.y4_c01311{bottom:1106.064000px;}
.y3_c01311{bottom:1123.998000px;}
.y2_c01311{bottom:1141.930500px;}
.y1_c01311{bottom:1159.863000px;}
.h3_c01311{height:35.190766px;}
.h4_c01311{height:36.007158px;}
.h2_c01311{height:52.332837px;}
.h0_c01311{height:1262.835000px;}
.h1_c01311{height:1263.000000px;}
.w0_c01311{width:892.920000px;}
.w1_c01311{width:893.250000px;}
.x0_c01311{left:0.000000px;}
.x1_c01311{left:127.558500px;}
.x2_c01311{left:137.122500px;}
.x3_c01311{left:143.770500px;}
.x4_c01311{left:177.007500px;}
.x5_c01311{left:435.249000px;}
@media print{
.v0_c01311{vertical-align:0.000000pt;}
.ls4_c01311{letter-spacing:0.000000pt;}
.ls0_c01311{letter-spacing:0.078221pt;}
.ls2_c01311{letter-spacing:0.087539pt;}
.ls1_c01311{letter-spacing:0.092873pt;}
.ls3_c01311{letter-spacing:23.724873pt;}
.ws8_c01311{word-spacing:-29.967501pt;}
.ws4_c01311{word-spacing:-23.622682pt;}
.wsa_c01311{word-spacing:-23.544461pt;}
.ws3_c01311{word-spacing:-19.158506pt;}
.ws2_c01311{word-spacing:-19.128192pt;}
.ws7_c01311{word-spacing:-16.684034pt;}
.ws1_c01311{word-spacing:-14.239876pt;}
.ws5_c01311{word-spacing:-12.539593pt;}
.ws6_c01311{word-spacing:-10.733041pt;}
.ws0_c01311{word-spacing:-4.032128pt;}
.wse_c01311{word-spacing:0.000000pt;}
.wsb_c01311{word-spacing:0.039110pt;}
.ws11_c01311{word-spacing:0.050460pt;}
.wsf_c01311{word-spacing:0.065111pt;}
.ws10_c01311{word-spacing:0.074430pt;}
.ws9_c01311{word-spacing:0.156442pt;}
.ws12_c01311{word-spacing:0.180412pt;}
.wsc_c01311{word-spacing:0.189730pt;}
.wsd_c01311{word-spacing:0.195063pt;}
._4_c01311{margin-left:-3.400567pt;}
._1_c01311{margin-left:-2.086948pt;}
._0_c01311{margin-left:-0.956410pt;}
._5_c01311{width:0.893988pt;}
._2_c01311{width:18.437452pt;}
._3_c01311{width:35.652825pt;}
._7_c01311{width:47.362694pt;}
._6_c01311{width:70.985376pt;}
._8_c01311{width:118.624363pt;}
.fs1_c01311{font-size:39.110400pt;}
.fs0_c01311{font-size:53.133867pt;}
.y0_c01311{bottom:0.000000pt;}
.y31_c01311{bottom:39.333333pt;}
.y30_c01311{bottom:86.150667pt;}
.y2f_c01311{bottom:100.762667pt;}
.y2e_c01311{bottom:115.374667pt;}
.y2d_c01311{bottom:129.986667pt;}
.y2c_c01311{bottom:144.598667pt;}
.y2b_c01311{bottom:159.210667pt;}
.y2a_c01311{bottom:173.822667pt;}
.y29_c01311{bottom:188.434667pt;}
.y28_c01311{bottom:203.046667pt;}
.y27_c01311{bottom:217.658667pt;}
.y26_c01311{bottom:232.270667pt;}
.y25_c01311{bottom:261.493333pt;}
.y24_c01311{bottom:276.105333pt;}
.y23_c01311{bottom:290.717333pt;}
.y22_c01311{bottom:319.941333pt;}
.y21_c01311{bottom:334.553333pt;}
.y20_c01311{bottom:349.165333pt;}
.y1f_c01311{bottom:363.777333pt;}
.y1e_c01311{bottom:378.389333pt;}
.y1d_c01311{bottom:393.000000pt;}
.y1c_c01311{bottom:407.612000pt;}
.y1b_c01311{bottom:451.448000pt;}
.y1a_c01311{bottom:466.060000pt;}
.y19_c01311{bottom:480.672000pt;}
.y18_c01311{bottom:495.284000pt;}
.y17_c01311{bottom:509.896000pt;}
.y16_c01311{bottom:524.508000pt;}
.y15_c01311{bottom:539.118667pt;}
.y14_c01311{bottom:553.730667pt;}
.y13_c01311{bottom:568.342667pt;}
.y12_c01311{bottom:582.954667pt;}
.y11_c01311{bottom:597.566667pt;}
.y10_c01311{bottom:612.178667pt;}
.yf_c01311{bottom:626.790667pt;}
.ye_c01311{bottom:641.402667pt;}
.yd_c01311{bottom:656.014667pt;}
.yc_c01311{bottom:670.626667pt;}
.yb_c01311{bottom:699.849333pt;}
.ya_c01311{bottom:714.461333pt;}
.y9_c01311{bottom:758.297333pt;}
.y8_c01311{bottom:772.909333pt;}
.y7_c01311{bottom:787.189333pt;}
.y6_c01311{bottom:951.288000pt;}
.y5_c01311{bottom:967.228000pt;}
.y4_c01311{bottom:983.168000pt;}
.y3_c01311{bottom:999.109333pt;}
.y2_c01311{bottom:1015.049333pt;}
.y1_c01311{bottom:1030.989333pt;}
.h3_c01311{height:31.280681pt;}
.h4_c01311{height:32.006363pt;}
.h2_c01311{height:46.518078pt;}
.h0_c01311{height:1122.520000pt;}
.h1_c01311{height:1122.666667pt;}
.w0_c01311{width:793.706667pt;}
.w1_c01311{width:794.000000pt;}
.x0_c01311{left:0.000000pt;}
.x1_c01311{left:113.385333pt;}
.x2_c01311{left:121.886667pt;}
.x3_c01311{left:127.796000pt;}
.x4_c01311{left:157.340000pt;}
.x5_c01311{left:386.888000pt;}
}





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

.ir_c01312:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01312;src:url('chunks/assets/font_c58ec78c7b5b87820cd5c5d9.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01312;src:url('chunks/assets/font_6cd04e0a5747de26ba7917cb.woff2')format("woff");}.ff2_c01312{font-family:ff2_c01312;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01312;src:url('chunks/assets/font_7ec24a6c969b4aa302330274.woff2')format("woff");}.ff3_c01312{font-family:ff3_c01312;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01312;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01312{font-family:ff4_c01312;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01312;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01312{font-family:ff5_c01312;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01312{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01312{vertical-align:0.000000px;}
.ls3_c01312{letter-spacing:0.000000px;}
.ls0_c01312{letter-spacing:0.087998px;}
.ls2_c01312{letter-spacing:0.098482px;}
.ls1_c01312{letter-spacing:0.104482px;}
.sc__c01312{text-shadow:none;}
.sc0_c01312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01312{-webkit-text-stroke:0px transparent;}
.sc0_c01312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01312{word-spacing:-33.713438px;}
.ws2_c01312{word-spacing:-26.575517px;}
.wse_c01312{word-spacing:-26.487518px;}
.ws9_c01312{word-spacing:-21.553319px;}
.ws8_c01312{word-spacing:-21.519216px;}
.ws5_c01312{word-spacing:-18.769538px;}
.ws7_c01312{word-spacing:-17.633802px;}
.ws4_c01312{word-spacing:-14.943900px;}
.wsa_c01312{word-spacing:-14.107042px;}
.wsb_c01312{word-spacing:-12.074671px;}
.ws1_c01312{word-spacing:-9.988424px;}
.ws3_c01312{word-spacing:-9.987499px;}
.ws6_c01312{word-spacing:-7.686144px;}
.ws12_c01312{word-spacing:0.000000px;}
.wsf_c01312{word-spacing:0.043999px;}
.ws15_c01312{word-spacing:0.056767px;}
.ws13_c01312{word-spacing:0.073250px;}
.ws14_c01312{word-spacing:0.083734px;}
.wsd_c01312{word-spacing:0.175997px;}
.ws16_c01312{word-spacing:0.202963px;}
.ws10_c01312{word-spacing:0.213446px;}
.ws11_c01312{word-spacing:0.219446px;}
.ws0_c01312{word-spacing:43.038600px;}
._2_c01312{margin-left:-6.580632px;}
._4_c01312{margin-left:-3.825638px;}
._0_c01312{margin-left:-1.549390px;}
._5_c01312{width:1.005737px;}
._1_c01312{width:19.935816px;}
._3_c01312{width:40.109428px;}
._7_c01312{width:53.283031px;}
._6_c01312{width:79.858548px;}
._8_c01312{width:133.452408px;}
.fc6_c01312{color:rgb(0,0,207);}
.fc5_c01312{color:rgb(79,153,5);}
.fc3_c01312{color:rgb(33,74,135);}
.fc2_c01312{color:rgb(143,89,3);}
.fc4_c01312{color:rgb(207,92,0);}
.fc1_c01312{color:rgb(6,69,173);}
.fc0_c01312{color:rgb(0,0,0);}
.fs2_c01312{font-size:43.999200px;}
.fs1_c01312{font-size:59.775600px;}
.fs0_c01312{font-size:86.077200px;}
.y0_c01312{bottom:0.000000px;}
.y20_c01312{bottom:44.250000px;}
.y1f_c01312{bottom:86.982000px;}
.y1e_c01312{bottom:103.420500px;}
.y1d_c01312{bottom:119.859000px;}
.y1c_c01312{bottom:136.297500px;}
.y1b_c01312{bottom:152.736000px;}
.y1a_c01312{bottom:169.174500px;}
.y19_c01312{bottom:185.613000px;}
.y18_c01312{bottom:202.051500px;}
.y17_c01312{bottom:218.490000px;}
.y16_c01312{bottom:234.927000px;}
.y15_c01312{bottom:251.365500px;}
.y14_c01312{bottom:267.804000px;}
.y13_c01312{bottom:284.242500px;}
.y12_c01312{bottom:300.681000px;}
.y11_c01312{bottom:317.119500px;}
.y10_c01312{bottom:349.996500px;}
.yf_c01312{bottom:366.435000px;}
.ye_c01312{bottom:415.749000px;}
.yd_c01312{bottom:432.187500px;}
.yc_c01312{bottom:448.252500px;}
.yb_c01312{bottom:493.890000px;}
.ya_c01312{bottom:511.822500px;}
.y9_c01312{bottom:529.756500px;}
.y8_c01312{bottom:547.689000px;}
.y7_c01312{bottom:565.621500px;}
.y6_c01312{bottom:583.554000px;}
.y5_c01312{bottom:610.633500px;}
.y4_c01312{bottom:637.714500px;}
.y3_c01312{bottom:664.794000px;}
.y2_c01312{bottom:691.873500px;}
.y1_c01312{bottom:734.407500px;}
.h5_c01312{height:35.190766px;}
.h6_c01312{height:36.007158px;}
.h3_c01312{height:40.511979px;}
.h4_c01312{height:52.332837px;}
.h2_c01312{height:58.337477px;}
.h0_c01312{height:1262.835000px;}
.h1_c01312{height:1263.000000px;}
.w0_c01312{width:892.920000px;}
.w1_c01312{width:893.250000px;}
.x0_c01312{left:0.000000px;}
.x1_c01312{left:127.558500px;}
.x2_c01312{left:137.122500px;}
.x3_c01312{left:143.770500px;}
.x4_c01312{left:435.249000px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls3_c01312{letter-spacing:0.000000pt;}
.ls0_c01312{letter-spacing:0.078221pt;}
.ls2_c01312{letter-spacing:0.087539pt;}
.ls1_c01312{letter-spacing:0.092873pt;}
.wsc_c01312{word-spacing:-29.967501pt;}
.ws2_c01312{word-spacing:-23.622682pt;}
.wse_c01312{word-spacing:-23.544461pt;}
.ws9_c01312{word-spacing:-19.158506pt;}
.ws8_c01312{word-spacing:-19.128192pt;}
.ws5_c01312{word-spacing:-16.684034pt;}
.ws7_c01312{word-spacing:-15.674491pt;}
.ws4_c01312{word-spacing:-13.283467pt;}
.wsa_c01312{word-spacing:-12.539593pt;}
.wsb_c01312{word-spacing:-10.733041pt;}
.ws1_c01312{word-spacing:-8.878599pt;}
.ws3_c01312{word-spacing:-8.877777pt;}
.ws6_c01312{word-spacing:-6.832128pt;}
.ws12_c01312{word-spacing:0.000000pt;}
.wsf_c01312{word-spacing:0.039110pt;}
.ws15_c01312{word-spacing:0.050460pt;}
.ws13_c01312{word-spacing:0.065111pt;}
.ws14_c01312{word-spacing:0.074430pt;}
.wsd_c01312{word-spacing:0.156442pt;}
.ws16_c01312{word-spacing:0.180412pt;}
.ws10_c01312{word-spacing:0.189730pt;}
.ws11_c01312{word-spacing:0.195063pt;}
.ws0_c01312{word-spacing:38.256533pt;}
._2_c01312{margin-left:-5.849451pt;}
._4_c01312{margin-left:-3.400567pt;}
._0_c01312{margin-left:-1.377235pt;}
._5_c01312{width:0.893988pt;}
._1_c01312{width:17.720725pt;}
._3_c01312{width:35.652825pt;}
._7_c01312{width:47.362694pt;}
._6_c01312{width:70.985376pt;}
._8_c01312{width:118.624363pt;}
.fs2_c01312{font-size:39.110400pt;}
.fs1_c01312{font-size:53.133867pt;}
.fs0_c01312{font-size:76.513067pt;}
.y0_c01312{bottom:0.000000pt;}
.y20_c01312{bottom:39.333333pt;}
.y1f_c01312{bottom:77.317333pt;}
.y1e_c01312{bottom:91.929333pt;}
.y1d_c01312{bottom:106.541333pt;}
.y1c_c01312{bottom:121.153333pt;}
.y1b_c01312{bottom:135.765333pt;}
.y1a_c01312{bottom:150.377333pt;}
.y19_c01312{bottom:164.989333pt;}
.y18_c01312{bottom:179.601333pt;}
.y17_c01312{bottom:194.213333pt;}
.y16_c01312{bottom:208.824000pt;}
.y15_c01312{bottom:223.436000pt;}
.y14_c01312{bottom:238.048000pt;}
.y13_c01312{bottom:252.660000pt;}
.y12_c01312{bottom:267.272000pt;}
.y11_c01312{bottom:281.884000pt;}
.y10_c01312{bottom:311.108000pt;}
.yf_c01312{bottom:325.720000pt;}
.ye_c01312{bottom:369.554667pt;}
.yd_c01312{bottom:384.166667pt;}
.yc_c01312{bottom:398.446667pt;}
.yb_c01312{bottom:439.013333pt;}
.ya_c01312{bottom:454.953333pt;}
.y9_c01312{bottom:470.894667pt;}
.y8_c01312{bottom:486.834667pt;}
.y7_c01312{bottom:502.774667pt;}
.y6_c01312{bottom:518.714667pt;}
.y5_c01312{bottom:542.785333pt;}
.y4_c01312{bottom:566.857333pt;}
.y3_c01312{bottom:590.928000pt;}
.y2_c01312{bottom:614.998667pt;}
.y1_c01312{bottom:652.806667pt;}
.h5_c01312{height:31.280681pt;}
.h6_c01312{height:32.006363pt;}
.h3_c01312{height:36.010648pt;}
.h4_c01312{height:46.518078pt;}
.h2_c01312{height:51.855535pt;}
.h0_c01312{height:1122.520000pt;}
.h1_c01312{height:1122.666667pt;}
.w0_c01312{width:793.706667pt;}
.w1_c01312{width:794.000000pt;}
.x0_c01312{left:0.000000pt;}
.x1_c01312{left:113.385333pt;}
.x2_c01312{left:121.886667pt;}
.x3_c01312{left:127.796000pt;}
.x4_c01312{left:386.888000pt;}
}





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

.ir_c01313:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01313;src:url('chunks/assets/font_12bd554fd30b090e3d9b6a8e.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01313;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01313{font-family:ff2_c01313;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01313;src:url('chunks/assets/font_dfec4359be057c5d4452479b.woff2')format("woff");}.ff3_c01313{font-family:ff3_c01313;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01313;src:url('chunks/assets/font_c24e8ba0ba6689325d217f73.woff2')format("woff");}.ff4_c01313{font-family:ff4_c01313;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01313;src:url('chunks/assets/font_b36235796fcab8beb447b389.woff2')format("woff");}.ff5_c01313{font-family:ff5_c01313;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01313{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01313{vertical-align:0.000000px;}
.ls4_c01313{letter-spacing:0.000000px;}
.ls0_c01313{letter-spacing:0.087998px;}
.ls2_c01313{letter-spacing:0.098482px;}
.ls3_c01313{letter-spacing:0.104482px;}
.ls1_c01313{letter-spacing:26.690482px;}
.sc__c01313{text-shadow:none;}
.sc0_c01313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01313{-webkit-text-stroke:0px transparent;}
.sc0_c01313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01313{word-spacing:-26.575517px;}
.ws4_c01313{word-spacing:-26.487518px;}
.wse_c01313{word-spacing:-21.553319px;}
.wsd_c01313{word-spacing:-21.519216px;}
.wsa_c01313{word-spacing:-18.769538px;}
.wsc_c01313{word-spacing:-17.633802px;}
.ws9_c01313{word-spacing:-14.943900px;}
.wsf_c01313{word-spacing:-14.107042px;}
.ws10_c01313{word-spacing:-12.074671px;}
.ws7_c01313{word-spacing:-9.988424px;}
.ws8_c01313{word-spacing:-9.987499px;}
.wsb_c01313{word-spacing:-7.686144px;}
.ws3_c01313{word-spacing:0.000000px;}
.ws0_c01313{word-spacing:0.043999px;}
.ws5_c01313{word-spacing:0.213446px;}
.ws1_c01313{word-spacing:0.219446px;}
.ws6_c01313{word-spacing:43.038600px;}
._3_c01313{margin-left:-6.580632px;}
._1_c01313{margin-left:-1.549390px;}
._0_c01313{width:1.041538px;}
._2_c01313{width:19.935816px;}
._4_c01313{width:40.109428px;}
.fc5_c01313{color:rgb(79,153,5);}
.fc4_c01313{color:rgb(143,89,3);}
.fc3_c01313{color:rgb(0,0,0);}
.fc6_c01313{color:rgb(6,69,173);}
.fc2_c01313{color:rgb(207,92,0);}
.fc1_c01313{color:rgb(0,0,207);}
.fc0_c01313{color:rgb(33,74,135);}
.fs0_c01313{font-size:43.999200px;}
.fs2_c01313{font-size:59.775600px;}
.fs1_c01313{font-size:86.077200px;}
.y0_c01313{bottom:0.000000px;}
.y20_c01313{bottom:44.250000px;}
.y1f_c01313{bottom:82.051500px;}
.y1e_c01313{bottom:99.984000px;}
.y1d_c01313{bottom:117.916500px;}
.y1c_c01313{bottom:135.849000px;}
.y1b_c01313{bottom:162.501000px;}
.y1a_c01313{bottom:189.151500px;}
.y19_c01313{bottom:215.802000px;}
.y18_c01313{bottom:242.454000px;}
.y17_c01313{bottom:284.478000px;}
.y16_c01313{bottom:748.903500px;}
.y15_c01313{bottom:765.342000px;}
.y14_c01313{bottom:781.780500px;}
.y13_c01313{bottom:798.219000px;}
.y12_c01313{bottom:814.657500px;}
.y11_c01313{bottom:831.096000px;}
.y10_c01313{bottom:847.534500px;}
.yf_c01313{bottom:863.973000px;}
.ye_c01313{bottom:880.411500px;}
.yd_c01313{bottom:896.848500px;}
.yc_c01313{bottom:913.287000px;}
.yb_c01313{bottom:946.164000px;}
.ya_c01313{bottom:962.602500px;}
.y9_c01313{bottom:979.041000px;}
.y8_c01313{bottom:1011.918000px;}
.y7_c01313{bottom:1028.356500px;}
.y6_c01313{bottom:1044.795000px;}
.y5_c01313{bottom:1061.232000px;}
.y4_c01313{bottom:1077.670500px;}
.y3_c01313{bottom:1094.109000px;}
.y2_c01313{bottom:1110.547500px;}
.y1_c01313{bottom:1159.863000px;}
.h3_c01313{height:35.190766px;}
.h2_c01313{height:36.007158px;}
.h5_c01313{height:40.511979px;}
.h6_c01313{height:52.332837px;}
.h4_c01313{height:58.337477px;}
.h0_c01313{height:1262.835000px;}
.h1_c01313{height:1263.000000px;}
.w0_c01313{width:892.920000px;}
.w1_c01313{width:893.250000px;}
.x0_c01313{left:0.000000px;}
.x4_c01313{left:127.558500px;}
.x2_c01313{left:137.122500px;}
.x1_c01313{left:143.770500px;}
.x3_c01313{left:177.007500px;}
.x5_c01313{left:435.249000px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.ls4_c01313{letter-spacing:0.000000pt;}
.ls0_c01313{letter-spacing:0.078221pt;}
.ls2_c01313{letter-spacing:0.087539pt;}
.ls3_c01313{letter-spacing:0.092873pt;}
.ls1_c01313{letter-spacing:23.724873pt;}
.ws2_c01313{word-spacing:-23.622682pt;}
.ws4_c01313{word-spacing:-23.544461pt;}
.wse_c01313{word-spacing:-19.158506pt;}
.wsd_c01313{word-spacing:-19.128192pt;}
.wsa_c01313{word-spacing:-16.684034pt;}
.wsc_c01313{word-spacing:-15.674491pt;}
.ws9_c01313{word-spacing:-13.283467pt;}
.wsf_c01313{word-spacing:-12.539593pt;}
.ws10_c01313{word-spacing:-10.733041pt;}
.ws7_c01313{word-spacing:-8.878599pt;}
.ws8_c01313{word-spacing:-8.877777pt;}
.wsb_c01313{word-spacing:-6.832128pt;}
.ws3_c01313{word-spacing:0.000000pt;}
.ws0_c01313{word-spacing:0.039110pt;}
.ws5_c01313{word-spacing:0.189730pt;}
.ws1_c01313{word-spacing:0.195063pt;}
.ws6_c01313{word-spacing:38.256533pt;}
._3_c01313{margin-left:-5.849451pt;}
._1_c01313{margin-left:-1.377235pt;}
._0_c01313{width:0.925811pt;}
._2_c01313{width:17.720725pt;}
._4_c01313{width:35.652825pt;}
.fs0_c01313{font-size:39.110400pt;}
.fs2_c01313{font-size:53.133867pt;}
.fs1_c01313{font-size:76.513067pt;}
.y0_c01313{bottom:0.000000pt;}
.y20_c01313{bottom:39.333333pt;}
.y1f_c01313{bottom:72.934667pt;}
.y1e_c01313{bottom:88.874667pt;}
.y1d_c01313{bottom:104.814667pt;}
.y1c_c01313{bottom:120.754667pt;}
.y1b_c01313{bottom:144.445333pt;}
.y1a_c01313{bottom:168.134667pt;}
.y19_c01313{bottom:191.824000pt;}
.y18_c01313{bottom:215.514667pt;}
.y17_c01313{bottom:252.869333pt;}
.y16_c01313{bottom:665.692000pt;}
.y15_c01313{bottom:680.304000pt;}
.y14_c01313{bottom:694.916000pt;}
.y13_c01313{bottom:709.528000pt;}
.y12_c01313{bottom:724.140000pt;}
.y11_c01313{bottom:738.752000pt;}
.y10_c01313{bottom:753.364000pt;}
.yf_c01313{bottom:767.976000pt;}
.ye_c01313{bottom:782.588000pt;}
.yd_c01313{bottom:797.198667pt;}
.yc_c01313{bottom:811.810667pt;}
.yb_c01313{bottom:841.034667pt;}
.ya_c01313{bottom:855.646667pt;}
.y9_c01313{bottom:870.258667pt;}
.y8_c01313{bottom:899.482667pt;}
.y7_c01313{bottom:914.094667pt;}
.y6_c01313{bottom:928.706667pt;}
.y5_c01313{bottom:943.317333pt;}
.y4_c01313{bottom:957.929333pt;}
.y3_c01313{bottom:972.541333pt;}
.y2_c01313{bottom:987.153333pt;}
.y1_c01313{bottom:1030.989333pt;}
.h3_c01313{height:31.280681pt;}
.h2_c01313{height:32.006363pt;}
.h5_c01313{height:36.010648pt;}
.h6_c01313{height:46.518078pt;}
.h4_c01313{height:51.855535pt;}
.h0_c01313{height:1122.520000pt;}
.h1_c01313{height:1122.666667pt;}
.w0_c01313{width:793.706667pt;}
.w1_c01313{width:794.000000pt;}
.x0_c01313{left:0.000000pt;}
.x4_c01313{left:113.385333pt;}
.x2_c01313{left:121.886667pt;}
.x1_c01313{left:127.796000pt;}
.x3_c01313{left:157.340000pt;}
.x5_c01313{left:386.888000pt;}
}





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

.ir_c01314:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01314;src:url('chunks/assets/font_9b0de4cab97fa49e98af5b35.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01314;src:url('chunks/assets/font_a9d261efcaefdf6f3c18a96b.woff2')format("woff");}.ff2_c01314{font-family:ff2_c01314;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01314;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01314{font-family:ff3_c01314;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01314;src:url('chunks/assets/font_ab638e08f051536b736f7239.woff2')format("woff");}.ff4_c01314{font-family:ff4_c01314;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01314{vertical-align:0.000000px;}
.ls4_c01314{letter-spacing:0.000000px;}
.ls1_c01314{letter-spacing:0.087998px;}
.ls2_c01314{letter-spacing:0.098482px;}
.ls0_c01314{letter-spacing:0.104482px;}
.ls3_c01314{letter-spacing:26.690482px;}
.sc__c01314{text-shadow:none;}
.sc0_c01314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01314{-webkit-text-stroke:0px transparent;}
.sc0_c01314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01314{word-spacing:-33.713438px;}
.ws4_c01314{word-spacing:-26.575517px;}
.ws3_c01314{word-spacing:-26.487518px;}
.ws0_c01314{word-spacing:-18.769538px;}
.ws8_c01314{word-spacing:0.000000px;}
.ws5_c01314{word-spacing:0.043999px;}
.wsb_c01314{word-spacing:0.056767px;}
.ws9_c01314{word-spacing:0.073250px;}
.wsa_c01314{word-spacing:0.083734px;}
.ws2_c01314{word-spacing:0.175997px;}
.wsc_c01314{word-spacing:0.202963px;}
.ws6_c01314{word-spacing:0.213446px;}
.ws7_c01314{word-spacing:0.219446px;}
._0_c01314{margin-left:-3.825638px;}
._1_c01314{width:1.005737px;}
._3_c01314{width:53.283031px;}
._2_c01314{width:79.858548px;}
._4_c01314{width:133.452408px;}
.fc5_c01314{color:rgb(0,0,207);}
.fc4_c01314{color:rgb(79,153,5);}
.fc3_c01314{color:rgb(207,92,0);}
.fc2_c01314{color:rgb(33,74,135);}
.fc1_c01314{color:rgb(143,89,3);}
.fc0_c01314{color:rgb(0,0,0);}
.fs1_c01314{font-size:43.999200px;}
.fs0_c01314{font-size:59.775600px;}
.y0_c01314{bottom:0.000000px;}
.y2d_c01314{bottom:44.250000px;}
.y2c_c01314{bottom:96.919500px;}
.y2b_c01314{bottom:113.358000px;}
.y2a_c01314{bottom:129.796500px;}
.y29_c01314{bottom:146.235000px;}
.y28_c01314{bottom:162.673500px;}
.y27_c01314{bottom:179.112000px;}
.y26_c01314{bottom:195.550500px;}
.y25_c01314{bottom:211.989000px;}
.y24_c01314{bottom:228.427500px;}
.y23_c01314{bottom:244.866000px;}
.y22_c01314{bottom:261.304500px;}
.y21_c01314{bottom:294.180000px;}
.y20_c01314{bottom:310.618500px;}
.y1f_c01314{bottom:327.057000px;}
.y1e_c01314{bottom:359.934000px;}
.y1d_c01314{bottom:376.372500px;}
.y1c_c01314{bottom:392.811000px;}
.y1b_c01314{bottom:409.249500px;}
.y1a_c01314{bottom:425.688000px;}
.y19_c01314{bottom:442.125000px;}
.y18_c01314{bottom:458.563500px;}
.y17_c01314{bottom:507.879000px;}
.y16_c01314{bottom:524.317500px;}
.y15_c01314{bottom:540.756000px;}
.y14_c01314{bottom:557.194500px;}
.y13_c01314{bottom:573.633000px;}
.y12_c01314{bottom:590.071500px;}
.y11_c01314{bottom:606.508500px;}
.y10_c01314{bottom:622.947000px;}
.yf_c01314{bottom:639.385500px;}
.ye_c01314{bottom:655.824000px;}
.yd_c01314{bottom:672.262500px;}
.yc_c01314{bottom:688.701000px;}
.yb_c01314{bottom:705.139500px;}
.ya_c01314{bottom:721.578000px;}
.y9_c01314{bottom:738.016500px;}
.y8_c01314{bottom:754.455000px;}
.y7_c01314{bottom:787.330500px;}
.y6_c01314{bottom:803.769000px;}
.y5_c01314{bottom:853.084500px;}
.y4_c01314{bottom:869.523000px;}
.y3_c01314{bottom:885.588000px;}
.y2_c01314{bottom:1141.930500px;}
.y1_c01314{bottom:1159.863000px;}
.h3_c01314{height:35.190766px;}
.h4_c01314{height:36.007158px;}
.h2_c01314{height:52.332837px;}
.h0_c01314{height:1262.835000px;}
.h1_c01314{height:1263.000000px;}
.w0_c01314{width:892.920000px;}
.w1_c01314{width:893.250000px;}
.x0_c01314{left:0.000000px;}
.x1_c01314{left:127.558500px;}
.x2_c01314{left:137.122500px;}
.x3_c01314{left:143.770500px;}
.x4_c01314{left:177.007500px;}
.x5_c01314{left:435.249000px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.ls4_c01314{letter-spacing:0.000000pt;}
.ls1_c01314{letter-spacing:0.078221pt;}
.ls2_c01314{letter-spacing:0.087539pt;}
.ls0_c01314{letter-spacing:0.092873pt;}
.ls3_c01314{letter-spacing:23.724873pt;}
.ws1_c01314{word-spacing:-29.967501pt;}
.ws4_c01314{word-spacing:-23.622682pt;}
.ws3_c01314{word-spacing:-23.544461pt;}
.ws0_c01314{word-spacing:-16.684034pt;}
.ws8_c01314{word-spacing:0.000000pt;}
.ws5_c01314{word-spacing:0.039110pt;}
.wsb_c01314{word-spacing:0.050460pt;}
.ws9_c01314{word-spacing:0.065111pt;}
.wsa_c01314{word-spacing:0.074430pt;}
.ws2_c01314{word-spacing:0.156442pt;}
.wsc_c01314{word-spacing:0.180412pt;}
.ws6_c01314{word-spacing:0.189730pt;}
.ws7_c01314{word-spacing:0.195063pt;}
._0_c01314{margin-left:-3.400567pt;}
._1_c01314{width:0.893988pt;}
._3_c01314{width:47.362694pt;}
._2_c01314{width:70.985376pt;}
._4_c01314{width:118.624363pt;}
.fs1_c01314{font-size:39.110400pt;}
.fs0_c01314{font-size:53.133867pt;}
.y0_c01314{bottom:0.000000pt;}
.y2d_c01314{bottom:39.333333pt;}
.y2c_c01314{bottom:86.150667pt;}
.y2b_c01314{bottom:100.762667pt;}
.y2a_c01314{bottom:115.374667pt;}
.y29_c01314{bottom:129.986667pt;}
.y28_c01314{bottom:144.598667pt;}
.y27_c01314{bottom:159.210667pt;}
.y26_c01314{bottom:173.822667pt;}
.y25_c01314{bottom:188.434667pt;}
.y24_c01314{bottom:203.046667pt;}
.y23_c01314{bottom:217.658667pt;}
.y22_c01314{bottom:232.270667pt;}
.y21_c01314{bottom:261.493333pt;}
.y20_c01314{bottom:276.105333pt;}
.y1f_c01314{bottom:290.717333pt;}
.y1e_c01314{bottom:319.941333pt;}
.y1d_c01314{bottom:334.553333pt;}
.y1c_c01314{bottom:349.165333pt;}
.y1b_c01314{bottom:363.777333pt;}
.y1a_c01314{bottom:378.389333pt;}
.y19_c01314{bottom:393.000000pt;}
.y18_c01314{bottom:407.612000pt;}
.y17_c01314{bottom:451.448000pt;}
.y16_c01314{bottom:466.060000pt;}
.y15_c01314{bottom:480.672000pt;}
.y14_c01314{bottom:495.284000pt;}
.y13_c01314{bottom:509.896000pt;}
.y12_c01314{bottom:524.508000pt;}
.y11_c01314{bottom:539.118667pt;}
.y10_c01314{bottom:553.730667pt;}
.yf_c01314{bottom:568.342667pt;}
.ye_c01314{bottom:582.954667pt;}
.yd_c01314{bottom:597.566667pt;}
.yc_c01314{bottom:612.178667pt;}
.yb_c01314{bottom:626.790667pt;}
.ya_c01314{bottom:641.402667pt;}
.y9_c01314{bottom:656.014667pt;}
.y8_c01314{bottom:670.626667pt;}
.y7_c01314{bottom:699.849333pt;}
.y6_c01314{bottom:714.461333pt;}
.y5_c01314{bottom:758.297333pt;}
.y4_c01314{bottom:772.909333pt;}
.y3_c01314{bottom:787.189333pt;}
.y2_c01314{bottom:1015.049333pt;}
.y1_c01314{bottom:1030.989333pt;}
.h3_c01314{height:31.280681pt;}
.h4_c01314{height:32.006363pt;}
.h2_c01314{height:46.518078pt;}
.h0_c01314{height:1122.520000pt;}
.h1_c01314{height:1122.666667pt;}
.w0_c01314{width:793.706667pt;}
.w1_c01314{width:794.000000pt;}
.x0_c01314{left:0.000000pt;}
.x1_c01314{left:113.385333pt;}
.x2_c01314{left:121.886667pt;}
.x3_c01314{left:127.796000pt;}
.x4_c01314{left:157.340000pt;}
.x5_c01314{left:386.888000pt;}
}





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

.ir_c01315:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01315;src:url('chunks/assets/font_560446583bc7f71b5e6f3921.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01315;src:url('chunks/assets/font_4102a39969f8fb41cb92249f.woff2')format("woff");}.ff2_c01315{font-family:ff2_c01315;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01315;src:url('chunks/assets/font_16db62ece11740562f20de08.woff2')format("woff");}.ff3_c01315{font-family:ff3_c01315;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01315;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01315{font-family:ff4_c01315;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01315;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01315{font-family:ff5_c01315;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01315{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01315{vertical-align:0.000000px;}
.ls3_c01315{letter-spacing:0.000000px;}
.ls0_c01315{letter-spacing:0.087998px;}
.ls2_c01315{letter-spacing:0.098482px;}
.ls1_c01315{letter-spacing:0.104482px;}
.sc__c01315{text-shadow:none;}
.sc0_c01315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01315{-webkit-text-stroke:0px transparent;}
.sc0_c01315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01315{word-spacing:-33.713438px;}
.ws2_c01315{word-spacing:-26.575517px;}
.wse_c01315{word-spacing:-26.487518px;}
.ws9_c01315{word-spacing:-21.553319px;}
.ws8_c01315{word-spacing:-21.519216px;}
.ws7_c01315{word-spacing:-19.247743px;}
.ws5_c01315{word-spacing:-18.769538px;}
.ws4_c01315{word-spacing:-14.943900px;}
.wsa_c01315{word-spacing:-14.107042px;}
.wsb_c01315{word-spacing:-12.074671px;}
.ws6_c01315{word-spacing:-10.230144px;}
.ws1_c01315{word-spacing:-9.988424px;}
.ws3_c01315{word-spacing:-9.987499px;}
.ws12_c01315{word-spacing:0.000000px;}
.wsf_c01315{word-spacing:0.043999px;}
.ws15_c01315{word-spacing:0.056767px;}
.ws13_c01315{word-spacing:0.073250px;}
.ws14_c01315{word-spacing:0.083734px;}
.wsd_c01315{word-spacing:0.175997px;}
.ws16_c01315{word-spacing:0.202963px;}
.ws10_c01315{word-spacing:0.213446px;}
.ws11_c01315{word-spacing:0.219446px;}
.ws0_c01315{word-spacing:43.038600px;}
._2_c01315{margin-left:-6.580632px;}
._4_c01315{margin-left:-3.825638px;}
._0_c01315{margin-left:-1.549390px;}
._5_c01315{width:1.005737px;}
._1_c01315{width:19.935816px;}
._3_c01315{width:40.109428px;}
._7_c01315{width:53.283031px;}
._6_c01315{width:79.858548px;}
._8_c01315{width:133.452408px;}
.fc6_c01315{color:rgb(0,0,207);}
.fc5_c01315{color:rgb(79,153,5);}
.fc3_c01315{color:rgb(33,74,135);}
.fc2_c01315{color:rgb(143,89,3);}
.fc4_c01315{color:rgb(207,92,0);}
.fc1_c01315{color:rgb(6,69,173);}
.fc0_c01315{color:rgb(0,0,0);}
.fs2_c01315{font-size:43.999200px;}
.fs1_c01315{font-size:59.775600px;}
.fs0_c01315{font-size:86.077200px;}
.y0_c01315{bottom:0.000000px;}
.y20_c01315{bottom:44.250000px;}
.y1f_c01315{bottom:86.982000px;}
.y1e_c01315{bottom:103.420500px;}
.y1d_c01315{bottom:119.859000px;}
.y1c_c01315{bottom:136.297500px;}
.y1b_c01315{bottom:152.736000px;}
.y1a_c01315{bottom:169.174500px;}
.y19_c01315{bottom:185.613000px;}
.y18_c01315{bottom:202.051500px;}
.y17_c01315{bottom:218.490000px;}
.y16_c01315{bottom:234.927000px;}
.y15_c01315{bottom:251.365500px;}
.y14_c01315{bottom:267.804000px;}
.y13_c01315{bottom:284.242500px;}
.y12_c01315{bottom:300.681000px;}
.y11_c01315{bottom:317.119500px;}
.y10_c01315{bottom:349.996500px;}
.yf_c01315{bottom:366.435000px;}
.ye_c01315{bottom:415.749000px;}
.yd_c01315{bottom:432.187500px;}
.yc_c01315{bottom:448.252500px;}
.yb_c01315{bottom:493.890000px;}
.ya_c01315{bottom:511.822500px;}
.y9_c01315{bottom:529.756500px;}
.y8_c01315{bottom:547.689000px;}
.y7_c01315{bottom:565.621500px;}
.y6_c01315{bottom:583.554000px;}
.y5_c01315{bottom:610.633500px;}
.y4_c01315{bottom:637.714500px;}
.y3_c01315{bottom:664.794000px;}
.y2_c01315{bottom:691.873500px;}
.y1_c01315{bottom:734.407500px;}
.h5_c01315{height:35.190766px;}
.h6_c01315{height:36.007158px;}
.h3_c01315{height:40.511979px;}
.h4_c01315{height:52.332837px;}
.h2_c01315{height:58.337477px;}
.h0_c01315{height:1262.835000px;}
.h1_c01315{height:1263.000000px;}
.w0_c01315{width:892.920000px;}
.w1_c01315{width:893.250000px;}
.x0_c01315{left:0.000000px;}
.x1_c01315{left:127.558500px;}
.x2_c01315{left:137.122500px;}
.x3_c01315{left:143.770500px;}
.x4_c01315{left:435.249000px;}
@media print{
.v0_c01315{vertical-align:0.000000pt;}
.ls3_c01315{letter-spacing:0.000000pt;}
.ls0_c01315{letter-spacing:0.078221pt;}
.ls2_c01315{letter-spacing:0.087539pt;}
.ls1_c01315{letter-spacing:0.092873pt;}
.wsc_c01315{word-spacing:-29.967501pt;}
.ws2_c01315{word-spacing:-23.622682pt;}
.wse_c01315{word-spacing:-23.544461pt;}
.ws9_c01315{word-spacing:-19.158506pt;}
.ws8_c01315{word-spacing:-19.128192pt;}
.ws7_c01315{word-spacing:-17.109105pt;}
.ws5_c01315{word-spacing:-16.684034pt;}
.ws4_c01315{word-spacing:-13.283467pt;}
.wsa_c01315{word-spacing:-12.539593pt;}
.wsb_c01315{word-spacing:-10.733041pt;}
.ws6_c01315{word-spacing:-9.093461pt;}
.ws1_c01315{word-spacing:-8.878599pt;}
.ws3_c01315{word-spacing:-8.877777pt;}
.ws12_c01315{word-spacing:0.000000pt;}
.wsf_c01315{word-spacing:0.039110pt;}
.ws15_c01315{word-spacing:0.050460pt;}
.ws13_c01315{word-spacing:0.065111pt;}
.ws14_c01315{word-spacing:0.074430pt;}
.wsd_c01315{word-spacing:0.156442pt;}
.ws16_c01315{word-spacing:0.180412pt;}
.ws10_c01315{word-spacing:0.189730pt;}
.ws11_c01315{word-spacing:0.195063pt;}
.ws0_c01315{word-spacing:38.256533pt;}
._2_c01315{margin-left:-5.849451pt;}
._4_c01315{margin-left:-3.400567pt;}
._0_c01315{margin-left:-1.377235pt;}
._5_c01315{width:0.893988pt;}
._1_c01315{width:17.720725pt;}
._3_c01315{width:35.652825pt;}
._7_c01315{width:47.362694pt;}
._6_c01315{width:70.985376pt;}
._8_c01315{width:118.624363pt;}
.fs2_c01315{font-size:39.110400pt;}
.fs1_c01315{font-size:53.133867pt;}
.fs0_c01315{font-size:76.513067pt;}
.y0_c01315{bottom:0.000000pt;}
.y20_c01315{bottom:39.333333pt;}
.y1f_c01315{bottom:77.317333pt;}
.y1e_c01315{bottom:91.929333pt;}
.y1d_c01315{bottom:106.541333pt;}
.y1c_c01315{bottom:121.153333pt;}
.y1b_c01315{bottom:135.765333pt;}
.y1a_c01315{bottom:150.377333pt;}
.y19_c01315{bottom:164.989333pt;}
.y18_c01315{bottom:179.601333pt;}
.y17_c01315{bottom:194.213333pt;}
.y16_c01315{bottom:208.824000pt;}
.y15_c01315{bottom:223.436000pt;}
.y14_c01315{bottom:238.048000pt;}
.y13_c01315{bottom:252.660000pt;}
.y12_c01315{bottom:267.272000pt;}
.y11_c01315{bottom:281.884000pt;}
.y10_c01315{bottom:311.108000pt;}
.yf_c01315{bottom:325.720000pt;}
.ye_c01315{bottom:369.554667pt;}
.yd_c01315{bottom:384.166667pt;}
.yc_c01315{bottom:398.446667pt;}
.yb_c01315{bottom:439.013333pt;}
.ya_c01315{bottom:454.953333pt;}
.y9_c01315{bottom:470.894667pt;}
.y8_c01315{bottom:486.834667pt;}
.y7_c01315{bottom:502.774667pt;}
.y6_c01315{bottom:518.714667pt;}
.y5_c01315{bottom:542.785333pt;}
.y4_c01315{bottom:566.857333pt;}
.y3_c01315{bottom:590.928000pt;}
.y2_c01315{bottom:614.998667pt;}
.y1_c01315{bottom:652.806667pt;}
.h5_c01315{height:31.280681pt;}
.h6_c01315{height:32.006363pt;}
.h3_c01315{height:36.010648pt;}
.h4_c01315{height:46.518078pt;}
.h2_c01315{height:51.855535pt;}
.h0_c01315{height:1122.520000pt;}
.h1_c01315{height:1122.666667pt;}
.w0_c01315{width:793.706667pt;}
.w1_c01315{width:794.000000pt;}
.x0_c01315{left:0.000000pt;}
.x1_c01315{left:113.385333pt;}
.x2_c01315{left:121.886667pt;}
.x3_c01315{left:127.796000pt;}
.x4_c01315{left:386.888000pt;}
}





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

.ir_c01316:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01316;src:url('chunks/assets/font_ea3ad3a467634bc835ab6ac2.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01316;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01316{font-family:ff2_c01316;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01316;src:url('chunks/assets/font_6c0b7511eeec9f284d6e7974.woff2')format("woff");}.ff3_c01316{font-family:ff3_c01316;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01316;src:url('chunks/assets/font_585a6cc304b9951d05c6916b.woff2')format("woff");}.ff4_c01316{font-family:ff4_c01316;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01316;src:url('chunks/assets/font_b8e7bb6da066d27538563683.woff2')format("woff");}.ff5_c01316{font-family:ff5_c01316;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01316{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01316{vertical-align:0.000000px;}
.ls4_c01316{letter-spacing:0.000000px;}
.ls0_c01316{letter-spacing:0.087998px;}
.ls2_c01316{letter-spacing:0.098482px;}
.ls3_c01316{letter-spacing:0.104482px;}
.ls1_c01316{letter-spacing:26.690482px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01316{word-spacing:-26.575517px;}
.ws4_c01316{word-spacing:-26.487518px;}
.ws12_c01316{word-spacing:-20.084602px;}
.ws11_c01316{word-spacing:-19.128192px;}
.ws10_c01316{word-spacing:-19.118113px;}
.wsa_c01316{word-spacing:-18.769538px;}
.wsf_c01316{word-spacing:-16.438290px;}
.ws9_c01316{word-spacing:-14.943900px;}
.wsd_c01316{word-spacing:-12.060288px;}
.wse_c01316{word-spacing:-12.014896px;}
.wsc_c01316{word-spacing:-11.955120px;}
.ws7_c01316{word-spacing:-9.988424px;}
.ws8_c01316{word-spacing:-9.987499px;}
.ws3_c01316{word-spacing:0.000000px;}
.ws0_c01316{word-spacing:0.043999px;}
.ws5_c01316{word-spacing:0.213446px;}
.ws1_c01316{word-spacing:0.219446px;}
.wsb_c01316{word-spacing:3.563856px;}
.ws6_c01316{word-spacing:43.038600px;}
._3_c01316{margin-left:-1.075961px;}
._1_c01316{width:1.009757px;}
._5_c01316{width:18.351109px;}
._2_c01316{width:19.935816px;}
._4_c01316{width:23.372260px;}
._6_c01316{width:26.719693px;}
._0_c01316{width:106.742059px;}
.fc5_c01316{color:rgb(79,153,5);}
.fc4_c01316{color:rgb(143,89,3);}
.fc3_c01316{color:rgb(0,0,0);}
.fc6_c01316{color:rgb(6,69,173);}
.fc2_c01316{color:rgb(207,92,0);}
.fc1_c01316{color:rgb(0,0,207);}
.fc0_c01316{color:rgb(33,74,135);}
.fs0_c01316{font-size:43.999200px;}
.fs2_c01316{font-size:59.775600px;}
.fs1_c01316{font-size:86.077200px;}
.y0_c01316{bottom:0.000000px;}
.y20_c01316{bottom:44.250000px;}
.y1f_c01316{bottom:82.051500px;}
.y1e_c01316{bottom:99.984000px;}
.y1d_c01316{bottom:117.916500px;}
.y1c_c01316{bottom:135.849000px;}
.y1b_c01316{bottom:162.501000px;}
.y1a_c01316{bottom:189.151500px;}
.y19_c01316{bottom:215.802000px;}
.y18_c01316{bottom:242.454000px;}
.y17_c01316{bottom:284.478000px;}
.y16_c01316{bottom:748.903500px;}
.y15_c01316{bottom:765.342000px;}
.y14_c01316{bottom:781.780500px;}
.y13_c01316{bottom:798.219000px;}
.y12_c01316{bottom:814.657500px;}
.y11_c01316{bottom:831.096000px;}
.y10_c01316{bottom:847.534500px;}
.yf_c01316{bottom:863.973000px;}
.ye_c01316{bottom:880.411500px;}
.yd_c01316{bottom:896.848500px;}
.yc_c01316{bottom:913.287000px;}
.yb_c01316{bottom:946.164000px;}
.ya_c01316{bottom:962.602500px;}
.y9_c01316{bottom:979.041000px;}
.y8_c01316{bottom:1011.918000px;}
.y7_c01316{bottom:1028.356500px;}
.y6_c01316{bottom:1044.795000px;}
.y5_c01316{bottom:1061.232000px;}
.y4_c01316{bottom:1077.670500px;}
.y3_c01316{bottom:1094.109000px;}
.y2_c01316{bottom:1110.547500px;}
.y1_c01316{bottom:1159.863000px;}
.h3_c01316{height:35.190766px;}
.h2_c01316{height:36.007158px;}
.h5_c01316{height:40.511979px;}
.h6_c01316{height:52.332837px;}
.h4_c01316{height:58.337477px;}
.h0_c01316{height:1262.835000px;}
.h1_c01316{height:1263.000000px;}
.w0_c01316{width:892.920000px;}
.w1_c01316{width:893.250000px;}
.x0_c01316{left:0.000000px;}
.x4_c01316{left:127.558500px;}
.x2_c01316{left:137.122500px;}
.x1_c01316{left:143.770500px;}
.x3_c01316{left:177.007500px;}
.x5_c01316{left:435.249000px;}
@media print{
.v0_c01316{vertical-align:0.000000pt;}
.ls4_c01316{letter-spacing:0.000000pt;}
.ls0_c01316{letter-spacing:0.078221pt;}
.ls2_c01316{letter-spacing:0.087539pt;}
.ls3_c01316{letter-spacing:0.092873pt;}
.ls1_c01316{letter-spacing:23.724873pt;}
.ws2_c01316{word-spacing:-23.622682pt;}
.ws4_c01316{word-spacing:-23.544461pt;}
.ws12_c01316{word-spacing:-17.852979pt;}
.ws11_c01316{word-spacing:-17.002837pt;}
.ws10_c01316{word-spacing:-16.993878pt;}
.wsa_c01316{word-spacing:-16.684034pt;}
.wsf_c01316{word-spacing:-14.611813pt;}
.ws9_c01316{word-spacing:-13.283467pt;}
.wsd_c01316{word-spacing:-10.720256pt;}
.wse_c01316{word-spacing:-10.679907pt;}
.wsc_c01316{word-spacing:-10.626773pt;}
.ws7_c01316{word-spacing:-8.878599pt;}
.ws8_c01316{word-spacing:-8.877777pt;}
.ws3_c01316{word-spacing:0.000000pt;}
.ws0_c01316{word-spacing:0.039110pt;}
.ws5_c01316{word-spacing:0.189730pt;}
.ws1_c01316{word-spacing:0.195063pt;}
.wsb_c01316{word-spacing:3.167872pt;}
.ws6_c01316{word-spacing:38.256533pt;}
._3_c01316{margin-left:-0.956410pt;}
._1_c01316{width:0.897562pt;}
._5_c01316{width:16.312097pt;}
._2_c01316{width:17.720725pt;}
._4_c01316{width:20.775342pt;}
._6_c01316{width:23.750838pt;}
._0_c01316{width:94.881830pt;}
.fs0_c01316{font-size:39.110400pt;}
.fs2_c01316{font-size:53.133867pt;}
.fs1_c01316{font-size:76.513067pt;}
.y0_c01316{bottom:0.000000pt;}
.y20_c01316{bottom:39.333333pt;}
.y1f_c01316{bottom:72.934667pt;}
.y1e_c01316{bottom:88.874667pt;}
.y1d_c01316{bottom:104.814667pt;}
.y1c_c01316{bottom:120.754667pt;}
.y1b_c01316{bottom:144.445333pt;}
.y1a_c01316{bottom:168.134667pt;}
.y19_c01316{bottom:191.824000pt;}
.y18_c01316{bottom:215.514667pt;}
.y17_c01316{bottom:252.869333pt;}
.y16_c01316{bottom:665.692000pt;}
.y15_c01316{bottom:680.304000pt;}
.y14_c01316{bottom:694.916000pt;}
.y13_c01316{bottom:709.528000pt;}
.y12_c01316{bottom:724.140000pt;}
.y11_c01316{bottom:738.752000pt;}
.y10_c01316{bottom:753.364000pt;}
.yf_c01316{bottom:767.976000pt;}
.ye_c01316{bottom:782.588000pt;}
.yd_c01316{bottom:797.198667pt;}
.yc_c01316{bottom:811.810667pt;}
.yb_c01316{bottom:841.034667pt;}
.ya_c01316{bottom:855.646667pt;}
.y9_c01316{bottom:870.258667pt;}
.y8_c01316{bottom:899.482667pt;}
.y7_c01316{bottom:914.094667pt;}
.y6_c01316{bottom:928.706667pt;}
.y5_c01316{bottom:943.317333pt;}
.y4_c01316{bottom:957.929333pt;}
.y3_c01316{bottom:972.541333pt;}
.y2_c01316{bottom:987.153333pt;}
.y1_c01316{bottom:1030.989333pt;}
.h3_c01316{height:31.280681pt;}
.h2_c01316{height:32.006363pt;}
.h5_c01316{height:36.010648pt;}
.h6_c01316{height:46.518078pt;}
.h4_c01316{height:51.855535pt;}
.h0_c01316{height:1122.520000pt;}
.h1_c01316{height:1122.666667pt;}
.w0_c01316{width:793.706667pt;}
.w1_c01316{width:794.000000pt;}
.x0_c01316{left:0.000000pt;}
.x4_c01316{left:113.385333pt;}
.x2_c01316{left:121.886667pt;}
.x1_c01316{left:127.796000pt;}
.x3_c01316{left:157.340000pt;}
.x5_c01316{left:386.888000pt;}
}





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

.ir_c01317:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01317;src:url('chunks/assets/font_e0b2e738a62a3270bdbd5574.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01317;src:url('chunks/assets/font_07142ac53152aff9f637f038.woff2')format("woff");}.ff2_c01317{font-family:ff2_c01317;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01317;src:url('chunks/assets/font_0c58774e3352720f512d0b70.woff2')format("woff");}.ff3_c01317{font-family:ff3_c01317;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01317;src:url('chunks/assets/font_84e51dd758f478a9b6e6f5ef.woff2')format("woff");}.ff4_c01317{font-family:ff4_c01317;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01317{vertical-align:0.000000px;}
.ls3_c01317{letter-spacing:0.000000px;}
.ls1_c01317{letter-spacing:0.087998px;}
.ls2_c01317{letter-spacing:0.098482px;}
.ls0_c01317{letter-spacing:0.104482px;}
.sc__c01317{text-shadow:none;}
.sc0_c01317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01317{-webkit-text-stroke:0px transparent;}
.sc0_c01317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01317{word-spacing:-26.575517px;}
.ws3_c01317{word-spacing:-26.487518px;}
.ws0_c01317{word-spacing:-20.503031px;}
.ws1_c01317{word-spacing:-18.769538px;}
.ws8_c01317{word-spacing:0.000000px;}
.ws5_c01317{word-spacing:0.043999px;}
.ws9_c01317{word-spacing:0.056767px;}
.ws2_c01317{word-spacing:0.175997px;}
.ws7_c01317{word-spacing:0.213446px;}
.ws6_c01317{word-spacing:0.219446px;}
._1_c01317{margin-left:-3.765863px;}
._2_c01317{width:1.005737px;}
._0_c01317{width:19.307519px;}
._3_c01317{width:106.610062px;}
.fc5_c01317{color:rgb(0,0,207);}
.fc4_c01317{color:rgb(79,153,5);}
.fc3_c01317{color:rgb(207,92,0);}
.fc2_c01317{color:rgb(33,74,135);}
.fc1_c01317{color:rgb(143,89,3);}
.fc0_c01317{color:rgb(0,0,0);}
.fs1_c01317{font-size:43.999200px;}
.fs0_c01317{font-size:59.775600px;}
.y0_c01317{bottom:0.000000px;}
.y30_c01317{bottom:44.250000px;}
.y2f_c01317{bottom:96.919500px;}
.y2e_c01317{bottom:113.358000px;}
.y2d_c01317{bottom:129.796500px;}
.y2c_c01317{bottom:146.235000px;}
.y2b_c01317{bottom:162.673500px;}
.y2a_c01317{bottom:179.112000px;}
.y29_c01317{bottom:195.550500px;}
.y28_c01317{bottom:211.989000px;}
.y27_c01317{bottom:228.427500px;}
.y26_c01317{bottom:244.866000px;}
.y25_c01317{bottom:261.304500px;}
.y24_c01317{bottom:294.180000px;}
.y23_c01317{bottom:310.618500px;}
.y22_c01317{bottom:327.057000px;}
.y21_c01317{bottom:359.934000px;}
.y20_c01317{bottom:376.372500px;}
.y1f_c01317{bottom:392.811000px;}
.y1e_c01317{bottom:409.249500px;}
.y1d_c01317{bottom:425.688000px;}
.y1c_c01317{bottom:442.125000px;}
.y1b_c01317{bottom:458.563500px;}
.y1a_c01317{bottom:475.002000px;}
.y19_c01317{bottom:491.440500px;}
.y18_c01317{bottom:507.879000px;}
.y17_c01317{bottom:524.317500px;}
.y16_c01317{bottom:540.756000px;}
.y15_c01317{bottom:557.194500px;}
.y14_c01317{bottom:573.633000px;}
.y13_c01317{bottom:622.947000px;}
.y12_c01317{bottom:639.385500px;}
.y11_c01317{bottom:672.262500px;}
.y10_c01317{bottom:688.701000px;}
.yf_c01317{bottom:721.578000px;}
.ye_c01317{bottom:738.016500px;}
.yd_c01317{bottom:754.455000px;}
.yc_c01317{bottom:770.893500px;}
.yb_c01317{bottom:803.769000px;}
.ya_c01317{bottom:820.207500px;}
.y9_c01317{bottom:836.646000px;}
.y8_c01317{bottom:853.084500px;}
.y7_c01317{bottom:869.523000px;}
.y6_c01317{bottom:885.961500px;}
.y5_c01317{bottom:902.400000px;}
.y4_c01317{bottom:918.838500px;}
.y3_c01317{bottom:934.903500px;}
.y2_c01317{bottom:1141.930500px;}
.y1_c01317{bottom:1159.863000px;}
.h3_c01317{height:35.190766px;}
.h4_c01317{height:36.007158px;}
.h2_c01317{height:52.332837px;}
.h0_c01317{height:1262.835000px;}
.h1_c01317{height:1263.000000px;}
.w0_c01317{width:892.920000px;}
.w1_c01317{width:893.250000px;}
.x0_c01317{left:0.000000px;}
.x1_c01317{left:127.558500px;}
.x2_c01317{left:137.122500px;}
.x4_c01317{left:177.007500px;}
.x3_c01317{left:230.185500px;}
.x5_c01317{left:435.249000px;}
@media print{
.v0_c01317{vertical-align:0.000000pt;}
.ls3_c01317{letter-spacing:0.000000pt;}
.ls1_c01317{letter-spacing:0.078221pt;}
.ls2_c01317{letter-spacing:0.087539pt;}
.ls0_c01317{letter-spacing:0.092873pt;}
.ws4_c01317{word-spacing:-23.622682pt;}
.ws3_c01317{word-spacing:-23.544461pt;}
.ws0_c01317{word-spacing:-18.224916pt;}
.ws1_c01317{word-spacing:-16.684034pt;}
.ws8_c01317{word-spacing:0.000000pt;}
.ws5_c01317{word-spacing:0.039110pt;}
.ws9_c01317{word-spacing:0.050460pt;}
.ws2_c01317{word-spacing:0.156442pt;}
.ws7_c01317{word-spacing:0.189730pt;}
.ws6_c01317{word-spacing:0.195063pt;}
._1_c01317{margin-left:-3.347434pt;}
._2_c01317{width:0.893988pt;}
._0_c01317{width:17.162239pt;}
._3_c01317{width:94.764499pt;}
.fs1_c01317{font-size:39.110400pt;}
.fs0_c01317{font-size:53.133867pt;}
.y0_c01317{bottom:0.000000pt;}
.y30_c01317{bottom:39.333333pt;}
.y2f_c01317{bottom:86.150667pt;}
.y2e_c01317{bottom:100.762667pt;}
.y2d_c01317{bottom:115.374667pt;}
.y2c_c01317{bottom:129.986667pt;}
.y2b_c01317{bottom:144.598667pt;}
.y2a_c01317{bottom:159.210667pt;}
.y29_c01317{bottom:173.822667pt;}
.y28_c01317{bottom:188.434667pt;}
.y27_c01317{bottom:203.046667pt;}
.y26_c01317{bottom:217.658667pt;}
.y25_c01317{bottom:232.270667pt;}
.y24_c01317{bottom:261.493333pt;}
.y23_c01317{bottom:276.105333pt;}
.y22_c01317{bottom:290.717333pt;}
.y21_c01317{bottom:319.941333pt;}
.y20_c01317{bottom:334.553333pt;}
.y1f_c01317{bottom:349.165333pt;}
.y1e_c01317{bottom:363.777333pt;}
.y1d_c01317{bottom:378.389333pt;}
.y1c_c01317{bottom:393.000000pt;}
.y1b_c01317{bottom:407.612000pt;}
.y1a_c01317{bottom:422.224000pt;}
.y19_c01317{bottom:436.836000pt;}
.y18_c01317{bottom:451.448000pt;}
.y17_c01317{bottom:466.060000pt;}
.y16_c01317{bottom:480.672000pt;}
.y15_c01317{bottom:495.284000pt;}
.y14_c01317{bottom:509.896000pt;}
.y13_c01317{bottom:553.730667pt;}
.y12_c01317{bottom:568.342667pt;}
.y11_c01317{bottom:597.566667pt;}
.y10_c01317{bottom:612.178667pt;}
.yf_c01317{bottom:641.402667pt;}
.ye_c01317{bottom:656.014667pt;}
.yd_c01317{bottom:670.626667pt;}
.yc_c01317{bottom:685.238667pt;}
.yb_c01317{bottom:714.461333pt;}
.ya_c01317{bottom:729.073333pt;}
.y9_c01317{bottom:743.685333pt;}
.y8_c01317{bottom:758.297333pt;}
.y7_c01317{bottom:772.909333pt;}
.y6_c01317{bottom:787.521333pt;}
.y5_c01317{bottom:802.133333pt;}
.y4_c01317{bottom:816.745333pt;}
.y3_c01317{bottom:831.025333pt;}
.y2_c01317{bottom:1015.049333pt;}
.y1_c01317{bottom:1030.989333pt;}
.h3_c01317{height:31.280681pt;}
.h4_c01317{height:32.006363pt;}
.h2_c01317{height:46.518078pt;}
.h0_c01317{height:1122.520000pt;}
.h1_c01317{height:1122.666667pt;}
.w0_c01317{width:793.706667pt;}
.w1_c01317{width:794.000000pt;}
.x0_c01317{left:0.000000pt;}
.x1_c01317{left:113.385333pt;}
.x2_c01317{left:121.886667pt;}
.x4_c01317{left:157.340000pt;}
.x3_c01317{left:204.609333pt;}
.x5_c01317{left:386.888000pt;}
}





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

.ir_c01318:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01318;src:url('chunks/assets/font_d8be69415e6a958b6b1da603.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01318;src:url('chunks/assets/font_33e737de05812f01e58354fa.woff2')format("woff");}.ff2_c01318{font-family:ff2_c01318;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01318;src:url('chunks/assets/font_edf5dee2f733527af18f2ea3.woff2')format("woff");}.ff3_c01318{font-family:ff3_c01318;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01318;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01318{font-family:ff4_c01318;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01318;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01318{font-family:ff5_c01318;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01318{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01318{vertical-align:0.000000px;}
.ls3_c01318{letter-spacing:0.000000px;}
.ls0_c01318{letter-spacing:0.087998px;}
.ls2_c01318{letter-spacing:0.098482px;}
.ls1_c01318{letter-spacing:0.104482px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01318{word-spacing:-26.575517px;}
.ws10_c01318{word-spacing:-26.487518px;}
.wsb_c01318{word-spacing:-21.997421px;}
.wsa_c01318{word-spacing:-20.419480px;}
.ws9_c01318{word-spacing:-20.323704px;}
.ws5_c01318{word-spacing:-18.769538px;}
.wsc_c01318{word-spacing:-16.318739px;}
.ws7_c01318{word-spacing:-16.139412px;}
.ws4_c01318{word-spacing:-14.943900px;}
.wse_c01318{word-spacing:-13.688612px;}
.wsd_c01318{word-spacing:-13.509286px;}
.ws8_c01318{word-spacing:-11.716018px;}
.ws1_c01318{word-spacing:-9.988424px;}
.ws3_c01318{word-spacing:-9.987499px;}
.ws6_c01318{word-spacing:-4.704144px;}
.ws14_c01318{word-spacing:0.000000px;}
.ws11_c01318{word-spacing:0.043999px;}
.wsf_c01318{word-spacing:0.175997px;}
.ws13_c01318{word-spacing:0.213446px;}
.ws12_c01318{word-spacing:0.219446px;}
.ws0_c01318{word-spacing:43.038600px;}
._2_c01318{margin-left:-5.977560px;}
._3_c01318{margin-left:-3.287658px;}
._0_c01318{margin-left:-1.549390px;}
._8_c01318{width:1.005737px;}
._5_c01318{width:18.260792px;}
._1_c01318{width:19.935816px;}
._7_c01318{width:21.519216px;}
._6_c01318{width:35.626258px;}
._4_c01318{width:41.129611px;}
.fc5_c01318{color:rgb(79,153,5);}
.fc3_c01318{color:rgb(33,74,135);}
.fc2_c01318{color:rgb(143,89,3);}
.fc4_c01318{color:rgb(207,92,0);}
.fc1_c01318{color:rgb(6,69,173);}
.fc0_c01318{color:rgb(0,0,0);}
.fs2_c01318{font-size:43.999200px;}
.fs1_c01318{font-size:59.775600px;}
.fs0_c01318{font-size:86.077200px;}
.y0_c01318{bottom:0.000000px;}
.y1f_c01318{bottom:44.250000px;}
.y1e_c01318{bottom:98.490000px;}
.y1d_c01318{bottom:114.927000px;}
.y1c_c01318{bottom:147.804000px;}
.y1b_c01318{bottom:164.242500px;}
.y1a_c01318{bottom:197.119500px;}
.y19_c01318{bottom:213.558000px;}
.y18_c01318{bottom:229.996500px;}
.y17_c01318{bottom:246.435000px;}
.y16_c01318{bottom:279.310500px;}
.y15_c01318{bottom:295.749000px;}
.y14_c01318{bottom:312.187500px;}
.y13_c01318{bottom:328.626000px;}
.y12_c01318{bottom:345.064500px;}
.y11_c01318{bottom:361.503000px;}
.y10_c01318{bottom:377.941500px;}
.yf_c01318{bottom:394.380000px;}
.ye_c01318{bottom:410.445000px;}
.yd_c01318{bottom:458.862000px;}
.yc_c01318{bottom:476.794500px;}
.yb_c01318{bottom:494.727000px;}
.ya_c01318{bottom:512.659500px;}
.y9_c01318{bottom:530.593500px;}
.y8_c01318{bottom:548.526000px;}
.y7_c01318{bottom:566.458500px;}
.y6_c01318{bottom:584.391000px;}
.y5_c01318{bottom:611.374500px;}
.y4_c01318{bottom:638.358000px;}
.y3_c01318{bottom:665.341500px;}
.y2_c01318{bottom:692.325000px;}
.y1_c01318{bottom:734.719500px;}
.h5_c01318{height:35.190766px;}
.h6_c01318{height:36.007158px;}
.h3_c01318{height:40.511979px;}
.h4_c01318{height:52.332837px;}
.h2_c01318{height:58.337477px;}
.h0_c01318{height:1262.835000px;}
.h1_c01318{height:1263.000000px;}
.w0_c01318{width:892.920000px;}
.w1_c01318{width:893.250000px;}
.x0_c01318{left:0.000000px;}
.x1_c01318{left:127.558500px;}
.x2_c01318{left:137.122500px;}
.x3_c01318{left:435.249000px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.ls3_c01318{letter-spacing:0.000000pt;}
.ls0_c01318{letter-spacing:0.078221pt;}
.ls2_c01318{letter-spacing:0.087539pt;}
.ls1_c01318{letter-spacing:0.092873pt;}
.ws2_c01318{word-spacing:-23.622682pt;}
.ws10_c01318{word-spacing:-23.544461pt;}
.wsb_c01318{word-spacing:-19.553263pt;}
.wsa_c01318{word-spacing:-18.150649pt;}
.ws9_c01318{word-spacing:-18.065515pt;}
.ws5_c01318{word-spacing:-16.684034pt;}
.wsc_c01318{word-spacing:-14.505546pt;}
.ws7_c01318{word-spacing:-14.346144pt;}
.ws4_c01318{word-spacing:-13.283467pt;}
.wse_c01318{word-spacing:-12.167655pt;}
.wsd_c01318{word-spacing:-12.008254pt;}
.ws8_c01318{word-spacing:-10.414238pt;}
.ws1_c01318{word-spacing:-8.878599pt;}
.ws3_c01318{word-spacing:-8.877777pt;}
.ws6_c01318{word-spacing:-4.181461pt;}
.ws14_c01318{word-spacing:0.000000pt;}
.ws11_c01318{word-spacing:0.039110pt;}
.wsf_c01318{word-spacing:0.156442pt;}
.ws13_c01318{word-spacing:0.189730pt;}
.ws12_c01318{word-spacing:0.195063pt;}
.ws0_c01318{word-spacing:38.256533pt;}
._2_c01318{margin-left:-5.313387pt;}
._3_c01318{margin-left:-2.922363pt;}
._0_c01318{margin-left:-1.377235pt;}
._8_c01318{width:0.893988pt;}
._5_c01318{width:16.231815pt;}
._1_c01318{width:17.720725pt;}
._7_c01318{width:19.128192pt;}
._6_c01318{width:31.667785pt;}
._4_c01318{width:36.559654pt;}
.fs2_c01318{font-size:39.110400pt;}
.fs1_c01318{font-size:53.133867pt;}
.fs0_c01318{font-size:76.513067pt;}
.y0_c01318{bottom:0.000000pt;}
.y1f_c01318{bottom:39.333333pt;}
.y1e_c01318{bottom:87.546667pt;}
.y1d_c01318{bottom:102.157333pt;}
.y1c_c01318{bottom:131.381333pt;}
.y1b_c01318{bottom:145.993333pt;}
.y1a_c01318{bottom:175.217333pt;}
.y19_c01318{bottom:189.829333pt;}
.y18_c01318{bottom:204.441333pt;}
.y17_c01318{bottom:219.053333pt;}
.y16_c01318{bottom:248.276000pt;}
.y15_c01318{bottom:262.888000pt;}
.y14_c01318{bottom:277.500000pt;}
.y13_c01318{bottom:292.112000pt;}
.y12_c01318{bottom:306.724000pt;}
.y11_c01318{bottom:321.336000pt;}
.y10_c01318{bottom:335.948000pt;}
.yf_c01318{bottom:350.560000pt;}
.ye_c01318{bottom:364.840000pt;}
.yd_c01318{bottom:407.877333pt;}
.yc_c01318{bottom:423.817333pt;}
.yb_c01318{bottom:439.757333pt;}
.ya_c01318{bottom:455.697333pt;}
.y9_c01318{bottom:471.638667pt;}
.y8_c01318{bottom:487.578667pt;}
.y7_c01318{bottom:503.518667pt;}
.y6_c01318{bottom:519.458667pt;}
.y5_c01318{bottom:543.444000pt;}
.y4_c01318{bottom:567.429333pt;}
.y3_c01318{bottom:591.414667pt;}
.y2_c01318{bottom:615.400000pt;}
.y1_c01318{bottom:653.084000pt;}
.h5_c01318{height:31.280681pt;}
.h6_c01318{height:32.006363pt;}
.h3_c01318{height:36.010648pt;}
.h4_c01318{height:46.518078pt;}
.h2_c01318{height:51.855535pt;}
.h0_c01318{height:1122.520000pt;}
.h1_c01318{height:1122.666667pt;}
.w0_c01318{width:793.706667pt;}
.w1_c01318{width:794.000000pt;}
.x0_c01318{left:0.000000pt;}
.x1_c01318{left:113.385333pt;}
.x2_c01318{left:121.886667pt;}
.x3_c01318{left:386.888000pt;}
}





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

.ir_c01319:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01319;src:url('chunks/assets/font_e1bbf60296b1db30bbe75722.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01319;src:url('chunks/assets/font_3488c1fb18cb62d4659c394f.woff2')format("woff");}.ff2_c01319{font-family:ff2_c01319;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01319;src:url('chunks/assets/font_1b68b6837a2faec56576f53d.woff2')format("woff");}.ff3_c01319{font-family:ff3_c01319;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01319;src:url('chunks/assets/font_d75be9ae54f3cfeddab1f113.woff2')format("woff");}.ff4_c01319{font-family:ff4_c01319;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01319{vertical-align:0.000000px;}
.ls3_c01319{letter-spacing:0.000000px;}
.ls0_c01319{letter-spacing:0.087998px;}
.ls1_c01319{letter-spacing:0.098482px;}
.ls2_c01319{letter-spacing:0.104482px;}
.sc__c01319{text-shadow:none;}
.sc0_c01319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01319{-webkit-text-stroke:0px transparent;}
.sc0_c01319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01319{word-spacing:-26.575517px;}
.ws2_c01319{word-spacing:-26.487518px;}
.ws0_c01319{word-spacing:0.000000px;}
.ws7_c01319{word-spacing:0.043999px;}
.ws3_c01319{word-spacing:0.053933px;}
.ws6_c01319{word-spacing:0.056767px;}
.ws4_c01319{word-spacing:0.066701px;}
.ws8_c01319{word-spacing:0.213446px;}
.ws5_c01319{word-spacing:0.219446px;}
._1_c01319{width:1.077888px;}
._0_c01319{width:80.122543px;}
.fc5_c01319{color:rgb(0,0,207);}
.fc4_c01319{color:rgb(207,92,0);}
.fc3_c01319{color:rgb(79,153,5);}
.fc2_c01319{color:rgb(33,74,135);}
.fc1_c01319{color:rgb(0,0,0);}
.fc0_c01319{color:rgb(143,89,3);}
.fs0_c01319{font-size:43.999200px;}
.fs1_c01319{font-size:59.775600px;}
.y0_c01319{bottom:0.000000px;}
.y30_c01319{bottom:44.250000px;}
.y2f_c01319{bottom:321.507000px;}
.y2e_c01319{bottom:337.945500px;}
.y2d_c01319{bottom:354.384000px;}
.y2c_c01319{bottom:370.822500px;}
.y2b_c01319{bottom:387.259500px;}
.y2a_c01319{bottom:403.698000px;}
.y29_c01319{bottom:420.136500px;}
.y28_c01319{bottom:436.575000px;}
.y27_c01319{bottom:453.013500px;}
.y26_c01319{bottom:469.452000px;}
.y25_c01319{bottom:485.890500px;}
.y24_c01319{bottom:518.767500px;}
.y23_c01319{bottom:535.206000px;}
.y22_c01319{bottom:551.643000px;}
.y21_c01319{bottom:584.520000px;}
.y20_c01319{bottom:600.958500px;}
.y1f_c01319{bottom:633.835500px;}
.y1e_c01319{bottom:650.274000px;}
.y1d_c01319{bottom:666.712500px;}
.y1c_c01319{bottom:683.151000px;}
.y1b_c01319{bottom:699.589500px;}
.y1a_c01319{bottom:716.028000px;}
.y19_c01319{bottom:732.465000px;}
.y18_c01319{bottom:748.903500px;}
.y17_c01319{bottom:765.342000px;}
.y16_c01319{bottom:781.780500px;}
.y15_c01319{bottom:798.219000px;}
.y14_c01319{bottom:814.657500px;}
.y13_c01319{bottom:831.096000px;}
.y12_c01319{bottom:847.534500px;}
.y11_c01319{bottom:863.973000px;}
.y10_c01319{bottom:880.411500px;}
.yf_c01319{bottom:913.287000px;}
.ye_c01319{bottom:929.725500px;}
.yd_c01319{bottom:946.164000px;}
.yc_c01319{bottom:962.602500px;}
.yb_c01319{bottom:979.041000px;}
.ya_c01319{bottom:995.479500px;}
.y9_c01319{bottom:1011.918000px;}
.y8_c01319{bottom:1028.356500px;}
.y7_c01319{bottom:1044.795000px;}
.y6_c01319{bottom:1061.232000px;}
.y5_c01319{bottom:1077.670500px;}
.y4_c01319{bottom:1094.109000px;}
.y3_c01319{bottom:1110.547500px;}
.y2_c01319{bottom:1126.986000px;}
.y1_c01319{bottom:1143.424500px;}
.h2_c01319{height:35.190766px;}
.h3_c01319{height:36.007158px;}
.h4_c01319{height:52.332837px;}
.h0_c01319{height:1262.835000px;}
.h1_c01319{height:1263.000000px;}
.w0_c01319{width:892.920000px;}
.w1_c01319{width:893.250000px;}
.x0_c01319{left:0.000000px;}
.x1_c01319{left:137.122500px;}
.x2_c01319{left:143.770500px;}
.x4_c01319{left:177.007500px;}
.x3_c01319{left:230.185500px;}
.x5_c01319{left:435.249000px;}
@media print{
.v0_c01319{vertical-align:0.000000pt;}
.ls3_c01319{letter-spacing:0.000000pt;}
.ls0_c01319{letter-spacing:0.078221pt;}
.ls1_c01319{letter-spacing:0.087539pt;}
.ls2_c01319{letter-spacing:0.092873pt;}
.ws1_c01319{word-spacing:-23.622682pt;}
.ws2_c01319{word-spacing:-23.544461pt;}
.ws0_c01319{word-spacing:0.000000pt;}
.ws7_c01319{word-spacing:0.039110pt;}
.ws3_c01319{word-spacing:0.047940pt;}
.ws6_c01319{word-spacing:0.050460pt;}
.ws4_c01319{word-spacing:0.059290pt;}
.ws8_c01319{word-spacing:0.189730pt;}
.ws5_c01319{word-spacing:0.195063pt;}
._1_c01319{width:0.958123pt;}
._0_c01319{width:71.220038pt;}
.fs0_c01319{font-size:39.110400pt;}
.fs1_c01319{font-size:53.133867pt;}
.y0_c01319{bottom:0.000000pt;}
.y30_c01319{bottom:39.333333pt;}
.y2f_c01319{bottom:285.784000pt;}
.y2e_c01319{bottom:300.396000pt;}
.y2d_c01319{bottom:315.008000pt;}
.y2c_c01319{bottom:329.620000pt;}
.y2b_c01319{bottom:344.230667pt;}
.y2a_c01319{bottom:358.842667pt;}
.y29_c01319{bottom:373.454667pt;}
.y28_c01319{bottom:388.066667pt;}
.y27_c01319{bottom:402.678667pt;}
.y26_c01319{bottom:417.290667pt;}
.y25_c01319{bottom:431.902667pt;}
.y24_c01319{bottom:461.126667pt;}
.y23_c01319{bottom:475.738667pt;}
.y22_c01319{bottom:490.349333pt;}
.y21_c01319{bottom:519.573333pt;}
.y20_c01319{bottom:534.185333pt;}
.y1f_c01319{bottom:563.409333pt;}
.y1e_c01319{bottom:578.021333pt;}
.y1d_c01319{bottom:592.633333pt;}
.y1c_c01319{bottom:607.245333pt;}
.y1b_c01319{bottom:621.857333pt;}
.y1a_c01319{bottom:636.469333pt;}
.y19_c01319{bottom:651.080000pt;}
.y18_c01319{bottom:665.692000pt;}
.y17_c01319{bottom:680.304000pt;}
.y16_c01319{bottom:694.916000pt;}
.y15_c01319{bottom:709.528000pt;}
.y14_c01319{bottom:724.140000pt;}
.y13_c01319{bottom:738.752000pt;}
.y12_c01319{bottom:753.364000pt;}
.y11_c01319{bottom:767.976000pt;}
.y10_c01319{bottom:782.588000pt;}
.yf_c01319{bottom:811.810667pt;}
.ye_c01319{bottom:826.422667pt;}
.yd_c01319{bottom:841.034667pt;}
.yc_c01319{bottom:855.646667pt;}
.yb_c01319{bottom:870.258667pt;}
.ya_c01319{bottom:884.870667pt;}
.y9_c01319{bottom:899.482667pt;}
.y8_c01319{bottom:914.094667pt;}
.y7_c01319{bottom:928.706667pt;}
.y6_c01319{bottom:943.317333pt;}
.y5_c01319{bottom:957.929333pt;}
.y4_c01319{bottom:972.541333pt;}
.y3_c01319{bottom:987.153333pt;}
.y2_c01319{bottom:1001.765333pt;}
.y1_c01319{bottom:1016.377333pt;}
.h2_c01319{height:31.280681pt;}
.h3_c01319{height:32.006363pt;}
.h4_c01319{height:46.518078pt;}
.h0_c01319{height:1122.520000pt;}
.h1_c01319{height:1122.666667pt;}
.w0_c01319{width:793.706667pt;}
.w1_c01319{width:794.000000pt;}
.x0_c01319{left:0.000000pt;}
.x1_c01319{left:121.886667pt;}
.x2_c01319{left:127.796000pt;}
.x4_c01319{left:157.340000pt;}
.x3_c01319{left:204.609333pt;}
.x5_c01319{left:386.888000pt;}
}





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

.ir_c01320:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01320;src:url('chunks/assets/font_7251830c62314b6e71f3619f.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01320;src:url('chunks/assets/font_1b75a6687d7237baca669b27.woff2')format("woff");}.ff2_c01320{font-family:ff2_c01320;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01320;src:url('chunks/assets/font_fd89fc59d249b925f9b60b46.woff2')format("woff");}.ff3_c01320{font-family:ff3_c01320;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01320;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01320{font-family:ff4_c01320;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01320;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01320{font-family:ff5_c01320;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01320{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01320{vertical-align:0.000000px;}
.ls3_c01320{letter-spacing:0.000000px;}
.ls0_c01320{letter-spacing:0.087998px;}
.ls2_c01320{letter-spacing:0.098482px;}
.ls1_c01320{letter-spacing:0.104482px;}
.sc__c01320{text-shadow:none;}
.sc0_c01320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01320{-webkit-text-stroke:0px transparent;}
.sc0_c01320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01320{word-spacing:-33.713438px;}
.ws2_c01320{word-spacing:-26.575517px;}
.wse_c01320{word-spacing:-26.487518px;}
.ws9_c01320{word-spacing:-21.553319px;}
.ws8_c01320{word-spacing:-21.519216px;}
.ws5_c01320{word-spacing:-18.769538px;}
.ws7_c01320{word-spacing:-16.019861px;}
.ws4_c01320{word-spacing:-14.943900px;}
.wsa_c01320{word-spacing:-14.107042px;}
.wsb_c01320{word-spacing:-12.074671px;}
.ws1_c01320{word-spacing:-9.988424px;}
.ws3_c01320{word-spacing:-9.987499px;}
.ws6_c01320{word-spacing:-4.536144px;}
.ws12_c01320{word-spacing:0.000000px;}
.wsf_c01320{word-spacing:0.043999px;}
.ws15_c01320{word-spacing:0.056767px;}
.ws13_c01320{word-spacing:0.073250px;}
.ws14_c01320{word-spacing:0.083734px;}
.wsd_c01320{word-spacing:0.175997px;}
.ws16_c01320{word-spacing:0.202963px;}
.ws10_c01320{word-spacing:0.213446px;}
.ws11_c01320{word-spacing:0.219446px;}
.ws0_c01320{word-spacing:43.038600px;}
._2_c01320{margin-left:-5.977560px;}
._4_c01320{margin-left:-3.825638px;}
._0_c01320{margin-left:-1.549390px;}
._5_c01320{width:1.005737px;}
._1_c01320{width:19.935816px;}
._3_c01320{width:40.109428px;}
._7_c01320{width:53.283031px;}
._6_c01320{width:79.858548px;}
._8_c01320{width:133.452408px;}
.fc6_c01320{color:rgb(0,0,207);}
.fc5_c01320{color:rgb(79,153,5);}
.fc3_c01320{color:rgb(33,74,135);}
.fc2_c01320{color:rgb(143,89,3);}
.fc4_c01320{color:rgb(207,92,0);}
.fc1_c01320{color:rgb(6,69,173);}
.fc0_c01320{color:rgb(0,0,0);}
.fs2_c01320{font-size:43.999200px;}
.fs1_c01320{font-size:59.775600px;}
.fs0_c01320{font-size:86.077200px;}
.y0_c01320{bottom:0.000000px;}
.y20_c01320{bottom:44.250000px;}
.y1f_c01320{bottom:86.982000px;}
.y1e_c01320{bottom:103.420500px;}
.y1d_c01320{bottom:119.859000px;}
.y1c_c01320{bottom:136.297500px;}
.y1b_c01320{bottom:152.736000px;}
.y1a_c01320{bottom:169.174500px;}
.y19_c01320{bottom:185.613000px;}
.y18_c01320{bottom:202.051500px;}
.y17_c01320{bottom:218.490000px;}
.y16_c01320{bottom:234.927000px;}
.y15_c01320{bottom:251.365500px;}
.y14_c01320{bottom:267.804000px;}
.y13_c01320{bottom:284.242500px;}
.y12_c01320{bottom:300.681000px;}
.y11_c01320{bottom:317.119500px;}
.y10_c01320{bottom:349.996500px;}
.yf_c01320{bottom:366.435000px;}
.ye_c01320{bottom:415.749000px;}
.yd_c01320{bottom:432.187500px;}
.yc_c01320{bottom:448.252500px;}
.yb_c01320{bottom:493.890000px;}
.ya_c01320{bottom:511.822500px;}
.y9_c01320{bottom:529.756500px;}
.y8_c01320{bottom:547.689000px;}
.y7_c01320{bottom:565.621500px;}
.y6_c01320{bottom:583.554000px;}
.y5_c01320{bottom:610.633500px;}
.y4_c01320{bottom:637.714500px;}
.y3_c01320{bottom:664.794000px;}
.y2_c01320{bottom:691.873500px;}
.y1_c01320{bottom:734.407500px;}
.h5_c01320{height:35.190766px;}
.h6_c01320{height:36.007158px;}
.h3_c01320{height:40.511979px;}
.h4_c01320{height:52.332837px;}
.h2_c01320{height:58.337477px;}
.h0_c01320{height:1262.835000px;}
.h1_c01320{height:1263.000000px;}
.w0_c01320{width:892.920000px;}
.w1_c01320{width:893.250000px;}
.x0_c01320{left:0.000000px;}
.x1_c01320{left:127.558500px;}
.x2_c01320{left:137.122500px;}
.x3_c01320{left:143.770500px;}
.x4_c01320{left:435.249000px;}
@media print{
.v0_c01320{vertical-align:0.000000pt;}
.ls3_c01320{letter-spacing:0.000000pt;}
.ls0_c01320{letter-spacing:0.078221pt;}
.ls2_c01320{letter-spacing:0.087539pt;}
.ls1_c01320{letter-spacing:0.092873pt;}
.wsc_c01320{word-spacing:-29.967501pt;}
.ws2_c01320{word-spacing:-23.622682pt;}
.wse_c01320{word-spacing:-23.544461pt;}
.ws9_c01320{word-spacing:-19.158506pt;}
.ws8_c01320{word-spacing:-19.128192pt;}
.ws5_c01320{word-spacing:-16.684034pt;}
.ws7_c01320{word-spacing:-14.239876pt;}
.ws4_c01320{word-spacing:-13.283467pt;}
.wsa_c01320{word-spacing:-12.539593pt;}
.wsb_c01320{word-spacing:-10.733041pt;}
.ws1_c01320{word-spacing:-8.878599pt;}
.ws3_c01320{word-spacing:-8.877777pt;}
.ws6_c01320{word-spacing:-4.032128pt;}
.ws12_c01320{word-spacing:0.000000pt;}
.wsf_c01320{word-spacing:0.039110pt;}
.ws15_c01320{word-spacing:0.050460pt;}
.ws13_c01320{word-spacing:0.065111pt;}
.ws14_c01320{word-spacing:0.074430pt;}
.wsd_c01320{word-spacing:0.156442pt;}
.ws16_c01320{word-spacing:0.180412pt;}
.ws10_c01320{word-spacing:0.189730pt;}
.ws11_c01320{word-spacing:0.195063pt;}
.ws0_c01320{word-spacing:38.256533pt;}
._2_c01320{margin-left:-5.313387pt;}
._4_c01320{margin-left:-3.400567pt;}
._0_c01320{margin-left:-1.377235pt;}
._5_c01320{width:0.893988pt;}
._1_c01320{width:17.720725pt;}
._3_c01320{width:35.652825pt;}
._7_c01320{width:47.362694pt;}
._6_c01320{width:70.985376pt;}
._8_c01320{width:118.624363pt;}
.fs2_c01320{font-size:39.110400pt;}
.fs1_c01320{font-size:53.133867pt;}
.fs0_c01320{font-size:76.513067pt;}
.y0_c01320{bottom:0.000000pt;}
.y20_c01320{bottom:39.333333pt;}
.y1f_c01320{bottom:77.317333pt;}
.y1e_c01320{bottom:91.929333pt;}
.y1d_c01320{bottom:106.541333pt;}
.y1c_c01320{bottom:121.153333pt;}
.y1b_c01320{bottom:135.765333pt;}
.y1a_c01320{bottom:150.377333pt;}
.y19_c01320{bottom:164.989333pt;}
.y18_c01320{bottom:179.601333pt;}
.y17_c01320{bottom:194.213333pt;}
.y16_c01320{bottom:208.824000pt;}
.y15_c01320{bottom:223.436000pt;}
.y14_c01320{bottom:238.048000pt;}
.y13_c01320{bottom:252.660000pt;}
.y12_c01320{bottom:267.272000pt;}
.y11_c01320{bottom:281.884000pt;}
.y10_c01320{bottom:311.108000pt;}
.yf_c01320{bottom:325.720000pt;}
.ye_c01320{bottom:369.554667pt;}
.yd_c01320{bottom:384.166667pt;}
.yc_c01320{bottom:398.446667pt;}
.yb_c01320{bottom:439.013333pt;}
.ya_c01320{bottom:454.953333pt;}
.y9_c01320{bottom:470.894667pt;}
.y8_c01320{bottom:486.834667pt;}
.y7_c01320{bottom:502.774667pt;}
.y6_c01320{bottom:518.714667pt;}
.y5_c01320{bottom:542.785333pt;}
.y4_c01320{bottom:566.857333pt;}
.y3_c01320{bottom:590.928000pt;}
.y2_c01320{bottom:614.998667pt;}
.y1_c01320{bottom:652.806667pt;}
.h5_c01320{height:31.280681pt;}
.h6_c01320{height:32.006363pt;}
.h3_c01320{height:36.010648pt;}
.h4_c01320{height:46.518078pt;}
.h2_c01320{height:51.855535pt;}
.h0_c01320{height:1122.520000pt;}
.h1_c01320{height:1122.666667pt;}
.w0_c01320{width:793.706667pt;}
.w1_c01320{width:794.000000pt;}
.x0_c01320{left:0.000000pt;}
.x1_c01320{left:113.385333pt;}
.x2_c01320{left:121.886667pt;}
.x3_c01320{left:127.796000pt;}
.x4_c01320{left:386.888000pt;}
}





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

.ir_c01321:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01321;src:url('chunks/assets/font_3db9948496c2a0b29a57a3e2.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01321;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01321{font-family:ff2_c01321;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01321;src:url('chunks/assets/font_c5b02dacc5a0daa8c4f2cd94.woff2')format("woff");}.ff3_c01321{font-family:ff3_c01321;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01321;src:url('chunks/assets/font_ea24f2816da666862e7fade1.woff2')format("woff");}.ff4_c01321{font-family:ff4_c01321;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01321;src:url('chunks/assets/font_91a0bfe2947b92b751dfe871.woff2')format("woff");}.ff5_c01321{font-family:ff5_c01321;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01321{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01321{vertical-align:0.000000px;}
.ls4_c01321{letter-spacing:0.000000px;}
.ls0_c01321{letter-spacing:0.087998px;}
.ls2_c01321{letter-spacing:0.098482px;}
.ls3_c01321{letter-spacing:0.104482px;}
.ls1_c01321{letter-spacing:26.690482px;}
.sc__c01321{text-shadow:none;}
.sc0_c01321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01321{-webkit-text-stroke:0px transparent;}
.sc0_c01321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01321{word-spacing:-26.575517px;}
.ws4_c01321{word-spacing:-26.487518px;}
.wse_c01321{word-spacing:-21.553319px;}
.wsd_c01321{word-spacing:-21.519216px;}
.wsa_c01321{word-spacing:-18.769538px;}
.wsc_c01321{word-spacing:-17.633802px;}
.ws9_c01321{word-spacing:-14.943900px;}
.wsf_c01321{word-spacing:-14.107042px;}
.ws10_c01321{word-spacing:-12.074671px;}
.ws7_c01321{word-spacing:-9.988424px;}
.ws8_c01321{word-spacing:-9.987499px;}
.wsb_c01321{word-spacing:-7.686144px;}
.ws3_c01321{word-spacing:0.000000px;}
.ws0_c01321{word-spacing:0.043999px;}
.ws5_c01321{word-spacing:0.213446px;}
.ws1_c01321{word-spacing:0.219446px;}
.ws6_c01321{word-spacing:43.038600px;}
._4_c01321{margin-left:-5.977560px;}
._2_c01321{margin-left:-1.549390px;}
._1_c01321{width:1.041538px;}
._3_c01321{width:19.935816px;}
._5_c01321{width:40.109428px;}
._0_c01321{width:80.122543px;}
.fc5_c01321{color:rgb(79,153,5);}
.fc4_c01321{color:rgb(143,89,3);}
.fc3_c01321{color:rgb(0,0,0);}
.fc6_c01321{color:rgb(6,69,173);}
.fc2_c01321{color:rgb(207,92,0);}
.fc1_c01321{color:rgb(0,0,207);}
.fc0_c01321{color:rgb(33,74,135);}
.fs0_c01321{font-size:43.999200px;}
.fs2_c01321{font-size:59.775600px;}
.fs1_c01321{font-size:86.077200px;}
.y0_c01321{bottom:0.000000px;}
.y20_c01321{bottom:44.250000px;}
.y1f_c01321{bottom:82.051500px;}
.y1e_c01321{bottom:99.984000px;}
.y1d_c01321{bottom:117.916500px;}
.y1c_c01321{bottom:135.849000px;}
.y1b_c01321{bottom:162.501000px;}
.y1a_c01321{bottom:189.151500px;}
.y19_c01321{bottom:215.802000px;}
.y18_c01321{bottom:242.454000px;}
.y17_c01321{bottom:284.478000px;}
.y16_c01321{bottom:748.903500px;}
.y15_c01321{bottom:765.342000px;}
.y14_c01321{bottom:781.780500px;}
.y13_c01321{bottom:798.219000px;}
.y12_c01321{bottom:814.657500px;}
.y11_c01321{bottom:831.096000px;}
.y10_c01321{bottom:847.534500px;}
.yf_c01321{bottom:863.973000px;}
.ye_c01321{bottom:880.411500px;}
.yd_c01321{bottom:896.848500px;}
.yc_c01321{bottom:913.287000px;}
.yb_c01321{bottom:946.164000px;}
.ya_c01321{bottom:962.602500px;}
.y9_c01321{bottom:979.041000px;}
.y8_c01321{bottom:1011.918000px;}
.y7_c01321{bottom:1028.356500px;}
.y6_c01321{bottom:1044.795000px;}
.y5_c01321{bottom:1061.232000px;}
.y4_c01321{bottom:1077.670500px;}
.y3_c01321{bottom:1094.109000px;}
.y2_c01321{bottom:1110.547500px;}
.y1_c01321{bottom:1159.863000px;}
.h3_c01321{height:35.190766px;}
.h2_c01321{height:36.007158px;}
.h5_c01321{height:40.511979px;}
.h6_c01321{height:52.332837px;}
.h4_c01321{height:58.337477px;}
.h0_c01321{height:1262.835000px;}
.h1_c01321{height:1263.000000px;}
.w0_c01321{width:892.920000px;}
.w1_c01321{width:893.250000px;}
.x0_c01321{left:0.000000px;}
.x4_c01321{left:127.558500px;}
.x2_c01321{left:137.122500px;}
.x1_c01321{left:143.770500px;}
.x3_c01321{left:177.007500px;}
.x5_c01321{left:435.249000px;}
@media print{
.v0_c01321{vertical-align:0.000000pt;}
.ls4_c01321{letter-spacing:0.000000pt;}
.ls0_c01321{letter-spacing:0.078221pt;}
.ls2_c01321{letter-spacing:0.087539pt;}
.ls3_c01321{letter-spacing:0.092873pt;}
.ls1_c01321{letter-spacing:23.724873pt;}
.ws2_c01321{word-spacing:-23.622682pt;}
.ws4_c01321{word-spacing:-23.544461pt;}
.wse_c01321{word-spacing:-19.158506pt;}
.wsd_c01321{word-spacing:-19.128192pt;}
.wsa_c01321{word-spacing:-16.684034pt;}
.wsc_c01321{word-spacing:-15.674491pt;}
.ws9_c01321{word-spacing:-13.283467pt;}
.wsf_c01321{word-spacing:-12.539593pt;}
.ws10_c01321{word-spacing:-10.733041pt;}
.ws7_c01321{word-spacing:-8.878599pt;}
.ws8_c01321{word-spacing:-8.877777pt;}
.wsb_c01321{word-spacing:-6.832128pt;}
.ws3_c01321{word-spacing:0.000000pt;}
.ws0_c01321{word-spacing:0.039110pt;}
.ws5_c01321{word-spacing:0.189730pt;}
.ws1_c01321{word-spacing:0.195063pt;}
.ws6_c01321{word-spacing:38.256533pt;}
._4_c01321{margin-left:-5.313387pt;}
._2_c01321{margin-left:-1.377235pt;}
._1_c01321{width:0.925811pt;}
._3_c01321{width:17.720725pt;}
._5_c01321{width:35.652825pt;}
._0_c01321{width:71.220038pt;}
.fs0_c01321{font-size:39.110400pt;}
.fs2_c01321{font-size:53.133867pt;}
.fs1_c01321{font-size:76.513067pt;}
.y0_c01321{bottom:0.000000pt;}
.y20_c01321{bottom:39.333333pt;}
.y1f_c01321{bottom:72.934667pt;}
.y1e_c01321{bottom:88.874667pt;}
.y1d_c01321{bottom:104.814667pt;}
.y1c_c01321{bottom:120.754667pt;}
.y1b_c01321{bottom:144.445333pt;}
.y1a_c01321{bottom:168.134667pt;}
.y19_c01321{bottom:191.824000pt;}
.y18_c01321{bottom:215.514667pt;}
.y17_c01321{bottom:252.869333pt;}
.y16_c01321{bottom:665.692000pt;}
.y15_c01321{bottom:680.304000pt;}
.y14_c01321{bottom:694.916000pt;}
.y13_c01321{bottom:709.528000pt;}
.y12_c01321{bottom:724.140000pt;}
.y11_c01321{bottom:738.752000pt;}
.y10_c01321{bottom:753.364000pt;}
.yf_c01321{bottom:767.976000pt;}
.ye_c01321{bottom:782.588000pt;}
.yd_c01321{bottom:797.198667pt;}
.yc_c01321{bottom:811.810667pt;}
.yb_c01321{bottom:841.034667pt;}
.ya_c01321{bottom:855.646667pt;}
.y9_c01321{bottom:870.258667pt;}
.y8_c01321{bottom:899.482667pt;}
.y7_c01321{bottom:914.094667pt;}
.y6_c01321{bottom:928.706667pt;}
.y5_c01321{bottom:943.317333pt;}
.y4_c01321{bottom:957.929333pt;}
.y3_c01321{bottom:972.541333pt;}
.y2_c01321{bottom:987.153333pt;}
.y1_c01321{bottom:1030.989333pt;}
.h3_c01321{height:31.280681pt;}
.h2_c01321{height:32.006363pt;}
.h5_c01321{height:36.010648pt;}
.h6_c01321{height:46.518078pt;}
.h4_c01321{height:51.855535pt;}
.h0_c01321{height:1122.520000pt;}
.h1_c01321{height:1122.666667pt;}
.w0_c01321{width:793.706667pt;}
.w1_c01321{width:794.000000pt;}
.x0_c01321{left:0.000000pt;}
.x4_c01321{left:113.385333pt;}
.x2_c01321{left:121.886667pt;}
.x1_c01321{left:127.796000pt;}
.x3_c01321{left:157.340000pt;}
.x5_c01321{left:386.888000pt;}
}





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

.ir_c01322:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01322;src:url('chunks/assets/font_8816c9f3d594ec3e39eedf58.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01322;src:url('chunks/assets/font_c2db5f7180bf87cfe5792ee9.woff2')format("woff");}.ff2_c01322{font-family:ff2_c01322;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01322;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01322{font-family:ff3_c01322;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01322;src:url('chunks/assets/font_ad99593aba7be604e06e24bb.woff2')format("woff");}.ff4_c01322{font-family:ff4_c01322;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01322{vertical-align:0.000000px;}
.ls4_c01322{letter-spacing:0.000000px;}
.ls1_c01322{letter-spacing:0.087998px;}
.ls2_c01322{letter-spacing:0.098482px;}
.ls0_c01322{letter-spacing:0.104482px;}
.ls3_c01322{letter-spacing:26.690482px;}
.sc__c01322{text-shadow:none;}
.sc0_c01322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01322{-webkit-text-stroke:0px transparent;}
.sc0_c01322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01322{word-spacing:-33.713438px;}
.ws4_c01322{word-spacing:-26.575517px;}
.ws3_c01322{word-spacing:-26.487518px;}
.ws0_c01322{word-spacing:-18.769538px;}
.ws8_c01322{word-spacing:0.000000px;}
.ws5_c01322{word-spacing:0.043999px;}
.wsb_c01322{word-spacing:0.056767px;}
.ws9_c01322{word-spacing:0.073250px;}
.wsa_c01322{word-spacing:0.083734px;}
.ws2_c01322{word-spacing:0.175997px;}
.wsc_c01322{word-spacing:0.202963px;}
.ws6_c01322{word-spacing:0.213446px;}
.ws7_c01322{word-spacing:0.219446px;}
._0_c01322{margin-left:-3.825638px;}
._1_c01322{width:1.005737px;}
._3_c01322{width:53.283031px;}
._2_c01322{width:79.858548px;}
._4_c01322{width:133.452408px;}
.fc5_c01322{color:rgb(0,0,207);}
.fc4_c01322{color:rgb(79,153,5);}
.fc3_c01322{color:rgb(207,92,0);}
.fc2_c01322{color:rgb(33,74,135);}
.fc1_c01322{color:rgb(143,89,3);}
.fc0_c01322{color:rgb(0,0,0);}
.fs1_c01322{font-size:43.999200px;}
.fs0_c01322{font-size:59.775600px;}
.y0_c01322{bottom:0.000000px;}
.y2d_c01322{bottom:44.250000px;}
.y2c_c01322{bottom:96.919500px;}
.y2b_c01322{bottom:113.358000px;}
.y2a_c01322{bottom:129.796500px;}
.y29_c01322{bottom:146.235000px;}
.y28_c01322{bottom:162.673500px;}
.y27_c01322{bottom:179.112000px;}
.y26_c01322{bottom:195.550500px;}
.y25_c01322{bottom:211.989000px;}
.y24_c01322{bottom:228.427500px;}
.y23_c01322{bottom:244.866000px;}
.y22_c01322{bottom:261.304500px;}
.y21_c01322{bottom:294.180000px;}
.y20_c01322{bottom:310.618500px;}
.y1f_c01322{bottom:327.057000px;}
.y1e_c01322{bottom:359.934000px;}
.y1d_c01322{bottom:376.372500px;}
.y1c_c01322{bottom:392.811000px;}
.y1b_c01322{bottom:409.249500px;}
.y1a_c01322{bottom:425.688000px;}
.y19_c01322{bottom:442.125000px;}
.y18_c01322{bottom:458.563500px;}
.y17_c01322{bottom:507.879000px;}
.y16_c01322{bottom:524.317500px;}
.y15_c01322{bottom:540.756000px;}
.y14_c01322{bottom:557.194500px;}
.y13_c01322{bottom:573.633000px;}
.y12_c01322{bottom:590.071500px;}
.y11_c01322{bottom:606.508500px;}
.y10_c01322{bottom:622.947000px;}
.yf_c01322{bottom:639.385500px;}
.ye_c01322{bottom:655.824000px;}
.yd_c01322{bottom:672.262500px;}
.yc_c01322{bottom:688.701000px;}
.yb_c01322{bottom:705.139500px;}
.ya_c01322{bottom:721.578000px;}
.y9_c01322{bottom:738.016500px;}
.y8_c01322{bottom:754.455000px;}
.y7_c01322{bottom:787.330500px;}
.y6_c01322{bottom:803.769000px;}
.y5_c01322{bottom:853.084500px;}
.y4_c01322{bottom:869.523000px;}
.y3_c01322{bottom:885.588000px;}
.y2_c01322{bottom:1141.930500px;}
.y1_c01322{bottom:1159.863000px;}
.h3_c01322{height:35.190766px;}
.h4_c01322{height:36.007158px;}
.h2_c01322{height:52.332837px;}
.h0_c01322{height:1262.835000px;}
.h1_c01322{height:1263.000000px;}
.w0_c01322{width:892.920000px;}
.w1_c01322{width:893.250000px;}
.x0_c01322{left:0.000000px;}
.x1_c01322{left:127.558500px;}
.x2_c01322{left:137.122500px;}
.x3_c01322{left:143.770500px;}
.x4_c01322{left:177.007500px;}
.x5_c01322{left:435.249000px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.ls4_c01322{letter-spacing:0.000000pt;}
.ls1_c01322{letter-spacing:0.078221pt;}
.ls2_c01322{letter-spacing:0.087539pt;}
.ls0_c01322{letter-spacing:0.092873pt;}
.ls3_c01322{letter-spacing:23.724873pt;}
.ws1_c01322{word-spacing:-29.967501pt;}
.ws4_c01322{word-spacing:-23.622682pt;}
.ws3_c01322{word-spacing:-23.544461pt;}
.ws0_c01322{word-spacing:-16.684034pt;}
.ws8_c01322{word-spacing:0.000000pt;}
.ws5_c01322{word-spacing:0.039110pt;}
.wsb_c01322{word-spacing:0.050460pt;}
.ws9_c01322{word-spacing:0.065111pt;}
.wsa_c01322{word-spacing:0.074430pt;}
.ws2_c01322{word-spacing:0.156442pt;}
.wsc_c01322{word-spacing:0.180412pt;}
.ws6_c01322{word-spacing:0.189730pt;}
.ws7_c01322{word-spacing:0.195063pt;}
._0_c01322{margin-left:-3.400567pt;}
._1_c01322{width:0.893988pt;}
._3_c01322{width:47.362694pt;}
._2_c01322{width:70.985376pt;}
._4_c01322{width:118.624363pt;}
.fs1_c01322{font-size:39.110400pt;}
.fs0_c01322{font-size:53.133867pt;}
.y0_c01322{bottom:0.000000pt;}
.y2d_c01322{bottom:39.333333pt;}
.y2c_c01322{bottom:86.150667pt;}
.y2b_c01322{bottom:100.762667pt;}
.y2a_c01322{bottom:115.374667pt;}
.y29_c01322{bottom:129.986667pt;}
.y28_c01322{bottom:144.598667pt;}
.y27_c01322{bottom:159.210667pt;}
.y26_c01322{bottom:173.822667pt;}
.y25_c01322{bottom:188.434667pt;}
.y24_c01322{bottom:203.046667pt;}
.y23_c01322{bottom:217.658667pt;}
.y22_c01322{bottom:232.270667pt;}
.y21_c01322{bottom:261.493333pt;}
.y20_c01322{bottom:276.105333pt;}
.y1f_c01322{bottom:290.717333pt;}
.y1e_c01322{bottom:319.941333pt;}
.y1d_c01322{bottom:334.553333pt;}
.y1c_c01322{bottom:349.165333pt;}
.y1b_c01322{bottom:363.777333pt;}
.y1a_c01322{bottom:378.389333pt;}
.y19_c01322{bottom:393.000000pt;}
.y18_c01322{bottom:407.612000pt;}
.y17_c01322{bottom:451.448000pt;}
.y16_c01322{bottom:466.060000pt;}
.y15_c01322{bottom:480.672000pt;}
.y14_c01322{bottom:495.284000pt;}
.y13_c01322{bottom:509.896000pt;}
.y12_c01322{bottom:524.508000pt;}
.y11_c01322{bottom:539.118667pt;}
.y10_c01322{bottom:553.730667pt;}
.yf_c01322{bottom:568.342667pt;}
.ye_c01322{bottom:582.954667pt;}
.yd_c01322{bottom:597.566667pt;}
.yc_c01322{bottom:612.178667pt;}
.yb_c01322{bottom:626.790667pt;}
.ya_c01322{bottom:641.402667pt;}
.y9_c01322{bottom:656.014667pt;}
.y8_c01322{bottom:670.626667pt;}
.y7_c01322{bottom:699.849333pt;}
.y6_c01322{bottom:714.461333pt;}
.y5_c01322{bottom:758.297333pt;}
.y4_c01322{bottom:772.909333pt;}
.y3_c01322{bottom:787.189333pt;}
.y2_c01322{bottom:1015.049333pt;}
.y1_c01322{bottom:1030.989333pt;}
.h3_c01322{height:31.280681pt;}
.h4_c01322{height:32.006363pt;}
.h2_c01322{height:46.518078pt;}
.h0_c01322{height:1122.520000pt;}
.h1_c01322{height:1122.666667pt;}
.w0_c01322{width:793.706667pt;}
.w1_c01322{width:794.000000pt;}
.x0_c01322{left:0.000000pt;}
.x1_c01322{left:113.385333pt;}
.x2_c01322{left:121.886667pt;}
.x3_c01322{left:127.796000pt;}
.x4_c01322{left:157.340000pt;}
.x5_c01322{left:386.888000pt;}
}





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

.ir_c01323:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01323;src:url('chunks/assets/font_c0aaa9bfa0913dc550dba552.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01323;src:url('chunks/assets/font_1f5a23421b09e78bbe7878f6.woff2')format("woff");}.ff2_c01323{font-family:ff2_c01323;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01323;src:url('chunks/assets/font_d3494341f211a1cacafe5921.woff2')format("woff");}.ff3_c01323{font-family:ff3_c01323;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01323;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01323{font-family:ff4_c01323;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01323;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01323{font-family:ff5_c01323;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01323{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01323{vertical-align:0.000000px;}
.ls3_c01323{letter-spacing:0.000000px;}
.ls0_c01323{letter-spacing:0.087998px;}
.ls2_c01323{letter-spacing:0.098482px;}
.ls1_c01323{letter-spacing:0.104482px;}
.sc__c01323{text-shadow:none;}
.sc0_c01323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01323{-webkit-text-stroke:0px transparent;}
.sc0_c01323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01323{word-spacing:-33.713438px;}
.ws2_c01323{word-spacing:-26.575517px;}
.wse_c01323{word-spacing:-26.487518px;}
.ws9_c01323{word-spacing:-21.553319px;}
.ws8_c01323{word-spacing:-21.519216px;}
.ws5_c01323{word-spacing:-18.769538px;}
.ws7_c01323{word-spacing:-17.633802px;}
.ws4_c01323{word-spacing:-14.943900px;}
.wsa_c01323{word-spacing:-14.107042px;}
.wsb_c01323{word-spacing:-12.074671px;}
.ws1_c01323{word-spacing:-9.988424px;}
.ws3_c01323{word-spacing:-9.987499px;}
.ws6_c01323{word-spacing:-7.686144px;}
.ws12_c01323{word-spacing:0.000000px;}
.wsf_c01323{word-spacing:0.043999px;}
.ws15_c01323{word-spacing:0.056767px;}
.ws13_c01323{word-spacing:0.073250px;}
.ws14_c01323{word-spacing:0.083734px;}
.wsd_c01323{word-spacing:0.175997px;}
.ws16_c01323{word-spacing:0.202963px;}
.ws10_c01323{word-spacing:0.213446px;}
.ws11_c01323{word-spacing:0.219446px;}
.ws0_c01323{word-spacing:43.038600px;}
._2_c01323{margin-left:-5.977560px;}
._4_c01323{margin-left:-3.825638px;}
._0_c01323{margin-left:-1.549390px;}
._5_c01323{width:1.005737px;}
._1_c01323{width:19.935816px;}
._3_c01323{width:40.109428px;}
._7_c01323{width:53.283031px;}
._6_c01323{width:79.858548px;}
._8_c01323{width:133.452408px;}
.fc6_c01323{color:rgb(0,0,207);}
.fc5_c01323{color:rgb(79,153,5);}
.fc3_c01323{color:rgb(33,74,135);}
.fc2_c01323{color:rgb(143,89,3);}
.fc4_c01323{color:rgb(207,92,0);}
.fc1_c01323{color:rgb(6,69,173);}
.fc0_c01323{color:rgb(0,0,0);}
.fs2_c01323{font-size:43.999200px;}
.fs1_c01323{font-size:59.775600px;}
.fs0_c01323{font-size:86.077200px;}
.y0_c01323{bottom:0.000000px;}
.y20_c01323{bottom:44.250000px;}
.y1f_c01323{bottom:86.982000px;}
.y1e_c01323{bottom:103.420500px;}
.y1d_c01323{bottom:119.859000px;}
.y1c_c01323{bottom:136.297500px;}
.y1b_c01323{bottom:152.736000px;}
.y1a_c01323{bottom:169.174500px;}
.y19_c01323{bottom:185.613000px;}
.y18_c01323{bottom:202.051500px;}
.y17_c01323{bottom:218.490000px;}
.y16_c01323{bottom:234.927000px;}
.y15_c01323{bottom:251.365500px;}
.y14_c01323{bottom:267.804000px;}
.y13_c01323{bottom:284.242500px;}
.y12_c01323{bottom:300.681000px;}
.y11_c01323{bottom:317.119500px;}
.y10_c01323{bottom:349.996500px;}
.yf_c01323{bottom:366.435000px;}
.ye_c01323{bottom:415.749000px;}
.yd_c01323{bottom:432.187500px;}
.yc_c01323{bottom:448.252500px;}
.yb_c01323{bottom:493.890000px;}
.ya_c01323{bottom:511.822500px;}
.y9_c01323{bottom:529.756500px;}
.y8_c01323{bottom:547.689000px;}
.y7_c01323{bottom:565.621500px;}
.y6_c01323{bottom:583.554000px;}
.y5_c01323{bottom:610.633500px;}
.y4_c01323{bottom:637.714500px;}
.y3_c01323{bottom:664.794000px;}
.y2_c01323{bottom:691.873500px;}
.y1_c01323{bottom:734.407500px;}
.h5_c01323{height:35.190766px;}
.h6_c01323{height:36.007158px;}
.h3_c01323{height:40.511979px;}
.h4_c01323{height:52.332837px;}
.h2_c01323{height:58.337477px;}
.h0_c01323{height:1262.835000px;}
.h1_c01323{height:1263.000000px;}
.w0_c01323{width:892.920000px;}
.w1_c01323{width:893.250000px;}
.x0_c01323{left:0.000000px;}
.x1_c01323{left:127.558500px;}
.x2_c01323{left:137.122500px;}
.x3_c01323{left:143.770500px;}
.x4_c01323{left:435.249000px;}
@media print{
.v0_c01323{vertical-align:0.000000pt;}
.ls3_c01323{letter-spacing:0.000000pt;}
.ls0_c01323{letter-spacing:0.078221pt;}
.ls2_c01323{letter-spacing:0.087539pt;}
.ls1_c01323{letter-spacing:0.092873pt;}
.wsc_c01323{word-spacing:-29.967501pt;}
.ws2_c01323{word-spacing:-23.622682pt;}
.wse_c01323{word-spacing:-23.544461pt;}
.ws9_c01323{word-spacing:-19.158506pt;}
.ws8_c01323{word-spacing:-19.128192pt;}
.ws5_c01323{word-spacing:-16.684034pt;}
.ws7_c01323{word-spacing:-15.674491pt;}
.ws4_c01323{word-spacing:-13.283467pt;}
.wsa_c01323{word-spacing:-12.539593pt;}
.wsb_c01323{word-spacing:-10.733041pt;}
.ws1_c01323{word-spacing:-8.878599pt;}
.ws3_c01323{word-spacing:-8.877777pt;}
.ws6_c01323{word-spacing:-6.832128pt;}
.ws12_c01323{word-spacing:0.000000pt;}
.wsf_c01323{word-spacing:0.039110pt;}
.ws15_c01323{word-spacing:0.050460pt;}
.ws13_c01323{word-spacing:0.065111pt;}
.ws14_c01323{word-spacing:0.074430pt;}
.wsd_c01323{word-spacing:0.156442pt;}
.ws16_c01323{word-spacing:0.180412pt;}
.ws10_c01323{word-spacing:0.189730pt;}
.ws11_c01323{word-spacing:0.195063pt;}
.ws0_c01323{word-spacing:38.256533pt;}
._2_c01323{margin-left:-5.313387pt;}
._4_c01323{margin-left:-3.400567pt;}
._0_c01323{margin-left:-1.377235pt;}
._5_c01323{width:0.893988pt;}
._1_c01323{width:17.720725pt;}
._3_c01323{width:35.652825pt;}
._7_c01323{width:47.362694pt;}
._6_c01323{width:70.985376pt;}
._8_c01323{width:118.624363pt;}
.fs2_c01323{font-size:39.110400pt;}
.fs1_c01323{font-size:53.133867pt;}
.fs0_c01323{font-size:76.513067pt;}
.y0_c01323{bottom:0.000000pt;}
.y20_c01323{bottom:39.333333pt;}
.y1f_c01323{bottom:77.317333pt;}
.y1e_c01323{bottom:91.929333pt;}
.y1d_c01323{bottom:106.541333pt;}
.y1c_c01323{bottom:121.153333pt;}
.y1b_c01323{bottom:135.765333pt;}
.y1a_c01323{bottom:150.377333pt;}
.y19_c01323{bottom:164.989333pt;}
.y18_c01323{bottom:179.601333pt;}
.y17_c01323{bottom:194.213333pt;}
.y16_c01323{bottom:208.824000pt;}
.y15_c01323{bottom:223.436000pt;}
.y14_c01323{bottom:238.048000pt;}
.y13_c01323{bottom:252.660000pt;}
.y12_c01323{bottom:267.272000pt;}
.y11_c01323{bottom:281.884000pt;}
.y10_c01323{bottom:311.108000pt;}
.yf_c01323{bottom:325.720000pt;}
.ye_c01323{bottom:369.554667pt;}
.yd_c01323{bottom:384.166667pt;}
.yc_c01323{bottom:398.446667pt;}
.yb_c01323{bottom:439.013333pt;}
.ya_c01323{bottom:454.953333pt;}
.y9_c01323{bottom:470.894667pt;}
.y8_c01323{bottom:486.834667pt;}
.y7_c01323{bottom:502.774667pt;}
.y6_c01323{bottom:518.714667pt;}
.y5_c01323{bottom:542.785333pt;}
.y4_c01323{bottom:566.857333pt;}
.y3_c01323{bottom:590.928000pt;}
.y2_c01323{bottom:614.998667pt;}
.y1_c01323{bottom:652.806667pt;}
.h5_c01323{height:31.280681pt;}
.h6_c01323{height:32.006363pt;}
.h3_c01323{height:36.010648pt;}
.h4_c01323{height:46.518078pt;}
.h2_c01323{height:51.855535pt;}
.h0_c01323{height:1122.520000pt;}
.h1_c01323{height:1122.666667pt;}
.w0_c01323{width:793.706667pt;}
.w1_c01323{width:794.000000pt;}
.x0_c01323{left:0.000000pt;}
.x1_c01323{left:113.385333pt;}
.x2_c01323{left:121.886667pt;}
.x3_c01323{left:127.796000pt;}
.x4_c01323{left:386.888000pt;}
}





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

.ir_c01324:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01324;src:url('chunks/assets/font_7800b657a44630e36a4deaa5.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01324;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01324{font-family:ff2_c01324;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01324;src:url('chunks/assets/font_759bdd46ed6d2a95912f1013.woff2')format("woff");}.ff3_c01324{font-family:ff3_c01324;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01324;src:url('chunks/assets/font_535a5b4328b97185916ba4b2.woff2')format("woff");}.ff4_c01324{font-family:ff4_c01324;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01324;src:url('chunks/assets/font_91a0bfe2947b92b751dfe871.woff2')format("woff");}.ff5_c01324{font-family:ff5_c01324;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01324{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01324{vertical-align:0.000000px;}
.ls4_c01324{letter-spacing:0.000000px;}
.ls0_c01324{letter-spacing:0.087998px;}
.ls2_c01324{letter-spacing:0.098482px;}
.ls3_c01324{letter-spacing:0.104482px;}
.ls1_c01324{letter-spacing:26.690482px;}
.sc__c01324{text-shadow:none;}
.sc0_c01324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01324{-webkit-text-stroke:0px transparent;}
.sc0_c01324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01324{word-spacing:-26.575517px;}
.ws4_c01324{word-spacing:-26.487518px;}
.wse_c01324{word-spacing:-21.553319px;}
.wsd_c01324{word-spacing:-21.519216px;}
.wsc_c01324{word-spacing:-19.247743px;}
.wsa_c01324{word-spacing:-18.769538px;}
.ws9_c01324{word-spacing:-14.943900px;}
.wsf_c01324{word-spacing:-14.107042px;}
.ws10_c01324{word-spacing:-12.074671px;}
.wsb_c01324{word-spacing:-10.230144px;}
.ws7_c01324{word-spacing:-9.988424px;}
.ws8_c01324{word-spacing:-9.987499px;}
.ws3_c01324{word-spacing:0.000000px;}
.ws0_c01324{word-spacing:0.043999px;}
.ws5_c01324{word-spacing:0.213446px;}
.ws1_c01324{word-spacing:0.219446px;}
.ws6_c01324{word-spacing:43.038600px;}
._4_c01324{margin-left:-5.977560px;}
._2_c01324{margin-left:-1.549390px;}
._1_c01324{width:1.041538px;}
._3_c01324{width:19.935816px;}
._5_c01324{width:40.109428px;}
._0_c01324{width:53.547026px;}
.fc5_c01324{color:rgb(79,153,5);}
.fc4_c01324{color:rgb(143,89,3);}
.fc3_c01324{color:rgb(0,0,0);}
.fc6_c01324{color:rgb(6,69,173);}
.fc2_c01324{color:rgb(207,92,0);}
.fc1_c01324{color:rgb(0,0,207);}
.fc0_c01324{color:rgb(33,74,135);}
.fs0_c01324{font-size:43.999200px;}
.fs2_c01324{font-size:59.775600px;}
.fs1_c01324{font-size:86.077200px;}
.y0_c01324{bottom:0.000000px;}
.y20_c01324{bottom:44.250000px;}
.y1f_c01324{bottom:82.051500px;}
.y1e_c01324{bottom:99.984000px;}
.y1d_c01324{bottom:117.916500px;}
.y1c_c01324{bottom:135.849000px;}
.y1b_c01324{bottom:162.501000px;}
.y1a_c01324{bottom:189.151500px;}
.y19_c01324{bottom:215.802000px;}
.y18_c01324{bottom:242.454000px;}
.y17_c01324{bottom:284.478000px;}
.y16_c01324{bottom:748.903500px;}
.y15_c01324{bottom:765.342000px;}
.y14_c01324{bottom:781.780500px;}
.y13_c01324{bottom:798.219000px;}
.y12_c01324{bottom:814.657500px;}
.y11_c01324{bottom:831.096000px;}
.y10_c01324{bottom:847.534500px;}
.yf_c01324{bottom:863.973000px;}
.ye_c01324{bottom:880.411500px;}
.yd_c01324{bottom:896.848500px;}
.yc_c01324{bottom:913.287000px;}
.yb_c01324{bottom:946.164000px;}
.ya_c01324{bottom:962.602500px;}
.y9_c01324{bottom:979.041000px;}
.y8_c01324{bottom:1011.918000px;}
.y7_c01324{bottom:1028.356500px;}
.y6_c01324{bottom:1044.795000px;}
.y5_c01324{bottom:1061.232000px;}
.y4_c01324{bottom:1077.670500px;}
.y3_c01324{bottom:1094.109000px;}
.y2_c01324{bottom:1110.547500px;}
.y1_c01324{bottom:1159.863000px;}
.h3_c01324{height:35.190766px;}
.h2_c01324{height:36.007158px;}
.h5_c01324{height:40.511979px;}
.h6_c01324{height:52.332837px;}
.h4_c01324{height:58.337477px;}
.h0_c01324{height:1262.835000px;}
.h1_c01324{height:1263.000000px;}
.w0_c01324{width:892.920000px;}
.w1_c01324{width:893.250000px;}
.x0_c01324{left:0.000000px;}
.x4_c01324{left:127.558500px;}
.x2_c01324{left:137.122500px;}
.x1_c01324{left:143.770500px;}
.x3_c01324{left:177.007500px;}
.x5_c01324{left:435.249000px;}
@media print{
.v0_c01324{vertical-align:0.000000pt;}
.ls4_c01324{letter-spacing:0.000000pt;}
.ls0_c01324{letter-spacing:0.078221pt;}
.ls2_c01324{letter-spacing:0.087539pt;}
.ls3_c01324{letter-spacing:0.092873pt;}
.ls1_c01324{letter-spacing:23.724873pt;}
.ws2_c01324{word-spacing:-23.622682pt;}
.ws4_c01324{word-spacing:-23.544461pt;}
.wse_c01324{word-spacing:-19.158506pt;}
.wsd_c01324{word-spacing:-19.128192pt;}
.wsc_c01324{word-spacing:-17.109105pt;}
.wsa_c01324{word-spacing:-16.684034pt;}
.ws9_c01324{word-spacing:-13.283467pt;}
.wsf_c01324{word-spacing:-12.539593pt;}
.ws10_c01324{word-spacing:-10.733041pt;}
.wsb_c01324{word-spacing:-9.093461pt;}
.ws7_c01324{word-spacing:-8.878599pt;}
.ws8_c01324{word-spacing:-8.877777pt;}
.ws3_c01324{word-spacing:0.000000pt;}
.ws0_c01324{word-spacing:0.039110pt;}
.ws5_c01324{word-spacing:0.189730pt;}
.ws1_c01324{word-spacing:0.195063pt;}
.ws6_c01324{word-spacing:38.256533pt;}
._4_c01324{margin-left:-5.313387pt;}
._2_c01324{margin-left:-1.377235pt;}
._1_c01324{width:0.925811pt;}
._3_c01324{width:17.720725pt;}
._5_c01324{width:35.652825pt;}
._0_c01324{width:47.597357pt;}
.fs0_c01324{font-size:39.110400pt;}
.fs2_c01324{font-size:53.133867pt;}
.fs1_c01324{font-size:76.513067pt;}
.y0_c01324{bottom:0.000000pt;}
.y20_c01324{bottom:39.333333pt;}
.y1f_c01324{bottom:72.934667pt;}
.y1e_c01324{bottom:88.874667pt;}
.y1d_c01324{bottom:104.814667pt;}
.y1c_c01324{bottom:120.754667pt;}
.y1b_c01324{bottom:144.445333pt;}
.y1a_c01324{bottom:168.134667pt;}
.y19_c01324{bottom:191.824000pt;}
.y18_c01324{bottom:215.514667pt;}
.y17_c01324{bottom:252.869333pt;}
.y16_c01324{bottom:665.692000pt;}
.y15_c01324{bottom:680.304000pt;}
.y14_c01324{bottom:694.916000pt;}
.y13_c01324{bottom:709.528000pt;}
.y12_c01324{bottom:724.140000pt;}
.y11_c01324{bottom:738.752000pt;}
.y10_c01324{bottom:753.364000pt;}
.yf_c01324{bottom:767.976000pt;}
.ye_c01324{bottom:782.588000pt;}
.yd_c01324{bottom:797.198667pt;}
.yc_c01324{bottom:811.810667pt;}
.yb_c01324{bottom:841.034667pt;}
.ya_c01324{bottom:855.646667pt;}
.y9_c01324{bottom:870.258667pt;}
.y8_c01324{bottom:899.482667pt;}
.y7_c01324{bottom:914.094667pt;}
.y6_c01324{bottom:928.706667pt;}
.y5_c01324{bottom:943.317333pt;}
.y4_c01324{bottom:957.929333pt;}
.y3_c01324{bottom:972.541333pt;}
.y2_c01324{bottom:987.153333pt;}
.y1_c01324{bottom:1030.989333pt;}
.h3_c01324{height:31.280681pt;}
.h2_c01324{height:32.006363pt;}
.h5_c01324{height:36.010648pt;}
.h6_c01324{height:46.518078pt;}
.h4_c01324{height:51.855535pt;}
.h0_c01324{height:1122.520000pt;}
.h1_c01324{height:1122.666667pt;}
.w0_c01324{width:793.706667pt;}
.w1_c01324{width:794.000000pt;}
.x0_c01324{left:0.000000pt;}
.x4_c01324{left:113.385333pt;}
.x2_c01324{left:121.886667pt;}
.x1_c01324{left:127.796000pt;}
.x3_c01324{left:157.340000pt;}
.x5_c01324{left:386.888000pt;}
}





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

.ir_c01325:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01325;src:url('chunks/assets/font_3400b92949eff61a80576faf.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01325;src:url('chunks/assets/font_75e3ab7d773ff9df62ec1536.woff2')format("woff");}.ff2_c01325{font-family:ff2_c01325;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01325;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01325{font-family:ff3_c01325;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01325;src:url('chunks/assets/font_8631fb0e438a3d8f1c232150.woff2')format("woff");}.ff4_c01325{font-family:ff4_c01325;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01325{vertical-align:0.000000px;}
.ls4_c01325{letter-spacing:0.000000px;}
.ls1_c01325{letter-spacing:0.087998px;}
.ls2_c01325{letter-spacing:0.098482px;}
.ls0_c01325{letter-spacing:0.104482px;}
.ls3_c01325{letter-spacing:26.690482px;}
.sc__c01325{text-shadow:none;}
.sc0_c01325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01325{-webkit-text-stroke:0px transparent;}
.sc0_c01325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01325{word-spacing:-33.713438px;}
.ws4_c01325{word-spacing:-26.575517px;}
.ws3_c01325{word-spacing:-26.487518px;}
.ws0_c01325{word-spacing:-18.769538px;}
.ws8_c01325{word-spacing:0.000000px;}
.ws5_c01325{word-spacing:0.043999px;}
.wsb_c01325{word-spacing:0.056767px;}
.ws9_c01325{word-spacing:0.073250px;}
.wsa_c01325{word-spacing:0.083734px;}
.ws2_c01325{word-spacing:0.175997px;}
.wsc_c01325{word-spacing:0.202963px;}
.ws6_c01325{word-spacing:0.213446px;}
.ws7_c01325{word-spacing:0.219446px;}
._0_c01325{margin-left:-3.825638px;}
._1_c01325{width:1.005737px;}
._3_c01325{width:53.283031px;}
._2_c01325{width:79.858548px;}
._4_c01325{width:133.452408px;}
.fc5_c01325{color:rgb(0,0,207);}
.fc4_c01325{color:rgb(79,153,5);}
.fc3_c01325{color:rgb(207,92,0);}
.fc2_c01325{color:rgb(33,74,135);}
.fc1_c01325{color:rgb(143,89,3);}
.fc0_c01325{color:rgb(0,0,0);}
.fs1_c01325{font-size:43.999200px;}
.fs0_c01325{font-size:59.775600px;}
.y0_c01325{bottom:0.000000px;}
.y2d_c01325{bottom:44.250000px;}
.y2c_c01325{bottom:96.919500px;}
.y2b_c01325{bottom:113.358000px;}
.y2a_c01325{bottom:129.796500px;}
.y29_c01325{bottom:146.235000px;}
.y28_c01325{bottom:162.673500px;}
.y27_c01325{bottom:179.112000px;}
.y26_c01325{bottom:195.550500px;}
.y25_c01325{bottom:211.989000px;}
.y24_c01325{bottom:228.427500px;}
.y23_c01325{bottom:244.866000px;}
.y22_c01325{bottom:261.304500px;}
.y21_c01325{bottom:294.180000px;}
.y20_c01325{bottom:310.618500px;}
.y1f_c01325{bottom:327.057000px;}
.y1e_c01325{bottom:359.934000px;}
.y1d_c01325{bottom:376.372500px;}
.y1c_c01325{bottom:392.811000px;}
.y1b_c01325{bottom:409.249500px;}
.y1a_c01325{bottom:425.688000px;}
.y19_c01325{bottom:442.125000px;}
.y18_c01325{bottom:458.563500px;}
.y17_c01325{bottom:507.879000px;}
.y16_c01325{bottom:524.317500px;}
.y15_c01325{bottom:540.756000px;}
.y14_c01325{bottom:557.194500px;}
.y13_c01325{bottom:573.633000px;}
.y12_c01325{bottom:590.071500px;}
.y11_c01325{bottom:606.508500px;}
.y10_c01325{bottom:622.947000px;}
.yf_c01325{bottom:639.385500px;}
.ye_c01325{bottom:655.824000px;}
.yd_c01325{bottom:672.262500px;}
.yc_c01325{bottom:688.701000px;}
.yb_c01325{bottom:705.139500px;}
.ya_c01325{bottom:721.578000px;}
.y9_c01325{bottom:738.016500px;}
.y8_c01325{bottom:754.455000px;}
.y7_c01325{bottom:787.330500px;}
.y6_c01325{bottom:803.769000px;}
.y5_c01325{bottom:853.084500px;}
.y4_c01325{bottom:869.523000px;}
.y3_c01325{bottom:885.588000px;}
.y2_c01325{bottom:1141.930500px;}
.y1_c01325{bottom:1159.863000px;}
.h3_c01325{height:35.190766px;}
.h4_c01325{height:36.007158px;}
.h2_c01325{height:52.332837px;}
.h0_c01325{height:1262.835000px;}
.h1_c01325{height:1263.000000px;}
.w0_c01325{width:892.920000px;}
.w1_c01325{width:893.250000px;}
.x0_c01325{left:0.000000px;}
.x1_c01325{left:127.558500px;}
.x2_c01325{left:137.122500px;}
.x3_c01325{left:143.770500px;}
.x4_c01325{left:177.007500px;}
.x5_c01325{left:435.249000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.ls4_c01325{letter-spacing:0.000000pt;}
.ls1_c01325{letter-spacing:0.078221pt;}
.ls2_c01325{letter-spacing:0.087539pt;}
.ls0_c01325{letter-spacing:0.092873pt;}
.ls3_c01325{letter-spacing:23.724873pt;}
.ws1_c01325{word-spacing:-29.967501pt;}
.ws4_c01325{word-spacing:-23.622682pt;}
.ws3_c01325{word-spacing:-23.544461pt;}
.ws0_c01325{word-spacing:-16.684034pt;}
.ws8_c01325{word-spacing:0.000000pt;}
.ws5_c01325{word-spacing:0.039110pt;}
.wsb_c01325{word-spacing:0.050460pt;}
.ws9_c01325{word-spacing:0.065111pt;}
.wsa_c01325{word-spacing:0.074430pt;}
.ws2_c01325{word-spacing:0.156442pt;}
.wsc_c01325{word-spacing:0.180412pt;}
.ws6_c01325{word-spacing:0.189730pt;}
.ws7_c01325{word-spacing:0.195063pt;}
._0_c01325{margin-left:-3.400567pt;}
._1_c01325{width:0.893988pt;}
._3_c01325{width:47.362694pt;}
._2_c01325{width:70.985376pt;}
._4_c01325{width:118.624363pt;}
.fs1_c01325{font-size:39.110400pt;}
.fs0_c01325{font-size:53.133867pt;}
.y0_c01325{bottom:0.000000pt;}
.y2d_c01325{bottom:39.333333pt;}
.y2c_c01325{bottom:86.150667pt;}
.y2b_c01325{bottom:100.762667pt;}
.y2a_c01325{bottom:115.374667pt;}
.y29_c01325{bottom:129.986667pt;}
.y28_c01325{bottom:144.598667pt;}
.y27_c01325{bottom:159.210667pt;}
.y26_c01325{bottom:173.822667pt;}
.y25_c01325{bottom:188.434667pt;}
.y24_c01325{bottom:203.046667pt;}
.y23_c01325{bottom:217.658667pt;}
.y22_c01325{bottom:232.270667pt;}
.y21_c01325{bottom:261.493333pt;}
.y20_c01325{bottom:276.105333pt;}
.y1f_c01325{bottom:290.717333pt;}
.y1e_c01325{bottom:319.941333pt;}
.y1d_c01325{bottom:334.553333pt;}
.y1c_c01325{bottom:349.165333pt;}
.y1b_c01325{bottom:363.777333pt;}
.y1a_c01325{bottom:378.389333pt;}
.y19_c01325{bottom:393.000000pt;}
.y18_c01325{bottom:407.612000pt;}
.y17_c01325{bottom:451.448000pt;}
.y16_c01325{bottom:466.060000pt;}
.y15_c01325{bottom:480.672000pt;}
.y14_c01325{bottom:495.284000pt;}
.y13_c01325{bottom:509.896000pt;}
.y12_c01325{bottom:524.508000pt;}
.y11_c01325{bottom:539.118667pt;}
.y10_c01325{bottom:553.730667pt;}
.yf_c01325{bottom:568.342667pt;}
.ye_c01325{bottom:582.954667pt;}
.yd_c01325{bottom:597.566667pt;}
.yc_c01325{bottom:612.178667pt;}
.yb_c01325{bottom:626.790667pt;}
.ya_c01325{bottom:641.402667pt;}
.y9_c01325{bottom:656.014667pt;}
.y8_c01325{bottom:670.626667pt;}
.y7_c01325{bottom:699.849333pt;}
.y6_c01325{bottom:714.461333pt;}
.y5_c01325{bottom:758.297333pt;}
.y4_c01325{bottom:772.909333pt;}
.y3_c01325{bottom:787.189333pt;}
.y2_c01325{bottom:1015.049333pt;}
.y1_c01325{bottom:1030.989333pt;}
.h3_c01325{height:31.280681pt;}
.h4_c01325{height:32.006363pt;}
.h2_c01325{height:46.518078pt;}
.h0_c01325{height:1122.520000pt;}
.h1_c01325{height:1122.666667pt;}
.w0_c01325{width:793.706667pt;}
.w1_c01325{width:794.000000pt;}
.x0_c01325{left:0.000000pt;}
.x1_c01325{left:113.385333pt;}
.x2_c01325{left:121.886667pt;}
.x3_c01325{left:127.796000pt;}
.x4_c01325{left:157.340000pt;}
.x5_c01325{left:386.888000pt;}
}





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

.ir_c01326:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01326;src:url('chunks/assets/font_9e28c5e0007feceada009056.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01326;src:url('chunks/assets/font_be944aef8e88d1b8ab08d65d.woff2')format("woff");}.ff2_c01326{font-family:ff2_c01326;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01326;src:url('chunks/assets/font_1a0dd72109075c87ba99f135.woff2')format("woff");}.ff3_c01326{font-family:ff3_c01326;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01326;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01326{font-family:ff4_c01326;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01326;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01326{font-family:ff5_c01326;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01326{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01326{vertical-align:0.000000px;}
.ls3_c01326{letter-spacing:0.000000px;}
.ls0_c01326{letter-spacing:0.087998px;}
.ls2_c01326{letter-spacing:0.098482px;}
.ls1_c01326{letter-spacing:0.104482px;}
.sc__c01326{text-shadow:none;}
.sc0_c01326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01326{-webkit-text-stroke:0px transparent;}
.sc0_c01326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01326{word-spacing:-26.575517px;}
.ws13_c01326{word-spacing:-26.487518px;}
.wsf_c01326{word-spacing:-21.041011px;}
.wsd_c01326{word-spacing:-20.419480px;}
.wsc_c01326{word-spacing:-20.323704px;}
.ws5_c01326{word-spacing:-19.427070px;}
.ws10_c01326{word-spacing:-19.187968px;}
.ws6_c01326{word-spacing:-18.769538px;}
.ws11_c01326{word-spacing:-17.872904px;}
.ws8_c01326{word-spacing:-17.334924px;}
.wsb_c01326{word-spacing:-16.737168px;}
.wse_c01326{word-spacing:-16.438290px;}
.wsa_c01326{word-spacing:-16.139412px;}
.ws4_c01326{word-spacing:-15.661207px;}
.ws7_c01326{word-spacing:-13.509286px;}
.ws1_c01326{word-spacing:-9.988424px;}
.ws3_c01326{word-spacing:-9.987499px;}
.ws9_c01326{word-spacing:-4.704144px;}
.ws17_c01326{word-spacing:0.000000px;}
.ws14_c01326{word-spacing:0.043999px;}
.ws12_c01326{word-spacing:0.175997px;}
.ws16_c01326{word-spacing:0.213446px;}
.ws15_c01326{word-spacing:0.219446px;}
.ws0_c01326{word-spacing:43.038600px;}
._2_c01326{margin-left:-5.858009px;}
._7_c01326{margin-left:-4.339225px;}
._4_c01326{margin-left:-3.287658px;}
._0_c01326{margin-left:-1.549390px;}
._8_c01326{width:1.005737px;}
._1_c01326{width:19.663123px;}
._3_c01326{width:22.809886px;}
._5_c01326{width:26.181688px;}
._6_c01326{width:27.437000px;}
.fc5_c01326{color:rgb(79,153,5);}
.fc3_c01326{color:rgb(33,74,135);}
.fc2_c01326{color:rgb(143,89,3);}
.fc4_c01326{color:rgb(207,92,0);}
.fc1_c01326{color:rgb(6,69,173);}
.fc0_c01326{color:rgb(0,0,0);}
.fs2_c01326{font-size:43.999200px;}
.fs1_c01326{font-size:59.775600px;}
.fs0_c01326{font-size:86.077200px;}
.y0_c01326{bottom:0.000000px;}
.y20_c01326{bottom:44.250000px;}
.y1f_c01326{bottom:82.051500px;}
.y1e_c01326{bottom:114.927000px;}
.y1d_c01326{bottom:131.365500px;}
.y1c_c01326{bottom:164.242500px;}
.y1b_c01326{bottom:180.681000px;}
.y1a_c01326{bottom:197.119500px;}
.y19_c01326{bottom:213.558000px;}
.y18_c01326{bottom:246.435000px;}
.y17_c01326{bottom:262.873500px;}
.y16_c01326{bottom:279.310500px;}
.y15_c01326{bottom:295.749000px;}
.y14_c01326{bottom:312.187500px;}
.y13_c01326{bottom:328.626000px;}
.y12_c01326{bottom:345.064500px;}
.y11_c01326{bottom:361.503000px;}
.y10_c01326{bottom:377.568000px;}
.yf_c01326{bottom:424.822500px;}
.ye_c01326{bottom:442.755000px;}
.yd_c01326{bottom:460.689000px;}
.yc_c01326{bottom:478.621500px;}
.yb_c01326{bottom:496.554000px;}
.ya_c01326{bottom:514.486500px;}
.y9_c01326{bottom:532.419000px;}
.y8_c01326{bottom:550.351500px;}
.y7_c01326{bottom:577.092000px;}
.y6_c01326{bottom:595.026000px;}
.y5_c01326{bottom:621.766500px;}
.y4_c01326{bottom:639.699000px;}
.y3_c01326{bottom:666.439500px;}
.y2_c01326{bottom:693.180000px;}
.y1_c01326{bottom:735.294000px;}
.h5_c01326{height:35.190766px;}
.h6_c01326{height:36.007158px;}
.h3_c01326{height:40.511979px;}
.h4_c01326{height:52.332837px;}
.h2_c01326{height:58.337477px;}
.h0_c01326{height:1262.835000px;}
.h1_c01326{height:1263.000000px;}
.w0_c01326{width:892.920000px;}
.w1_c01326{width:893.250000px;}
.x0_c01326{left:0.000000px;}
.x1_c01326{left:127.558500px;}
.x2_c01326{left:137.122500px;}
.x3_c01326{left:435.249000px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls3_c01326{letter-spacing:0.000000pt;}
.ls0_c01326{letter-spacing:0.078221pt;}
.ls2_c01326{letter-spacing:0.087539pt;}
.ls1_c01326{letter-spacing:0.092873pt;}
.ws2_c01326{word-spacing:-23.622682pt;}
.ws13_c01326{word-spacing:-23.544461pt;}
.wsf_c01326{word-spacing:-18.703121pt;}
.wsd_c01326{word-spacing:-18.150649pt;}
.wsc_c01326{word-spacing:-18.065515pt;}
.ws5_c01326{word-spacing:-17.268507pt;}
.ws10_c01326{word-spacing:-17.055971pt;}
.ws6_c01326{word-spacing:-16.684034pt;}
.ws11_c01326{word-spacing:-15.887026pt;}
.ws8_c01326{word-spacing:-15.408821pt;}
.wsb_c01326{word-spacing:-14.877483pt;}
.wse_c01326{word-spacing:-14.611813pt;}
.wsa_c01326{word-spacing:-14.346144pt;}
.ws4_c01326{word-spacing:-13.921073pt;}
.ws7_c01326{word-spacing:-12.008254pt;}
.ws1_c01326{word-spacing:-8.878599pt;}
.ws3_c01326{word-spacing:-8.877777pt;}
.ws9_c01326{word-spacing:-4.181461pt;}
.ws17_c01326{word-spacing:0.000000pt;}
.ws14_c01326{word-spacing:0.039110pt;}
.ws12_c01326{word-spacing:0.156442pt;}
.ws16_c01326{word-spacing:0.189730pt;}
.ws15_c01326{word-spacing:0.195063pt;}
.ws0_c01326{word-spacing:38.256533pt;}
._2_c01326{margin-left:-5.207119pt;}
._7_c01326{margin-left:-3.857089pt;}
._4_c01326{margin-left:-2.922363pt;}
._0_c01326{margin-left:-1.377235pt;}
._8_c01326{width:0.893988pt;}
._1_c01326{width:17.478332pt;}
._3_c01326{width:20.275454pt;}
._5_c01326{width:23.272611pt;}
._6_c01326{width:24.388445pt;}
.fs2_c01326{font-size:39.110400pt;}
.fs1_c01326{font-size:53.133867pt;}
.fs0_c01326{font-size:76.513067pt;}
.y0_c01326{bottom:0.000000pt;}
.y20_c01326{bottom:39.333333pt;}
.y1f_c01326{bottom:72.934667pt;}
.y1e_c01326{bottom:102.157333pt;}
.y1d_c01326{bottom:116.769333pt;}
.y1c_c01326{bottom:145.993333pt;}
.y1b_c01326{bottom:160.605333pt;}
.y1a_c01326{bottom:175.217333pt;}
.y19_c01326{bottom:189.829333pt;}
.y18_c01326{bottom:219.053333pt;}
.y17_c01326{bottom:233.665333pt;}
.y16_c01326{bottom:248.276000pt;}
.y15_c01326{bottom:262.888000pt;}
.y14_c01326{bottom:277.500000pt;}
.y13_c01326{bottom:292.112000pt;}
.y12_c01326{bottom:306.724000pt;}
.y11_c01326{bottom:321.336000pt;}
.y10_c01326{bottom:335.616000pt;}
.yf_c01326{bottom:377.620000pt;}
.ye_c01326{bottom:393.560000pt;}
.yd_c01326{bottom:409.501333pt;}
.yc_c01326{bottom:425.441333pt;}
.yb_c01326{bottom:441.381333pt;}
.ya_c01326{bottom:457.321333pt;}
.y9_c01326{bottom:473.261333pt;}
.y8_c01326{bottom:489.201333pt;}
.y7_c01326{bottom:512.970667pt;}
.y6_c01326{bottom:528.912000pt;}
.y5_c01326{bottom:552.681333pt;}
.y4_c01326{bottom:568.621333pt;}
.y3_c01326{bottom:592.390667pt;}
.y2_c01326{bottom:616.160000pt;}
.y1_c01326{bottom:653.594667pt;}
.h5_c01326{height:31.280681pt;}
.h6_c01326{height:32.006363pt;}
.h3_c01326{height:36.010648pt;}
.h4_c01326{height:46.518078pt;}
.h2_c01326{height:51.855535pt;}
.h0_c01326{height:1122.520000pt;}
.h1_c01326{height:1122.666667pt;}
.w0_c01326{width:793.706667pt;}
.w1_c01326{width:794.000000pt;}
.x0_c01326{left:0.000000pt;}
.x1_c01326{left:113.385333pt;}
.x2_c01326{left:121.886667pt;}
.x3_c01326{left:386.888000pt;}
}





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

.ir_c01327:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01327;src:url('chunks/assets/font_6aa9ba1b376420ea055f4b74.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01327;src:url('chunks/assets/font_7cbd1b02a10ee33344fbd3fa.woff2')format("woff");}.ff2_c01327{font-family:ff2_c01327;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01327;src:url('chunks/assets/font_96453e1678c9750ae9b85a8d.woff2')format("woff");}.ff3_c01327{font-family:ff3_c01327;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01327;src:url('chunks/assets/font_bf0ff148e57f069e4a85ed68.woff2')format("woff");}.ff4_c01327{font-family:ff4_c01327;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01327{vertical-align:0.000000px;}
.ls4_c01327{letter-spacing:0.000000px;}
.ls0_c01327{letter-spacing:0.087998px;}
.ls1_c01327{letter-spacing:0.098482px;}
.ls2_c01327{letter-spacing:0.104482px;}
.ls3_c01327{letter-spacing:0.140482px;}
.sc__c01327{text-shadow:none;}
.sc0_c01327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01327{-webkit-text-stroke:0px transparent;}
.sc0_c01327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01327{word-spacing:-26.575517px;}
.ws2_c01327{word-spacing:-26.487518px;}
.ws1_c01327{word-spacing:0.000000px;}
.ws7_c01327{word-spacing:0.043999px;}
.ws3_c01327{word-spacing:0.053933px;}
.ws6_c01327{word-spacing:0.056767px;}
.ws4_c01327{word-spacing:0.066701px;}
.ws8_c01327{word-spacing:0.213446px;}
.ws5_c01327{word-spacing:0.219446px;}
._1_c01327{width:1.077888px;}
._0_c01327{width:106.786058px;}
.fc5_c01327{color:rgb(0,0,207);}
.fc4_c01327{color:rgb(207,92,0);}
.fc3_c01327{color:rgb(79,153,5);}
.fc2_c01327{color:rgb(33,74,135);}
.fc1_c01327{color:rgb(143,89,3);}
.fc0_c01327{color:rgb(0,0,0);}
.fs0_c01327{font-size:43.999200px;}
.fs1_c01327{font-size:59.775600px;}
.y0_c01327{bottom:0.000000px;}
.y30_c01327{bottom:44.250000px;}
.y2f_c01327{bottom:321.507000px;}
.y2e_c01327{bottom:337.945500px;}
.y2d_c01327{bottom:354.384000px;}
.y2c_c01327{bottom:370.822500px;}
.y2b_c01327{bottom:387.259500px;}
.y2a_c01327{bottom:403.698000px;}
.y29_c01327{bottom:420.136500px;}
.y28_c01327{bottom:436.575000px;}
.y27_c01327{bottom:453.013500px;}
.y26_c01327{bottom:469.452000px;}
.y25_c01327{bottom:485.890500px;}
.y24_c01327{bottom:518.767500px;}
.y23_c01327{bottom:535.206000px;}
.y22_c01327{bottom:551.643000px;}
.y21_c01327{bottom:584.520000px;}
.y20_c01327{bottom:600.958500px;}
.y1f_c01327{bottom:617.397000px;}
.y1e_c01327{bottom:633.835500px;}
.y1d_c01327{bottom:650.274000px;}
.y1c_c01327{bottom:666.712500px;}
.y1b_c01327{bottom:683.151000px;}
.y1a_c01327{bottom:699.589500px;}
.y19_c01327{bottom:716.028000px;}
.y18_c01327{bottom:732.465000px;}
.y17_c01327{bottom:748.903500px;}
.y16_c01327{bottom:765.342000px;}
.y15_c01327{bottom:781.780500px;}
.y14_c01327{bottom:798.219000px;}
.y13_c01327{bottom:814.657500px;}
.y12_c01327{bottom:831.096000px;}
.y11_c01327{bottom:863.973000px;}
.y10_c01327{bottom:880.411500px;}
.yf_c01327{bottom:896.848500px;}
.ye_c01327{bottom:913.287000px;}
.yd_c01327{bottom:929.725500px;}
.yc_c01327{bottom:946.164000px;}
.yb_c01327{bottom:962.602500px;}
.ya_c01327{bottom:979.041000px;}
.y9_c01327{bottom:995.479500px;}
.y8_c01327{bottom:1011.918000px;}
.y7_c01327{bottom:1028.356500px;}
.y6_c01327{bottom:1044.795000px;}
.y5_c01327{bottom:1061.232000px;}
.y4_c01327{bottom:1077.670500px;}
.y3_c01327{bottom:1094.109000px;}
.y2_c01327{bottom:1110.547500px;}
.y1_c01327{bottom:1159.863000px;}
.h3_c01327{height:35.190766px;}
.h2_c01327{height:36.007158px;}
.h4_c01327{height:52.332837px;}
.h0_c01327{height:1262.835000px;}
.h1_c01327{height:1263.000000px;}
.w0_c01327{width:892.920000px;}
.w1_c01327{width:893.250000px;}
.x0_c01327{left:0.000000px;}
.x1_c01327{left:137.122500px;}
.x2_c01327{left:143.770500px;}
.x5_c01327{left:177.007500px;}
.x3_c01327{left:190.302000px;}
.x4_c01327{left:230.185500px;}
.x6_c01327{left:435.249000px;}
@media print{
.v0_c01327{vertical-align:0.000000pt;}
.ls4_c01327{letter-spacing:0.000000pt;}
.ls0_c01327{letter-spacing:0.078221pt;}
.ls1_c01327{letter-spacing:0.087539pt;}
.ls2_c01327{letter-spacing:0.092873pt;}
.ls3_c01327{letter-spacing:0.124873pt;}
.ws0_c01327{word-spacing:-23.622682pt;}
.ws2_c01327{word-spacing:-23.544461pt;}
.ws1_c01327{word-spacing:0.000000pt;}
.ws7_c01327{word-spacing:0.039110pt;}
.ws3_c01327{word-spacing:0.047940pt;}
.ws6_c01327{word-spacing:0.050460pt;}
.ws4_c01327{word-spacing:0.059290pt;}
.ws8_c01327{word-spacing:0.189730pt;}
.ws5_c01327{word-spacing:0.195063pt;}
._1_c01327{width:0.958123pt;}
._0_c01327{width:94.920941pt;}
.fs0_c01327{font-size:39.110400pt;}
.fs1_c01327{font-size:53.133867pt;}
.y0_c01327{bottom:0.000000pt;}
.y30_c01327{bottom:39.333333pt;}
.y2f_c01327{bottom:285.784000pt;}
.y2e_c01327{bottom:300.396000pt;}
.y2d_c01327{bottom:315.008000pt;}
.y2c_c01327{bottom:329.620000pt;}
.y2b_c01327{bottom:344.230667pt;}
.y2a_c01327{bottom:358.842667pt;}
.y29_c01327{bottom:373.454667pt;}
.y28_c01327{bottom:388.066667pt;}
.y27_c01327{bottom:402.678667pt;}
.y26_c01327{bottom:417.290667pt;}
.y25_c01327{bottom:431.902667pt;}
.y24_c01327{bottom:461.126667pt;}
.y23_c01327{bottom:475.738667pt;}
.y22_c01327{bottom:490.349333pt;}
.y21_c01327{bottom:519.573333pt;}
.y20_c01327{bottom:534.185333pt;}
.y1f_c01327{bottom:548.797333pt;}
.y1e_c01327{bottom:563.409333pt;}
.y1d_c01327{bottom:578.021333pt;}
.y1c_c01327{bottom:592.633333pt;}
.y1b_c01327{bottom:607.245333pt;}
.y1a_c01327{bottom:621.857333pt;}
.y19_c01327{bottom:636.469333pt;}
.y18_c01327{bottom:651.080000pt;}
.y17_c01327{bottom:665.692000pt;}
.y16_c01327{bottom:680.304000pt;}
.y15_c01327{bottom:694.916000pt;}
.y14_c01327{bottom:709.528000pt;}
.y13_c01327{bottom:724.140000pt;}
.y12_c01327{bottom:738.752000pt;}
.y11_c01327{bottom:767.976000pt;}
.y10_c01327{bottom:782.588000pt;}
.yf_c01327{bottom:797.198667pt;}
.ye_c01327{bottom:811.810667pt;}
.yd_c01327{bottom:826.422667pt;}
.yc_c01327{bottom:841.034667pt;}
.yb_c01327{bottom:855.646667pt;}
.ya_c01327{bottom:870.258667pt;}
.y9_c01327{bottom:884.870667pt;}
.y8_c01327{bottom:899.482667pt;}
.y7_c01327{bottom:914.094667pt;}
.y6_c01327{bottom:928.706667pt;}
.y5_c01327{bottom:943.317333pt;}
.y4_c01327{bottom:957.929333pt;}
.y3_c01327{bottom:972.541333pt;}
.y2_c01327{bottom:987.153333pt;}
.y1_c01327{bottom:1030.989333pt;}
.h3_c01327{height:31.280681pt;}
.h2_c01327{height:32.006363pt;}
.h4_c01327{height:46.518078pt;}
.h0_c01327{height:1122.520000pt;}
.h1_c01327{height:1122.666667pt;}
.w0_c01327{width:793.706667pt;}
.w1_c01327{width:794.000000pt;}
.x0_c01327{left:0.000000pt;}
.x1_c01327{left:121.886667pt;}
.x2_c01327{left:127.796000pt;}
.x5_c01327{left:157.340000pt;}
.x3_c01327{left:169.157333pt;}
.x4_c01327{left:204.609333pt;}
.x6_c01327{left:386.888000pt;}
}





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

.ir_c01328:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01328;src:url('chunks/assets/font_25af9318592df958ab46793b.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01328;src:url('chunks/assets/font_78463bc172b2c718fc614389.woff2')format("woff");}.ff2_c01328{font-family:ff2_c01328;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01328;src:url('chunks/assets/font_985fa3c04859d1ad543efda8.woff2')format("woff");}.ff3_c01328{font-family:ff3_c01328;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01328;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01328{font-family:ff4_c01328;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01328;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01328{font-family:ff5_c01328;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01328{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01328{vertical-align:0.000000px;}
.ls3_c01328{letter-spacing:0.000000px;}
.ls0_c01328{letter-spacing:0.087998px;}
.ls2_c01328{letter-spacing:0.098482px;}
.ls1_c01328{letter-spacing:0.104482px;}
.sc__c01328{text-shadow:none;}
.sc0_c01328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01328{-webkit-text-stroke:0px transparent;}
.sc0_c01328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01328{word-spacing:-33.713438px;}
.ws2_c01328{word-spacing:-26.575517px;}
.ws11_c01328{word-spacing:-26.487518px;}
.wsb_c01328{word-spacing:-21.553319px;}
.wsa_c01328{word-spacing:-21.519216px;}
.ws7_c01328{word-spacing:-18.948865px;}
.wse_c01328{word-spacing:-18.769538px;}
.ws5_c01328{word-spacing:-17.574026px;}
.ws9_c01328{word-spacing:-16.019861px;}
.ws6_c01328{word-spacing:-15.123227px;}
.wsc_c01328{word-spacing:-14.107042px;}
.ws4_c01328{word-spacing:-13.808164px;}
.wsd_c01328{word-spacing:-12.074671px;}
.ws1_c01328{word-spacing:-9.988424px;}
.ws3_c01328{word-spacing:-9.987499px;}
.ws8_c01328{word-spacing:-4.536144px;}
.ws15_c01328{word-spacing:0.000000px;}
.ws12_c01328{word-spacing:0.043999px;}
.ws18_c01328{word-spacing:0.056767px;}
.ws16_c01328{word-spacing:0.073250px;}
.ws17_c01328{word-spacing:0.083734px;}
.ws10_c01328{word-spacing:0.175997px;}
.ws19_c01328{word-spacing:0.202963px;}
.ws13_c01328{word-spacing:0.213446px;}
.ws14_c01328{word-spacing:0.219446px;}
.ws0_c01328{word-spacing:43.038600px;}
._2_c01328{margin-left:-5.678682px;}
._5_c01328{margin-left:-3.825638px;}
._0_c01328{margin-left:-1.549390px;}
._6_c01328{width:1.005737px;}
._3_c01328{width:19.839827px;}
._1_c01328{width:22.358080px;}
._4_c01328{width:40.109428px;}
._8_c01328{width:53.283031px;}
._7_c01328{width:79.858548px;}
._9_c01328{width:133.452408px;}
.fc6_c01328{color:rgb(0,0,207);}
.fc5_c01328{color:rgb(79,153,5);}
.fc3_c01328{color:rgb(33,74,135);}
.fc2_c01328{color:rgb(143,89,3);}
.fc4_c01328{color:rgb(207,92,0);}
.fc1_c01328{color:rgb(6,69,173);}
.fc0_c01328{color:rgb(0,0,0);}
.fs2_c01328{font-size:43.999200px;}
.fs1_c01328{font-size:59.775600px;}
.fs0_c01328{font-size:86.077200px;}
.y0_c01328{bottom:0.000000px;}
.y20_c01328{bottom:44.250000px;}
.y1f_c01328{bottom:86.982000px;}
.y1e_c01328{bottom:103.420500px;}
.y1d_c01328{bottom:119.859000px;}
.y1c_c01328{bottom:136.297500px;}
.y1b_c01328{bottom:152.736000px;}
.y1a_c01328{bottom:169.174500px;}
.y19_c01328{bottom:185.613000px;}
.y18_c01328{bottom:202.051500px;}
.y17_c01328{bottom:218.490000px;}
.y16_c01328{bottom:234.927000px;}
.y15_c01328{bottom:251.365500px;}
.y14_c01328{bottom:267.804000px;}
.y13_c01328{bottom:284.242500px;}
.y12_c01328{bottom:300.681000px;}
.y11_c01328{bottom:333.558000px;}
.y10_c01328{bottom:349.996500px;}
.yf_c01328{bottom:399.310500px;}
.ye_c01328{bottom:415.749000px;}
.yd_c01328{bottom:431.814000px;}
.yc_c01328{bottom:477.118500px;}
.yb_c01328{bottom:495.051000px;}
.ya_c01328{bottom:512.983500px;}
.y9_c01328{bottom:530.916000px;}
.y8_c01328{bottom:548.848500px;}
.y7_c01328{bottom:566.781000px;}
.y6_c01328{bottom:593.728500px;}
.y5_c01328{bottom:620.674500px;}
.y4_c01328{bottom:638.607000px;}
.y3_c01328{bottom:665.553000px;}
.y2_c01328{bottom:692.500500px;}
.y1_c01328{bottom:734.839500px;}
.h5_c01328{height:35.190766px;}
.h6_c01328{height:36.007158px;}
.h3_c01328{height:40.511979px;}
.h4_c01328{height:52.332837px;}
.h2_c01328{height:58.337477px;}
.h0_c01328{height:1262.835000px;}
.h1_c01328{height:1263.000000px;}
.w0_c01328{width:892.920000px;}
.w1_c01328{width:893.250000px;}
.x0_c01328{left:0.000000px;}
.x1_c01328{left:127.558500px;}
.x2_c01328{left:137.122500px;}
.x3_c01328{left:143.770500px;}
.x4_c01328{left:435.249000px;}
@media print{
.v0_c01328{vertical-align:0.000000pt;}
.ls3_c01328{letter-spacing:0.000000pt;}
.ls0_c01328{letter-spacing:0.078221pt;}
.ls2_c01328{letter-spacing:0.087539pt;}
.ls1_c01328{letter-spacing:0.092873pt;}
.wsf_c01328{word-spacing:-29.967501pt;}
.ws2_c01328{word-spacing:-23.622682pt;}
.ws11_c01328{word-spacing:-23.544461pt;}
.wsb_c01328{word-spacing:-19.158506pt;}
.wsa_c01328{word-spacing:-19.128192pt;}
.ws7_c01328{word-spacing:-16.843436pt;}
.wse_c01328{word-spacing:-16.684034pt;}
.ws5_c01328{word-spacing:-15.621357pt;}
.ws9_c01328{word-spacing:-14.239876pt;}
.ws6_c01328{word-spacing:-13.442868pt;}
.wsc_c01328{word-spacing:-12.539593pt;}
.ws4_c01328{word-spacing:-12.273923pt;}
.wsd_c01328{word-spacing:-10.733041pt;}
.ws1_c01328{word-spacing:-8.878599pt;}
.ws3_c01328{word-spacing:-8.877777pt;}
.ws8_c01328{word-spacing:-4.032128pt;}
.ws15_c01328{word-spacing:0.000000pt;}
.ws12_c01328{word-spacing:0.039110pt;}
.ws18_c01328{word-spacing:0.050460pt;}
.ws16_c01328{word-spacing:0.065111pt;}
.ws17_c01328{word-spacing:0.074430pt;}
.ws10_c01328{word-spacing:0.156442pt;}
.ws19_c01328{word-spacing:0.180412pt;}
.ws13_c01328{word-spacing:0.189730pt;}
.ws14_c01328{word-spacing:0.195063pt;}
.ws0_c01328{word-spacing:38.256533pt;}
._2_c01328{margin-left:-5.047717pt;}
._5_c01328{margin-left:-3.400567pt;}
._0_c01328{margin-left:-1.377235pt;}
._6_c01328{width:0.893988pt;}
._3_c01328{width:17.635402pt;}
._1_c01328{width:19.873849pt;}
._4_c01328{width:35.652825pt;}
._8_c01328{width:47.362694pt;}
._7_c01328{width:70.985376pt;}
._9_c01328{width:118.624363pt;}
.fs2_c01328{font-size:39.110400pt;}
.fs1_c01328{font-size:53.133867pt;}
.fs0_c01328{font-size:76.513067pt;}
.y0_c01328{bottom:0.000000pt;}
.y20_c01328{bottom:39.333333pt;}
.y1f_c01328{bottom:77.317333pt;}
.y1e_c01328{bottom:91.929333pt;}
.y1d_c01328{bottom:106.541333pt;}
.y1c_c01328{bottom:121.153333pt;}
.y1b_c01328{bottom:135.765333pt;}
.y1a_c01328{bottom:150.377333pt;}
.y19_c01328{bottom:164.989333pt;}
.y18_c01328{bottom:179.601333pt;}
.y17_c01328{bottom:194.213333pt;}
.y16_c01328{bottom:208.824000pt;}
.y15_c01328{bottom:223.436000pt;}
.y14_c01328{bottom:238.048000pt;}
.y13_c01328{bottom:252.660000pt;}
.y12_c01328{bottom:267.272000pt;}
.y11_c01328{bottom:296.496000pt;}
.y10_c01328{bottom:311.108000pt;}
.yf_c01328{bottom:354.942667pt;}
.ye_c01328{bottom:369.554667pt;}
.yd_c01328{bottom:383.834667pt;}
.yc_c01328{bottom:424.105333pt;}
.yb_c01328{bottom:440.045333pt;}
.ya_c01328{bottom:455.985333pt;}
.y9_c01328{bottom:471.925333pt;}
.y8_c01328{bottom:487.865333pt;}
.y7_c01328{bottom:503.805333pt;}
.y6_c01328{bottom:527.758667pt;}
.y5_c01328{bottom:551.710667pt;}
.y4_c01328{bottom:567.650667pt;}
.y3_c01328{bottom:591.602667pt;}
.y2_c01328{bottom:615.556000pt;}
.y1_c01328{bottom:653.190667pt;}
.h5_c01328{height:31.280681pt;}
.h6_c01328{height:32.006363pt;}
.h3_c01328{height:36.010648pt;}
.h4_c01328{height:46.518078pt;}
.h2_c01328{height:51.855535pt;}
.h0_c01328{height:1122.520000pt;}
.h1_c01328{height:1122.666667pt;}
.w0_c01328{width:793.706667pt;}
.w1_c01328{width:794.000000pt;}
.x0_c01328{left:0.000000pt;}
.x1_c01328{left:113.385333pt;}
.x2_c01328{left:121.886667pt;}
.x3_c01328{left:127.796000pt;}
.x4_c01328{left:386.888000pt;}
}





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

.ir_c01329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01329;src:url('chunks/assets/font_8bcda2971c055a4a7cfdb962.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01329;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01329{font-family:ff2_c01329;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01329;src:url('chunks/assets/font_b7a8b95c0dbe7888644fbd1f.woff2')format("woff");}.ff3_c01329{font-family:ff3_c01329;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01329;src:url('chunks/assets/font_c894b7c6008ef83eaffae4df.woff2')format("woff");}.ff4_c01329{font-family:ff4_c01329;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01329;src:url('chunks/assets/font_26c9a51433d2caa3e7b5e65c.woff2')format("woff");}.ff5_c01329{font-family:ff5_c01329;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01329{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01329{vertical-align:0.000000px;}
.ls4_c01329{letter-spacing:0.000000px;}
.ls0_c01329{letter-spacing:0.087998px;}
.ls1_c01329{letter-spacing:0.098482px;}
.ls3_c01329{letter-spacing:0.104482px;}
.ls2_c01329{letter-spacing:26.690482px;}
.sc__c01329{text-shadow:none;}
.sc0_c01329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01329{-webkit-text-stroke:0px transparent;}
.sc0_c01329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01329{word-spacing:-26.575517px;}
.ws5_c01329{word-spacing:-26.487518px;}
.wsd_c01329{word-spacing:-21.638767px;}
.ws11_c01329{word-spacing:-21.553319px;}
.ws10_c01329{word-spacing:-21.519216px;}
.wsb_c01329{word-spacing:-19.666172px;}
.wsc_c01329{word-spacing:-17.813129px;}
.wsf_c01329{word-spacing:-17.633802px;}
.wsa_c01329{word-spacing:-15.840534px;}
.ws8_c01329{word-spacing:-9.988424px;}
.ws9_c01329{word-spacing:-9.987499px;}
.wse_c01329{word-spacing:-7.686144px;}
.ws4_c01329{word-spacing:0.000000px;}
.ws1_c01329{word-spacing:0.043999px;}
.ws0_c01329{word-spacing:0.073250px;}
.ws6_c01329{word-spacing:0.213446px;}
.ws2_c01329{word-spacing:0.219446px;}
.ws7_c01329{word-spacing:43.038600px;}
._5_c01329{margin-left:-5.678682px;}
._3_c01329{margin-left:-1.549390px;}
._2_c01329{width:1.063690px;}
._7_c01329{width:13.210408px;}
._6_c01329{width:18.491729px;}
._4_c01329{width:19.530450px;}
._0_c01329{width:79.858548px;}
._1_c01329{width:106.786058px;}
.fc5_c01329{color:rgb(79,153,5);}
.fc4_c01329{color:rgb(143,89,3);}
.fc6_c01329{color:rgb(6,69,173);}
.fc3_c01329{color:rgb(207,92,0);}
.fc2_c01329{color:rgb(0,0,0);}
.fc1_c01329{color:rgb(0,0,207);}
.fc0_c01329{color:rgb(33,74,135);}
.fs0_c01329{font-size:43.999200px;}
.fs2_c01329{font-size:59.775600px;}
.fs1_c01329{font-size:86.077200px;}
.y0_c01329{bottom:0.000000px;}
.y20_c01329{bottom:44.250000px;}
.y1f_c01329{bottom:82.051500px;}
.y1e_c01329{bottom:99.984000px;}
.y1d_c01329{bottom:126.823500px;}
.y1c_c01329{bottom:153.664500px;}
.y1b_c01329{bottom:171.597000px;}
.y1a_c01329{bottom:198.438000px;}
.y19_c01329{bottom:225.277500px;}
.y18_c01329{bottom:267.492000px;}
.y17_c01329{bottom:732.465000px;}
.y16_c01329{bottom:748.903500px;}
.y15_c01329{bottom:765.342000px;}
.y14_c01329{bottom:781.780500px;}
.y13_c01329{bottom:798.219000px;}
.y12_c01329{bottom:814.657500px;}
.y11_c01329{bottom:831.096000px;}
.y10_c01329{bottom:847.534500px;}
.yf_c01329{bottom:863.973000px;}
.ye_c01329{bottom:880.411500px;}
.yd_c01329{bottom:896.848500px;}
.yc_c01329{bottom:929.725500px;}
.yb_c01329{bottom:946.164000px;}
.ya_c01329{bottom:962.602500px;}
.y9_c01329{bottom:995.479500px;}
.y8_c01329{bottom:1011.918000px;}
.y7_c01329{bottom:1028.356500px;}
.y6_c01329{bottom:1044.795000px;}
.y5_c01329{bottom:1061.232000px;}
.y4_c01329{bottom:1077.670500px;}
.y3_c01329{bottom:1094.109000px;}
.y2_c01329{bottom:1143.424500px;}
.y1_c01329{bottom:1159.863000px;}
.h3_c01329{height:35.190766px;}
.h2_c01329{height:36.007158px;}
.h5_c01329{height:40.511979px;}
.h6_c01329{height:52.332837px;}
.h4_c01329{height:58.337477px;}
.h0_c01329{height:1262.835000px;}
.h1_c01329{height:1263.000000px;}
.w0_c01329{width:892.920000px;}
.w1_c01329{width:893.250000px;}
.x0_c01329{left:0.000000px;}
.x4_c01329{left:127.558500px;}
.x2_c01329{left:137.122500px;}
.x1_c01329{left:143.770500px;}
.x3_c01329{left:177.007500px;}
.x5_c01329{left:435.249000px;}
@media print{
.v0_c01329{vertical-align:0.000000pt;}
.ls4_c01329{letter-spacing:0.000000pt;}
.ls0_c01329{letter-spacing:0.078221pt;}
.ls1_c01329{letter-spacing:0.087539pt;}
.ls3_c01329{letter-spacing:0.092873pt;}
.ls2_c01329{letter-spacing:23.724873pt;}
.ws3_c01329{word-spacing:-23.622682pt;}
.ws5_c01329{word-spacing:-23.544461pt;}
.wsd_c01329{word-spacing:-19.234460pt;}
.ws11_c01329{word-spacing:-19.158506pt;}
.ws10_c01329{word-spacing:-19.128192pt;}
.wsb_c01329{word-spacing:-17.481042pt;}
.wsc_c01329{word-spacing:-15.833892pt;}
.wsf_c01329{word-spacing:-15.674491pt;}
.wsa_c01329{word-spacing:-14.080475pt;}
.ws8_c01329{word-spacing:-8.878599pt;}
.ws9_c01329{word-spacing:-8.877777pt;}
.wse_c01329{word-spacing:-6.832128pt;}
.ws4_c01329{word-spacing:0.000000pt;}
.ws1_c01329{word-spacing:0.039110pt;}
.ws0_c01329{word-spacing:0.065111pt;}
.ws6_c01329{word-spacing:0.189730pt;}
.ws2_c01329{word-spacing:0.195063pt;}
.ws7_c01329{word-spacing:38.256533pt;}
._5_c01329{margin-left:-5.047717pt;}
._3_c01329{margin-left:-1.377235pt;}
._2_c01329{width:0.945502pt;}
._7_c01329{width:11.742585pt;}
._6_c01329{width:16.437092pt;}
._4_c01329{width:17.360400pt;}
._0_c01329{width:70.985376pt;}
._1_c01329{width:94.920941pt;}
.fs0_c01329{font-size:39.110400pt;}
.fs2_c01329{font-size:53.133867pt;}
.fs1_c01329{font-size:76.513067pt;}
.y0_c01329{bottom:0.000000pt;}
.y20_c01329{bottom:39.333333pt;}
.y1f_c01329{bottom:72.934667pt;}
.y1e_c01329{bottom:88.874667pt;}
.y1d_c01329{bottom:112.732000pt;}
.y1c_c01329{bottom:136.590667pt;}
.y1b_c01329{bottom:152.530667pt;}
.y1a_c01329{bottom:176.389333pt;}
.y19_c01329{bottom:200.246667pt;}
.y18_c01329{bottom:237.770667pt;}
.y17_c01329{bottom:651.080000pt;}
.y16_c01329{bottom:665.692000pt;}
.y15_c01329{bottom:680.304000pt;}
.y14_c01329{bottom:694.916000pt;}
.y13_c01329{bottom:709.528000pt;}
.y12_c01329{bottom:724.140000pt;}
.y11_c01329{bottom:738.752000pt;}
.y10_c01329{bottom:753.364000pt;}
.yf_c01329{bottom:767.976000pt;}
.ye_c01329{bottom:782.588000pt;}
.yd_c01329{bottom:797.198667pt;}
.yc_c01329{bottom:826.422667pt;}
.yb_c01329{bottom:841.034667pt;}
.ya_c01329{bottom:855.646667pt;}
.y9_c01329{bottom:884.870667pt;}
.y8_c01329{bottom:899.482667pt;}
.y7_c01329{bottom:914.094667pt;}
.y6_c01329{bottom:928.706667pt;}
.y5_c01329{bottom:943.317333pt;}
.y4_c01329{bottom:957.929333pt;}
.y3_c01329{bottom:972.541333pt;}
.y2_c01329{bottom:1016.377333pt;}
.y1_c01329{bottom:1030.989333pt;}
.h3_c01329{height:31.280681pt;}
.h2_c01329{height:32.006363pt;}
.h5_c01329{height:36.010648pt;}
.h6_c01329{height:46.518078pt;}
.h4_c01329{height:51.855535pt;}
.h0_c01329{height:1122.520000pt;}
.h1_c01329{height:1122.666667pt;}
.w0_c01329{width:793.706667pt;}
.w1_c01329{width:794.000000pt;}
.x0_c01329{left:0.000000pt;}
.x4_c01329{left:113.385333pt;}
.x2_c01329{left:121.886667pt;}
.x1_c01329{left:127.796000pt;}
.x3_c01329{left:157.340000pt;}
.x5_c01329{left:386.888000pt;}
}





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

.ir_c01330:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01330;src:url('chunks/assets/font_45b197e83f93c7b5728b5fcc.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01330;src:url('chunks/assets/font_8c1513939b670b6dabb0b377.woff2')format("woff");}.ff2_c01330{font-family:ff2_c01330;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01330;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01330{font-family:ff3_c01330;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01330;src:url('chunks/assets/font_ad99593aba7be604e06e24bb.woff2')format("woff");}.ff4_c01330{font-family:ff4_c01330;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01330{vertical-align:0.000000px;}
.ls4_c01330{letter-spacing:0.000000px;}
.ls1_c01330{letter-spacing:0.087998px;}
.ls2_c01330{letter-spacing:0.098482px;}
.ls0_c01330{letter-spacing:0.104482px;}
.ls3_c01330{letter-spacing:26.690482px;}
.sc__c01330{text-shadow:none;}
.sc0_c01330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01330{-webkit-text-stroke:0px transparent;}
.sc0_c01330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01330{word-spacing:-33.713438px;}
.ws6_c01330{word-spacing:-26.575517px;}
.ws5_c01330{word-spacing:-26.487518px;}
.ws2_c01330{word-spacing:-18.769538px;}
.ws0_c01330{word-spacing:-14.107042px;}
.ws1_c01330{word-spacing:-12.074671px;}
.wsa_c01330{word-spacing:0.000000px;}
.ws7_c01330{word-spacing:0.043999px;}
.wsd_c01330{word-spacing:0.056767px;}
.wsb_c01330{word-spacing:0.073250px;}
.wsc_c01330{word-spacing:0.083734px;}
.ws4_c01330{word-spacing:0.175997px;}
.wse_c01330{word-spacing:0.202963px;}
.ws8_c01330{word-spacing:0.213446px;}
.ws9_c01330{word-spacing:0.219446px;}
._2_c01330{margin-left:-3.825638px;}
._3_c01330{width:1.005737px;}
._0_c01330{width:20.742133px;}
._1_c01330{width:40.109428px;}
._5_c01330{width:53.283031px;}
._4_c01330{width:79.858548px;}
._6_c01330{width:133.452408px;}
.fc5_c01330{color:rgb(0,0,207);}
.fc4_c01330{color:rgb(79,153,5);}
.fc3_c01330{color:rgb(207,92,0);}
.fc2_c01330{color:rgb(33,74,135);}
.fc1_c01330{color:rgb(143,89,3);}
.fc0_c01330{color:rgb(0,0,0);}
.fs1_c01330{font-size:43.999200px;}
.fs0_c01330{font-size:59.775600px;}
.y0_c01330{bottom:0.000000px;}
.y2f_c01330{bottom:44.250000px;}
.y2e_c01330{bottom:96.919500px;}
.y2d_c01330{bottom:113.358000px;}
.y2c_c01330{bottom:129.796500px;}
.y2b_c01330{bottom:146.235000px;}
.y2a_c01330{bottom:162.673500px;}
.y29_c01330{bottom:179.112000px;}
.y28_c01330{bottom:195.550500px;}
.y27_c01330{bottom:211.989000px;}
.y26_c01330{bottom:228.427500px;}
.y25_c01330{bottom:244.866000px;}
.y24_c01330{bottom:261.304500px;}
.y23_c01330{bottom:294.180000px;}
.y22_c01330{bottom:310.618500px;}
.y21_c01330{bottom:327.057000px;}
.y20_c01330{bottom:359.934000px;}
.y1f_c01330{bottom:376.372500px;}
.y1e_c01330{bottom:392.811000px;}
.y1d_c01330{bottom:409.249500px;}
.y1c_c01330{bottom:425.688000px;}
.y1b_c01330{bottom:442.125000px;}
.y1a_c01330{bottom:458.563500px;}
.y19_c01330{bottom:507.879000px;}
.y18_c01330{bottom:524.317500px;}
.y17_c01330{bottom:540.756000px;}
.y16_c01330{bottom:557.194500px;}
.y15_c01330{bottom:573.633000px;}
.y14_c01330{bottom:590.071500px;}
.y13_c01330{bottom:606.508500px;}
.y12_c01330{bottom:622.947000px;}
.y11_c01330{bottom:639.385500px;}
.y10_c01330{bottom:655.824000px;}
.yf_c01330{bottom:672.262500px;}
.ye_c01330{bottom:688.701000px;}
.yd_c01330{bottom:705.139500px;}
.yc_c01330{bottom:721.578000px;}
.yb_c01330{bottom:738.016500px;}
.ya_c01330{bottom:754.455000px;}
.y9_c01330{bottom:787.330500px;}
.y8_c01330{bottom:803.769000px;}
.y7_c01330{bottom:853.084500px;}
.y6_c01330{bottom:869.523000px;}
.y5_c01330{bottom:885.588000px;}
.y4_c01330{bottom:1106.064000px;}
.y3_c01330{bottom:1123.998000px;}
.y2_c01330{bottom:1141.930500px;}
.y1_c01330{bottom:1159.863000px;}
.h3_c01330{height:35.190766px;}
.h4_c01330{height:36.007158px;}
.h2_c01330{height:52.332837px;}
.h0_c01330{height:1262.835000px;}
.h1_c01330{height:1263.000000px;}
.w0_c01330{width:892.920000px;}
.w1_c01330{width:893.250000px;}
.x0_c01330{left:0.000000px;}
.x1_c01330{left:127.558500px;}
.x2_c01330{left:137.122500px;}
.x3_c01330{left:143.770500px;}
.x4_c01330{left:177.007500px;}
.x5_c01330{left:435.249000px;}
@media print{
.v0_c01330{vertical-align:0.000000pt;}
.ls4_c01330{letter-spacing:0.000000pt;}
.ls1_c01330{letter-spacing:0.078221pt;}
.ls2_c01330{letter-spacing:0.087539pt;}
.ls0_c01330{letter-spacing:0.092873pt;}
.ls3_c01330{letter-spacing:23.724873pt;}
.ws3_c01330{word-spacing:-29.967501pt;}
.ws6_c01330{word-spacing:-23.622682pt;}
.ws5_c01330{word-spacing:-23.544461pt;}
.ws2_c01330{word-spacing:-16.684034pt;}
.ws0_c01330{word-spacing:-12.539593pt;}
.ws1_c01330{word-spacing:-10.733041pt;}
.wsa_c01330{word-spacing:0.000000pt;}
.ws7_c01330{word-spacing:0.039110pt;}
.wsd_c01330{word-spacing:0.050460pt;}
.wsb_c01330{word-spacing:0.065111pt;}
.wsc_c01330{word-spacing:0.074430pt;}
.ws4_c01330{word-spacing:0.156442pt;}
.wse_c01330{word-spacing:0.180412pt;}
.ws8_c01330{word-spacing:0.189730pt;}
.ws9_c01330{word-spacing:0.195063pt;}
._2_c01330{margin-left:-3.400567pt;}
._3_c01330{width:0.893988pt;}
._0_c01330{width:18.437452pt;}
._1_c01330{width:35.652825pt;}
._5_c01330{width:47.362694pt;}
._4_c01330{width:70.985376pt;}
._6_c01330{width:118.624363pt;}
.fs1_c01330{font-size:39.110400pt;}
.fs0_c01330{font-size:53.133867pt;}
.y0_c01330{bottom:0.000000pt;}
.y2f_c01330{bottom:39.333333pt;}
.y2e_c01330{bottom:86.150667pt;}
.y2d_c01330{bottom:100.762667pt;}
.y2c_c01330{bottom:115.374667pt;}
.y2b_c01330{bottom:129.986667pt;}
.y2a_c01330{bottom:144.598667pt;}
.y29_c01330{bottom:159.210667pt;}
.y28_c01330{bottom:173.822667pt;}
.y27_c01330{bottom:188.434667pt;}
.y26_c01330{bottom:203.046667pt;}
.y25_c01330{bottom:217.658667pt;}
.y24_c01330{bottom:232.270667pt;}
.y23_c01330{bottom:261.493333pt;}
.y22_c01330{bottom:276.105333pt;}
.y21_c01330{bottom:290.717333pt;}
.y20_c01330{bottom:319.941333pt;}
.y1f_c01330{bottom:334.553333pt;}
.y1e_c01330{bottom:349.165333pt;}
.y1d_c01330{bottom:363.777333pt;}
.y1c_c01330{bottom:378.389333pt;}
.y1b_c01330{bottom:393.000000pt;}
.y1a_c01330{bottom:407.612000pt;}
.y19_c01330{bottom:451.448000pt;}
.y18_c01330{bottom:466.060000pt;}
.y17_c01330{bottom:480.672000pt;}
.y16_c01330{bottom:495.284000pt;}
.y15_c01330{bottom:509.896000pt;}
.y14_c01330{bottom:524.508000pt;}
.y13_c01330{bottom:539.118667pt;}
.y12_c01330{bottom:553.730667pt;}
.y11_c01330{bottom:568.342667pt;}
.y10_c01330{bottom:582.954667pt;}
.yf_c01330{bottom:597.566667pt;}
.ye_c01330{bottom:612.178667pt;}
.yd_c01330{bottom:626.790667pt;}
.yc_c01330{bottom:641.402667pt;}
.yb_c01330{bottom:656.014667pt;}
.ya_c01330{bottom:670.626667pt;}
.y9_c01330{bottom:699.849333pt;}
.y8_c01330{bottom:714.461333pt;}
.y7_c01330{bottom:758.297333pt;}
.y6_c01330{bottom:772.909333pt;}
.y5_c01330{bottom:787.189333pt;}
.y4_c01330{bottom:983.168000pt;}
.y3_c01330{bottom:999.109333pt;}
.y2_c01330{bottom:1015.049333pt;}
.y1_c01330{bottom:1030.989333pt;}
.h3_c01330{height:31.280681pt;}
.h4_c01330{height:32.006363pt;}
.h2_c01330{height:46.518078pt;}
.h0_c01330{height:1122.520000pt;}
.h1_c01330{height:1122.666667pt;}
.w0_c01330{width:793.706667pt;}
.w1_c01330{width:794.000000pt;}
.x0_c01330{left:0.000000pt;}
.x1_c01330{left:113.385333pt;}
.x2_c01330{left:121.886667pt;}
.x3_c01330{left:127.796000pt;}
.x4_c01330{left:157.340000pt;}
.x5_c01330{left:386.888000pt;}
}





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

.ir_c01331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01331;src:url('chunks/assets/font_e220c767a4895fd95b4d97db.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01331;src:url('chunks/assets/font_a6f21ea609b98114471d388b.woff2')format("woff");}.ff2_c01331{font-family:ff2_c01331;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01331;src:url('chunks/assets/font_843e98f5f1ef48f89ac21715.woff2')format("woff");}.ff3_c01331{font-family:ff3_c01331;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01331;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01331{font-family:ff4_c01331;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01331;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01331{font-family:ff5_c01331;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01331{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01331{vertical-align:0.000000px;}
.ls3_c01331{letter-spacing:0.000000px;}
.ls0_c01331{letter-spacing:0.087998px;}
.ls2_c01331{letter-spacing:0.098482px;}
.ls1_c01331{letter-spacing:0.104482px;}
.sc__c01331{text-shadow:none;}
.sc0_c01331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01331{-webkit-text-stroke:0px transparent;}
.sc0_c01331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01331{word-spacing:-33.713438px;}
.ws2_c01331{word-spacing:-26.575517px;}
.ws10_c01331{word-spacing:-26.487518px;}
.wsb_c01331{word-spacing:-21.553319px;}
.wsa_c01331{word-spacing:-21.519216px;}
.ws7_c01331{word-spacing:-18.769538px;}
.ws9_c01331{word-spacing:-17.633802px;}
.ws6_c01331{word-spacing:-14.943900px;}
.ws5_c01331{word-spacing:-14.764573px;}
.wsc_c01331{word-spacing:-14.107042px;}
.wsd_c01331{word-spacing:-12.074671px;}
.ws4_c01331{word-spacing:-10.938935px;}
.ws1_c01331{word-spacing:-9.988424px;}
.ws3_c01331{word-spacing:-9.987499px;}
.ws8_c01331{word-spacing:-7.686144px;}
.ws14_c01331{word-spacing:0.000000px;}
.ws11_c01331{word-spacing:0.043999px;}
.ws17_c01331{word-spacing:0.056767px;}
.ws15_c01331{word-spacing:0.073250px;}
.ws16_c01331{word-spacing:0.083734px;}
.wsf_c01331{word-spacing:0.175997px;}
.ws18_c01331{word-spacing:0.202963px;}
.ws12_c01331{word-spacing:0.213446px;}
.ws13_c01331{word-spacing:0.219446px;}
.ws0_c01331{word-spacing:43.038600px;}
._3_c01331{margin-left:-5.917784px;}
._5_c01331{margin-left:-3.825638px;}
._0_c01331{margin-left:-1.549390px;}
._6_c01331{width:1.005737px;}
._2_c01331{width:20.024826px;}
._1_c01331{width:28.026851px;}
._4_c01331{width:40.109428px;}
._8_c01331{width:53.283031px;}
._7_c01331{width:79.858548px;}
._9_c01331{width:133.452408px;}
.fc6_c01331{color:rgb(0,0,207);}
.fc5_c01331{color:rgb(79,153,5);}
.fc3_c01331{color:rgb(33,74,135);}
.fc2_c01331{color:rgb(143,89,3);}
.fc4_c01331{color:rgb(207,92,0);}
.fc1_c01331{color:rgb(6,69,173);}
.fc0_c01331{color:rgb(0,0,0);}
.fs2_c01331{font-size:43.999200px;}
.fs1_c01331{font-size:59.775600px;}
.fs0_c01331{font-size:86.077200px;}
.y0_c01331{bottom:0.000000px;}
.y20_c01331{bottom:44.250000px;}
.y1f_c01331{bottom:86.982000px;}
.y1e_c01331{bottom:103.420500px;}
.y1d_c01331{bottom:119.859000px;}
.y1c_c01331{bottom:136.297500px;}
.y1b_c01331{bottom:152.736000px;}
.y1a_c01331{bottom:169.174500px;}
.y19_c01331{bottom:185.613000px;}
.y18_c01331{bottom:202.051500px;}
.y17_c01331{bottom:218.490000px;}
.y16_c01331{bottom:234.927000px;}
.y15_c01331{bottom:251.365500px;}
.y14_c01331{bottom:267.804000px;}
.y13_c01331{bottom:284.242500px;}
.y12_c01331{bottom:300.681000px;}
.y11_c01331{bottom:333.558000px;}
.y10_c01331{bottom:349.996500px;}
.yf_c01331{bottom:399.310500px;}
.ye_c01331{bottom:415.749000px;}
.yd_c01331{bottom:431.814000px;}
.yc_c01331{bottom:477.118500px;}
.yb_c01331{bottom:495.051000px;}
.ya_c01331{bottom:512.983500px;}
.y9_c01331{bottom:530.916000px;}
.y8_c01331{bottom:548.848500px;}
.y7_c01331{bottom:566.781000px;}
.y6_c01331{bottom:593.728500px;}
.y5_c01331{bottom:620.674500px;}
.y4_c01331{bottom:638.607000px;}
.y3_c01331{bottom:665.553000px;}
.y2_c01331{bottom:692.500500px;}
.y1_c01331{bottom:734.839500px;}
.h5_c01331{height:35.190766px;}
.h6_c01331{height:36.007158px;}
.h3_c01331{height:40.511979px;}
.h4_c01331{height:52.332837px;}
.h2_c01331{height:58.337477px;}
.h0_c01331{height:1262.835000px;}
.h1_c01331{height:1263.000000px;}
.w0_c01331{width:892.920000px;}
.w1_c01331{width:893.250000px;}
.x0_c01331{left:0.000000px;}
.x1_c01331{left:127.558500px;}
.x2_c01331{left:137.122500px;}
.x3_c01331{left:143.770500px;}
.x4_c01331{left:435.249000px;}
@media print{
.v0_c01331{vertical-align:0.000000pt;}
.ls3_c01331{letter-spacing:0.000000pt;}
.ls0_c01331{letter-spacing:0.078221pt;}
.ls2_c01331{letter-spacing:0.087539pt;}
.ls1_c01331{letter-spacing:0.092873pt;}
.wse_c01331{word-spacing:-29.967501pt;}
.ws2_c01331{word-spacing:-23.622682pt;}
.ws10_c01331{word-spacing:-23.544461pt;}
.wsb_c01331{word-spacing:-19.158506pt;}
.wsa_c01331{word-spacing:-19.128192pt;}
.ws7_c01331{word-spacing:-16.684034pt;}
.ws9_c01331{word-spacing:-15.674491pt;}
.ws6_c01331{word-spacing:-13.283467pt;}
.ws5_c01331{word-spacing:-13.124065pt;}
.wsc_c01331{word-spacing:-12.539593pt;}
.wsd_c01331{word-spacing:-10.733041pt;}
.ws4_c01331{word-spacing:-9.723498pt;}
.ws1_c01331{word-spacing:-8.878599pt;}
.ws3_c01331{word-spacing:-8.877777pt;}
.ws8_c01331{word-spacing:-6.832128pt;}
.ws14_c01331{word-spacing:0.000000pt;}
.ws11_c01331{word-spacing:0.039110pt;}
.ws17_c01331{word-spacing:0.050460pt;}
.ws15_c01331{word-spacing:0.065111pt;}
.ws16_c01331{word-spacing:0.074430pt;}
.wsf_c01331{word-spacing:0.156442pt;}
.ws18_c01331{word-spacing:0.180412pt;}
.ws12_c01331{word-spacing:0.189730pt;}
.ws13_c01331{word-spacing:0.195063pt;}
.ws0_c01331{word-spacing:38.256533pt;}
._3_c01331{margin-left:-5.260253pt;}
._5_c01331{margin-left:-3.400567pt;}
._0_c01331{margin-left:-1.377235pt;}
._6_c01331{width:0.893988pt;}
._2_c01331{width:17.799845pt;}
._1_c01331{width:24.912756pt;}
._4_c01331{width:35.652825pt;}
._8_c01331{width:47.362694pt;}
._7_c01331{width:70.985376pt;}
._9_c01331{width:118.624363pt;}
.fs2_c01331{font-size:39.110400pt;}
.fs1_c01331{font-size:53.133867pt;}
.fs0_c01331{font-size:76.513067pt;}
.y0_c01331{bottom:0.000000pt;}
.y20_c01331{bottom:39.333333pt;}
.y1f_c01331{bottom:77.317333pt;}
.y1e_c01331{bottom:91.929333pt;}
.y1d_c01331{bottom:106.541333pt;}
.y1c_c01331{bottom:121.153333pt;}
.y1b_c01331{bottom:135.765333pt;}
.y1a_c01331{bottom:150.377333pt;}
.y19_c01331{bottom:164.989333pt;}
.y18_c01331{bottom:179.601333pt;}
.y17_c01331{bottom:194.213333pt;}
.y16_c01331{bottom:208.824000pt;}
.y15_c01331{bottom:223.436000pt;}
.y14_c01331{bottom:238.048000pt;}
.y13_c01331{bottom:252.660000pt;}
.y12_c01331{bottom:267.272000pt;}
.y11_c01331{bottom:296.496000pt;}
.y10_c01331{bottom:311.108000pt;}
.yf_c01331{bottom:354.942667pt;}
.ye_c01331{bottom:369.554667pt;}
.yd_c01331{bottom:383.834667pt;}
.yc_c01331{bottom:424.105333pt;}
.yb_c01331{bottom:440.045333pt;}
.ya_c01331{bottom:455.985333pt;}
.y9_c01331{bottom:471.925333pt;}
.y8_c01331{bottom:487.865333pt;}
.y7_c01331{bottom:503.805333pt;}
.y6_c01331{bottom:527.758667pt;}
.y5_c01331{bottom:551.710667pt;}
.y4_c01331{bottom:567.650667pt;}
.y3_c01331{bottom:591.602667pt;}
.y2_c01331{bottom:615.556000pt;}
.y1_c01331{bottom:653.190667pt;}
.h5_c01331{height:31.280681pt;}
.h6_c01331{height:32.006363pt;}
.h3_c01331{height:36.010648pt;}
.h4_c01331{height:46.518078pt;}
.h2_c01331{height:51.855535pt;}
.h0_c01331{height:1122.520000pt;}
.h1_c01331{height:1122.666667pt;}
.w0_c01331{width:793.706667pt;}
.w1_c01331{width:794.000000pt;}
.x0_c01331{left:0.000000pt;}
.x1_c01331{left:113.385333pt;}
.x2_c01331{left:121.886667pt;}
.x3_c01331{left:127.796000pt;}
.x4_c01331{left:386.888000pt;}
}





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

.ir_c01332:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01332;src:url('chunks/assets/font_11270b9ce7d49bb8263f2c1b.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01332;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01332{font-family:ff2_c01332;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01332;src:url('chunks/assets/font_9647d96d0ff539b59c954594.woff2')format("woff");}.ff3_c01332{font-family:ff3_c01332;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01332;src:url('chunks/assets/font_c1592e197f4c1141064ae483.woff2')format("woff");}.ff4_c01332{font-family:ff4_c01332;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01332;src:url('chunks/assets/font_fffdcc6ca2b46abacc53d0b8.woff2')format("woff");}.ff5_c01332{font-family:ff5_c01332;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01332{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01332{vertical-align:0.000000px;}
.ls4_c01332{letter-spacing:0.000000px;}
.ls0_c01332{letter-spacing:0.087998px;}
.ls1_c01332{letter-spacing:0.098482px;}
.ls3_c01332{letter-spacing:0.104482px;}
.ls2_c01332{letter-spacing:26.690482px;}
.sc__c01332{text-shadow:none;}
.sc0_c01332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01332{-webkit-text-stroke:0px transparent;}
.sc0_c01332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01332{word-spacing:-26.575517px;}
.ws5_c01332{word-spacing:-26.487518px;}
.ws11_c01332{word-spacing:-21.553319px;}
.ws10_c01332{word-spacing:-21.519216px;}
.wsf_c01332{word-spacing:-19.247743px;}
.wsd_c01332{word-spacing:-18.769538px;}
.wsb_c01332{word-spacing:-16.617617px;}
.wsc_c01332{word-spacing:-14.943900px;}
.wsa_c01332{word-spacing:-12.851754px;}
.wse_c01332{word-spacing:-10.230144px;}
.ws8_c01332{word-spacing:-9.988424px;}
.ws9_c01332{word-spacing:-9.987499px;}
.ws4_c01332{word-spacing:0.000000px;}
.ws1_c01332{word-spacing:0.043999px;}
.ws0_c01332{word-spacing:0.073250px;}
.ws6_c01332{word-spacing:0.213446px;}
.ws2_c01332{word-spacing:0.219446px;}
.ws7_c01332{word-spacing:43.038600px;}
._4_c01332{margin-left:-5.499355px;}
._2_c01332{margin-left:-1.549390px;}
._1_c01332{width:1.074173px;}
._5_c01332{width:19.930500px;}
._3_c01332{width:24.245670px;}
._0_c01332{width:79.858548px;}
.fc5_c01332{color:rgb(79,153,5);}
.fc4_c01332{color:rgb(143,89,3);}
.fc6_c01332{color:rgb(6,69,173);}
.fc3_c01332{color:rgb(207,92,0);}
.fc2_c01332{color:rgb(0,0,0);}
.fc1_c01332{color:rgb(0,0,207);}
.fc0_c01332{color:rgb(33,74,135);}
.fs0_c01332{font-size:43.999200px;}
.fs2_c01332{font-size:59.775600px;}
.fs1_c01332{font-size:86.077200px;}
.y0_c01332{bottom:0.000000px;}
.y20_c01332{bottom:44.250000px;}
.y1f_c01332{bottom:82.051500px;}
.y1e_c01332{bottom:99.984000px;}
.y1d_c01332{bottom:126.823500px;}
.y1c_c01332{bottom:153.664500px;}
.y1b_c01332{bottom:171.597000px;}
.y1a_c01332{bottom:198.438000px;}
.y19_c01332{bottom:225.277500px;}
.y18_c01332{bottom:267.492000px;}
.y17_c01332{bottom:732.465000px;}
.y16_c01332{bottom:748.903500px;}
.y15_c01332{bottom:765.342000px;}
.y14_c01332{bottom:781.780500px;}
.y13_c01332{bottom:798.219000px;}
.y12_c01332{bottom:814.657500px;}
.y11_c01332{bottom:831.096000px;}
.y10_c01332{bottom:847.534500px;}
.yf_c01332{bottom:863.973000px;}
.ye_c01332{bottom:880.411500px;}
.yd_c01332{bottom:896.848500px;}
.yc_c01332{bottom:929.725500px;}
.yb_c01332{bottom:946.164000px;}
.ya_c01332{bottom:962.602500px;}
.y9_c01332{bottom:995.479500px;}
.y8_c01332{bottom:1011.918000px;}
.y7_c01332{bottom:1028.356500px;}
.y6_c01332{bottom:1044.795000px;}
.y5_c01332{bottom:1061.232000px;}
.y4_c01332{bottom:1077.670500px;}
.y3_c01332{bottom:1094.109000px;}
.y2_c01332{bottom:1143.424500px;}
.y1_c01332{bottom:1159.863000px;}
.h3_c01332{height:35.190766px;}
.h2_c01332{height:36.007158px;}
.h5_c01332{height:40.511979px;}
.h6_c01332{height:52.332837px;}
.h4_c01332{height:58.337477px;}
.h0_c01332{height:1262.835000px;}
.h1_c01332{height:1263.000000px;}
.w0_c01332{width:892.920000px;}
.w1_c01332{width:893.250000px;}
.x0_c01332{left:0.000000px;}
.x4_c01332{left:127.558500px;}
.x2_c01332{left:137.122500px;}
.x1_c01332{left:143.770500px;}
.x3_c01332{left:177.007500px;}
.x5_c01332{left:435.249000px;}
@media print{
.v0_c01332{vertical-align:0.000000pt;}
.ls4_c01332{letter-spacing:0.000000pt;}
.ls0_c01332{letter-spacing:0.078221pt;}
.ls1_c01332{letter-spacing:0.087539pt;}
.ls3_c01332{letter-spacing:0.092873pt;}
.ls2_c01332{letter-spacing:23.724873pt;}
.ws3_c01332{word-spacing:-23.622682pt;}
.ws5_c01332{word-spacing:-23.544461pt;}
.ws11_c01332{word-spacing:-19.158506pt;}
.ws10_c01332{word-spacing:-19.128192pt;}
.wsf_c01332{word-spacing:-17.109105pt;}
.wsd_c01332{word-spacing:-16.684034pt;}
.wsb_c01332{word-spacing:-14.771215pt;}
.wsc_c01332{word-spacing:-13.283467pt;}
.wsa_c01332{word-spacing:-11.423781pt;}
.wse_c01332{word-spacing:-9.093461pt;}
.ws8_c01332{word-spacing:-8.878599pt;}
.ws9_c01332{word-spacing:-8.877777pt;}
.ws4_c01332{word-spacing:0.000000pt;}
.ws1_c01332{word-spacing:0.039110pt;}
.ws0_c01332{word-spacing:0.065111pt;}
.ws6_c01332{word-spacing:0.189730pt;}
.ws2_c01332{word-spacing:0.195063pt;}
.ws7_c01332{word-spacing:38.256533pt;}
._4_c01332{margin-left:-4.888316pt;}
._2_c01332{margin-left:-1.377235pt;}
._1_c01332{width:0.954820pt;}
._5_c01332{width:17.716000pt;}
._3_c01332{width:21.551707pt;}
._0_c01332{width:70.985376pt;}
.fs0_c01332{font-size:39.110400pt;}
.fs2_c01332{font-size:53.133867pt;}
.fs1_c01332{font-size:76.513067pt;}
.y0_c01332{bottom:0.000000pt;}
.y20_c01332{bottom:39.333333pt;}
.y1f_c01332{bottom:72.934667pt;}
.y1e_c01332{bottom:88.874667pt;}
.y1d_c01332{bottom:112.732000pt;}
.y1c_c01332{bottom:136.590667pt;}
.y1b_c01332{bottom:152.530667pt;}
.y1a_c01332{bottom:176.389333pt;}
.y19_c01332{bottom:200.246667pt;}
.y18_c01332{bottom:237.770667pt;}
.y17_c01332{bottom:651.080000pt;}
.y16_c01332{bottom:665.692000pt;}
.y15_c01332{bottom:680.304000pt;}
.y14_c01332{bottom:694.916000pt;}
.y13_c01332{bottom:709.528000pt;}
.y12_c01332{bottom:724.140000pt;}
.y11_c01332{bottom:738.752000pt;}
.y10_c01332{bottom:753.364000pt;}
.yf_c01332{bottom:767.976000pt;}
.ye_c01332{bottom:782.588000pt;}
.yd_c01332{bottom:797.198667pt;}
.yc_c01332{bottom:826.422667pt;}
.yb_c01332{bottom:841.034667pt;}
.ya_c01332{bottom:855.646667pt;}
.y9_c01332{bottom:884.870667pt;}
.y8_c01332{bottom:899.482667pt;}
.y7_c01332{bottom:914.094667pt;}
.y6_c01332{bottom:928.706667pt;}
.y5_c01332{bottom:943.317333pt;}
.y4_c01332{bottom:957.929333pt;}
.y3_c01332{bottom:972.541333pt;}
.y2_c01332{bottom:1016.377333pt;}
.y1_c01332{bottom:1030.989333pt;}
.h3_c01332{height:31.280681pt;}
.h2_c01332{height:32.006363pt;}
.h5_c01332{height:36.010648pt;}
.h6_c01332{height:46.518078pt;}
.h4_c01332{height:51.855535pt;}
.h0_c01332{height:1122.520000pt;}
.h1_c01332{height:1122.666667pt;}
.w0_c01332{width:793.706667pt;}
.w1_c01332{width:794.000000pt;}
.x0_c01332{left:0.000000pt;}
.x4_c01332{left:113.385333pt;}
.x2_c01332{left:121.886667pt;}
.x1_c01332{left:127.796000pt;}
.x3_c01332{left:157.340000pt;}
.x5_c01332{left:386.888000pt;}
}





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

.ir_c01333:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01333;src:url('chunks/assets/font_0b1b1323d8193fcaace13c7c.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01333;src:url('chunks/assets/font_dfc1bd59771c87f31c291819.woff2')format("woff");}.ff2_c01333{font-family:ff2_c01333;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01333;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01333{font-family:ff3_c01333;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01333;src:url('chunks/assets/font_ab638e08f051536b736f7239.woff2')format("woff");}.ff4_c01333{font-family:ff4_c01333;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01333{vertical-align:0.000000px;}
.ls4_c01333{letter-spacing:0.000000px;}
.ls1_c01333{letter-spacing:0.087998px;}
.ls2_c01333{letter-spacing:0.098482px;}
.ls0_c01333{letter-spacing:0.104482px;}
.ls3_c01333{letter-spacing:26.690482px;}
.sc__c01333{text-shadow:none;}
.sc0_c01333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01333{-webkit-text-stroke:0px transparent;}
.sc0_c01333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01333{word-spacing:-33.713438px;}
.ws6_c01333{word-spacing:-26.575517px;}
.ws5_c01333{word-spacing:-26.487518px;}
.ws2_c01333{word-spacing:-18.769538px;}
.ws0_c01333{word-spacing:-14.107042px;}
.ws1_c01333{word-spacing:-12.074671px;}
.wsa_c01333{word-spacing:0.000000px;}
.ws7_c01333{word-spacing:0.043999px;}
.wsd_c01333{word-spacing:0.056767px;}
.wsb_c01333{word-spacing:0.073250px;}
.wsc_c01333{word-spacing:0.083734px;}
.ws4_c01333{word-spacing:0.175997px;}
.wse_c01333{word-spacing:0.202963px;}
.ws8_c01333{word-spacing:0.213446px;}
.ws9_c01333{word-spacing:0.219446px;}
._2_c01333{margin-left:-3.825638px;}
._3_c01333{width:1.005737px;}
._0_c01333{width:20.742133px;}
._1_c01333{width:40.109428px;}
._5_c01333{width:53.283031px;}
._4_c01333{width:79.858548px;}
._6_c01333{width:133.452408px;}
.fc5_c01333{color:rgb(0,0,207);}
.fc4_c01333{color:rgb(79,153,5);}
.fc3_c01333{color:rgb(207,92,0);}
.fc2_c01333{color:rgb(33,74,135);}
.fc1_c01333{color:rgb(143,89,3);}
.fc0_c01333{color:rgb(0,0,0);}
.fs1_c01333{font-size:43.999200px;}
.fs0_c01333{font-size:59.775600px;}
.y0_c01333{bottom:0.000000px;}
.y2f_c01333{bottom:44.250000px;}
.y2e_c01333{bottom:96.919500px;}
.y2d_c01333{bottom:113.358000px;}
.y2c_c01333{bottom:129.796500px;}
.y2b_c01333{bottom:146.235000px;}
.y2a_c01333{bottom:162.673500px;}
.y29_c01333{bottom:179.112000px;}
.y28_c01333{bottom:195.550500px;}
.y27_c01333{bottom:211.989000px;}
.y26_c01333{bottom:228.427500px;}
.y25_c01333{bottom:244.866000px;}
.y24_c01333{bottom:261.304500px;}
.y23_c01333{bottom:294.180000px;}
.y22_c01333{bottom:310.618500px;}
.y21_c01333{bottom:327.057000px;}
.y20_c01333{bottom:359.934000px;}
.y1f_c01333{bottom:376.372500px;}
.y1e_c01333{bottom:392.811000px;}
.y1d_c01333{bottom:409.249500px;}
.y1c_c01333{bottom:425.688000px;}
.y1b_c01333{bottom:442.125000px;}
.y1a_c01333{bottom:458.563500px;}
.y19_c01333{bottom:507.879000px;}
.y18_c01333{bottom:524.317500px;}
.y17_c01333{bottom:540.756000px;}
.y16_c01333{bottom:557.194500px;}
.y15_c01333{bottom:573.633000px;}
.y14_c01333{bottom:590.071500px;}
.y13_c01333{bottom:606.508500px;}
.y12_c01333{bottom:622.947000px;}
.y11_c01333{bottom:639.385500px;}
.y10_c01333{bottom:655.824000px;}
.yf_c01333{bottom:672.262500px;}
.ye_c01333{bottom:688.701000px;}
.yd_c01333{bottom:705.139500px;}
.yc_c01333{bottom:721.578000px;}
.yb_c01333{bottom:738.016500px;}
.ya_c01333{bottom:754.455000px;}
.y9_c01333{bottom:787.330500px;}
.y8_c01333{bottom:803.769000px;}
.y7_c01333{bottom:853.084500px;}
.y6_c01333{bottom:869.523000px;}
.y5_c01333{bottom:885.588000px;}
.y4_c01333{bottom:1106.064000px;}
.y3_c01333{bottom:1123.998000px;}
.y2_c01333{bottom:1141.930500px;}
.y1_c01333{bottom:1159.863000px;}
.h3_c01333{height:35.190766px;}
.h4_c01333{height:36.007158px;}
.h2_c01333{height:52.332837px;}
.h0_c01333{height:1262.835000px;}
.h1_c01333{height:1263.000000px;}
.w0_c01333{width:892.920000px;}
.w1_c01333{width:893.250000px;}
.x0_c01333{left:0.000000px;}
.x1_c01333{left:127.558500px;}
.x2_c01333{left:137.122500px;}
.x3_c01333{left:143.770500px;}
.x4_c01333{left:177.007500px;}
.x5_c01333{left:435.249000px;}
@media print{
.v0_c01333{vertical-align:0.000000pt;}
.ls4_c01333{letter-spacing:0.000000pt;}
.ls1_c01333{letter-spacing:0.078221pt;}
.ls2_c01333{letter-spacing:0.087539pt;}
.ls0_c01333{letter-spacing:0.092873pt;}
.ls3_c01333{letter-spacing:23.724873pt;}
.ws3_c01333{word-spacing:-29.967501pt;}
.ws6_c01333{word-spacing:-23.622682pt;}
.ws5_c01333{word-spacing:-23.544461pt;}
.ws2_c01333{word-spacing:-16.684034pt;}
.ws0_c01333{word-spacing:-12.539593pt;}
.ws1_c01333{word-spacing:-10.733041pt;}
.wsa_c01333{word-spacing:0.000000pt;}
.ws7_c01333{word-spacing:0.039110pt;}
.wsd_c01333{word-spacing:0.050460pt;}
.wsb_c01333{word-spacing:0.065111pt;}
.wsc_c01333{word-spacing:0.074430pt;}
.ws4_c01333{word-spacing:0.156442pt;}
.wse_c01333{word-spacing:0.180412pt;}
.ws8_c01333{word-spacing:0.189730pt;}
.ws9_c01333{word-spacing:0.195063pt;}
._2_c01333{margin-left:-3.400567pt;}
._3_c01333{width:0.893988pt;}
._0_c01333{width:18.437452pt;}
._1_c01333{width:35.652825pt;}
._5_c01333{width:47.362694pt;}
._4_c01333{width:70.985376pt;}
._6_c01333{width:118.624363pt;}
.fs1_c01333{font-size:39.110400pt;}
.fs0_c01333{font-size:53.133867pt;}
.y0_c01333{bottom:0.000000pt;}
.y2f_c01333{bottom:39.333333pt;}
.y2e_c01333{bottom:86.150667pt;}
.y2d_c01333{bottom:100.762667pt;}
.y2c_c01333{bottom:115.374667pt;}
.y2b_c01333{bottom:129.986667pt;}
.y2a_c01333{bottom:144.598667pt;}
.y29_c01333{bottom:159.210667pt;}
.y28_c01333{bottom:173.822667pt;}
.y27_c01333{bottom:188.434667pt;}
.y26_c01333{bottom:203.046667pt;}
.y25_c01333{bottom:217.658667pt;}
.y24_c01333{bottom:232.270667pt;}
.y23_c01333{bottom:261.493333pt;}
.y22_c01333{bottom:276.105333pt;}
.y21_c01333{bottom:290.717333pt;}
.y20_c01333{bottom:319.941333pt;}
.y1f_c01333{bottom:334.553333pt;}
.y1e_c01333{bottom:349.165333pt;}
.y1d_c01333{bottom:363.777333pt;}
.y1c_c01333{bottom:378.389333pt;}
.y1b_c01333{bottom:393.000000pt;}
.y1a_c01333{bottom:407.612000pt;}
.y19_c01333{bottom:451.448000pt;}
.y18_c01333{bottom:466.060000pt;}
.y17_c01333{bottom:480.672000pt;}
.y16_c01333{bottom:495.284000pt;}
.y15_c01333{bottom:509.896000pt;}
.y14_c01333{bottom:524.508000pt;}
.y13_c01333{bottom:539.118667pt;}
.y12_c01333{bottom:553.730667pt;}
.y11_c01333{bottom:568.342667pt;}
.y10_c01333{bottom:582.954667pt;}
.yf_c01333{bottom:597.566667pt;}
.ye_c01333{bottom:612.178667pt;}
.yd_c01333{bottom:626.790667pt;}
.yc_c01333{bottom:641.402667pt;}
.yb_c01333{bottom:656.014667pt;}
.ya_c01333{bottom:670.626667pt;}
.y9_c01333{bottom:699.849333pt;}
.y8_c01333{bottom:714.461333pt;}
.y7_c01333{bottom:758.297333pt;}
.y6_c01333{bottom:772.909333pt;}
.y5_c01333{bottom:787.189333pt;}
.y4_c01333{bottom:983.168000pt;}
.y3_c01333{bottom:999.109333pt;}
.y2_c01333{bottom:1015.049333pt;}
.y1_c01333{bottom:1030.989333pt;}
.h3_c01333{height:31.280681pt;}
.h4_c01333{height:32.006363pt;}
.h2_c01333{height:46.518078pt;}
.h0_c01333{height:1122.520000pt;}
.h1_c01333{height:1122.666667pt;}
.w0_c01333{width:793.706667pt;}
.w1_c01333{width:794.000000pt;}
.x0_c01333{left:0.000000pt;}
.x1_c01333{left:113.385333pt;}
.x2_c01333{left:121.886667pt;}
.x3_c01333{left:127.796000pt;}
.x4_c01333{left:157.340000pt;}
.x5_c01333{left:386.888000pt;}
}





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

.ir_c01334:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01334;src:url('chunks/assets/font_34fa22dff9653cecb1a4d202.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01334;src:url('chunks/assets/font_d7a48db871907240f3a43c4c.woff2')format("woff");}.ff2_c01334{font-family:ff2_c01334;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01334;src:url('chunks/assets/font_a24649ccd9344e9af56c59fe.woff2')format("woff");}.ff3_c01334{font-family:ff3_c01334;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01334;src:url('chunks/assets/font_a6a68a594b13683ae5dc238a.woff2')format("woff");}.ff4_c01334{font-family:ff4_c01334;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01334;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01334{font-family:ff5_c01334;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01334{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01334{vertical-align:0.000000px;}
.ls3_c01334{letter-spacing:0.000000px;}
.ls0_c01334{letter-spacing:0.087998px;}
.ls2_c01334{letter-spacing:0.098482px;}
.ls1_c01334{letter-spacing:0.104482px;}
.sc__c01334{text-shadow:none;}
.sc0_c01334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01334{-webkit-text-stroke:0px transparent;}
.sc0_c01334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01334{word-spacing:-26.575517px;}
.ws10_c01334{word-spacing:-26.487518px;}
.wsc_c01334{word-spacing:-21.818094px;}
.wse_c01334{word-spacing:-21.578992px;}
.wsd_c01334{word-spacing:-21.339889px;}
.ws6_c01334{word-spacing:-18.769538px;}
.wsb_c01334{word-spacing:-17.215373px;}
.ws5_c01334{word-spacing:-16.856719px;}
.wsa_c01334{word-spacing:-15.123227px;}
.ws9_c01334{word-spacing:-15.063451px;}
.ws7_c01334{word-spacing:-14.943900px;}
.ws4_c01334{word-spacing:-13.090856px;}
.ws1_c01334{word-spacing:-9.988424px;}
.ws3_c01334{word-spacing:-9.987499px;}
.ws8_c01334{word-spacing:-2.616144px;}
.ws14_c01334{word-spacing:0.000000px;}
.ws11_c01334{word-spacing:0.043999px;}
.wsf_c01334{word-spacing:0.175997px;}
.ws13_c01334{word-spacing:0.213446px;}
.ws12_c01334{word-spacing:0.219446px;}
.ws0_c01334{word-spacing:43.038600px;}
._6_c01334{margin-left:-3.347434px;}
._0_c01334{margin-left:-1.549390px;}
._7_c01334{width:1.005737px;}
._5_c01334{width:13.808164px;}
._2_c01334{width:18.171782px;}
._3_c01334{width:19.930500px;}
._1_c01334{width:23.788772px;}
._4_c01334{width:25.225303px;}
.fc5_c01334{color:rgb(79,153,5);}
.fc3_c01334{color:rgb(33,74,135);}
.fc2_c01334{color:rgb(143,89,3);}
.fc4_c01334{color:rgb(207,92,0);}
.fc1_c01334{color:rgb(6,69,173);}
.fc0_c01334{color:rgb(0,0,0);}
.fs2_c01334{font-size:43.999200px;}
.fs1_c01334{font-size:59.775600px;}
.fs0_c01334{font-size:86.077200px;}
.y0_c01334{bottom:0.000000px;}
.y1e_c01334{bottom:44.250000px;}
.y1d_c01334{bottom:119.859000px;}
.y1c_c01334{bottom:136.297500px;}
.y1b_c01334{bottom:169.174500px;}
.y1a_c01334{bottom:185.613000px;}
.y19_c01334{bottom:218.490000px;}
.y18_c01334{bottom:234.927000px;}
.y17_c01334{bottom:251.365500px;}
.y16_c01334{bottom:267.804000px;}
.y15_c01334{bottom:300.681000px;}
.y14_c01334{bottom:317.119500px;}
.y13_c01334{bottom:333.558000px;}
.y12_c01334{bottom:349.996500px;}
.y11_c01334{bottom:366.435000px;}
.y10_c01334{bottom:382.873500px;}
.yf_c01334{bottom:399.310500px;}
.ye_c01334{bottom:415.749000px;}
.yd_c01334{bottom:431.814000px;}
.yc_c01334{bottom:478.861500px;}
.yb_c01334{bottom:496.794000px;}
.ya_c01334{bottom:514.726500px;}
.y9_c01334{bottom:532.659000px;}
.y8_c01334{bottom:550.591500px;}
.y7_c01334{bottom:568.524000px;}
.y6_c01334{bottom:595.230000px;}
.y5_c01334{bottom:621.936000px;}
.y4_c01334{bottom:639.868500px;}
.y3_c01334{bottom:666.574500px;}
.y2_c01334{bottom:693.280500px;}
.y1_c01334{bottom:735.360000px;}
.h5_c01334{height:35.190766px;}
.h6_c01334{height:36.007158px;}
.h3_c01334{height:40.511979px;}
.h4_c01334{height:52.332837px;}
.h2_c01334{height:58.337477px;}
.h0_c01334{height:1262.835000px;}
.h1_c01334{height:1263.000000px;}
.w0_c01334{width:892.920000px;}
.w1_c01334{width:893.250000px;}
.x0_c01334{left:0.000000px;}
.x1_c01334{left:127.558500px;}
.x2_c01334{left:137.122500px;}
.x3_c01334{left:435.249000px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.ls3_c01334{letter-spacing:0.000000pt;}
.ls0_c01334{letter-spacing:0.078221pt;}
.ls2_c01334{letter-spacing:0.087539pt;}
.ls1_c01334{letter-spacing:0.092873pt;}
.ws2_c01334{word-spacing:-23.622682pt;}
.ws10_c01334{word-spacing:-23.544461pt;}
.wsc_c01334{word-spacing:-19.393861pt;}
.wse_c01334{word-spacing:-19.181326pt;}
.wsd_c01334{word-spacing:-18.968790pt;}
.ws6_c01334{word-spacing:-16.684034pt;}
.wsb_c01334{word-spacing:-15.302554pt;}
.ws5_c01334{word-spacing:-14.983750pt;}
.wsa_c01334{word-spacing:-13.442868pt;}
.ws9_c01334{word-spacing:-13.389734pt;}
.ws7_c01334{word-spacing:-13.283467pt;}
.ws4_c01334{word-spacing:-11.636317pt;}
.ws1_c01334{word-spacing:-8.878599pt;}
.ws3_c01334{word-spacing:-8.877777pt;}
.ws8_c01334{word-spacing:-2.325461pt;}
.ws14_c01334{word-spacing:0.000000pt;}
.ws11_c01334{word-spacing:0.039110pt;}
.wsf_c01334{word-spacing:0.156442pt;}
.ws13_c01334{word-spacing:0.189730pt;}
.ws12_c01334{word-spacing:0.195063pt;}
.ws0_c01334{word-spacing:38.256533pt;}
._6_c01334{margin-left:-2.975497pt;}
._0_c01334{margin-left:-1.377235pt;}
._7_c01334{width:0.893988pt;}
._5_c01334{width:12.273923pt;}
._2_c01334{width:16.152695pt;}
._3_c01334{width:17.716000pt;}
._1_c01334{width:21.145575pt;}
._4_c01334{width:22.422492pt;}
.fs2_c01334{font-size:39.110400pt;}
.fs1_c01334{font-size:53.133867pt;}
.fs0_c01334{font-size:76.513067pt;}
.y0_c01334{bottom:0.000000pt;}
.y1e_c01334{bottom:39.333333pt;}
.y1d_c01334{bottom:106.541333pt;}
.y1c_c01334{bottom:121.153333pt;}
.y1b_c01334{bottom:150.377333pt;}
.y1a_c01334{bottom:164.989333pt;}
.y19_c01334{bottom:194.213333pt;}
.y18_c01334{bottom:208.824000pt;}
.y17_c01334{bottom:223.436000pt;}
.y16_c01334{bottom:238.048000pt;}
.y15_c01334{bottom:267.272000pt;}
.y14_c01334{bottom:281.884000pt;}
.y13_c01334{bottom:296.496000pt;}
.y12_c01334{bottom:311.108000pt;}
.y11_c01334{bottom:325.720000pt;}
.y10_c01334{bottom:340.332000pt;}
.yf_c01334{bottom:354.942667pt;}
.ye_c01334{bottom:369.554667pt;}
.yd_c01334{bottom:383.834667pt;}
.yc_c01334{bottom:425.654667pt;}
.yb_c01334{bottom:441.594667pt;}
.ya_c01334{bottom:457.534667pt;}
.y9_c01334{bottom:473.474667pt;}
.y8_c01334{bottom:489.414667pt;}
.y7_c01334{bottom:505.354667pt;}
.y6_c01334{bottom:529.093333pt;}
.y5_c01334{bottom:552.832000pt;}
.y4_c01334{bottom:568.772000pt;}
.y3_c01334{bottom:592.510667pt;}
.y2_c01334{bottom:616.249333pt;}
.y1_c01334{bottom:653.653333pt;}
.h5_c01334{height:31.280681pt;}
.h6_c01334{height:32.006363pt;}
.h3_c01334{height:36.010648pt;}
.h4_c01334{height:46.518078pt;}
.h2_c01334{height:51.855535pt;}
.h0_c01334{height:1122.520000pt;}
.h1_c01334{height:1122.666667pt;}
.w0_c01334{width:793.706667pt;}
.w1_c01334{width:794.000000pt;}
.x0_c01334{left:0.000000pt;}
.x1_c01334{left:113.385333pt;}
.x2_c01334{left:121.886667pt;}
.x3_c01334{left:386.888000pt;}
}





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

.ir_c01335:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01335;src:url('chunks/assets/font_6e5057f7a7304db840137ab7.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01335;src:url('chunks/assets/font_654a5c3135bcdc56490d523c.woff2')format("woff");}.ff2_c01335{font-family:ff2_c01335;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01335;src:url('chunks/assets/font_82c010342ecd87fdb3e25617.woff2')format("woff");}.ff3_c01335{font-family:ff3_c01335;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01335;src:url('chunks/assets/font_1e9fd8023ccb7d06861a5498.woff2')format("woff");}.ff4_c01335{font-family:ff4_c01335;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01335;src:url('chunks/assets/font_a56482d57007b61706aa99cf.woff2')format("woff");}.ff5_c01335{font-family:ff5_c01335;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01335{vertical-align:0.000000px;}
.ls4_c01335{letter-spacing:0.000000px;}
.ls0_c01335{letter-spacing:0.087998px;}
.ls3_c01335{letter-spacing:0.098482px;}
.ls1_c01335{letter-spacing:0.104482px;}
.ls2_c01335{letter-spacing:0.146482px;}
.sc__c01335{text-shadow:none;}
.sc0_c01335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01335{-webkit-text-stroke:0px transparent;}
.sc0_c01335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01335{word-spacing:-26.575517px;}
.ws2_c01335{word-spacing:-26.487518px;}
.wsc_c01335{word-spacing:-18.769538px;}
.wsa_c01335{word-spacing:-15.422105px;}
.wsb_c01335{word-spacing:-14.943900px;}
.ws9_c01335{word-spacing:-11.656242px;}
.ws7_c01335{word-spacing:-9.988424px;}
.ws8_c01335{word-spacing:-9.987499px;}
.ws0_c01335{word-spacing:0.000000px;}
.ws4_c01335{word-spacing:0.043999px;}
.ws3_c01335{word-spacing:0.056767px;}
.ws5_c01335{word-spacing:0.213446px;}
.ws6_c01335{word-spacing:43.038600px;}
._2_c01335{margin-left:-1.549390px;}
._1_c01335{width:1.041538px;}
._4_c01335{width:19.845499px;}
._3_c01335{width:26.638158px;}
._0_c01335{width:106.830058px;}
.fc5_c01335{color:rgb(79,153,5);}
.fc4_c01335{color:rgb(0,0,207);}
.fc3_c01335{color:rgb(207,92,0);}
.fc2_c01335{color:rgb(33,74,135);}
.fc1_c01335{color:rgb(0,0,0);}
.fc0_c01335{color:rgb(143,89,3);}
.fs0_c01335{font-size:43.999200px;}
.fs2_c01335{font-size:59.775600px;}
.fs1_c01335{font-size:86.077200px;}
.y0_c01335{bottom:0.000000px;}
.y23_c01335{bottom:44.250000px;}
.y22_c01335{bottom:82.051500px;}
.y21_c01335{bottom:108.232500px;}
.y20_c01335{bottom:126.165000px;}
.y1f_c01335{bottom:152.347500px;}
.y1e_c01335{bottom:178.528500px;}
.y1d_c01335{bottom:220.083000px;}
.y1c_c01335{bottom:683.151000px;}
.y1b_c01335{bottom:699.589500px;}
.y1a_c01335{bottom:716.028000px;}
.y19_c01335{bottom:732.465000px;}
.y18_c01335{bottom:748.903500px;}
.y17_c01335{bottom:765.342000px;}
.y16_c01335{bottom:781.780500px;}
.y15_c01335{bottom:798.219000px;}
.y14_c01335{bottom:814.657500px;}
.y13_c01335{bottom:831.096000px;}
.y12_c01335{bottom:847.534500px;}
.y11_c01335{bottom:880.411500px;}
.y10_c01335{bottom:896.848500px;}
.yf_c01335{bottom:913.287000px;}
.ye_c01335{bottom:946.164000px;}
.yd_c01335{bottom:962.602500px;}
.yc_c01335{bottom:979.041000px;}
.yb_c01335{bottom:995.479500px;}
.ya_c01335{bottom:1011.918000px;}
.y9_c01335{bottom:1028.356500px;}
.y8_c01335{bottom:1044.795000px;}
.y7_c01335{bottom:1061.232000px;}
.y6_c01335{bottom:1077.670500px;}
.y5_c01335{bottom:1094.109000px;}
.y4_c01335{bottom:1110.547500px;}
.y3_c01335{bottom:1126.986000px;}
.y2_c01335{bottom:1143.424500px;}
.y1_c01335{bottom:1159.863000px;}
.h2_c01335{height:35.190766px;}
.h3_c01335{height:36.007158px;}
.h5_c01335{height:40.511979px;}
.h6_c01335{height:52.332837px;}
.h4_c01335{height:58.337477px;}
.h0_c01335{height:1262.835000px;}
.h1_c01335{height:1263.000000px;}
.w0_c01335{width:892.920000px;}
.w1_c01335{width:893.250000px;}
.x0_c01335{left:0.000000px;}
.x4_c01335{left:127.558500px;}
.x1_c01335{left:137.122500px;}
.x3_c01335{left:177.007500px;}
.x2_c01335{left:230.185500px;}
.x5_c01335{left:435.249000px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.ls4_c01335{letter-spacing:0.000000pt;}
.ls0_c01335{letter-spacing:0.078221pt;}
.ls3_c01335{letter-spacing:0.087539pt;}
.ls1_c01335{letter-spacing:0.092873pt;}
.ls2_c01335{letter-spacing:0.130206pt;}
.ws1_c01335{word-spacing:-23.622682pt;}
.ws2_c01335{word-spacing:-23.544461pt;}
.wsc_c01335{word-spacing:-16.684034pt;}
.wsa_c01335{word-spacing:-13.708538pt;}
.wsb_c01335{word-spacing:-13.283467pt;}
.ws9_c01335{word-spacing:-10.361104pt;}
.ws7_c01335{word-spacing:-8.878599pt;}
.ws8_c01335{word-spacing:-8.877777pt;}
.ws0_c01335{word-spacing:0.000000pt;}
.ws4_c01335{word-spacing:0.039110pt;}
.ws3_c01335{word-spacing:0.050460pt;}
.ws5_c01335{word-spacing:0.189730pt;}
.ws6_c01335{word-spacing:38.256533pt;}
._2_c01335{margin-left:-1.377235pt;}
._1_c01335{width:0.925811pt;}
._4_c01335{width:17.640444pt;}
._3_c01335{width:23.678363pt;}
._0_c01335{width:94.960051pt;}
.fs0_c01335{font-size:39.110400pt;}
.fs2_c01335{font-size:53.133867pt;}
.fs1_c01335{font-size:76.513067pt;}
.y0_c01335{bottom:0.000000pt;}
.y23_c01335{bottom:39.333333pt;}
.y22_c01335{bottom:72.934667pt;}
.y21_c01335{bottom:96.206667pt;}
.y20_c01335{bottom:112.146667pt;}
.y1f_c01335{bottom:135.420000pt;}
.y1e_c01335{bottom:158.692000pt;}
.y1d_c01335{bottom:195.629333pt;}
.y1c_c01335{bottom:607.245333pt;}
.y1b_c01335{bottom:621.857333pt;}
.y1a_c01335{bottom:636.469333pt;}
.y19_c01335{bottom:651.080000pt;}
.y18_c01335{bottom:665.692000pt;}
.y17_c01335{bottom:680.304000pt;}
.y16_c01335{bottom:694.916000pt;}
.y15_c01335{bottom:709.528000pt;}
.y14_c01335{bottom:724.140000pt;}
.y13_c01335{bottom:738.752000pt;}
.y12_c01335{bottom:753.364000pt;}
.y11_c01335{bottom:782.588000pt;}
.y10_c01335{bottom:797.198667pt;}
.yf_c01335{bottom:811.810667pt;}
.ye_c01335{bottom:841.034667pt;}
.yd_c01335{bottom:855.646667pt;}
.yc_c01335{bottom:870.258667pt;}
.yb_c01335{bottom:884.870667pt;}
.ya_c01335{bottom:899.482667pt;}
.y9_c01335{bottom:914.094667pt;}
.y8_c01335{bottom:928.706667pt;}
.y7_c01335{bottom:943.317333pt;}
.y6_c01335{bottom:957.929333pt;}
.y5_c01335{bottom:972.541333pt;}
.y4_c01335{bottom:987.153333pt;}
.y3_c01335{bottom:1001.765333pt;}
.y2_c01335{bottom:1016.377333pt;}
.y1_c01335{bottom:1030.989333pt;}
.h2_c01335{height:31.280681pt;}
.h3_c01335{height:32.006363pt;}
.h5_c01335{height:36.010648pt;}
.h6_c01335{height:46.518078pt;}
.h4_c01335{height:51.855535pt;}
.h0_c01335{height:1122.520000pt;}
.h1_c01335{height:1122.666667pt;}
.w0_c01335{width:793.706667pt;}
.w1_c01335{width:794.000000pt;}
.x0_c01335{left:0.000000pt;}
.x4_c01335{left:113.385333pt;}
.x1_c01335{left:121.886667pt;}
.x3_c01335{left:157.340000pt;}
.x2_c01335{left:204.609333pt;}
.x5_c01335{left:386.888000pt;}
}





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

.ir_c01336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01336;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01336;src:url('chunks/assets/font_a8d1236a77e0dfb584068f85.woff2')format("woff");}.ff2_c01336{font-family:ff2_c01336;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01336;src:url('chunks/assets/font_357ef0c72805ceeb17c89bba.woff2')format("woff");}.ff3_c01336{font-family:ff3_c01336;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01336;src:url('chunks/assets/font_73679e631ab06e43349ea1a6.woff2')format("woff");}.ff4_c01336{font-family:ff4_c01336;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01336;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01336{font-family:ff5_c01336;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01336{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01336{vertical-align:0.000000px;}
.ls4_c01336{letter-spacing:0.000000px;}
.ls0_c01336{letter-spacing:0.087998px;}
.ls2_c01336{letter-spacing:0.098482px;}
.ls1_c01336{letter-spacing:0.104482px;}
.ls3_c01336{letter-spacing:26.690482px;}
.sc__c01336{text-shadow:none;}
.sc0_c01336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01336{-webkit-text-stroke:0px transparent;}
.sc0_c01336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01336{word-spacing:-33.713438px;}
.ws4_c01336{word-spacing:-26.575517px;}
.wsa_c01336{word-spacing:-26.487518px;}
.ws3_c01336{word-spacing:-21.553319px;}
.ws2_c01336{word-spacing:-21.519216px;}
.ws7_c01336{word-spacing:-18.769538px;}
.ws1_c01336{word-spacing:-16.019861px;}
.ws5_c01336{word-spacing:-14.107042px;}
.ws6_c01336{word-spacing:-12.074671px;}
.ws0_c01336{word-spacing:-4.536144px;}
.wse_c01336{word-spacing:0.000000px;}
.wsb_c01336{word-spacing:0.043999px;}
.ws11_c01336{word-spacing:0.056767px;}
.wsf_c01336{word-spacing:0.073250px;}
.ws10_c01336{word-spacing:0.083734px;}
.ws9_c01336{word-spacing:0.175997px;}
.ws12_c01336{word-spacing:0.202963px;}
.wsc_c01336{word-spacing:0.213446px;}
.wsd_c01336{word-spacing:0.219446px;}
._4_c01336{margin-left:-3.825638px;}
._1_c01336{margin-left:-2.347817px;}
._0_c01336{margin-left:-1.075961px;}
._5_c01336{width:1.005737px;}
._2_c01336{width:20.742133px;}
._3_c01336{width:40.109428px;}
._7_c01336{width:53.283031px;}
._6_c01336{width:79.858548px;}
._9_c01336{width:106.830058px;}
._8_c01336{width:133.452408px;}
.fc6_c01336{color:rgb(0,0,207);}
.fc5_c01336{color:rgb(79,153,5);}
.fc3_c01336{color:rgb(33,74,135);}
.fc2_c01336{color:rgb(143,89,3);}
.fc4_c01336{color:rgb(207,92,0);}
.fc1_c01336{color:rgb(6,69,173);}
.fc0_c01336{color:rgb(0,0,0);}
.fs1_c01336{font-size:43.999200px;}
.fs0_c01336{font-size:59.775600px;}
.y0_c01336{bottom:0.000000px;}
.y31_c01336{bottom:44.250000px;}
.y30_c01336{bottom:96.919500px;}
.y2f_c01336{bottom:113.358000px;}
.y2e_c01336{bottom:129.796500px;}
.y2d_c01336{bottom:146.235000px;}
.y2c_c01336{bottom:162.673500px;}
.y2b_c01336{bottom:179.112000px;}
.y2a_c01336{bottom:195.550500px;}
.y29_c01336{bottom:211.989000px;}
.y28_c01336{bottom:228.427500px;}
.y27_c01336{bottom:244.866000px;}
.y26_c01336{bottom:261.304500px;}
.y25_c01336{bottom:294.180000px;}
.y24_c01336{bottom:310.618500px;}
.y23_c01336{bottom:327.057000px;}
.y22_c01336{bottom:359.934000px;}
.y21_c01336{bottom:376.372500px;}
.y20_c01336{bottom:392.811000px;}
.y1f_c01336{bottom:409.249500px;}
.y1e_c01336{bottom:425.688000px;}
.y1d_c01336{bottom:442.125000px;}
.y1c_c01336{bottom:458.563500px;}
.y1b_c01336{bottom:507.879000px;}
.y1a_c01336{bottom:524.317500px;}
.y19_c01336{bottom:540.756000px;}
.y18_c01336{bottom:557.194500px;}
.y17_c01336{bottom:573.633000px;}
.y16_c01336{bottom:590.071500px;}
.y15_c01336{bottom:606.508500px;}
.y14_c01336{bottom:622.947000px;}
.y13_c01336{bottom:639.385500px;}
.y12_c01336{bottom:655.824000px;}
.y11_c01336{bottom:672.262500px;}
.y10_c01336{bottom:688.701000px;}
.yf_c01336{bottom:705.139500px;}
.ye_c01336{bottom:721.578000px;}
.yd_c01336{bottom:738.016500px;}
.yc_c01336{bottom:754.455000px;}
.yb_c01336{bottom:787.330500px;}
.ya_c01336{bottom:803.769000px;}
.y9_c01336{bottom:853.084500px;}
.y8_c01336{bottom:869.523000px;}
.y7_c01336{bottom:885.588000px;}
.y6_c01336{bottom:1070.199000px;}
.y5_c01336{bottom:1088.131500px;}
.y4_c01336{bottom:1106.064000px;}
.y3_c01336{bottom:1123.998000px;}
.y2_c01336{bottom:1141.930500px;}
.y1_c01336{bottom:1159.863000px;}
.h3_c01336{height:35.190766px;}
.h4_c01336{height:36.007158px;}
.h2_c01336{height:52.332837px;}
.h0_c01336{height:1262.835000px;}
.h1_c01336{height:1263.000000px;}
.w0_c01336{width:892.920000px;}
.w1_c01336{width:893.250000px;}
.x0_c01336{left:0.000000px;}
.x1_c01336{left:127.558500px;}
.x2_c01336{left:137.122500px;}
.x3_c01336{left:143.770500px;}
.x4_c01336{left:177.007500px;}
.x5_c01336{left:435.249000px;}
@media print{
.v0_c01336{vertical-align:0.000000pt;}
.ls4_c01336{letter-spacing:0.000000pt;}
.ls0_c01336{letter-spacing:0.078221pt;}
.ls2_c01336{letter-spacing:0.087539pt;}
.ls1_c01336{letter-spacing:0.092873pt;}
.ls3_c01336{letter-spacing:23.724873pt;}
.ws8_c01336{word-spacing:-29.967501pt;}
.ws4_c01336{word-spacing:-23.622682pt;}
.wsa_c01336{word-spacing:-23.544461pt;}
.ws3_c01336{word-spacing:-19.158506pt;}
.ws2_c01336{word-spacing:-19.128192pt;}
.ws7_c01336{word-spacing:-16.684034pt;}
.ws1_c01336{word-spacing:-14.239876pt;}
.ws5_c01336{word-spacing:-12.539593pt;}
.ws6_c01336{word-spacing:-10.733041pt;}
.ws0_c01336{word-spacing:-4.032128pt;}
.wse_c01336{word-spacing:0.000000pt;}
.wsb_c01336{word-spacing:0.039110pt;}
.ws11_c01336{word-spacing:0.050460pt;}
.wsf_c01336{word-spacing:0.065111pt;}
.ws10_c01336{word-spacing:0.074430pt;}
.ws9_c01336{word-spacing:0.156442pt;}
.ws12_c01336{word-spacing:0.180412pt;}
.wsc_c01336{word-spacing:0.189730pt;}
.wsd_c01336{word-spacing:0.195063pt;}
._4_c01336{margin-left:-3.400567pt;}
._1_c01336{margin-left:-2.086948pt;}
._0_c01336{margin-left:-0.956410pt;}
._5_c01336{width:0.893988pt;}
._2_c01336{width:18.437452pt;}
._3_c01336{width:35.652825pt;}
._7_c01336{width:47.362694pt;}
._6_c01336{width:70.985376pt;}
._9_c01336{width:94.960051pt;}
._8_c01336{width:118.624363pt;}
.fs1_c01336{font-size:39.110400pt;}
.fs0_c01336{font-size:53.133867pt;}
.y0_c01336{bottom:0.000000pt;}
.y31_c01336{bottom:39.333333pt;}
.y30_c01336{bottom:86.150667pt;}
.y2f_c01336{bottom:100.762667pt;}
.y2e_c01336{bottom:115.374667pt;}
.y2d_c01336{bottom:129.986667pt;}
.y2c_c01336{bottom:144.598667pt;}
.y2b_c01336{bottom:159.210667pt;}
.y2a_c01336{bottom:173.822667pt;}
.y29_c01336{bottom:188.434667pt;}
.y28_c01336{bottom:203.046667pt;}
.y27_c01336{bottom:217.658667pt;}
.y26_c01336{bottom:232.270667pt;}
.y25_c01336{bottom:261.493333pt;}
.y24_c01336{bottom:276.105333pt;}
.y23_c01336{bottom:290.717333pt;}
.y22_c01336{bottom:319.941333pt;}
.y21_c01336{bottom:334.553333pt;}
.y20_c01336{bottom:349.165333pt;}
.y1f_c01336{bottom:363.777333pt;}
.y1e_c01336{bottom:378.389333pt;}
.y1d_c01336{bottom:393.000000pt;}
.y1c_c01336{bottom:407.612000pt;}
.y1b_c01336{bottom:451.448000pt;}
.y1a_c01336{bottom:466.060000pt;}
.y19_c01336{bottom:480.672000pt;}
.y18_c01336{bottom:495.284000pt;}
.y17_c01336{bottom:509.896000pt;}
.y16_c01336{bottom:524.508000pt;}
.y15_c01336{bottom:539.118667pt;}
.y14_c01336{bottom:553.730667pt;}
.y13_c01336{bottom:568.342667pt;}
.y12_c01336{bottom:582.954667pt;}
.y11_c01336{bottom:597.566667pt;}
.y10_c01336{bottom:612.178667pt;}
.yf_c01336{bottom:626.790667pt;}
.ye_c01336{bottom:641.402667pt;}
.yd_c01336{bottom:656.014667pt;}
.yc_c01336{bottom:670.626667pt;}
.yb_c01336{bottom:699.849333pt;}
.ya_c01336{bottom:714.461333pt;}
.y9_c01336{bottom:758.297333pt;}
.y8_c01336{bottom:772.909333pt;}
.y7_c01336{bottom:787.189333pt;}
.y6_c01336{bottom:951.288000pt;}
.y5_c01336{bottom:967.228000pt;}
.y4_c01336{bottom:983.168000pt;}
.y3_c01336{bottom:999.109333pt;}
.y2_c01336{bottom:1015.049333pt;}
.y1_c01336{bottom:1030.989333pt;}
.h3_c01336{height:31.280681pt;}
.h4_c01336{height:32.006363pt;}
.h2_c01336{height:46.518078pt;}
.h0_c01336{height:1122.520000pt;}
.h1_c01336{height:1122.666667pt;}
.w0_c01336{width:793.706667pt;}
.w1_c01336{width:794.000000pt;}
.x0_c01336{left:0.000000pt;}
.x1_c01336{left:113.385333pt;}
.x2_c01336{left:121.886667pt;}
.x3_c01336{left:127.796000pt;}
.x4_c01336{left:157.340000pt;}
.x5_c01336{left:386.888000pt;}
}





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

.ir_c01337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01337;src:url('chunks/assets/font_7b1e6c52fc421673934c7015.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01337;src:url('chunks/assets/font_7714bf3372e4eeb890a63784.woff2')format("woff");}.ff2_c01337{font-family:ff2_c01337;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01337;src:url('chunks/assets/font_98d4567b37187de3f27e7268.woff2')format("woff");}.ff3_c01337{font-family:ff3_c01337;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01337;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01337{font-family:ff4_c01337;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01337;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01337{font-family:ff5_c01337;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01337{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01337{vertical-align:0.000000px;}
.ls3_c01337{letter-spacing:0.000000px;}
.ls0_c01337{letter-spacing:0.087998px;}
.ls2_c01337{letter-spacing:0.098482px;}
.ls1_c01337{letter-spacing:0.104482px;}
.sc__c01337{text-shadow:none;}
.sc0_c01337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01337{-webkit-text-stroke:0px transparent;}
.sc0_c01337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01337{word-spacing:-33.713438px;}
.ws2_c01337{word-spacing:-26.575517px;}
.ws10_c01337{word-spacing:-26.487518px;}
.wsb_c01337{word-spacing:-21.553319px;}
.wsa_c01337{word-spacing:-21.519216px;}
.ws7_c01337{word-spacing:-18.769538px;}
.ws9_c01337{word-spacing:-17.633802px;}
.ws5_c01337{word-spacing:-17.155597px;}
.ws6_c01337{word-spacing:-14.943900px;}
.wsc_c01337{word-spacing:-14.107042px;}
.ws4_c01337{word-spacing:-13.389734px;}
.wsd_c01337{word-spacing:-12.074671px;}
.ws1_c01337{word-spacing:-9.988424px;}
.ws3_c01337{word-spacing:-9.987499px;}
.ws8_c01337{word-spacing:-7.686144px;}
.ws14_c01337{word-spacing:0.000000px;}
.ws11_c01337{word-spacing:0.043999px;}
.ws17_c01337{word-spacing:0.056767px;}
.ws15_c01337{word-spacing:0.073250px;}
.ws16_c01337{word-spacing:0.083734px;}
.wsf_c01337{word-spacing:0.175997px;}
.ws18_c01337{word-spacing:0.202963px;}
.ws12_c01337{word-spacing:0.213446px;}
.ws13_c01337{word-spacing:0.219446px;}
.ws0_c01337{word-spacing:43.038600px;}
._5_c01337{margin-left:-3.825638px;}
._0_c01337{margin-left:-1.549390px;}
._6_c01337{width:1.005737px;}
._2_c01337{width:17.633802px;}
._3_c01337{width:19.930500px;}
._1_c01337{width:23.169650px;}
._4_c01337{width:40.109428px;}
._8_c01337{width:53.283031px;}
._7_c01337{width:79.858548px;}
._9_c01337{width:133.452408px;}
.fc6_c01337{color:rgb(0,0,207);}
.fc5_c01337{color:rgb(79,153,5);}
.fc3_c01337{color:rgb(33,74,135);}
.fc2_c01337{color:rgb(143,89,3);}
.fc4_c01337{color:rgb(207,92,0);}
.fc1_c01337{color:rgb(6,69,173);}
.fc0_c01337{color:rgb(0,0,0);}
.fs2_c01337{font-size:43.999200px;}
.fs1_c01337{font-size:59.775600px;}
.fs0_c01337{font-size:86.077200px;}
.y0_c01337{bottom:0.000000px;}
.y20_c01337{bottom:44.250000px;}
.y1f_c01337{bottom:86.982000px;}
.y1e_c01337{bottom:103.420500px;}
.y1d_c01337{bottom:119.859000px;}
.y1c_c01337{bottom:136.297500px;}
.y1b_c01337{bottom:152.736000px;}
.y1a_c01337{bottom:169.174500px;}
.y19_c01337{bottom:185.613000px;}
.y18_c01337{bottom:202.051500px;}
.y17_c01337{bottom:218.490000px;}
.y16_c01337{bottom:234.927000px;}
.y15_c01337{bottom:251.365500px;}
.y14_c01337{bottom:267.804000px;}
.y13_c01337{bottom:284.242500px;}
.y12_c01337{bottom:300.681000px;}
.y11_c01337{bottom:333.558000px;}
.y10_c01337{bottom:349.996500px;}
.yf_c01337{bottom:399.310500px;}
.ye_c01337{bottom:415.749000px;}
.yd_c01337{bottom:431.814000px;}
.yc_c01337{bottom:477.118500px;}
.yb_c01337{bottom:495.051000px;}
.ya_c01337{bottom:512.983500px;}
.y9_c01337{bottom:530.916000px;}
.y8_c01337{bottom:548.848500px;}
.y7_c01337{bottom:566.781000px;}
.y6_c01337{bottom:593.728500px;}
.y5_c01337{bottom:620.674500px;}
.y4_c01337{bottom:638.607000px;}
.y3_c01337{bottom:665.553000px;}
.y2_c01337{bottom:692.500500px;}
.y1_c01337{bottom:734.839500px;}
.h5_c01337{height:35.190766px;}
.h6_c01337{height:36.007158px;}
.h3_c01337{height:40.511979px;}
.h4_c01337{height:52.332837px;}
.h2_c01337{height:58.337477px;}
.h0_c01337{height:1262.835000px;}
.h1_c01337{height:1263.000000px;}
.w0_c01337{width:892.920000px;}
.w1_c01337{width:893.250000px;}
.x0_c01337{left:0.000000px;}
.x1_c01337{left:127.558500px;}
.x2_c01337{left:137.122500px;}
.x3_c01337{left:143.770500px;}
.x4_c01337{left:435.249000px;}
@media print{
.v0_c01337{vertical-align:0.000000pt;}
.ls3_c01337{letter-spacing:0.000000pt;}
.ls0_c01337{letter-spacing:0.078221pt;}
.ls2_c01337{letter-spacing:0.087539pt;}
.ls1_c01337{letter-spacing:0.092873pt;}
.wse_c01337{word-spacing:-29.967501pt;}
.ws2_c01337{word-spacing:-23.622682pt;}
.ws10_c01337{word-spacing:-23.544461pt;}
.wsb_c01337{word-spacing:-19.158506pt;}
.wsa_c01337{word-spacing:-19.128192pt;}
.ws7_c01337{word-spacing:-16.684034pt;}
.ws9_c01337{word-spacing:-15.674491pt;}
.ws5_c01337{word-spacing:-15.249420pt;}
.ws6_c01337{word-spacing:-13.283467pt;}
.wsc_c01337{word-spacing:-12.539593pt;}
.ws4_c01337{word-spacing:-11.901986pt;}
.wsd_c01337{word-spacing:-10.733041pt;}
.ws1_c01337{word-spacing:-8.878599pt;}
.ws3_c01337{word-spacing:-8.877777pt;}
.ws8_c01337{word-spacing:-6.832128pt;}
.ws14_c01337{word-spacing:0.000000pt;}
.ws11_c01337{word-spacing:0.039110pt;}
.ws17_c01337{word-spacing:0.050460pt;}
.ws15_c01337{word-spacing:0.065111pt;}
.ws16_c01337{word-spacing:0.074430pt;}
.wsf_c01337{word-spacing:0.156442pt;}
.ws18_c01337{word-spacing:0.180412pt;}
.ws12_c01337{word-spacing:0.189730pt;}
.ws13_c01337{word-spacing:0.195063pt;}
.ws0_c01337{word-spacing:38.256533pt;}
._5_c01337{margin-left:-3.400567pt;}
._0_c01337{margin-left:-1.377235pt;}
._6_c01337{width:0.893988pt;}
._2_c01337{width:15.674491pt;}
._3_c01337{width:17.716000pt;}
._1_c01337{width:20.595245pt;}
._4_c01337{width:35.652825pt;}
._8_c01337{width:47.362694pt;}
._7_c01337{width:70.985376pt;}
._9_c01337{width:118.624363pt;}
.fs2_c01337{font-size:39.110400pt;}
.fs1_c01337{font-size:53.133867pt;}
.fs0_c01337{font-size:76.513067pt;}
.y0_c01337{bottom:0.000000pt;}
.y20_c01337{bottom:39.333333pt;}
.y1f_c01337{bottom:77.317333pt;}
.y1e_c01337{bottom:91.929333pt;}
.y1d_c01337{bottom:106.541333pt;}
.y1c_c01337{bottom:121.153333pt;}
.y1b_c01337{bottom:135.765333pt;}
.y1a_c01337{bottom:150.377333pt;}
.y19_c01337{bottom:164.989333pt;}
.y18_c01337{bottom:179.601333pt;}
.y17_c01337{bottom:194.213333pt;}
.y16_c01337{bottom:208.824000pt;}
.y15_c01337{bottom:223.436000pt;}
.y14_c01337{bottom:238.048000pt;}
.y13_c01337{bottom:252.660000pt;}
.y12_c01337{bottom:267.272000pt;}
.y11_c01337{bottom:296.496000pt;}
.y10_c01337{bottom:311.108000pt;}
.yf_c01337{bottom:354.942667pt;}
.ye_c01337{bottom:369.554667pt;}
.yd_c01337{bottom:383.834667pt;}
.yc_c01337{bottom:424.105333pt;}
.yb_c01337{bottom:440.045333pt;}
.ya_c01337{bottom:455.985333pt;}
.y9_c01337{bottom:471.925333pt;}
.y8_c01337{bottom:487.865333pt;}
.y7_c01337{bottom:503.805333pt;}
.y6_c01337{bottom:527.758667pt;}
.y5_c01337{bottom:551.710667pt;}
.y4_c01337{bottom:567.650667pt;}
.y3_c01337{bottom:591.602667pt;}
.y2_c01337{bottom:615.556000pt;}
.y1_c01337{bottom:653.190667pt;}
.h5_c01337{height:31.280681pt;}
.h6_c01337{height:32.006363pt;}
.h3_c01337{height:36.010648pt;}
.h4_c01337{height:46.518078pt;}
.h2_c01337{height:51.855535pt;}
.h0_c01337{height:1122.520000pt;}
.h1_c01337{height:1122.666667pt;}
.w0_c01337{width:793.706667pt;}
.w1_c01337{width:794.000000pt;}
.x0_c01337{left:0.000000pt;}
.x1_c01337{left:113.385333pt;}
.x2_c01337{left:121.886667pt;}
.x3_c01337{left:127.796000pt;}
.x4_c01337{left:386.888000pt;}
}





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

.ir_c01338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01338;src:url('chunks/assets/font_05c6bb7783b034e4051ce6e3.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01338;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01338{font-family:ff2_c01338;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01338;src:url('chunks/assets/font_f5954a8d4326b38644d03a01.woff2')format("woff");}.ff3_c01338{font-family:ff3_c01338;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01338;src:url('chunks/assets/font_39bb0efb254f02d146a38226.woff2')format("woff");}.ff4_c01338{font-family:ff4_c01338;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01338;src:url('chunks/assets/font_648e191f12f683d260ba1de0.woff2')format("woff");}.ff5_c01338{font-family:ff5_c01338;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01338{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01338{vertical-align:0.000000px;}
.ls4_c01338{letter-spacing:0.000000px;}
.ls0_c01338{letter-spacing:0.087998px;}
.ls1_c01338{letter-spacing:0.098482px;}
.ls3_c01338{letter-spacing:0.104482px;}
.ls2_c01338{letter-spacing:26.690482px;}
.sc__c01338{text-shadow:none;}
.sc0_c01338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01338{-webkit-text-stroke:0px transparent;}
.sc0_c01338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01338{word-spacing:-26.575517px;}
.ws5_c01338{word-spacing:-26.487518px;}
.ws11_c01338{word-spacing:-21.553319px;}
.ws10_c01338{word-spacing:-21.519216px;}
.wsd_c01338{word-spacing:-18.769538px;}
.wsf_c01338{word-spacing:-17.633802px;}
.wsc_c01338{word-spacing:-14.943900px;}
.wsb_c01338{word-spacing:-12.851754px;}
.ws8_c01338{word-spacing:-9.988424px;}
.ws9_c01338{word-spacing:-9.987499px;}
.wsa_c01338{word-spacing:-9.026116px;}
.wse_c01338{word-spacing:-7.686144px;}
.ws4_c01338{word-spacing:0.000000px;}
.ws1_c01338{word-spacing:0.043999px;}
.ws0_c01338{word-spacing:0.073250px;}
.ws6_c01338{word-spacing:0.213446px;}
.ws2_c01338{word-spacing:0.219446px;}
.ws7_c01338{word-spacing:43.038600px;}
._2_c01338{margin-left:-1.549390px;}
._1_c01338{width:1.128106px;}
._5_c01338{width:19.930500px;}
._4_c01338{width:22.356074px;}
._3_c01338{width:31.802032px;}
._0_c01338{width:79.858548px;}
.fc5_c01338{color:rgb(79,153,5);}
.fc4_c01338{color:rgb(143,89,3);}
.fc6_c01338{color:rgb(6,69,173);}
.fc3_c01338{color:rgb(207,92,0);}
.fc2_c01338{color:rgb(0,0,0);}
.fc1_c01338{color:rgb(0,0,207);}
.fc0_c01338{color:rgb(33,74,135);}
.fs0_c01338{font-size:43.999200px;}
.fs2_c01338{font-size:59.775600px;}
.fs1_c01338{font-size:86.077200px;}
.y0_c01338{bottom:0.000000px;}
.y20_c01338{bottom:44.250000px;}
.y1f_c01338{bottom:82.051500px;}
.y1e_c01338{bottom:99.984000px;}
.y1d_c01338{bottom:126.823500px;}
.y1c_c01338{bottom:153.664500px;}
.y1b_c01338{bottom:171.597000px;}
.y1a_c01338{bottom:198.438000px;}
.y19_c01338{bottom:225.277500px;}
.y18_c01338{bottom:267.492000px;}
.y17_c01338{bottom:732.465000px;}
.y16_c01338{bottom:748.903500px;}
.y15_c01338{bottom:765.342000px;}
.y14_c01338{bottom:781.780500px;}
.y13_c01338{bottom:798.219000px;}
.y12_c01338{bottom:814.657500px;}
.y11_c01338{bottom:831.096000px;}
.y10_c01338{bottom:847.534500px;}
.yf_c01338{bottom:863.973000px;}
.ye_c01338{bottom:880.411500px;}
.yd_c01338{bottom:896.848500px;}
.yc_c01338{bottom:929.725500px;}
.yb_c01338{bottom:946.164000px;}
.ya_c01338{bottom:962.602500px;}
.y9_c01338{bottom:995.479500px;}
.y8_c01338{bottom:1011.918000px;}
.y7_c01338{bottom:1028.356500px;}
.y6_c01338{bottom:1044.795000px;}
.y5_c01338{bottom:1061.232000px;}
.y4_c01338{bottom:1077.670500px;}
.y3_c01338{bottom:1094.109000px;}
.y2_c01338{bottom:1143.424500px;}
.y1_c01338{bottom:1159.863000px;}
.h3_c01338{height:35.190766px;}
.h2_c01338{height:36.007158px;}
.h5_c01338{height:40.511979px;}
.h6_c01338{height:52.332837px;}
.h4_c01338{height:58.337477px;}
.h0_c01338{height:1262.835000px;}
.h1_c01338{height:1263.000000px;}
.w0_c01338{width:892.920000px;}
.w1_c01338{width:893.250000px;}
.x0_c01338{left:0.000000px;}
.x4_c01338{left:127.558500px;}
.x2_c01338{left:137.122500px;}
.x1_c01338{left:143.770500px;}
.x3_c01338{left:177.007500px;}
.x5_c01338{left:435.249000px;}
@media print{
.v0_c01338{vertical-align:0.000000pt;}
.ls4_c01338{letter-spacing:0.000000pt;}
.ls0_c01338{letter-spacing:0.078221pt;}
.ls1_c01338{letter-spacing:0.087539pt;}
.ls3_c01338{letter-spacing:0.092873pt;}
.ls2_c01338{letter-spacing:23.724873pt;}
.ws3_c01338{word-spacing:-23.622682pt;}
.ws5_c01338{word-spacing:-23.544461pt;}
.ws11_c01338{word-spacing:-19.158506pt;}
.ws10_c01338{word-spacing:-19.128192pt;}
.wsd_c01338{word-spacing:-16.684034pt;}
.wsf_c01338{word-spacing:-15.674491pt;}
.wsc_c01338{word-spacing:-13.283467pt;}
.wsb_c01338{word-spacing:-11.423781pt;}
.ws8_c01338{word-spacing:-8.878599pt;}
.ws9_c01338{word-spacing:-8.877777pt;}
.wsa_c01338{word-spacing:-8.023214pt;}
.wse_c01338{word-spacing:-6.832128pt;}
.ws4_c01338{word-spacing:0.000000pt;}
.ws1_c01338{word-spacing:0.039110pt;}
.ws0_c01338{word-spacing:0.065111pt;}
.ws6_c01338{word-spacing:0.189730pt;}
.ws2_c01338{word-spacing:0.195063pt;}
.ws7_c01338{word-spacing:38.256533pt;}
._2_c01338{margin-left:-1.377235pt;}
._1_c01338{width:1.002761pt;}
._5_c01338{width:17.716000pt;}
._4_c01338{width:19.872066pt;}
._3_c01338{width:28.268473pt;}
._0_c01338{width:70.985376pt;}
.fs0_c01338{font-size:39.110400pt;}
.fs2_c01338{font-size:53.133867pt;}
.fs1_c01338{font-size:76.513067pt;}
.y0_c01338{bottom:0.000000pt;}
.y20_c01338{bottom:39.333333pt;}
.y1f_c01338{bottom:72.934667pt;}
.y1e_c01338{bottom:88.874667pt;}
.y1d_c01338{bottom:112.732000pt;}
.y1c_c01338{bottom:136.590667pt;}
.y1b_c01338{bottom:152.530667pt;}
.y1a_c01338{bottom:176.389333pt;}
.y19_c01338{bottom:200.246667pt;}
.y18_c01338{bottom:237.770667pt;}
.y17_c01338{bottom:651.080000pt;}
.y16_c01338{bottom:665.692000pt;}
.y15_c01338{bottom:680.304000pt;}
.y14_c01338{bottom:694.916000pt;}
.y13_c01338{bottom:709.528000pt;}
.y12_c01338{bottom:724.140000pt;}
.y11_c01338{bottom:738.752000pt;}
.y10_c01338{bottom:753.364000pt;}
.yf_c01338{bottom:767.976000pt;}
.ye_c01338{bottom:782.588000pt;}
.yd_c01338{bottom:797.198667pt;}
.yc_c01338{bottom:826.422667pt;}
.yb_c01338{bottom:841.034667pt;}
.ya_c01338{bottom:855.646667pt;}
.y9_c01338{bottom:884.870667pt;}
.y8_c01338{bottom:899.482667pt;}
.y7_c01338{bottom:914.094667pt;}
.y6_c01338{bottom:928.706667pt;}
.y5_c01338{bottom:943.317333pt;}
.y4_c01338{bottom:957.929333pt;}
.y3_c01338{bottom:972.541333pt;}
.y2_c01338{bottom:1016.377333pt;}
.y1_c01338{bottom:1030.989333pt;}
.h3_c01338{height:31.280681pt;}
.h2_c01338{height:32.006363pt;}
.h5_c01338{height:36.010648pt;}
.h6_c01338{height:46.518078pt;}
.h4_c01338{height:51.855535pt;}
.h0_c01338{height:1122.520000pt;}
.h1_c01338{height:1122.666667pt;}
.w0_c01338{width:793.706667pt;}
.w1_c01338{width:794.000000pt;}
.x0_c01338{left:0.000000pt;}
.x4_c01338{left:113.385333pt;}
.x2_c01338{left:121.886667pt;}
.x1_c01338{left:127.796000pt;}
.x3_c01338{left:157.340000pt;}
.x5_c01338{left:386.888000pt;}
}





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

.ir_c01339:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01339;src:url('chunks/assets/font_9cd1cf25af9fefef1e8988f0.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01339;src:url('chunks/assets/font_45b78f87fee632a284dc45c4.woff2')format("woff");}.ff2_c01339{font-family:ff2_c01339;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01339;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01339{font-family:ff3_c01339;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01339;src:url('chunks/assets/font_6aff59cee34cd53a8ce783ed.woff2')format("woff");}.ff4_c01339{font-family:ff4_c01339;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01339{vertical-align:0.000000px;}
.ls4_c01339{letter-spacing:0.000000px;}
.ls1_c01339{letter-spacing:0.087998px;}
.ls2_c01339{letter-spacing:0.098482px;}
.ls0_c01339{letter-spacing:0.104482px;}
.ls3_c01339{letter-spacing:26.690482px;}
.sc__c01339{text-shadow:none;}
.sc0_c01339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01339{-webkit-text-stroke:0px transparent;}
.sc0_c01339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01339{word-spacing:-33.713438px;}
.ws6_c01339{word-spacing:-26.575517px;}
.ws5_c01339{word-spacing:-26.487518px;}
.ws2_c01339{word-spacing:-18.769538px;}
.ws0_c01339{word-spacing:-14.107042px;}
.ws1_c01339{word-spacing:-12.074671px;}
.wsa_c01339{word-spacing:0.000000px;}
.ws7_c01339{word-spacing:0.043999px;}
.wsd_c01339{word-spacing:0.056767px;}
.wsb_c01339{word-spacing:0.073250px;}
.wsc_c01339{word-spacing:0.083734px;}
.ws4_c01339{word-spacing:0.175997px;}
.wse_c01339{word-spacing:0.202963px;}
.ws8_c01339{word-spacing:0.213446px;}
.ws9_c01339{word-spacing:0.219446px;}
._2_c01339{margin-left:-3.825638px;}
._3_c01339{width:1.005737px;}
._0_c01339{width:20.742133px;}
._1_c01339{width:40.109428px;}
._5_c01339{width:53.283031px;}
._4_c01339{width:79.858548px;}
._6_c01339{width:133.452408px;}
.fc5_c01339{color:rgb(0,0,207);}
.fc4_c01339{color:rgb(79,153,5);}
.fc3_c01339{color:rgb(207,92,0);}
.fc2_c01339{color:rgb(33,74,135);}
.fc1_c01339{color:rgb(143,89,3);}
.fc0_c01339{color:rgb(0,0,0);}
.fs1_c01339{font-size:43.999200px;}
.fs0_c01339{font-size:59.775600px;}
.y0_c01339{bottom:0.000000px;}
.y2f_c01339{bottom:44.250000px;}
.y2e_c01339{bottom:96.919500px;}
.y2d_c01339{bottom:113.358000px;}
.y2c_c01339{bottom:129.796500px;}
.y2b_c01339{bottom:146.235000px;}
.y2a_c01339{bottom:162.673500px;}
.y29_c01339{bottom:179.112000px;}
.y28_c01339{bottom:195.550500px;}
.y27_c01339{bottom:211.989000px;}
.y26_c01339{bottom:228.427500px;}
.y25_c01339{bottom:244.866000px;}
.y24_c01339{bottom:261.304500px;}
.y23_c01339{bottom:294.180000px;}
.y22_c01339{bottom:310.618500px;}
.y21_c01339{bottom:327.057000px;}
.y20_c01339{bottom:359.934000px;}
.y1f_c01339{bottom:376.372500px;}
.y1e_c01339{bottom:392.811000px;}
.y1d_c01339{bottom:409.249500px;}
.y1c_c01339{bottom:425.688000px;}
.y1b_c01339{bottom:442.125000px;}
.y1a_c01339{bottom:458.563500px;}
.y19_c01339{bottom:507.879000px;}
.y18_c01339{bottom:524.317500px;}
.y17_c01339{bottom:540.756000px;}
.y16_c01339{bottom:557.194500px;}
.y15_c01339{bottom:573.633000px;}
.y14_c01339{bottom:590.071500px;}
.y13_c01339{bottom:606.508500px;}
.y12_c01339{bottom:622.947000px;}
.y11_c01339{bottom:639.385500px;}
.y10_c01339{bottom:655.824000px;}
.yf_c01339{bottom:672.262500px;}
.ye_c01339{bottom:688.701000px;}
.yd_c01339{bottom:705.139500px;}
.yc_c01339{bottom:721.578000px;}
.yb_c01339{bottom:738.016500px;}
.ya_c01339{bottom:754.455000px;}
.y9_c01339{bottom:787.330500px;}
.y8_c01339{bottom:803.769000px;}
.y7_c01339{bottom:853.084500px;}
.y6_c01339{bottom:869.523000px;}
.y5_c01339{bottom:885.588000px;}
.y4_c01339{bottom:1106.064000px;}
.y3_c01339{bottom:1123.998000px;}
.y2_c01339{bottom:1141.930500px;}
.y1_c01339{bottom:1159.863000px;}
.h3_c01339{height:35.190766px;}
.h4_c01339{height:36.007158px;}
.h2_c01339{height:52.332837px;}
.h0_c01339{height:1262.835000px;}
.h1_c01339{height:1263.000000px;}
.w0_c01339{width:892.920000px;}
.w1_c01339{width:893.250000px;}
.x0_c01339{left:0.000000px;}
.x1_c01339{left:127.558500px;}
.x2_c01339{left:137.122500px;}
.x3_c01339{left:143.770500px;}
.x4_c01339{left:177.007500px;}
.x5_c01339{left:435.249000px;}
@media print{
.v0_c01339{vertical-align:0.000000pt;}
.ls4_c01339{letter-spacing:0.000000pt;}
.ls1_c01339{letter-spacing:0.078221pt;}
.ls2_c01339{letter-spacing:0.087539pt;}
.ls0_c01339{letter-spacing:0.092873pt;}
.ls3_c01339{letter-spacing:23.724873pt;}
.ws3_c01339{word-spacing:-29.967501pt;}
.ws6_c01339{word-spacing:-23.622682pt;}
.ws5_c01339{word-spacing:-23.544461pt;}
.ws2_c01339{word-spacing:-16.684034pt;}
.ws0_c01339{word-spacing:-12.539593pt;}
.ws1_c01339{word-spacing:-10.733041pt;}
.wsa_c01339{word-spacing:0.000000pt;}
.ws7_c01339{word-spacing:0.039110pt;}
.wsd_c01339{word-spacing:0.050460pt;}
.wsb_c01339{word-spacing:0.065111pt;}
.wsc_c01339{word-spacing:0.074430pt;}
.ws4_c01339{word-spacing:0.156442pt;}
.wse_c01339{word-spacing:0.180412pt;}
.ws8_c01339{word-spacing:0.189730pt;}
.ws9_c01339{word-spacing:0.195063pt;}
._2_c01339{margin-left:-3.400567pt;}
._3_c01339{width:0.893988pt;}
._0_c01339{width:18.437452pt;}
._1_c01339{width:35.652825pt;}
._5_c01339{width:47.362694pt;}
._4_c01339{width:70.985376pt;}
._6_c01339{width:118.624363pt;}
.fs1_c01339{font-size:39.110400pt;}
.fs0_c01339{font-size:53.133867pt;}
.y0_c01339{bottom:0.000000pt;}
.y2f_c01339{bottom:39.333333pt;}
.y2e_c01339{bottom:86.150667pt;}
.y2d_c01339{bottom:100.762667pt;}
.y2c_c01339{bottom:115.374667pt;}
.y2b_c01339{bottom:129.986667pt;}
.y2a_c01339{bottom:144.598667pt;}
.y29_c01339{bottom:159.210667pt;}
.y28_c01339{bottom:173.822667pt;}
.y27_c01339{bottom:188.434667pt;}
.y26_c01339{bottom:203.046667pt;}
.y25_c01339{bottom:217.658667pt;}
.y24_c01339{bottom:232.270667pt;}
.y23_c01339{bottom:261.493333pt;}
.y22_c01339{bottom:276.105333pt;}
.y21_c01339{bottom:290.717333pt;}
.y20_c01339{bottom:319.941333pt;}
.y1f_c01339{bottom:334.553333pt;}
.y1e_c01339{bottom:349.165333pt;}
.y1d_c01339{bottom:363.777333pt;}
.y1c_c01339{bottom:378.389333pt;}
.y1b_c01339{bottom:393.000000pt;}
.y1a_c01339{bottom:407.612000pt;}
.y19_c01339{bottom:451.448000pt;}
.y18_c01339{bottom:466.060000pt;}
.y17_c01339{bottom:480.672000pt;}
.y16_c01339{bottom:495.284000pt;}
.y15_c01339{bottom:509.896000pt;}
.y14_c01339{bottom:524.508000pt;}
.y13_c01339{bottom:539.118667pt;}
.y12_c01339{bottom:553.730667pt;}
.y11_c01339{bottom:568.342667pt;}
.y10_c01339{bottom:582.954667pt;}
.yf_c01339{bottom:597.566667pt;}
.ye_c01339{bottom:612.178667pt;}
.yd_c01339{bottom:626.790667pt;}
.yc_c01339{bottom:641.402667pt;}
.yb_c01339{bottom:656.014667pt;}
.ya_c01339{bottom:670.626667pt;}
.y9_c01339{bottom:699.849333pt;}
.y8_c01339{bottom:714.461333pt;}
.y7_c01339{bottom:758.297333pt;}
.y6_c01339{bottom:772.909333pt;}
.y5_c01339{bottom:787.189333pt;}
.y4_c01339{bottom:983.168000pt;}
.y3_c01339{bottom:999.109333pt;}
.y2_c01339{bottom:1015.049333pt;}
.y1_c01339{bottom:1030.989333pt;}
.h3_c01339{height:31.280681pt;}
.h4_c01339{height:32.006363pt;}
.h2_c01339{height:46.518078pt;}
.h0_c01339{height:1122.520000pt;}
.h1_c01339{height:1122.666667pt;}
.w0_c01339{width:793.706667pt;}
.w1_c01339{width:794.000000pt;}
.x0_c01339{left:0.000000pt;}
.x1_c01339{left:113.385333pt;}
.x2_c01339{left:121.886667pt;}
.x3_c01339{left:127.796000pt;}
.x4_c01339{left:157.340000pt;}
.x5_c01339{left:386.888000pt;}
}





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

.ir_c01340:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01340;src:url('chunks/assets/font_9a415ed607d74a80c73870a8.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01340;src:url('chunks/assets/font_bee2f16f4cceba2a6d7e10c8.woff2')format("woff");}.ff2_c01340{font-family:ff2_c01340;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01340;src:url('chunks/assets/font_e0fde760fa3842c6f9ddf613.woff2')format("woff");}.ff3_c01340{font-family:ff3_c01340;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01340;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01340{font-family:ff4_c01340;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01340;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01340{font-family:ff5_c01340;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01340{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01340{vertical-align:0.000000px;}
.ls3_c01340{letter-spacing:0.000000px;}
.ls0_c01340{letter-spacing:0.087998px;}
.ls2_c01340{letter-spacing:0.098482px;}
.ls1_c01340{letter-spacing:0.104482px;}
.sc__c01340{text-shadow:none;}
.sc0_c01340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01340{-webkit-text-stroke:0px transparent;}
.sc0_c01340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01340{word-spacing:-33.713438px;}
.ws2_c01340{word-spacing:-26.575517px;}
.ws10_c01340{word-spacing:-26.487518px;}
.wsb_c01340{word-spacing:-21.553319px;}
.wsa_c01340{word-spacing:-21.519216px;}
.ws9_c01340{word-spacing:-19.247743px;}
.ws7_c01340{word-spacing:-18.769538px;}
.ws6_c01340{word-spacing:-14.943900px;}
.ws5_c01340{word-spacing:-14.585246px;}
.wsc_c01340{word-spacing:-14.107042px;}
.wsd_c01340{word-spacing:-12.074671px;}
.ws4_c01340{word-spacing:-10.759608px;}
.ws8_c01340{word-spacing:-10.230144px;}
.ws1_c01340{word-spacing:-9.988424px;}
.ws3_c01340{word-spacing:-9.987499px;}
.ws14_c01340{word-spacing:0.000000px;}
.ws11_c01340{word-spacing:0.043999px;}
.ws17_c01340{word-spacing:0.056767px;}
.ws15_c01340{word-spacing:0.073250px;}
.ws16_c01340{word-spacing:0.083734px;}
.wsf_c01340{word-spacing:0.175997px;}
.ws18_c01340{word-spacing:0.202963px;}
.ws12_c01340{word-spacing:0.213446px;}
.ws13_c01340{word-spacing:0.219446px;}
.ws0_c01340{word-spacing:43.038600px;}
._4_c01340{margin-left:-3.825638px;}
._0_c01340{margin-left:-1.549390px;}
._5_c01340{width:1.005737px;}
._2_c01340{width:20.204153px;}
._1_c01340{width:28.339524px;}
._3_c01340{width:40.109428px;}
._7_c01340{width:53.283031px;}
._6_c01340{width:79.858548px;}
._8_c01340{width:133.452408px;}
.fc6_c01340{color:rgb(0,0,207);}
.fc5_c01340{color:rgb(79,153,5);}
.fc3_c01340{color:rgb(33,74,135);}
.fc2_c01340{color:rgb(143,89,3);}
.fc4_c01340{color:rgb(207,92,0);}
.fc1_c01340{color:rgb(6,69,173);}
.fc0_c01340{color:rgb(0,0,0);}
.fs2_c01340{font-size:43.999200px;}
.fs1_c01340{font-size:59.775600px;}
.fs0_c01340{font-size:86.077200px;}
.y0_c01340{bottom:0.000000px;}
.y20_c01340{bottom:44.250000px;}
.y1f_c01340{bottom:86.982000px;}
.y1e_c01340{bottom:103.420500px;}
.y1d_c01340{bottom:119.859000px;}
.y1c_c01340{bottom:136.297500px;}
.y1b_c01340{bottom:152.736000px;}
.y1a_c01340{bottom:169.174500px;}
.y19_c01340{bottom:185.613000px;}
.y18_c01340{bottom:202.051500px;}
.y17_c01340{bottom:218.490000px;}
.y16_c01340{bottom:234.927000px;}
.y15_c01340{bottom:251.365500px;}
.y14_c01340{bottom:267.804000px;}
.y13_c01340{bottom:284.242500px;}
.y12_c01340{bottom:300.681000px;}
.y11_c01340{bottom:333.558000px;}
.y10_c01340{bottom:349.996500px;}
.yf_c01340{bottom:399.310500px;}
.ye_c01340{bottom:415.749000px;}
.yd_c01340{bottom:431.814000px;}
.yc_c01340{bottom:477.118500px;}
.yb_c01340{bottom:495.051000px;}
.ya_c01340{bottom:512.983500px;}
.y9_c01340{bottom:530.916000px;}
.y8_c01340{bottom:548.848500px;}
.y7_c01340{bottom:566.781000px;}
.y6_c01340{bottom:593.728500px;}
.y5_c01340{bottom:620.674500px;}
.y4_c01340{bottom:638.607000px;}
.y3_c01340{bottom:665.553000px;}
.y2_c01340{bottom:692.500500px;}
.y1_c01340{bottom:734.839500px;}
.h5_c01340{height:35.190766px;}
.h6_c01340{height:36.007158px;}
.h3_c01340{height:40.511979px;}
.h4_c01340{height:52.332837px;}
.h2_c01340{height:58.337477px;}
.h0_c01340{height:1262.835000px;}
.h1_c01340{height:1263.000000px;}
.w0_c01340{width:892.920000px;}
.w1_c01340{width:893.250000px;}
.x0_c01340{left:0.000000px;}
.x1_c01340{left:127.558500px;}
.x2_c01340{left:137.122500px;}
.x3_c01340{left:143.770500px;}
.x4_c01340{left:435.249000px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.ls3_c01340{letter-spacing:0.000000pt;}
.ls0_c01340{letter-spacing:0.078221pt;}
.ls2_c01340{letter-spacing:0.087539pt;}
.ls1_c01340{letter-spacing:0.092873pt;}
.wse_c01340{word-spacing:-29.967501pt;}
.ws2_c01340{word-spacing:-23.622682pt;}
.ws10_c01340{word-spacing:-23.544461pt;}
.wsb_c01340{word-spacing:-19.158506pt;}
.wsa_c01340{word-spacing:-19.128192pt;}
.ws9_c01340{word-spacing:-17.109105pt;}
.ws7_c01340{word-spacing:-16.684034pt;}
.ws6_c01340{word-spacing:-13.283467pt;}
.ws5_c01340{word-spacing:-12.964663pt;}
.wsc_c01340{word-spacing:-12.539593pt;}
.wsd_c01340{word-spacing:-10.733041pt;}
.ws4_c01340{word-spacing:-9.564096pt;}
.ws8_c01340{word-spacing:-9.093461pt;}
.ws1_c01340{word-spacing:-8.878599pt;}
.ws3_c01340{word-spacing:-8.877777pt;}
.ws14_c01340{word-spacing:0.000000pt;}
.ws11_c01340{word-spacing:0.039110pt;}
.ws17_c01340{word-spacing:0.050460pt;}
.ws15_c01340{word-spacing:0.065111pt;}
.ws16_c01340{word-spacing:0.074430pt;}
.wsf_c01340{word-spacing:0.156442pt;}
.ws18_c01340{word-spacing:0.180412pt;}
.ws12_c01340{word-spacing:0.189730pt;}
.ws13_c01340{word-spacing:0.195063pt;}
.ws0_c01340{word-spacing:38.256533pt;}
._4_c01340{margin-left:-3.400567pt;}
._0_c01340{margin-left:-1.377235pt;}
._5_c01340{width:0.893988pt;}
._2_c01340{width:17.959247pt;}
._1_c01340{width:25.190688pt;}
._3_c01340{width:35.652825pt;}
._7_c01340{width:47.362694pt;}
._6_c01340{width:70.985376pt;}
._8_c01340{width:118.624363pt;}
.fs2_c01340{font-size:39.110400pt;}
.fs1_c01340{font-size:53.133867pt;}
.fs0_c01340{font-size:76.513067pt;}
.y0_c01340{bottom:0.000000pt;}
.y20_c01340{bottom:39.333333pt;}
.y1f_c01340{bottom:77.317333pt;}
.y1e_c01340{bottom:91.929333pt;}
.y1d_c01340{bottom:106.541333pt;}
.y1c_c01340{bottom:121.153333pt;}
.y1b_c01340{bottom:135.765333pt;}
.y1a_c01340{bottom:150.377333pt;}
.y19_c01340{bottom:164.989333pt;}
.y18_c01340{bottom:179.601333pt;}
.y17_c01340{bottom:194.213333pt;}
.y16_c01340{bottom:208.824000pt;}
.y15_c01340{bottom:223.436000pt;}
.y14_c01340{bottom:238.048000pt;}
.y13_c01340{bottom:252.660000pt;}
.y12_c01340{bottom:267.272000pt;}
.y11_c01340{bottom:296.496000pt;}
.y10_c01340{bottom:311.108000pt;}
.yf_c01340{bottom:354.942667pt;}
.ye_c01340{bottom:369.554667pt;}
.yd_c01340{bottom:383.834667pt;}
.yc_c01340{bottom:424.105333pt;}
.yb_c01340{bottom:440.045333pt;}
.ya_c01340{bottom:455.985333pt;}
.y9_c01340{bottom:471.925333pt;}
.y8_c01340{bottom:487.865333pt;}
.y7_c01340{bottom:503.805333pt;}
.y6_c01340{bottom:527.758667pt;}
.y5_c01340{bottom:551.710667pt;}
.y4_c01340{bottom:567.650667pt;}
.y3_c01340{bottom:591.602667pt;}
.y2_c01340{bottom:615.556000pt;}
.y1_c01340{bottom:653.190667pt;}
.h5_c01340{height:31.280681pt;}
.h6_c01340{height:32.006363pt;}
.h3_c01340{height:36.010648pt;}
.h4_c01340{height:46.518078pt;}
.h2_c01340{height:51.855535pt;}
.h0_c01340{height:1122.520000pt;}
.h1_c01340{height:1122.666667pt;}
.w0_c01340{width:793.706667pt;}
.w1_c01340{width:794.000000pt;}
.x0_c01340{left:0.000000pt;}
.x1_c01340{left:113.385333pt;}
.x2_c01340{left:121.886667pt;}
.x3_c01340{left:127.796000pt;}
.x4_c01340{left:386.888000pt;}
}





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

.ir_c01341:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01341;src:url('chunks/assets/font_20f72de90b43a706a077706a.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01341;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01341{font-family:ff2_c01341;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01341;src:url('chunks/assets/font_967540dee59a7a5b2488e7d5.woff2')format("woff");}.ff3_c01341{font-family:ff3_c01341;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01341;src:url('chunks/assets/font_e7c23702064426957ff7c0ee.woff2')format("woff");}.ff4_c01341{font-family:ff4_c01341;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01341;src:url('chunks/assets/font_b78099c9fa7e9a19e55779d2.woff2')format("woff");}.ff5_c01341{font-family:ff5_c01341;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01341{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01341{vertical-align:0.000000px;}
.ls4_c01341{letter-spacing:0.000000px;}
.ls0_c01341{letter-spacing:0.087998px;}
.ls1_c01341{letter-spacing:0.098482px;}
.ls3_c01341{letter-spacing:0.104482px;}
.ls2_c01341{letter-spacing:26.690482px;}
.sc__c01341{text-shadow:none;}
.sc0_c01341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01341{-webkit-text-stroke:0px transparent;}
.sc0_c01341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01341{word-spacing:-26.575517px;}
.ws5_c01341{word-spacing:-26.487518px;}
.wsf_c01341{word-spacing:-22.356074px;}
.wsb_c01341{word-spacing:-18.769538px;}
.wsa_c01341{word-spacing:-14.943900px;}
.wse_c01341{word-spacing:-13.999469px;}
.wsd_c01341{word-spacing:-13.927715px;}
.ws10_c01341{word-spacing:-12.074671px;}
.ws8_c01341{word-spacing:-9.988424px;}
.ws9_c01341{word-spacing:-9.987499px;}
.wsc_c01341{word-spacing:-0.288144px;}
.ws4_c01341{word-spacing:0.000000px;}
.ws1_c01341{word-spacing:0.043999px;}
.ws0_c01341{word-spacing:0.073250px;}
.ws6_c01341{word-spacing:0.213446px;}
.ws2_c01341{word-spacing:0.219446px;}
.ws7_c01341{word-spacing:43.038600px;}
._3_c01341{margin-left:-6.369713px;}
._4_c01341{margin-left:-1.549390px;}
._2_c01341{width:1.144589px;}
._7_c01341{width:12.552876px;}
._8_c01341{width:18.769538px;}
._5_c01341{width:19.935816px;}
._6_c01341{width:21.633991px;}
._9_c01341{width:23.628312px;}
._1_c01341{width:53.679024px;}
._0_c01341{width:79.858548px;}
.fc5_c01341{color:rgb(79,153,5);}
.fc4_c01341{color:rgb(143,89,3);}
.fc6_c01341{color:rgb(6,69,173);}
.fc3_c01341{color:rgb(207,92,0);}
.fc2_c01341{color:rgb(0,0,0);}
.fc1_c01341{color:rgb(0,0,207);}
.fc0_c01341{color:rgb(33,74,135);}
.fs0_c01341{font-size:43.999200px;}
.fs2_c01341{font-size:59.775600px;}
.fs1_c01341{font-size:86.077200px;}
.y0_c01341{bottom:0.000000px;}
.y20_c01341{bottom:44.250000px;}
.y1f_c01341{bottom:82.051500px;}
.y1e_c01341{bottom:99.984000px;}
.y1d_c01341{bottom:117.916500px;}
.y1c_c01341{bottom:144.757500px;}
.y1b_c01341{bottom:171.597000px;}
.y1a_c01341{bottom:198.438000px;}
.y19_c01341{bottom:225.277500px;}
.y18_c01341{bottom:267.492000px;}
.y17_c01341{bottom:732.465000px;}
.y16_c01341{bottom:748.903500px;}
.y15_c01341{bottom:765.342000px;}
.y14_c01341{bottom:781.780500px;}
.y13_c01341{bottom:798.219000px;}
.y12_c01341{bottom:814.657500px;}
.y11_c01341{bottom:831.096000px;}
.y10_c01341{bottom:847.534500px;}
.yf_c01341{bottom:863.973000px;}
.ye_c01341{bottom:880.411500px;}
.yd_c01341{bottom:896.848500px;}
.yc_c01341{bottom:929.725500px;}
.yb_c01341{bottom:946.164000px;}
.ya_c01341{bottom:962.602500px;}
.y9_c01341{bottom:995.479500px;}
.y8_c01341{bottom:1011.918000px;}
.y7_c01341{bottom:1028.356500px;}
.y6_c01341{bottom:1044.795000px;}
.y5_c01341{bottom:1061.232000px;}
.y4_c01341{bottom:1077.670500px;}
.y3_c01341{bottom:1094.109000px;}
.y2_c01341{bottom:1143.424500px;}
.y1_c01341{bottom:1159.863000px;}
.h3_c01341{height:35.190766px;}
.h2_c01341{height:36.007158px;}
.h5_c01341{height:40.511979px;}
.h6_c01341{height:52.332837px;}
.h4_c01341{height:58.337477px;}
.h0_c01341{height:1262.835000px;}
.h1_c01341{height:1263.000000px;}
.w0_c01341{width:892.920000px;}
.w1_c01341{width:893.250000px;}
.x0_c01341{left:0.000000px;}
.x4_c01341{left:127.558500px;}
.x2_c01341{left:137.122500px;}
.x1_c01341{left:143.770500px;}
.x3_c01341{left:177.007500px;}
.x5_c01341{left:435.249000px;}
@media print{
.v0_c01341{vertical-align:0.000000pt;}
.ls4_c01341{letter-spacing:0.000000pt;}
.ls0_c01341{letter-spacing:0.078221pt;}
.ls1_c01341{letter-spacing:0.087539pt;}
.ls3_c01341{letter-spacing:0.092873pt;}
.ls2_c01341{letter-spacing:23.724873pt;}
.ws3_c01341{word-spacing:-23.622682pt;}
.ws5_c01341{word-spacing:-23.544461pt;}
.wsf_c01341{word-spacing:-19.872066pt;}
.wsb_c01341{word-spacing:-16.684034pt;}
.wsa_c01341{word-spacing:-13.283467pt;}
.wse_c01341{word-spacing:-12.443972pt;}
.wsd_c01341{word-spacing:-12.380191pt;}
.ws10_c01341{word-spacing:-10.733041pt;}
.ws8_c01341{word-spacing:-8.878599pt;}
.ws9_c01341{word-spacing:-8.877777pt;}
.wsc_c01341{word-spacing:-0.256128pt;}
.ws4_c01341{word-spacing:0.000000pt;}
.ws1_c01341{word-spacing:0.039110pt;}
.ws0_c01341{word-spacing:0.065111pt;}
.ws6_c01341{word-spacing:0.189730pt;}
.ws2_c01341{word-spacing:0.195063pt;}
.ws7_c01341{word-spacing:38.256533pt;}
._3_c01341{margin-left:-5.661967pt;}
._4_c01341{margin-left:-1.377235pt;}
._2_c01341{width:1.017412pt;}
._7_c01341{width:11.158112pt;}
._8_c01341{width:16.684034pt;}
._5_c01341{width:17.720725pt;}
._6_c01341{width:19.230214pt;}
._9_c01341{width:21.002944pt;}
._1_c01341{width:47.714688pt;}
._0_c01341{width:70.985376pt;}
.fs0_c01341{font-size:39.110400pt;}
.fs2_c01341{font-size:53.133867pt;}
.fs1_c01341{font-size:76.513067pt;}
.y0_c01341{bottom:0.000000pt;}
.y20_c01341{bottom:39.333333pt;}
.y1f_c01341{bottom:72.934667pt;}
.y1e_c01341{bottom:88.874667pt;}
.y1d_c01341{bottom:104.814667pt;}
.y1c_c01341{bottom:128.673333pt;}
.y1b_c01341{bottom:152.530667pt;}
.y1a_c01341{bottom:176.389333pt;}
.y19_c01341{bottom:200.246667pt;}
.y18_c01341{bottom:237.770667pt;}
.y17_c01341{bottom:651.080000pt;}
.y16_c01341{bottom:665.692000pt;}
.y15_c01341{bottom:680.304000pt;}
.y14_c01341{bottom:694.916000pt;}
.y13_c01341{bottom:709.528000pt;}
.y12_c01341{bottom:724.140000pt;}
.y11_c01341{bottom:738.752000pt;}
.y10_c01341{bottom:753.364000pt;}
.yf_c01341{bottom:767.976000pt;}
.ye_c01341{bottom:782.588000pt;}
.yd_c01341{bottom:797.198667pt;}
.yc_c01341{bottom:826.422667pt;}
.yb_c01341{bottom:841.034667pt;}
.ya_c01341{bottom:855.646667pt;}
.y9_c01341{bottom:884.870667pt;}
.y8_c01341{bottom:899.482667pt;}
.y7_c01341{bottom:914.094667pt;}
.y6_c01341{bottom:928.706667pt;}
.y5_c01341{bottom:943.317333pt;}
.y4_c01341{bottom:957.929333pt;}
.y3_c01341{bottom:972.541333pt;}
.y2_c01341{bottom:1016.377333pt;}
.y1_c01341{bottom:1030.989333pt;}
.h3_c01341{height:31.280681pt;}
.h2_c01341{height:32.006363pt;}
.h5_c01341{height:36.010648pt;}
.h6_c01341{height:46.518078pt;}
.h4_c01341{height:51.855535pt;}
.h0_c01341{height:1122.520000pt;}
.h1_c01341{height:1122.666667pt;}
.w0_c01341{width:793.706667pt;}
.w1_c01341{width:794.000000pt;}
.x0_c01341{left:0.000000pt;}
.x4_c01341{left:113.385333pt;}
.x2_c01341{left:121.886667pt;}
.x1_c01341{left:127.796000pt;}
.x3_c01341{left:157.340000pt;}
.x5_c01341{left:386.888000pt;}
}





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

.ir_c01342:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01342;src:url('chunks/assets/font_c77eda14510ee6592b54d133.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01342;src:url('chunks/assets/font_5667e512a72dce7b622df90f.woff2')format("woff");}.ff2_c01342{font-family:ff2_c01342;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01342;src:url('chunks/assets/font_6015313480f5c68791a0f58d.woff2')format("woff");}.ff3_c01342{font-family:ff3_c01342;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01342;src:url('chunks/assets/font_6dc57371e9de4fa28324beeb.woff2')format("woff");}.ff4_c01342{font-family:ff4_c01342;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01342{vertical-align:0.000000px;}
.ls4_c01342{letter-spacing:0.000000px;}
.ls1_c01342{letter-spacing:0.087998px;}
.ls2_c01342{letter-spacing:0.098482px;}
.ls0_c01342{letter-spacing:0.104482px;}
.ls3_c01342{letter-spacing:0.140482px;}
.sc__c01342{text-shadow:none;}
.sc0_c01342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01342{-webkit-text-stroke:0px transparent;}
.sc0_c01342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01342{word-spacing:-26.575517px;}
.ws4_c01342{word-spacing:-26.487518px;}
.ws2_c01342{word-spacing:-18.769538px;}
.ws0_c01342{word-spacing:-18.530436px;}
.ws1_c01342{word-spacing:-17.813129px;}
.ws9_c01342{word-spacing:0.000000px;}
.ws6_c01342{word-spacing:0.043999px;}
.wsa_c01342{word-spacing:0.056767px;}
.ws3_c01342{word-spacing:0.175997px;}
.ws8_c01342{word-spacing:0.213446px;}
.ws7_c01342{word-spacing:0.219446px;}
._2_c01342{margin-left:-3.825638px;}
._3_c01342{width:1.005737px;}
._0_c01342{width:20.742133px;}
._1_c01342{width:22.774504px;}
._4_c01342{width:106.610062px;}
.fc5_c01342{color:rgb(0,0,207);}
.fc4_c01342{color:rgb(79,153,5);}
.fc3_c01342{color:rgb(207,92,0);}
.fc2_c01342{color:rgb(33,74,135);}
.fc1_c01342{color:rgb(143,89,3);}
.fc0_c01342{color:rgb(0,0,0);}
.fs1_c01342{font-size:43.999200px;}
.fs0_c01342{font-size:59.775600px;}
.y0_c01342{bottom:0.000000px;}
.y31_c01342{bottom:44.250000px;}
.y30_c01342{bottom:96.919500px;}
.y2f_c01342{bottom:113.358000px;}
.y2e_c01342{bottom:129.796500px;}
.y2d_c01342{bottom:146.235000px;}
.y2c_c01342{bottom:162.673500px;}
.y2b_c01342{bottom:179.112000px;}
.y2a_c01342{bottom:195.550500px;}
.y29_c01342{bottom:211.989000px;}
.y28_c01342{bottom:228.427500px;}
.y27_c01342{bottom:244.866000px;}
.y26_c01342{bottom:261.304500px;}
.y25_c01342{bottom:294.180000px;}
.y24_c01342{bottom:310.618500px;}
.y23_c01342{bottom:327.057000px;}
.y22_c01342{bottom:359.934000px;}
.y21_c01342{bottom:376.372500px;}
.y20_c01342{bottom:392.811000px;}
.y1f_c01342{bottom:409.249500px;}
.y1e_c01342{bottom:425.688000px;}
.y1d_c01342{bottom:442.125000px;}
.y1c_c01342{bottom:458.563500px;}
.y1b_c01342{bottom:475.002000px;}
.y1a_c01342{bottom:491.440500px;}
.y19_c01342{bottom:507.879000px;}
.y18_c01342{bottom:524.317500px;}
.y17_c01342{bottom:540.756000px;}
.y16_c01342{bottom:557.194500px;}
.y15_c01342{bottom:573.633000px;}
.y14_c01342{bottom:622.947000px;}
.y13_c01342{bottom:639.385500px;}
.y12_c01342{bottom:672.262500px;}
.y11_c01342{bottom:688.701000px;}
.y10_c01342{bottom:721.578000px;}
.yf_c01342{bottom:738.016500px;}
.ye_c01342{bottom:754.455000px;}
.yd_c01342{bottom:770.893500px;}
.yc_c01342{bottom:803.769000px;}
.yb_c01342{bottom:820.207500px;}
.ya_c01342{bottom:836.646000px;}
.y9_c01342{bottom:853.084500px;}
.y8_c01342{bottom:869.523000px;}
.y7_c01342{bottom:885.961500px;}
.y6_c01342{bottom:902.400000px;}
.y5_c01342{bottom:918.838500px;}
.y4_c01342{bottom:934.903500px;}
.y3_c01342{bottom:1123.998000px;}
.y2_c01342{bottom:1141.930500px;}
.y1_c01342{bottom:1159.863000px;}
.h3_c01342{height:35.190766px;}
.h4_c01342{height:36.007158px;}
.h2_c01342{height:52.332837px;}
.h0_c01342{height:1262.835000px;}
.h1_c01342{height:1263.000000px;}
.w0_c01342{width:892.920000px;}
.w1_c01342{width:893.250000px;}
.x0_c01342{left:0.000000px;}
.x1_c01342{left:127.558500px;}
.x2_c01342{left:137.122500px;}
.x4_c01342{left:177.007500px;}
.x3_c01342{left:230.185500px;}
.x5_c01342{left:435.249000px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.ls4_c01342{letter-spacing:0.000000pt;}
.ls1_c01342{letter-spacing:0.078221pt;}
.ls2_c01342{letter-spacing:0.087539pt;}
.ls0_c01342{letter-spacing:0.092873pt;}
.ls3_c01342{letter-spacing:0.124873pt;}
.ws5_c01342{word-spacing:-23.622682pt;}
.ws4_c01342{word-spacing:-23.544461pt;}
.ws2_c01342{word-spacing:-16.684034pt;}
.ws0_c01342{word-spacing:-16.471499pt;}
.ws1_c01342{word-spacing:-15.833892pt;}
.ws9_c01342{word-spacing:0.000000pt;}
.ws6_c01342{word-spacing:0.039110pt;}
.wsa_c01342{word-spacing:0.050460pt;}
.ws3_c01342{word-spacing:0.156442pt;}
.ws8_c01342{word-spacing:0.189730pt;}
.ws7_c01342{word-spacing:0.195063pt;}
._2_c01342{margin-left:-3.400567pt;}
._3_c01342{width:0.893988pt;}
._0_c01342{width:18.437452pt;}
._1_c01342{width:20.244003pt;}
._4_c01342{width:94.764499pt;}
.fs1_c01342{font-size:39.110400pt;}
.fs0_c01342{font-size:53.133867pt;}
.y0_c01342{bottom:0.000000pt;}
.y31_c01342{bottom:39.333333pt;}
.y30_c01342{bottom:86.150667pt;}
.y2f_c01342{bottom:100.762667pt;}
.y2e_c01342{bottom:115.374667pt;}
.y2d_c01342{bottom:129.986667pt;}
.y2c_c01342{bottom:144.598667pt;}
.y2b_c01342{bottom:159.210667pt;}
.y2a_c01342{bottom:173.822667pt;}
.y29_c01342{bottom:188.434667pt;}
.y28_c01342{bottom:203.046667pt;}
.y27_c01342{bottom:217.658667pt;}
.y26_c01342{bottom:232.270667pt;}
.y25_c01342{bottom:261.493333pt;}
.y24_c01342{bottom:276.105333pt;}
.y23_c01342{bottom:290.717333pt;}
.y22_c01342{bottom:319.941333pt;}
.y21_c01342{bottom:334.553333pt;}
.y20_c01342{bottom:349.165333pt;}
.y1f_c01342{bottom:363.777333pt;}
.y1e_c01342{bottom:378.389333pt;}
.y1d_c01342{bottom:393.000000pt;}
.y1c_c01342{bottom:407.612000pt;}
.y1b_c01342{bottom:422.224000pt;}
.y1a_c01342{bottom:436.836000pt;}
.y19_c01342{bottom:451.448000pt;}
.y18_c01342{bottom:466.060000pt;}
.y17_c01342{bottom:480.672000pt;}
.y16_c01342{bottom:495.284000pt;}
.y15_c01342{bottom:509.896000pt;}
.y14_c01342{bottom:553.730667pt;}
.y13_c01342{bottom:568.342667pt;}
.y12_c01342{bottom:597.566667pt;}
.y11_c01342{bottom:612.178667pt;}
.y10_c01342{bottom:641.402667pt;}
.yf_c01342{bottom:656.014667pt;}
.ye_c01342{bottom:670.626667pt;}
.yd_c01342{bottom:685.238667pt;}
.yc_c01342{bottom:714.461333pt;}
.yb_c01342{bottom:729.073333pt;}
.ya_c01342{bottom:743.685333pt;}
.y9_c01342{bottom:758.297333pt;}
.y8_c01342{bottom:772.909333pt;}
.y7_c01342{bottom:787.521333pt;}
.y6_c01342{bottom:802.133333pt;}
.y5_c01342{bottom:816.745333pt;}
.y4_c01342{bottom:831.025333pt;}
.y3_c01342{bottom:999.109333pt;}
.y2_c01342{bottom:1015.049333pt;}
.y1_c01342{bottom:1030.989333pt;}
.h3_c01342{height:31.280681pt;}
.h4_c01342{height:32.006363pt;}
.h2_c01342{height:46.518078pt;}
.h0_c01342{height:1122.520000pt;}
.h1_c01342{height:1122.666667pt;}
.w0_c01342{width:793.706667pt;}
.w1_c01342{width:794.000000pt;}
.x0_c01342{left:0.000000pt;}
.x1_c01342{left:113.385333pt;}
.x2_c01342{left:121.886667pt;}
.x4_c01342{left:157.340000pt;}
.x3_c01342{left:204.609333pt;}
.x5_c01342{left:386.888000pt;}
}





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

.ir_c01343:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01343;src:url('chunks/assets/font_7274616b5db480918ad34972.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01343;src:url('chunks/assets/font_e1e7521b28e8e4a3d103e8d3.woff2')format("woff");}.ff2_c01343{font-family:ff2_c01343;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01343;src:url('chunks/assets/font_8830588fd96aa42fa599e683.woff2')format("woff");}.ff3_c01343{font-family:ff3_c01343;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01343;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01343{font-family:ff4_c01343;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01343;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01343{font-family:ff5_c01343;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01343{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01343{vertical-align:0.000000px;}
.ls3_c01343{letter-spacing:0.000000px;}
.ls0_c01343{letter-spacing:0.087998px;}
.ls2_c01343{letter-spacing:0.098482px;}
.ls1_c01343{letter-spacing:0.104482px;}
.sc__c01343{text-shadow:none;}
.sc0_c01343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01343{-webkit-text-stroke:0px transparent;}
.sc0_c01343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01343{word-spacing:-33.713438px;}
.ws2_c01343{word-spacing:-26.575517px;}
.wse_c01343{word-spacing:-26.487518px;}
.ws9_c01343{word-spacing:-21.553319px;}
.ws8_c01343{word-spacing:-21.519216px;}
.ws5_c01343{word-spacing:-18.769538px;}
.ws7_c01343{word-spacing:-16.019861px;}
.ws4_c01343{word-spacing:-14.943900px;}
.wsa_c01343{word-spacing:-14.107042px;}
.wsb_c01343{word-spacing:-12.074671px;}
.ws1_c01343{word-spacing:-9.988424px;}
.ws3_c01343{word-spacing:-9.987499px;}
.ws6_c01343{word-spacing:-4.536144px;}
.ws12_c01343{word-spacing:0.000000px;}
.wsf_c01343{word-spacing:0.043999px;}
.ws15_c01343{word-spacing:0.056767px;}
.ws13_c01343{word-spacing:0.073250px;}
.ws14_c01343{word-spacing:0.083734px;}
.wsd_c01343{word-spacing:0.175997px;}
.ws16_c01343{word-spacing:0.202963px;}
.ws10_c01343{word-spacing:0.213446px;}
.ws11_c01343{word-spacing:0.219446px;}
.ws0_c01343{word-spacing:43.038600px;}
._0_c01343{margin-left:-6.369713px;}
._4_c01343{margin-left:-3.825638px;}
._1_c01343{margin-left:-1.549390px;}
._5_c01343{width:1.005737px;}
._2_c01343{width:19.935816px;}
._3_c01343{width:40.109428px;}
._7_c01343{width:53.283031px;}
._6_c01343{width:79.858548px;}
._8_c01343{width:133.452408px;}
.fc6_c01343{color:rgb(0,0,207);}
.fc5_c01343{color:rgb(79,153,5);}
.fc3_c01343{color:rgb(33,74,135);}
.fc2_c01343{color:rgb(143,89,3);}
.fc4_c01343{color:rgb(207,92,0);}
.fc1_c01343{color:rgb(6,69,173);}
.fc0_c01343{color:rgb(0,0,0);}
.fs2_c01343{font-size:43.999200px;}
.fs1_c01343{font-size:59.775600px;}
.fs0_c01343{font-size:86.077200px;}
.y0_c01343{bottom:0.000000px;}
.y20_c01343{bottom:44.250000px;}
.y1f_c01343{bottom:86.982000px;}
.y1e_c01343{bottom:103.420500px;}
.y1d_c01343{bottom:119.859000px;}
.y1c_c01343{bottom:136.297500px;}
.y1b_c01343{bottom:152.736000px;}
.y1a_c01343{bottom:169.174500px;}
.y19_c01343{bottom:185.613000px;}
.y18_c01343{bottom:202.051500px;}
.y17_c01343{bottom:218.490000px;}
.y16_c01343{bottom:234.927000px;}
.y15_c01343{bottom:251.365500px;}
.y14_c01343{bottom:267.804000px;}
.y13_c01343{bottom:284.242500px;}
.y12_c01343{bottom:300.681000px;}
.y11_c01343{bottom:317.119500px;}
.y10_c01343{bottom:349.996500px;}
.yf_c01343{bottom:366.435000px;}
.ye_c01343{bottom:415.749000px;}
.yd_c01343{bottom:432.187500px;}
.yc_c01343{bottom:448.252500px;}
.yb_c01343{bottom:493.890000px;}
.ya_c01343{bottom:511.822500px;}
.y9_c01343{bottom:529.756500px;}
.y8_c01343{bottom:547.689000px;}
.y7_c01343{bottom:565.621500px;}
.y6_c01343{bottom:583.554000px;}
.y5_c01343{bottom:610.633500px;}
.y4_c01343{bottom:637.714500px;}
.y3_c01343{bottom:664.794000px;}
.y2_c01343{bottom:691.873500px;}
.y1_c01343{bottom:734.407500px;}
.h5_c01343{height:35.190766px;}
.h6_c01343{height:36.007158px;}
.h3_c01343{height:40.511979px;}
.h4_c01343{height:52.332837px;}
.h2_c01343{height:58.337477px;}
.h0_c01343{height:1262.835000px;}
.h1_c01343{height:1263.000000px;}
.w0_c01343{width:892.920000px;}
.w1_c01343{width:893.250000px;}
.x0_c01343{left:0.000000px;}
.x1_c01343{left:127.558500px;}
.x2_c01343{left:137.122500px;}
.x3_c01343{left:143.770500px;}
.x4_c01343{left:435.249000px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.ls3_c01343{letter-spacing:0.000000pt;}
.ls0_c01343{letter-spacing:0.078221pt;}
.ls2_c01343{letter-spacing:0.087539pt;}
.ls1_c01343{letter-spacing:0.092873pt;}
.wsc_c01343{word-spacing:-29.967501pt;}
.ws2_c01343{word-spacing:-23.622682pt;}
.wse_c01343{word-spacing:-23.544461pt;}
.ws9_c01343{word-spacing:-19.158506pt;}
.ws8_c01343{word-spacing:-19.128192pt;}
.ws5_c01343{word-spacing:-16.684034pt;}
.ws7_c01343{word-spacing:-14.239876pt;}
.ws4_c01343{word-spacing:-13.283467pt;}
.wsa_c01343{word-spacing:-12.539593pt;}
.wsb_c01343{word-spacing:-10.733041pt;}
.ws1_c01343{word-spacing:-8.878599pt;}
.ws3_c01343{word-spacing:-8.877777pt;}
.ws6_c01343{word-spacing:-4.032128pt;}
.ws12_c01343{word-spacing:0.000000pt;}
.wsf_c01343{word-spacing:0.039110pt;}
.ws15_c01343{word-spacing:0.050460pt;}
.ws13_c01343{word-spacing:0.065111pt;}
.ws14_c01343{word-spacing:0.074430pt;}
.wsd_c01343{word-spacing:0.156442pt;}
.ws16_c01343{word-spacing:0.180412pt;}
.ws10_c01343{word-spacing:0.189730pt;}
.ws11_c01343{word-spacing:0.195063pt;}
.ws0_c01343{word-spacing:38.256533pt;}
._0_c01343{margin-left:-5.661967pt;}
._4_c01343{margin-left:-3.400567pt;}
._1_c01343{margin-left:-1.377235pt;}
._5_c01343{width:0.893988pt;}
._2_c01343{width:17.720725pt;}
._3_c01343{width:35.652825pt;}
._7_c01343{width:47.362694pt;}
._6_c01343{width:70.985376pt;}
._8_c01343{width:118.624363pt;}
.fs2_c01343{font-size:39.110400pt;}
.fs1_c01343{font-size:53.133867pt;}
.fs0_c01343{font-size:76.513067pt;}
.y0_c01343{bottom:0.000000pt;}
.y20_c01343{bottom:39.333333pt;}
.y1f_c01343{bottom:77.317333pt;}
.y1e_c01343{bottom:91.929333pt;}
.y1d_c01343{bottom:106.541333pt;}
.y1c_c01343{bottom:121.153333pt;}
.y1b_c01343{bottom:135.765333pt;}
.y1a_c01343{bottom:150.377333pt;}
.y19_c01343{bottom:164.989333pt;}
.y18_c01343{bottom:179.601333pt;}
.y17_c01343{bottom:194.213333pt;}
.y16_c01343{bottom:208.824000pt;}
.y15_c01343{bottom:223.436000pt;}
.y14_c01343{bottom:238.048000pt;}
.y13_c01343{bottom:252.660000pt;}
.y12_c01343{bottom:267.272000pt;}
.y11_c01343{bottom:281.884000pt;}
.y10_c01343{bottom:311.108000pt;}
.yf_c01343{bottom:325.720000pt;}
.ye_c01343{bottom:369.554667pt;}
.yd_c01343{bottom:384.166667pt;}
.yc_c01343{bottom:398.446667pt;}
.yb_c01343{bottom:439.013333pt;}
.ya_c01343{bottom:454.953333pt;}
.y9_c01343{bottom:470.894667pt;}
.y8_c01343{bottom:486.834667pt;}
.y7_c01343{bottom:502.774667pt;}
.y6_c01343{bottom:518.714667pt;}
.y5_c01343{bottom:542.785333pt;}
.y4_c01343{bottom:566.857333pt;}
.y3_c01343{bottom:590.928000pt;}
.y2_c01343{bottom:614.998667pt;}
.y1_c01343{bottom:652.806667pt;}
.h5_c01343{height:31.280681pt;}
.h6_c01343{height:32.006363pt;}
.h3_c01343{height:36.010648pt;}
.h4_c01343{height:46.518078pt;}
.h2_c01343{height:51.855535pt;}
.h0_c01343{height:1122.520000pt;}
.h1_c01343{height:1122.666667pt;}
.w0_c01343{width:793.706667pt;}
.w1_c01343{width:794.000000pt;}
.x0_c01343{left:0.000000pt;}
.x1_c01343{left:113.385333pt;}
.x2_c01343{left:121.886667pt;}
.x3_c01343{left:127.796000pt;}
.x4_c01343{left:386.888000pt;}
}





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

.ir_c01344:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01344;src:url('chunks/assets/font_fb6016465401d1c5d9643881.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01344;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01344{font-family:ff2_c01344;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01344;src:url('chunks/assets/font_fb9437347c34c26f06f6bca9.woff2')format("woff");}.ff3_c01344{font-family:ff3_c01344;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01344;src:url('chunks/assets/font_079c8e4d4feea4bdd4dd31f0.woff2')format("woff");}.ff4_c01344{font-family:ff4_c01344;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01344;src:url('chunks/assets/font_2715462c2db2e8e857fc689e.woff2')format("woff");}.ff5_c01344{font-family:ff5_c01344;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01344{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01344{vertical-align:0.000000px;}
.ls4_c01344{letter-spacing:0.000000px;}
.ls0_c01344{letter-spacing:0.087998px;}
.ls2_c01344{letter-spacing:0.098482px;}
.ls3_c01344{letter-spacing:0.104482px;}
.ls1_c01344{letter-spacing:26.690482px;}
.sc__c01344{text-shadow:none;}
.sc0_c01344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01344{-webkit-text-stroke:0px transparent;}
.sc0_c01344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01344{word-spacing:-26.575517px;}
.ws4_c01344{word-spacing:-26.487518px;}
.wse_c01344{word-spacing:-21.553319px;}
.wsd_c01344{word-spacing:-21.519216px;}
.wsa_c01344{word-spacing:-18.769538px;}
.wsc_c01344{word-spacing:-17.633802px;}
.ws9_c01344{word-spacing:-14.943900px;}
.wsf_c01344{word-spacing:-14.107042px;}
.ws10_c01344{word-spacing:-12.074671px;}
.ws7_c01344{word-spacing:-9.988424px;}
.ws8_c01344{word-spacing:-9.987499px;}
.wsb_c01344{word-spacing:-7.686144px;}
.ws3_c01344{word-spacing:0.000000px;}
.ws0_c01344{word-spacing:0.043999px;}
.ws5_c01344{word-spacing:0.213446px;}
.ws1_c01344{word-spacing:0.219446px;}
.ws6_c01344{word-spacing:43.038600px;}
._2_c01344{margin-left:-6.369713px;}
._3_c01344{margin-left:-1.549390px;}
._1_c01344{width:1.041538px;}
._4_c01344{width:19.935816px;}
._5_c01344{width:40.109428px;}
._0_c01344{width:106.610062px;}
.fc5_c01344{color:rgb(79,153,5);}
.fc4_c01344{color:rgb(143,89,3);}
.fc3_c01344{color:rgb(0,0,0);}
.fc6_c01344{color:rgb(6,69,173);}
.fc2_c01344{color:rgb(207,92,0);}
.fc1_c01344{color:rgb(0,0,207);}
.fc0_c01344{color:rgb(33,74,135);}
.fs0_c01344{font-size:43.999200px;}
.fs2_c01344{font-size:59.775600px;}
.fs1_c01344{font-size:86.077200px;}
.y0_c01344{bottom:0.000000px;}
.y20_c01344{bottom:44.250000px;}
.y1f_c01344{bottom:82.051500px;}
.y1e_c01344{bottom:99.984000px;}
.y1d_c01344{bottom:117.916500px;}
.y1c_c01344{bottom:135.849000px;}
.y1b_c01344{bottom:162.501000px;}
.y1a_c01344{bottom:189.151500px;}
.y19_c01344{bottom:215.802000px;}
.y18_c01344{bottom:242.454000px;}
.y17_c01344{bottom:284.478000px;}
.y16_c01344{bottom:748.903500px;}
.y15_c01344{bottom:765.342000px;}
.y14_c01344{bottom:781.780500px;}
.y13_c01344{bottom:798.219000px;}
.y12_c01344{bottom:814.657500px;}
.y11_c01344{bottom:831.096000px;}
.y10_c01344{bottom:847.534500px;}
.yf_c01344{bottom:863.973000px;}
.ye_c01344{bottom:880.411500px;}
.yd_c01344{bottom:896.848500px;}
.yc_c01344{bottom:913.287000px;}
.yb_c01344{bottom:946.164000px;}
.ya_c01344{bottom:962.602500px;}
.y9_c01344{bottom:979.041000px;}
.y8_c01344{bottom:1011.918000px;}
.y7_c01344{bottom:1028.356500px;}
.y6_c01344{bottom:1044.795000px;}
.y5_c01344{bottom:1061.232000px;}
.y4_c01344{bottom:1077.670500px;}
.y3_c01344{bottom:1094.109000px;}
.y2_c01344{bottom:1110.547500px;}
.y1_c01344{bottom:1159.863000px;}
.h3_c01344{height:35.190766px;}
.h2_c01344{height:36.007158px;}
.h5_c01344{height:40.511979px;}
.h6_c01344{height:52.332837px;}
.h4_c01344{height:58.337477px;}
.h0_c01344{height:1262.835000px;}
.h1_c01344{height:1263.000000px;}
.w0_c01344{width:892.920000px;}
.w1_c01344{width:893.250000px;}
.x0_c01344{left:0.000000px;}
.x4_c01344{left:127.558500px;}
.x2_c01344{left:137.122500px;}
.x1_c01344{left:143.770500px;}
.x3_c01344{left:177.007500px;}
.x5_c01344{left:435.249000px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls4_c01344{letter-spacing:0.000000pt;}
.ls0_c01344{letter-spacing:0.078221pt;}
.ls2_c01344{letter-spacing:0.087539pt;}
.ls3_c01344{letter-spacing:0.092873pt;}
.ls1_c01344{letter-spacing:23.724873pt;}
.ws2_c01344{word-spacing:-23.622682pt;}
.ws4_c01344{word-spacing:-23.544461pt;}
.wse_c01344{word-spacing:-19.158506pt;}
.wsd_c01344{word-spacing:-19.128192pt;}
.wsa_c01344{word-spacing:-16.684034pt;}
.wsc_c01344{word-spacing:-15.674491pt;}
.ws9_c01344{word-spacing:-13.283467pt;}
.wsf_c01344{word-spacing:-12.539593pt;}
.ws10_c01344{word-spacing:-10.733041pt;}
.ws7_c01344{word-spacing:-8.878599pt;}
.ws8_c01344{word-spacing:-8.877777pt;}
.wsb_c01344{word-spacing:-6.832128pt;}
.ws3_c01344{word-spacing:0.000000pt;}
.ws0_c01344{word-spacing:0.039110pt;}
.ws5_c01344{word-spacing:0.189730pt;}
.ws1_c01344{word-spacing:0.195063pt;}
.ws6_c01344{word-spacing:38.256533pt;}
._2_c01344{margin-left:-5.661967pt;}
._3_c01344{margin-left:-1.377235pt;}
._1_c01344{width:0.925811pt;}
._4_c01344{width:17.720725pt;}
._5_c01344{width:35.652825pt;}
._0_c01344{width:94.764499pt;}
.fs0_c01344{font-size:39.110400pt;}
.fs2_c01344{font-size:53.133867pt;}
.fs1_c01344{font-size:76.513067pt;}
.y0_c01344{bottom:0.000000pt;}
.y20_c01344{bottom:39.333333pt;}
.y1f_c01344{bottom:72.934667pt;}
.y1e_c01344{bottom:88.874667pt;}
.y1d_c01344{bottom:104.814667pt;}
.y1c_c01344{bottom:120.754667pt;}
.y1b_c01344{bottom:144.445333pt;}
.y1a_c01344{bottom:168.134667pt;}
.y19_c01344{bottom:191.824000pt;}
.y18_c01344{bottom:215.514667pt;}
.y17_c01344{bottom:252.869333pt;}
.y16_c01344{bottom:665.692000pt;}
.y15_c01344{bottom:680.304000pt;}
.y14_c01344{bottom:694.916000pt;}
.y13_c01344{bottom:709.528000pt;}
.y12_c01344{bottom:724.140000pt;}
.y11_c01344{bottom:738.752000pt;}
.y10_c01344{bottom:753.364000pt;}
.yf_c01344{bottom:767.976000pt;}
.ye_c01344{bottom:782.588000pt;}
.yd_c01344{bottom:797.198667pt;}
.yc_c01344{bottom:811.810667pt;}
.yb_c01344{bottom:841.034667pt;}
.ya_c01344{bottom:855.646667pt;}
.y9_c01344{bottom:870.258667pt;}
.y8_c01344{bottom:899.482667pt;}
.y7_c01344{bottom:914.094667pt;}
.y6_c01344{bottom:928.706667pt;}
.y5_c01344{bottom:943.317333pt;}
.y4_c01344{bottom:957.929333pt;}
.y3_c01344{bottom:972.541333pt;}
.y2_c01344{bottom:987.153333pt;}
.y1_c01344{bottom:1030.989333pt;}
.h3_c01344{height:31.280681pt;}
.h2_c01344{height:32.006363pt;}
.h5_c01344{height:36.010648pt;}
.h6_c01344{height:46.518078pt;}
.h4_c01344{height:51.855535pt;}
.h0_c01344{height:1122.520000pt;}
.h1_c01344{height:1122.666667pt;}
.w0_c01344{width:793.706667pt;}
.w1_c01344{width:794.000000pt;}
.x0_c01344{left:0.000000pt;}
.x4_c01344{left:113.385333pt;}
.x2_c01344{left:121.886667pt;}
.x1_c01344{left:127.796000pt;}
.x3_c01344{left:157.340000pt;}
.x5_c01344{left:386.888000pt;}
}





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

.ir_c01345:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01345;src:url('chunks/assets/font_875a9b1baf5aee2f522de95d.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01345;src:url('chunks/assets/font_3417216d0f9c18fa080cf199.woff2')format("woff");}.ff2_c01345{font-family:ff2_c01345;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01345;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01345{font-family:ff3_c01345;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01345;src:url('chunks/assets/font_f06494874afad7e0153c500a.woff2')format("woff");}.ff4_c01345{font-family:ff4_c01345;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01345{vertical-align:0.000000px;}
.ls4_c01345{letter-spacing:0.000000px;}
.ls1_c01345{letter-spacing:0.087998px;}
.ls2_c01345{letter-spacing:0.098482px;}
.ls0_c01345{letter-spacing:0.104482px;}
.ls3_c01345{letter-spacing:26.690482px;}
.sc__c01345{text-shadow:none;}
.sc0_c01345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01345{-webkit-text-stroke:0px transparent;}
.sc0_c01345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01345{word-spacing:-33.713438px;}
.ws4_c01345{word-spacing:-26.575517px;}
.ws3_c01345{word-spacing:-26.487518px;}
.ws0_c01345{word-spacing:-18.769538px;}
.ws8_c01345{word-spacing:0.000000px;}
.ws5_c01345{word-spacing:0.043999px;}
.wsb_c01345{word-spacing:0.056767px;}
.ws9_c01345{word-spacing:0.073250px;}
.wsa_c01345{word-spacing:0.083734px;}
.ws2_c01345{word-spacing:0.175997px;}
.wsc_c01345{word-spacing:0.202963px;}
.ws6_c01345{word-spacing:0.213446px;}
.ws7_c01345{word-spacing:0.219446px;}
._0_c01345{margin-left:-3.825638px;}
._1_c01345{width:1.005737px;}
._3_c01345{width:53.283031px;}
._2_c01345{width:79.858548px;}
._4_c01345{width:133.452408px;}
.fc5_c01345{color:rgb(0,0,207);}
.fc4_c01345{color:rgb(79,153,5);}
.fc3_c01345{color:rgb(207,92,0);}
.fc2_c01345{color:rgb(33,74,135);}
.fc1_c01345{color:rgb(143,89,3);}
.fc0_c01345{color:rgb(0,0,0);}
.fs1_c01345{font-size:43.999200px;}
.fs0_c01345{font-size:59.775600px;}
.y0_c01345{bottom:0.000000px;}
.y2d_c01345{bottom:44.250000px;}
.y2c_c01345{bottom:96.919500px;}
.y2b_c01345{bottom:113.358000px;}
.y2a_c01345{bottom:129.796500px;}
.y29_c01345{bottom:146.235000px;}
.y28_c01345{bottom:162.673500px;}
.y27_c01345{bottom:179.112000px;}
.y26_c01345{bottom:195.550500px;}
.y25_c01345{bottom:211.989000px;}
.y24_c01345{bottom:228.427500px;}
.y23_c01345{bottom:244.866000px;}
.y22_c01345{bottom:261.304500px;}
.y21_c01345{bottom:294.180000px;}
.y20_c01345{bottom:310.618500px;}
.y1f_c01345{bottom:327.057000px;}
.y1e_c01345{bottom:359.934000px;}
.y1d_c01345{bottom:376.372500px;}
.y1c_c01345{bottom:392.811000px;}
.y1b_c01345{bottom:409.249500px;}
.y1a_c01345{bottom:425.688000px;}
.y19_c01345{bottom:442.125000px;}
.y18_c01345{bottom:458.563500px;}
.y17_c01345{bottom:507.879000px;}
.y16_c01345{bottom:524.317500px;}
.y15_c01345{bottom:540.756000px;}
.y14_c01345{bottom:557.194500px;}
.y13_c01345{bottom:573.633000px;}
.y12_c01345{bottom:590.071500px;}
.y11_c01345{bottom:606.508500px;}
.y10_c01345{bottom:622.947000px;}
.yf_c01345{bottom:639.385500px;}
.ye_c01345{bottom:655.824000px;}
.yd_c01345{bottom:672.262500px;}
.yc_c01345{bottom:688.701000px;}
.yb_c01345{bottom:705.139500px;}
.ya_c01345{bottom:721.578000px;}
.y9_c01345{bottom:738.016500px;}
.y8_c01345{bottom:754.455000px;}
.y7_c01345{bottom:787.330500px;}
.y6_c01345{bottom:803.769000px;}
.y5_c01345{bottom:853.084500px;}
.y4_c01345{bottom:869.523000px;}
.y3_c01345{bottom:885.588000px;}
.y2_c01345{bottom:1141.930500px;}
.y1_c01345{bottom:1159.863000px;}
.h3_c01345{height:35.190766px;}
.h4_c01345{height:36.007158px;}
.h2_c01345{height:52.332837px;}
.h0_c01345{height:1262.835000px;}
.h1_c01345{height:1263.000000px;}
.w0_c01345{width:892.920000px;}
.w1_c01345{width:893.250000px;}
.x0_c01345{left:0.000000px;}
.x1_c01345{left:127.558500px;}
.x2_c01345{left:137.122500px;}
.x3_c01345{left:143.770500px;}
.x4_c01345{left:177.007500px;}
.x5_c01345{left:435.249000px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.ls4_c01345{letter-spacing:0.000000pt;}
.ls1_c01345{letter-spacing:0.078221pt;}
.ls2_c01345{letter-spacing:0.087539pt;}
.ls0_c01345{letter-spacing:0.092873pt;}
.ls3_c01345{letter-spacing:23.724873pt;}
.ws1_c01345{word-spacing:-29.967501pt;}
.ws4_c01345{word-spacing:-23.622682pt;}
.ws3_c01345{word-spacing:-23.544461pt;}
.ws0_c01345{word-spacing:-16.684034pt;}
.ws8_c01345{word-spacing:0.000000pt;}
.ws5_c01345{word-spacing:0.039110pt;}
.wsb_c01345{word-spacing:0.050460pt;}
.ws9_c01345{word-spacing:0.065111pt;}
.wsa_c01345{word-spacing:0.074430pt;}
.ws2_c01345{word-spacing:0.156442pt;}
.wsc_c01345{word-spacing:0.180412pt;}
.ws6_c01345{word-spacing:0.189730pt;}
.ws7_c01345{word-spacing:0.195063pt;}
._0_c01345{margin-left:-3.400567pt;}
._1_c01345{width:0.893988pt;}
._3_c01345{width:47.362694pt;}
._2_c01345{width:70.985376pt;}
._4_c01345{width:118.624363pt;}
.fs1_c01345{font-size:39.110400pt;}
.fs0_c01345{font-size:53.133867pt;}
.y0_c01345{bottom:0.000000pt;}
.y2d_c01345{bottom:39.333333pt;}
.y2c_c01345{bottom:86.150667pt;}
.y2b_c01345{bottom:100.762667pt;}
.y2a_c01345{bottom:115.374667pt;}
.y29_c01345{bottom:129.986667pt;}
.y28_c01345{bottom:144.598667pt;}
.y27_c01345{bottom:159.210667pt;}
.y26_c01345{bottom:173.822667pt;}
.y25_c01345{bottom:188.434667pt;}
.y24_c01345{bottom:203.046667pt;}
.y23_c01345{bottom:217.658667pt;}
.y22_c01345{bottom:232.270667pt;}
.y21_c01345{bottom:261.493333pt;}
.y20_c01345{bottom:276.105333pt;}
.y1f_c01345{bottom:290.717333pt;}
.y1e_c01345{bottom:319.941333pt;}
.y1d_c01345{bottom:334.553333pt;}
.y1c_c01345{bottom:349.165333pt;}
.y1b_c01345{bottom:363.777333pt;}
.y1a_c01345{bottom:378.389333pt;}
.y19_c01345{bottom:393.000000pt;}
.y18_c01345{bottom:407.612000pt;}
.y17_c01345{bottom:451.448000pt;}
.y16_c01345{bottom:466.060000pt;}
.y15_c01345{bottom:480.672000pt;}
.y14_c01345{bottom:495.284000pt;}
.y13_c01345{bottom:509.896000pt;}
.y12_c01345{bottom:524.508000pt;}
.y11_c01345{bottom:539.118667pt;}
.y10_c01345{bottom:553.730667pt;}
.yf_c01345{bottom:568.342667pt;}
.ye_c01345{bottom:582.954667pt;}
.yd_c01345{bottom:597.566667pt;}
.yc_c01345{bottom:612.178667pt;}
.yb_c01345{bottom:626.790667pt;}
.ya_c01345{bottom:641.402667pt;}
.y9_c01345{bottom:656.014667pt;}
.y8_c01345{bottom:670.626667pt;}
.y7_c01345{bottom:699.849333pt;}
.y6_c01345{bottom:714.461333pt;}
.y5_c01345{bottom:758.297333pt;}
.y4_c01345{bottom:772.909333pt;}
.y3_c01345{bottom:787.189333pt;}
.y2_c01345{bottom:1015.049333pt;}
.y1_c01345{bottom:1030.989333pt;}
.h3_c01345{height:31.280681pt;}
.h4_c01345{height:32.006363pt;}
.h2_c01345{height:46.518078pt;}
.h0_c01345{height:1122.520000pt;}
.h1_c01345{height:1122.666667pt;}
.w0_c01345{width:793.706667pt;}
.w1_c01345{width:794.000000pt;}
.x0_c01345{left:0.000000pt;}
.x1_c01345{left:113.385333pt;}
.x2_c01345{left:121.886667pt;}
.x3_c01345{left:127.796000pt;}
.x4_c01345{left:157.340000pt;}
.x5_c01345{left:386.888000pt;}
}





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

.ir_c01346:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01346;src:url('chunks/assets/font_909835360d0c4b28892b21ed.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01346;src:url('chunks/assets/font_0380651ff37aff0f18cd75b2.woff2')format("woff");}.ff2_c01346{font-family:ff2_c01346;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01346;src:url('chunks/assets/font_fe18b89654c8cb5fb4f7ffa6.woff2')format("woff");}.ff3_c01346{font-family:ff3_c01346;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01346;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01346{font-family:ff4_c01346;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01346;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01346{font-family:ff5_c01346;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01346{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01346{vertical-align:0.000000px;}
.ls3_c01346{letter-spacing:0.000000px;}
.ls0_c01346{letter-spacing:0.087998px;}
.ls2_c01346{letter-spacing:0.098482px;}
.ls1_c01346{letter-spacing:0.104482px;}
.sc__c01346{text-shadow:none;}
.sc0_c01346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01346{-webkit-text-stroke:0px transparent;}
.sc0_c01346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01346{word-spacing:-33.713438px;}
.ws2_c01346{word-spacing:-26.575517px;}
.wse_c01346{word-spacing:-26.487518px;}
.ws9_c01346{word-spacing:-21.553319px;}
.ws8_c01346{word-spacing:-21.519216px;}
.ws5_c01346{word-spacing:-18.769538px;}
.ws7_c01346{word-spacing:-17.633802px;}
.ws4_c01346{word-spacing:-14.943900px;}
.wsa_c01346{word-spacing:-14.107042px;}
.wsb_c01346{word-spacing:-12.074671px;}
.ws1_c01346{word-spacing:-9.988424px;}
.ws3_c01346{word-spacing:-9.987499px;}
.ws6_c01346{word-spacing:-7.686144px;}
.ws12_c01346{word-spacing:0.000000px;}
.wsf_c01346{word-spacing:0.043999px;}
.ws15_c01346{word-spacing:0.056767px;}
.ws13_c01346{word-spacing:0.073250px;}
.ws14_c01346{word-spacing:0.083734px;}
.wsd_c01346{word-spacing:0.175997px;}
.ws16_c01346{word-spacing:0.202963px;}
.ws10_c01346{word-spacing:0.213446px;}
.ws11_c01346{word-spacing:0.219446px;}
.ws0_c01346{word-spacing:43.038600px;}
._0_c01346{margin-left:-6.369713px;}
._4_c01346{margin-left:-3.825638px;}
._1_c01346{margin-left:-1.549390px;}
._5_c01346{width:1.005737px;}
._2_c01346{width:19.935816px;}
._3_c01346{width:40.109428px;}
._7_c01346{width:53.283031px;}
._6_c01346{width:79.858548px;}
._8_c01346{width:133.452408px;}
.fc6_c01346{color:rgb(0,0,207);}
.fc5_c01346{color:rgb(79,153,5);}
.fc3_c01346{color:rgb(33,74,135);}
.fc2_c01346{color:rgb(143,89,3);}
.fc4_c01346{color:rgb(207,92,0);}
.fc1_c01346{color:rgb(6,69,173);}
.fc0_c01346{color:rgb(0,0,0);}
.fs2_c01346{font-size:43.999200px;}
.fs1_c01346{font-size:59.775600px;}
.fs0_c01346{font-size:86.077200px;}
.y0_c01346{bottom:0.000000px;}
.y20_c01346{bottom:44.250000px;}
.y1f_c01346{bottom:86.982000px;}
.y1e_c01346{bottom:103.420500px;}
.y1d_c01346{bottom:119.859000px;}
.y1c_c01346{bottom:136.297500px;}
.y1b_c01346{bottom:152.736000px;}
.y1a_c01346{bottom:169.174500px;}
.y19_c01346{bottom:185.613000px;}
.y18_c01346{bottom:202.051500px;}
.y17_c01346{bottom:218.490000px;}
.y16_c01346{bottom:234.927000px;}
.y15_c01346{bottom:251.365500px;}
.y14_c01346{bottom:267.804000px;}
.y13_c01346{bottom:284.242500px;}
.y12_c01346{bottom:300.681000px;}
.y11_c01346{bottom:317.119500px;}
.y10_c01346{bottom:349.996500px;}
.yf_c01346{bottom:366.435000px;}
.ye_c01346{bottom:415.749000px;}
.yd_c01346{bottom:432.187500px;}
.yc_c01346{bottom:448.252500px;}
.yb_c01346{bottom:493.890000px;}
.ya_c01346{bottom:511.822500px;}
.y9_c01346{bottom:529.756500px;}
.y8_c01346{bottom:547.689000px;}
.y7_c01346{bottom:565.621500px;}
.y6_c01346{bottom:583.554000px;}
.y5_c01346{bottom:610.633500px;}
.y4_c01346{bottom:637.714500px;}
.y3_c01346{bottom:664.794000px;}
.y2_c01346{bottom:691.873500px;}
.y1_c01346{bottom:734.407500px;}
.h5_c01346{height:35.190766px;}
.h6_c01346{height:36.007158px;}
.h3_c01346{height:40.511979px;}
.h4_c01346{height:52.332837px;}
.h2_c01346{height:58.337477px;}
.h0_c01346{height:1262.835000px;}
.h1_c01346{height:1263.000000px;}
.w0_c01346{width:892.920000px;}
.w1_c01346{width:893.250000px;}
.x0_c01346{left:0.000000px;}
.x1_c01346{left:127.558500px;}
.x2_c01346{left:137.122500px;}
.x3_c01346{left:143.770500px;}
.x4_c01346{left:435.249000px;}
@media print{
.v0_c01346{vertical-align:0.000000pt;}
.ls3_c01346{letter-spacing:0.000000pt;}
.ls0_c01346{letter-spacing:0.078221pt;}
.ls2_c01346{letter-spacing:0.087539pt;}
.ls1_c01346{letter-spacing:0.092873pt;}
.wsc_c01346{word-spacing:-29.967501pt;}
.ws2_c01346{word-spacing:-23.622682pt;}
.wse_c01346{word-spacing:-23.544461pt;}
.ws9_c01346{word-spacing:-19.158506pt;}
.ws8_c01346{word-spacing:-19.128192pt;}
.ws5_c01346{word-spacing:-16.684034pt;}
.ws7_c01346{word-spacing:-15.674491pt;}
.ws4_c01346{word-spacing:-13.283467pt;}
.wsa_c01346{word-spacing:-12.539593pt;}
.wsb_c01346{word-spacing:-10.733041pt;}
.ws1_c01346{word-spacing:-8.878599pt;}
.ws3_c01346{word-spacing:-8.877777pt;}
.ws6_c01346{word-spacing:-6.832128pt;}
.ws12_c01346{word-spacing:0.000000pt;}
.wsf_c01346{word-spacing:0.039110pt;}
.ws15_c01346{word-spacing:0.050460pt;}
.ws13_c01346{word-spacing:0.065111pt;}
.ws14_c01346{word-spacing:0.074430pt;}
.wsd_c01346{word-spacing:0.156442pt;}
.ws16_c01346{word-spacing:0.180412pt;}
.ws10_c01346{word-spacing:0.189730pt;}
.ws11_c01346{word-spacing:0.195063pt;}
.ws0_c01346{word-spacing:38.256533pt;}
._0_c01346{margin-left:-5.661967pt;}
._4_c01346{margin-left:-3.400567pt;}
._1_c01346{margin-left:-1.377235pt;}
._5_c01346{width:0.893988pt;}
._2_c01346{width:17.720725pt;}
._3_c01346{width:35.652825pt;}
._7_c01346{width:47.362694pt;}
._6_c01346{width:70.985376pt;}
._8_c01346{width:118.624363pt;}
.fs2_c01346{font-size:39.110400pt;}
.fs1_c01346{font-size:53.133867pt;}
.fs0_c01346{font-size:76.513067pt;}
.y0_c01346{bottom:0.000000pt;}
.y20_c01346{bottom:39.333333pt;}
.y1f_c01346{bottom:77.317333pt;}
.y1e_c01346{bottom:91.929333pt;}
.y1d_c01346{bottom:106.541333pt;}
.y1c_c01346{bottom:121.153333pt;}
.y1b_c01346{bottom:135.765333pt;}
.y1a_c01346{bottom:150.377333pt;}
.y19_c01346{bottom:164.989333pt;}
.y18_c01346{bottom:179.601333pt;}
.y17_c01346{bottom:194.213333pt;}
.y16_c01346{bottom:208.824000pt;}
.y15_c01346{bottom:223.436000pt;}
.y14_c01346{bottom:238.048000pt;}
.y13_c01346{bottom:252.660000pt;}
.y12_c01346{bottom:267.272000pt;}
.y11_c01346{bottom:281.884000pt;}
.y10_c01346{bottom:311.108000pt;}
.yf_c01346{bottom:325.720000pt;}
.ye_c01346{bottom:369.554667pt;}
.yd_c01346{bottom:384.166667pt;}
.yc_c01346{bottom:398.446667pt;}
.yb_c01346{bottom:439.013333pt;}
.ya_c01346{bottom:454.953333pt;}
.y9_c01346{bottom:470.894667pt;}
.y8_c01346{bottom:486.834667pt;}
.y7_c01346{bottom:502.774667pt;}
.y6_c01346{bottom:518.714667pt;}
.y5_c01346{bottom:542.785333pt;}
.y4_c01346{bottom:566.857333pt;}
.y3_c01346{bottom:590.928000pt;}
.y2_c01346{bottom:614.998667pt;}
.y1_c01346{bottom:652.806667pt;}
.h5_c01346{height:31.280681pt;}
.h6_c01346{height:32.006363pt;}
.h3_c01346{height:36.010648pt;}
.h4_c01346{height:46.518078pt;}
.h2_c01346{height:51.855535pt;}
.h0_c01346{height:1122.520000pt;}
.h1_c01346{height:1122.666667pt;}
.w0_c01346{width:793.706667pt;}
.w1_c01346{width:794.000000pt;}
.x0_c01346{left:0.000000pt;}
.x1_c01346{left:113.385333pt;}
.x2_c01346{left:121.886667pt;}
.x3_c01346{left:127.796000pt;}
.x4_c01346{left:386.888000pt;}
}





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

.ir_c01347:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01347;src:url('chunks/assets/font_fb6016465401d1c5d9643881.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01347;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01347{font-family:ff2_c01347;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01347;src:url('chunks/assets/font_a293c6c4bb19e278fa72b275.woff2')format("woff");}.ff3_c01347{font-family:ff3_c01347;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01347;src:url('chunks/assets/font_b3e2aa30f6279cfadbe37542.woff2')format("woff");}.ff4_c01347{font-family:ff4_c01347;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01347;src:url('chunks/assets/font_4504433951836583f5f83c03.woff2')format("woff");}.ff5_c01347{font-family:ff5_c01347;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01347{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01347{vertical-align:0.000000px;}
.ls4_c01347{letter-spacing:0.000000px;}
.ls0_c01347{letter-spacing:0.087998px;}
.ls2_c01347{letter-spacing:0.098482px;}
.ls3_c01347{letter-spacing:0.104482px;}
.ls1_c01347{letter-spacing:26.690482px;}
.sc__c01347{text-shadow:none;}
.sc0_c01347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01347{-webkit-text-stroke:0px transparent;}
.sc0_c01347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01347{word-spacing:-26.575517px;}
.ws4_c01347{word-spacing:-26.487518px;}
.wse_c01347{word-spacing:-21.553319px;}
.wsd_c01347{word-spacing:-21.519216px;}
.wsc_c01347{word-spacing:-19.247743px;}
.wsa_c01347{word-spacing:-18.769538px;}
.ws9_c01347{word-spacing:-14.943900px;}
.wsf_c01347{word-spacing:-14.107042px;}
.ws10_c01347{word-spacing:-12.074671px;}
.wsb_c01347{word-spacing:-10.230144px;}
.ws7_c01347{word-spacing:-9.988424px;}
.ws8_c01347{word-spacing:-9.987499px;}
.ws3_c01347{word-spacing:0.000000px;}
.ws0_c01347{word-spacing:0.043999px;}
.ws5_c01347{word-spacing:0.213446px;}
.ws1_c01347{word-spacing:0.219446px;}
.ws6_c01347{word-spacing:43.038600px;}
._2_c01347{margin-left:-6.369713px;}
._3_c01347{margin-left:-1.549390px;}
._1_c01347{width:1.041538px;}
._4_c01347{width:19.935816px;}
._5_c01347{width:40.109428px;}
._0_c01347{width:80.034545px;}
.fc5_c01347{color:rgb(79,153,5);}
.fc4_c01347{color:rgb(143,89,3);}
.fc3_c01347{color:rgb(0,0,0);}
.fc6_c01347{color:rgb(6,69,173);}
.fc2_c01347{color:rgb(207,92,0);}
.fc1_c01347{color:rgb(0,0,207);}
.fc0_c01347{color:rgb(33,74,135);}
.fs0_c01347{font-size:43.999200px;}
.fs2_c01347{font-size:59.775600px;}
.fs1_c01347{font-size:86.077200px;}
.y0_c01347{bottom:0.000000px;}
.y20_c01347{bottom:44.250000px;}
.y1f_c01347{bottom:82.051500px;}
.y1e_c01347{bottom:99.984000px;}
.y1d_c01347{bottom:117.916500px;}
.y1c_c01347{bottom:135.849000px;}
.y1b_c01347{bottom:162.501000px;}
.y1a_c01347{bottom:189.151500px;}
.y19_c01347{bottom:215.802000px;}
.y18_c01347{bottom:242.454000px;}
.y17_c01347{bottom:284.478000px;}
.y16_c01347{bottom:748.903500px;}
.y15_c01347{bottom:765.342000px;}
.y14_c01347{bottom:781.780500px;}
.y13_c01347{bottom:798.219000px;}
.y12_c01347{bottom:814.657500px;}
.y11_c01347{bottom:831.096000px;}
.y10_c01347{bottom:847.534500px;}
.yf_c01347{bottom:863.973000px;}
.ye_c01347{bottom:880.411500px;}
.yd_c01347{bottom:896.848500px;}
.yc_c01347{bottom:913.287000px;}
.yb_c01347{bottom:946.164000px;}
.ya_c01347{bottom:962.602500px;}
.y9_c01347{bottom:979.041000px;}
.y8_c01347{bottom:1011.918000px;}
.y7_c01347{bottom:1028.356500px;}
.y6_c01347{bottom:1044.795000px;}
.y5_c01347{bottom:1061.232000px;}
.y4_c01347{bottom:1077.670500px;}
.y3_c01347{bottom:1094.109000px;}
.y2_c01347{bottom:1110.547500px;}
.y1_c01347{bottom:1159.863000px;}
.h3_c01347{height:35.190766px;}
.h2_c01347{height:36.007158px;}
.h5_c01347{height:40.511979px;}
.h6_c01347{height:52.332837px;}
.h4_c01347{height:58.337477px;}
.h0_c01347{height:1262.835000px;}
.h1_c01347{height:1263.000000px;}
.w0_c01347{width:892.920000px;}
.w1_c01347{width:893.250000px;}
.x0_c01347{left:0.000000px;}
.x4_c01347{left:127.558500px;}
.x2_c01347{left:137.122500px;}
.x1_c01347{left:143.770500px;}
.x3_c01347{left:177.007500px;}
.x5_c01347{left:435.249000px;}
@media print{
.v0_c01347{vertical-align:0.000000pt;}
.ls4_c01347{letter-spacing:0.000000pt;}
.ls0_c01347{letter-spacing:0.078221pt;}
.ls2_c01347{letter-spacing:0.087539pt;}
.ls3_c01347{letter-spacing:0.092873pt;}
.ls1_c01347{letter-spacing:23.724873pt;}
.ws2_c01347{word-spacing:-23.622682pt;}
.ws4_c01347{word-spacing:-23.544461pt;}
.wse_c01347{word-spacing:-19.158506pt;}
.wsd_c01347{word-spacing:-19.128192pt;}
.wsc_c01347{word-spacing:-17.109105pt;}
.wsa_c01347{word-spacing:-16.684034pt;}
.ws9_c01347{word-spacing:-13.283467pt;}
.wsf_c01347{word-spacing:-12.539593pt;}
.ws10_c01347{word-spacing:-10.733041pt;}
.wsb_c01347{word-spacing:-9.093461pt;}
.ws7_c01347{word-spacing:-8.878599pt;}
.ws8_c01347{word-spacing:-8.877777pt;}
.ws3_c01347{word-spacing:0.000000pt;}
.ws0_c01347{word-spacing:0.039110pt;}
.ws5_c01347{word-spacing:0.189730pt;}
.ws1_c01347{word-spacing:0.195063pt;}
.ws6_c01347{word-spacing:38.256533pt;}
._2_c01347{margin-left:-5.661967pt;}
._3_c01347{margin-left:-1.377235pt;}
._1_c01347{width:0.925811pt;}
._4_c01347{width:17.720725pt;}
._5_c01347{width:35.652825pt;}
._0_c01347{width:71.141818pt;}
.fs0_c01347{font-size:39.110400pt;}
.fs2_c01347{font-size:53.133867pt;}
.fs1_c01347{font-size:76.513067pt;}
.y0_c01347{bottom:0.000000pt;}
.y20_c01347{bottom:39.333333pt;}
.y1f_c01347{bottom:72.934667pt;}
.y1e_c01347{bottom:88.874667pt;}
.y1d_c01347{bottom:104.814667pt;}
.y1c_c01347{bottom:120.754667pt;}
.y1b_c01347{bottom:144.445333pt;}
.y1a_c01347{bottom:168.134667pt;}
.y19_c01347{bottom:191.824000pt;}
.y18_c01347{bottom:215.514667pt;}
.y17_c01347{bottom:252.869333pt;}
.y16_c01347{bottom:665.692000pt;}
.y15_c01347{bottom:680.304000pt;}
.y14_c01347{bottom:694.916000pt;}
.y13_c01347{bottom:709.528000pt;}
.y12_c01347{bottom:724.140000pt;}
.y11_c01347{bottom:738.752000pt;}
.y10_c01347{bottom:753.364000pt;}
.yf_c01347{bottom:767.976000pt;}
.ye_c01347{bottom:782.588000pt;}
.yd_c01347{bottom:797.198667pt;}
.yc_c01347{bottom:811.810667pt;}
.yb_c01347{bottom:841.034667pt;}
.ya_c01347{bottom:855.646667pt;}
.y9_c01347{bottom:870.258667pt;}
.y8_c01347{bottom:899.482667pt;}
.y7_c01347{bottom:914.094667pt;}
.y6_c01347{bottom:928.706667pt;}
.y5_c01347{bottom:943.317333pt;}
.y4_c01347{bottom:957.929333pt;}
.y3_c01347{bottom:972.541333pt;}
.y2_c01347{bottom:987.153333pt;}
.y1_c01347{bottom:1030.989333pt;}
.h3_c01347{height:31.280681pt;}
.h2_c01347{height:32.006363pt;}
.h5_c01347{height:36.010648pt;}
.h6_c01347{height:46.518078pt;}
.h4_c01347{height:51.855535pt;}
.h0_c01347{height:1122.520000pt;}
.h1_c01347{height:1122.666667pt;}
.w0_c01347{width:793.706667pt;}
.w1_c01347{width:794.000000pt;}
.x0_c01347{left:0.000000pt;}
.x4_c01347{left:113.385333pt;}
.x2_c01347{left:121.886667pt;}
.x1_c01347{left:127.796000pt;}
.x3_c01347{left:157.340000pt;}
.x5_c01347{left:386.888000pt;}
}





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

.ir_c01348:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01348;src:url('chunks/assets/font_6b67640bb2a010d4db66c242.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01348;src:url('chunks/assets/font_0ab258c7347ed19caba1e647.woff2')format("woff");}.ff2_c01348{font-family:ff2_c01348;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01348;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01348{font-family:ff3_c01348;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01348;src:url('chunks/assets/font_f06494874afad7e0153c500a.woff2')format("woff");}.ff4_c01348{font-family:ff4_c01348;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01348{vertical-align:0.000000px;}
.ls4_c01348{letter-spacing:0.000000px;}
.ls1_c01348{letter-spacing:0.087998px;}
.ls2_c01348{letter-spacing:0.098482px;}
.ls0_c01348{letter-spacing:0.104482px;}
.ls3_c01348{letter-spacing:26.690482px;}
.sc__c01348{text-shadow:none;}
.sc0_c01348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01348{-webkit-text-stroke:0px transparent;}
.sc0_c01348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01348{word-spacing:-33.713438px;}
.ws4_c01348{word-spacing:-26.575517px;}
.ws3_c01348{word-spacing:-26.487518px;}
.ws0_c01348{word-spacing:-18.769538px;}
.ws8_c01348{word-spacing:0.000000px;}
.ws5_c01348{word-spacing:0.043999px;}
.wsb_c01348{word-spacing:0.056767px;}
.ws9_c01348{word-spacing:0.073250px;}
.wsa_c01348{word-spacing:0.083734px;}
.ws2_c01348{word-spacing:0.175997px;}
.wsc_c01348{word-spacing:0.202963px;}
.ws6_c01348{word-spacing:0.213446px;}
.ws7_c01348{word-spacing:0.219446px;}
._0_c01348{margin-left:-3.825638px;}
._1_c01348{width:1.005737px;}
._3_c01348{width:53.283031px;}
._2_c01348{width:79.858548px;}
._4_c01348{width:133.452408px;}
.fc5_c01348{color:rgb(0,0,207);}
.fc4_c01348{color:rgb(79,153,5);}
.fc3_c01348{color:rgb(207,92,0);}
.fc2_c01348{color:rgb(33,74,135);}
.fc1_c01348{color:rgb(143,89,3);}
.fc0_c01348{color:rgb(0,0,0);}
.fs1_c01348{font-size:43.999200px;}
.fs0_c01348{font-size:59.775600px;}
.y0_c01348{bottom:0.000000px;}
.y2d_c01348{bottom:44.250000px;}
.y2c_c01348{bottom:96.919500px;}
.y2b_c01348{bottom:113.358000px;}
.y2a_c01348{bottom:129.796500px;}
.y29_c01348{bottom:146.235000px;}
.y28_c01348{bottom:162.673500px;}
.y27_c01348{bottom:179.112000px;}
.y26_c01348{bottom:195.550500px;}
.y25_c01348{bottom:211.989000px;}
.y24_c01348{bottom:228.427500px;}
.y23_c01348{bottom:244.866000px;}
.y22_c01348{bottom:261.304500px;}
.y21_c01348{bottom:294.180000px;}
.y20_c01348{bottom:310.618500px;}
.y1f_c01348{bottom:327.057000px;}
.y1e_c01348{bottom:359.934000px;}
.y1d_c01348{bottom:376.372500px;}
.y1c_c01348{bottom:392.811000px;}
.y1b_c01348{bottom:409.249500px;}
.y1a_c01348{bottom:425.688000px;}
.y19_c01348{bottom:442.125000px;}
.y18_c01348{bottom:458.563500px;}
.y17_c01348{bottom:507.879000px;}
.y16_c01348{bottom:524.317500px;}
.y15_c01348{bottom:540.756000px;}
.y14_c01348{bottom:557.194500px;}
.y13_c01348{bottom:573.633000px;}
.y12_c01348{bottom:590.071500px;}
.y11_c01348{bottom:606.508500px;}
.y10_c01348{bottom:622.947000px;}
.yf_c01348{bottom:639.385500px;}
.ye_c01348{bottom:655.824000px;}
.yd_c01348{bottom:672.262500px;}
.yc_c01348{bottom:688.701000px;}
.yb_c01348{bottom:705.139500px;}
.ya_c01348{bottom:721.578000px;}
.y9_c01348{bottom:738.016500px;}
.y8_c01348{bottom:754.455000px;}
.y7_c01348{bottom:787.330500px;}
.y6_c01348{bottom:803.769000px;}
.y5_c01348{bottom:853.084500px;}
.y4_c01348{bottom:869.523000px;}
.y3_c01348{bottom:885.588000px;}
.y2_c01348{bottom:1141.930500px;}
.y1_c01348{bottom:1159.863000px;}
.h3_c01348{height:35.190766px;}
.h4_c01348{height:36.007158px;}
.h2_c01348{height:52.332837px;}
.h0_c01348{height:1262.835000px;}
.h1_c01348{height:1263.000000px;}
.w0_c01348{width:892.920000px;}
.w1_c01348{width:893.250000px;}
.x0_c01348{left:0.000000px;}
.x1_c01348{left:127.558500px;}
.x2_c01348{left:137.122500px;}
.x3_c01348{left:143.770500px;}
.x4_c01348{left:177.007500px;}
.x5_c01348{left:435.249000px;}
@media print{
.v0_c01348{vertical-align:0.000000pt;}
.ls4_c01348{letter-spacing:0.000000pt;}
.ls1_c01348{letter-spacing:0.078221pt;}
.ls2_c01348{letter-spacing:0.087539pt;}
.ls0_c01348{letter-spacing:0.092873pt;}
.ls3_c01348{letter-spacing:23.724873pt;}
.ws1_c01348{word-spacing:-29.967501pt;}
.ws4_c01348{word-spacing:-23.622682pt;}
.ws3_c01348{word-spacing:-23.544461pt;}
.ws0_c01348{word-spacing:-16.684034pt;}
.ws8_c01348{word-spacing:0.000000pt;}
.ws5_c01348{word-spacing:0.039110pt;}
.wsb_c01348{word-spacing:0.050460pt;}
.ws9_c01348{word-spacing:0.065111pt;}
.wsa_c01348{word-spacing:0.074430pt;}
.ws2_c01348{word-spacing:0.156442pt;}
.wsc_c01348{word-spacing:0.180412pt;}
.ws6_c01348{word-spacing:0.189730pt;}
.ws7_c01348{word-spacing:0.195063pt;}
._0_c01348{margin-left:-3.400567pt;}
._1_c01348{width:0.893988pt;}
._3_c01348{width:47.362694pt;}
._2_c01348{width:70.985376pt;}
._4_c01348{width:118.624363pt;}
.fs1_c01348{font-size:39.110400pt;}
.fs0_c01348{font-size:53.133867pt;}
.y0_c01348{bottom:0.000000pt;}
.y2d_c01348{bottom:39.333333pt;}
.y2c_c01348{bottom:86.150667pt;}
.y2b_c01348{bottom:100.762667pt;}
.y2a_c01348{bottom:115.374667pt;}
.y29_c01348{bottom:129.986667pt;}
.y28_c01348{bottom:144.598667pt;}
.y27_c01348{bottom:159.210667pt;}
.y26_c01348{bottom:173.822667pt;}
.y25_c01348{bottom:188.434667pt;}
.y24_c01348{bottom:203.046667pt;}
.y23_c01348{bottom:217.658667pt;}
.y22_c01348{bottom:232.270667pt;}
.y21_c01348{bottom:261.493333pt;}
.y20_c01348{bottom:276.105333pt;}
.y1f_c01348{bottom:290.717333pt;}
.y1e_c01348{bottom:319.941333pt;}
.y1d_c01348{bottom:334.553333pt;}
.y1c_c01348{bottom:349.165333pt;}
.y1b_c01348{bottom:363.777333pt;}
.y1a_c01348{bottom:378.389333pt;}
.y19_c01348{bottom:393.000000pt;}
.y18_c01348{bottom:407.612000pt;}
.y17_c01348{bottom:451.448000pt;}
.y16_c01348{bottom:466.060000pt;}
.y15_c01348{bottom:480.672000pt;}
.y14_c01348{bottom:495.284000pt;}
.y13_c01348{bottom:509.896000pt;}
.y12_c01348{bottom:524.508000pt;}
.y11_c01348{bottom:539.118667pt;}
.y10_c01348{bottom:553.730667pt;}
.yf_c01348{bottom:568.342667pt;}
.ye_c01348{bottom:582.954667pt;}
.yd_c01348{bottom:597.566667pt;}
.yc_c01348{bottom:612.178667pt;}
.yb_c01348{bottom:626.790667pt;}
.ya_c01348{bottom:641.402667pt;}
.y9_c01348{bottom:656.014667pt;}
.y8_c01348{bottom:670.626667pt;}
.y7_c01348{bottom:699.849333pt;}
.y6_c01348{bottom:714.461333pt;}
.y5_c01348{bottom:758.297333pt;}
.y4_c01348{bottom:772.909333pt;}
.y3_c01348{bottom:787.189333pt;}
.y2_c01348{bottom:1015.049333pt;}
.y1_c01348{bottom:1030.989333pt;}
.h3_c01348{height:31.280681pt;}
.h4_c01348{height:32.006363pt;}
.h2_c01348{height:46.518078pt;}
.h0_c01348{height:1122.520000pt;}
.h1_c01348{height:1122.666667pt;}
.w0_c01348{width:793.706667pt;}
.w1_c01348{width:794.000000pt;}
.x0_c01348{left:0.000000pt;}
.x1_c01348{left:113.385333pt;}
.x2_c01348{left:121.886667pt;}
.x3_c01348{left:127.796000pt;}
.x4_c01348{left:157.340000pt;}
.x5_c01348{left:386.888000pt;}
}





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

.ir_c01349:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01349;src:url('chunks/assets/font_c15fc741c628f254222e7ebd.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01349;src:url('chunks/assets/font_385107fb32cd3073c2eeaeab.woff2')format("woff");}.ff2_c01349{font-family:ff2_c01349;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01349;src:url('chunks/assets/font_1c96f22da5d0c392b7b49e3e.woff2')format("woff");}.ff3_c01349{font-family:ff3_c01349;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01349;src:url('chunks/assets/font_7dafd96e71a89cb370e052c1.woff2')format("woff");}.ff4_c01349{font-family:ff4_c01349;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01349;src:url('chunks/assets/font_ae77e2213656b323e6860fe5.woff2')format("woff");}.ff5_c01349{font-family:ff5_c01349;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01349{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01349{vertical-align:0.000000px;}
.ls3_c01349{letter-spacing:0.000000px;}
.ls0_c01349{letter-spacing:0.087998px;}
.ls2_c01349{letter-spacing:0.098482px;}
.ls1_c01349{letter-spacing:0.104482px;}
.sc__c01349{text-shadow:none;}
.sc0_c01349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01349{-webkit-text-stroke:0px transparent;}
.sc0_c01349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01349{word-spacing:-26.575517px;}
.wse_c01349{word-spacing:-26.487518px;}
.ws8_c01349{word-spacing:-21.051948px;}
.ws7_c01349{word-spacing:-20.981236px;}
.ws5_c01349{word-spacing:-18.769538px;}
.ws9_c01349{word-spacing:-17.813129px;}
.wsa_c01349{word-spacing:-16.318739px;}
.ws4_c01349{word-spacing:-14.943900px;}
.wsc_c01349{word-spacing:-13.688612px;}
.wsb_c01349{word-spacing:-13.509286px;}
.ws6_c01349{word-spacing:-11.100144px;}
.ws1_c01349{word-spacing:-9.988424px;}
.ws3_c01349{word-spacing:-9.987499px;}
.ws12_c01349{word-spacing:0.000000px;}
.wsf_c01349{word-spacing:0.043999px;}
.wsd_c01349{word-spacing:0.175997px;}
.ws11_c01349{word-spacing:0.213446px;}
.ws10_c01349{word-spacing:0.219446px;}
.ws0_c01349{word-spacing:43.038600px;}
._0_c01349{margin-left:-6.369713px;}
._6_c01349{margin-left:-4.124516px;}
._1_c01349{margin-left:-1.549390px;}
._7_c01349{width:1.005737px;}
._2_c01349{width:19.935816px;}
._5_c01349{width:21.519216px;}
._3_c01349{width:23.252708px;}
._4_c01349{width:35.626258px;}
._8_c01349{width:53.591026px;}
.fc5_c01349{color:rgb(79,153,5);}
.fc3_c01349{color:rgb(33,74,135);}
.fc2_c01349{color:rgb(143,89,3);}
.fc4_c01349{color:rgb(207,92,0);}
.fc1_c01349{color:rgb(6,69,173);}
.fc0_c01349{color:rgb(0,0,0);}
.fs2_c01349{font-size:43.999200px;}
.fs1_c01349{font-size:59.775600px;}
.fs0_c01349{font-size:86.077200px;}
.y0_c01349{bottom:0.000000px;}
.y1e_c01349{bottom:44.250000px;}
.y1d_c01349{bottom:86.982000px;}
.y1c_c01349{bottom:136.297500px;}
.y1b_c01349{bottom:152.736000px;}
.y1a_c01349{bottom:185.613000px;}
.y19_c01349{bottom:202.051500px;}
.y18_c01349{bottom:234.927000px;}
.y17_c01349{bottom:251.365500px;}
.y16_c01349{bottom:267.804000px;}
.y15_c01349{bottom:284.242500px;}
.y14_c01349{bottom:317.119500px;}
.y13_c01349{bottom:333.558000px;}
.y12_c01349{bottom:349.996500px;}
.y11_c01349{bottom:366.435000px;}
.y10_c01349{bottom:382.873500px;}
.yf_c01349{bottom:399.310500px;}
.ye_c01349{bottom:415.749000px;}
.yd_c01349{bottom:432.187500px;}
.yc_c01349{bottom:448.252500px;}
.yb_c01349{bottom:495.994500px;}
.ya_c01349{bottom:513.927000px;}
.y9_c01349{bottom:531.859500px;}
.y8_c01349{bottom:549.792000px;}
.y7_c01349{bottom:567.726000px;}
.y6_c01349{bottom:585.658500px;}
.y5_c01349{bottom:612.480000px;}
.y4_c01349{bottom:639.301500px;}
.y3_c01349{bottom:666.123000px;}
.y2_c01349{bottom:692.944500px;}
.y1_c01349{bottom:735.139500px;}
.h5_c01349{height:35.190766px;}
.h6_c01349{height:36.007158px;}
.h3_c01349{height:40.511979px;}
.h4_c01349{height:52.332837px;}
.h2_c01349{height:58.337477px;}
.h0_c01349{height:1262.835000px;}
.h1_c01349{height:1263.000000px;}
.w0_c01349{width:892.920000px;}
.w1_c01349{width:893.250000px;}
.x0_c01349{left:0.000000px;}
.x1_c01349{left:127.558500px;}
.x2_c01349{left:137.122500px;}
.x3_c01349{left:435.249000px;}
@media print{
.v0_c01349{vertical-align:0.000000pt;}
.ls3_c01349{letter-spacing:0.000000pt;}
.ls0_c01349{letter-spacing:0.078221pt;}
.ls2_c01349{letter-spacing:0.087539pt;}
.ls1_c01349{letter-spacing:0.092873pt;}
.ws2_c01349{word-spacing:-23.622682pt;}
.wse_c01349{word-spacing:-23.544461pt;}
.ws8_c01349{word-spacing:-18.712843pt;}
.ws7_c01349{word-spacing:-18.649987pt;}
.ws5_c01349{word-spacing:-16.684034pt;}
.ws9_c01349{word-spacing:-15.833892pt;}
.wsa_c01349{word-spacing:-14.505546pt;}
.ws4_c01349{word-spacing:-13.283467pt;}
.wsc_c01349{word-spacing:-12.167655pt;}
.wsb_c01349{word-spacing:-12.008254pt;}
.ws6_c01349{word-spacing:-9.866795pt;}
.ws1_c01349{word-spacing:-8.878599pt;}
.ws3_c01349{word-spacing:-8.877777pt;}
.ws12_c01349{word-spacing:0.000000pt;}
.wsf_c01349{word-spacing:0.039110pt;}
.wsd_c01349{word-spacing:0.156442pt;}
.ws11_c01349{word-spacing:0.189730pt;}
.ws10_c01349{word-spacing:0.195063pt;}
.ws0_c01349{word-spacing:38.256533pt;}
._0_c01349{margin-left:-5.661967pt;}
._6_c01349{margin-left:-3.666237pt;}
._1_c01349{margin-left:-1.377235pt;}
._7_c01349{width:0.893988pt;}
._2_c01349{width:17.720725pt;}
._5_c01349{width:19.128192pt;}
._3_c01349{width:20.669074pt;}
._4_c01349{width:31.667785pt;}
._8_c01349{width:47.636467pt;}
.fs2_c01349{font-size:39.110400pt;}
.fs1_c01349{font-size:53.133867pt;}
.fs0_c01349{font-size:76.513067pt;}
.y0_c01349{bottom:0.000000pt;}
.y1e_c01349{bottom:39.333333pt;}
.y1d_c01349{bottom:77.317333pt;}
.y1c_c01349{bottom:121.153333pt;}
.y1b_c01349{bottom:135.765333pt;}
.y1a_c01349{bottom:164.989333pt;}
.y19_c01349{bottom:179.601333pt;}
.y18_c01349{bottom:208.824000pt;}
.y17_c01349{bottom:223.436000pt;}
.y16_c01349{bottom:238.048000pt;}
.y15_c01349{bottom:252.660000pt;}
.y14_c01349{bottom:281.884000pt;}
.y13_c01349{bottom:296.496000pt;}
.y12_c01349{bottom:311.108000pt;}
.y11_c01349{bottom:325.720000pt;}
.y10_c01349{bottom:340.332000pt;}
.yf_c01349{bottom:354.942667pt;}
.ye_c01349{bottom:369.554667pt;}
.yd_c01349{bottom:384.166667pt;}
.yc_c01349{bottom:398.446667pt;}
.yb_c01349{bottom:440.884000pt;}
.ya_c01349{bottom:456.824000pt;}
.y9_c01349{bottom:472.764000pt;}
.y8_c01349{bottom:488.704000pt;}
.y7_c01349{bottom:504.645333pt;}
.y6_c01349{bottom:520.585333pt;}
.y5_c01349{bottom:544.426667pt;}
.y4_c01349{bottom:568.268000pt;}
.y3_c01349{bottom:592.109333pt;}
.y2_c01349{bottom:615.950667pt;}
.y1_c01349{bottom:653.457333pt;}
.h5_c01349{height:31.280681pt;}
.h6_c01349{height:32.006363pt;}
.h3_c01349{height:36.010648pt;}
.h4_c01349{height:46.518078pt;}
.h2_c01349{height:51.855535pt;}
.h0_c01349{height:1122.520000pt;}
.h1_c01349{height:1122.666667pt;}
.w0_c01349{width:793.706667pt;}
.w1_c01349{width:794.000000pt;}
.x0_c01349{left:0.000000pt;}
.x1_c01349{left:113.385333pt;}
.x2_c01349{left:121.886667pt;}
.x3_c01349{left:386.888000pt;}
}





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

.ir_c01350:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01350;src:url('chunks/assets/font_16dadd55bee4ef0cd6cb2100.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01350;src:url('chunks/assets/font_f89fa032ed2e7bf8277eea5e.woff2')format("woff");}.ff2_c01350{font-family:ff2_c01350;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01350;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01350{font-family:ff3_c01350;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01350;src:url('chunks/assets/font_0b0500f7cf2e8cdb9845d077.woff2')format("woff");}.ff4_c01350{font-family:ff4_c01350;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01350;src:url('chunks/assets/font_8e204c482e9010c6ba852ee8.woff2')format("woff");}.ff5_c01350{font-family:ff5_c01350;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01350{vertical-align:0.000000px;}
.ls3_c01350{letter-spacing:0.000000px;}
.ls0_c01350{letter-spacing:0.087998px;}
.ls1_c01350{letter-spacing:0.098482px;}
.ls2_c01350{letter-spacing:0.104482px;}
.sc__c01350{text-shadow:none;}
.sc0_c01350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01350{-webkit-text-stroke:0px transparent;}
.sc0_c01350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01350{word-spacing:-26.575517px;}
.ws1_c01350{word-spacing:-26.487518px;}
.wsa_c01350{word-spacing:-18.769538px;}
.ws9_c01350{word-spacing:-14.943900px;}
.ws7_c01350{word-spacing:-9.988424px;}
.ws8_c01350{word-spacing:-9.987499px;}
.ws4_c01350{word-spacing:0.000000px;}
.ws3_c01350{word-spacing:0.043999px;}
.ws2_c01350{word-spacing:0.056767px;}
.ws5_c01350{word-spacing:0.213446px;}
.ws6_c01350{word-spacing:43.038600px;}
._1_c01350{margin-left:-6.369713px;}
._2_c01350{margin-left:-1.549390px;}
._0_c01350{width:1.041538px;}
._3_c01350{width:19.935816px;}
.fc5_c01350{color:rgb(79,153,5);}
.fc4_c01350{color:rgb(0,0,207);}
.fc3_c01350{color:rgb(207,92,0);}
.fc2_c01350{color:rgb(33,74,135);}
.fc1_c01350{color:rgb(143,89,3);}
.fc0_c01350{color:rgb(0,0,0);}
.fs0_c01350{font-size:43.999200px;}
.fs2_c01350{font-size:59.775600px;}
.fs1_c01350{font-size:86.077200px;}
.y0_c01350{bottom:0.000000px;}
.y21_c01350{bottom:44.250000px;}
.y20_c01350{bottom:82.051500px;}
.y1f_c01350{bottom:112.338000px;}
.y1e_c01350{bottom:142.626000px;}
.y1d_c01350{bottom:172.914000px;}
.y1c_c01350{bottom:220.090500px;}
.y1b_c01350{bottom:699.589500px;}
.y1a_c01350{bottom:716.028000px;}
.y19_c01350{bottom:732.465000px;}
.y18_c01350{bottom:748.903500px;}
.y17_c01350{bottom:765.342000px;}
.y16_c01350{bottom:781.780500px;}
.y15_c01350{bottom:798.219000px;}
.y14_c01350{bottom:814.657500px;}
.y13_c01350{bottom:831.096000px;}
.y12_c01350{bottom:847.534500px;}
.y11_c01350{bottom:863.973000px;}
.y10_c01350{bottom:896.848500px;}
.yf_c01350{bottom:913.287000px;}
.ye_c01350{bottom:929.725500px;}
.yd_c01350{bottom:962.602500px;}
.yc_c01350{bottom:979.041000px;}
.yb_c01350{bottom:995.479500px;}
.ya_c01350{bottom:1011.918000px;}
.y9_c01350{bottom:1028.356500px;}
.y8_c01350{bottom:1044.795000px;}
.y7_c01350{bottom:1061.232000px;}
.y6_c01350{bottom:1077.670500px;}
.y5_c01350{bottom:1094.109000px;}
.y4_c01350{bottom:1110.547500px;}
.y3_c01350{bottom:1126.986000px;}
.y2_c01350{bottom:1143.424500px;}
.y1_c01350{bottom:1159.863000px;}
.h3_c01350{height:35.190766px;}
.h2_c01350{height:36.007158px;}
.h5_c01350{height:40.511979px;}
.h6_c01350{height:52.332837px;}
.h4_c01350{height:58.337477px;}
.h0_c01350{height:1262.835000px;}
.h1_c01350{height:1263.000000px;}
.w0_c01350{width:892.920000px;}
.w1_c01350{width:893.250000px;}
.x0_c01350{left:0.000000px;}
.x4_c01350{left:127.558500px;}
.x1_c01350{left:137.122500px;}
.x3_c01350{left:177.007500px;}
.x2_c01350{left:230.185500px;}
.x5_c01350{left:435.249000px;}
@media print{
.v0_c01350{vertical-align:0.000000pt;}
.ls3_c01350{letter-spacing:0.000000pt;}
.ls0_c01350{letter-spacing:0.078221pt;}
.ls1_c01350{letter-spacing:0.087539pt;}
.ls2_c01350{letter-spacing:0.092873pt;}
.ws0_c01350{word-spacing:-23.622682pt;}
.ws1_c01350{word-spacing:-23.544461pt;}
.wsa_c01350{word-spacing:-16.684034pt;}
.ws9_c01350{word-spacing:-13.283467pt;}
.ws7_c01350{word-spacing:-8.878599pt;}
.ws8_c01350{word-spacing:-8.877777pt;}
.ws4_c01350{word-spacing:0.000000pt;}
.ws3_c01350{word-spacing:0.039110pt;}
.ws2_c01350{word-spacing:0.050460pt;}
.ws5_c01350{word-spacing:0.189730pt;}
.ws6_c01350{word-spacing:38.256533pt;}
._1_c01350{margin-left:-5.661967pt;}
._2_c01350{margin-left:-1.377235pt;}
._0_c01350{width:0.925811pt;}
._3_c01350{width:17.720725pt;}
.fs0_c01350{font-size:39.110400pt;}
.fs2_c01350{font-size:53.133867pt;}
.fs1_c01350{font-size:76.513067pt;}
.y0_c01350{bottom:0.000000pt;}
.y21_c01350{bottom:39.333333pt;}
.y20_c01350{bottom:72.934667pt;}
.y1f_c01350{bottom:99.856000pt;}
.y1e_c01350{bottom:126.778667pt;}
.y1d_c01350{bottom:153.701333pt;}
.y1c_c01350{bottom:195.636000pt;}
.y1b_c01350{bottom:621.857333pt;}
.y1a_c01350{bottom:636.469333pt;}
.y19_c01350{bottom:651.080000pt;}
.y18_c01350{bottom:665.692000pt;}
.y17_c01350{bottom:680.304000pt;}
.y16_c01350{bottom:694.916000pt;}
.y15_c01350{bottom:709.528000pt;}
.y14_c01350{bottom:724.140000pt;}
.y13_c01350{bottom:738.752000pt;}
.y12_c01350{bottom:753.364000pt;}
.y11_c01350{bottom:767.976000pt;}
.y10_c01350{bottom:797.198667pt;}
.yf_c01350{bottom:811.810667pt;}
.ye_c01350{bottom:826.422667pt;}
.yd_c01350{bottom:855.646667pt;}
.yc_c01350{bottom:870.258667pt;}
.yb_c01350{bottom:884.870667pt;}
.ya_c01350{bottom:899.482667pt;}
.y9_c01350{bottom:914.094667pt;}
.y8_c01350{bottom:928.706667pt;}
.y7_c01350{bottom:943.317333pt;}
.y6_c01350{bottom:957.929333pt;}
.y5_c01350{bottom:972.541333pt;}
.y4_c01350{bottom:987.153333pt;}
.y3_c01350{bottom:1001.765333pt;}
.y2_c01350{bottom:1016.377333pt;}
.y1_c01350{bottom:1030.989333pt;}
.h3_c01350{height:31.280681pt;}
.h2_c01350{height:32.006363pt;}
.h5_c01350{height:36.010648pt;}
.h6_c01350{height:46.518078pt;}
.h4_c01350{height:51.855535pt;}
.h0_c01350{height:1122.520000pt;}
.h1_c01350{height:1122.666667pt;}
.w0_c01350{width:793.706667pt;}
.w1_c01350{width:794.000000pt;}
.x0_c01350{left:0.000000pt;}
.x4_c01350{left:113.385333pt;}
.x1_c01350{left:121.886667pt;}
.x3_c01350{left:157.340000pt;}
.x2_c01350{left:204.609333pt;}
.x5_c01350{left:386.888000pt;}
}





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

.ir_c01351:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01351;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01351{font-family:ff1_c01351;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01351;src:url('chunks/assets/font_5dd76e2cbfa280e3ac28684d.woff2')format("woff");}.ff2_c01351{font-family:ff2_c01351;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01351;src:url('chunks/assets/font_b07d83e3d628bea037a770be.woff2')format("woff");}.ff3_c01351{font-family:ff3_c01351;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01351;src:url('chunks/assets/font_6cef49c3ccc0f65977f3a455.woff2')format("woff");}.ff4_c01351{font-family:ff4_c01351;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01351;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01351{font-family:ff5_c01351;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01351{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01351{vertical-align:0.000000px;}
.ls4_c01351{letter-spacing:0.000000px;}
.ls0_c01351{letter-spacing:0.087998px;}
.ls2_c01351{letter-spacing:0.098482px;}
.ls1_c01351{letter-spacing:0.104482px;}
.ls3_c01351{letter-spacing:26.690482px;}
.sc__c01351{text-shadow:none;}
.sc0_c01351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
.sc0_c01351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01351{word-spacing:-33.713438px;}
.ws4_c01351{word-spacing:-26.575517px;}
.wsa_c01351{word-spacing:-26.487518px;}
.ws3_c01351{word-spacing:-21.553319px;}
.ws2_c01351{word-spacing:-21.519216px;}
.ws7_c01351{word-spacing:-18.769538px;}
.ws1_c01351{word-spacing:-16.019861px;}
.ws5_c01351{word-spacing:-14.107042px;}
.ws6_c01351{word-spacing:-12.074671px;}
.ws0_c01351{word-spacing:-4.536144px;}
.wse_c01351{word-spacing:0.000000px;}
.wsb_c01351{word-spacing:0.043999px;}
.ws11_c01351{word-spacing:0.056767px;}
.wsf_c01351{word-spacing:0.073250px;}
.ws10_c01351{word-spacing:0.083734px;}
.ws9_c01351{word-spacing:0.175997px;}
.ws12_c01351{word-spacing:0.202963px;}
.wsc_c01351{word-spacing:0.213446px;}
.wsd_c01351{word-spacing:0.219446px;}
._4_c01351{margin-left:-3.825638px;}
._1_c01351{margin-left:-2.347817px;}
._0_c01351{margin-left:-1.075961px;}
._5_c01351{width:1.005737px;}
._2_c01351{width:20.742133px;}
._3_c01351{width:40.109428px;}
._7_c01351{width:53.283031px;}
._6_c01351{width:79.858548px;}
._8_c01351{width:133.452408px;}
.fc6_c01351{color:rgb(0,0,207);}
.fc5_c01351{color:rgb(79,153,5);}
.fc3_c01351{color:rgb(33,74,135);}
.fc2_c01351{color:rgb(143,89,3);}
.fc4_c01351{color:rgb(207,92,0);}
.fc1_c01351{color:rgb(6,69,173);}
.fc0_c01351{color:rgb(0,0,0);}
.fs1_c01351{font-size:43.999200px;}
.fs0_c01351{font-size:59.775600px;}
.y0_c01351{bottom:0.000000px;}
.y31_c01351{bottom:44.250000px;}
.y30_c01351{bottom:96.919500px;}
.y2f_c01351{bottom:113.358000px;}
.y2e_c01351{bottom:129.796500px;}
.y2d_c01351{bottom:146.235000px;}
.y2c_c01351{bottom:162.673500px;}
.y2b_c01351{bottom:179.112000px;}
.y2a_c01351{bottom:195.550500px;}
.y29_c01351{bottom:211.989000px;}
.y28_c01351{bottom:228.427500px;}
.y27_c01351{bottom:244.866000px;}
.y26_c01351{bottom:261.304500px;}
.y25_c01351{bottom:294.180000px;}
.y24_c01351{bottom:310.618500px;}
.y23_c01351{bottom:327.057000px;}
.y22_c01351{bottom:359.934000px;}
.y21_c01351{bottom:376.372500px;}
.y20_c01351{bottom:392.811000px;}
.y1f_c01351{bottom:409.249500px;}
.y1e_c01351{bottom:425.688000px;}
.y1d_c01351{bottom:442.125000px;}
.y1c_c01351{bottom:458.563500px;}
.y1b_c01351{bottom:507.879000px;}
.y1a_c01351{bottom:524.317500px;}
.y19_c01351{bottom:540.756000px;}
.y18_c01351{bottom:557.194500px;}
.y17_c01351{bottom:573.633000px;}
.y16_c01351{bottom:590.071500px;}
.y15_c01351{bottom:606.508500px;}
.y14_c01351{bottom:622.947000px;}
.y13_c01351{bottom:639.385500px;}
.y12_c01351{bottom:655.824000px;}
.y11_c01351{bottom:672.262500px;}
.y10_c01351{bottom:688.701000px;}
.yf_c01351{bottom:705.139500px;}
.ye_c01351{bottom:721.578000px;}
.yd_c01351{bottom:738.016500px;}
.yc_c01351{bottom:754.455000px;}
.yb_c01351{bottom:787.330500px;}
.ya_c01351{bottom:803.769000px;}
.y9_c01351{bottom:853.084500px;}
.y8_c01351{bottom:869.523000px;}
.y7_c01351{bottom:885.588000px;}
.y6_c01351{bottom:1070.199000px;}
.y5_c01351{bottom:1088.131500px;}
.y4_c01351{bottom:1106.064000px;}
.y3_c01351{bottom:1123.998000px;}
.y2_c01351{bottom:1141.930500px;}
.y1_c01351{bottom:1159.863000px;}
.h3_c01351{height:35.190766px;}
.h4_c01351{height:36.007158px;}
.h2_c01351{height:52.332837px;}
.h0_c01351{height:1262.835000px;}
.h1_c01351{height:1263.000000px;}
.w0_c01351{width:892.920000px;}
.w1_c01351{width:893.250000px;}
.x0_c01351{left:0.000000px;}
.x1_c01351{left:127.558500px;}
.x2_c01351{left:137.122500px;}
.x3_c01351{left:143.770500px;}
.x4_c01351{left:177.007500px;}
.x5_c01351{left:435.249000px;}
@media print{
.v0_c01351{vertical-align:0.000000pt;}
.ls4_c01351{letter-spacing:0.000000pt;}
.ls0_c01351{letter-spacing:0.078221pt;}
.ls2_c01351{letter-spacing:0.087539pt;}
.ls1_c01351{letter-spacing:0.092873pt;}
.ls3_c01351{letter-spacing:23.724873pt;}
.ws8_c01351{word-spacing:-29.967501pt;}
.ws4_c01351{word-spacing:-23.622682pt;}
.wsa_c01351{word-spacing:-23.544461pt;}
.ws3_c01351{word-spacing:-19.158506pt;}
.ws2_c01351{word-spacing:-19.128192pt;}
.ws7_c01351{word-spacing:-16.684034pt;}
.ws1_c01351{word-spacing:-14.239876pt;}
.ws5_c01351{word-spacing:-12.539593pt;}
.ws6_c01351{word-spacing:-10.733041pt;}
.ws0_c01351{word-spacing:-4.032128pt;}
.wse_c01351{word-spacing:0.000000pt;}
.wsb_c01351{word-spacing:0.039110pt;}
.ws11_c01351{word-spacing:0.050460pt;}
.wsf_c01351{word-spacing:0.065111pt;}
.ws10_c01351{word-spacing:0.074430pt;}
.ws9_c01351{word-spacing:0.156442pt;}
.ws12_c01351{word-spacing:0.180412pt;}
.wsc_c01351{word-spacing:0.189730pt;}
.wsd_c01351{word-spacing:0.195063pt;}
._4_c01351{margin-left:-3.400567pt;}
._1_c01351{margin-left:-2.086948pt;}
._0_c01351{margin-left:-0.956410pt;}
._5_c01351{width:0.893988pt;}
._2_c01351{width:18.437452pt;}
._3_c01351{width:35.652825pt;}
._7_c01351{width:47.362694pt;}
._6_c01351{width:70.985376pt;}
._8_c01351{width:118.624363pt;}
.fs1_c01351{font-size:39.110400pt;}
.fs0_c01351{font-size:53.133867pt;}
.y0_c01351{bottom:0.000000pt;}
.y31_c01351{bottom:39.333333pt;}
.y30_c01351{bottom:86.150667pt;}
.y2f_c01351{bottom:100.762667pt;}
.y2e_c01351{bottom:115.374667pt;}
.y2d_c01351{bottom:129.986667pt;}
.y2c_c01351{bottom:144.598667pt;}
.y2b_c01351{bottom:159.210667pt;}
.y2a_c01351{bottom:173.822667pt;}
.y29_c01351{bottom:188.434667pt;}
.y28_c01351{bottom:203.046667pt;}
.y27_c01351{bottom:217.658667pt;}
.y26_c01351{bottom:232.270667pt;}
.y25_c01351{bottom:261.493333pt;}
.y24_c01351{bottom:276.105333pt;}
.y23_c01351{bottom:290.717333pt;}
.y22_c01351{bottom:319.941333pt;}
.y21_c01351{bottom:334.553333pt;}
.y20_c01351{bottom:349.165333pt;}
.y1f_c01351{bottom:363.777333pt;}
.y1e_c01351{bottom:378.389333pt;}
.y1d_c01351{bottom:393.000000pt;}
.y1c_c01351{bottom:407.612000pt;}
.y1b_c01351{bottom:451.448000pt;}
.y1a_c01351{bottom:466.060000pt;}
.y19_c01351{bottom:480.672000pt;}
.y18_c01351{bottom:495.284000pt;}
.y17_c01351{bottom:509.896000pt;}
.y16_c01351{bottom:524.508000pt;}
.y15_c01351{bottom:539.118667pt;}
.y14_c01351{bottom:553.730667pt;}
.y13_c01351{bottom:568.342667pt;}
.y12_c01351{bottom:582.954667pt;}
.y11_c01351{bottom:597.566667pt;}
.y10_c01351{bottom:612.178667pt;}
.yf_c01351{bottom:626.790667pt;}
.ye_c01351{bottom:641.402667pt;}
.yd_c01351{bottom:656.014667pt;}
.yc_c01351{bottom:670.626667pt;}
.yb_c01351{bottom:699.849333pt;}
.ya_c01351{bottom:714.461333pt;}
.y9_c01351{bottom:758.297333pt;}
.y8_c01351{bottom:772.909333pt;}
.y7_c01351{bottom:787.189333pt;}
.y6_c01351{bottom:951.288000pt;}
.y5_c01351{bottom:967.228000pt;}
.y4_c01351{bottom:983.168000pt;}
.y3_c01351{bottom:999.109333pt;}
.y2_c01351{bottom:1015.049333pt;}
.y1_c01351{bottom:1030.989333pt;}
.h3_c01351{height:31.280681pt;}
.h4_c01351{height:32.006363pt;}
.h2_c01351{height:46.518078pt;}
.h0_c01351{height:1122.520000pt;}
.h1_c01351{height:1122.666667pt;}
.w0_c01351{width:793.706667pt;}
.w1_c01351{width:794.000000pt;}
.x0_c01351{left:0.000000pt;}
.x1_c01351{left:113.385333pt;}
.x2_c01351{left:121.886667pt;}
.x3_c01351{left:127.796000pt;}
.x4_c01351{left:157.340000pt;}
.x5_c01351{left:386.888000pt;}
}





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

.ir_c01352:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01352;src:url('chunks/assets/font_971c4d11499039c1c82e31a0.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01352;src:url('chunks/assets/font_039fd6d6f645714491acf9a9.woff2')format("woff");}.ff2_c01352{font-family:ff2_c01352;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01352;src:url('chunks/assets/font_d7aefa70d6d94dd33aafa8eb.woff2')format("woff");}.ff3_c01352{font-family:ff3_c01352;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01352;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01352{font-family:ff4_c01352;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01352;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01352{font-family:ff5_c01352;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01352{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01352{vertical-align:0.000000px;}
.ls3_c01352{letter-spacing:0.000000px;}
.ls0_c01352{letter-spacing:0.087998px;}
.ls2_c01352{letter-spacing:0.098482px;}
.ls1_c01352{letter-spacing:0.104482px;}
.sc__c01352{text-shadow:none;}
.sc0_c01352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01352{-webkit-text-stroke:0px transparent;}
.sc0_c01352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01352{word-spacing:-33.713438px;}
.ws2_c01352{word-spacing:-26.575517px;}
.wse_c01352{word-spacing:-26.487518px;}
.ws9_c01352{word-spacing:-21.553319px;}
.ws8_c01352{word-spacing:-21.519216px;}
.ws5_c01352{word-spacing:-18.769538px;}
.ws7_c01352{word-spacing:-17.633802px;}
.ws4_c01352{word-spacing:-14.943900px;}
.wsa_c01352{word-spacing:-14.107042px;}
.wsb_c01352{word-spacing:-12.074671px;}
.ws1_c01352{word-spacing:-9.988424px;}
.ws3_c01352{word-spacing:-9.987499px;}
.ws6_c01352{word-spacing:-7.686144px;}
.ws12_c01352{word-spacing:0.000000px;}
.wsf_c01352{word-spacing:0.043999px;}
.ws15_c01352{word-spacing:0.056767px;}
.ws13_c01352{word-spacing:0.073250px;}
.ws14_c01352{word-spacing:0.083734px;}
.wsd_c01352{word-spacing:0.175997px;}
.ws16_c01352{word-spacing:0.202963px;}
.ws10_c01352{word-spacing:0.213446px;}
.ws11_c01352{word-spacing:0.219446px;}
.ws0_c01352{word-spacing:43.038600px;}
._0_c01352{margin-left:-6.369713px;}
._4_c01352{margin-left:-3.825638px;}
._1_c01352{margin-left:-1.549390px;}
._5_c01352{width:1.005737px;}
._2_c01352{width:19.935816px;}
._3_c01352{width:40.109428px;}
._7_c01352{width:53.283031px;}
._6_c01352{width:79.858548px;}
._8_c01352{width:133.452408px;}
.fc6_c01352{color:rgb(0,0,207);}
.fc5_c01352{color:rgb(79,153,5);}
.fc3_c01352{color:rgb(33,74,135);}
.fc2_c01352{color:rgb(143,89,3);}
.fc4_c01352{color:rgb(207,92,0);}
.fc1_c01352{color:rgb(6,69,173);}
.fc0_c01352{color:rgb(0,0,0);}
.fs2_c01352{font-size:43.999200px;}
.fs1_c01352{font-size:59.775600px;}
.fs0_c01352{font-size:86.077200px;}
.y0_c01352{bottom:0.000000px;}
.y20_c01352{bottom:44.250000px;}
.y1f_c01352{bottom:86.982000px;}
.y1e_c01352{bottom:103.420500px;}
.y1d_c01352{bottom:119.859000px;}
.y1c_c01352{bottom:136.297500px;}
.y1b_c01352{bottom:152.736000px;}
.y1a_c01352{bottom:169.174500px;}
.y19_c01352{bottom:185.613000px;}
.y18_c01352{bottom:202.051500px;}
.y17_c01352{bottom:218.490000px;}
.y16_c01352{bottom:234.927000px;}
.y15_c01352{bottom:251.365500px;}
.y14_c01352{bottom:267.804000px;}
.y13_c01352{bottom:284.242500px;}
.y12_c01352{bottom:300.681000px;}
.y11_c01352{bottom:317.119500px;}
.y10_c01352{bottom:349.996500px;}
.yf_c01352{bottom:366.435000px;}
.ye_c01352{bottom:415.749000px;}
.yd_c01352{bottom:432.187500px;}
.yc_c01352{bottom:448.252500px;}
.yb_c01352{bottom:493.890000px;}
.ya_c01352{bottom:511.822500px;}
.y9_c01352{bottom:529.756500px;}
.y8_c01352{bottom:547.689000px;}
.y7_c01352{bottom:565.621500px;}
.y6_c01352{bottom:583.554000px;}
.y5_c01352{bottom:610.633500px;}
.y4_c01352{bottom:637.714500px;}
.y3_c01352{bottom:664.794000px;}
.y2_c01352{bottom:691.873500px;}
.y1_c01352{bottom:734.407500px;}
.h5_c01352{height:35.190766px;}
.h6_c01352{height:36.007158px;}
.h3_c01352{height:40.511979px;}
.h4_c01352{height:52.332837px;}
.h2_c01352{height:58.337477px;}
.h0_c01352{height:1262.835000px;}
.h1_c01352{height:1263.000000px;}
.w0_c01352{width:892.920000px;}
.w1_c01352{width:893.250000px;}
.x0_c01352{left:0.000000px;}
.x1_c01352{left:127.558500px;}
.x2_c01352{left:137.122500px;}
.x3_c01352{left:143.770500px;}
.x4_c01352{left:435.249000px;}
@media print{
.v0_c01352{vertical-align:0.000000pt;}
.ls3_c01352{letter-spacing:0.000000pt;}
.ls0_c01352{letter-spacing:0.078221pt;}
.ls2_c01352{letter-spacing:0.087539pt;}
.ls1_c01352{letter-spacing:0.092873pt;}
.wsc_c01352{word-spacing:-29.967501pt;}
.ws2_c01352{word-spacing:-23.622682pt;}
.wse_c01352{word-spacing:-23.544461pt;}
.ws9_c01352{word-spacing:-19.158506pt;}
.ws8_c01352{word-spacing:-19.128192pt;}
.ws5_c01352{word-spacing:-16.684034pt;}
.ws7_c01352{word-spacing:-15.674491pt;}
.ws4_c01352{word-spacing:-13.283467pt;}
.wsa_c01352{word-spacing:-12.539593pt;}
.wsb_c01352{word-spacing:-10.733041pt;}
.ws1_c01352{word-spacing:-8.878599pt;}
.ws3_c01352{word-spacing:-8.877777pt;}
.ws6_c01352{word-spacing:-6.832128pt;}
.ws12_c01352{word-spacing:0.000000pt;}
.wsf_c01352{word-spacing:0.039110pt;}
.ws15_c01352{word-spacing:0.050460pt;}
.ws13_c01352{word-spacing:0.065111pt;}
.ws14_c01352{word-spacing:0.074430pt;}
.wsd_c01352{word-spacing:0.156442pt;}
.ws16_c01352{word-spacing:0.180412pt;}
.ws10_c01352{word-spacing:0.189730pt;}
.ws11_c01352{word-spacing:0.195063pt;}
.ws0_c01352{word-spacing:38.256533pt;}
._0_c01352{margin-left:-5.661967pt;}
._4_c01352{margin-left:-3.400567pt;}
._1_c01352{margin-left:-1.377235pt;}
._5_c01352{width:0.893988pt;}
._2_c01352{width:17.720725pt;}
._3_c01352{width:35.652825pt;}
._7_c01352{width:47.362694pt;}
._6_c01352{width:70.985376pt;}
._8_c01352{width:118.624363pt;}
.fs2_c01352{font-size:39.110400pt;}
.fs1_c01352{font-size:53.133867pt;}
.fs0_c01352{font-size:76.513067pt;}
.y0_c01352{bottom:0.000000pt;}
.y20_c01352{bottom:39.333333pt;}
.y1f_c01352{bottom:77.317333pt;}
.y1e_c01352{bottom:91.929333pt;}
.y1d_c01352{bottom:106.541333pt;}
.y1c_c01352{bottom:121.153333pt;}
.y1b_c01352{bottom:135.765333pt;}
.y1a_c01352{bottom:150.377333pt;}
.y19_c01352{bottom:164.989333pt;}
.y18_c01352{bottom:179.601333pt;}
.y17_c01352{bottom:194.213333pt;}
.y16_c01352{bottom:208.824000pt;}
.y15_c01352{bottom:223.436000pt;}
.y14_c01352{bottom:238.048000pt;}
.y13_c01352{bottom:252.660000pt;}
.y12_c01352{bottom:267.272000pt;}
.y11_c01352{bottom:281.884000pt;}
.y10_c01352{bottom:311.108000pt;}
.yf_c01352{bottom:325.720000pt;}
.ye_c01352{bottom:369.554667pt;}
.yd_c01352{bottom:384.166667pt;}
.yc_c01352{bottom:398.446667pt;}
.yb_c01352{bottom:439.013333pt;}
.ya_c01352{bottom:454.953333pt;}
.y9_c01352{bottom:470.894667pt;}
.y8_c01352{bottom:486.834667pt;}
.y7_c01352{bottom:502.774667pt;}
.y6_c01352{bottom:518.714667pt;}
.y5_c01352{bottom:542.785333pt;}
.y4_c01352{bottom:566.857333pt;}
.y3_c01352{bottom:590.928000pt;}
.y2_c01352{bottom:614.998667pt;}
.y1_c01352{bottom:652.806667pt;}
.h5_c01352{height:31.280681pt;}
.h6_c01352{height:32.006363pt;}
.h3_c01352{height:36.010648pt;}
.h4_c01352{height:46.518078pt;}
.h2_c01352{height:51.855535pt;}
.h0_c01352{height:1122.520000pt;}
.h1_c01352{height:1122.666667pt;}
.w0_c01352{width:793.706667pt;}
.w1_c01352{width:794.000000pt;}
.x0_c01352{left:0.000000pt;}
.x1_c01352{left:113.385333pt;}
.x2_c01352{left:121.886667pt;}
.x3_c01352{left:127.796000pt;}
.x4_c01352{left:386.888000pt;}
}





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

.ir_c01353:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01353;src:url('chunks/assets/font_1c4d8d61cbfd50fd9b491fbf.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01353;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01353{font-family:ff2_c01353;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01353;src:url('chunks/assets/font_4a4bf3cb4f9264e66d39eb9e.woff2')format("woff");}.ff3_c01353{font-family:ff3_c01353;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01353;src:url('chunks/assets/font_f08e61eaeaae05baeb3b96d9.woff2')format("woff");}.ff4_c01353{font-family:ff4_c01353;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01353;src:url('chunks/assets/font_7dbdc5f59b26790ee6d6bf53.woff2')format("woff");}.ff5_c01353{font-family:ff5_c01353;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01353{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01353{vertical-align:0.000000px;}
.ls4_c01353{letter-spacing:0.000000px;}
.ls0_c01353{letter-spacing:0.087998px;}
.ls2_c01353{letter-spacing:0.098482px;}
.ls3_c01353{letter-spacing:0.104482px;}
.ls1_c01353{letter-spacing:26.690482px;}
.sc__c01353{text-shadow:none;}
.sc0_c01353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01353{-webkit-text-stroke:0px transparent;}
.sc0_c01353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01353{word-spacing:-26.575517px;}
.ws4_c01353{word-spacing:-26.487518px;}
.wse_c01353{word-spacing:-21.553319px;}
.wsd_c01353{word-spacing:-21.519216px;}
.wsa_c01353{word-spacing:-18.769538px;}
.wsc_c01353{word-spacing:-17.633802px;}
.ws9_c01353{word-spacing:-14.943900px;}
.wsf_c01353{word-spacing:-14.107042px;}
.ws10_c01353{word-spacing:-12.074671px;}
.ws7_c01353{word-spacing:-9.988424px;}
.ws8_c01353{word-spacing:-9.987499px;}
.wsb_c01353{word-spacing:-7.686144px;}
.ws3_c01353{word-spacing:0.000000px;}
.ws0_c01353{word-spacing:0.043999px;}
.ws5_c01353{word-spacing:0.213446px;}
.ws1_c01353{word-spacing:0.219446px;}
.ws6_c01353{word-spacing:43.038600px;}
._1_c01353{margin-left:-6.369713px;}
._2_c01353{margin-left:-1.549390px;}
._0_c01353{width:1.047206px;}
._3_c01353{width:19.935816px;}
._4_c01353{width:40.109428px;}
.fc5_c01353{color:rgb(79,153,5);}
.fc4_c01353{color:rgb(143,89,3);}
.fc3_c01353{color:rgb(0,0,0);}
.fc6_c01353{color:rgb(6,69,173);}
.fc2_c01353{color:rgb(207,92,0);}
.fc1_c01353{color:rgb(0,0,207);}
.fc0_c01353{color:rgb(33,74,135);}
.fs0_c01353{font-size:43.999200px;}
.fs2_c01353{font-size:59.775600px;}
.fs1_c01353{font-size:86.077200px;}
.y0_c01353{bottom:0.000000px;}
.y20_c01353{bottom:44.250000px;}
.y1f_c01353{bottom:82.051500px;}
.y1e_c01353{bottom:99.984000px;}
.y1d_c01353{bottom:117.916500px;}
.y1c_c01353{bottom:135.849000px;}
.y1b_c01353{bottom:162.501000px;}
.y1a_c01353{bottom:189.151500px;}
.y19_c01353{bottom:215.802000px;}
.y18_c01353{bottom:242.454000px;}
.y17_c01353{bottom:284.478000px;}
.y16_c01353{bottom:748.903500px;}
.y15_c01353{bottom:765.342000px;}
.y14_c01353{bottom:781.780500px;}
.y13_c01353{bottom:798.219000px;}
.y12_c01353{bottom:814.657500px;}
.y11_c01353{bottom:831.096000px;}
.y10_c01353{bottom:847.534500px;}
.yf_c01353{bottom:863.973000px;}
.ye_c01353{bottom:880.411500px;}
.yd_c01353{bottom:896.848500px;}
.yc_c01353{bottom:913.287000px;}
.yb_c01353{bottom:946.164000px;}
.ya_c01353{bottom:962.602500px;}
.y9_c01353{bottom:979.041000px;}
.y8_c01353{bottom:1011.918000px;}
.y7_c01353{bottom:1028.356500px;}
.y6_c01353{bottom:1044.795000px;}
.y5_c01353{bottom:1061.232000px;}
.y4_c01353{bottom:1077.670500px;}
.y3_c01353{bottom:1094.109000px;}
.y2_c01353{bottom:1110.547500px;}
.y1_c01353{bottom:1159.863000px;}
.h3_c01353{height:35.190766px;}
.h2_c01353{height:36.007158px;}
.h5_c01353{height:40.511979px;}
.h6_c01353{height:52.332837px;}
.h4_c01353{height:58.337477px;}
.h0_c01353{height:1262.835000px;}
.h1_c01353{height:1263.000000px;}
.w0_c01353{width:892.920000px;}
.w1_c01353{width:893.250000px;}
.x0_c01353{left:0.000000px;}
.x4_c01353{left:127.558500px;}
.x2_c01353{left:137.122500px;}
.x1_c01353{left:143.770500px;}
.x3_c01353{left:177.007500px;}
.x5_c01353{left:435.249000px;}
@media print{
.v0_c01353{vertical-align:0.000000pt;}
.ls4_c01353{letter-spacing:0.000000pt;}
.ls0_c01353{letter-spacing:0.078221pt;}
.ls2_c01353{letter-spacing:0.087539pt;}
.ls3_c01353{letter-spacing:0.092873pt;}
.ls1_c01353{letter-spacing:23.724873pt;}
.ws2_c01353{word-spacing:-23.622682pt;}
.ws4_c01353{word-spacing:-23.544461pt;}
.wse_c01353{word-spacing:-19.158506pt;}
.wsd_c01353{word-spacing:-19.128192pt;}
.wsa_c01353{word-spacing:-16.684034pt;}
.wsc_c01353{word-spacing:-15.674491pt;}
.ws9_c01353{word-spacing:-13.283467pt;}
.wsf_c01353{word-spacing:-12.539593pt;}
.ws10_c01353{word-spacing:-10.733041pt;}
.ws7_c01353{word-spacing:-8.878599pt;}
.ws8_c01353{word-spacing:-8.877777pt;}
.wsb_c01353{word-spacing:-6.832128pt;}
.ws3_c01353{word-spacing:0.000000pt;}
.ws0_c01353{word-spacing:0.039110pt;}
.ws5_c01353{word-spacing:0.189730pt;}
.ws1_c01353{word-spacing:0.195063pt;}
.ws6_c01353{word-spacing:38.256533pt;}
._1_c01353{margin-left:-5.661967pt;}
._2_c01353{margin-left:-1.377235pt;}
._0_c01353{width:0.930850pt;}
._3_c01353{width:17.720725pt;}
._4_c01353{width:35.652825pt;}
.fs0_c01353{font-size:39.110400pt;}
.fs2_c01353{font-size:53.133867pt;}
.fs1_c01353{font-size:76.513067pt;}
.y0_c01353{bottom:0.000000pt;}
.y20_c01353{bottom:39.333333pt;}
.y1f_c01353{bottom:72.934667pt;}
.y1e_c01353{bottom:88.874667pt;}
.y1d_c01353{bottom:104.814667pt;}
.y1c_c01353{bottom:120.754667pt;}
.y1b_c01353{bottom:144.445333pt;}
.y1a_c01353{bottom:168.134667pt;}
.y19_c01353{bottom:191.824000pt;}
.y18_c01353{bottom:215.514667pt;}
.y17_c01353{bottom:252.869333pt;}
.y16_c01353{bottom:665.692000pt;}
.y15_c01353{bottom:680.304000pt;}
.y14_c01353{bottom:694.916000pt;}
.y13_c01353{bottom:709.528000pt;}
.y12_c01353{bottom:724.140000pt;}
.y11_c01353{bottom:738.752000pt;}
.y10_c01353{bottom:753.364000pt;}
.yf_c01353{bottom:767.976000pt;}
.ye_c01353{bottom:782.588000pt;}
.yd_c01353{bottom:797.198667pt;}
.yc_c01353{bottom:811.810667pt;}
.yb_c01353{bottom:841.034667pt;}
.ya_c01353{bottom:855.646667pt;}
.y9_c01353{bottom:870.258667pt;}
.y8_c01353{bottom:899.482667pt;}
.y7_c01353{bottom:914.094667pt;}
.y6_c01353{bottom:928.706667pt;}
.y5_c01353{bottom:943.317333pt;}
.y4_c01353{bottom:957.929333pt;}
.y3_c01353{bottom:972.541333pt;}
.y2_c01353{bottom:987.153333pt;}
.y1_c01353{bottom:1030.989333pt;}
.h3_c01353{height:31.280681pt;}
.h2_c01353{height:32.006363pt;}
.h5_c01353{height:36.010648pt;}
.h6_c01353{height:46.518078pt;}
.h4_c01353{height:51.855535pt;}
.h0_c01353{height:1122.520000pt;}
.h1_c01353{height:1122.666667pt;}
.w0_c01353{width:793.706667pt;}
.w1_c01353{width:794.000000pt;}
.x0_c01353{left:0.000000pt;}
.x4_c01353{left:113.385333pt;}
.x2_c01353{left:121.886667pt;}
.x1_c01353{left:127.796000pt;}
.x3_c01353{left:157.340000pt;}
.x5_c01353{left:386.888000pt;}
}





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

.ir_c01354:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01354;src:url('chunks/assets/font_6fdb96412b6f8372b276ff1b.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01354;src:url('chunks/assets/font_c76e67e34866ea1e4f2451fd.woff2')format("woff");}.ff2_c01354{font-family:ff2_c01354;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01354;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01354{font-family:ff3_c01354;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01354;src:url('chunks/assets/font_7b14d5705dde0177e3c7bd51.woff2')format("woff");}.ff4_c01354{font-family:ff4_c01354;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01354{vertical-align:0.000000px;}
.ls4_c01354{letter-spacing:0.000000px;}
.ls1_c01354{letter-spacing:0.087998px;}
.ls2_c01354{letter-spacing:0.098482px;}
.ls0_c01354{letter-spacing:0.104482px;}
.ls3_c01354{letter-spacing:26.690482px;}
.sc__c01354{text-shadow:none;}
.sc0_c01354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01354{-webkit-text-stroke:0px transparent;}
.sc0_c01354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01354{word-spacing:-33.713438px;}
.ws4_c01354{word-spacing:-26.575517px;}
.ws3_c01354{word-spacing:-26.487518px;}
.ws0_c01354{word-spacing:-18.769538px;}
.ws8_c01354{word-spacing:0.000000px;}
.ws5_c01354{word-spacing:0.043999px;}
.wsb_c01354{word-spacing:0.056767px;}
.ws9_c01354{word-spacing:0.073250px;}
.wsa_c01354{word-spacing:0.083734px;}
.ws2_c01354{word-spacing:0.175997px;}
.wsc_c01354{word-spacing:0.202963px;}
.ws6_c01354{word-spacing:0.213446px;}
.ws7_c01354{word-spacing:0.219446px;}
._0_c01354{margin-left:-3.825638px;}
._1_c01354{width:1.005737px;}
._3_c01354{width:53.283031px;}
._2_c01354{width:79.858548px;}
._4_c01354{width:133.452408px;}
.fc5_c01354{color:rgb(0,0,207);}
.fc4_c01354{color:rgb(79,153,5);}
.fc3_c01354{color:rgb(207,92,0);}
.fc2_c01354{color:rgb(33,74,135);}
.fc1_c01354{color:rgb(143,89,3);}
.fc0_c01354{color:rgb(0,0,0);}
.fs1_c01354{font-size:43.999200px;}
.fs0_c01354{font-size:59.775600px;}
.y0_c01354{bottom:0.000000px;}
.y2d_c01354{bottom:44.250000px;}
.y2c_c01354{bottom:96.919500px;}
.y2b_c01354{bottom:113.358000px;}
.y2a_c01354{bottom:129.796500px;}
.y29_c01354{bottom:146.235000px;}
.y28_c01354{bottom:162.673500px;}
.y27_c01354{bottom:179.112000px;}
.y26_c01354{bottom:195.550500px;}
.y25_c01354{bottom:211.989000px;}
.y24_c01354{bottom:228.427500px;}
.y23_c01354{bottom:244.866000px;}
.y22_c01354{bottom:261.304500px;}
.y21_c01354{bottom:294.180000px;}
.y20_c01354{bottom:310.618500px;}
.y1f_c01354{bottom:327.057000px;}
.y1e_c01354{bottom:359.934000px;}
.y1d_c01354{bottom:376.372500px;}
.y1c_c01354{bottom:392.811000px;}
.y1b_c01354{bottom:409.249500px;}
.y1a_c01354{bottom:425.688000px;}
.y19_c01354{bottom:442.125000px;}
.y18_c01354{bottom:458.563500px;}
.y17_c01354{bottom:507.879000px;}
.y16_c01354{bottom:524.317500px;}
.y15_c01354{bottom:540.756000px;}
.y14_c01354{bottom:557.194500px;}
.y13_c01354{bottom:573.633000px;}
.y12_c01354{bottom:590.071500px;}
.y11_c01354{bottom:606.508500px;}
.y10_c01354{bottom:622.947000px;}
.yf_c01354{bottom:639.385500px;}
.ye_c01354{bottom:655.824000px;}
.yd_c01354{bottom:672.262500px;}
.yc_c01354{bottom:688.701000px;}
.yb_c01354{bottom:705.139500px;}
.ya_c01354{bottom:721.578000px;}
.y9_c01354{bottom:738.016500px;}
.y8_c01354{bottom:754.455000px;}
.y7_c01354{bottom:787.330500px;}
.y6_c01354{bottom:803.769000px;}
.y5_c01354{bottom:853.084500px;}
.y4_c01354{bottom:869.523000px;}
.y3_c01354{bottom:885.588000px;}
.y2_c01354{bottom:1141.930500px;}
.y1_c01354{bottom:1159.863000px;}
.h3_c01354{height:35.190766px;}
.h4_c01354{height:36.007158px;}
.h2_c01354{height:52.332837px;}
.h0_c01354{height:1262.835000px;}
.h1_c01354{height:1263.000000px;}
.w0_c01354{width:892.920000px;}
.w1_c01354{width:893.250000px;}
.x0_c01354{left:0.000000px;}
.x1_c01354{left:127.558500px;}
.x2_c01354{left:137.122500px;}
.x3_c01354{left:143.770500px;}
.x4_c01354{left:177.007500px;}
.x5_c01354{left:435.249000px;}
@media print{
.v0_c01354{vertical-align:0.000000pt;}
.ls4_c01354{letter-spacing:0.000000pt;}
.ls1_c01354{letter-spacing:0.078221pt;}
.ls2_c01354{letter-spacing:0.087539pt;}
.ls0_c01354{letter-spacing:0.092873pt;}
.ls3_c01354{letter-spacing:23.724873pt;}
.ws1_c01354{word-spacing:-29.967501pt;}
.ws4_c01354{word-spacing:-23.622682pt;}
.ws3_c01354{word-spacing:-23.544461pt;}
.ws0_c01354{word-spacing:-16.684034pt;}
.ws8_c01354{word-spacing:0.000000pt;}
.ws5_c01354{word-spacing:0.039110pt;}
.wsb_c01354{word-spacing:0.050460pt;}
.ws9_c01354{word-spacing:0.065111pt;}
.wsa_c01354{word-spacing:0.074430pt;}
.ws2_c01354{word-spacing:0.156442pt;}
.wsc_c01354{word-spacing:0.180412pt;}
.ws6_c01354{word-spacing:0.189730pt;}
.ws7_c01354{word-spacing:0.195063pt;}
._0_c01354{margin-left:-3.400567pt;}
._1_c01354{width:0.893988pt;}
._3_c01354{width:47.362694pt;}
._2_c01354{width:70.985376pt;}
._4_c01354{width:118.624363pt;}
.fs1_c01354{font-size:39.110400pt;}
.fs0_c01354{font-size:53.133867pt;}
.y0_c01354{bottom:0.000000pt;}
.y2d_c01354{bottom:39.333333pt;}
.y2c_c01354{bottom:86.150667pt;}
.y2b_c01354{bottom:100.762667pt;}
.y2a_c01354{bottom:115.374667pt;}
.y29_c01354{bottom:129.986667pt;}
.y28_c01354{bottom:144.598667pt;}
.y27_c01354{bottom:159.210667pt;}
.y26_c01354{bottom:173.822667pt;}
.y25_c01354{bottom:188.434667pt;}
.y24_c01354{bottom:203.046667pt;}
.y23_c01354{bottom:217.658667pt;}
.y22_c01354{bottom:232.270667pt;}
.y21_c01354{bottom:261.493333pt;}
.y20_c01354{bottom:276.105333pt;}
.y1f_c01354{bottom:290.717333pt;}
.y1e_c01354{bottom:319.941333pt;}
.y1d_c01354{bottom:334.553333pt;}
.y1c_c01354{bottom:349.165333pt;}
.y1b_c01354{bottom:363.777333pt;}
.y1a_c01354{bottom:378.389333pt;}
.y19_c01354{bottom:393.000000pt;}
.y18_c01354{bottom:407.612000pt;}
.y17_c01354{bottom:451.448000pt;}
.y16_c01354{bottom:466.060000pt;}
.y15_c01354{bottom:480.672000pt;}
.y14_c01354{bottom:495.284000pt;}
.y13_c01354{bottom:509.896000pt;}
.y12_c01354{bottom:524.508000pt;}
.y11_c01354{bottom:539.118667pt;}
.y10_c01354{bottom:553.730667pt;}
.yf_c01354{bottom:568.342667pt;}
.ye_c01354{bottom:582.954667pt;}
.yd_c01354{bottom:597.566667pt;}
.yc_c01354{bottom:612.178667pt;}
.yb_c01354{bottom:626.790667pt;}
.ya_c01354{bottom:641.402667pt;}
.y9_c01354{bottom:656.014667pt;}
.y8_c01354{bottom:670.626667pt;}
.y7_c01354{bottom:699.849333pt;}
.y6_c01354{bottom:714.461333pt;}
.y5_c01354{bottom:758.297333pt;}
.y4_c01354{bottom:772.909333pt;}
.y3_c01354{bottom:787.189333pt;}
.y2_c01354{bottom:1015.049333pt;}
.y1_c01354{bottom:1030.989333pt;}
.h3_c01354{height:31.280681pt;}
.h4_c01354{height:32.006363pt;}
.h2_c01354{height:46.518078pt;}
.h0_c01354{height:1122.520000pt;}
.h1_c01354{height:1122.666667pt;}
.w0_c01354{width:793.706667pt;}
.w1_c01354{width:794.000000pt;}
.x0_c01354{left:0.000000pt;}
.x1_c01354{left:113.385333pt;}
.x2_c01354{left:121.886667pt;}
.x3_c01354{left:127.796000pt;}
.x4_c01354{left:157.340000pt;}
.x5_c01354{left:386.888000pt;}
}





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

.ir_c01355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01355;src:url('chunks/assets/font_b6b9aad0a8d8dc588cf9c405.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01355;src:url('chunks/assets/font_32732a4a10a02b76384567df.woff2')format("woff");}.ff2_c01355{font-family:ff2_c01355;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01355;src:url('chunks/assets/font_03f0698121099f2dc451c1f7.woff2')format("woff");}.ff3_c01355{font-family:ff3_c01355;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01355;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01355{font-family:ff4_c01355;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01355;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01355{font-family:ff5_c01355;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01355{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01355{vertical-align:0.000000px;}
.ls3_c01355{letter-spacing:0.000000px;}
.ls0_c01355{letter-spacing:0.087998px;}
.ls2_c01355{letter-spacing:0.098482px;}
.ls1_c01355{letter-spacing:0.104482px;}
.sc__c01355{text-shadow:none;}
.sc0_c01355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01355{-webkit-text-stroke:0px transparent;}
.sc0_c01355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01355{word-spacing:-33.713438px;}
.ws2_c01355{word-spacing:-26.575517px;}
.wse_c01355{word-spacing:-26.487518px;}
.ws9_c01355{word-spacing:-21.553319px;}
.ws8_c01355{word-spacing:-21.519216px;}
.ws7_c01355{word-spacing:-19.247743px;}
.ws5_c01355{word-spacing:-18.769538px;}
.ws4_c01355{word-spacing:-14.943900px;}
.wsa_c01355{word-spacing:-14.107042px;}
.wsb_c01355{word-spacing:-12.074671px;}
.ws6_c01355{word-spacing:-10.230144px;}
.ws1_c01355{word-spacing:-9.988424px;}
.ws3_c01355{word-spacing:-9.987499px;}
.ws12_c01355{word-spacing:0.000000px;}
.wsf_c01355{word-spacing:0.043999px;}
.ws15_c01355{word-spacing:0.056767px;}
.ws13_c01355{word-spacing:0.073250px;}
.ws14_c01355{word-spacing:0.083734px;}
.wsd_c01355{word-spacing:0.175997px;}
.ws16_c01355{word-spacing:0.202963px;}
.ws10_c01355{word-spacing:0.213446px;}
.ws11_c01355{word-spacing:0.219446px;}
.ws0_c01355{word-spacing:43.038600px;}
._0_c01355{margin-left:-6.369713px;}
._4_c01355{margin-left:-3.825638px;}
._1_c01355{margin-left:-1.549390px;}
._5_c01355{width:1.005737px;}
._2_c01355{width:19.935816px;}
._3_c01355{width:40.109428px;}
._7_c01355{width:53.283031px;}
._6_c01355{width:79.858548px;}
._8_c01355{width:133.452408px;}
.fc6_c01355{color:rgb(0,0,207);}
.fc5_c01355{color:rgb(79,153,5);}
.fc3_c01355{color:rgb(33,74,135);}
.fc2_c01355{color:rgb(143,89,3);}
.fc4_c01355{color:rgb(207,92,0);}
.fc1_c01355{color:rgb(6,69,173);}
.fc0_c01355{color:rgb(0,0,0);}
.fs2_c01355{font-size:43.999200px;}
.fs1_c01355{font-size:59.775600px;}
.fs0_c01355{font-size:86.077200px;}
.y0_c01355{bottom:0.000000px;}
.y20_c01355{bottom:44.250000px;}
.y1f_c01355{bottom:86.982000px;}
.y1e_c01355{bottom:103.420500px;}
.y1d_c01355{bottom:119.859000px;}
.y1c_c01355{bottom:136.297500px;}
.y1b_c01355{bottom:152.736000px;}
.y1a_c01355{bottom:169.174500px;}
.y19_c01355{bottom:185.613000px;}
.y18_c01355{bottom:202.051500px;}
.y17_c01355{bottom:218.490000px;}
.y16_c01355{bottom:234.927000px;}
.y15_c01355{bottom:251.365500px;}
.y14_c01355{bottom:267.804000px;}
.y13_c01355{bottom:284.242500px;}
.y12_c01355{bottom:300.681000px;}
.y11_c01355{bottom:317.119500px;}
.y10_c01355{bottom:349.996500px;}
.yf_c01355{bottom:366.435000px;}
.ye_c01355{bottom:415.749000px;}
.yd_c01355{bottom:432.187500px;}
.yc_c01355{bottom:448.252500px;}
.yb_c01355{bottom:493.890000px;}
.ya_c01355{bottom:511.822500px;}
.y9_c01355{bottom:529.756500px;}
.y8_c01355{bottom:547.689000px;}
.y7_c01355{bottom:565.621500px;}
.y6_c01355{bottom:583.554000px;}
.y5_c01355{bottom:610.633500px;}
.y4_c01355{bottom:637.714500px;}
.y3_c01355{bottom:664.794000px;}
.y2_c01355{bottom:691.873500px;}
.y1_c01355{bottom:734.407500px;}
.h5_c01355{height:35.190766px;}
.h6_c01355{height:36.007158px;}
.h3_c01355{height:40.511979px;}
.h4_c01355{height:52.332837px;}
.h2_c01355{height:58.337477px;}
.h0_c01355{height:1262.835000px;}
.h1_c01355{height:1263.000000px;}
.w0_c01355{width:892.920000px;}
.w1_c01355{width:893.250000px;}
.x0_c01355{left:0.000000px;}
.x1_c01355{left:127.558500px;}
.x2_c01355{left:137.122500px;}
.x3_c01355{left:143.770500px;}
.x4_c01355{left:435.249000px;}
@media print{
.v0_c01355{vertical-align:0.000000pt;}
.ls3_c01355{letter-spacing:0.000000pt;}
.ls0_c01355{letter-spacing:0.078221pt;}
.ls2_c01355{letter-spacing:0.087539pt;}
.ls1_c01355{letter-spacing:0.092873pt;}
.wsc_c01355{word-spacing:-29.967501pt;}
.ws2_c01355{word-spacing:-23.622682pt;}
.wse_c01355{word-spacing:-23.544461pt;}
.ws9_c01355{word-spacing:-19.158506pt;}
.ws8_c01355{word-spacing:-19.128192pt;}
.ws7_c01355{word-spacing:-17.109105pt;}
.ws5_c01355{word-spacing:-16.684034pt;}
.ws4_c01355{word-spacing:-13.283467pt;}
.wsa_c01355{word-spacing:-12.539593pt;}
.wsb_c01355{word-spacing:-10.733041pt;}
.ws6_c01355{word-spacing:-9.093461pt;}
.ws1_c01355{word-spacing:-8.878599pt;}
.ws3_c01355{word-spacing:-8.877777pt;}
.ws12_c01355{word-spacing:0.000000pt;}
.wsf_c01355{word-spacing:0.039110pt;}
.ws15_c01355{word-spacing:0.050460pt;}
.ws13_c01355{word-spacing:0.065111pt;}
.ws14_c01355{word-spacing:0.074430pt;}
.wsd_c01355{word-spacing:0.156442pt;}
.ws16_c01355{word-spacing:0.180412pt;}
.ws10_c01355{word-spacing:0.189730pt;}
.ws11_c01355{word-spacing:0.195063pt;}
.ws0_c01355{word-spacing:38.256533pt;}
._0_c01355{margin-left:-5.661967pt;}
._4_c01355{margin-left:-3.400567pt;}
._1_c01355{margin-left:-1.377235pt;}
._5_c01355{width:0.893988pt;}
._2_c01355{width:17.720725pt;}
._3_c01355{width:35.652825pt;}
._7_c01355{width:47.362694pt;}
._6_c01355{width:70.985376pt;}
._8_c01355{width:118.624363pt;}
.fs2_c01355{font-size:39.110400pt;}
.fs1_c01355{font-size:53.133867pt;}
.fs0_c01355{font-size:76.513067pt;}
.y0_c01355{bottom:0.000000pt;}
.y20_c01355{bottom:39.333333pt;}
.y1f_c01355{bottom:77.317333pt;}
.y1e_c01355{bottom:91.929333pt;}
.y1d_c01355{bottom:106.541333pt;}
.y1c_c01355{bottom:121.153333pt;}
.y1b_c01355{bottom:135.765333pt;}
.y1a_c01355{bottom:150.377333pt;}
.y19_c01355{bottom:164.989333pt;}
.y18_c01355{bottom:179.601333pt;}
.y17_c01355{bottom:194.213333pt;}
.y16_c01355{bottom:208.824000pt;}
.y15_c01355{bottom:223.436000pt;}
.y14_c01355{bottom:238.048000pt;}
.y13_c01355{bottom:252.660000pt;}
.y12_c01355{bottom:267.272000pt;}
.y11_c01355{bottom:281.884000pt;}
.y10_c01355{bottom:311.108000pt;}
.yf_c01355{bottom:325.720000pt;}
.ye_c01355{bottom:369.554667pt;}
.yd_c01355{bottom:384.166667pt;}
.yc_c01355{bottom:398.446667pt;}
.yb_c01355{bottom:439.013333pt;}
.ya_c01355{bottom:454.953333pt;}
.y9_c01355{bottom:470.894667pt;}
.y8_c01355{bottom:486.834667pt;}
.y7_c01355{bottom:502.774667pt;}
.y6_c01355{bottom:518.714667pt;}
.y5_c01355{bottom:542.785333pt;}
.y4_c01355{bottom:566.857333pt;}
.y3_c01355{bottom:590.928000pt;}
.y2_c01355{bottom:614.998667pt;}
.y1_c01355{bottom:652.806667pt;}
.h5_c01355{height:31.280681pt;}
.h6_c01355{height:32.006363pt;}
.h3_c01355{height:36.010648pt;}
.h4_c01355{height:46.518078pt;}
.h2_c01355{height:51.855535pt;}
.h0_c01355{height:1122.520000pt;}
.h1_c01355{height:1122.666667pt;}
.w0_c01355{width:793.706667pt;}
.w1_c01355{width:794.000000pt;}
.x0_c01355{left:0.000000pt;}
.x1_c01355{left:113.385333pt;}
.x2_c01355{left:121.886667pt;}
.x3_c01355{left:127.796000pt;}
.x4_c01355{left:386.888000pt;}
}





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

.ir_c01356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01356;src:url('chunks/assets/font_56d2a85f278b11f369b1deb9.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01356;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01356{font-family:ff2_c01356;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01356;src:url('chunks/assets/font_b15ea8c693f67040c76a2492.woff2')format("woff");}.ff3_c01356{font-family:ff3_c01356;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01356;src:url('chunks/assets/font_1307025e605cfad4077e23b5.woff2')format("woff");}.ff4_c01356{font-family:ff4_c01356;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01356;src:url('chunks/assets/font_dd8653182696677f2386a3fd.woff2')format("woff");}.ff5_c01356{font-family:ff5_c01356;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01356{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01356{vertical-align:0.000000px;}
.ls4_c01356{letter-spacing:0.000000px;}
.ls0_c01356{letter-spacing:0.087998px;}
.ls2_c01356{letter-spacing:0.098482px;}
.ls3_c01356{letter-spacing:0.104482px;}
.ls1_c01356{letter-spacing:26.690482px;}
.sc__c01356{text-shadow:none;}
.sc0_c01356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01356{-webkit-text-stroke:0px transparent;}
.sc0_c01356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01356{word-spacing:-26.575517px;}
.ws4_c01356{word-spacing:-26.487518px;}
.ws11_c01356{word-spacing:-20.084602px;}
.ws10_c01356{word-spacing:-19.128192px;}
.wsf_c01356{word-spacing:-19.118113px;}
.wsa_c01356{word-spacing:-18.769538px;}
.wse_c01356{word-spacing:-16.438290px;}
.ws9_c01356{word-spacing:-14.943900px;}
.wsd_c01356{word-spacing:-13.806796px;}
.wsc_c01356{word-spacing:-13.748388px;}
.ws7_c01356{word-spacing:-9.988424px;}
.ws8_c01356{word-spacing:-9.987499px;}
.ws3_c01356{word-spacing:0.000000px;}
.ws0_c01356{word-spacing:0.043999px;}
.wsb_c01356{word-spacing:0.083856px;}
.ws5_c01356{word-spacing:0.213446px;}
.ws1_c01356{word-spacing:0.219446px;}
.ws6_c01356{word-spacing:43.038600px;}
._2_c01356{margin-left:-4.734246px;}
._4_c01356{margin-left:-1.075961px;}
._1_c01356{width:1.063690px;}
._6_c01356{width:18.351109px;}
._3_c01356{width:19.935816px;}
._5_c01356{width:21.220338px;}
._7_c01356{width:26.719693px;}
._0_c01356{width:106.786058px;}
.fc5_c01356{color:rgb(79,153,5);}
.fc4_c01356{color:rgb(143,89,3);}
.fc3_c01356{color:rgb(0,0,0);}
.fc6_c01356{color:rgb(6,69,173);}
.fc2_c01356{color:rgb(207,92,0);}
.fc1_c01356{color:rgb(0,0,207);}
.fc0_c01356{color:rgb(33,74,135);}
.fs0_c01356{font-size:43.999200px;}
.fs2_c01356{font-size:59.775600px;}
.fs1_c01356{font-size:86.077200px;}
.y0_c01356{bottom:0.000000px;}
.y20_c01356{bottom:44.250000px;}
.y1f_c01356{bottom:82.051500px;}
.y1e_c01356{bottom:99.984000px;}
.y1d_c01356{bottom:117.916500px;}
.y1c_c01356{bottom:135.849000px;}
.y1b_c01356{bottom:162.501000px;}
.y1a_c01356{bottom:189.151500px;}
.y19_c01356{bottom:215.802000px;}
.y18_c01356{bottom:242.454000px;}
.y17_c01356{bottom:284.478000px;}
.y16_c01356{bottom:748.903500px;}
.y15_c01356{bottom:765.342000px;}
.y14_c01356{bottom:781.780500px;}
.y13_c01356{bottom:798.219000px;}
.y12_c01356{bottom:814.657500px;}
.y11_c01356{bottom:831.096000px;}
.y10_c01356{bottom:847.534500px;}
.yf_c01356{bottom:863.973000px;}
.ye_c01356{bottom:880.411500px;}
.yd_c01356{bottom:896.848500px;}
.yc_c01356{bottom:913.287000px;}
.yb_c01356{bottom:946.164000px;}
.ya_c01356{bottom:962.602500px;}
.y9_c01356{bottom:979.041000px;}
.y8_c01356{bottom:1011.918000px;}
.y7_c01356{bottom:1028.356500px;}
.y6_c01356{bottom:1044.795000px;}
.y5_c01356{bottom:1061.232000px;}
.y4_c01356{bottom:1077.670500px;}
.y3_c01356{bottom:1094.109000px;}
.y2_c01356{bottom:1110.547500px;}
.y1_c01356{bottom:1159.863000px;}
.h3_c01356{height:35.190766px;}
.h2_c01356{height:36.007158px;}
.h5_c01356{height:40.511979px;}
.h6_c01356{height:52.332837px;}
.h4_c01356{height:58.337477px;}
.h0_c01356{height:1262.835000px;}
.h1_c01356{height:1263.000000px;}
.w0_c01356{width:892.920000px;}
.w1_c01356{width:893.250000px;}
.x0_c01356{left:0.000000px;}
.x4_c01356{left:127.558500px;}
.x2_c01356{left:137.122500px;}
.x1_c01356{left:143.770500px;}
.x3_c01356{left:177.007500px;}
.x5_c01356{left:435.249000px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.ls4_c01356{letter-spacing:0.000000pt;}
.ls0_c01356{letter-spacing:0.078221pt;}
.ls2_c01356{letter-spacing:0.087539pt;}
.ls3_c01356{letter-spacing:0.092873pt;}
.ls1_c01356{letter-spacing:23.724873pt;}
.ws2_c01356{word-spacing:-23.622682pt;}
.ws4_c01356{word-spacing:-23.544461pt;}
.ws11_c01356{word-spacing:-17.852979pt;}
.ws10_c01356{word-spacing:-17.002837pt;}
.wsf_c01356{word-spacing:-16.993878pt;}
.wsa_c01356{word-spacing:-16.684034pt;}
.wse_c01356{word-spacing:-14.611813pt;}
.ws9_c01356{word-spacing:-13.283467pt;}
.wsd_c01356{word-spacing:-12.272707pt;}
.wsc_c01356{word-spacing:-12.220789pt;}
.ws7_c01356{word-spacing:-8.878599pt;}
.ws8_c01356{word-spacing:-8.877777pt;}
.ws3_c01356{word-spacing:0.000000pt;}
.ws0_c01356{word-spacing:0.039110pt;}
.wsb_c01356{word-spacing:0.074539pt;}
.ws5_c01356{word-spacing:0.189730pt;}
.ws1_c01356{word-spacing:0.195063pt;}
.ws6_c01356{word-spacing:38.256533pt;}
._2_c01356{margin-left:-4.208219pt;}
._4_c01356{margin-left:-0.956410pt;}
._1_c01356{width:0.945502pt;}
._6_c01356{width:16.312097pt;}
._3_c01356{width:17.720725pt;}
._5_c01356{width:18.862523pt;}
._7_c01356{width:23.750838pt;}
._0_c01356{width:94.920941pt;}
.fs0_c01356{font-size:39.110400pt;}
.fs2_c01356{font-size:53.133867pt;}
.fs1_c01356{font-size:76.513067pt;}
.y0_c01356{bottom:0.000000pt;}
.y20_c01356{bottom:39.333333pt;}
.y1f_c01356{bottom:72.934667pt;}
.y1e_c01356{bottom:88.874667pt;}
.y1d_c01356{bottom:104.814667pt;}
.y1c_c01356{bottom:120.754667pt;}
.y1b_c01356{bottom:144.445333pt;}
.y1a_c01356{bottom:168.134667pt;}
.y19_c01356{bottom:191.824000pt;}
.y18_c01356{bottom:215.514667pt;}
.y17_c01356{bottom:252.869333pt;}
.y16_c01356{bottom:665.692000pt;}
.y15_c01356{bottom:680.304000pt;}
.y14_c01356{bottom:694.916000pt;}
.y13_c01356{bottom:709.528000pt;}
.y12_c01356{bottom:724.140000pt;}
.y11_c01356{bottom:738.752000pt;}
.y10_c01356{bottom:753.364000pt;}
.yf_c01356{bottom:767.976000pt;}
.ye_c01356{bottom:782.588000pt;}
.yd_c01356{bottom:797.198667pt;}
.yc_c01356{bottom:811.810667pt;}
.yb_c01356{bottom:841.034667pt;}
.ya_c01356{bottom:855.646667pt;}
.y9_c01356{bottom:870.258667pt;}
.y8_c01356{bottom:899.482667pt;}
.y7_c01356{bottom:914.094667pt;}
.y6_c01356{bottom:928.706667pt;}
.y5_c01356{bottom:943.317333pt;}
.y4_c01356{bottom:957.929333pt;}
.y3_c01356{bottom:972.541333pt;}
.y2_c01356{bottom:987.153333pt;}
.y1_c01356{bottom:1030.989333pt;}
.h3_c01356{height:31.280681pt;}
.h2_c01356{height:32.006363pt;}
.h5_c01356{height:36.010648pt;}
.h6_c01356{height:46.518078pt;}
.h4_c01356{height:51.855535pt;}
.h0_c01356{height:1122.520000pt;}
.h1_c01356{height:1122.666667pt;}
.w0_c01356{width:793.706667pt;}
.w1_c01356{width:794.000000pt;}
.x0_c01356{left:0.000000pt;}
.x4_c01356{left:113.385333pt;}
.x2_c01356{left:121.886667pt;}
.x1_c01356{left:127.796000pt;}
.x3_c01356{left:157.340000pt;}
.x5_c01356{left:386.888000pt;}
}





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

.ir_c01357:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01357;src:url('chunks/assets/font_6fdb96412b6f8372b276ff1b.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01357;src:url('chunks/assets/font_5f5032a62c985e949d1dfcce.woff2')format("woff");}.ff2_c01357{font-family:ff2_c01357;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01357;src:url('chunks/assets/font_0c58774e3352720f512d0b70.woff2')format("woff");}.ff3_c01357{font-family:ff3_c01357;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01357;src:url('chunks/assets/font_9911955ae28496b1f29ebd25.woff2')format("woff");}.ff4_c01357{font-family:ff4_c01357;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01357{vertical-align:0.000000px;}
.ls3_c01357{letter-spacing:0.000000px;}
.ls1_c01357{letter-spacing:0.087998px;}
.ls2_c01357{letter-spacing:0.098482px;}
.ls0_c01357{letter-spacing:0.104482px;}
.sc__c01357{text-shadow:none;}
.sc0_c01357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01357{-webkit-text-stroke:0px transparent;}
.sc0_c01357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01357{word-spacing:-26.575517px;}
.ws3_c01357{word-spacing:-26.487518px;}
.ws0_c01357{word-spacing:-20.503031px;}
.ws1_c01357{word-spacing:-18.769538px;}
.ws8_c01357{word-spacing:0.000000px;}
.ws5_c01357{word-spacing:0.043999px;}
.ws9_c01357{word-spacing:0.056767px;}
.ws2_c01357{word-spacing:0.175997px;}
.ws7_c01357{word-spacing:0.213446px;}
.ws6_c01357{word-spacing:0.219446px;}
._1_c01357{margin-left:-3.765863px;}
._2_c01357{width:1.005737px;}
._0_c01357{width:19.307519px;}
._3_c01357{width:106.610062px;}
.fc5_c01357{color:rgb(0,0,207);}
.fc4_c01357{color:rgb(79,153,5);}
.fc3_c01357{color:rgb(207,92,0);}
.fc2_c01357{color:rgb(33,74,135);}
.fc1_c01357{color:rgb(143,89,3);}
.fc0_c01357{color:rgb(0,0,0);}
.fs1_c01357{font-size:43.999200px;}
.fs0_c01357{font-size:59.775600px;}
.y0_c01357{bottom:0.000000px;}
.y30_c01357{bottom:44.250000px;}
.y2f_c01357{bottom:96.919500px;}
.y2e_c01357{bottom:113.358000px;}
.y2d_c01357{bottom:129.796500px;}
.y2c_c01357{bottom:146.235000px;}
.y2b_c01357{bottom:162.673500px;}
.y2a_c01357{bottom:179.112000px;}
.y29_c01357{bottom:195.550500px;}
.y28_c01357{bottom:211.989000px;}
.y27_c01357{bottom:228.427500px;}
.y26_c01357{bottom:244.866000px;}
.y25_c01357{bottom:261.304500px;}
.y24_c01357{bottom:294.180000px;}
.y23_c01357{bottom:310.618500px;}
.y22_c01357{bottom:327.057000px;}
.y21_c01357{bottom:359.934000px;}
.y20_c01357{bottom:376.372500px;}
.y1f_c01357{bottom:392.811000px;}
.y1e_c01357{bottom:409.249500px;}
.y1d_c01357{bottom:425.688000px;}
.y1c_c01357{bottom:442.125000px;}
.y1b_c01357{bottom:458.563500px;}
.y1a_c01357{bottom:475.002000px;}
.y19_c01357{bottom:491.440500px;}
.y18_c01357{bottom:507.879000px;}
.y17_c01357{bottom:524.317500px;}
.y16_c01357{bottom:540.756000px;}
.y15_c01357{bottom:557.194500px;}
.y14_c01357{bottom:573.633000px;}
.y13_c01357{bottom:622.947000px;}
.y12_c01357{bottom:639.385500px;}
.y11_c01357{bottom:672.262500px;}
.y10_c01357{bottom:688.701000px;}
.yf_c01357{bottom:721.578000px;}
.ye_c01357{bottom:738.016500px;}
.yd_c01357{bottom:754.455000px;}
.yc_c01357{bottom:770.893500px;}
.yb_c01357{bottom:803.769000px;}
.ya_c01357{bottom:820.207500px;}
.y9_c01357{bottom:836.646000px;}
.y8_c01357{bottom:853.084500px;}
.y7_c01357{bottom:869.523000px;}
.y6_c01357{bottom:885.961500px;}
.y5_c01357{bottom:902.400000px;}
.y4_c01357{bottom:918.838500px;}
.y3_c01357{bottom:934.903500px;}
.y2_c01357{bottom:1141.930500px;}
.y1_c01357{bottom:1159.863000px;}
.h3_c01357{height:35.190766px;}
.h4_c01357{height:36.007158px;}
.h2_c01357{height:52.332837px;}
.h0_c01357{height:1262.835000px;}
.h1_c01357{height:1263.000000px;}
.w0_c01357{width:892.920000px;}
.w1_c01357{width:893.250000px;}
.x0_c01357{left:0.000000px;}
.x1_c01357{left:127.558500px;}
.x2_c01357{left:137.122500px;}
.x4_c01357{left:177.007500px;}
.x3_c01357{left:230.185500px;}
.x5_c01357{left:435.249000px;}
@media print{
.v0_c01357{vertical-align:0.000000pt;}
.ls3_c01357{letter-spacing:0.000000pt;}
.ls1_c01357{letter-spacing:0.078221pt;}
.ls2_c01357{letter-spacing:0.087539pt;}
.ls0_c01357{letter-spacing:0.092873pt;}
.ws4_c01357{word-spacing:-23.622682pt;}
.ws3_c01357{word-spacing:-23.544461pt;}
.ws0_c01357{word-spacing:-18.224916pt;}
.ws1_c01357{word-spacing:-16.684034pt;}
.ws8_c01357{word-spacing:0.000000pt;}
.ws5_c01357{word-spacing:0.039110pt;}
.ws9_c01357{word-spacing:0.050460pt;}
.ws2_c01357{word-spacing:0.156442pt;}
.ws7_c01357{word-spacing:0.189730pt;}
.ws6_c01357{word-spacing:0.195063pt;}
._1_c01357{margin-left:-3.347434pt;}
._2_c01357{width:0.893988pt;}
._0_c01357{width:17.162239pt;}
._3_c01357{width:94.764499pt;}
.fs1_c01357{font-size:39.110400pt;}
.fs0_c01357{font-size:53.133867pt;}
.y0_c01357{bottom:0.000000pt;}
.y30_c01357{bottom:39.333333pt;}
.y2f_c01357{bottom:86.150667pt;}
.y2e_c01357{bottom:100.762667pt;}
.y2d_c01357{bottom:115.374667pt;}
.y2c_c01357{bottom:129.986667pt;}
.y2b_c01357{bottom:144.598667pt;}
.y2a_c01357{bottom:159.210667pt;}
.y29_c01357{bottom:173.822667pt;}
.y28_c01357{bottom:188.434667pt;}
.y27_c01357{bottom:203.046667pt;}
.y26_c01357{bottom:217.658667pt;}
.y25_c01357{bottom:232.270667pt;}
.y24_c01357{bottom:261.493333pt;}
.y23_c01357{bottom:276.105333pt;}
.y22_c01357{bottom:290.717333pt;}
.y21_c01357{bottom:319.941333pt;}
.y20_c01357{bottom:334.553333pt;}
.y1f_c01357{bottom:349.165333pt;}
.y1e_c01357{bottom:363.777333pt;}
.y1d_c01357{bottom:378.389333pt;}
.y1c_c01357{bottom:393.000000pt;}
.y1b_c01357{bottom:407.612000pt;}
.y1a_c01357{bottom:422.224000pt;}
.y19_c01357{bottom:436.836000pt;}
.y18_c01357{bottom:451.448000pt;}
.y17_c01357{bottom:466.060000pt;}
.y16_c01357{bottom:480.672000pt;}
.y15_c01357{bottom:495.284000pt;}
.y14_c01357{bottom:509.896000pt;}
.y13_c01357{bottom:553.730667pt;}
.y12_c01357{bottom:568.342667pt;}
.y11_c01357{bottom:597.566667pt;}
.y10_c01357{bottom:612.178667pt;}
.yf_c01357{bottom:641.402667pt;}
.ye_c01357{bottom:656.014667pt;}
.yd_c01357{bottom:670.626667pt;}
.yc_c01357{bottom:685.238667pt;}
.yb_c01357{bottom:714.461333pt;}
.ya_c01357{bottom:729.073333pt;}
.y9_c01357{bottom:743.685333pt;}
.y8_c01357{bottom:758.297333pt;}
.y7_c01357{bottom:772.909333pt;}
.y6_c01357{bottom:787.521333pt;}
.y5_c01357{bottom:802.133333pt;}
.y4_c01357{bottom:816.745333pt;}
.y3_c01357{bottom:831.025333pt;}
.y2_c01357{bottom:1015.049333pt;}
.y1_c01357{bottom:1030.989333pt;}
.h3_c01357{height:31.280681pt;}
.h4_c01357{height:32.006363pt;}
.h2_c01357{height:46.518078pt;}
.h0_c01357{height:1122.520000pt;}
.h1_c01357{height:1122.666667pt;}
.w0_c01357{width:793.706667pt;}
.w1_c01357{width:794.000000pt;}
.x0_c01357{left:0.000000pt;}
.x1_c01357{left:113.385333pt;}
.x2_c01357{left:121.886667pt;}
.x4_c01357{left:157.340000pt;}
.x3_c01357{left:204.609333pt;}
.x5_c01357{left:386.888000pt;}
}





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

.ir_c01358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01358;src:url('chunks/assets/font_ed08e40898d08d104bf7efb9.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01358;src:url('chunks/assets/font_e1e7521b28e8e4a3d103e8d3.woff2')format("woff");}.ff2_c01358{font-family:ff2_c01358;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01358;src:url('chunks/assets/font_cf494d0fc6d3ddcd226c6848.woff2')format("woff");}.ff3_c01358{font-family:ff3_c01358;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01358;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01358{font-family:ff4_c01358;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01358;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01358{font-family:ff5_c01358;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01358{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01358{vertical-align:0.000000px;}
.ls3_c01358{letter-spacing:0.000000px;}
.ls0_c01358{letter-spacing:0.087998px;}
.ls2_c01358{letter-spacing:0.098482px;}
.ls1_c01358{letter-spacing:0.104482px;}
.sc__c01358{text-shadow:none;}
.sc0_c01358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01358{-webkit-text-stroke:0px transparent;}
.sc0_c01358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01358{word-spacing:-33.713438px;}
.ws2_c01358{word-spacing:-26.575517px;}
.wse_c01358{word-spacing:-26.487518px;}
.ws9_c01358{word-spacing:-21.553319px;}
.ws8_c01358{word-spacing:-21.519216px;}
.ws5_c01358{word-spacing:-18.769538px;}
.ws7_c01358{word-spacing:-16.019861px;}
.ws4_c01358{word-spacing:-14.943900px;}
.wsa_c01358{word-spacing:-14.107042px;}
.wsb_c01358{word-spacing:-12.074671px;}
.ws1_c01358{word-spacing:-9.988424px;}
.ws3_c01358{word-spacing:-9.987499px;}
.ws6_c01358{word-spacing:-4.536144px;}
.ws12_c01358{word-spacing:0.000000px;}
.wsf_c01358{word-spacing:0.043999px;}
.ws15_c01358{word-spacing:0.056767px;}
.ws13_c01358{word-spacing:0.073250px;}
.ws14_c01358{word-spacing:0.083734px;}
.wsd_c01358{word-spacing:0.175997px;}
.ws16_c01358{word-spacing:0.202963px;}
.ws10_c01358{word-spacing:0.213446px;}
.ws11_c01358{word-spacing:0.219446px;}
.ws0_c01358{word-spacing:43.038600px;}
._0_c01358{margin-left:-4.734246px;}
._3_c01358{margin-left:-2.347817px;}
._2_c01358{margin-left:-1.075961px;}
._6_c01358{width:1.005737px;}
._5_c01358{width:15.972059px;}
._1_c01358{width:19.935816px;}
._4_c01358{width:40.109428px;}
._8_c01358{width:53.283031px;}
._7_c01358{width:79.858548px;}
._9_c01358{width:133.452408px;}
.fc6_c01358{color:rgb(0,0,207);}
.fc5_c01358{color:rgb(79,153,5);}
.fc3_c01358{color:rgb(33,74,135);}
.fc2_c01358{color:rgb(143,89,3);}
.fc4_c01358{color:rgb(207,92,0);}
.fc1_c01358{color:rgb(6,69,173);}
.fc0_c01358{color:rgb(0,0,0);}
.fs2_c01358{font-size:43.999200px;}
.fs1_c01358{font-size:59.775600px;}
.fs0_c01358{font-size:86.077200px;}
.y0_c01358{bottom:0.000000px;}
.y20_c01358{bottom:44.250000px;}
.y1f_c01358{bottom:86.982000px;}
.y1e_c01358{bottom:103.420500px;}
.y1d_c01358{bottom:119.859000px;}
.y1c_c01358{bottom:136.297500px;}
.y1b_c01358{bottom:152.736000px;}
.y1a_c01358{bottom:169.174500px;}
.y19_c01358{bottom:185.613000px;}
.y18_c01358{bottom:202.051500px;}
.y17_c01358{bottom:218.490000px;}
.y16_c01358{bottom:234.927000px;}
.y15_c01358{bottom:251.365500px;}
.y14_c01358{bottom:267.804000px;}
.y13_c01358{bottom:284.242500px;}
.y12_c01358{bottom:300.681000px;}
.y11_c01358{bottom:317.119500px;}
.y10_c01358{bottom:349.996500px;}
.yf_c01358{bottom:366.435000px;}
.ye_c01358{bottom:415.749000px;}
.yd_c01358{bottom:432.187500px;}
.yc_c01358{bottom:448.252500px;}
.yb_c01358{bottom:493.890000px;}
.ya_c01358{bottom:511.822500px;}
.y9_c01358{bottom:529.756500px;}
.y8_c01358{bottom:547.689000px;}
.y7_c01358{bottom:565.621500px;}
.y6_c01358{bottom:583.554000px;}
.y5_c01358{bottom:610.633500px;}
.y4_c01358{bottom:637.714500px;}
.y3_c01358{bottom:664.794000px;}
.y2_c01358{bottom:691.873500px;}
.y1_c01358{bottom:734.407500px;}
.h5_c01358{height:35.190766px;}
.h6_c01358{height:36.007158px;}
.h3_c01358{height:40.511979px;}
.h4_c01358{height:52.332837px;}
.h2_c01358{height:58.337477px;}
.h0_c01358{height:1262.835000px;}
.h1_c01358{height:1263.000000px;}
.w0_c01358{width:892.920000px;}
.w1_c01358{width:893.250000px;}
.x0_c01358{left:0.000000px;}
.x1_c01358{left:127.558500px;}
.x2_c01358{left:137.122500px;}
.x3_c01358{left:143.770500px;}
.x4_c01358{left:435.249000px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.ls3_c01358{letter-spacing:0.000000pt;}
.ls0_c01358{letter-spacing:0.078221pt;}
.ls2_c01358{letter-spacing:0.087539pt;}
.ls1_c01358{letter-spacing:0.092873pt;}
.wsc_c01358{word-spacing:-29.967501pt;}
.ws2_c01358{word-spacing:-23.622682pt;}
.wse_c01358{word-spacing:-23.544461pt;}
.ws9_c01358{word-spacing:-19.158506pt;}
.ws8_c01358{word-spacing:-19.128192pt;}
.ws5_c01358{word-spacing:-16.684034pt;}
.ws7_c01358{word-spacing:-14.239876pt;}
.ws4_c01358{word-spacing:-13.283467pt;}
.wsa_c01358{word-spacing:-12.539593pt;}
.wsb_c01358{word-spacing:-10.733041pt;}
.ws1_c01358{word-spacing:-8.878599pt;}
.ws3_c01358{word-spacing:-8.877777pt;}
.ws6_c01358{word-spacing:-4.032128pt;}
.ws12_c01358{word-spacing:0.000000pt;}
.wsf_c01358{word-spacing:0.039110pt;}
.ws15_c01358{word-spacing:0.050460pt;}
.ws13_c01358{word-spacing:0.065111pt;}
.ws14_c01358{word-spacing:0.074430pt;}
.wsd_c01358{word-spacing:0.156442pt;}
.ws16_c01358{word-spacing:0.180412pt;}
.ws10_c01358{word-spacing:0.189730pt;}
.ws11_c01358{word-spacing:0.195063pt;}
.ws0_c01358{word-spacing:38.256533pt;}
._0_c01358{margin-left:-4.208219pt;}
._3_c01358{margin-left:-2.086948pt;}
._2_c01358{margin-left:-0.956410pt;}
._6_c01358{width:0.893988pt;}
._5_c01358{width:14.197386pt;}
._1_c01358{width:17.720725pt;}
._4_c01358{width:35.652825pt;}
._8_c01358{width:47.362694pt;}
._7_c01358{width:70.985376pt;}
._9_c01358{width:118.624363pt;}
.fs2_c01358{font-size:39.110400pt;}
.fs1_c01358{font-size:53.133867pt;}
.fs0_c01358{font-size:76.513067pt;}
.y0_c01358{bottom:0.000000pt;}
.y20_c01358{bottom:39.333333pt;}
.y1f_c01358{bottom:77.317333pt;}
.y1e_c01358{bottom:91.929333pt;}
.y1d_c01358{bottom:106.541333pt;}
.y1c_c01358{bottom:121.153333pt;}
.y1b_c01358{bottom:135.765333pt;}
.y1a_c01358{bottom:150.377333pt;}
.y19_c01358{bottom:164.989333pt;}
.y18_c01358{bottom:179.601333pt;}
.y17_c01358{bottom:194.213333pt;}
.y16_c01358{bottom:208.824000pt;}
.y15_c01358{bottom:223.436000pt;}
.y14_c01358{bottom:238.048000pt;}
.y13_c01358{bottom:252.660000pt;}
.y12_c01358{bottom:267.272000pt;}
.y11_c01358{bottom:281.884000pt;}
.y10_c01358{bottom:311.108000pt;}
.yf_c01358{bottom:325.720000pt;}
.ye_c01358{bottom:369.554667pt;}
.yd_c01358{bottom:384.166667pt;}
.yc_c01358{bottom:398.446667pt;}
.yb_c01358{bottom:439.013333pt;}
.ya_c01358{bottom:454.953333pt;}
.y9_c01358{bottom:470.894667pt;}
.y8_c01358{bottom:486.834667pt;}
.y7_c01358{bottom:502.774667pt;}
.y6_c01358{bottom:518.714667pt;}
.y5_c01358{bottom:542.785333pt;}
.y4_c01358{bottom:566.857333pt;}
.y3_c01358{bottom:590.928000pt;}
.y2_c01358{bottom:614.998667pt;}
.y1_c01358{bottom:652.806667pt;}
.h5_c01358{height:31.280681pt;}
.h6_c01358{height:32.006363pt;}
.h3_c01358{height:36.010648pt;}
.h4_c01358{height:46.518078pt;}
.h2_c01358{height:51.855535pt;}
.h0_c01358{height:1122.520000pt;}
.h1_c01358{height:1122.666667pt;}
.w0_c01358{width:793.706667pt;}
.w1_c01358{width:794.000000pt;}
.x0_c01358{left:0.000000pt;}
.x1_c01358{left:113.385333pt;}
.x2_c01358{left:121.886667pt;}
.x3_c01358{left:127.796000pt;}
.x4_c01358{left:386.888000pt;}
}





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

.ir_c01359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01359;src:url('chunks/assets/font_b3448ce02e60720115217cb1.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01359;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01359{font-family:ff2_c01359;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01359;src:url('chunks/assets/font_fb508169a90962c11b7b3f21.woff2')format("woff");}.ff3_c01359{font-family:ff3_c01359;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01359;src:url('chunks/assets/font_414b69191c97831d0b0639e2.woff2')format("woff");}.ff4_c01359{font-family:ff4_c01359;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01359;src:url('chunks/assets/font_ea734f49bfe7a6c39884cc23.woff2')format("woff");}.ff5_c01359{font-family:ff5_c01359;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01359{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01359{vertical-align:0.000000px;}
.ls4_c01359{letter-spacing:0.000000px;}
.ls0_c01359{letter-spacing:0.087998px;}
.ls2_c01359{letter-spacing:0.098482px;}
.ls3_c01359{letter-spacing:0.104482px;}
.ls1_c01359{letter-spacing:26.690482px;}
.sc__c01359{text-shadow:none;}
.sc0_c01359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01359{-webkit-text-stroke:0px transparent;}
.sc0_c01359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01359{word-spacing:-26.575517px;}
.ws4_c01359{word-spacing:-26.487518px;}
.wse_c01359{word-spacing:-21.553319px;}
.wsd_c01359{word-spacing:-21.519216px;}
.wsa_c01359{word-spacing:-18.769538px;}
.wsc_c01359{word-spacing:-17.633802px;}
.ws9_c01359{word-spacing:-14.943900px;}
.wsf_c01359{word-spacing:-14.107042px;}
.ws10_c01359{word-spacing:-12.074671px;}
.ws7_c01359{word-spacing:-9.988424px;}
.ws8_c01359{word-spacing:-9.987499px;}
.wsb_c01359{word-spacing:-7.686144px;}
.ws3_c01359{word-spacing:0.000000px;}
.ws0_c01359{word-spacing:0.043999px;}
.ws5_c01359{word-spacing:0.213446px;}
.ws1_c01359{word-spacing:0.219446px;}
.ws6_c01359{word-spacing:43.038600px;}
._2_c01359{margin-left:-4.734246px;}
._5_c01359{margin-left:-2.347817px;}
._4_c01359{margin-left:-1.075961px;}
._1_c01359{width:1.041538px;}
._3_c01359{width:19.935816px;}
._6_c01359{width:40.109428px;}
._0_c01359{width:106.610062px;}
.fc5_c01359{color:rgb(79,153,5);}
.fc4_c01359{color:rgb(143,89,3);}
.fc3_c01359{color:rgb(0,0,0);}
.fc6_c01359{color:rgb(6,69,173);}
.fc2_c01359{color:rgb(207,92,0);}
.fc1_c01359{color:rgb(0,0,207);}
.fc0_c01359{color:rgb(33,74,135);}
.fs0_c01359{font-size:43.999200px;}
.fs2_c01359{font-size:59.775600px;}
.fs1_c01359{font-size:86.077200px;}
.y0_c01359{bottom:0.000000px;}
.y20_c01359{bottom:44.250000px;}
.y1f_c01359{bottom:82.051500px;}
.y1e_c01359{bottom:99.984000px;}
.y1d_c01359{bottom:117.916500px;}
.y1c_c01359{bottom:135.849000px;}
.y1b_c01359{bottom:162.501000px;}
.y1a_c01359{bottom:189.151500px;}
.y19_c01359{bottom:215.802000px;}
.y18_c01359{bottom:242.454000px;}
.y17_c01359{bottom:284.478000px;}
.y16_c01359{bottom:748.903500px;}
.y15_c01359{bottom:765.342000px;}
.y14_c01359{bottom:781.780500px;}
.y13_c01359{bottom:798.219000px;}
.y12_c01359{bottom:814.657500px;}
.y11_c01359{bottom:831.096000px;}
.y10_c01359{bottom:847.534500px;}
.yf_c01359{bottom:863.973000px;}
.ye_c01359{bottom:880.411500px;}
.yd_c01359{bottom:896.848500px;}
.yc_c01359{bottom:913.287000px;}
.yb_c01359{bottom:946.164000px;}
.ya_c01359{bottom:962.602500px;}
.y9_c01359{bottom:979.041000px;}
.y8_c01359{bottom:1011.918000px;}
.y7_c01359{bottom:1028.356500px;}
.y6_c01359{bottom:1044.795000px;}
.y5_c01359{bottom:1061.232000px;}
.y4_c01359{bottom:1077.670500px;}
.y3_c01359{bottom:1094.109000px;}
.y2_c01359{bottom:1110.547500px;}
.y1_c01359{bottom:1159.863000px;}
.h3_c01359{height:35.190766px;}
.h2_c01359{height:36.007158px;}
.h5_c01359{height:40.511979px;}
.h6_c01359{height:52.332837px;}
.h4_c01359{height:58.337477px;}
.h0_c01359{height:1262.835000px;}
.h1_c01359{height:1263.000000px;}
.w0_c01359{width:892.920000px;}
.w1_c01359{width:893.250000px;}
.x0_c01359{left:0.000000px;}
.x4_c01359{left:127.558500px;}
.x2_c01359{left:137.122500px;}
.x1_c01359{left:143.770500px;}
.x3_c01359{left:177.007500px;}
.x5_c01359{left:435.249000px;}
@media print{
.v0_c01359{vertical-align:0.000000pt;}
.ls4_c01359{letter-spacing:0.000000pt;}
.ls0_c01359{letter-spacing:0.078221pt;}
.ls2_c01359{letter-spacing:0.087539pt;}
.ls3_c01359{letter-spacing:0.092873pt;}
.ls1_c01359{letter-spacing:23.724873pt;}
.ws2_c01359{word-spacing:-23.622682pt;}
.ws4_c01359{word-spacing:-23.544461pt;}
.wse_c01359{word-spacing:-19.158506pt;}
.wsd_c01359{word-spacing:-19.128192pt;}
.wsa_c01359{word-spacing:-16.684034pt;}
.wsc_c01359{word-spacing:-15.674491pt;}
.ws9_c01359{word-spacing:-13.283467pt;}
.wsf_c01359{word-spacing:-12.539593pt;}
.ws10_c01359{word-spacing:-10.733041pt;}
.ws7_c01359{word-spacing:-8.878599pt;}
.ws8_c01359{word-spacing:-8.877777pt;}
.wsb_c01359{word-spacing:-6.832128pt;}
.ws3_c01359{word-spacing:0.000000pt;}
.ws0_c01359{word-spacing:0.039110pt;}
.ws5_c01359{word-spacing:0.189730pt;}
.ws1_c01359{word-spacing:0.195063pt;}
.ws6_c01359{word-spacing:38.256533pt;}
._2_c01359{margin-left:-4.208219pt;}
._5_c01359{margin-left:-2.086948pt;}
._4_c01359{margin-left:-0.956410pt;}
._1_c01359{width:0.925811pt;}
._3_c01359{width:17.720725pt;}
._6_c01359{width:35.652825pt;}
._0_c01359{width:94.764499pt;}
.fs0_c01359{font-size:39.110400pt;}
.fs2_c01359{font-size:53.133867pt;}
.fs1_c01359{font-size:76.513067pt;}
.y0_c01359{bottom:0.000000pt;}
.y20_c01359{bottom:39.333333pt;}
.y1f_c01359{bottom:72.934667pt;}
.y1e_c01359{bottom:88.874667pt;}
.y1d_c01359{bottom:104.814667pt;}
.y1c_c01359{bottom:120.754667pt;}
.y1b_c01359{bottom:144.445333pt;}
.y1a_c01359{bottom:168.134667pt;}
.y19_c01359{bottom:191.824000pt;}
.y18_c01359{bottom:215.514667pt;}
.y17_c01359{bottom:252.869333pt;}
.y16_c01359{bottom:665.692000pt;}
.y15_c01359{bottom:680.304000pt;}
.y14_c01359{bottom:694.916000pt;}
.y13_c01359{bottom:709.528000pt;}
.y12_c01359{bottom:724.140000pt;}
.y11_c01359{bottom:738.752000pt;}
.y10_c01359{bottom:753.364000pt;}
.yf_c01359{bottom:767.976000pt;}
.ye_c01359{bottom:782.588000pt;}
.yd_c01359{bottom:797.198667pt;}
.yc_c01359{bottom:811.810667pt;}
.yb_c01359{bottom:841.034667pt;}
.ya_c01359{bottom:855.646667pt;}
.y9_c01359{bottom:870.258667pt;}
.y8_c01359{bottom:899.482667pt;}
.y7_c01359{bottom:914.094667pt;}
.y6_c01359{bottom:928.706667pt;}
.y5_c01359{bottom:943.317333pt;}
.y4_c01359{bottom:957.929333pt;}
.y3_c01359{bottom:972.541333pt;}
.y2_c01359{bottom:987.153333pt;}
.y1_c01359{bottom:1030.989333pt;}
.h3_c01359{height:31.280681pt;}
.h2_c01359{height:32.006363pt;}
.h5_c01359{height:36.010648pt;}
.h6_c01359{height:46.518078pt;}
.h4_c01359{height:51.855535pt;}
.h0_c01359{height:1122.520000pt;}
.h1_c01359{height:1122.666667pt;}
.w0_c01359{width:793.706667pt;}
.w1_c01359{width:794.000000pt;}
.x0_c01359{left:0.000000pt;}
.x4_c01359{left:113.385333pt;}
.x2_c01359{left:121.886667pt;}
.x1_c01359{left:127.796000pt;}
.x3_c01359{left:157.340000pt;}
.x5_c01359{left:386.888000pt;}
}





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

.ir_c01360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01360;src:url('chunks/assets/font_1242e3865763176fba533b1c.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01360;src:url('chunks/assets/font_31391a135ab66c8cd5cf5de1.woff2')format("woff");}.ff2_c01360{font-family:ff2_c01360;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01360;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01360{font-family:ff3_c01360;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01360;src:url('chunks/assets/font_f06494874afad7e0153c500a.woff2')format("woff");}.ff4_c01360{font-family:ff4_c01360;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01360{vertical-align:0.000000px;}
.ls4_c01360{letter-spacing:0.000000px;}
.ls1_c01360{letter-spacing:0.087998px;}
.ls2_c01360{letter-spacing:0.098482px;}
.ls0_c01360{letter-spacing:0.104482px;}
.ls3_c01360{letter-spacing:26.690482px;}
.sc__c01360{text-shadow:none;}
.sc0_c01360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01360{-webkit-text-stroke:0px transparent;}
.sc0_c01360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01360{word-spacing:-33.713438px;}
.ws4_c01360{word-spacing:-26.575517px;}
.ws3_c01360{word-spacing:-26.487518px;}
.ws0_c01360{word-spacing:-18.769538px;}
.ws8_c01360{word-spacing:0.000000px;}
.ws5_c01360{word-spacing:0.043999px;}
.wsb_c01360{word-spacing:0.056767px;}
.ws9_c01360{word-spacing:0.073250px;}
.wsa_c01360{word-spacing:0.083734px;}
.ws2_c01360{word-spacing:0.175997px;}
.wsc_c01360{word-spacing:0.202963px;}
.ws6_c01360{word-spacing:0.213446px;}
.ws7_c01360{word-spacing:0.219446px;}
._0_c01360{margin-left:-3.825638px;}
._1_c01360{width:1.005737px;}
._3_c01360{width:53.283031px;}
._2_c01360{width:79.858548px;}
._4_c01360{width:133.452408px;}
.fc5_c01360{color:rgb(0,0,207);}
.fc4_c01360{color:rgb(79,153,5);}
.fc3_c01360{color:rgb(207,92,0);}
.fc2_c01360{color:rgb(33,74,135);}
.fc1_c01360{color:rgb(143,89,3);}
.fc0_c01360{color:rgb(0,0,0);}
.fs1_c01360{font-size:43.999200px;}
.fs0_c01360{font-size:59.775600px;}
.y0_c01360{bottom:0.000000px;}
.y2d_c01360{bottom:44.250000px;}
.y2c_c01360{bottom:96.919500px;}
.y2b_c01360{bottom:113.358000px;}
.y2a_c01360{bottom:129.796500px;}
.y29_c01360{bottom:146.235000px;}
.y28_c01360{bottom:162.673500px;}
.y27_c01360{bottom:179.112000px;}
.y26_c01360{bottom:195.550500px;}
.y25_c01360{bottom:211.989000px;}
.y24_c01360{bottom:228.427500px;}
.y23_c01360{bottom:244.866000px;}
.y22_c01360{bottom:261.304500px;}
.y21_c01360{bottom:294.180000px;}
.y20_c01360{bottom:310.618500px;}
.y1f_c01360{bottom:327.057000px;}
.y1e_c01360{bottom:359.934000px;}
.y1d_c01360{bottom:376.372500px;}
.y1c_c01360{bottom:392.811000px;}
.y1b_c01360{bottom:409.249500px;}
.y1a_c01360{bottom:425.688000px;}
.y19_c01360{bottom:442.125000px;}
.y18_c01360{bottom:458.563500px;}
.y17_c01360{bottom:507.879000px;}
.y16_c01360{bottom:524.317500px;}
.y15_c01360{bottom:540.756000px;}
.y14_c01360{bottom:557.194500px;}
.y13_c01360{bottom:573.633000px;}
.y12_c01360{bottom:590.071500px;}
.y11_c01360{bottom:606.508500px;}
.y10_c01360{bottom:622.947000px;}
.yf_c01360{bottom:639.385500px;}
.ye_c01360{bottom:655.824000px;}
.yd_c01360{bottom:672.262500px;}
.yc_c01360{bottom:688.701000px;}
.yb_c01360{bottom:705.139500px;}
.ya_c01360{bottom:721.578000px;}
.y9_c01360{bottom:738.016500px;}
.y8_c01360{bottom:754.455000px;}
.y7_c01360{bottom:787.330500px;}
.y6_c01360{bottom:803.769000px;}
.y5_c01360{bottom:853.084500px;}
.y4_c01360{bottom:869.523000px;}
.y3_c01360{bottom:885.588000px;}
.y2_c01360{bottom:1141.930500px;}
.y1_c01360{bottom:1159.863000px;}
.h3_c01360{height:35.190766px;}
.h4_c01360{height:36.007158px;}
.h2_c01360{height:52.332837px;}
.h0_c01360{height:1262.835000px;}
.h1_c01360{height:1263.000000px;}
.w0_c01360{width:892.920000px;}
.w1_c01360{width:893.250000px;}
.x0_c01360{left:0.000000px;}
.x1_c01360{left:127.558500px;}
.x2_c01360{left:137.122500px;}
.x3_c01360{left:143.770500px;}
.x4_c01360{left:177.007500px;}
.x5_c01360{left:435.249000px;}
@media print{
.v0_c01360{vertical-align:0.000000pt;}
.ls4_c01360{letter-spacing:0.000000pt;}
.ls1_c01360{letter-spacing:0.078221pt;}
.ls2_c01360{letter-spacing:0.087539pt;}
.ls0_c01360{letter-spacing:0.092873pt;}
.ls3_c01360{letter-spacing:23.724873pt;}
.ws1_c01360{word-spacing:-29.967501pt;}
.ws4_c01360{word-spacing:-23.622682pt;}
.ws3_c01360{word-spacing:-23.544461pt;}
.ws0_c01360{word-spacing:-16.684034pt;}
.ws8_c01360{word-spacing:0.000000pt;}
.ws5_c01360{word-spacing:0.039110pt;}
.wsb_c01360{word-spacing:0.050460pt;}
.ws9_c01360{word-spacing:0.065111pt;}
.wsa_c01360{word-spacing:0.074430pt;}
.ws2_c01360{word-spacing:0.156442pt;}
.wsc_c01360{word-spacing:0.180412pt;}
.ws6_c01360{word-spacing:0.189730pt;}
.ws7_c01360{word-spacing:0.195063pt;}
._0_c01360{margin-left:-3.400567pt;}
._1_c01360{width:0.893988pt;}
._3_c01360{width:47.362694pt;}
._2_c01360{width:70.985376pt;}
._4_c01360{width:118.624363pt;}
.fs1_c01360{font-size:39.110400pt;}
.fs0_c01360{font-size:53.133867pt;}
.y0_c01360{bottom:0.000000pt;}
.y2d_c01360{bottom:39.333333pt;}
.y2c_c01360{bottom:86.150667pt;}
.y2b_c01360{bottom:100.762667pt;}
.y2a_c01360{bottom:115.374667pt;}
.y29_c01360{bottom:129.986667pt;}
.y28_c01360{bottom:144.598667pt;}
.y27_c01360{bottom:159.210667pt;}
.y26_c01360{bottom:173.822667pt;}
.y25_c01360{bottom:188.434667pt;}
.y24_c01360{bottom:203.046667pt;}
.y23_c01360{bottom:217.658667pt;}
.y22_c01360{bottom:232.270667pt;}
.y21_c01360{bottom:261.493333pt;}
.y20_c01360{bottom:276.105333pt;}
.y1f_c01360{bottom:290.717333pt;}
.y1e_c01360{bottom:319.941333pt;}
.y1d_c01360{bottom:334.553333pt;}
.y1c_c01360{bottom:349.165333pt;}
.y1b_c01360{bottom:363.777333pt;}
.y1a_c01360{bottom:378.389333pt;}
.y19_c01360{bottom:393.000000pt;}
.y18_c01360{bottom:407.612000pt;}
.y17_c01360{bottom:451.448000pt;}
.y16_c01360{bottom:466.060000pt;}
.y15_c01360{bottom:480.672000pt;}
.y14_c01360{bottom:495.284000pt;}
.y13_c01360{bottom:509.896000pt;}
.y12_c01360{bottom:524.508000pt;}
.y11_c01360{bottom:539.118667pt;}
.y10_c01360{bottom:553.730667pt;}
.yf_c01360{bottom:568.342667pt;}
.ye_c01360{bottom:582.954667pt;}
.yd_c01360{bottom:597.566667pt;}
.yc_c01360{bottom:612.178667pt;}
.yb_c01360{bottom:626.790667pt;}
.ya_c01360{bottom:641.402667pt;}
.y9_c01360{bottom:656.014667pt;}
.y8_c01360{bottom:670.626667pt;}
.y7_c01360{bottom:699.849333pt;}
.y6_c01360{bottom:714.461333pt;}
.y5_c01360{bottom:758.297333pt;}
.y4_c01360{bottom:772.909333pt;}
.y3_c01360{bottom:787.189333pt;}
.y2_c01360{bottom:1015.049333pt;}
.y1_c01360{bottom:1030.989333pt;}
.h3_c01360{height:31.280681pt;}
.h4_c01360{height:32.006363pt;}
.h2_c01360{height:46.518078pt;}
.h0_c01360{height:1122.520000pt;}
.h1_c01360{height:1122.666667pt;}
.w0_c01360{width:793.706667pt;}
.w1_c01360{width:794.000000pt;}
.x0_c01360{left:0.000000pt;}
.x1_c01360{left:113.385333pt;}
.x2_c01360{left:121.886667pt;}
.x3_c01360{left:127.796000pt;}
.x4_c01360{left:157.340000pt;}
.x5_c01360{left:386.888000pt;}
}





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

.ir_c01361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01361;src:url('chunks/assets/font_8de7c5396f00b6147b334427.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01361;src:url('chunks/assets/font_e6ebe070c4172fd98bc74f0f.woff2')format("woff");}.ff2_c01361{font-family:ff2_c01361;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01361;src:url('chunks/assets/font_beeb161dc96ed4888c1bb732.woff2')format("woff");}.ff3_c01361{font-family:ff3_c01361;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01361;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01361{font-family:ff4_c01361;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01361;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01361{font-family:ff5_c01361;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01361{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01361{vertical-align:0.000000px;}
.ls3_c01361{letter-spacing:0.000000px;}
.ls0_c01361{letter-spacing:0.087998px;}
.ls2_c01361{letter-spacing:0.098482px;}
.ls1_c01361{letter-spacing:0.104482px;}
.sc__c01361{text-shadow:none;}
.sc0_c01361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01361{-webkit-text-stroke:0px transparent;}
.sc0_c01361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01361{word-spacing:-33.713438px;}
.ws2_c01361{word-spacing:-26.575517px;}
.wse_c01361{word-spacing:-26.487518px;}
.ws9_c01361{word-spacing:-21.553319px;}
.ws8_c01361{word-spacing:-21.519216px;}
.ws5_c01361{word-spacing:-18.769538px;}
.ws7_c01361{word-spacing:-17.633802px;}
.ws4_c01361{word-spacing:-14.943900px;}
.wsa_c01361{word-spacing:-14.107042px;}
.wsb_c01361{word-spacing:-12.074671px;}
.ws1_c01361{word-spacing:-9.988424px;}
.ws3_c01361{word-spacing:-9.987499px;}
.ws6_c01361{word-spacing:-7.686144px;}
.ws12_c01361{word-spacing:0.000000px;}
.wsf_c01361{word-spacing:0.043999px;}
.ws15_c01361{word-spacing:0.056767px;}
.ws13_c01361{word-spacing:0.073250px;}
.ws14_c01361{word-spacing:0.083734px;}
.wsd_c01361{word-spacing:0.175997px;}
.ws16_c01361{word-spacing:0.202963px;}
.ws10_c01361{word-spacing:0.213446px;}
.ws11_c01361{word-spacing:0.219446px;}
.ws0_c01361{word-spacing:43.038600px;}
._0_c01361{margin-left:-4.734246px;}
._3_c01361{margin-left:-2.347817px;}
._2_c01361{margin-left:-1.075961px;}
._6_c01361{width:1.005737px;}
._5_c01361{width:15.972059px;}
._1_c01361{width:19.935816px;}
._4_c01361{width:40.109428px;}
._8_c01361{width:53.283031px;}
._7_c01361{width:79.858548px;}
._9_c01361{width:133.452408px;}
.fc6_c01361{color:rgb(0,0,207);}
.fc5_c01361{color:rgb(79,153,5);}
.fc3_c01361{color:rgb(33,74,135);}
.fc2_c01361{color:rgb(143,89,3);}
.fc4_c01361{color:rgb(207,92,0);}
.fc1_c01361{color:rgb(6,69,173);}
.fc0_c01361{color:rgb(0,0,0);}
.fs2_c01361{font-size:43.999200px;}
.fs1_c01361{font-size:59.775600px;}
.fs0_c01361{font-size:86.077200px;}
.y0_c01361{bottom:0.000000px;}
.y20_c01361{bottom:44.250000px;}
.y1f_c01361{bottom:86.982000px;}
.y1e_c01361{bottom:103.420500px;}
.y1d_c01361{bottom:119.859000px;}
.y1c_c01361{bottom:136.297500px;}
.y1b_c01361{bottom:152.736000px;}
.y1a_c01361{bottom:169.174500px;}
.y19_c01361{bottom:185.613000px;}
.y18_c01361{bottom:202.051500px;}
.y17_c01361{bottom:218.490000px;}
.y16_c01361{bottom:234.927000px;}
.y15_c01361{bottom:251.365500px;}
.y14_c01361{bottom:267.804000px;}
.y13_c01361{bottom:284.242500px;}
.y12_c01361{bottom:300.681000px;}
.y11_c01361{bottom:317.119500px;}
.y10_c01361{bottom:349.996500px;}
.yf_c01361{bottom:366.435000px;}
.ye_c01361{bottom:415.749000px;}
.yd_c01361{bottom:432.187500px;}
.yc_c01361{bottom:448.252500px;}
.yb_c01361{bottom:493.890000px;}
.ya_c01361{bottom:511.822500px;}
.y9_c01361{bottom:529.756500px;}
.y8_c01361{bottom:547.689000px;}
.y7_c01361{bottom:565.621500px;}
.y6_c01361{bottom:583.554000px;}
.y5_c01361{bottom:610.633500px;}
.y4_c01361{bottom:637.714500px;}
.y3_c01361{bottom:664.794000px;}
.y2_c01361{bottom:691.873500px;}
.y1_c01361{bottom:734.407500px;}
.h5_c01361{height:35.190766px;}
.h6_c01361{height:36.007158px;}
.h3_c01361{height:40.511979px;}
.h4_c01361{height:52.332837px;}
.h2_c01361{height:58.337477px;}
.h0_c01361{height:1262.835000px;}
.h1_c01361{height:1263.000000px;}
.w0_c01361{width:892.920000px;}
.w1_c01361{width:893.250000px;}
.x0_c01361{left:0.000000px;}
.x1_c01361{left:127.558500px;}
.x2_c01361{left:137.122500px;}
.x3_c01361{left:143.770500px;}
.x4_c01361{left:435.249000px;}
@media print{
.v0_c01361{vertical-align:0.000000pt;}
.ls3_c01361{letter-spacing:0.000000pt;}
.ls0_c01361{letter-spacing:0.078221pt;}
.ls2_c01361{letter-spacing:0.087539pt;}
.ls1_c01361{letter-spacing:0.092873pt;}
.wsc_c01361{word-spacing:-29.967501pt;}
.ws2_c01361{word-spacing:-23.622682pt;}
.wse_c01361{word-spacing:-23.544461pt;}
.ws9_c01361{word-spacing:-19.158506pt;}
.ws8_c01361{word-spacing:-19.128192pt;}
.ws5_c01361{word-spacing:-16.684034pt;}
.ws7_c01361{word-spacing:-15.674491pt;}
.ws4_c01361{word-spacing:-13.283467pt;}
.wsa_c01361{word-spacing:-12.539593pt;}
.wsb_c01361{word-spacing:-10.733041pt;}
.ws1_c01361{word-spacing:-8.878599pt;}
.ws3_c01361{word-spacing:-8.877777pt;}
.ws6_c01361{word-spacing:-6.832128pt;}
.ws12_c01361{word-spacing:0.000000pt;}
.wsf_c01361{word-spacing:0.039110pt;}
.ws15_c01361{word-spacing:0.050460pt;}
.ws13_c01361{word-spacing:0.065111pt;}
.ws14_c01361{word-spacing:0.074430pt;}
.wsd_c01361{word-spacing:0.156442pt;}
.ws16_c01361{word-spacing:0.180412pt;}
.ws10_c01361{word-spacing:0.189730pt;}
.ws11_c01361{word-spacing:0.195063pt;}
.ws0_c01361{word-spacing:38.256533pt;}
._0_c01361{margin-left:-4.208219pt;}
._3_c01361{margin-left:-2.086948pt;}
._2_c01361{margin-left:-0.956410pt;}
._6_c01361{width:0.893988pt;}
._5_c01361{width:14.197386pt;}
._1_c01361{width:17.720725pt;}
._4_c01361{width:35.652825pt;}
._8_c01361{width:47.362694pt;}
._7_c01361{width:70.985376pt;}
._9_c01361{width:118.624363pt;}
.fs2_c01361{font-size:39.110400pt;}
.fs1_c01361{font-size:53.133867pt;}
.fs0_c01361{font-size:76.513067pt;}
.y0_c01361{bottom:0.000000pt;}
.y20_c01361{bottom:39.333333pt;}
.y1f_c01361{bottom:77.317333pt;}
.y1e_c01361{bottom:91.929333pt;}
.y1d_c01361{bottom:106.541333pt;}
.y1c_c01361{bottom:121.153333pt;}
.y1b_c01361{bottom:135.765333pt;}
.y1a_c01361{bottom:150.377333pt;}
.y19_c01361{bottom:164.989333pt;}
.y18_c01361{bottom:179.601333pt;}
.y17_c01361{bottom:194.213333pt;}
.y16_c01361{bottom:208.824000pt;}
.y15_c01361{bottom:223.436000pt;}
.y14_c01361{bottom:238.048000pt;}
.y13_c01361{bottom:252.660000pt;}
.y12_c01361{bottom:267.272000pt;}
.y11_c01361{bottom:281.884000pt;}
.y10_c01361{bottom:311.108000pt;}
.yf_c01361{bottom:325.720000pt;}
.ye_c01361{bottom:369.554667pt;}
.yd_c01361{bottom:384.166667pt;}
.yc_c01361{bottom:398.446667pt;}
.yb_c01361{bottom:439.013333pt;}
.ya_c01361{bottom:454.953333pt;}
.y9_c01361{bottom:470.894667pt;}
.y8_c01361{bottom:486.834667pt;}
.y7_c01361{bottom:502.774667pt;}
.y6_c01361{bottom:518.714667pt;}
.y5_c01361{bottom:542.785333pt;}
.y4_c01361{bottom:566.857333pt;}
.y3_c01361{bottom:590.928000pt;}
.y2_c01361{bottom:614.998667pt;}
.y1_c01361{bottom:652.806667pt;}
.h5_c01361{height:31.280681pt;}
.h6_c01361{height:32.006363pt;}
.h3_c01361{height:36.010648pt;}
.h4_c01361{height:46.518078pt;}
.h2_c01361{height:51.855535pt;}
.h0_c01361{height:1122.520000pt;}
.h1_c01361{height:1122.666667pt;}
.w0_c01361{width:793.706667pt;}
.w1_c01361{width:794.000000pt;}
.x0_c01361{left:0.000000pt;}
.x1_c01361{left:113.385333pt;}
.x2_c01361{left:121.886667pt;}
.x3_c01361{left:127.796000pt;}
.x4_c01361{left:386.888000pt;}
}





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

.ir_c01362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01362;src:url('chunks/assets/font_7d4ae60ac2d333df81d32a9b.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01362;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01362{font-family:ff2_c01362;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01362;src:url('chunks/assets/font_49b747bf3349813cc5a02897.woff2')format("woff");}.ff3_c01362{font-family:ff3_c01362;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01362;src:url('chunks/assets/font_ef9f09dadf0df4a830f2fd97.woff2')format("woff");}.ff4_c01362{font-family:ff4_c01362;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01362;src:url('chunks/assets/font_c83c1381d75015e2228e79c3.woff2')format("woff");}.ff5_c01362{font-family:ff5_c01362;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01362{vertical-align:0.000000px;}
.ls4_c01362{letter-spacing:0.000000px;}
.ls0_c01362{letter-spacing:0.087998px;}
.ls2_c01362{letter-spacing:0.098482px;}
.ls3_c01362{letter-spacing:0.104482px;}
.ls1_c01362{letter-spacing:26.690482px;}
.sc__c01362{text-shadow:none;}
.sc0_c01362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01362{-webkit-text-stroke:0px transparent;}
.sc0_c01362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01362{word-spacing:-26.575517px;}
.ws4_c01362{word-spacing:-26.487518px;}
.wse_c01362{word-spacing:-21.553319px;}
.wsd_c01362{word-spacing:-21.519216px;}
.wsc_c01362{word-spacing:-19.247743px;}
.wsa_c01362{word-spacing:-18.769538px;}
.ws9_c01362{word-spacing:-14.943900px;}
.wsf_c01362{word-spacing:-14.107042px;}
.ws10_c01362{word-spacing:-12.074671px;}
.wsb_c01362{word-spacing:-10.230144px;}
.ws7_c01362{word-spacing:-9.988424px;}
.ws8_c01362{word-spacing:-9.987499px;}
.ws3_c01362{word-spacing:0.000000px;}
.ws0_c01362{word-spacing:0.043999px;}
.ws5_c01362{word-spacing:0.213446px;}
.ws1_c01362{word-spacing:0.219446px;}
.ws6_c01362{word-spacing:43.038600px;}
._2_c01362{margin-left:-4.734246px;}
._5_c01362{margin-left:-2.347817px;}
._4_c01362{margin-left:-1.075961px;}
._1_c01362{width:1.041538px;}
._3_c01362{width:19.935816px;}
._6_c01362{width:40.109428px;}
._0_c01362{width:80.034545px;}
.fc5_c01362{color:rgb(79,153,5);}
.fc4_c01362{color:rgb(143,89,3);}
.fc3_c01362{color:rgb(0,0,0);}
.fc6_c01362{color:rgb(6,69,173);}
.fc2_c01362{color:rgb(207,92,0);}
.fc1_c01362{color:rgb(0,0,207);}
.fc0_c01362{color:rgb(33,74,135);}
.fs0_c01362{font-size:43.999200px;}
.fs2_c01362{font-size:59.775600px;}
.fs1_c01362{font-size:86.077200px;}
.y0_c01362{bottom:0.000000px;}
.y20_c01362{bottom:44.250000px;}
.y1f_c01362{bottom:82.051500px;}
.y1e_c01362{bottom:99.984000px;}
.y1d_c01362{bottom:117.916500px;}
.y1c_c01362{bottom:135.849000px;}
.y1b_c01362{bottom:162.501000px;}
.y1a_c01362{bottom:189.151500px;}
.y19_c01362{bottom:215.802000px;}
.y18_c01362{bottom:242.454000px;}
.y17_c01362{bottom:284.478000px;}
.y16_c01362{bottom:748.903500px;}
.y15_c01362{bottom:765.342000px;}
.y14_c01362{bottom:781.780500px;}
.y13_c01362{bottom:798.219000px;}
.y12_c01362{bottom:814.657500px;}
.y11_c01362{bottom:831.096000px;}
.y10_c01362{bottom:847.534500px;}
.yf_c01362{bottom:863.973000px;}
.ye_c01362{bottom:880.411500px;}
.yd_c01362{bottom:896.848500px;}
.yc_c01362{bottom:913.287000px;}
.yb_c01362{bottom:946.164000px;}
.ya_c01362{bottom:962.602500px;}
.y9_c01362{bottom:979.041000px;}
.y8_c01362{bottom:1011.918000px;}
.y7_c01362{bottom:1028.356500px;}
.y6_c01362{bottom:1044.795000px;}
.y5_c01362{bottom:1061.232000px;}
.y4_c01362{bottom:1077.670500px;}
.y3_c01362{bottom:1094.109000px;}
.y2_c01362{bottom:1110.547500px;}
.y1_c01362{bottom:1159.863000px;}
.h3_c01362{height:35.190766px;}
.h2_c01362{height:36.007158px;}
.h5_c01362{height:40.511979px;}
.h6_c01362{height:52.332837px;}
.h4_c01362{height:58.337477px;}
.h0_c01362{height:1262.835000px;}
.h1_c01362{height:1263.000000px;}
.w0_c01362{width:892.920000px;}
.w1_c01362{width:893.250000px;}
.x0_c01362{left:0.000000px;}
.x4_c01362{left:127.558500px;}
.x2_c01362{left:137.122500px;}
.x1_c01362{left:143.770500px;}
.x3_c01362{left:177.007500px;}
.x5_c01362{left:435.249000px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls4_c01362{letter-spacing:0.000000pt;}
.ls0_c01362{letter-spacing:0.078221pt;}
.ls2_c01362{letter-spacing:0.087539pt;}
.ls3_c01362{letter-spacing:0.092873pt;}
.ls1_c01362{letter-spacing:23.724873pt;}
.ws2_c01362{word-spacing:-23.622682pt;}
.ws4_c01362{word-spacing:-23.544461pt;}
.wse_c01362{word-spacing:-19.158506pt;}
.wsd_c01362{word-spacing:-19.128192pt;}
.wsc_c01362{word-spacing:-17.109105pt;}
.wsa_c01362{word-spacing:-16.684034pt;}
.ws9_c01362{word-spacing:-13.283467pt;}
.wsf_c01362{word-spacing:-12.539593pt;}
.ws10_c01362{word-spacing:-10.733041pt;}
.wsb_c01362{word-spacing:-9.093461pt;}
.ws7_c01362{word-spacing:-8.878599pt;}
.ws8_c01362{word-spacing:-8.877777pt;}
.ws3_c01362{word-spacing:0.000000pt;}
.ws0_c01362{word-spacing:0.039110pt;}
.ws5_c01362{word-spacing:0.189730pt;}
.ws1_c01362{word-spacing:0.195063pt;}
.ws6_c01362{word-spacing:38.256533pt;}
._2_c01362{margin-left:-4.208219pt;}
._5_c01362{margin-left:-2.086948pt;}
._4_c01362{margin-left:-0.956410pt;}
._1_c01362{width:0.925811pt;}
._3_c01362{width:17.720725pt;}
._6_c01362{width:35.652825pt;}
._0_c01362{width:71.141818pt;}
.fs0_c01362{font-size:39.110400pt;}
.fs2_c01362{font-size:53.133867pt;}
.fs1_c01362{font-size:76.513067pt;}
.y0_c01362{bottom:0.000000pt;}
.y20_c01362{bottom:39.333333pt;}
.y1f_c01362{bottom:72.934667pt;}
.y1e_c01362{bottom:88.874667pt;}
.y1d_c01362{bottom:104.814667pt;}
.y1c_c01362{bottom:120.754667pt;}
.y1b_c01362{bottom:144.445333pt;}
.y1a_c01362{bottom:168.134667pt;}
.y19_c01362{bottom:191.824000pt;}
.y18_c01362{bottom:215.514667pt;}
.y17_c01362{bottom:252.869333pt;}
.y16_c01362{bottom:665.692000pt;}
.y15_c01362{bottom:680.304000pt;}
.y14_c01362{bottom:694.916000pt;}
.y13_c01362{bottom:709.528000pt;}
.y12_c01362{bottom:724.140000pt;}
.y11_c01362{bottom:738.752000pt;}
.y10_c01362{bottom:753.364000pt;}
.yf_c01362{bottom:767.976000pt;}
.ye_c01362{bottom:782.588000pt;}
.yd_c01362{bottom:797.198667pt;}
.yc_c01362{bottom:811.810667pt;}
.yb_c01362{bottom:841.034667pt;}
.ya_c01362{bottom:855.646667pt;}
.y9_c01362{bottom:870.258667pt;}
.y8_c01362{bottom:899.482667pt;}
.y7_c01362{bottom:914.094667pt;}
.y6_c01362{bottom:928.706667pt;}
.y5_c01362{bottom:943.317333pt;}
.y4_c01362{bottom:957.929333pt;}
.y3_c01362{bottom:972.541333pt;}
.y2_c01362{bottom:987.153333pt;}
.y1_c01362{bottom:1030.989333pt;}
.h3_c01362{height:31.280681pt;}
.h2_c01362{height:32.006363pt;}
.h5_c01362{height:36.010648pt;}
.h6_c01362{height:46.518078pt;}
.h4_c01362{height:51.855535pt;}
.h0_c01362{height:1122.520000pt;}
.h1_c01362{height:1122.666667pt;}
.w0_c01362{width:793.706667pt;}
.w1_c01362{width:794.000000pt;}
.x0_c01362{left:0.000000pt;}
.x4_c01362{left:113.385333pt;}
.x2_c01362{left:121.886667pt;}
.x1_c01362{left:127.796000pt;}
.x3_c01362{left:157.340000pt;}
.x5_c01362{left:386.888000pt;}
}





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

.ir_c01363:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01363;src:url('chunks/assets/font_875a9b1baf5aee2f522de95d.woff2')format("woff");}.ff1_c01363{font-family:ff1_c01363;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01363;src:url('chunks/assets/font_9000a280bc99e121b28cb818.woff2')format("woff");}.ff2_c01363{font-family:ff2_c01363;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01363;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01363{font-family:ff3_c01363;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01363;src:url('chunks/assets/font_505490bed0a3fe02413749f5.woff2')format("woff");}.ff4_c01363{font-family:ff4_c01363;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01363{vertical-align:0.000000px;}
.ls4_c01363{letter-spacing:0.000000px;}
.ls1_c01363{letter-spacing:0.087998px;}
.ls2_c01363{letter-spacing:0.098482px;}
.ls0_c01363{letter-spacing:0.104482px;}
.ls3_c01363{letter-spacing:26.690482px;}
.sc__c01363{text-shadow:none;}
.sc0_c01363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01363{-webkit-text-stroke:0px transparent;}
.sc0_c01363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01363{word-spacing:-33.713438px;}
.ws4_c01363{word-spacing:-26.575517px;}
.ws3_c01363{word-spacing:-26.487518px;}
.ws0_c01363{word-spacing:-18.769538px;}
.ws8_c01363{word-spacing:0.000000px;}
.ws5_c01363{word-spacing:0.043999px;}
.wsb_c01363{word-spacing:0.056767px;}
.ws9_c01363{word-spacing:0.073250px;}
.wsa_c01363{word-spacing:0.083734px;}
.ws2_c01363{word-spacing:0.175997px;}
.wsc_c01363{word-spacing:0.202963px;}
.ws6_c01363{word-spacing:0.213446px;}
.ws7_c01363{word-spacing:0.219446px;}
._0_c01363{margin-left:-3.825638px;}
._1_c01363{width:1.005737px;}
._3_c01363{width:53.283031px;}
._2_c01363{width:79.858548px;}
._4_c01363{width:133.452408px;}
.fc5_c01363{color:rgb(0,0,207);}
.fc4_c01363{color:rgb(79,153,5);}
.fc3_c01363{color:rgb(207,92,0);}
.fc2_c01363{color:rgb(33,74,135);}
.fc1_c01363{color:rgb(143,89,3);}
.fc0_c01363{color:rgb(0,0,0);}
.fs1_c01363{font-size:43.999200px;}
.fs0_c01363{font-size:59.775600px;}
.y0_c01363{bottom:0.000000px;}
.y2d_c01363{bottom:44.250000px;}
.y2c_c01363{bottom:96.919500px;}
.y2b_c01363{bottom:113.358000px;}
.y2a_c01363{bottom:129.796500px;}
.y29_c01363{bottom:146.235000px;}
.y28_c01363{bottom:162.673500px;}
.y27_c01363{bottom:179.112000px;}
.y26_c01363{bottom:195.550500px;}
.y25_c01363{bottom:211.989000px;}
.y24_c01363{bottom:228.427500px;}
.y23_c01363{bottom:244.866000px;}
.y22_c01363{bottom:261.304500px;}
.y21_c01363{bottom:294.180000px;}
.y20_c01363{bottom:310.618500px;}
.y1f_c01363{bottom:327.057000px;}
.y1e_c01363{bottom:359.934000px;}
.y1d_c01363{bottom:376.372500px;}
.y1c_c01363{bottom:392.811000px;}
.y1b_c01363{bottom:409.249500px;}
.y1a_c01363{bottom:425.688000px;}
.y19_c01363{bottom:442.125000px;}
.y18_c01363{bottom:458.563500px;}
.y17_c01363{bottom:507.879000px;}
.y16_c01363{bottom:524.317500px;}
.y15_c01363{bottom:540.756000px;}
.y14_c01363{bottom:557.194500px;}
.y13_c01363{bottom:573.633000px;}
.y12_c01363{bottom:590.071500px;}
.y11_c01363{bottom:606.508500px;}
.y10_c01363{bottom:622.947000px;}
.yf_c01363{bottom:639.385500px;}
.ye_c01363{bottom:655.824000px;}
.yd_c01363{bottom:672.262500px;}
.yc_c01363{bottom:688.701000px;}
.yb_c01363{bottom:705.139500px;}
.ya_c01363{bottom:721.578000px;}
.y9_c01363{bottom:738.016500px;}
.y8_c01363{bottom:754.455000px;}
.y7_c01363{bottom:787.330500px;}
.y6_c01363{bottom:803.769000px;}
.y5_c01363{bottom:853.084500px;}
.y4_c01363{bottom:869.523000px;}
.y3_c01363{bottom:885.588000px;}
.y2_c01363{bottom:1141.930500px;}
.y1_c01363{bottom:1159.863000px;}
.h3_c01363{height:35.190766px;}
.h4_c01363{height:36.007158px;}
.h2_c01363{height:52.332837px;}
.h0_c01363{height:1262.835000px;}
.h1_c01363{height:1263.000000px;}
.w0_c01363{width:892.920000px;}
.w1_c01363{width:893.250000px;}
.x0_c01363{left:0.000000px;}
.x1_c01363{left:127.558500px;}
.x2_c01363{left:137.122500px;}
.x3_c01363{left:143.770500px;}
.x4_c01363{left:177.007500px;}
.x5_c01363{left:435.249000px;}
@media print{
.v0_c01363{vertical-align:0.000000pt;}
.ls4_c01363{letter-spacing:0.000000pt;}
.ls1_c01363{letter-spacing:0.078221pt;}
.ls2_c01363{letter-spacing:0.087539pt;}
.ls0_c01363{letter-spacing:0.092873pt;}
.ls3_c01363{letter-spacing:23.724873pt;}
.ws1_c01363{word-spacing:-29.967501pt;}
.ws4_c01363{word-spacing:-23.622682pt;}
.ws3_c01363{word-spacing:-23.544461pt;}
.ws0_c01363{word-spacing:-16.684034pt;}
.ws8_c01363{word-spacing:0.000000pt;}
.ws5_c01363{word-spacing:0.039110pt;}
.wsb_c01363{word-spacing:0.050460pt;}
.ws9_c01363{word-spacing:0.065111pt;}
.wsa_c01363{word-spacing:0.074430pt;}
.ws2_c01363{word-spacing:0.156442pt;}
.wsc_c01363{word-spacing:0.180412pt;}
.ws6_c01363{word-spacing:0.189730pt;}
.ws7_c01363{word-spacing:0.195063pt;}
._0_c01363{margin-left:-3.400567pt;}
._1_c01363{width:0.893988pt;}
._3_c01363{width:47.362694pt;}
._2_c01363{width:70.985376pt;}
._4_c01363{width:118.624363pt;}
.fs1_c01363{font-size:39.110400pt;}
.fs0_c01363{font-size:53.133867pt;}
.y0_c01363{bottom:0.000000pt;}
.y2d_c01363{bottom:39.333333pt;}
.y2c_c01363{bottom:86.150667pt;}
.y2b_c01363{bottom:100.762667pt;}
.y2a_c01363{bottom:115.374667pt;}
.y29_c01363{bottom:129.986667pt;}
.y28_c01363{bottom:144.598667pt;}
.y27_c01363{bottom:159.210667pt;}
.y26_c01363{bottom:173.822667pt;}
.y25_c01363{bottom:188.434667pt;}
.y24_c01363{bottom:203.046667pt;}
.y23_c01363{bottom:217.658667pt;}
.y22_c01363{bottom:232.270667pt;}
.y21_c01363{bottom:261.493333pt;}
.y20_c01363{bottom:276.105333pt;}
.y1f_c01363{bottom:290.717333pt;}
.y1e_c01363{bottom:319.941333pt;}
.y1d_c01363{bottom:334.553333pt;}
.y1c_c01363{bottom:349.165333pt;}
.y1b_c01363{bottom:363.777333pt;}
.y1a_c01363{bottom:378.389333pt;}
.y19_c01363{bottom:393.000000pt;}
.y18_c01363{bottom:407.612000pt;}
.y17_c01363{bottom:451.448000pt;}
.y16_c01363{bottom:466.060000pt;}
.y15_c01363{bottom:480.672000pt;}
.y14_c01363{bottom:495.284000pt;}
.y13_c01363{bottom:509.896000pt;}
.y12_c01363{bottom:524.508000pt;}
.y11_c01363{bottom:539.118667pt;}
.y10_c01363{bottom:553.730667pt;}
.yf_c01363{bottom:568.342667pt;}
.ye_c01363{bottom:582.954667pt;}
.yd_c01363{bottom:597.566667pt;}
.yc_c01363{bottom:612.178667pt;}
.yb_c01363{bottom:626.790667pt;}
.ya_c01363{bottom:641.402667pt;}
.y9_c01363{bottom:656.014667pt;}
.y8_c01363{bottom:670.626667pt;}
.y7_c01363{bottom:699.849333pt;}
.y6_c01363{bottom:714.461333pt;}
.y5_c01363{bottom:758.297333pt;}
.y4_c01363{bottom:772.909333pt;}
.y3_c01363{bottom:787.189333pt;}
.y2_c01363{bottom:1015.049333pt;}
.y1_c01363{bottom:1030.989333pt;}
.h3_c01363{height:31.280681pt;}
.h4_c01363{height:32.006363pt;}
.h2_c01363{height:46.518078pt;}
.h0_c01363{height:1122.520000pt;}
.h1_c01363{height:1122.666667pt;}
.w0_c01363{width:793.706667pt;}
.w1_c01363{width:794.000000pt;}
.x0_c01363{left:0.000000pt;}
.x1_c01363{left:113.385333pt;}
.x2_c01363{left:121.886667pt;}
.x3_c01363{left:127.796000pt;}
.x4_c01363{left:157.340000pt;}
.x5_c01363{left:386.888000pt;}
}





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

.ir_c01364:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01364;src:url('chunks/assets/font_88d9e350dc8ea7687db3660b.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01364;src:url('chunks/assets/font_76d6c52ca08a2ee2da6385aa.woff2')format("woff");}.ff2_c01364{font-family:ff2_c01364;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01364;src:url('chunks/assets/font_d58e7f3bccbc894a687d2c58.woff2')format("woff");}.ff3_c01364{font-family:ff3_c01364;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01364;src:url('chunks/assets/font_1b16cfef79e4222bcfd7e08e.woff2')format("woff");}.ff4_c01364{font-family:ff4_c01364;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01364;src:url('chunks/assets/font_9a9f86eaef33cc1e649da902.woff2')format("woff");}.ff5_c01364{font-family:ff5_c01364;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01364{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01364{vertical-align:0.000000px;}
.ls3_c01364{letter-spacing:0.000000px;}
.ls0_c01364{letter-spacing:0.087998px;}
.ls2_c01364{letter-spacing:0.098482px;}
.ls1_c01364{letter-spacing:0.104482px;}
.sc__c01364{text-shadow:none;}
.sc0_c01364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01364{-webkit-text-stroke:0px transparent;}
.sc0_c01364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01364{word-spacing:-26.575517px;}
.wsd_c01364{word-spacing:-26.487518px;}
.ws9_c01364{word-spacing:-21.041011px;}
.wsa_c01364{word-spacing:-19.187968px;}
.ws5_c01364{word-spacing:-18.769538px;}
.ws7_c01364{word-spacing:-17.995937px;}
.ws8_c01364{word-spacing:-17.992456px;}
.wsb_c01364{word-spacing:-17.872904px;}
.ws4_c01364{word-spacing:-14.943900px;}
.ws1_c01364{word-spacing:-9.988424px;}
.ws3_c01364{word-spacing:-9.987499px;}
.ws6_c01364{word-spacing:-8.382144px;}
.ws11_c01364{word-spacing:0.000000px;}
.wse_c01364{word-spacing:0.043999px;}
.ws12_c01364{word-spacing:0.056767px;}
.wsc_c01364{word-spacing:0.175997px;}
.ws10_c01364{word-spacing:0.213446px;}
.wsf_c01364{word-spacing:0.219446px;}
.ws0_c01364{word-spacing:43.038600px;}
._0_c01364{margin-left:-4.734246px;}
._4_c01364{margin-left:-3.175069px;}
._2_c01364{margin-left:-1.075961px;}
._5_c01364{width:1.005737px;}
._1_c01364{width:19.935816px;}
._3_c01364{width:21.645730px;}
._6_c01364{width:106.610062px;}
.fc6_c01364{color:rgb(0,0,207);}
.fc5_c01364{color:rgb(79,153,5);}
.fc3_c01364{color:rgb(33,74,135);}
.fc2_c01364{color:rgb(143,89,3);}
.fc4_c01364{color:rgb(207,92,0);}
.fc1_c01364{color:rgb(6,69,173);}
.fc0_c01364{color:rgb(0,0,0);}
.fs2_c01364{font-size:43.999200px;}
.fs1_c01364{font-size:59.775600px;}
.fs0_c01364{font-size:86.077200px;}
.y0_c01364{bottom:0.000000px;}
.y20_c01364{bottom:44.250000px;}
.y1f_c01364{bottom:86.982000px;}
.y1e_c01364{bottom:103.420500px;}
.y1d_c01364{bottom:136.297500px;}
.y1c_c01364{bottom:152.736000px;}
.y1b_c01364{bottom:169.174500px;}
.y1a_c01364{bottom:185.613000px;}
.y19_c01364{bottom:202.051500px;}
.y18_c01364{bottom:218.490000px;}
.y17_c01364{bottom:234.927000px;}
.y16_c01364{bottom:251.365500px;}
.y15_c01364{bottom:267.804000px;}
.y14_c01364{bottom:284.242500px;}
.y13_c01364{bottom:300.681000px;}
.y12_c01364{bottom:317.119500px;}
.y11_c01364{bottom:333.558000px;}
.y10_c01364{bottom:349.996500px;}
.yf_c01364{bottom:382.873500px;}
.ye_c01364{bottom:399.310500px;}
.yd_c01364{bottom:432.187500px;}
.yc_c01364{bottom:448.626000px;}
.yb_c01364{bottom:464.691000px;}
.ya_c01364{bottom:513.009000px;}
.y9_c01364{bottom:530.941500px;}
.y8_c01364{bottom:548.874000px;}
.y7_c01364{bottom:566.806500px;}
.y6_c01364{bottom:584.739000px;}
.y5_c01364{bottom:611.683500px;}
.y4_c01364{bottom:638.626500px;}
.y3_c01364{bottom:665.569500px;}
.y2_c01364{bottom:692.512500px;}
.y1_c01364{bottom:734.850000px;}
.h5_c01364{height:35.190766px;}
.h6_c01364{height:36.007158px;}
.h3_c01364{height:40.511979px;}
.h4_c01364{height:52.332837px;}
.h2_c01364{height:58.337477px;}
.h0_c01364{height:1262.835000px;}
.h1_c01364{height:1263.000000px;}
.w0_c01364{width:892.920000px;}
.w1_c01364{width:893.250000px;}
.x0_c01364{left:0.000000px;}
.x1_c01364{left:127.558500px;}
.x2_c01364{left:137.122500px;}
.x3_c01364{left:230.185500px;}
.x4_c01364{left:435.249000px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.ls3_c01364{letter-spacing:0.000000pt;}
.ls0_c01364{letter-spacing:0.078221pt;}
.ls2_c01364{letter-spacing:0.087539pt;}
.ls1_c01364{letter-spacing:0.092873pt;}
.ws2_c01364{word-spacing:-23.622682pt;}
.wsd_c01364{word-spacing:-23.544461pt;}
.ws9_c01364{word-spacing:-18.703121pt;}
.wsa_c01364{word-spacing:-17.055971pt;}
.ws5_c01364{word-spacing:-16.684034pt;}
.ws7_c01364{word-spacing:-15.996388pt;}
.ws8_c01364{word-spacing:-15.993294pt;}
.wsb_c01364{word-spacing:-15.887026pt;}
.ws4_c01364{word-spacing:-13.283467pt;}
.ws1_c01364{word-spacing:-8.878599pt;}
.ws3_c01364{word-spacing:-8.877777pt;}
.ws6_c01364{word-spacing:-7.450795pt;}
.ws11_c01364{word-spacing:0.000000pt;}
.wse_c01364{word-spacing:0.039110pt;}
.ws12_c01364{word-spacing:0.050460pt;}
.wsc_c01364{word-spacing:0.156442pt;}
.ws10_c01364{word-spacing:0.189730pt;}
.wsf_c01364{word-spacing:0.195063pt;}
.ws0_c01364{word-spacing:38.256533pt;}
._0_c01364{margin-left:-4.208219pt;}
._4_c01364{margin-left:-2.822284pt;}
._2_c01364{margin-left:-0.956410pt;}
._5_c01364{width:0.893988pt;}
._1_c01364{width:17.720725pt;}
._3_c01364{width:19.240649pt;}
._6_c01364{width:94.764499pt;}
.fs2_c01364{font-size:39.110400pt;}
.fs1_c01364{font-size:53.133867pt;}
.fs0_c01364{font-size:76.513067pt;}
.y0_c01364{bottom:0.000000pt;}
.y20_c01364{bottom:39.333333pt;}
.y1f_c01364{bottom:77.317333pt;}
.y1e_c01364{bottom:91.929333pt;}
.y1d_c01364{bottom:121.153333pt;}
.y1c_c01364{bottom:135.765333pt;}
.y1b_c01364{bottom:150.377333pt;}
.y1a_c01364{bottom:164.989333pt;}
.y19_c01364{bottom:179.601333pt;}
.y18_c01364{bottom:194.213333pt;}
.y17_c01364{bottom:208.824000pt;}
.y16_c01364{bottom:223.436000pt;}
.y15_c01364{bottom:238.048000pt;}
.y14_c01364{bottom:252.660000pt;}
.y13_c01364{bottom:267.272000pt;}
.y12_c01364{bottom:281.884000pt;}
.y11_c01364{bottom:296.496000pt;}
.y10_c01364{bottom:311.108000pt;}
.yf_c01364{bottom:340.332000pt;}
.ye_c01364{bottom:354.942667pt;}
.yd_c01364{bottom:384.166667pt;}
.yc_c01364{bottom:398.778667pt;}
.yb_c01364{bottom:413.058667pt;}
.ya_c01364{bottom:456.008000pt;}
.y9_c01364{bottom:471.948000pt;}
.y8_c01364{bottom:487.888000pt;}
.y7_c01364{bottom:503.828000pt;}
.y6_c01364{bottom:519.768000pt;}
.y5_c01364{bottom:543.718667pt;}
.y4_c01364{bottom:567.668000pt;}
.y3_c01364{bottom:591.617333pt;}
.y2_c01364{bottom:615.566667pt;}
.y1_c01364{bottom:653.200000pt;}
.h5_c01364{height:31.280681pt;}
.h6_c01364{height:32.006363pt;}
.h3_c01364{height:36.010648pt;}
.h4_c01364{height:46.518078pt;}
.h2_c01364{height:51.855535pt;}
.h0_c01364{height:1122.520000pt;}
.h1_c01364{height:1122.666667pt;}
.w0_c01364{width:793.706667pt;}
.w1_c01364{width:794.000000pt;}
.x0_c01364{left:0.000000pt;}
.x1_c01364{left:113.385333pt;}
.x2_c01364{left:121.886667pt;}
.x3_c01364{left:204.609333pt;}
.x4_c01364{left:386.888000pt;}
}





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

.ir_c01365:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01365;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01365;src:url('chunks/assets/font_c8dc6b90f176186a4d28a923.woff2')format("woff");}.ff2_c01365{font-family:ff2_c01365;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01365;src:url('chunks/assets/font_8f56cfbc723cdc5f6c9d1ed9.woff2')format("woff");}.ff3_c01365{font-family:ff3_c01365;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01365;src:url('chunks/assets/font_54da409dc7b5a5ee296a776d.woff2')format("woff");}.ff4_c01365{font-family:ff4_c01365;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01365;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff5_c01365{font-family:ff5_c01365;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01365{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01365{vertical-align:0.000000px;}
.ls3_c01365{letter-spacing:0.000000px;}
.ls1_c01365{letter-spacing:0.087998px;}
.ls2_c01365{letter-spacing:0.098482px;}
.ls0_c01365{letter-spacing:0.104482px;}
.sc__c01365{text-shadow:none;}
.sc0_c01365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01365{-webkit-text-stroke:0px transparent;}
.sc0_c01365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01365{word-spacing:-33.713438px;}
.ws1_c01365{word-spacing:-26.575517px;}
.ws0_c01365{word-spacing:-26.487518px;}
.wsc_c01365{word-spacing:-21.553319px;}
.wsb_c01365{word-spacing:-21.519216px;}
.ws8_c01365{word-spacing:-18.769538px;}
.wsa_c01365{word-spacing:-16.019861px;}
.ws7_c01365{word-spacing:-14.943900px;}
.wsd_c01365{word-spacing:-14.107042px;}
.wse_c01365{word-spacing:-12.074671px;}
.ws5_c01365{word-spacing:-9.988424px;}
.ws6_c01365{word-spacing:-9.987499px;}
.ws9_c01365{word-spacing:-4.536144px;}
.ws12_c01365{word-spacing:0.000000px;}
.ws2_c01365{word-spacing:0.043999px;}
.ws10_c01365{word-spacing:0.175997px;}
.ws3_c01365{word-spacing:0.213446px;}
.ws11_c01365{word-spacing:0.219446px;}
.ws4_c01365{word-spacing:43.038600px;}
._1_c01365{margin-left:-4.734246px;}
._4_c01365{margin-left:-2.347817px;}
._3_c01365{margin-left:-1.075961px;}
._0_c01365{width:1.041538px;}
._6_c01365{width:15.972059px;}
._2_c01365{width:19.935816px;}
._5_c01365{width:40.109428px;}
.fc5_c01365{color:rgb(0,0,207);}
.fc4_c01365{color:rgb(143,89,3);}
.fc3_c01365{color:rgb(79,153,5);}
.fc6_c01365{color:rgb(6,69,173);}
.fc2_c01365{color:rgb(207,92,0);}
.fc1_c01365{color:rgb(0,0,0);}
.fc0_c01365{color:rgb(33,74,135);}
.fs0_c01365{font-size:43.999200px;}
.fs2_c01365{font-size:59.775600px;}
.fs1_c01365{font-size:86.077200px;}
.y0_c01365{bottom:0.000000px;}
.y1e_c01365{bottom:44.250000px;}
.y1d_c01365{bottom:82.051500px;}
.y1c_c01365{bottom:114.927000px;}
.y1b_c01365{bottom:131.365500px;}
.y1a_c01365{bottom:180.681000px;}
.y19_c01365{bottom:197.119500px;}
.y18_c01365{bottom:213.184500px;}
.y17_c01365{bottom:258.178500px;}
.y16_c01365{bottom:276.111000px;}
.y15_c01365{bottom:294.043500px;}
.y14_c01365{bottom:311.976000px;}
.y13_c01365{bottom:329.908500px;}
.y12_c01365{bottom:347.842500px;}
.y11_c01365{bottom:374.709000px;}
.y10_c01365{bottom:401.577000px;}
.yf_c01365{bottom:428.443500px;}
.ye_c01365{bottom:455.311500px;}
.yd_c01365{bottom:497.551500px;}
.yc_c01365{bottom:962.602500px;}
.yb_c01365{bottom:979.041000px;}
.ya_c01365{bottom:995.479500px;}
.y9_c01365{bottom:1011.918000px;}
.y8_c01365{bottom:1028.356500px;}
.y7_c01365{bottom:1044.795000px;}
.y6_c01365{bottom:1061.232000px;}
.y5_c01365{bottom:1077.670500px;}
.y4_c01365{bottom:1094.109000px;}
.y3_c01365{bottom:1110.547500px;}
.y2_c01365{bottom:1126.986000px;}
.y1_c01365{bottom:1159.863000px;}
.h6_c01365{height:35.190766px;}
.h2_c01365{height:36.007158px;}
.h4_c01365{height:40.511979px;}
.h5_c01365{height:52.332837px;}
.h3_c01365{height:58.337477px;}
.h0_c01365{height:1262.835000px;}
.h1_c01365{height:1263.000000px;}
.w0_c01365{width:892.920000px;}
.w1_c01365{width:893.250000px;}
.x0_c01365{left:0.000000px;}
.x3_c01365{left:127.558500px;}
.x1_c01365{left:137.122500px;}
.x2_c01365{left:177.007500px;}
.x4_c01365{left:435.249000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls3_c01365{letter-spacing:0.000000pt;}
.ls1_c01365{letter-spacing:0.078221pt;}
.ls2_c01365{letter-spacing:0.087539pt;}
.ls0_c01365{letter-spacing:0.092873pt;}
.wsf_c01365{word-spacing:-29.967501pt;}
.ws1_c01365{word-spacing:-23.622682pt;}
.ws0_c01365{word-spacing:-23.544461pt;}
.wsc_c01365{word-spacing:-19.158506pt;}
.wsb_c01365{word-spacing:-19.128192pt;}
.ws8_c01365{word-spacing:-16.684034pt;}
.wsa_c01365{word-spacing:-14.239876pt;}
.ws7_c01365{word-spacing:-13.283467pt;}
.wsd_c01365{word-spacing:-12.539593pt;}
.wse_c01365{word-spacing:-10.733041pt;}
.ws5_c01365{word-spacing:-8.878599pt;}
.ws6_c01365{word-spacing:-8.877777pt;}
.ws9_c01365{word-spacing:-4.032128pt;}
.ws12_c01365{word-spacing:0.000000pt;}
.ws2_c01365{word-spacing:0.039110pt;}
.ws10_c01365{word-spacing:0.156442pt;}
.ws3_c01365{word-spacing:0.189730pt;}
.ws11_c01365{word-spacing:0.195063pt;}
.ws4_c01365{word-spacing:38.256533pt;}
._1_c01365{margin-left:-4.208219pt;}
._4_c01365{margin-left:-2.086948pt;}
._3_c01365{margin-left:-0.956410pt;}
._0_c01365{width:0.925811pt;}
._6_c01365{width:14.197386pt;}
._2_c01365{width:17.720725pt;}
._5_c01365{width:35.652825pt;}
.fs0_c01365{font-size:39.110400pt;}
.fs2_c01365{font-size:53.133867pt;}
.fs1_c01365{font-size:76.513067pt;}
.y0_c01365{bottom:0.000000pt;}
.y1e_c01365{bottom:39.333333pt;}
.y1d_c01365{bottom:72.934667pt;}
.y1c_c01365{bottom:102.157333pt;}
.y1b_c01365{bottom:116.769333pt;}
.y1a_c01365{bottom:160.605333pt;}
.y19_c01365{bottom:175.217333pt;}
.y18_c01365{bottom:189.497333pt;}
.y17_c01365{bottom:229.492000pt;}
.y16_c01365{bottom:245.432000pt;}
.y15_c01365{bottom:261.372000pt;}
.y14_c01365{bottom:277.312000pt;}
.y13_c01365{bottom:293.252000pt;}
.y12_c01365{bottom:309.193333pt;}
.y11_c01365{bottom:333.074667pt;}
.y10_c01365{bottom:356.957333pt;}
.yf_c01365{bottom:380.838667pt;}
.ye_c01365{bottom:404.721333pt;}
.yd_c01365{bottom:442.268000pt;}
.yc_c01365{bottom:855.646667pt;}
.yb_c01365{bottom:870.258667pt;}
.ya_c01365{bottom:884.870667pt;}
.y9_c01365{bottom:899.482667pt;}
.y8_c01365{bottom:914.094667pt;}
.y7_c01365{bottom:928.706667pt;}
.y6_c01365{bottom:943.317333pt;}
.y5_c01365{bottom:957.929333pt;}
.y4_c01365{bottom:972.541333pt;}
.y3_c01365{bottom:987.153333pt;}
.y2_c01365{bottom:1001.765333pt;}
.y1_c01365{bottom:1030.989333pt;}
.h6_c01365{height:31.280681pt;}
.h2_c01365{height:32.006363pt;}
.h4_c01365{height:36.010648pt;}
.h5_c01365{height:46.518078pt;}
.h3_c01365{height:51.855535pt;}
.h0_c01365{height:1122.520000pt;}
.h1_c01365{height:1122.666667pt;}
.w0_c01365{width:793.706667pt;}
.w1_c01365{width:794.000000pt;}
.x0_c01365{left:0.000000pt;}
.x3_c01365{left:113.385333pt;}
.x1_c01365{left:121.886667pt;}
.x2_c01365{left:157.340000pt;}
.x4_c01365{left:386.888000pt;}
}





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

.ir_c01366:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01366;src:url('chunks/assets/font_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01366;src:url('chunks/assets/font_807960b75892a40995c58e7a.woff2')format("woff");}.ff2_c01366{font-family:ff2_c01366;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01366;src:url('chunks/assets/font_c97cb684387055bfc2e94135.woff2')format("woff");}.ff3_c01366{font-family:ff3_c01366;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01366;src:url('chunks/assets/font_87d955fa46a405caaf711459.woff2')format("woff");}.ff4_c01366{font-family:ff4_c01366;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01366{vertical-align:0.000000px;}
.ls4_c01366{letter-spacing:0.000000px;}
.ls0_c01366{letter-spacing:0.087998px;}
.ls2_c01366{letter-spacing:0.098482px;}
.ls1_c01366{letter-spacing:0.104482px;}
.ls3_c01366{letter-spacing:26.690482px;}
.sc__c01366{text-shadow:none;}
.sc0_c01366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01366{-webkit-text-stroke:0px transparent;}
.sc0_c01366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01366{word-spacing:-26.575517px;}
.ws4_c01366{word-spacing:-26.487518px;}
.ws1_c01366{word-spacing:0.000000px;}
.ws7_c01366{word-spacing:0.043999px;}
.ws5_c01366{word-spacing:0.056767px;}
.ws2_c01366{word-spacing:0.073250px;}
.ws3_c01366{word-spacing:0.083734px;}
.ws6_c01366{word-spacing:0.202963px;}
.ws9_c01366{word-spacing:0.213446px;}
.ws8_c01366{word-spacing:0.219446px;}
._4_c01366{width:1.041538px;}
._1_c01366{width:53.283031px;}
._0_c01366{width:79.858548px;}
._3_c01366{width:106.610062px;}
._2_c01366{width:133.452408px;}
.fc5_c01366{color:rgb(207,92,0);}
.fc4_c01366{color:rgb(143,89,3);}
.fc3_c01366{color:rgb(0,0,207);}
.fc2_c01366{color:rgb(79,153,5);}
.fc1_c01366{color:rgb(0,0,0);}
.fc0_c01366{color:rgb(33,74,135);}
.fs0_c01366{font-size:43.999200px;}
.fs1_c01366{font-size:59.775600px;}
.y0_c01366{bottom:0.000000px;}
.y25_c01366{bottom:44.250000px;}
.y24_c01366{bottom:518.767500px;}
.y23_c01366{bottom:535.206000px;}
.y22_c01366{bottom:551.643000px;}
.y21_c01366{bottom:568.081500px;}
.y20_c01366{bottom:584.520000px;}
.y1f_c01366{bottom:600.958500px;}
.y1e_c01366{bottom:617.397000px;}
.y1d_c01366{bottom:633.835500px;}
.y1c_c01366{bottom:650.274000px;}
.y1b_c01366{bottom:666.712500px;}
.y1a_c01366{bottom:683.151000px;}
.y19_c01366{bottom:716.028000px;}
.y18_c01366{bottom:732.465000px;}
.y17_c01366{bottom:748.903500px;}
.y16_c01366{bottom:781.780500px;}
.y15_c01366{bottom:798.219000px;}
.y14_c01366{bottom:814.657500px;}
.y13_c01366{bottom:831.096000px;}
.y12_c01366{bottom:847.534500px;}
.y11_c01366{bottom:863.973000px;}
.y10_c01366{bottom:880.411500px;}
.yf_c01366{bottom:929.725500px;}
.ye_c01366{bottom:946.164000px;}
.yd_c01366{bottom:962.602500px;}
.yc_c01366{bottom:979.041000px;}
.yb_c01366{bottom:995.479500px;}
.ya_c01366{bottom:1011.918000px;}
.y9_c01366{bottom:1028.356500px;}
.y8_c01366{bottom:1044.795000px;}
.y7_c01366{bottom:1061.232000px;}
.y6_c01366{bottom:1077.670500px;}
.y5_c01366{bottom:1094.109000px;}
.y4_c01366{bottom:1110.547500px;}
.y3_c01366{bottom:1126.986000px;}
.y2_c01366{bottom:1143.424500px;}
.y1_c01366{bottom:1159.863000px;}
.h3_c01366{height:35.190766px;}
.h2_c01366{height:36.007158px;}
.h4_c01366{height:52.332837px;}
.h0_c01366{height:1262.835000px;}
.h1_c01366{height:1263.000000px;}
.w0_c01366{width:892.920000px;}
.w1_c01366{width:893.250000px;}
.x0_c01366{left:0.000000px;}
.x1_c01366{left:137.122500px;}
.x2_c01366{left:143.770500px;}
.x3_c01366{left:177.007500px;}
.x4_c01366{left:435.249000px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.ls4_c01366{letter-spacing:0.000000pt;}
.ls0_c01366{letter-spacing:0.078221pt;}
.ls2_c01366{letter-spacing:0.087539pt;}
.ls1_c01366{letter-spacing:0.092873pt;}
.ls3_c01366{letter-spacing:23.724873pt;}
.ws0_c01366{word-spacing:-23.622682pt;}
.ws4_c01366{word-spacing:-23.544461pt;}
.ws1_c01366{word-spacing:0.000000pt;}
.ws7_c01366{word-spacing:0.039110pt;}
.ws5_c01366{word-spacing:0.050460pt;}
.ws2_c01366{word-spacing:0.065111pt;}
.ws3_c01366{word-spacing:0.074430pt;}
.ws6_c01366{word-spacing:0.180412pt;}
.ws9_c01366{word-spacing:0.189730pt;}
.ws8_c01366{word-spacing:0.195063pt;}
._4_c01366{width:0.925811pt;}
._1_c01366{width:47.362694pt;}
._0_c01366{width:70.985376pt;}
._3_c01366{width:94.764499pt;}
._2_c01366{width:118.624363pt;}
.fs0_c01366{font-size:39.110400pt;}
.fs1_c01366{font-size:53.133867pt;}
.y0_c01366{bottom:0.000000pt;}
.y25_c01366{bottom:39.333333pt;}
.y24_c01366{bottom:461.126667pt;}
.y23_c01366{bottom:475.738667pt;}
.y22_c01366{bottom:490.349333pt;}
.y21_c01366{bottom:504.961333pt;}
.y20_c01366{bottom:519.573333pt;}
.y1f_c01366{bottom:534.185333pt;}
.y1e_c01366{bottom:548.797333pt;}
.y1d_c01366{bottom:563.409333pt;}
.y1c_c01366{bottom:578.021333pt;}
.y1b_c01366{bottom:592.633333pt;}
.y1a_c01366{bottom:607.245333pt;}
.y19_c01366{bottom:636.469333pt;}
.y18_c01366{bottom:651.080000pt;}
.y17_c01366{bottom:665.692000pt;}
.y16_c01366{bottom:694.916000pt;}
.y15_c01366{bottom:709.528000pt;}
.y14_c01366{bottom:724.140000pt;}
.y13_c01366{bottom:738.752000pt;}
.y12_c01366{bottom:753.364000pt;}
.y11_c01366{bottom:767.976000pt;}
.y10_c01366{bottom:782.588000pt;}
.yf_c01366{bottom:826.422667pt;}
.ye_c01366{bottom:841.034667pt;}
.yd_c01366{bottom:855.646667pt;}
.yc_c01366{bottom:870.258667pt;}
.yb_c01366{bottom:884.870667pt;}
.ya_c01366{bottom:899.482667pt;}
.y9_c01366{bottom:914.094667pt;}
.y8_c01366{bottom:928.706667pt;}
.y7_c01366{bottom:943.317333pt;}
.y6_c01366{bottom:957.929333pt;}
.y5_c01366{bottom:972.541333pt;}
.y4_c01366{bottom:987.153333pt;}
.y3_c01366{bottom:1001.765333pt;}
.y2_c01366{bottom:1016.377333pt;}
.y1_c01366{bottom:1030.989333pt;}
.h3_c01366{height:31.280681pt;}
.h2_c01366{height:32.006363pt;}
.h4_c01366{height:46.518078pt;}
.h0_c01366{height:1122.520000pt;}
.h1_c01366{height:1122.666667pt;}
.w0_c01366{width:793.706667pt;}
.w1_c01366{width:794.000000pt;}
.x0_c01366{left:0.000000pt;}
.x1_c01366{left:121.886667pt;}
.x2_c01366{left:127.796000pt;}
.x3_c01366{left:157.340000pt;}
.x4_c01366{left:386.888000pt;}
}





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

.ir_c01367:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01367;src:url('chunks/assets/font_afaf43e4f4367d2bc548dcf9.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01367;src:url('chunks/assets/font_0c39c94be921f7249d0cada7.woff2')format("woff");}.ff2_c01367{font-family:ff2_c01367;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01367;src:url('chunks/assets/font_daf2fe4e606acf0fd37d82a2.woff2')format("woff");}.ff3_c01367{font-family:ff3_c01367;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01367;src:url('chunks/assets/font_bf7c7ff71af88442204a1e0f.woff2')format("woff");}.ff4_c01367{font-family:ff4_c01367;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01367;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01367{font-family:ff5_c01367;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01367{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01367{vertical-align:0.000000px;}
.ls4_c01367{letter-spacing:0.000000px;}
.ls0_c01367{letter-spacing:0.087998px;}
.ls2_c01367{letter-spacing:0.098482px;}
.ls1_c01367{letter-spacing:0.104482px;}
.ls3_c01367{letter-spacing:26.690482px;}
.sc__c01367{text-shadow:none;}
.sc0_c01367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01367{-webkit-text-stroke:0px transparent;}
.sc0_c01367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01367{word-spacing:-33.713438px;}
.ws2_c01367{word-spacing:-26.575517px;}
.wse_c01367{word-spacing:-26.487518px;}
.ws9_c01367{word-spacing:-21.553319px;}
.ws8_c01367{word-spacing:-21.519216px;}
.ws5_c01367{word-spacing:-18.769538px;}
.ws7_c01367{word-spacing:-17.633802px;}
.ws4_c01367{word-spacing:-14.943900px;}
.wsa_c01367{word-spacing:-14.107042px;}
.wsb_c01367{word-spacing:-12.074671px;}
.ws1_c01367{word-spacing:-9.988424px;}
.ws3_c01367{word-spacing:-9.987499px;}
.ws6_c01367{word-spacing:-7.686144px;}
.ws12_c01367{word-spacing:0.000000px;}
.wsf_c01367{word-spacing:0.043999px;}
.ws15_c01367{word-spacing:0.056767px;}
.ws13_c01367{word-spacing:0.073250px;}
.ws14_c01367{word-spacing:0.083734px;}
.wsd_c01367{word-spacing:0.175997px;}
.ws16_c01367{word-spacing:0.202963px;}
.ws10_c01367{word-spacing:0.213446px;}
.ws11_c01367{word-spacing:0.219446px;}
.ws0_c01367{word-spacing:43.038600px;}
._0_c01367{margin-left:-4.734246px;}
._3_c01367{margin-left:-2.347817px;}
._2_c01367{margin-left:-1.075961px;}
._6_c01367{width:1.005737px;}
._5_c01367{width:15.972059px;}
._1_c01367{width:19.935816px;}
._4_c01367{width:40.109428px;}
._8_c01367{width:53.283031px;}
._7_c01367{width:79.858548px;}
._9_c01367{width:133.452408px;}
.fc6_c01367{color:rgb(0,0,207);}
.fc5_c01367{color:rgb(79,153,5);}
.fc3_c01367{color:rgb(33,74,135);}
.fc2_c01367{color:rgb(143,89,3);}
.fc4_c01367{color:rgb(207,92,0);}
.fc1_c01367{color:rgb(6,69,173);}
.fc0_c01367{color:rgb(0,0,0);}
.fs2_c01367{font-size:43.999200px;}
.fs1_c01367{font-size:59.775600px;}
.fs0_c01367{font-size:86.077200px;}
.y0_c01367{bottom:0.000000px;}
.y36_c01367{bottom:44.250000px;}
.y35_c01367{bottom:96.919500px;}
.y34_c01367{bottom:113.358000px;}
.y33_c01367{bottom:129.796500px;}
.y32_c01367{bottom:146.235000px;}
.y31_c01367{bottom:162.673500px;}
.y30_c01367{bottom:179.112000px;}
.y2f_c01367{bottom:195.550500px;}
.y2e_c01367{bottom:211.989000px;}
.y2d_c01367{bottom:228.427500px;}
.y2c_c01367{bottom:244.866000px;}
.y2b_c01367{bottom:261.304500px;}
.y2a_c01367{bottom:294.180000px;}
.y29_c01367{bottom:310.618500px;}
.y28_c01367{bottom:327.057000px;}
.y27_c01367{bottom:359.934000px;}
.y26_c01367{bottom:376.372500px;}
.y25_c01367{bottom:392.811000px;}
.y24_c01367{bottom:409.249500px;}
.y23_c01367{bottom:425.688000px;}
.y22_c01367{bottom:442.125000px;}
.y21_c01367{bottom:458.563500px;}
.y20_c01367{bottom:507.879000px;}
.y1f_c01367{bottom:524.317500px;}
.y1e_c01367{bottom:540.756000px;}
.y1d_c01367{bottom:557.194500px;}
.y1c_c01367{bottom:573.633000px;}
.y1b_c01367{bottom:590.071500px;}
.y1a_c01367{bottom:606.508500px;}
.y19_c01367{bottom:622.947000px;}
.y18_c01367{bottom:639.385500px;}
.y17_c01367{bottom:655.824000px;}
.y16_c01367{bottom:672.262500px;}
.y15_c01367{bottom:688.701000px;}
.y14_c01367{bottom:705.139500px;}
.y13_c01367{bottom:721.578000px;}
.y12_c01367{bottom:738.016500px;}
.y11_c01367{bottom:754.455000px;}
.y10_c01367{bottom:787.330500px;}
.yf_c01367{bottom:803.769000px;}
.ye_c01367{bottom:853.084500px;}
.yd_c01367{bottom:869.523000px;}
.yc_c01367{bottom:885.588000px;}
.yb_c01367{bottom:925.077000px;}
.ya_c01367{bottom:943.009500px;}
.y9_c01367{bottom:960.942000px;}
.y8_c01367{bottom:978.876000px;}
.y7_c01367{bottom:996.808500px;}
.y6_c01367{bottom:1014.741000px;}
.y5_c01367{bottom:1040.691000px;}
.y4_c01367{bottom:1066.641000px;}
.y3_c01367{bottom:1092.591000px;}
.y2_c01367{bottom:1118.539500px;}
.y1_c01367{bottom:1159.863000px;}
.h5_c01367{height:35.190766px;}
.h6_c01367{height:36.007158px;}
.h3_c01367{height:40.511979px;}
.h4_c01367{height:52.332837px;}
.h2_c01367{height:58.337477px;}
.h0_c01367{height:1262.835000px;}
.h1_c01367{height:1263.000000px;}
.w0_c01367{width:892.920000px;}
.w1_c01367{width:893.250000px;}
.x0_c01367{left:0.000000px;}
.x1_c01367{left:127.558500px;}
.x2_c01367{left:137.122500px;}
.x3_c01367{left:143.770500px;}
.x4_c01367{left:177.007500px;}
.x5_c01367{left:435.249000px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls4_c01367{letter-spacing:0.000000pt;}
.ls0_c01367{letter-spacing:0.078221pt;}
.ls2_c01367{letter-spacing:0.087539pt;}
.ls1_c01367{letter-spacing:0.092873pt;}
.ls3_c01367{letter-spacing:23.724873pt;}
.wsc_c01367{word-spacing:-29.967501pt;}
.ws2_c01367{word-spacing:-23.622682pt;}
.wse_c01367{word-spacing:-23.544461pt;}
.ws9_c01367{word-spacing:-19.158506pt;}
.ws8_c01367{word-spacing:-19.128192pt;}
.ws5_c01367{word-spacing:-16.684034pt;}
.ws7_c01367{word-spacing:-15.674491pt;}
.ws4_c01367{word-spacing:-13.283467pt;}
.wsa_c01367{word-spacing:-12.539593pt;}
.wsb_c01367{word-spacing:-10.733041pt;}
.ws1_c01367{word-spacing:-8.878599pt;}
.ws3_c01367{word-spacing:-8.877777pt;}
.ws6_c01367{word-spacing:-6.832128pt;}
.ws12_c01367{word-spacing:0.000000pt;}
.wsf_c01367{word-spacing:0.039110pt;}
.ws15_c01367{word-spacing:0.050460pt;}
.ws13_c01367{word-spacing:0.065111pt;}
.ws14_c01367{word-spacing:0.074430pt;}
.wsd_c01367{word-spacing:0.156442pt;}
.ws16_c01367{word-spacing:0.180412pt;}
.ws10_c01367{word-spacing:0.189730pt;}
.ws11_c01367{word-spacing:0.195063pt;}
.ws0_c01367{word-spacing:38.256533pt;}
._0_c01367{margin-left:-4.208219pt;}
._3_c01367{margin-left:-2.086948pt;}
._2_c01367{margin-left:-0.956410pt;}
._6_c01367{width:0.893988pt;}
._5_c01367{width:14.197386pt;}
._1_c01367{width:17.720725pt;}
._4_c01367{width:35.652825pt;}
._8_c01367{width:47.362694pt;}
._7_c01367{width:70.985376pt;}
._9_c01367{width:118.624363pt;}
.fs2_c01367{font-size:39.110400pt;}
.fs1_c01367{font-size:53.133867pt;}
.fs0_c01367{font-size:76.513067pt;}
.y0_c01367{bottom:0.000000pt;}
.y36_c01367{bottom:39.333333pt;}
.y35_c01367{bottom:86.150667pt;}
.y34_c01367{bottom:100.762667pt;}
.y33_c01367{bottom:115.374667pt;}
.y32_c01367{bottom:129.986667pt;}
.y31_c01367{bottom:144.598667pt;}
.y30_c01367{bottom:159.210667pt;}
.y2f_c01367{bottom:173.822667pt;}
.y2e_c01367{bottom:188.434667pt;}
.y2d_c01367{bottom:203.046667pt;}
.y2c_c01367{bottom:217.658667pt;}
.y2b_c01367{bottom:232.270667pt;}
.y2a_c01367{bottom:261.493333pt;}
.y29_c01367{bottom:276.105333pt;}
.y28_c01367{bottom:290.717333pt;}
.y27_c01367{bottom:319.941333pt;}
.y26_c01367{bottom:334.553333pt;}
.y25_c01367{bottom:349.165333pt;}
.y24_c01367{bottom:363.777333pt;}
.y23_c01367{bottom:378.389333pt;}
.y22_c01367{bottom:393.000000pt;}
.y21_c01367{bottom:407.612000pt;}
.y20_c01367{bottom:451.448000pt;}
.y1f_c01367{bottom:466.060000pt;}
.y1e_c01367{bottom:480.672000pt;}
.y1d_c01367{bottom:495.284000pt;}
.y1c_c01367{bottom:509.896000pt;}
.y1b_c01367{bottom:524.508000pt;}
.y1a_c01367{bottom:539.118667pt;}
.y19_c01367{bottom:553.730667pt;}
.y18_c01367{bottom:568.342667pt;}
.y17_c01367{bottom:582.954667pt;}
.y16_c01367{bottom:597.566667pt;}
.y15_c01367{bottom:612.178667pt;}
.y14_c01367{bottom:626.790667pt;}
.y13_c01367{bottom:641.402667pt;}
.y12_c01367{bottom:656.014667pt;}
.y11_c01367{bottom:670.626667pt;}
.y10_c01367{bottom:699.849333pt;}
.yf_c01367{bottom:714.461333pt;}
.ye_c01367{bottom:758.297333pt;}
.yd_c01367{bottom:772.909333pt;}
.yc_c01367{bottom:787.189333pt;}
.yb_c01367{bottom:822.290667pt;}
.ya_c01367{bottom:838.230667pt;}
.y9_c01367{bottom:854.170667pt;}
.y8_c01367{bottom:870.112000pt;}
.y7_c01367{bottom:886.052000pt;}
.y6_c01367{bottom:901.992000pt;}
.y5_c01367{bottom:925.058667pt;}
.y4_c01367{bottom:948.125333pt;}
.y3_c01367{bottom:971.192000pt;}
.y2_c01367{bottom:994.257333pt;}
.y1_c01367{bottom:1030.989333pt;}
.h5_c01367{height:31.280681pt;}
.h6_c01367{height:32.006363pt;}
.h3_c01367{height:36.010648pt;}
.h4_c01367{height:46.518078pt;}
.h2_c01367{height:51.855535pt;}
.h0_c01367{height:1122.520000pt;}
.h1_c01367{height:1122.666667pt;}
.w0_c01367{width:793.706667pt;}
.w1_c01367{width:794.000000pt;}
.x0_c01367{left:0.000000pt;}
.x1_c01367{left:113.385333pt;}
.x2_c01367{left:121.886667pt;}
.x3_c01367{left:127.796000pt;}
.x4_c01367{left:157.340000pt;}
.x5_c01367{left:386.888000pt;}
}





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

.ir_c01368:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01368;src:url('chunks/assets/font_d5dddb98f7de44b85e104587.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01368;src:url('chunks/assets/font_9b9ed12bb90a1811497f49d1.woff2')format("woff");}.ff2_c01368{font-family:ff2_c01368;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01368;src:url('chunks/assets/font_6eb9158dff81f2166bfe514c.woff2')format("woff");}.ff3_c01368{font-family:ff3_c01368;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01368;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01368{font-family:ff4_c01368;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01368;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01368{font-family:ff5_c01368;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01368{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01368{vertical-align:0.000000px;}
.ls3_c01368{letter-spacing:0.000000px;}
.ls0_c01368{letter-spacing:0.087998px;}
.ls2_c01368{letter-spacing:0.098482px;}
.ls1_c01368{letter-spacing:0.104482px;}
.sc__c01368{text-shadow:none;}
.sc0_c01368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01368{-webkit-text-stroke:0px transparent;}
.sc0_c01368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01368{word-spacing:-33.713438px;}
.ws2_c01368{word-spacing:-26.575517px;}
.wse_c01368{word-spacing:-26.487518px;}
.ws9_c01368{word-spacing:-21.553319px;}
.ws8_c01368{word-spacing:-21.519216px;}
.ws5_c01368{word-spacing:-18.769538px;}
.ws7_c01368{word-spacing:-17.633802px;}
.ws4_c01368{word-spacing:-14.943900px;}
.wsa_c01368{word-spacing:-14.107042px;}
.wsb_c01368{word-spacing:-12.074671px;}
.ws1_c01368{word-spacing:-9.988424px;}
.ws3_c01368{word-spacing:-9.987499px;}
.ws6_c01368{word-spacing:-7.686144px;}
.ws12_c01368{word-spacing:0.000000px;}
.wsf_c01368{word-spacing:0.043999px;}
.ws15_c01368{word-spacing:0.056767px;}
.ws13_c01368{word-spacing:0.073250px;}
.ws14_c01368{word-spacing:0.083734px;}
.wsd_c01368{word-spacing:0.175997px;}
.ws16_c01368{word-spacing:0.202963px;}
.ws10_c01368{word-spacing:0.213446px;}
.ws11_c01368{word-spacing:0.219446px;}
.ws0_c01368{word-spacing:43.038600px;}
._0_c01368{margin-left:-4.734246px;}
._3_c01368{margin-left:-2.347817px;}
._2_c01368{margin-left:-1.075961px;}
._6_c01368{width:1.005737px;}
._5_c01368{width:15.972059px;}
._1_c01368{width:19.935816px;}
._4_c01368{width:40.109428px;}
._8_c01368{width:53.283031px;}
._7_c01368{width:79.858548px;}
._9_c01368{width:133.452408px;}
.fc6_c01368{color:rgb(0,0,207);}
.fc5_c01368{color:rgb(79,153,5);}
.fc3_c01368{color:rgb(33,74,135);}
.fc2_c01368{color:rgb(143,89,3);}
.fc4_c01368{color:rgb(207,92,0);}
.fc1_c01368{color:rgb(6,69,173);}
.fc0_c01368{color:rgb(0,0,0);}
.fs2_c01368{font-size:43.999200px;}
.fs1_c01368{font-size:59.775600px;}
.fs0_c01368{font-size:86.077200px;}
.y0_c01368{bottom:0.000000px;}
.y20_c01368{bottom:44.250000px;}
.y1f_c01368{bottom:86.982000px;}
.y1e_c01368{bottom:103.420500px;}
.y1d_c01368{bottom:119.859000px;}
.y1c_c01368{bottom:136.297500px;}
.y1b_c01368{bottom:152.736000px;}
.y1a_c01368{bottom:169.174500px;}
.y19_c01368{bottom:185.613000px;}
.y18_c01368{bottom:202.051500px;}
.y17_c01368{bottom:218.490000px;}
.y16_c01368{bottom:234.927000px;}
.y15_c01368{bottom:251.365500px;}
.y14_c01368{bottom:267.804000px;}
.y13_c01368{bottom:284.242500px;}
.y12_c01368{bottom:300.681000px;}
.y11_c01368{bottom:317.119500px;}
.y10_c01368{bottom:349.996500px;}
.yf_c01368{bottom:366.435000px;}
.ye_c01368{bottom:415.749000px;}
.yd_c01368{bottom:432.187500px;}
.yc_c01368{bottom:448.252500px;}
.yb_c01368{bottom:493.890000px;}
.ya_c01368{bottom:511.822500px;}
.y9_c01368{bottom:529.756500px;}
.y8_c01368{bottom:547.689000px;}
.y7_c01368{bottom:565.621500px;}
.y6_c01368{bottom:583.554000px;}
.y5_c01368{bottom:610.633500px;}
.y4_c01368{bottom:637.714500px;}
.y3_c01368{bottom:664.794000px;}
.y2_c01368{bottom:691.873500px;}
.y1_c01368{bottom:734.407500px;}
.h5_c01368{height:35.190766px;}
.h6_c01368{height:36.007158px;}
.h3_c01368{height:40.511979px;}
.h4_c01368{height:52.332837px;}
.h2_c01368{height:58.337477px;}
.h0_c01368{height:1262.835000px;}
.h1_c01368{height:1263.000000px;}
.w0_c01368{width:892.920000px;}
.w1_c01368{width:893.250000px;}
.x0_c01368{left:0.000000px;}
.x1_c01368{left:127.558500px;}
.x2_c01368{left:137.122500px;}
.x3_c01368{left:143.770500px;}
.x4_c01368{left:435.249000px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls3_c01368{letter-spacing:0.000000pt;}
.ls0_c01368{letter-spacing:0.078221pt;}
.ls2_c01368{letter-spacing:0.087539pt;}
.ls1_c01368{letter-spacing:0.092873pt;}
.wsc_c01368{word-spacing:-29.967501pt;}
.ws2_c01368{word-spacing:-23.622682pt;}
.wse_c01368{word-spacing:-23.544461pt;}
.ws9_c01368{word-spacing:-19.158506pt;}
.ws8_c01368{word-spacing:-19.128192pt;}
.ws5_c01368{word-spacing:-16.684034pt;}
.ws7_c01368{word-spacing:-15.674491pt;}
.ws4_c01368{word-spacing:-13.283467pt;}
.wsa_c01368{word-spacing:-12.539593pt;}
.wsb_c01368{word-spacing:-10.733041pt;}
.ws1_c01368{word-spacing:-8.878599pt;}
.ws3_c01368{word-spacing:-8.877777pt;}
.ws6_c01368{word-spacing:-6.832128pt;}
.ws12_c01368{word-spacing:0.000000pt;}
.wsf_c01368{word-spacing:0.039110pt;}
.ws15_c01368{word-spacing:0.050460pt;}
.ws13_c01368{word-spacing:0.065111pt;}
.ws14_c01368{word-spacing:0.074430pt;}
.wsd_c01368{word-spacing:0.156442pt;}
.ws16_c01368{word-spacing:0.180412pt;}
.ws10_c01368{word-spacing:0.189730pt;}
.ws11_c01368{word-spacing:0.195063pt;}
.ws0_c01368{word-spacing:38.256533pt;}
._0_c01368{margin-left:-4.208219pt;}
._3_c01368{margin-left:-2.086948pt;}
._2_c01368{margin-left:-0.956410pt;}
._6_c01368{width:0.893988pt;}
._5_c01368{width:14.197386pt;}
._1_c01368{width:17.720725pt;}
._4_c01368{width:35.652825pt;}
._8_c01368{width:47.362694pt;}
._7_c01368{width:70.985376pt;}
._9_c01368{width:118.624363pt;}
.fs2_c01368{font-size:39.110400pt;}
.fs1_c01368{font-size:53.133867pt;}
.fs0_c01368{font-size:76.513067pt;}
.y0_c01368{bottom:0.000000pt;}
.y20_c01368{bottom:39.333333pt;}
.y1f_c01368{bottom:77.317333pt;}
.y1e_c01368{bottom:91.929333pt;}
.y1d_c01368{bottom:106.541333pt;}
.y1c_c01368{bottom:121.153333pt;}
.y1b_c01368{bottom:135.765333pt;}
.y1a_c01368{bottom:150.377333pt;}
.y19_c01368{bottom:164.989333pt;}
.y18_c01368{bottom:179.601333pt;}
.y17_c01368{bottom:194.213333pt;}
.y16_c01368{bottom:208.824000pt;}
.y15_c01368{bottom:223.436000pt;}
.y14_c01368{bottom:238.048000pt;}
.y13_c01368{bottom:252.660000pt;}
.y12_c01368{bottom:267.272000pt;}
.y11_c01368{bottom:281.884000pt;}
.y10_c01368{bottom:311.108000pt;}
.yf_c01368{bottom:325.720000pt;}
.ye_c01368{bottom:369.554667pt;}
.yd_c01368{bottom:384.166667pt;}
.yc_c01368{bottom:398.446667pt;}
.yb_c01368{bottom:439.013333pt;}
.ya_c01368{bottom:454.953333pt;}
.y9_c01368{bottom:470.894667pt;}
.y8_c01368{bottom:486.834667pt;}
.y7_c01368{bottom:502.774667pt;}
.y6_c01368{bottom:518.714667pt;}
.y5_c01368{bottom:542.785333pt;}
.y4_c01368{bottom:566.857333pt;}
.y3_c01368{bottom:590.928000pt;}
.y2_c01368{bottom:614.998667pt;}
.y1_c01368{bottom:652.806667pt;}
.h5_c01368{height:31.280681pt;}
.h6_c01368{height:32.006363pt;}
.h3_c01368{height:36.010648pt;}
.h4_c01368{height:46.518078pt;}
.h2_c01368{height:51.855535pt;}
.h0_c01368{height:1122.520000pt;}
.h1_c01368{height:1122.666667pt;}
.w0_c01368{width:793.706667pt;}
.w1_c01368{width:794.000000pt;}
.x0_c01368{left:0.000000pt;}
.x1_c01368{left:113.385333pt;}
.x2_c01368{left:121.886667pt;}
.x3_c01368{left:127.796000pt;}
.x4_c01368{left:386.888000pt;}
}





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

.ir_c01369:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01369;src:url('chunks/assets/font_ffd66df62e43fa928bc43ec1.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01369;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01369{font-family:ff2_c01369;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01369;src:url('chunks/assets/font_81f1b9ab6c06708915afa220.woff2')format("woff");}.ff3_c01369{font-family:ff3_c01369;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01369;src:url('chunks/assets/font_ff61a9a3698fc2a4557ef1ab.woff2')format("woff");}.ff4_c01369{font-family:ff4_c01369;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01369;src:url('chunks/assets/font_d5ebdf09ea4a09f948e163e7.woff2')format("woff");}.ff5_c01369{font-family:ff5_c01369;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01369{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01369{vertical-align:0.000000px;}
.ls4_c01369{letter-spacing:0.000000px;}
.ls0_c01369{letter-spacing:0.087998px;}
.ls2_c01369{letter-spacing:0.098482px;}
.ls3_c01369{letter-spacing:0.104482px;}
.ls1_c01369{letter-spacing:26.690482px;}
.sc__c01369{text-shadow:none;}
.sc0_c01369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01369{-webkit-text-stroke:0px transparent;}
.sc0_c01369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01369{word-spacing:-26.575517px;}
.ws4_c01369{word-spacing:-26.487518px;}
.wse_c01369{word-spacing:-21.553319px;}
.wsd_c01369{word-spacing:-21.519216px;}
.wsc_c01369{word-spacing:-19.247743px;}
.wsa_c01369{word-spacing:-18.769538px;}
.ws9_c01369{word-spacing:-14.943900px;}
.wsf_c01369{word-spacing:-14.107042px;}
.ws10_c01369{word-spacing:-12.074671px;}
.wsb_c01369{word-spacing:-10.230144px;}
.ws7_c01369{word-spacing:-9.988424px;}
.ws8_c01369{word-spacing:-9.987499px;}
.ws3_c01369{word-spacing:0.000000px;}
.ws0_c01369{word-spacing:0.043999px;}
.ws5_c01369{word-spacing:0.213446px;}
.ws1_c01369{word-spacing:0.219446px;}
.ws6_c01369{word-spacing:43.038600px;}
._2_c01369{margin-left:-4.734246px;}
._5_c01369{margin-left:-2.347817px;}
._4_c01369{margin-left:-1.075961px;}
._1_c01369{width:1.041538px;}
._3_c01369{width:19.935816px;}
._6_c01369{width:40.109428px;}
._0_c01369{width:80.034545px;}
.fc5_c01369{color:rgb(79,153,5);}
.fc4_c01369{color:rgb(143,89,3);}
.fc3_c01369{color:rgb(0,0,0);}
.fc6_c01369{color:rgb(6,69,173);}
.fc2_c01369{color:rgb(207,92,0);}
.fc1_c01369{color:rgb(0,0,207);}
.fc0_c01369{color:rgb(33,74,135);}
.fs0_c01369{font-size:43.999200px;}
.fs2_c01369{font-size:59.775600px;}
.fs1_c01369{font-size:86.077200px;}
.y0_c01369{bottom:0.000000px;}
.y20_c01369{bottom:44.250000px;}
.y1f_c01369{bottom:82.051500px;}
.y1e_c01369{bottom:99.984000px;}
.y1d_c01369{bottom:117.916500px;}
.y1c_c01369{bottom:135.849000px;}
.y1b_c01369{bottom:162.501000px;}
.y1a_c01369{bottom:189.151500px;}
.y19_c01369{bottom:215.802000px;}
.y18_c01369{bottom:242.454000px;}
.y17_c01369{bottom:284.478000px;}
.y16_c01369{bottom:748.903500px;}
.y15_c01369{bottom:765.342000px;}
.y14_c01369{bottom:781.780500px;}
.y13_c01369{bottom:798.219000px;}
.y12_c01369{bottom:814.657500px;}
.y11_c01369{bottom:831.096000px;}
.y10_c01369{bottom:847.534500px;}
.yf_c01369{bottom:863.973000px;}
.ye_c01369{bottom:880.411500px;}
.yd_c01369{bottom:896.848500px;}
.yc_c01369{bottom:913.287000px;}
.yb_c01369{bottom:946.164000px;}
.ya_c01369{bottom:962.602500px;}
.y9_c01369{bottom:979.041000px;}
.y8_c01369{bottom:1011.918000px;}
.y7_c01369{bottom:1028.356500px;}
.y6_c01369{bottom:1044.795000px;}
.y5_c01369{bottom:1061.232000px;}
.y4_c01369{bottom:1077.670500px;}
.y3_c01369{bottom:1094.109000px;}
.y2_c01369{bottom:1110.547500px;}
.y1_c01369{bottom:1159.863000px;}
.h3_c01369{height:35.190766px;}
.h2_c01369{height:36.007158px;}
.h5_c01369{height:40.511979px;}
.h6_c01369{height:52.332837px;}
.h4_c01369{height:58.337477px;}
.h0_c01369{height:1262.835000px;}
.h1_c01369{height:1263.000000px;}
.w0_c01369{width:892.920000px;}
.w1_c01369{width:893.250000px;}
.x0_c01369{left:0.000000px;}
.x4_c01369{left:127.558500px;}
.x2_c01369{left:137.122500px;}
.x1_c01369{left:143.770500px;}
.x3_c01369{left:177.007500px;}
.x5_c01369{left:435.249000px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls4_c01369{letter-spacing:0.000000pt;}
.ls0_c01369{letter-spacing:0.078221pt;}
.ls2_c01369{letter-spacing:0.087539pt;}
.ls3_c01369{letter-spacing:0.092873pt;}
.ls1_c01369{letter-spacing:23.724873pt;}
.ws2_c01369{word-spacing:-23.622682pt;}
.ws4_c01369{word-spacing:-23.544461pt;}
.wse_c01369{word-spacing:-19.158506pt;}
.wsd_c01369{word-spacing:-19.128192pt;}
.wsc_c01369{word-spacing:-17.109105pt;}
.wsa_c01369{word-spacing:-16.684034pt;}
.ws9_c01369{word-spacing:-13.283467pt;}
.wsf_c01369{word-spacing:-12.539593pt;}
.ws10_c01369{word-spacing:-10.733041pt;}
.wsb_c01369{word-spacing:-9.093461pt;}
.ws7_c01369{word-spacing:-8.878599pt;}
.ws8_c01369{word-spacing:-8.877777pt;}
.ws3_c01369{word-spacing:0.000000pt;}
.ws0_c01369{word-spacing:0.039110pt;}
.ws5_c01369{word-spacing:0.189730pt;}
.ws1_c01369{word-spacing:0.195063pt;}
.ws6_c01369{word-spacing:38.256533pt;}
._2_c01369{margin-left:-4.208219pt;}
._5_c01369{margin-left:-2.086948pt;}
._4_c01369{margin-left:-0.956410pt;}
._1_c01369{width:0.925811pt;}
._3_c01369{width:17.720725pt;}
._6_c01369{width:35.652825pt;}
._0_c01369{width:71.141818pt;}
.fs0_c01369{font-size:39.110400pt;}
.fs2_c01369{font-size:53.133867pt;}
.fs1_c01369{font-size:76.513067pt;}
.y0_c01369{bottom:0.000000pt;}
.y20_c01369{bottom:39.333333pt;}
.y1f_c01369{bottom:72.934667pt;}
.y1e_c01369{bottom:88.874667pt;}
.y1d_c01369{bottom:104.814667pt;}
.y1c_c01369{bottom:120.754667pt;}
.y1b_c01369{bottom:144.445333pt;}
.y1a_c01369{bottom:168.134667pt;}
.y19_c01369{bottom:191.824000pt;}
.y18_c01369{bottom:215.514667pt;}
.y17_c01369{bottom:252.869333pt;}
.y16_c01369{bottom:665.692000pt;}
.y15_c01369{bottom:680.304000pt;}
.y14_c01369{bottom:694.916000pt;}
.y13_c01369{bottom:709.528000pt;}
.y12_c01369{bottom:724.140000pt;}
.y11_c01369{bottom:738.752000pt;}
.y10_c01369{bottom:753.364000pt;}
.yf_c01369{bottom:767.976000pt;}
.ye_c01369{bottom:782.588000pt;}
.yd_c01369{bottom:797.198667pt;}
.yc_c01369{bottom:811.810667pt;}
.yb_c01369{bottom:841.034667pt;}
.ya_c01369{bottom:855.646667pt;}
.y9_c01369{bottom:870.258667pt;}
.y8_c01369{bottom:899.482667pt;}
.y7_c01369{bottom:914.094667pt;}
.y6_c01369{bottom:928.706667pt;}
.y5_c01369{bottom:943.317333pt;}
.y4_c01369{bottom:957.929333pt;}
.y3_c01369{bottom:972.541333pt;}
.y2_c01369{bottom:987.153333pt;}
.y1_c01369{bottom:1030.989333pt;}
.h3_c01369{height:31.280681pt;}
.h2_c01369{height:32.006363pt;}
.h5_c01369{height:36.010648pt;}
.h6_c01369{height:46.518078pt;}
.h4_c01369{height:51.855535pt;}
.h0_c01369{height:1122.520000pt;}
.h1_c01369{height:1122.666667pt;}
.w0_c01369{width:793.706667pt;}
.w1_c01369{width:794.000000pt;}
.x0_c01369{left:0.000000pt;}
.x4_c01369{left:113.385333pt;}
.x2_c01369{left:121.886667pt;}
.x1_c01369{left:127.796000pt;}
.x3_c01369{left:157.340000pt;}
.x5_c01369{left:386.888000pt;}
}





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

.ir_c01370:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01370;src:url('chunks/assets/font_5f00f75a1f6ffc577f6c3b25.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01370;src:url('chunks/assets/font_9f6fdef02964e90ee6ec6a41.woff2')format("woff");}.ff2_c01370{font-family:ff2_c01370;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01370;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01370{font-family:ff3_c01370;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01370;src:url('chunks/assets/font_ca678e8c5afd2d32db216275.woff2')format("woff");}.ff4_c01370{font-family:ff4_c01370;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01370{vertical-align:0.000000px;}
.ls4_c01370{letter-spacing:0.000000px;}
.ls1_c01370{letter-spacing:0.087998px;}
.ls2_c01370{letter-spacing:0.098482px;}
.ls0_c01370{letter-spacing:0.104482px;}
.ls3_c01370{letter-spacing:26.690482px;}
.sc__c01370{text-shadow:none;}
.sc0_c01370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01370{-webkit-text-stroke:0px transparent;}
.sc0_c01370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01370{word-spacing:-33.713438px;}
.ws4_c01370{word-spacing:-26.575517px;}
.ws3_c01370{word-spacing:-26.487518px;}
.ws0_c01370{word-spacing:-18.769538px;}
.ws8_c01370{word-spacing:0.000000px;}
.ws5_c01370{word-spacing:0.043999px;}
.wsb_c01370{word-spacing:0.056767px;}
.ws9_c01370{word-spacing:0.073250px;}
.wsa_c01370{word-spacing:0.083734px;}
.ws2_c01370{word-spacing:0.175997px;}
.wsc_c01370{word-spacing:0.202963px;}
.ws6_c01370{word-spacing:0.213446px;}
.ws7_c01370{word-spacing:0.219446px;}
._0_c01370{margin-left:-3.825638px;}
._1_c01370{width:1.005737px;}
._3_c01370{width:53.283031px;}
._2_c01370{width:79.858548px;}
._4_c01370{width:133.452408px;}
.fc5_c01370{color:rgb(0,0,207);}
.fc4_c01370{color:rgb(79,153,5);}
.fc3_c01370{color:rgb(207,92,0);}
.fc2_c01370{color:rgb(33,74,135);}
.fc1_c01370{color:rgb(143,89,3);}
.fc0_c01370{color:rgb(0,0,0);}
.fs1_c01370{font-size:43.999200px;}
.fs0_c01370{font-size:59.775600px;}
.y0_c01370{bottom:0.000000px;}
.y2d_c01370{bottom:44.250000px;}
.y2c_c01370{bottom:96.919500px;}
.y2b_c01370{bottom:113.358000px;}
.y2a_c01370{bottom:129.796500px;}
.y29_c01370{bottom:146.235000px;}
.y28_c01370{bottom:162.673500px;}
.y27_c01370{bottom:179.112000px;}
.y26_c01370{bottom:195.550500px;}
.y25_c01370{bottom:211.989000px;}
.y24_c01370{bottom:228.427500px;}
.y23_c01370{bottom:244.866000px;}
.y22_c01370{bottom:261.304500px;}
.y21_c01370{bottom:294.180000px;}
.y20_c01370{bottom:310.618500px;}
.y1f_c01370{bottom:327.057000px;}
.y1e_c01370{bottom:359.934000px;}
.y1d_c01370{bottom:376.372500px;}
.y1c_c01370{bottom:392.811000px;}
.y1b_c01370{bottom:409.249500px;}
.y1a_c01370{bottom:425.688000px;}
.y19_c01370{bottom:442.125000px;}
.y18_c01370{bottom:458.563500px;}
.y17_c01370{bottom:507.879000px;}
.y16_c01370{bottom:524.317500px;}
.y15_c01370{bottom:540.756000px;}
.y14_c01370{bottom:557.194500px;}
.y13_c01370{bottom:573.633000px;}
.y12_c01370{bottom:590.071500px;}
.y11_c01370{bottom:606.508500px;}
.y10_c01370{bottom:622.947000px;}
.yf_c01370{bottom:639.385500px;}
.ye_c01370{bottom:655.824000px;}
.yd_c01370{bottom:672.262500px;}
.yc_c01370{bottom:688.701000px;}
.yb_c01370{bottom:705.139500px;}
.ya_c01370{bottom:721.578000px;}
.y9_c01370{bottom:738.016500px;}
.y8_c01370{bottom:754.455000px;}
.y7_c01370{bottom:787.330500px;}
.y6_c01370{bottom:803.769000px;}
.y5_c01370{bottom:853.084500px;}
.y4_c01370{bottom:869.523000px;}
.y3_c01370{bottom:885.588000px;}
.y2_c01370{bottom:1141.930500px;}
.y1_c01370{bottom:1159.863000px;}
.h3_c01370{height:35.190766px;}
.h4_c01370{height:36.007158px;}
.h2_c01370{height:52.332837px;}
.h0_c01370{height:1262.835000px;}
.h1_c01370{height:1263.000000px;}
.w0_c01370{width:892.920000px;}
.w1_c01370{width:893.250000px;}
.x0_c01370{left:0.000000px;}
.x1_c01370{left:127.558500px;}
.x2_c01370{left:137.122500px;}
.x3_c01370{left:143.770500px;}
.x4_c01370{left:177.007500px;}
.x5_c01370{left:435.249000px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.ls4_c01370{letter-spacing:0.000000pt;}
.ls1_c01370{letter-spacing:0.078221pt;}
.ls2_c01370{letter-spacing:0.087539pt;}
.ls0_c01370{letter-spacing:0.092873pt;}
.ls3_c01370{letter-spacing:23.724873pt;}
.ws1_c01370{word-spacing:-29.967501pt;}
.ws4_c01370{word-spacing:-23.622682pt;}
.ws3_c01370{word-spacing:-23.544461pt;}
.ws0_c01370{word-spacing:-16.684034pt;}
.ws8_c01370{word-spacing:0.000000pt;}
.ws5_c01370{word-spacing:0.039110pt;}
.wsb_c01370{word-spacing:0.050460pt;}
.ws9_c01370{word-spacing:0.065111pt;}
.wsa_c01370{word-spacing:0.074430pt;}
.ws2_c01370{word-spacing:0.156442pt;}
.wsc_c01370{word-spacing:0.180412pt;}
.ws6_c01370{word-spacing:0.189730pt;}
.ws7_c01370{word-spacing:0.195063pt;}
._0_c01370{margin-left:-3.400567pt;}
._1_c01370{width:0.893988pt;}
._3_c01370{width:47.362694pt;}
._2_c01370{width:70.985376pt;}
._4_c01370{width:118.624363pt;}
.fs1_c01370{font-size:39.110400pt;}
.fs0_c01370{font-size:53.133867pt;}
.y0_c01370{bottom:0.000000pt;}
.y2d_c01370{bottom:39.333333pt;}
.y2c_c01370{bottom:86.150667pt;}
.y2b_c01370{bottom:100.762667pt;}
.y2a_c01370{bottom:115.374667pt;}
.y29_c01370{bottom:129.986667pt;}
.y28_c01370{bottom:144.598667pt;}
.y27_c01370{bottom:159.210667pt;}
.y26_c01370{bottom:173.822667pt;}
.y25_c01370{bottom:188.434667pt;}
.y24_c01370{bottom:203.046667pt;}
.y23_c01370{bottom:217.658667pt;}
.y22_c01370{bottom:232.270667pt;}
.y21_c01370{bottom:261.493333pt;}
.y20_c01370{bottom:276.105333pt;}
.y1f_c01370{bottom:290.717333pt;}
.y1e_c01370{bottom:319.941333pt;}
.y1d_c01370{bottom:334.553333pt;}
.y1c_c01370{bottom:349.165333pt;}
.y1b_c01370{bottom:363.777333pt;}
.y1a_c01370{bottom:378.389333pt;}
.y19_c01370{bottom:393.000000pt;}
.y18_c01370{bottom:407.612000pt;}
.y17_c01370{bottom:451.448000pt;}
.y16_c01370{bottom:466.060000pt;}
.y15_c01370{bottom:480.672000pt;}
.y14_c01370{bottom:495.284000pt;}
.y13_c01370{bottom:509.896000pt;}
.y12_c01370{bottom:524.508000pt;}
.y11_c01370{bottom:539.118667pt;}
.y10_c01370{bottom:553.730667pt;}
.yf_c01370{bottom:568.342667pt;}
.ye_c01370{bottom:582.954667pt;}
.yd_c01370{bottom:597.566667pt;}
.yc_c01370{bottom:612.178667pt;}
.yb_c01370{bottom:626.790667pt;}
.ya_c01370{bottom:641.402667pt;}
.y9_c01370{bottom:656.014667pt;}
.y8_c01370{bottom:670.626667pt;}
.y7_c01370{bottom:699.849333pt;}
.y6_c01370{bottom:714.461333pt;}
.y5_c01370{bottom:758.297333pt;}
.y4_c01370{bottom:772.909333pt;}
.y3_c01370{bottom:787.189333pt;}
.y2_c01370{bottom:1015.049333pt;}
.y1_c01370{bottom:1030.989333pt;}
.h3_c01370{height:31.280681pt;}
.h4_c01370{height:32.006363pt;}
.h2_c01370{height:46.518078pt;}
.h0_c01370{height:1122.520000pt;}
.h1_c01370{height:1122.666667pt;}
.w0_c01370{width:793.706667pt;}
.w1_c01370{width:794.000000pt;}
.x0_c01370{left:0.000000pt;}
.x1_c01370{left:113.385333pt;}
.x2_c01370{left:121.886667pt;}
.x3_c01370{left:127.796000pt;}
.x4_c01370{left:157.340000pt;}
.x5_c01370{left:386.888000pt;}
}





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

.ir_c01371:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01371;src:url('chunks/assets/font_f97e1413795ec72d83d3f817.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01371;src:url('chunks/assets/font_9cecf1032f8153897be285f3.woff2')format("woff");}.ff2_c01371{font-family:ff2_c01371;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01371;src:url('chunks/assets/font_745c04fc0219cdfad4cd5495.woff2')format("woff");}.ff3_c01371{font-family:ff3_c01371;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01371;src:url('chunks/assets/font_7b0ac5206636b40a4852bcd1.woff2')format("woff");}.ff4_c01371{font-family:ff4_c01371;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01371;src:url('chunks/assets/font_9a9f86eaef33cc1e649da902.woff2')format("woff");}.ff5_c01371{font-family:ff5_c01371;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01371{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01371{vertical-align:0.000000px;}
.ls3_c01371{letter-spacing:0.000000px;}
.ls0_c01371{letter-spacing:0.087998px;}
.ls2_c01371{letter-spacing:0.098482px;}
.ls1_c01371{letter-spacing:0.104482px;}
.sc__c01371{text-shadow:none;}
.sc0_c01371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01371{-webkit-text-stroke:0px transparent;}
.sc0_c01371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01371{word-spacing:-26.575517px;}
.wsd_c01371{word-spacing:-26.487518px;}
.ws9_c01371{word-spacing:-23.013606px;}
.ws7_c01371{word-spacing:-20.861684px;}
.ws8_c01371{word-spacing:-20.801909px;}
.wsa_c01371{word-spacing:-18.889090px;}
.ws5_c01371{word-spacing:-18.769538px;}
.wsb_c01371{word-spacing:-18.410885px;}
.ws4_c01371{word-spacing:-14.943900px;}
.ws6_c01371{word-spacing:-11.028144px;}
.ws1_c01371{word-spacing:-9.988424px;}
.ws3_c01371{word-spacing:-9.987499px;}
.ws11_c01371{word-spacing:0.000000px;}
.wse_c01371{word-spacing:0.043999px;}
.ws12_c01371{word-spacing:0.056767px;}
.wsc_c01371{word-spacing:0.175997px;}
.ws10_c01371{word-spacing:0.213446px;}
.wsf_c01371{word-spacing:0.219446px;}
.ws0_c01371{word-spacing:43.038600px;}
._0_c01371{margin-left:-4.734246px;}
._5_c01371{margin-left:-3.287658px;}
._1_c01371{margin-left:-1.549390px;}
._6_c01371{width:1.005737px;}
._3_c01371{width:18.424314px;}
._2_c01371{width:19.935816px;}
._4_c01371{width:21.339889px;}
._7_c01371{width:80.034545px;}
.fc6_c01371{color:rgb(0,0,207);}
.fc5_c01371{color:rgb(79,153,5);}
.fc3_c01371{color:rgb(33,74,135);}
.fc2_c01371{color:rgb(143,89,3);}
.fc4_c01371{color:rgb(207,92,0);}
.fc1_c01371{color:rgb(6,69,173);}
.fc0_c01371{color:rgb(0,0,0);}
.fs2_c01371{font-size:43.999200px;}
.fs1_c01371{font-size:59.775600px;}
.fs0_c01371{font-size:86.077200px;}
.y0_c01371{bottom:0.000000px;}
.y20_c01371{bottom:44.250000px;}
.y1f_c01371{bottom:86.982000px;}
.y1e_c01371{bottom:103.420500px;}
.y1d_c01371{bottom:136.297500px;}
.y1c_c01371{bottom:152.736000px;}
.y1b_c01371{bottom:169.174500px;}
.y1a_c01371{bottom:185.613000px;}
.y19_c01371{bottom:202.051500px;}
.y18_c01371{bottom:218.490000px;}
.y17_c01371{bottom:234.927000px;}
.y16_c01371{bottom:251.365500px;}
.y15_c01371{bottom:267.804000px;}
.y14_c01371{bottom:284.242500px;}
.y13_c01371{bottom:300.681000px;}
.y12_c01371{bottom:317.119500px;}
.y11_c01371{bottom:333.558000px;}
.y10_c01371{bottom:349.996500px;}
.yf_c01371{bottom:382.873500px;}
.ye_c01371{bottom:399.310500px;}
.yd_c01371{bottom:432.187500px;}
.yc_c01371{bottom:448.626000px;}
.yb_c01371{bottom:464.691000px;}
.ya_c01371{bottom:513.009000px;}
.y9_c01371{bottom:530.941500px;}
.y8_c01371{bottom:548.874000px;}
.y7_c01371{bottom:566.806500px;}
.y6_c01371{bottom:584.739000px;}
.y5_c01371{bottom:611.683500px;}
.y4_c01371{bottom:638.626500px;}
.y3_c01371{bottom:665.569500px;}
.y2_c01371{bottom:692.512500px;}
.y1_c01371{bottom:734.850000px;}
.h5_c01371{height:35.190766px;}
.h6_c01371{height:36.007158px;}
.h3_c01371{height:40.511979px;}
.h4_c01371{height:52.332837px;}
.h2_c01371{height:58.337477px;}
.h0_c01371{height:1262.835000px;}
.h1_c01371{height:1263.000000px;}
.w0_c01371{width:892.920000px;}
.w1_c01371{width:893.250000px;}
.x0_c01371{left:0.000000px;}
.x1_c01371{left:127.558500px;}
.x2_c01371{left:137.122500px;}
.x3_c01371{left:230.185500px;}
.x4_c01371{left:435.249000px;}
@media print{
.v0_c01371{vertical-align:0.000000pt;}
.ls3_c01371{letter-spacing:0.000000pt;}
.ls0_c01371{letter-spacing:0.078221pt;}
.ls2_c01371{letter-spacing:0.087539pt;}
.ls1_c01371{letter-spacing:0.092873pt;}
.ws2_c01371{word-spacing:-23.622682pt;}
.wsd_c01371{word-spacing:-23.544461pt;}
.ws9_c01371{word-spacing:-20.456539pt;}
.ws7_c01371{word-spacing:-18.543719pt;}
.ws8_c01371{word-spacing:-18.490586pt;}
.wsa_c01371{word-spacing:-16.790302pt;}
.ws5_c01371{word-spacing:-16.684034pt;}
.wsb_c01371{word-spacing:-16.365231pt;}
.ws4_c01371{word-spacing:-13.283467pt;}
.ws6_c01371{word-spacing:-9.802795pt;}
.ws1_c01371{word-spacing:-8.878599pt;}
.ws3_c01371{word-spacing:-8.877777pt;}
.ws11_c01371{word-spacing:0.000000pt;}
.wse_c01371{word-spacing:0.039110pt;}
.ws12_c01371{word-spacing:0.050460pt;}
.wsc_c01371{word-spacing:0.156442pt;}
.ws10_c01371{word-spacing:0.189730pt;}
.wsf_c01371{word-spacing:0.195063pt;}
.ws0_c01371{word-spacing:38.256533pt;}
._0_c01371{margin-left:-4.208219pt;}
._5_c01371{margin-left:-2.922363pt;}
._1_c01371{margin-left:-1.377235pt;}
._6_c01371{width:0.893988pt;}
._3_c01371{width:16.377168pt;}
._2_c01371{width:17.720725pt;}
._4_c01371{width:18.968790pt;}
._7_c01371{width:71.141818pt;}
.fs2_c01371{font-size:39.110400pt;}
.fs1_c01371{font-size:53.133867pt;}
.fs0_c01371{font-size:76.513067pt;}
.y0_c01371{bottom:0.000000pt;}
.y20_c01371{bottom:39.333333pt;}
.y1f_c01371{bottom:77.317333pt;}
.y1e_c01371{bottom:91.929333pt;}
.y1d_c01371{bottom:121.153333pt;}
.y1c_c01371{bottom:135.765333pt;}
.y1b_c01371{bottom:150.377333pt;}
.y1a_c01371{bottom:164.989333pt;}
.y19_c01371{bottom:179.601333pt;}
.y18_c01371{bottom:194.213333pt;}
.y17_c01371{bottom:208.824000pt;}
.y16_c01371{bottom:223.436000pt;}
.y15_c01371{bottom:238.048000pt;}
.y14_c01371{bottom:252.660000pt;}
.y13_c01371{bottom:267.272000pt;}
.y12_c01371{bottom:281.884000pt;}
.y11_c01371{bottom:296.496000pt;}
.y10_c01371{bottom:311.108000pt;}
.yf_c01371{bottom:340.332000pt;}
.ye_c01371{bottom:354.942667pt;}
.yd_c01371{bottom:384.166667pt;}
.yc_c01371{bottom:398.778667pt;}
.yb_c01371{bottom:413.058667pt;}
.ya_c01371{bottom:456.008000pt;}
.y9_c01371{bottom:471.948000pt;}
.y8_c01371{bottom:487.888000pt;}
.y7_c01371{bottom:503.828000pt;}
.y6_c01371{bottom:519.768000pt;}
.y5_c01371{bottom:543.718667pt;}
.y4_c01371{bottom:567.668000pt;}
.y3_c01371{bottom:591.617333pt;}
.y2_c01371{bottom:615.566667pt;}
.y1_c01371{bottom:653.200000pt;}
.h5_c01371{height:31.280681pt;}
.h6_c01371{height:32.006363pt;}
.h3_c01371{height:36.010648pt;}
.h4_c01371{height:46.518078pt;}
.h2_c01371{height:51.855535pt;}
.h0_c01371{height:1122.520000pt;}
.h1_c01371{height:1122.666667pt;}
.w0_c01371{width:793.706667pt;}
.w1_c01371{width:794.000000pt;}
.x0_c01371{left:0.000000pt;}
.x1_c01371{left:113.385333pt;}
.x2_c01371{left:121.886667pt;}
.x3_c01371{left:204.609333pt;}
.x4_c01371{left:386.888000pt;}
}





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

.ir_c01372:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01372;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01372;src:url('chunks/assets/font_e89149ca0726cff600197837.woff2')format("woff");}.ff2_c01372{font-family:ff2_c01372;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01372;src:url('chunks/assets/font_b71151f6cad6ae91e26afa59.woff2')format("woff");}.ff3_c01372{font-family:ff3_c01372;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01372;src:url('chunks/assets/font_5672a4f38b38b81aeb69fc8d.woff2')format("woff");}.ff4_c01372{font-family:ff4_c01372;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01372;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff5_c01372{font-family:ff5_c01372;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01372{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01372{vertical-align:0.000000px;}
.ls3_c01372{letter-spacing:0.000000px;}
.ls1_c01372{letter-spacing:0.087998px;}
.ls2_c01372{letter-spacing:0.098482px;}
.ls0_c01372{letter-spacing:0.104482px;}
.sc__c01372{text-shadow:none;}
.sc0_c01372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01372{-webkit-text-stroke:0px transparent;}
.sc0_c01372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01372{word-spacing:-33.713438px;}
.ws1_c01372{word-spacing:-26.575517px;}
.ws0_c01372{word-spacing:-26.487518px;}
.wsc_c01372{word-spacing:-21.553319px;}
.wsb_c01372{word-spacing:-21.519216px;}
.ws8_c01372{word-spacing:-18.769538px;}
.wsa_c01372{word-spacing:-16.019861px;}
.ws7_c01372{word-spacing:-14.943900px;}
.wsd_c01372{word-spacing:-14.107042px;}
.wse_c01372{word-spacing:-12.074671px;}
.ws5_c01372{word-spacing:-9.988424px;}
.ws6_c01372{word-spacing:-9.987499px;}
.ws9_c01372{word-spacing:-4.536144px;}
.ws12_c01372{word-spacing:0.000000px;}
.ws2_c01372{word-spacing:0.043999px;}
.ws10_c01372{word-spacing:0.175997px;}
.ws3_c01372{word-spacing:0.213446px;}
.ws11_c01372{word-spacing:0.219446px;}
.ws4_c01372{word-spacing:43.038600px;}
._1_c01372{margin-left:-4.734246px;}
._6_c01372{margin-left:-3.287658px;}
._2_c01372{margin-left:-1.549390px;}
._0_c01372{width:1.041538px;}
._5_c01372{width:15.972059px;}
._3_c01372{width:19.935816px;}
._4_c01372{width:40.109428px;}
.fc5_c01372{color:rgb(0,0,207);}
.fc4_c01372{color:rgb(143,89,3);}
.fc3_c01372{color:rgb(79,153,5);}
.fc6_c01372{color:rgb(6,69,173);}
.fc2_c01372{color:rgb(207,92,0);}
.fc1_c01372{color:rgb(0,0,0);}
.fc0_c01372{color:rgb(33,74,135);}
.fs0_c01372{font-size:43.999200px;}
.fs2_c01372{font-size:59.775600px;}
.fs1_c01372{font-size:86.077200px;}
.y0_c01372{bottom:0.000000px;}
.y1e_c01372{bottom:44.250000px;}
.y1d_c01372{bottom:82.051500px;}
.y1c_c01372{bottom:114.927000px;}
.y1b_c01372{bottom:131.365500px;}
.y1a_c01372{bottom:180.681000px;}
.y19_c01372{bottom:197.119500px;}
.y18_c01372{bottom:213.184500px;}
.y17_c01372{bottom:258.178500px;}
.y16_c01372{bottom:276.111000px;}
.y15_c01372{bottom:294.043500px;}
.y14_c01372{bottom:311.976000px;}
.y13_c01372{bottom:329.908500px;}
.y12_c01372{bottom:347.842500px;}
.y11_c01372{bottom:374.709000px;}
.y10_c01372{bottom:401.577000px;}
.yf_c01372{bottom:428.443500px;}
.ye_c01372{bottom:455.311500px;}
.yd_c01372{bottom:497.551500px;}
.yc_c01372{bottom:962.602500px;}
.yb_c01372{bottom:979.041000px;}
.ya_c01372{bottom:995.479500px;}
.y9_c01372{bottom:1011.918000px;}
.y8_c01372{bottom:1028.356500px;}
.y7_c01372{bottom:1044.795000px;}
.y6_c01372{bottom:1061.232000px;}
.y5_c01372{bottom:1077.670500px;}
.y4_c01372{bottom:1094.109000px;}
.y3_c01372{bottom:1110.547500px;}
.y2_c01372{bottom:1126.986000px;}
.y1_c01372{bottom:1159.863000px;}
.h6_c01372{height:35.190766px;}
.h2_c01372{height:36.007158px;}
.h4_c01372{height:40.511979px;}
.h5_c01372{height:52.332837px;}
.h3_c01372{height:58.337477px;}
.h0_c01372{height:1262.835000px;}
.h1_c01372{height:1263.000000px;}
.w0_c01372{width:892.920000px;}
.w1_c01372{width:893.250000px;}
.x0_c01372{left:0.000000px;}
.x3_c01372{left:127.558500px;}
.x1_c01372{left:137.122500px;}
.x2_c01372{left:177.007500px;}
.x4_c01372{left:435.249000px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.ls3_c01372{letter-spacing:0.000000pt;}
.ls1_c01372{letter-spacing:0.078221pt;}
.ls2_c01372{letter-spacing:0.087539pt;}
.ls0_c01372{letter-spacing:0.092873pt;}
.wsf_c01372{word-spacing:-29.967501pt;}
.ws1_c01372{word-spacing:-23.622682pt;}
.ws0_c01372{word-spacing:-23.544461pt;}
.wsc_c01372{word-spacing:-19.158506pt;}
.wsb_c01372{word-spacing:-19.128192pt;}
.ws8_c01372{word-spacing:-16.684034pt;}
.wsa_c01372{word-spacing:-14.239876pt;}
.ws7_c01372{word-spacing:-13.283467pt;}
.wsd_c01372{word-spacing:-12.539593pt;}
.wse_c01372{word-spacing:-10.733041pt;}
.ws5_c01372{word-spacing:-8.878599pt;}
.ws6_c01372{word-spacing:-8.877777pt;}
.ws9_c01372{word-spacing:-4.032128pt;}
.ws12_c01372{word-spacing:0.000000pt;}
.ws2_c01372{word-spacing:0.039110pt;}
.ws10_c01372{word-spacing:0.156442pt;}
.ws3_c01372{word-spacing:0.189730pt;}
.ws11_c01372{word-spacing:0.195063pt;}
.ws4_c01372{word-spacing:38.256533pt;}
._1_c01372{margin-left:-4.208219pt;}
._6_c01372{margin-left:-2.922363pt;}
._2_c01372{margin-left:-1.377235pt;}
._0_c01372{width:0.925811pt;}
._5_c01372{width:14.197386pt;}
._3_c01372{width:17.720725pt;}
._4_c01372{width:35.652825pt;}
.fs0_c01372{font-size:39.110400pt;}
.fs2_c01372{font-size:53.133867pt;}
.fs1_c01372{font-size:76.513067pt;}
.y0_c01372{bottom:0.000000pt;}
.y1e_c01372{bottom:39.333333pt;}
.y1d_c01372{bottom:72.934667pt;}
.y1c_c01372{bottom:102.157333pt;}
.y1b_c01372{bottom:116.769333pt;}
.y1a_c01372{bottom:160.605333pt;}
.y19_c01372{bottom:175.217333pt;}
.y18_c01372{bottom:189.497333pt;}
.y17_c01372{bottom:229.492000pt;}
.y16_c01372{bottom:245.432000pt;}
.y15_c01372{bottom:261.372000pt;}
.y14_c01372{bottom:277.312000pt;}
.y13_c01372{bottom:293.252000pt;}
.y12_c01372{bottom:309.193333pt;}
.y11_c01372{bottom:333.074667pt;}
.y10_c01372{bottom:356.957333pt;}
.yf_c01372{bottom:380.838667pt;}
.ye_c01372{bottom:404.721333pt;}
.yd_c01372{bottom:442.268000pt;}
.yc_c01372{bottom:855.646667pt;}
.yb_c01372{bottom:870.258667pt;}
.ya_c01372{bottom:884.870667pt;}
.y9_c01372{bottom:899.482667pt;}
.y8_c01372{bottom:914.094667pt;}
.y7_c01372{bottom:928.706667pt;}
.y6_c01372{bottom:943.317333pt;}
.y5_c01372{bottom:957.929333pt;}
.y4_c01372{bottom:972.541333pt;}
.y3_c01372{bottom:987.153333pt;}
.y2_c01372{bottom:1001.765333pt;}
.y1_c01372{bottom:1030.989333pt;}
.h6_c01372{height:31.280681pt;}
.h2_c01372{height:32.006363pt;}
.h4_c01372{height:36.010648pt;}
.h5_c01372{height:46.518078pt;}
.h3_c01372{height:51.855535pt;}
.h0_c01372{height:1122.520000pt;}
.h1_c01372{height:1122.666667pt;}
.w0_c01372{width:793.706667pt;}
.w1_c01372{width:794.000000pt;}
.x0_c01372{left:0.000000pt;}
.x3_c01372{left:113.385333pt;}
.x1_c01372{left:121.886667pt;}
.x2_c01372{left:157.340000pt;}
.x4_c01372{left:386.888000pt;}
}





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

.ir_c01373:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01373;src:url('chunks/assets/font_754d40453d9536399c563bd8.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01373;src:url('chunks/assets/font_f504c54d14a6ff56a97cff2d.woff2')format("woff");}.ff2_c01373{font-family:ff2_c01373;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01373;src:url('chunks/assets/font_2f8985f46b0fa9b5123ee8ec.woff2')format("woff");}.ff3_c01373{font-family:ff3_c01373;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01373;src:url('chunks/assets/font_314a88f974d991e36e5c75d7.woff2')format("woff");}.ff4_c01373{font-family:ff4_c01373;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01373{vertical-align:0.000000px;}
.ls4_c01373{letter-spacing:0.000000px;}
.ls0_c01373{letter-spacing:0.087998px;}
.ls2_c01373{letter-spacing:0.098482px;}
.ls1_c01373{letter-spacing:0.104482px;}
.ls3_c01373{letter-spacing:26.690482px;}
.sc__c01373{text-shadow:none;}
.sc0_c01373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01373{-webkit-text-stroke:0px transparent;}
.sc0_c01373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01373{word-spacing:-26.575517px;}
.ws4_c01373{word-spacing:-26.487518px;}
.ws1_c01373{word-spacing:0.000000px;}
.ws7_c01373{word-spacing:0.043999px;}
.ws5_c01373{word-spacing:0.056767px;}
.ws2_c01373{word-spacing:0.073250px;}
.ws3_c01373{word-spacing:0.083734px;}
.ws6_c01373{word-spacing:0.202963px;}
.ws9_c01373{word-spacing:0.213446px;}
.ws8_c01373{word-spacing:0.219446px;}
._3_c01373{width:1.041538px;}
._1_c01373{width:53.283031px;}
._0_c01373{width:79.858548px;}
._2_c01373{width:133.452408px;}
.fc5_c01373{color:rgb(207,92,0);}
.fc4_c01373{color:rgb(143,89,3);}
.fc3_c01373{color:rgb(0,0,207);}
.fc2_c01373{color:rgb(79,153,5);}
.fc1_c01373{color:rgb(0,0,0);}
.fc0_c01373{color:rgb(33,74,135);}
.fs0_c01373{font-size:43.999200px;}
.fs1_c01373{font-size:59.775600px;}
.y0_c01373{bottom:0.000000px;}
.y25_c01373{bottom:44.250000px;}
.y24_c01373{bottom:518.767500px;}
.y23_c01373{bottom:535.206000px;}
.y22_c01373{bottom:551.643000px;}
.y21_c01373{bottom:568.081500px;}
.y20_c01373{bottom:584.520000px;}
.y1f_c01373{bottom:600.958500px;}
.y1e_c01373{bottom:617.397000px;}
.y1d_c01373{bottom:633.835500px;}
.y1c_c01373{bottom:650.274000px;}
.y1b_c01373{bottom:666.712500px;}
.y1a_c01373{bottom:683.151000px;}
.y19_c01373{bottom:716.028000px;}
.y18_c01373{bottom:732.465000px;}
.y17_c01373{bottom:748.903500px;}
.y16_c01373{bottom:781.780500px;}
.y15_c01373{bottom:798.219000px;}
.y14_c01373{bottom:814.657500px;}
.y13_c01373{bottom:831.096000px;}
.y12_c01373{bottom:847.534500px;}
.y11_c01373{bottom:863.973000px;}
.y10_c01373{bottom:880.411500px;}
.yf_c01373{bottom:929.725500px;}
.ye_c01373{bottom:946.164000px;}
.yd_c01373{bottom:962.602500px;}
.yc_c01373{bottom:979.041000px;}
.yb_c01373{bottom:995.479500px;}
.ya_c01373{bottom:1011.918000px;}
.y9_c01373{bottom:1028.356500px;}
.y8_c01373{bottom:1044.795000px;}
.y7_c01373{bottom:1061.232000px;}
.y6_c01373{bottom:1077.670500px;}
.y5_c01373{bottom:1094.109000px;}
.y4_c01373{bottom:1110.547500px;}
.y3_c01373{bottom:1126.986000px;}
.y2_c01373{bottom:1143.424500px;}
.y1_c01373{bottom:1159.863000px;}
.h3_c01373{height:35.190766px;}
.h2_c01373{height:36.007158px;}
.h4_c01373{height:52.332837px;}
.h0_c01373{height:1262.835000px;}
.h1_c01373{height:1263.000000px;}
.w0_c01373{width:892.920000px;}
.w1_c01373{width:893.250000px;}
.x0_c01373{left:0.000000px;}
.x1_c01373{left:137.122500px;}
.x2_c01373{left:143.770500px;}
.x3_c01373{left:177.007500px;}
.x4_c01373{left:435.249000px;}
@media print{
.v0_c01373{vertical-align:0.000000pt;}
.ls4_c01373{letter-spacing:0.000000pt;}
.ls0_c01373{letter-spacing:0.078221pt;}
.ls2_c01373{letter-spacing:0.087539pt;}
.ls1_c01373{letter-spacing:0.092873pt;}
.ls3_c01373{letter-spacing:23.724873pt;}
.ws0_c01373{word-spacing:-23.622682pt;}
.ws4_c01373{word-spacing:-23.544461pt;}
.ws1_c01373{word-spacing:0.000000pt;}
.ws7_c01373{word-spacing:0.039110pt;}
.ws5_c01373{word-spacing:0.050460pt;}
.ws2_c01373{word-spacing:0.065111pt;}
.ws3_c01373{word-spacing:0.074430pt;}
.ws6_c01373{word-spacing:0.180412pt;}
.ws9_c01373{word-spacing:0.189730pt;}
.ws8_c01373{word-spacing:0.195063pt;}
._3_c01373{width:0.925811pt;}
._1_c01373{width:47.362694pt;}
._0_c01373{width:70.985376pt;}
._2_c01373{width:118.624363pt;}
.fs0_c01373{font-size:39.110400pt;}
.fs1_c01373{font-size:53.133867pt;}
.y0_c01373{bottom:0.000000pt;}
.y25_c01373{bottom:39.333333pt;}
.y24_c01373{bottom:461.126667pt;}
.y23_c01373{bottom:475.738667pt;}
.y22_c01373{bottom:490.349333pt;}
.y21_c01373{bottom:504.961333pt;}
.y20_c01373{bottom:519.573333pt;}
.y1f_c01373{bottom:534.185333pt;}
.y1e_c01373{bottom:548.797333pt;}
.y1d_c01373{bottom:563.409333pt;}
.y1c_c01373{bottom:578.021333pt;}
.y1b_c01373{bottom:592.633333pt;}
.y1a_c01373{bottom:607.245333pt;}
.y19_c01373{bottom:636.469333pt;}
.y18_c01373{bottom:651.080000pt;}
.y17_c01373{bottom:665.692000pt;}
.y16_c01373{bottom:694.916000pt;}
.y15_c01373{bottom:709.528000pt;}
.y14_c01373{bottom:724.140000pt;}
.y13_c01373{bottom:738.752000pt;}
.y12_c01373{bottom:753.364000pt;}
.y11_c01373{bottom:767.976000pt;}
.y10_c01373{bottom:782.588000pt;}
.yf_c01373{bottom:826.422667pt;}
.ye_c01373{bottom:841.034667pt;}
.yd_c01373{bottom:855.646667pt;}
.yc_c01373{bottom:870.258667pt;}
.yb_c01373{bottom:884.870667pt;}
.ya_c01373{bottom:899.482667pt;}
.y9_c01373{bottom:914.094667pt;}
.y8_c01373{bottom:928.706667pt;}
.y7_c01373{bottom:943.317333pt;}
.y6_c01373{bottom:957.929333pt;}
.y5_c01373{bottom:972.541333pt;}
.y4_c01373{bottom:987.153333pt;}
.y3_c01373{bottom:1001.765333pt;}
.y2_c01373{bottom:1016.377333pt;}
.y1_c01373{bottom:1030.989333pt;}
.h3_c01373{height:31.280681pt;}
.h2_c01373{height:32.006363pt;}
.h4_c01373{height:46.518078pt;}
.h0_c01373{height:1122.520000pt;}
.h1_c01373{height:1122.666667pt;}
.w0_c01373{width:793.706667pt;}
.w1_c01373{width:794.000000pt;}
.x0_c01373{left:0.000000pt;}
.x1_c01373{left:121.886667pt;}
.x2_c01373{left:127.796000pt;}
.x3_c01373{left:157.340000pt;}
.x4_c01373{left:386.888000pt;}
}





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

.ir_c01374:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01374;src:url('chunks/assets/font_935211785a80ad528130f987.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01374;src:url('chunks/assets/font_40e3b014ccf2e22c36b149c7.woff2')format("woff");}.ff2_c01374{font-family:ff2_c01374;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01374;src:url('chunks/assets/font_c2787bcc6e0338ac82895be7.woff2')format("woff");}.ff3_c01374{font-family:ff3_c01374;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01374;src:url('chunks/assets/font_61961e5e98a1c41d2c922640.woff2')format("woff");}.ff4_c01374{font-family:ff4_c01374;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01374;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01374{font-family:ff5_c01374;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01374{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01374{vertical-align:0.000000px;}
.ls4_c01374{letter-spacing:0.000000px;}
.ls0_c01374{letter-spacing:0.087998px;}
.ls2_c01374{letter-spacing:0.098482px;}
.ls1_c01374{letter-spacing:0.104482px;}
.ls3_c01374{letter-spacing:26.690482px;}
.sc__c01374{text-shadow:none;}
.sc0_c01374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01374{-webkit-text-stroke:0px transparent;}
.sc0_c01374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01374{word-spacing:-33.713438px;}
.ws2_c01374{word-spacing:-26.575517px;}
.wse_c01374{word-spacing:-26.487518px;}
.ws9_c01374{word-spacing:-21.553319px;}
.ws8_c01374{word-spacing:-21.519216px;}
.ws5_c01374{word-spacing:-18.769538px;}
.ws7_c01374{word-spacing:-17.633802px;}
.ws4_c01374{word-spacing:-14.943900px;}
.wsa_c01374{word-spacing:-14.107042px;}
.wsb_c01374{word-spacing:-12.074671px;}
.ws1_c01374{word-spacing:-9.988424px;}
.ws3_c01374{word-spacing:-9.987499px;}
.ws6_c01374{word-spacing:-7.686144px;}
.ws12_c01374{word-spacing:0.000000px;}
.wsf_c01374{word-spacing:0.043999px;}
.ws15_c01374{word-spacing:0.056767px;}
.ws13_c01374{word-spacing:0.073250px;}
.ws14_c01374{word-spacing:0.083734px;}
.wsd_c01374{word-spacing:0.175997px;}
.ws16_c01374{word-spacing:0.202963px;}
.ws10_c01374{word-spacing:0.213446px;}
.ws11_c01374{word-spacing:0.219446px;}
.ws0_c01374{word-spacing:43.038600px;}
._0_c01374{margin-left:-4.734246px;}
._5_c01374{margin-left:-3.287658px;}
._1_c01374{margin-left:-1.549390px;}
._6_c01374{width:1.005737px;}
._4_c01374{width:15.972059px;}
._2_c01374{width:19.935816px;}
._3_c01374{width:40.109428px;}
._8_c01374{width:53.283031px;}
._7_c01374{width:79.858548px;}
._9_c01374{width:133.452408px;}
.fc6_c01374{color:rgb(0,0,207);}
.fc5_c01374{color:rgb(79,153,5);}
.fc3_c01374{color:rgb(33,74,135);}
.fc2_c01374{color:rgb(143,89,3);}
.fc4_c01374{color:rgb(207,92,0);}
.fc1_c01374{color:rgb(6,69,173);}
.fc0_c01374{color:rgb(0,0,0);}
.fs2_c01374{font-size:43.999200px;}
.fs1_c01374{font-size:59.775600px;}
.fs0_c01374{font-size:86.077200px;}
.y0_c01374{bottom:0.000000px;}
.y36_c01374{bottom:44.250000px;}
.y35_c01374{bottom:96.919500px;}
.y34_c01374{bottom:113.358000px;}
.y33_c01374{bottom:129.796500px;}
.y32_c01374{bottom:146.235000px;}
.y31_c01374{bottom:162.673500px;}
.y30_c01374{bottom:179.112000px;}
.y2f_c01374{bottom:195.550500px;}
.y2e_c01374{bottom:211.989000px;}
.y2d_c01374{bottom:228.427500px;}
.y2c_c01374{bottom:244.866000px;}
.y2b_c01374{bottom:261.304500px;}
.y2a_c01374{bottom:294.180000px;}
.y29_c01374{bottom:310.618500px;}
.y28_c01374{bottom:327.057000px;}
.y27_c01374{bottom:359.934000px;}
.y26_c01374{bottom:376.372500px;}
.y25_c01374{bottom:392.811000px;}
.y24_c01374{bottom:409.249500px;}
.y23_c01374{bottom:425.688000px;}
.y22_c01374{bottom:442.125000px;}
.y21_c01374{bottom:458.563500px;}
.y20_c01374{bottom:507.879000px;}
.y1f_c01374{bottom:524.317500px;}
.y1e_c01374{bottom:540.756000px;}
.y1d_c01374{bottom:557.194500px;}
.y1c_c01374{bottom:573.633000px;}
.y1b_c01374{bottom:590.071500px;}
.y1a_c01374{bottom:606.508500px;}
.y19_c01374{bottom:622.947000px;}
.y18_c01374{bottom:639.385500px;}
.y17_c01374{bottom:655.824000px;}
.y16_c01374{bottom:672.262500px;}
.y15_c01374{bottom:688.701000px;}
.y14_c01374{bottom:705.139500px;}
.y13_c01374{bottom:721.578000px;}
.y12_c01374{bottom:738.016500px;}
.y11_c01374{bottom:754.455000px;}
.y10_c01374{bottom:787.330500px;}
.yf_c01374{bottom:803.769000px;}
.ye_c01374{bottom:853.084500px;}
.yd_c01374{bottom:869.523000px;}
.yc_c01374{bottom:885.588000px;}
.yb_c01374{bottom:925.077000px;}
.ya_c01374{bottom:943.009500px;}
.y9_c01374{bottom:960.942000px;}
.y8_c01374{bottom:978.876000px;}
.y7_c01374{bottom:996.808500px;}
.y6_c01374{bottom:1014.741000px;}
.y5_c01374{bottom:1040.691000px;}
.y4_c01374{bottom:1066.641000px;}
.y3_c01374{bottom:1092.591000px;}
.y2_c01374{bottom:1118.539500px;}
.y1_c01374{bottom:1159.863000px;}
.h5_c01374{height:35.190766px;}
.h6_c01374{height:36.007158px;}
.h3_c01374{height:40.511979px;}
.h4_c01374{height:52.332837px;}
.h2_c01374{height:58.337477px;}
.h0_c01374{height:1262.835000px;}
.h1_c01374{height:1263.000000px;}
.w0_c01374{width:892.920000px;}
.w1_c01374{width:893.250000px;}
.x0_c01374{left:0.000000px;}
.x1_c01374{left:127.558500px;}
.x2_c01374{left:137.122500px;}
.x3_c01374{left:143.770500px;}
.x4_c01374{left:177.007500px;}
.x5_c01374{left:435.249000px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls4_c01374{letter-spacing:0.000000pt;}
.ls0_c01374{letter-spacing:0.078221pt;}
.ls2_c01374{letter-spacing:0.087539pt;}
.ls1_c01374{letter-spacing:0.092873pt;}
.ls3_c01374{letter-spacing:23.724873pt;}
.wsc_c01374{word-spacing:-29.967501pt;}
.ws2_c01374{word-spacing:-23.622682pt;}
.wse_c01374{word-spacing:-23.544461pt;}
.ws9_c01374{word-spacing:-19.158506pt;}
.ws8_c01374{word-spacing:-19.128192pt;}
.ws5_c01374{word-spacing:-16.684034pt;}
.ws7_c01374{word-spacing:-15.674491pt;}
.ws4_c01374{word-spacing:-13.283467pt;}
.wsa_c01374{word-spacing:-12.539593pt;}
.wsb_c01374{word-spacing:-10.733041pt;}
.ws1_c01374{word-spacing:-8.878599pt;}
.ws3_c01374{word-spacing:-8.877777pt;}
.ws6_c01374{word-spacing:-6.832128pt;}
.ws12_c01374{word-spacing:0.000000pt;}
.wsf_c01374{word-spacing:0.039110pt;}
.ws15_c01374{word-spacing:0.050460pt;}
.ws13_c01374{word-spacing:0.065111pt;}
.ws14_c01374{word-spacing:0.074430pt;}
.wsd_c01374{word-spacing:0.156442pt;}
.ws16_c01374{word-spacing:0.180412pt;}
.ws10_c01374{word-spacing:0.189730pt;}
.ws11_c01374{word-spacing:0.195063pt;}
.ws0_c01374{word-spacing:38.256533pt;}
._0_c01374{margin-left:-4.208219pt;}
._5_c01374{margin-left:-2.922363pt;}
._1_c01374{margin-left:-1.377235pt;}
._6_c01374{width:0.893988pt;}
._4_c01374{width:14.197386pt;}
._2_c01374{width:17.720725pt;}
._3_c01374{width:35.652825pt;}
._8_c01374{width:47.362694pt;}
._7_c01374{width:70.985376pt;}
._9_c01374{width:118.624363pt;}
.fs2_c01374{font-size:39.110400pt;}
.fs1_c01374{font-size:53.133867pt;}
.fs0_c01374{font-size:76.513067pt;}
.y0_c01374{bottom:0.000000pt;}
.y36_c01374{bottom:39.333333pt;}
.y35_c01374{bottom:86.150667pt;}
.y34_c01374{bottom:100.762667pt;}
.y33_c01374{bottom:115.374667pt;}
.y32_c01374{bottom:129.986667pt;}
.y31_c01374{bottom:144.598667pt;}
.y30_c01374{bottom:159.210667pt;}
.y2f_c01374{bottom:173.822667pt;}
.y2e_c01374{bottom:188.434667pt;}
.y2d_c01374{bottom:203.046667pt;}
.y2c_c01374{bottom:217.658667pt;}
.y2b_c01374{bottom:232.270667pt;}
.y2a_c01374{bottom:261.493333pt;}
.y29_c01374{bottom:276.105333pt;}
.y28_c01374{bottom:290.717333pt;}
.y27_c01374{bottom:319.941333pt;}
.y26_c01374{bottom:334.553333pt;}
.y25_c01374{bottom:349.165333pt;}
.y24_c01374{bottom:363.777333pt;}
.y23_c01374{bottom:378.389333pt;}
.y22_c01374{bottom:393.000000pt;}
.y21_c01374{bottom:407.612000pt;}
.y20_c01374{bottom:451.448000pt;}
.y1f_c01374{bottom:466.060000pt;}
.y1e_c01374{bottom:480.672000pt;}
.y1d_c01374{bottom:495.284000pt;}
.y1c_c01374{bottom:509.896000pt;}
.y1b_c01374{bottom:524.508000pt;}
.y1a_c01374{bottom:539.118667pt;}
.y19_c01374{bottom:553.730667pt;}
.y18_c01374{bottom:568.342667pt;}
.y17_c01374{bottom:582.954667pt;}
.y16_c01374{bottom:597.566667pt;}
.y15_c01374{bottom:612.178667pt;}
.y14_c01374{bottom:626.790667pt;}
.y13_c01374{bottom:641.402667pt;}
.y12_c01374{bottom:656.014667pt;}
.y11_c01374{bottom:670.626667pt;}
.y10_c01374{bottom:699.849333pt;}
.yf_c01374{bottom:714.461333pt;}
.ye_c01374{bottom:758.297333pt;}
.yd_c01374{bottom:772.909333pt;}
.yc_c01374{bottom:787.189333pt;}
.yb_c01374{bottom:822.290667pt;}
.ya_c01374{bottom:838.230667pt;}
.y9_c01374{bottom:854.170667pt;}
.y8_c01374{bottom:870.112000pt;}
.y7_c01374{bottom:886.052000pt;}
.y6_c01374{bottom:901.992000pt;}
.y5_c01374{bottom:925.058667pt;}
.y4_c01374{bottom:948.125333pt;}
.y3_c01374{bottom:971.192000pt;}
.y2_c01374{bottom:994.257333pt;}
.y1_c01374{bottom:1030.989333pt;}
.h5_c01374{height:31.280681pt;}
.h6_c01374{height:32.006363pt;}
.h3_c01374{height:36.010648pt;}
.h4_c01374{height:46.518078pt;}
.h2_c01374{height:51.855535pt;}
.h0_c01374{height:1122.520000pt;}
.h1_c01374{height:1122.666667pt;}
.w0_c01374{width:793.706667pt;}
.w1_c01374{width:794.000000pt;}
.x0_c01374{left:0.000000pt;}
.x1_c01374{left:113.385333pt;}
.x2_c01374{left:121.886667pt;}
.x3_c01374{left:127.796000pt;}
.x4_c01374{left:157.340000pt;}
.x5_c01374{left:386.888000pt;}
}





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

.ir_c01375:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01375;src:url('chunks/assets/font_d20d31a6080f0fd7abd9dd7f.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01375;src:url('chunks/assets/font_4a9529580e7a0e035aecb6a6.woff2')format("woff");}.ff2_c01375{font-family:ff2_c01375;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01375;src:url('chunks/assets/font_1f7815f8e6a4beacdd495342.woff2')format("woff");}.ff3_c01375{font-family:ff3_c01375;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01375;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01375{font-family:ff4_c01375;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01375;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01375{font-family:ff5_c01375;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01375{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01375{vertical-align:0.000000px;}
.ls3_c01375{letter-spacing:0.000000px;}
.ls0_c01375{letter-spacing:0.087998px;}
.ls2_c01375{letter-spacing:0.098482px;}
.ls1_c01375{letter-spacing:0.104482px;}
.sc__c01375{text-shadow:none;}
.sc0_c01375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01375{-webkit-text-stroke:0px transparent;}
.sc0_c01375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01375{word-spacing:-33.713438px;}
.ws2_c01375{word-spacing:-26.575517px;}
.wse_c01375{word-spacing:-26.487518px;}
.ws9_c01375{word-spacing:-21.553319px;}
.ws8_c01375{word-spacing:-21.519216px;}
.ws5_c01375{word-spacing:-18.769538px;}
.ws7_c01375{word-spacing:-17.633802px;}
.ws4_c01375{word-spacing:-14.943900px;}
.wsa_c01375{word-spacing:-14.107042px;}
.wsb_c01375{word-spacing:-12.074671px;}
.ws1_c01375{word-spacing:-9.988424px;}
.ws3_c01375{word-spacing:-9.987499px;}
.ws6_c01375{word-spacing:-7.686144px;}
.ws12_c01375{word-spacing:0.000000px;}
.wsf_c01375{word-spacing:0.043999px;}
.ws15_c01375{word-spacing:0.056767px;}
.ws13_c01375{word-spacing:0.073250px;}
.ws14_c01375{word-spacing:0.083734px;}
.wsd_c01375{word-spacing:0.175997px;}
.ws16_c01375{word-spacing:0.202963px;}
.ws10_c01375{word-spacing:0.213446px;}
.ws11_c01375{word-spacing:0.219446px;}
.ws0_c01375{word-spacing:43.038600px;}
._0_c01375{margin-left:-4.734246px;}
._5_c01375{margin-left:-3.287658px;}
._1_c01375{margin-left:-1.549390px;}
._6_c01375{width:1.005737px;}
._4_c01375{width:15.972059px;}
._2_c01375{width:19.935816px;}
._3_c01375{width:40.109428px;}
._8_c01375{width:53.283031px;}
._7_c01375{width:79.858548px;}
._9_c01375{width:133.452408px;}
.fc6_c01375{color:rgb(0,0,207);}
.fc5_c01375{color:rgb(79,153,5);}
.fc3_c01375{color:rgb(33,74,135);}
.fc2_c01375{color:rgb(143,89,3);}
.fc4_c01375{color:rgb(207,92,0);}
.fc1_c01375{color:rgb(6,69,173);}
.fc0_c01375{color:rgb(0,0,0);}
.fs2_c01375{font-size:43.999200px;}
.fs1_c01375{font-size:59.775600px;}
.fs0_c01375{font-size:86.077200px;}
.y0_c01375{bottom:0.000000px;}
.y20_c01375{bottom:44.250000px;}
.y1f_c01375{bottom:86.982000px;}
.y1e_c01375{bottom:103.420500px;}
.y1d_c01375{bottom:119.859000px;}
.y1c_c01375{bottom:136.297500px;}
.y1b_c01375{bottom:152.736000px;}
.y1a_c01375{bottom:169.174500px;}
.y19_c01375{bottom:185.613000px;}
.y18_c01375{bottom:202.051500px;}
.y17_c01375{bottom:218.490000px;}
.y16_c01375{bottom:234.927000px;}
.y15_c01375{bottom:251.365500px;}
.y14_c01375{bottom:267.804000px;}
.y13_c01375{bottom:284.242500px;}
.y12_c01375{bottom:300.681000px;}
.y11_c01375{bottom:317.119500px;}
.y10_c01375{bottom:349.996500px;}
.yf_c01375{bottom:366.435000px;}
.ye_c01375{bottom:415.749000px;}
.yd_c01375{bottom:432.187500px;}
.yc_c01375{bottom:448.252500px;}
.yb_c01375{bottom:493.890000px;}
.ya_c01375{bottom:511.822500px;}
.y9_c01375{bottom:529.756500px;}
.y8_c01375{bottom:547.689000px;}
.y7_c01375{bottom:565.621500px;}
.y6_c01375{bottom:583.554000px;}
.y5_c01375{bottom:610.633500px;}
.y4_c01375{bottom:637.714500px;}
.y3_c01375{bottom:664.794000px;}
.y2_c01375{bottom:691.873500px;}
.y1_c01375{bottom:734.407500px;}
.h5_c01375{height:35.190766px;}
.h6_c01375{height:36.007158px;}
.h3_c01375{height:40.511979px;}
.h4_c01375{height:52.332837px;}
.h2_c01375{height:58.337477px;}
.h0_c01375{height:1262.835000px;}
.h1_c01375{height:1263.000000px;}
.w0_c01375{width:892.920000px;}
.w1_c01375{width:893.250000px;}
.x0_c01375{left:0.000000px;}
.x1_c01375{left:127.558500px;}
.x2_c01375{left:137.122500px;}
.x3_c01375{left:143.770500px;}
.x4_c01375{left:435.249000px;}
@media print{
.v0_c01375{vertical-align:0.000000pt;}
.ls3_c01375{letter-spacing:0.000000pt;}
.ls0_c01375{letter-spacing:0.078221pt;}
.ls2_c01375{letter-spacing:0.087539pt;}
.ls1_c01375{letter-spacing:0.092873pt;}
.wsc_c01375{word-spacing:-29.967501pt;}
.ws2_c01375{word-spacing:-23.622682pt;}
.wse_c01375{word-spacing:-23.544461pt;}
.ws9_c01375{word-spacing:-19.158506pt;}
.ws8_c01375{word-spacing:-19.128192pt;}
.ws5_c01375{word-spacing:-16.684034pt;}
.ws7_c01375{word-spacing:-15.674491pt;}
.ws4_c01375{word-spacing:-13.283467pt;}
.wsa_c01375{word-spacing:-12.539593pt;}
.wsb_c01375{word-spacing:-10.733041pt;}
.ws1_c01375{word-spacing:-8.878599pt;}
.ws3_c01375{word-spacing:-8.877777pt;}
.ws6_c01375{word-spacing:-6.832128pt;}
.ws12_c01375{word-spacing:0.000000pt;}
.wsf_c01375{word-spacing:0.039110pt;}
.ws15_c01375{word-spacing:0.050460pt;}
.ws13_c01375{word-spacing:0.065111pt;}
.ws14_c01375{word-spacing:0.074430pt;}
.wsd_c01375{word-spacing:0.156442pt;}
.ws16_c01375{word-spacing:0.180412pt;}
.ws10_c01375{word-spacing:0.189730pt;}
.ws11_c01375{word-spacing:0.195063pt;}
.ws0_c01375{word-spacing:38.256533pt;}
._0_c01375{margin-left:-4.208219pt;}
._5_c01375{margin-left:-2.922363pt;}
._1_c01375{margin-left:-1.377235pt;}
._6_c01375{width:0.893988pt;}
._4_c01375{width:14.197386pt;}
._2_c01375{width:17.720725pt;}
._3_c01375{width:35.652825pt;}
._8_c01375{width:47.362694pt;}
._7_c01375{width:70.985376pt;}
._9_c01375{width:118.624363pt;}
.fs2_c01375{font-size:39.110400pt;}
.fs1_c01375{font-size:53.133867pt;}
.fs0_c01375{font-size:76.513067pt;}
.y0_c01375{bottom:0.000000pt;}
.y20_c01375{bottom:39.333333pt;}
.y1f_c01375{bottom:77.317333pt;}
.y1e_c01375{bottom:91.929333pt;}
.y1d_c01375{bottom:106.541333pt;}
.y1c_c01375{bottom:121.153333pt;}
.y1b_c01375{bottom:135.765333pt;}
.y1a_c01375{bottom:150.377333pt;}
.y19_c01375{bottom:164.989333pt;}
.y18_c01375{bottom:179.601333pt;}
.y17_c01375{bottom:194.213333pt;}
.y16_c01375{bottom:208.824000pt;}
.y15_c01375{bottom:223.436000pt;}
.y14_c01375{bottom:238.048000pt;}
.y13_c01375{bottom:252.660000pt;}
.y12_c01375{bottom:267.272000pt;}
.y11_c01375{bottom:281.884000pt;}
.y10_c01375{bottom:311.108000pt;}
.yf_c01375{bottom:325.720000pt;}
.ye_c01375{bottom:369.554667pt;}
.yd_c01375{bottom:384.166667pt;}
.yc_c01375{bottom:398.446667pt;}
.yb_c01375{bottom:439.013333pt;}
.ya_c01375{bottom:454.953333pt;}
.y9_c01375{bottom:470.894667pt;}
.y8_c01375{bottom:486.834667pt;}
.y7_c01375{bottom:502.774667pt;}
.y6_c01375{bottom:518.714667pt;}
.y5_c01375{bottom:542.785333pt;}
.y4_c01375{bottom:566.857333pt;}
.y3_c01375{bottom:590.928000pt;}
.y2_c01375{bottom:614.998667pt;}
.y1_c01375{bottom:652.806667pt;}
.h5_c01375{height:31.280681pt;}
.h6_c01375{height:32.006363pt;}
.h3_c01375{height:36.010648pt;}
.h4_c01375{height:46.518078pt;}
.h2_c01375{height:51.855535pt;}
.h0_c01375{height:1122.520000pt;}
.h1_c01375{height:1122.666667pt;}
.w0_c01375{width:793.706667pt;}
.w1_c01375{width:794.000000pt;}
.x0_c01375{left:0.000000pt;}
.x1_c01375{left:113.385333pt;}
.x2_c01375{left:121.886667pt;}
.x3_c01375{left:127.796000pt;}
.x4_c01375{left:386.888000pt;}
}





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

.ir_c01376:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01376;src:url('chunks/assets/font_337a40d5ed2c472784c390d2.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01376;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01376{font-family:ff2_c01376;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01376;src:url('chunks/assets/font_3f599bf858611b457f44115e.woff2')format("woff");}.ff3_c01376{font-family:ff3_c01376;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01376;src:url('chunks/assets/font_fa161be0cad28570af1199aa.woff2')format("woff");}.ff4_c01376{font-family:ff4_c01376;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01376;src:url('chunks/assets/font_9a400f4862aae4ae5a12e93b.woff2')format("woff");}.ff5_c01376{font-family:ff5_c01376;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01376{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01376{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01376{vertical-align:0.000000px;}
.ls4_c01376{letter-spacing:0.000000px;}
.ls0_c01376{letter-spacing:0.087998px;}
.ls2_c01376{letter-spacing:0.098482px;}
.ls3_c01376{letter-spacing:0.104482px;}
.ls1_c01376{letter-spacing:26.690482px;}
.sc__c01376{text-shadow:none;}
.sc0_c01376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01376{-webkit-text-stroke:0px transparent;}
.sc0_c01376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01376{word-spacing:-26.575517px;}
.ws4_c01376{word-spacing:-26.487518px;}
.wse_c01376{word-spacing:-21.553319px;}
.wsd_c01376{word-spacing:-21.519216px;}
.wsc_c01376{word-spacing:-19.247743px;}
.wsa_c01376{word-spacing:-18.769538px;}
.ws9_c01376{word-spacing:-14.943900px;}
.wsf_c01376{word-spacing:-14.107042px;}
.ws10_c01376{word-spacing:-12.074671px;}
.wsb_c01376{word-spacing:-10.230144px;}
.ws7_c01376{word-spacing:-9.988424px;}
.ws8_c01376{word-spacing:-9.987499px;}
.ws3_c01376{word-spacing:0.000000px;}
.ws0_c01376{word-spacing:0.043999px;}
.ws5_c01376{word-spacing:0.213446px;}
.ws1_c01376{word-spacing:0.219446px;}
.ws6_c01376{word-spacing:43.038600px;}
._2_c01376{margin-left:-4.734246px;}
._3_c01376{margin-left:-1.549390px;}
._1_c01376{width:1.041538px;}
._4_c01376{width:19.935816px;}
._5_c01376{width:40.109428px;}
._0_c01376{width:53.459028px;}
.fc5_c01376{color:rgb(79,153,5);}
.fc4_c01376{color:rgb(143,89,3);}
.fc3_c01376{color:rgb(0,0,0);}
.fc6_c01376{color:rgb(6,69,173);}
.fc2_c01376{color:rgb(207,92,0);}
.fc1_c01376{color:rgb(0,0,207);}
.fc0_c01376{color:rgb(33,74,135);}
.fs0_c01376{font-size:43.999200px;}
.fs2_c01376{font-size:59.775600px;}
.fs1_c01376{font-size:86.077200px;}
.y0_c01376{bottom:0.000000px;}
.y20_c01376{bottom:44.250000px;}
.y1f_c01376{bottom:82.051500px;}
.y1e_c01376{bottom:99.984000px;}
.y1d_c01376{bottom:117.916500px;}
.y1c_c01376{bottom:135.849000px;}
.y1b_c01376{bottom:162.501000px;}
.y1a_c01376{bottom:189.151500px;}
.y19_c01376{bottom:215.802000px;}
.y18_c01376{bottom:242.454000px;}
.y17_c01376{bottom:284.478000px;}
.y16_c01376{bottom:748.903500px;}
.y15_c01376{bottom:765.342000px;}
.y14_c01376{bottom:781.780500px;}
.y13_c01376{bottom:798.219000px;}
.y12_c01376{bottom:814.657500px;}
.y11_c01376{bottom:831.096000px;}
.y10_c01376{bottom:847.534500px;}
.yf_c01376{bottom:863.973000px;}
.ye_c01376{bottom:880.411500px;}
.yd_c01376{bottom:896.848500px;}
.yc_c01376{bottom:913.287000px;}
.yb_c01376{bottom:946.164000px;}
.ya_c01376{bottom:962.602500px;}
.y9_c01376{bottom:979.041000px;}
.y8_c01376{bottom:1011.918000px;}
.y7_c01376{bottom:1028.356500px;}
.y6_c01376{bottom:1044.795000px;}
.y5_c01376{bottom:1061.232000px;}
.y4_c01376{bottom:1077.670500px;}
.y3_c01376{bottom:1094.109000px;}
.y2_c01376{bottom:1110.547500px;}
.y1_c01376{bottom:1159.863000px;}
.h3_c01376{height:35.190766px;}
.h2_c01376{height:36.007158px;}
.h5_c01376{height:40.511979px;}
.h6_c01376{height:52.332837px;}
.h4_c01376{height:58.337477px;}
.h0_c01376{height:1262.835000px;}
.h1_c01376{height:1263.000000px;}
.w0_c01376{width:892.920000px;}
.w1_c01376{width:893.250000px;}
.x0_c01376{left:0.000000px;}
.x4_c01376{left:127.558500px;}
.x2_c01376{left:137.122500px;}
.x1_c01376{left:143.770500px;}
.x3_c01376{left:177.007500px;}
.x5_c01376{left:435.249000px;}
@media print{
.v0_c01376{vertical-align:0.000000pt;}
.ls4_c01376{letter-spacing:0.000000pt;}
.ls0_c01376{letter-spacing:0.078221pt;}
.ls2_c01376{letter-spacing:0.087539pt;}
.ls3_c01376{letter-spacing:0.092873pt;}
.ls1_c01376{letter-spacing:23.724873pt;}
.ws2_c01376{word-spacing:-23.622682pt;}
.ws4_c01376{word-spacing:-23.544461pt;}
.wse_c01376{word-spacing:-19.158506pt;}
.wsd_c01376{word-spacing:-19.128192pt;}
.wsc_c01376{word-spacing:-17.109105pt;}
.wsa_c01376{word-spacing:-16.684034pt;}
.ws9_c01376{word-spacing:-13.283467pt;}
.wsf_c01376{word-spacing:-12.539593pt;}
.ws10_c01376{word-spacing:-10.733041pt;}
.wsb_c01376{word-spacing:-9.093461pt;}
.ws7_c01376{word-spacing:-8.878599pt;}
.ws8_c01376{word-spacing:-8.877777pt;}
.ws3_c01376{word-spacing:0.000000pt;}
.ws0_c01376{word-spacing:0.039110pt;}
.ws5_c01376{word-spacing:0.189730pt;}
.ws1_c01376{word-spacing:0.195063pt;}
.ws6_c01376{word-spacing:38.256533pt;}
._2_c01376{margin-left:-4.208219pt;}
._3_c01376{margin-left:-1.377235pt;}
._1_c01376{width:0.925811pt;}
._4_c01376{width:17.720725pt;}
._5_c01376{width:35.652825pt;}
._0_c01376{width:47.519136pt;}
.fs0_c01376{font-size:39.110400pt;}
.fs2_c01376{font-size:53.133867pt;}
.fs1_c01376{font-size:76.513067pt;}
.y0_c01376{bottom:0.000000pt;}
.y20_c01376{bottom:39.333333pt;}
.y1f_c01376{bottom:72.934667pt;}
.y1e_c01376{bottom:88.874667pt;}
.y1d_c01376{bottom:104.814667pt;}
.y1c_c01376{bottom:120.754667pt;}
.y1b_c01376{bottom:144.445333pt;}
.y1a_c01376{bottom:168.134667pt;}
.y19_c01376{bottom:191.824000pt;}
.y18_c01376{bottom:215.514667pt;}
.y17_c01376{bottom:252.869333pt;}
.y16_c01376{bottom:665.692000pt;}
.y15_c01376{bottom:680.304000pt;}
.y14_c01376{bottom:694.916000pt;}
.y13_c01376{bottom:709.528000pt;}
.y12_c01376{bottom:724.140000pt;}
.y11_c01376{bottom:738.752000pt;}
.y10_c01376{bottom:753.364000pt;}
.yf_c01376{bottom:767.976000pt;}
.ye_c01376{bottom:782.588000pt;}
.yd_c01376{bottom:797.198667pt;}
.yc_c01376{bottom:811.810667pt;}
.yb_c01376{bottom:841.034667pt;}
.ya_c01376{bottom:855.646667pt;}
.y9_c01376{bottom:870.258667pt;}
.y8_c01376{bottom:899.482667pt;}
.y7_c01376{bottom:914.094667pt;}
.y6_c01376{bottom:928.706667pt;}
.y5_c01376{bottom:943.317333pt;}
.y4_c01376{bottom:957.929333pt;}
.y3_c01376{bottom:972.541333pt;}
.y2_c01376{bottom:987.153333pt;}
.y1_c01376{bottom:1030.989333pt;}
.h3_c01376{height:31.280681pt;}
.h2_c01376{height:32.006363pt;}
.h5_c01376{height:36.010648pt;}
.h6_c01376{height:46.518078pt;}
.h4_c01376{height:51.855535pt;}
.h0_c01376{height:1122.520000pt;}
.h1_c01376{height:1122.666667pt;}
.w0_c01376{width:793.706667pt;}
.w1_c01376{width:794.000000pt;}
.x0_c01376{left:0.000000pt;}
.x4_c01376{left:113.385333pt;}
.x2_c01376{left:121.886667pt;}
.x1_c01376{left:127.796000pt;}
.x3_c01376{left:157.340000pt;}
.x5_c01376{left:386.888000pt;}
}





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

.ir_c01377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01377;src:url('chunks/assets/font_d2a9812f293d3e03678be429.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01377;src:url('chunks/assets/font_c1cd29fece891e338855cd60.woff2')format("woff");}.ff2_c01377{font-family:ff2_c01377;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01377;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01377{font-family:ff3_c01377;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01377;src:url('chunks/assets/font_f1155607a68f03e0afb91482.woff2')format("woff");}.ff4_c01377{font-family:ff4_c01377;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01377{vertical-align:0.000000px;}
.ls4_c01377{letter-spacing:0.000000px;}
.ls1_c01377{letter-spacing:0.087998px;}
.ls2_c01377{letter-spacing:0.098482px;}
.ls0_c01377{letter-spacing:0.104482px;}
.ls3_c01377{letter-spacing:26.690482px;}
.sc__c01377{text-shadow:none;}
.sc0_c01377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01377{-webkit-text-stroke:0px transparent;}
.sc0_c01377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01377{word-spacing:-33.713438px;}
.ws4_c01377{word-spacing:-26.575517px;}
.ws3_c01377{word-spacing:-26.487518px;}
.ws0_c01377{word-spacing:-18.769538px;}
.ws8_c01377{word-spacing:0.000000px;}
.ws5_c01377{word-spacing:0.043999px;}
.wsb_c01377{word-spacing:0.056767px;}
.ws9_c01377{word-spacing:0.073250px;}
.wsa_c01377{word-spacing:0.083734px;}
.ws2_c01377{word-spacing:0.175997px;}
.wsc_c01377{word-spacing:0.202963px;}
.ws6_c01377{word-spacing:0.213446px;}
.ws7_c01377{word-spacing:0.219446px;}
._0_c01377{margin-left:-3.825638px;}
._1_c01377{width:1.005737px;}
._3_c01377{width:53.283031px;}
._2_c01377{width:79.858548px;}
._4_c01377{width:133.452408px;}
.fc5_c01377{color:rgb(0,0,207);}
.fc4_c01377{color:rgb(79,153,5);}
.fc3_c01377{color:rgb(207,92,0);}
.fc2_c01377{color:rgb(33,74,135);}
.fc1_c01377{color:rgb(143,89,3);}
.fc0_c01377{color:rgb(0,0,0);}
.fs1_c01377{font-size:43.999200px;}
.fs0_c01377{font-size:59.775600px;}
.y0_c01377{bottom:0.000000px;}
.y2d_c01377{bottom:44.250000px;}
.y2c_c01377{bottom:96.919500px;}
.y2b_c01377{bottom:113.358000px;}
.y2a_c01377{bottom:129.796500px;}
.y29_c01377{bottom:146.235000px;}
.y28_c01377{bottom:162.673500px;}
.y27_c01377{bottom:179.112000px;}
.y26_c01377{bottom:195.550500px;}
.y25_c01377{bottom:211.989000px;}
.y24_c01377{bottom:228.427500px;}
.y23_c01377{bottom:244.866000px;}
.y22_c01377{bottom:261.304500px;}
.y21_c01377{bottom:294.180000px;}
.y20_c01377{bottom:310.618500px;}
.y1f_c01377{bottom:327.057000px;}
.y1e_c01377{bottom:359.934000px;}
.y1d_c01377{bottom:376.372500px;}
.y1c_c01377{bottom:392.811000px;}
.y1b_c01377{bottom:409.249500px;}
.y1a_c01377{bottom:425.688000px;}
.y19_c01377{bottom:442.125000px;}
.y18_c01377{bottom:458.563500px;}
.y17_c01377{bottom:507.879000px;}
.y16_c01377{bottom:524.317500px;}
.y15_c01377{bottom:540.756000px;}
.y14_c01377{bottom:557.194500px;}
.y13_c01377{bottom:573.633000px;}
.y12_c01377{bottom:590.071500px;}
.y11_c01377{bottom:606.508500px;}
.y10_c01377{bottom:622.947000px;}
.yf_c01377{bottom:639.385500px;}
.ye_c01377{bottom:655.824000px;}
.yd_c01377{bottom:672.262500px;}
.yc_c01377{bottom:688.701000px;}
.yb_c01377{bottom:705.139500px;}
.ya_c01377{bottom:721.578000px;}
.y9_c01377{bottom:738.016500px;}
.y8_c01377{bottom:754.455000px;}
.y7_c01377{bottom:787.330500px;}
.y6_c01377{bottom:803.769000px;}
.y5_c01377{bottom:853.084500px;}
.y4_c01377{bottom:869.523000px;}
.y3_c01377{bottom:885.588000px;}
.y2_c01377{bottom:1141.930500px;}
.y1_c01377{bottom:1159.863000px;}
.h3_c01377{height:35.190766px;}
.h4_c01377{height:36.007158px;}
.h2_c01377{height:52.332837px;}
.h0_c01377{height:1262.835000px;}
.h1_c01377{height:1263.000000px;}
.w0_c01377{width:892.920000px;}
.w1_c01377{width:893.250000px;}
.x0_c01377{left:0.000000px;}
.x1_c01377{left:127.558500px;}
.x2_c01377{left:137.122500px;}
.x3_c01377{left:143.770500px;}
.x4_c01377{left:177.007500px;}
.x5_c01377{left:435.249000px;}
@media print{
.v0_c01377{vertical-align:0.000000pt;}
.ls4_c01377{letter-spacing:0.000000pt;}
.ls1_c01377{letter-spacing:0.078221pt;}
.ls2_c01377{letter-spacing:0.087539pt;}
.ls0_c01377{letter-spacing:0.092873pt;}
.ls3_c01377{letter-spacing:23.724873pt;}
.ws1_c01377{word-spacing:-29.967501pt;}
.ws4_c01377{word-spacing:-23.622682pt;}
.ws3_c01377{word-spacing:-23.544461pt;}
.ws0_c01377{word-spacing:-16.684034pt;}
.ws8_c01377{word-spacing:0.000000pt;}
.ws5_c01377{word-spacing:0.039110pt;}
.wsb_c01377{word-spacing:0.050460pt;}
.ws9_c01377{word-spacing:0.065111pt;}
.wsa_c01377{word-spacing:0.074430pt;}
.ws2_c01377{word-spacing:0.156442pt;}
.wsc_c01377{word-spacing:0.180412pt;}
.ws6_c01377{word-spacing:0.189730pt;}
.ws7_c01377{word-spacing:0.195063pt;}
._0_c01377{margin-left:-3.400567pt;}
._1_c01377{width:0.893988pt;}
._3_c01377{width:47.362694pt;}
._2_c01377{width:70.985376pt;}
._4_c01377{width:118.624363pt;}
.fs1_c01377{font-size:39.110400pt;}
.fs0_c01377{font-size:53.133867pt;}
.y0_c01377{bottom:0.000000pt;}
.y2d_c01377{bottom:39.333333pt;}
.y2c_c01377{bottom:86.150667pt;}
.y2b_c01377{bottom:100.762667pt;}
.y2a_c01377{bottom:115.374667pt;}
.y29_c01377{bottom:129.986667pt;}
.y28_c01377{bottom:144.598667pt;}
.y27_c01377{bottom:159.210667pt;}
.y26_c01377{bottom:173.822667pt;}
.y25_c01377{bottom:188.434667pt;}
.y24_c01377{bottom:203.046667pt;}
.y23_c01377{bottom:217.658667pt;}
.y22_c01377{bottom:232.270667pt;}
.y21_c01377{bottom:261.493333pt;}
.y20_c01377{bottom:276.105333pt;}
.y1f_c01377{bottom:290.717333pt;}
.y1e_c01377{bottom:319.941333pt;}
.y1d_c01377{bottom:334.553333pt;}
.y1c_c01377{bottom:349.165333pt;}
.y1b_c01377{bottom:363.777333pt;}
.y1a_c01377{bottom:378.389333pt;}
.y19_c01377{bottom:393.000000pt;}
.y18_c01377{bottom:407.612000pt;}
.y17_c01377{bottom:451.448000pt;}
.y16_c01377{bottom:466.060000pt;}
.y15_c01377{bottom:480.672000pt;}
.y14_c01377{bottom:495.284000pt;}
.y13_c01377{bottom:509.896000pt;}
.y12_c01377{bottom:524.508000pt;}
.y11_c01377{bottom:539.118667pt;}
.y10_c01377{bottom:553.730667pt;}
.yf_c01377{bottom:568.342667pt;}
.ye_c01377{bottom:582.954667pt;}
.yd_c01377{bottom:597.566667pt;}
.yc_c01377{bottom:612.178667pt;}
.yb_c01377{bottom:626.790667pt;}
.ya_c01377{bottom:641.402667pt;}
.y9_c01377{bottom:656.014667pt;}
.y8_c01377{bottom:670.626667pt;}
.y7_c01377{bottom:699.849333pt;}
.y6_c01377{bottom:714.461333pt;}
.y5_c01377{bottom:758.297333pt;}
.y4_c01377{bottom:772.909333pt;}
.y3_c01377{bottom:787.189333pt;}
.y2_c01377{bottom:1015.049333pt;}
.y1_c01377{bottom:1030.989333pt;}
.h3_c01377{height:31.280681pt;}
.h4_c01377{height:32.006363pt;}
.h2_c01377{height:46.518078pt;}
.h0_c01377{height:1122.520000pt;}
.h1_c01377{height:1122.666667pt;}
.w0_c01377{width:793.706667pt;}
.w1_c01377{width:794.000000pt;}
.x0_c01377{left:0.000000pt;}
.x1_c01377{left:113.385333pt;}
.x2_c01377{left:121.886667pt;}
.x3_c01377{left:127.796000pt;}
.x4_c01377{left:157.340000pt;}
.x5_c01377{left:386.888000pt;}
}





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

.ir_c01378:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01378;src:url('chunks/assets/font_dfc7a26e958fc250d06e71ff.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01378;src:url('chunks/assets/font_2f6cdd1f523d216d11f5319b.woff2')format("woff");}.ff2_c01378{font-family:ff2_c01378;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01378;src:url('chunks/assets/font_1e5fe8c2dbc9eff0a4f28e46.woff2')format("woff");}.ff3_c01378{font-family:ff3_c01378;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01378;src:url('chunks/assets/font_5b7d70b59dcff13fe0ea4885.woff2')format("woff");}.ff4_c01378{font-family:ff4_c01378;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01378;src:url('chunks/assets/font_afde3cd5267f6d0e9df8df01.woff2')format("woff");}.ff5_c01378{font-family:ff5_c01378;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01378{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01378{vertical-align:0.000000px;}
.ls3_c01378{letter-spacing:0.000000px;}
.ls0_c01378{letter-spacing:0.087998px;}
.ls2_c01378{letter-spacing:0.098482px;}
.ls1_c01378{letter-spacing:0.104482px;}
.sc__c01378{text-shadow:none;}
.sc0_c01378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01378{-webkit-text-stroke:0px transparent;}
.sc0_c01378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01378{word-spacing:-26.575517px;}
.wse_c01378{word-spacing:-26.487518px;}
.ws5_c01378{word-spacing:-18.769538px;}
.wsc_c01378{word-spacing:-18.590212px;}
.wsb_c01378{word-spacing:-17.693578px;}
.ws8_c01378{word-spacing:-17.420260px;}
.ws7_c01378{word-spacing:-17.334924px;}
.ws9_c01378{word-spacing:-17.095822px;}
.wsa_c01378{word-spacing:-15.063451px;}
.ws4_c01378{word-spacing:-14.943900px;}
.ws1_c01378{word-spacing:-9.988424px;}
.ws3_c01378{word-spacing:-9.987499px;}
.ws6_c01378{word-spacing:-7.122144px;}
.ws12_c01378{word-spacing:0.000000px;}
.wsf_c01378{word-spacing:0.043999px;}
.wsd_c01378{word-spacing:0.175997px;}
.ws11_c01378{word-spacing:0.213446px;}
.ws10_c01378{word-spacing:0.219446px;}
.ws0_c01378{word-spacing:43.038600px;}
._0_c01378{margin-left:-4.734246px;}
._6_c01378{margin-left:-3.138872px;}
._2_c01378{margin-left:-1.075961px;}
._7_c01378{width:1.005737px;}
._3_c01378{width:17.633802px;}
._1_c01378{width:19.935816px;}
._5_c01378{width:23.073382px;}
._4_c01378{width:24.986201px;}
.fc5_c01378{color:rgb(79,153,5);}
.fc3_c01378{color:rgb(33,74,135);}
.fc2_c01378{color:rgb(143,89,3);}
.fc4_c01378{color:rgb(207,92,0);}
.fc1_c01378{color:rgb(6,69,173);}
.fc0_c01378{color:rgb(0,0,0);}
.fs2_c01378{font-size:43.999200px;}
.fs1_c01378{font-size:59.775600px;}
.fs0_c01378{font-size:86.077200px;}
.y0_c01378{bottom:0.000000px;}
.y20_c01378{bottom:44.250000px;}
.y1f_c01378{bottom:86.982000px;}
.y1e_c01378{bottom:103.420500px;}
.y1d_c01378{bottom:119.859000px;}
.y1c_c01378{bottom:136.297500px;}
.y1b_c01378{bottom:152.736000px;}
.y1a_c01378{bottom:185.613000px;}
.y19_c01378{bottom:202.051500px;}
.y18_c01378{bottom:234.927000px;}
.y17_c01378{bottom:251.365500px;}
.y16_c01378{bottom:267.804000px;}
.y15_c01378{bottom:284.242500px;}
.y14_c01378{bottom:317.119500px;}
.y13_c01378{bottom:333.558000px;}
.y12_c01378{bottom:349.996500px;}
.y11_c01378{bottom:366.435000px;}
.y10_c01378{bottom:382.873500px;}
.yf_c01378{bottom:399.310500px;}
.ye_c01378{bottom:415.749000px;}
.yd_c01378{bottom:432.187500px;}
.yc_c01378{bottom:448.252500px;}
.yb_c01378{bottom:495.994500px;}
.ya_c01378{bottom:513.927000px;}
.y9_c01378{bottom:531.859500px;}
.y8_c01378{bottom:549.792000px;}
.y7_c01378{bottom:567.726000px;}
.y6_c01378{bottom:585.658500px;}
.y5_c01378{bottom:612.480000px;}
.y4_c01378{bottom:639.301500px;}
.y3_c01378{bottom:666.123000px;}
.y2_c01378{bottom:692.944500px;}
.y1_c01378{bottom:735.139500px;}
.h5_c01378{height:35.190766px;}
.h6_c01378{height:36.007158px;}
.h3_c01378{height:40.511979px;}
.h4_c01378{height:52.332837px;}
.h2_c01378{height:58.337477px;}
.h0_c01378{height:1262.835000px;}
.h1_c01378{height:1263.000000px;}
.w0_c01378{width:892.920000px;}
.w1_c01378{width:893.250000px;}
.x0_c01378{left:0.000000px;}
.x1_c01378{left:127.558500px;}
.x2_c01378{left:137.122500px;}
.x3_c01378{left:435.249000px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls3_c01378{letter-spacing:0.000000pt;}
.ls0_c01378{letter-spacing:0.078221pt;}
.ls2_c01378{letter-spacing:0.087539pt;}
.ls1_c01378{letter-spacing:0.092873pt;}
.ws2_c01378{word-spacing:-23.622682pt;}
.wse_c01378{word-spacing:-23.544461pt;}
.ws5_c01378{word-spacing:-16.684034pt;}
.wsc_c01378{word-spacing:-16.524633pt;}
.wsb_c01378{word-spacing:-15.727625pt;}
.ws8_c01378{word-spacing:-15.484675pt;}
.ws7_c01378{word-spacing:-15.408821pt;}
.ws9_c01378{word-spacing:-15.196286pt;}
.wsa_c01378{word-spacing:-13.389734pt;}
.ws4_c01378{word-spacing:-13.283467pt;}
.ws1_c01378{word-spacing:-8.878599pt;}
.ws3_c01378{word-spacing:-8.877777pt;}
.ws6_c01378{word-spacing:-6.330795pt;}
.ws12_c01378{word-spacing:0.000000pt;}
.wsf_c01378{word-spacing:0.039110pt;}
.wsd_c01378{word-spacing:0.156442pt;}
.ws11_c01378{word-spacing:0.189730pt;}
.ws10_c01378{word-spacing:0.195063pt;}
.ws0_c01378{word-spacing:38.256533pt;}
._0_c01378{margin-left:-4.208219pt;}
._6_c01378{margin-left:-2.790109pt;}
._2_c01378{margin-left:-0.956410pt;}
._7_c01378{width:0.893988pt;}
._3_c01378{width:15.674491pt;}
._1_c01378{width:17.720725pt;}
._5_c01378{width:20.509673pt;}
._4_c01378{width:22.209956pt;}
.fs2_c01378{font-size:39.110400pt;}
.fs1_c01378{font-size:53.133867pt;}
.fs0_c01378{font-size:76.513067pt;}
.y0_c01378{bottom:0.000000pt;}
.y20_c01378{bottom:39.333333pt;}
.y1f_c01378{bottom:77.317333pt;}
.y1e_c01378{bottom:91.929333pt;}
.y1d_c01378{bottom:106.541333pt;}
.y1c_c01378{bottom:121.153333pt;}
.y1b_c01378{bottom:135.765333pt;}
.y1a_c01378{bottom:164.989333pt;}
.y19_c01378{bottom:179.601333pt;}
.y18_c01378{bottom:208.824000pt;}
.y17_c01378{bottom:223.436000pt;}
.y16_c01378{bottom:238.048000pt;}
.y15_c01378{bottom:252.660000pt;}
.y14_c01378{bottom:281.884000pt;}
.y13_c01378{bottom:296.496000pt;}
.y12_c01378{bottom:311.108000pt;}
.y11_c01378{bottom:325.720000pt;}
.y10_c01378{bottom:340.332000pt;}
.yf_c01378{bottom:354.942667pt;}
.ye_c01378{bottom:369.554667pt;}
.yd_c01378{bottom:384.166667pt;}
.yc_c01378{bottom:398.446667pt;}
.yb_c01378{bottom:440.884000pt;}
.ya_c01378{bottom:456.824000pt;}
.y9_c01378{bottom:472.764000pt;}
.y8_c01378{bottom:488.704000pt;}
.y7_c01378{bottom:504.645333pt;}
.y6_c01378{bottom:520.585333pt;}
.y5_c01378{bottom:544.426667pt;}
.y4_c01378{bottom:568.268000pt;}
.y3_c01378{bottom:592.109333pt;}
.y2_c01378{bottom:615.950667pt;}
.y1_c01378{bottom:653.457333pt;}
.h5_c01378{height:31.280681pt;}
.h6_c01378{height:32.006363pt;}
.h3_c01378{height:36.010648pt;}
.h4_c01378{height:46.518078pt;}
.h2_c01378{height:51.855535pt;}
.h0_c01378{height:1122.520000pt;}
.h1_c01378{height:1122.666667pt;}
.w0_c01378{width:793.706667pt;}
.w1_c01378{width:794.000000pt;}
.x0_c01378{left:0.000000pt;}
.x1_c01378{left:113.385333pt;}
.x2_c01378{left:121.886667pt;}
.x3_c01378{left:386.888000pt;}
}





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

.ir_c01379:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01379;src:url('chunks/assets/font_f48daa9c4d53640f0fdd95fe.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01379;src:url('chunks/assets/font_f08176d7ca58ac60fccef116.woff2')format("woff");}.ff2_c01379{font-family:ff2_c01379;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01379;src:url('chunks/assets/font_2650646c5dd33ff69d98669b.woff2')format("woff");}.ff3_c01379{font-family:ff3_c01379;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01379;src:url('chunks/assets/font_c33dc3aeb4728b7b9d473637.woff2')format("woff");}.ff4_c01379{font-family:ff4_c01379;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01379{vertical-align:0.000000px;}
.ls3_c01379{letter-spacing:0.000000px;}
.ls0_c01379{letter-spacing:0.087998px;}
.ls2_c01379{letter-spacing:0.098482px;}
.ls1_c01379{letter-spacing:0.104482px;}
.sc__c01379{text-shadow:none;}
.sc0_c01379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01379{-webkit-text-stroke:0px transparent;}
.sc0_c01379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01379{word-spacing:-26.575517px;}
.ws2_c01379{word-spacing:-26.487518px;}
.ws4_c01379{word-spacing:0.000000px;}
.ws3_c01379{word-spacing:0.043999px;}
.ws1_c01379{word-spacing:0.053933px;}
.ws5_c01379{word-spacing:0.056767px;}
.ws6_c01379{word-spacing:0.213446px;}
._1_c01379{width:1.041538px;}
._0_c01379{width:80.166542px;}
.fc5_c01379{color:rgb(79,153,5);}
.fc4_c01379{color:rgb(33,74,135);}
.fc3_c01379{color:rgb(0,0,207);}
.fc2_c01379{color:rgb(143,89,3);}
.fc1_c01379{color:rgb(207,92,0);}
.fc0_c01379{color:rgb(0,0,0);}
.fs0_c01379{font-size:43.999200px;}
.fs1_c01379{font-size:59.775600px;}
.y0_c01379{bottom:0.000000px;}
.y23_c01379{bottom:44.250000px;}
.y22_c01379{bottom:518.767500px;}
.y21_c01379{bottom:535.206000px;}
.y20_c01379{bottom:551.643000px;}
.y1f_c01379{bottom:568.081500px;}
.y1e_c01379{bottom:584.520000px;}
.y1d_c01379{bottom:600.958500px;}
.y1c_c01379{bottom:617.397000px;}
.y1b_c01379{bottom:633.835500px;}
.y1a_c01379{bottom:650.274000px;}
.y19_c01379{bottom:666.712500px;}
.y18_c01379{bottom:683.151000px;}
.y17_c01379{bottom:716.028000px;}
.y16_c01379{bottom:732.465000px;}
.y15_c01379{bottom:748.903500px;}
.y14_c01379{bottom:781.780500px;}
.y13_c01379{bottom:798.219000px;}
.y12_c01379{bottom:814.657500px;}
.y11_c01379{bottom:831.096000px;}
.y10_c01379{bottom:847.534500px;}
.yf_c01379{bottom:863.973000px;}
.ye_c01379{bottom:880.411500px;}
.yd_c01379{bottom:896.848500px;}
.yc_c01379{bottom:913.287000px;}
.yb_c01379{bottom:929.725500px;}
.ya_c01379{bottom:946.164000px;}
.y9_c01379{bottom:962.602500px;}
.y8_c01379{bottom:979.041000px;}
.y7_c01379{bottom:1011.918000px;}
.y6_c01379{bottom:1028.356500px;}
.y5_c01379{bottom:1077.670500px;}
.y4_c01379{bottom:1094.109000px;}
.y3_c01379{bottom:1126.986000px;}
.y2_c01379{bottom:1143.424500px;}
.y1_c01379{bottom:1159.863000px;}
.h3_c01379{height:35.190766px;}
.h2_c01379{height:36.007158px;}
.h4_c01379{height:52.332837px;}
.h0_c01379{height:1262.835000px;}
.h1_c01379{height:1263.000000px;}
.w0_c01379{width:892.920000px;}
.w1_c01379{width:893.250000px;}
.x0_c01379{left:0.000000px;}
.x1_c01379{left:137.122500px;}
.x2_c01379{left:143.770500px;}
.x4_c01379{left:177.007500px;}
.x3_c01379{left:230.185500px;}
.x5_c01379{left:435.249000px;}
@media print{
.v0_c01379{vertical-align:0.000000pt;}
.ls3_c01379{letter-spacing:0.000000pt;}
.ls0_c01379{letter-spacing:0.078221pt;}
.ls2_c01379{letter-spacing:0.087539pt;}
.ls1_c01379{letter-spacing:0.092873pt;}
.ws0_c01379{word-spacing:-23.622682pt;}
.ws2_c01379{word-spacing:-23.544461pt;}
.ws4_c01379{word-spacing:0.000000pt;}
.ws3_c01379{word-spacing:0.039110pt;}
.ws1_c01379{word-spacing:0.047940pt;}
.ws5_c01379{word-spacing:0.050460pt;}
.ws6_c01379{word-spacing:0.189730pt;}
._1_c01379{width:0.925811pt;}
._0_c01379{width:71.259149pt;}
.fs0_c01379{font-size:39.110400pt;}
.fs1_c01379{font-size:53.133867pt;}
.y0_c01379{bottom:0.000000pt;}
.y23_c01379{bottom:39.333333pt;}
.y22_c01379{bottom:461.126667pt;}
.y21_c01379{bottom:475.738667pt;}
.y20_c01379{bottom:490.349333pt;}
.y1f_c01379{bottom:504.961333pt;}
.y1e_c01379{bottom:519.573333pt;}
.y1d_c01379{bottom:534.185333pt;}
.y1c_c01379{bottom:548.797333pt;}
.y1b_c01379{bottom:563.409333pt;}
.y1a_c01379{bottom:578.021333pt;}
.y19_c01379{bottom:592.633333pt;}
.y18_c01379{bottom:607.245333pt;}
.y17_c01379{bottom:636.469333pt;}
.y16_c01379{bottom:651.080000pt;}
.y15_c01379{bottom:665.692000pt;}
.y14_c01379{bottom:694.916000pt;}
.y13_c01379{bottom:709.528000pt;}
.y12_c01379{bottom:724.140000pt;}
.y11_c01379{bottom:738.752000pt;}
.y10_c01379{bottom:753.364000pt;}
.yf_c01379{bottom:767.976000pt;}
.ye_c01379{bottom:782.588000pt;}
.yd_c01379{bottom:797.198667pt;}
.yc_c01379{bottom:811.810667pt;}
.yb_c01379{bottom:826.422667pt;}
.ya_c01379{bottom:841.034667pt;}
.y9_c01379{bottom:855.646667pt;}
.y8_c01379{bottom:870.258667pt;}
.y7_c01379{bottom:899.482667pt;}
.y6_c01379{bottom:914.094667pt;}
.y5_c01379{bottom:957.929333pt;}
.y4_c01379{bottom:972.541333pt;}
.y3_c01379{bottom:1001.765333pt;}
.y2_c01379{bottom:1016.377333pt;}
.y1_c01379{bottom:1030.989333pt;}
.h3_c01379{height:31.280681pt;}
.h2_c01379{height:32.006363pt;}
.h4_c01379{height:46.518078pt;}
.h0_c01379{height:1122.520000pt;}
.h1_c01379{height:1122.666667pt;}
.w0_c01379{width:793.706667pt;}
.w1_c01379{width:794.000000pt;}
.x0_c01379{left:0.000000pt;}
.x1_c01379{left:121.886667pt;}
.x2_c01379{left:127.796000pt;}
.x4_c01379{left:157.340000pt;}
.x3_c01379{left:204.609333pt;}
.x5_c01379{left:386.888000pt;}
}





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

.ir_c01380:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01380;src:url('chunks/assets/font_51051971dfe182954e5b729f.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01380;src:url('chunks/assets/font_380b390eb2e219bc8461a266.woff2')format("woff");}.ff2_c01380{font-family:ff2_c01380;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01380;src:url('chunks/assets/font_45238029c6e82b7496e6fee1.woff2')format("woff");}.ff3_c01380{font-family:ff3_c01380;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01380;src:url('chunks/assets/font_a4467c154603d58fa677f67b.woff2')format("woff");}.ff4_c01380{font-family:ff4_c01380;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01380;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff5_c01380{font-family:ff5_c01380;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01380{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01380{vertical-align:0.000000px;}
.ls4_c01380{letter-spacing:0.000000px;}
.ls0_c01380{letter-spacing:0.087998px;}
.ls2_c01380{letter-spacing:0.098482px;}
.ls1_c01380{letter-spacing:0.104482px;}
.ls3_c01380{letter-spacing:26.690482px;}
.sc__c01380{text-shadow:none;}
.sc0_c01380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01380{-webkit-text-stroke:0px transparent;}
.sc0_c01380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01380{word-spacing:-33.713438px;}
.ws2_c01380{word-spacing:-26.575517px;}
.wse_c01380{word-spacing:-26.487518px;}
.ws9_c01380{word-spacing:-21.553319px;}
.ws8_c01380{word-spacing:-21.519216px;}
.ws5_c01380{word-spacing:-18.769538px;}
.ws7_c01380{word-spacing:-16.019861px;}
.ws4_c01380{word-spacing:-14.943900px;}
.wsa_c01380{word-spacing:-14.107042px;}
.wsb_c01380{word-spacing:-12.074671px;}
.ws1_c01380{word-spacing:-9.988424px;}
.ws3_c01380{word-spacing:-9.987499px;}
.ws6_c01380{word-spacing:-4.536144px;}
.ws12_c01380{word-spacing:0.000000px;}
.wsf_c01380{word-spacing:0.043999px;}
.ws15_c01380{word-spacing:0.056767px;}
.ws13_c01380{word-spacing:0.073250px;}
.ws14_c01380{word-spacing:0.083734px;}
.wsd_c01380{word-spacing:0.175997px;}
.ws16_c01380{word-spacing:0.202963px;}
.ws10_c01380{word-spacing:0.213446px;}
.ws11_c01380{word-spacing:0.219446px;}
.ws0_c01380{word-spacing:43.038600px;}
._0_c01380{margin-left:-4.734246px;}
._3_c01380{margin-left:-2.347817px;}
._2_c01380{margin-left:-1.075961px;}
._6_c01380{width:1.005737px;}
._5_c01380{width:15.972059px;}
._1_c01380{width:19.935816px;}
._4_c01380{width:40.109428px;}
._8_c01380{width:53.283031px;}
._7_c01380{width:79.858548px;}
._9_c01380{width:133.452408px;}
.fc6_c01380{color:rgb(0,0,207);}
.fc5_c01380{color:rgb(79,153,5);}
.fc3_c01380{color:rgb(33,74,135);}
.fc2_c01380{color:rgb(143,89,3);}
.fc4_c01380{color:rgb(207,92,0);}
.fc1_c01380{color:rgb(6,69,173);}
.fc0_c01380{color:rgb(0,0,0);}
.fs2_c01380{font-size:43.999200px;}
.fs1_c01380{font-size:59.775600px;}
.fs0_c01380{font-size:86.077200px;}
.y0_c01380{bottom:0.000000px;}
.y36_c01380{bottom:44.250000px;}
.y35_c01380{bottom:96.919500px;}
.y34_c01380{bottom:113.358000px;}
.y33_c01380{bottom:129.796500px;}
.y32_c01380{bottom:146.235000px;}
.y31_c01380{bottom:162.673500px;}
.y30_c01380{bottom:179.112000px;}
.y2f_c01380{bottom:195.550500px;}
.y2e_c01380{bottom:211.989000px;}
.y2d_c01380{bottom:228.427500px;}
.y2c_c01380{bottom:244.866000px;}
.y2b_c01380{bottom:261.304500px;}
.y2a_c01380{bottom:294.180000px;}
.y29_c01380{bottom:310.618500px;}
.y28_c01380{bottom:327.057000px;}
.y27_c01380{bottom:359.934000px;}
.y26_c01380{bottom:376.372500px;}
.y25_c01380{bottom:392.811000px;}
.y24_c01380{bottom:409.249500px;}
.y23_c01380{bottom:425.688000px;}
.y22_c01380{bottom:442.125000px;}
.y21_c01380{bottom:458.563500px;}
.y20_c01380{bottom:507.879000px;}
.y1f_c01380{bottom:524.317500px;}
.y1e_c01380{bottom:540.756000px;}
.y1d_c01380{bottom:557.194500px;}
.y1c_c01380{bottom:573.633000px;}
.y1b_c01380{bottom:590.071500px;}
.y1a_c01380{bottom:606.508500px;}
.y19_c01380{bottom:622.947000px;}
.y18_c01380{bottom:639.385500px;}
.y17_c01380{bottom:655.824000px;}
.y16_c01380{bottom:672.262500px;}
.y15_c01380{bottom:688.701000px;}
.y14_c01380{bottom:705.139500px;}
.y13_c01380{bottom:721.578000px;}
.y12_c01380{bottom:738.016500px;}
.y11_c01380{bottom:754.455000px;}
.y10_c01380{bottom:787.330500px;}
.yf_c01380{bottom:803.769000px;}
.ye_c01380{bottom:853.084500px;}
.yd_c01380{bottom:869.523000px;}
.yc_c01380{bottom:885.588000px;}
.yb_c01380{bottom:925.077000px;}
.ya_c01380{bottom:943.009500px;}
.y9_c01380{bottom:960.942000px;}
.y8_c01380{bottom:978.876000px;}
.y7_c01380{bottom:996.808500px;}
.y6_c01380{bottom:1014.741000px;}
.y5_c01380{bottom:1040.691000px;}
.y4_c01380{bottom:1066.641000px;}
.y3_c01380{bottom:1092.591000px;}
.y2_c01380{bottom:1118.539500px;}
.y1_c01380{bottom:1159.863000px;}
.h5_c01380{height:35.190766px;}
.h6_c01380{height:36.007158px;}
.h3_c01380{height:40.511979px;}
.h4_c01380{height:52.332837px;}
.h2_c01380{height:58.337477px;}
.h0_c01380{height:1262.835000px;}
.h1_c01380{height:1263.000000px;}
.w0_c01380{width:892.920000px;}
.w1_c01380{width:893.250000px;}
.x0_c01380{left:0.000000px;}
.x1_c01380{left:127.558500px;}
.x2_c01380{left:137.122500px;}
.x3_c01380{left:143.770500px;}
.x4_c01380{left:177.007500px;}
.x5_c01380{left:435.249000px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls4_c01380{letter-spacing:0.000000pt;}
.ls0_c01380{letter-spacing:0.078221pt;}
.ls2_c01380{letter-spacing:0.087539pt;}
.ls1_c01380{letter-spacing:0.092873pt;}
.ls3_c01380{letter-spacing:23.724873pt;}
.wsc_c01380{word-spacing:-29.967501pt;}
.ws2_c01380{word-spacing:-23.622682pt;}
.wse_c01380{word-spacing:-23.544461pt;}
.ws9_c01380{word-spacing:-19.158506pt;}
.ws8_c01380{word-spacing:-19.128192pt;}
.ws5_c01380{word-spacing:-16.684034pt;}
.ws7_c01380{word-spacing:-14.239876pt;}
.ws4_c01380{word-spacing:-13.283467pt;}
.wsa_c01380{word-spacing:-12.539593pt;}
.wsb_c01380{word-spacing:-10.733041pt;}
.ws1_c01380{word-spacing:-8.878599pt;}
.ws3_c01380{word-spacing:-8.877777pt;}
.ws6_c01380{word-spacing:-4.032128pt;}
.ws12_c01380{word-spacing:0.000000pt;}
.wsf_c01380{word-spacing:0.039110pt;}
.ws15_c01380{word-spacing:0.050460pt;}
.ws13_c01380{word-spacing:0.065111pt;}
.ws14_c01380{word-spacing:0.074430pt;}
.wsd_c01380{word-spacing:0.156442pt;}
.ws16_c01380{word-spacing:0.180412pt;}
.ws10_c01380{word-spacing:0.189730pt;}
.ws11_c01380{word-spacing:0.195063pt;}
.ws0_c01380{word-spacing:38.256533pt;}
._0_c01380{margin-left:-4.208219pt;}
._3_c01380{margin-left:-2.086948pt;}
._2_c01380{margin-left:-0.956410pt;}
._6_c01380{width:0.893988pt;}
._5_c01380{width:14.197386pt;}
._1_c01380{width:17.720725pt;}
._4_c01380{width:35.652825pt;}
._8_c01380{width:47.362694pt;}
._7_c01380{width:70.985376pt;}
._9_c01380{width:118.624363pt;}
.fs2_c01380{font-size:39.110400pt;}
.fs1_c01380{font-size:53.133867pt;}
.fs0_c01380{font-size:76.513067pt;}
.y0_c01380{bottom:0.000000pt;}
.y36_c01380{bottom:39.333333pt;}
.y35_c01380{bottom:86.150667pt;}
.y34_c01380{bottom:100.762667pt;}
.y33_c01380{bottom:115.374667pt;}
.y32_c01380{bottom:129.986667pt;}
.y31_c01380{bottom:144.598667pt;}
.y30_c01380{bottom:159.210667pt;}
.y2f_c01380{bottom:173.822667pt;}
.y2e_c01380{bottom:188.434667pt;}
.y2d_c01380{bottom:203.046667pt;}
.y2c_c01380{bottom:217.658667pt;}
.y2b_c01380{bottom:232.270667pt;}
.y2a_c01380{bottom:261.493333pt;}
.y29_c01380{bottom:276.105333pt;}
.y28_c01380{bottom:290.717333pt;}
.y27_c01380{bottom:319.941333pt;}
.y26_c01380{bottom:334.553333pt;}
.y25_c01380{bottom:349.165333pt;}
.y24_c01380{bottom:363.777333pt;}
.y23_c01380{bottom:378.389333pt;}
.y22_c01380{bottom:393.000000pt;}
.y21_c01380{bottom:407.612000pt;}
.y20_c01380{bottom:451.448000pt;}
.y1f_c01380{bottom:466.060000pt;}
.y1e_c01380{bottom:480.672000pt;}
.y1d_c01380{bottom:495.284000pt;}
.y1c_c01380{bottom:509.896000pt;}
.y1b_c01380{bottom:524.508000pt;}
.y1a_c01380{bottom:539.118667pt;}
.y19_c01380{bottom:553.730667pt;}
.y18_c01380{bottom:568.342667pt;}
.y17_c01380{bottom:582.954667pt;}
.y16_c01380{bottom:597.566667pt;}
.y15_c01380{bottom:612.178667pt;}
.y14_c01380{bottom:626.790667pt;}
.y13_c01380{bottom:641.402667pt;}
.y12_c01380{bottom:656.014667pt;}
.y11_c01380{bottom:670.626667pt;}
.y10_c01380{bottom:699.849333pt;}
.yf_c01380{bottom:714.461333pt;}
.ye_c01380{bottom:758.297333pt;}
.yd_c01380{bottom:772.909333pt;}
.yc_c01380{bottom:787.189333pt;}
.yb_c01380{bottom:822.290667pt;}
.ya_c01380{bottom:838.230667pt;}
.y9_c01380{bottom:854.170667pt;}
.y8_c01380{bottom:870.112000pt;}
.y7_c01380{bottom:886.052000pt;}
.y6_c01380{bottom:901.992000pt;}
.y5_c01380{bottom:925.058667pt;}
.y4_c01380{bottom:948.125333pt;}
.y3_c01380{bottom:971.192000pt;}
.y2_c01380{bottom:994.257333pt;}
.y1_c01380{bottom:1030.989333pt;}
.h5_c01380{height:31.280681pt;}
.h6_c01380{height:32.006363pt;}
.h3_c01380{height:36.010648pt;}
.h4_c01380{height:46.518078pt;}
.h2_c01380{height:51.855535pt;}
.h0_c01380{height:1122.520000pt;}
.h1_c01380{height:1122.666667pt;}
.w0_c01380{width:793.706667pt;}
.w1_c01380{width:794.000000pt;}
.x0_c01380{left:0.000000pt;}
.x1_c01380{left:113.385333pt;}
.x2_c01380{left:121.886667pt;}
.x3_c01380{left:127.796000pt;}
.x4_c01380{left:157.340000pt;}
.x5_c01380{left:386.888000pt;}
}





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

.ir_c01381:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01381;src:url('chunks/assets/font_17f885d3e39776cca3215e72.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01381;src:url('chunks/assets/font_78f20565f3842204146178b8.woff2')format("woff");}.ff2_c01381{font-family:ff2_c01381;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01381;src:url('chunks/assets/font_45238029c6e82b7496e6fee1.woff2')format("woff");}.ff3_c01381{font-family:ff3_c01381;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01381;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01381{font-family:ff4_c01381;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01381;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01381{font-family:ff5_c01381;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01381{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01381{vertical-align:0.000000px;}
.ls3_c01381{letter-spacing:0.000000px;}
.ls0_c01381{letter-spacing:0.087998px;}
.ls2_c01381{letter-spacing:0.098482px;}
.ls1_c01381{letter-spacing:0.104482px;}
.sc__c01381{text-shadow:none;}
.sc0_c01381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01381{-webkit-text-stroke:0px transparent;}
.sc0_c01381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01381{word-spacing:-33.713438px;}
.ws2_c01381{word-spacing:-26.575517px;}
.wse_c01381{word-spacing:-26.487518px;}
.ws9_c01381{word-spacing:-21.553319px;}
.ws8_c01381{word-spacing:-21.519216px;}
.ws5_c01381{word-spacing:-18.769538px;}
.ws7_c01381{word-spacing:-17.633802px;}
.ws4_c01381{word-spacing:-14.943900px;}
.wsa_c01381{word-spacing:-14.107042px;}
.wsb_c01381{word-spacing:-12.074671px;}
.ws1_c01381{word-spacing:-9.988424px;}
.ws3_c01381{word-spacing:-9.987499px;}
.ws6_c01381{word-spacing:-7.686144px;}
.ws12_c01381{word-spacing:0.000000px;}
.wsf_c01381{word-spacing:0.043999px;}
.ws15_c01381{word-spacing:0.056767px;}
.ws13_c01381{word-spacing:0.073250px;}
.ws14_c01381{word-spacing:0.083734px;}
.wsd_c01381{word-spacing:0.175997px;}
.ws16_c01381{word-spacing:0.202963px;}
.ws10_c01381{word-spacing:0.213446px;}
.ws11_c01381{word-spacing:0.219446px;}
.ws0_c01381{word-spacing:43.038600px;}
._0_c01381{margin-left:-4.734246px;}
._3_c01381{margin-left:-2.347817px;}
._2_c01381{margin-left:-1.075961px;}
._6_c01381{width:1.005737px;}
._5_c01381{width:15.972059px;}
._1_c01381{width:19.935816px;}
._4_c01381{width:40.109428px;}
._8_c01381{width:53.283031px;}
._7_c01381{width:79.858548px;}
._9_c01381{width:133.452408px;}
.fc6_c01381{color:rgb(0,0,207);}
.fc5_c01381{color:rgb(79,153,5);}
.fc3_c01381{color:rgb(33,74,135);}
.fc2_c01381{color:rgb(143,89,3);}
.fc4_c01381{color:rgb(207,92,0);}
.fc1_c01381{color:rgb(6,69,173);}
.fc0_c01381{color:rgb(0,0,0);}
.fs2_c01381{font-size:43.999200px;}
.fs1_c01381{font-size:59.775600px;}
.fs0_c01381{font-size:86.077200px;}
.y0_c01381{bottom:0.000000px;}
.y20_c01381{bottom:44.250000px;}
.y1f_c01381{bottom:86.982000px;}
.y1e_c01381{bottom:103.420500px;}
.y1d_c01381{bottom:119.859000px;}
.y1c_c01381{bottom:136.297500px;}
.y1b_c01381{bottom:152.736000px;}
.y1a_c01381{bottom:169.174500px;}
.y19_c01381{bottom:185.613000px;}
.y18_c01381{bottom:202.051500px;}
.y17_c01381{bottom:218.490000px;}
.y16_c01381{bottom:234.927000px;}
.y15_c01381{bottom:251.365500px;}
.y14_c01381{bottom:267.804000px;}
.y13_c01381{bottom:284.242500px;}
.y12_c01381{bottom:300.681000px;}
.y11_c01381{bottom:317.119500px;}
.y10_c01381{bottom:349.996500px;}
.yf_c01381{bottom:366.435000px;}
.ye_c01381{bottom:415.749000px;}
.yd_c01381{bottom:432.187500px;}
.yc_c01381{bottom:448.252500px;}
.yb_c01381{bottom:493.890000px;}
.ya_c01381{bottom:511.822500px;}
.y9_c01381{bottom:529.756500px;}
.y8_c01381{bottom:547.689000px;}
.y7_c01381{bottom:565.621500px;}
.y6_c01381{bottom:583.554000px;}
.y5_c01381{bottom:610.633500px;}
.y4_c01381{bottom:637.714500px;}
.y3_c01381{bottom:664.794000px;}
.y2_c01381{bottom:691.873500px;}
.y1_c01381{bottom:734.407500px;}
.h5_c01381{height:35.190766px;}
.h6_c01381{height:36.007158px;}
.h3_c01381{height:40.511979px;}
.h4_c01381{height:52.332837px;}
.h2_c01381{height:58.337477px;}
.h0_c01381{height:1262.835000px;}
.h1_c01381{height:1263.000000px;}
.w0_c01381{width:892.920000px;}
.w1_c01381{width:893.250000px;}
.x0_c01381{left:0.000000px;}
.x1_c01381{left:127.558500px;}
.x2_c01381{left:137.122500px;}
.x3_c01381{left:143.770500px;}
.x4_c01381{left:435.249000px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls3_c01381{letter-spacing:0.000000pt;}
.ls0_c01381{letter-spacing:0.078221pt;}
.ls2_c01381{letter-spacing:0.087539pt;}
.ls1_c01381{letter-spacing:0.092873pt;}
.wsc_c01381{word-spacing:-29.967501pt;}
.ws2_c01381{word-spacing:-23.622682pt;}
.wse_c01381{word-spacing:-23.544461pt;}
.ws9_c01381{word-spacing:-19.158506pt;}
.ws8_c01381{word-spacing:-19.128192pt;}
.ws5_c01381{word-spacing:-16.684034pt;}
.ws7_c01381{word-spacing:-15.674491pt;}
.ws4_c01381{word-spacing:-13.283467pt;}
.wsa_c01381{word-spacing:-12.539593pt;}
.wsb_c01381{word-spacing:-10.733041pt;}
.ws1_c01381{word-spacing:-8.878599pt;}
.ws3_c01381{word-spacing:-8.877777pt;}
.ws6_c01381{word-spacing:-6.832128pt;}
.ws12_c01381{word-spacing:0.000000pt;}
.wsf_c01381{word-spacing:0.039110pt;}
.ws15_c01381{word-spacing:0.050460pt;}
.ws13_c01381{word-spacing:0.065111pt;}
.ws14_c01381{word-spacing:0.074430pt;}
.wsd_c01381{word-spacing:0.156442pt;}
.ws16_c01381{word-spacing:0.180412pt;}
.ws10_c01381{word-spacing:0.189730pt;}
.ws11_c01381{word-spacing:0.195063pt;}
.ws0_c01381{word-spacing:38.256533pt;}
._0_c01381{margin-left:-4.208219pt;}
._3_c01381{margin-left:-2.086948pt;}
._2_c01381{margin-left:-0.956410pt;}
._6_c01381{width:0.893988pt;}
._5_c01381{width:14.197386pt;}
._1_c01381{width:17.720725pt;}
._4_c01381{width:35.652825pt;}
._8_c01381{width:47.362694pt;}
._7_c01381{width:70.985376pt;}
._9_c01381{width:118.624363pt;}
.fs2_c01381{font-size:39.110400pt;}
.fs1_c01381{font-size:53.133867pt;}
.fs0_c01381{font-size:76.513067pt;}
.y0_c01381{bottom:0.000000pt;}
.y20_c01381{bottom:39.333333pt;}
.y1f_c01381{bottom:77.317333pt;}
.y1e_c01381{bottom:91.929333pt;}
.y1d_c01381{bottom:106.541333pt;}
.y1c_c01381{bottom:121.153333pt;}
.y1b_c01381{bottom:135.765333pt;}
.y1a_c01381{bottom:150.377333pt;}
.y19_c01381{bottom:164.989333pt;}
.y18_c01381{bottom:179.601333pt;}
.y17_c01381{bottom:194.213333pt;}
.y16_c01381{bottom:208.824000pt;}
.y15_c01381{bottom:223.436000pt;}
.y14_c01381{bottom:238.048000pt;}
.y13_c01381{bottom:252.660000pt;}
.y12_c01381{bottom:267.272000pt;}
.y11_c01381{bottom:281.884000pt;}
.y10_c01381{bottom:311.108000pt;}
.yf_c01381{bottom:325.720000pt;}
.ye_c01381{bottom:369.554667pt;}
.yd_c01381{bottom:384.166667pt;}
.yc_c01381{bottom:398.446667pt;}
.yb_c01381{bottom:439.013333pt;}
.ya_c01381{bottom:454.953333pt;}
.y9_c01381{bottom:470.894667pt;}
.y8_c01381{bottom:486.834667pt;}
.y7_c01381{bottom:502.774667pt;}
.y6_c01381{bottom:518.714667pt;}
.y5_c01381{bottom:542.785333pt;}
.y4_c01381{bottom:566.857333pt;}
.y3_c01381{bottom:590.928000pt;}
.y2_c01381{bottom:614.998667pt;}
.y1_c01381{bottom:652.806667pt;}
.h5_c01381{height:31.280681pt;}
.h6_c01381{height:32.006363pt;}
.h3_c01381{height:36.010648pt;}
.h4_c01381{height:46.518078pt;}
.h2_c01381{height:51.855535pt;}
.h0_c01381{height:1122.520000pt;}
.h1_c01381{height:1122.666667pt;}
.w0_c01381{width:793.706667pt;}
.w1_c01381{width:794.000000pt;}
.x0_c01381{left:0.000000pt;}
.x1_c01381{left:113.385333pt;}
.x2_c01381{left:121.886667pt;}
.x3_c01381{left:127.796000pt;}
.x4_c01381{left:386.888000pt;}
}





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

.ir_c01382:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01382;src:url('chunks/assets/font_0a6f3a3eecd37ec4c1dd707f.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01382;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01382{font-family:ff2_c01382;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01382;src:url('chunks/assets/font_badcab67234bbfb0efffacb4.woff2')format("woff");}.ff3_c01382{font-family:ff3_c01382;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01382;src:url('chunks/assets/font_aefc1e73d6b26344b1ff1f59.woff2')format("woff");}.ff4_c01382{font-family:ff4_c01382;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01382;src:url('chunks/assets/font_1b7c870607955d1d967e053c.woff2')format("woff");}.ff5_c01382{font-family:ff5_c01382;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01382{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01382{vertical-align:0.000000px;}
.ls4_c01382{letter-spacing:0.000000px;}
.ls0_c01382{letter-spacing:0.087998px;}
.ls2_c01382{letter-spacing:0.098482px;}
.ls3_c01382{letter-spacing:0.104482px;}
.ls1_c01382{letter-spacing:26.690482px;}
.sc__c01382{text-shadow:none;}
.sc0_c01382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01382{-webkit-text-stroke:0px transparent;}
.sc0_c01382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01382{word-spacing:-26.575517px;}
.ws4_c01382{word-spacing:-26.487518px;}
.wse_c01382{word-spacing:-21.553319px;}
.wsd_c01382{word-spacing:-21.519216px;}
.wsa_c01382{word-spacing:-18.769538px;}
.wsc_c01382{word-spacing:-17.633802px;}
.ws9_c01382{word-spacing:-14.943900px;}
.wsf_c01382{word-spacing:-14.107042px;}
.ws10_c01382{word-spacing:-12.074671px;}
.ws7_c01382{word-spacing:-9.988424px;}
.ws8_c01382{word-spacing:-9.987499px;}
.wsb_c01382{word-spacing:-7.686144px;}
.ws3_c01382{word-spacing:0.000000px;}
.ws0_c01382{word-spacing:0.043999px;}
.ws5_c01382{word-spacing:0.213446px;}
.ws1_c01382{word-spacing:0.219446px;}
.ws6_c01382{word-spacing:43.038600px;}
._2_c01382{margin-left:-4.734246px;}
._5_c01382{margin-left:-2.347817px;}
._4_c01382{margin-left:-1.075961px;}
._1_c01382{width:1.036723px;}
._3_c01382{width:19.935816px;}
._6_c01382{width:40.109428px;}
._0_c01382{width:53.591026px;}
.fc5_c01382{color:rgb(79,153,5);}
.fc4_c01382{color:rgb(143,89,3);}
.fc3_c01382{color:rgb(0,0,0);}
.fc6_c01382{color:rgb(6,69,173);}
.fc2_c01382{color:rgb(207,92,0);}
.fc1_c01382{color:rgb(0,0,207);}
.fc0_c01382{color:rgb(33,74,135);}
.fs0_c01382{font-size:43.999200px;}
.fs2_c01382{font-size:59.775600px;}
.fs1_c01382{font-size:86.077200px;}
.y0_c01382{bottom:0.000000px;}
.y20_c01382{bottom:44.250000px;}
.y1f_c01382{bottom:82.051500px;}
.y1e_c01382{bottom:99.984000px;}
.y1d_c01382{bottom:117.916500px;}
.y1c_c01382{bottom:135.849000px;}
.y1b_c01382{bottom:162.501000px;}
.y1a_c01382{bottom:189.151500px;}
.y19_c01382{bottom:215.802000px;}
.y18_c01382{bottom:242.454000px;}
.y17_c01382{bottom:284.478000px;}
.y16_c01382{bottom:748.903500px;}
.y15_c01382{bottom:765.342000px;}
.y14_c01382{bottom:781.780500px;}
.y13_c01382{bottom:798.219000px;}
.y12_c01382{bottom:814.657500px;}
.y11_c01382{bottom:831.096000px;}
.y10_c01382{bottom:847.534500px;}
.yf_c01382{bottom:863.973000px;}
.ye_c01382{bottom:880.411500px;}
.yd_c01382{bottom:896.848500px;}
.yc_c01382{bottom:913.287000px;}
.yb_c01382{bottom:946.164000px;}
.ya_c01382{bottom:962.602500px;}
.y9_c01382{bottom:979.041000px;}
.y8_c01382{bottom:1011.918000px;}
.y7_c01382{bottom:1028.356500px;}
.y6_c01382{bottom:1044.795000px;}
.y5_c01382{bottom:1061.232000px;}
.y4_c01382{bottom:1077.670500px;}
.y3_c01382{bottom:1094.109000px;}
.y2_c01382{bottom:1110.547500px;}
.y1_c01382{bottom:1159.863000px;}
.h3_c01382{height:35.190766px;}
.h2_c01382{height:36.007158px;}
.h5_c01382{height:40.511979px;}
.h6_c01382{height:52.332837px;}
.h4_c01382{height:58.337477px;}
.h0_c01382{height:1262.835000px;}
.h1_c01382{height:1263.000000px;}
.w0_c01382{width:892.920000px;}
.w1_c01382{width:893.250000px;}
.x0_c01382{left:0.000000px;}
.x4_c01382{left:127.558500px;}
.x2_c01382{left:137.122500px;}
.x1_c01382{left:143.770500px;}
.x3_c01382{left:177.007500px;}
.x5_c01382{left:435.249000px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls4_c01382{letter-spacing:0.000000pt;}
.ls0_c01382{letter-spacing:0.078221pt;}
.ls2_c01382{letter-spacing:0.087539pt;}
.ls3_c01382{letter-spacing:0.092873pt;}
.ls1_c01382{letter-spacing:23.724873pt;}
.ws2_c01382{word-spacing:-23.622682pt;}
.ws4_c01382{word-spacing:-23.544461pt;}
.wse_c01382{word-spacing:-19.158506pt;}
.wsd_c01382{word-spacing:-19.128192pt;}
.wsa_c01382{word-spacing:-16.684034pt;}
.wsc_c01382{word-spacing:-15.674491pt;}
.ws9_c01382{word-spacing:-13.283467pt;}
.wsf_c01382{word-spacing:-12.539593pt;}
.ws10_c01382{word-spacing:-10.733041pt;}
.ws7_c01382{word-spacing:-8.878599pt;}
.ws8_c01382{word-spacing:-8.877777pt;}
.wsb_c01382{word-spacing:-6.832128pt;}
.ws3_c01382{word-spacing:0.000000pt;}
.ws0_c01382{word-spacing:0.039110pt;}
.ws5_c01382{word-spacing:0.189730pt;}
.ws1_c01382{word-spacing:0.195063pt;}
.ws6_c01382{word-spacing:38.256533pt;}
._2_c01382{margin-left:-4.208219pt;}
._5_c01382{margin-left:-2.086948pt;}
._4_c01382{margin-left:-0.956410pt;}
._1_c01382{width:0.921532pt;}
._3_c01382{width:17.720725pt;}
._6_c01382{width:35.652825pt;}
._0_c01382{width:47.636467pt;}
.fs0_c01382{font-size:39.110400pt;}
.fs2_c01382{font-size:53.133867pt;}
.fs1_c01382{font-size:76.513067pt;}
.y0_c01382{bottom:0.000000pt;}
.y20_c01382{bottom:39.333333pt;}
.y1f_c01382{bottom:72.934667pt;}
.y1e_c01382{bottom:88.874667pt;}
.y1d_c01382{bottom:104.814667pt;}
.y1c_c01382{bottom:120.754667pt;}
.y1b_c01382{bottom:144.445333pt;}
.y1a_c01382{bottom:168.134667pt;}
.y19_c01382{bottom:191.824000pt;}
.y18_c01382{bottom:215.514667pt;}
.y17_c01382{bottom:252.869333pt;}
.y16_c01382{bottom:665.692000pt;}
.y15_c01382{bottom:680.304000pt;}
.y14_c01382{bottom:694.916000pt;}
.y13_c01382{bottom:709.528000pt;}
.y12_c01382{bottom:724.140000pt;}
.y11_c01382{bottom:738.752000pt;}
.y10_c01382{bottom:753.364000pt;}
.yf_c01382{bottom:767.976000pt;}
.ye_c01382{bottom:782.588000pt;}
.yd_c01382{bottom:797.198667pt;}
.yc_c01382{bottom:811.810667pt;}
.yb_c01382{bottom:841.034667pt;}
.ya_c01382{bottom:855.646667pt;}
.y9_c01382{bottom:870.258667pt;}
.y8_c01382{bottom:899.482667pt;}
.y7_c01382{bottom:914.094667pt;}
.y6_c01382{bottom:928.706667pt;}
.y5_c01382{bottom:943.317333pt;}
.y4_c01382{bottom:957.929333pt;}
.y3_c01382{bottom:972.541333pt;}
.y2_c01382{bottom:987.153333pt;}
.y1_c01382{bottom:1030.989333pt;}
.h3_c01382{height:31.280681pt;}
.h2_c01382{height:32.006363pt;}
.h5_c01382{height:36.010648pt;}
.h6_c01382{height:46.518078pt;}
.h4_c01382{height:51.855535pt;}
.h0_c01382{height:1122.520000pt;}
.h1_c01382{height:1122.666667pt;}
.w0_c01382{width:793.706667pt;}
.w1_c01382{width:794.000000pt;}
.x0_c01382{left:0.000000pt;}
.x4_c01382{left:113.385333pt;}
.x2_c01382{left:121.886667pt;}
.x1_c01382{left:127.796000pt;}
.x3_c01382{left:157.340000pt;}
.x5_c01382{left:386.888000pt;}
}





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

.ir_c01383:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01383;src:url('chunks/assets/font_597e37352b19b7a01981c3ce.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01383;src:url('chunks/assets/font_d500caf74061a4a7b0b8a136.woff2')format("woff");}.ff2_c01383{font-family:ff2_c01383;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01383;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01383{font-family:ff3_c01383;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01383;src:url('chunks/assets/font_0b1cfcebf61d6e2598bf1ec9.woff2')format("woff");}.ff4_c01383{font-family:ff4_c01383;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01383{vertical-align:0.000000px;}
.ls4_c01383{letter-spacing:0.000000px;}
.ls1_c01383{letter-spacing:0.087998px;}
.ls2_c01383{letter-spacing:0.098482px;}
.ls0_c01383{letter-spacing:0.104482px;}
.ls3_c01383{letter-spacing:26.690482px;}
.sc__c01383{text-shadow:none;}
.sc0_c01383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01383{-webkit-text-stroke:0px transparent;}
.sc0_c01383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01383{word-spacing:-33.713438px;}
.ws4_c01383{word-spacing:-26.575517px;}
.ws3_c01383{word-spacing:-26.487518px;}
.ws0_c01383{word-spacing:-18.769538px;}
.ws8_c01383{word-spacing:0.000000px;}
.ws5_c01383{word-spacing:0.043999px;}
.wsb_c01383{word-spacing:0.056767px;}
.ws9_c01383{word-spacing:0.073250px;}
.wsa_c01383{word-spacing:0.083734px;}
.ws2_c01383{word-spacing:0.175997px;}
.wsc_c01383{word-spacing:0.202963px;}
.ws6_c01383{word-spacing:0.213446px;}
.ws7_c01383{word-spacing:0.219446px;}
._0_c01383{margin-left:-3.825638px;}
._1_c01383{width:1.005737px;}
._3_c01383{width:53.283031px;}
._2_c01383{width:79.858548px;}
._4_c01383{width:133.452408px;}
.fc5_c01383{color:rgb(0,0,207);}
.fc4_c01383{color:rgb(79,153,5);}
.fc3_c01383{color:rgb(207,92,0);}
.fc2_c01383{color:rgb(33,74,135);}
.fc1_c01383{color:rgb(143,89,3);}
.fc0_c01383{color:rgb(0,0,0);}
.fs1_c01383{font-size:43.999200px;}
.fs0_c01383{font-size:59.775600px;}
.y0_c01383{bottom:0.000000px;}
.y2d_c01383{bottom:44.250000px;}
.y2c_c01383{bottom:96.919500px;}
.y2b_c01383{bottom:113.358000px;}
.y2a_c01383{bottom:129.796500px;}
.y29_c01383{bottom:146.235000px;}
.y28_c01383{bottom:162.673500px;}
.y27_c01383{bottom:179.112000px;}
.y26_c01383{bottom:195.550500px;}
.y25_c01383{bottom:211.989000px;}
.y24_c01383{bottom:228.427500px;}
.y23_c01383{bottom:244.866000px;}
.y22_c01383{bottom:261.304500px;}
.y21_c01383{bottom:294.180000px;}
.y20_c01383{bottom:310.618500px;}
.y1f_c01383{bottom:327.057000px;}
.y1e_c01383{bottom:359.934000px;}
.y1d_c01383{bottom:376.372500px;}
.y1c_c01383{bottom:392.811000px;}
.y1b_c01383{bottom:409.249500px;}
.y1a_c01383{bottom:425.688000px;}
.y19_c01383{bottom:442.125000px;}
.y18_c01383{bottom:458.563500px;}
.y17_c01383{bottom:507.879000px;}
.y16_c01383{bottom:524.317500px;}
.y15_c01383{bottom:540.756000px;}
.y14_c01383{bottom:557.194500px;}
.y13_c01383{bottom:573.633000px;}
.y12_c01383{bottom:590.071500px;}
.y11_c01383{bottom:606.508500px;}
.y10_c01383{bottom:622.947000px;}
.yf_c01383{bottom:639.385500px;}
.ye_c01383{bottom:655.824000px;}
.yd_c01383{bottom:672.262500px;}
.yc_c01383{bottom:688.701000px;}
.yb_c01383{bottom:705.139500px;}
.ya_c01383{bottom:721.578000px;}
.y9_c01383{bottom:738.016500px;}
.y8_c01383{bottom:754.455000px;}
.y7_c01383{bottom:787.330500px;}
.y6_c01383{bottom:803.769000px;}
.y5_c01383{bottom:853.084500px;}
.y4_c01383{bottom:869.523000px;}
.y3_c01383{bottom:885.588000px;}
.y2_c01383{bottom:1141.930500px;}
.y1_c01383{bottom:1159.863000px;}
.h3_c01383{height:35.190766px;}
.h4_c01383{height:36.007158px;}
.h2_c01383{height:52.332837px;}
.h0_c01383{height:1262.835000px;}
.h1_c01383{height:1263.000000px;}
.w0_c01383{width:892.920000px;}
.w1_c01383{width:893.250000px;}
.x0_c01383{left:0.000000px;}
.x1_c01383{left:127.558500px;}
.x2_c01383{left:137.122500px;}
.x3_c01383{left:143.770500px;}
.x4_c01383{left:177.007500px;}
.x5_c01383{left:435.249000px;}
@media print{
.v0_c01383{vertical-align:0.000000pt;}
.ls4_c01383{letter-spacing:0.000000pt;}
.ls1_c01383{letter-spacing:0.078221pt;}
.ls2_c01383{letter-spacing:0.087539pt;}
.ls0_c01383{letter-spacing:0.092873pt;}
.ls3_c01383{letter-spacing:23.724873pt;}
.ws1_c01383{word-spacing:-29.967501pt;}
.ws4_c01383{word-spacing:-23.622682pt;}
.ws3_c01383{word-spacing:-23.544461pt;}
.ws0_c01383{word-spacing:-16.684034pt;}
.ws8_c01383{word-spacing:0.000000pt;}
.ws5_c01383{word-spacing:0.039110pt;}
.wsb_c01383{word-spacing:0.050460pt;}
.ws9_c01383{word-spacing:0.065111pt;}
.wsa_c01383{word-spacing:0.074430pt;}
.ws2_c01383{word-spacing:0.156442pt;}
.wsc_c01383{word-spacing:0.180412pt;}
.ws6_c01383{word-spacing:0.189730pt;}
.ws7_c01383{word-spacing:0.195063pt;}
._0_c01383{margin-left:-3.400567pt;}
._1_c01383{width:0.893988pt;}
._3_c01383{width:47.362694pt;}
._2_c01383{width:70.985376pt;}
._4_c01383{width:118.624363pt;}
.fs1_c01383{font-size:39.110400pt;}
.fs0_c01383{font-size:53.133867pt;}
.y0_c01383{bottom:0.000000pt;}
.y2d_c01383{bottom:39.333333pt;}
.y2c_c01383{bottom:86.150667pt;}
.y2b_c01383{bottom:100.762667pt;}
.y2a_c01383{bottom:115.374667pt;}
.y29_c01383{bottom:129.986667pt;}
.y28_c01383{bottom:144.598667pt;}
.y27_c01383{bottom:159.210667pt;}
.y26_c01383{bottom:173.822667pt;}
.y25_c01383{bottom:188.434667pt;}
.y24_c01383{bottom:203.046667pt;}
.y23_c01383{bottom:217.658667pt;}
.y22_c01383{bottom:232.270667pt;}
.y21_c01383{bottom:261.493333pt;}
.y20_c01383{bottom:276.105333pt;}
.y1f_c01383{bottom:290.717333pt;}
.y1e_c01383{bottom:319.941333pt;}
.y1d_c01383{bottom:334.553333pt;}
.y1c_c01383{bottom:349.165333pt;}
.y1b_c01383{bottom:363.777333pt;}
.y1a_c01383{bottom:378.389333pt;}
.y19_c01383{bottom:393.000000pt;}
.y18_c01383{bottom:407.612000pt;}
.y17_c01383{bottom:451.448000pt;}
.y16_c01383{bottom:466.060000pt;}
.y15_c01383{bottom:480.672000pt;}
.y14_c01383{bottom:495.284000pt;}
.y13_c01383{bottom:509.896000pt;}
.y12_c01383{bottom:524.508000pt;}
.y11_c01383{bottom:539.118667pt;}
.y10_c01383{bottom:553.730667pt;}
.yf_c01383{bottom:568.342667pt;}
.ye_c01383{bottom:582.954667pt;}
.yd_c01383{bottom:597.566667pt;}
.yc_c01383{bottom:612.178667pt;}
.yb_c01383{bottom:626.790667pt;}
.ya_c01383{bottom:641.402667pt;}
.y9_c01383{bottom:656.014667pt;}
.y8_c01383{bottom:670.626667pt;}
.y7_c01383{bottom:699.849333pt;}
.y6_c01383{bottom:714.461333pt;}
.y5_c01383{bottom:758.297333pt;}
.y4_c01383{bottom:772.909333pt;}
.y3_c01383{bottom:787.189333pt;}
.y2_c01383{bottom:1015.049333pt;}
.y1_c01383{bottom:1030.989333pt;}
.h3_c01383{height:31.280681pt;}
.h4_c01383{height:32.006363pt;}
.h2_c01383{height:46.518078pt;}
.h0_c01383{height:1122.520000pt;}
.h1_c01383{height:1122.666667pt;}
.w0_c01383{width:793.706667pt;}
.w1_c01383{width:794.000000pt;}
.x0_c01383{left:0.000000pt;}
.x1_c01383{left:113.385333pt;}
.x2_c01383{left:121.886667pt;}
.x3_c01383{left:127.796000pt;}
.x4_c01383{left:157.340000pt;}
.x5_c01383{left:386.888000pt;}
}





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

.ir_c01384:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01384;src:url('chunks/assets/font_a72de00cd7514a469af60866.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01384;src:url('chunks/assets/font_695b4237842aa24703d3d747.woff2')format("woff");}.ff2_c01384{font-family:ff2_c01384;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01384;src:url('chunks/assets/font_45238029c6e82b7496e6fee1.woff2')format("woff");}.ff3_c01384{font-family:ff3_c01384;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01384;src:url('chunks/assets/font_80ca47d16377a2174610ef67.woff2')format("woff");}.ff4_c01384{font-family:ff4_c01384;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01384;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01384{font-family:ff5_c01384;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01384{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01384{vertical-align:0.000000px;}
.ls3_c01384{letter-spacing:0.000000px;}
.ls0_c01384{letter-spacing:0.087998px;}
.ls2_c01384{letter-spacing:0.098482px;}
.ls1_c01384{letter-spacing:0.104482px;}
.sc__c01384{text-shadow:none;}
.sc0_c01384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01384{-webkit-text-stroke:0px transparent;}
.sc0_c01384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01384{word-spacing:-33.713438px;}
.ws2_c01384{word-spacing:-26.575517px;}
.wse_c01384{word-spacing:-26.487518px;}
.ws9_c01384{word-spacing:-21.553319px;}
.ws8_c01384{word-spacing:-21.519216px;}
.ws7_c01384{word-spacing:-19.247743px;}
.ws5_c01384{word-spacing:-18.769538px;}
.ws4_c01384{word-spacing:-14.943900px;}
.wsa_c01384{word-spacing:-14.107042px;}
.wsb_c01384{word-spacing:-12.074671px;}
.ws6_c01384{word-spacing:-10.230144px;}
.ws1_c01384{word-spacing:-9.988424px;}
.ws3_c01384{word-spacing:-9.987499px;}
.ws12_c01384{word-spacing:0.000000px;}
.wsf_c01384{word-spacing:0.043999px;}
.ws15_c01384{word-spacing:0.056767px;}
.ws13_c01384{word-spacing:0.073250px;}
.ws14_c01384{word-spacing:0.083734px;}
.wsd_c01384{word-spacing:0.175997px;}
.ws16_c01384{word-spacing:0.202963px;}
.ws10_c01384{word-spacing:0.213446px;}
.ws11_c01384{word-spacing:0.219446px;}
.ws0_c01384{word-spacing:43.038600px;}
._0_c01384{margin-left:-4.734246px;}
._3_c01384{margin-left:-2.347817px;}
._2_c01384{margin-left:-1.075961px;}
._6_c01384{width:1.005737px;}
._5_c01384{width:15.972059px;}
._1_c01384{width:19.935816px;}
._4_c01384{width:40.109428px;}
._8_c01384{width:53.283031px;}
._7_c01384{width:79.858548px;}
._9_c01384{width:133.452408px;}
.fc6_c01384{color:rgb(0,0,207);}
.fc5_c01384{color:rgb(79,153,5);}
.fc3_c01384{color:rgb(33,74,135);}
.fc2_c01384{color:rgb(143,89,3);}
.fc4_c01384{color:rgb(207,92,0);}
.fc1_c01384{color:rgb(6,69,173);}
.fc0_c01384{color:rgb(0,0,0);}
.fs2_c01384{font-size:43.999200px;}
.fs1_c01384{font-size:59.775600px;}
.fs0_c01384{font-size:86.077200px;}
.y0_c01384{bottom:0.000000px;}
.y20_c01384{bottom:44.250000px;}
.y1f_c01384{bottom:86.982000px;}
.y1e_c01384{bottom:103.420500px;}
.y1d_c01384{bottom:119.859000px;}
.y1c_c01384{bottom:136.297500px;}
.y1b_c01384{bottom:152.736000px;}
.y1a_c01384{bottom:169.174500px;}
.y19_c01384{bottom:185.613000px;}
.y18_c01384{bottom:202.051500px;}
.y17_c01384{bottom:218.490000px;}
.y16_c01384{bottom:234.927000px;}
.y15_c01384{bottom:251.365500px;}
.y14_c01384{bottom:267.804000px;}
.y13_c01384{bottom:284.242500px;}
.y12_c01384{bottom:300.681000px;}
.y11_c01384{bottom:317.119500px;}
.y10_c01384{bottom:349.996500px;}
.yf_c01384{bottom:366.435000px;}
.ye_c01384{bottom:415.749000px;}
.yd_c01384{bottom:432.187500px;}
.yc_c01384{bottom:448.252500px;}
.yb_c01384{bottom:493.890000px;}
.ya_c01384{bottom:511.822500px;}
.y9_c01384{bottom:529.756500px;}
.y8_c01384{bottom:547.689000px;}
.y7_c01384{bottom:565.621500px;}
.y6_c01384{bottom:583.554000px;}
.y5_c01384{bottom:610.633500px;}
.y4_c01384{bottom:637.714500px;}
.y3_c01384{bottom:664.794000px;}
.y2_c01384{bottom:691.873500px;}
.y1_c01384{bottom:734.407500px;}
.h5_c01384{height:35.190766px;}
.h6_c01384{height:36.007158px;}
.h3_c01384{height:40.511979px;}
.h4_c01384{height:52.332837px;}
.h2_c01384{height:58.337477px;}
.h0_c01384{height:1262.835000px;}
.h1_c01384{height:1263.000000px;}
.w0_c01384{width:892.920000px;}
.w1_c01384{width:893.250000px;}
.x0_c01384{left:0.000000px;}
.x1_c01384{left:127.558500px;}
.x2_c01384{left:137.122500px;}
.x3_c01384{left:143.770500px;}
.x4_c01384{left:435.249000px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.ls3_c01384{letter-spacing:0.000000pt;}
.ls0_c01384{letter-spacing:0.078221pt;}
.ls2_c01384{letter-spacing:0.087539pt;}
.ls1_c01384{letter-spacing:0.092873pt;}
.wsc_c01384{word-spacing:-29.967501pt;}
.ws2_c01384{word-spacing:-23.622682pt;}
.wse_c01384{word-spacing:-23.544461pt;}
.ws9_c01384{word-spacing:-19.158506pt;}
.ws8_c01384{word-spacing:-19.128192pt;}
.ws7_c01384{word-spacing:-17.109105pt;}
.ws5_c01384{word-spacing:-16.684034pt;}
.ws4_c01384{word-spacing:-13.283467pt;}
.wsa_c01384{word-spacing:-12.539593pt;}
.wsb_c01384{word-spacing:-10.733041pt;}
.ws6_c01384{word-spacing:-9.093461pt;}
.ws1_c01384{word-spacing:-8.878599pt;}
.ws3_c01384{word-spacing:-8.877777pt;}
.ws12_c01384{word-spacing:0.000000pt;}
.wsf_c01384{word-spacing:0.039110pt;}
.ws15_c01384{word-spacing:0.050460pt;}
.ws13_c01384{word-spacing:0.065111pt;}
.ws14_c01384{word-spacing:0.074430pt;}
.wsd_c01384{word-spacing:0.156442pt;}
.ws16_c01384{word-spacing:0.180412pt;}
.ws10_c01384{word-spacing:0.189730pt;}
.ws11_c01384{word-spacing:0.195063pt;}
.ws0_c01384{word-spacing:38.256533pt;}
._0_c01384{margin-left:-4.208219pt;}
._3_c01384{margin-left:-2.086948pt;}
._2_c01384{margin-left:-0.956410pt;}
._6_c01384{width:0.893988pt;}
._5_c01384{width:14.197386pt;}
._1_c01384{width:17.720725pt;}
._4_c01384{width:35.652825pt;}
._8_c01384{width:47.362694pt;}
._7_c01384{width:70.985376pt;}
._9_c01384{width:118.624363pt;}
.fs2_c01384{font-size:39.110400pt;}
.fs1_c01384{font-size:53.133867pt;}
.fs0_c01384{font-size:76.513067pt;}
.y0_c01384{bottom:0.000000pt;}
.y20_c01384{bottom:39.333333pt;}
.y1f_c01384{bottom:77.317333pt;}
.y1e_c01384{bottom:91.929333pt;}
.y1d_c01384{bottom:106.541333pt;}
.y1c_c01384{bottom:121.153333pt;}
.y1b_c01384{bottom:135.765333pt;}
.y1a_c01384{bottom:150.377333pt;}
.y19_c01384{bottom:164.989333pt;}
.y18_c01384{bottom:179.601333pt;}
.y17_c01384{bottom:194.213333pt;}
.y16_c01384{bottom:208.824000pt;}
.y15_c01384{bottom:223.436000pt;}
.y14_c01384{bottom:238.048000pt;}
.y13_c01384{bottom:252.660000pt;}
.y12_c01384{bottom:267.272000pt;}
.y11_c01384{bottom:281.884000pt;}
.y10_c01384{bottom:311.108000pt;}
.yf_c01384{bottom:325.720000pt;}
.ye_c01384{bottom:369.554667pt;}
.yd_c01384{bottom:384.166667pt;}
.yc_c01384{bottom:398.446667pt;}
.yb_c01384{bottom:439.013333pt;}
.ya_c01384{bottom:454.953333pt;}
.y9_c01384{bottom:470.894667pt;}
.y8_c01384{bottom:486.834667pt;}
.y7_c01384{bottom:502.774667pt;}
.y6_c01384{bottom:518.714667pt;}
.y5_c01384{bottom:542.785333pt;}
.y4_c01384{bottom:566.857333pt;}
.y3_c01384{bottom:590.928000pt;}
.y2_c01384{bottom:614.998667pt;}
.y1_c01384{bottom:652.806667pt;}
.h5_c01384{height:31.280681pt;}
.h6_c01384{height:32.006363pt;}
.h3_c01384{height:36.010648pt;}
.h4_c01384{height:46.518078pt;}
.h2_c01384{height:51.855535pt;}
.h0_c01384{height:1122.520000pt;}
.h1_c01384{height:1122.666667pt;}
.w0_c01384{width:793.706667pt;}
.w1_c01384{width:794.000000pt;}
.x0_c01384{left:0.000000pt;}
.x1_c01384{left:113.385333pt;}
.x2_c01384{left:121.886667pt;}
.x3_c01384{left:127.796000pt;}
.x4_c01384{left:386.888000pt;}
}





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

.ir_c01385:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01385;src:url('chunks/assets/font_86aeea736ac62ce0e5f116a5.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01385;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01385{font-family:ff2_c01385;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01385;src:url('chunks/assets/font_2af200440d18eb9edc391d6c.woff2')format("woff");}.ff3_c01385{font-family:ff3_c01385;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01385;src:url('chunks/assets/font_2a827707a506448fc0967896.woff2')format("woff");}.ff4_c01385{font-family:ff4_c01385;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01385;src:url('chunks/assets/font_386d8eb606c7bc5cdea02566.woff2')format("woff");}.ff5_c01385{font-family:ff5_c01385;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01385{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01385{vertical-align:0.000000px;}
.ls4_c01385{letter-spacing:0.000000px;}
.ls0_c01385{letter-spacing:0.087998px;}
.ls2_c01385{letter-spacing:0.098482px;}
.ls3_c01385{letter-spacing:0.104482px;}
.ls1_c01385{letter-spacing:26.690482px;}
.sc__c01385{text-shadow:none;}
.sc0_c01385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01385{-webkit-text-stroke:0px transparent;}
.sc0_c01385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01385{word-spacing:-33.713438px;}
.ws2_c01385{word-spacing:-26.575517px;}
.ws4_c01385{word-spacing:-26.487518px;}
.wsa_c01385{word-spacing:-18.769538px;}
.ws9_c01385{word-spacing:-15.003676px;}
.wsb_c01385{word-spacing:-14.943900px;}
.wsd_c01385{word-spacing:-14.405920px;}
.wsf_c01385{word-spacing:-12.791978px;}
.ws7_c01385{word-spacing:-9.988424px;}
.ws8_c01385{word-spacing:-9.987499px;}
.wsc_c01385{word-spacing:-1.218144px;}
.ws3_c01385{word-spacing:0.000000px;}
.ws0_c01385{word-spacing:0.043999px;}
.ws5_c01385{word-spacing:0.213446px;}
.ws1_c01385{word-spacing:0.219446px;}
.ws6_c01385{word-spacing:43.038600px;}
._1_c01385{margin-left:-7.833025px;}
._6_c01385{margin-left:-4.064741px;}
._3_c01385{margin-left:-1.075961px;}
._0_c01385{width:1.047206px;}
._2_c01385{width:19.971592px;}
._7_c01385{width:22.415850px;}
._4_c01385{width:33.059746px;}
._5_c01385{width:38.150681px;}
.fc5_c01385{color:rgb(79,153,5);}
.fc4_c01385{color:rgb(143,89,3);}
.fc3_c01385{color:rgb(0,0,0);}
.fc6_c01385{color:rgb(6,69,173);}
.fc2_c01385{color:rgb(207,92,0);}
.fc1_c01385{color:rgb(0,0,207);}
.fc0_c01385{color:rgb(33,74,135);}
.fs0_c01385{font-size:43.999200px;}
.fs2_c01385{font-size:59.775600px;}
.fs1_c01385{font-size:86.077200px;}
.y0_c01385{bottom:0.000000px;}
.y1f_c01385{bottom:44.250000px;}
.y1e_c01385{bottom:82.051500px;}
.y1d_c01385{bottom:99.984000px;}
.y1c_c01385{bottom:128.532000px;}
.y1b_c01385{bottom:157.081500px;}
.y1a_c01385{bottom:175.014000px;}
.y19_c01385{bottom:203.563500px;}
.y18_c01385{bottom:232.111500px;}
.y17_c01385{bottom:276.771000px;}
.y16_c01385{bottom:748.903500px;}
.y15_c01385{bottom:765.342000px;}
.y14_c01385{bottom:781.780500px;}
.y13_c01385{bottom:798.219000px;}
.y12_c01385{bottom:814.657500px;}
.y11_c01385{bottom:831.096000px;}
.y10_c01385{bottom:847.534500px;}
.yf_c01385{bottom:863.973000px;}
.ye_c01385{bottom:880.411500px;}
.yd_c01385{bottom:896.848500px;}
.yc_c01385{bottom:913.287000px;}
.yb_c01385{bottom:946.164000px;}
.ya_c01385{bottom:962.602500px;}
.y9_c01385{bottom:979.041000px;}
.y8_c01385{bottom:1011.918000px;}
.y7_c01385{bottom:1028.356500px;}
.y6_c01385{bottom:1044.795000px;}
.y5_c01385{bottom:1061.232000px;}
.y4_c01385{bottom:1077.670500px;}
.y3_c01385{bottom:1094.109000px;}
.y2_c01385{bottom:1110.547500px;}
.y1_c01385{bottom:1159.863000px;}
.h3_c01385{height:35.190766px;}
.h2_c01385{height:36.007158px;}
.h5_c01385{height:40.511979px;}
.h6_c01385{height:52.332837px;}
.h4_c01385{height:58.337477px;}
.h0_c01385{height:1262.835000px;}
.h1_c01385{height:1263.000000px;}
.w0_c01385{width:892.920000px;}
.w1_c01385{width:893.250000px;}
.x0_c01385{left:0.000000px;}
.x4_c01385{left:127.558500px;}
.x2_c01385{left:137.122500px;}
.x1_c01385{left:143.770500px;}
.x3_c01385{left:177.007500px;}
.x5_c01385{left:435.249000px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls4_c01385{letter-spacing:0.000000pt;}
.ls0_c01385{letter-spacing:0.078221pt;}
.ls2_c01385{letter-spacing:0.087539pt;}
.ls3_c01385{letter-spacing:0.092873pt;}
.ls1_c01385{letter-spacing:23.724873pt;}
.wse_c01385{word-spacing:-29.967501pt;}
.ws2_c01385{word-spacing:-23.622682pt;}
.ws4_c01385{word-spacing:-23.544461pt;}
.wsa_c01385{word-spacing:-16.684034pt;}
.ws9_c01385{word-spacing:-13.336601pt;}
.wsb_c01385{word-spacing:-13.283467pt;}
.wsd_c01385{word-spacing:-12.805262pt;}
.wsf_c01385{word-spacing:-11.370647pt;}
.ws7_c01385{word-spacing:-8.878599pt;}
.ws8_c01385{word-spacing:-8.877777pt;}
.wsc_c01385{word-spacing:-1.082795pt;}
.ws3_c01385{word-spacing:0.000000pt;}
.ws0_c01385{word-spacing:0.039110pt;}
.ws5_c01385{word-spacing:0.189730pt;}
.ws1_c01385{word-spacing:0.195063pt;}
.ws6_c01385{word-spacing:38.256533pt;}
._1_c01385{margin-left:-6.962689pt;}
._6_c01385{margin-left:-3.613103pt;}
._3_c01385{margin-left:-0.956410pt;}
._0_c01385{width:0.930850pt;}
._2_c01385{width:17.752526pt;}
._7_c01385{width:19.925200pt;}
._4_c01385{width:29.386441pt;}
._5_c01385{width:33.911716pt;}
.fs0_c01385{font-size:39.110400pt;}
.fs2_c01385{font-size:53.133867pt;}
.fs1_c01385{font-size:76.513067pt;}
.y0_c01385{bottom:0.000000pt;}
.y1f_c01385{bottom:39.333333pt;}
.y1e_c01385{bottom:72.934667pt;}
.y1d_c01385{bottom:88.874667pt;}
.y1c_c01385{bottom:114.250667pt;}
.y1b_c01385{bottom:139.628000pt;}
.y1a_c01385{bottom:155.568000pt;}
.y19_c01385{bottom:180.945333pt;}
.y18_c01385{bottom:206.321333pt;}
.y17_c01385{bottom:246.018667pt;}
.y16_c01385{bottom:665.692000pt;}
.y15_c01385{bottom:680.304000pt;}
.y14_c01385{bottom:694.916000pt;}
.y13_c01385{bottom:709.528000pt;}
.y12_c01385{bottom:724.140000pt;}
.y11_c01385{bottom:738.752000pt;}
.y10_c01385{bottom:753.364000pt;}
.yf_c01385{bottom:767.976000pt;}
.ye_c01385{bottom:782.588000pt;}
.yd_c01385{bottom:797.198667pt;}
.yc_c01385{bottom:811.810667pt;}
.yb_c01385{bottom:841.034667pt;}
.ya_c01385{bottom:855.646667pt;}
.y9_c01385{bottom:870.258667pt;}
.y8_c01385{bottom:899.482667pt;}
.y7_c01385{bottom:914.094667pt;}
.y6_c01385{bottom:928.706667pt;}
.y5_c01385{bottom:943.317333pt;}
.y4_c01385{bottom:957.929333pt;}
.y3_c01385{bottom:972.541333pt;}
.y2_c01385{bottom:987.153333pt;}
.y1_c01385{bottom:1030.989333pt;}
.h3_c01385{height:31.280681pt;}
.h2_c01385{height:32.006363pt;}
.h5_c01385{height:36.010648pt;}
.h6_c01385{height:46.518078pt;}
.h4_c01385{height:51.855535pt;}
.h0_c01385{height:1122.520000pt;}
.h1_c01385{height:1122.666667pt;}
.w0_c01385{width:793.706667pt;}
.w1_c01385{width:794.000000pt;}
.x0_c01385{left:0.000000pt;}
.x4_c01385{left:113.385333pt;}
.x2_c01385{left:121.886667pt;}
.x1_c01385{left:127.796000pt;}
.x3_c01385{left:157.340000pt;}
.x5_c01385{left:386.888000pt;}
}





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

.ir_c01386:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01386;src:url('chunks/assets/font_a52c9e7b593b831ec9ae39cf.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01386;src:url('chunks/assets/font_17a0d810ad15a10ab28df984.woff2')format("woff");}.ff2_c01386{font-family:ff2_c01386;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01386;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff3_c01386{font-family:ff3_c01386;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01386;src:url('chunks/assets/font_9b8473fd49f97cbd10f48ada.woff2')format("woff");}.ff4_c01386{font-family:ff4_c01386;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01386;src:url('chunks/assets/font_f7202f513f81f780c9c88bb5.woff2')format("woff");}.ff5_c01386{font-family:ff5_c01386;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01386{vertical-align:0.000000px;}
.ls3_c01386{letter-spacing:0.000000px;}
.ls1_c01386{letter-spacing:0.087998px;}
.ls2_c01386{letter-spacing:0.098482px;}
.ls0_c01386{letter-spacing:0.104482px;}
.sc__c01386{text-shadow:none;}
.sc0_c01386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01386{-webkit-text-stroke:0px transparent;}
.sc0_c01386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01386{word-spacing:-26.575517px;}
.ws3_c01386{word-spacing:-26.487518px;}
.ws1_c01386{word-spacing:-18.769538px;}
.ws0_c01386{word-spacing:-17.753353px;}
.wsb_c01386{word-spacing:-9.988424px;}
.ws7_c01386{word-spacing:0.000000px;}
.ws5_c01386{word-spacing:0.043999px;}
.ws8_c01386{word-spacing:0.056767px;}
.ws2_c01386{word-spacing:0.175997px;}
.ws9_c01386{word-spacing:0.213446px;}
.ws6_c01386{word-spacing:0.219446px;}
.wsa_c01386{word-spacing:43.038600px;}
._4_c01386{margin-left:-7.833025px;}
._1_c01386{margin-left:-3.825638px;}
._3_c01386{width:1.005737px;}
._2_c01386{width:20.443255px;}
._0_c01386{width:23.252708px;}
.fc5_c01386{color:rgb(0,0,207);}
.fc4_c01386{color:rgb(79,153,5);}
.fc3_c01386{color:rgb(207,92,0);}
.fc2_c01386{color:rgb(33,74,135);}
.fc1_c01386{color:rgb(143,89,3);}
.fc0_c01386{color:rgb(0,0,0);}
.fs1_c01386{font-size:43.999200px;}
.fs0_c01386{font-size:59.775600px;}
.fs2_c01386{font-size:86.077200px;}
.y0_c01386{bottom:0.000000px;}
.y21_c01386{bottom:44.250000px;}
.y20_c01386{bottom:82.051500px;}
.y1f_c01386{bottom:126.352500px;}
.y1e_c01386{bottom:597.439500px;}
.y1d_c01386{bottom:613.878000px;}
.y1c_c01386{bottom:630.316500px;}
.y1b_c01386{bottom:646.755000px;}
.y1a_c01386{bottom:663.193500px;}
.y19_c01386{bottom:679.632000px;}
.y18_c01386{bottom:696.070500px;}
.y17_c01386{bottom:712.507500px;}
.y16_c01386{bottom:728.946000px;}
.y15_c01386{bottom:745.384500px;}
.y14_c01386{bottom:761.823000px;}
.y13_c01386{bottom:794.700000px;}
.y12_c01386{bottom:811.138500px;}
.y11_c01386{bottom:827.577000px;}
.y10_c01386{bottom:860.454000px;}
.yf_c01386{bottom:876.891000px;}
.ye_c01386{bottom:893.329500px;}
.yd_c01386{bottom:909.768000px;}
.yc_c01386{bottom:926.206500px;}
.yb_c01386{bottom:942.645000px;}
.ya_c01386{bottom:959.083500px;}
.y9_c01386{bottom:975.522000px;}
.y8_c01386{bottom:991.960500px;}
.y7_c01386{bottom:1008.399000px;}
.y6_c01386{bottom:1024.837500px;}
.y5_c01386{bottom:1041.276000px;}
.y4_c01386{bottom:1074.151500px;}
.y3_c01386{bottom:1090.216500px;}
.y2_c01386{bottom:1141.930500px;}
.y1_c01386{bottom:1159.863000px;}
.h3_c01386{height:35.190766px;}
.h4_c01386{height:36.007158px;}
.h6_c01386{height:40.511979px;}
.h2_c01386{height:52.332837px;}
.h5_c01386{height:58.337477px;}
.h0_c01386{height:1262.835000px;}
.h1_c01386{height:1263.000000px;}
.w0_c01386{width:892.920000px;}
.w1_c01386{width:893.250000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:127.558500px;}
.x2_c01386{left:137.122500px;}
.x4_c01386{left:177.007500px;}
.x3_c01386{left:196.948500px;}
.x5_c01386{left:435.249000px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls3_c01386{letter-spacing:0.000000pt;}
.ls1_c01386{letter-spacing:0.078221pt;}
.ls2_c01386{letter-spacing:0.087539pt;}
.ls0_c01386{letter-spacing:0.092873pt;}
.ws4_c01386{word-spacing:-23.622682pt;}
.ws3_c01386{word-spacing:-23.544461pt;}
.ws1_c01386{word-spacing:-16.684034pt;}
.ws0_c01386{word-spacing:-15.780758pt;}
.wsb_c01386{word-spacing:-8.878599pt;}
.ws7_c01386{word-spacing:0.000000pt;}
.ws5_c01386{word-spacing:0.039110pt;}
.ws8_c01386{word-spacing:0.050460pt;}
.ws2_c01386{word-spacing:0.156442pt;}
.ws9_c01386{word-spacing:0.189730pt;}
.ws6_c01386{word-spacing:0.195063pt;}
.wsa_c01386{word-spacing:38.256533pt;}
._4_c01386{margin-left:-6.962689pt;}
._1_c01386{margin-left:-3.400567pt;}
._3_c01386{width:0.893988pt;}
._2_c01386{width:18.171782pt;}
._0_c01386{width:20.669074pt;}
.fs1_c01386{font-size:39.110400pt;}
.fs0_c01386{font-size:53.133867pt;}
.fs2_c01386{font-size:76.513067pt;}
.y0_c01386{bottom:0.000000pt;}
.y21_c01386{bottom:39.333333pt;}
.y20_c01386{bottom:72.934667pt;}
.y1f_c01386{bottom:112.313333pt;}
.y1e_c01386{bottom:531.057333pt;}
.y1d_c01386{bottom:545.669333pt;}
.y1c_c01386{bottom:560.281333pt;}
.y1b_c01386{bottom:574.893333pt;}
.y1a_c01386{bottom:589.505333pt;}
.y19_c01386{bottom:604.117333pt;}
.y18_c01386{bottom:618.729333pt;}
.y17_c01386{bottom:633.340000pt;}
.y16_c01386{bottom:647.952000pt;}
.y15_c01386{bottom:662.564000pt;}
.y14_c01386{bottom:677.176000pt;}
.y13_c01386{bottom:706.400000pt;}
.y12_c01386{bottom:721.012000pt;}
.y11_c01386{bottom:735.624000pt;}
.y10_c01386{bottom:764.848000pt;}
.yf_c01386{bottom:779.458667pt;}
.ye_c01386{bottom:794.070667pt;}
.yd_c01386{bottom:808.682667pt;}
.yc_c01386{bottom:823.294667pt;}
.yb_c01386{bottom:837.906667pt;}
.ya_c01386{bottom:852.518667pt;}
.y9_c01386{bottom:867.130667pt;}
.y8_c01386{bottom:881.742667pt;}
.y7_c01386{bottom:896.354667pt;}
.y6_c01386{bottom:910.966667pt;}
.y5_c01386{bottom:925.578667pt;}
.y4_c01386{bottom:954.801333pt;}
.y3_c01386{bottom:969.081333pt;}
.y2_c01386{bottom:1015.049333pt;}
.y1_c01386{bottom:1030.989333pt;}
.h3_c01386{height:31.280681pt;}
.h4_c01386{height:32.006363pt;}
.h6_c01386{height:36.010648pt;}
.h2_c01386{height:46.518078pt;}
.h5_c01386{height:51.855535pt;}
.h0_c01386{height:1122.520000pt;}
.h1_c01386{height:1122.666667pt;}
.w0_c01386{width:793.706667pt;}
.w1_c01386{width:794.000000pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:113.385333pt;}
.x2_c01386{left:121.886667pt;}
.x4_c01386{left:157.340000pt;}
.x3_c01386{left:175.065333pt;}
.x5_c01386{left:386.888000pt;}
}





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

.ir_c01387:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01387;src:url('chunks/assets/font_d4bb3964944ceff725c55b66.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01387;src:url('chunks/assets/font_31c949ad4f3a48a3fe843441.woff2')format("woff");}.ff2_c01387{font-family:ff2_c01387;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01387;src:url('chunks/assets/font_d2061d4770a5fa34fd39cda9.woff2')format("woff");}.ff3_c01387{font-family:ff3_c01387;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01387;src:url('chunks/assets/font_0fbad698522c555e81b5c74a.woff2')format("woff");}.ff4_c01387{font-family:ff4_c01387;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01387;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff5_c01387{font-family:ff5_c01387;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01387{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01387{vertical-align:0.000000px;}
.ls3_c01387{letter-spacing:0.000000px;}
.ls0_c01387{letter-spacing:0.087998px;}
.ls2_c01387{letter-spacing:0.098482px;}
.ls1_c01387{letter-spacing:0.104482px;}
.sc__c01387{text-shadow:none;}
.sc0_c01387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01387{-webkit-text-stroke:0px transparent;}
.sc0_c01387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01387{word-spacing:-33.713438px;}
.ws1_c01387{word-spacing:-26.575517px;}
.wsd_c01387{word-spacing:-26.487518px;}
.ws4_c01387{word-spacing:-18.769538px;}
.ws3_c01387{word-spacing:-18.470660px;}
.ws8_c01387{word-spacing:-18.351109px;}
.ws2_c01387{word-spacing:-14.704798px;}
.wsb_c01387{word-spacing:-12.313774px;}
.wsa_c01387{word-spacing:-11.113366px;}
.ws6_c01387{word-spacing:-10.520506px;}
.ws0_c01387{word-spacing:-9.987499px;}
.ws7_c01387{word-spacing:-9.096144px;}
.ws5_c01387{word-spacing:-6.754643px;}
.ws10_c01387{word-spacing:0.000000px;}
.wse_c01387{word-spacing:0.043999px;}
.ws11_c01387{word-spacing:0.056767px;}
.wsc_c01387{word-spacing:0.175997px;}
.ws12_c01387{word-spacing:0.213446px;}
.wsf_c01387{word-spacing:0.219446px;}
._2_c01387{margin-left:-3.227882px;}
._5_c01387{margin-left:-1.075961px;}
._6_c01387{width:1.040352px;}
._1_c01387{width:2.092146px;}
._0_c01387{width:20.512714px;}
._4_c01387{width:22.176748px;}
._8_c01387{width:23.192933px;}
._3_c01387{width:36.431243px;}
._7_c01387{width:39.392120px;}
.fc6_c01387{color:rgb(0,0,207);}
.fc5_c01387{color:rgb(79,153,5);}
.fc3_c01387{color:rgb(33,74,135);}
.fc2_c01387{color:rgb(143,89,3);}
.fc4_c01387{color:rgb(207,92,0);}
.fc1_c01387{color:rgb(6,69,173);}
.fc0_c01387{color:rgb(0,0,0);}
.fs1_c01387{font-size:43.999200px;}
.fs0_c01387{font-size:59.775600px;}
.y0_c01387{bottom:0.000000px;}
.y36_c01387{bottom:44.250000px;}
.y35_c01387{bottom:86.982000px;}
.y34_c01387{bottom:103.420500px;}
.y33_c01387{bottom:119.859000px;}
.y32_c01387{bottom:136.297500px;}
.y31_c01387{bottom:152.736000px;}
.y30_c01387{bottom:169.174500px;}
.y2f_c01387{bottom:185.613000px;}
.y2e_c01387{bottom:202.051500px;}
.y2d_c01387{bottom:234.927000px;}
.y2c_c01387{bottom:251.365500px;}
.y2b_c01387{bottom:267.804000px;}
.y2a_c01387{bottom:300.681000px;}
.y29_c01387{bottom:317.119500px;}
.y28_c01387{bottom:349.996500px;}
.y27_c01387{bottom:366.435000px;}
.y26_c01387{bottom:382.873500px;}
.y25_c01387{bottom:415.749000px;}
.y24_c01387{bottom:432.187500px;}
.y23_c01387{bottom:448.626000px;}
.y22_c01387{bottom:481.503000px;}
.y21_c01387{bottom:497.941500px;}
.y20_c01387{bottom:514.380000px;}
.y1f_c01387{bottom:530.818500px;}
.y1e_c01387{bottom:547.257000px;}
.y1d_c01387{bottom:563.695500px;}
.y1c_c01387{bottom:580.132500px;}
.y1b_c01387{bottom:596.571000px;}
.y1a_c01387{bottom:613.009500px;}
.y19_c01387{bottom:629.448000px;}
.y18_c01387{bottom:645.886500px;}
.y17_c01387{bottom:695.202000px;}
.y16_c01387{bottom:711.640500px;}
.y15_c01387{bottom:728.079000px;}
.y14_c01387{bottom:744.516000px;}
.y13_c01387{bottom:760.954500px;}
.y12_c01387{bottom:777.393000px;}
.y11_c01387{bottom:793.831500px;}
.y10_c01387{bottom:810.270000px;}
.yf_c01387{bottom:826.708500px;}
.ye_c01387{bottom:843.147000px;}
.yd_c01387{bottom:859.585500px;}
.yc_c01387{bottom:892.462500px;}
.yb_c01387{bottom:925.338000px;}
.ya_c01387{bottom:941.403000px;}
.y9_c01387{bottom:989.538000px;}
.y8_c01387{bottom:1007.470500px;}
.y7_c01387{bottom:1025.403000px;}
.y6_c01387{bottom:1043.335500px;}
.y5_c01387{bottom:1070.223000px;}
.y4_c01387{bottom:1088.155500px;}
.y3_c01387{bottom:1115.043000px;}
.y2_c01387{bottom:1132.975500px;}
.y1_c01387{bottom:1159.863000px;}
.h4_c01387{height:35.190766px;}
.h5_c01387{height:36.007158px;}
.h2_c01387{height:40.511979px;}
.h3_c01387{height:52.332837px;}
.h0_c01387{height:1262.835000px;}
.h1_c01387{height:1263.000000px;}
.w0_c01387{width:892.920000px;}
.w1_c01387{width:893.250000px;}
.x0_c01387{left:0.000000px;}
.x1_c01387{left:127.558500px;}
.x2_c01387{left:137.122500px;}
.x4_c01387{left:177.007500px;}
.x3_c01387{left:196.948500px;}
.x5_c01387{left:435.249000px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls3_c01387{letter-spacing:0.000000pt;}
.ls0_c01387{letter-spacing:0.078221pt;}
.ls2_c01387{letter-spacing:0.087539pt;}
.ls1_c01387{letter-spacing:0.092873pt;}
.ws9_c01387{word-spacing:-29.967501pt;}
.ws1_c01387{word-spacing:-23.622682pt;}
.wsd_c01387{word-spacing:-23.544461pt;}
.ws4_c01387{word-spacing:-16.684034pt;}
.ws3_c01387{word-spacing:-16.418365pt;}
.ws8_c01387{word-spacing:-16.312097pt;}
.ws2_c01387{word-spacing:-13.070931pt;}
.wsb_c01387{word-spacing:-10.945577pt;}
.wsa_c01387{word-spacing:-9.878547pt;}
.ws6_c01387{word-spacing:-9.351561pt;}
.ws0_c01387{word-spacing:-8.877777pt;}
.ws7_c01387{word-spacing:-8.085461pt;}
.ws5_c01387{word-spacing:-6.004127pt;}
.ws10_c01387{word-spacing:0.000000pt;}
.wse_c01387{word-spacing:0.039110pt;}
.ws11_c01387{word-spacing:0.050460pt;}
.wsc_c01387{word-spacing:0.156442pt;}
.ws12_c01387{word-spacing:0.189730pt;}
.wsf_c01387{word-spacing:0.195063pt;}
._2_c01387{margin-left:-2.869229pt;}
._5_c01387{margin-left:-0.956410pt;}
._6_c01387{width:0.924757pt;}
._1_c01387{width:1.859685pt;}
._0_c01387{width:18.233523pt;}
._4_c01387{width:19.712665pt;}
._8_c01387{width:20.615940pt;}
._3_c01387{width:32.383327pt;}
._7_c01387{width:35.015218pt;}
.fs1_c01387{font-size:39.110400pt;}
.fs0_c01387{font-size:53.133867pt;}
.y0_c01387{bottom:0.000000pt;}
.y36_c01387{bottom:39.333333pt;}
.y35_c01387{bottom:77.317333pt;}
.y34_c01387{bottom:91.929333pt;}
.y33_c01387{bottom:106.541333pt;}
.y32_c01387{bottom:121.153333pt;}
.y31_c01387{bottom:135.765333pt;}
.y30_c01387{bottom:150.377333pt;}
.y2f_c01387{bottom:164.989333pt;}
.y2e_c01387{bottom:179.601333pt;}
.y2d_c01387{bottom:208.824000pt;}
.y2c_c01387{bottom:223.436000pt;}
.y2b_c01387{bottom:238.048000pt;}
.y2a_c01387{bottom:267.272000pt;}
.y29_c01387{bottom:281.884000pt;}
.y28_c01387{bottom:311.108000pt;}
.y27_c01387{bottom:325.720000pt;}
.y26_c01387{bottom:340.332000pt;}
.y25_c01387{bottom:369.554667pt;}
.y24_c01387{bottom:384.166667pt;}
.y23_c01387{bottom:398.778667pt;}
.y22_c01387{bottom:428.002667pt;}
.y21_c01387{bottom:442.614667pt;}
.y20_c01387{bottom:457.226667pt;}
.y1f_c01387{bottom:471.838667pt;}
.y1e_c01387{bottom:486.450667pt;}
.y1d_c01387{bottom:501.062667pt;}
.y1c_c01387{bottom:515.673333pt;}
.y1b_c01387{bottom:530.285333pt;}
.y1a_c01387{bottom:544.897333pt;}
.y19_c01387{bottom:559.509333pt;}
.y18_c01387{bottom:574.121333pt;}
.y17_c01387{bottom:617.957333pt;}
.y16_c01387{bottom:632.569333pt;}
.y15_c01387{bottom:647.181333pt;}
.y14_c01387{bottom:661.792000pt;}
.y13_c01387{bottom:676.404000pt;}
.y12_c01387{bottom:691.016000pt;}
.y11_c01387{bottom:705.628000pt;}
.y10_c01387{bottom:720.240000pt;}
.yf_c01387{bottom:734.852000pt;}
.ye_c01387{bottom:749.464000pt;}
.yd_c01387{bottom:764.076000pt;}
.yc_c01387{bottom:793.300000pt;}
.yb_c01387{bottom:822.522667pt;}
.ya_c01387{bottom:836.802667pt;}
.y9_c01387{bottom:879.589333pt;}
.y8_c01387{bottom:895.529333pt;}
.y7_c01387{bottom:911.469333pt;}
.y6_c01387{bottom:927.409333pt;}
.y5_c01387{bottom:951.309333pt;}
.y4_c01387{bottom:967.249333pt;}
.y3_c01387{bottom:991.149333pt;}
.y2_c01387{bottom:1007.089333pt;}
.y1_c01387{bottom:1030.989333pt;}
.h4_c01387{height:31.280681pt;}
.h5_c01387{height:32.006363pt;}
.h2_c01387{height:36.010648pt;}
.h3_c01387{height:46.518078pt;}
.h0_c01387{height:1122.520000pt;}
.h1_c01387{height:1122.666667pt;}
.w0_c01387{width:793.706667pt;}
.w1_c01387{width:794.000000pt;}
.x0_c01387{left:0.000000pt;}
.x1_c01387{left:113.385333pt;}
.x2_c01387{left:121.886667pt;}
.x4_c01387{left:157.340000pt;}
.x3_c01387{left:175.065333pt;}
.x5_c01387{left:386.888000pt;}
}





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

.ir_c01388:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01388;src:url('chunks/assets/font_6394a7c253e0c4bc487d7e0d.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01388;src:url('chunks/assets/font_d0de8b2a96e725fc188a9b11.woff2')format("woff");}.ff2_c01388{font-family:ff2_c01388;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01388;src:url('chunks/assets/font_557338edb3a817b9860cd526.woff2')format("woff");}.ff3_c01388{font-family:ff3_c01388;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01388;src:url('chunks/assets/font_65bb50cd97d4bf1f1df65617.woff2')format("woff");}.ff4_c01388{font-family:ff4_c01388;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01388;src:url('chunks/assets/font_6fdec6f8bbbcc7c4e8621187.woff2')format("woff");}.ff5_c01388{font-family:ff5_c01388;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01388{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01388{vertical-align:0.000000px;}
.ls3_c01388{letter-spacing:0.000000px;}
.ls0_c01388{letter-spacing:0.087998px;}
.ls2_c01388{letter-spacing:0.098482px;}
.ls1_c01388{letter-spacing:0.104482px;}
.sc__c01388{text-shadow:none;}
.sc0_c01388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01388{-webkit-text-stroke:0px transparent;}
.sc0_c01388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01388{word-spacing:-33.713438px;}
.ws0_c01388{word-spacing:-26.575517px;}
.ws10_c01388{word-spacing:-26.487518px;}
.ws8_c01388{word-spacing:-19.068416px;}
.ws6_c01388{word-spacing:-18.769538px;}
.ws5_c01388{word-spacing:-18.590212px;}
.wsd_c01388{word-spacing:-17.753353px;}
.wse_c01388{word-spacing:-15.481880px;}
.ws7_c01388{word-spacing:-15.242778px;}
.ws4_c01388{word-spacing:-14.764573px;}
.wsa_c01388{word-spacing:-14.405920px;}
.wsc_c01388{word-spacing:-12.791978px;}
.ws2_c01388{word-spacing:-9.988424px;}
.ws3_c01388{word-spacing:-9.987499px;}
.ws9_c01388{word-spacing:-1.218144px;}
.ws13_c01388{word-spacing:0.000000px;}
.ws11_c01388{word-spacing:0.043999px;}
.ws14_c01388{word-spacing:0.056767px;}
.wsf_c01388{word-spacing:0.175997px;}
.ws12_c01388{word-spacing:0.219446px;}
.ws1_c01388{word-spacing:43.038600px;}
._3_c01388{margin-left:-4.423394px;}
._1_c01388{margin-left:-3.184856px;}
._0_c01388{margin-left:-1.549390px;}
._8_c01388{width:1.005737px;}
._2_c01388{width:20.296489px;}
._6_c01388{width:22.774504px;}
._7_c01388{width:30.083876px;}
._4_c01388{width:32.457214px;}
._5_c01388{width:38.150681px;}
.fc6_c01388{color:rgb(0,0,207);}
.fc5_c01388{color:rgb(79,153,5);}
.fc4_c01388{color:rgb(207,92,0);}
.fc3_c01388{color:rgb(6,69,173);}
.fc2_c01388{color:rgb(143,89,3);}
.fc1_c01388{color:rgb(0,0,0);}
.fc0_c01388{color:rgb(33,74,135);}
.fs0_c01388{font-size:43.999200px;}
.fs2_c01388{font-size:59.775600px;}
.fs1_c01388{font-size:86.077200px;}
.y0_c01388{bottom:0.000000px;}
.y1e_c01388{bottom:44.250000px;}
.y1d_c01388{bottom:98.490000px;}
.y1c_c01388{bottom:114.927000px;}
.y1b_c01388{bottom:131.365500px;}
.y1a_c01388{bottom:147.804000px;}
.y19_c01388{bottom:164.242500px;}
.y18_c01388{bottom:180.681000px;}
.y17_c01388{bottom:197.119500px;}
.y16_c01388{bottom:213.558000px;}
.y15_c01388{bottom:229.996500px;}
.y14_c01388{bottom:246.435000px;}
.y13_c01388{bottom:262.873500px;}
.y12_c01388{bottom:295.749000px;}
.y11_c01388{bottom:345.064500px;}
.y10_c01388{bottom:361.129500px;}
.yf_c01388{bottom:407.194500px;}
.ye_c01388{bottom:425.127000px;}
.yd_c01388{bottom:443.059500px;}
.yc_c01388{bottom:460.993500px;}
.yb_c01388{bottom:478.926000px;}
.ya_c01388{bottom:505.467000px;}
.y9_c01388{bottom:523.401000px;}
.y8_c01388{bottom:549.942000px;}
.y7_c01388{bottom:567.876000px;}
.y6_c01388{bottom:594.418500px;}
.y5_c01388{bottom:620.959500px;}
.y4_c01388{bottom:662.875500px;}
.y3_c01388{bottom:1126.986000px;}
.y2_c01388{bottom:1143.424500px;}
.y1_c01388{bottom:1159.863000px;}
.h6_c01388{height:35.190766px;}
.h2_c01388{height:36.007158px;}
.h4_c01388{height:40.511979px;}
.h5_c01388{height:52.332837px;}
.h3_c01388{height:58.337477px;}
.h0_c01388{height:1262.835000px;}
.h1_c01388{height:1263.000000px;}
.w0_c01388{width:892.920000px;}
.w1_c01388{width:893.250000px;}
.x0_c01388{left:0.000000px;}
.x3_c01388{left:127.558500px;}
.x1_c01388{left:137.122500px;}
.x2_c01388{left:177.007500px;}
.x4_c01388{left:196.948500px;}
.x5_c01388{left:435.249000px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls3_c01388{letter-spacing:0.000000pt;}
.ls0_c01388{letter-spacing:0.078221pt;}
.ls2_c01388{letter-spacing:0.087539pt;}
.ls1_c01388{letter-spacing:0.092873pt;}
.wsb_c01388{word-spacing:-29.967501pt;}
.ws0_c01388{word-spacing:-23.622682pt;}
.ws10_c01388{word-spacing:-23.544461pt;}
.ws8_c01388{word-spacing:-16.949703pt;}
.ws6_c01388{word-spacing:-16.684034pt;}
.ws5_c01388{word-spacing:-16.524633pt;}
.wsd_c01388{word-spacing:-15.780758pt;}
.wse_c01388{word-spacing:-13.761671pt;}
.ws7_c01388{word-spacing:-13.549136pt;}
.ws4_c01388{word-spacing:-13.124065pt;}
.wsa_c01388{word-spacing:-12.805262pt;}
.wsc_c01388{word-spacing:-11.370647pt;}
.ws2_c01388{word-spacing:-8.878599pt;}
.ws3_c01388{word-spacing:-8.877777pt;}
.ws9_c01388{word-spacing:-1.082795pt;}
.ws13_c01388{word-spacing:0.000000pt;}
.ws11_c01388{word-spacing:0.039110pt;}
.ws14_c01388{word-spacing:0.050460pt;}
.wsf_c01388{word-spacing:0.156442pt;}
.ws12_c01388{word-spacing:0.195063pt;}
.ws1_c01388{word-spacing:38.256533pt;}
._3_c01388{margin-left:-3.931906pt;}
._1_c01388{margin-left:-2.830983pt;}
._0_c01388{margin-left:-1.377235pt;}
._8_c01388{width:0.893988pt;}
._2_c01388{width:18.041324pt;}
._6_c01388{width:20.244003pt;}
._7_c01388{width:26.741223pt;}
._4_c01388{width:28.850857pt;}
._5_c01388{width:33.911716pt;}
.fs0_c01388{font-size:39.110400pt;}
.fs2_c01388{font-size:53.133867pt;}
.fs1_c01388{font-size:76.513067pt;}
.y0_c01388{bottom:0.000000pt;}
.y1e_c01388{bottom:39.333333pt;}
.y1d_c01388{bottom:87.546667pt;}
.y1c_c01388{bottom:102.157333pt;}
.y1b_c01388{bottom:116.769333pt;}
.y1a_c01388{bottom:131.381333pt;}
.y19_c01388{bottom:145.993333pt;}
.y18_c01388{bottom:160.605333pt;}
.y17_c01388{bottom:175.217333pt;}
.y16_c01388{bottom:189.829333pt;}
.y15_c01388{bottom:204.441333pt;}
.y14_c01388{bottom:219.053333pt;}
.y13_c01388{bottom:233.665333pt;}
.y12_c01388{bottom:262.888000pt;}
.y11_c01388{bottom:306.724000pt;}
.y10_c01388{bottom:321.004000pt;}
.yf_c01388{bottom:361.950667pt;}
.ye_c01388{bottom:377.890667pt;}
.yd_c01388{bottom:393.830667pt;}
.yc_c01388{bottom:409.772000pt;}
.yb_c01388{bottom:425.712000pt;}
.ya_c01388{bottom:449.304000pt;}
.y9_c01388{bottom:465.245333pt;}
.y8_c01388{bottom:488.837333pt;}
.y7_c01388{bottom:504.778667pt;}
.y6_c01388{bottom:528.372000pt;}
.y5_c01388{bottom:551.964000pt;}
.y4_c01388{bottom:589.222667pt;}
.y3_c01388{bottom:1001.765333pt;}
.y2_c01388{bottom:1016.377333pt;}
.y1_c01388{bottom:1030.989333pt;}
.h6_c01388{height:31.280681pt;}
.h2_c01388{height:32.006363pt;}
.h4_c01388{height:36.010648pt;}
.h5_c01388{height:46.518078pt;}
.h3_c01388{height:51.855535pt;}
.h0_c01388{height:1122.520000pt;}
.h1_c01388{height:1122.666667pt;}
.w0_c01388{width:793.706667pt;}
.w1_c01388{width:794.000000pt;}
.x0_c01388{left:0.000000pt;}
.x3_c01388{left:113.385333pt;}
.x1_c01388{left:121.886667pt;}
.x2_c01388{left:157.340000pt;}
.x4_c01388{left:175.065333pt;}
.x5_c01388{left:386.888000pt;}
}





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

.ir_c01389:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01389;src:url('chunks/assets/font_fdc0d36156d36f7ebee37449.woff2')format("woff");}.ff1_c01389{font-family:ff1_c01389;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01389;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff2_c01389{font-family:ff2_c01389;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01389;src:url('chunks/assets/font_3e371640e1a74e71271e81e8.woff2')format("woff");}.ff3_c01389{font-family:ff3_c01389;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01389;src:url('chunks/assets/font_a635f7c1220eda688510ba1d.woff2')format("woff");}.ff4_c01389{font-family:ff4_c01389;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01389;src:url('chunks/assets/font_fb2a0f08ec6bd188105aa097.woff2')format("woff");}.ff5_c01389{font-family:ff5_c01389;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01389{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01389{vertical-align:0.000000px;}
.ls3_c01389{letter-spacing:0.000000px;}
.ls0_c01389{letter-spacing:0.087998px;}
.ls2_c01389{letter-spacing:0.098482px;}
.ls1_c01389{letter-spacing:0.104482px;}
.sc__c01389{text-shadow:none;}
.sc0_c01389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01389{-webkit-text-stroke:0px transparent;}
.sc0_c01389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01389{word-spacing:-33.713438px;}
.ws2_c01389{word-spacing:-26.575517px;}
.ws1_c01389{word-spacing:-26.487518px;}
.wsb_c01389{word-spacing:-19.247743px;}
.ws9_c01389{word-spacing:-18.769538px;}
.ws10_c01389{word-spacing:-17.753353px;}
.wsa_c01389{word-spacing:-15.481880px;}
.ws8_c01389{word-spacing:-14.943900px;}
.wsd_c01389{word-spacing:-14.405920px;}
.wsf_c01389{word-spacing:-12.791978px;}
.ws6_c01389{word-spacing:-9.988424px;}
.ws7_c01389{word-spacing:-9.987499px;}
.wsc_c01389{word-spacing:-1.218144px;}
.ws0_c01389{word-spacing:0.000000px;}
.ws3_c01389{word-spacing:0.043999px;}
.ws13_c01389{word-spacing:0.056767px;}
.ws11_c01389{word-spacing:0.175997px;}
.ws4_c01389{word-spacing:0.213446px;}
.ws12_c01389{word-spacing:0.219446px;}
.ws5_c01389{word-spacing:43.038600px;}
._5_c01389{margin-left:-4.064741px;}
._7_c01389{margin-left:-2.988780px;}
._2_c01389{margin-left:-1.075961px;}
._0_c01389{width:1.041538px;}
._1_c01389{width:19.935816px;}
._6_c01389{width:22.415850px;}
._8_c01389{width:29.887800px;}
._3_c01389{width:33.059746px;}
._4_c01389{width:38.150681px;}
.fc5_c01389{color:rgb(0,0,207);}
.fc4_c01389{color:rgb(79,153,5);}
.fc6_c01389{color:rgb(6,69,173);}
.fc3_c01389{color:rgb(207,92,0);}
.fc2_c01389{color:rgb(0,0,0);}
.fc1_c01389{color:rgb(33,74,135);}
.fc0_c01389{color:rgb(143,89,3);}
.fs0_c01389{font-size:43.999200px;}
.fs2_c01389{font-size:59.775600px;}
.fs1_c01389{font-size:86.077200px;}
.y0_c01389{bottom:0.000000px;}
.y1f_c01389{bottom:44.250000px;}
.y1e_c01389{bottom:82.051500px;}
.y1d_c01389{bottom:98.490000px;}
.y1c_c01389{bottom:114.927000px;}
.y1b_c01389{bottom:147.804000px;}
.y1a_c01389{bottom:180.681000px;}
.y19_c01389{bottom:196.746000px;}
.y18_c01389{bottom:244.101000px;}
.y17_c01389{bottom:262.035000px;}
.y16_c01389{bottom:279.967500px;}
.y15_c01389{bottom:297.900000px;}
.y14_c01389{bottom:315.832500px;}
.y13_c01389{bottom:342.589500px;}
.y12_c01389{bottom:369.348000px;}
.y11_c01389{bottom:396.105000px;}
.y10_c01389{bottom:422.862000px;}
.yf_c01389{bottom:464.992500px;}
.ye_c01389{bottom:929.725500px;}
.yd_c01389{bottom:946.164000px;}
.yc_c01389{bottom:962.602500px;}
.yb_c01389{bottom:979.041000px;}
.ya_c01389{bottom:995.479500px;}
.y9_c01389{bottom:1011.918000px;}
.y8_c01389{bottom:1028.356500px;}
.y7_c01389{bottom:1044.795000px;}
.y6_c01389{bottom:1061.232000px;}
.y5_c01389{bottom:1077.670500px;}
.y4_c01389{bottom:1094.109000px;}
.y3_c01389{bottom:1126.986000px;}
.y2_c01389{bottom:1143.424500px;}
.y1_c01389{bottom:1159.863000px;}
.h2_c01389{height:35.190766px;}
.h3_c01389{height:36.007158px;}
.h5_c01389{height:40.511979px;}
.h6_c01389{height:52.332837px;}
.h4_c01389{height:58.337477px;}
.h0_c01389{height:1262.835000px;}
.h1_c01389{height:1263.000000px;}
.w0_c01389{width:892.920000px;}
.w1_c01389{width:893.250000px;}
.x0_c01389{left:0.000000px;}
.x3_c01389{left:127.558500px;}
.x1_c01389{left:137.122500px;}
.x2_c01389{left:177.007500px;}
.x4_c01389{left:196.948500px;}
.x5_c01389{left:435.249000px;}
@media print{
.v0_c01389{vertical-align:0.000000pt;}
.ls3_c01389{letter-spacing:0.000000pt;}
.ls0_c01389{letter-spacing:0.078221pt;}
.ls2_c01389{letter-spacing:0.087539pt;}
.ls1_c01389{letter-spacing:0.092873pt;}
.wse_c01389{word-spacing:-29.967501pt;}
.ws2_c01389{word-spacing:-23.622682pt;}
.ws1_c01389{word-spacing:-23.544461pt;}
.wsb_c01389{word-spacing:-17.109105pt;}
.ws9_c01389{word-spacing:-16.684034pt;}
.ws10_c01389{word-spacing:-15.780758pt;}
.wsa_c01389{word-spacing:-13.761671pt;}
.ws8_c01389{word-spacing:-13.283467pt;}
.wsd_c01389{word-spacing:-12.805262pt;}
.wsf_c01389{word-spacing:-11.370647pt;}
.ws6_c01389{word-spacing:-8.878599pt;}
.ws7_c01389{word-spacing:-8.877777pt;}
.wsc_c01389{word-spacing:-1.082795pt;}
.ws0_c01389{word-spacing:0.000000pt;}
.ws3_c01389{word-spacing:0.039110pt;}
.ws13_c01389{word-spacing:0.050460pt;}
.ws11_c01389{word-spacing:0.156442pt;}
.ws4_c01389{word-spacing:0.189730pt;}
.ws12_c01389{word-spacing:0.195063pt;}
.ws5_c01389{word-spacing:38.256533pt;}
._5_c01389{margin-left:-3.613103pt;}
._7_c01389{margin-left:-2.656693pt;}
._2_c01389{margin-left:-0.956410pt;}
._0_c01389{width:0.925811pt;}
._1_c01389{width:17.720725pt;}
._6_c01389{width:19.925200pt;}
._8_c01389{width:26.566933pt;}
._3_c01389{width:29.386441pt;}
._4_c01389{width:33.911716pt;}
.fs0_c01389{font-size:39.110400pt;}
.fs2_c01389{font-size:53.133867pt;}
.fs1_c01389{font-size:76.513067pt;}
.y0_c01389{bottom:0.000000pt;}
.y1f_c01389{bottom:39.333333pt;}
.y1e_c01389{bottom:72.934667pt;}
.y1d_c01389{bottom:87.546667pt;}
.y1c_c01389{bottom:102.157333pt;}
.y1b_c01389{bottom:131.381333pt;}
.y1a_c01389{bottom:160.605333pt;}
.y19_c01389{bottom:174.885333pt;}
.y18_c01389{bottom:216.978667pt;}
.y17_c01389{bottom:232.920000pt;}
.y16_c01389{bottom:248.860000pt;}
.y15_c01389{bottom:264.800000pt;}
.y14_c01389{bottom:280.740000pt;}
.y13_c01389{bottom:304.524000pt;}
.y12_c01389{bottom:328.309333pt;}
.y11_c01389{bottom:352.093333pt;}
.y10_c01389{bottom:375.877333pt;}
.yf_c01389{bottom:413.326667pt;}
.ye_c01389{bottom:826.422667pt;}
.yd_c01389{bottom:841.034667pt;}
.yc_c01389{bottom:855.646667pt;}
.yb_c01389{bottom:870.258667pt;}
.ya_c01389{bottom:884.870667pt;}
.y9_c01389{bottom:899.482667pt;}
.y8_c01389{bottom:914.094667pt;}
.y7_c01389{bottom:928.706667pt;}
.y6_c01389{bottom:943.317333pt;}
.y5_c01389{bottom:957.929333pt;}
.y4_c01389{bottom:972.541333pt;}
.y3_c01389{bottom:1001.765333pt;}
.y2_c01389{bottom:1016.377333pt;}
.y1_c01389{bottom:1030.989333pt;}
.h2_c01389{height:31.280681pt;}
.h3_c01389{height:32.006363pt;}
.h5_c01389{height:36.010648pt;}
.h6_c01389{height:46.518078pt;}
.h4_c01389{height:51.855535pt;}
.h0_c01389{height:1122.520000pt;}
.h1_c01389{height:1122.666667pt;}
.w0_c01389{width:793.706667pt;}
.w1_c01389{width:794.000000pt;}
.x0_c01389{left:0.000000pt;}
.x3_c01389{left:113.385333pt;}
.x1_c01389{left:121.886667pt;}
.x2_c01389{left:157.340000pt;}
.x4_c01389{left:175.065333pt;}
.x5_c01389{left:386.888000pt;}
}





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

.ir_c01390:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01390;src:url('chunks/assets/font_5d43cafb6916d95d21c505c8.woff2')format("woff");}.ff1_c01390{font-family:ff1_c01390;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01390;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff2_c01390{font-family:ff2_c01390;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01390;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff3_c01390{font-family:ff3_c01390;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01390;src:url('chunks/assets/font_015838884add9382cbf4768b.woff2')format("woff");}.ff4_c01390{font-family:ff4_c01390;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01390;src:url('chunks/assets/font_f7fb2039ad646ed17dbfb1e2.woff2')format("woff");}.ff5_c01390{font-family:ff5_c01390;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01390{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01390{vertical-align:0.000000px;}
.ls3_c01390{letter-spacing:0.000000px;}
.ls0_c01390{letter-spacing:0.087998px;}
.ls1_c01390{letter-spacing:0.098482px;}
.ls2_c01390{letter-spacing:0.104482px;}
.sc__c01390{text-shadow:none;}
.sc0_c01390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01390{-webkit-text-stroke:0px transparent;}
.sc0_c01390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01390{word-spacing:-33.713438px;}
.ws1_c01390{word-spacing:-26.575517px;}
.ws3_c01390{word-spacing:-26.487518px;}
.ws9_c01390{word-spacing:-18.948865px;}
.wsa_c01390{word-spacing:-18.769538px;}
.ws11_c01390{word-spacing:-18.470660px;}
.wse_c01390{word-spacing:-18.351109px;}
.ws8_c01390{word-spacing:-15.123227px;}
.ws12_c01390{word-spacing:-12.313774px;}
.wsc_c01390{word-spacing:-11.118262px;}
.ws10_c01390{word-spacing:-11.113366px;}
.ws6_c01390{word-spacing:-9.988424px;}
.ws7_c01390{word-spacing:-9.987499px;}
.wsd_c01390{word-spacing:-9.096144px;}
.wsb_c01390{word-spacing:-7.292623px;}
.ws2_c01390{word-spacing:0.000000px;}
.ws0_c01390{word-spacing:0.043999px;}
.ws4_c01390{word-spacing:0.213446px;}
.ws5_c01390{word-spacing:43.038600px;}
._3_c01390{margin-left:-4.124516px;}
._4_c01390{margin-left:-1.075961px;}
._0_c01390{width:1.041538px;}
._1_c01390{width:19.869143px;}
._5_c01390{width:21.302332px;}
._7_c01390{width:23.013606px;}
._2_c01390{width:35.295223px;}
._6_c01390{width:39.392120px;}
.fc6_c01390{color:rgb(6,69,173);}
.fc5_c01390{color:rgb(207,92,0);}
.fc4_c01390{color:rgb(143,89,3);}
.fc3_c01390{color:rgb(0,0,207);}
.fc2_c01390{color:rgb(0,0,0);}
.fc1_c01390{color:rgb(79,153,5);}
.fc0_c01390{color:rgb(33,74,135);}
.fs0_c01390{font-size:43.999200px;}
.fs2_c01390{font-size:59.775600px;}
.fs1_c01390{font-size:86.077200px;}
.y0_c01390{bottom:0.000000px;}
.y21_c01390{bottom:44.250000px;}
.y20_c01390{bottom:82.051500px;}
.y1f_c01390{bottom:99.984000px;}
.y1e_c01390{bottom:117.916500px;}
.y1d_c01390{bottom:146.157000px;}
.y1c_c01390{bottom:164.089500px;}
.y1b_c01390{bottom:192.330000px;}
.y1a_c01390{bottom:210.262500px;}
.y19_c01390{bottom:238.503000px;}
.y18_c01390{bottom:266.742000px;}
.y17_c01390{bottom:310.956000px;}
.y16_c01390{bottom:781.780500px;}
.y15_c01390{bottom:798.219000px;}
.y14_c01390{bottom:814.657500px;}
.y13_c01390{bottom:831.096000px;}
.y12_c01390{bottom:847.534500px;}
.y11_c01390{bottom:863.973000px;}
.y10_c01390{bottom:880.411500px;}
.yf_c01390{bottom:896.848500px;}
.ye_c01390{bottom:913.287000px;}
.yd_c01390{bottom:929.725500px;}
.yc_c01390{bottom:946.164000px;}
.yb_c01390{bottom:979.041000px;}
.ya_c01390{bottom:995.479500px;}
.y9_c01390{bottom:1011.918000px;}
.y8_c01390{bottom:1044.795000px;}
.y7_c01390{bottom:1061.232000px;}
.y6_c01390{bottom:1077.670500px;}
.y5_c01390{bottom:1094.109000px;}
.y4_c01390{bottom:1110.547500px;}
.y3_c01390{bottom:1126.986000px;}
.y2_c01390{bottom:1143.424500px;}
.y1_c01390{bottom:1159.863000px;}
.h3_c01390{height:35.190766px;}
.h2_c01390{height:36.007158px;}
.h5_c01390{height:40.511979px;}
.h6_c01390{height:52.332837px;}
.h4_c01390{height:58.337477px;}
.h0_c01390{height:1262.835000px;}
.h1_c01390{height:1263.000000px;}
.w0_c01390{width:892.920000px;}
.w1_c01390{width:893.250000px;}
.x0_c01390{left:0.000000px;}
.x4_c01390{left:127.558500px;}
.x2_c01390{left:137.122500px;}
.x3_c01390{left:177.007500px;}
.x1_c01390{left:196.948500px;}
.x5_c01390{left:435.249000px;}
@media print{
.v0_c01390{vertical-align:0.000000pt;}
.ls3_c01390{letter-spacing:0.000000pt;}
.ls0_c01390{letter-spacing:0.078221pt;}
.ls1_c01390{letter-spacing:0.087539pt;}
.ls2_c01390{letter-spacing:0.092873pt;}
.wsf_c01390{word-spacing:-29.967501pt;}
.ws1_c01390{word-spacing:-23.622682pt;}
.ws3_c01390{word-spacing:-23.544461pt;}
.ws9_c01390{word-spacing:-16.843436pt;}
.wsa_c01390{word-spacing:-16.684034pt;}
.ws11_c01390{word-spacing:-16.418365pt;}
.wse_c01390{word-spacing:-16.312097pt;}
.ws8_c01390{word-spacing:-13.442868pt;}
.ws12_c01390{word-spacing:-10.945577pt;}
.wsc_c01390{word-spacing:-9.882899pt;}
.ws10_c01390{word-spacing:-9.878547pt;}
.ws6_c01390{word-spacing:-8.878599pt;}
.ws7_c01390{word-spacing:-8.877777pt;}
.wsd_c01390{word-spacing:-8.085461pt;}
.wsb_c01390{word-spacing:-6.482332pt;}
.ws2_c01390{word-spacing:0.000000pt;}
.ws0_c01390{word-spacing:0.039110pt;}
.ws4_c01390{word-spacing:0.189730pt;}
.ws5_c01390{word-spacing:38.256533pt;}
._3_c01390{margin-left:-3.666237pt;}
._4_c01390{margin-left:-0.956410pt;}
._0_c01390{width:0.925811pt;}
._1_c01390{width:17.661460pt;}
._5_c01390{width:18.935406pt;}
._7_c01390{width:20.456539pt;}
._2_c01390{width:31.373532pt;}
._6_c01390{width:35.015218pt;}
.fs0_c01390{font-size:39.110400pt;}
.fs2_c01390{font-size:53.133867pt;}
.fs1_c01390{font-size:76.513067pt;}
.y0_c01390{bottom:0.000000pt;}
.y21_c01390{bottom:39.333333pt;}
.y20_c01390{bottom:72.934667pt;}
.y1f_c01390{bottom:88.874667pt;}
.y1e_c01390{bottom:104.814667pt;}
.y1d_c01390{bottom:129.917333pt;}
.y1c_c01390{bottom:145.857333pt;}
.y1b_c01390{bottom:170.960000pt;}
.y1a_c01390{bottom:186.900000pt;}
.y19_c01390{bottom:212.002667pt;}
.y18_c01390{bottom:237.104000pt;}
.y17_c01390{bottom:276.405333pt;}
.y16_c01390{bottom:694.916000pt;}
.y15_c01390{bottom:709.528000pt;}
.y14_c01390{bottom:724.140000pt;}
.y13_c01390{bottom:738.752000pt;}
.y12_c01390{bottom:753.364000pt;}
.y11_c01390{bottom:767.976000pt;}
.y10_c01390{bottom:782.588000pt;}
.yf_c01390{bottom:797.198667pt;}
.ye_c01390{bottom:811.810667pt;}
.yd_c01390{bottom:826.422667pt;}
.yc_c01390{bottom:841.034667pt;}
.yb_c01390{bottom:870.258667pt;}
.ya_c01390{bottom:884.870667pt;}
.y9_c01390{bottom:899.482667pt;}
.y8_c01390{bottom:928.706667pt;}
.y7_c01390{bottom:943.317333pt;}
.y6_c01390{bottom:957.929333pt;}
.y5_c01390{bottom:972.541333pt;}
.y4_c01390{bottom:987.153333pt;}
.y3_c01390{bottom:1001.765333pt;}
.y2_c01390{bottom:1016.377333pt;}
.y1_c01390{bottom:1030.989333pt;}
.h3_c01390{height:31.280681pt;}
.h2_c01390{height:32.006363pt;}
.h5_c01390{height:36.010648pt;}
.h6_c01390{height:46.518078pt;}
.h4_c01390{height:51.855535pt;}
.h0_c01390{height:1122.520000pt;}
.h1_c01390{height:1122.666667pt;}
.w0_c01390{width:793.706667pt;}
.w1_c01390{width:794.000000pt;}
.x0_c01390{left:0.000000pt;}
.x4_c01390{left:113.385333pt;}
.x2_c01390{left:121.886667pt;}
.x3_c01390{left:157.340000pt;}
.x1_c01390{left:175.065333pt;}
.x5_c01390{left:386.888000pt;}
}





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

.ir_c01391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01391;src:url('chunks/assets/font_ecd997a8e977dc93b78937e6.woff2')format("woff");}.ff1_c01391{font-family:ff1_c01391;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01391;src:url('chunks/assets/font_5ad76fc410e3b40c4587a23d.woff2')format("woff");}.ff2_c01391{font-family:ff2_c01391;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01391;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff3_c01391{font-family:ff3_c01391;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01391;src:url('chunks/assets/font_6676009ef03d726ad3780ee6.woff2')format("woff");}.ff4_c01391{font-family:ff4_c01391;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01391{vertical-align:0.000000px;}
.ls3_c01391{letter-spacing:0.000000px;}
.ls1_c01391{letter-spacing:0.087998px;}
.ls2_c01391{letter-spacing:0.098482px;}
.ls0_c01391{letter-spacing:0.104482px;}
.sc__c01391{text-shadow:none;}
.sc0_c01391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01391{-webkit-text-stroke:0px transparent;}
.sc0_c01391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01391{word-spacing:-26.575517px;}
.ws3_c01391{word-spacing:-26.487518px;}
.ws0_c01391{word-spacing:-19.546621px;}
.ws1_c01391{word-spacing:-18.769538px;}
.ws7_c01391{word-spacing:0.000000px;}
.ws5_c01391{word-spacing:0.043999px;}
.ws8_c01391{word-spacing:0.056767px;}
.ws2_c01391{word-spacing:0.175997px;}
.ws9_c01391{word-spacing:0.213446px;}
.ws6_c01391{word-spacing:0.219446px;}
._0_c01391{margin-left:-3.048556px;}
._2_c01391{width:1.005737px;}
._1_c01391{width:19.606397px;}
.fc5_c01391{color:rgb(0,0,207);}
.fc4_c01391{color:rgb(79,153,5);}
.fc3_c01391{color:rgb(207,92,0);}
.fc2_c01391{color:rgb(33,74,135);}
.fc1_c01391{color:rgb(143,89,3);}
.fc0_c01391{color:rgb(0,0,0);}
.fs1_c01391{font-size:43.999200px;}
.fs0_c01391{font-size:59.775600px;}
.y0_c01391{bottom:0.000000px;}
.y32_c01391{bottom:44.250000px;}
.y31_c01391{bottom:96.919500px;}
.y30_c01391{bottom:113.358000px;}
.y2f_c01391{bottom:129.796500px;}
.y2e_c01391{bottom:146.235000px;}
.y2d_c01391{bottom:162.673500px;}
.y2c_c01391{bottom:179.112000px;}
.y2b_c01391{bottom:195.550500px;}
.y2a_c01391{bottom:211.989000px;}
.y29_c01391{bottom:228.427500px;}
.y28_c01391{bottom:244.866000px;}
.y27_c01391{bottom:261.304500px;}
.y26_c01391{bottom:294.180000px;}
.y25_c01391{bottom:310.618500px;}
.y24_c01391{bottom:327.057000px;}
.y23_c01391{bottom:359.934000px;}
.y22_c01391{bottom:376.372500px;}
.y21_c01391{bottom:409.249500px;}
.y20_c01391{bottom:425.688000px;}
.y1f_c01391{bottom:442.125000px;}
.y1e_c01391{bottom:475.002000px;}
.y1d_c01391{bottom:491.440500px;}
.y1c_c01391{bottom:507.879000px;}
.y1b_c01391{bottom:540.756000px;}
.y1a_c01391{bottom:557.194500px;}
.y19_c01391{bottom:573.633000px;}
.y18_c01391{bottom:590.071500px;}
.y17_c01391{bottom:606.508500px;}
.y16_c01391{bottom:622.947000px;}
.y15_c01391{bottom:639.385500px;}
.y14_c01391{bottom:655.824000px;}
.y13_c01391{bottom:672.262500px;}
.y12_c01391{bottom:688.701000px;}
.y11_c01391{bottom:705.139500px;}
.y10_c01391{bottom:754.455000px;}
.yf_c01391{bottom:770.893500px;}
.ye_c01391{bottom:787.330500px;}
.yd_c01391{bottom:803.769000px;}
.yc_c01391{bottom:820.207500px;}
.yb_c01391{bottom:836.646000px;}
.ya_c01391{bottom:853.084500px;}
.y9_c01391{bottom:869.523000px;}
.y8_c01391{bottom:885.961500px;}
.y7_c01391{bottom:902.400000px;}
.y6_c01391{bottom:918.838500px;}
.y5_c01391{bottom:968.152500px;}
.y4_c01391{bottom:1017.468000px;}
.y3_c01391{bottom:1033.533000px;}
.y2_c01391{bottom:1141.930500px;}
.y1_c01391{bottom:1159.863000px;}
.h3_c01391{height:35.190766px;}
.h4_c01391{height:36.007158px;}
.h2_c01391{height:52.332837px;}
.h0_c01391{height:1262.835000px;}
.h1_c01391{height:1263.000000px;}
.w0_c01391{width:892.920000px;}
.w1_c01391{width:893.250000px;}
.x0_c01391{left:0.000000px;}
.x1_c01391{left:127.558500px;}
.x2_c01391{left:137.122500px;}
.x4_c01391{left:177.007500px;}
.x3_c01391{left:196.948500px;}
.x5_c01391{left:435.249000px;}
@media print{
.v0_c01391{vertical-align:0.000000pt;}
.ls3_c01391{letter-spacing:0.000000pt;}
.ls1_c01391{letter-spacing:0.078221pt;}
.ls2_c01391{letter-spacing:0.087539pt;}
.ls0_c01391{letter-spacing:0.092873pt;}
.ws4_c01391{word-spacing:-23.622682pt;}
.ws3_c01391{word-spacing:-23.544461pt;}
.ws0_c01391{word-spacing:-17.374774pt;}
.ws1_c01391{word-spacing:-16.684034pt;}
.ws7_c01391{word-spacing:0.000000pt;}
.ws5_c01391{word-spacing:0.039110pt;}
.ws8_c01391{word-spacing:0.050460pt;}
.ws2_c01391{word-spacing:0.156442pt;}
.ws9_c01391{word-spacing:0.189730pt;}
.ws6_c01391{word-spacing:0.195063pt;}
._0_c01391{margin-left:-2.709827pt;}
._2_c01391{width:0.893988pt;}
._1_c01391{width:17.427908pt;}
.fs1_c01391{font-size:39.110400pt;}
.fs0_c01391{font-size:53.133867pt;}
.y0_c01391{bottom:0.000000pt;}
.y32_c01391{bottom:39.333333pt;}
.y31_c01391{bottom:86.150667pt;}
.y30_c01391{bottom:100.762667pt;}
.y2f_c01391{bottom:115.374667pt;}
.y2e_c01391{bottom:129.986667pt;}
.y2d_c01391{bottom:144.598667pt;}
.y2c_c01391{bottom:159.210667pt;}
.y2b_c01391{bottom:173.822667pt;}
.y2a_c01391{bottom:188.434667pt;}
.y29_c01391{bottom:203.046667pt;}
.y28_c01391{bottom:217.658667pt;}
.y27_c01391{bottom:232.270667pt;}
.y26_c01391{bottom:261.493333pt;}
.y25_c01391{bottom:276.105333pt;}
.y24_c01391{bottom:290.717333pt;}
.y23_c01391{bottom:319.941333pt;}
.y22_c01391{bottom:334.553333pt;}
.y21_c01391{bottom:363.777333pt;}
.y20_c01391{bottom:378.389333pt;}
.y1f_c01391{bottom:393.000000pt;}
.y1e_c01391{bottom:422.224000pt;}
.y1d_c01391{bottom:436.836000pt;}
.y1c_c01391{bottom:451.448000pt;}
.y1b_c01391{bottom:480.672000pt;}
.y1a_c01391{bottom:495.284000pt;}
.y19_c01391{bottom:509.896000pt;}
.y18_c01391{bottom:524.508000pt;}
.y17_c01391{bottom:539.118667pt;}
.y16_c01391{bottom:553.730667pt;}
.y15_c01391{bottom:568.342667pt;}
.y14_c01391{bottom:582.954667pt;}
.y13_c01391{bottom:597.566667pt;}
.y12_c01391{bottom:612.178667pt;}
.y11_c01391{bottom:626.790667pt;}
.y10_c01391{bottom:670.626667pt;}
.yf_c01391{bottom:685.238667pt;}
.ye_c01391{bottom:699.849333pt;}
.yd_c01391{bottom:714.461333pt;}
.yc_c01391{bottom:729.073333pt;}
.yb_c01391{bottom:743.685333pt;}
.ya_c01391{bottom:758.297333pt;}
.y9_c01391{bottom:772.909333pt;}
.y8_c01391{bottom:787.521333pt;}
.y7_c01391{bottom:802.133333pt;}
.y6_c01391{bottom:816.745333pt;}
.y5_c01391{bottom:860.580000pt;}
.y4_c01391{bottom:904.416000pt;}
.y3_c01391{bottom:918.696000pt;}
.y2_c01391{bottom:1015.049333pt;}
.y1_c01391{bottom:1030.989333pt;}
.h3_c01391{height:31.280681pt;}
.h4_c01391{height:32.006363pt;}
.h2_c01391{height:46.518078pt;}
.h0_c01391{height:1122.520000pt;}
.h1_c01391{height:1122.666667pt;}
.w0_c01391{width:793.706667pt;}
.w1_c01391{width:794.000000pt;}
.x0_c01391{left:0.000000pt;}
.x1_c01391{left:113.385333pt;}
.x2_c01391{left:121.886667pt;}
.x4_c01391{left:157.340000pt;}
.x3_c01391{left:175.065333pt;}
.x5_c01391{left:386.888000pt;}
}





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

.ir_c01392:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01392;src:url('chunks/assets/font_af1dc1b80e6cc69684a8157a.woff2')format("woff");}.ff1_c01392{font-family:ff1_c01392;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01392;src:url('chunks/assets/font_2039b6b4f2b1669ce5593853.woff2')format("woff");}.ff2_c01392{font-family:ff2_c01392;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01392;src:url('chunks/assets/font_8fb150e9754bbaf2eb6d69b7.woff2')format("woff");}.ff3_c01392{font-family:ff3_c01392;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01392;src:url('chunks/assets/font_86c5c3f6558f9f24134d7743.woff2')format("woff");}.ff4_c01392{font-family:ff4_c01392;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01392;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01392{font-family:ff5_c01392;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01392{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01392{vertical-align:0.000000px;}
.ls3_c01392{letter-spacing:0.000000px;}
.ls0_c01392{letter-spacing:0.087998px;}
.ls2_c01392{letter-spacing:0.098482px;}
.ls1_c01392{letter-spacing:0.104482px;}
.sc__c01392{text-shadow:none;}
.sc0_c01392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01392{-webkit-text-stroke:0px transparent;}
.sc0_c01392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01392{word-spacing:-33.713438px;}
.ws2_c01392{word-spacing:-26.575517px;}
.ws11_c01392{word-spacing:-26.487518px;}
.wse_c01392{word-spacing:-19.008641px;}
.ws6_c01392{word-spacing:-18.769538px;}
.ws5_c01392{word-spacing:-18.470660px;}
.wsd_c01392{word-spacing:-17.155597px;}
.ws4_c01392{word-spacing:-14.645022px;}
.wsa_c01392{word-spacing:-13.808164px;}
.wsc_c01392{word-spacing:-13.748388px;}
.ws8_c01392{word-spacing:-13.031081px;}
.wsf_c01392{word-spacing:-12.493100px;}
.ws1_c01392{word-spacing:-9.988424px;}
.ws3_c01392{word-spacing:-9.987499px;}
.ws7_c01392{word-spacing:-9.205442px;}
.ws9_c01392{word-spacing:-0.000144px;}
.ws14_c01392{word-spacing:0.000000px;}
.ws12_c01392{word-spacing:0.043999px;}
.ws15_c01392{word-spacing:0.056767px;}
.ws10_c01392{word-spacing:0.175997px;}
.ws16_c01392{word-spacing:0.213446px;}
.ws13_c01392{word-spacing:0.219446px;}
.ws0_c01392{word-spacing:43.038600px;}
._6_c01392{margin-left:-4.124516px;}
._7_c01392{margin-left:-3.108331px;}
._3_c01392{margin-left:-1.075961px;}
._9_c01392{width:1.005737px;}
._0_c01392{width:20.614938px;}
._5_c01392{width:25.140023px;}
._1_c01392{width:31.418042px;}
._4_c01392{width:34.935277px;}
._2_c01392{width:37.120648px;}
._8_c01392{width:38.734589px;}
.fc6_c01392{color:rgb(0,0,207);}
.fc5_c01392{color:rgb(79,153,5);}
.fc3_c01392{color:rgb(33,74,135);}
.fc2_c01392{color:rgb(143,89,3);}
.fc4_c01392{color:rgb(207,92,0);}
.fc1_c01392{color:rgb(6,69,173);}
.fc0_c01392{color:rgb(0,0,0);}
.fs2_c01392{font-size:43.999200px;}
.fs1_c01392{font-size:59.775600px;}
.fs0_c01392{font-size:86.077200px;}
.y0_c01392{bottom:0.000000px;}
.y1e_c01392{bottom:44.250000px;}
.y1d_c01392{bottom:86.982000px;}
.y1c_c01392{bottom:103.420500px;}
.y1b_c01392{bottom:119.859000px;}
.y1a_c01392{bottom:152.736000px;}
.y19_c01392{bottom:169.174500px;}
.y18_c01392{bottom:185.613000px;}
.y17_c01392{bottom:202.051500px;}
.y16_c01392{bottom:218.490000px;}
.y15_c01392{bottom:234.927000px;}
.y14_c01392{bottom:251.365500px;}
.y13_c01392{bottom:267.804000px;}
.y12_c01392{bottom:284.242500px;}
.y11_c01392{bottom:300.681000px;}
.y10_c01392{bottom:317.119500px;}
.yf_c01392{bottom:366.435000px;}
.ye_c01392{bottom:415.749000px;}
.yd_c01392{bottom:431.814000px;}
.yc_c01392{bottom:478.845000px;}
.yb_c01392{bottom:496.777500px;}
.ya_c01392{bottom:514.710000px;}
.y9_c01392{bottom:532.644000px;}
.y8_c01392{bottom:550.576500px;}
.y7_c01392{bottom:577.284000px;}
.y6_c01392{bottom:595.216500px;}
.y5_c01392{bottom:621.925500px;}
.y4_c01392{bottom:639.858000px;}
.y3_c01392{bottom:666.565500px;}
.y2_c01392{bottom:693.274500px;}
.y1_c01392{bottom:735.355500px;}
.h5_c01392{height:35.190766px;}
.h6_c01392{height:36.007158px;}
.h3_c01392{height:40.511979px;}
.h4_c01392{height:52.332837px;}
.h2_c01392{height:58.337477px;}
.h0_c01392{height:1262.835000px;}
.h1_c01392{height:1263.000000px;}
.w0_c01392{width:892.920000px;}
.w1_c01392{width:893.250000px;}
.x0_c01392{left:0.000000px;}
.x1_c01392{left:127.558500px;}
.x2_c01392{left:137.122500px;}
.x3_c01392{left:196.948500px;}
.x4_c01392{left:435.249000px;}
@media print{
.v0_c01392{vertical-align:0.000000pt;}
.ls3_c01392{letter-spacing:0.000000pt;}
.ls0_c01392{letter-spacing:0.078221pt;}
.ls2_c01392{letter-spacing:0.087539pt;}
.ls1_c01392{letter-spacing:0.092873pt;}
.wsb_c01392{word-spacing:-29.967501pt;}
.ws2_c01392{word-spacing:-23.622682pt;}
.ws11_c01392{word-spacing:-23.544461pt;}
.wse_c01392{word-spacing:-16.896570pt;}
.ws6_c01392{word-spacing:-16.684034pt;}
.ws5_c01392{word-spacing:-16.418365pt;}
.wsd_c01392{word-spacing:-15.249420pt;}
.ws4_c01392{word-spacing:-13.017797pt;}
.wsa_c01392{word-spacing:-12.273923pt;}
.wsc_c01392{word-spacing:-12.220789pt;}
.ws8_c01392{word-spacing:-11.583183pt;}
.wsf_c01392{word-spacing:-11.104978pt;}
.ws1_c01392{word-spacing:-8.878599pt;}
.ws3_c01392{word-spacing:-8.877777pt;}
.ws7_c01392{word-spacing:-8.182615pt;}
.ws9_c01392{word-spacing:-0.000128pt;}
.ws14_c01392{word-spacing:0.000000pt;}
.ws12_c01392{word-spacing:0.039110pt;}
.ws15_c01392{word-spacing:0.050460pt;}
.ws10_c01392{word-spacing:0.156442pt;}
.ws16_c01392{word-spacing:0.189730pt;}
.ws13_c01392{word-spacing:0.195063pt;}
.ws0_c01392{word-spacing:38.256533pt;}
._6_c01392{margin-left:-3.666237pt;}
._7_c01392{margin-left:-2.762961pt;}
._3_c01392{margin-left:-0.956410pt;}
._9_c01392{width:0.893988pt;}
._0_c01392{width:18.324389pt;}
._5_c01392{width:22.346687pt;}
._1_c01392{width:27.927149pt;}
._4_c01392{width:31.053580pt;}
._2_c01392{width:32.996131pt;}
._8_c01392{width:34.430746pt;}
.fs2_c01392{font-size:39.110400pt;}
.fs1_c01392{font-size:53.133867pt;}
.fs0_c01392{font-size:76.513067pt;}
.y0_c01392{bottom:0.000000pt;}
.y1e_c01392{bottom:39.333333pt;}
.y1d_c01392{bottom:77.317333pt;}
.y1c_c01392{bottom:91.929333pt;}
.y1b_c01392{bottom:106.541333pt;}
.y1a_c01392{bottom:135.765333pt;}
.y19_c01392{bottom:150.377333pt;}
.y18_c01392{bottom:164.989333pt;}
.y17_c01392{bottom:179.601333pt;}
.y16_c01392{bottom:194.213333pt;}
.y15_c01392{bottom:208.824000pt;}
.y14_c01392{bottom:223.436000pt;}
.y13_c01392{bottom:238.048000pt;}
.y12_c01392{bottom:252.660000pt;}
.y11_c01392{bottom:267.272000pt;}
.y10_c01392{bottom:281.884000pt;}
.yf_c01392{bottom:325.720000pt;}
.ye_c01392{bottom:369.554667pt;}
.yd_c01392{bottom:383.834667pt;}
.yc_c01392{bottom:425.640000pt;}
.yb_c01392{bottom:441.580000pt;}
.ya_c01392{bottom:457.520000pt;}
.y9_c01392{bottom:473.461333pt;}
.y8_c01392{bottom:489.401333pt;}
.y7_c01392{bottom:513.141333pt;}
.y6_c01392{bottom:529.081333pt;}
.y5_c01392{bottom:552.822667pt;}
.y4_c01392{bottom:568.762667pt;}
.y3_c01392{bottom:592.502667pt;}
.y2_c01392{bottom:616.244000pt;}
.y1_c01392{bottom:653.649333pt;}
.h5_c01392{height:31.280681pt;}
.h6_c01392{height:32.006363pt;}
.h3_c01392{height:36.010648pt;}
.h4_c01392{height:46.518078pt;}
.h2_c01392{height:51.855535pt;}
.h0_c01392{height:1122.520000pt;}
.h1_c01392{height:1122.666667pt;}
.w0_c01392{width:793.706667pt;}
.w1_c01392{width:794.000000pt;}
.x0_c01392{left:0.000000pt;}
.x1_c01392{left:113.385333pt;}
.x2_c01392{left:121.886667pt;}
.x3_c01392{left:175.065333pt;}
.x4_c01392{left:386.888000pt;}
}





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

.ir_c01393:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01393;src:url('chunks/assets/font_cc4e3a624749ec1b67c6d6e9.woff2')format("woff");}.ff1_c01393{font-family:ff1_c01393;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01393;src:url('chunks/assets/font_8138e3443328b97eae51f97a.woff2')format("woff");}.ff2_c01393{font-family:ff2_c01393;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01393;src:url('chunks/assets/font_b79949cee098f5930cc55eee.woff2')format("woff");}.ff3_c01393{font-family:ff3_c01393;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01393;src:url('chunks/assets/font_b7f4acdb804ea400ecfed6ae.woff2')format("woff");}.ff4_c01393{font-family:ff4_c01393;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01393;src:url('chunks/assets/font_78202b4cd40dcd7b8ae162fb.woff2')format("woff");}.ff5_c01393{font-family:ff5_c01393;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01393{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01393{vertical-align:0.000000px;}
.ls3_c01393{letter-spacing:0.000000px;}
.ls0_c01393{letter-spacing:0.087998px;}
.ls2_c01393{letter-spacing:0.098482px;}
.ls1_c01393{letter-spacing:0.104482px;}
.sc__c01393{text-shadow:none;}
.sc0_c01393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01393{-webkit-text-stroke:0px transparent;}
.sc0_c01393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01393{word-spacing:-33.713438px;}
.ws0_c01393{word-spacing:-26.575517px;}
.ws1_c01393{word-spacing:-26.487518px;}
.ws6_c01393{word-spacing:-19.187968px;}
.wsf_c01393{word-spacing:-19.008641px;}
.ws7_c01393{word-spacing:-18.769538px;}
.wse_c01393{word-spacing:-17.155597px;}
.ws5_c01393{word-spacing:-15.422105px;}
.ws9_c01393{word-spacing:-15.242778px;}
.wsb_c01393{word-spacing:-14.406398px;}
.wsd_c01393{word-spacing:-14.405920px;}
.ws10_c01393{word-spacing:-12.493100px;}
.ws8_c01393{word-spacing:-11.417140px;}
.ws3_c01393{word-spacing:-9.988424px;}
.ws4_c01393{word-spacing:-9.987499px;}
.wsa_c01393{word-spacing:-1.242144px;}
.ws14_c01393{word-spacing:0.000000px;}
.ws12_c01393{word-spacing:0.043999px;}
.ws15_c01393{word-spacing:0.056767px;}
.ws11_c01393{word-spacing:0.175997px;}
.ws13_c01393{word-spacing:0.219446px;}
.ws2_c01393{word-spacing:43.038600px;}
._6_c01393{margin-left:-4.124516px;}
._7_c01393{margin-left:-3.108331px;}
._3_c01393{margin-left:-1.075961px;}
._9_c01393{width:1.005737px;}
._0_c01393{width:19.772021px;}
._5_c01393{width:25.140023px;}
._1_c01393{width:26.987740px;}
._2_c01393{width:30.485556px;}
._4_c01393{width:33.042703px;}
._8_c01393{width:38.734589px;}
.fc5_c01393{color:rgb(0,0,207);}
.fc6_c01393{color:rgb(6,69,173);}
.fc4_c01393{color:rgb(207,92,0);}
.fc3_c01393{color:rgb(33,74,135);}
.fc2_c01393{color:rgb(79,153,5);}
.fc1_c01393{color:rgb(143,89,3);}
.fc0_c01393{color:rgb(0,0,0);}
.fs0_c01393{font-size:43.999200px;}
.fs2_c01393{font-size:59.775600px;}
.fs1_c01393{font-size:86.077200px;}
.y0_c01393{bottom:0.000000px;}
.y1f_c01393{bottom:44.250000px;}
.y1e_c01393{bottom:82.051500px;}
.y1d_c01393{bottom:98.490000px;}
.y1c_c01393{bottom:114.927000px;}
.y1b_c01393{bottom:131.365500px;}
.y1a_c01393{bottom:164.242500px;}
.y19_c01393{bottom:197.119500px;}
.y18_c01393{bottom:213.184500px;}
.y17_c01393{bottom:259.233000px;}
.y16_c01393{bottom:277.165500px;}
.y15_c01393{bottom:295.098000px;}
.y14_c01393{bottom:313.030500px;}
.y13_c01393{bottom:330.963000px;}
.y12_c01393{bottom:357.508500px;}
.y11_c01393{bottom:375.441000px;}
.y10_c01393{bottom:401.985000px;}
.yf_c01393{bottom:419.917500px;}
.ye_c01393{bottom:446.463000px;}
.yd_c01393{bottom:473.007000px;}
.yc_c01393{bottom:514.924500px;}
.yb_c01393{bottom:979.041000px;}
.ya_c01393{bottom:995.479500px;}
.y9_c01393{bottom:1011.918000px;}
.y8_c01393{bottom:1028.356500px;}
.y7_c01393{bottom:1044.795000px;}
.y6_c01393{bottom:1061.232000px;}
.y5_c01393{bottom:1077.670500px;}
.y4_c01393{bottom:1094.109000px;}
.y3_c01393{bottom:1110.547500px;}
.y2_c01393{bottom:1126.986000px;}
.y1_c01393{bottom:1143.424500px;}
.h7_c01393{height:35.190766px;}
.h2_c01393{height:36.007158px;}
.h4_c01393{height:40.511979px;}
.h5_c01393{height:52.332837px;}
.h6_c01393{height:52.338837px;}
.h3_c01393{height:58.337477px;}
.h0_c01393{height:1262.835000px;}
.h1_c01393{height:1263.000000px;}
.w0_c01393{width:892.920000px;}
.w1_c01393{width:893.250000px;}
.x0_c01393{left:0.000000px;}
.x3_c01393{left:127.558500px;}
.x1_c01393{left:137.122500px;}
.x2_c01393{left:177.007500px;}
.x4_c01393{left:196.948500px;}
.x5_c01393{left:435.249000px;}
@media print{
.v0_c01393{vertical-align:0.000000pt;}
.ls3_c01393{letter-spacing:0.000000pt;}
.ls0_c01393{letter-spacing:0.078221pt;}
.ls2_c01393{letter-spacing:0.087539pt;}
.ls1_c01393{letter-spacing:0.092873pt;}
.wsc_c01393{word-spacing:-29.967501pt;}
.ws0_c01393{word-spacing:-23.622682pt;}
.ws1_c01393{word-spacing:-23.544461pt;}
.ws6_c01393{word-spacing:-17.055971pt;}
.wsf_c01393{word-spacing:-16.896570pt;}
.ws7_c01393{word-spacing:-16.684034pt;}
.wse_c01393{word-spacing:-15.249420pt;}
.ws5_c01393{word-spacing:-13.708538pt;}
.ws9_c01393{word-spacing:-13.549136pt;}
.wsb_c01393{word-spacing:-12.805687pt;}
.wsd_c01393{word-spacing:-12.805262pt;}
.ws10_c01393{word-spacing:-11.104978pt;}
.ws8_c01393{word-spacing:-10.148569pt;}
.ws3_c01393{word-spacing:-8.878599pt;}
.ws4_c01393{word-spacing:-8.877777pt;}
.wsa_c01393{word-spacing:-1.104128pt;}
.ws14_c01393{word-spacing:0.000000pt;}
.ws12_c01393{word-spacing:0.039110pt;}
.ws15_c01393{word-spacing:0.050460pt;}
.ws11_c01393{word-spacing:0.156442pt;}
.ws13_c01393{word-spacing:0.195063pt;}
.ws2_c01393{word-spacing:38.256533pt;}
._6_c01393{margin-left:-3.666237pt;}
._7_c01393{margin-left:-2.762961pt;}
._3_c01393{margin-left:-0.956410pt;}
._9_c01393{width:0.893988pt;}
._0_c01393{width:17.575130pt;}
._5_c01393{width:22.346687pt;}
._1_c01393{width:23.989102pt;}
._2_c01393{width:27.098272pt;}
._4_c01393{width:29.371292pt;}
._8_c01393{width:34.430746pt;}
.fs0_c01393{font-size:39.110400pt;}
.fs2_c01393{font-size:53.133867pt;}
.fs1_c01393{font-size:76.513067pt;}
.y0_c01393{bottom:0.000000pt;}
.y1f_c01393{bottom:39.333333pt;}
.y1e_c01393{bottom:72.934667pt;}
.y1d_c01393{bottom:87.546667pt;}
.y1c_c01393{bottom:102.157333pt;}
.y1b_c01393{bottom:116.769333pt;}
.y1a_c01393{bottom:145.993333pt;}
.y19_c01393{bottom:175.217333pt;}
.y18_c01393{bottom:189.497333pt;}
.y17_c01393{bottom:230.429333pt;}
.y16_c01393{bottom:246.369333pt;}
.y15_c01393{bottom:262.309333pt;}
.y14_c01393{bottom:278.249333pt;}
.y13_c01393{bottom:294.189333pt;}
.y12_c01393{bottom:317.785333pt;}
.y11_c01393{bottom:333.725333pt;}
.y10_c01393{bottom:357.320000pt;}
.yf_c01393{bottom:373.260000pt;}
.ye_c01393{bottom:396.856000pt;}
.yd_c01393{bottom:420.450667pt;}
.yc_c01393{bottom:457.710667pt;}
.yb_c01393{bottom:870.258667pt;}
.ya_c01393{bottom:884.870667pt;}
.y9_c01393{bottom:899.482667pt;}
.y8_c01393{bottom:914.094667pt;}
.y7_c01393{bottom:928.706667pt;}
.y6_c01393{bottom:943.317333pt;}
.y5_c01393{bottom:957.929333pt;}
.y4_c01393{bottom:972.541333pt;}
.y3_c01393{bottom:987.153333pt;}
.y2_c01393{bottom:1001.765333pt;}
.y1_c01393{bottom:1016.377333pt;}
.h7_c01393{height:31.280681pt;}
.h2_c01393{height:32.006363pt;}
.h4_c01393{height:36.010648pt;}
.h5_c01393{height:46.518078pt;}
.h6_c01393{height:46.523411pt;}
.h3_c01393{height:51.855535pt;}
.h0_c01393{height:1122.520000pt;}
.h1_c01393{height:1122.666667pt;}
.w0_c01393{width:793.706667pt;}
.w1_c01393{width:794.000000pt;}
.x0_c01393{left:0.000000pt;}
.x3_c01393{left:113.385333pt;}
.x1_c01393{left:121.886667pt;}
.x2_c01393{left:157.340000pt;}
.x4_c01393{left:175.065333pt;}
.x5_c01393{left:386.888000pt;}
}





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

.ir_c01394:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01394;src:url('chunks/assets/font_2ae49c4a3293bb3631b2171f.woff2')format("woff");}.ff1_c01394{font-family:ff1_c01394;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01394;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01394{font-family:ff2_c01394;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01394;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff3_c01394{font-family:ff3_c01394;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01394;src:url('chunks/assets/font_f58be8ed6902a763cff3f04f.woff2')format("woff");}.ff4_c01394{font-family:ff4_c01394;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01394;src:url('chunks/assets/font_d94454e211654807dd01fc84.woff2')format("woff");}.ff5_c01394{font-family:ff5_c01394;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01394{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01394{vertical-align:0.000000px;}
.ls3_c01394{letter-spacing:0.000000px;}
.ls0_c01394{letter-spacing:0.087998px;}
.ls1_c01394{letter-spacing:0.098482px;}
.ls2_c01394{letter-spacing:0.104482px;}
.sc__c01394{text-shadow:none;}
.sc0_c01394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01394{-webkit-text-stroke:0px transparent;}
.sc0_c01394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01394{word-spacing:-33.713438px;}
.ws1_c01394{word-spacing:-26.575517px;}
.ws3_c01394{word-spacing:-26.487518px;}
.ws9_c01394{word-spacing:-18.769538px;}
.wse_c01394{word-spacing:-17.753353px;}
.ws8_c01394{word-spacing:-14.943900px;}
.wsb_c01394{word-spacing:-14.405920px;}
.wsd_c01394{word-spacing:-12.791978px;}
.ws6_c01394{word-spacing:-9.988424px;}
.ws7_c01394{word-spacing:-9.987499px;}
.wsa_c01394{word-spacing:-1.218144px;}
.ws2_c01394{word-spacing:0.000000px;}
.ws0_c01394{word-spacing:0.043999px;}
.wsf_c01394{word-spacing:0.175997px;}
.ws4_c01394{word-spacing:0.213446px;}
.ws5_c01394{word-spacing:43.038600px;}
._1_c01394{margin-left:-7.833025px;}
._6_c01394{margin-left:-4.064741px;}
._8_c01394{margin-left:-2.988780px;}
._3_c01394{margin-left:-1.075961px;}
._0_c01394{width:1.041538px;}
._2_c01394{width:19.935816px;}
._7_c01394{width:22.415850px;}
._4_c01394{width:33.059746px;}
._5_c01394{width:38.150681px;}
.fc6_c01394{color:rgb(6,69,173);}
.fc5_c01394{color:rgb(207,92,0);}
.fc4_c01394{color:rgb(143,89,3);}
.fc3_c01394{color:rgb(0,0,207);}
.fc2_c01394{color:rgb(0,0,0);}
.fc1_c01394{color:rgb(79,153,5);}
.fc0_c01394{color:rgb(33,74,135);}
.fs0_c01394{font-size:43.999200px;}
.fs2_c01394{font-size:59.775600px;}
.fs1_c01394{font-size:86.077200px;}
.y0_c01394{bottom:0.000000px;}
.y20_c01394{bottom:44.250000px;}
.y1f_c01394{bottom:82.051500px;}
.y1e_c01394{bottom:129.891000px;}
.y1d_c01394{bottom:147.823500px;}
.y1c_c01394{bottom:165.756000px;}
.y1b_c01394{bottom:183.688500px;}
.y1a_c01394{bottom:210.526500px;}
.y19_c01394{bottom:237.364500px;}
.y18_c01394{bottom:264.202500px;}
.y17_c01394{bottom:291.040500px;}
.y16_c01394{bottom:333.252000px;}
.y15_c01394{bottom:798.219000px;}
.y14_c01394{bottom:814.657500px;}
.y13_c01394{bottom:831.096000px;}
.y12_c01394{bottom:847.534500px;}
.y11_c01394{bottom:863.973000px;}
.y10_c01394{bottom:880.411500px;}
.yf_c01394{bottom:896.848500px;}
.ye_c01394{bottom:913.287000px;}
.yd_c01394{bottom:929.725500px;}
.yc_c01394{bottom:946.164000px;}
.yb_c01394{bottom:962.602500px;}
.ya_c01394{bottom:995.479500px;}
.y9_c01394{bottom:1011.918000px;}
.y8_c01394{bottom:1028.356500px;}
.y7_c01394{bottom:1061.232000px;}
.y6_c01394{bottom:1077.670500px;}
.y5_c01394{bottom:1094.109000px;}
.y4_c01394{bottom:1110.547500px;}
.y3_c01394{bottom:1126.986000px;}
.y2_c01394{bottom:1143.424500px;}
.y1_c01394{bottom:1159.863000px;}
.h3_c01394{height:35.190766px;}
.h2_c01394{height:36.007158px;}
.h5_c01394{height:40.511979px;}
.h6_c01394{height:52.332837px;}
.h4_c01394{height:58.337477px;}
.h0_c01394{height:1262.835000px;}
.h1_c01394{height:1263.000000px;}
.w0_c01394{width:892.920000px;}
.w1_c01394{width:893.250000px;}
.x0_c01394{left:0.000000px;}
.x4_c01394{left:127.558500px;}
.x2_c01394{left:137.122500px;}
.x3_c01394{left:177.007500px;}
.x1_c01394{left:196.948500px;}
.x5_c01394{left:435.249000px;}
@media print{
.v0_c01394{vertical-align:0.000000pt;}
.ls3_c01394{letter-spacing:0.000000pt;}
.ls0_c01394{letter-spacing:0.078221pt;}
.ls1_c01394{letter-spacing:0.087539pt;}
.ls2_c01394{letter-spacing:0.092873pt;}
.wsc_c01394{word-spacing:-29.967501pt;}
.ws1_c01394{word-spacing:-23.622682pt;}
.ws3_c01394{word-spacing:-23.544461pt;}
.ws9_c01394{word-spacing:-16.684034pt;}
.wse_c01394{word-spacing:-15.780758pt;}
.ws8_c01394{word-spacing:-13.283467pt;}
.wsb_c01394{word-spacing:-12.805262pt;}
.wsd_c01394{word-spacing:-11.370647pt;}
.ws6_c01394{word-spacing:-8.878599pt;}
.ws7_c01394{word-spacing:-8.877777pt;}
.wsa_c01394{word-spacing:-1.082795pt;}
.ws2_c01394{word-spacing:0.000000pt;}
.ws0_c01394{word-spacing:0.039110pt;}
.wsf_c01394{word-spacing:0.156442pt;}
.ws4_c01394{word-spacing:0.189730pt;}
.ws5_c01394{word-spacing:38.256533pt;}
._1_c01394{margin-left:-6.962689pt;}
._6_c01394{margin-left:-3.613103pt;}
._8_c01394{margin-left:-2.656693pt;}
._3_c01394{margin-left:-0.956410pt;}
._0_c01394{width:0.925811pt;}
._2_c01394{width:17.720725pt;}
._7_c01394{width:19.925200pt;}
._4_c01394{width:29.386441pt;}
._5_c01394{width:33.911716pt;}
.fs0_c01394{font-size:39.110400pt;}
.fs2_c01394{font-size:53.133867pt;}
.fs1_c01394{font-size:76.513067pt;}
.y0_c01394{bottom:0.000000pt;}
.y20_c01394{bottom:39.333333pt;}
.y1f_c01394{bottom:72.934667pt;}
.y1e_c01394{bottom:115.458667pt;}
.y1d_c01394{bottom:131.398667pt;}
.y1c_c01394{bottom:147.338667pt;}
.y1b_c01394{bottom:163.278667pt;}
.y1a_c01394{bottom:187.134667pt;}
.y19_c01394{bottom:210.990667pt;}
.y18_c01394{bottom:234.846667pt;}
.y17_c01394{bottom:258.702667pt;}
.y16_c01394{bottom:296.224000pt;}
.y15_c01394{bottom:709.528000pt;}
.y14_c01394{bottom:724.140000pt;}
.y13_c01394{bottom:738.752000pt;}
.y12_c01394{bottom:753.364000pt;}
.y11_c01394{bottom:767.976000pt;}
.y10_c01394{bottom:782.588000pt;}
.yf_c01394{bottom:797.198667pt;}
.ye_c01394{bottom:811.810667pt;}
.yd_c01394{bottom:826.422667pt;}
.yc_c01394{bottom:841.034667pt;}
.yb_c01394{bottom:855.646667pt;}
.ya_c01394{bottom:884.870667pt;}
.y9_c01394{bottom:899.482667pt;}
.y8_c01394{bottom:914.094667pt;}
.y7_c01394{bottom:943.317333pt;}
.y6_c01394{bottom:957.929333pt;}
.y5_c01394{bottom:972.541333pt;}
.y4_c01394{bottom:987.153333pt;}
.y3_c01394{bottom:1001.765333pt;}
.y2_c01394{bottom:1016.377333pt;}
.y1_c01394{bottom:1030.989333pt;}
.h3_c01394{height:31.280681pt;}
.h2_c01394{height:32.006363pt;}
.h5_c01394{height:36.010648pt;}
.h6_c01394{height:46.518078pt;}
.h4_c01394{height:51.855535pt;}
.h0_c01394{height:1122.520000pt;}
.h1_c01394{height:1122.666667pt;}
.w0_c01394{width:793.706667pt;}
.w1_c01394{width:794.000000pt;}
.x0_c01394{left:0.000000pt;}
.x4_c01394{left:113.385333pt;}
.x2_c01394{left:121.886667pt;}
.x3_c01394{left:157.340000pt;}
.x1_c01394{left:175.065333pt;}
.x5_c01394{left:386.888000pt;}
}





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

.ir_c01395:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01395;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff1_c01395{font-family:ff1_c01395;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01395;src:url('chunks/assets/font_14b51225251e40bbf4db1978.woff2')format("woff");}.ff2_c01395{font-family:ff2_c01395;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01395;src:url('chunks/assets/font_75e1ee300543f5866176ed85.woff2')format("woff");}.ff3_c01395{font-family:ff3_c01395;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01395;src:url('chunks/assets/font_d37b985e2a2593d5fc34f750.woff2')format("woff");}.ff4_c01395{font-family:ff4_c01395;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01395;src:url('chunks/assets/font_1dad9cd042c2ef20a464de7b.woff2')format("woff");}.ff5_c01395{font-family:ff5_c01395;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01395{vertical-align:0.000000px;}
.ls3_c01395{letter-spacing:0.000000px;}
.ls1_c01395{letter-spacing:0.087998px;}
.ls2_c01395{letter-spacing:0.098482px;}
.ls0_c01395{letter-spacing:0.104482px;}
.sc__c01395{text-shadow:none;}
.sc0_c01395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01395{-webkit-text-stroke:0px transparent;}
.sc0_c01395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01395{word-spacing:-26.575517px;}
.ws0_c01395{word-spacing:-26.487518px;}
.wsb_c01395{word-spacing:-20.204153px;}
.wsa_c01395{word-spacing:-16.438290px;}
.ws8_c01395{word-spacing:-9.988424px;}
.ws9_c01395{word-spacing:-9.987499px;}
.ws4_c01395{word-spacing:0.000000px;}
.ws2_c01395{word-spacing:0.043999px;}
.ws5_c01395{word-spacing:0.056767px;}
.ws6_c01395{word-spacing:0.213446px;}
.ws3_c01395{word-spacing:0.219446px;}
.ws7_c01395{word-spacing:43.038600px;}
._1_c01395{margin-left:-7.833025px;}
._4_c01395{margin-left:-3.227882px;}
._0_c01395{width:1.005737px;}
._3_c01395{width:2.151922px;}
._2_c01395{width:19.276206px;}
.fc5_c01395{color:rgb(0,0,207);}
.fc4_c01395{color:rgb(143,89,3);}
.fc3_c01395{color:rgb(79,153,5);}
.fc2_c01395{color:rgb(207,92,0);}
.fc1_c01395{color:rgb(0,0,0);}
.fc0_c01395{color:rgb(33,74,135);}
.fs0_c01395{font-size:43.999200px;}
.fs2_c01395{font-size:59.775600px;}
.fs1_c01395{font-size:86.077200px;}
.y0_c01395{bottom:0.000000px;}
.y21_c01395{bottom:44.250000px;}
.y20_c01395{bottom:82.051500px;}
.y1f_c01395{bottom:99.984000px;}
.y1e_c01395{bottom:127.600500px;}
.y1d_c01395{bottom:155.217000px;}
.y1c_c01395{bottom:198.528000px;}
.y1b_c01395{bottom:666.712500px;}
.y1a_c01395{bottom:683.151000px;}
.y19_c01395{bottom:699.589500px;}
.y18_c01395{bottom:716.028000px;}
.y17_c01395{bottom:732.465000px;}
.y16_c01395{bottom:748.903500px;}
.y15_c01395{bottom:765.342000px;}
.y14_c01395{bottom:781.780500px;}
.y13_c01395{bottom:798.219000px;}
.y12_c01395{bottom:814.657500px;}
.y11_c01395{bottom:831.096000px;}
.y10_c01395{bottom:863.973000px;}
.yf_c01395{bottom:880.411500px;}
.ye_c01395{bottom:896.848500px;}
.yd_c01395{bottom:929.725500px;}
.yc_c01395{bottom:946.164000px;}
.yb_c01395{bottom:962.602500px;}
.ya_c01395{bottom:979.041000px;}
.y9_c01395{bottom:995.479500px;}
.y8_c01395{bottom:1011.918000px;}
.y7_c01395{bottom:1028.356500px;}
.y6_c01395{bottom:1044.795000px;}
.y5_c01395{bottom:1061.232000px;}
.y4_c01395{bottom:1077.670500px;}
.y3_c01395{bottom:1094.109000px;}
.y2_c01395{bottom:1126.986000px;}
.y1_c01395{bottom:1159.863000px;}
.h3_c01395{height:35.190766px;}
.h2_c01395{height:36.007158px;}
.h5_c01395{height:40.511979px;}
.h6_c01395{height:52.332837px;}
.h4_c01395{height:58.337477px;}
.h0_c01395{height:1262.835000px;}
.h1_c01395{height:1263.000000px;}
.w0_c01395{width:892.920000px;}
.w1_c01395{width:893.250000px;}
.x0_c01395{left:0.000000px;}
.x4_c01395{left:127.558500px;}
.x1_c01395{left:137.122500px;}
.x3_c01395{left:177.007500px;}
.x2_c01395{left:196.948500px;}
.x5_c01395{left:435.249000px;}
@media print{
.v0_c01395{vertical-align:0.000000pt;}
.ls3_c01395{letter-spacing:0.000000pt;}
.ls1_c01395{letter-spacing:0.078221pt;}
.ls2_c01395{letter-spacing:0.087539pt;}
.ls0_c01395{letter-spacing:0.092873pt;}
.ws1_c01395{word-spacing:-23.622682pt;}
.ws0_c01395{word-spacing:-23.544461pt;}
.wsb_c01395{word-spacing:-17.959247pt;}
.wsa_c01395{word-spacing:-14.611813pt;}
.ws8_c01395{word-spacing:-8.878599pt;}
.ws9_c01395{word-spacing:-8.877777pt;}
.ws4_c01395{word-spacing:0.000000pt;}
.ws2_c01395{word-spacing:0.039110pt;}
.ws5_c01395{word-spacing:0.050460pt;}
.ws6_c01395{word-spacing:0.189730pt;}
.ws3_c01395{word-spacing:0.195063pt;}
.ws7_c01395{word-spacing:38.256533pt;}
._1_c01395{margin-left:-6.962689pt;}
._4_c01395{margin-left:-2.869229pt;}
._0_c01395{width:0.893988pt;}
._3_c01395{width:1.912819pt;}
._2_c01395{width:17.134405pt;}
.fs0_c01395{font-size:39.110400pt;}
.fs2_c01395{font-size:53.133867pt;}
.fs1_c01395{font-size:76.513067pt;}
.y0_c01395{bottom:0.000000pt;}
.y21_c01395{bottom:39.333333pt;}
.y20_c01395{bottom:72.934667pt;}
.y1f_c01395{bottom:88.874667pt;}
.y1e_c01395{bottom:113.422667pt;}
.y1d_c01395{bottom:137.970667pt;}
.y1c_c01395{bottom:176.469333pt;}
.y1b_c01395{bottom:592.633333pt;}
.y1a_c01395{bottom:607.245333pt;}
.y19_c01395{bottom:621.857333pt;}
.y18_c01395{bottom:636.469333pt;}
.y17_c01395{bottom:651.080000pt;}
.y16_c01395{bottom:665.692000pt;}
.y15_c01395{bottom:680.304000pt;}
.y14_c01395{bottom:694.916000pt;}
.y13_c01395{bottom:709.528000pt;}
.y12_c01395{bottom:724.140000pt;}
.y11_c01395{bottom:738.752000pt;}
.y10_c01395{bottom:767.976000pt;}
.yf_c01395{bottom:782.588000pt;}
.ye_c01395{bottom:797.198667pt;}
.yd_c01395{bottom:826.422667pt;}
.yc_c01395{bottom:841.034667pt;}
.yb_c01395{bottom:855.646667pt;}
.ya_c01395{bottom:870.258667pt;}
.y9_c01395{bottom:884.870667pt;}
.y8_c01395{bottom:899.482667pt;}
.y7_c01395{bottom:914.094667pt;}
.y6_c01395{bottom:928.706667pt;}
.y5_c01395{bottom:943.317333pt;}
.y4_c01395{bottom:957.929333pt;}
.y3_c01395{bottom:972.541333pt;}
.y2_c01395{bottom:1001.765333pt;}
.y1_c01395{bottom:1030.989333pt;}
.h3_c01395{height:31.280681pt;}
.h2_c01395{height:32.006363pt;}
.h5_c01395{height:36.010648pt;}
.h6_c01395{height:46.518078pt;}
.h4_c01395{height:51.855535pt;}
.h0_c01395{height:1122.520000pt;}
.h1_c01395{height:1122.666667pt;}
.w0_c01395{width:793.706667pt;}
.w1_c01395{width:794.000000pt;}
.x0_c01395{left:0.000000pt;}
.x4_c01395{left:113.385333pt;}
.x1_c01395{left:121.886667pt;}
.x3_c01395{left:157.340000pt;}
.x2_c01395{left:175.065333pt;}
.x5_c01395{left:386.888000pt;}
}





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

.ir_c01396:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01396;src:url('chunks/assets/font_c07d514bddcb12c6d36e029f.woff2')format("woff");}.ff1_c01396{font-family:ff1_c01396;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01396;src:url('chunks/assets/font_f2c4847c329f0abc81c7bb2a.woff2')format("woff");}.ff2_c01396{font-family:ff2_c01396;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01396;src:url('chunks/assets/font_31c949ad4f3a48a3fe843441.woff2')format("woff");}.ff3_c01396{font-family:ff3_c01396;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01396;src:url('chunks/assets/font_92392f400cc786cf669fa01e.woff2')format("woff");}.ff4_c01396{font-family:ff4_c01396;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01396;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff5_c01396{font-family:ff5_c01396;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01396{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01396{vertical-align:0.000000px;}
.ls3_c01396{letter-spacing:0.000000px;}
.ls0_c01396{letter-spacing:0.087998px;}
.ls2_c01396{letter-spacing:0.098482px;}
.ls1_c01396{letter-spacing:0.104482px;}
.sc__c01396{text-shadow:none;}
.sc0_c01396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01396{-webkit-text-stroke:0px transparent;}
.sc0_c01396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01396{word-spacing:-33.713438px;}
.wsb_c01396{word-spacing:-26.575517px;}
.wsa_c01396{word-spacing:-26.487518px;}
.ws1_c01396{word-spacing:-19.486846px;}
.ws2_c01396{word-spacing:-18.769538px;}
.ws7_c01396{word-spacing:-18.470660px;}
.ws4_c01396{word-spacing:-18.351109px;}
.ws0_c01396{word-spacing:-15.661207px;}
.ws8_c01396{word-spacing:-12.313774px;}
.ws6_c01396{word-spacing:-11.113366px;}
.ws3_c01396{word-spacing:-9.096144px;}
.wse_c01396{word-spacing:0.000000px;}
.wsc_c01396{word-spacing:0.043999px;}
.wsf_c01396{word-spacing:0.056767px;}
.ws9_c01396{word-spacing:0.175997px;}
.ws10_c01396{word-spacing:0.213446px;}
.wsd_c01396{word-spacing:0.219446px;}
._1_c01396{margin-left:-4.124516px;}
._2_c01396{margin-left:-1.075961px;}
._6_c01396{width:1.005737px;}
._0_c01396{width:19.591807px;}
._3_c01396{width:21.302332px;}
._5_c01396{width:23.013606px;}
._4_c01396{width:39.392120px;}
.fc6_c01396{color:rgb(0,0,207);}
.fc5_c01396{color:rgb(79,153,5);}
.fc3_c01396{color:rgb(33,74,135);}
.fc2_c01396{color:rgb(143,89,3);}
.fc4_c01396{color:rgb(207,92,0);}
.fc1_c01396{color:rgb(6,69,173);}
.fc0_c01396{color:rgb(0,0,0);}
.fs1_c01396{font-size:43.999200px;}
.fs0_c01396{font-size:59.775600px;}
.y0_c01396{bottom:0.000000px;}
.y35_c01396{bottom:44.250000px;}
.y34_c01396{bottom:82.051500px;}
.y33_c01396{bottom:98.490000px;}
.y32_c01396{bottom:114.927000px;}
.y31_c01396{bottom:131.365500px;}
.y30_c01396{bottom:147.804000px;}
.y2f_c01396{bottom:164.242500px;}
.y2e_c01396{bottom:180.681000px;}
.y2d_c01396{bottom:197.119500px;}
.y2c_c01396{bottom:213.558000px;}
.y2b_c01396{bottom:229.996500px;}
.y2a_c01396{bottom:262.873500px;}
.y29_c01396{bottom:279.310500px;}
.y28_c01396{bottom:295.749000px;}
.y27_c01396{bottom:328.626000px;}
.y26_c01396{bottom:345.064500px;}
.y25_c01396{bottom:377.941500px;}
.y24_c01396{bottom:394.380000px;}
.y23_c01396{bottom:410.818500px;}
.y22_c01396{bottom:443.694000px;}
.y21_c01396{bottom:460.132500px;}
.y20_c01396{bottom:476.571000px;}
.y1f_c01396{bottom:509.448000px;}
.y1e_c01396{bottom:525.886500px;}
.y1d_c01396{bottom:542.325000px;}
.y1c_c01396{bottom:558.763500px;}
.y1b_c01396{bottom:575.202000px;}
.y1a_c01396{bottom:591.640500px;}
.y19_c01396{bottom:608.079000px;}
.y18_c01396{bottom:624.516000px;}
.y17_c01396{bottom:640.954500px;}
.y16_c01396{bottom:657.393000px;}
.y15_c01396{bottom:673.831500px;}
.y14_c01396{bottom:723.147000px;}
.y13_c01396{bottom:739.585500px;}
.y12_c01396{bottom:756.024000px;}
.y11_c01396{bottom:772.462500px;}
.y10_c01396{bottom:788.899500px;}
.yf_c01396{bottom:805.338000px;}
.ye_c01396{bottom:821.776500px;}
.yd_c01396{bottom:838.215000px;}
.yc_c01396{bottom:854.653500px;}
.yb_c01396{bottom:871.092000px;}
.ya_c01396{bottom:887.530500px;}
.y9_c01396{bottom:936.846000px;}
.y8_c01396{bottom:986.160000px;}
.y7_c01396{bottom:1002.225000px;}
.y6_c01396{bottom:1058.146500px;}
.y5_c01396{bottom:1076.079000px;}
.y4_c01396{bottom:1094.011500px;}
.y3_c01396{bottom:1111.945500px;}
.y2_c01396{bottom:1141.930500px;}
.y1_c01396{bottom:1159.863000px;}
.h3_c01396{height:35.190766px;}
.h4_c01396{height:36.007158px;}
.h2_c01396{height:52.332837px;}
.h0_c01396{height:1262.835000px;}
.h1_c01396{height:1263.000000px;}
.w0_c01396{width:892.920000px;}
.w1_c01396{width:893.250000px;}
.x0_c01396{left:0.000000px;}
.x1_c01396{left:127.558500px;}
.x2_c01396{left:137.122500px;}
.x4_c01396{left:177.007500px;}
.x3_c01396{left:196.948500px;}
.x5_c01396{left:435.249000px;}
@media print{
.v0_c01396{vertical-align:0.000000pt;}
.ls3_c01396{letter-spacing:0.000000pt;}
.ls0_c01396{letter-spacing:0.078221pt;}
.ls2_c01396{letter-spacing:0.087539pt;}
.ls1_c01396{letter-spacing:0.092873pt;}
.ws5_c01396{word-spacing:-29.967501pt;}
.wsb_c01396{word-spacing:-23.622682pt;}
.wsa_c01396{word-spacing:-23.544461pt;}
.ws1_c01396{word-spacing:-17.321641pt;}
.ws2_c01396{word-spacing:-16.684034pt;}
.ws7_c01396{word-spacing:-16.418365pt;}
.ws4_c01396{word-spacing:-16.312097pt;}
.ws0_c01396{word-spacing:-13.921073pt;}
.ws8_c01396{word-spacing:-10.945577pt;}
.ws6_c01396{word-spacing:-9.878547pt;}
.ws3_c01396{word-spacing:-8.085461pt;}
.wse_c01396{word-spacing:0.000000pt;}
.wsc_c01396{word-spacing:0.039110pt;}
.wsf_c01396{word-spacing:0.050460pt;}
.ws9_c01396{word-spacing:0.156442pt;}
.ws10_c01396{word-spacing:0.189730pt;}
.wsd_c01396{word-spacing:0.195063pt;}
._1_c01396{margin-left:-3.666237pt;}
._2_c01396{margin-left:-0.956410pt;}
._6_c01396{width:0.893988pt;}
._0_c01396{width:17.414940pt;}
._3_c01396{width:18.935406pt;}
._5_c01396{width:20.456539pt;}
._4_c01396{width:35.015218pt;}
.fs1_c01396{font-size:39.110400pt;}
.fs0_c01396{font-size:53.133867pt;}
.y0_c01396{bottom:0.000000pt;}
.y35_c01396{bottom:39.333333pt;}
.y34_c01396{bottom:72.934667pt;}
.y33_c01396{bottom:87.546667pt;}
.y32_c01396{bottom:102.157333pt;}
.y31_c01396{bottom:116.769333pt;}
.y30_c01396{bottom:131.381333pt;}
.y2f_c01396{bottom:145.993333pt;}
.y2e_c01396{bottom:160.605333pt;}
.y2d_c01396{bottom:175.217333pt;}
.y2c_c01396{bottom:189.829333pt;}
.y2b_c01396{bottom:204.441333pt;}
.y2a_c01396{bottom:233.665333pt;}
.y29_c01396{bottom:248.276000pt;}
.y28_c01396{bottom:262.888000pt;}
.y27_c01396{bottom:292.112000pt;}
.y26_c01396{bottom:306.724000pt;}
.y25_c01396{bottom:335.948000pt;}
.y24_c01396{bottom:350.560000pt;}
.y23_c01396{bottom:365.172000pt;}
.y22_c01396{bottom:394.394667pt;}
.y21_c01396{bottom:409.006667pt;}
.y20_c01396{bottom:423.618667pt;}
.y1f_c01396{bottom:452.842667pt;}
.y1e_c01396{bottom:467.454667pt;}
.y1d_c01396{bottom:482.066667pt;}
.y1c_c01396{bottom:496.678667pt;}
.y1b_c01396{bottom:511.290667pt;}
.y1a_c01396{bottom:525.902667pt;}
.y19_c01396{bottom:540.514667pt;}
.y18_c01396{bottom:555.125333pt;}
.y17_c01396{bottom:569.737333pt;}
.y16_c01396{bottom:584.349333pt;}
.y15_c01396{bottom:598.961333pt;}
.y14_c01396{bottom:642.797333pt;}
.y13_c01396{bottom:657.409333pt;}
.y12_c01396{bottom:672.021333pt;}
.y11_c01396{bottom:686.633333pt;}
.y10_c01396{bottom:701.244000pt;}
.yf_c01396{bottom:715.856000pt;}
.ye_c01396{bottom:730.468000pt;}
.yd_c01396{bottom:745.080000pt;}
.yc_c01396{bottom:759.692000pt;}
.yb_c01396{bottom:774.304000pt;}
.ya_c01396{bottom:788.916000pt;}
.y9_c01396{bottom:832.752000pt;}
.y8_c01396{bottom:876.586667pt;}
.y7_c01396{bottom:890.866667pt;}
.y6_c01396{bottom:940.574667pt;}
.y5_c01396{bottom:956.514667pt;}
.y4_c01396{bottom:972.454667pt;}
.y3_c01396{bottom:988.396000pt;}
.y2_c01396{bottom:1015.049333pt;}
.y1_c01396{bottom:1030.989333pt;}
.h3_c01396{height:31.280681pt;}
.h4_c01396{height:32.006363pt;}
.h2_c01396{height:46.518078pt;}
.h0_c01396{height:1122.520000pt;}
.h1_c01396{height:1122.666667pt;}
.w0_c01396{width:793.706667pt;}
.w1_c01396{width:794.000000pt;}
.x0_c01396{left:0.000000pt;}
.x1_c01396{left:113.385333pt;}
.x2_c01396{left:121.886667pt;}
.x4_c01396{left:157.340000pt;}
.x3_c01396{left:175.065333pt;}
.x5_c01396{left:386.888000pt;}
}





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

.ir_c01397:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01397;src:url('chunks/assets/font_d0de8b2a96e725fc188a9b11.woff2')format("woff");}.ff1_c01397{font-family:ff1_c01397;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01397;src:url('chunks/assets/font_eee05732617cd3b0bab5e6da.woff2')format("woff");}.ff2_c01397{font-family:ff2_c01397;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01397;src:url('chunks/assets/font_082914590f77d104c4c78c3b.woff2')format("woff");}.ff3_c01397{font-family:ff3_c01397;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01397;src:url('chunks/assets/font_bb3b5a370c50f042d026c5b3.woff2')format("woff");}.ff4_c01397{font-family:ff4_c01397;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01397;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01397{font-family:ff5_c01397;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01397{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01397{vertical-align:0.000000px;}
.ls3_c01397{letter-spacing:0.000000px;}
.ls0_c01397{letter-spacing:0.087998px;}
.ls2_c01397{letter-spacing:0.098482px;}
.ls1_c01397{letter-spacing:0.104482px;}
.sc__c01397{text-shadow:none;}
.sc0_c01397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01397{-webkit-text-stroke:0px transparent;}
.sc0_c01397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01397{word-spacing:-33.713438px;}
.ws0_c01397{word-spacing:-26.575517px;}
.wsd_c01397{word-spacing:-26.487518px;}
.ws5_c01397{word-spacing:-18.769538px;}
.wsa_c01397{word-spacing:-17.753353px;}
.wsb_c01397{word-spacing:-15.481880px;}
.ws4_c01397{word-spacing:-14.943900px;}
.ws7_c01397{word-spacing:-14.405920px;}
.ws9_c01397{word-spacing:-12.791978px;}
.ws2_c01397{word-spacing:-9.988424px;}
.ws3_c01397{word-spacing:-9.987499px;}
.ws6_c01397{word-spacing:-1.218144px;}
.ws10_c01397{word-spacing:0.000000px;}
.wse_c01397{word-spacing:0.043999px;}
.ws11_c01397{word-spacing:0.056767px;}
.wsc_c01397{word-spacing:0.175997px;}
.ws12_c01397{word-spacing:0.213446px;}
.wsf_c01397{word-spacing:0.219446px;}
.ws1_c01397{word-spacing:43.038600px;}
._3_c01397{margin-left:-4.423394px;}
._1_c01397{margin-left:-3.184856px;}
._0_c01397{margin-left:-1.549390px;}
._8_c01397{width:1.005737px;}
._2_c01397{width:19.935816px;}
._6_c01397{width:22.774504px;}
._7_c01397{width:30.083876px;}
._4_c01397{width:32.457214px;}
._5_c01397{width:38.150681px;}
.fc6_c01397{color:rgb(0,0,207);}
.fc5_c01397{color:rgb(79,153,5);}
.fc4_c01397{color:rgb(207,92,0);}
.fc3_c01397{color:rgb(6,69,173);}
.fc2_c01397{color:rgb(0,0,0);}
.fc1_c01397{color:rgb(143,89,3);}
.fc0_c01397{color:rgb(33,74,135);}
.fs0_c01397{font-size:43.999200px;}
.fs2_c01397{font-size:59.775600px;}
.fs1_c01397{font-size:86.077200px;}
.y0_c01397{bottom:0.000000px;}
.y1e_c01397{bottom:44.250000px;}
.y1d_c01397{bottom:82.051500px;}
.y1c_c01397{bottom:114.927000px;}
.y1b_c01397{bottom:131.365500px;}
.y1a_c01397{bottom:147.804000px;}
.y19_c01397{bottom:180.681000px;}
.y18_c01397{bottom:197.119500px;}
.y17_c01397{bottom:213.558000px;}
.y16_c01397{bottom:229.996500px;}
.y15_c01397{bottom:246.435000px;}
.y14_c01397{bottom:262.873500px;}
.y13_c01397{bottom:279.310500px;}
.y12_c01397{bottom:295.749000px;}
.y11_c01397{bottom:312.187500px;}
.y10_c01397{bottom:328.626000px;}
.yf_c01397{bottom:345.064500px;}
.ye_c01397{bottom:377.941500px;}
.yd_c01397{bottom:410.818500px;}
.yc_c01397{bottom:426.883500px;}
.yb_c01397{bottom:474.238500px;}
.ya_c01397{bottom:492.171000px;}
.y9_c01397{bottom:510.103500px;}
.y8_c01397{bottom:528.037500px;}
.y7_c01397{bottom:545.970000px;}
.y6_c01397{bottom:572.727000px;}
.y5_c01397{bottom:599.484000px;}
.y4_c01397{bottom:626.241000px;}
.y3_c01397{bottom:652.999500px;}
.y2_c01397{bottom:695.130000px;}
.y1_c01397{bottom:1159.863000px;}
.h6_c01397{height:35.190766px;}
.h2_c01397{height:36.007158px;}
.h4_c01397{height:40.511979px;}
.h5_c01397{height:52.332837px;}
.h3_c01397{height:58.337477px;}
.h0_c01397{height:1262.835000px;}
.h1_c01397{height:1263.000000px;}
.w0_c01397{width:892.920000px;}
.w1_c01397{width:893.250000px;}
.x0_c01397{left:0.000000px;}
.x2_c01397{left:127.558500px;}
.x3_c01397{left:137.122500px;}
.x1_c01397{left:177.007500px;}
.x4_c01397{left:196.948500px;}
.x5_c01397{left:435.249000px;}
@media print{
.v0_c01397{vertical-align:0.000000pt;}
.ls3_c01397{letter-spacing:0.000000pt;}
.ls0_c01397{letter-spacing:0.078221pt;}
.ls2_c01397{letter-spacing:0.087539pt;}
.ls1_c01397{letter-spacing:0.092873pt;}
.ws8_c01397{word-spacing:-29.967501pt;}
.ws0_c01397{word-spacing:-23.622682pt;}
.wsd_c01397{word-spacing:-23.544461pt;}
.ws5_c01397{word-spacing:-16.684034pt;}
.wsa_c01397{word-spacing:-15.780758pt;}
.wsb_c01397{word-spacing:-13.761671pt;}
.ws4_c01397{word-spacing:-13.283467pt;}
.ws7_c01397{word-spacing:-12.805262pt;}
.ws9_c01397{word-spacing:-11.370647pt;}
.ws2_c01397{word-spacing:-8.878599pt;}
.ws3_c01397{word-spacing:-8.877777pt;}
.ws6_c01397{word-spacing:-1.082795pt;}
.ws10_c01397{word-spacing:0.000000pt;}
.wse_c01397{word-spacing:0.039110pt;}
.ws11_c01397{word-spacing:0.050460pt;}
.wsc_c01397{word-spacing:0.156442pt;}
.ws12_c01397{word-spacing:0.189730pt;}
.wsf_c01397{word-spacing:0.195063pt;}
.ws1_c01397{word-spacing:38.256533pt;}
._3_c01397{margin-left:-3.931906pt;}
._1_c01397{margin-left:-2.830983pt;}
._0_c01397{margin-left:-1.377235pt;}
._8_c01397{width:0.893988pt;}
._2_c01397{width:17.720725pt;}
._6_c01397{width:20.244003pt;}
._7_c01397{width:26.741223pt;}
._4_c01397{width:28.850857pt;}
._5_c01397{width:33.911716pt;}
.fs0_c01397{font-size:39.110400pt;}
.fs2_c01397{font-size:53.133867pt;}
.fs1_c01397{font-size:76.513067pt;}
.y0_c01397{bottom:0.000000pt;}
.y1e_c01397{bottom:39.333333pt;}
.y1d_c01397{bottom:72.934667pt;}
.y1c_c01397{bottom:102.157333pt;}
.y1b_c01397{bottom:116.769333pt;}
.y1a_c01397{bottom:131.381333pt;}
.y19_c01397{bottom:160.605333pt;}
.y18_c01397{bottom:175.217333pt;}
.y17_c01397{bottom:189.829333pt;}
.y16_c01397{bottom:204.441333pt;}
.y15_c01397{bottom:219.053333pt;}
.y14_c01397{bottom:233.665333pt;}
.y13_c01397{bottom:248.276000pt;}
.y12_c01397{bottom:262.888000pt;}
.y11_c01397{bottom:277.500000pt;}
.y10_c01397{bottom:292.112000pt;}
.yf_c01397{bottom:306.724000pt;}
.ye_c01397{bottom:335.948000pt;}
.yd_c01397{bottom:365.172000pt;}
.yc_c01397{bottom:379.452000pt;}
.yb_c01397{bottom:421.545333pt;}
.ya_c01397{bottom:437.485333pt;}
.y9_c01397{bottom:453.425333pt;}
.y8_c01397{bottom:469.366667pt;}
.y7_c01397{bottom:485.306667pt;}
.y6_c01397{bottom:509.090667pt;}
.y5_c01397{bottom:532.874667pt;}
.y4_c01397{bottom:556.658667pt;}
.y3_c01397{bottom:580.444000pt;}
.y2_c01397{bottom:617.893333pt;}
.y1_c01397{bottom:1030.989333pt;}
.h6_c01397{height:31.280681pt;}
.h2_c01397{height:32.006363pt;}
.h4_c01397{height:36.010648pt;}
.h5_c01397{height:46.518078pt;}
.h3_c01397{height:51.855535pt;}
.h0_c01397{height:1122.520000pt;}
.h1_c01397{height:1122.666667pt;}
.w0_c01397{width:793.706667pt;}
.w1_c01397{width:794.000000pt;}
.x0_c01397{left:0.000000pt;}
.x2_c01397{left:113.385333pt;}
.x3_c01397{left:121.886667pt;}
.x1_c01397{left:157.340000pt;}
.x4_c01397{left:175.065333pt;}
.x5_c01397{left:386.888000pt;}
}





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

.ir_c01398:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01398;src:url('chunks/assets/font_373dd70bebf89a6cabc8c287.woff2')format("woff");}.ff1_c01398{font-family:ff1_c01398;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01398;src:url('chunks/assets/font_8138e3443328b97eae51f97a.woff2')format("woff");}.ff2_c01398{font-family:ff2_c01398;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01398;src:url('chunks/assets/font_ec594cdbe0ed4e7057a73ca9.woff2')format("woff");}.ff3_c01398{font-family:ff3_c01398;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01398;src:url('chunks/assets/font_489fdb5919bab4cbb8243494.woff2')format("woff");}.ff4_c01398{font-family:ff4_c01398;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01398;src:url('chunks/assets/font_c7393d33150a10ba8894b676.woff2')format("woff");}.ff5_c01398{font-family:ff5_c01398;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01398{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01398{vertical-align:0.000000px;}
.ls3_c01398{letter-spacing:0.000000px;}
.ls0_c01398{letter-spacing:0.087998px;}
.ls1_c01398{letter-spacing:0.098482px;}
.ls2_c01398{letter-spacing:0.104482px;}
.sc__c01398{text-shadow:none;}
.sc0_c01398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01398{-webkit-text-stroke:0px transparent;}
.sc0_c01398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01398{word-spacing:-33.713438px;}
.ws0_c01398{word-spacing:-26.575517px;}
.ws1_c01398{word-spacing:-26.487518px;}
.ws6_c01398{word-spacing:-18.769538px;}
.wsb_c01398{word-spacing:-17.753353px;}
.wsc_c01398{word-spacing:-15.481880px;}
.ws5_c01398{word-spacing:-14.943900px;}
.ws8_c01398{word-spacing:-14.405920px;}
.wsa_c01398{word-spacing:-12.791978px;}
.ws3_c01398{word-spacing:-9.988424px;}
.ws4_c01398{word-spacing:-9.987499px;}
.ws7_c01398{word-spacing:-1.218144px;}
.ws10_c01398{word-spacing:0.000000px;}
.wse_c01398{word-spacing:0.043999px;}
.ws11_c01398{word-spacing:0.056767px;}
.wsd_c01398{word-spacing:0.175997px;}
.wsf_c01398{word-spacing:0.219446px;}
.ws2_c01398{word-spacing:43.038600px;}
._4_c01398{margin-left:-4.064741px;}
._6_c01398{margin-left:-2.988780px;}
._1_c01398{margin-left:-1.075961px;}
._8_c01398{width:1.005737px;}
._0_c01398{width:19.935816px;}
._5_c01398{width:22.415850px;}
._7_c01398{width:29.887800px;}
._2_c01398{width:33.059746px;}
._3_c01398{width:38.150681px;}
.fc5_c01398{color:rgb(0,0,207);}
.fc6_c01398{color:rgb(6,69,173);}
.fc4_c01398{color:rgb(207,92,0);}
.fc3_c01398{color:rgb(79,153,5);}
.fc2_c01398{color:rgb(33,74,135);}
.fc1_c01398{color:rgb(143,89,3);}
.fc0_c01398{color:rgb(0,0,0);}
.fs0_c01398{font-size:43.999200px;}
.fs2_c01398{font-size:59.775600px;}
.fs1_c01398{font-size:86.077200px;}
.y0_c01398{bottom:0.000000px;}
.y20_c01398{bottom:44.250000px;}
.y1f_c01398{bottom:82.051500px;}
.y1e_c01398{bottom:98.490000px;}
.y1d_c01398{bottom:114.927000px;}
.y1c_c01398{bottom:131.365500px;}
.y1b_c01398{bottom:147.804000px;}
.y1a_c01398{bottom:164.242500px;}
.y19_c01398{bottom:180.681000px;}
.y18_c01398{bottom:197.119500px;}
.y17_c01398{bottom:229.996500px;}
.y16_c01398{bottom:262.873500px;}
.y15_c01398{bottom:278.937000px;}
.y14_c01398{bottom:326.293500px;}
.y13_c01398{bottom:344.226000px;}
.y12_c01398{bottom:362.158500px;}
.y11_c01398{bottom:380.091000px;}
.y10_c01398{bottom:398.025000px;}
.yf_c01398{bottom:424.782000px;}
.ye_c01398{bottom:451.539000px;}
.yd_c01398{bottom:478.296000px;}
.yc_c01398{bottom:505.054500px;}
.yb_c01398{bottom:547.183500px;}
.ya_c01398{bottom:1011.918000px;}
.y9_c01398{bottom:1028.356500px;}
.y8_c01398{bottom:1044.795000px;}
.y7_c01398{bottom:1061.232000px;}
.y6_c01398{bottom:1077.670500px;}
.y5_c01398{bottom:1094.109000px;}
.y4_c01398{bottom:1110.547500px;}
.y3_c01398{bottom:1126.986000px;}
.y2_c01398{bottom:1143.424500px;}
.y1_c01398{bottom:1159.863000px;}
.h6_c01398{height:35.190766px;}
.h2_c01398{height:36.007158px;}
.h4_c01398{height:40.511979px;}
.h5_c01398{height:52.332837px;}
.h3_c01398{height:58.337477px;}
.h0_c01398{height:1262.835000px;}
.h1_c01398{height:1263.000000px;}
.w0_c01398{width:892.920000px;}
.w1_c01398{width:893.250000px;}
.x0_c01398{left:0.000000px;}
.x3_c01398{left:127.558500px;}
.x1_c01398{left:137.122500px;}
.x2_c01398{left:177.007500px;}
.x4_c01398{left:196.948500px;}
.x5_c01398{left:435.249000px;}
@media print{
.v0_c01398{vertical-align:0.000000pt;}
.ls3_c01398{letter-spacing:0.000000pt;}
.ls0_c01398{letter-spacing:0.078221pt;}
.ls1_c01398{letter-spacing:0.087539pt;}
.ls2_c01398{letter-spacing:0.092873pt;}
.ws9_c01398{word-spacing:-29.967501pt;}
.ws0_c01398{word-spacing:-23.622682pt;}
.ws1_c01398{word-spacing:-23.544461pt;}
.ws6_c01398{word-spacing:-16.684034pt;}
.wsb_c01398{word-spacing:-15.780758pt;}
.wsc_c01398{word-spacing:-13.761671pt;}
.ws5_c01398{word-spacing:-13.283467pt;}
.ws8_c01398{word-spacing:-12.805262pt;}
.wsa_c01398{word-spacing:-11.370647pt;}
.ws3_c01398{word-spacing:-8.878599pt;}
.ws4_c01398{word-spacing:-8.877777pt;}
.ws7_c01398{word-spacing:-1.082795pt;}
.ws10_c01398{word-spacing:0.000000pt;}
.wse_c01398{word-spacing:0.039110pt;}
.ws11_c01398{word-spacing:0.050460pt;}
.wsd_c01398{word-spacing:0.156442pt;}
.wsf_c01398{word-spacing:0.195063pt;}
.ws2_c01398{word-spacing:38.256533pt;}
._4_c01398{margin-left:-3.613103pt;}
._6_c01398{margin-left:-2.656693pt;}
._1_c01398{margin-left:-0.956410pt;}
._8_c01398{width:0.893988pt;}
._0_c01398{width:17.720725pt;}
._5_c01398{width:19.925200pt;}
._7_c01398{width:26.566933pt;}
._2_c01398{width:29.386441pt;}
._3_c01398{width:33.911716pt;}
.fs0_c01398{font-size:39.110400pt;}
.fs2_c01398{font-size:53.133867pt;}
.fs1_c01398{font-size:76.513067pt;}
.y0_c01398{bottom:0.000000pt;}
.y20_c01398{bottom:39.333333pt;}
.y1f_c01398{bottom:72.934667pt;}
.y1e_c01398{bottom:87.546667pt;}
.y1d_c01398{bottom:102.157333pt;}
.y1c_c01398{bottom:116.769333pt;}
.y1b_c01398{bottom:131.381333pt;}
.y1a_c01398{bottom:145.993333pt;}
.y19_c01398{bottom:160.605333pt;}
.y18_c01398{bottom:175.217333pt;}
.y17_c01398{bottom:204.441333pt;}
.y16_c01398{bottom:233.665333pt;}
.y15_c01398{bottom:247.944000pt;}
.y14_c01398{bottom:290.038667pt;}
.y13_c01398{bottom:305.978667pt;}
.y12_c01398{bottom:321.918667pt;}
.y11_c01398{bottom:337.858667pt;}
.y10_c01398{bottom:353.800000pt;}
.yf_c01398{bottom:377.584000pt;}
.ye_c01398{bottom:401.368000pt;}
.yd_c01398{bottom:425.152000pt;}
.yc_c01398{bottom:448.937333pt;}
.yb_c01398{bottom:486.385333pt;}
.ya_c01398{bottom:899.482667pt;}
.y9_c01398{bottom:914.094667pt;}
.y8_c01398{bottom:928.706667pt;}
.y7_c01398{bottom:943.317333pt;}
.y6_c01398{bottom:957.929333pt;}
.y5_c01398{bottom:972.541333pt;}
.y4_c01398{bottom:987.153333pt;}
.y3_c01398{bottom:1001.765333pt;}
.y2_c01398{bottom:1016.377333pt;}
.y1_c01398{bottom:1030.989333pt;}
.h6_c01398{height:31.280681pt;}
.h2_c01398{height:32.006363pt;}
.h4_c01398{height:36.010648pt;}
.h5_c01398{height:46.518078pt;}
.h3_c01398{height:51.855535pt;}
.h0_c01398{height:1122.520000pt;}
.h1_c01398{height:1122.666667pt;}
.w0_c01398{width:793.706667pt;}
.w1_c01398{width:794.000000pt;}
.x0_c01398{left:0.000000pt;}
.x3_c01398{left:113.385333pt;}
.x1_c01398{left:121.886667pt;}
.x2_c01398{left:157.340000pt;}
.x4_c01398{left:175.065333pt;}
.x5_c01398{left:386.888000pt;}
}





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

.ir_c01399:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01399;src:url('chunks/assets/font_88c1f2f4e70a616d42a344a7.woff2')format("woff");}.ff1_c01399{font-family:ff1_c01399;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01399;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01399{font-family:ff2_c01399;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01399;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff3_c01399{font-family:ff3_c01399;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01399;src:url('chunks/assets/font_3969d5941995751f1d0a3d12.woff2')format("woff");}.ff4_c01399{font-family:ff4_c01399;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01399;src:url('chunks/assets/font_9fa614f9bf12c8c57868cc2e.woff2')format("woff");}.ff5_c01399{font-family:ff5_c01399;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01399{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01399{vertical-align:0.000000px;}
.ls3_c01399{letter-spacing:0.000000px;}
.ls0_c01399{letter-spacing:0.087998px;}
.ls2_c01399{letter-spacing:0.098482px;}
.ls1_c01399{letter-spacing:0.104482px;}
.sc__c01399{text-shadow:none;}
.sc0_c01399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01399{-webkit-text-stroke:0px transparent;}
.sc0_c01399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01399{word-spacing:-33.713438px;}
.ws1_c01399{word-spacing:-26.575517px;}
.ws2_c01399{word-spacing:-26.487518px;}
.wsc_c01399{word-spacing:-20.084602px;}
.ws13_c01399{word-spacing:-19.546621px;}
.wsa_c01399{word-spacing:-18.769538px;}
.ws11_c01399{word-spacing:-18.470660px;}
.wse_c01399{word-spacing:-18.351109px;}
.wsb_c01399{word-spacing:-16.318739px;}
.ws9_c01399{word-spacing:-16.079636px;}
.ws12_c01399{word-spacing:-12.313774px;}
.ws8_c01399{word-spacing:-12.253998px;}
.ws10_c01399{word-spacing:-11.113366px;}
.ws6_c01399{word-spacing:-9.988424px;}
.ws7_c01399{word-spacing:-9.987499px;}
.wsd_c01399{word-spacing:-9.096144px;}
.ws0_c01399{word-spacing:0.000000px;}
.ws3_c01399{word-spacing:0.043999px;}
.ws14_c01399{word-spacing:0.175997px;}
.ws4_c01399{word-spacing:0.213446px;}
.ws15_c01399{word-spacing:0.219446px;}
.ws5_c01399{word-spacing:43.038600px;}
._3_c01399{margin-left:-4.124516px;}
._8_c01399{margin-left:-3.048556px;}
._4_c01399{margin-left:-1.075961px;}
._0_c01399{width:1.041538px;}
._2_c01399{width:19.289339px;}
._5_c01399{width:21.302332px;}
._7_c01399{width:23.013606px;}
._1_c01399{width:25.339914px;}
._6_c01399{width:39.392120px;}
.fc5_c01399{color:rgb(0,0,207);}
.fc4_c01399{color:rgb(79,153,5);}
.fc6_c01399{color:rgb(6,69,173);}
.fc3_c01399{color:rgb(207,92,0);}
.fc2_c01399{color:rgb(0,0,0);}
.fc1_c01399{color:rgb(143,89,3);}
.fc0_c01399{color:rgb(33,74,135);}
.fs0_c01399{font-size:43.999200px;}
.fs2_c01399{font-size:59.775600px;}
.fs1_c01399{font-size:86.077200px;}
.y0_c01399{bottom:0.000000px;}
.y20_c01399{bottom:44.250000px;}
.y1f_c01399{bottom:82.051500px;}
.y1e_c01399{bottom:98.115000px;}
.y1d_c01399{bottom:144.181500px;}
.y1c_c01399{bottom:162.114000px;}
.y1b_c01399{bottom:180.046500px;}
.y1a_c01399{bottom:197.979000px;}
.y19_c01399{bottom:215.911500px;}
.y18_c01399{bottom:242.454000px;}
.y17_c01399{bottom:260.386500px;}
.y16_c01399{bottom:286.929000px;}
.y15_c01399{bottom:304.861500px;}
.y14_c01399{bottom:331.404000px;}
.y13_c01399{bottom:357.946500px;}
.y12_c01399{bottom:399.861000px;}
.y11_c01399{bottom:863.973000px;}
.y10_c01399{bottom:880.411500px;}
.yf_c01399{bottom:896.848500px;}
.ye_c01399{bottom:913.287000px;}
.yd_c01399{bottom:929.725500px;}
.yc_c01399{bottom:946.164000px;}
.yb_c01399{bottom:962.602500px;}
.ya_c01399{bottom:979.041000px;}
.y9_c01399{bottom:995.479500px;}
.y8_c01399{bottom:1011.918000px;}
.y7_c01399{bottom:1028.356500px;}
.y6_c01399{bottom:1061.232000px;}
.y5_c01399{bottom:1077.670500px;}
.y4_c01399{bottom:1094.109000px;}
.y3_c01399{bottom:1126.986000px;}
.y2_c01399{bottom:1143.424500px;}
.y1_c01399{bottom:1159.863000px;}
.h3_c01399{height:35.190766px;}
.h2_c01399{height:36.007158px;}
.h5_c01399{height:40.511979px;}
.h6_c01399{height:52.332837px;}
.h4_c01399{height:58.337477px;}
.h0_c01399{height:1262.835000px;}
.h1_c01399{height:1263.000000px;}
.w0_c01399{width:892.920000px;}
.w1_c01399{width:893.250000px;}
.x0_c01399{left:0.000000px;}
.x4_c01399{left:127.558500px;}
.x2_c01399{left:137.122500px;}
.x3_c01399{left:177.007500px;}
.x1_c01399{left:196.948500px;}
.x5_c01399{left:435.249000px;}
@media print{
.v0_c01399{vertical-align:0.000000pt;}
.ls3_c01399{letter-spacing:0.000000pt;}
.ls0_c01399{letter-spacing:0.078221pt;}
.ls2_c01399{letter-spacing:0.087539pt;}
.ls1_c01399{letter-spacing:0.092873pt;}
.wsf_c01399{word-spacing:-29.967501pt;}
.ws1_c01399{word-spacing:-23.622682pt;}
.ws2_c01399{word-spacing:-23.544461pt;}
.wsc_c01399{word-spacing:-17.852979pt;}
.ws13_c01399{word-spacing:-17.374774pt;}
.wsa_c01399{word-spacing:-16.684034pt;}
.ws11_c01399{word-spacing:-16.418365pt;}
.wse_c01399{word-spacing:-16.312097pt;}
.wsb_c01399{word-spacing:-14.505546pt;}
.ws9_c01399{word-spacing:-14.293010pt;}
.ws12_c01399{word-spacing:-10.945577pt;}
.ws8_c01399{word-spacing:-10.892443pt;}
.ws10_c01399{word-spacing:-9.878547pt;}
.ws6_c01399{word-spacing:-8.878599pt;}
.ws7_c01399{word-spacing:-8.877777pt;}
.wsd_c01399{word-spacing:-8.085461pt;}
.ws0_c01399{word-spacing:0.000000pt;}
.ws3_c01399{word-spacing:0.039110pt;}
.ws14_c01399{word-spacing:0.156442pt;}
.ws4_c01399{word-spacing:0.189730pt;}
.ws15_c01399{word-spacing:0.195063pt;}
.ws5_c01399{word-spacing:38.256533pt;}
._3_c01399{margin-left:-3.666237pt;}
._8_c01399{margin-left:-2.709827pt;}
._4_c01399{margin-left:-0.956410pt;}
._0_c01399{width:0.925811pt;}
._2_c01399{width:17.146079pt;}
._5_c01399{width:18.935406pt;}
._7_c01399{width:20.456539pt;}
._1_c01399{width:22.524368pt;}
._6_c01399{width:35.015218pt;}
.fs0_c01399{font-size:39.110400pt;}
.fs2_c01399{font-size:53.133867pt;}
.fs1_c01399{font-size:76.513067pt;}
.y0_c01399{bottom:0.000000pt;}
.y20_c01399{bottom:39.333333pt;}
.y1f_c01399{bottom:72.934667pt;}
.y1e_c01399{bottom:87.213333pt;}
.y1d_c01399{bottom:128.161333pt;}
.y1c_c01399{bottom:144.101333pt;}
.y1b_c01399{bottom:160.041333pt;}
.y1a_c01399{bottom:175.981333pt;}
.y19_c01399{bottom:191.921333pt;}
.y18_c01399{bottom:215.514667pt;}
.y17_c01399{bottom:231.454667pt;}
.y16_c01399{bottom:255.048000pt;}
.y15_c01399{bottom:270.988000pt;}
.y14_c01399{bottom:294.581333pt;}
.y13_c01399{bottom:318.174667pt;}
.y12_c01399{bottom:355.432000pt;}
.y11_c01399{bottom:767.976000pt;}
.y10_c01399{bottom:782.588000pt;}
.yf_c01399{bottom:797.198667pt;}
.ye_c01399{bottom:811.810667pt;}
.yd_c01399{bottom:826.422667pt;}
.yc_c01399{bottom:841.034667pt;}
.yb_c01399{bottom:855.646667pt;}
.ya_c01399{bottom:870.258667pt;}
.y9_c01399{bottom:884.870667pt;}
.y8_c01399{bottom:899.482667pt;}
.y7_c01399{bottom:914.094667pt;}
.y6_c01399{bottom:943.317333pt;}
.y5_c01399{bottom:957.929333pt;}
.y4_c01399{bottom:972.541333pt;}
.y3_c01399{bottom:1001.765333pt;}
.y2_c01399{bottom:1016.377333pt;}
.y1_c01399{bottom:1030.989333pt;}
.h3_c01399{height:31.280681pt;}
.h2_c01399{height:32.006363pt;}
.h5_c01399{height:36.010648pt;}
.h6_c01399{height:46.518078pt;}
.h4_c01399{height:51.855535pt;}
.h0_c01399{height:1122.520000pt;}
.h1_c01399{height:1122.666667pt;}
.w0_c01399{width:793.706667pt;}
.w1_c01399{width:794.000000pt;}
.x0_c01399{left:0.000000pt;}
.x4_c01399{left:113.385333pt;}
.x2_c01399{left:121.886667pt;}
.x3_c01399{left:157.340000pt;}
.x1_c01399{left:175.065333pt;}
.x5_c01399{left:386.888000pt;}
}





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

.ir_c01400:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01400 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01400.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01400;src:url('chunks/assets/font_a200d5fc9ec400b54edf2777.woff2')format("woff");}.ff1_c01400{font-family:ff1_c01400;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01400;src:url('chunks/assets/font_f7995a453c63235b81f5b4e2.woff2')format("woff");}.ff2_c01400{font-family:ff2_c01400;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01400;src:url('chunks/assets/font_8253ebe102558a995fa5d8b5.woff2')format("woff");}.ff3_c01400{font-family:ff3_c01400;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01400;src:url('chunks/assets/font_332dfef0b6069c7cc00bc80c.woff2')format("woff");}.ff4_c01400{font-family:ff4_c01400;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01400{vertical-align:0.000000px;}
.ls3_c01400{letter-spacing:0.000000px;}
.ls0_c01400{letter-spacing:0.087998px;}
.ls1_c01400{letter-spacing:0.098482px;}
.ls2_c01400{letter-spacing:0.104482px;}
.sc__c01400{text-shadow:none;}
.sc0_c01400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01400{-webkit-text-stroke:0px transparent;}
.sc0_c01400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01400{word-spacing:-26.575517px;}
.ws4_c01400{word-spacing:-26.487518px;}
.ws0_c01400{word-spacing:0.000000px;}
.ws3_c01400{word-spacing:0.043999px;}
.ws2_c01400{word-spacing:0.056767px;}
.ws5_c01400{word-spacing:0.213446px;}
._0_c01400{width:1.042723px;}
.fc5_c01400{color:rgb(207,92,0);}
.fc4_c01400{color:rgb(0,0,207);}
.fc3_c01400{color:rgb(79,153,5);}
.fc2_c01400{color:rgb(33,74,135);}
.fc1_c01400{color:rgb(0,0,0);}
.fc0_c01400{color:rgb(143,89,3);}
.fs0_c01400{font-size:43.999200px;}
.fs1_c01400{font-size:59.775600px;}
.y0_c01400{bottom:0.000000px;}
.y2e_c01400{bottom:44.250000px;}
.y2d_c01400{bottom:255.753000px;}
.y2c_c01400{bottom:272.191500px;}
.y2b_c01400{bottom:288.630000px;}
.y2a_c01400{bottom:305.068500px;}
.y29_c01400{bottom:321.507000px;}
.y28_c01400{bottom:337.945500px;}
.y27_c01400{bottom:354.384000px;}
.y26_c01400{bottom:370.822500px;}
.y25_c01400{bottom:387.259500px;}
.y24_c01400{bottom:403.698000px;}
.y23_c01400{bottom:420.136500px;}
.y22_c01400{bottom:453.013500px;}
.y21_c01400{bottom:469.452000px;}
.y20_c01400{bottom:485.890500px;}
.y1f_c01400{bottom:518.767500px;}
.y1e_c01400{bottom:535.206000px;}
.y1d_c01400{bottom:568.081500px;}
.y1c_c01400{bottom:584.520000px;}
.y1b_c01400{bottom:600.958500px;}
.y1a_c01400{bottom:633.835500px;}
.y19_c01400{bottom:650.274000px;}
.y18_c01400{bottom:666.712500px;}
.y17_c01400{bottom:699.589500px;}
.y16_c01400{bottom:716.028000px;}
.y15_c01400{bottom:732.465000px;}
.y14_c01400{bottom:748.903500px;}
.y13_c01400{bottom:765.342000px;}
.y12_c01400{bottom:781.780500px;}
.y11_c01400{bottom:798.219000px;}
.y10_c01400{bottom:814.657500px;}
.yf_c01400{bottom:831.096000px;}
.ye_c01400{bottom:847.534500px;}
.yd_c01400{bottom:863.973000px;}
.yc_c01400{bottom:913.287000px;}
.yb_c01400{bottom:929.725500px;}
.ya_c01400{bottom:946.164000px;}
.y9_c01400{bottom:962.602500px;}
.y8_c01400{bottom:979.041000px;}
.y7_c01400{bottom:995.479500px;}
.y6_c01400{bottom:1011.918000px;}
.y5_c01400{bottom:1028.356500px;}
.y4_c01400{bottom:1044.795000px;}
.y3_c01400{bottom:1061.232000px;}
.y2_c01400{bottom:1077.670500px;}
.y1_c01400{bottom:1126.986000px;}
.h2_c01400{height:35.190766px;}
.h3_c01400{height:36.007158px;}
.h4_c01400{height:52.332837px;}
.h0_c01400{height:1262.835000px;}
.h1_c01400{height:1263.000000px;}
.w0_c01400{width:892.920000px;}
.w1_c01400{width:893.250000px;}
.x0_c01400{left:0.000000px;}
.x1_c01400{left:137.122500px;}
.x3_c01400{left:177.007500px;}
.x2_c01400{left:196.948500px;}
.x4_c01400{left:435.249000px;}
@media print{
.v0_c01400{vertical-align:0.000000pt;}
.ls3_c01400{letter-spacing:0.000000pt;}
.ls0_c01400{letter-spacing:0.078221pt;}
.ls1_c01400{letter-spacing:0.087539pt;}
.ls2_c01400{letter-spacing:0.092873pt;}
.ws1_c01400{word-spacing:-23.622682pt;}
.ws4_c01400{word-spacing:-23.544461pt;}
.ws0_c01400{word-spacing:0.000000pt;}
.ws3_c01400{word-spacing:0.039110pt;}
.ws2_c01400{word-spacing:0.050460pt;}
.ws5_c01400{word-spacing:0.189730pt;}
._0_c01400{width:0.926865pt;}
.fs0_c01400{font-size:39.110400pt;}
.fs1_c01400{font-size:53.133867pt;}
.y0_c01400{bottom:0.000000pt;}
.y2e_c01400{bottom:39.333333pt;}
.y2d_c01400{bottom:227.336000pt;}
.y2c_c01400{bottom:241.948000pt;}
.y2b_c01400{bottom:256.560000pt;}
.y2a_c01400{bottom:271.172000pt;}
.y29_c01400{bottom:285.784000pt;}
.y28_c01400{bottom:300.396000pt;}
.y27_c01400{bottom:315.008000pt;}
.y26_c01400{bottom:329.620000pt;}
.y25_c01400{bottom:344.230667pt;}
.y24_c01400{bottom:358.842667pt;}
.y23_c01400{bottom:373.454667pt;}
.y22_c01400{bottom:402.678667pt;}
.y21_c01400{bottom:417.290667pt;}
.y20_c01400{bottom:431.902667pt;}
.y1f_c01400{bottom:461.126667pt;}
.y1e_c01400{bottom:475.738667pt;}
.y1d_c01400{bottom:504.961333pt;}
.y1c_c01400{bottom:519.573333pt;}
.y1b_c01400{bottom:534.185333pt;}
.y1a_c01400{bottom:563.409333pt;}
.y19_c01400{bottom:578.021333pt;}
.y18_c01400{bottom:592.633333pt;}
.y17_c01400{bottom:621.857333pt;}
.y16_c01400{bottom:636.469333pt;}
.y15_c01400{bottom:651.080000pt;}
.y14_c01400{bottom:665.692000pt;}
.y13_c01400{bottom:680.304000pt;}
.y12_c01400{bottom:694.916000pt;}
.y11_c01400{bottom:709.528000pt;}
.y10_c01400{bottom:724.140000pt;}
.yf_c01400{bottom:738.752000pt;}
.ye_c01400{bottom:753.364000pt;}
.yd_c01400{bottom:767.976000pt;}
.yc_c01400{bottom:811.810667pt;}
.yb_c01400{bottom:826.422667pt;}
.ya_c01400{bottom:841.034667pt;}
.y9_c01400{bottom:855.646667pt;}
.y8_c01400{bottom:870.258667pt;}
.y7_c01400{bottom:884.870667pt;}
.y6_c01400{bottom:899.482667pt;}
.y5_c01400{bottom:914.094667pt;}
.y4_c01400{bottom:928.706667pt;}
.y3_c01400{bottom:943.317333pt;}
.y2_c01400{bottom:957.929333pt;}
.y1_c01400{bottom:1001.765333pt;}
.h2_c01400{height:31.280681pt;}
.h3_c01400{height:32.006363pt;}
.h4_c01400{height:46.518078pt;}
.h0_c01400{height:1122.520000pt;}
.h1_c01400{height:1122.666667pt;}
.w0_c01400{width:793.706667pt;}
.w1_c01400{width:794.000000pt;}
.x0_c01400{left:0.000000pt;}
.x1_c01400{left:121.886667pt;}
.x3_c01400{left:157.340000pt;}
.x2_c01400{left:175.065333pt;}
.x4_c01400{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01401 {
    display:none;
  }
  .loading-indicator_c01401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01401 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01401 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01401" -> "#page-container .classname_c01401")
 */
.pf_c01401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01401 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01401 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01401 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01401 {overflow:visible;}
  }
}
.c_c01401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01401 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01401:after { /* webkit #35443 */
  content: '';
}
.t_c01401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01401 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01401 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01401 { /* info for Javascript */
  display:none;
}
.l_c01401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01401:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01401 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01401.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01401;src:url('chunks/assets/font_8057009819c56e3c0c0e43e5.woff2')format("woff");}.ff1_c01401{font-family:ff1_c01401;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01401;src:url('chunks/assets/font_09e33cc7a38a422abd0f04cd.woff2')format("woff");}.ff2_c01401{font-family:ff2_c01401;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01401;src:url('chunks/assets/font_76ebb86c9e03cccdea824156.woff2')format("woff");}.ff3_c01401{font-family:ff3_c01401;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01401;src:url('chunks/assets/font_2d344bbe653c1ec1293cc3e1.woff2')format("woff");}.ff4_c01401{font-family:ff4_c01401;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01401;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01401{font-family:ff5_c01401;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01401{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01401{vertical-align:0.000000px;}
.ls3_c01401{letter-spacing:0.000000px;}
.ls0_c01401{letter-spacing:0.087998px;}
.ls2_c01401{letter-spacing:0.098482px;}
.ls1_c01401{letter-spacing:0.104482px;}
.sc__c01401{text-shadow:none;}
.sc0_c01401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01401{-webkit-text-stroke:0px transparent;}
.sc0_c01401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01401{word-spacing:-33.713438px;}
.ws2_c01401{word-spacing:-26.575517px;}
.ws10_c01401{word-spacing:-26.487518px;}
.ws5_c01401{word-spacing:-20.263928px;}
.ws7_c01401{word-spacing:-19.785724px;}
.wsd_c01401{word-spacing:-19.008641px;}
.wsc_c01401{word-spacing:-17.155597px;}
.ws4_c01401{word-spacing:-16.498066px;}
.ws6_c01401{word-spacing:-15.960085px;}
.ws9_c01401{word-spacing:-13.808164px;}
.wsb_c01401{word-spacing:-13.748388px;}
.wse_c01401{word-spacing:-12.493100px;}
.ws1_c01401{word-spacing:-9.988424px;}
.ws3_c01401{word-spacing:-9.987499px;}
.ws8_c01401{word-spacing:-0.000144px;}
.ws13_c01401{word-spacing:0.000000px;}
.ws11_c01401{word-spacing:0.043999px;}
.ws14_c01401{word-spacing:0.056767px;}
.wsf_c01401{word-spacing:0.175997px;}
.ws15_c01401{word-spacing:0.213446px;}
.ws12_c01401{word-spacing:0.219446px;}
.ws0_c01401{word-spacing:43.038600px;}
._4_c01401{margin-left:-4.124516px;}
._5_c01401{margin-left:-3.108331px;}
._1_c01401{margin-left:-1.075961px;}
._7_c01401{width:1.005737px;}
._0_c01401{width:19.227982px;}
._3_c01401{width:25.140023px;}
._2_c01401{width:34.935277px;}
._6_c01401{width:38.734589px;}
.fc6_c01401{color:rgb(0,0,207);}
.fc5_c01401{color:rgb(79,153,5);}
.fc3_c01401{color:rgb(33,74,135);}
.fc2_c01401{color:rgb(143,89,3);}
.fc4_c01401{color:rgb(207,92,0);}
.fc1_c01401{color:rgb(6,69,173);}
.fc0_c01401{color:rgb(0,0,0);}
.fs2_c01401{font-size:43.999200px;}
.fs1_c01401{font-size:59.775600px;}
.fs0_c01401{font-size:86.077200px;}
.y0_c01401{bottom:0.000000px;}
.y1f_c01401{bottom:44.250000px;}
.y1e_c01401{bottom:86.982000px;}
.y1d_c01401{bottom:119.859000px;}
.y1c_c01401{bottom:136.297500px;}
.y1b_c01401{bottom:152.736000px;}
.y1a_c01401{bottom:185.613000px;}
.y19_c01401{bottom:202.051500px;}
.y18_c01401{bottom:218.490000px;}
.y17_c01401{bottom:234.927000px;}
.y16_c01401{bottom:251.365500px;}
.y15_c01401{bottom:267.804000px;}
.y14_c01401{bottom:284.242500px;}
.y13_c01401{bottom:300.681000px;}
.y12_c01401{bottom:317.119500px;}
.y11_c01401{bottom:333.558000px;}
.y10_c01401{bottom:349.996500px;}
.yf_c01401{bottom:382.873500px;}
.ye_c01401{bottom:415.749000px;}
.yd_c01401{bottom:431.814000px;}
.yc_c01401{bottom:478.845000px;}
.yb_c01401{bottom:496.777500px;}
.ya_c01401{bottom:514.710000px;}
.y9_c01401{bottom:532.644000px;}
.y8_c01401{bottom:550.576500px;}
.y7_c01401{bottom:577.284000px;}
.y6_c01401{bottom:595.216500px;}
.y5_c01401{bottom:621.925500px;}
.y4_c01401{bottom:639.858000px;}
.y3_c01401{bottom:666.565500px;}
.y2_c01401{bottom:693.274500px;}
.y1_c01401{bottom:735.355500px;}
.h5_c01401{height:35.190766px;}
.h6_c01401{height:36.007158px;}
.h3_c01401{height:40.511979px;}
.h4_c01401{height:52.332837px;}
.h2_c01401{height:58.337477px;}
.h0_c01401{height:1262.835000px;}
.h1_c01401{height:1263.000000px;}
.w0_c01401{width:892.920000px;}
.w1_c01401{width:893.250000px;}
.x0_c01401{left:0.000000px;}
.x1_c01401{left:127.558500px;}
.x2_c01401{left:137.122500px;}
.x3_c01401{left:196.948500px;}
.x4_c01401{left:435.249000px;}
@media print{
.v0_c01401{vertical-align:0.000000pt;}
.ls3_c01401{letter-spacing:0.000000pt;}
.ls0_c01401{letter-spacing:0.078221pt;}
.ls2_c01401{letter-spacing:0.087539pt;}
.ls1_c01401{letter-spacing:0.092873pt;}
.wsa_c01401{word-spacing:-29.967501pt;}
.ws2_c01401{word-spacing:-23.622682pt;}
.ws10_c01401{word-spacing:-23.544461pt;}
.ws5_c01401{word-spacing:-18.012381pt;}
.ws7_c01401{word-spacing:-17.587310pt;}
.wsd_c01401{word-spacing:-16.896570pt;}
.wsc_c01401{word-spacing:-15.249420pt;}
.ws4_c01401{word-spacing:-14.664947pt;}
.ws6_c01401{word-spacing:-14.186742pt;}
.ws9_c01401{word-spacing:-12.273923pt;}
.wsb_c01401{word-spacing:-12.220789pt;}
.wse_c01401{word-spacing:-11.104978pt;}
.ws1_c01401{word-spacing:-8.878599pt;}
.ws3_c01401{word-spacing:-8.877777pt;}
.ws8_c01401{word-spacing:-0.000128pt;}
.ws13_c01401{word-spacing:0.000000pt;}
.ws11_c01401{word-spacing:0.039110pt;}
.ws14_c01401{word-spacing:0.050460pt;}
.wsf_c01401{word-spacing:0.156442pt;}
.ws15_c01401{word-spacing:0.189730pt;}
.ws12_c01401{word-spacing:0.195063pt;}
.ws0_c01401{word-spacing:38.256533pt;}
._4_c01401{margin-left:-3.666237pt;}
._5_c01401{margin-left:-2.762961pt;}
._1_c01401{margin-left:-0.956410pt;}
._7_c01401{width:0.893988pt;}
._0_c01401{width:17.091539pt;}
._3_c01401{width:22.346687pt;}
._2_c01401{width:31.053580pt;}
._6_c01401{width:34.430746pt;}
.fs2_c01401{font-size:39.110400pt;}
.fs1_c01401{font-size:53.133867pt;}
.fs0_c01401{font-size:76.513067pt;}
.y0_c01401{bottom:0.000000pt;}
.y1f_c01401{bottom:39.333333pt;}
.y1e_c01401{bottom:77.317333pt;}
.y1d_c01401{bottom:106.541333pt;}
.y1c_c01401{bottom:121.153333pt;}
.y1b_c01401{bottom:135.765333pt;}
.y1a_c01401{bottom:164.989333pt;}
.y19_c01401{bottom:179.601333pt;}
.y18_c01401{bottom:194.213333pt;}
.y17_c01401{bottom:208.824000pt;}
.y16_c01401{bottom:223.436000pt;}
.y15_c01401{bottom:238.048000pt;}
.y14_c01401{bottom:252.660000pt;}
.y13_c01401{bottom:267.272000pt;}
.y12_c01401{bottom:281.884000pt;}
.y11_c01401{bottom:296.496000pt;}
.y10_c01401{bottom:311.108000pt;}
.yf_c01401{bottom:340.332000pt;}
.ye_c01401{bottom:369.554667pt;}
.yd_c01401{bottom:383.834667pt;}
.yc_c01401{bottom:425.640000pt;}
.yb_c01401{bottom:441.580000pt;}
.ya_c01401{bottom:457.520000pt;}
.y9_c01401{bottom:473.461333pt;}
.y8_c01401{bottom:489.401333pt;}
.y7_c01401{bottom:513.141333pt;}
.y6_c01401{bottom:529.081333pt;}
.y5_c01401{bottom:552.822667pt;}
.y4_c01401{bottom:568.762667pt;}
.y3_c01401{bottom:592.502667pt;}
.y2_c01401{bottom:616.244000pt;}
.y1_c01401{bottom:653.649333pt;}
.h5_c01401{height:31.280681pt;}
.h6_c01401{height:32.006363pt;}
.h3_c01401{height:36.010648pt;}
.h4_c01401{height:46.518078pt;}
.h2_c01401{height:51.855535pt;}
.h0_c01401{height:1122.520000pt;}
.h1_c01401{height:1122.666667pt;}
.w0_c01401{width:793.706667pt;}
.w1_c01401{width:794.000000pt;}
.x0_c01401{left:0.000000pt;}
.x1_c01401{left:113.385333pt;}
.x2_c01401{left:121.886667pt;}
.x3_c01401{left:175.065333pt;}
.x4_c01401{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01402 {
    display:none;
  }
  .loading-indicator_c01402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01402 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01402 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01402" -> "#page-container .classname_c01402")
 */
.pf_c01402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01402 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01402 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01402 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01402 {overflow:visible;}
  }
}
.c_c01402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01402 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01402:after { /* webkit #35443 */
  content: '';
}
.t_c01402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01402 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01402 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01402 { /* info for Javascript */
  display:none;
}
.l_c01402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01402:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01402 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01402.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01402;src:url('chunks/assets/font_a78f17b62efe98ebab761f4f.woff2')format("woff");}.ff1_c01402{font-family:ff1_c01402;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01402;src:url('chunks/assets/font_8138e3443328b97eae51f97a.woff2')format("woff");}.ff2_c01402{font-family:ff2_c01402;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01402;src:url('chunks/assets/font_4d38435cdded606e8573a8e1.woff2')format("woff");}.ff3_c01402{font-family:ff3_c01402;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01402;src:url('chunks/assets/font_bcbbeebc734c4946bbbb0615.woff2')format("woff");}.ff4_c01402{font-family:ff4_c01402;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01402;src:url('chunks/assets/font_adda38f51e7dc9704754ffac.woff2')format("woff");}.ff5_c01402{font-family:ff5_c01402;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01402{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01402{vertical-align:0.000000px;}
.ls3_c01402{letter-spacing:0.000000px;}
.ls0_c01402{letter-spacing:0.087998px;}
.ls1_c01402{letter-spacing:0.098482px;}
.ls2_c01402{letter-spacing:0.104482px;}
.sc__c01402{text-shadow:none;}
.sc0_c01402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01402{-webkit-text-stroke:0px transparent;}
.sc0_c01402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01402{word-spacing:-33.713438px;}
.ws0_c01402{word-spacing:-26.575517px;}
.ws1_c01402{word-spacing:-26.487518px;}
.wsf_c01402{word-spacing:-19.008641px;}
.ws7_c01402{word-spacing:-18.769538px;}
.ws9_c01402{word-spacing:-17.454475px;}
.wse_c01402{word-spacing:-17.155597px;}
.ws6_c01402{word-spacing:-16.318739px;}
.wsb_c01402{word-spacing:-14.406398px;}
.wsd_c01402{word-spacing:-14.405920px;}
.ws8_c01402{word-spacing:-13.628837px;}
.ws5_c01402{word-spacing:-12.493100px;}
.ws3_c01402{word-spacing:-9.988424px;}
.ws4_c01402{word-spacing:-9.987499px;}
.wsa_c01402{word-spacing:-1.242144px;}
.ws13_c01402{word-spacing:0.000000px;}
.ws11_c01402{word-spacing:0.043999px;}
.ws14_c01402{word-spacing:0.056767px;}
.ws10_c01402{word-spacing:0.175997px;}
.ws12_c01402{word-spacing:0.219446px;}
.ws2_c01402{word-spacing:43.038600px;}
._5_c01402{margin-left:-3.855510px;}
._3_c01402{margin-left:-1.075961px;}
._8_c01402{width:1.005737px;}
._6_c01402{width:19.845499px;}
._1_c01402{width:22.569437px;}
._2_c01402{width:23.850464px;}
._0_c01402{width:24.871016px;}
._4_c01402{width:33.042703px;}
._7_c01402{width:39.481768px;}
.fc5_c01402{color:rgb(0,0,207);}
.fc6_c01402{color:rgb(6,69,173);}
.fc4_c01402{color:rgb(207,92,0);}
.fc3_c01402{color:rgb(79,153,5);}
.fc2_c01402{color:rgb(33,74,135);}
.fc1_c01402{color:rgb(143,89,3);}
.fc0_c01402{color:rgb(0,0,0);}
.fs0_c01402{font-size:43.999200px;}
.fs2_c01402{font-size:59.775600px;}
.fs1_c01402{font-size:86.077200px;}
.y0_c01402{bottom:0.000000px;}
.y20_c01402{bottom:44.250000px;}
.y1f_c01402{bottom:82.051500px;}
.y1e_c01402{bottom:98.490000px;}
.y1d_c01402{bottom:114.927000px;}
.y1c_c01402{bottom:131.365500px;}
.y1b_c01402{bottom:147.804000px;}
.y1a_c01402{bottom:164.242500px;}
.y19_c01402{bottom:197.119500px;}
.y18_c01402{bottom:229.996500px;}
.y17_c01402{bottom:246.061500px;}
.y16_c01402{bottom:292.110000px;}
.y15_c01402{bottom:310.042500px;}
.y14_c01402{bottom:327.975000px;}
.y13_c01402{bottom:345.907500px;}
.y12_c01402{bottom:363.840000px;}
.y11_c01402{bottom:390.385500px;}
.y10_c01402{bottom:408.318000px;}
.yf_c01402{bottom:434.862000px;}
.ye_c01402{bottom:452.794500px;}
.yd_c01402{bottom:479.338500px;}
.yc_c01402{bottom:505.884000px;}
.yb_c01402{bottom:547.800000px;}
.ya_c01402{bottom:1011.918000px;}
.y9_c01402{bottom:1028.356500px;}
.y8_c01402{bottom:1044.795000px;}
.y7_c01402{bottom:1061.232000px;}
.y6_c01402{bottom:1077.670500px;}
.y5_c01402{bottom:1094.109000px;}
.y4_c01402{bottom:1110.547500px;}
.y3_c01402{bottom:1126.986000px;}
.y2_c01402{bottom:1143.424500px;}
.y1_c01402{bottom:1159.863000px;}
.h6_c01402{height:35.190766px;}
.h2_c01402{height:36.007158px;}
.h4_c01402{height:40.511979px;}
.h5_c01402{height:52.332837px;}
.h3_c01402{height:58.337477px;}
.h0_c01402{height:1262.835000px;}
.h1_c01402{height:1263.000000px;}
.w0_c01402{width:892.920000px;}
.w1_c01402{width:893.250000px;}
.x0_c01402{left:0.000000px;}
.x3_c01402{left:127.558500px;}
.x1_c01402{left:137.122500px;}
.x2_c01402{left:177.007500px;}
.x4_c01402{left:196.948500px;}
.x5_c01402{left:435.249000px;}
@media print{
.v0_c01402{vertical-align:0.000000pt;}
.ls3_c01402{letter-spacing:0.000000pt;}
.ls0_c01402{letter-spacing:0.078221pt;}
.ls1_c01402{letter-spacing:0.087539pt;}
.ls2_c01402{letter-spacing:0.092873pt;}
.wsc_c01402{word-spacing:-29.967501pt;}
.ws0_c01402{word-spacing:-23.622682pt;}
.ws1_c01402{word-spacing:-23.544461pt;}
.wsf_c01402{word-spacing:-16.896570pt;}
.ws7_c01402{word-spacing:-16.684034pt;}
.ws9_c01402{word-spacing:-15.515089pt;}
.wse_c01402{word-spacing:-15.249420pt;}
.ws6_c01402{word-spacing:-14.505546pt;}
.wsb_c01402{word-spacing:-12.805687pt;}
.wsd_c01402{word-spacing:-12.805262pt;}
.ws8_c01402{word-spacing:-12.114522pt;}
.ws5_c01402{word-spacing:-11.104978pt;}
.ws3_c01402{word-spacing:-8.878599pt;}
.ws4_c01402{word-spacing:-8.877777pt;}
.wsa_c01402{word-spacing:-1.104128pt;}
.ws13_c01402{word-spacing:0.000000pt;}
.ws11_c01402{word-spacing:0.039110pt;}
.ws14_c01402{word-spacing:0.050460pt;}
.ws10_c01402{word-spacing:0.156442pt;}
.ws12_c01402{word-spacing:0.195063pt;}
.ws2_c01402{word-spacing:38.256533pt;}
._5_c01402{margin-left:-3.427120pt;}
._3_c01402{margin-left:-0.956410pt;}
._8_c01402{width:0.893988pt;}
._6_c01402{width:17.640444pt;}
._1_c01402{width:20.061722pt;}
._2_c01402{width:21.200413pt;}
._0_c01402{width:22.107570pt;}
._4_c01402{width:29.371292pt;}
._7_c01402{width:35.094905pt;}
.fs0_c01402{font-size:39.110400pt;}
.fs2_c01402{font-size:53.133867pt;}
.fs1_c01402{font-size:76.513067pt;}
.y0_c01402{bottom:0.000000pt;}
.y20_c01402{bottom:39.333333pt;}
.y1f_c01402{bottom:72.934667pt;}
.y1e_c01402{bottom:87.546667pt;}
.y1d_c01402{bottom:102.157333pt;}
.y1c_c01402{bottom:116.769333pt;}
.y1b_c01402{bottom:131.381333pt;}
.y1a_c01402{bottom:145.993333pt;}
.y19_c01402{bottom:175.217333pt;}
.y18_c01402{bottom:204.441333pt;}
.y17_c01402{bottom:218.721333pt;}
.y16_c01402{bottom:259.653333pt;}
.y15_c01402{bottom:275.593333pt;}
.y14_c01402{bottom:291.533333pt;}
.y13_c01402{bottom:307.473333pt;}
.y12_c01402{bottom:323.413333pt;}
.y11_c01402{bottom:347.009333pt;}
.y10_c01402{bottom:362.949333pt;}
.yf_c01402{bottom:386.544000pt;}
.ye_c01402{bottom:402.484000pt;}
.yd_c01402{bottom:426.078667pt;}
.yc_c01402{bottom:449.674667pt;}
.yb_c01402{bottom:486.933333pt;}
.ya_c01402{bottom:899.482667pt;}
.y9_c01402{bottom:914.094667pt;}
.y8_c01402{bottom:928.706667pt;}
.y7_c01402{bottom:943.317333pt;}
.y6_c01402{bottom:957.929333pt;}
.y5_c01402{bottom:972.541333pt;}
.y4_c01402{bottom:987.153333pt;}
.y3_c01402{bottom:1001.765333pt;}
.y2_c01402{bottom:1016.377333pt;}
.y1_c01402{bottom:1030.989333pt;}
.h6_c01402{height:31.280681pt;}
.h2_c01402{height:32.006363pt;}
.h4_c01402{height:36.010648pt;}
.h5_c01402{height:46.518078pt;}
.h3_c01402{height:51.855535pt;}
.h0_c01402{height:1122.520000pt;}
.h1_c01402{height:1122.666667pt;}
.w0_c01402{width:793.706667pt;}
.w1_c01402{width:794.000000pt;}
.x0_c01402{left:0.000000pt;}
.x3_c01402{left:113.385333pt;}
.x1_c01402{left:121.886667pt;}
.x2_c01402{left:157.340000pt;}
.x4_c01402{left:175.065333pt;}
.x5_c01402{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01403 {
    display:none;
  }
  .loading-indicator_c01403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01403" -> "#page-container .classname_c01403")
 */
.pf_c01403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01403 {overflow:visible;}
  }
}
.c_c01403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01403:after { /* webkit #35443 */
  content: '';
}
.t_c01403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01403 { /* info for Javascript */
  display:none;
}
.l_c01403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01403:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01403 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01403.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01403;src:url('chunks/assets/font_4654198e565ed7e285cd513b.woff2')format("woff");}.ff1_c01403{font-family:ff1_c01403;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01403;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01403{font-family:ff2_c01403;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01403;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff3_c01403{font-family:ff3_c01403;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01403;src:url('chunks/assets/font_ae596ccbdef23fae0c3891e0.woff2')format("woff");}.ff4_c01403{font-family:ff4_c01403;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01403;src:url('chunks/assets/font_c6d9feceeb243fe462e3599b.woff2')format("woff");}.ff5_c01403{font-family:ff5_c01403;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01403{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01403{vertical-align:0.000000px;}
.ls3_c01403{letter-spacing:0.000000px;}
.ls0_c01403{letter-spacing:0.087998px;}
.ls1_c01403{letter-spacing:0.098482px;}
.ls2_c01403{letter-spacing:0.104482px;}
.sc__c01403{text-shadow:none;}
.sc0_c01403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01403{-webkit-text-stroke:0px transparent;}
.sc0_c01403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01403{word-spacing:-33.713438px;}
.ws1_c01403{word-spacing:-26.575517px;}
.ws2_c01403{word-spacing:-26.487518px;}
.ws9_c01403{word-spacing:-18.769538px;}
.wse_c01403{word-spacing:-17.753353px;}
.ws8_c01403{word-spacing:-14.943900px;}
.wsb_c01403{word-spacing:-14.405920px;}
.wsd_c01403{word-spacing:-12.791978px;}
.ws6_c01403{word-spacing:-9.988424px;}
.ws7_c01403{word-spacing:-9.987499px;}
.wsa_c01403{word-spacing:-1.218144px;}
.ws0_c01403{word-spacing:0.000000px;}
.ws3_c01403{word-spacing:0.043999px;}
.wsf_c01403{word-spacing:0.175997px;}
.ws4_c01403{word-spacing:0.213446px;}
.ws10_c01403{word-spacing:0.219446px;}
.ws5_c01403{word-spacing:43.038600px;}
._1_c01403{margin-left:-7.833025px;}
._6_c01403{margin-left:-4.064741px;}
._8_c01403{margin-left:-2.988780px;}
._3_c01403{margin-left:-1.075961px;}
._0_c01403{width:1.041538px;}
._2_c01403{width:19.935816px;}
._7_c01403{width:22.415850px;}
._4_c01403{width:33.059746px;}
._5_c01403{width:38.150681px;}
.fc6_c01403{color:rgb(6,69,173);}
.fc5_c01403{color:rgb(207,92,0);}
.fc4_c01403{color:rgb(143,89,3);}
.fc3_c01403{color:rgb(0,0,207);}
.fc2_c01403{color:rgb(0,0,0);}
.fc1_c01403{color:rgb(79,153,5);}
.fc0_c01403{color:rgb(33,74,135);}
.fs0_c01403{font-size:43.999200px;}
.fs2_c01403{font-size:59.775600px;}
.fs1_c01403{font-size:86.077200px;}
.y0_c01403{bottom:0.000000px;}
.y1f_c01403{bottom:44.250000px;}
.y1e_c01403{bottom:98.490000px;}
.y1d_c01403{bottom:114.553500px;}
.y1c_c01403{bottom:162.555000px;}
.y1b_c01403{bottom:180.487500px;}
.y1a_c01403{bottom:198.420000px;}
.y19_c01403{bottom:216.354000px;}
.y18_c01403{bottom:243.219000px;}
.y17_c01403{bottom:270.082500px;}
.y16_c01403{bottom:296.947500px;}
.y15_c01403{bottom:323.812500px;}
.y14_c01403{bottom:366.051000px;}
.y13_c01403{bottom:831.096000px;}
.y12_c01403{bottom:847.534500px;}
.y11_c01403{bottom:863.973000px;}
.y10_c01403{bottom:880.411500px;}
.yf_c01403{bottom:896.848500px;}
.ye_c01403{bottom:913.287000px;}
.yd_c01403{bottom:929.725500px;}
.yc_c01403{bottom:946.164000px;}
.yb_c01403{bottom:962.602500px;}
.ya_c01403{bottom:979.041000px;}
.y9_c01403{bottom:995.479500px;}
.y8_c01403{bottom:1028.356500px;}
.y7_c01403{bottom:1044.795000px;}
.y6_c01403{bottom:1061.232000px;}
.y5_c01403{bottom:1094.109000px;}
.y4_c01403{bottom:1110.547500px;}
.y3_c01403{bottom:1126.986000px;}
.y2_c01403{bottom:1143.424500px;}
.y1_c01403{bottom:1159.863000px;}
.h3_c01403{height:35.190766px;}
.h2_c01403{height:36.007158px;}
.h5_c01403{height:40.511979px;}
.h6_c01403{height:52.332837px;}
.h4_c01403{height:58.337477px;}
.h0_c01403{height:1262.835000px;}
.h1_c01403{height:1263.000000px;}
.w0_c01403{width:892.920000px;}
.w1_c01403{width:893.250000px;}
.x0_c01403{left:0.000000px;}
.x4_c01403{left:127.558500px;}
.x2_c01403{left:137.122500px;}
.x3_c01403{left:177.007500px;}
.x1_c01403{left:196.948500px;}
.x5_c01403{left:435.249000px;}
@media print{
.v0_c01403{vertical-align:0.000000pt;}
.ls3_c01403{letter-spacing:0.000000pt;}
.ls0_c01403{letter-spacing:0.078221pt;}
.ls1_c01403{letter-spacing:0.087539pt;}
.ls2_c01403{letter-spacing:0.092873pt;}
.wsc_c01403{word-spacing:-29.967501pt;}
.ws1_c01403{word-spacing:-23.622682pt;}
.ws2_c01403{word-spacing:-23.544461pt;}
.ws9_c01403{word-spacing:-16.684034pt;}
.wse_c01403{word-spacing:-15.780758pt;}
.ws8_c01403{word-spacing:-13.283467pt;}
.wsb_c01403{word-spacing:-12.805262pt;}
.wsd_c01403{word-spacing:-11.370647pt;}
.ws6_c01403{word-spacing:-8.878599pt;}
.ws7_c01403{word-spacing:-8.877777pt;}
.wsa_c01403{word-spacing:-1.082795pt;}
.ws0_c01403{word-spacing:0.000000pt;}
.ws3_c01403{word-spacing:0.039110pt;}
.wsf_c01403{word-spacing:0.156442pt;}
.ws4_c01403{word-spacing:0.189730pt;}
.ws10_c01403{word-spacing:0.195063pt;}
.ws5_c01403{word-spacing:38.256533pt;}
._1_c01403{margin-left:-6.962689pt;}
._6_c01403{margin-left:-3.613103pt;}
._8_c01403{margin-left:-2.656693pt;}
._3_c01403{margin-left:-0.956410pt;}
._0_c01403{width:0.925811pt;}
._2_c01403{width:17.720725pt;}
._7_c01403{width:19.925200pt;}
._4_c01403{width:29.386441pt;}
._5_c01403{width:33.911716pt;}
.fs0_c01403{font-size:39.110400pt;}
.fs2_c01403{font-size:53.133867pt;}
.fs1_c01403{font-size:76.513067pt;}
.y0_c01403{bottom:0.000000pt;}
.y1f_c01403{bottom:39.333333pt;}
.y1e_c01403{bottom:87.546667pt;}
.y1d_c01403{bottom:101.825333pt;}
.y1c_c01403{bottom:144.493333pt;}
.y1b_c01403{bottom:160.433333pt;}
.y1a_c01403{bottom:176.373333pt;}
.y19_c01403{bottom:192.314667pt;}
.y18_c01403{bottom:216.194667pt;}
.y17_c01403{bottom:240.073333pt;}
.y16_c01403{bottom:263.953333pt;}
.y15_c01403{bottom:287.833333pt;}
.y14_c01403{bottom:325.378667pt;}
.y13_c01403{bottom:738.752000pt;}
.y12_c01403{bottom:753.364000pt;}
.y11_c01403{bottom:767.976000pt;}
.y10_c01403{bottom:782.588000pt;}
.yf_c01403{bottom:797.198667pt;}
.ye_c01403{bottom:811.810667pt;}
.yd_c01403{bottom:826.422667pt;}
.yc_c01403{bottom:841.034667pt;}
.yb_c01403{bottom:855.646667pt;}
.ya_c01403{bottom:870.258667pt;}
.y9_c01403{bottom:884.870667pt;}
.y8_c01403{bottom:914.094667pt;}
.y7_c01403{bottom:928.706667pt;}
.y6_c01403{bottom:943.317333pt;}
.y5_c01403{bottom:972.541333pt;}
.y4_c01403{bottom:987.153333pt;}
.y3_c01403{bottom:1001.765333pt;}
.y2_c01403{bottom:1016.377333pt;}
.y1_c01403{bottom:1030.989333pt;}
.h3_c01403{height:31.280681pt;}
.h2_c01403{height:32.006363pt;}
.h5_c01403{height:36.010648pt;}
.h6_c01403{height:46.518078pt;}
.h4_c01403{height:51.855535pt;}
.h0_c01403{height:1122.520000pt;}
.h1_c01403{height:1122.666667pt;}
.w0_c01403{width:793.706667pt;}
.w1_c01403{width:794.000000pt;}
.x0_c01403{left:0.000000pt;}
.x4_c01403{left:113.385333pt;}
.x2_c01403{left:121.886667pt;}
.x3_c01403{left:157.340000pt;}
.x1_c01403{left:175.065333pt;}
.x5_c01403{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01404 {
    display:none;
  }
  .loading-indicator_c01404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01404 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01404 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01404" -> "#page-container .classname_c01404")
 */
.pf_c01404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01404 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01404 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01404 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01404 {overflow:visible;}
  }
}
.c_c01404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01404 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01404:after { /* webkit #35443 */
  content: '';
}
.t_c01404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01404 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01404 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01404 { /* info for Javascript */
  display:none;
}
.l_c01404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01404:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01404 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01404.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01404;src:url('chunks/assets/font_0c55359f47498f933eff60c2.woff2')format("woff");}.ff1_c01404{font-family:ff1_c01404;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01404;src:url('chunks/assets/font_8253ebe102558a995fa5d8b5.woff2')format("woff");}.ff2_c01404{font-family:ff2_c01404;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01404;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01404{font-family:ff3_c01404;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01404;src:url('chunks/assets/font_b927a53afd686437e3244b1f.woff2')format("woff");}.ff4_c01404{font-family:ff4_c01404;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01404;src:url('chunks/assets/font_d9fa4bf28e4179cdcc706766.woff2')format("woff");}.ff5_c01404{font-family:ff5_c01404;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01404{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01404{vertical-align:0.000000px;}
.ls3_c01404{letter-spacing:0.000000px;}
.ls0_c01404{letter-spacing:0.087998px;}
.ls1_c01404{letter-spacing:0.098482px;}
.ls2_c01404{letter-spacing:0.104482px;}
.sc__c01404{text-shadow:none;}
.sc0_c01404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01404{-webkit-text-stroke:0px transparent;}
.sc0_c01404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01404{word-spacing:-33.713438px;}
.ws0_c01404{word-spacing:-26.575517px;}
.ws4_c01404{word-spacing:-26.487518px;}
.wsc_c01404{word-spacing:-20.443255px;}
.wsa_c01404{word-spacing:-19.367294px;}
.wsd_c01404{word-spacing:-18.769538px;}
.ws12_c01404{word-spacing:-18.470660px;}
.wsf_c01404{word-spacing:-18.351109px;}
.wsb_c01404{word-spacing:-16.617617px;}
.ws9_c01404{word-spacing:-15.541656px;}
.ws11_c01404{word-spacing:-11.113366px;}
.ws7_c01404{word-spacing:-9.988424px;}
.ws8_c01404{word-spacing:-9.987499px;}
.wse_c01404{word-spacing:-9.096144px;}
.ws3_c01404{word-spacing:0.000000px;}
.ws2_c01404{word-spacing:0.043999px;}
.ws1_c01404{word-spacing:0.056767px;}
.ws5_c01404{word-spacing:0.213446px;}
.ws6_c01404{word-spacing:43.038600px;}
._1_c01404{margin-left:-7.833025px;}
._5_c01404{margin-left:-4.661872px;}
._4_c01404{margin-left:-3.227882px;}
._6_c01404{margin-left:-1.075961px;}
._0_c01404{width:1.042723px;}
._3_c01404{width:2.211697px;}
._2_c01404{width:19.651572px;}
._7_c01404{width:21.302332px;}
.fc6_c01404{color:rgb(6,69,173);}
.fc5_c01404{color:rgb(207,92,0);}
.fc4_c01404{color:rgb(0,0,207);}
.fc3_c01404{color:rgb(79,153,5);}
.fc2_c01404{color:rgb(33,74,135);}
.fc1_c01404{color:rgb(143,89,3);}
.fc0_c01404{color:rgb(0,0,0);}
.fs0_c01404{font-size:43.999200px;}
.fs2_c01404{font-size:59.775600px;}
.fs1_c01404{font-size:86.077200px;}
.y0_c01404{bottom:0.000000px;}
.y22_c01404{bottom:44.250000px;}
.y21_c01404{bottom:82.051500px;}
.y20_c01404{bottom:99.984000px;}
.y1f_c01404{bottom:126.823500px;}
.y1e_c01404{bottom:144.757500px;}
.y1d_c01404{bottom:171.597000px;}
.y1c_c01404{bottom:198.438000px;}
.y1b_c01404{bottom:225.277500px;}
.y1a_c01404{bottom:267.492000px;}
.y19_c01404{bottom:732.465000px;}
.y18_c01404{bottom:748.903500px;}
.y17_c01404{bottom:765.342000px;}
.y16_c01404{bottom:781.780500px;}
.y15_c01404{bottom:798.219000px;}
.y14_c01404{bottom:814.657500px;}
.y13_c01404{bottom:831.096000px;}
.y12_c01404{bottom:847.534500px;}
.y11_c01404{bottom:863.973000px;}
.y10_c01404{bottom:880.411500px;}
.yf_c01404{bottom:896.848500px;}
.ye_c01404{bottom:929.725500px;}
.yd_c01404{bottom:946.164000px;}
.yc_c01404{bottom:962.602500px;}
.yb_c01404{bottom:995.479500px;}
.ya_c01404{bottom:1011.918000px;}
.y9_c01404{bottom:1028.356500px;}
.y8_c01404{bottom:1044.795000px;}
.y7_c01404{bottom:1061.232000px;}
.y6_c01404{bottom:1077.670500px;}
.y5_c01404{bottom:1094.109000px;}
.y4_c01404{bottom:1110.547500px;}
.y3_c01404{bottom:1126.986000px;}
.y2_c01404{bottom:1143.424500px;}
.y1_c01404{bottom:1159.863000px;}
.h3_c01404{height:35.190766px;}
.h2_c01404{height:36.007158px;}
.h5_c01404{height:40.511979px;}
.h6_c01404{height:52.332837px;}
.h4_c01404{height:58.337477px;}
.h0_c01404{height:1262.835000px;}
.h1_c01404{height:1263.000000px;}
.w0_c01404{width:892.920000px;}
.w1_c01404{width:893.250000px;}
.x0_c01404{left:0.000000px;}
.x4_c01404{left:127.558500px;}
.x1_c01404{left:137.122500px;}
.x3_c01404{left:177.007500px;}
.x2_c01404{left:196.948500px;}
.x5_c01404{left:435.249000px;}
@media print{
.v0_c01404{vertical-align:0.000000pt;}
.ls3_c01404{letter-spacing:0.000000pt;}
.ls0_c01404{letter-spacing:0.078221pt;}
.ls1_c01404{letter-spacing:0.087539pt;}
.ls2_c01404{letter-spacing:0.092873pt;}
.ws10_c01404{word-spacing:-29.967501pt;}
.ws0_c01404{word-spacing:-23.622682pt;}
.ws4_c01404{word-spacing:-23.544461pt;}
.wsc_c01404{word-spacing:-18.171782pt;}
.wsa_c01404{word-spacing:-17.215373pt;}
.wsd_c01404{word-spacing:-16.684034pt;}
.ws12_c01404{word-spacing:-16.418365pt;}
.wsf_c01404{word-spacing:-16.312097pt;}
.wsb_c01404{word-spacing:-14.771215pt;}
.ws9_c01404{word-spacing:-13.814805pt;}
.ws11_c01404{word-spacing:-9.878547pt;}
.ws7_c01404{word-spacing:-8.878599pt;}
.ws8_c01404{word-spacing:-8.877777pt;}
.wse_c01404{word-spacing:-8.085461pt;}
.ws3_c01404{word-spacing:0.000000pt;}
.ws2_c01404{word-spacing:0.039110pt;}
.ws1_c01404{word-spacing:0.050460pt;}
.ws5_c01404{word-spacing:0.189730pt;}
.ws6_c01404{word-spacing:38.256533pt;}
._1_c01404{margin-left:-6.962689pt;}
._5_c01404{margin-left:-4.143886pt;}
._4_c01404{margin-left:-2.869229pt;}
._6_c01404{margin-left:-0.956410pt;}
._0_c01404{width:0.926865pt;}
._3_c01404{width:1.965953pt;}
._2_c01404{width:17.468064pt;}
._7_c01404{width:18.935406pt;}
.fs0_c01404{font-size:39.110400pt;}
.fs2_c01404{font-size:53.133867pt;}
.fs1_c01404{font-size:76.513067pt;}
.y0_c01404{bottom:0.000000pt;}
.y22_c01404{bottom:39.333333pt;}
.y21_c01404{bottom:72.934667pt;}
.y20_c01404{bottom:88.874667pt;}
.y1f_c01404{bottom:112.732000pt;}
.y1e_c01404{bottom:128.673333pt;}
.y1d_c01404{bottom:152.530667pt;}
.y1c_c01404{bottom:176.389333pt;}
.y1b_c01404{bottom:200.246667pt;}
.y1a_c01404{bottom:237.770667pt;}
.y19_c01404{bottom:651.080000pt;}
.y18_c01404{bottom:665.692000pt;}
.y17_c01404{bottom:680.304000pt;}
.y16_c01404{bottom:694.916000pt;}
.y15_c01404{bottom:709.528000pt;}
.y14_c01404{bottom:724.140000pt;}
.y13_c01404{bottom:738.752000pt;}
.y12_c01404{bottom:753.364000pt;}
.y11_c01404{bottom:767.976000pt;}
.y10_c01404{bottom:782.588000pt;}
.yf_c01404{bottom:797.198667pt;}
.ye_c01404{bottom:826.422667pt;}
.yd_c01404{bottom:841.034667pt;}
.yc_c01404{bottom:855.646667pt;}
.yb_c01404{bottom:884.870667pt;}
.ya_c01404{bottom:899.482667pt;}
.y9_c01404{bottom:914.094667pt;}
.y8_c01404{bottom:928.706667pt;}
.y7_c01404{bottom:943.317333pt;}
.y6_c01404{bottom:957.929333pt;}
.y5_c01404{bottom:972.541333pt;}
.y4_c01404{bottom:987.153333pt;}
.y3_c01404{bottom:1001.765333pt;}
.y2_c01404{bottom:1016.377333pt;}
.y1_c01404{bottom:1030.989333pt;}
.h3_c01404{height:31.280681pt;}
.h2_c01404{height:32.006363pt;}
.h5_c01404{height:36.010648pt;}
.h6_c01404{height:46.518078pt;}
.h4_c01404{height:51.855535pt;}
.h0_c01404{height:1122.520000pt;}
.h1_c01404{height:1122.666667pt;}
.w0_c01404{width:793.706667pt;}
.w1_c01404{width:794.000000pt;}
.x0_c01404{left:0.000000pt;}
.x4_c01404{left:113.385333pt;}
.x1_c01404{left:121.886667pt;}
.x3_c01404{left:157.340000pt;}
.x2_c01404{left:175.065333pt;}
.x5_c01404{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01405 {
    display:none;
  }
  .loading-indicator_c01405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01405 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01405 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01405" -> "#page-container .classname_c01405")
 */
.pf_c01405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01405 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01405 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01405 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01405 {overflow:visible;}
  }
}
.c_c01405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01405 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01405:after { /* webkit #35443 */
  content: '';
}
.t_c01405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01405 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01405 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01405 { /* info for Javascript */
  display:none;
}
.l_c01405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01405:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01405 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01405.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01405;src:url('chunks/assets/font_0badcd1f22469a326fe3da40.woff2')format("woff");}.ff1_c01405{font-family:ff1_c01405;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01405;src:url('chunks/assets/font_875f1de0c3ce4f55899cce8e.woff2')format("woff");}.ff2_c01405{font-family:ff2_c01405;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01405;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff3_c01405{font-family:ff3_c01405;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01405;src:url('chunks/assets/font_7a05186b75c1129ed677b8a2.woff2')format("woff");}.ff4_c01405{font-family:ff4_c01405;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01405{vertical-align:0.000000px;}
.ls3_c01405{letter-spacing:0.000000px;}
.ls1_c01405{letter-spacing:0.087998px;}
.ls2_c01405{letter-spacing:0.098482px;}
.ls0_c01405{letter-spacing:0.104482px;}
.sc__c01405{text-shadow:none;}
.sc0_c01405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01405{-webkit-text-stroke:0px transparent;}
.sc0_c01405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01405{word-spacing:-26.575517px;}
.ws3_c01405{word-spacing:-26.487518px;}
.ws1_c01405{word-spacing:-18.769538px;}
.ws0_c01405{word-spacing:-12.313774px;}
.ws7_c01405{word-spacing:0.000000px;}
.ws5_c01405{word-spacing:0.043999px;}
.ws8_c01405{word-spacing:0.056767px;}
.ws2_c01405{word-spacing:0.175997px;}
.ws9_c01405{word-spacing:0.213446px;}
.ws6_c01405{word-spacing:0.219446px;}
._2_c01405{margin-left:-3.825638px;}
._4_c01405{width:1.005737px;}
._3_c01405{width:20.443255px;}
._1_c01405{width:23.013606px;}
._0_c01405{width:39.392120px;}
.fc5_c01405{color:rgb(0,0,207);}
.fc4_c01405{color:rgb(79,153,5);}
.fc3_c01405{color:rgb(207,92,0);}
.fc2_c01405{color:rgb(33,74,135);}
.fc1_c01405{color:rgb(143,89,3);}
.fc0_c01405{color:rgb(0,0,0);}
.fs1_c01405{font-size:43.999200px;}
.fs0_c01405{font-size:59.775600px;}
.y0_c01405{bottom:0.000000px;}
.y32_c01405{bottom:44.250000px;}
.y31_c01405{bottom:96.919500px;}
.y30_c01405{bottom:113.358000px;}
.y2f_c01405{bottom:129.796500px;}
.y2e_c01405{bottom:146.235000px;}
.y2d_c01405{bottom:162.673500px;}
.y2c_c01405{bottom:179.112000px;}
.y2b_c01405{bottom:195.550500px;}
.y2a_c01405{bottom:211.989000px;}
.y29_c01405{bottom:228.427500px;}
.y28_c01405{bottom:244.866000px;}
.y27_c01405{bottom:261.304500px;}
.y26_c01405{bottom:294.180000px;}
.y25_c01405{bottom:310.618500px;}
.y24_c01405{bottom:327.057000px;}
.y23_c01405{bottom:359.934000px;}
.y22_c01405{bottom:376.372500px;}
.y21_c01405{bottom:409.249500px;}
.y20_c01405{bottom:425.688000px;}
.y1f_c01405{bottom:442.125000px;}
.y1e_c01405{bottom:475.002000px;}
.y1d_c01405{bottom:491.440500px;}
.y1c_c01405{bottom:507.879000px;}
.y1b_c01405{bottom:540.756000px;}
.y1a_c01405{bottom:557.194500px;}
.y19_c01405{bottom:573.633000px;}
.y18_c01405{bottom:590.071500px;}
.y17_c01405{bottom:606.508500px;}
.y16_c01405{bottom:622.947000px;}
.y15_c01405{bottom:639.385500px;}
.y14_c01405{bottom:655.824000px;}
.y13_c01405{bottom:672.262500px;}
.y12_c01405{bottom:688.701000px;}
.y11_c01405{bottom:705.139500px;}
.y10_c01405{bottom:754.455000px;}
.yf_c01405{bottom:770.893500px;}
.ye_c01405{bottom:787.330500px;}
.yd_c01405{bottom:803.769000px;}
.yc_c01405{bottom:820.207500px;}
.yb_c01405{bottom:836.646000px;}
.ya_c01405{bottom:853.084500px;}
.y9_c01405{bottom:869.523000px;}
.y8_c01405{bottom:885.961500px;}
.y7_c01405{bottom:902.400000px;}
.y6_c01405{bottom:918.838500px;}
.y5_c01405{bottom:968.152500px;}
.y4_c01405{bottom:1001.029500px;}
.y3_c01405{bottom:1017.094500px;}
.y2_c01405{bottom:1141.930500px;}
.y1_c01405{bottom:1159.863000px;}
.h3_c01405{height:35.190766px;}
.h4_c01405{height:36.007158px;}
.h2_c01405{height:52.332837px;}
.h0_c01405{height:1262.835000px;}
.h1_c01405{height:1263.000000px;}
.w0_c01405{width:892.920000px;}
.w1_c01405{width:893.250000px;}
.x0_c01405{left:0.000000px;}
.x1_c01405{left:127.558500px;}
.x2_c01405{left:137.122500px;}
.x4_c01405{left:177.007500px;}
.x3_c01405{left:196.948500px;}
.x5_c01405{left:435.249000px;}
@media print{
.v0_c01405{vertical-align:0.000000pt;}
.ls3_c01405{letter-spacing:0.000000pt;}
.ls1_c01405{letter-spacing:0.078221pt;}
.ls2_c01405{letter-spacing:0.087539pt;}
.ls0_c01405{letter-spacing:0.092873pt;}
.ws4_c01405{word-spacing:-23.622682pt;}
.ws3_c01405{word-spacing:-23.544461pt;}
.ws1_c01405{word-spacing:-16.684034pt;}
.ws0_c01405{word-spacing:-10.945577pt;}
.ws7_c01405{word-spacing:0.000000pt;}
.ws5_c01405{word-spacing:0.039110pt;}
.ws8_c01405{word-spacing:0.050460pt;}
.ws2_c01405{word-spacing:0.156442pt;}
.ws9_c01405{word-spacing:0.189730pt;}
.ws6_c01405{word-spacing:0.195063pt;}
._2_c01405{margin-left:-3.400567pt;}
._4_c01405{width:0.893988pt;}
._3_c01405{width:18.171782pt;}
._1_c01405{width:20.456539pt;}
._0_c01405{width:35.015218pt;}
.fs1_c01405{font-size:39.110400pt;}
.fs0_c01405{font-size:53.133867pt;}
.y0_c01405{bottom:0.000000pt;}
.y32_c01405{bottom:39.333333pt;}
.y31_c01405{bottom:86.150667pt;}
.y30_c01405{bottom:100.762667pt;}
.y2f_c01405{bottom:115.374667pt;}
.y2e_c01405{bottom:129.986667pt;}
.y2d_c01405{bottom:144.598667pt;}
.y2c_c01405{bottom:159.210667pt;}
.y2b_c01405{bottom:173.822667pt;}
.y2a_c01405{bottom:188.434667pt;}
.y29_c01405{bottom:203.046667pt;}
.y28_c01405{bottom:217.658667pt;}
.y27_c01405{bottom:232.270667pt;}
.y26_c01405{bottom:261.493333pt;}
.y25_c01405{bottom:276.105333pt;}
.y24_c01405{bottom:290.717333pt;}
.y23_c01405{bottom:319.941333pt;}
.y22_c01405{bottom:334.553333pt;}
.y21_c01405{bottom:363.777333pt;}
.y20_c01405{bottom:378.389333pt;}
.y1f_c01405{bottom:393.000000pt;}
.y1e_c01405{bottom:422.224000pt;}
.y1d_c01405{bottom:436.836000pt;}
.y1c_c01405{bottom:451.448000pt;}
.y1b_c01405{bottom:480.672000pt;}
.y1a_c01405{bottom:495.284000pt;}
.y19_c01405{bottom:509.896000pt;}
.y18_c01405{bottom:524.508000pt;}
.y17_c01405{bottom:539.118667pt;}
.y16_c01405{bottom:553.730667pt;}
.y15_c01405{bottom:568.342667pt;}
.y14_c01405{bottom:582.954667pt;}
.y13_c01405{bottom:597.566667pt;}
.y12_c01405{bottom:612.178667pt;}
.y11_c01405{bottom:626.790667pt;}
.y10_c01405{bottom:670.626667pt;}
.yf_c01405{bottom:685.238667pt;}
.ye_c01405{bottom:699.849333pt;}
.yd_c01405{bottom:714.461333pt;}
.yc_c01405{bottom:729.073333pt;}
.yb_c01405{bottom:743.685333pt;}
.ya_c01405{bottom:758.297333pt;}
.y9_c01405{bottom:772.909333pt;}
.y8_c01405{bottom:787.521333pt;}
.y7_c01405{bottom:802.133333pt;}
.y6_c01405{bottom:816.745333pt;}
.y5_c01405{bottom:860.580000pt;}
.y4_c01405{bottom:889.804000pt;}
.y3_c01405{bottom:904.084000pt;}
.y2_c01405{bottom:1015.049333pt;}
.y1_c01405{bottom:1030.989333pt;}
.h3_c01405{height:31.280681pt;}
.h4_c01405{height:32.006363pt;}
.h2_c01405{height:46.518078pt;}
.h0_c01405{height:1122.520000pt;}
.h1_c01405{height:1122.666667pt;}
.w0_c01405{width:793.706667pt;}
.w1_c01405{width:794.000000pt;}
.x0_c01405{left:0.000000pt;}
.x1_c01405{left:113.385333pt;}
.x2_c01405{left:121.886667pt;}
.x4_c01405{left:157.340000pt;}
.x3_c01405{left:175.065333pt;}
.x5_c01405{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01406 {
    display:none;
  }
  .loading-indicator_c01406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01406 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01406 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01406" -> "#page-container .classname_c01406")
 */
.pf_c01406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01406 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01406 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01406 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01406 {overflow:visible;}
  }
}
.c_c01406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01406 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01406:after { /* webkit #35443 */
  content: '';
}
.t_c01406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01406 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01406 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01406 { /* info for Javascript */
  display:none;
}
.l_c01406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01406:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01406 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01406.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01406;src:url('chunks/assets/font_5e9751f7d9f9865cb94dfb88.woff2')format("woff");}.ff1_c01406{font-family:ff1_c01406;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01406;src:url('chunks/assets/font_3a35f811f79796f01183f87e.woff2')format("woff");}.ff2_c01406{font-family:ff2_c01406;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01406;src:url('chunks/assets/font_33dacc05ab3cbe27a9d3054f.woff2')format("woff");}.ff3_c01406{font-family:ff3_c01406;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01406;src:url('chunks/assets/font_be8b9d27f0ccec2ffa8554c3.woff2')format("woff");}.ff4_c01406{font-family:ff4_c01406;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01406;src:url('chunks/assets/font_b3a5c3684199849ea3977c20.woff2')format("woff");}.ff5_c01406{font-family:ff5_c01406;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01406{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01406{vertical-align:0.000000px;}
.ls3_c01406{letter-spacing:0.000000px;}
.ls0_c01406{letter-spacing:0.087998px;}
.ls2_c01406{letter-spacing:0.098482px;}
.ls1_c01406{letter-spacing:0.104482px;}
.sc__c01406{text-shadow:none;}
.sc0_c01406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01406{-webkit-text-stroke:0px transparent;}
.sc0_c01406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01406{word-spacing:-33.713438px;}
.ws2_c01406{word-spacing:-26.575517px;}
.wsd_c01406{word-spacing:-26.487518px;}
.ws5_c01406{word-spacing:-18.769538px;}
.wsa_c01406{word-spacing:-17.753353px;}
.wsb_c01406{word-spacing:-15.481880px;}
.ws4_c01406{word-spacing:-14.943900px;}
.ws7_c01406{word-spacing:-14.405920px;}
.ws9_c01406{word-spacing:-12.791978px;}
.ws1_c01406{word-spacing:-9.988424px;}
.ws3_c01406{word-spacing:-9.987499px;}
.ws6_c01406{word-spacing:-1.218144px;}
.ws10_c01406{word-spacing:0.000000px;}
.wse_c01406{word-spacing:0.043999px;}
.ws11_c01406{word-spacing:0.056767px;}
.wsc_c01406{word-spacing:0.175997px;}
.ws12_c01406{word-spacing:0.213446px;}
.wsf_c01406{word-spacing:0.219446px;}
.ws0_c01406{word-spacing:43.038600px;}
._3_c01406{margin-left:-4.423394px;}
._1_c01406{margin-left:-3.184856px;}
._0_c01406{margin-left:-1.549390px;}
._8_c01406{width:1.005737px;}
._2_c01406{width:19.935816px;}
._6_c01406{width:22.774504px;}
._7_c01406{width:30.083876px;}
._4_c01406{width:32.457214px;}
._5_c01406{width:38.150681px;}
.fc6_c01406{color:rgb(0,0,207);}
.fc5_c01406{color:rgb(79,153,5);}
.fc3_c01406{color:rgb(33,74,135);}
.fc2_c01406{color:rgb(143,89,3);}
.fc4_c01406{color:rgb(207,92,0);}
.fc1_c01406{color:rgb(6,69,173);}
.fc0_c01406{color:rgb(0,0,0);}
.fs2_c01406{font-size:43.999200px;}
.fs1_c01406{font-size:59.775600px;}
.fs0_c01406{font-size:86.077200px;}
.y0_c01406{bottom:0.000000px;}
.y1f_c01406{bottom:44.250000px;}
.y1e_c01406{bottom:86.982000px;}
.y1d_c01406{bottom:103.420500px;}
.y1c_c01406{bottom:119.859000px;}
.y1b_c01406{bottom:152.736000px;}
.y1a_c01406{bottom:169.174500px;}
.y19_c01406{bottom:185.613000px;}
.y18_c01406{bottom:218.490000px;}
.y17_c01406{bottom:234.927000px;}
.y16_c01406{bottom:251.365500px;}
.y15_c01406{bottom:267.804000px;}
.y14_c01406{bottom:284.242500px;}
.y13_c01406{bottom:300.681000px;}
.y12_c01406{bottom:317.119500px;}
.y11_c01406{bottom:333.558000px;}
.y10_c01406{bottom:349.996500px;}
.yf_c01406{bottom:366.435000px;}
.ye_c01406{bottom:382.873500px;}
.yd_c01406{bottom:415.749000px;}
.yc_c01406{bottom:448.626000px;}
.yb_c01406{bottom:464.691000px;}
.ya_c01406{bottom:513.009000px;}
.y9_c01406{bottom:530.941500px;}
.y8_c01406{bottom:548.874000px;}
.y7_c01406{bottom:566.806500px;}
.y6_c01406{bottom:584.739000px;}
.y5_c01406{bottom:611.683500px;}
.y4_c01406{bottom:638.626500px;}
.y3_c01406{bottom:665.569500px;}
.y2_c01406{bottom:692.512500px;}
.y1_c01406{bottom:734.850000px;}
.h5_c01406{height:35.190766px;}
.h6_c01406{height:36.007158px;}
.h3_c01406{height:40.511979px;}
.h4_c01406{height:52.332837px;}
.h2_c01406{height:58.337477px;}
.h0_c01406{height:1262.835000px;}
.h1_c01406{height:1263.000000px;}
.w0_c01406{width:892.920000px;}
.w1_c01406{width:893.250000px;}
.x0_c01406{left:0.000000px;}
.x1_c01406{left:127.558500px;}
.x2_c01406{left:137.122500px;}
.x3_c01406{left:196.948500px;}
.x4_c01406{left:435.249000px;}
@media print{
.v0_c01406{vertical-align:0.000000pt;}
.ls3_c01406{letter-spacing:0.000000pt;}
.ls0_c01406{letter-spacing:0.078221pt;}
.ls2_c01406{letter-spacing:0.087539pt;}
.ls1_c01406{letter-spacing:0.092873pt;}
.ws8_c01406{word-spacing:-29.967501pt;}
.ws2_c01406{word-spacing:-23.622682pt;}
.wsd_c01406{word-spacing:-23.544461pt;}
.ws5_c01406{word-spacing:-16.684034pt;}
.wsa_c01406{word-spacing:-15.780758pt;}
.wsb_c01406{word-spacing:-13.761671pt;}
.ws4_c01406{word-spacing:-13.283467pt;}
.ws7_c01406{word-spacing:-12.805262pt;}
.ws9_c01406{word-spacing:-11.370647pt;}
.ws1_c01406{word-spacing:-8.878599pt;}
.ws3_c01406{word-spacing:-8.877777pt;}
.ws6_c01406{word-spacing:-1.082795pt;}
.ws10_c01406{word-spacing:0.000000pt;}
.wse_c01406{word-spacing:0.039110pt;}
.ws11_c01406{word-spacing:0.050460pt;}
.wsc_c01406{word-spacing:0.156442pt;}
.ws12_c01406{word-spacing:0.189730pt;}
.wsf_c01406{word-spacing:0.195063pt;}
.ws0_c01406{word-spacing:38.256533pt;}
._3_c01406{margin-left:-3.931906pt;}
._1_c01406{margin-left:-2.830983pt;}
._0_c01406{margin-left:-1.377235pt;}
._8_c01406{width:0.893988pt;}
._2_c01406{width:17.720725pt;}
._6_c01406{width:20.244003pt;}
._7_c01406{width:26.741223pt;}
._4_c01406{width:28.850857pt;}
._5_c01406{width:33.911716pt;}
.fs2_c01406{font-size:39.110400pt;}
.fs1_c01406{font-size:53.133867pt;}
.fs0_c01406{font-size:76.513067pt;}
.y0_c01406{bottom:0.000000pt;}
.y1f_c01406{bottom:39.333333pt;}
.y1e_c01406{bottom:77.317333pt;}
.y1d_c01406{bottom:91.929333pt;}
.y1c_c01406{bottom:106.541333pt;}
.y1b_c01406{bottom:135.765333pt;}
.y1a_c01406{bottom:150.377333pt;}
.y19_c01406{bottom:164.989333pt;}
.y18_c01406{bottom:194.213333pt;}
.y17_c01406{bottom:208.824000pt;}
.y16_c01406{bottom:223.436000pt;}
.y15_c01406{bottom:238.048000pt;}
.y14_c01406{bottom:252.660000pt;}
.y13_c01406{bottom:267.272000pt;}
.y12_c01406{bottom:281.884000pt;}
.y11_c01406{bottom:296.496000pt;}
.y10_c01406{bottom:311.108000pt;}
.yf_c01406{bottom:325.720000pt;}
.ye_c01406{bottom:340.332000pt;}
.yd_c01406{bottom:369.554667pt;}
.yc_c01406{bottom:398.778667pt;}
.yb_c01406{bottom:413.058667pt;}
.ya_c01406{bottom:456.008000pt;}
.y9_c01406{bottom:471.948000pt;}
.y8_c01406{bottom:487.888000pt;}
.y7_c01406{bottom:503.828000pt;}
.y6_c01406{bottom:519.768000pt;}
.y5_c01406{bottom:543.718667pt;}
.y4_c01406{bottom:567.668000pt;}
.y3_c01406{bottom:591.617333pt;}
.y2_c01406{bottom:615.566667pt;}
.y1_c01406{bottom:653.200000pt;}
.h5_c01406{height:31.280681pt;}
.h6_c01406{height:32.006363pt;}
.h3_c01406{height:36.010648pt;}
.h4_c01406{height:46.518078pt;}
.h2_c01406{height:51.855535pt;}
.h0_c01406{height:1122.520000pt;}
.h1_c01406{height:1122.666667pt;}
.w0_c01406{width:793.706667pt;}
.w1_c01406{width:794.000000pt;}
.x0_c01406{left:0.000000pt;}
.x1_c01406{left:113.385333pt;}
.x2_c01406{left:121.886667pt;}
.x3_c01406{left:175.065333pt;}
.x4_c01406{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01407 {
    display:none;
  }
  .loading-indicator_c01407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01407 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01407 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01407" -> "#page-container .classname_c01407")
 */
.pf_c01407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01407 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01407 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01407 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01407 {overflow:visible;}
  }
}
.c_c01407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01407 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01407:after { /* webkit #35443 */
  content: '';
}
.t_c01407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01407 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01407 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01407 { /* info for Javascript */
  display:none;
}
.l_c01407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01407:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01407 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01407.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01407;src:url('chunks/assets/font_83ba1ef9ef2513e0cd67763c.woff2')format("woff");}.ff1_c01407{font-family:ff1_c01407;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01407;src:url('chunks/assets/font_43fcb00be7d3f435ba9f5ead.woff2')format("woff");}.ff2_c01407{font-family:ff2_c01407;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01407;src:url('chunks/assets/font_3d3452e0a183222c25122cc5.woff2')format("woff");}.ff3_c01407{font-family:ff3_c01407;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01407;src:url('chunks/assets/font_2e18cd810e14b2c24ac401fd.woff2')format("woff");}.ff4_c01407{font-family:ff4_c01407;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01407;src:url('chunks/assets/font_635646ca86732b95c1d66dad.woff2')format("woff");}.ff5_c01407{font-family:ff5_c01407;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01407{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01407{vertical-align:0.000000px;}
.ls3_c01407{letter-spacing:0.000000px;}
.ls0_c01407{letter-spacing:0.087998px;}
.ls1_c01407{letter-spacing:0.098482px;}
.ls2_c01407{letter-spacing:0.104482px;}
.sc__c01407{text-shadow:none;}
.sc0_c01407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01407{-webkit-text-stroke:0px transparent;}
.sc0_c01407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01407{word-spacing:-33.713438px;}
.ws0_c01407{word-spacing:-26.575517px;}
.ws1_c01407{word-spacing:-26.487518px;}
.ws6_c01407{word-spacing:-18.769538px;}
.wsb_c01407{word-spacing:-17.753353px;}
.wsc_c01407{word-spacing:-15.481880px;}
.ws5_c01407{word-spacing:-14.943900px;}
.ws8_c01407{word-spacing:-14.405920px;}
.wsa_c01407{word-spacing:-12.791978px;}
.ws3_c01407{word-spacing:-9.988424px;}
.ws4_c01407{word-spacing:-9.987499px;}
.ws7_c01407{word-spacing:-1.218144px;}
.ws10_c01407{word-spacing:0.000000px;}
.wse_c01407{word-spacing:0.043999px;}
.ws11_c01407{word-spacing:0.056767px;}
.wsd_c01407{word-spacing:0.175997px;}
.wsf_c01407{word-spacing:0.219446px;}
.ws2_c01407{word-spacing:43.038600px;}
._4_c01407{margin-left:-4.064741px;}
._6_c01407{margin-left:-2.988780px;}
._1_c01407{margin-left:-1.075961px;}
._8_c01407{width:1.005737px;}
._0_c01407{width:19.935816px;}
._5_c01407{width:22.415850px;}
._7_c01407{width:29.887800px;}
._2_c01407{width:33.059746px;}
._3_c01407{width:38.150681px;}
.fc5_c01407{color:rgb(0,0,207);}
.fc6_c01407{color:rgb(6,69,173);}
.fc4_c01407{color:rgb(207,92,0);}
.fc3_c01407{color:rgb(79,153,5);}
.fc2_c01407{color:rgb(33,74,135);}
.fc1_c01407{color:rgb(143,89,3);}
.fc0_c01407{color:rgb(0,0,0);}
.fs0_c01407{font-size:43.999200px;}
.fs2_c01407{font-size:59.775600px;}
.fs1_c01407{font-size:86.077200px;}
.y0_c01407{bottom:0.000000px;}
.y20_c01407{bottom:44.250000px;}
.y1f_c01407{bottom:82.051500px;}
.y1e_c01407{bottom:98.490000px;}
.y1d_c01407{bottom:114.927000px;}
.y1c_c01407{bottom:131.365500px;}
.y1b_c01407{bottom:147.804000px;}
.y1a_c01407{bottom:164.242500px;}
.y19_c01407{bottom:180.681000px;}
.y18_c01407{bottom:197.119500px;}
.y17_c01407{bottom:213.558000px;}
.y16_c01407{bottom:229.996500px;}
.y15_c01407{bottom:262.873500px;}
.y14_c01407{bottom:295.749000px;}
.y13_c01407{bottom:311.814000px;}
.y12_c01407{bottom:359.170500px;}
.y11_c01407{bottom:377.103000px;}
.y10_c01407{bottom:395.035500px;}
.yf_c01407{bottom:412.968000px;}
.ye_c01407{bottom:430.900500px;}
.yd_c01407{bottom:457.659000px;}
.yc_c01407{bottom:484.416000px;}
.yb_c01407{bottom:511.173000px;}
.ya_c01407{bottom:537.930000px;}
.y9_c01407{bottom:580.060500px;}
.y8_c01407{bottom:1044.795000px;}
.y7_c01407{bottom:1061.232000px;}
.y6_c01407{bottom:1077.670500px;}
.y5_c01407{bottom:1094.109000px;}
.y4_c01407{bottom:1110.547500px;}
.y3_c01407{bottom:1126.986000px;}
.y2_c01407{bottom:1143.424500px;}
.y1_c01407{bottom:1159.863000px;}
.h6_c01407{height:35.190766px;}
.h2_c01407{height:36.007158px;}
.h4_c01407{height:40.511979px;}
.h5_c01407{height:52.332837px;}
.h3_c01407{height:58.337477px;}
.h0_c01407{height:1262.835000px;}
.h1_c01407{height:1263.000000px;}
.w0_c01407{width:892.920000px;}
.w1_c01407{width:893.250000px;}
.x0_c01407{left:0.000000px;}
.x3_c01407{left:127.558500px;}
.x1_c01407{left:137.122500px;}
.x2_c01407{left:177.007500px;}
.x4_c01407{left:196.948500px;}
.x5_c01407{left:435.249000px;}
@media print{
.v0_c01407{vertical-align:0.000000pt;}
.ls3_c01407{letter-spacing:0.000000pt;}
.ls0_c01407{letter-spacing:0.078221pt;}
.ls1_c01407{letter-spacing:0.087539pt;}
.ls2_c01407{letter-spacing:0.092873pt;}
.ws9_c01407{word-spacing:-29.967501pt;}
.ws0_c01407{word-spacing:-23.622682pt;}
.ws1_c01407{word-spacing:-23.544461pt;}
.ws6_c01407{word-spacing:-16.684034pt;}
.wsb_c01407{word-spacing:-15.780758pt;}
.wsc_c01407{word-spacing:-13.761671pt;}
.ws5_c01407{word-spacing:-13.283467pt;}
.ws8_c01407{word-spacing:-12.805262pt;}
.wsa_c01407{word-spacing:-11.370647pt;}
.ws3_c01407{word-spacing:-8.878599pt;}
.ws4_c01407{word-spacing:-8.877777pt;}
.ws7_c01407{word-spacing:-1.082795pt;}
.ws10_c01407{word-spacing:0.000000pt;}
.wse_c01407{word-spacing:0.039110pt;}
.ws11_c01407{word-spacing:0.050460pt;}
.wsd_c01407{word-spacing:0.156442pt;}
.wsf_c01407{word-spacing:0.195063pt;}
.ws2_c01407{word-spacing:38.256533pt;}
._4_c01407{margin-left:-3.613103pt;}
._6_c01407{margin-left:-2.656693pt;}
._1_c01407{margin-left:-0.956410pt;}
._8_c01407{width:0.893988pt;}
._0_c01407{width:17.720725pt;}
._5_c01407{width:19.925200pt;}
._7_c01407{width:26.566933pt;}
._2_c01407{width:29.386441pt;}
._3_c01407{width:33.911716pt;}
.fs0_c01407{font-size:39.110400pt;}
.fs2_c01407{font-size:53.133867pt;}
.fs1_c01407{font-size:76.513067pt;}
.y0_c01407{bottom:0.000000pt;}
.y20_c01407{bottom:39.333333pt;}
.y1f_c01407{bottom:72.934667pt;}
.y1e_c01407{bottom:87.546667pt;}
.y1d_c01407{bottom:102.157333pt;}
.y1c_c01407{bottom:116.769333pt;}
.y1b_c01407{bottom:131.381333pt;}
.y1a_c01407{bottom:145.993333pt;}
.y19_c01407{bottom:160.605333pt;}
.y18_c01407{bottom:175.217333pt;}
.y17_c01407{bottom:189.829333pt;}
.y16_c01407{bottom:204.441333pt;}
.y15_c01407{bottom:233.665333pt;}
.y14_c01407{bottom:262.888000pt;}
.y13_c01407{bottom:277.168000pt;}
.y12_c01407{bottom:319.262667pt;}
.y11_c01407{bottom:335.202667pt;}
.y10_c01407{bottom:351.142667pt;}
.yf_c01407{bottom:367.082667pt;}
.ye_c01407{bottom:383.022667pt;}
.yd_c01407{bottom:406.808000pt;}
.yc_c01407{bottom:430.592000pt;}
.yb_c01407{bottom:454.376000pt;}
.ya_c01407{bottom:478.160000pt;}
.y9_c01407{bottom:515.609333pt;}
.y8_c01407{bottom:928.706667pt;}
.y7_c01407{bottom:943.317333pt;}
.y6_c01407{bottom:957.929333pt;}
.y5_c01407{bottom:972.541333pt;}
.y4_c01407{bottom:987.153333pt;}
.y3_c01407{bottom:1001.765333pt;}
.y2_c01407{bottom:1016.377333pt;}
.y1_c01407{bottom:1030.989333pt;}
.h6_c01407{height:31.280681pt;}
.h2_c01407{height:32.006363pt;}
.h4_c01407{height:36.010648pt;}
.h5_c01407{height:46.518078pt;}
.h3_c01407{height:51.855535pt;}
.h0_c01407{height:1122.520000pt;}
.h1_c01407{height:1122.666667pt;}
.w0_c01407{width:793.706667pt;}
.w1_c01407{width:794.000000pt;}
.x0_c01407{left:0.000000pt;}
.x3_c01407{left:113.385333pt;}
.x1_c01407{left:121.886667pt;}
.x2_c01407{left:157.340000pt;}
.x4_c01407{left:175.065333pt;}
.x5_c01407{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01408 {
    display:none;
  }
  .loading-indicator_c01408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01408 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01408 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01408" -> "#page-container .classname_c01408")
 */
.pf_c01408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01408 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01408 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01408 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01408 {overflow:visible;}
  }
}
.c_c01408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01408 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01408:after { /* webkit #35443 */
  content: '';
}
.t_c01408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01408 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01408 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01408 { /* info for Javascript */
  display:none;
}
.l_c01408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01408:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01408 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01408.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01408;src:url('chunks/assets/font_a13e57fef599112ba927b487.woff2')format("woff");}.ff1_c01408{font-family:ff1_c01408;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01408;src:url('chunks/assets/font_be8b9d27f0ccec2ffa8554c3.woff2')format("woff");}.ff2_c01408{font-family:ff2_c01408;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01408;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff3_c01408{font-family:ff3_c01408;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01408;src:url('chunks/assets/font_88c842266a12c26eb7ae9309.woff2')format("woff");}.ff4_c01408{font-family:ff4_c01408;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01408;src:url('chunks/assets/font_348909b97f2a02dfade42177.woff2')format("woff");}.ff5_c01408{font-family:ff5_c01408;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01408{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01408{vertical-align:0.000000px;}
.ls3_c01408{letter-spacing:0.000000px;}
.ls0_c01408{letter-spacing:0.087998px;}
.ls2_c01408{letter-spacing:0.098482px;}
.ls1_c01408{letter-spacing:0.104482px;}
.sc__c01408{text-shadow:none;}
.sc0_c01408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01408{-webkit-text-stroke:0px transparent;}
.sc0_c01408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c01408{word-spacing:-33.713438px;}
.ws0_c01408{word-spacing:-26.575517px;}
.ws2_c01408{word-spacing:-26.487518px;}
.wsb_c01408{word-spacing:-21.041011px;}
.ws9_c01408{word-spacing:-19.845499px;}
.ws13_c01408{word-spacing:-19.546621px;}
.wsc_c01408{word-spacing:-18.769538px;}
.ws11_c01408{word-spacing:-18.470660px;}
.wse_c01408{word-spacing:-18.351109px;}
.wsa_c01408{word-spacing:-17.215373px;}
.ws8_c01408{word-spacing:-16.019861px;}
.ws12_c01408{word-spacing:-12.313774px;}
.ws10_c01408{word-spacing:-11.113366px;}
.ws6_c01408{word-spacing:-9.988424px;}
.ws7_c01408{word-spacing:-9.987499px;}
.wsd_c01408{word-spacing:-9.096144px;}
.ws1_c01408{word-spacing:0.000000px;}
.ws3_c01408{word-spacing:0.043999px;}
.ws14_c01408{word-spacing:0.175997px;}
.ws4_c01408{word-spacing:0.213446px;}
.ws15_c01408{word-spacing:0.219446px;}
.ws5_c01408{word-spacing:43.038600px;}
._2_c01408{margin-left:-4.722320px;}
._7_c01408{margin-left:-3.048556px;}
._3_c01408{margin-left:-1.075961px;}
._0_c01408{width:1.041538px;}
._1_c01408{width:19.433777px;}
._4_c01408{width:21.302332px;}
._6_c01408{width:23.013606px;}
._5_c01408{width:39.392120px;}
.fc5_c01408{color:rgb(0,0,207);}
.fc4_c01408{color:rgb(79,153,5);}
.fc6_c01408{color:rgb(6,69,173);}
.fc3_c01408{color:rgb(207,92,0);}
.fc2_c01408{color:rgb(33,74,135);}
.fc1_c01408{color:rgb(143,89,3);}
.fc0_c01408{color:rgb(0,0,0);}
.fs0_c01408{font-size:43.999200px;}
.fs2_c01408{font-size:59.775600px;}
.fs1_c01408{font-size:86.077200px;}
.y0_c01408{bottom:0.000000px;}
.y1e_c01408{bottom:44.250000px;}
.y1d_c01408{bottom:82.051500px;}
.y1c_c01408{bottom:131.365500px;}
.y1b_c01408{bottom:147.430500px;}
.y1a_c01408{bottom:194.140500px;}
.y19_c01408{bottom:212.074500px;}
.y18_c01408{bottom:230.007000px;}
.y17_c01408{bottom:247.939500px;}
.y16_c01408{bottom:265.872000px;}
.y15_c01408{bottom:292.522500px;}
.y14_c01408{bottom:310.455000px;}
.y13_c01408{bottom:337.104000px;}
.y12_c01408{bottom:363.754500px;}
.y11_c01408{bottom:390.403500px;}
.y10_c01408{bottom:432.427500px;}
.yf_c01408{bottom:896.848500px;}
.ye_c01408{bottom:913.287000px;}
.yd_c01408{bottom:929.725500px;}
.yc_c01408{bottom:946.164000px;}
.yb_c01408{bottom:962.602500px;}
.ya_c01408{bottom:979.041000px;}
.y9_c01408{bottom:995.479500px;}
.y8_c01408{bottom:1011.918000px;}
.y7_c01408{bottom:1028.356500px;}
.y6_c01408{bottom:1044.795000px;}
.y5_c01408{bottom:1061.232000px;}
.y4_c01408{bottom:1094.109000px;}
.y3_c01408{bottom:1110.547500px;}
.y2_c01408{bottom:1126.986000px;}
.y1_c01408{bottom:1159.863000px;}
.h3_c01408{height:35.190766px;}
.h2_c01408{height:36.007158px;}
.h5_c01408{height:40.511979px;}
.h6_c01408{height:52.332837px;}
.h4_c01408{height:58.337477px;}
.h0_c01408{height:1262.835000px;}
.h1_c01408{height:1263.000000px;}
.w0_c01408{width:892.920000px;}
.w1_c01408{width:893.250000px;}
.x0_c01408{left:0.000000px;}
.x3_c01408{left:127.558500px;}
.x1_c01408{left:137.122500px;}
.x2_c01408{left:177.007500px;}
.x4_c01408{left:435.249000px;}
@media print{
.v0_c01408{vertical-align:0.000000pt;}
.ls3_c01408{letter-spacing:0.000000pt;}
.ls0_c01408{letter-spacing:0.078221pt;}
.ls2_c01408{letter-spacing:0.087539pt;}
.ls1_c01408{letter-spacing:0.092873pt;}
.wsf_c01408{word-spacing:-29.967501pt;}
.ws0_c01408{word-spacing:-23.622682pt;}
.ws2_c01408{word-spacing:-23.544461pt;}
.wsb_c01408{word-spacing:-18.703121pt;}
.ws9_c01408{word-spacing:-17.640444pt;}
.ws13_c01408{word-spacing:-17.374774pt;}
.wsc_c01408{word-spacing:-16.684034pt;}
.ws11_c01408{word-spacing:-16.418365pt;}
.wse_c01408{word-spacing:-16.312097pt;}
.wsa_c01408{word-spacing:-15.302554pt;}
.ws8_c01408{word-spacing:-14.239876pt;}
.ws12_c01408{word-spacing:-10.945577pt;}
.ws10_c01408{word-spacing:-9.878547pt;}
.ws6_c01408{word-spacing:-8.878599pt;}
.ws7_c01408{word-spacing:-8.877777pt;}
.wsd_c01408{word-spacing:-8.085461pt;}
.ws1_c01408{word-spacing:0.000000pt;}
.ws3_c01408{word-spacing:0.039110pt;}
.ws14_c01408{word-spacing:0.156442pt;}
.ws4_c01408{word-spacing:0.189730pt;}
.ws15_c01408{word-spacing:0.195063pt;}
.ws5_c01408{word-spacing:38.256533pt;}
._2_c01408{margin-left:-4.197618pt;}
._7_c01408{margin-left:-2.709827pt;}
._3_c01408{margin-left:-0.956410pt;}
._0_c01408{width:0.925811pt;}
._1_c01408{width:17.274468pt;}
._4_c01408{width:18.935406pt;}
._6_c01408{width:20.456539pt;}
._5_c01408{width:35.015218pt;}
.fs0_c01408{font-size:39.110400pt;}
.fs2_c01408{font-size:53.133867pt;}
.fs1_c01408{font-size:76.513067pt;}
.y0_c01408{bottom:0.000000pt;}
.y1e_c01408{bottom:39.333333pt;}
.y1d_c01408{bottom:72.934667pt;}
.y1c_c01408{bottom:116.769333pt;}
.y1b_c01408{bottom:131.049333pt;}
.y1a_c01408{bottom:172.569333pt;}
.y19_c01408{bottom:188.510667pt;}
.y18_c01408{bottom:204.450667pt;}
.y17_c01408{bottom:220.390667pt;}
.y16_c01408{bottom:236.330667pt;}
.y15_c01408{bottom:260.020000pt;}
.y14_c01408{bottom:275.960000pt;}
.y13_c01408{bottom:299.648000pt;}
.y12_c01408{bottom:323.337333pt;}
.y11_c01408{bottom:347.025333pt;}
.y10_c01408{bottom:384.380000pt;}
.yf_c01408{bottom:797.198667pt;}
.ye_c01408{bottom:811.810667pt;}
.yd_c01408{bottom:826.422667pt;}
.yc_c01408{bottom:841.034667pt;}
.yb_c01408{bottom:855.646667pt;}
.ya_c01408{bottom:870.258667pt;}
.y9_c01408{bottom:884.870667pt;}
.y8_c01408{bottom:899.482667pt;}
.y7_c01408{bottom:914.094667pt;}
.y6_c01408{bottom:928.706667pt;}
.y5_c01408{bottom:943.317333pt;}
.y4_c01408{bottom:972.541333pt;}
.y3_c01408{bottom:987.153333pt;}
.y2_c01408{bottom:1001.765333pt;}
.y1_c01408{bottom:1030.989333pt;}
.h3_c01408{height:31.280681pt;}
.h2_c01408{height:32.006363pt;}
.h5_c01408{height:36.010648pt;}
.h6_c01408{height:46.518078pt;}
.h4_c01408{height:51.855535pt;}
.h0_c01408{height:1122.520000pt;}
.h1_c01408{height:1122.666667pt;}
.w0_c01408{width:793.706667pt;}
.w1_c01408{width:794.000000pt;}
.x0_c01408{left:0.000000pt;}
.x3_c01408{left:113.385333pt;}
.x1_c01408{left:121.886667pt;}
.x2_c01408{left:157.340000pt;}
.x4_c01408{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01409 {
    display:none;
  }
  .loading-indicator_c01409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01409 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01409 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01409" -> "#page-container .classname_c01409")
 */
.pf_c01409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01409 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01409 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01409 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01409 {overflow:visible;}
  }
}
.c_c01409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01409 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01409:after { /* webkit #35443 */
  content: '';
}
.t_c01409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01409 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01409 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01409 { /* info for Javascript */
  display:none;
}
.l_c01409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01409:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01409 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01409.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01409;src:url('chunks/assets/font_f7995a453c63235b81f5b4e2.woff2')format("woff");}.ff1_c01409{font-family:ff1_c01409;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01409;src:url('chunks/assets/font_8253ebe102558a995fa5d8b5.woff2')format("woff");}.ff2_c01409{font-family:ff2_c01409;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01409;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01409{font-family:ff3_c01409;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01409;src:url('chunks/assets/font_332dfef0b6069c7cc00bc80c.woff2')format("woff");}.ff4_c01409{font-family:ff4_c01409;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01409{vertical-align:0.000000px;}
.ls3_c01409{letter-spacing:0.000000px;}
.ls0_c01409{letter-spacing:0.087998px;}
.ls1_c01409{letter-spacing:0.098482px;}
.ls2_c01409{letter-spacing:0.104482px;}
.sc__c01409{text-shadow:none;}
.sc0_c01409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01409{-webkit-text-stroke:0px transparent;}
.sc0_c01409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01409{word-spacing:-26.575517px;}
.ws4_c01409{word-spacing:-26.487518px;}
.ws3_c01409{word-spacing:0.000000px;}
.ws2_c01409{word-spacing:0.043999px;}
.ws1_c01409{word-spacing:0.056767px;}
.ws5_c01409{word-spacing:0.213446px;}
._0_c01409{width:1.042723px;}
.fc5_c01409{color:rgb(207,92,0);}
.fc4_c01409{color:rgb(0,0,207);}
.fc3_c01409{color:rgb(79,153,5);}
.fc2_c01409{color:rgb(33,74,135);}
.fc1_c01409{color:rgb(143,89,3);}
.fc0_c01409{color:rgb(0,0,0);}
.fs0_c01409{font-size:43.999200px;}
.fs1_c01409{font-size:59.775600px;}
.y0_c01409{bottom:0.000000px;}
.y2d_c01409{bottom:44.250000px;}
.y2c_c01409{bottom:321.507000px;}
.y2b_c01409{bottom:337.945500px;}
.y2a_c01409{bottom:354.384000px;}
.y29_c01409{bottom:370.822500px;}
.y28_c01409{bottom:387.259500px;}
.y27_c01409{bottom:403.698000px;}
.y26_c01409{bottom:420.136500px;}
.y25_c01409{bottom:436.575000px;}
.y24_c01409{bottom:453.013500px;}
.y23_c01409{bottom:469.452000px;}
.y22_c01409{bottom:485.890500px;}
.y21_c01409{bottom:518.767500px;}
.y20_c01409{bottom:535.206000px;}
.y1f_c01409{bottom:551.643000px;}
.y1e_c01409{bottom:584.520000px;}
.y1d_c01409{bottom:600.958500px;}
.y1c_c01409{bottom:633.835500px;}
.y1b_c01409{bottom:650.274000px;}
.y1a_c01409{bottom:666.712500px;}
.y19_c01409{bottom:699.589500px;}
.y18_c01409{bottom:716.028000px;}
.y17_c01409{bottom:732.465000px;}
.y16_c01409{bottom:765.342000px;}
.y15_c01409{bottom:781.780500px;}
.y14_c01409{bottom:798.219000px;}
.y13_c01409{bottom:814.657500px;}
.y12_c01409{bottom:831.096000px;}
.y11_c01409{bottom:847.534500px;}
.y10_c01409{bottom:863.973000px;}
.yf_c01409{bottom:880.411500px;}
.ye_c01409{bottom:896.848500px;}
.yd_c01409{bottom:913.287000px;}
.yc_c01409{bottom:929.725500px;}
.yb_c01409{bottom:979.041000px;}
.ya_c01409{bottom:995.479500px;}
.y9_c01409{bottom:1011.918000px;}
.y8_c01409{bottom:1028.356500px;}
.y7_c01409{bottom:1044.795000px;}
.y6_c01409{bottom:1061.232000px;}
.y5_c01409{bottom:1077.670500px;}
.y4_c01409{bottom:1094.109000px;}
.y3_c01409{bottom:1110.547500px;}
.y2_c01409{bottom:1126.986000px;}
.y1_c01409{bottom:1143.424500px;}
.h3_c01409{height:35.190766px;}
.h2_c01409{height:36.007158px;}
.h4_c01409{height:52.332837px;}
.h0_c01409{height:1262.835000px;}
.h1_c01409{height:1263.000000px;}
.w0_c01409{width:892.920000px;}
.w1_c01409{width:893.250000px;}
.x0_c01409{left:0.000000px;}
.x1_c01409{left:137.122500px;}
.x3_c01409{left:177.007500px;}
.x2_c01409{left:196.948500px;}
.x4_c01409{left:435.249000px;}
@media print{
.v0_c01409{vertical-align:0.000000pt;}
.ls3_c01409{letter-spacing:0.000000pt;}
.ls0_c01409{letter-spacing:0.078221pt;}
.ls1_c01409{letter-spacing:0.087539pt;}
.ls2_c01409{letter-spacing:0.092873pt;}
.ws0_c01409{word-spacing:-23.622682pt;}
.ws4_c01409{word-spacing:-23.544461pt;}
.ws3_c01409{word-spacing:0.000000pt;}
.ws2_c01409{word-spacing:0.039110pt;}
.ws1_c01409{word-spacing:0.050460pt;}
.ws5_c01409{word-spacing:0.189730pt;}
._0_c01409{width:0.926865pt;}
.fs0_c01409{font-size:39.110400pt;}
.fs1_c01409{font-size:53.133867pt;}
.y0_c01409{bottom:0.000000pt;}
.y2d_c01409{bottom:39.333333pt;}
.y2c_c01409{bottom:285.784000pt;}
.y2b_c01409{bottom:300.396000pt;}
.y2a_c01409{bottom:315.008000pt;}
.y29_c01409{bottom:329.620000pt;}
.y28_c01409{bottom:344.230667pt;}
.y27_c01409{bottom:358.842667pt;}
.y26_c01409{bottom:373.454667pt;}
.y25_c01409{bottom:388.066667pt;}
.y24_c01409{bottom:402.678667pt;}
.y23_c01409{bottom:417.290667pt;}
.y22_c01409{bottom:431.902667pt;}
.y21_c01409{bottom:461.126667pt;}
.y20_c01409{bottom:475.738667pt;}
.y1f_c01409{bottom:490.349333pt;}
.y1e_c01409{bottom:519.573333pt;}
.y1d_c01409{bottom:534.185333pt;}
.y1c_c01409{bottom:563.409333pt;}
.y1b_c01409{bottom:578.021333pt;}
.y1a_c01409{bottom:592.633333pt;}
.y19_c01409{bottom:621.857333pt;}
.y18_c01409{bottom:636.469333pt;}
.y17_c01409{bottom:651.080000pt;}
.y16_c01409{bottom:680.304000pt;}
.y15_c01409{bottom:694.916000pt;}
.y14_c01409{bottom:709.528000pt;}
.y13_c01409{bottom:724.140000pt;}
.y12_c01409{bottom:738.752000pt;}
.y11_c01409{bottom:753.364000pt;}
.y10_c01409{bottom:767.976000pt;}
.yf_c01409{bottom:782.588000pt;}
.ye_c01409{bottom:797.198667pt;}
.yd_c01409{bottom:811.810667pt;}
.yc_c01409{bottom:826.422667pt;}
.yb_c01409{bottom:870.258667pt;}
.ya_c01409{bottom:884.870667pt;}
.y9_c01409{bottom:899.482667pt;}
.y8_c01409{bottom:914.094667pt;}
.y7_c01409{bottom:928.706667pt;}
.y6_c01409{bottom:943.317333pt;}
.y5_c01409{bottom:957.929333pt;}
.y4_c01409{bottom:972.541333pt;}
.y3_c01409{bottom:987.153333pt;}
.y2_c01409{bottom:1001.765333pt;}
.y1_c01409{bottom:1016.377333pt;}
.h3_c01409{height:31.280681pt;}
.h2_c01409{height:32.006363pt;}
.h4_c01409{height:46.518078pt;}
.h0_c01409{height:1122.520000pt;}
.h1_c01409{height:1122.666667pt;}
.w0_c01409{width:793.706667pt;}
.w1_c01409{width:794.000000pt;}
.x0_c01409{left:0.000000pt;}
.x1_c01409{left:121.886667pt;}
.x3_c01409{left:157.340000pt;}
.x2_c01409{left:175.065333pt;}
.x4_c01409{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01410 {
    display:none;
  }
  .loading-indicator_c01410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01410 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01410 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01410" -> "#page-container .classname_c01410")
 */
.pf_c01410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01410 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01410 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01410 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01410 {overflow:visible;}
  }
}
.c_c01410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01410 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01410:after { /* webkit #35443 */
  content: '';
}
.t_c01410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01410 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01410 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01410 { /* info for Javascript */
  display:none;
}
.l_c01410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01410:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01410 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01410.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01410;src:url('chunks/assets/font_0ba859363b1c669afcd4cd9f.woff2')format("woff");}.ff1_c01410{font-family:ff1_c01410;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01410;src:url('chunks/assets/font_47e1ed03950fb532712527c3.woff2')format("woff");}.ff2_c01410{font-family:ff2_c01410;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01410;src:url('chunks/assets/font_74b1d49040adfa5be8b0e8b1.woff2')format("woff");}.ff3_c01410{font-family:ff3_c01410;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01410;src:url('chunks/assets/font_48770e3f8c36c2c116ba2cde.woff2')format("woff");}.ff4_c01410{font-family:ff4_c01410;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01410;src:url('chunks/assets/font_b3a5c3684199849ea3977c20.woff2')format("woff");}.ff5_c01410{font-family:ff5_c01410;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01410{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01410{vertical-align:0.000000px;}
.ls3_c01410{letter-spacing:0.000000px;}
.ls0_c01410{letter-spacing:0.087998px;}
.ls2_c01410{letter-spacing:0.098482px;}
.ls1_c01410{letter-spacing:0.104482px;}
.sc__c01410{text-shadow:none;}
.sc0_c01410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01410{-webkit-text-stroke:0px transparent;}
.sc0_c01410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01410{word-spacing:-33.713438px;}
.ws2_c01410{word-spacing:-26.575517px;}
.ws10_c01410{word-spacing:-26.487518px;}
.ws5_c01410{word-spacing:-19.367294px;}
.wsd_c01410{word-spacing:-19.008641px;}
.ws7_c01410{word-spacing:-18.769538px;}
.wsc_c01410{word-spacing:-17.155597px;}
.ws4_c01410{word-spacing:-15.541656px;}
.ws6_c01410{word-spacing:-14.943900px;}
.ws9_c01410{word-spacing:-13.808164px;}
.wsb_c01410{word-spacing:-13.748388px;}
.wse_c01410{word-spacing:-12.493100px;}
.ws1_c01410{word-spacing:-9.988424px;}
.ws3_c01410{word-spacing:-9.987499px;}
.ws8_c01410{word-spacing:-0.000144px;}
.ws13_c01410{word-spacing:0.000000px;}
.ws11_c01410{word-spacing:0.043999px;}
.ws14_c01410{word-spacing:0.056767px;}
.wsf_c01410{word-spacing:0.175997px;}
.ws15_c01410{word-spacing:0.213446px;}
.ws12_c01410{word-spacing:0.219446px;}
.ws0_c01410{word-spacing:43.038600px;}
._4_c01410{margin-left:-4.124516px;}
._5_c01410{margin-left:-3.108331px;}
._1_c01410{margin-left:-1.075961px;}
._7_c01410{width:1.005737px;}
._0_c01410{width:19.639572px;}
._3_c01410{width:25.140023px;}
._2_c01410{width:34.935277px;}
._6_c01410{width:38.734589px;}
.fc6_c01410{color:rgb(0,0,207);}
.fc5_c01410{color:rgb(79,153,5);}
.fc3_c01410{color:rgb(33,74,135);}
.fc2_c01410{color:rgb(143,89,3);}
.fc4_c01410{color:rgb(207,92,0);}
.fc1_c01410{color:rgb(6,69,173);}
.fc0_c01410{color:rgb(0,0,0);}
.fs2_c01410{font-size:43.999200px;}
.fs1_c01410{font-size:59.775600px;}
.fs0_c01410{font-size:86.077200px;}
.y0_c01410{bottom:0.000000px;}
.y1f_c01410{bottom:44.250000px;}
.y1e_c01410{bottom:86.982000px;}
.y1d_c01410{bottom:103.420500px;}
.y1c_c01410{bottom:119.859000px;}
.y1b_c01410{bottom:152.736000px;}
.y1a_c01410{bottom:169.174500px;}
.y19_c01410{bottom:185.613000px;}
.y18_c01410{bottom:218.490000px;}
.y17_c01410{bottom:234.927000px;}
.y16_c01410{bottom:251.365500px;}
.y15_c01410{bottom:267.804000px;}
.y14_c01410{bottom:284.242500px;}
.y13_c01410{bottom:300.681000px;}
.y12_c01410{bottom:317.119500px;}
.y11_c01410{bottom:333.558000px;}
.y10_c01410{bottom:349.996500px;}
.yf_c01410{bottom:366.435000px;}
.ye_c01410{bottom:382.873500px;}
.yd_c01410{bottom:415.749000px;}
.yc_c01410{bottom:448.626000px;}
.yb_c01410{bottom:464.691000px;}
.ya_c01410{bottom:512.985000px;}
.y9_c01410{bottom:530.919000px;}
.y8_c01410{bottom:548.851500px;}
.y7_c01410{bottom:566.784000px;}
.y6_c01410{bottom:584.716500px;}
.y5_c01410{bottom:611.662500px;}
.y4_c01410{bottom:638.608500px;}
.y3_c01410{bottom:665.554500px;}
.y2_c01410{bottom:692.500500px;}
.y1_c01410{bottom:734.841000px;}
.h5_c01410{height:35.190766px;}
.h6_c01410{height:36.007158px;}
.h3_c01410{height:40.511979px;}
.h4_c01410{height:52.332837px;}
.h2_c01410{height:58.337477px;}
.h0_c01410{height:1262.835000px;}
.h1_c01410{height:1263.000000px;}
.w0_c01410{width:892.920000px;}
.w1_c01410{width:893.250000px;}
.x0_c01410{left:0.000000px;}
.x1_c01410{left:127.558500px;}
.x2_c01410{left:137.122500px;}
.x3_c01410{left:196.948500px;}
.x4_c01410{left:435.526500px;}
@media print{
.v0_c01410{vertical-align:0.000000pt;}
.ls3_c01410{letter-spacing:0.000000pt;}
.ls0_c01410{letter-spacing:0.078221pt;}
.ls2_c01410{letter-spacing:0.087539pt;}
.ls1_c01410{letter-spacing:0.092873pt;}
.wsa_c01410{word-spacing:-29.967501pt;}
.ws2_c01410{word-spacing:-23.622682pt;}
.ws10_c01410{word-spacing:-23.544461pt;}
.ws5_c01410{word-spacing:-17.215373pt;}
.wsd_c01410{word-spacing:-16.896570pt;}
.ws7_c01410{word-spacing:-16.684034pt;}
.wsc_c01410{word-spacing:-15.249420pt;}
.ws4_c01410{word-spacing:-13.814805pt;}
.ws6_c01410{word-spacing:-13.283467pt;}
.ws9_c01410{word-spacing:-12.273923pt;}
.wsb_c01410{word-spacing:-12.220789pt;}
.wse_c01410{word-spacing:-11.104978pt;}
.ws1_c01410{word-spacing:-8.878599pt;}
.ws3_c01410{word-spacing:-8.877777pt;}
.ws8_c01410{word-spacing:-0.000128pt;}
.ws13_c01410{word-spacing:0.000000pt;}
.ws11_c01410{word-spacing:0.039110pt;}
.ws14_c01410{word-spacing:0.050460pt;}
.wsf_c01410{word-spacing:0.156442pt;}
.ws15_c01410{word-spacing:0.189730pt;}
.ws12_c01410{word-spacing:0.195063pt;}
.ws0_c01410{word-spacing:38.256533pt;}
._4_c01410{margin-left:-3.666237pt;}
._5_c01410{margin-left:-2.762961pt;}
._1_c01410{margin-left:-0.956410pt;}
._7_c01410{width:0.893988pt;}
._0_c01410{width:17.457397pt;}
._3_c01410{width:22.346687pt;}
._2_c01410{width:31.053580pt;}
._6_c01410{width:34.430746pt;}
.fs2_c01410{font-size:39.110400pt;}
.fs1_c01410{font-size:53.133867pt;}
.fs0_c01410{font-size:76.513067pt;}
.y0_c01410{bottom:0.000000pt;}
.y1f_c01410{bottom:39.333333pt;}
.y1e_c01410{bottom:77.317333pt;}
.y1d_c01410{bottom:91.929333pt;}
.y1c_c01410{bottom:106.541333pt;}
.y1b_c01410{bottom:135.765333pt;}
.y1a_c01410{bottom:150.377333pt;}
.y19_c01410{bottom:164.989333pt;}
.y18_c01410{bottom:194.213333pt;}
.y17_c01410{bottom:208.824000pt;}
.y16_c01410{bottom:223.436000pt;}
.y15_c01410{bottom:238.048000pt;}
.y14_c01410{bottom:252.660000pt;}
.y13_c01410{bottom:267.272000pt;}
.y12_c01410{bottom:281.884000pt;}
.y11_c01410{bottom:296.496000pt;}
.y10_c01410{bottom:311.108000pt;}
.yf_c01410{bottom:325.720000pt;}
.ye_c01410{bottom:340.332000pt;}
.yd_c01410{bottom:369.554667pt;}
.yc_c01410{bottom:398.778667pt;}
.yb_c01410{bottom:413.058667pt;}
.ya_c01410{bottom:455.986667pt;}
.y9_c01410{bottom:471.928000pt;}
.y8_c01410{bottom:487.868000pt;}
.y7_c01410{bottom:503.808000pt;}
.y6_c01410{bottom:519.748000pt;}
.y5_c01410{bottom:543.700000pt;}
.y4_c01410{bottom:567.652000pt;}
.y3_c01410{bottom:591.604000pt;}
.y2_c01410{bottom:615.556000pt;}
.y1_c01410{bottom:653.192000pt;}
.h5_c01410{height:31.280681pt;}
.h6_c01410{height:32.006363pt;}
.h3_c01410{height:36.010648pt;}
.h4_c01410{height:46.518078pt;}
.h2_c01410{height:51.855535pt;}
.h0_c01410{height:1122.520000pt;}
.h1_c01410{height:1122.666667pt;}
.w0_c01410{width:793.706667pt;}
.w1_c01410{width:794.000000pt;}
.x0_c01410{left:0.000000pt;}
.x1_c01410{left:113.385333pt;}
.x2_c01410{left:121.886667pt;}
.x3_c01410{left:175.065333pt;}
.x4_c01410{left:387.134667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01411 {
    display:none;
  }
  .loading-indicator_c01411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01411" -> "#page-container .classname_c01411")
 */
.pf_c01411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01411 {overflow:visible;}
  }
}
.c_c01411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01411:after { /* webkit #35443 */
  content: '';
}
.t_c01411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01411 { /* info for Javascript */
  display:none;
}
.l_c01411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01411:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01411 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01411.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01411;src:url('chunks/assets/font_689923b8fa100706dcf15b18.woff2')format("woff");}.ff1_c01411{font-family:ff1_c01411;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01411;src:url('chunks/assets/font_43fcb00be7d3f435ba9f5ead.woff2')format("woff");}.ff2_c01411{font-family:ff2_c01411;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01411;src:url('chunks/assets/font_b9752f73bfb5ad456225035c.woff2')format("woff");}.ff3_c01411{font-family:ff3_c01411;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01411;src:url('chunks/assets/font_031671f7ecaf35f62018c615.woff2')format("woff");}.ff4_c01411{font-family:ff4_c01411;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01411;src:url('chunks/assets/font_2321ce554e060e3d716d3ee2.woff2')format("woff");}.ff5_c01411{font-family:ff5_c01411;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01411{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01411{vertical-align:0.000000px;}
.ls3_c01411{letter-spacing:0.000000px;}
.ls0_c01411{letter-spacing:0.087998px;}
.ls1_c01411{letter-spacing:0.098482px;}
.ls2_c01411{letter-spacing:0.104482px;}
.sc__c01411{text-shadow:none;}
.sc0_c01411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01411{-webkit-text-stroke:0px transparent;}
.sc0_c01411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c01411{word-spacing:-33.713438px;}
.ws0_c01411{word-spacing:-26.575517px;}
.ws1_c01411{word-spacing:-26.487518px;}
.ws8_c01411{word-spacing:-20.622582px;}
.ws6_c01411{word-spacing:-20.024826px;}
.wse_c01411{word-spacing:-19.008641px;}
.wsd_c01411{word-spacing:-17.155597px;}
.ws7_c01411{word-spacing:-16.796944px;}
.ws5_c01411{word-spacing:-16.258963px;}
.wsa_c01411{word-spacing:-14.406398px;}
.wsc_c01411{word-spacing:-14.405920px;}
.wsf_c01411{word-spacing:-12.493100px;}
.ws3_c01411{word-spacing:-9.988424px;}
.ws4_c01411{word-spacing:-9.987499px;}
.ws9_c01411{word-spacing:-1.242144px;}
.ws13_c01411{word-spacing:0.000000px;}
.ws11_c01411{word-spacing:0.043999px;}
.ws14_c01411{word-spacing:0.056767px;}
.ws10_c01411{word-spacing:0.175997px;}
.ws12_c01411{word-spacing:0.219446px;}
.ws2_c01411{word-spacing:43.038600px;}
._4_c01411{margin-left:-4.124516px;}
._5_c01411{margin-left:-3.108331px;}
._1_c01411{margin-left:-1.075961px;}
._7_c01411{width:1.005737px;}
._0_c01411{width:19.330879px;}
._3_c01411{width:25.140023px;}
._2_c01411{width:33.042703px;}
._6_c01411{width:38.734589px;}
.fc5_c01411{color:rgb(0,0,207);}
.fc6_c01411{color:rgb(6,69,173);}
.fc4_c01411{color:rgb(207,92,0);}
.fc3_c01411{color:rgb(79,153,5);}
.fc2_c01411{color:rgb(33,74,135);}
.fc1_c01411{color:rgb(143,89,3);}
.fc0_c01411{color:rgb(0,0,0);}
.fs0_c01411{font-size:43.999200px;}
.fs2_c01411{font-size:59.775600px;}
.fs1_c01411{font-size:86.077200px;}
.y0_c01411{bottom:0.000000px;}
.y1f_c01411{bottom:44.250000px;}
.y1e_c01411{bottom:82.051500px;}
.y1d_c01411{bottom:98.490000px;}
.y1c_c01411{bottom:114.927000px;}
.y1b_c01411{bottom:131.365500px;}
.y1a_c01411{bottom:147.804000px;}
.y19_c01411{bottom:164.242500px;}
.y18_c01411{bottom:180.681000px;}
.y17_c01411{bottom:197.119500px;}
.y16_c01411{bottom:213.558000px;}
.y15_c01411{bottom:246.435000px;}
.y14_c01411{bottom:295.749000px;}
.y13_c01411{bottom:311.814000px;}
.y12_c01411{bottom:359.154000px;}
.y11_c01411{bottom:377.086500px;}
.y10_c01411{bottom:395.019000px;}
.yf_c01411{bottom:412.951500px;}
.ye_c01411{bottom:430.884000px;}
.yd_c01411{bottom:457.644000px;}
.yc_c01411{bottom:484.404000px;}
.yb_c01411{bottom:511.162500px;}
.ya_c01411{bottom:537.922500px;}
.y9_c01411{bottom:580.054500px;}
.y8_c01411{bottom:1044.795000px;}
.y7_c01411{bottom:1061.232000px;}
.y6_c01411{bottom:1077.670500px;}
.y5_c01411{bottom:1094.109000px;}
.y4_c01411{bottom:1110.547500px;}
.y3_c01411{bottom:1126.986000px;}
.y2_c01411{bottom:1143.424500px;}
.y1_c01411{bottom:1159.863000px;}
.h6_c01411{height:35.190766px;}
.h2_c01411{height:36.007158px;}
.h4_c01411{height:40.511979px;}
.h5_c01411{height:52.332837px;}
.h3_c01411{height:58.337477px;}
.h0_c01411{height:1262.835000px;}
.h1_c01411{height:1263.000000px;}
.w0_c01411{width:892.920000px;}
.w1_c01411{width:893.250000px;}
.x0_c01411{left:0.000000px;}
.x3_c01411{left:127.558500px;}
.x1_c01411{left:137.122500px;}
.x2_c01411{left:177.007500px;}
.x4_c01411{left:196.948500px;}
.x5_c01411{left:435.249000px;}
@media print{
.v0_c01411{vertical-align:0.000000pt;}
.ls3_c01411{letter-spacing:0.000000pt;}
.ls0_c01411{letter-spacing:0.078221pt;}
.ls1_c01411{letter-spacing:0.087539pt;}
.ls2_c01411{letter-spacing:0.092873pt;}
.wsb_c01411{word-spacing:-29.967501pt;}
.ws0_c01411{word-spacing:-23.622682pt;}
.ws1_c01411{word-spacing:-23.544461pt;}
.ws8_c01411{word-spacing:-18.331184pt;}
.ws6_c01411{word-spacing:-17.799845pt;}
.wse_c01411{word-spacing:-16.896570pt;}
.wsd_c01411{word-spacing:-15.249420pt;}
.ws7_c01411{word-spacing:-14.930617pt;}
.ws5_c01411{word-spacing:-14.452412pt;}
.wsa_c01411{word-spacing:-12.805687pt;}
.wsc_c01411{word-spacing:-12.805262pt;}
.wsf_c01411{word-spacing:-11.104978pt;}
.ws3_c01411{word-spacing:-8.878599pt;}
.ws4_c01411{word-spacing:-8.877777pt;}
.ws9_c01411{word-spacing:-1.104128pt;}
.ws13_c01411{word-spacing:0.000000pt;}
.ws11_c01411{word-spacing:0.039110pt;}
.ws14_c01411{word-spacing:0.050460pt;}
.ws10_c01411{word-spacing:0.156442pt;}
.ws12_c01411{word-spacing:0.195063pt;}
.ws2_c01411{word-spacing:38.256533pt;}
._4_c01411{margin-left:-3.666237pt;}
._5_c01411{margin-left:-2.762961pt;}
._1_c01411{margin-left:-0.956410pt;}
._7_c01411{width:0.893988pt;}
._0_c01411{width:17.183004pt;}
._3_c01411{width:22.346687pt;}
._2_c01411{width:29.371292pt;}
._6_c01411{width:34.430746pt;}
.fs0_c01411{font-size:39.110400pt;}
.fs2_c01411{font-size:53.133867pt;}
.fs1_c01411{font-size:76.513067pt;}
.y0_c01411{bottom:0.000000pt;}
.y1f_c01411{bottom:39.333333pt;}
.y1e_c01411{bottom:72.934667pt;}
.y1d_c01411{bottom:87.546667pt;}
.y1c_c01411{bottom:102.157333pt;}
.y1b_c01411{bottom:116.769333pt;}
.y1a_c01411{bottom:131.381333pt;}
.y19_c01411{bottom:145.993333pt;}
.y18_c01411{bottom:160.605333pt;}
.y17_c01411{bottom:175.217333pt;}
.y16_c01411{bottom:189.829333pt;}
.y15_c01411{bottom:219.053333pt;}
.y14_c01411{bottom:262.888000pt;}
.y13_c01411{bottom:277.168000pt;}
.y12_c01411{bottom:319.248000pt;}
.y11_c01411{bottom:335.188000pt;}
.y10_c01411{bottom:351.128000pt;}
.yf_c01411{bottom:367.068000pt;}
.ye_c01411{bottom:383.008000pt;}
.yd_c01411{bottom:406.794667pt;}
.yc_c01411{bottom:430.581333pt;}
.yb_c01411{bottom:454.366667pt;}
.ya_c01411{bottom:478.153333pt;}
.y9_c01411{bottom:515.604000pt;}
.y8_c01411{bottom:928.706667pt;}
.y7_c01411{bottom:943.317333pt;}
.y6_c01411{bottom:957.929333pt;}
.y5_c01411{bottom:972.541333pt;}
.y4_c01411{bottom:987.153333pt;}
.y3_c01411{bottom:1001.765333pt;}
.y2_c01411{bottom:1016.377333pt;}
.y1_c01411{bottom:1030.989333pt;}
.h6_c01411{height:31.280681pt;}
.h2_c01411{height:32.006363pt;}
.h4_c01411{height:36.010648pt;}
.h5_c01411{height:46.518078pt;}
.h3_c01411{height:51.855535pt;}
.h0_c01411{height:1122.520000pt;}
.h1_c01411{height:1122.666667pt;}
.w0_c01411{width:793.706667pt;}
.w1_c01411{width:794.000000pt;}
.x0_c01411{left:0.000000pt;}
.x3_c01411{left:113.385333pt;}
.x1_c01411{left:121.886667pt;}
.x2_c01411{left:157.340000pt;}
.x4_c01411{left:175.065333pt;}
.x5_c01411{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01412 {
    display:none;
  }
  .loading-indicator_c01412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01412 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01412 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01412" -> "#page-container .classname_c01412")
 */
.pf_c01412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01412 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01412 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01412 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01412 {overflow:visible;}
  }
}
.c_c01412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01412 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01412:after { /* webkit #35443 */
  content: '';
}
.t_c01412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01412 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01412 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01412 { /* info for Javascript */
  display:none;
}
.l_c01412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01412:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01412 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01412.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01412;src:url('chunks/assets/font_bf681beeabb8296545c46699.woff2')format("woff");}.ff1_c01412{font-family:ff1_c01412;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01412;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01412{font-family:ff2_c01412;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01412;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff3_c01412{font-family:ff3_c01412;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01412;src:url('chunks/assets/font_3d718c9bfc40f4280e34d88d.woff2')format("woff");}.ff4_c01412{font-family:ff4_c01412;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01412;src:url('chunks/assets/font_cd896ba8d4a31a993d891546.woff2')format("woff");}.ff5_c01412{font-family:ff5_c01412;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01412{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01412{vertical-align:0.000000px;}
.ls3_c01412{letter-spacing:0.000000px;}
.ls0_c01412{letter-spacing:0.087998px;}
.ls2_c01412{letter-spacing:0.098482px;}
.ls1_c01412{letter-spacing:0.104482px;}
.sc__c01412{text-shadow:none;}
.sc0_c01412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01412{-webkit-text-stroke:0px transparent;}
.sc0_c01412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01412{word-spacing:-26.575517px;}
.ws2_c01412{word-spacing:-26.487518px;}
.wsb_c01412{word-spacing:-18.769538px;}
.wsf_c01412{word-spacing:-17.816455px;}
.ws11_c01412{word-spacing:-17.813129px;}
.ws9_c01412{word-spacing:-17.693578px;}
.ws12_c01412{word-spacing:-17.574026px;}
.ws14_c01412{word-spacing:-17.215373px;}
.ws15_c01412{word-spacing:-17.036046px;}
.wsa_c01412{word-spacing:-14.943900px;}
.ws8_c01412{word-spacing:-13.867939px;}
.wse_c01412{word-spacing:-10.586882px;}
.ws6_c01412{word-spacing:-9.988424px;}
.ws7_c01412{word-spacing:-9.987499px;}
.ws0_c01412{word-spacing:0.000000px;}
.ws3_c01412{word-spacing:0.043999px;}
.ws16_c01412{word-spacing:0.175997px;}
.ws4_c01412{word-spacing:0.213446px;}
.ws17_c01412{word-spacing:0.219446px;}
.ws10_c01412{word-spacing:1.715969px;}
.ws13_c01412{word-spacing:2.155961px;}
.wsd_c01412{word-spacing:9.922750px;}
.ws5_c01412{word-spacing:43.038600px;}
.wsc_c01412{word-spacing:47.399856px;}
._2_c01412{margin-left:-4.423394px;}
._7_c01412{margin-left:-3.287658px;}
._4_c01412{margin-left:-1.075961px;}
._0_c01412{width:1.041538px;}
._6_c01412{width:17.693578px;}
._3_c01412{width:19.930500px;}
._1_c01412{width:22.147855px;}
._5_c01412{width:105.900750px;}
.fc5_c01412{color:rgb(0,0,207);}
.fc4_c01412{color:rgb(79,153,5);}
.fc6_c01412{color:rgb(6,69,173);}
.fc3_c01412{color:rgb(207,92,0);}
.fc2_c01412{color:rgb(0,0,0);}
.fc1_c01412{color:rgb(143,89,3);}
.fc0_c01412{color:rgb(33,74,135);}
.fs0_c01412{font-size:43.999200px;}
.fs2_c01412{font-size:59.775600px;}
.fs1_c01412{font-size:86.077200px;}
.y0_c01412{bottom:0.000000px;}
.y1f_c01412{bottom:44.250000px;}
.y1e_c01412{bottom:98.490000px;}
.y1d_c01412{bottom:114.553500px;}
.y1c_c01412{bottom:160.602000px;}
.y1b_c01412{bottom:178.536000px;}
.y1a_c01412{bottom:196.468500px;}
.y19_c01412{bottom:214.401000px;}
.y18_c01412{bottom:232.333500px;}
.y17_c01412{bottom:250.266000px;}
.y16_c01412{bottom:276.810000px;}
.y15_c01412{bottom:303.355500px;}
.y14_c01412{bottom:321.288000px;}
.y13_c01412{bottom:347.832000px;}
.y12_c01412{bottom:374.376000px;}
.y11_c01412{bottom:416.293500px;}
.y10_c01412{bottom:880.411500px;}
.yf_c01412{bottom:896.848500px;}
.ye_c01412{bottom:913.287000px;}
.yd_c01412{bottom:929.725500px;}
.yc_c01412{bottom:946.164000px;}
.yb_c01412{bottom:962.602500px;}
.ya_c01412{bottom:979.041000px;}
.y9_c01412{bottom:995.479500px;}
.y8_c01412{bottom:1011.918000px;}
.y7_c01412{bottom:1028.356500px;}
.y6_c01412{bottom:1044.795000px;}
.y5_c01412{bottom:1077.670500px;}
.y4_c01412{bottom:1094.109000px;}
.y3_c01412{bottom:1110.547500px;}
.y2_c01412{bottom:1143.424500px;}
.y1_c01412{bottom:1159.863000px;}
.h3_c01412{height:35.190766px;}
.h2_c01412{height:36.007158px;}
.h5_c01412{height:40.511979px;}
.h6_c01412{height:52.332837px;}
.h4_c01412{height:58.337477px;}
.h0_c01412{height:1262.835000px;}
.h1_c01412{height:1263.000000px;}
.w0_c01412{width:892.920000px;}
.w1_c01412{width:893.250000px;}
.x0_c01412{left:0.000000px;}
.x4_c01412{left:127.558500px;}
.x2_c01412{left:137.122500px;}
.x3_c01412{left:177.007500px;}
.x1_c01412{left:196.948500px;}
.x5_c01412{left:435.249000px;}
@media print{
.v0_c01412{vertical-align:0.000000pt;}
.ls3_c01412{letter-spacing:0.000000pt;}
.ls0_c01412{letter-spacing:0.078221pt;}
.ls2_c01412{letter-spacing:0.087539pt;}
.ls1_c01412{letter-spacing:0.092873pt;}
.ws1_c01412{word-spacing:-23.622682pt;}
.ws2_c01412{word-spacing:-23.544461pt;}
.wsb_c01412{word-spacing:-16.684034pt;}
.wsf_c01412{word-spacing:-15.836849pt;}
.ws11_c01412{word-spacing:-15.833892pt;}
.ws9_c01412{word-spacing:-15.727625pt;}
.ws12_c01412{word-spacing:-15.621357pt;}
.ws14_c01412{word-spacing:-15.302554pt;}
.ws15_c01412{word-spacing:-15.143152pt;}
.wsa_c01412{word-spacing:-13.283467pt;}
.ws8_c01412{word-spacing:-12.327057pt;}
.wse_c01412{word-spacing:-9.410562pt;}
.ws6_c01412{word-spacing:-8.878599pt;}
.ws7_c01412{word-spacing:-8.877777pt;}
.ws0_c01412{word-spacing:0.000000pt;}
.ws3_c01412{word-spacing:0.039110pt;}
.ws16_c01412{word-spacing:0.156442pt;}
.ws4_c01412{word-spacing:0.189730pt;}
.ws17_c01412{word-spacing:0.195063pt;}
.ws10_c01412{word-spacing:1.525306pt;}
.ws13_c01412{word-spacing:1.916410pt;}
.wsd_c01412{word-spacing:8.820222pt;}
.ws5_c01412{word-spacing:38.256533pt;}
.wsc_c01412{word-spacing:42.133205pt;}
._2_c01412{margin-left:-3.931906pt;}
._7_c01412{margin-left:-2.922363pt;}
._4_c01412{margin-left:-0.956410pt;}
._0_c01412{width:0.925811pt;}
._6_c01412{width:15.727625pt;}
._3_c01412{width:17.716000pt;}
._1_c01412{width:19.686982pt;}
._5_c01412{width:94.134000pt;}
.fs0_c01412{font-size:39.110400pt;}
.fs2_c01412{font-size:53.133867pt;}
.fs1_c01412{font-size:76.513067pt;}
.y0_c01412{bottom:0.000000pt;}
.y1f_c01412{bottom:39.333333pt;}
.y1e_c01412{bottom:87.546667pt;}
.y1d_c01412{bottom:101.825333pt;}
.y1c_c01412{bottom:142.757333pt;}
.y1b_c01412{bottom:158.698667pt;}
.y1a_c01412{bottom:174.638667pt;}
.y19_c01412{bottom:190.578667pt;}
.y18_c01412{bottom:206.518667pt;}
.y17_c01412{bottom:222.458667pt;}
.y16_c01412{bottom:246.053333pt;}
.y15_c01412{bottom:269.649333pt;}
.y14_c01412{bottom:285.589333pt;}
.y13_c01412{bottom:309.184000pt;}
.y12_c01412{bottom:332.778667pt;}
.y11_c01412{bottom:370.038667pt;}
.y10_c01412{bottom:782.588000pt;}
.yf_c01412{bottom:797.198667pt;}
.ye_c01412{bottom:811.810667pt;}
.yd_c01412{bottom:826.422667pt;}
.yc_c01412{bottom:841.034667pt;}
.yb_c01412{bottom:855.646667pt;}
.ya_c01412{bottom:870.258667pt;}
.y9_c01412{bottom:884.870667pt;}
.y8_c01412{bottom:899.482667pt;}
.y7_c01412{bottom:914.094667pt;}
.y6_c01412{bottom:928.706667pt;}
.y5_c01412{bottom:957.929333pt;}
.y4_c01412{bottom:972.541333pt;}
.y3_c01412{bottom:987.153333pt;}
.y2_c01412{bottom:1016.377333pt;}
.y1_c01412{bottom:1030.989333pt;}
.h3_c01412{height:31.280681pt;}
.h2_c01412{height:32.006363pt;}
.h5_c01412{height:36.010648pt;}
.h6_c01412{height:46.518078pt;}
.h4_c01412{height:51.855535pt;}
.h0_c01412{height:1122.520000pt;}
.h1_c01412{height:1122.666667pt;}
.w0_c01412{width:793.706667pt;}
.w1_c01412{width:794.000000pt;}
.x0_c01412{left:0.000000pt;}
.x4_c01412{left:113.385333pt;}
.x2_c01412{left:121.886667pt;}
.x3_c01412{left:157.340000pt;}
.x1_c01412{left:175.065333pt;}
.x5_c01412{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01413 {
    display:none;
  }
  .loading-indicator_c01413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01413" -> "#page-container .classname_c01413")
 */
.pf_c01413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01413 {overflow:visible;}
  }
}
.c_c01413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01413:after { /* webkit #35443 */
  content: '';
}
.t_c01413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01413 { /* info for Javascript */
  display:none;
}
.l_c01413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01413:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01413 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01413.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01413;src:url('chunks/assets/font_70247e77e57f78a3ecbdf22a.woff2')format("woff");}.ff1_c01413{font-family:ff1_c01413;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01413;src:url('chunks/assets/font_80bd30b22879b6bc36fc7261.woff2')format("woff");}.ff2_c01413{font-family:ff2_c01413;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01413;src:url('chunks/assets/font_8f6cf5f4d3d15774254ad02d.woff2')format("woff");}.ff3_c01413{font-family:ff3_c01413;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01413;src:url('chunks/assets/font_90602a40a8fa7a14c33040da.woff2')format("woff");}.ff4_c01413{font-family:ff4_c01413;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01413;src:url('chunks/assets/font_77f549e75849b3da13335402.woff2')format("woff");}.ff5_c01413{font-family:ff5_c01413;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01413{vertical-align:0.000000px;}
.ls3_c01413{letter-spacing:0.000000px;}
.ls0_c01413{letter-spacing:0.087998px;}
.ls2_c01413{letter-spacing:0.098482px;}
.ls1_c01413{letter-spacing:0.104482px;}
.sc__c01413{text-shadow:none;}
.sc0_c01413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01413{-webkit-text-stroke:0px transparent;}
.sc0_c01413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01413{word-spacing:-26.575517px;}
.ws8_c01413{word-spacing:-26.487518px;}
.wsf_c01413{word-spacing:-18.769538px;}
.wse_c01413{word-spacing:-15.362329px;}
.ws10_c01413{word-spacing:-14.943900px;}
.wsd_c01413{word-spacing:-11.536691px;}
.wsb_c01413{word-spacing:-9.988424px;}
.wsc_c01413{word-spacing:-9.987499px;}
.ws2_c01413{word-spacing:0.000000px;}
.ws4_c01413{word-spacing:0.043999px;}
.ws5_c01413{word-spacing:0.046284px;}
.ws3_c01413{word-spacing:0.056767px;}
.ws7_c01413{word-spacing:0.073250px;}
.ws6_c01413{word-spacing:0.073800px;}
.ws0_c01413{word-spacing:0.175997px;}
.ws9_c01413{word-spacing:0.213446px;}
.wsa_c01413{word-spacing:43.038600px;}
._5_c01413{margin-left:-4.423394px;}
._3_c01413{width:1.041538px;}
._6_c01413{width:19.930500px;}
._4_c01413{width:26.794607px;}
._1_c01413{width:53.283031px;}
._0_c01413{width:79.858548px;}
._2_c01413{width:106.390066px;}
.fc5_c01413{color:rgb(0,0,207);}
.fc4_c01413{color:rgb(207,92,0);}
.fc3_c01413{color:rgb(79,153,5);}
.fc2_c01413{color:rgb(33,74,135);}
.fc1_c01413{color:rgb(0,0,0);}
.fc0_c01413{color:rgb(143,89,3);}
.fs0_c01413{font-size:43.999200px;}
.fs2_c01413{font-size:59.775600px;}
.fs1_c01413{font-size:86.077200px;}
.y0_c01413{bottom:0.000000px;}
.y21_c01413{bottom:44.250000px;}
.y20_c01413{bottom:82.051500px;}
.y1f_c01413{bottom:108.232500px;}
.y1e_c01413{bottom:126.165000px;}
.y1d_c01413{bottom:152.347500px;}
.y1c_c01413{bottom:178.528500px;}
.y1b_c01413{bottom:220.083000px;}
.y1a_c01413{bottom:683.151000px;}
.y19_c01413{bottom:699.589500px;}
.y18_c01413{bottom:716.028000px;}
.y17_c01413{bottom:732.465000px;}
.y16_c01413{bottom:748.903500px;}
.y15_c01413{bottom:765.342000px;}
.y14_c01413{bottom:781.780500px;}
.y13_c01413{bottom:798.219000px;}
.y12_c01413{bottom:814.657500px;}
.y11_c01413{bottom:831.096000px;}
.y10_c01413{bottom:847.534500px;}
.yf_c01413{bottom:880.411500px;}
.ye_c01413{bottom:896.848500px;}
.yd_c01413{bottom:913.287000px;}
.yc_c01413{bottom:946.164000px;}
.yb_c01413{bottom:962.602500px;}
.ya_c01413{bottom:979.041000px;}
.y9_c01413{bottom:995.479500px;}
.y8_c01413{bottom:1011.918000px;}
.y7_c01413{bottom:1028.356500px;}
.y6_c01413{bottom:1044.795000px;}
.y5_c01413{bottom:1061.232000px;}
.y4_c01413{bottom:1077.670500px;}
.y3_c01413{bottom:1094.109000px;}
.y2_c01413{bottom:1110.547500px;}
.y1_c01413{bottom:1143.424500px;}
.h2_c01413{height:35.190766px;}
.h3_c01413{height:36.007158px;}
.h5_c01413{height:40.511979px;}
.h6_c01413{height:52.332837px;}
.h4_c01413{height:58.337477px;}
.h0_c01413{height:1262.835000px;}
.h1_c01413{height:1263.000000px;}
.w0_c01413{width:892.920000px;}
.w1_c01413{width:893.250000px;}
.x0_c01413{left:0.000000px;}
.x4_c01413{left:127.558500px;}
.x1_c01413{left:137.122500px;}
.x2_c01413{left:143.770500px;}
.x3_c01413{left:177.007500px;}
.x5_c01413{left:435.249000px;}
@media print{
.v0_c01413{vertical-align:0.000000pt;}
.ls3_c01413{letter-spacing:0.000000pt;}
.ls0_c01413{letter-spacing:0.078221pt;}
.ls2_c01413{letter-spacing:0.087539pt;}
.ls1_c01413{letter-spacing:0.092873pt;}
.ws1_c01413{word-spacing:-23.622682pt;}
.ws8_c01413{word-spacing:-23.544461pt;}
.wsf_c01413{word-spacing:-16.684034pt;}
.wse_c01413{word-spacing:-13.655404pt;}
.ws10_c01413{word-spacing:-13.283467pt;}
.wsd_c01413{word-spacing:-10.254836pt;}
.wsb_c01413{word-spacing:-8.878599pt;}
.wsc_c01413{word-spacing:-8.877777pt;}
.ws2_c01413{word-spacing:0.000000pt;}
.ws4_c01413{word-spacing:0.039110pt;}
.ws5_c01413{word-spacing:0.041141pt;}
.ws3_c01413{word-spacing:0.050460pt;}
.ws7_c01413{word-spacing:0.065111pt;}
.ws6_c01413{word-spacing:0.065600pt;}
.ws0_c01413{word-spacing:0.156442pt;}
.ws9_c01413{word-spacing:0.189730pt;}
.wsa_c01413{word-spacing:38.256533pt;}
._5_c01413{margin-left:-3.931906pt;}
._3_c01413{width:0.925811pt;}
._6_c01413{width:17.716000pt;}
._4_c01413{width:23.817428pt;}
._1_c01413{width:47.362694pt;}
._0_c01413{width:70.985376pt;}
._2_c01413{width:94.568947pt;}
.fs0_c01413{font-size:39.110400pt;}
.fs2_c01413{font-size:53.133867pt;}
.fs1_c01413{font-size:76.513067pt;}
.y0_c01413{bottom:0.000000pt;}
.y21_c01413{bottom:39.333333pt;}
.y20_c01413{bottom:72.934667pt;}
.y1f_c01413{bottom:96.206667pt;}
.y1e_c01413{bottom:112.146667pt;}
.y1d_c01413{bottom:135.420000pt;}
.y1c_c01413{bottom:158.692000pt;}
.y1b_c01413{bottom:195.629333pt;}
.y1a_c01413{bottom:607.245333pt;}
.y19_c01413{bottom:621.857333pt;}
.y18_c01413{bottom:636.469333pt;}
.y17_c01413{bottom:651.080000pt;}
.y16_c01413{bottom:665.692000pt;}
.y15_c01413{bottom:680.304000pt;}
.y14_c01413{bottom:694.916000pt;}
.y13_c01413{bottom:709.528000pt;}
.y12_c01413{bottom:724.140000pt;}
.y11_c01413{bottom:738.752000pt;}
.y10_c01413{bottom:753.364000pt;}
.yf_c01413{bottom:782.588000pt;}
.ye_c01413{bottom:797.198667pt;}
.yd_c01413{bottom:811.810667pt;}
.yc_c01413{bottom:841.034667pt;}
.yb_c01413{bottom:855.646667pt;}
.ya_c01413{bottom:870.258667pt;}
.y9_c01413{bottom:884.870667pt;}
.y8_c01413{bottom:899.482667pt;}
.y7_c01413{bottom:914.094667pt;}
.y6_c01413{bottom:928.706667pt;}
.y5_c01413{bottom:943.317333pt;}
.y4_c01413{bottom:957.929333pt;}
.y3_c01413{bottom:972.541333pt;}
.y2_c01413{bottom:987.153333pt;}
.y1_c01413{bottom:1016.377333pt;}
.h2_c01413{height:31.280681pt;}
.h3_c01413{height:32.006363pt;}
.h5_c01413{height:36.010648pt;}
.h6_c01413{height:46.518078pt;}
.h4_c01413{height:51.855535pt;}
.h0_c01413{height:1122.520000pt;}
.h1_c01413{height:1122.666667pt;}
.w0_c01413{width:793.706667pt;}
.w1_c01413{width:794.000000pt;}
.x0_c01413{left:0.000000pt;}
.x4_c01413{left:113.385333pt;}
.x1_c01413{left:121.886667pt;}
.x2_c01413{left:127.796000pt;}
.x3_c01413{left:157.340000pt;}
.x5_c01413{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01414 {
    display:none;
  }
  .loading-indicator_c01414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01414 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01414 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01414" -> "#page-container .classname_c01414")
 */
.pf_c01414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01414 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01414 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01414 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01414 {overflow:visible;}
  }
}
.c_c01414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01414 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01414:after { /* webkit #35443 */
  content: '';
}
.t_c01414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01414 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01414 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01414 { /* info for Javascript */
  display:none;
}
.l_c01414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01414:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01414 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01414.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01414;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01414{font-family:ff1_c01414;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01414;src:url('chunks/assets/font_051d74f7554c06ac1935a1ca.woff2')format("woff");}.ff2_c01414{font-family:ff2_c01414;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01414;src:url('chunks/assets/font_3c7cd40963cac198f8b213e2.woff2')format("woff");}.ff3_c01414{font-family:ff3_c01414;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01414;src:url('chunks/assets/font_27eab2ff5046cc6da4d66ddf.woff2')format("woff");}.ff4_c01414{font-family:ff4_c01414;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01414;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c01414{font-family:ff5_c01414;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01414{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01414{vertical-align:0.000000px;}
.ls3_c01414{letter-spacing:0.000000px;}
.ls0_c01414{letter-spacing:0.087998px;}
.ls2_c01414{letter-spacing:0.098482px;}
.ls1_c01414{letter-spacing:0.104482px;}
.sc__c01414{text-shadow:none;}
.sc0_c01414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01414{-webkit-text-stroke:0px transparent;}
.sc0_c01414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01414{word-spacing:-26.575517px;}
.wsd_c01414{word-spacing:-26.487518px;}
.wsb_c01414{word-spacing:-18.769538px;}
.ws4_c01414{word-spacing:-17.816455px;}
.ws6_c01414{word-spacing:-17.813129px;}
.ws7_c01414{word-spacing:-17.574026px;}
.ws9_c01414{word-spacing:-17.215373px;}
.wsa_c01414{word-spacing:-17.036046px;}
.ws3_c01414{word-spacing:-10.586882px;}
.ws10_c01414{word-spacing:0.000000px;}
.wse_c01414{word-spacing:0.043999px;}
.ws12_c01414{word-spacing:0.046284px;}
.ws11_c01414{word-spacing:0.056767px;}
.ws14_c01414{word-spacing:0.073250px;}
.ws13_c01414{word-spacing:0.073800px;}
.wsc_c01414{word-spacing:0.175997px;}
.ws15_c01414{word-spacing:0.213446px;}
.wsf_c01414{word-spacing:0.219446px;}
.ws5_c01414{word-spacing:1.715969px;}
.ws8_c01414{word-spacing:2.155961px;}
.ws1_c01414{word-spacing:9.922750px;}
.ws0_c01414{word-spacing:47.399856px;}
._2_c01414{margin-left:-3.825638px;}
._0_c01414{margin-left:-1.075961px;}
._3_c01414{width:1.005737px;}
._5_c01414{width:53.283031px;}
._4_c01414{width:79.858548px;}
._1_c01414{width:105.900750px;}
.fc6_c01414{color:rgb(0,0,207);}
.fc5_c01414{color:rgb(79,153,5);}
.fc3_c01414{color:rgb(33,74,135);}
.fc2_c01414{color:rgb(143,89,3);}
.fc4_c01414{color:rgb(207,92,0);}
.fc1_c01414{color:rgb(6,69,173);}
.fc0_c01414{color:rgb(0,0,0);}
.fs1_c01414{font-size:43.999200px;}
.fs0_c01414{font-size:59.775600px;}
.y0_c01414{bottom:0.000000px;}
.y23_c01414{bottom:44.250000px;}
.y22_c01414{bottom:486.792000px;}
.y21_c01414{bottom:503.230500px;}
.y20_c01414{bottom:519.669000px;}
.y1f_c01414{bottom:536.107500px;}
.y1e_c01414{bottom:552.546000px;}
.y1d_c01414{bottom:568.983000px;}
.y1c_c01414{bottom:585.421500px;}
.y1b_c01414{bottom:601.860000px;}
.y1a_c01414{bottom:618.298500px;}
.y19_c01414{bottom:634.737000px;}
.y18_c01414{bottom:651.175500px;}
.y17_c01414{bottom:684.052500px;}
.y16_c01414{bottom:700.491000px;}
.y15_c01414{bottom:716.929500px;}
.y14_c01414{bottom:749.805000px;}
.y13_c01414{bottom:766.243500px;}
.y12_c01414{bottom:782.682000px;}
.y11_c01414{bottom:799.120500px;}
.y10_c01414{bottom:815.559000px;}
.yf_c01414{bottom:831.997500px;}
.ye_c01414{bottom:848.436000px;}
.yd_c01414{bottom:864.874500px;}
.yc_c01414{bottom:881.313000px;}
.yb_c01414{bottom:897.751500px;}
.ya_c01414{bottom:914.188500px;}
.y9_c01414{bottom:963.504000px;}
.y8_c01414{bottom:1012.819500px;}
.y7_c01414{bottom:1028.884500px;}
.y6_c01414{bottom:1070.199000px;}
.y5_c01414{bottom:1088.131500px;}
.y4_c01414{bottom:1106.064000px;}
.y3_c01414{bottom:1123.998000px;}
.y2_c01414{bottom:1141.930500px;}
.y1_c01414{bottom:1159.863000px;}
.h3_c01414{height:35.190766px;}
.h4_c01414{height:36.007158px;}
.h2_c01414{height:52.332837px;}
.h0_c01414{height:1262.835000px;}
.h1_c01414{height:1263.000000px;}
.w0_c01414{width:892.920000px;}
.w1_c01414{width:893.250000px;}
.x0_c01414{left:0.000000px;}
.x1_c01414{left:127.558500px;}
.x2_c01414{left:137.122500px;}
.x3_c01414{left:143.770500px;}
.x4_c01414{left:177.007500px;}
.x5_c01414{left:435.249000px;}
@media print{
.v0_c01414{vertical-align:0.000000pt;}
.ls3_c01414{letter-spacing:0.000000pt;}
.ls0_c01414{letter-spacing:0.078221pt;}
.ls2_c01414{letter-spacing:0.087539pt;}
.ls1_c01414{letter-spacing:0.092873pt;}
.ws2_c01414{word-spacing:-23.622682pt;}
.wsd_c01414{word-spacing:-23.544461pt;}
.wsb_c01414{word-spacing:-16.684034pt;}
.ws4_c01414{word-spacing:-15.836849pt;}
.ws6_c01414{word-spacing:-15.833892pt;}
.ws7_c01414{word-spacing:-15.621357pt;}
.ws9_c01414{word-spacing:-15.302554pt;}
.wsa_c01414{word-spacing:-15.143152pt;}
.ws3_c01414{word-spacing:-9.410562pt;}
.ws10_c01414{word-spacing:0.000000pt;}
.wse_c01414{word-spacing:0.039110pt;}
.ws12_c01414{word-spacing:0.041141pt;}
.ws11_c01414{word-spacing:0.050460pt;}
.ws14_c01414{word-spacing:0.065111pt;}
.ws13_c01414{word-spacing:0.065600pt;}
.wsc_c01414{word-spacing:0.156442pt;}
.ws15_c01414{word-spacing:0.189730pt;}
.wsf_c01414{word-spacing:0.195063pt;}
.ws5_c01414{word-spacing:1.525306pt;}
.ws8_c01414{word-spacing:1.916410pt;}
.ws1_c01414{word-spacing:8.820222pt;}
.ws0_c01414{word-spacing:42.133205pt;}
._2_c01414{margin-left:-3.400567pt;}
._0_c01414{margin-left:-0.956410pt;}
._3_c01414{width:0.893988pt;}
._5_c01414{width:47.362694pt;}
._4_c01414{width:70.985376pt;}
._1_c01414{width:94.134000pt;}
.fs1_c01414{font-size:39.110400pt;}
.fs0_c01414{font-size:53.133867pt;}
.y0_c01414{bottom:0.000000pt;}
.y23_c01414{bottom:39.333333pt;}
.y22_c01414{bottom:432.704000pt;}
.y21_c01414{bottom:447.316000pt;}
.y20_c01414{bottom:461.928000pt;}
.y1f_c01414{bottom:476.540000pt;}
.y1e_c01414{bottom:491.152000pt;}
.y1d_c01414{bottom:505.762667pt;}
.y1c_c01414{bottom:520.374667pt;}
.y1b_c01414{bottom:534.986667pt;}
.y1a_c01414{bottom:549.598667pt;}
.y19_c01414{bottom:564.210667pt;}
.y18_c01414{bottom:578.822667pt;}
.y17_c01414{bottom:608.046667pt;}
.y16_c01414{bottom:622.658667pt;}
.y15_c01414{bottom:637.270667pt;}
.y14_c01414{bottom:666.493333pt;}
.y13_c01414{bottom:681.105333pt;}
.y12_c01414{bottom:695.717333pt;}
.y11_c01414{bottom:710.329333pt;}
.y10_c01414{bottom:724.941333pt;}
.yf_c01414{bottom:739.553333pt;}
.ye_c01414{bottom:754.165333pt;}
.yd_c01414{bottom:768.777333pt;}
.yc_c01414{bottom:783.389333pt;}
.yb_c01414{bottom:798.001333pt;}
.ya_c01414{bottom:812.612000pt;}
.y9_c01414{bottom:856.448000pt;}
.y8_c01414{bottom:900.284000pt;}
.y7_c01414{bottom:914.564000pt;}
.y6_c01414{bottom:951.288000pt;}
.y5_c01414{bottom:967.228000pt;}
.y4_c01414{bottom:983.168000pt;}
.y3_c01414{bottom:999.109333pt;}
.y2_c01414{bottom:1015.049333pt;}
.y1_c01414{bottom:1030.989333pt;}
.h3_c01414{height:31.280681pt;}
.h4_c01414{height:32.006363pt;}
.h2_c01414{height:46.518078pt;}
.h0_c01414{height:1122.520000pt;}
.h1_c01414{height:1122.666667pt;}
.w0_c01414{width:793.706667pt;}
.w1_c01414{width:794.000000pt;}
.x0_c01414{left:0.000000pt;}
.x1_c01414{left:113.385333pt;}
.x2_c01414{left:121.886667pt;}
.x3_c01414{left:127.796000pt;}
.x4_c01414{left:157.340000pt;}
.x5_c01414{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01415 {
    display:none;
  }
  .loading-indicator_c01415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01415 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01415 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01415" -> "#page-container .classname_c01415")
 */
.pf_c01415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01415 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01415 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01415 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01415 {overflow:visible;}
  }
}
.c_c01415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01415 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01415:after { /* webkit #35443 */
  content: '';
}
.t_c01415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01415 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01415 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01415 { /* info for Javascript */
  display:none;
}
.l_c01415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01415:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01415 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01415.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01415;src:url('chunks/assets/font_d50754a65161b52374e8f624.woff2')format("woff");}.ff1_c01415{font-family:ff1_c01415;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01415;src:url('chunks/assets/font_1dd582100f0d4d4da21c316f.woff2')format("woff");}.ff2_c01415{font-family:ff2_c01415;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01415;src:url('chunks/assets/font_d8253201bca9ad55e26b7691.woff2')format("woff");}.ff3_c01415{font-family:ff3_c01415;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01415;src:url('chunks/assets/font_83ae8e252220ce58c2f72177.woff2')format("woff");}.ff4_c01415{font-family:ff4_c01415;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01415;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff5_c01415{font-family:ff5_c01415;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01415{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01415{vertical-align:0.000000px;}
.ls3_c01415{letter-spacing:0.000000px;}
.ls0_c01415{letter-spacing:0.087998px;}
.ls2_c01415{letter-spacing:0.098482px;}
.ls1_c01415{letter-spacing:0.104482px;}
.sc__c01415{text-shadow:none;}
.sc0_c01415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01415{-webkit-text-stroke:0px transparent;}
.sc0_c01415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01415{word-spacing:-26.575517px;}
.ws11_c01415{word-spacing:-26.487518px;}
.ws5_c01415{word-spacing:-18.769538px;}
.ws9_c01415{word-spacing:-17.816455px;}
.wsb_c01415{word-spacing:-17.813129px;}
.wsc_c01415{word-spacing:-17.574026px;}
.wse_c01415{word-spacing:-17.215373px;}
.wsf_c01415{word-spacing:-17.036046px;}
.ws4_c01415{word-spacing:-14.943900px;}
.ws8_c01415{word-spacing:-10.586882px;}
.ws1_c01415{word-spacing:-9.988424px;}
.ws3_c01415{word-spacing:-9.987499px;}
.ws14_c01415{word-spacing:0.000000px;}
.ws12_c01415{word-spacing:0.043999px;}
.ws16_c01415{word-spacing:0.046284px;}
.ws15_c01415{word-spacing:0.056767px;}
.ws18_c01415{word-spacing:0.073250px;}
.ws17_c01415{word-spacing:0.073800px;}
.ws10_c01415{word-spacing:0.175997px;}
.ws19_c01415{word-spacing:0.213446px;}
.ws13_c01415{word-spacing:0.219446px;}
.wsa_c01415{word-spacing:1.715969px;}
.wsd_c01415{word-spacing:2.155961px;}
.ws7_c01415{word-spacing:9.922750px;}
.ws0_c01415{word-spacing:43.038600px;}
.ws6_c01415{word-spacing:47.399856px;}
._1_c01415{margin-left:-4.423394px;}
._5_c01415{margin-left:-3.287658px;}
._2_c01415{margin-left:-1.075961px;}
._6_c01415{width:1.005737px;}
._4_c01415{width:17.693578px;}
._0_c01415{width:19.935816px;}
._8_c01415{width:53.283031px;}
._7_c01415{width:79.858548px;}
._3_c01415{width:105.900750px;}
.fc6_c01415{color:rgb(0,0,207);}
.fc5_c01415{color:rgb(79,153,5);}
.fc3_c01415{color:rgb(33,74,135);}
.fc2_c01415{color:rgb(143,89,3);}
.fc4_c01415{color:rgb(207,92,0);}
.fc1_c01415{color:rgb(6,69,173);}
.fc0_c01415{color:rgb(0,0,0);}
.fs2_c01415{font-size:43.999200px;}
.fs1_c01415{font-size:59.775600px;}
.fs0_c01415{font-size:86.077200px;}
.y0_c01415{bottom:0.000000px;}
.y28_c01415{bottom:44.250000px;}
.y27_c01415{bottom:96.919500px;}
.y26_c01415{bottom:113.358000px;}
.y25_c01415{bottom:129.796500px;}
.y24_c01415{bottom:146.235000px;}
.y23_c01415{bottom:162.673500px;}
.y22_c01415{bottom:179.112000px;}
.y21_c01415{bottom:195.550500px;}
.y20_c01415{bottom:211.989000px;}
.y1f_c01415{bottom:228.427500px;}
.y1e_c01415{bottom:244.866000px;}
.y1d_c01415{bottom:261.304500px;}
.y1c_c01415{bottom:294.180000px;}
.y1b_c01415{bottom:310.618500px;}
.y1a_c01415{bottom:327.057000px;}
.y19_c01415{bottom:359.934000px;}
.y18_c01415{bottom:376.372500px;}
.y17_c01415{bottom:392.811000px;}
.y16_c01415{bottom:409.249500px;}
.y15_c01415{bottom:425.688000px;}
.y14_c01415{bottom:442.125000px;}
.y13_c01415{bottom:458.563500px;}
.y12_c01415{bottom:475.002000px;}
.y11_c01415{bottom:491.440500px;}
.y10_c01415{bottom:507.879000px;}
.yf_c01415{bottom:524.317500px;}
.ye_c01415{bottom:557.194500px;}
.yd_c01415{bottom:606.508500px;}
.yc_c01415{bottom:622.573500px;}
.yb_c01415{bottom:749.262000px;}
.ya_c01415{bottom:767.194500px;}
.y9_c01415{bottom:785.128500px;}
.y8_c01415{bottom:803.061000px;}
.y7_c01415{bottom:820.993500px;}
.y6_c01415{bottom:838.926000px;}
.y5_c01415{bottom:897.229500px;}
.y4_c01415{bottom:955.533000px;}
.y3_c01415{bottom:1013.836500px;}
.y2_c01415{bottom:1072.140000px;}
.y1_c01415{bottom:1159.863000px;}
.h5_c01415{height:35.190766px;}
.h6_c01415{height:36.007158px;}
.h3_c01415{height:40.511979px;}
.h4_c01415{height:52.332837px;}
.h2_c01415{height:58.337477px;}
.h0_c01415{height:1262.835000px;}
.h1_c01415{height:1263.000000px;}
.w0_c01415{width:892.920000px;}
.w1_c01415{width:893.250000px;}
.x0_c01415{left:0.000000px;}
.x1_c01415{left:127.558500px;}
.x2_c01415{left:137.122500px;}
.x3_c01415{left:143.770500px;}
.x4_c01415{left:177.007500px;}
.x5_c01415{left:435.249000px;}
@media print{
.v0_c01415{vertical-align:0.000000pt;}
.ls3_c01415{letter-spacing:0.000000pt;}
.ls0_c01415{letter-spacing:0.078221pt;}
.ls2_c01415{letter-spacing:0.087539pt;}
.ls1_c01415{letter-spacing:0.092873pt;}
.ws2_c01415{word-spacing:-23.622682pt;}
.ws11_c01415{word-spacing:-23.544461pt;}
.ws5_c01415{word-spacing:-16.684034pt;}
.ws9_c01415{word-spacing:-15.836849pt;}
.wsb_c01415{word-spacing:-15.833892pt;}
.wsc_c01415{word-spacing:-15.621357pt;}
.wse_c01415{word-spacing:-15.302554pt;}
.wsf_c01415{word-spacing:-15.143152pt;}
.ws4_c01415{word-spacing:-13.283467pt;}
.ws8_c01415{word-spacing:-9.410562pt;}
.ws1_c01415{word-spacing:-8.878599pt;}
.ws3_c01415{word-spacing:-8.877777pt;}
.ws14_c01415{word-spacing:0.000000pt;}
.ws12_c01415{word-spacing:0.039110pt;}
.ws16_c01415{word-spacing:0.041141pt;}
.ws15_c01415{word-spacing:0.050460pt;}
.ws18_c01415{word-spacing:0.065111pt;}
.ws17_c01415{word-spacing:0.065600pt;}
.ws10_c01415{word-spacing:0.156442pt;}
.ws19_c01415{word-spacing:0.189730pt;}
.ws13_c01415{word-spacing:0.195063pt;}
.wsa_c01415{word-spacing:1.525306pt;}
.wsd_c01415{word-spacing:1.916410pt;}
.ws7_c01415{word-spacing:8.820222pt;}
.ws0_c01415{word-spacing:38.256533pt;}
.ws6_c01415{word-spacing:42.133205pt;}
._1_c01415{margin-left:-3.931906pt;}
._5_c01415{margin-left:-2.922363pt;}
._2_c01415{margin-left:-0.956410pt;}
._6_c01415{width:0.893988pt;}
._4_c01415{width:15.727625pt;}
._0_c01415{width:17.720725pt;}
._8_c01415{width:47.362694pt;}
._7_c01415{width:70.985376pt;}
._3_c01415{width:94.134000pt;}
.fs2_c01415{font-size:39.110400pt;}
.fs1_c01415{font-size:53.133867pt;}
.fs0_c01415{font-size:76.513067pt;}
.y0_c01415{bottom:0.000000pt;}
.y28_c01415{bottom:39.333333pt;}
.y27_c01415{bottom:86.150667pt;}
.y26_c01415{bottom:100.762667pt;}
.y25_c01415{bottom:115.374667pt;}
.y24_c01415{bottom:129.986667pt;}
.y23_c01415{bottom:144.598667pt;}
.y22_c01415{bottom:159.210667pt;}
.y21_c01415{bottom:173.822667pt;}
.y20_c01415{bottom:188.434667pt;}
.y1f_c01415{bottom:203.046667pt;}
.y1e_c01415{bottom:217.658667pt;}
.y1d_c01415{bottom:232.270667pt;}
.y1c_c01415{bottom:261.493333pt;}
.y1b_c01415{bottom:276.105333pt;}
.y1a_c01415{bottom:290.717333pt;}
.y19_c01415{bottom:319.941333pt;}
.y18_c01415{bottom:334.553333pt;}
.y17_c01415{bottom:349.165333pt;}
.y16_c01415{bottom:363.777333pt;}
.y15_c01415{bottom:378.389333pt;}
.y14_c01415{bottom:393.000000pt;}
.y13_c01415{bottom:407.612000pt;}
.y12_c01415{bottom:422.224000pt;}
.y11_c01415{bottom:436.836000pt;}
.y10_c01415{bottom:451.448000pt;}
.yf_c01415{bottom:466.060000pt;}
.ye_c01415{bottom:495.284000pt;}
.yd_c01415{bottom:539.118667pt;}
.yc_c01415{bottom:553.398667pt;}
.yb_c01415{bottom:666.010667pt;}
.ya_c01415{bottom:681.950667pt;}
.y9_c01415{bottom:697.892000pt;}
.y8_c01415{bottom:713.832000pt;}
.y7_c01415{bottom:729.772000pt;}
.y6_c01415{bottom:745.712000pt;}
.y5_c01415{bottom:797.537333pt;}
.y4_c01415{bottom:849.362667pt;}
.y3_c01415{bottom:901.188000pt;}
.y2_c01415{bottom:953.013333pt;}
.y1_c01415{bottom:1030.989333pt;}
.h5_c01415{height:31.280681pt;}
.h6_c01415{height:32.006363pt;}
.h3_c01415{height:36.010648pt;}
.h4_c01415{height:46.518078pt;}
.h2_c01415{height:51.855535pt;}
.h0_c01415{height:1122.520000pt;}
.h1_c01415{height:1122.666667pt;}
.w0_c01415{width:793.706667pt;}
.w1_c01415{width:794.000000pt;}
.x0_c01415{left:0.000000pt;}
.x1_c01415{left:113.385333pt;}
.x2_c01415{left:121.886667pt;}
.x3_c01415{left:127.796000pt;}
.x4_c01415{left:157.340000pt;}
.x5_c01415{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01416 {
    display:none;
  }
  .loading-indicator_c01416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01416 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01416 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01416" -> "#page-container .classname_c01416")
 */
.pf_c01416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01416 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01416 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01416 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01416 {overflow:visible;}
  }
}
.c_c01416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01416 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01416:after { /* webkit #35443 */
  content: '';
}
.t_c01416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01416 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01416 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01416 { /* info for Javascript */
  display:none;
}
.l_c01416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01416:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01416 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01416.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01416;src:url('chunks/assets/font_b2c444a6cae581405fd764be.woff2')format("woff");}.ff1_c01416{font-family:ff1_c01416;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01416;src:url('chunks/assets/font_05b7f555c2ce9e93403dc603.woff2')format("woff");}.ff2_c01416{font-family:ff2_c01416;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01416;src:url('chunks/assets/font_0974fa23382194eadcfe8b71.woff2')format("woff");}.ff3_c01416{font-family:ff3_c01416;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01416;src:url('chunks/assets/font_2e4bb3cd69eed211c4f98d78.woff2')format("woff");}.ff4_c01416{font-family:ff4_c01416;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01416;src:url('chunks/assets/font_460435d40b3832b4cc838ade.woff2')format("woff");}.ff5_c01416{font-family:ff5_c01416;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01416{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01416{vertical-align:0.000000px;}
.ls3_c01416{letter-spacing:0.000000px;}
.ls0_c01416{letter-spacing:0.087998px;}
.ls2_c01416{letter-spacing:0.098482px;}
.ls1_c01416{letter-spacing:0.104482px;}
.sc__c01416{text-shadow:none;}
.sc0_c01416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01416{-webkit-text-stroke:0px transparent;}
.sc0_c01416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01416{word-spacing:-26.575517px;}
.ws11_c01416{word-spacing:-26.487518px;}
.ws5_c01416{word-spacing:-18.769538px;}
.ws9_c01416{word-spacing:-17.816455px;}
.wsb_c01416{word-spacing:-17.813129px;}
.wsc_c01416{word-spacing:-17.574026px;}
.wse_c01416{word-spacing:-17.215373px;}
.wsf_c01416{word-spacing:-17.036046px;}
.ws4_c01416{word-spacing:-14.943900px;}
.ws8_c01416{word-spacing:-10.586882px;}
.ws1_c01416{word-spacing:-9.988424px;}
.ws3_c01416{word-spacing:-9.987499px;}
.ws14_c01416{word-spacing:0.000000px;}
.ws12_c01416{word-spacing:0.043999px;}
.ws16_c01416{word-spacing:0.046284px;}
.ws15_c01416{word-spacing:0.056767px;}
.ws18_c01416{word-spacing:0.073250px;}
.ws17_c01416{word-spacing:0.073800px;}
.ws10_c01416{word-spacing:0.175997px;}
.ws19_c01416{word-spacing:0.213446px;}
.ws13_c01416{word-spacing:0.219446px;}
.wsa_c01416{word-spacing:1.715969px;}
.wsd_c01416{word-spacing:2.155961px;}
.ws7_c01416{word-spacing:9.922750px;}
.ws0_c01416{word-spacing:43.038600px;}
.ws6_c01416{word-spacing:47.399856px;}
._1_c01416{margin-left:-4.423394px;}
._5_c01416{margin-left:-3.287658px;}
._2_c01416{margin-left:-1.075961px;}
._6_c01416{width:1.005737px;}
._4_c01416{width:17.693578px;}
._0_c01416{width:19.935816px;}
._8_c01416{width:53.283031px;}
._7_c01416{width:79.858548px;}
._3_c01416{width:105.900750px;}
.fc5_c01416{color:rgb(79,153,5);}
.fc3_c01416{color:rgb(33,74,135);}
.fc2_c01416{color:rgb(143,89,3);}
.fc4_c01416{color:rgb(207,92,0);}
.fc1_c01416{color:rgb(6,69,173);}
.fc0_c01416{color:rgb(0,0,0);}
.fs2_c01416{font-size:43.999200px;}
.fs1_c01416{font-size:59.775600px;}
.fs0_c01416{font-size:86.077200px;}
.y0_c01416{bottom:0.000000px;}
.y1e_c01416{bottom:44.250000px;}
.y1d_c01416{bottom:86.982000px;}
.y1c_c01416{bottom:119.859000px;}
.y1b_c01416{bottom:136.297500px;}
.y1a_c01416{bottom:152.736000px;}
.y19_c01416{bottom:185.613000px;}
.y18_c01416{bottom:202.051500px;}
.y17_c01416{bottom:218.490000px;}
.y16_c01416{bottom:234.927000px;}
.y15_c01416{bottom:251.365500px;}
.y14_c01416{bottom:267.804000px;}
.y13_c01416{bottom:284.242500px;}
.y12_c01416{bottom:300.681000px;}
.y11_c01416{bottom:317.119500px;}
.y10_c01416{bottom:333.558000px;}
.yf_c01416{bottom:349.996500px;}
.ye_c01416{bottom:382.873500px;}
.yd_c01416{bottom:432.187500px;}
.yc_c01416{bottom:448.252500px;}
.yb_c01416{bottom:495.979500px;}
.ya_c01416{bottom:513.912000px;}
.y9_c01416{bottom:531.844500px;}
.y8_c01416{bottom:549.777000px;}
.y7_c01416{bottom:567.709500px;}
.y6_c01416{bottom:585.642000px;}
.y5_c01416{bottom:612.466500px;}
.y4_c01416{bottom:639.291000px;}
.y3_c01416{bottom:666.114000px;}
.y2_c01416{bottom:692.938500px;}
.y1_c01416{bottom:735.135000px;}
.h5_c01416{height:35.190766px;}
.h6_c01416{height:36.007158px;}
.h3_c01416{height:40.511979px;}
.h4_c01416{height:52.332837px;}
.h2_c01416{height:58.337477px;}
.h0_c01416{height:1262.835000px;}
.h1_c01416{height:1263.000000px;}
.w0_c01416{width:892.920000px;}
.w1_c01416{width:893.250000px;}
.x0_c01416{left:0.000000px;}
.x1_c01416{left:127.558500px;}
.x2_c01416{left:137.122500px;}
.x3_c01416{left:143.770500px;}
.x4_c01416{left:435.249000px;}
@media print{
.v0_c01416{vertical-align:0.000000pt;}
.ls3_c01416{letter-spacing:0.000000pt;}
.ls0_c01416{letter-spacing:0.078221pt;}
.ls2_c01416{letter-spacing:0.087539pt;}
.ls1_c01416{letter-spacing:0.092873pt;}
.ws2_c01416{word-spacing:-23.622682pt;}
.ws11_c01416{word-spacing:-23.544461pt;}
.ws5_c01416{word-spacing:-16.684034pt;}
.ws9_c01416{word-spacing:-15.836849pt;}
.wsb_c01416{word-spacing:-15.833892pt;}
.wsc_c01416{word-spacing:-15.621357pt;}
.wse_c01416{word-spacing:-15.302554pt;}
.wsf_c01416{word-spacing:-15.143152pt;}
.ws4_c01416{word-spacing:-13.283467pt;}
.ws8_c01416{word-spacing:-9.410562pt;}
.ws1_c01416{word-spacing:-8.878599pt;}
.ws3_c01416{word-spacing:-8.877777pt;}
.ws14_c01416{word-spacing:0.000000pt;}
.ws12_c01416{word-spacing:0.039110pt;}
.ws16_c01416{word-spacing:0.041141pt;}
.ws15_c01416{word-spacing:0.050460pt;}
.ws18_c01416{word-spacing:0.065111pt;}
.ws17_c01416{word-spacing:0.065600pt;}
.ws10_c01416{word-spacing:0.156442pt;}
.ws19_c01416{word-spacing:0.189730pt;}
.ws13_c01416{word-spacing:0.195063pt;}
.wsa_c01416{word-spacing:1.525306pt;}
.wsd_c01416{word-spacing:1.916410pt;}
.ws7_c01416{word-spacing:8.820222pt;}
.ws0_c01416{word-spacing:38.256533pt;}
.ws6_c01416{word-spacing:42.133205pt;}
._1_c01416{margin-left:-3.931906pt;}
._5_c01416{margin-left:-2.922363pt;}
._2_c01416{margin-left:-0.956410pt;}
._6_c01416{width:0.893988pt;}
._4_c01416{width:15.727625pt;}
._0_c01416{width:17.720725pt;}
._8_c01416{width:47.362694pt;}
._7_c01416{width:70.985376pt;}
._3_c01416{width:94.134000pt;}
.fs2_c01416{font-size:39.110400pt;}
.fs1_c01416{font-size:53.133867pt;}
.fs0_c01416{font-size:76.513067pt;}
.y0_c01416{bottom:0.000000pt;}
.y1e_c01416{bottom:39.333333pt;}
.y1d_c01416{bottom:77.317333pt;}
.y1c_c01416{bottom:106.541333pt;}
.y1b_c01416{bottom:121.153333pt;}
.y1a_c01416{bottom:135.765333pt;}
.y19_c01416{bottom:164.989333pt;}
.y18_c01416{bottom:179.601333pt;}
.y17_c01416{bottom:194.213333pt;}
.y16_c01416{bottom:208.824000pt;}
.y15_c01416{bottom:223.436000pt;}
.y14_c01416{bottom:238.048000pt;}
.y13_c01416{bottom:252.660000pt;}
.y12_c01416{bottom:267.272000pt;}
.y11_c01416{bottom:281.884000pt;}
.y10_c01416{bottom:296.496000pt;}
.yf_c01416{bottom:311.108000pt;}
.ye_c01416{bottom:340.332000pt;}
.yd_c01416{bottom:384.166667pt;}
.yc_c01416{bottom:398.446667pt;}
.yb_c01416{bottom:440.870667pt;}
.ya_c01416{bottom:456.810667pt;}
.y9_c01416{bottom:472.750667pt;}
.y8_c01416{bottom:488.690667pt;}
.y7_c01416{bottom:504.630667pt;}
.y6_c01416{bottom:520.570667pt;}
.y5_c01416{bottom:544.414667pt;}
.y4_c01416{bottom:568.258667pt;}
.y3_c01416{bottom:592.101333pt;}
.y2_c01416{bottom:615.945333pt;}
.y1_c01416{bottom:653.453333pt;}
.h5_c01416{height:31.280681pt;}
.h6_c01416{height:32.006363pt;}
.h3_c01416{height:36.010648pt;}
.h4_c01416{height:46.518078pt;}
.h2_c01416{height:51.855535pt;}
.h0_c01416{height:1122.520000pt;}
.h1_c01416{height:1122.666667pt;}
.w0_c01416{width:793.706667pt;}
.w1_c01416{width:794.000000pt;}
.x0_c01416{left:0.000000pt;}
.x1_c01416{left:113.385333pt;}
.x2_c01416{left:121.886667pt;}
.x3_c01416{left:127.796000pt;}
.x4_c01416{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01417 {
    display:none;
  }
  .loading-indicator_c01417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01417" -> "#page-container .classname_c01417")
 */
.pf_c01417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01417 {overflow:visible;}
  }
}
.c_c01417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01417:after { /* webkit #35443 */
  content: '';
}
.t_c01417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01417 { /* info for Javascript */
  display:none;
}
.l_c01417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01417:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01417 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01417.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01417;src:url('chunks/assets/font_2b9f8bd4dfccc582b4ed64ec.woff2')format("woff");}.ff1_c01417{font-family:ff1_c01417;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01417;src:url('chunks/assets/font_269dc4a839d11bd218adbd2a.woff2')format("woff");}.ff2_c01417{font-family:ff2_c01417;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01417;src:url('chunks/assets/font_b50283cc81590707a4709bfb.woff2')format("woff");}.ff3_c01417{font-family:ff3_c01417;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01417;src:url('chunks/assets/font_9aafe27a7b7a5cc8ec5b4590.woff2')format("woff");}.ff4_c01417{font-family:ff4_c01417;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01417;src:url('chunks/assets/font_1180f80b9fa88440bca1708a.woff2')format("woff");}.ff5_c01417{font-family:ff5_c01417;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01417{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01417{vertical-align:0.000000px;}
.ls3_c01417{letter-spacing:0.000000px;}
.ls0_c01417{letter-spacing:0.087998px;}
.ls1_c01417{letter-spacing:0.098482px;}
.ls2_c01417{letter-spacing:0.104482px;}
.sc__c01417{text-shadow:none;}
.sc0_c01417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01417{-webkit-text-stroke:0px transparent;}
.sc0_c01417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01417{word-spacing:-26.575517px;}
.ws1_c01417{word-spacing:-26.487518px;}
.ws8_c01417{word-spacing:-18.769538px;}
.wsc_c01417{word-spacing:-17.816455px;}
.wse_c01417{word-spacing:-17.813129px;}
.wsf_c01417{word-spacing:-17.574026px;}
.ws11_c01417{word-spacing:-17.215373px;}
.ws12_c01417{word-spacing:-17.036046px;}
.ws6_c01417{word-spacing:-16.378514px;}
.ws7_c01417{word-spacing:-14.943900px;}
.ws5_c01417{word-spacing:-12.552876px;}
.wsb_c01417{word-spacing:-10.586882px;}
.ws3_c01417{word-spacing:-9.988424px;}
.ws4_c01417{word-spacing:-9.987499px;}
.ws16_c01417{word-spacing:0.000000px;}
.ws14_c01417{word-spacing:0.043999px;}
.ws18_c01417{word-spacing:0.046284px;}
.ws17_c01417{word-spacing:0.056767px;}
.ws13_c01417{word-spacing:0.175997px;}
.ws15_c01417{word-spacing:0.219446px;}
.wsd_c01417{word-spacing:1.715969px;}
.ws10_c01417{word-spacing:2.155961px;}
.wsa_c01417{word-spacing:9.922750px;}
.ws2_c01417{word-spacing:43.038600px;}
.ws9_c01417{word-spacing:47.399856px;}
._1_c01417{margin-left:-4.423394px;}
._6_c01417{margin-left:-3.287658px;}
._3_c01417{margin-left:-1.075961px;}
._7_c01417{width:1.005737px;}
._5_c01417{width:17.693578px;}
._2_c01417{width:19.930500px;}
._0_c01417{width:24.780792px;}
._8_c01417{width:79.858548px;}
._4_c01417{width:105.900750px;}
.fc5_c01417{color:rgb(0,0,207);}
.fc6_c01417{color:rgb(6,69,173);}
.fc4_c01417{color:rgb(207,92,0);}
.fc3_c01417{color:rgb(79,153,5);}
.fc2_c01417{color:rgb(33,74,135);}
.fc1_c01417{color:rgb(143,89,3);}
.fc0_c01417{color:rgb(0,0,0);}
.fs0_c01417{font-size:43.999200px;}
.fs2_c01417{font-size:59.775600px;}
.fs1_c01417{font-size:86.077200px;}
.y0_c01417{bottom:0.000000px;}
.y20_c01417{bottom:44.250000px;}
.y1f_c01417{bottom:82.051500px;}
.y1e_c01417{bottom:98.490000px;}
.y1d_c01417{bottom:114.927000px;}
.y1c_c01417{bottom:131.365500px;}
.y1b_c01417{bottom:147.804000px;}
.y1a_c01417{bottom:164.242500px;}
.y19_c01417{bottom:197.119500px;}
.y18_c01417{bottom:229.996500px;}
.y17_c01417{bottom:246.061500px;}
.y16_c01417{bottom:292.110000px;}
.y15_c01417{bottom:310.042500px;}
.y14_c01417{bottom:327.975000px;}
.y13_c01417{bottom:345.907500px;}
.y12_c01417{bottom:363.840000px;}
.y11_c01417{bottom:381.772500px;}
.y10_c01417{bottom:408.318000px;}
.yf_c01417{bottom:434.862000px;}
.ye_c01417{bottom:452.794500px;}
.yd_c01417{bottom:479.338500px;}
.yc_c01417{bottom:505.884000px;}
.yb_c01417{bottom:547.800000px;}
.ya_c01417{bottom:1011.918000px;}
.y9_c01417{bottom:1028.356500px;}
.y8_c01417{bottom:1044.795000px;}
.y7_c01417{bottom:1061.232000px;}
.y6_c01417{bottom:1077.670500px;}
.y5_c01417{bottom:1094.109000px;}
.y4_c01417{bottom:1110.547500px;}
.y3_c01417{bottom:1126.986000px;}
.y2_c01417{bottom:1143.424500px;}
.y1_c01417{bottom:1159.863000px;}
.h6_c01417{height:35.190766px;}
.h2_c01417{height:36.007158px;}
.h4_c01417{height:40.511979px;}
.h5_c01417{height:52.332837px;}
.h3_c01417{height:58.337477px;}
.h0_c01417{height:1262.835000px;}
.h1_c01417{height:1263.000000px;}
.w0_c01417{width:892.920000px;}
.w1_c01417{width:893.250000px;}
.x0_c01417{left:0.000000px;}
.x3_c01417{left:127.558500px;}
.x1_c01417{left:137.122500px;}
.x4_c01417{left:143.770500px;}
.x2_c01417{left:177.007500px;}
.x5_c01417{left:435.249000px;}
@media print{
.v0_c01417{vertical-align:0.000000pt;}
.ls3_c01417{letter-spacing:0.000000pt;}
.ls0_c01417{letter-spacing:0.078221pt;}
.ls1_c01417{letter-spacing:0.087539pt;}
.ls2_c01417{letter-spacing:0.092873pt;}
.ws0_c01417{word-spacing:-23.622682pt;}
.ws1_c01417{word-spacing:-23.544461pt;}
.ws8_c01417{word-spacing:-16.684034pt;}
.wsc_c01417{word-spacing:-15.836849pt;}
.wse_c01417{word-spacing:-15.833892pt;}
.wsf_c01417{word-spacing:-15.621357pt;}
.ws11_c01417{word-spacing:-15.302554pt;}
.ws12_c01417{word-spacing:-15.143152pt;}
.ws6_c01417{word-spacing:-14.558679pt;}
.ws7_c01417{word-spacing:-13.283467pt;}
.ws5_c01417{word-spacing:-11.158112pt;}
.wsb_c01417{word-spacing:-9.410562pt;}
.ws3_c01417{word-spacing:-8.878599pt;}
.ws4_c01417{word-spacing:-8.877777pt;}
.ws16_c01417{word-spacing:0.000000pt;}
.ws14_c01417{word-spacing:0.039110pt;}
.ws18_c01417{word-spacing:0.041141pt;}
.ws17_c01417{word-spacing:0.050460pt;}
.ws13_c01417{word-spacing:0.156442pt;}
.ws15_c01417{word-spacing:0.195063pt;}
.wsd_c01417{word-spacing:1.525306pt;}
.ws10_c01417{word-spacing:1.916410pt;}
.wsa_c01417{word-spacing:8.820222pt;}
.ws2_c01417{word-spacing:38.256533pt;}
.ws9_c01417{word-spacing:42.133205pt;}
._1_c01417{margin-left:-3.931906pt;}
._6_c01417{margin-left:-2.922363pt;}
._3_c01417{margin-left:-0.956410pt;}
._7_c01417{width:0.893988pt;}
._5_c01417{width:15.727625pt;}
._2_c01417{width:17.716000pt;}
._0_c01417{width:22.027371pt;}
._8_c01417{width:70.985376pt;}
._4_c01417{width:94.134000pt;}
.fs0_c01417{font-size:39.110400pt;}
.fs2_c01417{font-size:53.133867pt;}
.fs1_c01417{font-size:76.513067pt;}
.y0_c01417{bottom:0.000000pt;}
.y20_c01417{bottom:39.333333pt;}
.y1f_c01417{bottom:72.934667pt;}
.y1e_c01417{bottom:87.546667pt;}
.y1d_c01417{bottom:102.157333pt;}
.y1c_c01417{bottom:116.769333pt;}
.y1b_c01417{bottom:131.381333pt;}
.y1a_c01417{bottom:145.993333pt;}
.y19_c01417{bottom:175.217333pt;}
.y18_c01417{bottom:204.441333pt;}
.y17_c01417{bottom:218.721333pt;}
.y16_c01417{bottom:259.653333pt;}
.y15_c01417{bottom:275.593333pt;}
.y14_c01417{bottom:291.533333pt;}
.y13_c01417{bottom:307.473333pt;}
.y12_c01417{bottom:323.413333pt;}
.y11_c01417{bottom:339.353333pt;}
.y10_c01417{bottom:362.949333pt;}
.yf_c01417{bottom:386.544000pt;}
.ye_c01417{bottom:402.484000pt;}
.yd_c01417{bottom:426.078667pt;}
.yc_c01417{bottom:449.674667pt;}
.yb_c01417{bottom:486.933333pt;}
.ya_c01417{bottom:899.482667pt;}
.y9_c01417{bottom:914.094667pt;}
.y8_c01417{bottom:928.706667pt;}
.y7_c01417{bottom:943.317333pt;}
.y6_c01417{bottom:957.929333pt;}
.y5_c01417{bottom:972.541333pt;}
.y4_c01417{bottom:987.153333pt;}
.y3_c01417{bottom:1001.765333pt;}
.y2_c01417{bottom:1016.377333pt;}
.y1_c01417{bottom:1030.989333pt;}
.h6_c01417{height:31.280681pt;}
.h2_c01417{height:32.006363pt;}
.h4_c01417{height:36.010648pt;}
.h5_c01417{height:46.518078pt;}
.h3_c01417{height:51.855535pt;}
.h0_c01417{height:1122.520000pt;}
.h1_c01417{height:1122.666667pt;}
.w0_c01417{width:793.706667pt;}
.w1_c01417{width:794.000000pt;}
.x0_c01417{left:0.000000pt;}
.x3_c01417{left:113.385333pt;}
.x1_c01417{left:121.886667pt;}
.x4_c01417{left:127.796000pt;}
.x2_c01417{left:157.340000pt;}
.x5_c01417{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01418 {
    display:none;
  }
  .loading-indicator_c01418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01418 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01418 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01418" -> "#page-container .classname_c01418")
 */
.pf_c01418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01418 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01418 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01418 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01418 {overflow:visible;}
  }
}
.c_c01418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01418 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01418:after { /* webkit #35443 */
  content: '';
}
.t_c01418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01418 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01418 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01418 { /* info for Javascript */
  display:none;
}
.l_c01418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01418:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01418 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01418.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01418;src:url('chunks/assets/font_429401e9038534e38abb4825.woff2')format("woff");}.ff1_c01418{font-family:ff1_c01418;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01418;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01418{font-family:ff2_c01418;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01418;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff3_c01418{font-family:ff3_c01418;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01418;src:url('chunks/assets/font_582010570b3ddcfc9c8b29e6.woff2')format("woff");}.ff4_c01418{font-family:ff4_c01418;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01418;src:url('chunks/assets/font_e85c521bd65a546f0adfd10c.woff2')format("woff");}.ff5_c01418{font-family:ff5_c01418;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01418{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01418{vertical-align:0.000000px;}
.ls3_c01418{letter-spacing:0.000000px;}
.ls0_c01418{letter-spacing:0.087998px;}
.ls2_c01418{letter-spacing:0.098482px;}
.ls1_c01418{letter-spacing:0.104482px;}
.sc__c01418{text-shadow:none;}
.sc0_c01418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01418{-webkit-text-stroke:0px transparent;}
.sc0_c01418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01418{word-spacing:-26.575517px;}
.ws5_c01418{word-spacing:-26.487518px;}
.wsc_c01418{word-spacing:-20.682358px;}
.wse_c01418{word-spacing:-18.769538px;}
.ws12_c01418{word-spacing:-17.816455px;}
.ws14_c01418{word-spacing:-17.813129px;}
.ws15_c01418{word-spacing:-17.574026px;}
.ws17_c01418{word-spacing:-17.215373px;}
.ws18_c01418{word-spacing:-17.036046px;}
.wsb_c01418{word-spacing:-16.916495px;}
.wsd_c01418{word-spacing:-14.943900px;}
.ws11_c01418{word-spacing:-10.586882px;}
.ws9_c01418{word-spacing:-9.988424px;}
.wsa_c01418{word-spacing:-9.987499px;}
.ws4_c01418{word-spacing:0.000000px;}
.ws6_c01418{word-spacing:0.043999px;}
.ws0_c01418{word-spacing:0.056767px;}
.ws3_c01418{word-spacing:0.073250px;}
.ws2_c01418{word-spacing:0.073800px;}
.ws19_c01418{word-spacing:0.175997px;}
.ws7_c01418{word-spacing:0.213446px;}
.ws13_c01418{word-spacing:1.715969px;}
.ws16_c01418{word-spacing:2.155961px;}
.ws10_c01418{word-spacing:9.922750px;}
.ws8_c01418{word-spacing:43.038600px;}
.wsf_c01418{word-spacing:47.399856px;}
._5_c01418{margin-left:-4.423394px;}
._8_c01418{margin-left:-3.287658px;}
._6_c01418{margin-left:-1.075961px;}
._3_c01418{width:1.041538px;}
._7_c01418{width:17.693578px;}
._4_c01418{width:19.034411px;}
._0_c01418{width:53.283031px;}
._1_c01418{width:79.858548px;}
._2_c01418{width:106.390066px;}
.fc5_c01418{color:rgb(0,0,207);}
.fc6_c01418{color:rgb(6,69,173);}
.fc4_c01418{color:rgb(207,92,0);}
.fc3_c01418{color:rgb(143,89,3);}
.fc2_c01418{color:rgb(0,0,0);}
.fc1_c01418{color:rgb(79,153,5);}
.fc0_c01418{color:rgb(33,74,135);}
.fs0_c01418{font-size:43.999200px;}
.fs2_c01418{font-size:59.775600px;}
.fs1_c01418{font-size:86.077200px;}
.y0_c01418{bottom:0.000000px;}
.y20_c01418{bottom:44.250000px;}
.y1f_c01418{bottom:82.051500px;}
.y1e_c01418{bottom:128.583000px;}
.y1d_c01418{bottom:146.515500px;}
.y1c_c01418{bottom:164.449500px;}
.y1b_c01418{bottom:182.382000px;}
.y1a_c01418{bottom:200.314500px;}
.y19_c01418{bottom:218.247000px;}
.y18_c01418{bottom:244.872000px;}
.y17_c01418{bottom:271.497000px;}
.y16_c01418{bottom:298.122000px;}
.y15_c01418{bottom:324.747000px;}
.y14_c01418{bottom:366.745500px;}
.y13_c01418{bottom:831.096000px;}
.y12_c01418{bottom:847.534500px;}
.y11_c01418{bottom:863.973000px;}
.y10_c01418{bottom:880.411500px;}
.yf_c01418{bottom:896.848500px;}
.ye_c01418{bottom:913.287000px;}
.yd_c01418{bottom:929.725500px;}
.yc_c01418{bottom:946.164000px;}
.yb_c01418{bottom:962.602500px;}
.ya_c01418{bottom:979.041000px;}
.y9_c01418{bottom:995.479500px;}
.y8_c01418{bottom:1028.356500px;}
.y7_c01418{bottom:1044.795000px;}
.y6_c01418{bottom:1061.232000px;}
.y5_c01418{bottom:1094.109000px;}
.y4_c01418{bottom:1110.547500px;}
.y3_c01418{bottom:1126.986000px;}
.y2_c01418{bottom:1143.424500px;}
.y1_c01418{bottom:1159.863000px;}
.h3_c01418{height:35.190766px;}
.h2_c01418{height:36.007158px;}
.h5_c01418{height:40.511979px;}
.h6_c01418{height:52.332837px;}
.h4_c01418{height:58.337477px;}
.h0_c01418{height:1262.835000px;}
.h1_c01418{height:1263.000000px;}
.w0_c01418{width:892.920000px;}
.w1_c01418{width:893.250000px;}
.x0_c01418{left:0.000000px;}
.x4_c01418{left:127.558500px;}
.x2_c01418{left:137.122500px;}
.x1_c01418{left:143.770500px;}
.x3_c01418{left:177.007500px;}
.x5_c01418{left:435.249000px;}
@media print{
.v0_c01418{vertical-align:0.000000pt;}
.ls3_c01418{letter-spacing:0.000000pt;}
.ls0_c01418{letter-spacing:0.078221pt;}
.ls2_c01418{letter-spacing:0.087539pt;}
.ls1_c01418{letter-spacing:0.092873pt;}
.ws1_c01418{word-spacing:-23.622682pt;}
.ws5_c01418{word-spacing:-23.544461pt;}
.wsc_c01418{word-spacing:-18.384318pt;}
.wse_c01418{word-spacing:-16.684034pt;}
.ws12_c01418{word-spacing:-15.836849pt;}
.ws14_c01418{word-spacing:-15.833892pt;}
.ws15_c01418{word-spacing:-15.621357pt;}
.ws17_c01418{word-spacing:-15.302554pt;}
.ws18_c01418{word-spacing:-15.143152pt;}
.wsb_c01418{word-spacing:-15.036884pt;}
.wsd_c01418{word-spacing:-13.283467pt;}
.ws11_c01418{word-spacing:-9.410562pt;}
.ws9_c01418{word-spacing:-8.878599pt;}
.wsa_c01418{word-spacing:-8.877777pt;}
.ws4_c01418{word-spacing:0.000000pt;}
.ws6_c01418{word-spacing:0.039110pt;}
.ws0_c01418{word-spacing:0.050460pt;}
.ws3_c01418{word-spacing:0.065111pt;}
.ws2_c01418{word-spacing:0.065600pt;}
.ws19_c01418{word-spacing:0.156442pt;}
.ws7_c01418{word-spacing:0.189730pt;}
.ws13_c01418{word-spacing:1.525306pt;}
.ws16_c01418{word-spacing:1.916410pt;}
.ws10_c01418{word-spacing:8.820222pt;}
.ws8_c01418{word-spacing:38.256533pt;}
.wsf_c01418{word-spacing:42.133205pt;}
._5_c01418{margin-left:-3.931906pt;}
._8_c01418{margin-left:-2.922363pt;}
._6_c01418{margin-left:-0.956410pt;}
._3_c01418{width:0.925811pt;}
._7_c01418{width:15.727625pt;}
._4_c01418{width:16.919476pt;}
._0_c01418{width:47.362694pt;}
._1_c01418{width:70.985376pt;}
._2_c01418{width:94.568947pt;}
.fs0_c01418{font-size:39.110400pt;}
.fs2_c01418{font-size:53.133867pt;}
.fs1_c01418{font-size:76.513067pt;}
.y0_c01418{bottom:0.000000pt;}
.y20_c01418{bottom:39.333333pt;}
.y1f_c01418{bottom:72.934667pt;}
.y1e_c01418{bottom:114.296000pt;}
.y1d_c01418{bottom:130.236000pt;}
.y1c_c01418{bottom:146.177333pt;}
.y1b_c01418{bottom:162.117333pt;}
.y1a_c01418{bottom:178.057333pt;}
.y19_c01418{bottom:193.997333pt;}
.y18_c01418{bottom:217.664000pt;}
.y17_c01418{bottom:241.330667pt;}
.y16_c01418{bottom:264.997333pt;}
.y15_c01418{bottom:288.664000pt;}
.y14_c01418{bottom:325.996000pt;}
.y13_c01418{bottom:738.752000pt;}
.y12_c01418{bottom:753.364000pt;}
.y11_c01418{bottom:767.976000pt;}
.y10_c01418{bottom:782.588000pt;}
.yf_c01418{bottom:797.198667pt;}
.ye_c01418{bottom:811.810667pt;}
.yd_c01418{bottom:826.422667pt;}
.yc_c01418{bottom:841.034667pt;}
.yb_c01418{bottom:855.646667pt;}
.ya_c01418{bottom:870.258667pt;}
.y9_c01418{bottom:884.870667pt;}
.y8_c01418{bottom:914.094667pt;}
.y7_c01418{bottom:928.706667pt;}
.y6_c01418{bottom:943.317333pt;}
.y5_c01418{bottom:972.541333pt;}
.y4_c01418{bottom:987.153333pt;}
.y3_c01418{bottom:1001.765333pt;}
.y2_c01418{bottom:1016.377333pt;}
.y1_c01418{bottom:1030.989333pt;}
.h3_c01418{height:31.280681pt;}
.h2_c01418{height:32.006363pt;}
.h5_c01418{height:36.010648pt;}
.h6_c01418{height:46.518078pt;}
.h4_c01418{height:51.855535pt;}
.h0_c01418{height:1122.520000pt;}
.h1_c01418{height:1122.666667pt;}
.w0_c01418{width:793.706667pt;}
.w1_c01418{width:794.000000pt;}
.x0_c01418{left:0.000000pt;}
.x4_c01418{left:113.385333pt;}
.x2_c01418{left:121.886667pt;}
.x1_c01418{left:127.796000pt;}
.x3_c01418{left:157.340000pt;}
.x5_c01418{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01419 {
    display:none;
  }
  .loading-indicator_c01419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01419 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01419 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01419" -> "#page-container .classname_c01419")
 */
.pf_c01419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01419 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01419 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01419 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01419 {overflow:visible;}
  }
}
.c_c01419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01419 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01419:after { /* webkit #35443 */
  content: '';
}
.t_c01419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01419 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01419 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01419 { /* info for Javascript */
  display:none;
}
.l_c01419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01419:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01419 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01419.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01419;src:url('chunks/assets/font_487a1a76a76b69f00247b38b.woff2')format("woff");}.ff1_c01419{font-family:ff1_c01419;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01419;src:url('chunks/assets/font_1ee39bed3eb19b69c4a4c814.woff2')format("woff");}.ff2_c01419{font-family:ff2_c01419;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01419;src:url('chunks/assets/font_da966cfdddfa0d02314739d1.woff2')format("woff");}.ff3_c01419{font-family:ff3_c01419;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01419;src:url('chunks/assets/font_f018f3bdb8248e771415b56c.woff2')format("woff");}.ff4_c01419{font-family:ff4_c01419;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01419;src:url('chunks/assets/font_cd92499dcbc855cbee113ad2.woff2')format("woff");}.ff5_c01419{font-family:ff5_c01419;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01419{vertical-align:0.000000px;}
.ls3_c01419{letter-spacing:0.000000px;}
.ls1_c01419{letter-spacing:0.087998px;}
.ls2_c01419{letter-spacing:0.098482px;}
.ls0_c01419{letter-spacing:0.104482px;}
.sc__c01419{text-shadow:none;}
.sc0_c01419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01419{-webkit-text-stroke:0px transparent;}
.sc0_c01419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01419{word-spacing:-26.575517px;}
.ws0_c01419{word-spacing:-26.487518px;}
.wse_c01419{word-spacing:-18.769538px;}
.wsd_c01419{word-spacing:-14.943900px;}
.wsb_c01419{word-spacing:-9.988424px;}
.wsc_c01419{word-spacing:-9.987499px;}
.ws4_c01419{word-spacing:0.000000px;}
.ws2_c01419{word-spacing:0.043999px;}
.ws6_c01419{word-spacing:0.046284px;}
.ws5_c01419{word-spacing:0.056767px;}
.ws8_c01419{word-spacing:0.073250px;}
.ws7_c01419{word-spacing:0.073800px;}
.ws9_c01419{word-spacing:0.213446px;}
.ws3_c01419{word-spacing:0.219446px;}
.wsa_c01419{word-spacing:43.038600px;}
._4_c01419{margin-left:-7.833025px;}
._5_c01419{margin-left:-1.549390px;}
._0_c01419{width:1.005737px;}
._6_c01419{width:19.935816px;}
._2_c01419{width:53.283031px;}
._1_c01419{width:79.858548px;}
._3_c01419{width:106.390066px;}
.fc5_c01419{color:rgb(0,0,207);}
.fc4_c01419{color:rgb(143,89,3);}
.fc3_c01419{color:rgb(79,153,5);}
.fc2_c01419{color:rgb(207,92,0);}
.fc1_c01419{color:rgb(0,0,0);}
.fc0_c01419{color:rgb(33,74,135);}
.fs0_c01419{font-size:43.999200px;}
.fs2_c01419{font-size:59.775600px;}
.fs1_c01419{font-size:86.077200px;}
.y0_c01419{bottom:0.000000px;}
.y20_c01419{bottom:44.250000px;}
.y1f_c01419{bottom:82.051500px;}
.y1e_c01419{bottom:109.861500px;}
.y1d_c01419{bottom:137.673000px;}
.y1c_c01419{bottom:181.266000px;}
.y1b_c01419{bottom:650.274000px;}
.y1a_c01419{bottom:666.712500px;}
.y19_c01419{bottom:683.151000px;}
.y18_c01419{bottom:699.589500px;}
.y17_c01419{bottom:716.028000px;}
.y16_c01419{bottom:732.465000px;}
.y15_c01419{bottom:748.903500px;}
.y14_c01419{bottom:765.342000px;}
.y13_c01419{bottom:781.780500px;}
.y12_c01419{bottom:798.219000px;}
.y11_c01419{bottom:814.657500px;}
.y10_c01419{bottom:847.534500px;}
.yf_c01419{bottom:863.973000px;}
.ye_c01419{bottom:880.411500px;}
.yd_c01419{bottom:913.287000px;}
.yc_c01419{bottom:929.725500px;}
.yb_c01419{bottom:946.164000px;}
.ya_c01419{bottom:962.602500px;}
.y9_c01419{bottom:979.041000px;}
.y8_c01419{bottom:995.479500px;}
.y7_c01419{bottom:1011.918000px;}
.y6_c01419{bottom:1028.356500px;}
.y5_c01419{bottom:1044.795000px;}
.y4_c01419{bottom:1061.232000px;}
.y3_c01419{bottom:1077.670500px;}
.y2_c01419{bottom:1110.547500px;}
.y1_c01419{bottom:1159.863000px;}
.h3_c01419{height:35.190766px;}
.h2_c01419{height:36.007158px;}
.h5_c01419{height:40.511979px;}
.h6_c01419{height:52.332837px;}
.h4_c01419{height:58.337477px;}
.h0_c01419{height:1262.835000px;}
.h1_c01419{height:1263.000000px;}
.w0_c01419{width:892.920000px;}
.w1_c01419{width:893.250000px;}
.x0_c01419{left:0.000000px;}
.x4_c01419{left:127.558500px;}
.x1_c01419{left:137.122500px;}
.x2_c01419{left:143.770500px;}
.x3_c01419{left:177.007500px;}
.x5_c01419{left:435.249000px;}
@media print{
.v0_c01419{vertical-align:0.000000pt;}
.ls3_c01419{letter-spacing:0.000000pt;}
.ls1_c01419{letter-spacing:0.078221pt;}
.ls2_c01419{letter-spacing:0.087539pt;}
.ls0_c01419{letter-spacing:0.092873pt;}
.ws1_c01419{word-spacing:-23.622682pt;}
.ws0_c01419{word-spacing:-23.544461pt;}
.wse_c01419{word-spacing:-16.684034pt;}
.wsd_c01419{word-spacing:-13.283467pt;}
.wsb_c01419{word-spacing:-8.878599pt;}
.wsc_c01419{word-spacing:-8.877777pt;}
.ws4_c01419{word-spacing:0.000000pt;}
.ws2_c01419{word-spacing:0.039110pt;}
.ws6_c01419{word-spacing:0.041141pt;}
.ws5_c01419{word-spacing:0.050460pt;}
.ws8_c01419{word-spacing:0.065111pt;}
.ws7_c01419{word-spacing:0.065600pt;}
.ws9_c01419{word-spacing:0.189730pt;}
.ws3_c01419{word-spacing:0.195063pt;}
.wsa_c01419{word-spacing:38.256533pt;}
._4_c01419{margin-left:-6.962689pt;}
._5_c01419{margin-left:-1.377235pt;}
._0_c01419{width:0.893988pt;}
._6_c01419{width:17.720725pt;}
._2_c01419{width:47.362694pt;}
._1_c01419{width:70.985376pt;}
._3_c01419{width:94.568947pt;}
.fs0_c01419{font-size:39.110400pt;}
.fs2_c01419{font-size:53.133867pt;}
.fs1_c01419{font-size:76.513067pt;}
.y0_c01419{bottom:0.000000pt;}
.y20_c01419{bottom:39.333333pt;}
.y1f_c01419{bottom:72.934667pt;}
.y1e_c01419{bottom:97.654667pt;}
.y1d_c01419{bottom:122.376000pt;}
.y1c_c01419{bottom:161.125333pt;}
.y1b_c01419{bottom:578.021333pt;}
.y1a_c01419{bottom:592.633333pt;}
.y19_c01419{bottom:607.245333pt;}
.y18_c01419{bottom:621.857333pt;}
.y17_c01419{bottom:636.469333pt;}
.y16_c01419{bottom:651.080000pt;}
.y15_c01419{bottom:665.692000pt;}
.y14_c01419{bottom:680.304000pt;}
.y13_c01419{bottom:694.916000pt;}
.y12_c01419{bottom:709.528000pt;}
.y11_c01419{bottom:724.140000pt;}
.y10_c01419{bottom:753.364000pt;}
.yf_c01419{bottom:767.976000pt;}
.ye_c01419{bottom:782.588000pt;}
.yd_c01419{bottom:811.810667pt;}
.yc_c01419{bottom:826.422667pt;}
.yb_c01419{bottom:841.034667pt;}
.ya_c01419{bottom:855.646667pt;}
.y9_c01419{bottom:870.258667pt;}
.y8_c01419{bottom:884.870667pt;}
.y7_c01419{bottom:899.482667pt;}
.y6_c01419{bottom:914.094667pt;}
.y5_c01419{bottom:928.706667pt;}
.y4_c01419{bottom:943.317333pt;}
.y3_c01419{bottom:957.929333pt;}
.y2_c01419{bottom:987.153333pt;}
.y1_c01419{bottom:1030.989333pt;}
.h3_c01419{height:31.280681pt;}
.h2_c01419{height:32.006363pt;}
.h5_c01419{height:36.010648pt;}
.h6_c01419{height:46.518078pt;}
.h4_c01419{height:51.855535pt;}
.h0_c01419{height:1122.520000pt;}
.h1_c01419{height:1122.666667pt;}
.w0_c01419{width:793.706667pt;}
.w1_c01419{width:794.000000pt;}
.x0_c01419{left:0.000000pt;}
.x4_c01419{left:113.385333pt;}
.x1_c01419{left:121.886667pt;}
.x2_c01419{left:127.796000pt;}
.x3_c01419{left:157.340000pt;}
.x5_c01419{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01420 {
    display:none;
  }
  .loading-indicator_c01420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01420 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01420 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01420" -> "#page-container .classname_c01420")
 */
.pf_c01420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01420 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01420 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01420 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01420 {overflow:visible;}
  }
}
.c_c01420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01420 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01420:after { /* webkit #35443 */
  content: '';
}
.t_c01420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01420 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01420 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01420 { /* info for Javascript */
  display:none;
}
.l_c01420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01420:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01420 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01420.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01420;src:url('chunks/assets/font_c07d514bddcb12c6d36e029f.woff2')format("woff");}.ff1_c01420{font-family:ff1_c01420;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01420;src:url('chunks/assets/font_56d32167b370d6d8fbe8176b.woff2')format("woff");}.ff2_c01420{font-family:ff2_c01420;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01420;src:url('chunks/assets/font_7b9daa3a6e73dddb60108f52.woff2')format("woff");}.ff3_c01420{font-family:ff3_c01420;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01420;src:url('chunks/assets/font_68892a6e49a526872b7769bd.woff2')format("woff");}.ff4_c01420{font-family:ff4_c01420;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01420;src:url('chunks/assets/font_0402b8f2210f1cea0bfe8c03.woff2')format("woff");}.ff5_c01420{font-family:ff5_c01420;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01420{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01420{vertical-align:0.000000px;}
.ls3_c01420{letter-spacing:0.000000px;}
.ls0_c01420{letter-spacing:0.087998px;}
.ls2_c01420{letter-spacing:0.098482px;}
.ls1_c01420{letter-spacing:0.104482px;}
.sc__c01420{text-shadow:none;}
.sc0_c01420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01420{-webkit-text-stroke:0px transparent;}
.sc0_c01420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01420{word-spacing:-26.575517px;}
.wsc_c01420{word-spacing:-26.487518px;}
.wsa_c01420{word-spacing:-20.503031px;}
.ws3_c01420{word-spacing:-20.383480px;}
.ws4_c01420{word-spacing:-20.323704px;}
.ws9_c01420{word-spacing:-20.084602px;}
.ws8_c01420{word-spacing:-19.128192px;}
.ws6_c01420{word-spacing:-19.118113px;}
.ws1_c01420{word-spacing:-18.769538px;}
.ws5_c01420{word-spacing:-16.557841px;}
.ws0_c01420{word-spacing:-14.943900px;}
.ws2_c01420{word-spacing:-10.788144px;}
.ws10_c01420{word-spacing:0.000000px;}
.wsd_c01420{word-spacing:0.043999px;}
.wsb_c01420{word-spacing:0.175997px;}
.wse_c01420{word-spacing:0.213446px;}
.wsf_c01420{word-spacing:0.219446px;}
._3_c01420{margin-left:-4.388844px;}
._4_c01420{margin-left:-3.287658px;}
._1_c01420{margin-left:-1.075961px;}
._5_c01420{width:1.005737px;}
._0_c01420{width:19.930500px;}
._2_c01420{width:26.420815px;}
.fc6_c01420{color:rgb(0,0,207);}
.fc5_c01420{color:rgb(79,153,5);}
.fc3_c01420{color:rgb(33,74,135);}
.fc2_c01420{color:rgb(143,89,3);}
.fc4_c01420{color:rgb(207,92,0);}
.fc1_c01420{color:rgb(6,69,173);}
.fc0_c01420{color:rgb(0,0,0);}
.fs1_c01420{font-size:43.999200px;}
.fs0_c01420{font-size:59.775600px;}
.y0_c01420{bottom:0.000000px;}
.y2a_c01420{bottom:44.250000px;}
.y29_c01420{bottom:96.919500px;}
.y28_c01420{bottom:113.358000px;}
.y27_c01420{bottom:129.796500px;}
.y26_c01420{bottom:146.235000px;}
.y25_c01420{bottom:162.673500px;}
.y24_c01420{bottom:179.112000px;}
.y23_c01420{bottom:195.550500px;}
.y22_c01420{bottom:211.989000px;}
.y21_c01420{bottom:228.427500px;}
.y20_c01420{bottom:244.866000px;}
.y1f_c01420{bottom:261.304500px;}
.y1e_c01420{bottom:294.180000px;}
.y1d_c01420{bottom:310.618500px;}
.y1c_c01420{bottom:327.057000px;}
.y1b_c01420{bottom:359.934000px;}
.y1a_c01420{bottom:376.372500px;}
.y19_c01420{bottom:392.811000px;}
.y18_c01420{bottom:409.249500px;}
.y17_c01420{bottom:425.688000px;}
.y16_c01420{bottom:442.125000px;}
.y15_c01420{bottom:458.563500px;}
.y14_c01420{bottom:475.002000px;}
.y13_c01420{bottom:491.440500px;}
.y12_c01420{bottom:524.317500px;}
.y11_c01420{bottom:557.194500px;}
.y10_c01420{bottom:590.071500px;}
.yf_c01420{bottom:622.947000px;}
.ye_c01420{bottom:639.385500px;}
.yd_c01420{bottom:672.262500px;}
.yc_c01420{bottom:688.701000px;}
.yb_c01420{bottom:705.139500px;}
.ya_c01420{bottom:738.016500px;}
.y9_c01420{bottom:754.455000px;}
.y8_c01420{bottom:770.518500px;}
.y7_c01420{bottom:979.128000px;}
.y6_c01420{bottom:997.060500px;}
.y5_c01420{bottom:1014.993000px;}
.y4_c01420{bottom:1032.925500px;}
.y3_c01420{bottom:1050.858000px;}
.y2_c01420{bottom:1068.792000px;}
.y1_c01420{bottom:1159.863000px;}
.h3_c01420{height:35.190766px;}
.h4_c01420{height:36.007158px;}
.h2_c01420{height:52.332837px;}
.h0_c01420{height:1262.835000px;}
.h1_c01420{height:1263.000000px;}
.w0_c01420{width:892.920000px;}
.w1_c01420{width:893.250000px;}
.x0_c01420{left:0.000000px;}
.x1_c01420{left:127.558500px;}
.x2_c01420{left:137.122500px;}
.x3_c01420{left:170.359500px;}
.x4_c01420{left:177.007500px;}
.x5_c01420{left:435.249000px;}
@media print{
.v0_c01420{vertical-align:0.000000pt;}
.ls3_c01420{letter-spacing:0.000000pt;}
.ls0_c01420{letter-spacing:0.078221pt;}
.ls2_c01420{letter-spacing:0.087539pt;}
.ls1_c01420{letter-spacing:0.092873pt;}
.ws7_c01420{word-spacing:-23.622682pt;}
.wsc_c01420{word-spacing:-23.544461pt;}
.wsa_c01420{word-spacing:-18.224916pt;}
.ws3_c01420{word-spacing:-18.118649pt;}
.ws4_c01420{word-spacing:-18.065515pt;}
.ws9_c01420{word-spacing:-17.852979pt;}
.ws8_c01420{word-spacing:-17.002837pt;}
.ws6_c01420{word-spacing:-16.993878pt;}
.ws1_c01420{word-spacing:-16.684034pt;}
.ws5_c01420{word-spacing:-14.718081pt;}
.ws0_c01420{word-spacing:-13.283467pt;}
.ws2_c01420{word-spacing:-9.589461pt;}
.ws10_c01420{word-spacing:0.000000pt;}
.wsd_c01420{word-spacing:0.039110pt;}
.wsb_c01420{word-spacing:0.156442pt;}
.wse_c01420{word-spacing:0.189730pt;}
.wsf_c01420{word-spacing:0.195063pt;}
._3_c01420{margin-left:-3.901195pt;}
._4_c01420{margin-left:-2.922363pt;}
._1_c01420{margin-left:-0.956410pt;}
._5_c01420{width:0.893988pt;}
._0_c01420{width:17.716000pt;}
._2_c01420{width:23.485169pt;}
.fs1_c01420{font-size:39.110400pt;}
.fs0_c01420{font-size:53.133867pt;}
.y0_c01420{bottom:0.000000pt;}
.y2a_c01420{bottom:39.333333pt;}
.y29_c01420{bottom:86.150667pt;}
.y28_c01420{bottom:100.762667pt;}
.y27_c01420{bottom:115.374667pt;}
.y26_c01420{bottom:129.986667pt;}
.y25_c01420{bottom:144.598667pt;}
.y24_c01420{bottom:159.210667pt;}
.y23_c01420{bottom:173.822667pt;}
.y22_c01420{bottom:188.434667pt;}
.y21_c01420{bottom:203.046667pt;}
.y20_c01420{bottom:217.658667pt;}
.y1f_c01420{bottom:232.270667pt;}
.y1e_c01420{bottom:261.493333pt;}
.y1d_c01420{bottom:276.105333pt;}
.y1c_c01420{bottom:290.717333pt;}
.y1b_c01420{bottom:319.941333pt;}
.y1a_c01420{bottom:334.553333pt;}
.y19_c01420{bottom:349.165333pt;}
.y18_c01420{bottom:363.777333pt;}
.y17_c01420{bottom:378.389333pt;}
.y16_c01420{bottom:393.000000pt;}
.y15_c01420{bottom:407.612000pt;}
.y14_c01420{bottom:422.224000pt;}
.y13_c01420{bottom:436.836000pt;}
.y12_c01420{bottom:466.060000pt;}
.y11_c01420{bottom:495.284000pt;}
.y10_c01420{bottom:524.508000pt;}
.yf_c01420{bottom:553.730667pt;}
.ye_c01420{bottom:568.342667pt;}
.yd_c01420{bottom:597.566667pt;}
.yc_c01420{bottom:612.178667pt;}
.yb_c01420{bottom:626.790667pt;}
.ya_c01420{bottom:656.014667pt;}
.y9_c01420{bottom:670.626667pt;}
.y8_c01420{bottom:684.905333pt;}
.y7_c01420{bottom:870.336000pt;}
.y6_c01420{bottom:886.276000pt;}
.y5_c01420{bottom:902.216000pt;}
.y4_c01420{bottom:918.156000pt;}
.y3_c01420{bottom:934.096000pt;}
.y2_c01420{bottom:950.037333pt;}
.y1_c01420{bottom:1030.989333pt;}
.h3_c01420{height:31.280681pt;}
.h4_c01420{height:32.006363pt;}
.h2_c01420{height:46.518078pt;}
.h0_c01420{height:1122.520000pt;}
.h1_c01420{height:1122.666667pt;}
.w0_c01420{width:793.706667pt;}
.w1_c01420{width:794.000000pt;}
.x0_c01420{left:0.000000pt;}
.x1_c01420{left:113.385333pt;}
.x2_c01420{left:121.886667pt;}
.x3_c01420{left:151.430667pt;}
.x4_c01420{left:157.340000pt;}
.x5_c01420{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01421 {
    display:none;
  }
  .loading-indicator_c01421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01421" -> "#page-container .classname_c01421")
 */
.pf_c01421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01421 {overflow:visible;}
  }
}
.c_c01421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01421:after { /* webkit #35443 */
  content: '';
}
.t_c01421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01421 { /* info for Javascript */
  display:none;
}
.l_c01421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01421:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01421 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01421.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01421;src:url('chunks/assets/font_114812f9744ea727979be1b0.woff2')format("woff");}.ff1_c01421{font-family:ff1_c01421;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01421;src:url('chunks/assets/font_10554c3dfab7ab7f4cc3ae5c.woff2')format("woff");}.ff2_c01421{font-family:ff2_c01421;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01421;src:url('chunks/assets/font_0f91d22844bb209dd09220a2.woff2')format("woff");}.ff3_c01421{font-family:ff3_c01421;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01421;src:url('chunks/assets/font_6edf9208e3d6283bb20bd16f.woff2')format("woff");}.ff4_c01421{font-family:ff4_c01421;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01421;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01421{font-family:ff5_c01421;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01421{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01421{vertical-align:0.000000px;}
.ls4_c01421{letter-spacing:0.000000px;}
.ls0_c01421{letter-spacing:0.087998px;}
.ls2_c01421{letter-spacing:0.098482px;}
.ls1_c01421{letter-spacing:0.104482px;}
.ls3_c01421{letter-spacing:26.690482px;}
.sc__c01421{text-shadow:none;}
.sc0_c01421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01421{-webkit-text-stroke:0px transparent;}
.sc0_c01421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01421{word-spacing:-33.713438px;}
.ws2_c01421{word-spacing:-26.575517px;}
.wse_c01421{word-spacing:-26.487518px;}
.ws9_c01421{word-spacing:-21.553319px;}
.ws8_c01421{word-spacing:-21.519216px;}
.ws5_c01421{word-spacing:-18.769538px;}
.ws7_c01421{word-spacing:-16.019861px;}
.ws4_c01421{word-spacing:-14.943900px;}
.wsa_c01421{word-spacing:-14.107042px;}
.wsb_c01421{word-spacing:-12.074671px;}
.ws1_c01421{word-spacing:-9.988424px;}
.ws3_c01421{word-spacing:-9.987499px;}
.ws6_c01421{word-spacing:-4.536144px;}
.ws12_c01421{word-spacing:0.000000px;}
.wsf_c01421{word-spacing:0.043999px;}
.ws15_c01421{word-spacing:0.056767px;}
.ws13_c01421{word-spacing:0.073250px;}
.ws14_c01421{word-spacing:0.083734px;}
.wsd_c01421{word-spacing:0.175997px;}
.ws16_c01421{word-spacing:0.202963px;}
.ws10_c01421{word-spacing:0.213446px;}
.ws11_c01421{word-spacing:0.219446px;}
.ws0_c01421{word-spacing:43.038600px;}
._0_c01421{margin-left:-7.833025px;}
._4_c01421{margin-left:-3.825638px;}
._1_c01421{margin-left:-1.549390px;}
._5_c01421{width:1.005737px;}
._2_c01421{width:19.935816px;}
._3_c01421{width:40.109428px;}
._7_c01421{width:53.283031px;}
._6_c01421{width:79.858548px;}
._8_c01421{width:133.452408px;}
.fc6_c01421{color:rgb(0,0,207);}
.fc5_c01421{color:rgb(79,153,5);}
.fc3_c01421{color:rgb(33,74,135);}
.fc2_c01421{color:rgb(143,89,3);}
.fc4_c01421{color:rgb(207,92,0);}
.fc1_c01421{color:rgb(6,69,173);}
.fc0_c01421{color:rgb(0,0,0);}
.fs2_c01421{font-size:43.999200px;}
.fs1_c01421{font-size:59.775600px;}
.fs0_c01421{font-size:86.077200px;}
.y0_c01421{bottom:0.000000px;}
.y20_c01421{bottom:44.250000px;}
.y1f_c01421{bottom:86.982000px;}
.y1e_c01421{bottom:119.859000px;}
.y1d_c01421{bottom:136.297500px;}
.y1c_c01421{bottom:152.736000px;}
.y1b_c01421{bottom:169.174500px;}
.y1a_c01421{bottom:185.613000px;}
.y19_c01421{bottom:202.051500px;}
.y18_c01421{bottom:218.490000px;}
.y17_c01421{bottom:234.927000px;}
.y16_c01421{bottom:251.365500px;}
.y15_c01421{bottom:267.804000px;}
.y14_c01421{bottom:284.242500px;}
.y13_c01421{bottom:300.681000px;}
.y12_c01421{bottom:317.119500px;}
.y11_c01421{bottom:333.558000px;}
.y10_c01421{bottom:349.996500px;}
.yf_c01421{bottom:382.873500px;}
.ye_c01421{bottom:415.749000px;}
.yd_c01421{bottom:432.187500px;}
.yc_c01421{bottom:448.252500px;}
.yb_c01421{bottom:493.890000px;}
.ya_c01421{bottom:511.822500px;}
.y9_c01421{bottom:529.756500px;}
.y8_c01421{bottom:547.689000px;}
.y7_c01421{bottom:565.621500px;}
.y6_c01421{bottom:583.554000px;}
.y5_c01421{bottom:610.633500px;}
.y4_c01421{bottom:637.714500px;}
.y3_c01421{bottom:664.794000px;}
.y2_c01421{bottom:691.873500px;}
.y1_c01421{bottom:734.407500px;}
.h5_c01421{height:35.190766px;}
.h6_c01421{height:36.007158px;}
.h3_c01421{height:40.511979px;}
.h4_c01421{height:52.332837px;}
.h2_c01421{height:58.337477px;}
.h0_c01421{height:1262.835000px;}
.h1_c01421{height:1263.000000px;}
.w0_c01421{width:892.920000px;}
.w1_c01421{width:893.250000px;}
.x0_c01421{left:0.000000px;}
.x1_c01421{left:127.558500px;}
.x2_c01421{left:137.122500px;}
.x3_c01421{left:143.770500px;}
.x4_c01421{left:435.249000px;}
@media print{
.v0_c01421{vertical-align:0.000000pt;}
.ls4_c01421{letter-spacing:0.000000pt;}
.ls0_c01421{letter-spacing:0.078221pt;}
.ls2_c01421{letter-spacing:0.087539pt;}
.ls1_c01421{letter-spacing:0.092873pt;}
.ls3_c01421{letter-spacing:23.724873pt;}
.wsc_c01421{word-spacing:-29.967501pt;}
.ws2_c01421{word-spacing:-23.622682pt;}
.wse_c01421{word-spacing:-23.544461pt;}
.ws9_c01421{word-spacing:-19.158506pt;}
.ws8_c01421{word-spacing:-19.128192pt;}
.ws5_c01421{word-spacing:-16.684034pt;}
.ws7_c01421{word-spacing:-14.239876pt;}
.ws4_c01421{word-spacing:-13.283467pt;}
.wsa_c01421{word-spacing:-12.539593pt;}
.wsb_c01421{word-spacing:-10.733041pt;}
.ws1_c01421{word-spacing:-8.878599pt;}
.ws3_c01421{word-spacing:-8.877777pt;}
.ws6_c01421{word-spacing:-4.032128pt;}
.ws12_c01421{word-spacing:0.000000pt;}
.wsf_c01421{word-spacing:0.039110pt;}
.ws15_c01421{word-spacing:0.050460pt;}
.ws13_c01421{word-spacing:0.065111pt;}
.ws14_c01421{word-spacing:0.074430pt;}
.wsd_c01421{word-spacing:0.156442pt;}
.ws16_c01421{word-spacing:0.180412pt;}
.ws10_c01421{word-spacing:0.189730pt;}
.ws11_c01421{word-spacing:0.195063pt;}
.ws0_c01421{word-spacing:38.256533pt;}
._0_c01421{margin-left:-6.962689pt;}
._4_c01421{margin-left:-3.400567pt;}
._1_c01421{margin-left:-1.377235pt;}
._5_c01421{width:0.893988pt;}
._2_c01421{width:17.720725pt;}
._3_c01421{width:35.652825pt;}
._7_c01421{width:47.362694pt;}
._6_c01421{width:70.985376pt;}
._8_c01421{width:118.624363pt;}
.fs2_c01421{font-size:39.110400pt;}
.fs1_c01421{font-size:53.133867pt;}
.fs0_c01421{font-size:76.513067pt;}
.y0_c01421{bottom:0.000000pt;}
.y20_c01421{bottom:39.333333pt;}
.y1f_c01421{bottom:77.317333pt;}
.y1e_c01421{bottom:106.541333pt;}
.y1d_c01421{bottom:121.153333pt;}
.y1c_c01421{bottom:135.765333pt;}
.y1b_c01421{bottom:150.377333pt;}
.y1a_c01421{bottom:164.989333pt;}
.y19_c01421{bottom:179.601333pt;}
.y18_c01421{bottom:194.213333pt;}
.y17_c01421{bottom:208.824000pt;}
.y16_c01421{bottom:223.436000pt;}
.y15_c01421{bottom:238.048000pt;}
.y14_c01421{bottom:252.660000pt;}
.y13_c01421{bottom:267.272000pt;}
.y12_c01421{bottom:281.884000pt;}
.y11_c01421{bottom:296.496000pt;}
.y10_c01421{bottom:311.108000pt;}
.yf_c01421{bottom:340.332000pt;}
.ye_c01421{bottom:369.554667pt;}
.yd_c01421{bottom:384.166667pt;}
.yc_c01421{bottom:398.446667pt;}
.yb_c01421{bottom:439.013333pt;}
.ya_c01421{bottom:454.953333pt;}
.y9_c01421{bottom:470.894667pt;}
.y8_c01421{bottom:486.834667pt;}
.y7_c01421{bottom:502.774667pt;}
.y6_c01421{bottom:518.714667pt;}
.y5_c01421{bottom:542.785333pt;}
.y4_c01421{bottom:566.857333pt;}
.y3_c01421{bottom:590.928000pt;}
.y2_c01421{bottom:614.998667pt;}
.y1_c01421{bottom:652.806667pt;}
.h5_c01421{height:31.280681pt;}
.h6_c01421{height:32.006363pt;}
.h3_c01421{height:36.010648pt;}
.h4_c01421{height:46.518078pt;}
.h2_c01421{height:51.855535pt;}
.h0_c01421{height:1122.520000pt;}
.h1_c01421{height:1122.666667pt;}
.w0_c01421{width:793.706667pt;}
.w1_c01421{width:794.000000pt;}
.x0_c01421{left:0.000000pt;}
.x1_c01421{left:113.385333pt;}
.x2_c01421{left:121.886667pt;}
.x3_c01421{left:127.796000pt;}
.x4_c01421{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01422 {
    display:none;
  }
  .loading-indicator_c01422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01422 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01422 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01422" -> "#page-container .classname_c01422")
 */
.pf_c01422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01422 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01422 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01422 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01422 {overflow:visible;}
  }
}
.c_c01422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01422 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01422:after { /* webkit #35443 */
  content: '';
}
.t_c01422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01422 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01422 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01422 { /* info for Javascript */
  display:none;
}
.l_c01422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01422:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01422 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01422.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01422;src:url('chunks/assets/font_dc0c4f35bdcad6a081f100e9.woff2')format("woff");}.ff1_c01422{font-family:ff1_c01422;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01422;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01422{font-family:ff2_c01422;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01422;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01422{font-family:ff3_c01422;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01422;src:url('chunks/assets/font_8e9fefe7181c6b8544582333.woff2')format("woff");}.ff4_c01422{font-family:ff4_c01422;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01422;src:url('chunks/assets/font_7bc1000e6d01f09f95207e93.woff2')format("woff");}.ff5_c01422{font-family:ff5_c01422;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01422{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01422{vertical-align:0.000000px;}
.ls3_c01422{letter-spacing:0.000000px;}
.ls0_c01422{letter-spacing:0.087998px;}
.ls1_c01422{letter-spacing:0.098482px;}
.ls2_c01422{letter-spacing:0.104482px;}
.sc__c01422{text-shadow:none;}
.sc0_c01422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01422{-webkit-text-stroke:0px transparent;}
.sc0_c01422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01422{word-spacing:-33.713438px;}
.ws0_c01422{word-spacing:-26.575517px;}
.ws2_c01422{word-spacing:-26.487518px;}
.wsd_c01422{word-spacing:-21.553319px;}
.wsc_c01422{word-spacing:-21.519216px;}
.ws9_c01422{word-spacing:-18.769538px;}
.wsb_c01422{word-spacing:-17.633802px;}
.ws8_c01422{word-spacing:-14.943900px;}
.wse_c01422{word-spacing:-14.107042px;}
.wsf_c01422{word-spacing:-12.074671px;}
.ws6_c01422{word-spacing:-9.988424px;}
.ws7_c01422{word-spacing:-9.987499px;}
.wsa_c01422{word-spacing:-7.686144px;}
.ws1_c01422{word-spacing:0.000000px;}
.ws3_c01422{word-spacing:0.043999px;}
.ws4_c01422{word-spacing:0.213446px;}
.ws5_c01422{word-spacing:43.038600px;}
._1_c01422{margin-left:-7.833025px;}
._5_c01422{margin-left:-3.825638px;}
._2_c01422{margin-left:-1.549390px;}
._0_c01422{width:1.041538px;}
._3_c01422{width:19.935816px;}
._4_c01422{width:40.109428px;}
.fc5_c01422{color:rgb(0,0,207);}
.fc6_c01422{color:rgb(6,69,173);}
.fc4_c01422{color:rgb(207,92,0);}
.fc3_c01422{color:rgb(79,153,5);}
.fc2_c01422{color:rgb(33,74,135);}
.fc1_c01422{color:rgb(143,89,3);}
.fc0_c01422{color:rgb(0,0,0);}
.fs0_c01422{font-size:43.999200px;}
.fs2_c01422{font-size:59.775600px;}
.fs1_c01422{font-size:86.077200px;}
.y0_c01422{bottom:0.000000px;}
.y20_c01422{bottom:44.250000px;}
.y1f_c01422{bottom:82.051500px;}
.y1e_c01422{bottom:99.984000px;}
.y1d_c01422{bottom:117.916500px;}
.y1c_c01422{bottom:135.849000px;}
.y1b_c01422{bottom:153.781500px;}
.y1a_c01422{bottom:171.714000px;}
.y19_c01422{bottom:199.800000px;}
.y18_c01422{bottom:227.886000px;}
.y17_c01422{bottom:255.972000px;}
.y16_c01422{bottom:284.058000px;}
.y15_c01422{bottom:328.047000px;}
.y14_c01422{bottom:798.219000px;}
.y13_c01422{bottom:814.657500px;}
.y12_c01422{bottom:831.096000px;}
.y11_c01422{bottom:847.534500px;}
.y10_c01422{bottom:863.973000px;}
.yf_c01422{bottom:880.411500px;}
.ye_c01422{bottom:896.848500px;}
.yd_c01422{bottom:913.287000px;}
.yc_c01422{bottom:929.725500px;}
.yb_c01422{bottom:946.164000px;}
.ya_c01422{bottom:962.602500px;}
.y9_c01422{bottom:995.479500px;}
.y8_c01422{bottom:1011.918000px;}
.y7_c01422{bottom:1028.356500px;}
.y6_c01422{bottom:1061.232000px;}
.y5_c01422{bottom:1077.670500px;}
.y4_c01422{bottom:1094.109000px;}
.y3_c01422{bottom:1110.547500px;}
.y2_c01422{bottom:1126.986000px;}
.y1_c01422{bottom:1143.424500px;}
.h3_c01422{height:35.190766px;}
.h2_c01422{height:36.007158px;}
.h5_c01422{height:40.511979px;}
.h6_c01422{height:52.332837px;}
.h4_c01422{height:58.337477px;}
.h0_c01422{height:1262.835000px;}
.h1_c01422{height:1263.000000px;}
.w0_c01422{width:892.920000px;}
.w1_c01422{width:893.250000px;}
.x0_c01422{left:0.000000px;}
.x3_c01422{left:127.558500px;}
.x1_c01422{left:137.122500px;}
.x2_c01422{left:177.007500px;}
.x4_c01422{left:435.249000px;}
@media print{
.v0_c01422{vertical-align:0.000000pt;}
.ls3_c01422{letter-spacing:0.000000pt;}
.ls0_c01422{letter-spacing:0.078221pt;}
.ls1_c01422{letter-spacing:0.087539pt;}
.ls2_c01422{letter-spacing:0.092873pt;}
.ws10_c01422{word-spacing:-29.967501pt;}
.ws0_c01422{word-spacing:-23.622682pt;}
.ws2_c01422{word-spacing:-23.544461pt;}
.wsd_c01422{word-spacing:-19.158506pt;}
.wsc_c01422{word-spacing:-19.128192pt;}
.ws9_c01422{word-spacing:-16.684034pt;}
.wsb_c01422{word-spacing:-15.674491pt;}
.ws8_c01422{word-spacing:-13.283467pt;}
.wse_c01422{word-spacing:-12.539593pt;}
.wsf_c01422{word-spacing:-10.733041pt;}
.ws6_c01422{word-spacing:-8.878599pt;}
.ws7_c01422{word-spacing:-8.877777pt;}
.wsa_c01422{word-spacing:-6.832128pt;}
.ws1_c01422{word-spacing:0.000000pt;}
.ws3_c01422{word-spacing:0.039110pt;}
.ws4_c01422{word-spacing:0.189730pt;}
.ws5_c01422{word-spacing:38.256533pt;}
._1_c01422{margin-left:-6.962689pt;}
._5_c01422{margin-left:-3.400567pt;}
._2_c01422{margin-left:-1.377235pt;}
._0_c01422{width:0.925811pt;}
._3_c01422{width:17.720725pt;}
._4_c01422{width:35.652825pt;}
.fs0_c01422{font-size:39.110400pt;}
.fs2_c01422{font-size:53.133867pt;}
.fs1_c01422{font-size:76.513067pt;}
.y0_c01422{bottom:0.000000pt;}
.y20_c01422{bottom:39.333333pt;}
.y1f_c01422{bottom:72.934667pt;}
.y1e_c01422{bottom:88.874667pt;}
.y1d_c01422{bottom:104.814667pt;}
.y1c_c01422{bottom:120.754667pt;}
.y1b_c01422{bottom:136.694667pt;}
.y1a_c01422{bottom:152.634667pt;}
.y19_c01422{bottom:177.600000pt;}
.y18_c01422{bottom:202.565333pt;}
.y17_c01422{bottom:227.530667pt;}
.y16_c01422{bottom:252.496000pt;}
.y15_c01422{bottom:291.597333pt;}
.y14_c01422{bottom:709.528000pt;}
.y13_c01422{bottom:724.140000pt;}
.y12_c01422{bottom:738.752000pt;}
.y11_c01422{bottom:753.364000pt;}
.y10_c01422{bottom:767.976000pt;}
.yf_c01422{bottom:782.588000pt;}
.ye_c01422{bottom:797.198667pt;}
.yd_c01422{bottom:811.810667pt;}
.yc_c01422{bottom:826.422667pt;}
.yb_c01422{bottom:841.034667pt;}
.ya_c01422{bottom:855.646667pt;}
.y9_c01422{bottom:884.870667pt;}
.y8_c01422{bottom:899.482667pt;}
.y7_c01422{bottom:914.094667pt;}
.y6_c01422{bottom:943.317333pt;}
.y5_c01422{bottom:957.929333pt;}
.y4_c01422{bottom:972.541333pt;}
.y3_c01422{bottom:987.153333pt;}
.y2_c01422{bottom:1001.765333pt;}
.y1_c01422{bottom:1016.377333pt;}
.h3_c01422{height:31.280681pt;}
.h2_c01422{height:32.006363pt;}
.h5_c01422{height:36.010648pt;}
.h6_c01422{height:46.518078pt;}
.h4_c01422{height:51.855535pt;}
.h0_c01422{height:1122.520000pt;}
.h1_c01422{height:1122.666667pt;}
.w0_c01422{width:793.706667pt;}
.w1_c01422{width:794.000000pt;}
.x0_c01422{left:0.000000pt;}
.x3_c01422{left:113.385333pt;}
.x1_c01422{left:121.886667pt;}
.x2_c01422{left:157.340000pt;}
.x4_c01422{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01423 {
    display:none;
  }
  .loading-indicator_c01423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01423 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01423 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01423" -> "#page-container .classname_c01423")
 */
.pf_c01423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01423 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01423 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01423 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01423 {overflow:visible;}
  }
}
.c_c01423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01423 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01423:after { /* webkit #35443 */
  content: '';
}
.t_c01423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01423 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01423 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01423 { /* info for Javascript */
  display:none;
}
.l_c01423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01423:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01423 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01423.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01423;src:url('chunks/assets/font_b775b95480dda66ca8714230.woff2')format("woff");}.ff1_c01423{font-family:ff1_c01423;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01423;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01423{font-family:ff2_c01423;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01423;src:url('chunks/assets/font_cf1ca3bd3d6780f973cc9509.woff2')format("woff");}.ff3_c01423{font-family:ff3_c01423;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01423;src:url('chunks/assets/font_6c884ac4052f85049162257d.woff2')format("woff");}.ff4_c01423{font-family:ff4_c01423;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01423{vertical-align:0.000000px;}
.ls4_c01423{letter-spacing:0.000000px;}
.ls1_c01423{letter-spacing:0.087998px;}
.ls2_c01423{letter-spacing:0.098482px;}
.ls0_c01423{letter-spacing:0.104482px;}
.ls3_c01423{letter-spacing:26.690482px;}
.sc__c01423{text-shadow:none;}
.sc0_c01423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01423{-webkit-text-stroke:0px transparent;}
.sc0_c01423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01423{word-spacing:-26.575517px;}
.ws1_c01423{word-spacing:-26.487518px;}
.ws6_c01423{word-spacing:0.000000px;}
.ws3_c01423{word-spacing:0.043999px;}
.ws9_c01423{word-spacing:0.056767px;}
.ws7_c01423{word-spacing:0.073250px;}
.ws8_c01423{word-spacing:0.083734px;}
.ws0_c01423{word-spacing:0.175997px;}
.wsa_c01423{word-spacing:0.202963px;}
.ws4_c01423{word-spacing:0.213446px;}
.ws5_c01423{word-spacing:0.219446px;}
._0_c01423{width:1.005737px;}
._2_c01423{width:53.283031px;}
._1_c01423{width:79.858548px;}
._4_c01423{width:106.654061px;}
._3_c01423{width:133.452408px;}
.fc5_c01423{color:rgb(0,0,207);}
.fc4_c01423{color:rgb(79,153,5);}
.fc3_c01423{color:rgb(207,92,0);}
.fc2_c01423{color:rgb(0,0,0);}
.fc1_c01423{color:rgb(33,74,135);}
.fc0_c01423{color:rgb(143,89,3);}
.fs0_c01423{font-size:43.999200px;}
.fs1_c01423{font-size:59.775600px;}
.y0_c01423{bottom:0.000000px;}
.y29_c01423{bottom:44.250000px;}
.y28_c01423{bottom:383.599500px;}
.y27_c01423{bottom:400.038000px;}
.y26_c01423{bottom:416.475000px;}
.y25_c01423{bottom:432.913500px;}
.y24_c01423{bottom:449.352000px;}
.y23_c01423{bottom:465.790500px;}
.y22_c01423{bottom:482.229000px;}
.y21_c01423{bottom:498.667500px;}
.y20_c01423{bottom:515.106000px;}
.y1f_c01423{bottom:531.544500px;}
.y1e_c01423{bottom:547.983000px;}
.y1d_c01423{bottom:580.858500px;}
.y1c_c01423{bottom:597.297000px;}
.y1b_c01423{bottom:613.735500px;}
.y1a_c01423{bottom:646.612500px;}
.y19_c01423{bottom:663.051000px;}
.y18_c01423{bottom:679.489500px;}
.y17_c01423{bottom:695.928000px;}
.y16_c01423{bottom:712.366500px;}
.y15_c01423{bottom:728.805000px;}
.y14_c01423{bottom:761.680500px;}
.y13_c01423{bottom:810.996000px;}
.y12_c01423{bottom:827.434500px;}
.y11_c01423{bottom:843.873000px;}
.y10_c01423{bottom:860.311500px;}
.yf_c01423{bottom:876.750000px;}
.ye_c01423{bottom:893.188500px;}
.yd_c01423{bottom:909.627000px;}
.yc_c01423{bottom:926.064000px;}
.yb_c01423{bottom:942.502500px;}
.ya_c01423{bottom:958.941000px;}
.y9_c01423{bottom:975.379500px;}
.y8_c01423{bottom:991.818000px;}
.y7_c01423{bottom:1008.256500px;}
.y6_c01423{bottom:1024.695000px;}
.y5_c01423{bottom:1041.133500px;}
.y4_c01423{bottom:1074.010500px;}
.y3_c01423{bottom:1106.886000px;}
.y2_c01423{bottom:1123.324500px;}
.y1_c01423{bottom:1139.389500px;}
.h2_c01423{height:35.190766px;}
.h3_c01423{height:36.007158px;}
.h4_c01423{height:52.332837px;}
.h0_c01423{height:1262.835000px;}
.h1_c01423{height:1263.000000px;}
.w0_c01423{width:892.920000px;}
.w1_c01423{width:893.250000px;}
.x0_c01423{left:0.000000px;}
.x1_c01423{left:137.122500px;}
.x2_c01423{left:143.770500px;}
.x3_c01423{left:177.007500px;}
.x4_c01423{left:435.249000px;}
@media print{
.v0_c01423{vertical-align:0.000000pt;}
.ls4_c01423{letter-spacing:0.000000pt;}
.ls1_c01423{letter-spacing:0.078221pt;}
.ls2_c01423{letter-spacing:0.087539pt;}
.ls0_c01423{letter-spacing:0.092873pt;}
.ls3_c01423{letter-spacing:23.724873pt;}
.ws2_c01423{word-spacing:-23.622682pt;}
.ws1_c01423{word-spacing:-23.544461pt;}
.ws6_c01423{word-spacing:0.000000pt;}
.ws3_c01423{word-spacing:0.039110pt;}
.ws9_c01423{word-spacing:0.050460pt;}
.ws7_c01423{word-spacing:0.065111pt;}
.ws8_c01423{word-spacing:0.074430pt;}
.ws0_c01423{word-spacing:0.156442pt;}
.wsa_c01423{word-spacing:0.180412pt;}
.ws4_c01423{word-spacing:0.189730pt;}
.ws5_c01423{word-spacing:0.195063pt;}
._0_c01423{width:0.893988pt;}
._2_c01423{width:47.362694pt;}
._1_c01423{width:70.985376pt;}
._4_c01423{width:94.803610pt;}
._3_c01423{width:118.624363pt;}
.fs0_c01423{font-size:39.110400pt;}
.fs1_c01423{font-size:53.133867pt;}
.y0_c01423{bottom:0.000000pt;}
.y29_c01423{bottom:39.333333pt;}
.y28_c01423{bottom:340.977333pt;}
.y27_c01423{bottom:355.589333pt;}
.y26_c01423{bottom:370.200000pt;}
.y25_c01423{bottom:384.812000pt;}
.y24_c01423{bottom:399.424000pt;}
.y23_c01423{bottom:414.036000pt;}
.y22_c01423{bottom:428.648000pt;}
.y21_c01423{bottom:443.260000pt;}
.y20_c01423{bottom:457.872000pt;}
.y1f_c01423{bottom:472.484000pt;}
.y1e_c01423{bottom:487.096000pt;}
.y1d_c01423{bottom:516.318667pt;}
.y1c_c01423{bottom:530.930667pt;}
.y1b_c01423{bottom:545.542667pt;}
.y1a_c01423{bottom:574.766667pt;}
.y19_c01423{bottom:589.378667pt;}
.y18_c01423{bottom:603.990667pt;}
.y17_c01423{bottom:618.602667pt;}
.y16_c01423{bottom:633.214667pt;}
.y15_c01423{bottom:647.826667pt;}
.y14_c01423{bottom:677.049333pt;}
.y13_c01423{bottom:720.885333pt;}
.y12_c01423{bottom:735.497333pt;}
.y11_c01423{bottom:750.109333pt;}
.y10_c01423{bottom:764.721333pt;}
.yf_c01423{bottom:779.333333pt;}
.ye_c01423{bottom:793.945333pt;}
.yd_c01423{bottom:808.557333pt;}
.yc_c01423{bottom:823.168000pt;}
.yb_c01423{bottom:837.780000pt;}
.ya_c01423{bottom:852.392000pt;}
.y9_c01423{bottom:867.004000pt;}
.y8_c01423{bottom:881.616000pt;}
.y7_c01423{bottom:896.228000pt;}
.y6_c01423{bottom:910.840000pt;}
.y5_c01423{bottom:925.452000pt;}
.y4_c01423{bottom:954.676000pt;}
.y3_c01423{bottom:983.898667pt;}
.y2_c01423{bottom:998.510667pt;}
.y1_c01423{bottom:1012.790667pt;}
.h2_c01423{height:31.280681pt;}
.h3_c01423{height:32.006363pt;}
.h4_c01423{height:46.518078pt;}
.h0_c01423{height:1122.520000pt;}
.h1_c01423{height:1122.666667pt;}
.w0_c01423{width:793.706667pt;}
.w1_c01423{width:794.000000pt;}
.x0_c01423{left:0.000000pt;}
.x1_c01423{left:121.886667pt;}
.x2_c01423{left:127.796000pt;}
.x3_c01423{left:157.340000pt;}
.x4_c01423{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01424 {
    display:none;
  }
  .loading-indicator_c01424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01424 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01424 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01424" -> "#page-container .classname_c01424")
 */
.pf_c01424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01424 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01424 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01424 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01424 {overflow:visible;}
  }
}
.c_c01424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01424 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01424:after { /* webkit #35443 */
  content: '';
}
.t_c01424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01424 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01424 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01424 { /* info for Javascript */
  display:none;
}
.l_c01424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01424:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01424 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01424.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01424;src:url('chunks/assets/font_1c931a666700ea6dc0d8ad2d.woff2')format("woff");}.ff1_c01424{font-family:ff1_c01424;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01424;src:url('chunks/assets/font_b6dd889f336460d1160f852c.woff2')format("woff");}.ff2_c01424{font-family:ff2_c01424;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01424;src:url('chunks/assets/font_ffe2c0186c74c63141d9ee11.woff2')format("woff");}.ff3_c01424{font-family:ff3_c01424;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01424;src:url('chunks/assets/font_78544e0de55012d04e6f7074.woff2')format("woff");}.ff4_c01424{font-family:ff4_c01424;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01424;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01424{font-family:ff5_c01424;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01424{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01424{vertical-align:0.000000px;}
.ls4_c01424{letter-spacing:0.000000px;}
.ls0_c01424{letter-spacing:0.087998px;}
.ls2_c01424{letter-spacing:0.098482px;}
.ls1_c01424{letter-spacing:0.104482px;}
.ls3_c01424{letter-spacing:26.690482px;}
.sc__c01424{text-shadow:none;}
.sc0_c01424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01424{-webkit-text-stroke:0px transparent;}
.sc0_c01424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01424{word-spacing:-33.713438px;}
.ws2_c01424{word-spacing:-26.575517px;}
.wse_c01424{word-spacing:-26.487518px;}
.ws9_c01424{word-spacing:-21.553319px;}
.ws8_c01424{word-spacing:-21.519216px;}
.ws5_c01424{word-spacing:-18.769538px;}
.ws7_c01424{word-spacing:-17.633802px;}
.ws4_c01424{word-spacing:-14.943900px;}
.wsa_c01424{word-spacing:-14.107042px;}
.wsb_c01424{word-spacing:-12.074671px;}
.ws1_c01424{word-spacing:-9.988424px;}
.ws3_c01424{word-spacing:-9.987499px;}
.ws6_c01424{word-spacing:-7.686144px;}
.ws12_c01424{word-spacing:0.000000px;}
.wsf_c01424{word-spacing:0.043999px;}
.ws15_c01424{word-spacing:0.056767px;}
.ws13_c01424{word-spacing:0.073250px;}
.ws14_c01424{word-spacing:0.083734px;}
.wsd_c01424{word-spacing:0.175997px;}
.ws16_c01424{word-spacing:0.202963px;}
.ws10_c01424{word-spacing:0.213446px;}
.ws11_c01424{word-spacing:0.219446px;}
.ws0_c01424{word-spacing:43.038600px;}
._0_c01424{margin-left:-7.833025px;}
._4_c01424{margin-left:-3.825638px;}
._1_c01424{margin-left:-1.549390px;}
._5_c01424{width:1.005737px;}
._2_c01424{width:19.935816px;}
._3_c01424{width:40.109428px;}
._7_c01424{width:53.283031px;}
._6_c01424{width:79.858548px;}
._9_c01424{width:106.654061px;}
._8_c01424{width:133.452408px;}
.fc6_c01424{color:rgb(0,0,207);}
.fc5_c01424{color:rgb(79,153,5);}
.fc3_c01424{color:rgb(33,74,135);}
.fc2_c01424{color:rgb(143,89,3);}
.fc4_c01424{color:rgb(207,92,0);}
.fc1_c01424{color:rgb(6,69,173);}
.fc0_c01424{color:rgb(0,0,0);}
.fs2_c01424{font-size:43.999200px;}
.fs1_c01424{font-size:59.775600px;}
.fs0_c01424{font-size:86.077200px;}
.y0_c01424{bottom:0.000000px;}
.y20_c01424{bottom:44.250000px;}
.y1f_c01424{bottom:86.982000px;}
.y1e_c01424{bottom:119.859000px;}
.y1d_c01424{bottom:136.297500px;}
.y1c_c01424{bottom:152.736000px;}
.y1b_c01424{bottom:169.174500px;}
.y1a_c01424{bottom:185.613000px;}
.y19_c01424{bottom:202.051500px;}
.y18_c01424{bottom:218.490000px;}
.y17_c01424{bottom:234.927000px;}
.y16_c01424{bottom:251.365500px;}
.y15_c01424{bottom:267.804000px;}
.y14_c01424{bottom:284.242500px;}
.y13_c01424{bottom:300.681000px;}
.y12_c01424{bottom:317.119500px;}
.y11_c01424{bottom:333.558000px;}
.y10_c01424{bottom:349.996500px;}
.yf_c01424{bottom:382.873500px;}
.ye_c01424{bottom:415.749000px;}
.yd_c01424{bottom:432.187500px;}
.yc_c01424{bottom:448.252500px;}
.yb_c01424{bottom:493.890000px;}
.ya_c01424{bottom:511.822500px;}
.y9_c01424{bottom:529.756500px;}
.y8_c01424{bottom:547.689000px;}
.y7_c01424{bottom:565.621500px;}
.y6_c01424{bottom:583.554000px;}
.y5_c01424{bottom:610.633500px;}
.y4_c01424{bottom:637.714500px;}
.y3_c01424{bottom:664.794000px;}
.y2_c01424{bottom:691.873500px;}
.y1_c01424{bottom:734.407500px;}
.h5_c01424{height:35.190766px;}
.h6_c01424{height:36.007158px;}
.h3_c01424{height:40.511979px;}
.h4_c01424{height:52.332837px;}
.h2_c01424{height:58.337477px;}
.h0_c01424{height:1262.835000px;}
.h1_c01424{height:1263.000000px;}
.w0_c01424{width:892.920000px;}
.w1_c01424{width:893.250000px;}
.x0_c01424{left:0.000000px;}
.x1_c01424{left:127.558500px;}
.x2_c01424{left:137.122500px;}
.x3_c01424{left:143.770500px;}
.x4_c01424{left:435.249000px;}
@media print{
.v0_c01424{vertical-align:0.000000pt;}
.ls4_c01424{letter-spacing:0.000000pt;}
.ls0_c01424{letter-spacing:0.078221pt;}
.ls2_c01424{letter-spacing:0.087539pt;}
.ls1_c01424{letter-spacing:0.092873pt;}
.ls3_c01424{letter-spacing:23.724873pt;}
.wsc_c01424{word-spacing:-29.967501pt;}
.ws2_c01424{word-spacing:-23.622682pt;}
.wse_c01424{word-spacing:-23.544461pt;}
.ws9_c01424{word-spacing:-19.158506pt;}
.ws8_c01424{word-spacing:-19.128192pt;}
.ws5_c01424{word-spacing:-16.684034pt;}
.ws7_c01424{word-spacing:-15.674491pt;}
.ws4_c01424{word-spacing:-13.283467pt;}
.wsa_c01424{word-spacing:-12.539593pt;}
.wsb_c01424{word-spacing:-10.733041pt;}
.ws1_c01424{word-spacing:-8.878599pt;}
.ws3_c01424{word-spacing:-8.877777pt;}
.ws6_c01424{word-spacing:-6.832128pt;}
.ws12_c01424{word-spacing:0.000000pt;}
.wsf_c01424{word-spacing:0.039110pt;}
.ws15_c01424{word-spacing:0.050460pt;}
.ws13_c01424{word-spacing:0.065111pt;}
.ws14_c01424{word-spacing:0.074430pt;}
.wsd_c01424{word-spacing:0.156442pt;}
.ws16_c01424{word-spacing:0.180412pt;}
.ws10_c01424{word-spacing:0.189730pt;}
.ws11_c01424{word-spacing:0.195063pt;}
.ws0_c01424{word-spacing:38.256533pt;}
._0_c01424{margin-left:-6.962689pt;}
._4_c01424{margin-left:-3.400567pt;}
._1_c01424{margin-left:-1.377235pt;}
._5_c01424{width:0.893988pt;}
._2_c01424{width:17.720725pt;}
._3_c01424{width:35.652825pt;}
._7_c01424{width:47.362694pt;}
._6_c01424{width:70.985376pt;}
._9_c01424{width:94.803610pt;}
._8_c01424{width:118.624363pt;}
.fs2_c01424{font-size:39.110400pt;}
.fs1_c01424{font-size:53.133867pt;}
.fs0_c01424{font-size:76.513067pt;}
.y0_c01424{bottom:0.000000pt;}
.y20_c01424{bottom:39.333333pt;}
.y1f_c01424{bottom:77.317333pt;}
.y1e_c01424{bottom:106.541333pt;}
.y1d_c01424{bottom:121.153333pt;}
.y1c_c01424{bottom:135.765333pt;}
.y1b_c01424{bottom:150.377333pt;}
.y1a_c01424{bottom:164.989333pt;}
.y19_c01424{bottom:179.601333pt;}
.y18_c01424{bottom:194.213333pt;}
.y17_c01424{bottom:208.824000pt;}
.y16_c01424{bottom:223.436000pt;}
.y15_c01424{bottom:238.048000pt;}
.y14_c01424{bottom:252.660000pt;}
.y13_c01424{bottom:267.272000pt;}
.y12_c01424{bottom:281.884000pt;}
.y11_c01424{bottom:296.496000pt;}
.y10_c01424{bottom:311.108000pt;}
.yf_c01424{bottom:340.332000pt;}
.ye_c01424{bottom:369.554667pt;}
.yd_c01424{bottom:384.166667pt;}
.yc_c01424{bottom:398.446667pt;}
.yb_c01424{bottom:439.013333pt;}
.ya_c01424{bottom:454.953333pt;}
.y9_c01424{bottom:470.894667pt;}
.y8_c01424{bottom:486.834667pt;}
.y7_c01424{bottom:502.774667pt;}
.y6_c01424{bottom:518.714667pt;}
.y5_c01424{bottom:542.785333pt;}
.y4_c01424{bottom:566.857333pt;}
.y3_c01424{bottom:590.928000pt;}
.y2_c01424{bottom:614.998667pt;}
.y1_c01424{bottom:652.806667pt;}
.h5_c01424{height:31.280681pt;}
.h6_c01424{height:32.006363pt;}
.h3_c01424{height:36.010648pt;}
.h4_c01424{height:46.518078pt;}
.h2_c01424{height:51.855535pt;}
.h0_c01424{height:1122.520000pt;}
.h1_c01424{height:1122.666667pt;}
.w0_c01424{width:793.706667pt;}
.w1_c01424{width:794.000000pt;}
.x0_c01424{left:0.000000pt;}
.x1_c01424{left:113.385333pt;}
.x2_c01424{left:121.886667pt;}
.x3_c01424{left:127.796000pt;}
.x4_c01424{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01425 {
    display:none;
  }
  .loading-indicator_c01425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01425 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01425 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01425" -> "#page-container .classname_c01425")
 */
.pf_c01425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01425 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01425 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01425 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01425 {overflow:visible;}
  }
}
.c_c01425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01425 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01425:after { /* webkit #35443 */
  content: '';
}
.t_c01425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01425 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01425 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01425 { /* info for Javascript */
  display:none;
}
.l_c01425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01425:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01425 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01425.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01425;src:url('chunks/assets/font_0e59d4cf0e3d69e3ecd7c58b.woff2')format("woff");}.ff1_c01425{font-family:ff1_c01425;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01425;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01425{font-family:ff2_c01425;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01425;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01425{font-family:ff3_c01425;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01425;src:url('chunks/assets/font_100bc61d4214f4f014c460bc.woff2')format("woff");}.ff4_c01425{font-family:ff4_c01425;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01425;src:url('chunks/assets/font_f560dae6b027ab0821ccecfb.woff2')format("woff");}.ff5_c01425{font-family:ff5_c01425;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01425{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01425{vertical-align:0.000000px;}
.ls3_c01425{letter-spacing:0.000000px;}
.ls0_c01425{letter-spacing:0.087998px;}
.ls1_c01425{letter-spacing:0.098482px;}
.ls2_c01425{letter-spacing:0.104482px;}
.sc__c01425{text-shadow:none;}
.sc0_c01425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01425{-webkit-text-stroke:0px transparent;}
.sc0_c01425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01425{word-spacing:-33.713438px;}
.ws0_c01425{word-spacing:-26.575517px;}
.ws2_c01425{word-spacing:-26.487518px;}
.wsd_c01425{word-spacing:-21.553319px;}
.wsc_c01425{word-spacing:-21.519216px;}
.wsb_c01425{word-spacing:-19.247743px;}
.ws9_c01425{word-spacing:-18.769538px;}
.ws8_c01425{word-spacing:-14.943900px;}
.wse_c01425{word-spacing:-14.107042px;}
.wsf_c01425{word-spacing:-12.074671px;}
.wsa_c01425{word-spacing:-10.230144px;}
.ws6_c01425{word-spacing:-9.988424px;}
.ws7_c01425{word-spacing:-9.987499px;}
.ws1_c01425{word-spacing:0.000000px;}
.ws3_c01425{word-spacing:0.043999px;}
.ws4_c01425{word-spacing:0.213446px;}
.ws5_c01425{word-spacing:43.038600px;}
._1_c01425{margin-left:-7.833025px;}
._5_c01425{margin-left:-3.825638px;}
._2_c01425{margin-left:-1.549390px;}
._0_c01425{width:1.041538px;}
._3_c01425{width:19.935816px;}
._4_c01425{width:40.109428px;}
.fc5_c01425{color:rgb(0,0,207);}
.fc6_c01425{color:rgb(6,69,173);}
.fc4_c01425{color:rgb(207,92,0);}
.fc3_c01425{color:rgb(79,153,5);}
.fc2_c01425{color:rgb(33,74,135);}
.fc1_c01425{color:rgb(143,89,3);}
.fc0_c01425{color:rgb(0,0,0);}
.fs0_c01425{font-size:43.999200px;}
.fs2_c01425{font-size:59.775600px;}
.fs1_c01425{font-size:86.077200px;}
.y0_c01425{bottom:0.000000px;}
.y20_c01425{bottom:44.250000px;}
.y1f_c01425{bottom:82.051500px;}
.y1e_c01425{bottom:99.984000px;}
.y1d_c01425{bottom:117.916500px;}
.y1c_c01425{bottom:135.849000px;}
.y1b_c01425{bottom:153.781500px;}
.y1a_c01425{bottom:171.714000px;}
.y19_c01425{bottom:199.800000px;}
.y18_c01425{bottom:227.886000px;}
.y17_c01425{bottom:255.972000px;}
.y16_c01425{bottom:284.058000px;}
.y15_c01425{bottom:328.047000px;}
.y14_c01425{bottom:798.219000px;}
.y13_c01425{bottom:814.657500px;}
.y12_c01425{bottom:831.096000px;}
.y11_c01425{bottom:847.534500px;}
.y10_c01425{bottom:863.973000px;}
.yf_c01425{bottom:880.411500px;}
.ye_c01425{bottom:896.848500px;}
.yd_c01425{bottom:913.287000px;}
.yc_c01425{bottom:929.725500px;}
.yb_c01425{bottom:946.164000px;}
.ya_c01425{bottom:962.602500px;}
.y9_c01425{bottom:995.479500px;}
.y8_c01425{bottom:1011.918000px;}
.y7_c01425{bottom:1028.356500px;}
.y6_c01425{bottom:1061.232000px;}
.y5_c01425{bottom:1077.670500px;}
.y4_c01425{bottom:1094.109000px;}
.y3_c01425{bottom:1110.547500px;}
.y2_c01425{bottom:1126.986000px;}
.y1_c01425{bottom:1143.424500px;}
.h3_c01425{height:35.190766px;}
.h2_c01425{height:36.007158px;}
.h5_c01425{height:40.511979px;}
.h6_c01425{height:52.332837px;}
.h4_c01425{height:58.337477px;}
.h0_c01425{height:1262.835000px;}
.h1_c01425{height:1263.000000px;}
.w0_c01425{width:892.920000px;}
.w1_c01425{width:893.250000px;}
.x0_c01425{left:0.000000px;}
.x3_c01425{left:127.558500px;}
.x1_c01425{left:137.122500px;}
.x2_c01425{left:177.007500px;}
.x4_c01425{left:435.249000px;}
@media print{
.v0_c01425{vertical-align:0.000000pt;}
.ls3_c01425{letter-spacing:0.000000pt;}
.ls0_c01425{letter-spacing:0.078221pt;}
.ls1_c01425{letter-spacing:0.087539pt;}
.ls2_c01425{letter-spacing:0.092873pt;}
.ws10_c01425{word-spacing:-29.967501pt;}
.ws0_c01425{word-spacing:-23.622682pt;}
.ws2_c01425{word-spacing:-23.544461pt;}
.wsd_c01425{word-spacing:-19.158506pt;}
.wsc_c01425{word-spacing:-19.128192pt;}
.wsb_c01425{word-spacing:-17.109105pt;}
.ws9_c01425{word-spacing:-16.684034pt;}
.ws8_c01425{word-spacing:-13.283467pt;}
.wse_c01425{word-spacing:-12.539593pt;}
.wsf_c01425{word-spacing:-10.733041pt;}
.wsa_c01425{word-spacing:-9.093461pt;}
.ws6_c01425{word-spacing:-8.878599pt;}
.ws7_c01425{word-spacing:-8.877777pt;}
.ws1_c01425{word-spacing:0.000000pt;}
.ws3_c01425{word-spacing:0.039110pt;}
.ws4_c01425{word-spacing:0.189730pt;}
.ws5_c01425{word-spacing:38.256533pt;}
._1_c01425{margin-left:-6.962689pt;}
._5_c01425{margin-left:-3.400567pt;}
._2_c01425{margin-left:-1.377235pt;}
._0_c01425{width:0.925811pt;}
._3_c01425{width:17.720725pt;}
._4_c01425{width:35.652825pt;}
.fs0_c01425{font-size:39.110400pt;}
.fs2_c01425{font-size:53.133867pt;}
.fs1_c01425{font-size:76.513067pt;}
.y0_c01425{bottom:0.000000pt;}
.y20_c01425{bottom:39.333333pt;}
.y1f_c01425{bottom:72.934667pt;}
.y1e_c01425{bottom:88.874667pt;}
.y1d_c01425{bottom:104.814667pt;}
.y1c_c01425{bottom:120.754667pt;}
.y1b_c01425{bottom:136.694667pt;}
.y1a_c01425{bottom:152.634667pt;}
.y19_c01425{bottom:177.600000pt;}
.y18_c01425{bottom:202.565333pt;}
.y17_c01425{bottom:227.530667pt;}
.y16_c01425{bottom:252.496000pt;}
.y15_c01425{bottom:291.597333pt;}
.y14_c01425{bottom:709.528000pt;}
.y13_c01425{bottom:724.140000pt;}
.y12_c01425{bottom:738.752000pt;}
.y11_c01425{bottom:753.364000pt;}
.y10_c01425{bottom:767.976000pt;}
.yf_c01425{bottom:782.588000pt;}
.ye_c01425{bottom:797.198667pt;}
.yd_c01425{bottom:811.810667pt;}
.yc_c01425{bottom:826.422667pt;}
.yb_c01425{bottom:841.034667pt;}
.ya_c01425{bottom:855.646667pt;}
.y9_c01425{bottom:884.870667pt;}
.y8_c01425{bottom:899.482667pt;}
.y7_c01425{bottom:914.094667pt;}
.y6_c01425{bottom:943.317333pt;}
.y5_c01425{bottom:957.929333pt;}
.y4_c01425{bottom:972.541333pt;}
.y3_c01425{bottom:987.153333pt;}
.y2_c01425{bottom:1001.765333pt;}
.y1_c01425{bottom:1016.377333pt;}
.h3_c01425{height:31.280681pt;}
.h2_c01425{height:32.006363pt;}
.h5_c01425{height:36.010648pt;}
.h6_c01425{height:46.518078pt;}
.h4_c01425{height:51.855535pt;}
.h0_c01425{height:1122.520000pt;}
.h1_c01425{height:1122.666667pt;}
.w0_c01425{width:793.706667pt;}
.w1_c01425{width:794.000000pt;}
.x0_c01425{left:0.000000pt;}
.x3_c01425{left:113.385333pt;}
.x1_c01425{left:121.886667pt;}
.x2_c01425{left:157.340000pt;}
.x4_c01425{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01426 {
    display:none;
  }
  .loading-indicator_c01426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01426 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01426 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01426" -> "#page-container .classname_c01426")
 */
.pf_c01426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01426 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01426 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01426 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01426 {overflow:visible;}
  }
}
.c_c01426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01426 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01426:after { /* webkit #35443 */
  content: '';
}
.t_c01426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01426 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01426 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01426 { /* info for Javascript */
  display:none;
}
.l_c01426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01426:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01426 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01426.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01426;src:url('chunks/assets/font_74955674be2bc8fc2dfb51d8.woff2')format("woff");}.ff1_c01426{font-family:ff1_c01426;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01426;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01426{font-family:ff2_c01426;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01426;src:url('chunks/assets/font_2fc634b6a80f2102733c2ad2.woff2')format("woff");}.ff3_c01426{font-family:ff3_c01426;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01426;src:url('chunks/assets/font_03a928a885bef05e9bb6d899.woff2')format("woff");}.ff4_c01426{font-family:ff4_c01426;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01426{vertical-align:0.000000px;}
.ls4_c01426{letter-spacing:0.000000px;}
.ls1_c01426{letter-spacing:0.087998px;}
.ls2_c01426{letter-spacing:0.098482px;}
.ls0_c01426{letter-spacing:0.104482px;}
.ls3_c01426{letter-spacing:26.690482px;}
.sc__c01426{text-shadow:none;}
.sc0_c01426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01426{-webkit-text-stroke:0px transparent;}
.sc0_c01426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01426{word-spacing:-26.575517px;}
.ws1_c01426{word-spacing:-26.487518px;}
.ws6_c01426{word-spacing:0.000000px;}
.ws3_c01426{word-spacing:0.043999px;}
.ws9_c01426{word-spacing:0.056767px;}
.ws7_c01426{word-spacing:0.073250px;}
.ws8_c01426{word-spacing:0.083734px;}
.ws0_c01426{word-spacing:0.175997px;}
.wsa_c01426{word-spacing:0.202963px;}
.ws4_c01426{word-spacing:0.213446px;}
.ws5_c01426{word-spacing:0.219446px;}
._0_c01426{width:1.005737px;}
._2_c01426{width:53.283031px;}
._1_c01426{width:79.858548px;}
._3_c01426{width:133.452408px;}
.fc5_c01426{color:rgb(0,0,207);}
.fc4_c01426{color:rgb(79,153,5);}
.fc3_c01426{color:rgb(207,92,0);}
.fc2_c01426{color:rgb(0,0,0);}
.fc1_c01426{color:rgb(33,74,135);}
.fc0_c01426{color:rgb(143,89,3);}
.fs0_c01426{font-size:43.999200px;}
.fs1_c01426{font-size:59.775600px;}
.y0_c01426{bottom:0.000000px;}
.y29_c01426{bottom:44.250000px;}
.y28_c01426{bottom:383.599500px;}
.y27_c01426{bottom:400.038000px;}
.y26_c01426{bottom:416.475000px;}
.y25_c01426{bottom:432.913500px;}
.y24_c01426{bottom:449.352000px;}
.y23_c01426{bottom:465.790500px;}
.y22_c01426{bottom:482.229000px;}
.y21_c01426{bottom:498.667500px;}
.y20_c01426{bottom:515.106000px;}
.y1f_c01426{bottom:531.544500px;}
.y1e_c01426{bottom:547.983000px;}
.y1d_c01426{bottom:580.858500px;}
.y1c_c01426{bottom:597.297000px;}
.y1b_c01426{bottom:613.735500px;}
.y1a_c01426{bottom:646.612500px;}
.y19_c01426{bottom:663.051000px;}
.y18_c01426{bottom:679.489500px;}
.y17_c01426{bottom:695.928000px;}
.y16_c01426{bottom:712.366500px;}
.y15_c01426{bottom:728.805000px;}
.y14_c01426{bottom:761.680500px;}
.y13_c01426{bottom:810.996000px;}
.y12_c01426{bottom:827.434500px;}
.y11_c01426{bottom:843.873000px;}
.y10_c01426{bottom:860.311500px;}
.yf_c01426{bottom:876.750000px;}
.ye_c01426{bottom:893.188500px;}
.yd_c01426{bottom:909.627000px;}
.yc_c01426{bottom:926.064000px;}
.yb_c01426{bottom:942.502500px;}
.ya_c01426{bottom:958.941000px;}
.y9_c01426{bottom:975.379500px;}
.y8_c01426{bottom:991.818000px;}
.y7_c01426{bottom:1008.256500px;}
.y6_c01426{bottom:1024.695000px;}
.y5_c01426{bottom:1041.133500px;}
.y4_c01426{bottom:1074.010500px;}
.y3_c01426{bottom:1106.886000px;}
.y2_c01426{bottom:1123.324500px;}
.y1_c01426{bottom:1139.389500px;}
.h2_c01426{height:35.190766px;}
.h3_c01426{height:36.007158px;}
.h4_c01426{height:52.332837px;}
.h0_c01426{height:1262.835000px;}
.h1_c01426{height:1263.000000px;}
.w0_c01426{width:892.920000px;}
.w1_c01426{width:893.250000px;}
.x0_c01426{left:0.000000px;}
.x1_c01426{left:137.122500px;}
.x2_c01426{left:143.770500px;}
.x3_c01426{left:177.007500px;}
.x4_c01426{left:435.249000px;}
@media print{
.v0_c01426{vertical-align:0.000000pt;}
.ls4_c01426{letter-spacing:0.000000pt;}
.ls1_c01426{letter-spacing:0.078221pt;}
.ls2_c01426{letter-spacing:0.087539pt;}
.ls0_c01426{letter-spacing:0.092873pt;}
.ls3_c01426{letter-spacing:23.724873pt;}
.ws2_c01426{word-spacing:-23.622682pt;}
.ws1_c01426{word-spacing:-23.544461pt;}
.ws6_c01426{word-spacing:0.000000pt;}
.ws3_c01426{word-spacing:0.039110pt;}
.ws9_c01426{word-spacing:0.050460pt;}
.ws7_c01426{word-spacing:0.065111pt;}
.ws8_c01426{word-spacing:0.074430pt;}
.ws0_c01426{word-spacing:0.156442pt;}
.wsa_c01426{word-spacing:0.180412pt;}
.ws4_c01426{word-spacing:0.189730pt;}
.ws5_c01426{word-spacing:0.195063pt;}
._0_c01426{width:0.893988pt;}
._2_c01426{width:47.362694pt;}
._1_c01426{width:70.985376pt;}
._3_c01426{width:118.624363pt;}
.fs0_c01426{font-size:39.110400pt;}
.fs1_c01426{font-size:53.133867pt;}
.y0_c01426{bottom:0.000000pt;}
.y29_c01426{bottom:39.333333pt;}
.y28_c01426{bottom:340.977333pt;}
.y27_c01426{bottom:355.589333pt;}
.y26_c01426{bottom:370.200000pt;}
.y25_c01426{bottom:384.812000pt;}
.y24_c01426{bottom:399.424000pt;}
.y23_c01426{bottom:414.036000pt;}
.y22_c01426{bottom:428.648000pt;}
.y21_c01426{bottom:443.260000pt;}
.y20_c01426{bottom:457.872000pt;}
.y1f_c01426{bottom:472.484000pt;}
.y1e_c01426{bottom:487.096000pt;}
.y1d_c01426{bottom:516.318667pt;}
.y1c_c01426{bottom:530.930667pt;}
.y1b_c01426{bottom:545.542667pt;}
.y1a_c01426{bottom:574.766667pt;}
.y19_c01426{bottom:589.378667pt;}
.y18_c01426{bottom:603.990667pt;}
.y17_c01426{bottom:618.602667pt;}
.y16_c01426{bottom:633.214667pt;}
.y15_c01426{bottom:647.826667pt;}
.y14_c01426{bottom:677.049333pt;}
.y13_c01426{bottom:720.885333pt;}
.y12_c01426{bottom:735.497333pt;}
.y11_c01426{bottom:750.109333pt;}
.y10_c01426{bottom:764.721333pt;}
.yf_c01426{bottom:779.333333pt;}
.ye_c01426{bottom:793.945333pt;}
.yd_c01426{bottom:808.557333pt;}
.yc_c01426{bottom:823.168000pt;}
.yb_c01426{bottom:837.780000pt;}
.ya_c01426{bottom:852.392000pt;}
.y9_c01426{bottom:867.004000pt;}
.y8_c01426{bottom:881.616000pt;}
.y7_c01426{bottom:896.228000pt;}
.y6_c01426{bottom:910.840000pt;}
.y5_c01426{bottom:925.452000pt;}
.y4_c01426{bottom:954.676000pt;}
.y3_c01426{bottom:983.898667pt;}
.y2_c01426{bottom:998.510667pt;}
.y1_c01426{bottom:1012.790667pt;}
.h2_c01426{height:31.280681pt;}
.h3_c01426{height:32.006363pt;}
.h4_c01426{height:46.518078pt;}
.h0_c01426{height:1122.520000pt;}
.h1_c01426{height:1122.666667pt;}
.w0_c01426{width:793.706667pt;}
.w1_c01426{width:794.000000pt;}
.x0_c01426{left:0.000000pt;}
.x1_c01426{left:121.886667pt;}
.x2_c01426{left:127.796000pt;}
.x3_c01426{left:157.340000pt;}
.x4_c01426{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01427 {
    display:none;
  }
  .loading-indicator_c01427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01427 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01427 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01427" -> "#page-container .classname_c01427")
 */
.pf_c01427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01427 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01427 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01427 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01427 {overflow:visible;}
  }
}
.c_c01427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01427 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01427:after { /* webkit #35443 */
  content: '';
}
.t_c01427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01427 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01427 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01427 { /* info for Javascript */
  display:none;
}
.l_c01427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01427:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01427 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01427.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01427;src:url('chunks/assets/font_c0e31055c9c08b6327d65201.woff2')format("woff");}.ff1_c01427{font-family:ff1_c01427;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01427;src:url('chunks/assets/font_bac2669a569c4b0a7c0ed242.woff2')format("woff");}.ff2_c01427{font-family:ff2_c01427;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01427;src:url('chunks/assets/font_55db792e3758632d41491ca2.woff2')format("woff");}.ff3_c01427{font-family:ff3_c01427;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01427;src:url('chunks/assets/font_c415cec0fe92fa153afa8cc8.woff2')format("woff");}.ff4_c01427{font-family:ff4_c01427;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01427;src:url('chunks/assets/font_ed8833f1d343c2cbf9c8191b.woff2')format("woff");}.ff5_c01427{font-family:ff5_c01427;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01427{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01427{vertical-align:0.000000px;}
.ls3_c01427{letter-spacing:0.000000px;}
.ls0_c01427{letter-spacing:0.087998px;}
.ls2_c01427{letter-spacing:0.098482px;}
.ls1_c01427{letter-spacing:0.104482px;}
.sc__c01427{text-shadow:none;}
.sc0_c01427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01427{-webkit-text-stroke:0px transparent;}
.sc0_c01427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01427{word-spacing:-26.575517px;}
.ws11_c01427{word-spacing:-26.487518px;}
.wsf_c01427{word-spacing:-20.503031px;}
.ws9_c01427{word-spacing:-20.383480px;}
.wsa_c01427{word-spacing:-20.323704px;}
.wse_c01427{word-spacing:-20.084602px;}
.wsd_c01427{word-spacing:-19.128192px;}
.wsc_c01427{word-spacing:-19.118113px;}
.ws5_c01427{word-spacing:-18.769538px;}
.ws7_c01427{word-spacing:-17.753353px;}
.wsb_c01427{word-spacing:-16.557841px;}
.ws4_c01427{word-spacing:-14.943900px;}
.ws6_c01427{word-spacing:-13.927715px;}
.ws8_c01427{word-spacing:-10.788144px;}
.ws1_c01427{word-spacing:-9.988424px;}
.ws3_c01427{word-spacing:-9.987499px;}
.ws15_c01427{word-spacing:0.000000px;}
.ws12_c01427{word-spacing:0.043999px;}
.ws10_c01427{word-spacing:0.175997px;}
.ws13_c01427{word-spacing:0.213446px;}
.ws14_c01427{word-spacing:0.219446px;}
.ws0_c01427{word-spacing:42.952523px;}
._1_c01427{margin-left:-7.746948px;}
._0_c01427{margin-left:-4.734246px;}
._6_c01427{margin-left:-3.287658px;}
._2_c01427{margin-left:-1.635467px;}
._7_c01427{width:1.005737px;}
._3_c01427{width:19.935816px;}
._4_c01427{width:21.998315px;}
._5_c01427{width:26.420815px;}
._8_c01427{width:53.503027px;}
.fc6_c01427{color:rgb(0,0,207);}
.fc5_c01427{color:rgb(79,153,5);}
.fc3_c01427{color:rgb(33,74,135);}
.fc2_c01427{color:rgb(143,89,3);}
.fc4_c01427{color:rgb(207,92,0);}
.fc1_c01427{color:rgb(6,69,173);}
.fc0_c01427{color:rgb(0,0,0);}
.fs2_c01427{font-size:43.999200px;}
.fs1_c01427{font-size:59.775600px;}
.fs0_c01427{font-size:86.077200px;}
.y0_c01427{bottom:0.000000px;}
.y1d_c01427{bottom:44.250000px;}
.y1c_c01427{bottom:86.982000px;}
.y1b_c01427{bottom:103.420500px;}
.y1a_c01427{bottom:119.859000px;}
.y19_c01427{bottom:136.297500px;}
.y18_c01427{bottom:152.736000px;}
.y17_c01427{bottom:185.613000px;}
.y16_c01427{bottom:218.490000px;}
.y15_c01427{bottom:251.365500px;}
.y14_c01427{bottom:284.242500px;}
.y13_c01427{bottom:300.681000px;}
.y12_c01427{bottom:333.558000px;}
.y11_c01427{bottom:349.996500px;}
.y10_c01427{bottom:366.435000px;}
.yf_c01427{bottom:399.310500px;}
.ye_c01427{bottom:415.749000px;}
.yd_c01427{bottom:431.814000px;}
.yc_c01427{bottom:478.845000px;}
.yb_c01427{bottom:496.777500px;}
.ya_c01427{bottom:514.710000px;}
.y9_c01427{bottom:532.644000px;}
.y8_c01427{bottom:550.576500px;}
.y7_c01427{bottom:568.509000px;}
.y6_c01427{bottom:595.216500px;}
.y5_c01427{bottom:613.149000px;}
.y4_c01427{bottom:639.858000px;}
.y3_c01427{bottom:666.565500px;}
.y2_c01427{bottom:693.274500px;}
.y1_c01427{bottom:735.355500px;}
.h5_c01427{height:35.190766px;}
.h6_c01427{height:36.007158px;}
.h3_c01427{height:40.511979px;}
.h4_c01427{height:52.332837px;}
.h2_c01427{height:58.337477px;}
.h0_c01427{height:1262.835000px;}
.h1_c01427{height:1263.000000px;}
.w0_c01427{width:892.920000px;}
.w1_c01427{width:893.250000px;}
.x0_c01427{left:0.000000px;}
.x1_c01427{left:127.558500px;}
.x2_c01427{left:137.122500px;}
.x3_c01427{left:170.359500px;}
.x4_c01427{left:435.249000px;}
@media print{
.v0_c01427{vertical-align:0.000000pt;}
.ls3_c01427{letter-spacing:0.000000pt;}
.ls0_c01427{letter-spacing:0.078221pt;}
.ls2_c01427{letter-spacing:0.087539pt;}
.ls1_c01427{letter-spacing:0.092873pt;}
.ws2_c01427{word-spacing:-23.622682pt;}
.ws11_c01427{word-spacing:-23.544461pt;}
.wsf_c01427{word-spacing:-18.224916pt;}
.ws9_c01427{word-spacing:-18.118649pt;}
.wsa_c01427{word-spacing:-18.065515pt;}
.wse_c01427{word-spacing:-17.852979pt;}
.wsd_c01427{word-spacing:-17.002837pt;}
.wsc_c01427{word-spacing:-16.993878pt;}
.ws5_c01427{word-spacing:-16.684034pt;}
.ws7_c01427{word-spacing:-15.780758pt;}
.wsb_c01427{word-spacing:-14.718081pt;}
.ws4_c01427{word-spacing:-13.283467pt;}
.ws6_c01427{word-spacing:-12.380191pt;}
.ws8_c01427{word-spacing:-9.589461pt;}
.ws1_c01427{word-spacing:-8.878599pt;}
.ws3_c01427{word-spacing:-8.877777pt;}
.ws15_c01427{word-spacing:0.000000pt;}
.ws12_c01427{word-spacing:0.039110pt;}
.ws10_c01427{word-spacing:0.156442pt;}
.ws13_c01427{word-spacing:0.189730pt;}
.ws14_c01427{word-spacing:0.195063pt;}
.ws0_c01427{word-spacing:38.180020pt;}
._1_c01427{margin-left:-6.886176pt;}
._0_c01427{margin-left:-4.208219pt;}
._6_c01427{margin-left:-2.922363pt;}
._2_c01427{margin-left:-1.453748pt;}
._7_c01427{width:0.893988pt;}
._3_c01427{width:17.720725pt;}
._4_c01427{width:19.554058pt;}
._5_c01427{width:23.485169pt;}
._8_c01427{width:47.558246pt;}
.fs2_c01427{font-size:39.110400pt;}
.fs1_c01427{font-size:53.133867pt;}
.fs0_c01427{font-size:76.513067pt;}
.y0_c01427{bottom:0.000000pt;}
.y1d_c01427{bottom:39.333333pt;}
.y1c_c01427{bottom:77.317333pt;}
.y1b_c01427{bottom:91.929333pt;}
.y1a_c01427{bottom:106.541333pt;}
.y19_c01427{bottom:121.153333pt;}
.y18_c01427{bottom:135.765333pt;}
.y17_c01427{bottom:164.989333pt;}
.y16_c01427{bottom:194.213333pt;}
.y15_c01427{bottom:223.436000pt;}
.y14_c01427{bottom:252.660000pt;}
.y13_c01427{bottom:267.272000pt;}
.y12_c01427{bottom:296.496000pt;}
.y11_c01427{bottom:311.108000pt;}
.y10_c01427{bottom:325.720000pt;}
.yf_c01427{bottom:354.942667pt;}
.ye_c01427{bottom:369.554667pt;}
.yd_c01427{bottom:383.834667pt;}
.yc_c01427{bottom:425.640000pt;}
.yb_c01427{bottom:441.580000pt;}
.ya_c01427{bottom:457.520000pt;}
.y9_c01427{bottom:473.461333pt;}
.y8_c01427{bottom:489.401333pt;}
.y7_c01427{bottom:505.341333pt;}
.y6_c01427{bottom:529.081333pt;}
.y5_c01427{bottom:545.021333pt;}
.y4_c01427{bottom:568.762667pt;}
.y3_c01427{bottom:592.502667pt;}
.y2_c01427{bottom:616.244000pt;}
.y1_c01427{bottom:653.649333pt;}
.h5_c01427{height:31.280681pt;}
.h6_c01427{height:32.006363pt;}
.h3_c01427{height:36.010648pt;}
.h4_c01427{height:46.518078pt;}
.h2_c01427{height:51.855535pt;}
.h0_c01427{height:1122.520000pt;}
.h1_c01427{height:1122.666667pt;}
.w0_c01427{width:793.706667pt;}
.w1_c01427{width:794.000000pt;}
.x0_c01427{left:0.000000pt;}
.x1_c01427{left:113.385333pt;}
.x2_c01427{left:121.886667pt;}
.x3_c01427{left:151.430667pt;}
.x4_c01427{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01428 {
    display:none;
  }
  .loading-indicator_c01428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01428" -> "#page-container .classname_c01428")
 */
.pf_c01428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01428 {overflow:visible;}
  }
}
.c_c01428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01428:after { /* webkit #35443 */
  content: '';
}
.t_c01428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01428 { /* info for Javascript */
  display:none;
}
.l_c01428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01428:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01428 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01428.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01428;src:url('chunks/assets/font_1ee570d8f08e50fd930a59a2.woff2')format("woff");}.ff1_c01428{font-family:ff1_c01428;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01428;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01428{font-family:ff2_c01428;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01428;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff3_c01428{font-family:ff3_c01428;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01428;src:url('chunks/assets/font_0cfadf9c67e8b2339d2a3b0c.woff2')format("woff");}.ff4_c01428{font-family:ff4_c01428;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01428;src:url('chunks/assets/font_6a598350b48336fb0c624b3c.woff2')format("woff");}.ff5_c01428{font-family:ff5_c01428;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01428{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01428{vertical-align:0.000000px;}
.ls3_c01428{letter-spacing:0.000000px;}
.ls0_c01428{letter-spacing:0.087998px;}
.ls2_c01428{letter-spacing:0.098482px;}
.ls1_c01428{letter-spacing:0.104482px;}
.sc__c01428{text-shadow:none;}
.sc0_c01428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01428{-webkit-text-stroke:0px transparent;}
.sc0_c01428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01428{word-spacing:-33.713438px;}
.ws1_c01428{word-spacing:-26.575517px;}
.ws3_c01428{word-spacing:-26.487518px;}
.wsd_c01428{word-spacing:-21.553319px;}
.wsc_c01428{word-spacing:-21.519216px;}
.ws9_c01428{word-spacing:-18.769538px;}
.wsb_c01428{word-spacing:-16.019861px;}
.ws8_c01428{word-spacing:-14.943900px;}
.wse_c01428{word-spacing:-14.107042px;}
.wsf_c01428{word-spacing:-12.074671px;}
.ws6_c01428{word-spacing:-9.988424px;}
.ws7_c01428{word-spacing:-9.987499px;}
.wsa_c01428{word-spacing:-4.536144px;}
.ws2_c01428{word-spacing:0.000000px;}
.ws0_c01428{word-spacing:0.043999px;}
.ws11_c01428{word-spacing:0.175997px;}
.ws4_c01428{word-spacing:0.213446px;}
.ws5_c01428{word-spacing:43.038600px;}
._1_c01428{margin-left:-7.833025px;}
._5_c01428{margin-left:-3.825638px;}
._2_c01428{margin-left:-1.549390px;}
._0_c01428{width:1.041538px;}
._3_c01428{width:19.935816px;}
._4_c01428{width:40.109428px;}
.fc5_c01428{color:rgb(0,0,207);}
.fc6_c01428{color:rgb(6,69,173);}
.fc4_c01428{color:rgb(207,92,0);}
.fc3_c01428{color:rgb(143,89,3);}
.fc2_c01428{color:rgb(0,0,0);}
.fc1_c01428{color:rgb(79,153,5);}
.fc0_c01428{color:rgb(33,74,135);}
.fs0_c01428{font-size:43.999200px;}
.fs2_c01428{font-size:59.775600px;}
.fs1_c01428{font-size:86.077200px;}
.y0_c01428{bottom:0.000000px;}
.y20_c01428{bottom:44.250000px;}
.y1f_c01428{bottom:82.051500px;}
.y1e_c01428{bottom:98.115000px;}
.y1d_c01428{bottom:143.109000px;}
.y1c_c01428{bottom:161.043000px;}
.y1b_c01428{bottom:178.975500px;}
.y1a_c01428{bottom:196.908000px;}
.y19_c01428{bottom:214.840500px;}
.y18_c01428{bottom:232.773000px;}
.y17_c01428{bottom:259.641000px;}
.y16_c01428{bottom:286.507500px;}
.y15_c01428{bottom:313.375500px;}
.y14_c01428{bottom:340.242000px;}
.y13_c01428{bottom:382.482000px;}
.y12_c01428{bottom:847.534500px;}
.y11_c01428{bottom:863.973000px;}
.y10_c01428{bottom:880.411500px;}
.yf_c01428{bottom:896.848500px;}
.ye_c01428{bottom:913.287000px;}
.yd_c01428{bottom:929.725500px;}
.yc_c01428{bottom:946.164000px;}
.yb_c01428{bottom:962.602500px;}
.ya_c01428{bottom:979.041000px;}
.y9_c01428{bottom:995.479500px;}
.y8_c01428{bottom:1011.918000px;}
.y7_c01428{bottom:1044.795000px;}
.y6_c01428{bottom:1061.232000px;}
.y5_c01428{bottom:1077.670500px;}
.y4_c01428{bottom:1110.547500px;}
.y3_c01428{bottom:1126.986000px;}
.y2_c01428{bottom:1143.424500px;}
.y1_c01428{bottom:1159.863000px;}
.h3_c01428{height:35.190766px;}
.h2_c01428{height:36.007158px;}
.h5_c01428{height:40.511979px;}
.h6_c01428{height:52.332837px;}
.h4_c01428{height:58.337477px;}
.h0_c01428{height:1262.835000px;}
.h1_c01428{height:1263.000000px;}
.w0_c01428{width:892.920000px;}
.w1_c01428{width:893.250000px;}
.x0_c01428{left:0.000000px;}
.x4_c01428{left:127.558500px;}
.x2_c01428{left:137.122500px;}
.x1_c01428{left:170.359500px;}
.x3_c01428{left:177.007500px;}
.x5_c01428{left:435.249000px;}
@media print{
.v0_c01428{vertical-align:0.000000pt;}
.ls3_c01428{letter-spacing:0.000000pt;}
.ls0_c01428{letter-spacing:0.078221pt;}
.ls2_c01428{letter-spacing:0.087539pt;}
.ls1_c01428{letter-spacing:0.092873pt;}
.ws10_c01428{word-spacing:-29.967501pt;}
.ws1_c01428{word-spacing:-23.622682pt;}
.ws3_c01428{word-spacing:-23.544461pt;}
.wsd_c01428{word-spacing:-19.158506pt;}
.wsc_c01428{word-spacing:-19.128192pt;}
.ws9_c01428{word-spacing:-16.684034pt;}
.wsb_c01428{word-spacing:-14.239876pt;}
.ws8_c01428{word-spacing:-13.283467pt;}
.wse_c01428{word-spacing:-12.539593pt;}
.wsf_c01428{word-spacing:-10.733041pt;}
.ws6_c01428{word-spacing:-8.878599pt;}
.ws7_c01428{word-spacing:-8.877777pt;}
.wsa_c01428{word-spacing:-4.032128pt;}
.ws2_c01428{word-spacing:0.000000pt;}
.ws0_c01428{word-spacing:0.039110pt;}
.ws11_c01428{word-spacing:0.156442pt;}
.ws4_c01428{word-spacing:0.189730pt;}
.ws5_c01428{word-spacing:38.256533pt;}
._1_c01428{margin-left:-6.962689pt;}
._5_c01428{margin-left:-3.400567pt;}
._2_c01428{margin-left:-1.377235pt;}
._0_c01428{width:0.925811pt;}
._3_c01428{width:17.720725pt;}
._4_c01428{width:35.652825pt;}
.fs0_c01428{font-size:39.110400pt;}
.fs2_c01428{font-size:53.133867pt;}
.fs1_c01428{font-size:76.513067pt;}
.y0_c01428{bottom:0.000000pt;}
.y20_c01428{bottom:39.333333pt;}
.y1f_c01428{bottom:72.934667pt;}
.y1e_c01428{bottom:87.213333pt;}
.y1d_c01428{bottom:127.208000pt;}
.y1c_c01428{bottom:143.149333pt;}
.y1b_c01428{bottom:159.089333pt;}
.y1a_c01428{bottom:175.029333pt;}
.y19_c01428{bottom:190.969333pt;}
.y18_c01428{bottom:206.909333pt;}
.y17_c01428{bottom:230.792000pt;}
.y16_c01428{bottom:254.673333pt;}
.y15_c01428{bottom:278.556000pt;}
.y14_c01428{bottom:302.437333pt;}
.y13_c01428{bottom:339.984000pt;}
.y12_c01428{bottom:753.364000pt;}
.y11_c01428{bottom:767.976000pt;}
.y10_c01428{bottom:782.588000pt;}
.yf_c01428{bottom:797.198667pt;}
.ye_c01428{bottom:811.810667pt;}
.yd_c01428{bottom:826.422667pt;}
.yc_c01428{bottom:841.034667pt;}
.yb_c01428{bottom:855.646667pt;}
.ya_c01428{bottom:870.258667pt;}
.y9_c01428{bottom:884.870667pt;}
.y8_c01428{bottom:899.482667pt;}
.y7_c01428{bottom:928.706667pt;}
.y6_c01428{bottom:943.317333pt;}
.y5_c01428{bottom:957.929333pt;}
.y4_c01428{bottom:987.153333pt;}
.y3_c01428{bottom:1001.765333pt;}
.y2_c01428{bottom:1016.377333pt;}
.y1_c01428{bottom:1030.989333pt;}
.h3_c01428{height:31.280681pt;}
.h2_c01428{height:32.006363pt;}
.h5_c01428{height:36.010648pt;}
.h6_c01428{height:46.518078pt;}
.h4_c01428{height:51.855535pt;}
.h0_c01428{height:1122.520000pt;}
.h1_c01428{height:1122.666667pt;}
.w0_c01428{width:793.706667pt;}
.w1_c01428{width:794.000000pt;}
.x0_c01428{left:0.000000pt;}
.x4_c01428{left:113.385333pt;}
.x2_c01428{left:121.886667pt;}
.x1_c01428{left:151.430667pt;}
.x3_c01428{left:157.340000pt;}
.x5_c01428{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01429 {
    display:none;
  }
  .loading-indicator_c01429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01429 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01429 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01429" -> "#page-container .classname_c01429")
 */
.pf_c01429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01429 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01429 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01429 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01429 {overflow:visible;}
  }
}
.c_c01429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01429 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01429:after { /* webkit #35443 */
  content: '';
}
.t_c01429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01429 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01429 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01429 { /* info for Javascript */
  display:none;
}
.l_c01429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01429:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01429 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01429.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01429;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff1_c01429{font-family:ff1_c01429;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01429;src:url('chunks/assets/font_a59b0b731bfc73bc4460d136.woff2')format("woff");}.ff2_c01429{font-family:ff2_c01429;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01429;src:url('chunks/assets/font_f843f14044638d2830d9155a.woff2')format("woff");}.ff3_c01429{font-family:ff3_c01429;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01429;src:url('chunks/assets/font_380ac41af9462cece461015a.woff2')format("woff");}.ff4_c01429{font-family:ff4_c01429;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01429{vertical-align:0.000000px;}
.ls4_c01429{letter-spacing:0.000000px;}
.ls1_c01429{letter-spacing:0.087998px;}
.ls2_c01429{letter-spacing:0.098482px;}
.ls0_c01429{letter-spacing:0.104482px;}
.ls3_c01429{letter-spacing:26.690482px;}
.sc__c01429{text-shadow:none;}
.sc0_c01429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01429{-webkit-text-stroke:0px transparent;}
.sc0_c01429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01429{word-spacing:-26.575517px;}
.ws0_c01429{word-spacing:-26.487518px;}
.ws5_c01429{word-spacing:0.000000px;}
.ws2_c01429{word-spacing:0.043999px;}
.ws8_c01429{word-spacing:0.056767px;}
.ws6_c01429{word-spacing:0.073250px;}
.ws7_c01429{word-spacing:0.083734px;}
.ws4_c01429{word-spacing:0.175997px;}
.ws9_c01429{word-spacing:0.202963px;}
.wsa_c01429{word-spacing:0.213446px;}
.ws3_c01429{word-spacing:0.219446px;}
._0_c01429{width:1.005737px;}
._2_c01429{width:53.283031px;}
._1_c01429{width:79.858548px;}
._3_c01429{width:133.452408px;}
.fc5_c01429{color:rgb(0,0,207);}
.fc4_c01429{color:rgb(143,89,3);}
.fc3_c01429{color:rgb(79,153,5);}
.fc2_c01429{color:rgb(207,92,0);}
.fc1_c01429{color:rgb(0,0,0);}
.fc0_c01429{color:rgb(33,74,135);}
.fs0_c01429{font-size:43.999200px;}
.fs1_c01429{font-size:59.775600px;}
.y0_c01429{bottom:0.000000px;}
.y27_c01429{bottom:44.250000px;}
.y26_c01429{bottom:453.013500px;}
.y25_c01429{bottom:469.452000px;}
.y24_c01429{bottom:485.890500px;}
.y23_c01429{bottom:502.329000px;}
.y22_c01429{bottom:518.767500px;}
.y21_c01429{bottom:535.206000px;}
.y20_c01429{bottom:551.643000px;}
.y1f_c01429{bottom:568.081500px;}
.y1e_c01429{bottom:584.520000px;}
.y1d_c01429{bottom:600.958500px;}
.y1c_c01429{bottom:617.397000px;}
.y1b_c01429{bottom:650.274000px;}
.y1a_c01429{bottom:666.712500px;}
.y19_c01429{bottom:683.151000px;}
.y18_c01429{bottom:716.028000px;}
.y17_c01429{bottom:732.465000px;}
.y16_c01429{bottom:748.903500px;}
.y15_c01429{bottom:765.342000px;}
.y14_c01429{bottom:781.780500px;}
.y13_c01429{bottom:798.219000px;}
.y12_c01429{bottom:831.096000px;}
.y11_c01429{bottom:863.973000px;}
.y10_c01429{bottom:880.411500px;}
.yf_c01429{bottom:896.848500px;}
.ye_c01429{bottom:913.287000px;}
.yd_c01429{bottom:929.725500px;}
.yc_c01429{bottom:946.164000px;}
.yb_c01429{bottom:962.602500px;}
.ya_c01429{bottom:979.041000px;}
.y9_c01429{bottom:995.479500px;}
.y8_c01429{bottom:1011.918000px;}
.y7_c01429{bottom:1028.356500px;}
.y6_c01429{bottom:1044.795000px;}
.y5_c01429{bottom:1061.232000px;}
.y4_c01429{bottom:1077.670500px;}
.y3_c01429{bottom:1094.109000px;}
.y2_c01429{bottom:1126.986000px;}
.y1_c01429{bottom:1159.863000px;}
.h3_c01429{height:35.190766px;}
.h2_c01429{height:36.007158px;}
.h4_c01429{height:52.332837px;}
.h0_c01429{height:1262.835000px;}
.h1_c01429{height:1263.000000px;}
.w0_c01429{width:892.920000px;}
.w1_c01429{width:893.250000px;}
.x0_c01429{left:0.000000px;}
.x1_c01429{left:137.122500px;}
.x2_c01429{left:143.770500px;}
.x3_c01429{left:177.007500px;}
.x4_c01429{left:435.249000px;}
@media print{
.v0_c01429{vertical-align:0.000000pt;}
.ls4_c01429{letter-spacing:0.000000pt;}
.ls1_c01429{letter-spacing:0.078221pt;}
.ls2_c01429{letter-spacing:0.087539pt;}
.ls0_c01429{letter-spacing:0.092873pt;}
.ls3_c01429{letter-spacing:23.724873pt;}
.ws1_c01429{word-spacing:-23.622682pt;}
.ws0_c01429{word-spacing:-23.544461pt;}
.ws5_c01429{word-spacing:0.000000pt;}
.ws2_c01429{word-spacing:0.039110pt;}
.ws8_c01429{word-spacing:0.050460pt;}
.ws6_c01429{word-spacing:0.065111pt;}
.ws7_c01429{word-spacing:0.074430pt;}
.ws4_c01429{word-spacing:0.156442pt;}
.ws9_c01429{word-spacing:0.180412pt;}
.wsa_c01429{word-spacing:0.189730pt;}
.ws3_c01429{word-spacing:0.195063pt;}
._0_c01429{width:0.893988pt;}
._2_c01429{width:47.362694pt;}
._1_c01429{width:70.985376pt;}
._3_c01429{width:118.624363pt;}
.fs0_c01429{font-size:39.110400pt;}
.fs1_c01429{font-size:53.133867pt;}
.y0_c01429{bottom:0.000000pt;}
.y27_c01429{bottom:39.333333pt;}
.y26_c01429{bottom:402.678667pt;}
.y25_c01429{bottom:417.290667pt;}
.y24_c01429{bottom:431.902667pt;}
.y23_c01429{bottom:446.514667pt;}
.y22_c01429{bottom:461.126667pt;}
.y21_c01429{bottom:475.738667pt;}
.y20_c01429{bottom:490.349333pt;}
.y1f_c01429{bottom:504.961333pt;}
.y1e_c01429{bottom:519.573333pt;}
.y1d_c01429{bottom:534.185333pt;}
.y1c_c01429{bottom:548.797333pt;}
.y1b_c01429{bottom:578.021333pt;}
.y1a_c01429{bottom:592.633333pt;}
.y19_c01429{bottom:607.245333pt;}
.y18_c01429{bottom:636.469333pt;}
.y17_c01429{bottom:651.080000pt;}
.y16_c01429{bottom:665.692000pt;}
.y15_c01429{bottom:680.304000pt;}
.y14_c01429{bottom:694.916000pt;}
.y13_c01429{bottom:709.528000pt;}
.y12_c01429{bottom:738.752000pt;}
.y11_c01429{bottom:767.976000pt;}
.y10_c01429{bottom:782.588000pt;}
.yf_c01429{bottom:797.198667pt;}
.ye_c01429{bottom:811.810667pt;}
.yd_c01429{bottom:826.422667pt;}
.yc_c01429{bottom:841.034667pt;}
.yb_c01429{bottom:855.646667pt;}
.ya_c01429{bottom:870.258667pt;}
.y9_c01429{bottom:884.870667pt;}
.y8_c01429{bottom:899.482667pt;}
.y7_c01429{bottom:914.094667pt;}
.y6_c01429{bottom:928.706667pt;}
.y5_c01429{bottom:943.317333pt;}
.y4_c01429{bottom:957.929333pt;}
.y3_c01429{bottom:972.541333pt;}
.y2_c01429{bottom:1001.765333pt;}
.y1_c01429{bottom:1030.989333pt;}
.h3_c01429{height:31.280681pt;}
.h2_c01429{height:32.006363pt;}
.h4_c01429{height:46.518078pt;}
.h0_c01429{height:1122.520000pt;}
.h1_c01429{height:1122.666667pt;}
.w0_c01429{width:793.706667pt;}
.w1_c01429{width:794.000000pt;}
.x0_c01429{left:0.000000pt;}
.x1_c01429{left:121.886667pt;}
.x2_c01429{left:127.796000pt;}
.x3_c01429{left:157.340000pt;}
.x4_c01429{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01430 {
    display:none;
  }
  .loading-indicator_c01430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01430 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01430 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01430" -> "#page-container .classname_c01430")
 */
.pf_c01430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01430 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01430 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01430 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01430 {overflow:visible;}
  }
}
.c_c01430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01430 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01430:after { /* webkit #35443 */
  content: '';
}
.t_c01430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01430 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01430 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01430 { /* info for Javascript */
  display:none;
}
.l_c01430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01430:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01430 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01430.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01430;src:url('chunks/assets/font_5c389032360819d25ea9da27.woff2')format("woff");}.ff1_c01430{font-family:ff1_c01430;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01430;src:url('chunks/assets/font_810647fcdd8eb566a523108e.woff2')format("woff");}.ff2_c01430{font-family:ff2_c01430;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01430;src:url('chunks/assets/font_ea3cc20cabc9e4099d68bfb3.woff2')format("woff");}.ff3_c01430{font-family:ff3_c01430;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01430;src:url('chunks/assets/font_2c07020ccbf5c4f01b4bcff8.woff2')format("woff");}.ff4_c01430{font-family:ff4_c01430;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01430;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01430{font-family:ff5_c01430;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01430{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01430{vertical-align:0.000000px;}
.ls4_c01430{letter-spacing:0.000000px;}
.ls0_c01430{letter-spacing:0.087998px;}
.ls2_c01430{letter-spacing:0.098482px;}
.ls1_c01430{letter-spacing:0.104482px;}
.ls3_c01430{letter-spacing:26.690482px;}
.sc__c01430{text-shadow:none;}
.sc0_c01430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01430{-webkit-text-stroke:0px transparent;}
.sc0_c01430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01430{word-spacing:-33.713438px;}
.ws2_c01430{word-spacing:-26.575517px;}
.wse_c01430{word-spacing:-26.487518px;}
.ws9_c01430{word-spacing:-21.553319px;}
.ws8_c01430{word-spacing:-21.519216px;}
.ws5_c01430{word-spacing:-18.769538px;}
.ws7_c01430{word-spacing:-17.633802px;}
.ws4_c01430{word-spacing:-14.943900px;}
.wsa_c01430{word-spacing:-14.107042px;}
.wsb_c01430{word-spacing:-12.074671px;}
.ws1_c01430{word-spacing:-9.988424px;}
.ws3_c01430{word-spacing:-9.987499px;}
.ws6_c01430{word-spacing:-7.686144px;}
.ws12_c01430{word-spacing:0.000000px;}
.wsf_c01430{word-spacing:0.043999px;}
.ws15_c01430{word-spacing:0.056767px;}
.ws13_c01430{word-spacing:0.073250px;}
.ws14_c01430{word-spacing:0.083734px;}
.wsd_c01430{word-spacing:0.175997px;}
.ws16_c01430{word-spacing:0.202963px;}
.ws10_c01430{word-spacing:0.213446px;}
.ws11_c01430{word-spacing:0.219446px;}
.ws0_c01430{word-spacing:43.038600px;}
._0_c01430{margin-left:-7.833025px;}
._4_c01430{margin-left:-3.825638px;}
._1_c01430{margin-left:-1.549390px;}
._5_c01430{width:1.005737px;}
._2_c01430{width:19.935816px;}
._3_c01430{width:40.109428px;}
._7_c01430{width:53.283031px;}
._6_c01430{width:79.858548px;}
._8_c01430{width:133.452408px;}
.fc6_c01430{color:rgb(0,0,207);}
.fc5_c01430{color:rgb(79,153,5);}
.fc3_c01430{color:rgb(33,74,135);}
.fc2_c01430{color:rgb(143,89,3);}
.fc4_c01430{color:rgb(207,92,0);}
.fc1_c01430{color:rgb(6,69,173);}
.fc0_c01430{color:rgb(0,0,0);}
.fs2_c01430{font-size:43.999200px;}
.fs1_c01430{font-size:59.775600px;}
.fs0_c01430{font-size:86.077200px;}
.y0_c01430{bottom:0.000000px;}
.y1f_c01430{bottom:44.250000px;}
.y1e_c01430{bottom:119.859000px;}
.y1d_c01430{bottom:136.297500px;}
.y1c_c01430{bottom:152.736000px;}
.y1b_c01430{bottom:169.174500px;}
.y1a_c01430{bottom:185.613000px;}
.y19_c01430{bottom:202.051500px;}
.y18_c01430{bottom:218.490000px;}
.y17_c01430{bottom:234.927000px;}
.y16_c01430{bottom:251.365500px;}
.y15_c01430{bottom:267.804000px;}
.y14_c01430{bottom:284.242500px;}
.y13_c01430{bottom:300.681000px;}
.y12_c01430{bottom:317.119500px;}
.y11_c01430{bottom:333.558000px;}
.y10_c01430{bottom:349.996500px;}
.yf_c01430{bottom:382.873500px;}
.ye_c01430{bottom:415.749000px;}
.yd_c01430{bottom:432.187500px;}
.yc_c01430{bottom:448.252500px;}
.yb_c01430{bottom:493.890000px;}
.ya_c01430{bottom:511.822500px;}
.y9_c01430{bottom:529.756500px;}
.y8_c01430{bottom:547.689000px;}
.y7_c01430{bottom:565.621500px;}
.y6_c01430{bottom:583.554000px;}
.y5_c01430{bottom:610.633500px;}
.y4_c01430{bottom:637.714500px;}
.y3_c01430{bottom:664.794000px;}
.y2_c01430{bottom:691.873500px;}
.y1_c01430{bottom:734.407500px;}
.h5_c01430{height:35.190766px;}
.h6_c01430{height:36.007158px;}
.h3_c01430{height:40.511979px;}
.h4_c01430{height:52.332837px;}
.h2_c01430{height:58.337477px;}
.h0_c01430{height:1262.835000px;}
.h1_c01430{height:1263.000000px;}
.w0_c01430{width:892.920000px;}
.w1_c01430{width:893.250000px;}
.x0_c01430{left:0.000000px;}
.x1_c01430{left:127.558500px;}
.x2_c01430{left:137.122500px;}
.x3_c01430{left:143.770500px;}
.x4_c01430{left:435.249000px;}
@media print{
.v0_c01430{vertical-align:0.000000pt;}
.ls4_c01430{letter-spacing:0.000000pt;}
.ls0_c01430{letter-spacing:0.078221pt;}
.ls2_c01430{letter-spacing:0.087539pt;}
.ls1_c01430{letter-spacing:0.092873pt;}
.ls3_c01430{letter-spacing:23.724873pt;}
.wsc_c01430{word-spacing:-29.967501pt;}
.ws2_c01430{word-spacing:-23.622682pt;}
.wse_c01430{word-spacing:-23.544461pt;}
.ws9_c01430{word-spacing:-19.158506pt;}
.ws8_c01430{word-spacing:-19.128192pt;}
.ws5_c01430{word-spacing:-16.684034pt;}
.ws7_c01430{word-spacing:-15.674491pt;}
.ws4_c01430{word-spacing:-13.283467pt;}
.wsa_c01430{word-spacing:-12.539593pt;}
.wsb_c01430{word-spacing:-10.733041pt;}
.ws1_c01430{word-spacing:-8.878599pt;}
.ws3_c01430{word-spacing:-8.877777pt;}
.ws6_c01430{word-spacing:-6.832128pt;}
.ws12_c01430{word-spacing:0.000000pt;}
.wsf_c01430{word-spacing:0.039110pt;}
.ws15_c01430{word-spacing:0.050460pt;}
.ws13_c01430{word-spacing:0.065111pt;}
.ws14_c01430{word-spacing:0.074430pt;}
.wsd_c01430{word-spacing:0.156442pt;}
.ws16_c01430{word-spacing:0.180412pt;}
.ws10_c01430{word-spacing:0.189730pt;}
.ws11_c01430{word-spacing:0.195063pt;}
.ws0_c01430{word-spacing:38.256533pt;}
._0_c01430{margin-left:-6.962689pt;}
._4_c01430{margin-left:-3.400567pt;}
._1_c01430{margin-left:-1.377235pt;}
._5_c01430{width:0.893988pt;}
._2_c01430{width:17.720725pt;}
._3_c01430{width:35.652825pt;}
._7_c01430{width:47.362694pt;}
._6_c01430{width:70.985376pt;}
._8_c01430{width:118.624363pt;}
.fs2_c01430{font-size:39.110400pt;}
.fs1_c01430{font-size:53.133867pt;}
.fs0_c01430{font-size:76.513067pt;}
.y0_c01430{bottom:0.000000pt;}
.y1f_c01430{bottom:39.333333pt;}
.y1e_c01430{bottom:106.541333pt;}
.y1d_c01430{bottom:121.153333pt;}
.y1c_c01430{bottom:135.765333pt;}
.y1b_c01430{bottom:150.377333pt;}
.y1a_c01430{bottom:164.989333pt;}
.y19_c01430{bottom:179.601333pt;}
.y18_c01430{bottom:194.213333pt;}
.y17_c01430{bottom:208.824000pt;}
.y16_c01430{bottom:223.436000pt;}
.y15_c01430{bottom:238.048000pt;}
.y14_c01430{bottom:252.660000pt;}
.y13_c01430{bottom:267.272000pt;}
.y12_c01430{bottom:281.884000pt;}
.y11_c01430{bottom:296.496000pt;}
.y10_c01430{bottom:311.108000pt;}
.yf_c01430{bottom:340.332000pt;}
.ye_c01430{bottom:369.554667pt;}
.yd_c01430{bottom:384.166667pt;}
.yc_c01430{bottom:398.446667pt;}
.yb_c01430{bottom:439.013333pt;}
.ya_c01430{bottom:454.953333pt;}
.y9_c01430{bottom:470.894667pt;}
.y8_c01430{bottom:486.834667pt;}
.y7_c01430{bottom:502.774667pt;}
.y6_c01430{bottom:518.714667pt;}
.y5_c01430{bottom:542.785333pt;}
.y4_c01430{bottom:566.857333pt;}
.y3_c01430{bottom:590.928000pt;}
.y2_c01430{bottom:614.998667pt;}
.y1_c01430{bottom:652.806667pt;}
.h5_c01430{height:31.280681pt;}
.h6_c01430{height:32.006363pt;}
.h3_c01430{height:36.010648pt;}
.h4_c01430{height:46.518078pt;}
.h2_c01430{height:51.855535pt;}
.h0_c01430{height:1122.520000pt;}
.h1_c01430{height:1122.666667pt;}
.w0_c01430{width:793.706667pt;}
.w1_c01430{width:794.000000pt;}
.x0_c01430{left:0.000000pt;}
.x1_c01430{left:113.385333pt;}
.x2_c01430{left:121.886667pt;}
.x3_c01430{left:127.796000pt;}
.x4_c01430{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01431 {
    display:none;
  }
  .loading-indicator_c01431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01431 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01431 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01431" -> "#page-container .classname_c01431")
 */
.pf_c01431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01431 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01431 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01431 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01431 {overflow:visible;}
  }
}
.c_c01431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01431 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01431:after { /* webkit #35443 */
  content: '';
}
.t_c01431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01431 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01431 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01431 { /* info for Javascript */
  display:none;
}
.l_c01431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01431:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01431 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01431.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01431;src:url('chunks/assets/font_4be7d9f5a5c91ad9af474886.woff2')format("woff");}.ff1_c01431{font-family:ff1_c01431;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01431;src:url('chunks/assets/font_75612d43ca7ecbe5cdf4cd86.woff2')format("woff");}.ff2_c01431{font-family:ff2_c01431;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01431;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c01431{font-family:ff3_c01431;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01431;src:url('chunks/assets/font_f9ccb739bdf9cbe378db54ea.woff2')format("woff");}.ff4_c01431{font-family:ff4_c01431;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01431;src:url('chunks/assets/font_8736824696217de277263797.woff2')format("woff");}.ff5_c01431{font-family:ff5_c01431;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01431{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01431{vertical-align:0.000000px;}
.ls3_c01431{letter-spacing:0.000000px;}
.ls0_c01431{letter-spacing:0.087998px;}
.ls1_c01431{letter-spacing:0.098482px;}
.ls2_c01431{letter-spacing:0.104482px;}
.sc__c01431{text-shadow:none;}
.sc0_c01431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01431{-webkit-text-stroke:0px transparent;}
.sc0_c01431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01431{word-spacing:-33.713438px;}
.ws1_c01431{word-spacing:-26.575517px;}
.ws2_c01431{word-spacing:-26.487518px;}
.wsd_c01431{word-spacing:-21.553319px;}
.wsc_c01431{word-spacing:-21.519216px;}
.ws9_c01431{word-spacing:-18.769538px;}
.wsb_c01431{word-spacing:-17.633802px;}
.ws8_c01431{word-spacing:-14.943900px;}
.wse_c01431{word-spacing:-14.107042px;}
.wsf_c01431{word-spacing:-12.074671px;}
.ws6_c01431{word-spacing:-9.988424px;}
.ws7_c01431{word-spacing:-9.987499px;}
.wsa_c01431{word-spacing:-7.686144px;}
.ws0_c01431{word-spacing:0.000000px;}
.ws3_c01431{word-spacing:0.043999px;}
.ws4_c01431{word-spacing:0.213446px;}
.ws5_c01431{word-spacing:43.038600px;}
._1_c01431{margin-left:-7.833025px;}
._5_c01431{margin-left:-3.825638px;}
._2_c01431{margin-left:-1.549390px;}
._0_c01431{width:1.041538px;}
._3_c01431{width:19.935816px;}
._4_c01431{width:40.109428px;}
.fc5_c01431{color:rgb(0,0,207);}
.fc6_c01431{color:rgb(6,69,173);}
.fc4_c01431{color:rgb(207,92,0);}
.fc3_c01431{color:rgb(79,153,5);}
.fc2_c01431{color:rgb(33,74,135);}
.fc1_c01431{color:rgb(0,0,0);}
.fc0_c01431{color:rgb(143,89,3);}
.fs0_c01431{font-size:43.999200px;}
.fs2_c01431{font-size:59.775600px;}
.fs1_c01431{font-size:86.077200px;}
.y0_c01431{bottom:0.000000px;}
.y21_c01431{bottom:44.250000px;}
.y20_c01431{bottom:82.051500px;}
.y1f_c01431{bottom:99.984000px;}
.y1e_c01431{bottom:117.916500px;}
.y1d_c01431{bottom:135.849000px;}
.y1c_c01431{bottom:153.781500px;}
.y1b_c01431{bottom:171.714000px;}
.y1a_c01431{bottom:197.988000px;}
.y19_c01431{bottom:224.260500px;}
.y18_c01431{bottom:250.533000px;}
.y17_c01431{bottom:276.805500px;}
.y16_c01431{bottom:318.450000px;}
.y15_c01431{bottom:781.780500px;}
.y14_c01431{bottom:798.219000px;}
.y13_c01431{bottom:814.657500px;}
.y12_c01431{bottom:831.096000px;}
.y11_c01431{bottom:847.534500px;}
.y10_c01431{bottom:863.973000px;}
.yf_c01431{bottom:880.411500px;}
.ye_c01431{bottom:896.848500px;}
.yd_c01431{bottom:913.287000px;}
.yc_c01431{bottom:929.725500px;}
.yb_c01431{bottom:946.164000px;}
.ya_c01431{bottom:979.041000px;}
.y9_c01431{bottom:995.479500px;}
.y8_c01431{bottom:1011.918000px;}
.y7_c01431{bottom:1044.795000px;}
.y6_c01431{bottom:1061.232000px;}
.y5_c01431{bottom:1077.670500px;}
.y4_c01431{bottom:1094.109000px;}
.y3_c01431{bottom:1110.547500px;}
.y2_c01431{bottom:1126.986000px;}
.y1_c01431{bottom:1159.863000px;}
.h2_c01431{height:35.190766px;}
.h3_c01431{height:36.007158px;}
.h5_c01431{height:40.511979px;}
.h6_c01431{height:52.332837px;}
.h4_c01431{height:58.337477px;}
.h0_c01431{height:1262.835000px;}
.h1_c01431{height:1263.000000px;}
.w0_c01431{width:892.920000px;}
.w1_c01431{width:893.250000px;}
.x0_c01431{left:0.000000px;}
.x3_c01431{left:127.558500px;}
.x1_c01431{left:137.122500px;}
.x2_c01431{left:177.007500px;}
.x4_c01431{left:435.249000px;}
@media print{
.v0_c01431{vertical-align:0.000000pt;}
.ls3_c01431{letter-spacing:0.000000pt;}
.ls0_c01431{letter-spacing:0.078221pt;}
.ls1_c01431{letter-spacing:0.087539pt;}
.ls2_c01431{letter-spacing:0.092873pt;}
.ws10_c01431{word-spacing:-29.967501pt;}
.ws1_c01431{word-spacing:-23.622682pt;}
.ws2_c01431{word-spacing:-23.544461pt;}
.wsd_c01431{word-spacing:-19.158506pt;}
.wsc_c01431{word-spacing:-19.128192pt;}
.ws9_c01431{word-spacing:-16.684034pt;}
.wsb_c01431{word-spacing:-15.674491pt;}
.ws8_c01431{word-spacing:-13.283467pt;}
.wse_c01431{word-spacing:-12.539593pt;}
.wsf_c01431{word-spacing:-10.733041pt;}
.ws6_c01431{word-spacing:-8.878599pt;}
.ws7_c01431{word-spacing:-8.877777pt;}
.wsa_c01431{word-spacing:-6.832128pt;}
.ws0_c01431{word-spacing:0.000000pt;}
.ws3_c01431{word-spacing:0.039110pt;}
.ws4_c01431{word-spacing:0.189730pt;}
.ws5_c01431{word-spacing:38.256533pt;}
._1_c01431{margin-left:-6.962689pt;}
._5_c01431{margin-left:-3.400567pt;}
._2_c01431{margin-left:-1.377235pt;}
._0_c01431{width:0.925811pt;}
._3_c01431{width:17.720725pt;}
._4_c01431{width:35.652825pt;}
.fs0_c01431{font-size:39.110400pt;}
.fs2_c01431{font-size:53.133867pt;}
.fs1_c01431{font-size:76.513067pt;}
.y0_c01431{bottom:0.000000pt;}
.y21_c01431{bottom:39.333333pt;}
.y20_c01431{bottom:72.934667pt;}
.y1f_c01431{bottom:88.874667pt;}
.y1e_c01431{bottom:104.814667pt;}
.y1d_c01431{bottom:120.754667pt;}
.y1c_c01431{bottom:136.694667pt;}
.y1b_c01431{bottom:152.634667pt;}
.y1a_c01431{bottom:175.989333pt;}
.y19_c01431{bottom:199.342667pt;}
.y18_c01431{bottom:222.696000pt;}
.y17_c01431{bottom:246.049333pt;}
.y16_c01431{bottom:283.066667pt;}
.y15_c01431{bottom:694.916000pt;}
.y14_c01431{bottom:709.528000pt;}
.y13_c01431{bottom:724.140000pt;}
.y12_c01431{bottom:738.752000pt;}
.y11_c01431{bottom:753.364000pt;}
.y10_c01431{bottom:767.976000pt;}
.yf_c01431{bottom:782.588000pt;}
.ye_c01431{bottom:797.198667pt;}
.yd_c01431{bottom:811.810667pt;}
.yc_c01431{bottom:826.422667pt;}
.yb_c01431{bottom:841.034667pt;}
.ya_c01431{bottom:870.258667pt;}
.y9_c01431{bottom:884.870667pt;}
.y8_c01431{bottom:899.482667pt;}
.y7_c01431{bottom:928.706667pt;}
.y6_c01431{bottom:943.317333pt;}
.y5_c01431{bottom:957.929333pt;}
.y4_c01431{bottom:972.541333pt;}
.y3_c01431{bottom:987.153333pt;}
.y2_c01431{bottom:1001.765333pt;}
.y1_c01431{bottom:1030.989333pt;}
.h2_c01431{height:31.280681pt;}
.h3_c01431{height:32.006363pt;}
.h5_c01431{height:36.010648pt;}
.h6_c01431{height:46.518078pt;}
.h4_c01431{height:51.855535pt;}
.h0_c01431{height:1122.520000pt;}
.h1_c01431{height:1122.666667pt;}
.w0_c01431{width:793.706667pt;}
.w1_c01431{width:794.000000pt;}
.x0_c01431{left:0.000000pt;}
.x3_c01431{left:113.385333pt;}
.x1_c01431{left:121.886667pt;}
.x2_c01431{left:157.340000pt;}
.x4_c01431{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01432 {
    display:none;
  }
  .loading-indicator_c01432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01432 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01432 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01432" -> "#page-container .classname_c01432")
 */
.pf_c01432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01432 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01432 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01432 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01432 {overflow:visible;}
  }
}
.c_c01432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01432 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01432:after { /* webkit #35443 */
  content: '';
}
.t_c01432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01432 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01432 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01432 { /* info for Javascript */
  display:none;
}
.l_c01432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01432:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01432 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01432.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01432;src:url('chunks/assets/font_c28602ccf86bb1b5c51452b9.woff2')format("woff");}.ff1_c01432{font-family:ff1_c01432;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01432;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01432{font-family:ff2_c01432;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01432;src:url('chunks/assets/font_a59b0b731bfc73bc4460d136.woff2')format("woff");}.ff3_c01432{font-family:ff3_c01432;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01432;src:url('chunks/assets/font_c44ed847fd156bde30bcf347.woff2')format("woff");}.ff4_c01432{font-family:ff4_c01432;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01432{vertical-align:0.000000px;}
.ls4_c01432{letter-spacing:0.000000px;}
.ls1_c01432{letter-spacing:0.087998px;}
.ls2_c01432{letter-spacing:0.098482px;}
.ls0_c01432{letter-spacing:0.104482px;}
.ls3_c01432{letter-spacing:26.690482px;}
.sc__c01432{text-shadow:none;}
.sc0_c01432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01432{-webkit-text-stroke:0px transparent;}
.sc0_c01432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01432{word-spacing:-26.575517px;}
.ws1_c01432{word-spacing:-26.487518px;}
.ws6_c01432{word-spacing:0.000000px;}
.ws3_c01432{word-spacing:0.043999px;}
.ws9_c01432{word-spacing:0.056767px;}
.ws7_c01432{word-spacing:0.073250px;}
.ws8_c01432{word-spacing:0.083734px;}
.ws0_c01432{word-spacing:0.175997px;}
.wsa_c01432{word-spacing:0.202963px;}
.ws4_c01432{word-spacing:0.213446px;}
.ws5_c01432{word-spacing:0.219446px;}
._0_c01432{width:1.005737px;}
._2_c01432{width:53.283031px;}
._1_c01432{width:79.858548px;}
._3_c01432{width:133.452408px;}
.fc5_c01432{color:rgb(0,0,207);}
.fc4_c01432{color:rgb(79,153,5);}
.fc3_c01432{color:rgb(207,92,0);}
.fc2_c01432{color:rgb(0,0,0);}
.fc1_c01432{color:rgb(33,74,135);}
.fc0_c01432{color:rgb(143,89,3);}
.fs0_c01432{font-size:43.999200px;}
.fs1_c01432{font-size:59.775600px;}
.y0_c01432{bottom:0.000000px;}
.y29_c01432{bottom:44.250000px;}
.y28_c01432{bottom:400.038000px;}
.y27_c01432{bottom:416.475000px;}
.y26_c01432{bottom:432.913500px;}
.y25_c01432{bottom:449.352000px;}
.y24_c01432{bottom:465.790500px;}
.y23_c01432{bottom:482.229000px;}
.y22_c01432{bottom:498.667500px;}
.y21_c01432{bottom:515.106000px;}
.y20_c01432{bottom:531.544500px;}
.y1f_c01432{bottom:547.983000px;}
.y1e_c01432{bottom:564.421500px;}
.y1d_c01432{bottom:597.297000px;}
.y1c_c01432{bottom:613.735500px;}
.y1b_c01432{bottom:630.174000px;}
.y1a_c01432{bottom:663.051000px;}
.y19_c01432{bottom:679.489500px;}
.y18_c01432{bottom:695.928000px;}
.y17_c01432{bottom:712.366500px;}
.y16_c01432{bottom:728.805000px;}
.y15_c01432{bottom:745.243500px;}
.y14_c01432{bottom:778.119000px;}
.y13_c01432{bottom:810.996000px;}
.y12_c01432{bottom:827.434500px;}
.y11_c01432{bottom:843.873000px;}
.y10_c01432{bottom:860.311500px;}
.yf_c01432{bottom:876.750000px;}
.ye_c01432{bottom:893.188500px;}
.yd_c01432{bottom:909.627000px;}
.yc_c01432{bottom:926.064000px;}
.yb_c01432{bottom:942.502500px;}
.ya_c01432{bottom:958.941000px;}
.y9_c01432{bottom:975.379500px;}
.y8_c01432{bottom:991.818000px;}
.y7_c01432{bottom:1008.256500px;}
.y6_c01432{bottom:1024.695000px;}
.y5_c01432{bottom:1041.133500px;}
.y4_c01432{bottom:1074.010500px;}
.y3_c01432{bottom:1106.886000px;}
.y2_c01432{bottom:1123.324500px;}
.y1_c01432{bottom:1139.389500px;}
.h2_c01432{height:35.190766px;}
.h3_c01432{height:36.007158px;}
.h4_c01432{height:52.332837px;}
.h0_c01432{height:1262.835000px;}
.h1_c01432{height:1263.000000px;}
.w0_c01432{width:892.920000px;}
.w1_c01432{width:893.250000px;}
.x0_c01432{left:0.000000px;}
.x1_c01432{left:137.122500px;}
.x2_c01432{left:143.770500px;}
.x3_c01432{left:177.007500px;}
.x4_c01432{left:435.249000px;}
@media print{
.v0_c01432{vertical-align:0.000000pt;}
.ls4_c01432{letter-spacing:0.000000pt;}
.ls1_c01432{letter-spacing:0.078221pt;}
.ls2_c01432{letter-spacing:0.087539pt;}
.ls0_c01432{letter-spacing:0.092873pt;}
.ls3_c01432{letter-spacing:23.724873pt;}
.ws2_c01432{word-spacing:-23.622682pt;}
.ws1_c01432{word-spacing:-23.544461pt;}
.ws6_c01432{word-spacing:0.000000pt;}
.ws3_c01432{word-spacing:0.039110pt;}
.ws9_c01432{word-spacing:0.050460pt;}
.ws7_c01432{word-spacing:0.065111pt;}
.ws8_c01432{word-spacing:0.074430pt;}
.ws0_c01432{word-spacing:0.156442pt;}
.wsa_c01432{word-spacing:0.180412pt;}
.ws4_c01432{word-spacing:0.189730pt;}
.ws5_c01432{word-spacing:0.195063pt;}
._0_c01432{width:0.893988pt;}
._2_c01432{width:47.362694pt;}
._1_c01432{width:70.985376pt;}
._3_c01432{width:118.624363pt;}
.fs0_c01432{font-size:39.110400pt;}
.fs1_c01432{font-size:53.133867pt;}
.y0_c01432{bottom:0.000000pt;}
.y29_c01432{bottom:39.333333pt;}
.y28_c01432{bottom:355.589333pt;}
.y27_c01432{bottom:370.200000pt;}
.y26_c01432{bottom:384.812000pt;}
.y25_c01432{bottom:399.424000pt;}
.y24_c01432{bottom:414.036000pt;}
.y23_c01432{bottom:428.648000pt;}
.y22_c01432{bottom:443.260000pt;}
.y21_c01432{bottom:457.872000pt;}
.y20_c01432{bottom:472.484000pt;}
.y1f_c01432{bottom:487.096000pt;}
.y1e_c01432{bottom:501.708000pt;}
.y1d_c01432{bottom:530.930667pt;}
.y1c_c01432{bottom:545.542667pt;}
.y1b_c01432{bottom:560.154667pt;}
.y1a_c01432{bottom:589.378667pt;}
.y19_c01432{bottom:603.990667pt;}
.y18_c01432{bottom:618.602667pt;}
.y17_c01432{bottom:633.214667pt;}
.y16_c01432{bottom:647.826667pt;}
.y15_c01432{bottom:662.438667pt;}
.y14_c01432{bottom:691.661333pt;}
.y13_c01432{bottom:720.885333pt;}
.y12_c01432{bottom:735.497333pt;}
.y11_c01432{bottom:750.109333pt;}
.y10_c01432{bottom:764.721333pt;}
.yf_c01432{bottom:779.333333pt;}
.ye_c01432{bottom:793.945333pt;}
.yd_c01432{bottom:808.557333pt;}
.yc_c01432{bottom:823.168000pt;}
.yb_c01432{bottom:837.780000pt;}
.ya_c01432{bottom:852.392000pt;}
.y9_c01432{bottom:867.004000pt;}
.y8_c01432{bottom:881.616000pt;}
.y7_c01432{bottom:896.228000pt;}
.y6_c01432{bottom:910.840000pt;}
.y5_c01432{bottom:925.452000pt;}
.y4_c01432{bottom:954.676000pt;}
.y3_c01432{bottom:983.898667pt;}
.y2_c01432{bottom:998.510667pt;}
.y1_c01432{bottom:1012.790667pt;}
.h2_c01432{height:31.280681pt;}
.h3_c01432{height:32.006363pt;}
.h4_c01432{height:46.518078pt;}
.h0_c01432{height:1122.520000pt;}
.h1_c01432{height:1122.666667pt;}
.w0_c01432{width:793.706667pt;}
.w1_c01432{width:794.000000pt;}
.x0_c01432{left:0.000000pt;}
.x1_c01432{left:121.886667pt;}
.x2_c01432{left:127.796000pt;}
.x3_c01432{left:157.340000pt;}
.x4_c01432{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01433 {
    display:none;
  }
  .loading-indicator_c01433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01433 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01433 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01433" -> "#page-container .classname_c01433")
 */
.pf_c01433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01433 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01433 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01433 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01433 {overflow:visible;}
  }
}
.c_c01433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01433 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01433:after { /* webkit #35443 */
  content: '';
}
.t_c01433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01433 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01433 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01433 { /* info for Javascript */
  display:none;
}
.l_c01433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01433:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01433 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01433.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01433;src:url('chunks/assets/font_e9f3108d0a548341a56aeb26.woff2')format("woff");}.ff1_c01433{font-family:ff1_c01433;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01433;src:url('chunks/assets/font_810647fcdd8eb566a523108e.woff2')format("woff");}.ff2_c01433{font-family:ff2_c01433;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01433;src:url('chunks/assets/font_3c560b7f0a26ef753f61eff0.woff2')format("woff");}.ff3_c01433{font-family:ff3_c01433;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01433;src:url('chunks/assets/font_a6fa33777cd301282429ad5f.woff2')format("woff");}.ff4_c01433{font-family:ff4_c01433;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01433;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01433{font-family:ff5_c01433;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01433{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01433{vertical-align:0.000000px;}
.ls4_c01433{letter-spacing:0.000000px;}
.ls0_c01433{letter-spacing:0.087998px;}
.ls2_c01433{letter-spacing:0.098482px;}
.ls1_c01433{letter-spacing:0.104482px;}
.ls3_c01433{letter-spacing:26.690482px;}
.sc__c01433{text-shadow:none;}
.sc0_c01433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01433{-webkit-text-stroke:0px transparent;}
.sc0_c01433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01433{word-spacing:-33.713438px;}
.ws2_c01433{word-spacing:-26.575517px;}
.wse_c01433{word-spacing:-26.487518px;}
.ws9_c01433{word-spacing:-21.553319px;}
.ws8_c01433{word-spacing:-21.519216px;}
.ws7_c01433{word-spacing:-19.247743px;}
.ws5_c01433{word-spacing:-18.769538px;}
.ws4_c01433{word-spacing:-14.943900px;}
.wsa_c01433{word-spacing:-14.107042px;}
.wsb_c01433{word-spacing:-12.074671px;}
.ws6_c01433{word-spacing:-10.230144px;}
.ws1_c01433{word-spacing:-9.988424px;}
.ws3_c01433{word-spacing:-9.987499px;}
.ws12_c01433{word-spacing:0.000000px;}
.wsf_c01433{word-spacing:0.043999px;}
.ws15_c01433{word-spacing:0.056767px;}
.ws13_c01433{word-spacing:0.073250px;}
.ws14_c01433{word-spacing:0.083734px;}
.wsd_c01433{word-spacing:0.175997px;}
.ws16_c01433{word-spacing:0.202963px;}
.ws10_c01433{word-spacing:0.213446px;}
.ws11_c01433{word-spacing:0.219446px;}
.ws0_c01433{word-spacing:43.038600px;}
._0_c01433{margin-left:-7.833025px;}
._4_c01433{margin-left:-3.825638px;}
._1_c01433{margin-left:-1.549390px;}
._5_c01433{width:1.005737px;}
._2_c01433{width:19.935816px;}
._3_c01433{width:40.109428px;}
._7_c01433{width:53.283031px;}
._6_c01433{width:79.858548px;}
._9_c01433{width:106.698060px;}
._8_c01433{width:133.452408px;}
.fc6_c01433{color:rgb(0,0,207);}
.fc5_c01433{color:rgb(79,153,5);}
.fc3_c01433{color:rgb(33,74,135);}
.fc2_c01433{color:rgb(143,89,3);}
.fc4_c01433{color:rgb(207,92,0);}
.fc1_c01433{color:rgb(6,69,173);}
.fc0_c01433{color:rgb(0,0,0);}
.fs2_c01433{font-size:43.999200px;}
.fs1_c01433{font-size:59.775600px;}
.fs0_c01433{font-size:86.077200px;}
.y0_c01433{bottom:0.000000px;}
.y20_c01433{bottom:44.250000px;}
.y1f_c01433{bottom:86.982000px;}
.y1e_c01433{bottom:119.859000px;}
.y1d_c01433{bottom:136.297500px;}
.y1c_c01433{bottom:152.736000px;}
.y1b_c01433{bottom:169.174500px;}
.y1a_c01433{bottom:185.613000px;}
.y19_c01433{bottom:202.051500px;}
.y18_c01433{bottom:218.490000px;}
.y17_c01433{bottom:234.927000px;}
.y16_c01433{bottom:251.365500px;}
.y15_c01433{bottom:267.804000px;}
.y14_c01433{bottom:284.242500px;}
.y13_c01433{bottom:300.681000px;}
.y12_c01433{bottom:317.119500px;}
.y11_c01433{bottom:333.558000px;}
.y10_c01433{bottom:349.996500px;}
.yf_c01433{bottom:382.873500px;}
.ye_c01433{bottom:415.749000px;}
.yd_c01433{bottom:432.187500px;}
.yc_c01433{bottom:448.252500px;}
.yb_c01433{bottom:493.890000px;}
.ya_c01433{bottom:511.822500px;}
.y9_c01433{bottom:529.756500px;}
.y8_c01433{bottom:547.689000px;}
.y7_c01433{bottom:565.621500px;}
.y6_c01433{bottom:583.554000px;}
.y5_c01433{bottom:610.633500px;}
.y4_c01433{bottom:637.714500px;}
.y3_c01433{bottom:664.794000px;}
.y2_c01433{bottom:691.873500px;}
.y1_c01433{bottom:734.407500px;}
.h5_c01433{height:35.190766px;}
.h6_c01433{height:36.007158px;}
.h3_c01433{height:40.511979px;}
.h4_c01433{height:52.332837px;}
.h2_c01433{height:58.337477px;}
.h0_c01433{height:1262.835000px;}
.h1_c01433{height:1263.000000px;}
.w0_c01433{width:892.920000px;}
.w1_c01433{width:893.250000px;}
.x0_c01433{left:0.000000px;}
.x1_c01433{left:127.558500px;}
.x2_c01433{left:137.122500px;}
.x3_c01433{left:143.770500px;}
.x4_c01433{left:435.249000px;}
@media print{
.v0_c01433{vertical-align:0.000000pt;}
.ls4_c01433{letter-spacing:0.000000pt;}
.ls0_c01433{letter-spacing:0.078221pt;}
.ls2_c01433{letter-spacing:0.087539pt;}
.ls1_c01433{letter-spacing:0.092873pt;}
.ls3_c01433{letter-spacing:23.724873pt;}
.wsc_c01433{word-spacing:-29.967501pt;}
.ws2_c01433{word-spacing:-23.622682pt;}
.wse_c01433{word-spacing:-23.544461pt;}
.ws9_c01433{word-spacing:-19.158506pt;}
.ws8_c01433{word-spacing:-19.128192pt;}
.ws7_c01433{word-spacing:-17.109105pt;}
.ws5_c01433{word-spacing:-16.684034pt;}
.ws4_c01433{word-spacing:-13.283467pt;}
.wsa_c01433{word-spacing:-12.539593pt;}
.wsb_c01433{word-spacing:-10.733041pt;}
.ws6_c01433{word-spacing:-9.093461pt;}
.ws1_c01433{word-spacing:-8.878599pt;}
.ws3_c01433{word-spacing:-8.877777pt;}
.ws12_c01433{word-spacing:0.000000pt;}
.wsf_c01433{word-spacing:0.039110pt;}
.ws15_c01433{word-spacing:0.050460pt;}
.ws13_c01433{word-spacing:0.065111pt;}
.ws14_c01433{word-spacing:0.074430pt;}
.wsd_c01433{word-spacing:0.156442pt;}
.ws16_c01433{word-spacing:0.180412pt;}
.ws10_c01433{word-spacing:0.189730pt;}
.ws11_c01433{word-spacing:0.195063pt;}
.ws0_c01433{word-spacing:38.256533pt;}
._0_c01433{margin-left:-6.962689pt;}
._4_c01433{margin-left:-3.400567pt;}
._1_c01433{margin-left:-1.377235pt;}
._5_c01433{width:0.893988pt;}
._2_c01433{width:17.720725pt;}
._3_c01433{width:35.652825pt;}
._7_c01433{width:47.362694pt;}
._6_c01433{width:70.985376pt;}
._9_c01433{width:94.842720pt;}
._8_c01433{width:118.624363pt;}
.fs2_c01433{font-size:39.110400pt;}
.fs1_c01433{font-size:53.133867pt;}
.fs0_c01433{font-size:76.513067pt;}
.y0_c01433{bottom:0.000000pt;}
.y20_c01433{bottom:39.333333pt;}
.y1f_c01433{bottom:77.317333pt;}
.y1e_c01433{bottom:106.541333pt;}
.y1d_c01433{bottom:121.153333pt;}
.y1c_c01433{bottom:135.765333pt;}
.y1b_c01433{bottom:150.377333pt;}
.y1a_c01433{bottom:164.989333pt;}
.y19_c01433{bottom:179.601333pt;}
.y18_c01433{bottom:194.213333pt;}
.y17_c01433{bottom:208.824000pt;}
.y16_c01433{bottom:223.436000pt;}
.y15_c01433{bottom:238.048000pt;}
.y14_c01433{bottom:252.660000pt;}
.y13_c01433{bottom:267.272000pt;}
.y12_c01433{bottom:281.884000pt;}
.y11_c01433{bottom:296.496000pt;}
.y10_c01433{bottom:311.108000pt;}
.yf_c01433{bottom:340.332000pt;}
.ye_c01433{bottom:369.554667pt;}
.yd_c01433{bottom:384.166667pt;}
.yc_c01433{bottom:398.446667pt;}
.yb_c01433{bottom:439.013333pt;}
.ya_c01433{bottom:454.953333pt;}
.y9_c01433{bottom:470.894667pt;}
.y8_c01433{bottom:486.834667pt;}
.y7_c01433{bottom:502.774667pt;}
.y6_c01433{bottom:518.714667pt;}
.y5_c01433{bottom:542.785333pt;}
.y4_c01433{bottom:566.857333pt;}
.y3_c01433{bottom:590.928000pt;}
.y2_c01433{bottom:614.998667pt;}
.y1_c01433{bottom:652.806667pt;}
.h5_c01433{height:31.280681pt;}
.h6_c01433{height:32.006363pt;}
.h3_c01433{height:36.010648pt;}
.h4_c01433{height:46.518078pt;}
.h2_c01433{height:51.855535pt;}
.h0_c01433{height:1122.520000pt;}
.h1_c01433{height:1122.666667pt;}
.w0_c01433{width:793.706667pt;}
.w1_c01433{width:794.000000pt;}
.x0_c01433{left:0.000000pt;}
.x1_c01433{left:113.385333pt;}
.x2_c01433{left:121.886667pt;}
.x3_c01433{left:127.796000pt;}
.x4_c01433{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01434 {
    display:none;
  }
  .loading-indicator_c01434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01434" -> "#page-container .classname_c01434")
 */
.pf_c01434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01434 {overflow:visible;}
  }
}
.c_c01434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01434:after { /* webkit #35443 */
  content: '';
}
.t_c01434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01434 { /* info for Javascript */
  display:none;
}
.l_c01434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01434:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01434 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01434.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01434;src:url('chunks/assets/font_f3adcbf2645f0a4340770a58.woff2')format("woff");}.ff1_c01434{font-family:ff1_c01434;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01434;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01434{font-family:ff2_c01434;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01434;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01434{font-family:ff3_c01434;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01434;src:url('chunks/assets/font_f1be45bbd551d3f9762a8bbd.woff2')format("woff");}.ff4_c01434{font-family:ff4_c01434;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01434;src:url('chunks/assets/font_0dbcfd4cf79024d33168d75a.woff2')format("woff");}.ff5_c01434{font-family:ff5_c01434;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01434{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01434{vertical-align:0.000000px;}
.ls3_c01434{letter-spacing:0.000000px;}
.ls0_c01434{letter-spacing:0.087998px;}
.ls1_c01434{letter-spacing:0.098482px;}
.ls2_c01434{letter-spacing:0.104482px;}
.sc__c01434{text-shadow:none;}
.sc0_c01434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01434{-webkit-text-stroke:0px transparent;}
.sc0_c01434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01434{word-spacing:-26.575517px;}
.ws2_c01434{word-spacing:-26.487518px;}
.ws11_c01434{word-spacing:-20.503031px;}
.wsb_c01434{word-spacing:-20.383480px;}
.wsc_c01434{word-spacing:-20.323704px;}
.ws10_c01434{word-spacing:-20.084602px;}
.wsf_c01434{word-spacing:-19.128192px;}
.wse_c01434{word-spacing:-19.118113px;}
.ws9_c01434{word-spacing:-18.769538px;}
.wsd_c01434{word-spacing:-16.557841px;}
.ws8_c01434{word-spacing:-14.943900px;}
.wsa_c01434{word-spacing:-10.788144px;}
.ws6_c01434{word-spacing:-9.988424px;}
.ws7_c01434{word-spacing:-9.987499px;}
.ws1_c01434{word-spacing:0.000000px;}
.ws3_c01434{word-spacing:0.043999px;}
.ws4_c01434{word-spacing:0.213446px;}
.ws5_c01434{word-spacing:43.038600px;}
._1_c01434{margin-left:-7.833025px;}
._6_c01434{margin-left:-3.324989px;}
._2_c01434{margin-left:-1.549390px;}
._0_c01434{width:1.041538px;}
._4_c01434{width:18.866645px;}
._3_c01434{width:19.935816px;}
._5_c01434{width:26.420815px;}
.fc5_c01434{color:rgb(0,0,207);}
.fc6_c01434{color:rgb(6,69,173);}
.fc4_c01434{color:rgb(207,92,0);}
.fc3_c01434{color:rgb(79,153,5);}
.fc2_c01434{color:rgb(33,74,135);}
.fc1_c01434{color:rgb(143,89,3);}
.fc0_c01434{color:rgb(0,0,0);}
.fs0_c01434{font-size:43.999200px;}
.fs2_c01434{font-size:59.775600px;}
.fs1_c01434{font-size:86.077200px;}
.y0_c01434{bottom:0.000000px;}
.y20_c01434{bottom:44.250000px;}
.y1f_c01434{bottom:82.051500px;}
.y1e_c01434{bottom:99.984000px;}
.y1d_c01434{bottom:117.916500px;}
.y1c_c01434{bottom:135.849000px;}
.y1b_c01434{bottom:153.781500px;}
.y1a_c01434{bottom:171.714000px;}
.y19_c01434{bottom:199.800000px;}
.y18_c01434{bottom:227.886000px;}
.y17_c01434{bottom:255.972000px;}
.y16_c01434{bottom:284.058000px;}
.y15_c01434{bottom:328.047000px;}
.y14_c01434{bottom:798.219000px;}
.y13_c01434{bottom:814.657500px;}
.y12_c01434{bottom:831.096000px;}
.y11_c01434{bottom:847.534500px;}
.y10_c01434{bottom:863.973000px;}
.yf_c01434{bottom:880.411500px;}
.ye_c01434{bottom:896.848500px;}
.yd_c01434{bottom:913.287000px;}
.yc_c01434{bottom:929.725500px;}
.yb_c01434{bottom:946.164000px;}
.ya_c01434{bottom:962.602500px;}
.y9_c01434{bottom:995.479500px;}
.y8_c01434{bottom:1011.918000px;}
.y7_c01434{bottom:1028.356500px;}
.y6_c01434{bottom:1061.232000px;}
.y5_c01434{bottom:1077.670500px;}
.y4_c01434{bottom:1094.109000px;}
.y3_c01434{bottom:1110.547500px;}
.y2_c01434{bottom:1126.986000px;}
.y1_c01434{bottom:1143.424500px;}
.h3_c01434{height:35.190766px;}
.h2_c01434{height:36.007158px;}
.h5_c01434{height:40.511979px;}
.h6_c01434{height:52.332837px;}
.h4_c01434{height:58.337477px;}
.h0_c01434{height:1262.835000px;}
.h1_c01434{height:1263.000000px;}
.w0_c01434{width:892.920000px;}
.w1_c01434{width:893.250000px;}
.x0_c01434{left:0.000000px;}
.x3_c01434{left:127.558500px;}
.x1_c01434{left:137.122500px;}
.x2_c01434{left:177.007500px;}
.x4_c01434{left:435.249000px;}
@media print{
.v0_c01434{vertical-align:0.000000pt;}
.ls3_c01434{letter-spacing:0.000000pt;}
.ls0_c01434{letter-spacing:0.078221pt;}
.ls1_c01434{letter-spacing:0.087539pt;}
.ls2_c01434{letter-spacing:0.092873pt;}
.ws0_c01434{word-spacing:-23.622682pt;}
.ws2_c01434{word-spacing:-23.544461pt;}
.ws11_c01434{word-spacing:-18.224916pt;}
.wsb_c01434{word-spacing:-18.118649pt;}
.wsc_c01434{word-spacing:-18.065515pt;}
.ws10_c01434{word-spacing:-17.852979pt;}
.wsf_c01434{word-spacing:-17.002837pt;}
.wse_c01434{word-spacing:-16.993878pt;}
.ws9_c01434{word-spacing:-16.684034pt;}
.wsd_c01434{word-spacing:-14.718081pt;}
.ws8_c01434{word-spacing:-13.283467pt;}
.wsa_c01434{word-spacing:-9.589461pt;}
.ws6_c01434{word-spacing:-8.878599pt;}
.ws7_c01434{word-spacing:-8.877777pt;}
.ws1_c01434{word-spacing:0.000000pt;}
.ws3_c01434{word-spacing:0.039110pt;}
.ws4_c01434{word-spacing:0.189730pt;}
.ws5_c01434{word-spacing:38.256533pt;}
._1_c01434{margin-left:-6.962689pt;}
._6_c01434{margin-left:-2.955546pt;}
._2_c01434{margin-left:-1.377235pt;}
._0_c01434{width:0.925811pt;}
._4_c01434{width:16.770351pt;}
._3_c01434{width:17.720725pt;}
._5_c01434{width:23.485169pt;}
.fs0_c01434{font-size:39.110400pt;}
.fs2_c01434{font-size:53.133867pt;}
.fs1_c01434{font-size:76.513067pt;}
.y0_c01434{bottom:0.000000pt;}
.y20_c01434{bottom:39.333333pt;}
.y1f_c01434{bottom:72.934667pt;}
.y1e_c01434{bottom:88.874667pt;}
.y1d_c01434{bottom:104.814667pt;}
.y1c_c01434{bottom:120.754667pt;}
.y1b_c01434{bottom:136.694667pt;}
.y1a_c01434{bottom:152.634667pt;}
.y19_c01434{bottom:177.600000pt;}
.y18_c01434{bottom:202.565333pt;}
.y17_c01434{bottom:227.530667pt;}
.y16_c01434{bottom:252.496000pt;}
.y15_c01434{bottom:291.597333pt;}
.y14_c01434{bottom:709.528000pt;}
.y13_c01434{bottom:724.140000pt;}
.y12_c01434{bottom:738.752000pt;}
.y11_c01434{bottom:753.364000pt;}
.y10_c01434{bottom:767.976000pt;}
.yf_c01434{bottom:782.588000pt;}
.ye_c01434{bottom:797.198667pt;}
.yd_c01434{bottom:811.810667pt;}
.yc_c01434{bottom:826.422667pt;}
.yb_c01434{bottom:841.034667pt;}
.ya_c01434{bottom:855.646667pt;}
.y9_c01434{bottom:884.870667pt;}
.y8_c01434{bottom:899.482667pt;}
.y7_c01434{bottom:914.094667pt;}
.y6_c01434{bottom:943.317333pt;}
.y5_c01434{bottom:957.929333pt;}
.y4_c01434{bottom:972.541333pt;}
.y3_c01434{bottom:987.153333pt;}
.y2_c01434{bottom:1001.765333pt;}
.y1_c01434{bottom:1016.377333pt;}
.h3_c01434{height:31.280681pt;}
.h2_c01434{height:32.006363pt;}
.h5_c01434{height:36.010648pt;}
.h6_c01434{height:46.518078pt;}
.h4_c01434{height:51.855535pt;}
.h0_c01434{height:1122.520000pt;}
.h1_c01434{height:1122.666667pt;}
.w0_c01434{width:793.706667pt;}
.w1_c01434{width:794.000000pt;}
.x0_c01434{left:0.000000pt;}
.x3_c01434{left:113.385333pt;}
.x1_c01434{left:121.886667pt;}
.x2_c01434{left:157.340000pt;}
.x4_c01434{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01435 {
    display:none;
  }
  .loading-indicator_c01435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01435" -> "#page-container .classname_c01435")
 */
.pf_c01435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01435 {overflow:visible;}
  }
}
.c_c01435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01435:after { /* webkit #35443 */
  content: '';
}
.t_c01435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01435 { /* info for Javascript */
  display:none;
}
.l_c01435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01435:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01435 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01435.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01435;src:url('chunks/assets/font_13b846b92cd56b7b71ec19f9.woff2')format("woff");}.ff1_c01435{font-family:ff1_c01435;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01435;src:url('chunks/assets/font_0402b8f2210f1cea0bfe8c03.woff2')format("woff");}.ff2_c01435{font-family:ff2_c01435;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01435;src:url('chunks/assets/font_c26171507be627157695bdbf.woff2')format("woff");}.ff3_c01435{font-family:ff3_c01435;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01435;src:url('chunks/assets/font_43f31bd7769242398829cee2.woff2')format("woff");}.ff4_c01435{font-family:ff4_c01435;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01435{vertical-align:0.000000px;}
.ls3_c01435{letter-spacing:0.000000px;}
.ls1_c01435{letter-spacing:0.087998px;}
.ls2_c01435{letter-spacing:0.098482px;}
.ls0_c01435{letter-spacing:0.104482px;}
.sc__c01435{text-shadow:none;}
.sc0_c01435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01435{-webkit-text-stroke:0px transparent;}
.sc0_c01435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01435{word-spacing:-26.575517px;}
.ws1_c01435{word-spacing:-26.487518px;}
.ws6_c01435{word-spacing:0.000000px;}
.ws3_c01435{word-spacing:0.043999px;}
.ws0_c01435{word-spacing:0.175997px;}
.ws4_c01435{word-spacing:0.213446px;}
.ws5_c01435{word-spacing:0.219446px;}
._0_c01435{width:1.005737px;}
.fc5_c01435{color:rgb(0,0,207);}
.fc4_c01435{color:rgb(79,153,5);}
.fc3_c01435{color:rgb(207,92,0);}
.fc2_c01435{color:rgb(0,0,0);}
.fc1_c01435{color:rgb(33,74,135);}
.fc0_c01435{color:rgb(143,89,3);}
.fs0_c01435{font-size:43.999200px;}
.fs1_c01435{font-size:59.775600px;}
.y0_c01435{bottom:0.000000px;}
.y24_c01435{bottom:44.250000px;}
.y23_c01435{bottom:449.352000px;}
.y22_c01435{bottom:465.790500px;}
.y21_c01435{bottom:482.229000px;}
.y20_c01435{bottom:498.667500px;}
.y1f_c01435{bottom:515.106000px;}
.y1e_c01435{bottom:531.544500px;}
.y1d_c01435{bottom:547.983000px;}
.y1c_c01435{bottom:564.421500px;}
.y1b_c01435{bottom:580.858500px;}
.y1a_c01435{bottom:597.297000px;}
.y19_c01435{bottom:613.735500px;}
.y18_c01435{bottom:646.612500px;}
.y17_c01435{bottom:663.051000px;}
.y16_c01435{bottom:679.489500px;}
.y15_c01435{bottom:712.366500px;}
.y14_c01435{bottom:728.805000px;}
.y13_c01435{bottom:745.243500px;}
.y12_c01435{bottom:761.680500px;}
.y11_c01435{bottom:778.119000px;}
.y10_c01435{bottom:794.557500px;}
.yf_c01435{bottom:810.996000px;}
.ye_c01435{bottom:827.434500px;}
.yd_c01435{bottom:843.873000px;}
.yc_c01435{bottom:876.750000px;}
.yb_c01435{bottom:893.188500px;}
.ya_c01435{bottom:926.064000px;}
.y9_c01435{bottom:958.941000px;}
.y8_c01435{bottom:991.818000px;}
.y7_c01435{bottom:1008.256500px;}
.y6_c01435{bottom:1041.133500px;}
.y5_c01435{bottom:1057.572000px;}
.y4_c01435{bottom:1074.010500px;}
.y3_c01435{bottom:1106.886000px;}
.y2_c01435{bottom:1123.324500px;}
.y1_c01435{bottom:1139.389500px;}
.h2_c01435{height:35.190766px;}
.h3_c01435{height:36.007158px;}
.h4_c01435{height:52.332837px;}
.h0_c01435{height:1262.835000px;}
.h1_c01435{height:1263.000000px;}
.w0_c01435{width:892.920000px;}
.w1_c01435{width:893.250000px;}
.x0_c01435{left:0.000000px;}
.x1_c01435{left:137.122500px;}
.x2_c01435{left:170.359500px;}
.x3_c01435{left:177.007500px;}
.x4_c01435{left:435.249000px;}
@media print{
.v0_c01435{vertical-align:0.000000pt;}
.ls3_c01435{letter-spacing:0.000000pt;}
.ls1_c01435{letter-spacing:0.078221pt;}
.ls2_c01435{letter-spacing:0.087539pt;}
.ls0_c01435{letter-spacing:0.092873pt;}
.ws2_c01435{word-spacing:-23.622682pt;}
.ws1_c01435{word-spacing:-23.544461pt;}
.ws6_c01435{word-spacing:0.000000pt;}
.ws3_c01435{word-spacing:0.039110pt;}
.ws0_c01435{word-spacing:0.156442pt;}
.ws4_c01435{word-spacing:0.189730pt;}
.ws5_c01435{word-spacing:0.195063pt;}
._0_c01435{width:0.893988pt;}
.fs0_c01435{font-size:39.110400pt;}
.fs1_c01435{font-size:53.133867pt;}
.y0_c01435{bottom:0.000000pt;}
.y24_c01435{bottom:39.333333pt;}
.y23_c01435{bottom:399.424000pt;}
.y22_c01435{bottom:414.036000pt;}
.y21_c01435{bottom:428.648000pt;}
.y20_c01435{bottom:443.260000pt;}
.y1f_c01435{bottom:457.872000pt;}
.y1e_c01435{bottom:472.484000pt;}
.y1d_c01435{bottom:487.096000pt;}
.y1c_c01435{bottom:501.708000pt;}
.y1b_c01435{bottom:516.318667pt;}
.y1a_c01435{bottom:530.930667pt;}
.y19_c01435{bottom:545.542667pt;}
.y18_c01435{bottom:574.766667pt;}
.y17_c01435{bottom:589.378667pt;}
.y16_c01435{bottom:603.990667pt;}
.y15_c01435{bottom:633.214667pt;}
.y14_c01435{bottom:647.826667pt;}
.y13_c01435{bottom:662.438667pt;}
.y12_c01435{bottom:677.049333pt;}
.y11_c01435{bottom:691.661333pt;}
.y10_c01435{bottom:706.273333pt;}
.yf_c01435{bottom:720.885333pt;}
.ye_c01435{bottom:735.497333pt;}
.yd_c01435{bottom:750.109333pt;}
.yc_c01435{bottom:779.333333pt;}
.yb_c01435{bottom:793.945333pt;}
.ya_c01435{bottom:823.168000pt;}
.y9_c01435{bottom:852.392000pt;}
.y8_c01435{bottom:881.616000pt;}
.y7_c01435{bottom:896.228000pt;}
.y6_c01435{bottom:925.452000pt;}
.y5_c01435{bottom:940.064000pt;}
.y4_c01435{bottom:954.676000pt;}
.y3_c01435{bottom:983.898667pt;}
.y2_c01435{bottom:998.510667pt;}
.y1_c01435{bottom:1012.790667pt;}
.h2_c01435{height:31.280681pt;}
.h3_c01435{height:32.006363pt;}
.h4_c01435{height:46.518078pt;}
.h0_c01435{height:1122.520000pt;}
.h1_c01435{height:1122.666667pt;}
.w0_c01435{width:793.706667pt;}
.w1_c01435{width:794.000000pt;}
.x0_c01435{left:0.000000pt;}
.x1_c01435{left:121.886667pt;}
.x2_c01435{left:151.430667pt;}
.x3_c01435{left:157.340000pt;}
.x4_c01435{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01436 {
    display:none;
  }
  .loading-indicator_c01436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01436 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01436 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01436" -> "#page-container .classname_c01436")
 */
.pf_c01436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01436 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01436 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01436 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01436 {overflow:visible;}
  }
}
.c_c01436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01436 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01436:after { /* webkit #35443 */
  content: '';
}
.t_c01436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01436 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01436 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01436 { /* info for Javascript */
  display:none;
}
.l_c01436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01436:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01436 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01436.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01436;src:url('chunks/assets/font_5fa65d92d92c9c6600cb342e.woff2')format("woff");}.ff1_c01436{font-family:ff1_c01436;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01436;src:url('chunks/assets/font_227cc1adca70b58cf686ca96.woff2')format("woff");}.ff2_c01436{font-family:ff2_c01436;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01436;src:url('chunks/assets/font_e0127afe12650e4938ea0a08.woff2')format("woff");}.ff3_c01436{font-family:ff3_c01436;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01436;src:url('chunks/assets/font_11401d4f9d8b0f7cb8e61087.woff2')format("woff");}.ff4_c01436{font-family:ff4_c01436;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01436;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01436{font-family:ff5_c01436;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01436{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01436{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01436{vertical-align:0.000000px;}
.ls4_c01436{letter-spacing:0.000000px;}
.ls0_c01436{letter-spacing:0.087998px;}
.ls2_c01436{letter-spacing:0.098482px;}
.ls1_c01436{letter-spacing:0.104482px;}
.ls3_c01436{letter-spacing:26.690482px;}
.sc__c01436{text-shadow:none;}
.sc0_c01436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01436{-webkit-text-stroke:0px transparent;}
.sc0_c01436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01436{word-spacing:-33.713438px;}
.ws2_c01436{word-spacing:-26.575517px;}
.wse_c01436{word-spacing:-26.487518px;}
.ws9_c01436{word-spacing:-21.553319px;}
.ws8_c01436{word-spacing:-21.519216px;}
.ws5_c01436{word-spacing:-18.769538px;}
.ws7_c01436{word-spacing:-16.019861px;}
.ws4_c01436{word-spacing:-14.943900px;}
.wsa_c01436{word-spacing:-14.107042px;}
.wsb_c01436{word-spacing:-12.074671px;}
.ws1_c01436{word-spacing:-9.988424px;}
.ws3_c01436{word-spacing:-9.987499px;}
.ws6_c01436{word-spacing:-4.536144px;}
.ws12_c01436{word-spacing:0.000000px;}
.wsf_c01436{word-spacing:0.043999px;}
.ws15_c01436{word-spacing:0.056767px;}
.ws13_c01436{word-spacing:0.073250px;}
.ws14_c01436{word-spacing:0.083734px;}
.wsd_c01436{word-spacing:0.175997px;}
.ws16_c01436{word-spacing:0.202963px;}
.ws10_c01436{word-spacing:0.213446px;}
.ws11_c01436{word-spacing:0.219446px;}
.ws0_c01436{word-spacing:43.038600px;}
._0_c01436{margin-left:-7.833025px;}
._4_c01436{margin-left:-3.825638px;}
._1_c01436{margin-left:-1.549390px;}
._5_c01436{width:1.005737px;}
._2_c01436{width:19.935816px;}
._3_c01436{width:40.109428px;}
._7_c01436{width:53.283031px;}
._6_c01436{width:79.858548px;}
._8_c01436{width:133.452408px;}
.fc6_c01436{color:rgb(0,0,207);}
.fc5_c01436{color:rgb(79,153,5);}
.fc3_c01436{color:rgb(33,74,135);}
.fc2_c01436{color:rgb(143,89,3);}
.fc4_c01436{color:rgb(207,92,0);}
.fc1_c01436{color:rgb(6,69,173);}
.fc0_c01436{color:rgb(0,0,0);}
.fs2_c01436{font-size:43.999200px;}
.fs1_c01436{font-size:59.775600px;}
.fs0_c01436{font-size:86.077200px;}
.y0_c01436{bottom:0.000000px;}
.y20_c01436{bottom:44.250000px;}
.y1f_c01436{bottom:86.982000px;}
.y1e_c01436{bottom:119.859000px;}
.y1d_c01436{bottom:136.297500px;}
.y1c_c01436{bottom:152.736000px;}
.y1b_c01436{bottom:169.174500px;}
.y1a_c01436{bottom:185.613000px;}
.y19_c01436{bottom:202.051500px;}
.y18_c01436{bottom:218.490000px;}
.y17_c01436{bottom:234.927000px;}
.y16_c01436{bottom:251.365500px;}
.y15_c01436{bottom:267.804000px;}
.y14_c01436{bottom:284.242500px;}
.y13_c01436{bottom:300.681000px;}
.y12_c01436{bottom:317.119500px;}
.y11_c01436{bottom:333.558000px;}
.y10_c01436{bottom:349.996500px;}
.yf_c01436{bottom:382.873500px;}
.ye_c01436{bottom:415.749000px;}
.yd_c01436{bottom:432.187500px;}
.yc_c01436{bottom:448.252500px;}
.yb_c01436{bottom:493.890000px;}
.ya_c01436{bottom:511.822500px;}
.y9_c01436{bottom:529.756500px;}
.y8_c01436{bottom:547.689000px;}
.y7_c01436{bottom:565.621500px;}
.y6_c01436{bottom:583.554000px;}
.y5_c01436{bottom:610.633500px;}
.y4_c01436{bottom:637.714500px;}
.y3_c01436{bottom:664.794000px;}
.y2_c01436{bottom:691.873500px;}
.y1_c01436{bottom:734.407500px;}
.h5_c01436{height:35.190766px;}
.h6_c01436{height:36.007158px;}
.h3_c01436{height:40.511979px;}
.h4_c01436{height:52.332837px;}
.h2_c01436{height:58.337477px;}
.h0_c01436{height:1262.835000px;}
.h1_c01436{height:1263.000000px;}
.w0_c01436{width:892.920000px;}
.w1_c01436{width:893.250000px;}
.x0_c01436{left:0.000000px;}
.x1_c01436{left:127.558500px;}
.x2_c01436{left:137.122500px;}
.x3_c01436{left:143.770500px;}
.x4_c01436{left:435.249000px;}
@media print{
.v0_c01436{vertical-align:0.000000pt;}
.ls4_c01436{letter-spacing:0.000000pt;}
.ls0_c01436{letter-spacing:0.078221pt;}
.ls2_c01436{letter-spacing:0.087539pt;}
.ls1_c01436{letter-spacing:0.092873pt;}
.ls3_c01436{letter-spacing:23.724873pt;}
.wsc_c01436{word-spacing:-29.967501pt;}
.ws2_c01436{word-spacing:-23.622682pt;}
.wse_c01436{word-spacing:-23.544461pt;}
.ws9_c01436{word-spacing:-19.158506pt;}
.ws8_c01436{word-spacing:-19.128192pt;}
.ws5_c01436{word-spacing:-16.684034pt;}
.ws7_c01436{word-spacing:-14.239876pt;}
.ws4_c01436{word-spacing:-13.283467pt;}
.wsa_c01436{word-spacing:-12.539593pt;}
.wsb_c01436{word-spacing:-10.733041pt;}
.ws1_c01436{word-spacing:-8.878599pt;}
.ws3_c01436{word-spacing:-8.877777pt;}
.ws6_c01436{word-spacing:-4.032128pt;}
.ws12_c01436{word-spacing:0.000000pt;}
.wsf_c01436{word-spacing:0.039110pt;}
.ws15_c01436{word-spacing:0.050460pt;}
.ws13_c01436{word-spacing:0.065111pt;}
.ws14_c01436{word-spacing:0.074430pt;}
.wsd_c01436{word-spacing:0.156442pt;}
.ws16_c01436{word-spacing:0.180412pt;}
.ws10_c01436{word-spacing:0.189730pt;}
.ws11_c01436{word-spacing:0.195063pt;}
.ws0_c01436{word-spacing:38.256533pt;}
._0_c01436{margin-left:-6.962689pt;}
._4_c01436{margin-left:-3.400567pt;}
._1_c01436{margin-left:-1.377235pt;}
._5_c01436{width:0.893988pt;}
._2_c01436{width:17.720725pt;}
._3_c01436{width:35.652825pt;}
._7_c01436{width:47.362694pt;}
._6_c01436{width:70.985376pt;}
._8_c01436{width:118.624363pt;}
.fs2_c01436{font-size:39.110400pt;}
.fs1_c01436{font-size:53.133867pt;}
.fs0_c01436{font-size:76.513067pt;}
.y0_c01436{bottom:0.000000pt;}
.y20_c01436{bottom:39.333333pt;}
.y1f_c01436{bottom:77.317333pt;}
.y1e_c01436{bottom:106.541333pt;}
.y1d_c01436{bottom:121.153333pt;}
.y1c_c01436{bottom:135.765333pt;}
.y1b_c01436{bottom:150.377333pt;}
.y1a_c01436{bottom:164.989333pt;}
.y19_c01436{bottom:179.601333pt;}
.y18_c01436{bottom:194.213333pt;}
.y17_c01436{bottom:208.824000pt;}
.y16_c01436{bottom:223.436000pt;}
.y15_c01436{bottom:238.048000pt;}
.y14_c01436{bottom:252.660000pt;}
.y13_c01436{bottom:267.272000pt;}
.y12_c01436{bottom:281.884000pt;}
.y11_c01436{bottom:296.496000pt;}
.y10_c01436{bottom:311.108000pt;}
.yf_c01436{bottom:340.332000pt;}
.ye_c01436{bottom:369.554667pt;}
.yd_c01436{bottom:384.166667pt;}
.yc_c01436{bottom:398.446667pt;}
.yb_c01436{bottom:439.013333pt;}
.ya_c01436{bottom:454.953333pt;}
.y9_c01436{bottom:470.894667pt;}
.y8_c01436{bottom:486.834667pt;}
.y7_c01436{bottom:502.774667pt;}
.y6_c01436{bottom:518.714667pt;}
.y5_c01436{bottom:542.785333pt;}
.y4_c01436{bottom:566.857333pt;}
.y3_c01436{bottom:590.928000pt;}
.y2_c01436{bottom:614.998667pt;}
.y1_c01436{bottom:652.806667pt;}
.h5_c01436{height:31.280681pt;}
.h6_c01436{height:32.006363pt;}
.h3_c01436{height:36.010648pt;}
.h4_c01436{height:46.518078pt;}
.h2_c01436{height:51.855535pt;}
.h0_c01436{height:1122.520000pt;}
.h1_c01436{height:1122.666667pt;}
.w0_c01436{width:793.706667pt;}
.w1_c01436{width:794.000000pt;}
.x0_c01436{left:0.000000pt;}
.x1_c01436{left:113.385333pt;}
.x2_c01436{left:121.886667pt;}
.x3_c01436{left:127.796000pt;}
.x4_c01436{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01437 {
    display:none;
  }
  .loading-indicator_c01437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01437 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01437 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01437" -> "#page-container .classname_c01437")
 */
.pf_c01437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01437 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01437 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01437 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01437 {overflow:visible;}
  }
}
.c_c01437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01437 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01437:after { /* webkit #35443 */
  content: '';
}
.t_c01437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01437 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01437 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01437 { /* info for Javascript */
  display:none;
}
.l_c01437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01437:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01437 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01437.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01437;src:url('chunks/assets/font_ad28983d24906158bcdbaf17.woff2')format("woff");}.ff1_c01437{font-family:ff1_c01437;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01437;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01437{font-family:ff2_c01437;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01437;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01437{font-family:ff3_c01437;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01437;src:url('chunks/assets/font_2b15f9517004d681a34dc216.woff2')format("woff");}.ff4_c01437{font-family:ff4_c01437;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01437;src:url('chunks/assets/font_e54ce438afca98ea416beaf1.woff2')format("woff");}.ff5_c01437{font-family:ff5_c01437;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01437{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01437{vertical-align:0.000000px;}
.ls3_c01437{letter-spacing:0.000000px;}
.ls0_c01437{letter-spacing:0.087998px;}
.ls1_c01437{letter-spacing:0.098482px;}
.ls2_c01437{letter-spacing:0.104482px;}
.sc__c01437{text-shadow:none;}
.sc0_c01437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01437{-webkit-text-stroke:0px transparent;}
.sc0_c01437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01437{word-spacing:-33.713438px;}
.ws0_c01437{word-spacing:-26.575517px;}
.ws2_c01437{word-spacing:-26.487518px;}
.wsd_c01437{word-spacing:-21.553319px;}
.wsc_c01437{word-spacing:-21.519216px;}
.ws9_c01437{word-spacing:-18.769538px;}
.wsb_c01437{word-spacing:-17.633802px;}
.ws8_c01437{word-spacing:-14.943900px;}
.wse_c01437{word-spacing:-14.107042px;}
.wsf_c01437{word-spacing:-12.074671px;}
.ws6_c01437{word-spacing:-9.988424px;}
.ws7_c01437{word-spacing:-9.987499px;}
.wsa_c01437{word-spacing:-7.686144px;}
.ws1_c01437{word-spacing:0.000000px;}
.ws3_c01437{word-spacing:0.043999px;}
.ws4_c01437{word-spacing:0.213446px;}
.ws5_c01437{word-spacing:43.038600px;}
._1_c01437{margin-left:-7.833025px;}
._5_c01437{margin-left:-3.825638px;}
._2_c01437{margin-left:-1.549390px;}
._0_c01437{width:1.041538px;}
._3_c01437{width:19.935816px;}
._4_c01437{width:40.109428px;}
.fc5_c01437{color:rgb(0,0,207);}
.fc6_c01437{color:rgb(6,69,173);}
.fc4_c01437{color:rgb(207,92,0);}
.fc3_c01437{color:rgb(79,153,5);}
.fc2_c01437{color:rgb(33,74,135);}
.fc1_c01437{color:rgb(143,89,3);}
.fc0_c01437{color:rgb(0,0,0);}
.fs0_c01437{font-size:43.999200px;}
.fs2_c01437{font-size:59.775600px;}
.fs1_c01437{font-size:86.077200px;}
.y0_c01437{bottom:0.000000px;}
.y20_c01437{bottom:44.250000px;}
.y1f_c01437{bottom:82.051500px;}
.y1e_c01437{bottom:99.984000px;}
.y1d_c01437{bottom:117.916500px;}
.y1c_c01437{bottom:135.849000px;}
.y1b_c01437{bottom:153.781500px;}
.y1a_c01437{bottom:171.714000px;}
.y19_c01437{bottom:199.800000px;}
.y18_c01437{bottom:227.886000px;}
.y17_c01437{bottom:255.972000px;}
.y16_c01437{bottom:284.058000px;}
.y15_c01437{bottom:328.047000px;}
.y14_c01437{bottom:798.219000px;}
.y13_c01437{bottom:814.657500px;}
.y12_c01437{bottom:831.096000px;}
.y11_c01437{bottom:847.534500px;}
.y10_c01437{bottom:863.973000px;}
.yf_c01437{bottom:880.411500px;}
.ye_c01437{bottom:896.848500px;}
.yd_c01437{bottom:913.287000px;}
.yc_c01437{bottom:929.725500px;}
.yb_c01437{bottom:946.164000px;}
.ya_c01437{bottom:962.602500px;}
.y9_c01437{bottom:995.479500px;}
.y8_c01437{bottom:1011.918000px;}
.y7_c01437{bottom:1028.356500px;}
.y6_c01437{bottom:1061.232000px;}
.y5_c01437{bottom:1077.670500px;}
.y4_c01437{bottom:1094.109000px;}
.y3_c01437{bottom:1110.547500px;}
.y2_c01437{bottom:1126.986000px;}
.y1_c01437{bottom:1143.424500px;}
.h3_c01437{height:35.190766px;}
.h2_c01437{height:36.007158px;}
.h5_c01437{height:40.511979px;}
.h6_c01437{height:52.332837px;}
.h4_c01437{height:58.337477px;}
.h0_c01437{height:1262.835000px;}
.h1_c01437{height:1263.000000px;}
.w0_c01437{width:892.920000px;}
.w1_c01437{width:893.250000px;}
.x0_c01437{left:0.000000px;}
.x3_c01437{left:127.558500px;}
.x1_c01437{left:137.122500px;}
.x2_c01437{left:177.007500px;}
.x4_c01437{left:435.249000px;}
@media print{
.v0_c01437{vertical-align:0.000000pt;}
.ls3_c01437{letter-spacing:0.000000pt;}
.ls0_c01437{letter-spacing:0.078221pt;}
.ls1_c01437{letter-spacing:0.087539pt;}
.ls2_c01437{letter-spacing:0.092873pt;}
.ws10_c01437{word-spacing:-29.967501pt;}
.ws0_c01437{word-spacing:-23.622682pt;}
.ws2_c01437{word-spacing:-23.544461pt;}
.wsd_c01437{word-spacing:-19.158506pt;}
.wsc_c01437{word-spacing:-19.128192pt;}
.ws9_c01437{word-spacing:-16.684034pt;}
.wsb_c01437{word-spacing:-15.674491pt;}
.ws8_c01437{word-spacing:-13.283467pt;}
.wse_c01437{word-spacing:-12.539593pt;}
.wsf_c01437{word-spacing:-10.733041pt;}
.ws6_c01437{word-spacing:-8.878599pt;}
.ws7_c01437{word-spacing:-8.877777pt;}
.wsa_c01437{word-spacing:-6.832128pt;}
.ws1_c01437{word-spacing:0.000000pt;}
.ws3_c01437{word-spacing:0.039110pt;}
.ws4_c01437{word-spacing:0.189730pt;}
.ws5_c01437{word-spacing:38.256533pt;}
._1_c01437{margin-left:-6.962689pt;}
._5_c01437{margin-left:-3.400567pt;}
._2_c01437{margin-left:-1.377235pt;}
._0_c01437{width:0.925811pt;}
._3_c01437{width:17.720725pt;}
._4_c01437{width:35.652825pt;}
.fs0_c01437{font-size:39.110400pt;}
.fs2_c01437{font-size:53.133867pt;}
.fs1_c01437{font-size:76.513067pt;}
.y0_c01437{bottom:0.000000pt;}
.y20_c01437{bottom:39.333333pt;}
.y1f_c01437{bottom:72.934667pt;}
.y1e_c01437{bottom:88.874667pt;}
.y1d_c01437{bottom:104.814667pt;}
.y1c_c01437{bottom:120.754667pt;}
.y1b_c01437{bottom:136.694667pt;}
.y1a_c01437{bottom:152.634667pt;}
.y19_c01437{bottom:177.600000pt;}
.y18_c01437{bottom:202.565333pt;}
.y17_c01437{bottom:227.530667pt;}
.y16_c01437{bottom:252.496000pt;}
.y15_c01437{bottom:291.597333pt;}
.y14_c01437{bottom:709.528000pt;}
.y13_c01437{bottom:724.140000pt;}
.y12_c01437{bottom:738.752000pt;}
.y11_c01437{bottom:753.364000pt;}
.y10_c01437{bottom:767.976000pt;}
.yf_c01437{bottom:782.588000pt;}
.ye_c01437{bottom:797.198667pt;}
.yd_c01437{bottom:811.810667pt;}
.yc_c01437{bottom:826.422667pt;}
.yb_c01437{bottom:841.034667pt;}
.ya_c01437{bottom:855.646667pt;}
.y9_c01437{bottom:884.870667pt;}
.y8_c01437{bottom:899.482667pt;}
.y7_c01437{bottom:914.094667pt;}
.y6_c01437{bottom:943.317333pt;}
.y5_c01437{bottom:957.929333pt;}
.y4_c01437{bottom:972.541333pt;}
.y3_c01437{bottom:987.153333pt;}
.y2_c01437{bottom:1001.765333pt;}
.y1_c01437{bottom:1016.377333pt;}
.h3_c01437{height:31.280681pt;}
.h2_c01437{height:32.006363pt;}
.h5_c01437{height:36.010648pt;}
.h6_c01437{height:46.518078pt;}
.h4_c01437{height:51.855535pt;}
.h0_c01437{height:1122.520000pt;}
.h1_c01437{height:1122.666667pt;}
.w0_c01437{width:793.706667pt;}
.w1_c01437{width:794.000000pt;}
.x0_c01437{left:0.000000pt;}
.x3_c01437{left:113.385333pt;}
.x1_c01437{left:121.886667pt;}
.x2_c01437{left:157.340000pt;}
.x4_c01437{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01438 {
    display:none;
  }
  .loading-indicator_c01438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01438 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01438 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01438" -> "#page-container .classname_c01438")
 */
.pf_c01438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01438 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01438 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01438 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01438 {overflow:visible;}
  }
}
.c_c01438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01438 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01438:after { /* webkit #35443 */
  content: '';
}
.t_c01438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01438 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01438 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01438 { /* info for Javascript */
  display:none;
}
.l_c01438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01438:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01438 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01438.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01438;src:url('chunks/assets/font_be11ddd8d271df4c4e2e5e18.woff2')format("woff");}.ff1_c01438{font-family:ff1_c01438;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01438;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01438{font-family:ff2_c01438;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01438;src:url('chunks/assets/font_fa7e2da395db82ce2c0ebb34.woff2')format("woff");}.ff3_c01438{font-family:ff3_c01438;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01438;src:url('chunks/assets/font_c44ed847fd156bde30bcf347.woff2')format("woff");}.ff4_c01438{font-family:ff4_c01438;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01438{vertical-align:0.000000px;}
.ls4_c01438{letter-spacing:0.000000px;}
.ls1_c01438{letter-spacing:0.087998px;}
.ls2_c01438{letter-spacing:0.098482px;}
.ls0_c01438{letter-spacing:0.104482px;}
.ls3_c01438{letter-spacing:26.690482px;}
.sc__c01438{text-shadow:none;}
.sc0_c01438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01438{-webkit-text-stroke:0px transparent;}
.sc0_c01438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01438{word-spacing:-26.575517px;}
.ws1_c01438{word-spacing:-26.487518px;}
.ws6_c01438{word-spacing:0.000000px;}
.ws3_c01438{word-spacing:0.043999px;}
.ws9_c01438{word-spacing:0.056767px;}
.ws7_c01438{word-spacing:0.073250px;}
.ws8_c01438{word-spacing:0.083734px;}
.ws0_c01438{word-spacing:0.175997px;}
.wsa_c01438{word-spacing:0.202963px;}
.ws4_c01438{word-spacing:0.213446px;}
.ws5_c01438{word-spacing:0.219446px;}
._0_c01438{width:1.005737px;}
._2_c01438{width:53.283031px;}
._1_c01438{width:79.858548px;}
._4_c01438{width:106.654061px;}
._3_c01438{width:133.452408px;}
.fc5_c01438{color:rgb(0,0,207);}
.fc4_c01438{color:rgb(79,153,5);}
.fc3_c01438{color:rgb(207,92,0);}
.fc2_c01438{color:rgb(0,0,0);}
.fc1_c01438{color:rgb(33,74,135);}
.fc0_c01438{color:rgb(143,89,3);}
.fs0_c01438{font-size:43.999200px;}
.fs1_c01438{font-size:59.775600px;}
.y0_c01438{bottom:0.000000px;}
.y29_c01438{bottom:44.250000px;}
.y28_c01438{bottom:400.038000px;}
.y27_c01438{bottom:416.475000px;}
.y26_c01438{bottom:432.913500px;}
.y25_c01438{bottom:449.352000px;}
.y24_c01438{bottom:465.790500px;}
.y23_c01438{bottom:482.229000px;}
.y22_c01438{bottom:498.667500px;}
.y21_c01438{bottom:515.106000px;}
.y20_c01438{bottom:531.544500px;}
.y1f_c01438{bottom:547.983000px;}
.y1e_c01438{bottom:564.421500px;}
.y1d_c01438{bottom:597.297000px;}
.y1c_c01438{bottom:613.735500px;}
.y1b_c01438{bottom:630.174000px;}
.y1a_c01438{bottom:663.051000px;}
.y19_c01438{bottom:679.489500px;}
.y18_c01438{bottom:695.928000px;}
.y17_c01438{bottom:712.366500px;}
.y16_c01438{bottom:728.805000px;}
.y15_c01438{bottom:745.243500px;}
.y14_c01438{bottom:778.119000px;}
.y13_c01438{bottom:810.996000px;}
.y12_c01438{bottom:827.434500px;}
.y11_c01438{bottom:843.873000px;}
.y10_c01438{bottom:860.311500px;}
.yf_c01438{bottom:876.750000px;}
.ye_c01438{bottom:893.188500px;}
.yd_c01438{bottom:909.627000px;}
.yc_c01438{bottom:926.064000px;}
.yb_c01438{bottom:942.502500px;}
.ya_c01438{bottom:958.941000px;}
.y9_c01438{bottom:975.379500px;}
.y8_c01438{bottom:991.818000px;}
.y7_c01438{bottom:1008.256500px;}
.y6_c01438{bottom:1024.695000px;}
.y5_c01438{bottom:1041.133500px;}
.y4_c01438{bottom:1074.010500px;}
.y3_c01438{bottom:1106.886000px;}
.y2_c01438{bottom:1123.324500px;}
.y1_c01438{bottom:1139.389500px;}
.h2_c01438{height:35.190766px;}
.h3_c01438{height:36.007158px;}
.h4_c01438{height:52.332837px;}
.h0_c01438{height:1262.835000px;}
.h1_c01438{height:1263.000000px;}
.w0_c01438{width:892.920000px;}
.w1_c01438{width:893.250000px;}
.x0_c01438{left:0.000000px;}
.x1_c01438{left:137.122500px;}
.x2_c01438{left:143.770500px;}
.x3_c01438{left:177.007500px;}
.x4_c01438{left:435.249000px;}
@media print{
.v0_c01438{vertical-align:0.000000pt;}
.ls4_c01438{letter-spacing:0.000000pt;}
.ls1_c01438{letter-spacing:0.078221pt;}
.ls2_c01438{letter-spacing:0.087539pt;}
.ls0_c01438{letter-spacing:0.092873pt;}
.ls3_c01438{letter-spacing:23.724873pt;}
.ws2_c01438{word-spacing:-23.622682pt;}
.ws1_c01438{word-spacing:-23.544461pt;}
.ws6_c01438{word-spacing:0.000000pt;}
.ws3_c01438{word-spacing:0.039110pt;}
.ws9_c01438{word-spacing:0.050460pt;}
.ws7_c01438{word-spacing:0.065111pt;}
.ws8_c01438{word-spacing:0.074430pt;}
.ws0_c01438{word-spacing:0.156442pt;}
.wsa_c01438{word-spacing:0.180412pt;}
.ws4_c01438{word-spacing:0.189730pt;}
.ws5_c01438{word-spacing:0.195063pt;}
._0_c01438{width:0.893988pt;}
._2_c01438{width:47.362694pt;}
._1_c01438{width:70.985376pt;}
._4_c01438{width:94.803610pt;}
._3_c01438{width:118.624363pt;}
.fs0_c01438{font-size:39.110400pt;}
.fs1_c01438{font-size:53.133867pt;}
.y0_c01438{bottom:0.000000pt;}
.y29_c01438{bottom:39.333333pt;}
.y28_c01438{bottom:355.589333pt;}
.y27_c01438{bottom:370.200000pt;}
.y26_c01438{bottom:384.812000pt;}
.y25_c01438{bottom:399.424000pt;}
.y24_c01438{bottom:414.036000pt;}
.y23_c01438{bottom:428.648000pt;}
.y22_c01438{bottom:443.260000pt;}
.y21_c01438{bottom:457.872000pt;}
.y20_c01438{bottom:472.484000pt;}
.y1f_c01438{bottom:487.096000pt;}
.y1e_c01438{bottom:501.708000pt;}
.y1d_c01438{bottom:530.930667pt;}
.y1c_c01438{bottom:545.542667pt;}
.y1b_c01438{bottom:560.154667pt;}
.y1a_c01438{bottom:589.378667pt;}
.y19_c01438{bottom:603.990667pt;}
.y18_c01438{bottom:618.602667pt;}
.y17_c01438{bottom:633.214667pt;}
.y16_c01438{bottom:647.826667pt;}
.y15_c01438{bottom:662.438667pt;}
.y14_c01438{bottom:691.661333pt;}
.y13_c01438{bottom:720.885333pt;}
.y12_c01438{bottom:735.497333pt;}
.y11_c01438{bottom:750.109333pt;}
.y10_c01438{bottom:764.721333pt;}
.yf_c01438{bottom:779.333333pt;}
.ye_c01438{bottom:793.945333pt;}
.yd_c01438{bottom:808.557333pt;}
.yc_c01438{bottom:823.168000pt;}
.yb_c01438{bottom:837.780000pt;}
.ya_c01438{bottom:852.392000pt;}
.y9_c01438{bottom:867.004000pt;}
.y8_c01438{bottom:881.616000pt;}
.y7_c01438{bottom:896.228000pt;}
.y6_c01438{bottom:910.840000pt;}
.y5_c01438{bottom:925.452000pt;}
.y4_c01438{bottom:954.676000pt;}
.y3_c01438{bottom:983.898667pt;}
.y2_c01438{bottom:998.510667pt;}
.y1_c01438{bottom:1012.790667pt;}
.h2_c01438{height:31.280681pt;}
.h3_c01438{height:32.006363pt;}
.h4_c01438{height:46.518078pt;}
.h0_c01438{height:1122.520000pt;}
.h1_c01438{height:1122.666667pt;}
.w0_c01438{width:793.706667pt;}
.w1_c01438{width:794.000000pt;}
.x0_c01438{left:0.000000pt;}
.x1_c01438{left:121.886667pt;}
.x2_c01438{left:127.796000pt;}
.x3_c01438{left:157.340000pt;}
.x4_c01438{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01439 {
    display:none;
  }
  .loading-indicator_c01439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01439 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01439 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01439" -> "#page-container .classname_c01439")
 */
.pf_c01439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01439 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01439 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01439 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01439 {overflow:visible;}
  }
}
.c_c01439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01439 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01439:after { /* webkit #35443 */
  content: '';
}
.t_c01439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01439 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01439 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01439 { /* info for Javascript */
  display:none;
}
.l_c01439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01439:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01439 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01439.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01439;src:url('chunks/assets/font_efa839e2d723074c64d2480a.woff2')format("woff");}.ff1_c01439{font-family:ff1_c01439;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01439;src:url('chunks/assets/font_573360bc73680c5aa5debe91.woff2')format("woff");}.ff2_c01439{font-family:ff2_c01439;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01439;src:url('chunks/assets/font_858f13545db33dcc0931d5fb.woff2')format("woff");}.ff3_c01439{font-family:ff3_c01439;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01439;src:url('chunks/assets/font_6a2c8835ae58c9c52a19bad1.woff2')format("woff");}.ff4_c01439{font-family:ff4_c01439;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01439;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01439{font-family:ff5_c01439;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01439{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01439{vertical-align:0.000000px;}
.ls4_c01439{letter-spacing:0.000000px;}
.ls0_c01439{letter-spacing:0.087998px;}
.ls2_c01439{letter-spacing:0.098482px;}
.ls1_c01439{letter-spacing:0.104482px;}
.ls3_c01439{letter-spacing:26.690482px;}
.sc__c01439{text-shadow:none;}
.sc0_c01439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01439{-webkit-text-stroke:0px transparent;}
.sc0_c01439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01439{word-spacing:-33.713438px;}
.ws2_c01439{word-spacing:-26.575517px;}
.wse_c01439{word-spacing:-26.487518px;}
.ws9_c01439{word-spacing:-21.553319px;}
.ws8_c01439{word-spacing:-21.519216px;}
.ws5_c01439{word-spacing:-18.769538px;}
.ws7_c01439{word-spacing:-17.633802px;}
.ws4_c01439{word-spacing:-14.943900px;}
.wsa_c01439{word-spacing:-14.107042px;}
.wsb_c01439{word-spacing:-12.074671px;}
.ws1_c01439{word-spacing:-9.988424px;}
.ws3_c01439{word-spacing:-9.987499px;}
.ws6_c01439{word-spacing:-7.686144px;}
.ws12_c01439{word-spacing:0.000000px;}
.wsf_c01439{word-spacing:0.043999px;}
.ws15_c01439{word-spacing:0.056767px;}
.ws13_c01439{word-spacing:0.073250px;}
.ws14_c01439{word-spacing:0.083734px;}
.wsd_c01439{word-spacing:0.175997px;}
.ws16_c01439{word-spacing:0.202963px;}
.ws10_c01439{word-spacing:0.213446px;}
.ws11_c01439{word-spacing:0.219446px;}
.ws0_c01439{word-spacing:43.038600px;}
._0_c01439{margin-left:-7.833025px;}
._4_c01439{margin-left:-3.825638px;}
._1_c01439{margin-left:-1.549390px;}
._5_c01439{width:1.005737px;}
._2_c01439{width:19.935816px;}
._3_c01439{width:40.109428px;}
._7_c01439{width:53.283031px;}
._6_c01439{width:79.858548px;}
._9_c01439{width:106.654061px;}
._8_c01439{width:133.452408px;}
.fc6_c01439{color:rgb(0,0,207);}
.fc5_c01439{color:rgb(79,153,5);}
.fc3_c01439{color:rgb(33,74,135);}
.fc2_c01439{color:rgb(143,89,3);}
.fc4_c01439{color:rgb(207,92,0);}
.fc1_c01439{color:rgb(6,69,173);}
.fc0_c01439{color:rgb(0,0,0);}
.fs2_c01439{font-size:43.999200px;}
.fs1_c01439{font-size:59.775600px;}
.fs0_c01439{font-size:86.077200px;}
.y0_c01439{bottom:0.000000px;}
.y20_c01439{bottom:44.250000px;}
.y1f_c01439{bottom:86.982000px;}
.y1e_c01439{bottom:119.859000px;}
.y1d_c01439{bottom:136.297500px;}
.y1c_c01439{bottom:152.736000px;}
.y1b_c01439{bottom:169.174500px;}
.y1a_c01439{bottom:185.613000px;}
.y19_c01439{bottom:202.051500px;}
.y18_c01439{bottom:218.490000px;}
.y17_c01439{bottom:234.927000px;}
.y16_c01439{bottom:251.365500px;}
.y15_c01439{bottom:267.804000px;}
.y14_c01439{bottom:284.242500px;}
.y13_c01439{bottom:300.681000px;}
.y12_c01439{bottom:317.119500px;}
.y11_c01439{bottom:333.558000px;}
.y10_c01439{bottom:349.996500px;}
.yf_c01439{bottom:382.873500px;}
.ye_c01439{bottom:415.749000px;}
.yd_c01439{bottom:432.187500px;}
.yc_c01439{bottom:448.252500px;}
.yb_c01439{bottom:493.890000px;}
.ya_c01439{bottom:511.822500px;}
.y9_c01439{bottom:529.756500px;}
.y8_c01439{bottom:547.689000px;}
.y7_c01439{bottom:565.621500px;}
.y6_c01439{bottom:583.554000px;}
.y5_c01439{bottom:610.633500px;}
.y4_c01439{bottom:637.714500px;}
.y3_c01439{bottom:664.794000px;}
.y2_c01439{bottom:691.873500px;}
.y1_c01439{bottom:734.407500px;}
.h5_c01439{height:35.190766px;}
.h6_c01439{height:36.007158px;}
.h3_c01439{height:40.511979px;}
.h4_c01439{height:52.332837px;}
.h2_c01439{height:58.337477px;}
.h0_c01439{height:1262.835000px;}
.h1_c01439{height:1263.000000px;}
.w0_c01439{width:892.920000px;}
.w1_c01439{width:893.250000px;}
.x0_c01439{left:0.000000px;}
.x1_c01439{left:127.558500px;}
.x2_c01439{left:137.122500px;}
.x3_c01439{left:143.770500px;}
.x4_c01439{left:435.249000px;}
@media print{
.v0_c01439{vertical-align:0.000000pt;}
.ls4_c01439{letter-spacing:0.000000pt;}
.ls0_c01439{letter-spacing:0.078221pt;}
.ls2_c01439{letter-spacing:0.087539pt;}
.ls1_c01439{letter-spacing:0.092873pt;}
.ls3_c01439{letter-spacing:23.724873pt;}
.wsc_c01439{word-spacing:-29.967501pt;}
.ws2_c01439{word-spacing:-23.622682pt;}
.wse_c01439{word-spacing:-23.544461pt;}
.ws9_c01439{word-spacing:-19.158506pt;}
.ws8_c01439{word-spacing:-19.128192pt;}
.ws5_c01439{word-spacing:-16.684034pt;}
.ws7_c01439{word-spacing:-15.674491pt;}
.ws4_c01439{word-spacing:-13.283467pt;}
.wsa_c01439{word-spacing:-12.539593pt;}
.wsb_c01439{word-spacing:-10.733041pt;}
.ws1_c01439{word-spacing:-8.878599pt;}
.ws3_c01439{word-spacing:-8.877777pt;}
.ws6_c01439{word-spacing:-6.832128pt;}
.ws12_c01439{word-spacing:0.000000pt;}
.wsf_c01439{word-spacing:0.039110pt;}
.ws15_c01439{word-spacing:0.050460pt;}
.ws13_c01439{word-spacing:0.065111pt;}
.ws14_c01439{word-spacing:0.074430pt;}
.wsd_c01439{word-spacing:0.156442pt;}
.ws16_c01439{word-spacing:0.180412pt;}
.ws10_c01439{word-spacing:0.189730pt;}
.ws11_c01439{word-spacing:0.195063pt;}
.ws0_c01439{word-spacing:38.256533pt;}
._0_c01439{margin-left:-6.962689pt;}
._4_c01439{margin-left:-3.400567pt;}
._1_c01439{margin-left:-1.377235pt;}
._5_c01439{width:0.893988pt;}
._2_c01439{width:17.720725pt;}
._3_c01439{width:35.652825pt;}
._7_c01439{width:47.362694pt;}
._6_c01439{width:70.985376pt;}
._9_c01439{width:94.803610pt;}
._8_c01439{width:118.624363pt;}
.fs2_c01439{font-size:39.110400pt;}
.fs1_c01439{font-size:53.133867pt;}
.fs0_c01439{font-size:76.513067pt;}
.y0_c01439{bottom:0.000000pt;}
.y20_c01439{bottom:39.333333pt;}
.y1f_c01439{bottom:77.317333pt;}
.y1e_c01439{bottom:106.541333pt;}
.y1d_c01439{bottom:121.153333pt;}
.y1c_c01439{bottom:135.765333pt;}
.y1b_c01439{bottom:150.377333pt;}
.y1a_c01439{bottom:164.989333pt;}
.y19_c01439{bottom:179.601333pt;}
.y18_c01439{bottom:194.213333pt;}
.y17_c01439{bottom:208.824000pt;}
.y16_c01439{bottom:223.436000pt;}
.y15_c01439{bottom:238.048000pt;}
.y14_c01439{bottom:252.660000pt;}
.y13_c01439{bottom:267.272000pt;}
.y12_c01439{bottom:281.884000pt;}
.y11_c01439{bottom:296.496000pt;}
.y10_c01439{bottom:311.108000pt;}
.yf_c01439{bottom:340.332000pt;}
.ye_c01439{bottom:369.554667pt;}
.yd_c01439{bottom:384.166667pt;}
.yc_c01439{bottom:398.446667pt;}
.yb_c01439{bottom:439.013333pt;}
.ya_c01439{bottom:454.953333pt;}
.y9_c01439{bottom:470.894667pt;}
.y8_c01439{bottom:486.834667pt;}
.y7_c01439{bottom:502.774667pt;}
.y6_c01439{bottom:518.714667pt;}
.y5_c01439{bottom:542.785333pt;}
.y4_c01439{bottom:566.857333pt;}
.y3_c01439{bottom:590.928000pt;}
.y2_c01439{bottom:614.998667pt;}
.y1_c01439{bottom:652.806667pt;}
.h5_c01439{height:31.280681pt;}
.h6_c01439{height:32.006363pt;}
.h3_c01439{height:36.010648pt;}
.h4_c01439{height:46.518078pt;}
.h2_c01439{height:51.855535pt;}
.h0_c01439{height:1122.520000pt;}
.h1_c01439{height:1122.666667pt;}
.w0_c01439{width:793.706667pt;}
.w1_c01439{width:794.000000pt;}
.x0_c01439{left:0.000000pt;}
.x1_c01439{left:113.385333pt;}
.x2_c01439{left:121.886667pt;}
.x3_c01439{left:127.796000pt;}
.x4_c01439{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01440 {
    display:none;
  }
  .loading-indicator_c01440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01440 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01440 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01440" -> "#page-container .classname_c01440")
 */
.pf_c01440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01440 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01440 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01440 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01440 {overflow:visible;}
  }
}
.c_c01440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01440 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01440:after { /* webkit #35443 */
  content: '';
}
.t_c01440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01440 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01440 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01440 { /* info for Javascript */
  display:none;
}
.l_c01440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01440:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01440 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01440.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01440;src:url('chunks/assets/font_46662b71aefbf4f6cab11e0d.woff2')format("woff");}.ff1_c01440{font-family:ff1_c01440;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01440;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01440{font-family:ff2_c01440;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01440;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01440{font-family:ff3_c01440;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01440;src:url('chunks/assets/font_af74ddde0f2479ec82a51128.woff2')format("woff");}.ff4_c01440{font-family:ff4_c01440;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01440;src:url('chunks/assets/font_57ce7347d1061137fac574ba.woff2')format("woff");}.ff5_c01440{font-family:ff5_c01440;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01440{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01440{vertical-align:0.000000px;}
.ls3_c01440{letter-spacing:0.000000px;}
.ls0_c01440{letter-spacing:0.087998px;}
.ls1_c01440{letter-spacing:0.098482px;}
.ls2_c01440{letter-spacing:0.104482px;}
.sc__c01440{text-shadow:none;}
.sc0_c01440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01440{-webkit-text-stroke:0px transparent;}
.sc0_c01440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c01440{word-spacing:-33.713438px;}
.ws0_c01440{word-spacing:-26.575517px;}
.ws2_c01440{word-spacing:-26.487518px;}
.wsd_c01440{word-spacing:-21.553319px;}
.wsc_c01440{word-spacing:-21.519216px;}
.wsb_c01440{word-spacing:-19.247743px;}
.ws9_c01440{word-spacing:-18.769538px;}
.ws8_c01440{word-spacing:-14.943900px;}
.wse_c01440{word-spacing:-14.107042px;}
.wsf_c01440{word-spacing:-12.074671px;}
.wsa_c01440{word-spacing:-10.230144px;}
.ws6_c01440{word-spacing:-9.988424px;}
.ws7_c01440{word-spacing:-9.987499px;}
.ws1_c01440{word-spacing:0.000000px;}
.ws3_c01440{word-spacing:0.043999px;}
.ws4_c01440{word-spacing:0.213446px;}
.ws5_c01440{word-spacing:43.038600px;}
._1_c01440{margin-left:-7.833025px;}
._5_c01440{margin-left:-3.825638px;}
._2_c01440{margin-left:-1.549390px;}
._0_c01440{width:1.041538px;}
._3_c01440{width:19.935816px;}
._4_c01440{width:40.109428px;}
.fc5_c01440{color:rgb(0,0,207);}
.fc6_c01440{color:rgb(6,69,173);}
.fc4_c01440{color:rgb(207,92,0);}
.fc3_c01440{color:rgb(79,153,5);}
.fc2_c01440{color:rgb(33,74,135);}
.fc1_c01440{color:rgb(143,89,3);}
.fc0_c01440{color:rgb(0,0,0);}
.fs0_c01440{font-size:43.999200px;}
.fs2_c01440{font-size:59.775600px;}
.fs1_c01440{font-size:86.077200px;}
.y0_c01440{bottom:0.000000px;}
.y20_c01440{bottom:44.250000px;}
.y1f_c01440{bottom:82.051500px;}
.y1e_c01440{bottom:99.984000px;}
.y1d_c01440{bottom:117.916500px;}
.y1c_c01440{bottom:135.849000px;}
.y1b_c01440{bottom:153.781500px;}
.y1a_c01440{bottom:171.714000px;}
.y19_c01440{bottom:199.800000px;}
.y18_c01440{bottom:227.886000px;}
.y17_c01440{bottom:255.972000px;}
.y16_c01440{bottom:284.058000px;}
.y15_c01440{bottom:328.047000px;}
.y14_c01440{bottom:798.219000px;}
.y13_c01440{bottom:814.657500px;}
.y12_c01440{bottom:831.096000px;}
.y11_c01440{bottom:847.534500px;}
.y10_c01440{bottom:863.973000px;}
.yf_c01440{bottom:880.411500px;}
.ye_c01440{bottom:896.848500px;}
.yd_c01440{bottom:913.287000px;}
.yc_c01440{bottom:929.725500px;}
.yb_c01440{bottom:946.164000px;}
.ya_c01440{bottom:962.602500px;}
.y9_c01440{bottom:995.479500px;}
.y8_c01440{bottom:1011.918000px;}
.y7_c01440{bottom:1028.356500px;}
.y6_c01440{bottom:1061.232000px;}
.y5_c01440{bottom:1077.670500px;}
.y4_c01440{bottom:1094.109000px;}
.y3_c01440{bottom:1110.547500px;}
.y2_c01440{bottom:1126.986000px;}
.y1_c01440{bottom:1143.424500px;}
.h3_c01440{height:35.190766px;}
.h2_c01440{height:36.007158px;}
.h5_c01440{height:40.511979px;}
.h6_c01440{height:52.332837px;}
.h4_c01440{height:58.337477px;}
.h0_c01440{height:1262.835000px;}
.h1_c01440{height:1263.000000px;}
.w0_c01440{width:892.920000px;}
.w1_c01440{width:893.250000px;}
.x0_c01440{left:0.000000px;}
.x3_c01440{left:127.558500px;}
.x1_c01440{left:137.122500px;}
.x2_c01440{left:177.007500px;}
.x4_c01440{left:435.249000px;}
@media print{
.v0_c01440{vertical-align:0.000000pt;}
.ls3_c01440{letter-spacing:0.000000pt;}
.ls0_c01440{letter-spacing:0.078221pt;}
.ls1_c01440{letter-spacing:0.087539pt;}
.ls2_c01440{letter-spacing:0.092873pt;}
.ws10_c01440{word-spacing:-29.967501pt;}
.ws0_c01440{word-spacing:-23.622682pt;}
.ws2_c01440{word-spacing:-23.544461pt;}
.wsd_c01440{word-spacing:-19.158506pt;}
.wsc_c01440{word-spacing:-19.128192pt;}
.wsb_c01440{word-spacing:-17.109105pt;}
.ws9_c01440{word-spacing:-16.684034pt;}
.ws8_c01440{word-spacing:-13.283467pt;}
.wse_c01440{word-spacing:-12.539593pt;}
.wsf_c01440{word-spacing:-10.733041pt;}
.wsa_c01440{word-spacing:-9.093461pt;}
.ws6_c01440{word-spacing:-8.878599pt;}
.ws7_c01440{word-spacing:-8.877777pt;}
.ws1_c01440{word-spacing:0.000000pt;}
.ws3_c01440{word-spacing:0.039110pt;}
.ws4_c01440{word-spacing:0.189730pt;}
.ws5_c01440{word-spacing:38.256533pt;}
._1_c01440{margin-left:-6.962689pt;}
._5_c01440{margin-left:-3.400567pt;}
._2_c01440{margin-left:-1.377235pt;}
._0_c01440{width:0.925811pt;}
._3_c01440{width:17.720725pt;}
._4_c01440{width:35.652825pt;}
.fs0_c01440{font-size:39.110400pt;}
.fs2_c01440{font-size:53.133867pt;}
.fs1_c01440{font-size:76.513067pt;}
.y0_c01440{bottom:0.000000pt;}
.y20_c01440{bottom:39.333333pt;}
.y1f_c01440{bottom:72.934667pt;}
.y1e_c01440{bottom:88.874667pt;}
.y1d_c01440{bottom:104.814667pt;}
.y1c_c01440{bottom:120.754667pt;}
.y1b_c01440{bottom:136.694667pt;}
.y1a_c01440{bottom:152.634667pt;}
.y19_c01440{bottom:177.600000pt;}
.y18_c01440{bottom:202.565333pt;}
.y17_c01440{bottom:227.530667pt;}
.y16_c01440{bottom:252.496000pt;}
.y15_c01440{bottom:291.597333pt;}
.y14_c01440{bottom:709.528000pt;}
.y13_c01440{bottom:724.140000pt;}
.y12_c01440{bottom:738.752000pt;}
.y11_c01440{bottom:753.364000pt;}
.y10_c01440{bottom:767.976000pt;}
.yf_c01440{bottom:782.588000pt;}
.ye_c01440{bottom:797.198667pt;}
.yd_c01440{bottom:811.810667pt;}
.yc_c01440{bottom:826.422667pt;}
.yb_c01440{bottom:841.034667pt;}
.ya_c01440{bottom:855.646667pt;}
.y9_c01440{bottom:884.870667pt;}
.y8_c01440{bottom:899.482667pt;}
.y7_c01440{bottom:914.094667pt;}
.y6_c01440{bottom:943.317333pt;}
.y5_c01440{bottom:957.929333pt;}
.y4_c01440{bottom:972.541333pt;}
.y3_c01440{bottom:987.153333pt;}
.y2_c01440{bottom:1001.765333pt;}
.y1_c01440{bottom:1016.377333pt;}
.h3_c01440{height:31.280681pt;}
.h2_c01440{height:32.006363pt;}
.h5_c01440{height:36.010648pt;}
.h6_c01440{height:46.518078pt;}
.h4_c01440{height:51.855535pt;}
.h0_c01440{height:1122.520000pt;}
.h1_c01440{height:1122.666667pt;}
.w0_c01440{width:793.706667pt;}
.w1_c01440{width:794.000000pt;}
.x0_c01440{left:0.000000pt;}
.x3_c01440{left:113.385333pt;}
.x1_c01440{left:121.886667pt;}
.x2_c01440{left:157.340000pt;}
.x4_c01440{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01441 {
    display:none;
  }
  .loading-indicator_c01441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01441 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01441 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01441" -> "#page-container .classname_c01441")
 */
.pf_c01441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01441 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01441 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01441 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01441 {overflow:visible;}
  }
}
.c_c01441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01441 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01441:after { /* webkit #35443 */
  content: '';
}
.t_c01441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01441 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01441 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01441 { /* info for Javascript */
  display:none;
}
.l_c01441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01441:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01441 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01441.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01441;src:url('chunks/assets/font_67e5219a31144b438614518a.woff2')format("woff");}.ff1_c01441{font-family:ff1_c01441;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01441;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01441{font-family:ff2_c01441;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01441;src:url('chunks/assets/font_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff3_c01441{font-family:ff3_c01441;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01441;src:url('chunks/assets/font_6c884ac4052f85049162257d.woff2')format("woff");}.ff4_c01441{font-family:ff4_c01441;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01441{vertical-align:0.000000px;}
.ls4_c01441{letter-spacing:0.000000px;}
.ls1_c01441{letter-spacing:0.087998px;}
.ls2_c01441{letter-spacing:0.098482px;}
.ls0_c01441{letter-spacing:0.104482px;}
.ls3_c01441{letter-spacing:26.690482px;}
.sc__c01441{text-shadow:none;}
.sc0_c01441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01441{-webkit-text-stroke:0px transparent;}
.sc0_c01441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01441{word-spacing:-26.575517px;}
.ws1_c01441{word-spacing:-26.487518px;}
.ws6_c01441{word-spacing:0.000000px;}
.ws3_c01441{word-spacing:0.043999px;}
.ws9_c01441{word-spacing:0.056767px;}
.ws7_c01441{word-spacing:0.073250px;}
.ws8_c01441{word-spacing:0.083734px;}
.ws0_c01441{word-spacing:0.175997px;}
.wsa_c01441{word-spacing:0.202963px;}
.ws4_c01441{word-spacing:0.213446px;}
.ws5_c01441{word-spacing:0.219446px;}
._0_c01441{width:1.005737px;}
._2_c01441{width:53.283031px;}
._1_c01441{width:79.858548px;}
._3_c01441{width:133.452408px;}
.fc5_c01441{color:rgb(0,0,207);}
.fc4_c01441{color:rgb(79,153,5);}
.fc3_c01441{color:rgb(207,92,0);}
.fc2_c01441{color:rgb(0,0,0);}
.fc1_c01441{color:rgb(33,74,135);}
.fc0_c01441{color:rgb(143,89,3);}
.fs0_c01441{font-size:43.999200px;}
.fs1_c01441{font-size:59.775600px;}
.y0_c01441{bottom:0.000000px;}
.y29_c01441{bottom:44.250000px;}
.y28_c01441{bottom:400.038000px;}
.y27_c01441{bottom:416.475000px;}
.y26_c01441{bottom:432.913500px;}
.y25_c01441{bottom:449.352000px;}
.y24_c01441{bottom:465.790500px;}
.y23_c01441{bottom:482.229000px;}
.y22_c01441{bottom:498.667500px;}
.y21_c01441{bottom:515.106000px;}
.y20_c01441{bottom:531.544500px;}
.y1f_c01441{bottom:547.983000px;}
.y1e_c01441{bottom:564.421500px;}
.y1d_c01441{bottom:597.297000px;}
.y1c_c01441{bottom:613.735500px;}
.y1b_c01441{bottom:630.174000px;}
.y1a_c01441{bottom:663.051000px;}
.y19_c01441{bottom:679.489500px;}
.y18_c01441{bottom:695.928000px;}
.y17_c01441{bottom:712.366500px;}
.y16_c01441{bottom:728.805000px;}
.y15_c01441{bottom:745.243500px;}
.y14_c01441{bottom:778.119000px;}
.y13_c01441{bottom:810.996000px;}
.y12_c01441{bottom:827.434500px;}
.y11_c01441{bottom:843.873000px;}
.y10_c01441{bottom:860.311500px;}
.yf_c01441{bottom:876.750000px;}
.ye_c01441{bottom:893.188500px;}
.yd_c01441{bottom:909.627000px;}
.yc_c01441{bottom:926.064000px;}
.yb_c01441{bottom:942.502500px;}
.ya_c01441{bottom:958.941000px;}
.y9_c01441{bottom:975.379500px;}
.y8_c01441{bottom:991.818000px;}
.y7_c01441{bottom:1008.256500px;}
.y6_c01441{bottom:1024.695000px;}
.y5_c01441{bottom:1041.133500px;}
.y4_c01441{bottom:1074.010500px;}
.y3_c01441{bottom:1106.886000px;}
.y2_c01441{bottom:1123.324500px;}
.y1_c01441{bottom:1139.389500px;}
.h2_c01441{height:35.190766px;}
.h3_c01441{height:36.007158px;}
.h4_c01441{height:52.332837px;}
.h0_c01441{height:1262.835000px;}
.h1_c01441{height:1263.000000px;}
.w0_c01441{width:892.920000px;}
.w1_c01441{width:893.250000px;}
.x0_c01441{left:0.000000px;}
.x1_c01441{left:137.122500px;}
.x2_c01441{left:143.770500px;}
.x3_c01441{left:177.007500px;}
.x4_c01441{left:435.249000px;}
@media print{
.v0_c01441{vertical-align:0.000000pt;}
.ls4_c01441{letter-spacing:0.000000pt;}
.ls1_c01441{letter-spacing:0.078221pt;}
.ls2_c01441{letter-spacing:0.087539pt;}
.ls0_c01441{letter-spacing:0.092873pt;}
.ls3_c01441{letter-spacing:23.724873pt;}
.ws2_c01441{word-spacing:-23.622682pt;}
.ws1_c01441{word-spacing:-23.544461pt;}
.ws6_c01441{word-spacing:0.000000pt;}
.ws3_c01441{word-spacing:0.039110pt;}
.ws9_c01441{word-spacing:0.050460pt;}
.ws7_c01441{word-spacing:0.065111pt;}
.ws8_c01441{word-spacing:0.074430pt;}
.ws0_c01441{word-spacing:0.156442pt;}
.wsa_c01441{word-spacing:0.180412pt;}
.ws4_c01441{word-spacing:0.189730pt;}
.ws5_c01441{word-spacing:0.195063pt;}
._0_c01441{width:0.893988pt;}
._2_c01441{width:47.362694pt;}
._1_c01441{width:70.985376pt;}
._3_c01441{width:118.624363pt;}
.fs0_c01441{font-size:39.110400pt;}
.fs1_c01441{font-size:53.133867pt;}
.y0_c01441{bottom:0.000000pt;}
.y29_c01441{bottom:39.333333pt;}
.y28_c01441{bottom:355.589333pt;}
.y27_c01441{bottom:370.200000pt;}
.y26_c01441{bottom:384.812000pt;}
.y25_c01441{bottom:399.424000pt;}
.y24_c01441{bottom:414.036000pt;}
.y23_c01441{bottom:428.648000pt;}
.y22_c01441{bottom:443.260000pt;}
.y21_c01441{bottom:457.872000pt;}
.y20_c01441{bottom:472.484000pt;}
.y1f_c01441{bottom:487.096000pt;}
.y1e_c01441{bottom:501.708000pt;}
.y1d_c01441{bottom:530.930667pt;}
.y1c_c01441{bottom:545.542667pt;}
.y1b_c01441{bottom:560.154667pt;}
.y1a_c01441{bottom:589.378667pt;}
.y19_c01441{bottom:603.990667pt;}
.y18_c01441{bottom:618.602667pt;}
.y17_c01441{bottom:633.214667pt;}
.y16_c01441{bottom:647.826667pt;}
.y15_c01441{bottom:662.438667pt;}
.y14_c01441{bottom:691.661333pt;}
.y13_c01441{bottom:720.885333pt;}
.y12_c01441{bottom:735.497333pt;}
.y11_c01441{bottom:750.109333pt;}
.y10_c01441{bottom:764.721333pt;}
.yf_c01441{bottom:779.333333pt;}
.ye_c01441{bottom:793.945333pt;}
.yd_c01441{bottom:808.557333pt;}
.yc_c01441{bottom:823.168000pt;}
.yb_c01441{bottom:837.780000pt;}
.ya_c01441{bottom:852.392000pt;}
.y9_c01441{bottom:867.004000pt;}
.y8_c01441{bottom:881.616000pt;}
.y7_c01441{bottom:896.228000pt;}
.y6_c01441{bottom:910.840000pt;}
.y5_c01441{bottom:925.452000pt;}
.y4_c01441{bottom:954.676000pt;}
.y3_c01441{bottom:983.898667pt;}
.y2_c01441{bottom:998.510667pt;}
.y1_c01441{bottom:1012.790667pt;}
.h2_c01441{height:31.280681pt;}
.h3_c01441{height:32.006363pt;}
.h4_c01441{height:46.518078pt;}
.h0_c01441{height:1122.520000pt;}
.h1_c01441{height:1122.666667pt;}
.w0_c01441{width:793.706667pt;}
.w1_c01441{width:794.000000pt;}
.x0_c01441{left:0.000000pt;}
.x1_c01441{left:121.886667pt;}
.x2_c01441{left:127.796000pt;}
.x3_c01441{left:157.340000pt;}
.x4_c01441{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01442 {
    display:none;
  }
  .loading-indicator_c01442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01442 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01442 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01442" -> "#page-container .classname_c01442")
 */
.pf_c01442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01442 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01442 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01442 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01442 {overflow:visible;}
  }
}
.c_c01442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01442 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01442:after { /* webkit #35443 */
  content: '';
}
.t_c01442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01442 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01442 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01442 { /* info for Javascript */
  display:none;
}
.l_c01442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01442:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01442 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01442.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01442;src:url('chunks/assets/font_5bcf3a14941df0993a4ab03e.woff2')format("woff");}.ff1_c01442{font-family:ff1_c01442;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01442;src:url('chunks/assets/font_bac2669a569c4b0a7c0ed242.woff2')format("woff");}.ff2_c01442{font-family:ff2_c01442;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01442;src:url('chunks/assets/font_d7cbdb933e018361faef5118.woff2')format("woff");}.ff3_c01442{font-family:ff3_c01442;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01442;src:url('chunks/assets/font_6853fd2b02ec4cf7c892f0a1.woff2')format("woff");}.ff4_c01442{font-family:ff4_c01442;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01442;src:url('chunks/assets/font_ed8833f1d343c2cbf9c8191b.woff2')format("woff");}.ff5_c01442{font-family:ff5_c01442;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01442{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01442{vertical-align:0.000000px;}
.ls3_c01442{letter-spacing:0.000000px;}
.ls0_c01442{letter-spacing:0.087998px;}
.ls2_c01442{letter-spacing:0.098482px;}
.ls1_c01442{letter-spacing:0.104482px;}
.sc__c01442{text-shadow:none;}
.sc0_c01442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01442{-webkit-text-stroke:0px transparent;}
.sc0_c01442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01442{word-spacing:-26.575517px;}
.ws11_c01442{word-spacing:-26.487518px;}
.ws7_c01442{word-spacing:-21.220338px;}
.wsf_c01442{word-spacing:-20.503031px;}
.ws9_c01442{word-spacing:-20.383480px;}
.wsa_c01442{word-spacing:-20.323704px;}
.wse_c01442{word-spacing:-20.084602px;}
.wsd_c01442{word-spacing:-19.128192px;}
.wsc_c01442{word-spacing:-19.118113px;}
.ws5_c01442{word-spacing:-18.769538px;}
.ws6_c01442{word-spacing:-17.394700px;}
.wsb_c01442{word-spacing:-16.557841px;}
.ws4_c01442{word-spacing:-14.943900px;}
.ws8_c01442{word-spacing:-10.788144px;}
.ws1_c01442{word-spacing:-9.988424px;}
.ws3_c01442{word-spacing:-9.987499px;}
.ws15_c01442{word-spacing:0.000000px;}
.ws12_c01442{word-spacing:0.043999px;}
.ws10_c01442{word-spacing:0.175997px;}
.ws13_c01442{word-spacing:0.213446px;}
.ws14_c01442{word-spacing:0.219446px;}
.ws0_c01442{word-spacing:43.038600px;}
._0_c01442{margin-left:-7.833025px;}
._5_c01442{margin-left:-3.209644px;}
._1_c01442{margin-left:-1.549390px;}
._6_c01442{width:1.005737px;}
._3_c01442{width:18.751300px;}
._2_c01442{width:19.935816px;}
._4_c01442{width:26.420815px;}
.fc6_c01442{color:rgb(0,0,207);}
.fc5_c01442{color:rgb(79,153,5);}
.fc3_c01442{color:rgb(33,74,135);}
.fc2_c01442{color:rgb(143,89,3);}
.fc4_c01442{color:rgb(207,92,0);}
.fc1_c01442{color:rgb(6,69,173);}
.fc0_c01442{color:rgb(0,0,0);}
.fs2_c01442{font-size:43.999200px;}
.fs1_c01442{font-size:59.775600px;}
.fs0_c01442{font-size:86.077200px;}
.y0_c01442{bottom:0.000000px;}
.y1d_c01442{bottom:44.250000px;}
.y1c_c01442{bottom:86.982000px;}
.y1b_c01442{bottom:103.420500px;}
.y1a_c01442{bottom:119.859000px;}
.y19_c01442{bottom:136.297500px;}
.y18_c01442{bottom:152.736000px;}
.y17_c01442{bottom:185.613000px;}
.y16_c01442{bottom:218.490000px;}
.y15_c01442{bottom:251.365500px;}
.y14_c01442{bottom:284.242500px;}
.y13_c01442{bottom:300.681000px;}
.y12_c01442{bottom:333.558000px;}
.y11_c01442{bottom:349.996500px;}
.y10_c01442{bottom:366.435000px;}
.yf_c01442{bottom:399.310500px;}
.ye_c01442{bottom:415.749000px;}
.yd_c01442{bottom:431.814000px;}
.yc_c01442{bottom:478.845000px;}
.yb_c01442{bottom:496.777500px;}
.ya_c01442{bottom:514.710000px;}
.y9_c01442{bottom:532.644000px;}
.y8_c01442{bottom:550.576500px;}
.y7_c01442{bottom:568.509000px;}
.y6_c01442{bottom:595.216500px;}
.y5_c01442{bottom:613.149000px;}
.y4_c01442{bottom:639.858000px;}
.y3_c01442{bottom:666.565500px;}
.y2_c01442{bottom:693.274500px;}
.y1_c01442{bottom:735.355500px;}
.h5_c01442{height:35.190766px;}
.h6_c01442{height:36.007158px;}
.h3_c01442{height:40.511979px;}
.h4_c01442{height:52.332837px;}
.h2_c01442{height:58.337477px;}
.h0_c01442{height:1262.835000px;}
.h1_c01442{height:1263.000000px;}
.w0_c01442{width:892.920000px;}
.w1_c01442{width:893.250000px;}
.x0_c01442{left:0.000000px;}
.x1_c01442{left:127.558500px;}
.x2_c01442{left:137.122500px;}
.x3_c01442{left:170.359500px;}
.x4_c01442{left:435.249000px;}
@media print{
.v0_c01442{vertical-align:0.000000pt;}
.ls3_c01442{letter-spacing:0.000000pt;}
.ls0_c01442{letter-spacing:0.078221pt;}
.ls2_c01442{letter-spacing:0.087539pt;}
.ls1_c01442{letter-spacing:0.092873pt;}
.ws2_c01442{word-spacing:-23.622682pt;}
.ws11_c01442{word-spacing:-23.544461pt;}
.ws7_c01442{word-spacing:-18.862523pt;}
.wsf_c01442{word-spacing:-18.224916pt;}
.ws9_c01442{word-spacing:-18.118649pt;}
.wsa_c01442{word-spacing:-18.065515pt;}
.wse_c01442{word-spacing:-17.852979pt;}
.wsd_c01442{word-spacing:-17.002837pt;}
.wsc_c01442{word-spacing:-16.993878pt;}
.ws5_c01442{word-spacing:-16.684034pt;}
.ws6_c01442{word-spacing:-15.461955pt;}
.wsb_c01442{word-spacing:-14.718081pt;}
.ws4_c01442{word-spacing:-13.283467pt;}
.ws8_c01442{word-spacing:-9.589461pt;}
.ws1_c01442{word-spacing:-8.878599pt;}
.ws3_c01442{word-spacing:-8.877777pt;}
.ws15_c01442{word-spacing:0.000000pt;}
.ws12_c01442{word-spacing:0.039110pt;}
.ws10_c01442{word-spacing:0.156442pt;}
.ws13_c01442{word-spacing:0.189730pt;}
.ws14_c01442{word-spacing:0.195063pt;}
.ws0_c01442{word-spacing:38.256533pt;}
._0_c01442{margin-left:-6.962689pt;}
._5_c01442{margin-left:-2.853017pt;}
._1_c01442{margin-left:-1.377235pt;}
._6_c01442{width:0.893988pt;}
._3_c01442{width:16.667822pt;}
._2_c01442{width:17.720725pt;}
._4_c01442{width:23.485169pt;}
.fs2_c01442{font-size:39.110400pt;}
.fs1_c01442{font-size:53.133867pt;}
.fs0_c01442{font-size:76.513067pt;}
.y0_c01442{bottom:0.000000pt;}
.y1d_c01442{bottom:39.333333pt;}
.y1c_c01442{bottom:77.317333pt;}
.y1b_c01442{bottom:91.929333pt;}
.y1a_c01442{bottom:106.541333pt;}
.y19_c01442{bottom:121.153333pt;}
.y18_c01442{bottom:135.765333pt;}
.y17_c01442{bottom:164.989333pt;}
.y16_c01442{bottom:194.213333pt;}
.y15_c01442{bottom:223.436000pt;}
.y14_c01442{bottom:252.660000pt;}
.y13_c01442{bottom:267.272000pt;}
.y12_c01442{bottom:296.496000pt;}
.y11_c01442{bottom:311.108000pt;}
.y10_c01442{bottom:325.720000pt;}
.yf_c01442{bottom:354.942667pt;}
.ye_c01442{bottom:369.554667pt;}
.yd_c01442{bottom:383.834667pt;}
.yc_c01442{bottom:425.640000pt;}
.yb_c01442{bottom:441.580000pt;}
.ya_c01442{bottom:457.520000pt;}
.y9_c01442{bottom:473.461333pt;}
.y8_c01442{bottom:489.401333pt;}
.y7_c01442{bottom:505.341333pt;}
.y6_c01442{bottom:529.081333pt;}
.y5_c01442{bottom:545.021333pt;}
.y4_c01442{bottom:568.762667pt;}
.y3_c01442{bottom:592.502667pt;}
.y2_c01442{bottom:616.244000pt;}
.y1_c01442{bottom:653.649333pt;}
.h5_c01442{height:31.280681pt;}
.h6_c01442{height:32.006363pt;}
.h3_c01442{height:36.010648pt;}
.h4_c01442{height:46.518078pt;}
.h2_c01442{height:51.855535pt;}
.h0_c01442{height:1122.520000pt;}
.h1_c01442{height:1122.666667pt;}
.w0_c01442{width:793.706667pt;}
.w1_c01442{width:794.000000pt;}
.x0_c01442{left:0.000000pt;}
.x1_c01442{left:113.385333pt;}
.x2_c01442{left:121.886667pt;}
.x3_c01442{left:151.430667pt;}
.x4_c01442{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01443 {
    display:none;
  }
  .loading-indicator_c01443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01443 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01443 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01443" -> "#page-container .classname_c01443")
 */
.pf_c01443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01443 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01443 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01443 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01443 {overflow:visible;}
  }
}
.c_c01443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01443 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01443:after { /* webkit #35443 */
  content: '';
}
.t_c01443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01443 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01443 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01443 { /* info for Javascript */
  display:none;
}
.l_c01443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01443:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01443 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01443.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01443;src:url('chunks/assets/font_d7c5d093edbfb1da83b70014.woff2')format("woff");}.ff1_c01443{font-family:ff1_c01443;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01443;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01443{font-family:ff2_c01443;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01443;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff3_c01443{font-family:ff3_c01443;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01443;src:url('chunks/assets/font_3115e0fccb1e1d941cd05b59.woff2')format("woff");}.ff4_c01443{font-family:ff4_c01443;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01443;src:url('chunks/assets/font_56f0a05437617f050fce13ef.woff2')format("woff");}.ff5_c01443{font-family:ff5_c01443;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01443{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01443{vertical-align:0.000000px;}
.ls3_c01443{letter-spacing:0.000000px;}
.ls0_c01443{letter-spacing:0.087998px;}
.ls2_c01443{letter-spacing:0.098482px;}
.ls1_c01443{letter-spacing:0.104482px;}
.sc__c01443{text-shadow:none;}
.sc0_c01443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01443{-webkit-text-stroke:0px transparent;}
.sc0_c01443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c01443{word-spacing:-33.713438px;}
.ws1_c01443{word-spacing:-26.575517px;}
.ws3_c01443{word-spacing:-26.487518px;}
.wsb_c01443{word-spacing:-22.714728px;}
.wsf_c01443{word-spacing:-21.553319px;}
.wse_c01443{word-spacing:-21.519216px;}
.wsa_c01443{word-spacing:-18.889090px;}
.ws9_c01443{word-spacing:-18.769538px;}
.wsd_c01443{word-spacing:-16.019861px;}
.ws8_c01443{word-spacing:-14.943900px;}
.ws10_c01443{word-spacing:-14.107042px;}
.ws11_c01443{word-spacing:-12.074671px;}
.ws6_c01443{word-spacing:-9.988424px;}
.ws7_c01443{word-spacing:-9.987499px;}
.wsc_c01443{word-spacing:-4.536144px;}
.ws2_c01443{word-spacing:0.000000px;}
.ws0_c01443{word-spacing:0.043999px;}
.ws13_c01443{word-spacing:0.175997px;}
.ws4_c01443{word-spacing:0.213446px;}
.ws5_c01443{word-spacing:43.038600px;}
._1_c01443{margin-left:-7.833025px;}
._6_c01443{margin-left:-3.825638px;}
._2_c01443{margin-left:-1.549390px;}
._0_c01443{width:1.041538px;}
._4_c01443{width:17.953690px;}
._3_c01443{width:19.935816px;}
._5_c01443{width:40.109428px;}
.fc5_c01443{color:rgb(0,0,207);}
.fc6_c01443{color:rgb(6,69,173);}
.fc4_c01443{color:rgb(207,92,0);}
.fc3_c01443{color:rgb(143,89,3);}
.fc2_c01443{color:rgb(0,0,0);}
.fc1_c01443{color:rgb(79,153,5);}
.fc0_c01443{color:rgb(33,74,135);}
.fs0_c01443{font-size:43.999200px;}
.fs2_c01443{font-size:59.775600px;}
.fs1_c01443{font-size:86.077200px;}
.y0_c01443{bottom:0.000000px;}
.y20_c01443{bottom:44.250000px;}
.y1f_c01443{bottom:82.051500px;}
.y1e_c01443{bottom:98.115000px;}
.y1d_c01443{bottom:143.109000px;}
.y1c_c01443{bottom:161.043000px;}
.y1b_c01443{bottom:178.975500px;}
.y1a_c01443{bottom:196.908000px;}
.y19_c01443{bottom:214.840500px;}
.y18_c01443{bottom:232.773000px;}
.y17_c01443{bottom:259.641000px;}
.y16_c01443{bottom:286.507500px;}
.y15_c01443{bottom:313.375500px;}
.y14_c01443{bottom:340.242000px;}
.y13_c01443{bottom:382.482000px;}
.y12_c01443{bottom:847.534500px;}
.y11_c01443{bottom:863.973000px;}
.y10_c01443{bottom:880.411500px;}
.yf_c01443{bottom:896.848500px;}
.ye_c01443{bottom:913.287000px;}
.yd_c01443{bottom:929.725500px;}
.yc_c01443{bottom:946.164000px;}
.yb_c01443{bottom:962.602500px;}
.ya_c01443{bottom:979.041000px;}
.y9_c01443{bottom:995.479500px;}
.y8_c01443{bottom:1011.918000px;}
.y7_c01443{bottom:1044.795000px;}
.y6_c01443{bottom:1061.232000px;}
.y5_c01443{bottom:1077.670500px;}
.y4_c01443{bottom:1110.547500px;}
.y3_c01443{bottom:1126.986000px;}
.y2_c01443{bottom:1143.424500px;}
.y1_c01443{bottom:1159.863000px;}
.h3_c01443{height:35.190766px;}
.h2_c01443{height:36.007158px;}
.h5_c01443{height:40.511979px;}
.h6_c01443{height:52.332837px;}
.h4_c01443{height:58.337477px;}
.h0_c01443{height:1262.835000px;}
.h1_c01443{height:1263.000000px;}
.w0_c01443{width:892.920000px;}
.w1_c01443{width:893.250000px;}
.x0_c01443{left:0.000000px;}
.x4_c01443{left:127.558500px;}
.x2_c01443{left:137.122500px;}
.x1_c01443{left:170.359500px;}
.x3_c01443{left:177.007500px;}
.x5_c01443{left:435.249000px;}
@media print{
.v0_c01443{vertical-align:0.000000pt;}
.ls3_c01443{letter-spacing:0.000000pt;}
.ls0_c01443{letter-spacing:0.078221pt;}
.ls2_c01443{letter-spacing:0.087539pt;}
.ls1_c01443{letter-spacing:0.092873pt;}
.ws12_c01443{word-spacing:-29.967501pt;}
.ws1_c01443{word-spacing:-23.622682pt;}
.ws3_c01443{word-spacing:-23.544461pt;}
.wsb_c01443{word-spacing:-20.190869pt;}
.wsf_c01443{word-spacing:-19.158506pt;}
.wse_c01443{word-spacing:-19.128192pt;}
.wsa_c01443{word-spacing:-16.790302pt;}
.ws9_c01443{word-spacing:-16.684034pt;}
.wsd_c01443{word-spacing:-14.239876pt;}
.ws8_c01443{word-spacing:-13.283467pt;}
.ws10_c01443{word-spacing:-12.539593pt;}
.ws11_c01443{word-spacing:-10.733041pt;}
.ws6_c01443{word-spacing:-8.878599pt;}
.ws7_c01443{word-spacing:-8.877777pt;}
.wsc_c01443{word-spacing:-4.032128pt;}
.ws2_c01443{word-spacing:0.000000pt;}
.ws0_c01443{word-spacing:0.039110pt;}
.ws13_c01443{word-spacing:0.156442pt;}
.ws4_c01443{word-spacing:0.189730pt;}
.ws5_c01443{word-spacing:38.256533pt;}
._1_c01443{margin-left:-6.962689pt;}
._6_c01443{margin-left:-3.400567pt;}
._2_c01443{margin-left:-1.377235pt;}
._0_c01443{width:0.925811pt;}
._4_c01443{width:15.958835pt;}
._3_c01443{width:17.720725pt;}
._5_c01443{width:35.652825pt;}
.fs0_c01443{font-size:39.110400pt;}
.fs2_c01443{font-size:53.133867pt;}
.fs1_c01443{font-size:76.513067pt;}
.y0_c01443{bottom:0.000000pt;}
.y20_c01443{bottom:39.333333pt;}
.y1f_c01443{bottom:72.934667pt;}
.y1e_c01443{bottom:87.213333pt;}
.y1d_c01443{bottom:127.208000pt;}
.y1c_c01443{bottom:143.149333pt;}
.y1b_c01443{bottom:159.089333pt;}
.y1a_c01443{bottom:175.029333pt;}
.y19_c01443{bottom:190.969333pt;}
.y18_c01443{bottom:206.909333pt;}
.y17_c01443{bottom:230.792000pt;}
.y16_c01443{bottom:254.673333pt;}
.y15_c01443{bottom:278.556000pt;}
.y14_c01443{bottom:302.437333pt;}
.y13_c01443{bottom:339.984000pt;}
.y12_c01443{bottom:753.364000pt;}
.y11_c01443{bottom:767.976000pt;}
.y10_c01443{bottom:782.588000pt;}
.yf_c01443{bottom:797.198667pt;}
.ye_c01443{bottom:811.810667pt;}
.yd_c01443{bottom:826.422667pt;}
.yc_c01443{bottom:841.034667pt;}
.yb_c01443{bottom:855.646667pt;}
.ya_c01443{bottom:870.258667pt;}
.y9_c01443{bottom:884.870667pt;}
.y8_c01443{bottom:899.482667pt;}
.y7_c01443{bottom:928.706667pt;}
.y6_c01443{bottom:943.317333pt;}
.y5_c01443{bottom:957.929333pt;}
.y4_c01443{bottom:987.153333pt;}
.y3_c01443{bottom:1001.765333pt;}
.y2_c01443{bottom:1016.377333pt;}
.y1_c01443{bottom:1030.989333pt;}
.h3_c01443{height:31.280681pt;}
.h2_c01443{height:32.006363pt;}
.h5_c01443{height:36.010648pt;}
.h6_c01443{height:46.518078pt;}
.h4_c01443{height:51.855535pt;}
.h0_c01443{height:1122.520000pt;}
.h1_c01443{height:1122.666667pt;}
.w0_c01443{width:793.706667pt;}
.w1_c01443{width:794.000000pt;}
.x0_c01443{left:0.000000pt;}
.x4_c01443{left:113.385333pt;}
.x2_c01443{left:121.886667pt;}
.x1_c01443{left:151.430667pt;}
.x3_c01443{left:157.340000pt;}
.x5_c01443{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01444 {
    display:none;
  }
  .loading-indicator_c01444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01444 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01444 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01444" -> "#page-container .classname_c01444")
 */
.pf_c01444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01444 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01444 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01444 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01444 {overflow:visible;}
  }
}
.c_c01444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01444 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01444:after { /* webkit #35443 */
  content: '';
}
.t_c01444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01444 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01444 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01444 { /* info for Javascript */
  display:none;
}
.l_c01444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01444:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01444 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01444.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01444;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff1_c01444{font-family:ff1_c01444;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01444;src:url('chunks/assets/font_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff2_c01444{font-family:ff2_c01444;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01444;src:url('chunks/assets/font_a87d421b34faa57f68d8b589.woff2')format("woff");}.ff3_c01444{font-family:ff3_c01444;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01444;src:url('chunks/assets/font_0a712317bb7ba9ab51aca014.woff2')format("woff");}.ff4_c01444{font-family:ff4_c01444;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01444{vertical-align:0.000000px;}
.ls4_c01444{letter-spacing:0.000000px;}
.ls1_c01444{letter-spacing:0.087998px;}
.ls2_c01444{letter-spacing:0.098482px;}
.ls0_c01444{letter-spacing:0.104482px;}
.ls3_c01444{letter-spacing:26.690482px;}
.sc__c01444{text-shadow:none;}
.sc0_c01444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01444{-webkit-text-stroke:0px transparent;}
.sc0_c01444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01444{word-spacing:-26.575517px;}
.ws0_c01444{word-spacing:-26.487518px;}
.ws5_c01444{word-spacing:0.000000px;}
.ws2_c01444{word-spacing:0.043999px;}
.ws8_c01444{word-spacing:0.056767px;}
.ws6_c01444{word-spacing:0.073250px;}
.ws7_c01444{word-spacing:0.083734px;}
.ws4_c01444{word-spacing:0.175997px;}
.ws9_c01444{word-spacing:0.202963px;}
.wsa_c01444{word-spacing:0.213446px;}
.ws3_c01444{word-spacing:0.219446px;}
._0_c01444{width:1.005737px;}
._2_c01444{width:53.283031px;}
._1_c01444{width:79.858548px;}
._3_c01444{width:133.452408px;}
.fc5_c01444{color:rgb(0,0,207);}
.fc4_c01444{color:rgb(143,89,3);}
.fc3_c01444{color:rgb(79,153,5);}
.fc2_c01444{color:rgb(207,92,0);}
.fc1_c01444{color:rgb(0,0,0);}
.fc0_c01444{color:rgb(33,74,135);}
.fs0_c01444{font-size:43.999200px;}
.fs1_c01444{font-size:59.775600px;}
.y0_c01444{bottom:0.000000px;}
.y27_c01444{bottom:44.250000px;}
.y26_c01444{bottom:453.013500px;}
.y25_c01444{bottom:469.452000px;}
.y24_c01444{bottom:485.890500px;}
.y23_c01444{bottom:502.329000px;}
.y22_c01444{bottom:518.767500px;}
.y21_c01444{bottom:535.206000px;}
.y20_c01444{bottom:551.643000px;}
.y1f_c01444{bottom:568.081500px;}
.y1e_c01444{bottom:584.520000px;}
.y1d_c01444{bottom:600.958500px;}
.y1c_c01444{bottom:617.397000px;}
.y1b_c01444{bottom:650.274000px;}
.y1a_c01444{bottom:666.712500px;}
.y19_c01444{bottom:683.151000px;}
.y18_c01444{bottom:716.028000px;}
.y17_c01444{bottom:732.465000px;}
.y16_c01444{bottom:748.903500px;}
.y15_c01444{bottom:765.342000px;}
.y14_c01444{bottom:781.780500px;}
.y13_c01444{bottom:798.219000px;}
.y12_c01444{bottom:831.096000px;}
.y11_c01444{bottom:863.973000px;}
.y10_c01444{bottom:880.411500px;}
.yf_c01444{bottom:896.848500px;}
.ye_c01444{bottom:913.287000px;}
.yd_c01444{bottom:929.725500px;}
.yc_c01444{bottom:946.164000px;}
.yb_c01444{bottom:962.602500px;}
.ya_c01444{bottom:979.041000px;}
.y9_c01444{bottom:995.479500px;}
.y8_c01444{bottom:1011.918000px;}
.y7_c01444{bottom:1028.356500px;}
.y6_c01444{bottom:1044.795000px;}
.y5_c01444{bottom:1061.232000px;}
.y4_c01444{bottom:1077.670500px;}
.y3_c01444{bottom:1094.109000px;}
.y2_c01444{bottom:1126.986000px;}
.y1_c01444{bottom:1159.863000px;}
.h3_c01444{height:35.190766px;}
.h2_c01444{height:36.007158px;}
.h4_c01444{height:52.332837px;}
.h0_c01444{height:1262.835000px;}
.h1_c01444{height:1263.000000px;}
.w0_c01444{width:892.920000px;}
.w1_c01444{width:893.250000px;}
.x0_c01444{left:0.000000px;}
.x1_c01444{left:137.122500px;}
.x2_c01444{left:143.770500px;}
.x3_c01444{left:177.007500px;}
.x4_c01444{left:435.249000px;}
@media print{
.v0_c01444{vertical-align:0.000000pt;}
.ls4_c01444{letter-spacing:0.000000pt;}
.ls1_c01444{letter-spacing:0.078221pt;}
.ls2_c01444{letter-spacing:0.087539pt;}
.ls0_c01444{letter-spacing:0.092873pt;}
.ls3_c01444{letter-spacing:23.724873pt;}
.ws1_c01444{word-spacing:-23.622682pt;}
.ws0_c01444{word-spacing:-23.544461pt;}
.ws5_c01444{word-spacing:0.000000pt;}
.ws2_c01444{word-spacing:0.039110pt;}
.ws8_c01444{word-spacing:0.050460pt;}
.ws6_c01444{word-spacing:0.065111pt;}
.ws7_c01444{word-spacing:0.074430pt;}
.ws4_c01444{word-spacing:0.156442pt;}
.ws9_c01444{word-spacing:0.180412pt;}
.wsa_c01444{word-spacing:0.189730pt;}
.ws3_c01444{word-spacing:0.195063pt;}
._0_c01444{width:0.893988pt;}
._2_c01444{width:47.362694pt;}
._1_c01444{width:70.985376pt;}
._3_c01444{width:118.624363pt;}
.fs0_c01444{font-size:39.110400pt;}
.fs1_c01444{font-size:53.133867pt;}
.y0_c01444{bottom:0.000000pt;}
.y27_c01444{bottom:39.333333pt;}
.y26_c01444{bottom:402.678667pt;}
.y25_c01444{bottom:417.290667pt;}
.y24_c01444{bottom:431.902667pt;}
.y23_c01444{bottom:446.514667pt;}
.y22_c01444{bottom:461.126667pt;}
.y21_c01444{bottom:475.738667pt;}
.y20_c01444{bottom:490.349333pt;}
.y1f_c01444{bottom:504.961333pt;}
.y1e_c01444{bottom:519.573333pt;}
.y1d_c01444{bottom:534.185333pt;}
.y1c_c01444{bottom:548.797333pt;}
.y1b_c01444{bottom:578.021333pt;}
.y1a_c01444{bottom:592.633333pt;}
.y19_c01444{bottom:607.245333pt;}
.y18_c01444{bottom:636.469333pt;}
.y17_c01444{bottom:651.080000pt;}
.y16_c01444{bottom:665.692000pt;}
.y15_c01444{bottom:680.304000pt;}
.y14_c01444{bottom:694.916000pt;}
.y13_c01444{bottom:709.528000pt;}
.y12_c01444{bottom:738.752000pt;}
.y11_c01444{bottom:767.976000pt;}
.y10_c01444{bottom:782.588000pt;}
.yf_c01444{bottom:797.198667pt;}
.ye_c01444{bottom:811.810667pt;}
.yd_c01444{bottom:826.422667pt;}
.yc_c01444{bottom:841.034667pt;}
.yb_c01444{bottom:855.646667pt;}
.ya_c01444{bottom:870.258667pt;}
.y9_c01444{bottom:884.870667pt;}
.y8_c01444{bottom:899.482667pt;}
.y7_c01444{bottom:914.094667pt;}
.y6_c01444{bottom:928.706667pt;}
.y5_c01444{bottom:943.317333pt;}
.y4_c01444{bottom:957.929333pt;}
.y3_c01444{bottom:972.541333pt;}
.y2_c01444{bottom:1001.765333pt;}
.y1_c01444{bottom:1030.989333pt;}
.h3_c01444{height:31.280681pt;}
.h2_c01444{height:32.006363pt;}
.h4_c01444{height:46.518078pt;}
.h0_c01444{height:1122.520000pt;}
.h1_c01444{height:1122.666667pt;}
.w0_c01444{width:793.706667pt;}
.w1_c01444{width:794.000000pt;}
.x0_c01444{left:0.000000pt;}
.x1_c01444{left:121.886667pt;}
.x2_c01444{left:127.796000pt;}
.x3_c01444{left:157.340000pt;}
.x4_c01444{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01445 {
    display:none;
  }
  .loading-indicator_c01445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01445 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01445 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01445" -> "#page-container .classname_c01445")
 */
.pf_c01445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01445 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01445 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01445 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01445 {overflow:visible;}
  }
}
.c_c01445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01445 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01445:after { /* webkit #35443 */
  content: '';
}
.t_c01445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01445 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01445 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01445 { /* info for Javascript */
  display:none;
}
.l_c01445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01445:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01445 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01445.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01445;src:url('chunks/assets/font_68a73b77ad904e76d4adf1d8.woff2')format("woff");}.ff1_c01445{font-family:ff1_c01445;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01445;src:url('chunks/assets/font_9784c56c27becf91a777e0aa.woff2')format("woff");}.ff2_c01445{font-family:ff2_c01445;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01445;src:url('chunks/assets/font_c17080592302a408425823e0.woff2')format("woff");}.ff3_c01445{font-family:ff3_c01445;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01445;src:url('chunks/assets/font_2c07020ccbf5c4f01b4bcff8.woff2')format("woff");}.ff4_c01445{font-family:ff4_c01445;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01445;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01445{font-family:ff5_c01445;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01445{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01445{vertical-align:0.000000px;}
.ls4_c01445{letter-spacing:0.000000px;}
.ls0_c01445{letter-spacing:0.087998px;}
.ls2_c01445{letter-spacing:0.098482px;}
.ls1_c01445{letter-spacing:0.104482px;}
.ls3_c01445{letter-spacing:26.690482px;}
.sc__c01445{text-shadow:none;}
.sc0_c01445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01445{-webkit-text-stroke:0px transparent;}
.sc0_c01445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01445{word-spacing:-33.713438px;}
.ws2_c01445{word-spacing:-26.575517px;}
.ws10_c01445{word-spacing:-26.487518px;}
.wsb_c01445{word-spacing:-21.553319px;}
.wsa_c01445{word-spacing:-21.519216px;}
.ws5_c01445{word-spacing:-18.769538px;}
.ws9_c01445{word-spacing:-17.633802px;}
.ws4_c01445{word-spacing:-14.943900px;}
.wsc_c01445{word-spacing:-14.107042px;}
.wsd_c01445{word-spacing:-12.074671px;}
.ws7_c01445{word-spacing:-10.819384px;}
.ws1_c01445{word-spacing:-9.988424px;}
.ws3_c01445{word-spacing:-9.987499px;}
.ws8_c01445{word-spacing:-7.686144px;}
.ws6_c01445{word-spacing:-6.993745px;}
.ws14_c01445{word-spacing:0.000000px;}
.ws11_c01445{word-spacing:0.043999px;}
.ws17_c01445{word-spacing:0.056767px;}
.ws15_c01445{word-spacing:0.073250px;}
.ws16_c01445{word-spacing:0.083734px;}
.wsf_c01445{word-spacing:0.175997px;}
.ws18_c01445{word-spacing:0.202963px;}
.ws12_c01445{word-spacing:0.213446px;}
.ws13_c01445{word-spacing:0.219446px;}
.ws0_c01445{word-spacing:43.038600px;}
._0_c01445{margin-left:-7.833025px;}
._5_c01445{margin-left:-3.825638px;}
._1_c01445{margin-left:-1.549390px;}
._6_c01445{width:1.005737px;}
._2_c01445{width:19.935816px;}
._3_c01445{width:35.890345px;}
._4_c01445{width:40.109428px;}
._8_c01445{width:53.283031px;}
._7_c01445{width:79.858548px;}
._9_c01445{width:133.452408px;}
.fc6_c01445{color:rgb(0,0,207);}
.fc5_c01445{color:rgb(79,153,5);}
.fc3_c01445{color:rgb(33,74,135);}
.fc2_c01445{color:rgb(143,89,3);}
.fc4_c01445{color:rgb(207,92,0);}
.fc1_c01445{color:rgb(6,69,173);}
.fc0_c01445{color:rgb(0,0,0);}
.fs2_c01445{font-size:43.999200px;}
.fs1_c01445{font-size:59.775600px;}
.fs0_c01445{font-size:86.077200px;}
.y0_c01445{bottom:0.000000px;}
.y20_c01445{bottom:44.250000px;}
.y1f_c01445{bottom:103.420500px;}
.y1e_c01445{bottom:119.859000px;}
.y1d_c01445{bottom:136.297500px;}
.y1c_c01445{bottom:152.736000px;}
.y1b_c01445{bottom:169.174500px;}
.y1a_c01445{bottom:185.613000px;}
.y19_c01445{bottom:202.051500px;}
.y18_c01445{bottom:218.490000px;}
.y17_c01445{bottom:234.927000px;}
.y16_c01445{bottom:251.365500px;}
.y15_c01445{bottom:267.804000px;}
.y14_c01445{bottom:284.242500px;}
.y13_c01445{bottom:300.681000px;}
.y12_c01445{bottom:317.119500px;}
.y11_c01445{bottom:333.558000px;}
.y10_c01445{bottom:366.435000px;}
.yf_c01445{bottom:399.310500px;}
.ye_c01445{bottom:415.749000px;}
.yd_c01445{bottom:431.814000px;}
.yc_c01445{bottom:477.118500px;}
.yb_c01445{bottom:495.051000px;}
.ya_c01445{bottom:512.983500px;}
.y9_c01445{bottom:530.916000px;}
.y8_c01445{bottom:548.848500px;}
.y7_c01445{bottom:566.781000px;}
.y6_c01445{bottom:593.728500px;}
.y5_c01445{bottom:611.661000px;}
.y4_c01445{bottom:638.607000px;}
.y3_c01445{bottom:665.553000px;}
.y2_c01445{bottom:692.500500px;}
.y1_c01445{bottom:734.839500px;}
.h5_c01445{height:35.190766px;}
.h6_c01445{height:36.007158px;}
.h3_c01445{height:40.511979px;}
.h4_c01445{height:52.332837px;}
.h2_c01445{height:58.337477px;}
.h0_c01445{height:1262.835000px;}
.h1_c01445{height:1263.000000px;}
.w0_c01445{width:892.920000px;}
.w1_c01445{width:893.250000px;}
.x0_c01445{left:0.000000px;}
.x1_c01445{left:127.558500px;}
.x2_c01445{left:137.122500px;}
.x3_c01445{left:143.770500px;}
.x4_c01445{left:435.249000px;}
@media print{
.v0_c01445{vertical-align:0.000000pt;}
.ls4_c01445{letter-spacing:0.000000pt;}
.ls0_c01445{letter-spacing:0.078221pt;}
.ls2_c01445{letter-spacing:0.087539pt;}
.ls1_c01445{letter-spacing:0.092873pt;}
.ls3_c01445{letter-spacing:23.724873pt;}
.wse_c01445{word-spacing:-29.967501pt;}
.ws2_c01445{word-spacing:-23.622682pt;}
.ws10_c01445{word-spacing:-23.544461pt;}
.wsb_c01445{word-spacing:-19.158506pt;}
.wsa_c01445{word-spacing:-19.128192pt;}
.ws5_c01445{word-spacing:-16.684034pt;}
.ws9_c01445{word-spacing:-15.674491pt;}
.ws4_c01445{word-spacing:-13.283467pt;}
.wsc_c01445{word-spacing:-12.539593pt;}
.wsd_c01445{word-spacing:-10.733041pt;}
.ws7_c01445{word-spacing:-9.617230pt;}
.ws1_c01445{word-spacing:-8.878599pt;}
.ws3_c01445{word-spacing:-8.877777pt;}
.ws8_c01445{word-spacing:-6.832128pt;}
.ws6_c01445{word-spacing:-6.216662pt;}
.ws14_c01445{word-spacing:0.000000pt;}
.ws11_c01445{word-spacing:0.039110pt;}
.ws17_c01445{word-spacing:0.050460pt;}
.ws15_c01445{word-spacing:0.065111pt;}
.ws16_c01445{word-spacing:0.074430pt;}
.wsf_c01445{word-spacing:0.156442pt;}
.ws18_c01445{word-spacing:0.180412pt;}
.ws12_c01445{word-spacing:0.189730pt;}
.ws13_c01445{word-spacing:0.195063pt;}
.ws0_c01445{word-spacing:38.256533pt;}
._0_c01445{margin-left:-6.962689pt;}
._5_c01445{margin-left:-3.400567pt;}
._1_c01445{margin-left:-1.377235pt;}
._6_c01445{width:0.893988pt;}
._2_c01445{width:17.720725pt;}
._3_c01445{width:31.902529pt;}
._4_c01445{width:35.652825pt;}
._8_c01445{width:47.362694pt;}
._7_c01445{width:70.985376pt;}
._9_c01445{width:118.624363pt;}
.fs2_c01445{font-size:39.110400pt;}
.fs1_c01445{font-size:53.133867pt;}
.fs0_c01445{font-size:76.513067pt;}
.y0_c01445{bottom:0.000000pt;}
.y20_c01445{bottom:39.333333pt;}
.y1f_c01445{bottom:91.929333pt;}
.y1e_c01445{bottom:106.541333pt;}
.y1d_c01445{bottom:121.153333pt;}
.y1c_c01445{bottom:135.765333pt;}
.y1b_c01445{bottom:150.377333pt;}
.y1a_c01445{bottom:164.989333pt;}
.y19_c01445{bottom:179.601333pt;}
.y18_c01445{bottom:194.213333pt;}
.y17_c01445{bottom:208.824000pt;}
.y16_c01445{bottom:223.436000pt;}
.y15_c01445{bottom:238.048000pt;}
.y14_c01445{bottom:252.660000pt;}
.y13_c01445{bottom:267.272000pt;}
.y12_c01445{bottom:281.884000pt;}
.y11_c01445{bottom:296.496000pt;}
.y10_c01445{bottom:325.720000pt;}
.yf_c01445{bottom:354.942667pt;}
.ye_c01445{bottom:369.554667pt;}
.yd_c01445{bottom:383.834667pt;}
.yc_c01445{bottom:424.105333pt;}
.yb_c01445{bottom:440.045333pt;}
.ya_c01445{bottom:455.985333pt;}
.y9_c01445{bottom:471.925333pt;}
.y8_c01445{bottom:487.865333pt;}
.y7_c01445{bottom:503.805333pt;}
.y6_c01445{bottom:527.758667pt;}
.y5_c01445{bottom:543.698667pt;}
.y4_c01445{bottom:567.650667pt;}
.y3_c01445{bottom:591.602667pt;}
.y2_c01445{bottom:615.556000pt;}
.y1_c01445{bottom:653.190667pt;}
.h5_c01445{height:31.280681pt;}
.h6_c01445{height:32.006363pt;}
.h3_c01445{height:36.010648pt;}
.h4_c01445{height:46.518078pt;}
.h2_c01445{height:51.855535pt;}
.h0_c01445{height:1122.520000pt;}
.h1_c01445{height:1122.666667pt;}
.w0_c01445{width:793.706667pt;}
.w1_c01445{width:794.000000pt;}
.x0_c01445{left:0.000000pt;}
.x1_c01445{left:113.385333pt;}
.x2_c01445{left:121.886667pt;}
.x3_c01445{left:127.796000pt;}
.x4_c01445{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01446 {
    display:none;
  }
  .loading-indicator_c01446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01446 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01446 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01446" -> "#page-container .classname_c01446")
 */
.pf_c01446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01446 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01446 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01446 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01446 {overflow:visible;}
  }
}
.c_c01446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01446 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01446:after { /* webkit #35443 */
  content: '';
}
.t_c01446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01446 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01446 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01446 { /* info for Javascript */
  display:none;
}
.l_c01446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01446:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01446 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01446.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01446;src:url('chunks/assets/font_43774ebf80695d1486b52165.woff2')format("woff");}.ff1_c01446{font-family:ff1_c01446;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01446;src:url('chunks/assets/font_fb6016465401d1c5d9643881.woff2')format("woff");}.ff2_c01446{font-family:ff2_c01446;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01446;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff3_c01446{font-family:ff3_c01446;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01446;src:url('chunks/assets/font_1b7715d008eddb7e5a41b54a.woff2')format("woff");}.ff4_c01446{font-family:ff4_c01446;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01446;src:url('chunks/assets/font_af8d4be404d954dca4b979fa.woff2')format("woff");}.ff5_c01446{font-family:ff5_c01446;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01446{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01446{vertical-align:0.000000px;}
.ls3_c01446{letter-spacing:0.000000px;}
.ls0_c01446{letter-spacing:0.087998px;}
.ls1_c01446{letter-spacing:0.098482px;}
.ls2_c01446{letter-spacing:0.104482px;}
.sc__c01446{text-shadow:none;}
.sc0_c01446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01446{-webkit-text-stroke:0px transparent;}
.sc0_c01446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c01446{word-spacing:-33.713438px;}
.ws1_c01446{word-spacing:-26.575517px;}
.ws2_c01446{word-spacing:-26.487518px;}
.wsf_c01446{word-spacing:-21.553319px;}
.wse_c01446{word-spacing:-21.519216px;}
.wsb_c01446{word-spacing:-18.829314px;}
.ws9_c01446{word-spacing:-18.769538px;}
.wsd_c01446{word-spacing:-17.633802px;}
.wsa_c01446{word-spacing:-15.003676px;}
.ws8_c01446{word-spacing:-14.943900px;}
.ws10_c01446{word-spacing:-14.107042px;}
.ws11_c01446{word-spacing:-12.074671px;}
.ws6_c01446{word-spacing:-9.988424px;}
.ws7_c01446{word-spacing:-9.987499px;}
.wsc_c01446{word-spacing:-7.686144px;}
.ws0_c01446{word-spacing:0.000000px;}
.ws3_c01446{word-spacing:0.043999px;}
.ws4_c01446{word-spacing:0.213446px;}
.ws5_c01446{word-spacing:43.038600px;}
._2_c01446{margin-left:-7.833025px;}
._6_c01446{margin-left:-3.825638px;}
._3_c01446{margin-left:-1.549390px;}
._1_c01446{width:1.041538px;}
._4_c01446{width:19.935816px;}
._5_c01446{width:40.109428px;}
._0_c01446{width:106.654061px;}
.fc5_c01446{color:rgb(0,0,207);}
.fc6_c01446{color:rgb(6,69,173);}
.fc4_c01446{color:rgb(207,92,0);}
.fc3_c01446{color:rgb(79,153,5);}
.fc2_c01446{color:rgb(33,74,135);}
.fc1_c01446{color:rgb(0,0,0);}
.fc0_c01446{color:rgb(143,89,3);}
.fs0_c01446{font-size:43.999200px;}
.fs2_c01446{font-size:59.775600px;}
.fs1_c01446{font-size:86.077200px;}
.y0_c01446{bottom:0.000000px;}
.y21_c01446{bottom:44.250000px;}
.y20_c01446{bottom:82.051500px;}
.y1f_c01446{bottom:99.984000px;}
.y1e_c01446{bottom:117.916500px;}
.y1d_c01446{bottom:135.849000px;}
.y1c_c01446{bottom:153.781500px;}
.y1b_c01446{bottom:171.714000px;}
.y1a_c01446{bottom:197.988000px;}
.y19_c01446{bottom:224.260500px;}
.y18_c01446{bottom:250.533000px;}
.y17_c01446{bottom:276.805500px;}
.y16_c01446{bottom:318.450000px;}
.y15_c01446{bottom:781.780500px;}
.y14_c01446{bottom:798.219000px;}
.y13_c01446{bottom:814.657500px;}
.y12_c01446{bottom:831.096000px;}
.y11_c01446{bottom:847.534500px;}
.y10_c01446{bottom:863.973000px;}
.yf_c01446{bottom:880.411500px;}
.ye_c01446{bottom:896.848500px;}
.yd_c01446{bottom:913.287000px;}
.yc_c01446{bottom:929.725500px;}
.yb_c01446{bottom:946.164000px;}
.ya_c01446{bottom:979.041000px;}
.y9_c01446{bottom:995.479500px;}
.y8_c01446{bottom:1011.918000px;}
.y7_c01446{bottom:1044.795000px;}
.y6_c01446{bottom:1061.232000px;}
.y5_c01446{bottom:1077.670500px;}
.y4_c01446{bottom:1094.109000px;}
.y3_c01446{bottom:1110.547500px;}
.y2_c01446{bottom:1126.986000px;}
.y1_c01446{bottom:1159.863000px;}
.h2_c01446{height:35.190766px;}
.h3_c01446{height:36.007158px;}
.h5_c01446{height:40.511979px;}
.h6_c01446{height:52.332837px;}
.h4_c01446{height:58.337477px;}
.h0_c01446{height:1262.835000px;}
.h1_c01446{height:1263.000000px;}
.w0_c01446{width:892.920000px;}
.w1_c01446{width:893.250000px;}
.x0_c01446{left:0.000000px;}
.x3_c01446{left:127.558500px;}
.x1_c01446{left:137.122500px;}
.x2_c01446{left:177.007500px;}
.x4_c01446{left:435.249000px;}
@media print{
.v0_c01446{vertical-align:0.000000pt;}
.ls3_c01446{letter-spacing:0.000000pt;}
.ls0_c01446{letter-spacing:0.078221pt;}
.ls1_c01446{letter-spacing:0.087539pt;}
.ls2_c01446{letter-spacing:0.092873pt;}
.ws12_c01446{word-spacing:-29.967501pt;}
.ws1_c01446{word-spacing:-23.622682pt;}
.ws2_c01446{word-spacing:-23.544461pt;}
.wsf_c01446{word-spacing:-19.158506pt;}
.wse_c01446{word-spacing:-19.128192pt;}
.wsb_c01446{word-spacing:-16.737168pt;}
.ws9_c01446{word-spacing:-16.684034pt;}
.wsd_c01446{word-spacing:-15.674491pt;}
.wsa_c01446{word-spacing:-13.336601pt;}
.ws8_c01446{word-spacing:-13.283467pt;}
.ws10_c01446{word-spacing:-12.539593pt;}
.ws11_c01446{word-spacing:-10.733041pt;}
.ws6_c01446{word-spacing:-8.878599pt;}
.ws7_c01446{word-spacing:-8.877777pt;}
.wsc_c01446{word-spacing:-6.832128pt;}
.ws0_c01446{word-spacing:0.000000pt;}
.ws3_c01446{word-spacing:0.039110pt;}
.ws4_c01446{word-spacing:0.189730pt;}
.ws5_c01446{word-spacing:38.256533pt;}
._2_c01446{margin-left:-6.962689pt;}
._6_c01446{margin-left:-3.400567pt;}
._3_c01446{margin-left:-1.377235pt;}
._1_c01446{width:0.925811pt;}
._4_c01446{width:17.720725pt;}
._5_c01446{width:35.652825pt;}
._0_c01446{width:94.803610pt;}
.fs0_c01446{font-size:39.110400pt;}
.fs2_c01446{font-size:53.133867pt;}
.fs1_c01446{font-size:76.513067pt;}
.y0_c01446{bottom:0.000000pt;}
.y21_c01446{bottom:39.333333pt;}
.y20_c01446{bottom:72.934667pt;}
.y1f_c01446{bottom:88.874667pt;}
.y1e_c01446{bottom:104.814667pt;}
.y1d_c01446{bottom:120.754667pt;}
.y1c_c01446{bottom:136.694667pt;}
.y1b_c01446{bottom:152.634667pt;}
.y1a_c01446{bottom:175.989333pt;}
.y19_c01446{bottom:199.342667pt;}
.y18_c01446{bottom:222.696000pt;}
.y17_c01446{bottom:246.049333pt;}
.y16_c01446{bottom:283.066667pt;}
.y15_c01446{bottom:694.916000pt;}
.y14_c01446{bottom:709.528000pt;}
.y13_c01446{bottom:724.140000pt;}
.y12_c01446{bottom:738.752000pt;}
.y11_c01446{bottom:753.364000pt;}
.y10_c01446{bottom:767.976000pt;}
.yf_c01446{bottom:782.588000pt;}
.ye_c01446{bottom:797.198667pt;}
.yd_c01446{bottom:811.810667pt;}
.yc_c01446{bottom:826.422667pt;}
.yb_c01446{bottom:841.034667pt;}
.ya_c01446{bottom:870.258667pt;}
.y9_c01446{bottom:884.870667pt;}
.y8_c01446{bottom:899.482667pt;}
.y7_c01446{bottom:928.706667pt;}
.y6_c01446{bottom:943.317333pt;}
.y5_c01446{bottom:957.929333pt;}
.y4_c01446{bottom:972.541333pt;}
.y3_c01446{bottom:987.153333pt;}
.y2_c01446{bottom:1001.765333pt;}
.y1_c01446{bottom:1030.989333pt;}
.h2_c01446{height:31.280681pt;}
.h3_c01446{height:32.006363pt;}
.h5_c01446{height:36.010648pt;}
.h6_c01446{height:46.518078pt;}
.h4_c01446{height:51.855535pt;}
.h0_c01446{height:1122.520000pt;}
.h1_c01446{height:1122.666667pt;}
.w0_c01446{width:793.706667pt;}
.w1_c01446{width:794.000000pt;}
.x0_c01446{left:0.000000pt;}
.x3_c01446{left:113.385333pt;}
.x1_c01446{left:121.886667pt;}
.x2_c01446{left:157.340000pt;}
.x4_c01446{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01447 {
    display:none;
  }
  .loading-indicator_c01447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01447 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01447 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01447" -> "#page-container .classname_c01447")
 */
.pf_c01447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01447 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01447 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01447 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01447 {overflow:visible;}
  }
}
.c_c01447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01447 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01447:after { /* webkit #35443 */
  content: '';
}
.t_c01447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01447 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01447 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01447 { /* info for Javascript */
  display:none;
}
.l_c01447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01447:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01447 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01447.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01447;src:url('chunks/assets/font_7fce76cb970070d58f5dcec5.woff2')format("woff");}.ff1_c01447{font-family:ff1_c01447;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01447;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff2_c01447{font-family:ff2_c01447;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01447;src:url('chunks/assets/font_49472297bc3cfb937f29daf7.woff2')format("woff");}.ff3_c01447{font-family:ff3_c01447;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01447;src:url('chunks/assets/font_cfbed60d797b49b0621a84d7.woff2')format("woff");}.ff4_c01447{font-family:ff4_c01447;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01447{vertical-align:0.000000px;}
.ls4_c01447{letter-spacing:0.000000px;}
.ls1_c01447{letter-spacing:0.087998px;}
.ls2_c01447{letter-spacing:0.098482px;}
.ls0_c01447{letter-spacing:0.104482px;}
.ls3_c01447{letter-spacing:26.690482px;}
.sc__c01447{text-shadow:none;}
.sc0_c01447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01447{-webkit-text-stroke:0px transparent;}
.sc0_c01447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01447{word-spacing:-26.575517px;}
.ws1_c01447{word-spacing:-26.487518px;}
.ws6_c01447{word-spacing:0.000000px;}
.ws3_c01447{word-spacing:0.043999px;}
.ws9_c01447{word-spacing:0.056767px;}
.ws7_c01447{word-spacing:0.073250px;}
.ws8_c01447{word-spacing:0.083734px;}
.ws0_c01447{word-spacing:0.175997px;}
.wsa_c01447{word-spacing:0.202963px;}
.ws4_c01447{word-spacing:0.213446px;}
.ws5_c01447{word-spacing:0.219446px;}
._0_c01447{width:1.005737px;}
._2_c01447{width:53.283031px;}
._1_c01447{width:79.858548px;}
._4_c01447{width:106.654061px;}
._3_c01447{width:133.452408px;}
.fc5_c01447{color:rgb(0,0,207);}
.fc4_c01447{color:rgb(79,153,5);}
.fc3_c01447{color:rgb(207,92,0);}
.fc2_c01447{color:rgb(0,0,0);}
.fc1_c01447{color:rgb(33,74,135);}
.fc0_c01447{color:rgb(143,89,3);}
.fs0_c01447{font-size:43.999200px;}
.fs1_c01447{font-size:59.775600px;}
.y0_c01447{bottom:0.000000px;}
.y29_c01447{bottom:44.250000px;}
.y28_c01447{bottom:383.599500px;}
.y27_c01447{bottom:400.038000px;}
.y26_c01447{bottom:416.475000px;}
.y25_c01447{bottom:432.913500px;}
.y24_c01447{bottom:449.352000px;}
.y23_c01447{bottom:465.790500px;}
.y22_c01447{bottom:482.229000px;}
.y21_c01447{bottom:498.667500px;}
.y20_c01447{bottom:515.106000px;}
.y1f_c01447{bottom:531.544500px;}
.y1e_c01447{bottom:547.983000px;}
.y1d_c01447{bottom:580.858500px;}
.y1c_c01447{bottom:597.297000px;}
.y1b_c01447{bottom:613.735500px;}
.y1a_c01447{bottom:646.612500px;}
.y19_c01447{bottom:663.051000px;}
.y18_c01447{bottom:679.489500px;}
.y17_c01447{bottom:695.928000px;}
.y16_c01447{bottom:712.366500px;}
.y15_c01447{bottom:728.805000px;}
.y14_c01447{bottom:761.680500px;}
.y13_c01447{bottom:810.996000px;}
.y12_c01447{bottom:827.434500px;}
.y11_c01447{bottom:843.873000px;}
.y10_c01447{bottom:860.311500px;}
.yf_c01447{bottom:876.750000px;}
.ye_c01447{bottom:893.188500px;}
.yd_c01447{bottom:909.627000px;}
.yc_c01447{bottom:926.064000px;}
.yb_c01447{bottom:942.502500px;}
.ya_c01447{bottom:958.941000px;}
.y9_c01447{bottom:975.379500px;}
.y8_c01447{bottom:991.818000px;}
.y7_c01447{bottom:1008.256500px;}
.y6_c01447{bottom:1024.695000px;}
.y5_c01447{bottom:1041.133500px;}
.y4_c01447{bottom:1074.010500px;}
.y3_c01447{bottom:1106.886000px;}
.y2_c01447{bottom:1123.324500px;}
.y1_c01447{bottom:1139.389500px;}
.h2_c01447{height:35.190766px;}
.h3_c01447{height:36.007158px;}
.h4_c01447{height:52.332837px;}
.h0_c01447{height:1262.835000px;}
.h1_c01447{height:1263.000000px;}
.w0_c01447{width:892.920000px;}
.w1_c01447{width:893.250000px;}
.x0_c01447{left:0.000000px;}
.x1_c01447{left:137.122500px;}
.x2_c01447{left:143.770500px;}
.x3_c01447{left:177.007500px;}
.x4_c01447{left:435.249000px;}
@media print{
.v0_c01447{vertical-align:0.000000pt;}
.ls4_c01447{letter-spacing:0.000000pt;}
.ls1_c01447{letter-spacing:0.078221pt;}
.ls2_c01447{letter-spacing:0.087539pt;}
.ls0_c01447{letter-spacing:0.092873pt;}
.ls3_c01447{letter-spacing:23.724873pt;}
.ws2_c01447{word-spacing:-23.622682pt;}
.ws1_c01447{word-spacing:-23.544461pt;}
.ws6_c01447{word-spacing:0.000000pt;}
.ws3_c01447{word-spacing:0.039110pt;}
.ws9_c01447{word-spacing:0.050460pt;}
.ws7_c01447{word-spacing:0.065111pt;}
.ws8_c01447{word-spacing:0.074430pt;}
.ws0_c01447{word-spacing:0.156442pt;}
.wsa_c01447{word-spacing:0.180412pt;}
.ws4_c01447{word-spacing:0.189730pt;}
.ws5_c01447{word-spacing:0.195063pt;}
._0_c01447{width:0.893988pt;}
._2_c01447{width:47.362694pt;}
._1_c01447{width:70.985376pt;}
._4_c01447{width:94.803610pt;}
._3_c01447{width:118.624363pt;}
.fs0_c01447{font-size:39.110400pt;}
.fs1_c01447{font-size:53.133867pt;}
.y0_c01447{bottom:0.000000pt;}
.y29_c01447{bottom:39.333333pt;}
.y28_c01447{bottom:340.977333pt;}
.y27_c01447{bottom:355.589333pt;}
.y26_c01447{bottom:370.200000pt;}
.y25_c01447{bottom:384.812000pt;}
.y24_c01447{bottom:399.424000pt;}
.y23_c01447{bottom:414.036000pt;}
.y22_c01447{bottom:428.648000pt;}
.y21_c01447{bottom:443.260000pt;}
.y20_c01447{bottom:457.872000pt;}
.y1f_c01447{bottom:472.484000pt;}
.y1e_c01447{bottom:487.096000pt;}
.y1d_c01447{bottom:516.318667pt;}
.y1c_c01447{bottom:530.930667pt;}
.y1b_c01447{bottom:545.542667pt;}
.y1a_c01447{bottom:574.766667pt;}
.y19_c01447{bottom:589.378667pt;}
.y18_c01447{bottom:603.990667pt;}
.y17_c01447{bottom:618.602667pt;}
.y16_c01447{bottom:633.214667pt;}
.y15_c01447{bottom:647.826667pt;}
.y14_c01447{bottom:677.049333pt;}
.y13_c01447{bottom:720.885333pt;}
.y12_c01447{bottom:735.497333pt;}
.y11_c01447{bottom:750.109333pt;}
.y10_c01447{bottom:764.721333pt;}
.yf_c01447{bottom:779.333333pt;}
.ye_c01447{bottom:793.945333pt;}
.yd_c01447{bottom:808.557333pt;}
.yc_c01447{bottom:823.168000pt;}
.yb_c01447{bottom:837.780000pt;}
.ya_c01447{bottom:852.392000pt;}
.y9_c01447{bottom:867.004000pt;}
.y8_c01447{bottom:881.616000pt;}
.y7_c01447{bottom:896.228000pt;}
.y6_c01447{bottom:910.840000pt;}
.y5_c01447{bottom:925.452000pt;}
.y4_c01447{bottom:954.676000pt;}
.y3_c01447{bottom:983.898667pt;}
.y2_c01447{bottom:998.510667pt;}
.y1_c01447{bottom:1012.790667pt;}
.h2_c01447{height:31.280681pt;}
.h3_c01447{height:32.006363pt;}
.h4_c01447{height:46.518078pt;}
.h0_c01447{height:1122.520000pt;}
.h1_c01447{height:1122.666667pt;}
.w0_c01447{width:793.706667pt;}
.w1_c01447{width:794.000000pt;}
.x0_c01447{left:0.000000pt;}
.x1_c01447{left:121.886667pt;}
.x2_c01447{left:127.796000pt;}
.x3_c01447{left:157.340000pt;}
.x4_c01447{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01448 {
    display:none;
  }
  .loading-indicator_c01448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01448 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01448 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01448" -> "#page-container .classname_c01448")
 */
.pf_c01448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01448 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01448 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01448 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01448 {overflow:visible;}
  }
}
.c_c01448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01448 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01448:after { /* webkit #35443 */
  content: '';
}
.t_c01448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01448 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01448 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01448 { /* info for Javascript */
  display:none;
}
.l_c01448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01448:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01448 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01448.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01448;src:url('chunks/assets/font_af74ddde0f2479ec82a51128.woff2')format("woff");}.ff1_c01448{font-family:ff1_c01448;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01448;src:url('chunks/assets/font_9784c56c27becf91a777e0aa.woff2')format("woff");}.ff2_c01448{font-family:ff2_c01448;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01448;src:url('chunks/assets/font_d55c3f66a6d73bcc22892af8.woff2')format("woff");}.ff3_c01448{font-family:ff3_c01448;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01448;src:url('chunks/assets/font_303def58c95a479d4768b4e7.woff2')format("woff");}.ff4_c01448{font-family:ff4_c01448;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01448;src:url('chunks/assets/font_b8cd62317604401273522d5d.woff2')format("woff");}.ff5_c01448{font-family:ff5_c01448;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01448{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01448{vertical-align:0.000000px;}
.ls4_c01448{letter-spacing:0.000000px;}
.ls0_c01448{letter-spacing:0.087998px;}
.ls2_c01448{letter-spacing:0.098482px;}
.ls1_c01448{letter-spacing:0.104482px;}
.ls3_c01448{letter-spacing:26.690482px;}
.sc__c01448{text-shadow:none;}
.sc0_c01448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01448{-webkit-text-stroke:0px transparent;}
.sc0_c01448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01448{word-spacing:-33.713438px;}
.ws2_c01448{word-spacing:-26.575517px;}
.ws10_c01448{word-spacing:-26.487518px;}
.wsb_c01448{word-spacing:-21.553319px;}
.wsa_c01448{word-spacing:-21.519216px;}
.ws7_c01448{word-spacing:-21.399665px;}
.ws9_c01448{word-spacing:-19.247743px;}
.ws5_c01448{word-spacing:-18.769538px;}
.ws6_c01448{word-spacing:-17.633802px;}
.ws4_c01448{word-spacing:-14.943900px;}
.wsc_c01448{word-spacing:-14.107042px;}
.wsd_c01448{word-spacing:-12.074671px;}
.ws8_c01448{word-spacing:-10.230144px;}
.ws1_c01448{word-spacing:-9.988424px;}
.ws3_c01448{word-spacing:-9.987499px;}
.ws14_c01448{word-spacing:0.000000px;}
.ws11_c01448{word-spacing:0.043999px;}
.ws17_c01448{word-spacing:0.056767px;}
.ws15_c01448{word-spacing:0.073250px;}
.ws16_c01448{word-spacing:0.083734px;}
.wsf_c01448{word-spacing:0.175997px;}
.ws18_c01448{word-spacing:0.202963px;}
.ws12_c01448{word-spacing:0.213446px;}
.ws13_c01448{word-spacing:0.219446px;}
.ws0_c01448{word-spacing:43.038600px;}
._0_c01448{margin-left:-7.833025px;}
._5_c01448{margin-left:-3.825638px;}
._1_c01448{margin-left:-1.549390px;}
._6_c01448{width:1.005737px;}
._3_c01448{width:18.648402px;}
._2_c01448{width:19.935816px;}
._4_c01448{width:40.109428px;}
._8_c01448{width:53.283031px;}
._7_c01448{width:79.858548px;}
._9_c01448{width:133.452408px;}
.fc6_c01448{color:rgb(0,0,207);}
.fc5_c01448{color:rgb(79,153,5);}
.fc3_c01448{color:rgb(33,74,135);}
.fc2_c01448{color:rgb(143,89,3);}
.fc4_c01448{color:rgb(207,92,0);}
.fc1_c01448{color:rgb(6,69,173);}
.fc0_c01448{color:rgb(0,0,0);}
.fs2_c01448{font-size:43.999200px;}
.fs1_c01448{font-size:59.775600px;}
.fs0_c01448{font-size:86.077200px;}
.y0_c01448{bottom:0.000000px;}
.y20_c01448{bottom:44.250000px;}
.y1f_c01448{bottom:86.982000px;}
.y1e_c01448{bottom:119.859000px;}
.y1d_c01448{bottom:136.297500px;}
.y1c_c01448{bottom:152.736000px;}
.y1b_c01448{bottom:169.174500px;}
.y1a_c01448{bottom:185.613000px;}
.y19_c01448{bottom:202.051500px;}
.y18_c01448{bottom:218.490000px;}
.y17_c01448{bottom:234.927000px;}
.y16_c01448{bottom:251.365500px;}
.y15_c01448{bottom:267.804000px;}
.y14_c01448{bottom:284.242500px;}
.y13_c01448{bottom:300.681000px;}
.y12_c01448{bottom:317.119500px;}
.y11_c01448{bottom:333.558000px;}
.y10_c01448{bottom:349.996500px;}
.yf_c01448{bottom:382.873500px;}
.ye_c01448{bottom:415.749000px;}
.yd_c01448{bottom:432.187500px;}
.yc_c01448{bottom:448.252500px;}
.yb_c01448{bottom:493.890000px;}
.ya_c01448{bottom:511.822500px;}
.y9_c01448{bottom:529.756500px;}
.y8_c01448{bottom:547.689000px;}
.y7_c01448{bottom:565.621500px;}
.y6_c01448{bottom:583.554000px;}
.y5_c01448{bottom:610.633500px;}
.y4_c01448{bottom:637.714500px;}
.y3_c01448{bottom:664.794000px;}
.y2_c01448{bottom:691.873500px;}
.y1_c01448{bottom:734.407500px;}
.h5_c01448{height:35.190766px;}
.h6_c01448{height:36.007158px;}
.h3_c01448{height:40.511979px;}
.h4_c01448{height:52.332837px;}
.h2_c01448{height:58.337477px;}
.h0_c01448{height:1262.835000px;}
.h1_c01448{height:1263.000000px;}
.w0_c01448{width:892.920000px;}
.w1_c01448{width:893.250000px;}
.x0_c01448{left:0.000000px;}
.x1_c01448{left:127.558500px;}
.x2_c01448{left:137.122500px;}
.x3_c01448{left:143.770500px;}
.x4_c01448{left:435.249000px;}
@media print{
.v0_c01448{vertical-align:0.000000pt;}
.ls4_c01448{letter-spacing:0.000000pt;}
.ls0_c01448{letter-spacing:0.078221pt;}
.ls2_c01448{letter-spacing:0.087539pt;}
.ls1_c01448{letter-spacing:0.092873pt;}
.ls3_c01448{letter-spacing:23.724873pt;}
.wse_c01448{word-spacing:-29.967501pt;}
.ws2_c01448{word-spacing:-23.622682pt;}
.ws10_c01448{word-spacing:-23.544461pt;}
.wsb_c01448{word-spacing:-19.158506pt;}
.wsa_c01448{word-spacing:-19.128192pt;}
.ws7_c01448{word-spacing:-19.021924pt;}
.ws9_c01448{word-spacing:-17.109105pt;}
.ws5_c01448{word-spacing:-16.684034pt;}
.ws6_c01448{word-spacing:-15.674491pt;}
.ws4_c01448{word-spacing:-13.283467pt;}
.wsc_c01448{word-spacing:-12.539593pt;}
.wsd_c01448{word-spacing:-10.733041pt;}
.ws8_c01448{word-spacing:-9.093461pt;}
.ws1_c01448{word-spacing:-8.878599pt;}
.ws3_c01448{word-spacing:-8.877777pt;}
.ws14_c01448{word-spacing:0.000000pt;}
.ws11_c01448{word-spacing:0.039110pt;}
.ws17_c01448{word-spacing:0.050460pt;}
.ws15_c01448{word-spacing:0.065111pt;}
.ws16_c01448{word-spacing:0.074430pt;}
.wsf_c01448{word-spacing:0.156442pt;}
.ws18_c01448{word-spacing:0.180412pt;}
.ws12_c01448{word-spacing:0.189730pt;}
.ws13_c01448{word-spacing:0.195063pt;}
.ws0_c01448{word-spacing:38.256533pt;}
._0_c01448{margin-left:-6.962689pt;}
._5_c01448{margin-left:-3.400567pt;}
._1_c01448{margin-left:-1.377235pt;}
._6_c01448{width:0.893988pt;}
._3_c01448{width:16.576357pt;}
._2_c01448{width:17.720725pt;}
._4_c01448{width:35.652825pt;}
._8_c01448{width:47.362694pt;}
._7_c01448{width:70.985376pt;}
._9_c01448{width:118.624363pt;}
.fs2_c01448{font-size:39.110400pt;}
.fs1_c01448{font-size:53.133867pt;}
.fs0_c01448{font-size:76.513067pt;}
.y0_c01448{bottom:0.000000pt;}
.y20_c01448{bottom:39.333333pt;}
.y1f_c01448{bottom:77.317333pt;}
.y1e_c01448{bottom:106.541333pt;}
.y1d_c01448{bottom:121.153333pt;}
.y1c_c01448{bottom:135.765333pt;}
.y1b_c01448{bottom:150.377333pt;}
.y1a_c01448{bottom:164.989333pt;}
.y19_c01448{bottom:179.601333pt;}
.y18_c01448{bottom:194.213333pt;}
.y17_c01448{bottom:208.824000pt;}
.y16_c01448{bottom:223.436000pt;}
.y15_c01448{bottom:238.048000pt;}
.y14_c01448{bottom:252.660000pt;}
.y13_c01448{bottom:267.272000pt;}
.y12_c01448{bottom:281.884000pt;}
.y11_c01448{bottom:296.496000pt;}
.y10_c01448{bottom:311.108000pt;}
.yf_c01448{bottom:340.332000pt;}
.ye_c01448{bottom:369.554667pt;}
.yd_c01448{bottom:384.166667pt;}
.yc_c01448{bottom:398.446667pt;}
.yb_c01448{bottom:439.013333pt;}
.ya_c01448{bottom:454.953333pt;}
.y9_c01448{bottom:470.894667pt;}
.y8_c01448{bottom:486.834667pt;}
.y7_c01448{bottom:502.774667pt;}
.y6_c01448{bottom:518.714667pt;}
.y5_c01448{bottom:542.785333pt;}
.y4_c01448{bottom:566.857333pt;}
.y3_c01448{bottom:590.928000pt;}
.y2_c01448{bottom:614.998667pt;}
.y1_c01448{bottom:652.806667pt;}
.h5_c01448{height:31.280681pt;}
.h6_c01448{height:32.006363pt;}
.h3_c01448{height:36.010648pt;}
.h4_c01448{height:46.518078pt;}
.h2_c01448{height:51.855535pt;}
.h0_c01448{height:1122.520000pt;}
.h1_c01448{height:1122.666667pt;}
.w0_c01448{width:793.706667pt;}
.w1_c01448{width:794.000000pt;}
.x0_c01448{left:0.000000pt;}
.x1_c01448{left:113.385333pt;}
.x2_c01448{left:121.886667pt;}
.x3_c01448{left:127.796000pt;}
.x4_c01448{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01449 {
    display:none;
  }
  .loading-indicator_c01449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01449 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01449 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01449" -> "#page-container .classname_c01449")
 */
.pf_c01449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01449 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01449 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01449 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01449 {overflow:visible;}
  }
}
.c_c01449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01449 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01449:after { /* webkit #35443 */
  content: '';
}
.t_c01449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01449 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01449 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01449 { /* info for Javascript */
  display:none;
}
.l_c01449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01449:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01449 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01449.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01449;src:url('chunks/assets/font_1da50b6969a0707ed31a3efe.woff2')format("woff");}.ff1_c01449{font-family:ff1_c01449;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01449;src:url('chunks/assets/font_757da6b76681da2bdd21c11c.woff2')format("woff");}.ff2_c01449{font-family:ff2_c01449;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01449;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff3_c01449{font-family:ff3_c01449;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01449;src:url('chunks/assets/font_4c85e13c299c0f0f46c96f10.woff2')format("woff");}.ff4_c01449{font-family:ff4_c01449;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01449;src:url('chunks/assets/font_caa45e77637a4efb397d7e6d.woff2')format("woff");}.ff5_c01449{font-family:ff5_c01449;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01449{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01449{vertical-align:0.000000px;}
.ls3_c01449{letter-spacing:0.000000px;}
.ls0_c01449{letter-spacing:0.087998px;}
.ls1_c01449{letter-spacing:0.098482px;}
.ls2_c01449{letter-spacing:0.104482px;}
.sc__c01449{text-shadow:none;}
.sc0_c01449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01449{-webkit-text-stroke:0px transparent;}
.sc0_c01449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01449{word-spacing:-26.575517px;}
.ws2_c01449{word-spacing:-26.487518px;}
.ws9_c01449{word-spacing:-18.769538px;}
.wsd_c01449{word-spacing:-15.661207px;}
.wsc_c01449{word-spacing:-15.541656px;}
.ws8_c01449{word-spacing:-14.943900px;}
.ws6_c01449{word-spacing:-9.988424px;}
.ws7_c01449{word-spacing:-9.987499px;}
.wsb_c01449{word-spacing:-5.499355px;}
.ws1_c01449{word-spacing:0.000000px;}
.ws3_c01449{word-spacing:0.043999px;}
.wse_c01449{word-spacing:0.175997px;}
.ws4_c01449{word-spacing:0.213446px;}
.wsa_c01449{word-spacing:16.583856px;}
.ws5_c01449{word-spacing:43.038600px;}
._1_c01449{margin-left:-7.833025px;}
._3_c01449{margin-left:-4.423394px;}
._7_c01449{margin-left:-3.287658px;}
._4_c01449{margin-left:-1.075961px;}
._0_c01449{width:1.041538px;}
._2_c01449{width:19.935816px;}
._6_c01449{width:29.837620px;}
._5_c01449{width:59.692819px;}
.fc5_c01449{color:rgb(0,0,207);}
.fc6_c01449{color:rgb(6,69,173);}
.fc4_c01449{color:rgb(207,92,0);}
.fc3_c01449{color:rgb(79,153,5);}
.fc2_c01449{color:rgb(33,74,135);}
.fc1_c01449{color:rgb(143,89,3);}
.fc0_c01449{color:rgb(0,0,0);}
.fs0_c01449{font-size:43.999200px;}
.fs2_c01449{font-size:59.775600px;}
.fs1_c01449{font-size:86.077200px;}
.y0_c01449{bottom:0.000000px;}
.y1f_c01449{bottom:44.250000px;}
.y1e_c01449{bottom:82.051500px;}
.y1d_c01449{bottom:129.891000px;}
.y1c_c01449{bottom:147.823500px;}
.y1b_c01449{bottom:165.756000px;}
.y1a_c01449{bottom:183.688500px;}
.y19_c01449{bottom:210.526500px;}
.y18_c01449{bottom:237.364500px;}
.y17_c01449{bottom:264.202500px;}
.y16_c01449{bottom:291.040500px;}
.y15_c01449{bottom:333.252000px;}
.y14_c01449{bottom:798.219000px;}
.y13_c01449{bottom:814.657500px;}
.y12_c01449{bottom:831.096000px;}
.y11_c01449{bottom:847.534500px;}
.y10_c01449{bottom:863.973000px;}
.yf_c01449{bottom:880.411500px;}
.ye_c01449{bottom:896.848500px;}
.yd_c01449{bottom:913.287000px;}
.yc_c01449{bottom:929.725500px;}
.yb_c01449{bottom:946.164000px;}
.ya_c01449{bottom:962.602500px;}
.y9_c01449{bottom:995.479500px;}
.y8_c01449{bottom:1011.918000px;}
.y7_c01449{bottom:1028.356500px;}
.y6_c01449{bottom:1061.232000px;}
.y5_c01449{bottom:1077.670500px;}
.y4_c01449{bottom:1094.109000px;}
.y3_c01449{bottom:1110.547500px;}
.y2_c01449{bottom:1126.986000px;}
.y1_c01449{bottom:1143.424500px;}
.h3_c01449{height:35.190766px;}
.h2_c01449{height:36.007158px;}
.h5_c01449{height:40.511979px;}
.h6_c01449{height:52.332837px;}
.h4_c01449{height:58.337477px;}
.h0_c01449{height:1262.835000px;}
.h1_c01449{height:1263.000000px;}
.w0_c01449{width:892.920000px;}
.w1_c01449{width:893.250000px;}
.x0_c01449{left:0.000000px;}
.x3_c01449{left:127.558500px;}
.x1_c01449{left:137.122500px;}
.x2_c01449{left:177.007500px;}
.x4_c01449{left:435.249000px;}
@media print{
.v0_c01449{vertical-align:0.000000pt;}
.ls3_c01449{letter-spacing:0.000000pt;}
.ls0_c01449{letter-spacing:0.078221pt;}
.ls1_c01449{letter-spacing:0.087539pt;}
.ls2_c01449{letter-spacing:0.092873pt;}
.ws0_c01449{word-spacing:-23.622682pt;}
.ws2_c01449{word-spacing:-23.544461pt;}
.ws9_c01449{word-spacing:-16.684034pt;}
.wsd_c01449{word-spacing:-13.921073pt;}
.wsc_c01449{word-spacing:-13.814805pt;}
.ws8_c01449{word-spacing:-13.283467pt;}
.ws6_c01449{word-spacing:-8.878599pt;}
.ws7_c01449{word-spacing:-8.877777pt;}
.wsb_c01449{word-spacing:-4.888316pt;}
.ws1_c01449{word-spacing:0.000000pt;}
.ws3_c01449{word-spacing:0.039110pt;}
.wse_c01449{word-spacing:0.156442pt;}
.ws4_c01449{word-spacing:0.189730pt;}
.wsa_c01449{word-spacing:14.741205pt;}
.ws5_c01449{word-spacing:38.256533pt;}
._1_c01449{margin-left:-6.962689pt;}
._3_c01449{margin-left:-3.931906pt;}
._7_c01449{margin-left:-2.922363pt;}
._4_c01449{margin-left:-0.956410pt;}
._0_c01449{width:0.925811pt;}
._2_c01449{width:17.720725pt;}
._6_c01449{width:26.522329pt;}
._5_c01449{width:53.060284pt;}
.fs0_c01449{font-size:39.110400pt;}
.fs2_c01449{font-size:53.133867pt;}
.fs1_c01449{font-size:76.513067pt;}
.y0_c01449{bottom:0.000000pt;}
.y1f_c01449{bottom:39.333333pt;}
.y1e_c01449{bottom:72.934667pt;}
.y1d_c01449{bottom:115.458667pt;}
.y1c_c01449{bottom:131.398667pt;}
.y1b_c01449{bottom:147.338667pt;}
.y1a_c01449{bottom:163.278667pt;}
.y19_c01449{bottom:187.134667pt;}
.y18_c01449{bottom:210.990667pt;}
.y17_c01449{bottom:234.846667pt;}
.y16_c01449{bottom:258.702667pt;}
.y15_c01449{bottom:296.224000pt;}
.y14_c01449{bottom:709.528000pt;}
.y13_c01449{bottom:724.140000pt;}
.y12_c01449{bottom:738.752000pt;}
.y11_c01449{bottom:753.364000pt;}
.y10_c01449{bottom:767.976000pt;}
.yf_c01449{bottom:782.588000pt;}
.ye_c01449{bottom:797.198667pt;}
.yd_c01449{bottom:811.810667pt;}
.yc_c01449{bottom:826.422667pt;}
.yb_c01449{bottom:841.034667pt;}
.ya_c01449{bottom:855.646667pt;}
.y9_c01449{bottom:884.870667pt;}
.y8_c01449{bottom:899.482667pt;}
.y7_c01449{bottom:914.094667pt;}
.y6_c01449{bottom:943.317333pt;}
.y5_c01449{bottom:957.929333pt;}
.y4_c01449{bottom:972.541333pt;}
.y3_c01449{bottom:987.153333pt;}
.y2_c01449{bottom:1001.765333pt;}
.y1_c01449{bottom:1016.377333pt;}
.h3_c01449{height:31.280681pt;}
.h2_c01449{height:32.006363pt;}
.h5_c01449{height:36.010648pt;}
.h6_c01449{height:46.518078pt;}
.h4_c01449{height:51.855535pt;}
.h0_c01449{height:1122.520000pt;}
.h1_c01449{height:1122.666667pt;}
.w0_c01449{width:793.706667pt;}
.w1_c01449{width:794.000000pt;}
.x0_c01449{left:0.000000pt;}
.x3_c01449{left:113.385333pt;}
.x1_c01449{left:121.886667pt;}
.x2_c01449{left:157.340000pt;}
.x4_c01449{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01450 {
    display:none;
  }
  .loading-indicator_c01450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01450 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01450 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01450" -> "#page-container .classname_c01450")
 */
.pf_c01450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01450 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01450 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01450 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01450 {overflow:visible;}
  }
}
.c_c01450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01450 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01450:after { /* webkit #35443 */
  content: '';
}
.t_c01450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01450 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01450 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01450 { /* info for Javascript */
  display:none;
}
.l_c01450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01450:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01450 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01450.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01450;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff1_c01450{font-family:ff1_c01450;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01450;src:url('chunks/assets/font_0c27d0292c665a648ddfef6c.woff2')format("woff");}.ff2_c01450{font-family:ff2_c01450;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01450;src:url('chunks/assets/font_752d9d6ea1620bf42c5f7380.woff2')format("woff");}.ff3_c01450{font-family:ff3_c01450;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01450;src:url('chunks/assets/font_745449a0f217e13cd7ad6b9e.woff2')format("woff");}.ff4_c01450{font-family:ff4_c01450;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01450;src:url('chunks/assets/font_af09356603fc10caf0874a39.woff2')format("woff");}.ff5_c01450{font-family:ff5_c01450;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01450{vertical-align:0.000000px;}
.ls3_c01450{letter-spacing:0.000000px;}
.ls1_c01450{letter-spacing:0.087998px;}
.ls2_c01450{letter-spacing:0.098482px;}
.ls0_c01450{letter-spacing:0.104482px;}
.sc__c01450{text-shadow:none;}
.sc0_c01450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01450{-webkit-text-stroke:0px transparent;}
.sc0_c01450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01450{word-spacing:-26.575517px;}
.ws0_c01450{word-spacing:-26.487518px;}
.ws7_c01450{word-spacing:-9.988424px;}
.ws8_c01450{word-spacing:-9.987499px;}
.ws5_c01450{word-spacing:0.000000px;}
.ws2_c01450{word-spacing:0.043999px;}
.ws3_c01450{word-spacing:0.213446px;}
.ws4_c01450{word-spacing:0.219446px;}
.ws6_c01450{word-spacing:43.038600px;}
._2_c01450{margin-left:-7.833025px;}
._0_c01450{width:1.005737px;}
._1_c01450{width:53.503027px;}
.fc5_c01450{color:rgb(0,0,207);}
.fc4_c01450{color:rgb(143,89,3);}
.fc3_c01450{color:rgb(79,153,5);}
.fc2_c01450{color:rgb(207,92,0);}
.fc1_c01450{color:rgb(0,0,0);}
.fc0_c01450{color:rgb(33,74,135);}
.fs0_c01450{font-size:43.999200px;}
.fs2_c01450{font-size:59.775600px;}
.fs1_c01450{font-size:86.077200px;}
.y0_c01450{bottom:0.000000px;}
.y21_c01450{bottom:44.250000px;}
.y20_c01450{bottom:82.051500px;}
.y1f_c01450{bottom:109.104000px;}
.y1e_c01450{bottom:151.599000px;}
.y1d_c01450{bottom:617.397000px;}
.y1c_c01450{bottom:633.835500px;}
.y1b_c01450{bottom:650.274000px;}
.y1a_c01450{bottom:666.712500px;}
.y19_c01450{bottom:683.151000px;}
.y18_c01450{bottom:699.589500px;}
.y17_c01450{bottom:716.028000px;}
.y16_c01450{bottom:732.465000px;}
.y15_c01450{bottom:748.903500px;}
.y14_c01450{bottom:765.342000px;}
.y13_c01450{bottom:781.780500px;}
.y12_c01450{bottom:814.657500px;}
.y11_c01450{bottom:831.096000px;}
.y10_c01450{bottom:847.534500px;}
.yf_c01450{bottom:880.411500px;}
.ye_c01450{bottom:896.848500px;}
.yd_c01450{bottom:913.287000px;}
.yc_c01450{bottom:929.725500px;}
.yb_c01450{bottom:946.164000px;}
.ya_c01450{bottom:962.602500px;}
.y9_c01450{bottom:979.041000px;}
.y8_c01450{bottom:995.479500px;}
.y7_c01450{bottom:1011.918000px;}
.y6_c01450{bottom:1028.356500px;}
.y5_c01450{bottom:1061.232000px;}
.y4_c01450{bottom:1094.109000px;}
.y3_c01450{bottom:1110.547500px;}
.y2_c01450{bottom:1143.424500px;}
.y1_c01450{bottom:1159.863000px;}
.h3_c01450{height:35.190766px;}
.h2_c01450{height:36.007158px;}
.h5_c01450{height:40.511979px;}
.h6_c01450{height:52.332837px;}
.h4_c01450{height:58.337477px;}
.h0_c01450{height:1262.835000px;}
.h1_c01450{height:1263.000000px;}
.w0_c01450{width:892.920000px;}
.w1_c01450{width:893.250000px;}
.x0_c01450{left:0.000000px;}
.x4_c01450{left:127.558500px;}
.x1_c01450{left:137.122500px;}
.x2_c01450{left:170.359500px;}
.x3_c01450{left:177.007500px;}
.x5_c01450{left:435.249000px;}
@media print{
.v0_c01450{vertical-align:0.000000pt;}
.ls3_c01450{letter-spacing:0.000000pt;}
.ls1_c01450{letter-spacing:0.078221pt;}
.ls2_c01450{letter-spacing:0.087539pt;}
.ls0_c01450{letter-spacing:0.092873pt;}
.ws1_c01450{word-spacing:-23.622682pt;}
.ws0_c01450{word-spacing:-23.544461pt;}
.ws7_c01450{word-spacing:-8.878599pt;}
.ws8_c01450{word-spacing:-8.877777pt;}
.ws5_c01450{word-spacing:0.000000pt;}
.ws2_c01450{word-spacing:0.039110pt;}
.ws3_c01450{word-spacing:0.189730pt;}
.ws4_c01450{word-spacing:0.195063pt;}
.ws6_c01450{word-spacing:38.256533pt;}
._2_c01450{margin-left:-6.962689pt;}
._0_c01450{width:0.893988pt;}
._1_c01450{width:47.558246pt;}
.fs0_c01450{font-size:39.110400pt;}
.fs2_c01450{font-size:53.133867pt;}
.fs1_c01450{font-size:76.513067pt;}
.y0_c01450{bottom:0.000000pt;}
.y21_c01450{bottom:39.333333pt;}
.y20_c01450{bottom:72.934667pt;}
.y1f_c01450{bottom:96.981333pt;}
.y1e_c01450{bottom:134.754667pt;}
.y1d_c01450{bottom:548.797333pt;}
.y1c_c01450{bottom:563.409333pt;}
.y1b_c01450{bottom:578.021333pt;}
.y1a_c01450{bottom:592.633333pt;}
.y19_c01450{bottom:607.245333pt;}
.y18_c01450{bottom:621.857333pt;}
.y17_c01450{bottom:636.469333pt;}
.y16_c01450{bottom:651.080000pt;}
.y15_c01450{bottom:665.692000pt;}
.y14_c01450{bottom:680.304000pt;}
.y13_c01450{bottom:694.916000pt;}
.y12_c01450{bottom:724.140000pt;}
.y11_c01450{bottom:738.752000pt;}
.y10_c01450{bottom:753.364000pt;}
.yf_c01450{bottom:782.588000pt;}
.ye_c01450{bottom:797.198667pt;}
.yd_c01450{bottom:811.810667pt;}
.yc_c01450{bottom:826.422667pt;}
.yb_c01450{bottom:841.034667pt;}
.ya_c01450{bottom:855.646667pt;}
.y9_c01450{bottom:870.258667pt;}
.y8_c01450{bottom:884.870667pt;}
.y7_c01450{bottom:899.482667pt;}
.y6_c01450{bottom:914.094667pt;}
.y5_c01450{bottom:943.317333pt;}
.y4_c01450{bottom:972.541333pt;}
.y3_c01450{bottom:987.153333pt;}
.y2_c01450{bottom:1016.377333pt;}
.y1_c01450{bottom:1030.989333pt;}
.h3_c01450{height:31.280681pt;}
.h2_c01450{height:32.006363pt;}
.h5_c01450{height:36.010648pt;}
.h6_c01450{height:46.518078pt;}
.h4_c01450{height:51.855535pt;}
.h0_c01450{height:1122.520000pt;}
.h1_c01450{height:1122.666667pt;}
.w0_c01450{width:793.706667pt;}
.w1_c01450{width:794.000000pt;}
.x0_c01450{left:0.000000pt;}
.x4_c01450{left:113.385333pt;}
.x1_c01450{left:121.886667pt;}
.x2_c01450{left:151.430667pt;}
.x3_c01450{left:157.340000pt;}
.x5_c01450{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01451 {
    display:none;
  }
  .loading-indicator_c01451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01451" -> "#page-container .classname_c01451")
 */
.pf_c01451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01451 {overflow:visible;}
  }
}
.c_c01451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01451:after { /* webkit #35443 */
  content: '';
}
.t_c01451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01451 { /* info for Javascript */
  display:none;
}
.l_c01451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01451:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01451 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01451.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01451;src:url('chunks/assets/font_ea3e4a27f347ba2996d7feaa.woff2')format("woff");}.ff1_c01451{font-family:ff1_c01451;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01451;src:url('chunks/assets/font_fb75cf50cc8c618d3c3c4719.woff2')format("woff");}.ff2_c01451{font-family:ff2_c01451;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01451;src:url('chunks/assets/font_03493af111542183b3c75b84.woff2')format("woff");}.ff3_c01451{font-family:ff3_c01451;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01451;src:url('chunks/assets/font_8211d988426a31ff09071de7.woff2')format("woff");}.ff4_c01451{font-family:ff4_c01451;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01451;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff5_c01451{font-family:ff5_c01451;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01451{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01451{vertical-align:0.000000px;}
.ls3_c01451{letter-spacing:0.000000px;}
.ls0_c01451{letter-spacing:0.087998px;}
.ls2_c01451{letter-spacing:0.098482px;}
.ls1_c01451{letter-spacing:0.104482px;}
.sc__c01451{text-shadow:none;}
.sc0_c01451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01451{-webkit-text-stroke:0px transparent;}
.sc0_c01451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01451{word-spacing:-26.575517px;}
.ws9_c01451{word-spacing:-26.487518px;}
.ws1_c01451{word-spacing:-18.769538px;}
.ws6_c01451{word-spacing:-15.183002px;}
.ws0_c01451{word-spacing:-14.943900px;}
.ws7_c01451{word-spacing:-14.764573px;}
.ws3_c01451{word-spacing:-12.134447px;}
.ws4_c01451{word-spacing:-12.074671px;}
.wsd_c01451{word-spacing:0.000000px;}
.wsa_c01451{word-spacing:0.043999px;}
.ws8_c01451{word-spacing:0.175997px;}
.wsb_c01451{word-spacing:0.213446px;}
.wsc_c01451{word-spacing:0.219446px;}
.ws2_c01451{word-spacing:3.365856px;}
._1_c01451{margin-left:-4.423394px;}
._5_c01451{margin-left:-3.287658px;}
._2_c01451{margin-left:-1.075961px;}
._6_c01451{width:1.005737px;}
._0_c01451{width:19.935816px;}
._4_c01451{width:31.979946px;}
._3_c01451{width:40.284014px;}
._7_c01451{width:80.122543px;}
.fc6_c01451{color:rgb(0,0,207);}
.fc5_c01451{color:rgb(79,153,5);}
.fc3_c01451{color:rgb(33,74,135);}
.fc2_c01451{color:rgb(143,89,3);}
.fc4_c01451{color:rgb(207,92,0);}
.fc1_c01451{color:rgb(6,69,173);}
.fc0_c01451{color:rgb(0,0,0);}
.fs1_c01451{font-size:43.999200px;}
.fs0_c01451{font-size:59.775600px;}
.y0_c01451{bottom:0.000000px;}
.y25_c01451{bottom:44.250000px;}
.y24_c01451{bottom:96.919500px;}
.y23_c01451{bottom:113.358000px;}
.y22_c01451{bottom:129.796500px;}
.y21_c01451{bottom:146.235000px;}
.y20_c01451{bottom:162.673500px;}
.y1f_c01451{bottom:179.112000px;}
.y1e_c01451{bottom:195.550500px;}
.y1d_c01451{bottom:211.989000px;}
.y1c_c01451{bottom:228.427500px;}
.y1b_c01451{bottom:244.866000px;}
.y1a_c01451{bottom:261.304500px;}
.y19_c01451{bottom:294.180000px;}
.y18_c01451{bottom:310.618500px;}
.y17_c01451{bottom:327.057000px;}
.y16_c01451{bottom:359.934000px;}
.y15_c01451{bottom:376.372500px;}
.y14_c01451{bottom:392.811000px;}
.y13_c01451{bottom:409.249500px;}
.y12_c01451{bottom:425.688000px;}
.y11_c01451{bottom:442.125000px;}
.y10_c01451{bottom:458.563500px;}
.yf_c01451{bottom:475.002000px;}
.ye_c01451{bottom:491.440500px;}
.yd_c01451{bottom:507.879000px;}
.yc_c01451{bottom:524.317500px;}
.yb_c01451{bottom:573.633000px;}
.ya_c01451{bottom:590.071500px;}
.y9_c01451{bottom:622.947000px;}
.y8_c01451{bottom:639.385500px;}
.y7_c01451{bottom:655.450500px;}
.y6_c01451{bottom:897.316500px;}
.y5_c01451{bottom:915.249000px;}
.y4_c01451{bottom:933.181500px;}
.y3_c01451{bottom:951.114000px;}
.y2_c01451{bottom:1055.488500px;}
.y1_c01451{bottom:1159.863000px;}
.h3_c01451{height:35.190766px;}
.h4_c01451{height:36.007158px;}
.h2_c01451{height:52.332837px;}
.h0_c01451{height:1262.835000px;}
.h1_c01451{height:1263.000000px;}
.w0_c01451{width:892.920000px;}
.w1_c01451{width:893.250000px;}
.x0_c01451{left:0.000000px;}
.x1_c01451{left:127.558500px;}
.x2_c01451{left:137.122500px;}
.x3_c01451{left:170.359500px;}
.x4_c01451{left:177.007500px;}
.x5_c01451{left:435.249000px;}
@media print{
.v0_c01451{vertical-align:0.000000pt;}
.ls3_c01451{letter-spacing:0.000000pt;}
.ls0_c01451{letter-spacing:0.078221pt;}
.ls2_c01451{letter-spacing:0.087539pt;}
.ls1_c01451{letter-spacing:0.092873pt;}
.ws5_c01451{word-spacing:-23.622682pt;}
.ws9_c01451{word-spacing:-23.544461pt;}
.ws1_c01451{word-spacing:-16.684034pt;}
.ws6_c01451{word-spacing:-13.496002pt;}
.ws0_c01451{word-spacing:-13.283467pt;}
.ws7_c01451{word-spacing:-13.124065pt;}
.ws3_c01451{word-spacing:-10.786175pt;}
.ws4_c01451{word-spacing:-10.733041pt;}
.wsd_c01451{word-spacing:0.000000pt;}
.wsa_c01451{word-spacing:0.039110pt;}
.ws8_c01451{word-spacing:0.156442pt;}
.wsb_c01451{word-spacing:0.189730pt;}
.wsc_c01451{word-spacing:0.195063pt;}
.ws2_c01451{word-spacing:2.991872pt;}
._1_c01451{margin-left:-3.931906pt;}
._5_c01451{margin-left:-2.922363pt;}
._2_c01451{margin-left:-0.956410pt;}
._6_c01451{width:0.893988pt;}
._0_c01451{width:17.720725pt;}
._4_c01451{width:28.426619pt;}
._3_c01451{width:35.808013pt;}
._7_c01451{width:71.220038pt;}
.fs1_c01451{font-size:39.110400pt;}
.fs0_c01451{font-size:53.133867pt;}
.y0_c01451{bottom:0.000000pt;}
.y25_c01451{bottom:39.333333pt;}
.y24_c01451{bottom:86.150667pt;}
.y23_c01451{bottom:100.762667pt;}
.y22_c01451{bottom:115.374667pt;}
.y21_c01451{bottom:129.986667pt;}
.y20_c01451{bottom:144.598667pt;}
.y1f_c01451{bottom:159.210667pt;}
.y1e_c01451{bottom:173.822667pt;}
.y1d_c01451{bottom:188.434667pt;}
.y1c_c01451{bottom:203.046667pt;}
.y1b_c01451{bottom:217.658667pt;}
.y1a_c01451{bottom:232.270667pt;}
.y19_c01451{bottom:261.493333pt;}
.y18_c01451{bottom:276.105333pt;}
.y17_c01451{bottom:290.717333pt;}
.y16_c01451{bottom:319.941333pt;}
.y15_c01451{bottom:334.553333pt;}
.y14_c01451{bottom:349.165333pt;}
.y13_c01451{bottom:363.777333pt;}
.y12_c01451{bottom:378.389333pt;}
.y11_c01451{bottom:393.000000pt;}
.y10_c01451{bottom:407.612000pt;}
.yf_c01451{bottom:422.224000pt;}
.ye_c01451{bottom:436.836000pt;}
.yd_c01451{bottom:451.448000pt;}
.yc_c01451{bottom:466.060000pt;}
.yb_c01451{bottom:509.896000pt;}
.ya_c01451{bottom:524.508000pt;}
.y9_c01451{bottom:553.730667pt;}
.y8_c01451{bottom:568.342667pt;}
.y7_c01451{bottom:582.622667pt;}
.y6_c01451{bottom:797.614667pt;}
.y5_c01451{bottom:813.554667pt;}
.y4_c01451{bottom:829.494667pt;}
.y3_c01451{bottom:845.434667pt;}
.y2_c01451{bottom:938.212000pt;}
.y1_c01451{bottom:1030.989333pt;}
.h3_c01451{height:31.280681pt;}
.h4_c01451{height:32.006363pt;}
.h2_c01451{height:46.518078pt;}
.h0_c01451{height:1122.520000pt;}
.h1_c01451{height:1122.666667pt;}
.w0_c01451{width:793.706667pt;}
.w1_c01451{width:794.000000pt;}
.x0_c01451{left:0.000000pt;}
.x1_c01451{left:113.385333pt;}
.x2_c01451{left:121.886667pt;}
.x3_c01451{left:151.430667pt;}
.x4_c01451{left:157.340000pt;}
.x5_c01451{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01452 {
    display:none;
  }
  .loading-indicator_c01452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01452" -> "#page-container .classname_c01452")
 */
.pf_c01452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01452 {overflow:visible;}
  }
}
.c_c01452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01452:after { /* webkit #35443 */
  content: '';
}
.t_c01452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01452 { /* info for Javascript */
  display:none;
}
.l_c01452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01452:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01452 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01452.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01452;src:url('chunks/assets/font_903c6112a9ca88536584ced7.woff2')format("woff");}.ff1_c01452{font-family:ff1_c01452;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01452;src:url('chunks/assets/font_454bb027ecfbf2cbed535ef0.woff2')format("woff");}.ff2_c01452{font-family:ff2_c01452;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01452;src:url('chunks/assets/font_7479c733eb13c7974a310557.woff2')format("woff");}.ff3_c01452{font-family:ff3_c01452;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01452;src:url('chunks/assets/font_128288f4cba8eca76950acdf.woff2')format("woff");}.ff4_c01452{font-family:ff4_c01452;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01452;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01452{font-family:ff5_c01452;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01452{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01452{vertical-align:0.000000px;}
.ls3_c01452{letter-spacing:0.000000px;}
.ls0_c01452{letter-spacing:0.087998px;}
.ls2_c01452{letter-spacing:0.098482px;}
.ls1_c01452{letter-spacing:0.104482px;}
.sc__c01452{text-shadow:none;}
.sc0_c01452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01452{-webkit-text-stroke:0px transparent;}
.sc0_c01452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01452{word-spacing:-26.575517px;}
.wsf_c01452{word-spacing:-26.487518px;}
.ws5_c01452{word-spacing:-18.769538px;}
.ws8_c01452{word-spacing:-18.052231px;}
.ws7_c01452{word-spacing:-17.992456px;}
.ws9_c01452{word-spacing:-17.934762px;}
.wsb_c01452{word-spacing:-17.932680px;}
.wsd_c01452{word-spacing:-17.394700px;}
.ws4_c01452{word-spacing:-14.943900px;}
.wsc_c01452{word-spacing:-13.449510px;}
.wsa_c01452{word-spacing:-10.747366px;}
.ws1_c01452{word-spacing:-9.988424px;}
.ws3_c01452{word-spacing:-9.987499px;}
.ws6_c01452{word-spacing:-8.364144px;}
.ws13_c01452{word-spacing:0.000000px;}
.ws10_c01452{word-spacing:0.043999px;}
.ws14_c01452{word-spacing:0.056767px;}
.wse_c01452{word-spacing:0.175997px;}
.ws11_c01452{word-spacing:0.213446px;}
.ws12_c01452{word-spacing:0.219446px;}
.ws0_c01452{word-spacing:43.038600px;}
._0_c01452{margin-left:-7.833025px;}
._2_c01452{margin-left:-6.575316px;}
._3_c01452{margin-left:-4.184292px;}
._4_c01452{margin-left:-1.075961px;}
._a_c01452{width:1.005737px;}
._9_c01452{width:17.334924px;}
._1_c01452{width:19.935816px;}
._7_c01452{width:21.459440px;}
._5_c01452{width:22.514696px;}
._8_c01452{width:24.029791px;}
._6_c01452{width:35.686033px;}
._b_c01452{width:80.078544px;}
.fc6_c01452{color:rgb(0,0,207);}
.fc5_c01452{color:rgb(79,153,5);}
.fc3_c01452{color:rgb(33,74,135);}
.fc2_c01452{color:rgb(143,89,3);}
.fc4_c01452{color:rgb(207,92,0);}
.fc1_c01452{color:rgb(6,69,173);}
.fc0_c01452{color:rgb(0,0,0);}
.fs2_c01452{font-size:43.999200px;}
.fs1_c01452{font-size:59.775600px;}
.fs0_c01452{font-size:86.077200px;}
.y0_c01452{bottom:0.000000px;}
.y1e_c01452{bottom:44.250000px;}
.y1d_c01452{bottom:86.982000px;}
.y1c_c01452{bottom:103.420500px;}
.y1b_c01452{bottom:119.859000px;}
.y1a_c01452{bottom:136.297500px;}
.y19_c01452{bottom:152.736000px;}
.y18_c01452{bottom:202.051500px;}
.y17_c01452{bottom:218.490000px;}
.y16_c01452{bottom:234.927000px;}
.y15_c01452{bottom:251.365500px;}
.y14_c01452{bottom:267.804000px;}
.y13_c01452{bottom:284.242500px;}
.y12_c01452{bottom:300.681000px;}
.y11_c01452{bottom:317.119500px;}
.y10_c01452{bottom:333.558000px;}
.yf_c01452{bottom:349.996500px;}
.ye_c01452{bottom:399.310500px;}
.yd_c01452{bottom:415.749000px;}
.yc_c01452{bottom:448.626000px;}
.yb_c01452{bottom:465.064500px;}
.ya_c01452{bottom:481.129500px;}
.y9_c01452{bottom:529.780500px;}
.y8_c01452{bottom:547.713000px;}
.y7_c01452{bottom:565.647000px;}
.y6_c01452{bottom:583.579500px;}
.y5_c01452{bottom:610.656000px;}
.y4_c01452{bottom:637.732500px;}
.y3_c01452{bottom:664.810500px;}
.y2_c01452{bottom:691.887000px;}
.y1_c01452{bottom:734.416500px;}
.h5_c01452{height:35.190766px;}
.h6_c01452{height:36.007158px;}
.h3_c01452{height:40.511979px;}
.h4_c01452{height:52.332837px;}
.h2_c01452{height:58.337477px;}
.h0_c01452{height:1262.835000px;}
.h1_c01452{height:1263.000000px;}
.w0_c01452{width:892.920000px;}
.w1_c01452{width:893.250000px;}
.x0_c01452{left:0.000000px;}
.x1_c01452{left:127.558500px;}
.x2_c01452{left:137.122500px;}
.x3_c01452{left:196.948500px;}
.x4_c01452{left:435.249000px;}
@media print{
.v0_c01452{vertical-align:0.000000pt;}
.ls3_c01452{letter-spacing:0.000000pt;}
.ls0_c01452{letter-spacing:0.078221pt;}
.ls2_c01452{letter-spacing:0.087539pt;}
.ls1_c01452{letter-spacing:0.092873pt;}
.ws2_c01452{word-spacing:-23.622682pt;}
.wsf_c01452{word-spacing:-23.544461pt;}
.ws5_c01452{word-spacing:-16.684034pt;}
.ws8_c01452{word-spacing:-16.046428pt;}
.ws7_c01452{word-spacing:-15.993294pt;}
.ws9_c01452{word-spacing:-15.942011pt;}
.wsb_c01452{word-spacing:-15.940160pt;}
.wsd_c01452{word-spacing:-15.461955pt;}
.ws4_c01452{word-spacing:-13.283467pt;}
.wsc_c01452{word-spacing:-11.955120pt;}
.wsa_c01452{word-spacing:-9.553214pt;}
.ws1_c01452{word-spacing:-8.878599pt;}
.ws3_c01452{word-spacing:-8.877777pt;}
.ws6_c01452{word-spacing:-7.434795pt;}
.ws13_c01452{word-spacing:0.000000pt;}
.ws10_c01452{word-spacing:0.039110pt;}
.ws14_c01452{word-spacing:0.050460pt;}
.wse_c01452{word-spacing:0.156442pt;}
.ws11_c01452{word-spacing:0.189730pt;}
.ws12_c01452{word-spacing:0.195063pt;}
.ws0_c01452{word-spacing:38.256533pt;}
._0_c01452{margin-left:-6.962689pt;}
._2_c01452{margin-left:-5.844725pt;}
._3_c01452{margin-left:-3.719371pt;}
._4_c01452{margin-left:-0.956410pt;}
._a_c01452{width:0.893988pt;}
._9_c01452{width:15.408821pt;}
._1_c01452{width:17.720725pt;}
._7_c01452{width:19.075058pt;}
._5_c01452{width:20.013063pt;}
._8_c01452{width:21.359814pt;}
._6_c01452{width:31.720918pt;}
._b_c01452{width:71.180928pt;}
.fs2_c01452{font-size:39.110400pt;}
.fs1_c01452{font-size:53.133867pt;}
.fs0_c01452{font-size:76.513067pt;}
.y0_c01452{bottom:0.000000pt;}
.y1e_c01452{bottom:39.333333pt;}
.y1d_c01452{bottom:77.317333pt;}
.y1c_c01452{bottom:91.929333pt;}
.y1b_c01452{bottom:106.541333pt;}
.y1a_c01452{bottom:121.153333pt;}
.y19_c01452{bottom:135.765333pt;}
.y18_c01452{bottom:179.601333pt;}
.y17_c01452{bottom:194.213333pt;}
.y16_c01452{bottom:208.824000pt;}
.y15_c01452{bottom:223.436000pt;}
.y14_c01452{bottom:238.048000pt;}
.y13_c01452{bottom:252.660000pt;}
.y12_c01452{bottom:267.272000pt;}
.y11_c01452{bottom:281.884000pt;}
.y10_c01452{bottom:296.496000pt;}
.yf_c01452{bottom:311.108000pt;}
.ye_c01452{bottom:354.942667pt;}
.yd_c01452{bottom:369.554667pt;}
.yc_c01452{bottom:398.778667pt;}
.yb_c01452{bottom:413.390667pt;}
.ya_c01452{bottom:427.670667pt;}
.y9_c01452{bottom:470.916000pt;}
.y8_c01452{bottom:486.856000pt;}
.y7_c01452{bottom:502.797333pt;}
.y6_c01452{bottom:518.737333pt;}
.y5_c01452{bottom:542.805333pt;}
.y4_c01452{bottom:566.873333pt;}
.y3_c01452{bottom:590.942667pt;}
.y2_c01452{bottom:615.010667pt;}
.y1_c01452{bottom:652.814667pt;}
.h5_c01452{height:31.280681pt;}
.h6_c01452{height:32.006363pt;}
.h3_c01452{height:36.010648pt;}
.h4_c01452{height:46.518078pt;}
.h2_c01452{height:51.855535pt;}
.h0_c01452{height:1122.520000pt;}
.h1_c01452{height:1122.666667pt;}
.w0_c01452{width:793.706667pt;}
.w1_c01452{width:794.000000pt;}
.x0_c01452{left:0.000000pt;}
.x1_c01452{left:113.385333pt;}
.x2_c01452{left:121.886667pt;}
.x3_c01452{left:175.065333pt;}
.x4_c01452{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01453 {
    display:none;
  }
  .loading-indicator_c01453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01453" -> "#page-container .classname_c01453")
 */
.pf_c01453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01453 {overflow:visible;}
  }
}
.c_c01453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01453:after { /* webkit #35443 */
  content: '';
}
.t_c01453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01453 { /* info for Javascript */
  display:none;
}
.l_c01453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01453:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01453 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01453.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01453;src:url('chunks/assets/font_31f604e8959d647ca158d54d.woff2')format("woff");}.ff1_c01453{font-family:ff1_c01453;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01453;src:url('chunks/assets/font_0061fd39caac98ea180c61c2.woff2')format("woff");}.ff2_c01453{font-family:ff2_c01453;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01453;src:url('chunks/assets/font_1240b0f48ebd93fab543c646.woff2')format("woff");}.ff3_c01453{font-family:ff3_c01453;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01453;src:url('chunks/assets/font_40f4b6df2630b66f04f052ab.woff2')format("woff");}.ff4_c01453{font-family:ff4_c01453;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01453;src:url('chunks/assets/font_8e963a5996e791fc73d3b992.woff2')format("woff");}.ff5_c01453{font-family:ff5_c01453;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01453{vertical-align:0.000000px;}
.ls3_c01453{letter-spacing:0.000000px;}
.ls0_c01453{letter-spacing:0.087998px;}
.ls1_c01453{letter-spacing:0.098482px;}
.ls2_c01453{letter-spacing:0.104482px;}
.sc__c01453{text-shadow:none;}
.sc0_c01453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01453{-webkit-text-stroke:0px transparent;}
.sc0_c01453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01453{word-spacing:-26.575517px;}
.ws3_c01453{word-spacing:-26.487518px;}
.ws9_c01453{word-spacing:-18.769538px;}
.ws8_c01453{word-spacing:-14.943900px;}
.ws6_c01453{word-spacing:-9.988424px;}
.ws7_c01453{word-spacing:-9.987499px;}
.ws2_c01453{word-spacing:0.000000px;}
.ws0_c01453{word-spacing:0.043999px;}
.ws4_c01453{word-spacing:0.213446px;}
.ws5_c01453{word-spacing:43.038600px;}
._1_c01453{margin-left:-7.833025px;}
._4_c01453{margin-left:-4.124516px;}
._2_c01453{margin-left:-1.549390px;}
._0_c01453{width:1.041538px;}
._3_c01453{width:19.935816px;}
.fc5_c01453{color:rgb(207,92,0);}
.fc4_c01453{color:rgb(143,89,3);}
.fc3_c01453{color:rgb(0,0,207);}
.fc2_c01453{color:rgb(0,0,0);}
.fc1_c01453{color:rgb(79,153,5);}
.fc0_c01453{color:rgb(33,74,135);}
.fs0_c01453{font-size:43.999200px;}
.fs2_c01453{font-size:59.775600px;}
.fs1_c01453{font-size:86.077200px;}
.y0_c01453{bottom:0.000000px;}
.y20_c01453{bottom:44.250000px;}
.y1f_c01453{bottom:82.051500px;}
.y1e_c01453{bottom:108.450000px;}
.y1d_c01453{bottom:134.847000px;}
.y1c_c01453{bottom:161.245500px;}
.y1b_c01453{bottom:203.017500px;}
.y1a_c01453{bottom:666.712500px;}
.y19_c01453{bottom:683.151000px;}
.y18_c01453{bottom:699.589500px;}
.y17_c01453{bottom:716.028000px;}
.y16_c01453{bottom:732.465000px;}
.y15_c01453{bottom:748.903500px;}
.y14_c01453{bottom:765.342000px;}
.y13_c01453{bottom:781.780500px;}
.y12_c01453{bottom:798.219000px;}
.y11_c01453{bottom:814.657500px;}
.y10_c01453{bottom:831.096000px;}
.yf_c01453{bottom:863.973000px;}
.ye_c01453{bottom:880.411500px;}
.yd_c01453{bottom:896.848500px;}
.yc_c01453{bottom:929.725500px;}
.yb_c01453{bottom:946.164000px;}
.ya_c01453{bottom:979.041000px;}
.y9_c01453{bottom:995.479500px;}
.y8_c01453{bottom:1011.918000px;}
.y7_c01453{bottom:1044.795000px;}
.y6_c01453{bottom:1061.232000px;}
.y5_c01453{bottom:1077.670500px;}
.y4_c01453{bottom:1110.547500px;}
.y3_c01453{bottom:1126.986000px;}
.y2_c01453{bottom:1143.424500px;}
.y1_c01453{bottom:1159.863000px;}
.h3_c01453{height:35.190766px;}
.h2_c01453{height:36.007158px;}
.h5_c01453{height:40.511979px;}
.h6_c01453{height:52.332837px;}
.h4_c01453{height:58.337477px;}
.h0_c01453{height:1262.835000px;}
.h1_c01453{height:1263.000000px;}
.w0_c01453{width:892.920000px;}
.w1_c01453{width:893.250000px;}
.x0_c01453{left:0.000000px;}
.x4_c01453{left:127.558500px;}
.x2_c01453{left:137.122500px;}
.x3_c01453{left:177.007500px;}
.x1_c01453{left:196.948500px;}
.x5_c01453{left:435.249000px;}
@media print{
.v0_c01453{vertical-align:0.000000pt;}
.ls3_c01453{letter-spacing:0.000000pt;}
.ls0_c01453{letter-spacing:0.078221pt;}
.ls1_c01453{letter-spacing:0.087539pt;}
.ls2_c01453{letter-spacing:0.092873pt;}
.ws1_c01453{word-spacing:-23.622682pt;}
.ws3_c01453{word-spacing:-23.544461pt;}
.ws9_c01453{word-spacing:-16.684034pt;}
.ws8_c01453{word-spacing:-13.283467pt;}
.ws6_c01453{word-spacing:-8.878599pt;}
.ws7_c01453{word-spacing:-8.877777pt;}
.ws2_c01453{word-spacing:0.000000pt;}
.ws0_c01453{word-spacing:0.039110pt;}
.ws4_c01453{word-spacing:0.189730pt;}
.ws5_c01453{word-spacing:38.256533pt;}
._1_c01453{margin-left:-6.962689pt;}
._4_c01453{margin-left:-3.666237pt;}
._2_c01453{margin-left:-1.377235pt;}
._0_c01453{width:0.925811pt;}
._3_c01453{width:17.720725pt;}
.fs0_c01453{font-size:39.110400pt;}
.fs2_c01453{font-size:53.133867pt;}
.fs1_c01453{font-size:76.513067pt;}
.y0_c01453{bottom:0.000000pt;}
.y20_c01453{bottom:39.333333pt;}
.y1f_c01453{bottom:72.934667pt;}
.y1e_c01453{bottom:96.400000pt;}
.y1d_c01453{bottom:119.864000pt;}
.y1c_c01453{bottom:143.329333pt;}
.y1b_c01453{bottom:180.460000pt;}
.y1a_c01453{bottom:592.633333pt;}
.y19_c01453{bottom:607.245333pt;}
.y18_c01453{bottom:621.857333pt;}
.y17_c01453{bottom:636.469333pt;}
.y16_c01453{bottom:651.080000pt;}
.y15_c01453{bottom:665.692000pt;}
.y14_c01453{bottom:680.304000pt;}
.y13_c01453{bottom:694.916000pt;}
.y12_c01453{bottom:709.528000pt;}
.y11_c01453{bottom:724.140000pt;}
.y10_c01453{bottom:738.752000pt;}
.yf_c01453{bottom:767.976000pt;}
.ye_c01453{bottom:782.588000pt;}
.yd_c01453{bottom:797.198667pt;}
.yc_c01453{bottom:826.422667pt;}
.yb_c01453{bottom:841.034667pt;}
.ya_c01453{bottom:870.258667pt;}
.y9_c01453{bottom:884.870667pt;}
.y8_c01453{bottom:899.482667pt;}
.y7_c01453{bottom:928.706667pt;}
.y6_c01453{bottom:943.317333pt;}
.y5_c01453{bottom:957.929333pt;}
.y4_c01453{bottom:987.153333pt;}
.y3_c01453{bottom:1001.765333pt;}
.y2_c01453{bottom:1016.377333pt;}
.y1_c01453{bottom:1030.989333pt;}
.h3_c01453{height:31.280681pt;}
.h2_c01453{height:32.006363pt;}
.h5_c01453{height:36.010648pt;}
.h6_c01453{height:46.518078pt;}
.h4_c01453{height:51.855535pt;}
.h0_c01453{height:1122.520000pt;}
.h1_c01453{height:1122.666667pt;}
.w0_c01453{width:793.706667pt;}
.w1_c01453{width:794.000000pt;}
.x0_c01453{left:0.000000pt;}
.x4_c01453{left:113.385333pt;}
.x2_c01453{left:121.886667pt;}
.x3_c01453{left:157.340000pt;}
.x1_c01453{left:175.065333pt;}
.x5_c01453{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01454 {
    display:none;
  }
  .loading-indicator_c01454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01454 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01454 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01454" -> "#page-container .classname_c01454")
 */
.pf_c01454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01454 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01454 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01454 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01454 {overflow:visible;}
  }
}
.c_c01454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01454 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01454:after { /* webkit #35443 */
  content: '';
}
.t_c01454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01454 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01454 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01454 { /* info for Javascript */
  display:none;
}
.l_c01454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01454:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01454 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01454.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01454;src:url('chunks/assets/font_027c9b8d757e32e4da7dc01b.woff2')format("woff");}.ff1_c01454{font-family:ff1_c01454;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01454;src:url('chunks/assets/font_43e3912ebf2a851afc24f3d7.woff2')format("woff");}.ff2_c01454{font-family:ff2_c01454;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01454;src:url('chunks/assets/font_5214183ca41104a9a22c412a.woff2')format("woff");}.ff3_c01454{font-family:ff3_c01454;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01454;src:url('chunks/assets/font_84f9064ea99aa643ff4d6cc0.woff2')format("woff");}.ff4_c01454{font-family:ff4_c01454;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01454;src:url('chunks/assets/font_01d183e1df3db0ff31729063.woff2')format("woff");}.ff5_c01454{font-family:ff5_c01454;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01454{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01454{vertical-align:0.000000px;}
.ls3_c01454{letter-spacing:0.000000px;}
.ls0_c01454{letter-spacing:0.087998px;}
.ls2_c01454{letter-spacing:0.098482px;}
.ls1_c01454{letter-spacing:0.104482px;}
.sc__c01454{text-shadow:none;}
.sc0_c01454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01454{-webkit-text-stroke:0px transparent;}
.sc0_c01454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01454{word-spacing:-26.575517px;}
.wsa_c01454{word-spacing:-26.487518px;}
.ws8_c01454{word-spacing:-18.769538px;}
.ws2_c01454{word-spacing:-14.824349px;}
.ws1_c01454{word-spacing:-14.764573px;}
.ws7_c01454{word-spacing:-14.525471px;}
.ws6_c01454{word-spacing:-13.210408px;}
.ws4_c01454{word-spacing:-13.196971px;}
.ws3_c01454{word-spacing:-12.313774px;}
.ws0_c01454{word-spacing:-1.986144px;}
.wse_c01454{word-spacing:0.000000px;}
.wsb_c01454{word-spacing:0.043999px;}
.ws9_c01454{word-spacing:0.175997px;}
.wsc_c01454{word-spacing:0.213446px;}
.wsd_c01454{word-spacing:0.219446px;}
._1_c01454{margin-left:-4.163869px;}
._2_c01454{margin-left:-2.301668px;}
._0_c01454{margin-left:-1.075961px;}
._7_c01454{width:1.005737px;}
._5_c01454{width:20.204153px;}
._4_c01454{width:22.158017px;}
._6_c01454{width:32.039722px;}
._3_c01454{width:39.272569px;}
.fc6_c01454{color:rgb(0,0,207);}
.fc5_c01454{color:rgb(79,153,5);}
.fc3_c01454{color:rgb(33,74,135);}
.fc2_c01454{color:rgb(143,89,3);}
.fc4_c01454{color:rgb(207,92,0);}
.fc1_c01454{color:rgb(6,69,173);}
.fc0_c01454{color:rgb(0,0,0);}
.fs1_c01454{font-size:43.999200px;}
.fs0_c01454{font-size:59.775600px;}
.y0_c01454{bottom:0.000000px;}
.y27_c01454{bottom:44.250000px;}
.y26_c01454{bottom:96.919500px;}
.y25_c01454{bottom:113.358000px;}
.y24_c01454{bottom:129.796500px;}
.y23_c01454{bottom:146.235000px;}
.y22_c01454{bottom:162.673500px;}
.y21_c01454{bottom:179.112000px;}
.y20_c01454{bottom:195.550500px;}
.y1f_c01454{bottom:211.989000px;}
.y1e_c01454{bottom:228.427500px;}
.y1d_c01454{bottom:244.866000px;}
.y1c_c01454{bottom:261.304500px;}
.y1b_c01454{bottom:294.180000px;}
.y1a_c01454{bottom:310.618500px;}
.y19_c01454{bottom:327.057000px;}
.y18_c01454{bottom:359.934000px;}
.y17_c01454{bottom:376.372500px;}
.y16_c01454{bottom:392.811000px;}
.y15_c01454{bottom:409.249500px;}
.y14_c01454{bottom:425.688000px;}
.y13_c01454{bottom:442.125000px;}
.y12_c01454{bottom:458.563500px;}
.y11_c01454{bottom:475.002000px;}
.y10_c01454{bottom:491.440500px;}
.yf_c01454{bottom:507.879000px;}
.ye_c01454{bottom:540.756000px;}
.yd_c01454{bottom:557.194500px;}
.yc_c01454{bottom:573.633000px;}
.yb_c01454{bottom:622.947000px;}
.ya_c01454{bottom:639.385500px;}
.y9_c01454{bottom:672.262500px;}
.y8_c01454{bottom:688.701000px;}
.y7_c01454{bottom:704.766000px;}
.y6_c01454{bottom:1070.199000px;}
.y5_c01454{bottom:1088.131500px;}
.y4_c01454{bottom:1106.064000px;}
.y3_c01454{bottom:1123.998000px;}
.y2_c01454{bottom:1141.930500px;}
.y1_c01454{bottom:1159.863000px;}
.h3_c01454{height:35.190766px;}
.h4_c01454{height:36.007158px;}
.h2_c01454{height:52.332837px;}
.h0_c01454{height:1262.835000px;}
.h1_c01454{height:1263.000000px;}
.w0_c01454{width:892.920000px;}
.w1_c01454{width:893.250000px;}
.x0_c01454{left:0.000000px;}
.x1_c01454{left:127.558500px;}
.x2_c01454{left:137.122500px;}
.x3_c01454{left:170.359500px;}
.x4_c01454{left:177.007500px;}
.x5_c01454{left:435.249000px;}
@media print{
.v0_c01454{vertical-align:0.000000pt;}
.ls3_c01454{letter-spacing:0.000000pt;}
.ls0_c01454{letter-spacing:0.078221pt;}
.ls2_c01454{letter-spacing:0.087539pt;}
.ls1_c01454{letter-spacing:0.092873pt;}
.ws5_c01454{word-spacing:-23.622682pt;}
.wsa_c01454{word-spacing:-23.544461pt;}
.ws8_c01454{word-spacing:-16.684034pt;}
.ws2_c01454{word-spacing:-13.177199pt;}
.ws1_c01454{word-spacing:-13.124065pt;}
.ws7_c01454{word-spacing:-12.911530pt;}
.ws6_c01454{word-spacing:-11.742585pt;}
.ws4_c01454{word-spacing:-11.730641pt;}
.ws3_c01454{word-spacing:-10.945577pt;}
.ws0_c01454{word-spacing:-1.765461pt;}
.wse_c01454{word-spacing:0.000000pt;}
.wsb_c01454{word-spacing:0.039110pt;}
.ws9_c01454{word-spacing:0.156442pt;}
.wsc_c01454{word-spacing:0.189730pt;}
.wsd_c01454{word-spacing:0.195063pt;}
._1_c01454{margin-left:-3.701217pt;}
._2_c01454{margin-left:-2.045927pt;}
._0_c01454{margin-left:-0.956410pt;}
._7_c01454{width:0.893988pt;}
._5_c01454{width:17.959247pt;}
._4_c01454{width:19.696015pt;}
._6_c01454{width:28.479753pt;}
._3_c01454{width:34.908950pt;}
.fs1_c01454{font-size:39.110400pt;}
.fs0_c01454{font-size:53.133867pt;}
.y0_c01454{bottom:0.000000pt;}
.y27_c01454{bottom:39.333333pt;}
.y26_c01454{bottom:86.150667pt;}
.y25_c01454{bottom:100.762667pt;}
.y24_c01454{bottom:115.374667pt;}
.y23_c01454{bottom:129.986667pt;}
.y22_c01454{bottom:144.598667pt;}
.y21_c01454{bottom:159.210667pt;}
.y20_c01454{bottom:173.822667pt;}
.y1f_c01454{bottom:188.434667pt;}
.y1e_c01454{bottom:203.046667pt;}
.y1d_c01454{bottom:217.658667pt;}
.y1c_c01454{bottom:232.270667pt;}
.y1b_c01454{bottom:261.493333pt;}
.y1a_c01454{bottom:276.105333pt;}
.y19_c01454{bottom:290.717333pt;}
.y18_c01454{bottom:319.941333pt;}
.y17_c01454{bottom:334.553333pt;}
.y16_c01454{bottom:349.165333pt;}
.y15_c01454{bottom:363.777333pt;}
.y14_c01454{bottom:378.389333pt;}
.y13_c01454{bottom:393.000000pt;}
.y12_c01454{bottom:407.612000pt;}
.y11_c01454{bottom:422.224000pt;}
.y10_c01454{bottom:436.836000pt;}
.yf_c01454{bottom:451.448000pt;}
.ye_c01454{bottom:480.672000pt;}
.yd_c01454{bottom:495.284000pt;}
.yc_c01454{bottom:509.896000pt;}
.yb_c01454{bottom:553.730667pt;}
.ya_c01454{bottom:568.342667pt;}
.y9_c01454{bottom:597.566667pt;}
.y8_c01454{bottom:612.178667pt;}
.y7_c01454{bottom:626.458667pt;}
.y6_c01454{bottom:951.288000pt;}
.y5_c01454{bottom:967.228000pt;}
.y4_c01454{bottom:983.168000pt;}
.y3_c01454{bottom:999.109333pt;}
.y2_c01454{bottom:1015.049333pt;}
.y1_c01454{bottom:1030.989333pt;}
.h3_c01454{height:31.280681pt;}
.h4_c01454{height:32.006363pt;}
.h2_c01454{height:46.518078pt;}
.h0_c01454{height:1122.520000pt;}
.h1_c01454{height:1122.666667pt;}
.w0_c01454{width:793.706667pt;}
.w1_c01454{width:794.000000pt;}
.x0_c01454{left:0.000000pt;}
.x1_c01454{left:113.385333pt;}
.x2_c01454{left:121.886667pt;}
.x3_c01454{left:151.430667pt;}
.x4_c01454{left:157.340000pt;}
.x5_c01454{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01455 {
    display:none;
  }
  .loading-indicator_c01455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01455 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01455 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01455" -> "#page-container .classname_c01455")
 */
.pf_c01455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01455 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01455 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01455 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01455 {overflow:visible;}
  }
}
.c_c01455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01455 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01455:after { /* webkit #35443 */
  content: '';
}
.t_c01455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01455 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01455 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01455 { /* info for Javascript */
  display:none;
}
.l_c01455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01455:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01455 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01455.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01455;src:url('chunks/assets/font_df722dfd566e58221e1aebe8.woff2')format("woff");}.ff1_c01455{font-family:ff1_c01455;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01455;src:url('chunks/assets/font_ebffa4b263b4041b295d69ca.woff2')format("woff");}.ff2_c01455{font-family:ff2_c01455;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01455;src:url('chunks/assets/font_7295f6d0a08a2e844e7a41a1.woff2')format("woff");}.ff3_c01455{font-family:ff3_c01455;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01455;src:url('chunks/assets/font_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c01455{font-family:ff4_c01455;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01455;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01455{font-family:ff5_c01455;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01455{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01455{vertical-align:0.000000px;}
.ls3_c01455{letter-spacing:0.000000px;}
.ls0_c01455{letter-spacing:0.087998px;}
.ls2_c01455{letter-spacing:0.098482px;}
.ls1_c01455{letter-spacing:0.104482px;}
.sc__c01455{text-shadow:none;}
.sc0_c01455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01455{-webkit-text-stroke:0px transparent;}
.sc0_c01455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01455{word-spacing:-33.713438px;}
.ws2_c01455{word-spacing:-26.575517px;}
.wse_c01455{word-spacing:-26.487518px;}
.ws9_c01455{word-spacing:-21.553319px;}
.ws8_c01455{word-spacing:-21.519216px;}
.ws5_c01455{word-spacing:-18.769538px;}
.ws7_c01455{word-spacing:-16.019861px;}
.ws4_c01455{word-spacing:-14.943900px;}
.wsa_c01455{word-spacing:-14.107042px;}
.wsb_c01455{word-spacing:-12.074671px;}
.ws1_c01455{word-spacing:-9.988424px;}
.ws3_c01455{word-spacing:-9.987499px;}
.ws6_c01455{word-spacing:-4.536144px;}
.ws12_c01455{word-spacing:0.000000px;}
.wsf_c01455{word-spacing:0.043999px;}
.ws15_c01455{word-spacing:0.056767px;}
.ws13_c01455{word-spacing:0.073250px;}
.ws14_c01455{word-spacing:0.083734px;}
.wsd_c01455{word-spacing:0.175997px;}
.ws16_c01455{word-spacing:0.202963px;}
.ws10_c01455{word-spacing:0.213446px;}
.ws11_c01455{word-spacing:0.219446px;}
.ws0_c01455{word-spacing:43.038600px;}
._0_c01455{margin-left:-7.833025px;}
._3_c01455{margin-left:-4.124516px;}
._1_c01455{margin-left:-1.549390px;}
._5_c01455{width:1.005737px;}
._2_c01455{width:19.935816px;}
._4_c01455{width:40.109428px;}
._7_c01455{width:53.283031px;}
._6_c01455{width:79.858548px;}
._8_c01455{width:133.452408px;}
.fc6_c01455{color:rgb(0,0,207);}
.fc5_c01455{color:rgb(79,153,5);}
.fc3_c01455{color:rgb(33,74,135);}
.fc2_c01455{color:rgb(143,89,3);}
.fc4_c01455{color:rgb(207,92,0);}
.fc1_c01455{color:rgb(6,69,173);}
.fc0_c01455{color:rgb(0,0,0);}
.fs2_c01455{font-size:43.999200px;}
.fs1_c01455{font-size:59.775600px;}
.fs0_c01455{font-size:86.077200px;}
.y0_c01455{bottom:0.000000px;}
.y20_c01455{bottom:44.250000px;}
.y1f_c01455{bottom:86.982000px;}
.y1e_c01455{bottom:103.420500px;}
.y1d_c01455{bottom:119.859000px;}
.y1c_c01455{bottom:136.297500px;}
.y1b_c01455{bottom:152.736000px;}
.y1a_c01455{bottom:169.174500px;}
.y19_c01455{bottom:185.613000px;}
.y18_c01455{bottom:202.051500px;}
.y17_c01455{bottom:218.490000px;}
.y16_c01455{bottom:234.927000px;}
.y15_c01455{bottom:251.365500px;}
.y14_c01455{bottom:267.804000px;}
.y13_c01455{bottom:284.242500px;}
.y12_c01455{bottom:300.681000px;}
.y11_c01455{bottom:317.119500px;}
.y10_c01455{bottom:366.435000px;}
.yf_c01455{bottom:382.873500px;}
.ye_c01455{bottom:415.749000px;}
.yd_c01455{bottom:432.187500px;}
.yc_c01455{bottom:448.252500px;}
.yb_c01455{bottom:493.890000px;}
.ya_c01455{bottom:511.822500px;}
.y9_c01455{bottom:529.756500px;}
.y8_c01455{bottom:547.689000px;}
.y7_c01455{bottom:565.621500px;}
.y6_c01455{bottom:583.554000px;}
.y5_c01455{bottom:610.633500px;}
.y4_c01455{bottom:637.714500px;}
.y3_c01455{bottom:664.794000px;}
.y2_c01455{bottom:691.873500px;}
.y1_c01455{bottom:734.407500px;}
.h5_c01455{height:35.190766px;}
.h6_c01455{height:36.007158px;}
.h3_c01455{height:40.511979px;}
.h4_c01455{height:52.332837px;}
.h2_c01455{height:58.337477px;}
.h0_c01455{height:1262.835000px;}
.h1_c01455{height:1263.000000px;}
.w0_c01455{width:892.920000px;}
.w1_c01455{width:893.250000px;}
.x0_c01455{left:0.000000px;}
.x1_c01455{left:127.558500px;}
.x2_c01455{left:137.122500px;}
.x3_c01455{left:143.770500px;}
.x4_c01455{left:435.249000px;}
@media print{
.v0_c01455{vertical-align:0.000000pt;}
.ls3_c01455{letter-spacing:0.000000pt;}
.ls0_c01455{letter-spacing:0.078221pt;}
.ls2_c01455{letter-spacing:0.087539pt;}
.ls1_c01455{letter-spacing:0.092873pt;}
.wsc_c01455{word-spacing:-29.967501pt;}
.ws2_c01455{word-spacing:-23.622682pt;}
.wse_c01455{word-spacing:-23.544461pt;}
.ws9_c01455{word-spacing:-19.158506pt;}
.ws8_c01455{word-spacing:-19.128192pt;}
.ws5_c01455{word-spacing:-16.684034pt;}
.ws7_c01455{word-spacing:-14.239876pt;}
.ws4_c01455{word-spacing:-13.283467pt;}
.wsa_c01455{word-spacing:-12.539593pt;}
.wsb_c01455{word-spacing:-10.733041pt;}
.ws1_c01455{word-spacing:-8.878599pt;}
.ws3_c01455{word-spacing:-8.877777pt;}
.ws6_c01455{word-spacing:-4.032128pt;}
.ws12_c01455{word-spacing:0.000000pt;}
.wsf_c01455{word-spacing:0.039110pt;}
.ws15_c01455{word-spacing:0.050460pt;}
.ws13_c01455{word-spacing:0.065111pt;}
.ws14_c01455{word-spacing:0.074430pt;}
.wsd_c01455{word-spacing:0.156442pt;}
.ws16_c01455{word-spacing:0.180412pt;}
.ws10_c01455{word-spacing:0.189730pt;}
.ws11_c01455{word-spacing:0.195063pt;}
.ws0_c01455{word-spacing:38.256533pt;}
._0_c01455{margin-left:-6.962689pt;}
._3_c01455{margin-left:-3.666237pt;}
._1_c01455{margin-left:-1.377235pt;}
._5_c01455{width:0.893988pt;}
._2_c01455{width:17.720725pt;}
._4_c01455{width:35.652825pt;}
._7_c01455{width:47.362694pt;}
._6_c01455{width:70.985376pt;}
._8_c01455{width:118.624363pt;}
.fs2_c01455{font-size:39.110400pt;}
.fs1_c01455{font-size:53.133867pt;}
.fs0_c01455{font-size:76.513067pt;}
.y0_c01455{bottom:0.000000pt;}
.y20_c01455{bottom:39.333333pt;}
.y1f_c01455{bottom:77.317333pt;}
.y1e_c01455{bottom:91.929333pt;}
.y1d_c01455{bottom:106.541333pt;}
.y1c_c01455{bottom:121.153333pt;}
.y1b_c01455{bottom:135.765333pt;}
.y1a_c01455{bottom:150.377333pt;}
.y19_c01455{bottom:164.989333pt;}
.y18_c01455{bottom:179.601333pt;}
.y17_c01455{bottom:194.213333pt;}
.y16_c01455{bottom:208.824000pt;}
.y15_c01455{bottom:223.436000pt;}
.y14_c01455{bottom:238.048000pt;}
.y13_c01455{bottom:252.660000pt;}
.y12_c01455{bottom:267.272000pt;}
.y11_c01455{bottom:281.884000pt;}
.y10_c01455{bottom:325.720000pt;}
.yf_c01455{bottom:340.332000pt;}
.ye_c01455{bottom:369.554667pt;}
.yd_c01455{bottom:384.166667pt;}
.yc_c01455{bottom:398.446667pt;}
.yb_c01455{bottom:439.013333pt;}
.ya_c01455{bottom:454.953333pt;}
.y9_c01455{bottom:470.894667pt;}
.y8_c01455{bottom:486.834667pt;}
.y7_c01455{bottom:502.774667pt;}
.y6_c01455{bottom:518.714667pt;}
.y5_c01455{bottom:542.785333pt;}
.y4_c01455{bottom:566.857333pt;}
.y3_c01455{bottom:590.928000pt;}
.y2_c01455{bottom:614.998667pt;}
.y1_c01455{bottom:652.806667pt;}
.h5_c01455{height:31.280681pt;}
.h6_c01455{height:32.006363pt;}
.h3_c01455{height:36.010648pt;}
.h4_c01455{height:46.518078pt;}
.h2_c01455{height:51.855535pt;}
.h0_c01455{height:1122.520000pt;}
.h1_c01455{height:1122.666667pt;}
.w0_c01455{width:793.706667pt;}
.w1_c01455{width:794.000000pt;}
.x0_c01455{left:0.000000pt;}
.x1_c01455{left:113.385333pt;}
.x2_c01455{left:121.886667pt;}
.x3_c01455{left:127.796000pt;}
.x4_c01455{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01456 {
    display:none;
  }
  .loading-indicator_c01456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01456 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01456 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01456" -> "#page-container .classname_c01456")
 */
.pf_c01456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01456 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01456 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01456 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01456 {overflow:visible;}
  }
}
.c_c01456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01456 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01456:after { /* webkit #35443 */
  content: '';
}
.t_c01456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01456 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01456 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01456 { /* info for Javascript */
  display:none;
}
.l_c01456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01456:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01456 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01456.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01456;src:url('chunks/assets/font_dd86eae8f7c2c75de2552e76.woff2')format("woff");}.ff1_c01456{font-family:ff1_c01456;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01456;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01456{font-family:ff2_c01456;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01456;src:url('chunks/assets/font_d52b29bc692a076cdca9aa05.woff2')format("woff");}.ff3_c01456{font-family:ff3_c01456;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01456;src:url('chunks/assets/font_630b79f16bc22462a2de8000.woff2')format("woff");}.ff4_c01456{font-family:ff4_c01456;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01456;src:url('chunks/assets/font_9455c6b3c4581bb5b58aeabc.woff2')format("woff");}.ff5_c01456{font-family:ff5_c01456;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01456{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01456{vertical-align:0.000000px;}
.ls4_c01456{letter-spacing:0.000000px;}
.ls0_c01456{letter-spacing:0.087998px;}
.ls3_c01456{letter-spacing:0.098482px;}
.ls2_c01456{letter-spacing:0.104482px;}
.ls1_c01456{letter-spacing:26.690482px;}
.sc__c01456{text-shadow:none;}
.sc0_c01456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01456{-webkit-text-stroke:0px transparent;}
.sc0_c01456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01456{word-spacing:-26.575517px;}
.ws3_c01456{word-spacing:-26.487518px;}
.wsd_c01456{word-spacing:-21.553319px;}
.wsc_c01456{word-spacing:-21.519216px;}
.ws9_c01456{word-spacing:-18.769538px;}
.wsb_c01456{word-spacing:-17.633802px;}
.ws8_c01456{word-spacing:-14.943900px;}
.wse_c01456{word-spacing:-14.107042px;}
.wsf_c01456{word-spacing:-12.074671px;}
.ws6_c01456{word-spacing:-9.988424px;}
.ws7_c01456{word-spacing:-9.987499px;}
.wsa_c01456{word-spacing:-7.686144px;}
.ws2_c01456{word-spacing:0.000000px;}
.ws0_c01456{word-spacing:0.043999px;}
.ws4_c01456{word-spacing:0.213446px;}
.ws5_c01456{word-spacing:43.038600px;}
._1_c01456{margin-left:-7.833025px;}
._4_c01456{margin-left:-4.124516px;}
._2_c01456{margin-left:-1.549390px;}
._0_c01456{width:1.041538px;}
._3_c01456{width:19.935816px;}
._5_c01456{width:40.109428px;}
.fc5_c01456{color:rgb(79,153,5);}
.fc4_c01456{color:rgb(143,89,3);}
.fc3_c01456{color:rgb(0,0,0);}
.fc6_c01456{color:rgb(6,69,173);}
.fc2_c01456{color:rgb(207,92,0);}
.fc1_c01456{color:rgb(0,0,207);}
.fc0_c01456{color:rgb(33,74,135);}
.fs0_c01456{font-size:43.999200px;}
.fs2_c01456{font-size:59.775600px;}
.fs1_c01456{font-size:86.077200px;}
.y0_c01456{bottom:0.000000px;}
.y20_c01456{bottom:44.250000px;}
.y1f_c01456{bottom:82.051500px;}
.y1e_c01456{bottom:99.984000px;}
.y1d_c01456{bottom:117.916500px;}
.y1c_c01456{bottom:135.849000px;}
.y1b_c01456{bottom:162.501000px;}
.y1a_c01456{bottom:189.151500px;}
.y19_c01456{bottom:215.802000px;}
.y18_c01456{bottom:242.454000px;}
.y17_c01456{bottom:284.478000px;}
.y16_c01456{bottom:748.903500px;}
.y15_c01456{bottom:765.342000px;}
.y14_c01456{bottom:781.780500px;}
.y13_c01456{bottom:798.219000px;}
.y12_c01456{bottom:814.657500px;}
.y11_c01456{bottom:831.096000px;}
.y10_c01456{bottom:847.534500px;}
.yf_c01456{bottom:863.973000px;}
.ye_c01456{bottom:880.411500px;}
.yd_c01456{bottom:896.848500px;}
.yc_c01456{bottom:913.287000px;}
.yb_c01456{bottom:946.164000px;}
.ya_c01456{bottom:962.602500px;}
.y9_c01456{bottom:979.041000px;}
.y8_c01456{bottom:1011.918000px;}
.y7_c01456{bottom:1028.356500px;}
.y6_c01456{bottom:1044.795000px;}
.y5_c01456{bottom:1061.232000px;}
.y4_c01456{bottom:1077.670500px;}
.y3_c01456{bottom:1094.109000px;}
.y2_c01456{bottom:1110.547500px;}
.y1_c01456{bottom:1159.863000px;}
.h3_c01456{height:35.190766px;}
.h2_c01456{height:36.007158px;}
.h5_c01456{height:40.511979px;}
.h6_c01456{height:52.332837px;}
.h4_c01456{height:58.337477px;}
.h0_c01456{height:1262.835000px;}
.h1_c01456{height:1263.000000px;}
.w0_c01456{width:892.920000px;}
.w1_c01456{width:893.250000px;}
.x0_c01456{left:0.000000px;}
.x4_c01456{left:127.558500px;}
.x2_c01456{left:137.122500px;}
.x1_c01456{left:143.770500px;}
.x3_c01456{left:177.007500px;}
.x5_c01456{left:435.249000px;}
@media print{
.v0_c01456{vertical-align:0.000000pt;}
.ls4_c01456{letter-spacing:0.000000pt;}
.ls0_c01456{letter-spacing:0.078221pt;}
.ls3_c01456{letter-spacing:0.087539pt;}
.ls2_c01456{letter-spacing:0.092873pt;}
.ls1_c01456{letter-spacing:23.724873pt;}
.ws1_c01456{word-spacing:-23.622682pt;}
.ws3_c01456{word-spacing:-23.544461pt;}
.wsd_c01456{word-spacing:-19.158506pt;}
.wsc_c01456{word-spacing:-19.128192pt;}
.ws9_c01456{word-spacing:-16.684034pt;}
.wsb_c01456{word-spacing:-15.674491pt;}
.ws8_c01456{word-spacing:-13.283467pt;}
.wse_c01456{word-spacing:-12.539593pt;}
.wsf_c01456{word-spacing:-10.733041pt;}
.ws6_c01456{word-spacing:-8.878599pt;}
.ws7_c01456{word-spacing:-8.877777pt;}
.wsa_c01456{word-spacing:-6.832128pt;}
.ws2_c01456{word-spacing:0.000000pt;}
.ws0_c01456{word-spacing:0.039110pt;}
.ws4_c01456{word-spacing:0.189730pt;}
.ws5_c01456{word-spacing:38.256533pt;}
._1_c01456{margin-left:-6.962689pt;}
._4_c01456{margin-left:-3.666237pt;}
._2_c01456{margin-left:-1.377235pt;}
._0_c01456{width:0.925811pt;}
._3_c01456{width:17.720725pt;}
._5_c01456{width:35.652825pt;}
.fs0_c01456{font-size:39.110400pt;}
.fs2_c01456{font-size:53.133867pt;}
.fs1_c01456{font-size:76.513067pt;}
.y0_c01456{bottom:0.000000pt;}
.y20_c01456{bottom:39.333333pt;}
.y1f_c01456{bottom:72.934667pt;}
.y1e_c01456{bottom:88.874667pt;}
.y1d_c01456{bottom:104.814667pt;}
.y1c_c01456{bottom:120.754667pt;}
.y1b_c01456{bottom:144.445333pt;}
.y1a_c01456{bottom:168.134667pt;}
.y19_c01456{bottom:191.824000pt;}
.y18_c01456{bottom:215.514667pt;}
.y17_c01456{bottom:252.869333pt;}
.y16_c01456{bottom:665.692000pt;}
.y15_c01456{bottom:680.304000pt;}
.y14_c01456{bottom:694.916000pt;}
.y13_c01456{bottom:709.528000pt;}
.y12_c01456{bottom:724.140000pt;}
.y11_c01456{bottom:738.752000pt;}
.y10_c01456{bottom:753.364000pt;}
.yf_c01456{bottom:767.976000pt;}
.ye_c01456{bottom:782.588000pt;}
.yd_c01456{bottom:797.198667pt;}
.yc_c01456{bottom:811.810667pt;}
.yb_c01456{bottom:841.034667pt;}
.ya_c01456{bottom:855.646667pt;}
.y9_c01456{bottom:870.258667pt;}
.y8_c01456{bottom:899.482667pt;}
.y7_c01456{bottom:914.094667pt;}
.y6_c01456{bottom:928.706667pt;}
.y5_c01456{bottom:943.317333pt;}
.y4_c01456{bottom:957.929333pt;}
.y3_c01456{bottom:972.541333pt;}
.y2_c01456{bottom:987.153333pt;}
.y1_c01456{bottom:1030.989333pt;}
.h3_c01456{height:31.280681pt;}
.h2_c01456{height:32.006363pt;}
.h5_c01456{height:36.010648pt;}
.h6_c01456{height:46.518078pt;}
.h4_c01456{height:51.855535pt;}
.h0_c01456{height:1122.520000pt;}
.h1_c01456{height:1122.666667pt;}
.w0_c01456{width:793.706667pt;}
.w1_c01456{width:794.000000pt;}
.x0_c01456{left:0.000000pt;}
.x4_c01456{left:113.385333pt;}
.x2_c01456{left:121.886667pt;}
.x1_c01456{left:127.796000pt;}
.x3_c01456{left:157.340000pt;}
.x5_c01456{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01457 {
    display:none;
  }
  .loading-indicator_c01457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01457 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01457 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01457" -> "#page-container .classname_c01457")
 */
.pf_c01457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01457 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01457 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01457 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01457 {overflow:visible;}
  }
}
.c_c01457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01457 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01457:after { /* webkit #35443 */
  content: '';
}
.t_c01457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01457 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01457 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01457 { /* info for Javascript */
  display:none;
}
.l_c01457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01457:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01457 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01457.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01457;src:url('chunks/assets/font_36ed78edfe7373220fdca89f.woff2')format("woff");}.ff1_c01457{font-family:ff1_c01457;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01457;src:url('chunks/assets/font_7b618975d179b856938a9332.woff2')format("woff");}.ff2_c01457{font-family:ff2_c01457;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01457;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01457{font-family:ff3_c01457;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01457;src:url('chunks/assets/font_1ea3ccbd0d24498850d03460.woff2')format("woff");}.ff4_c01457{font-family:ff4_c01457;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01457{vertical-align:0.000000px;}
.ls4_c01457{letter-spacing:0.000000px;}
.ls1_c01457{letter-spacing:0.087998px;}
.ls2_c01457{letter-spacing:0.098482px;}
.ls0_c01457{letter-spacing:0.104482px;}
.ls3_c01457{letter-spacing:26.690482px;}
.sc__c01457{text-shadow:none;}
.sc0_c01457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01457{-webkit-text-stroke:0px transparent;}
.sc0_c01457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01457{word-spacing:-33.713438px;}
.ws4_c01457{word-spacing:-26.575517px;}
.ws3_c01457{word-spacing:-26.487518px;}
.ws0_c01457{word-spacing:-18.769538px;}
.ws8_c01457{word-spacing:0.000000px;}
.ws5_c01457{word-spacing:0.043999px;}
.wsb_c01457{word-spacing:0.056767px;}
.ws9_c01457{word-spacing:0.073250px;}
.wsa_c01457{word-spacing:0.083734px;}
.ws2_c01457{word-spacing:0.175997px;}
.wsc_c01457{word-spacing:0.202963px;}
.ws6_c01457{word-spacing:0.213446px;}
.ws7_c01457{word-spacing:0.219446px;}
._0_c01457{margin-left:-3.825638px;}
._1_c01457{width:1.005737px;}
._3_c01457{width:53.283031px;}
._2_c01457{width:79.858548px;}
._5_c01457{width:106.654061px;}
._4_c01457{width:133.452408px;}
.fc5_c01457{color:rgb(0,0,207);}
.fc4_c01457{color:rgb(79,153,5);}
.fc3_c01457{color:rgb(207,92,0);}
.fc2_c01457{color:rgb(33,74,135);}
.fc1_c01457{color:rgb(143,89,3);}
.fc0_c01457{color:rgb(0,0,0);}
.fs1_c01457{font-size:43.999200px;}
.fs0_c01457{font-size:59.775600px;}
.y0_c01457{bottom:0.000000px;}
.y2d_c01457{bottom:44.250000px;}
.y2c_c01457{bottom:96.919500px;}
.y2b_c01457{bottom:113.358000px;}
.y2a_c01457{bottom:129.796500px;}
.y29_c01457{bottom:146.235000px;}
.y28_c01457{bottom:162.673500px;}
.y27_c01457{bottom:179.112000px;}
.y26_c01457{bottom:195.550500px;}
.y25_c01457{bottom:211.989000px;}
.y24_c01457{bottom:228.427500px;}
.y23_c01457{bottom:244.866000px;}
.y22_c01457{bottom:261.304500px;}
.y21_c01457{bottom:294.180000px;}
.y20_c01457{bottom:310.618500px;}
.y1f_c01457{bottom:327.057000px;}
.y1e_c01457{bottom:359.934000px;}
.y1d_c01457{bottom:376.372500px;}
.y1c_c01457{bottom:392.811000px;}
.y1b_c01457{bottom:409.249500px;}
.y1a_c01457{bottom:425.688000px;}
.y19_c01457{bottom:442.125000px;}
.y18_c01457{bottom:458.563500px;}
.y17_c01457{bottom:491.440500px;}
.y16_c01457{bottom:507.879000px;}
.y15_c01457{bottom:524.317500px;}
.y14_c01457{bottom:540.756000px;}
.y13_c01457{bottom:557.194500px;}
.y12_c01457{bottom:573.633000px;}
.y11_c01457{bottom:590.071500px;}
.y10_c01457{bottom:606.508500px;}
.yf_c01457{bottom:622.947000px;}
.ye_c01457{bottom:639.385500px;}
.yd_c01457{bottom:655.824000px;}
.yc_c01457{bottom:672.262500px;}
.yb_c01457{bottom:688.701000px;}
.ya_c01457{bottom:705.139500px;}
.y9_c01457{bottom:721.578000px;}
.y8_c01457{bottom:738.016500px;}
.y7_c01457{bottom:787.330500px;}
.y6_c01457{bottom:803.769000px;}
.y5_c01457{bottom:836.646000px;}
.y4_c01457{bottom:853.084500px;}
.y3_c01457{bottom:869.149500px;}
.y2_c01457{bottom:1141.930500px;}
.y1_c01457{bottom:1159.863000px;}
.h3_c01457{height:35.190766px;}
.h4_c01457{height:36.007158px;}
.h2_c01457{height:52.332837px;}
.h0_c01457{height:1262.835000px;}
.h1_c01457{height:1263.000000px;}
.w0_c01457{width:892.920000px;}
.w1_c01457{width:893.250000px;}
.x0_c01457{left:0.000000px;}
.x1_c01457{left:127.558500px;}
.x2_c01457{left:137.122500px;}
.x3_c01457{left:143.770500px;}
.x4_c01457{left:177.007500px;}
.x5_c01457{left:435.249000px;}
@media print{
.v0_c01457{vertical-align:0.000000pt;}
.ls4_c01457{letter-spacing:0.000000pt;}
.ls1_c01457{letter-spacing:0.078221pt;}
.ls2_c01457{letter-spacing:0.087539pt;}
.ls0_c01457{letter-spacing:0.092873pt;}
.ls3_c01457{letter-spacing:23.724873pt;}
.ws1_c01457{word-spacing:-29.967501pt;}
.ws4_c01457{word-spacing:-23.622682pt;}
.ws3_c01457{word-spacing:-23.544461pt;}
.ws0_c01457{word-spacing:-16.684034pt;}
.ws8_c01457{word-spacing:0.000000pt;}
.ws5_c01457{word-spacing:0.039110pt;}
.wsb_c01457{word-spacing:0.050460pt;}
.ws9_c01457{word-spacing:0.065111pt;}
.wsa_c01457{word-spacing:0.074430pt;}
.ws2_c01457{word-spacing:0.156442pt;}
.wsc_c01457{word-spacing:0.180412pt;}
.ws6_c01457{word-spacing:0.189730pt;}
.ws7_c01457{word-spacing:0.195063pt;}
._0_c01457{margin-left:-3.400567pt;}
._1_c01457{width:0.893988pt;}
._3_c01457{width:47.362694pt;}
._2_c01457{width:70.985376pt;}
._5_c01457{width:94.803610pt;}
._4_c01457{width:118.624363pt;}
.fs1_c01457{font-size:39.110400pt;}
.fs0_c01457{font-size:53.133867pt;}
.y0_c01457{bottom:0.000000pt;}
.y2d_c01457{bottom:39.333333pt;}
.y2c_c01457{bottom:86.150667pt;}
.y2b_c01457{bottom:100.762667pt;}
.y2a_c01457{bottom:115.374667pt;}
.y29_c01457{bottom:129.986667pt;}
.y28_c01457{bottom:144.598667pt;}
.y27_c01457{bottom:159.210667pt;}
.y26_c01457{bottom:173.822667pt;}
.y25_c01457{bottom:188.434667pt;}
.y24_c01457{bottom:203.046667pt;}
.y23_c01457{bottom:217.658667pt;}
.y22_c01457{bottom:232.270667pt;}
.y21_c01457{bottom:261.493333pt;}
.y20_c01457{bottom:276.105333pt;}
.y1f_c01457{bottom:290.717333pt;}
.y1e_c01457{bottom:319.941333pt;}
.y1d_c01457{bottom:334.553333pt;}
.y1c_c01457{bottom:349.165333pt;}
.y1b_c01457{bottom:363.777333pt;}
.y1a_c01457{bottom:378.389333pt;}
.y19_c01457{bottom:393.000000pt;}
.y18_c01457{bottom:407.612000pt;}
.y17_c01457{bottom:436.836000pt;}
.y16_c01457{bottom:451.448000pt;}
.y15_c01457{bottom:466.060000pt;}
.y14_c01457{bottom:480.672000pt;}
.y13_c01457{bottom:495.284000pt;}
.y12_c01457{bottom:509.896000pt;}
.y11_c01457{bottom:524.508000pt;}
.y10_c01457{bottom:539.118667pt;}
.yf_c01457{bottom:553.730667pt;}
.ye_c01457{bottom:568.342667pt;}
.yd_c01457{bottom:582.954667pt;}
.yc_c01457{bottom:597.566667pt;}
.yb_c01457{bottom:612.178667pt;}
.ya_c01457{bottom:626.790667pt;}
.y9_c01457{bottom:641.402667pt;}
.y8_c01457{bottom:656.014667pt;}
.y7_c01457{bottom:699.849333pt;}
.y6_c01457{bottom:714.461333pt;}
.y5_c01457{bottom:743.685333pt;}
.y4_c01457{bottom:758.297333pt;}
.y3_c01457{bottom:772.577333pt;}
.y2_c01457{bottom:1015.049333pt;}
.y1_c01457{bottom:1030.989333pt;}
.h3_c01457{height:31.280681pt;}
.h4_c01457{height:32.006363pt;}
.h2_c01457{height:46.518078pt;}
.h0_c01457{height:1122.520000pt;}
.h1_c01457{height:1122.666667pt;}
.w0_c01457{width:793.706667pt;}
.w1_c01457{width:794.000000pt;}
.x0_c01457{left:0.000000pt;}
.x1_c01457{left:113.385333pt;}
.x2_c01457{left:121.886667pt;}
.x3_c01457{left:127.796000pt;}
.x4_c01457{left:157.340000pt;}
.x5_c01457{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01458 {
    display:none;
  }
  .loading-indicator_c01458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01458 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01458 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01458" -> "#page-container .classname_c01458")
 */
.pf_c01458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01458 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01458 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01458 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01458 {overflow:visible;}
  }
}
.c_c01458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01458 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01458:after { /* webkit #35443 */
  content: '';
}
.t_c01458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01458 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01458 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01458 { /* info for Javascript */
  display:none;
}
.l_c01458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01458:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01458 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01458.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01458;src:url('chunks/assets/font_7c01b2f1acc0d6b09d50d955.woff2')format("woff");}.ff1_c01458{font-family:ff1_c01458;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01458;src:url('chunks/assets/font_ebffa4b263b4041b295d69ca.woff2')format("woff");}.ff2_c01458{font-family:ff2_c01458;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01458;src:url('chunks/assets/font_f47b5a8cfd1060c06f16172d.woff2')format("woff");}.ff3_c01458{font-family:ff3_c01458;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01458;src:url('chunks/assets/font_a6e0330b3c9b1e9c988cb8c6.woff2')format("woff");}.ff4_c01458{font-family:ff4_c01458;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01458;src:url('chunks/assets/font_ab6e3e27ba7fbb3fb102f2ce.woff2')format("woff");}.ff5_c01458{font-family:ff5_c01458;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01458{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01458{vertical-align:0.000000px;}
.ls3_c01458{letter-spacing:0.000000px;}
.ls0_c01458{letter-spacing:0.087998px;}
.ls2_c01458{letter-spacing:0.098482px;}
.ls1_c01458{letter-spacing:0.104482px;}
.sc__c01458{text-shadow:none;}
.sc0_c01458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01458{-webkit-text-stroke:0px transparent;}
.sc0_c01458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01458{word-spacing:-33.713438px;}
.ws2_c01458{word-spacing:-26.575517px;}
.wse_c01458{word-spacing:-26.487518px;}
.ws9_c01458{word-spacing:-21.553319px;}
.ws8_c01458{word-spacing:-21.519216px;}
.ws5_c01458{word-spacing:-18.769538px;}
.ws7_c01458{word-spacing:-17.633802px;}
.ws4_c01458{word-spacing:-14.943900px;}
.wsa_c01458{word-spacing:-14.107042px;}
.wsb_c01458{word-spacing:-12.074671px;}
.ws1_c01458{word-spacing:-9.988424px;}
.ws3_c01458{word-spacing:-9.987499px;}
.ws6_c01458{word-spacing:-7.686144px;}
.ws12_c01458{word-spacing:0.000000px;}
.wsf_c01458{word-spacing:0.043999px;}
.ws15_c01458{word-spacing:0.056767px;}
.ws13_c01458{word-spacing:0.073250px;}
.ws14_c01458{word-spacing:0.083734px;}
.wsd_c01458{word-spacing:0.175997px;}
.ws16_c01458{word-spacing:0.202963px;}
.ws10_c01458{word-spacing:0.213446px;}
.ws11_c01458{word-spacing:0.219446px;}
.ws0_c01458{word-spacing:43.038600px;}
._0_c01458{margin-left:-7.833025px;}
._3_c01458{margin-left:-4.124516px;}
._1_c01458{margin-left:-1.549390px;}
._5_c01458{width:1.005737px;}
._2_c01458{width:19.935816px;}
._4_c01458{width:40.109428px;}
._7_c01458{width:53.283031px;}
._6_c01458{width:79.858548px;}
._8_c01458{width:133.452408px;}
.fc6_c01458{color:rgb(0,0,207);}
.fc5_c01458{color:rgb(79,153,5);}
.fc3_c01458{color:rgb(33,74,135);}
.fc2_c01458{color:rgb(143,89,3);}
.fc4_c01458{color:rgb(207,92,0);}
.fc1_c01458{color:rgb(6,69,173);}
.fc0_c01458{color:rgb(0,0,0);}
.fs2_c01458{font-size:43.999200px;}
.fs1_c01458{font-size:59.775600px;}
.fs0_c01458{font-size:86.077200px;}
.y0_c01458{bottom:0.000000px;}
.y20_c01458{bottom:44.250000px;}
.y1f_c01458{bottom:86.982000px;}
.y1e_c01458{bottom:103.420500px;}
.y1d_c01458{bottom:119.859000px;}
.y1c_c01458{bottom:136.297500px;}
.y1b_c01458{bottom:152.736000px;}
.y1a_c01458{bottom:169.174500px;}
.y19_c01458{bottom:185.613000px;}
.y18_c01458{bottom:202.051500px;}
.y17_c01458{bottom:218.490000px;}
.y16_c01458{bottom:234.927000px;}
.y15_c01458{bottom:251.365500px;}
.y14_c01458{bottom:267.804000px;}
.y13_c01458{bottom:284.242500px;}
.y12_c01458{bottom:300.681000px;}
.y11_c01458{bottom:317.119500px;}
.y10_c01458{bottom:366.435000px;}
.yf_c01458{bottom:382.873500px;}
.ye_c01458{bottom:415.749000px;}
.yd_c01458{bottom:432.187500px;}
.yc_c01458{bottom:448.252500px;}
.yb_c01458{bottom:493.890000px;}
.ya_c01458{bottom:511.822500px;}
.y9_c01458{bottom:529.756500px;}
.y8_c01458{bottom:547.689000px;}
.y7_c01458{bottom:565.621500px;}
.y6_c01458{bottom:583.554000px;}
.y5_c01458{bottom:610.633500px;}
.y4_c01458{bottom:637.714500px;}
.y3_c01458{bottom:664.794000px;}
.y2_c01458{bottom:691.873500px;}
.y1_c01458{bottom:734.407500px;}
.h5_c01458{height:35.190766px;}
.h6_c01458{height:36.007158px;}
.h3_c01458{height:40.511979px;}
.h4_c01458{height:52.332837px;}
.h2_c01458{height:58.337477px;}
.h0_c01458{height:1262.835000px;}
.h1_c01458{height:1263.000000px;}
.w0_c01458{width:892.920000px;}
.w1_c01458{width:893.250000px;}
.x0_c01458{left:0.000000px;}
.x1_c01458{left:127.558500px;}
.x2_c01458{left:137.122500px;}
.x3_c01458{left:143.770500px;}
.x4_c01458{left:435.249000px;}
@media print{
.v0_c01458{vertical-align:0.000000pt;}
.ls3_c01458{letter-spacing:0.000000pt;}
.ls0_c01458{letter-spacing:0.078221pt;}
.ls2_c01458{letter-spacing:0.087539pt;}
.ls1_c01458{letter-spacing:0.092873pt;}
.wsc_c01458{word-spacing:-29.967501pt;}
.ws2_c01458{word-spacing:-23.622682pt;}
.wse_c01458{word-spacing:-23.544461pt;}
.ws9_c01458{word-spacing:-19.158506pt;}
.ws8_c01458{word-spacing:-19.128192pt;}
.ws5_c01458{word-spacing:-16.684034pt;}
.ws7_c01458{word-spacing:-15.674491pt;}
.ws4_c01458{word-spacing:-13.283467pt;}
.wsa_c01458{word-spacing:-12.539593pt;}
.wsb_c01458{word-spacing:-10.733041pt;}
.ws1_c01458{word-spacing:-8.878599pt;}
.ws3_c01458{word-spacing:-8.877777pt;}
.ws6_c01458{word-spacing:-6.832128pt;}
.ws12_c01458{word-spacing:0.000000pt;}
.wsf_c01458{word-spacing:0.039110pt;}
.ws15_c01458{word-spacing:0.050460pt;}
.ws13_c01458{word-spacing:0.065111pt;}
.ws14_c01458{word-spacing:0.074430pt;}
.wsd_c01458{word-spacing:0.156442pt;}
.ws16_c01458{word-spacing:0.180412pt;}
.ws10_c01458{word-spacing:0.189730pt;}
.ws11_c01458{word-spacing:0.195063pt;}
.ws0_c01458{word-spacing:38.256533pt;}
._0_c01458{margin-left:-6.962689pt;}
._3_c01458{margin-left:-3.666237pt;}
._1_c01458{margin-left:-1.377235pt;}
._5_c01458{width:0.893988pt;}
._2_c01458{width:17.720725pt;}
._4_c01458{width:35.652825pt;}
._7_c01458{width:47.362694pt;}
._6_c01458{width:70.985376pt;}
._8_c01458{width:118.624363pt;}
.fs2_c01458{font-size:39.110400pt;}
.fs1_c01458{font-size:53.133867pt;}
.fs0_c01458{font-size:76.513067pt;}
.y0_c01458{bottom:0.000000pt;}
.y20_c01458{bottom:39.333333pt;}
.y1f_c01458{bottom:77.317333pt;}
.y1e_c01458{bottom:91.929333pt;}
.y1d_c01458{bottom:106.541333pt;}
.y1c_c01458{bottom:121.153333pt;}
.y1b_c01458{bottom:135.765333pt;}
.y1a_c01458{bottom:150.377333pt;}
.y19_c01458{bottom:164.989333pt;}
.y18_c01458{bottom:179.601333pt;}
.y17_c01458{bottom:194.213333pt;}
.y16_c01458{bottom:208.824000pt;}
.y15_c01458{bottom:223.436000pt;}
.y14_c01458{bottom:238.048000pt;}
.y13_c01458{bottom:252.660000pt;}
.y12_c01458{bottom:267.272000pt;}
.y11_c01458{bottom:281.884000pt;}
.y10_c01458{bottom:325.720000pt;}
.yf_c01458{bottom:340.332000pt;}
.ye_c01458{bottom:369.554667pt;}
.yd_c01458{bottom:384.166667pt;}
.yc_c01458{bottom:398.446667pt;}
.yb_c01458{bottom:439.013333pt;}
.ya_c01458{bottom:454.953333pt;}
.y9_c01458{bottom:470.894667pt;}
.y8_c01458{bottom:486.834667pt;}
.y7_c01458{bottom:502.774667pt;}
.y6_c01458{bottom:518.714667pt;}
.y5_c01458{bottom:542.785333pt;}
.y4_c01458{bottom:566.857333pt;}
.y3_c01458{bottom:590.928000pt;}
.y2_c01458{bottom:614.998667pt;}
.y1_c01458{bottom:652.806667pt;}
.h5_c01458{height:31.280681pt;}
.h6_c01458{height:32.006363pt;}
.h3_c01458{height:36.010648pt;}
.h4_c01458{height:46.518078pt;}
.h2_c01458{height:51.855535pt;}
.h0_c01458{height:1122.520000pt;}
.h1_c01458{height:1122.666667pt;}
.w0_c01458{width:793.706667pt;}
.w1_c01458{width:794.000000pt;}
.x0_c01458{left:0.000000pt;}
.x1_c01458{left:113.385333pt;}
.x2_c01458{left:121.886667pt;}
.x3_c01458{left:127.796000pt;}
.x4_c01458{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01459 {
    display:none;
  }
  .loading-indicator_c01459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01459 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01459 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01459" -> "#page-container .classname_c01459")
 */
.pf_c01459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01459 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01459 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01459 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01459 {overflow:visible;}
  }
}
.c_c01459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01459 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01459:after { /* webkit #35443 */
  content: '';
}
.t_c01459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01459 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01459 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01459 { /* info for Javascript */
  display:none;
}
.l_c01459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01459:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01459 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01459.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01459;src:url('chunks/assets/font_dd86eae8f7c2c75de2552e76.woff2')format("woff");}.ff1_c01459{font-family:ff1_c01459;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01459;src:url('chunks/assets/font_99b96d4f4aeda36510d84239.woff2')format("woff");}.ff2_c01459{font-family:ff2_c01459;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01459;src:url('chunks/assets/font_6c1582997f74c71700df965a.woff2')format("woff");}.ff3_c01459{font-family:ff3_c01459;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01459;src:url('chunks/assets/font_786a9cdd9ecff82b7b986ce3.woff2')format("woff");}.ff4_c01459{font-family:ff4_c01459;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01459;src:url('chunks/assets/font_613c5fd52046b1bbf5395f14.woff2')format("woff");}.ff5_c01459{font-family:ff5_c01459;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01459{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01459{vertical-align:0.000000px;}
.ls4_c01459{letter-spacing:0.000000px;}
.ls0_c01459{letter-spacing:0.087998px;}
.ls3_c01459{letter-spacing:0.098482px;}
.ls2_c01459{letter-spacing:0.104482px;}
.ls1_c01459{letter-spacing:26.690482px;}
.sc__c01459{text-shadow:none;}
.sc0_c01459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01459{-webkit-text-stroke:0px transparent;}
.sc0_c01459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01459{word-spacing:-26.575517px;}
.ws3_c01459{word-spacing:-26.487518px;}
.wsd_c01459{word-spacing:-21.553319px;}
.wsc_c01459{word-spacing:-21.519216px;}
.wsb_c01459{word-spacing:-19.247743px;}
.ws9_c01459{word-spacing:-18.769538px;}
.ws8_c01459{word-spacing:-14.943900px;}
.wse_c01459{word-spacing:-14.107042px;}
.wsf_c01459{word-spacing:-12.074671px;}
.wsa_c01459{word-spacing:-10.230144px;}
.ws6_c01459{word-spacing:-9.988424px;}
.ws7_c01459{word-spacing:-9.987499px;}
.ws2_c01459{word-spacing:0.000000px;}
.ws0_c01459{word-spacing:0.043999px;}
.ws4_c01459{word-spacing:0.213446px;}
.ws5_c01459{word-spacing:43.038600px;}
._2_c01459{margin-left:-7.833025px;}
._5_c01459{margin-left:-4.124516px;}
._3_c01459{margin-left:-1.549390px;}
._1_c01459{width:1.041538px;}
._4_c01459{width:19.935816px;}
._6_c01459{width:40.109428px;}
._0_c01459{width:106.654061px;}
.fc5_c01459{color:rgb(79,153,5);}
.fc4_c01459{color:rgb(143,89,3);}
.fc3_c01459{color:rgb(0,0,0);}
.fc6_c01459{color:rgb(6,69,173);}
.fc2_c01459{color:rgb(207,92,0);}
.fc1_c01459{color:rgb(0,0,207);}
.fc0_c01459{color:rgb(33,74,135);}
.fs0_c01459{font-size:43.999200px;}
.fs2_c01459{font-size:59.775600px;}
.fs1_c01459{font-size:86.077200px;}
.y0_c01459{bottom:0.000000px;}
.y20_c01459{bottom:44.250000px;}
.y1f_c01459{bottom:82.051500px;}
.y1e_c01459{bottom:99.984000px;}
.y1d_c01459{bottom:117.916500px;}
.y1c_c01459{bottom:135.849000px;}
.y1b_c01459{bottom:162.501000px;}
.y1a_c01459{bottom:189.151500px;}
.y19_c01459{bottom:215.802000px;}
.y18_c01459{bottom:242.454000px;}
.y17_c01459{bottom:284.478000px;}
.y16_c01459{bottom:748.903500px;}
.y15_c01459{bottom:765.342000px;}
.y14_c01459{bottom:781.780500px;}
.y13_c01459{bottom:798.219000px;}
.y12_c01459{bottom:814.657500px;}
.y11_c01459{bottom:831.096000px;}
.y10_c01459{bottom:847.534500px;}
.yf_c01459{bottom:863.973000px;}
.ye_c01459{bottom:880.411500px;}
.yd_c01459{bottom:896.848500px;}
.yc_c01459{bottom:913.287000px;}
.yb_c01459{bottom:946.164000px;}
.ya_c01459{bottom:962.602500px;}
.y9_c01459{bottom:979.041000px;}
.y8_c01459{bottom:1011.918000px;}
.y7_c01459{bottom:1028.356500px;}
.y6_c01459{bottom:1044.795000px;}
.y5_c01459{bottom:1061.232000px;}
.y4_c01459{bottom:1077.670500px;}
.y3_c01459{bottom:1094.109000px;}
.y2_c01459{bottom:1110.547500px;}
.y1_c01459{bottom:1159.863000px;}
.h3_c01459{height:35.190766px;}
.h2_c01459{height:36.007158px;}
.h5_c01459{height:40.511979px;}
.h6_c01459{height:52.332837px;}
.h4_c01459{height:58.337477px;}
.h0_c01459{height:1262.835000px;}
.h1_c01459{height:1263.000000px;}
.w0_c01459{width:892.920000px;}
.w1_c01459{width:893.250000px;}
.x0_c01459{left:0.000000px;}
.x4_c01459{left:127.558500px;}
.x2_c01459{left:137.122500px;}
.x1_c01459{left:143.770500px;}
.x3_c01459{left:177.007500px;}
.x5_c01459{left:435.249000px;}
@media print{
.v0_c01459{vertical-align:0.000000pt;}
.ls4_c01459{letter-spacing:0.000000pt;}
.ls0_c01459{letter-spacing:0.078221pt;}
.ls3_c01459{letter-spacing:0.087539pt;}
.ls2_c01459{letter-spacing:0.092873pt;}
.ls1_c01459{letter-spacing:23.724873pt;}
.ws1_c01459{word-spacing:-23.622682pt;}
.ws3_c01459{word-spacing:-23.544461pt;}
.wsd_c01459{word-spacing:-19.158506pt;}
.wsc_c01459{word-spacing:-19.128192pt;}
.wsb_c01459{word-spacing:-17.109105pt;}
.ws9_c01459{word-spacing:-16.684034pt;}
.ws8_c01459{word-spacing:-13.283467pt;}
.wse_c01459{word-spacing:-12.539593pt;}
.wsf_c01459{word-spacing:-10.733041pt;}
.wsa_c01459{word-spacing:-9.093461pt;}
.ws6_c01459{word-spacing:-8.878599pt;}
.ws7_c01459{word-spacing:-8.877777pt;}
.ws2_c01459{word-spacing:0.000000pt;}
.ws0_c01459{word-spacing:0.039110pt;}
.ws4_c01459{word-spacing:0.189730pt;}
.ws5_c01459{word-spacing:38.256533pt;}
._2_c01459{margin-left:-6.962689pt;}
._5_c01459{margin-left:-3.666237pt;}
._3_c01459{margin-left:-1.377235pt;}
._1_c01459{width:0.925811pt;}
._4_c01459{width:17.720725pt;}
._6_c01459{width:35.652825pt;}
._0_c01459{width:94.803610pt;}
.fs0_c01459{font-size:39.110400pt;}
.fs2_c01459{font-size:53.133867pt;}
.fs1_c01459{font-size:76.513067pt;}
.y0_c01459{bottom:0.000000pt;}
.y20_c01459{bottom:39.333333pt;}
.y1f_c01459{bottom:72.934667pt;}
.y1e_c01459{bottom:88.874667pt;}
.y1d_c01459{bottom:104.814667pt;}
.y1c_c01459{bottom:120.754667pt;}
.y1b_c01459{bottom:144.445333pt;}
.y1a_c01459{bottom:168.134667pt;}
.y19_c01459{bottom:191.824000pt;}
.y18_c01459{bottom:215.514667pt;}
.y17_c01459{bottom:252.869333pt;}
.y16_c01459{bottom:665.692000pt;}
.y15_c01459{bottom:680.304000pt;}
.y14_c01459{bottom:694.916000pt;}
.y13_c01459{bottom:709.528000pt;}
.y12_c01459{bottom:724.140000pt;}
.y11_c01459{bottom:738.752000pt;}
.y10_c01459{bottom:753.364000pt;}
.yf_c01459{bottom:767.976000pt;}
.ye_c01459{bottom:782.588000pt;}
.yd_c01459{bottom:797.198667pt;}
.yc_c01459{bottom:811.810667pt;}
.yb_c01459{bottom:841.034667pt;}
.ya_c01459{bottom:855.646667pt;}
.y9_c01459{bottom:870.258667pt;}
.y8_c01459{bottom:899.482667pt;}
.y7_c01459{bottom:914.094667pt;}
.y6_c01459{bottom:928.706667pt;}
.y5_c01459{bottom:943.317333pt;}
.y4_c01459{bottom:957.929333pt;}
.y3_c01459{bottom:972.541333pt;}
.y2_c01459{bottom:987.153333pt;}
.y1_c01459{bottom:1030.989333pt;}
.h3_c01459{height:31.280681pt;}
.h2_c01459{height:32.006363pt;}
.h5_c01459{height:36.010648pt;}
.h6_c01459{height:46.518078pt;}
.h4_c01459{height:51.855535pt;}
.h0_c01459{height:1122.520000pt;}
.h1_c01459{height:1122.666667pt;}
.w0_c01459{width:793.706667pt;}
.w1_c01459{width:794.000000pt;}
.x0_c01459{left:0.000000pt;}
.x4_c01459{left:113.385333pt;}
.x2_c01459{left:121.886667pt;}
.x1_c01459{left:127.796000pt;}
.x3_c01459{left:157.340000pt;}
.x5_c01459{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01460 {
    display:none;
  }
  .loading-indicator_c01460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01460 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01460 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01460" -> "#page-container .classname_c01460")
 */
.pf_c01460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01460 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01460 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01460 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01460 {overflow:visible;}
  }
}
.c_c01460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01460 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01460:after { /* webkit #35443 */
  content: '';
}
.t_c01460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01460 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01460 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01460 { /* info for Javascript */
  display:none;
}
.l_c01460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01460:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01460 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01460.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01460;src:url('chunks/assets/font_f3d38f2f3f93fdfe6f499e7c.woff2')format("woff");}.ff1_c01460{font-family:ff1_c01460;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01460;src:url('chunks/assets/font_9bdb5516e7b64289d97e5f1f.woff2')format("woff");}.ff2_c01460{font-family:ff2_c01460;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01460;src:url('chunks/assets/font_ac534ec7c87273c7242ee787.woff2')format("woff");}.ff3_c01460{font-family:ff3_c01460;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01460;src:url('chunks/assets/font_1ea3ccbd0d24498850d03460.woff2')format("woff");}.ff4_c01460{font-family:ff4_c01460;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01460{vertical-align:0.000000px;}
.ls4_c01460{letter-spacing:0.000000px;}
.ls1_c01460{letter-spacing:0.087998px;}
.ls2_c01460{letter-spacing:0.098482px;}
.ls0_c01460{letter-spacing:0.104482px;}
.ls3_c01460{letter-spacing:26.690482px;}
.sc__c01460{text-shadow:none;}
.sc0_c01460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01460{-webkit-text-stroke:0px transparent;}
.sc0_c01460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01460{word-spacing:-33.713438px;}
.ws4_c01460{word-spacing:-26.575517px;}
.ws3_c01460{word-spacing:-26.487518px;}
.ws0_c01460{word-spacing:-18.769538px;}
.ws8_c01460{word-spacing:0.000000px;}
.ws5_c01460{word-spacing:0.043999px;}
.wsb_c01460{word-spacing:0.056767px;}
.ws9_c01460{word-spacing:0.073250px;}
.wsa_c01460{word-spacing:0.083734px;}
.ws2_c01460{word-spacing:0.175997px;}
.wsc_c01460{word-spacing:0.202963px;}
.ws6_c01460{word-spacing:0.213446px;}
.ws7_c01460{word-spacing:0.219446px;}
._0_c01460{margin-left:-3.825638px;}
._1_c01460{width:1.005737px;}
._3_c01460{width:53.283031px;}
._2_c01460{width:79.858548px;}
._4_c01460{width:133.452408px;}
.fc5_c01460{color:rgb(0,0,207);}
.fc4_c01460{color:rgb(79,153,5);}
.fc3_c01460{color:rgb(207,92,0);}
.fc2_c01460{color:rgb(33,74,135);}
.fc1_c01460{color:rgb(143,89,3);}
.fc0_c01460{color:rgb(0,0,0);}
.fs1_c01460{font-size:43.999200px;}
.fs0_c01460{font-size:59.775600px;}
.y0_c01460{bottom:0.000000px;}
.y2d_c01460{bottom:44.250000px;}
.y2c_c01460{bottom:96.919500px;}
.y2b_c01460{bottom:113.358000px;}
.y2a_c01460{bottom:129.796500px;}
.y29_c01460{bottom:146.235000px;}
.y28_c01460{bottom:162.673500px;}
.y27_c01460{bottom:179.112000px;}
.y26_c01460{bottom:195.550500px;}
.y25_c01460{bottom:211.989000px;}
.y24_c01460{bottom:228.427500px;}
.y23_c01460{bottom:244.866000px;}
.y22_c01460{bottom:261.304500px;}
.y21_c01460{bottom:294.180000px;}
.y20_c01460{bottom:310.618500px;}
.y1f_c01460{bottom:327.057000px;}
.y1e_c01460{bottom:359.934000px;}
.y1d_c01460{bottom:376.372500px;}
.y1c_c01460{bottom:392.811000px;}
.y1b_c01460{bottom:409.249500px;}
.y1a_c01460{bottom:425.688000px;}
.y19_c01460{bottom:442.125000px;}
.y18_c01460{bottom:458.563500px;}
.y17_c01460{bottom:507.879000px;}
.y16_c01460{bottom:524.317500px;}
.y15_c01460{bottom:540.756000px;}
.y14_c01460{bottom:557.194500px;}
.y13_c01460{bottom:573.633000px;}
.y12_c01460{bottom:590.071500px;}
.y11_c01460{bottom:606.508500px;}
.y10_c01460{bottom:622.947000px;}
.yf_c01460{bottom:639.385500px;}
.ye_c01460{bottom:655.824000px;}
.yd_c01460{bottom:672.262500px;}
.yc_c01460{bottom:688.701000px;}
.yb_c01460{bottom:705.139500px;}
.ya_c01460{bottom:721.578000px;}
.y9_c01460{bottom:738.016500px;}
.y8_c01460{bottom:754.455000px;}
.y7_c01460{bottom:803.769000px;}
.y6_c01460{bottom:820.207500px;}
.y5_c01460{bottom:853.084500px;}
.y4_c01460{bottom:869.523000px;}
.y3_c01460{bottom:885.588000px;}
.y2_c01460{bottom:1141.930500px;}
.y1_c01460{bottom:1159.863000px;}
.h3_c01460{height:35.190766px;}
.h4_c01460{height:36.007158px;}
.h2_c01460{height:52.332837px;}
.h0_c01460{height:1262.835000px;}
.h1_c01460{height:1263.000000px;}
.w0_c01460{width:892.920000px;}
.w1_c01460{width:893.250000px;}
.x0_c01460{left:0.000000px;}
.x1_c01460{left:127.558500px;}
.x2_c01460{left:137.122500px;}
.x3_c01460{left:143.770500px;}
.x4_c01460{left:177.007500px;}
.x5_c01460{left:435.249000px;}
@media print{
.v0_c01460{vertical-align:0.000000pt;}
.ls4_c01460{letter-spacing:0.000000pt;}
.ls1_c01460{letter-spacing:0.078221pt;}
.ls2_c01460{letter-spacing:0.087539pt;}
.ls0_c01460{letter-spacing:0.092873pt;}
.ls3_c01460{letter-spacing:23.724873pt;}
.ws1_c01460{word-spacing:-29.967501pt;}
.ws4_c01460{word-spacing:-23.622682pt;}
.ws3_c01460{word-spacing:-23.544461pt;}
.ws0_c01460{word-spacing:-16.684034pt;}
.ws8_c01460{word-spacing:0.000000pt;}
.ws5_c01460{word-spacing:0.039110pt;}
.wsb_c01460{word-spacing:0.050460pt;}
.ws9_c01460{word-spacing:0.065111pt;}
.wsa_c01460{word-spacing:0.074430pt;}
.ws2_c01460{word-spacing:0.156442pt;}
.wsc_c01460{word-spacing:0.180412pt;}
.ws6_c01460{word-spacing:0.189730pt;}
.ws7_c01460{word-spacing:0.195063pt;}
._0_c01460{margin-left:-3.400567pt;}
._1_c01460{width:0.893988pt;}
._3_c01460{width:47.362694pt;}
._2_c01460{width:70.985376pt;}
._4_c01460{width:118.624363pt;}
.fs1_c01460{font-size:39.110400pt;}
.fs0_c01460{font-size:53.133867pt;}
.y0_c01460{bottom:0.000000pt;}
.y2d_c01460{bottom:39.333333pt;}
.y2c_c01460{bottom:86.150667pt;}
.y2b_c01460{bottom:100.762667pt;}
.y2a_c01460{bottom:115.374667pt;}
.y29_c01460{bottom:129.986667pt;}
.y28_c01460{bottom:144.598667pt;}
.y27_c01460{bottom:159.210667pt;}
.y26_c01460{bottom:173.822667pt;}
.y25_c01460{bottom:188.434667pt;}
.y24_c01460{bottom:203.046667pt;}
.y23_c01460{bottom:217.658667pt;}
.y22_c01460{bottom:232.270667pt;}
.y21_c01460{bottom:261.493333pt;}
.y20_c01460{bottom:276.105333pt;}
.y1f_c01460{bottom:290.717333pt;}
.y1e_c01460{bottom:319.941333pt;}
.y1d_c01460{bottom:334.553333pt;}
.y1c_c01460{bottom:349.165333pt;}
.y1b_c01460{bottom:363.777333pt;}
.y1a_c01460{bottom:378.389333pt;}
.y19_c01460{bottom:393.000000pt;}
.y18_c01460{bottom:407.612000pt;}
.y17_c01460{bottom:451.448000pt;}
.y16_c01460{bottom:466.060000pt;}
.y15_c01460{bottom:480.672000pt;}
.y14_c01460{bottom:495.284000pt;}
.y13_c01460{bottom:509.896000pt;}
.y12_c01460{bottom:524.508000pt;}
.y11_c01460{bottom:539.118667pt;}
.y10_c01460{bottom:553.730667pt;}
.yf_c01460{bottom:568.342667pt;}
.ye_c01460{bottom:582.954667pt;}
.yd_c01460{bottom:597.566667pt;}
.yc_c01460{bottom:612.178667pt;}
.yb_c01460{bottom:626.790667pt;}
.ya_c01460{bottom:641.402667pt;}
.y9_c01460{bottom:656.014667pt;}
.y8_c01460{bottom:670.626667pt;}
.y7_c01460{bottom:714.461333pt;}
.y6_c01460{bottom:729.073333pt;}
.y5_c01460{bottom:758.297333pt;}
.y4_c01460{bottom:772.909333pt;}
.y3_c01460{bottom:787.189333pt;}
.y2_c01460{bottom:1015.049333pt;}
.y1_c01460{bottom:1030.989333pt;}
.h3_c01460{height:31.280681pt;}
.h4_c01460{height:32.006363pt;}
.h2_c01460{height:46.518078pt;}
.h0_c01460{height:1122.520000pt;}
.h1_c01460{height:1122.666667pt;}
.w0_c01460{width:793.706667pt;}
.w1_c01460{width:794.000000pt;}
.x0_c01460{left:0.000000pt;}
.x1_c01460{left:113.385333pt;}
.x2_c01460{left:121.886667pt;}
.x3_c01460{left:127.796000pt;}
.x4_c01460{left:157.340000pt;}
.x5_c01460{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01461 {
    display:none;
  }
  .loading-indicator_c01461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01461 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01461 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01461" -> "#page-container .classname_c01461")
 */
.pf_c01461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01461 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01461 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01461 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01461 {overflow:visible;}
  }
}
.c_c01461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01461 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01461:after { /* webkit #35443 */
  content: '';
}
.t_c01461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01461 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01461 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01461 { /* info for Javascript */
  display:none;
}
.l_c01461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01461:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01461 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01461.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01461;src:url('chunks/assets/font_ff6bfd471914e008ce987e7e.woff2')format("woff");}.ff1_c01461{font-family:ff1_c01461;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01461;src:url('chunks/assets/font_07b0272ede6db2cf7aad7492.woff2')format("woff");}.ff2_c01461{font-family:ff2_c01461;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01461;src:url('chunks/assets/font_ce80f14e571ed671f85e88a0.woff2')format("woff");}.ff3_c01461{font-family:ff3_c01461;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01461;src:url('chunks/assets/font_f558ca60310fe3717f8a530f.woff2')format("woff");}.ff4_c01461{font-family:ff4_c01461;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01461;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01461{font-family:ff5_c01461;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01461{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01461{vertical-align:0.000000px;}
.ls3_c01461{letter-spacing:0.000000px;}
.ls0_c01461{letter-spacing:0.087998px;}
.ls2_c01461{letter-spacing:0.098482px;}
.ls1_c01461{letter-spacing:0.104482px;}
.sc__c01461{text-shadow:none;}
.sc0_c01461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01461{-webkit-text-stroke:0px transparent;}
.sc0_c01461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01461{word-spacing:-26.575517px;}
.wsc_c01461{word-spacing:-26.487518px;}
.ws5_c01461{word-spacing:-18.769538px;}
.ws9_c01461{word-spacing:-15.183002px;}
.ws4_c01461{word-spacing:-14.943900px;}
.wsa_c01461{word-spacing:-14.764573px;}
.ws7_c01461{word-spacing:-12.134447px;}
.ws8_c01461{word-spacing:-12.074671px;}
.ws1_c01461{word-spacing:-9.988424px;}
.ws3_c01461{word-spacing:-9.987499px;}
.ws10_c01461{word-spacing:0.000000px;}
.wsd_c01461{word-spacing:0.043999px;}
.wsb_c01461{word-spacing:0.175997px;}
.wse_c01461{word-spacing:0.213446px;}
.wsf_c01461{word-spacing:0.219446px;}
.ws6_c01461{word-spacing:3.365856px;}
.ws0_c01461{word-spacing:43.038600px;}
._0_c01461{margin-left:-7.833025px;}
._2_c01461{margin-left:-4.124516px;}
._3_c01461{margin-left:-1.075961px;}
._6_c01461{width:1.005737px;}
._1_c01461{width:19.935816px;}
._5_c01461{width:31.979946px;}
._4_c01461{width:39.985136px;}
._7_c01461{width:53.459028px;}
.fc6_c01461{color:rgb(0,0,207);}
.fc5_c01461{color:rgb(79,153,5);}
.fc3_c01461{color:rgb(33,74,135);}
.fc2_c01461{color:rgb(143,89,3);}
.fc4_c01461{color:rgb(207,92,0);}
.fc1_c01461{color:rgb(6,69,173);}
.fc0_c01461{color:rgb(0,0,0);}
.fs2_c01461{font-size:43.999200px;}
.fs1_c01461{font-size:59.775600px;}
.fs0_c01461{font-size:86.077200px;}
.y0_c01461{bottom:0.000000px;}
.y1e_c01461{bottom:44.250000px;}
.y1d_c01461{bottom:86.982000px;}
.y1c_c01461{bottom:119.859000px;}
.y1b_c01461{bottom:136.297500px;}
.y1a_c01461{bottom:152.736000px;}
.y19_c01461{bottom:185.613000px;}
.y18_c01461{bottom:202.051500px;}
.y17_c01461{bottom:218.490000px;}
.y16_c01461{bottom:234.927000px;}
.y15_c01461{bottom:251.365500px;}
.y14_c01461{bottom:267.804000px;}
.y13_c01461{bottom:284.242500px;}
.y12_c01461{bottom:300.681000px;}
.y11_c01461{bottom:317.119500px;}
.y10_c01461{bottom:333.558000px;}
.yf_c01461{bottom:349.996500px;}
.ye_c01461{bottom:399.310500px;}
.yd_c01461{bottom:415.749000px;}
.yc_c01461{bottom:448.626000px;}
.yb_c01461{bottom:465.064500px;}
.ya_c01461{bottom:481.129500px;}
.y9_c01461{bottom:529.758000px;}
.y8_c01461{bottom:547.690500px;}
.y7_c01461{bottom:565.623000px;}
.y6_c01461{bottom:583.557000px;}
.y5_c01461{bottom:610.636500px;}
.y4_c01461{bottom:637.716000px;}
.y3_c01461{bottom:664.795500px;}
.y2_c01461{bottom:691.875000px;}
.y1_c01461{bottom:734.409000px;}
.h5_c01461{height:35.190766px;}
.h6_c01461{height:36.007158px;}
.h3_c01461{height:40.511979px;}
.h4_c01461{height:52.332837px;}
.h2_c01461{height:58.337477px;}
.h0_c01461{height:1262.835000px;}
.h1_c01461{height:1263.000000px;}
.w0_c01461{width:892.920000px;}
.w1_c01461{width:893.250000px;}
.x0_c01461{left:0.000000px;}
.x1_c01461{left:127.558500px;}
.x2_c01461{left:137.122500px;}
.x3_c01461{left:170.359500px;}
.x4_c01461{left:435.249000px;}
@media print{
.v0_c01461{vertical-align:0.000000pt;}
.ls3_c01461{letter-spacing:0.000000pt;}
.ls0_c01461{letter-spacing:0.078221pt;}
.ls2_c01461{letter-spacing:0.087539pt;}
.ls1_c01461{letter-spacing:0.092873pt;}
.ws2_c01461{word-spacing:-23.622682pt;}
.wsc_c01461{word-spacing:-23.544461pt;}
.ws5_c01461{word-spacing:-16.684034pt;}
.ws9_c01461{word-spacing:-13.496002pt;}
.ws4_c01461{word-spacing:-13.283467pt;}
.wsa_c01461{word-spacing:-13.124065pt;}
.ws7_c01461{word-spacing:-10.786175pt;}
.ws8_c01461{word-spacing:-10.733041pt;}
.ws1_c01461{word-spacing:-8.878599pt;}
.ws3_c01461{word-spacing:-8.877777pt;}
.ws10_c01461{word-spacing:0.000000pt;}
.wsd_c01461{word-spacing:0.039110pt;}
.wsb_c01461{word-spacing:0.156442pt;}
.wse_c01461{word-spacing:0.189730pt;}
.wsf_c01461{word-spacing:0.195063pt;}
.ws6_c01461{word-spacing:2.991872pt;}
.ws0_c01461{word-spacing:38.256533pt;}
._0_c01461{margin-left:-6.962689pt;}
._2_c01461{margin-left:-3.666237pt;}
._3_c01461{margin-left:-0.956410pt;}
._6_c01461{width:0.893988pt;}
._1_c01461{width:17.720725pt;}
._5_c01461{width:28.426619pt;}
._4_c01461{width:35.542343pt;}
._7_c01461{width:47.519136pt;}
.fs2_c01461{font-size:39.110400pt;}
.fs1_c01461{font-size:53.133867pt;}
.fs0_c01461{font-size:76.513067pt;}
.y0_c01461{bottom:0.000000pt;}
.y1e_c01461{bottom:39.333333pt;}
.y1d_c01461{bottom:77.317333pt;}
.y1c_c01461{bottom:106.541333pt;}
.y1b_c01461{bottom:121.153333pt;}
.y1a_c01461{bottom:135.765333pt;}
.y19_c01461{bottom:164.989333pt;}
.y18_c01461{bottom:179.601333pt;}
.y17_c01461{bottom:194.213333pt;}
.y16_c01461{bottom:208.824000pt;}
.y15_c01461{bottom:223.436000pt;}
.y14_c01461{bottom:238.048000pt;}
.y13_c01461{bottom:252.660000pt;}
.y12_c01461{bottom:267.272000pt;}
.y11_c01461{bottom:281.884000pt;}
.y10_c01461{bottom:296.496000pt;}
.yf_c01461{bottom:311.108000pt;}
.ye_c01461{bottom:354.942667pt;}
.yd_c01461{bottom:369.554667pt;}
.yc_c01461{bottom:398.778667pt;}
.yb_c01461{bottom:413.390667pt;}
.ya_c01461{bottom:427.670667pt;}
.y9_c01461{bottom:470.896000pt;}
.y8_c01461{bottom:486.836000pt;}
.y7_c01461{bottom:502.776000pt;}
.y6_c01461{bottom:518.717333pt;}
.y5_c01461{bottom:542.788000pt;}
.y4_c01461{bottom:566.858667pt;}
.y3_c01461{bottom:590.929333pt;}
.y2_c01461{bottom:615.000000pt;}
.y1_c01461{bottom:652.808000pt;}
.h5_c01461{height:31.280681pt;}
.h6_c01461{height:32.006363pt;}
.h3_c01461{height:36.010648pt;}
.h4_c01461{height:46.518078pt;}
.h2_c01461{height:51.855535pt;}
.h0_c01461{height:1122.520000pt;}
.h1_c01461{height:1122.666667pt;}
.w0_c01461{width:793.706667pt;}
.w1_c01461{width:794.000000pt;}
.x0_c01461{left:0.000000pt;}
.x1_c01461{left:113.385333pt;}
.x2_c01461{left:121.886667pt;}
.x3_c01461{left:151.430667pt;}
.x4_c01461{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01462 {
    display:none;
  }
  .loading-indicator_c01462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01462" -> "#page-container .classname_c01462")
 */
.pf_c01462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01462 {overflow:visible;}
  }
}
.c_c01462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01462:after { /* webkit #35443 */
  content: '';
}
.t_c01462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01462 { /* info for Javascript */
  display:none;
}
.l_c01462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01462;src:url('chunks/assets/font_9340070327e0d88025cd9ec3.woff2')format("woff");}.ff1_c01462{font-family:ff1_c01462;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01462;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff2_c01462{font-family:ff2_c01462;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01462;src:url('chunks/assets/font_7cc8f71883b0053c1c77351c.woff2')format("woff");}.ff3_c01462{font-family:ff3_c01462;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01462;src:url('chunks/assets/font_bc41eb9df97549f5400baa60.woff2')format("woff");}.ff4_c01462{font-family:ff4_c01462;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01462;src:url('chunks/assets/font_f2e256f4a9cad3e1cbf80fb7.woff2')format("woff");}.ff5_c01462{font-family:ff5_c01462;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01462{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01462{vertical-align:0.000000px;}
.ls3_c01462{letter-spacing:0.000000px;}
.ls0_c01462{letter-spacing:0.087998px;}
.ls1_c01462{letter-spacing:0.098482px;}
.ls2_c01462{letter-spacing:0.104482px;}
.sc__c01462{text-shadow:none;}
.sc0_c01462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01462{-webkit-text-stroke:0px transparent;}
.sc0_c01462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01462{word-spacing:-26.575517px;}
.ws1_c01462{word-spacing:-26.487518px;}
.ws6_c01462{word-spacing:-18.769538px;}
.wsa_c01462{word-spacing:-15.183002px;}
.ws5_c01462{word-spacing:-14.943900px;}
.wsb_c01462{word-spacing:-14.764573px;}
.ws8_c01462{word-spacing:-12.134447px;}
.ws9_c01462{word-spacing:-12.074671px;}
.ws3_c01462{word-spacing:-9.988424px;}
.ws4_c01462{word-spacing:-9.987499px;}
.ws10_c01462{word-spacing:0.000000px;}
.wsd_c01462{word-spacing:0.043999px;}
.wsc_c01462{word-spacing:0.175997px;}
.wse_c01462{word-spacing:0.213446px;}
.wsf_c01462{word-spacing:0.219446px;}
.ws7_c01462{word-spacing:3.365856px;}
.ws2_c01462{word-spacing:43.038600px;}
._0_c01462{margin-left:-7.833025px;}
._2_c01462{margin-left:-4.423394px;}
._6_c01462{margin-left:-3.287658px;}
._3_c01462{margin-left:-1.075961px;}
._7_c01462{width:1.005737px;}
._1_c01462{width:19.935816px;}
._5_c01462{width:31.979946px;}
._4_c01462{width:40.284014px;}
.fc5_c01462{color:rgb(0,0,207);}
.fc6_c01462{color:rgb(6,69,173);}
.fc4_c01462{color:rgb(207,92,0);}
.fc3_c01462{color:rgb(79,153,5);}
.fc2_c01462{color:rgb(33,74,135);}
.fc1_c01462{color:rgb(143,89,3);}
.fc0_c01462{color:rgb(0,0,0);}
.fs0_c01462{font-size:43.999200px;}
.fs2_c01462{font-size:59.775600px;}
.fs1_c01462{font-size:86.077200px;}
.y0_c01462{bottom:0.000000px;}
.y1f_c01462{bottom:44.250000px;}
.y1e_c01462{bottom:82.051500px;}
.y1d_c01462{bottom:98.490000px;}
.y1c_c01462{bottom:114.927000px;}
.y1b_c01462{bottom:131.365500px;}
.y1a_c01462{bottom:147.804000px;}
.y19_c01462{bottom:164.242500px;}
.y18_c01462{bottom:213.558000px;}
.y17_c01462{bottom:229.996500px;}
.y16_c01462{bottom:262.873500px;}
.y15_c01462{bottom:279.310500px;}
.y14_c01462{bottom:295.375500px;}
.y13_c01462{bottom:343.360500px;}
.y12_c01462{bottom:361.293000px;}
.y11_c01462{bottom:379.225500px;}
.y10_c01462{bottom:397.158000px;}
.yf_c01462{bottom:424.026000px;}
.ye_c01462{bottom:450.892500px;}
.yd_c01462{bottom:477.759000px;}
.yc_c01462{bottom:504.627000px;}
.yb_c01462{bottom:546.867000px;}
.ya_c01462{bottom:1011.918000px;}
.y9_c01462{bottom:1028.356500px;}
.y8_c01462{bottom:1044.795000px;}
.y7_c01462{bottom:1061.232000px;}
.y6_c01462{bottom:1077.670500px;}
.y5_c01462{bottom:1094.109000px;}
.y4_c01462{bottom:1110.547500px;}
.y3_c01462{bottom:1126.986000px;}
.y2_c01462{bottom:1143.424500px;}
.y1_c01462{bottom:1159.863000px;}
.h6_c01462{height:35.190766px;}
.h2_c01462{height:36.007158px;}
.h4_c01462{height:40.511979px;}
.h5_c01462{height:52.332837px;}
.h3_c01462{height:58.337477px;}
.h0_c01462{height:1262.835000px;}
.h1_c01462{height:1263.000000px;}
.w0_c01462{width:892.920000px;}
.w1_c01462{width:893.250000px;}
.x0_c01462{left:0.000000px;}
.x3_c01462{left:127.558500px;}
.x1_c01462{left:137.122500px;}
.x4_c01462{left:170.359500px;}
.x2_c01462{left:177.007500px;}
.x5_c01462{left:435.249000px;}
@media print{
.v0_c01462{vertical-align:0.000000pt;}
.ls3_c01462{letter-spacing:0.000000pt;}
.ls0_c01462{letter-spacing:0.078221pt;}
.ls1_c01462{letter-spacing:0.087539pt;}
.ls2_c01462{letter-spacing:0.092873pt;}
.ws0_c01462{word-spacing:-23.622682pt;}
.ws1_c01462{word-spacing:-23.544461pt;}
.ws6_c01462{word-spacing:-16.684034pt;}
.wsa_c01462{word-spacing:-13.496002pt;}
.ws5_c01462{word-spacing:-13.283467pt;}
.wsb_c01462{word-spacing:-13.124065pt;}
.ws8_c01462{word-spacing:-10.786175pt;}
.ws9_c01462{word-spacing:-10.733041pt;}
.ws3_c01462{word-spacing:-8.878599pt;}
.ws4_c01462{word-spacing:-8.877777pt;}
.ws10_c01462{word-spacing:0.000000pt;}
.wsd_c01462{word-spacing:0.039110pt;}
.wsc_c01462{word-spacing:0.156442pt;}
.wse_c01462{word-spacing:0.189730pt;}
.wsf_c01462{word-spacing:0.195063pt;}
.ws7_c01462{word-spacing:2.991872pt;}
.ws2_c01462{word-spacing:38.256533pt;}
._0_c01462{margin-left:-6.962689pt;}
._2_c01462{margin-left:-3.931906pt;}
._6_c01462{margin-left:-2.922363pt;}
._3_c01462{margin-left:-0.956410pt;}
._7_c01462{width:0.893988pt;}
._1_c01462{width:17.720725pt;}
._5_c01462{width:28.426619pt;}
._4_c01462{width:35.808013pt;}
.fs0_c01462{font-size:39.110400pt;}
.fs2_c01462{font-size:53.133867pt;}
.fs1_c01462{font-size:76.513067pt;}
.y0_c01462{bottom:0.000000pt;}
.y1f_c01462{bottom:39.333333pt;}
.y1e_c01462{bottom:72.934667pt;}
.y1d_c01462{bottom:87.546667pt;}
.y1c_c01462{bottom:102.157333pt;}
.y1b_c01462{bottom:116.769333pt;}
.y1a_c01462{bottom:131.381333pt;}
.y19_c01462{bottom:145.993333pt;}
.y18_c01462{bottom:189.829333pt;}
.y17_c01462{bottom:204.441333pt;}
.y16_c01462{bottom:233.665333pt;}
.y15_c01462{bottom:248.276000pt;}
.y14_c01462{bottom:262.556000pt;}
.y13_c01462{bottom:305.209333pt;}
.y12_c01462{bottom:321.149333pt;}
.y11_c01462{bottom:337.089333pt;}
.y10_c01462{bottom:353.029333pt;}
.yf_c01462{bottom:376.912000pt;}
.ye_c01462{bottom:400.793333pt;}
.yd_c01462{bottom:424.674667pt;}
.yc_c01462{bottom:448.557333pt;}
.yb_c01462{bottom:486.104000pt;}
.ya_c01462{bottom:899.482667pt;}
.y9_c01462{bottom:914.094667pt;}
.y8_c01462{bottom:928.706667pt;}
.y7_c01462{bottom:943.317333pt;}
.y6_c01462{bottom:957.929333pt;}
.y5_c01462{bottom:972.541333pt;}
.y4_c01462{bottom:987.153333pt;}
.y3_c01462{bottom:1001.765333pt;}
.y2_c01462{bottom:1016.377333pt;}
.y1_c01462{bottom:1030.989333pt;}
.h6_c01462{height:31.280681pt;}
.h2_c01462{height:32.006363pt;}
.h4_c01462{height:36.010648pt;}
.h5_c01462{height:46.518078pt;}
.h3_c01462{height:51.855535pt;}
.h0_c01462{height:1122.520000pt;}
.h1_c01462{height:1122.666667pt;}
.w0_c01462{width:793.706667pt;}
.w1_c01462{width:794.000000pt;}
.x0_c01462{left:0.000000pt;}
.x3_c01462{left:113.385333pt;}
.x1_c01462{left:121.886667pt;}
.x4_c01462{left:151.430667pt;}
.x2_c01462{left:157.340000pt;}
.x5_c01462{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01463 {
    display:none;
  }
  .loading-indicator_c01463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01463" -> "#page-container .classname_c01463")
 */
.pf_c01463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01463 {overflow:visible;}
  }
}
.c_c01463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01463:after { /* webkit #35443 */
  content: '';
}
.t_c01463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01463 { /* info for Javascript */
  display:none;
}
.l_c01463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01463;src:url('chunks/assets/font_a1ace2b688ec80e60f24f24b.woff2')format("woff");}.ff1_c01463{font-family:ff1_c01463;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01463;src:url('chunks/assets/font_eda66d588e4e9bf60e098d8a.woff2')format("woff");}.ff2_c01463{font-family:ff2_c01463;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01463;src:url('chunks/assets/font_b72e40351f0de53ec1d1b1ec.woff2')format("woff");}.ff3_c01463{font-family:ff3_c01463;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01463;src:url('chunks/assets/font_83ba50b51e554ff89d23def1.woff2')format("woff");}.ff4_c01463{font-family:ff4_c01463;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01463;src:url('chunks/assets/font_5cd01f2c251b599b5c3efce5.woff2')format("woff");}.ff5_c01463{font-family:ff5_c01463;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01463{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01463{vertical-align:0.000000px;}
.ls3_c01463{letter-spacing:0.000000px;}
.ls0_c01463{letter-spacing:0.087998px;}
.ls2_c01463{letter-spacing:0.098482px;}
.ls1_c01463{letter-spacing:0.104482px;}
.sc__c01463{text-shadow:none;}
.sc0_c01463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01463{-webkit-text-stroke:0px transparent;}
.sc0_c01463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01463{word-spacing:-26.575517px;}
.ws3_c01463{word-spacing:-26.487518px;}
.ws9_c01463{word-spacing:-18.769538px;}
.wsd_c01463{word-spacing:-15.183002px;}
.ws8_c01463{word-spacing:-14.943900px;}
.wse_c01463{word-spacing:-14.764573px;}
.wsb_c01463{word-spacing:-12.134447px;}
.wsc_c01463{word-spacing:-12.074671px;}
.ws6_c01463{word-spacing:-9.988424px;}
.ws7_c01463{word-spacing:-9.987499px;}
.ws2_c01463{word-spacing:0.000000px;}
.ws0_c01463{word-spacing:0.043999px;}
.wsf_c01463{word-spacing:0.175997px;}
.ws4_c01463{word-spacing:0.213446px;}
.ws10_c01463{word-spacing:0.219446px;}
.wsa_c01463{word-spacing:3.365856px;}
.ws5_c01463{word-spacing:43.038600px;}
._1_c01463{margin-left:-7.833025px;}
._3_c01463{margin-left:-4.423394px;}
._7_c01463{margin-left:-3.287658px;}
._4_c01463{margin-left:-1.075961px;}
._0_c01463{width:1.041538px;}
._2_c01463{width:19.935816px;}
._6_c01463{width:31.979946px;}
._5_c01463{width:40.284014px;}
.fc5_c01463{color:rgb(0,0,207);}
.fc6_c01463{color:rgb(6,69,173);}
.fc4_c01463{color:rgb(207,92,0);}
.fc3_c01463{color:rgb(143,89,3);}
.fc2_c01463{color:rgb(0,0,0);}
.fc1_c01463{color:rgb(79,153,5);}
.fc0_c01463{color:rgb(33,74,135);}
.fs0_c01463{font-size:43.999200px;}
.fs2_c01463{font-size:59.775600px;}
.fs1_c01463{font-size:86.077200px;}
.y0_c01463{bottom:0.000000px;}
.y20_c01463{bottom:44.250000px;}
.y1f_c01463{bottom:82.051500px;}
.y1e_c01463{bottom:98.490000px;}
.y1d_c01463{bottom:114.553500px;}
.y1c_c01463{bottom:162.538500px;}
.y1b_c01463{bottom:180.471000px;}
.y1a_c01463{bottom:198.403500px;}
.y19_c01463{bottom:216.337500px;}
.y18_c01463{bottom:243.204000px;}
.y17_c01463{bottom:270.070500px;}
.y16_c01463{bottom:296.938500px;}
.y15_c01463{bottom:323.805000px;}
.y14_c01463{bottom:366.045000px;}
.y13_c01463{bottom:831.096000px;}
.y12_c01463{bottom:847.534500px;}
.y11_c01463{bottom:863.973000px;}
.y10_c01463{bottom:880.411500px;}
.yf_c01463{bottom:896.848500px;}
.ye_c01463{bottom:913.287000px;}
.yd_c01463{bottom:929.725500px;}
.yc_c01463{bottom:946.164000px;}
.yb_c01463{bottom:962.602500px;}
.ya_c01463{bottom:979.041000px;}
.y9_c01463{bottom:995.479500px;}
.y8_c01463{bottom:1028.356500px;}
.y7_c01463{bottom:1044.795000px;}
.y6_c01463{bottom:1061.232000px;}
.y5_c01463{bottom:1094.109000px;}
.y4_c01463{bottom:1110.547500px;}
.y3_c01463{bottom:1126.986000px;}
.y2_c01463{bottom:1143.424500px;}
.y1_c01463{bottom:1159.863000px;}
.h3_c01463{height:35.190766px;}
.h2_c01463{height:36.007158px;}
.h5_c01463{height:40.511979px;}
.h6_c01463{height:52.332837px;}
.h4_c01463{height:58.337477px;}
.h0_c01463{height:1262.835000px;}
.h1_c01463{height:1263.000000px;}
.w0_c01463{width:892.920000px;}
.w1_c01463{width:893.250000px;}
.x0_c01463{left:0.000000px;}
.x4_c01463{left:127.558500px;}
.x2_c01463{left:137.122500px;}
.x1_c01463{left:170.359500px;}
.x3_c01463{left:177.007500px;}
.x5_c01463{left:435.249000px;}
@media print{
.v0_c01463{vertical-align:0.000000pt;}
.ls3_c01463{letter-spacing:0.000000pt;}
.ls0_c01463{letter-spacing:0.078221pt;}
.ls2_c01463{letter-spacing:0.087539pt;}
.ls1_c01463{letter-spacing:0.092873pt;}
.ws1_c01463{word-spacing:-23.622682pt;}
.ws3_c01463{word-spacing:-23.544461pt;}
.ws9_c01463{word-spacing:-16.684034pt;}
.wsd_c01463{word-spacing:-13.496002pt;}
.ws8_c01463{word-spacing:-13.283467pt;}
.wse_c01463{word-spacing:-13.124065pt;}
.wsb_c01463{word-spacing:-10.786175pt;}
.wsc_c01463{word-spacing:-10.733041pt;}
.ws6_c01463{word-spacing:-8.878599pt;}
.ws7_c01463{word-spacing:-8.877777pt;}
.ws2_c01463{word-spacing:0.000000pt;}
.ws0_c01463{word-spacing:0.039110pt;}
.wsf_c01463{word-spacing:0.156442pt;}
.ws4_c01463{word-spacing:0.189730pt;}
.ws10_c01463{word-spacing:0.195063pt;}
.wsa_c01463{word-spacing:2.991872pt;}
.ws5_c01463{word-spacing:38.256533pt;}
._1_c01463{margin-left:-6.962689pt;}
._3_c01463{margin-left:-3.931906pt;}
._7_c01463{margin-left:-2.922363pt;}
._4_c01463{margin-left:-0.956410pt;}
._0_c01463{width:0.925811pt;}
._2_c01463{width:17.720725pt;}
._6_c01463{width:28.426619pt;}
._5_c01463{width:35.808013pt;}
.fs0_c01463{font-size:39.110400pt;}
.fs2_c01463{font-size:53.133867pt;}
.fs1_c01463{font-size:76.513067pt;}
.y0_c01463{bottom:0.000000pt;}
.y20_c01463{bottom:39.333333pt;}
.y1f_c01463{bottom:72.934667pt;}
.y1e_c01463{bottom:87.546667pt;}
.y1d_c01463{bottom:101.825333pt;}
.y1c_c01463{bottom:144.478667pt;}
.y1b_c01463{bottom:160.418667pt;}
.y1a_c01463{bottom:176.358667pt;}
.y19_c01463{bottom:192.300000pt;}
.y18_c01463{bottom:216.181333pt;}
.y17_c01463{bottom:240.062667pt;}
.y16_c01463{bottom:263.945333pt;}
.y15_c01463{bottom:287.826667pt;}
.y14_c01463{bottom:325.373333pt;}
.y13_c01463{bottom:738.752000pt;}
.y12_c01463{bottom:753.364000pt;}
.y11_c01463{bottom:767.976000pt;}
.y10_c01463{bottom:782.588000pt;}
.yf_c01463{bottom:797.198667pt;}
.ye_c01463{bottom:811.810667pt;}
.yd_c01463{bottom:826.422667pt;}
.yc_c01463{bottom:841.034667pt;}
.yb_c01463{bottom:855.646667pt;}
.ya_c01463{bottom:870.258667pt;}
.y9_c01463{bottom:884.870667pt;}
.y8_c01463{bottom:914.094667pt;}
.y7_c01463{bottom:928.706667pt;}
.y6_c01463{bottom:943.317333pt;}
.y5_c01463{bottom:972.541333pt;}
.y4_c01463{bottom:987.153333pt;}
.y3_c01463{bottom:1001.765333pt;}
.y2_c01463{bottom:1016.377333pt;}
.y1_c01463{bottom:1030.989333pt;}
.h3_c01463{height:31.280681pt;}
.h2_c01463{height:32.006363pt;}
.h5_c01463{height:36.010648pt;}
.h6_c01463{height:46.518078pt;}
.h4_c01463{height:51.855535pt;}
.h0_c01463{height:1122.520000pt;}
.h1_c01463{height:1122.666667pt;}
.w0_c01463{width:793.706667pt;}
.w1_c01463{width:794.000000pt;}
.x0_c01463{left:0.000000pt;}
.x4_c01463{left:113.385333pt;}
.x2_c01463{left:121.886667pt;}
.x1_c01463{left:151.430667pt;}
.x3_c01463{left:157.340000pt;}
.x5_c01463{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01464 {
    display:none;
  }
  .loading-indicator_c01464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01464" -> "#page-container .classname_c01464")
 */
.pf_c01464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01464 {overflow:visible;}
  }
}
.c_c01464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01464:after { /* webkit #35443 */
  content: '';
}
.t_c01464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01464 { /* info for Javascript */
  display:none;
}
.l_c01464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01464;src:url('chunks/assets/font_f6a4fe3bbb9cf72307d78bc0.woff2')format("woff");}.ff1_c01464{font-family:ff1_c01464;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01464;src:url('chunks/assets/font_b96cc98ac058e5e3d787e4c5.woff2')format("woff");}.ff2_c01464{font-family:ff2_c01464;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01464;src:url('chunks/assets/font_8253ebe102558a995fa5d8b5.woff2')format("woff");}.ff3_c01464{font-family:ff3_c01464;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01464;src:url('chunks/assets/font_070b568b3fbdd744702935de.woff2')format("woff");}.ff4_c01464{font-family:ff4_c01464;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01464;src:url('chunks/assets/font_0c75b2ed8fbf2157e97f14a2.woff2')format("woff");}.ff5_c01464{font-family:ff5_c01464;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01464{vertical-align:0.000000px;}
.ls3_c01464{letter-spacing:0.000000px;}
.ls0_c01464{letter-spacing:0.087998px;}
.ls2_c01464{letter-spacing:0.098482px;}
.ls1_c01464{letter-spacing:0.104482px;}
.sc__c01464{text-shadow:none;}
.sc0_c01464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01464{-webkit-text-stroke:0px transparent;}
.sc0_c01464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01464{word-spacing:-26.575517px;}
.ws3_c01464{word-spacing:-26.487518px;}
.ws9_c01464{word-spacing:-18.769538px;}
.ws8_c01464{word-spacing:-14.943900px;}
.ws6_c01464{word-spacing:-9.988424px;}
.ws7_c01464{word-spacing:-9.987499px;}
.ws0_c01464{word-spacing:0.000000px;}
.ws2_c01464{word-spacing:0.043999px;}
.ws4_c01464{word-spacing:0.213446px;}
.ws5_c01464{word-spacing:43.038600px;}
._2_c01464{margin-left:-7.833025px;}
._4_c01464{margin-left:-6.575316px;}
._5_c01464{margin-left:-4.184292px;}
._1_c01464{width:1.041538px;}
._3_c01464{width:19.935816px;}
._0_c01464{width:106.698060px;}
.fc5_c01464{color:rgb(207,92,0);}
.fc4_c01464{color:rgb(0,0,207);}
.fc3_c01464{color:rgb(79,153,5);}
.fc2_c01464{color:rgb(33,74,135);}
.fc1_c01464{color:rgb(0,0,0);}
.fc0_c01464{color:rgb(143,89,3);}
.fs0_c01464{font-size:43.999200px;}
.fs2_c01464{font-size:59.775600px;}
.fs1_c01464{font-size:86.077200px;}
.y0_c01464{bottom:0.000000px;}
.y20_c01464{bottom:44.250000px;}
.y1f_c01464{bottom:82.051500px;}
.y1e_c01464{bottom:109.861500px;}
.y1d_c01464{bottom:137.673000px;}
.y1c_c01464{bottom:181.266000px;}
.y1b_c01464{bottom:650.274000px;}
.y1a_c01464{bottom:666.712500px;}
.y19_c01464{bottom:683.151000px;}
.y18_c01464{bottom:699.589500px;}
.y17_c01464{bottom:716.028000px;}
.y16_c01464{bottom:732.465000px;}
.y15_c01464{bottom:748.903500px;}
.y14_c01464{bottom:765.342000px;}
.y13_c01464{bottom:781.780500px;}
.y12_c01464{bottom:798.219000px;}
.y11_c01464{bottom:814.657500px;}
.y10_c01464{bottom:847.534500px;}
.yf_c01464{bottom:863.973000px;}
.ye_c01464{bottom:880.411500px;}
.yd_c01464{bottom:913.287000px;}
.yc_c01464{bottom:929.725500px;}
.yb_c01464{bottom:946.164000px;}
.ya_c01464{bottom:962.602500px;}
.y9_c01464{bottom:979.041000px;}
.y8_c01464{bottom:995.479500px;}
.y7_c01464{bottom:1011.918000px;}
.y6_c01464{bottom:1028.356500px;}
.y5_c01464{bottom:1044.795000px;}
.y4_c01464{bottom:1061.232000px;}
.y3_c01464{bottom:1077.670500px;}
.y2_c01464{bottom:1126.986000px;}
.y1_c01464{bottom:1143.424500px;}
.h2_c01464{height:35.190766px;}
.h3_c01464{height:36.007158px;}
.h5_c01464{height:40.511979px;}
.h6_c01464{height:52.332837px;}
.h4_c01464{height:58.337477px;}
.h0_c01464{height:1262.835000px;}
.h1_c01464{height:1263.000000px;}
.w0_c01464{width:892.920000px;}
.w1_c01464{width:893.250000px;}
.x0_c01464{left:0.000000px;}
.x4_c01464{left:127.558500px;}
.x1_c01464{left:137.122500px;}
.x2_c01464{left:170.359500px;}
.x3_c01464{left:177.007500px;}
.x5_c01464{left:435.249000px;}
@media print{
.v0_c01464{vertical-align:0.000000pt;}
.ls3_c01464{letter-spacing:0.000000pt;}
.ls0_c01464{letter-spacing:0.078221pt;}
.ls2_c01464{letter-spacing:0.087539pt;}
.ls1_c01464{letter-spacing:0.092873pt;}
.ws1_c01464{word-spacing:-23.622682pt;}
.ws3_c01464{word-spacing:-23.544461pt;}
.ws9_c01464{word-spacing:-16.684034pt;}
.ws8_c01464{word-spacing:-13.283467pt;}
.ws6_c01464{word-spacing:-8.878599pt;}
.ws7_c01464{word-spacing:-8.877777pt;}
.ws0_c01464{word-spacing:0.000000pt;}
.ws2_c01464{word-spacing:0.039110pt;}
.ws4_c01464{word-spacing:0.189730pt;}
.ws5_c01464{word-spacing:38.256533pt;}
._2_c01464{margin-left:-6.962689pt;}
._4_c01464{margin-left:-5.844725pt;}
._5_c01464{margin-left:-3.719371pt;}
._1_c01464{width:0.925811pt;}
._3_c01464{width:17.720725pt;}
._0_c01464{width:94.842720pt;}
.fs0_c01464{font-size:39.110400pt;}
.fs2_c01464{font-size:53.133867pt;}
.fs1_c01464{font-size:76.513067pt;}
.y0_c01464{bottom:0.000000pt;}
.y20_c01464{bottom:39.333333pt;}
.y1f_c01464{bottom:72.934667pt;}
.y1e_c01464{bottom:97.654667pt;}
.y1d_c01464{bottom:122.376000pt;}
.y1c_c01464{bottom:161.125333pt;}
.y1b_c01464{bottom:578.021333pt;}
.y1a_c01464{bottom:592.633333pt;}
.y19_c01464{bottom:607.245333pt;}
.y18_c01464{bottom:621.857333pt;}
.y17_c01464{bottom:636.469333pt;}
.y16_c01464{bottom:651.080000pt;}
.y15_c01464{bottom:665.692000pt;}
.y14_c01464{bottom:680.304000pt;}
.y13_c01464{bottom:694.916000pt;}
.y12_c01464{bottom:709.528000pt;}
.y11_c01464{bottom:724.140000pt;}
.y10_c01464{bottom:753.364000pt;}
.yf_c01464{bottom:767.976000pt;}
.ye_c01464{bottom:782.588000pt;}
.yd_c01464{bottom:811.810667pt;}
.yc_c01464{bottom:826.422667pt;}
.yb_c01464{bottom:841.034667pt;}
.ya_c01464{bottom:855.646667pt;}
.y9_c01464{bottom:870.258667pt;}
.y8_c01464{bottom:884.870667pt;}
.y7_c01464{bottom:899.482667pt;}
.y6_c01464{bottom:914.094667pt;}
.y5_c01464{bottom:928.706667pt;}
.y4_c01464{bottom:943.317333pt;}
.y3_c01464{bottom:957.929333pt;}
.y2_c01464{bottom:1001.765333pt;}
.y1_c01464{bottom:1016.377333pt;}
.h2_c01464{height:31.280681pt;}
.h3_c01464{height:32.006363pt;}
.h5_c01464{height:36.010648pt;}
.h6_c01464{height:46.518078pt;}
.h4_c01464{height:51.855535pt;}
.h0_c01464{height:1122.520000pt;}
.h1_c01464{height:1122.666667pt;}
.w0_c01464{width:793.706667pt;}
.w1_c01464{width:794.000000pt;}
.x0_c01464{left:0.000000pt;}
.x4_c01464{left:113.385333pt;}
.x1_c01464{left:121.886667pt;}
.x2_c01464{left:151.430667pt;}
.x3_c01464{left:157.340000pt;}
.x5_c01464{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01465 {
    display:none;
  }
  .loading-indicator_c01465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01465" -> "#page-container .classname_c01465")
 */
.pf_c01465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01465 {overflow:visible;}
  }
}
.c_c01465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01465:after { /* webkit #35443 */
  content: '';
}
.t_c01465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01465 { /* info for Javascript */
  display:none;
}
.l_c01465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01465;src:url('chunks/assets/font_c07d514bddcb12c6d36e029f.woff2')format("woff");}.ff1_c01465{font-family:ff1_c01465;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01465;src:url('chunks/assets/font_5c2b19470a22fda988af8472.woff2')format("woff");}.ff2_c01465{font-family:ff2_c01465;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01465;src:url('chunks/assets/font_51d23f05ea391945de9d5906.woff2')format("woff");}.ff3_c01465{font-family:ff3_c01465;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01465;src:url('chunks/assets/font_45ab17ccacab0b385cdcdc33.woff2')format("woff");}.ff4_c01465{font-family:ff4_c01465;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01465;src:url('chunks/assets/font_c2289f15fca237548a4230a2.woff2')format("woff");}.ff5_c01465{font-family:ff5_c01465;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01465{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01465{vertical-align:0.000000px;}
.ls3_c01465{letter-spacing:0.000000px;}
.ls0_c01465{letter-spacing:0.087998px;}
.ls2_c01465{letter-spacing:0.098482px;}
.ls1_c01465{letter-spacing:0.104482px;}
.sc__c01465{text-shadow:none;}
.sc0_c01465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01465{-webkit-text-stroke:0px transparent;}
.sc0_c01465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01465{word-spacing:-26.575517px;}
.wsb_c01465{word-spacing:-26.487518px;}
.ws1_c01465{word-spacing:-18.769538px;}
.ws4_c01465{word-spacing:-18.052231px;}
.ws3_c01465{word-spacing:-17.992456px;}
.ws5_c01465{word-spacing:-17.934762px;}
.ws7_c01465{word-spacing:-17.932680px;}
.ws9_c01465{word-spacing:-17.394700px;}
.ws0_c01465{word-spacing:-14.943900px;}
.ws8_c01465{word-spacing:-13.449510px;}
.ws6_c01465{word-spacing:-10.747366px;}
.ws2_c01465{word-spacing:-8.364144px;}
.ws10_c01465{word-spacing:0.000000px;}
.wsd_c01465{word-spacing:0.043999px;}
.ws11_c01465{word-spacing:0.056767px;}
.wsa_c01465{word-spacing:0.175997px;}
.wse_c01465{word-spacing:0.213446px;}
.wsf_c01465{word-spacing:0.219446px;}
._2_c01465{margin-left:-4.032222px;}
._1_c01465{margin-left:-1.075961px;}
._7_c01465{width:1.005737px;}
._0_c01465{width:19.930500px;}
._5_c01465{width:21.307370px;}
._3_c01465{width:22.362626px;}
._6_c01465{width:24.029791px;}
._4_c01465{width:35.686033px;}
._8_c01465{width:106.654061px;}
.fc6_c01465{color:rgb(0,0,207);}
.fc5_c01465{color:rgb(79,153,5);}
.fc3_c01465{color:rgb(33,74,135);}
.fc2_c01465{color:rgb(143,89,3);}
.fc4_c01465{color:rgb(207,92,0);}
.fc1_c01465{color:rgb(6,69,173);}
.fc0_c01465{color:rgb(0,0,0);}
.fs1_c01465{font-size:43.999200px;}
.fs0_c01465{font-size:59.775600px;}
.y0_c01465{bottom:0.000000px;}
.y34_c01465{bottom:44.250000px;}
.y33_c01465{bottom:96.919500px;}
.y32_c01465{bottom:113.358000px;}
.y31_c01465{bottom:129.796500px;}
.y30_c01465{bottom:146.235000px;}
.y2f_c01465{bottom:162.673500px;}
.y2e_c01465{bottom:179.112000px;}
.y2d_c01465{bottom:195.550500px;}
.y2c_c01465{bottom:211.989000px;}
.y2b_c01465{bottom:228.427500px;}
.y2a_c01465{bottom:244.866000px;}
.y29_c01465{bottom:261.304500px;}
.y28_c01465{bottom:294.180000px;}
.y27_c01465{bottom:310.618500px;}
.y26_c01465{bottom:327.057000px;}
.y25_c01465{bottom:359.934000px;}
.y24_c01465{bottom:376.372500px;}
.y23_c01465{bottom:409.249500px;}
.y22_c01465{bottom:425.688000px;}
.y21_c01465{bottom:442.125000px;}
.y20_c01465{bottom:475.002000px;}
.y1f_c01465{bottom:491.440500px;}
.y1e_c01465{bottom:507.879000px;}
.y1d_c01465{bottom:540.756000px;}
.y1c_c01465{bottom:557.194500px;}
.y1b_c01465{bottom:573.633000px;}
.y1a_c01465{bottom:590.071500px;}
.y19_c01465{bottom:606.508500px;}
.y18_c01465{bottom:622.947000px;}
.y17_c01465{bottom:639.385500px;}
.y16_c01465{bottom:655.824000px;}
.y15_c01465{bottom:672.262500px;}
.y14_c01465{bottom:721.578000px;}
.y13_c01465{bottom:738.016500px;}
.y12_c01465{bottom:754.455000px;}
.y11_c01465{bottom:770.893500px;}
.y10_c01465{bottom:787.330500px;}
.yf_c01465{bottom:803.769000px;}
.ye_c01465{bottom:820.207500px;}
.yd_c01465{bottom:836.646000px;}
.yc_c01465{bottom:853.084500px;}
.yb_c01465{bottom:869.523000px;}
.ya_c01465{bottom:918.838500px;}
.y9_c01465{bottom:935.277000px;}
.y8_c01465{bottom:968.152500px;}
.y7_c01465{bottom:984.591000px;}
.y6_c01465{bottom:1000.656000px;}
.y5_c01465{bottom:1070.508000px;}
.y4_c01465{bottom:1088.440500px;}
.y3_c01465{bottom:1106.373000px;}
.y2_c01465{bottom:1124.305500px;}
.y1_c01465{bottom:1159.863000px;}
.h3_c01465{height:35.190766px;}
.h4_c01465{height:36.007158px;}
.h2_c01465{height:52.332837px;}
.h0_c01465{height:1262.835000px;}
.h1_c01465{height:1263.000000px;}
.w0_c01465{width:892.920000px;}
.w1_c01465{width:893.250000px;}
.x0_c01465{left:0.000000px;}
.x1_c01465{left:127.558500px;}
.x2_c01465{left:137.122500px;}
.x4_c01465{left:177.007500px;}
.x3_c01465{left:196.948500px;}
.x5_c01465{left:435.249000px;}
@media print{
.v0_c01465{vertical-align:0.000000pt;}
.ls3_c01465{letter-spacing:0.000000pt;}
.ls0_c01465{letter-spacing:0.078221pt;}
.ls2_c01465{letter-spacing:0.087539pt;}
.ls1_c01465{letter-spacing:0.092873pt;}
.wsc_c01465{word-spacing:-23.622682pt;}
.wsb_c01465{word-spacing:-23.544461pt;}
.ws1_c01465{word-spacing:-16.684034pt;}
.ws4_c01465{word-spacing:-16.046428pt;}
.ws3_c01465{word-spacing:-15.993294pt;}
.ws5_c01465{word-spacing:-15.942011pt;}
.ws7_c01465{word-spacing:-15.940160pt;}
.ws9_c01465{word-spacing:-15.461955pt;}
.ws0_c01465{word-spacing:-13.283467pt;}
.ws8_c01465{word-spacing:-11.955120pt;}
.ws6_c01465{word-spacing:-9.553214pt;}
.ws2_c01465{word-spacing:-7.434795pt;}
.ws10_c01465{word-spacing:0.000000pt;}
.wsd_c01465{word-spacing:0.039110pt;}
.ws11_c01465{word-spacing:0.050460pt;}
.wsa_c01465{word-spacing:0.156442pt;}
.wse_c01465{word-spacing:0.189730pt;}
.wsf_c01465{word-spacing:0.195063pt;}
._2_c01465{margin-left:-3.584197pt;}
._1_c01465{margin-left:-0.956410pt;}
._7_c01465{width:0.893988pt;}
._0_c01465{width:17.716000pt;}
._5_c01465{width:18.939885pt;}
._3_c01465{width:19.877890pt;}
._6_c01465{width:21.359814pt;}
._4_c01465{width:31.720918pt;}
._8_c01465{width:94.803610pt;}
.fs1_c01465{font-size:39.110400pt;}
.fs0_c01465{font-size:53.133867pt;}
.y0_c01465{bottom:0.000000pt;}
.y34_c01465{bottom:39.333333pt;}
.y33_c01465{bottom:86.150667pt;}
.y32_c01465{bottom:100.762667pt;}
.y31_c01465{bottom:115.374667pt;}
.y30_c01465{bottom:129.986667pt;}
.y2f_c01465{bottom:144.598667pt;}
.y2e_c01465{bottom:159.210667pt;}
.y2d_c01465{bottom:173.822667pt;}
.y2c_c01465{bottom:188.434667pt;}
.y2b_c01465{bottom:203.046667pt;}
.y2a_c01465{bottom:217.658667pt;}
.y29_c01465{bottom:232.270667pt;}
.y28_c01465{bottom:261.493333pt;}
.y27_c01465{bottom:276.105333pt;}
.y26_c01465{bottom:290.717333pt;}
.y25_c01465{bottom:319.941333pt;}
.y24_c01465{bottom:334.553333pt;}
.y23_c01465{bottom:363.777333pt;}
.y22_c01465{bottom:378.389333pt;}
.y21_c01465{bottom:393.000000pt;}
.y20_c01465{bottom:422.224000pt;}
.y1f_c01465{bottom:436.836000pt;}
.y1e_c01465{bottom:451.448000pt;}
.y1d_c01465{bottom:480.672000pt;}
.y1c_c01465{bottom:495.284000pt;}
.y1b_c01465{bottom:509.896000pt;}
.y1a_c01465{bottom:524.508000pt;}
.y19_c01465{bottom:539.118667pt;}
.y18_c01465{bottom:553.730667pt;}
.y17_c01465{bottom:568.342667pt;}
.y16_c01465{bottom:582.954667pt;}
.y15_c01465{bottom:597.566667pt;}
.y14_c01465{bottom:641.402667pt;}
.y13_c01465{bottom:656.014667pt;}
.y12_c01465{bottom:670.626667pt;}
.y11_c01465{bottom:685.238667pt;}
.y10_c01465{bottom:699.849333pt;}
.yf_c01465{bottom:714.461333pt;}
.ye_c01465{bottom:729.073333pt;}
.yd_c01465{bottom:743.685333pt;}
.yc_c01465{bottom:758.297333pt;}
.yb_c01465{bottom:772.909333pt;}
.ya_c01465{bottom:816.745333pt;}
.y9_c01465{bottom:831.357333pt;}
.y8_c01465{bottom:860.580000pt;}
.y7_c01465{bottom:875.192000pt;}
.y6_c01465{bottom:889.472000pt;}
.y5_c01465{bottom:951.562667pt;}
.y4_c01465{bottom:967.502667pt;}
.y3_c01465{bottom:983.442667pt;}
.y2_c01465{bottom:999.382667pt;}
.y1_c01465{bottom:1030.989333pt;}
.h3_c01465{height:31.280681pt;}
.h4_c01465{height:32.006363pt;}
.h2_c01465{height:46.518078pt;}
.h0_c01465{height:1122.520000pt;}
.h1_c01465{height:1122.666667pt;}
.w0_c01465{width:793.706667pt;}
.w1_c01465{width:794.000000pt;}
.x0_c01465{left:0.000000pt;}
.x1_c01465{left:113.385333pt;}
.x2_c01465{left:121.886667pt;}
.x4_c01465{left:157.340000pt;}
.x3_c01465{left:175.065333pt;}
.x5_c01465{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01466 {
    display:none;
  }
  .loading-indicator_c01466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01466" -> "#page-container .classname_c01466")
 */
.pf_c01466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01466 {overflow:visible;}
  }
}
.c_c01466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01466:after { /* webkit #35443 */
  content: '';
}
.t_c01466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01466 { /* info for Javascript */
  display:none;
}
.l_c01466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01466;src:url('chunks/assets/font_90f1b3558ab59adba4d23ad6.woff2')format("woff");}.ff1_c01466{font-family:ff1_c01466;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01466;src:url('chunks/assets/font_b7feec0c531fdebbadffb7db.woff2')format("woff");}.ff2_c01466{font-family:ff2_c01466;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01466;src:url('chunks/assets/font_817439ce6f0ed79c51767666.woff2')format("woff");}.ff3_c01466{font-family:ff3_c01466;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01466;src:url('chunks/assets/font_ce276b7c056fe25d4b41365f.woff2')format("woff");}.ff4_c01466{font-family:ff4_c01466;line-height:1.014648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01466;src:url('chunks/assets/font_7473121ea48daeca971f4303.woff2')format("woff");}.ff5_c01466{font-family:ff5_c01466;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01466{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01466{vertical-align:0.000000px;}
.ls3_c01466{letter-spacing:0.000000px;}
.ls0_c01466{letter-spacing:0.087998px;}
.ls2_c01466{letter-spacing:0.098482px;}
.ls1_c01466{letter-spacing:0.104482px;}
.sc__c01466{text-shadow:none;}
.sc0_c01466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01466{-webkit-text-stroke:0px transparent;}
.sc0_c01466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01466{word-spacing:-26.575517px;}
.wsc_c01466{word-spacing:-26.487518px;}
.ws5_c01466{word-spacing:-18.769538px;}
.ws9_c01466{word-spacing:-15.183002px;}
.ws4_c01466{word-spacing:-14.943900px;}
.wsa_c01466{word-spacing:-14.764573px;}
.ws7_c01466{word-spacing:-12.134447px;}
.ws8_c01466{word-spacing:-12.074671px;}
.ws1_c01466{word-spacing:-9.988424px;}
.ws3_c01466{word-spacing:-9.987499px;}
.ws10_c01466{word-spacing:0.000000px;}
.wsd_c01466{word-spacing:0.043999px;}
.wsb_c01466{word-spacing:0.175997px;}
.wse_c01466{word-spacing:0.213446px;}
.wsf_c01466{word-spacing:0.219446px;}
.ws6_c01466{word-spacing:3.365856px;}
.ws0_c01466{word-spacing:43.038600px;}
._0_c01466{margin-left:-7.833025px;}
._2_c01466{margin-left:-4.423394px;}
._6_c01466{margin-left:-3.287658px;}
._3_c01466{margin-left:-1.075961px;}
._7_c01466{width:1.005737px;}
._1_c01466{width:19.935816px;}
._5_c01466{width:31.979946px;}
._4_c01466{width:40.284014px;}
._8_c01466{width:53.503027px;}
.fc6_c01466{color:rgb(0,0,207);}
.fc5_c01466{color:rgb(79,153,5);}
.fc3_c01466{color:rgb(33,74,135);}
.fc2_c01466{color:rgb(143,89,3);}
.fc4_c01466{color:rgb(207,92,0);}
.fc1_c01466{color:rgb(6,69,173);}
.fc0_c01466{color:rgb(0,0,0);}
.fs2_c01466{font-size:43.999200px;}
.fs1_c01466{font-size:59.775600px;}
.fs0_c01466{font-size:86.077200px;}
.y0_c01466{bottom:0.000000px;}
.y1e_c01466{bottom:44.250000px;}
.y1d_c01466{bottom:86.982000px;}
.y1c_c01466{bottom:119.859000px;}
.y1b_c01466{bottom:136.297500px;}
.y1a_c01466{bottom:152.736000px;}
.y19_c01466{bottom:185.613000px;}
.y18_c01466{bottom:202.051500px;}
.y17_c01466{bottom:218.490000px;}
.y16_c01466{bottom:234.927000px;}
.y15_c01466{bottom:251.365500px;}
.y14_c01466{bottom:267.804000px;}
.y13_c01466{bottom:284.242500px;}
.y12_c01466{bottom:300.681000px;}
.y11_c01466{bottom:317.119500px;}
.y10_c01466{bottom:333.558000px;}
.yf_c01466{bottom:349.996500px;}
.ye_c01466{bottom:399.310500px;}
.yd_c01466{bottom:415.749000px;}
.yc_c01466{bottom:448.626000px;}
.yb_c01466{bottom:465.064500px;}
.ya_c01466{bottom:481.129500px;}
.y9_c01466{bottom:529.758000px;}
.y8_c01466{bottom:547.690500px;}
.y7_c01466{bottom:565.623000px;}
.y6_c01466{bottom:583.557000px;}
.y5_c01466{bottom:610.636500px;}
.y4_c01466{bottom:637.716000px;}
.y3_c01466{bottom:664.795500px;}
.y2_c01466{bottom:691.875000px;}
.y1_c01466{bottom:734.409000px;}
.h5_c01466{height:35.190766px;}
.h6_c01466{height:36.007158px;}
.h3_c01466{height:40.511979px;}
.h4_c01466{height:52.332837px;}
.h2_c01466{height:58.337477px;}
.h0_c01466{height:1262.835000px;}
.h1_c01466{height:1263.000000px;}
.w0_c01466{width:892.920000px;}
.w1_c01466{width:893.250000px;}
.x0_c01466{left:0.000000px;}
.x1_c01466{left:127.558500px;}
.x2_c01466{left:137.122500px;}
.x3_c01466{left:170.359500px;}
.x4_c01466{left:435.249000px;}
@media print{
.v0_c01466{vertical-align:0.000000pt;}
.ls3_c01466{letter-spacing:0.000000pt;}
.ls0_c01466{letter-spacing:0.078221pt;}
.ls2_c01466{letter-spacing:0.087539pt;}
.ls1_c01466{letter-spacing:0.092873pt;}
.ws2_c01466{word-spacing:-23.622682pt;}
.wsc_c01466{word-spacing:-23.544461pt;}
.ws5_c01466{word-spacing:-16.684034pt;}
.ws9_c01466{word-spacing:-13.496002pt;}
.ws4_c01466{word-spacing:-13.283467pt;}
.wsa_c01466{word-spacing:-13.124065pt;}
.ws7_c01466{word-spacing:-10.786175pt;}
.ws8_c01466{word-spacing:-10.733041pt;}
.ws1_c01466{word-spacing:-8.878599pt;}
.ws3_c01466{word-spacing:-8.877777pt;}
.ws10_c01466{word-spacing:0.000000pt;}
.wsd_c01466{word-spacing:0.039110pt;}
.wsb_c01466{word-spacing:0.156442pt;}
.wse_c01466{word-spacing:0.189730pt;}
.wsf_c01466{word-spacing:0.195063pt;}
.ws6_c01466{word-spacing:2.991872pt;}
.ws0_c01466{word-spacing:38.256533pt;}
._0_c01466{margin-left:-6.962689pt;}
._2_c01466{margin-left:-3.931906pt;}
._6_c01466{margin-left:-2.922363pt;}
._3_c01466{margin-left:-0.956410pt;}
._7_c01466{width:0.893988pt;}
._1_c01466{width:17.720725pt;}
._5_c01466{width:28.426619pt;}
._4_c01466{width:35.808013pt;}
._8_c01466{width:47.558246pt;}
.fs2_c01466{font-size:39.110400pt;}
.fs1_c01466{font-size:53.133867pt;}
.fs0_c01466{font-size:76.513067pt;}
.y0_c01466{bottom:0.000000pt;}
.y1e_c01466{bottom:39.333333pt;}
.y1d_c01466{bottom:77.317333pt;}
.y1c_c01466{bottom:106.541333pt;}
.y1b_c01466{bottom:121.153333pt;}
.y1a_c01466{bottom:135.765333pt;}
.y19_c01466{bottom:164.989333pt;}
.y18_c01466{bottom:179.601333pt;}
.y17_c01466{bottom:194.213333pt;}
.y16_c01466{bottom:208.824000pt;}
.y15_c01466{bottom:223.436000pt;}
.y14_c01466{bottom:238.048000pt;}
.y13_c01466{bottom:252.660000pt;}
.y12_c01466{bottom:267.272000pt;}
.y11_c01466{bottom:281.884000pt;}
.y10_c01466{bottom:296.496000pt;}
.yf_c01466{bottom:311.108000pt;}
.ye_c01466{bottom:354.942667pt;}
.yd_c01466{bottom:369.554667pt;}
.yc_c01466{bottom:398.778667pt;}
.yb_c01466{bottom:413.390667pt;}
.ya_c01466{bottom:427.670667pt;}
.y9_c01466{bottom:470.896000pt;}
.y8_c01466{bottom:486.836000pt;}
.y7_c01466{bottom:502.776000pt;}
.y6_c01466{bottom:518.717333pt;}
.y5_c01466{bottom:542.788000pt;}
.y4_c01466{bottom:566.858667pt;}
.y3_c01466{bottom:590.929333pt;}
.y2_c01466{bottom:615.000000pt;}
.y1_c01466{bottom:652.808000pt;}
.h5_c01466{height:31.280681pt;}
.h6_c01466{height:32.006363pt;}
.h3_c01466{height:36.010648pt;}
.h4_c01466{height:46.518078pt;}
.h2_c01466{height:51.855535pt;}
.h0_c01466{height:1122.520000pt;}
.h1_c01466{height:1122.666667pt;}
.w0_c01466{width:793.706667pt;}
.w1_c01466{width:794.000000pt;}
.x0_c01466{left:0.000000pt;}
.x1_c01466{left:113.385333pt;}
.x2_c01466{left:121.886667pt;}
.x3_c01466{left:151.430667pt;}
.x4_c01466{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01467 {
    display:none;
  }
  .loading-indicator_c01467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01467" -> "#page-container .classname_c01467")
 */
.pf_c01467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01467 {overflow:visible;}
  }
}
.c_c01467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01467:after { /* webkit #35443 */
  content: '';
}
.t_c01467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01467 { /* info for Javascript */
  display:none;
}
.l_c01467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01467;src:url('chunks/assets/font_232d5fd4fa2dc1570cf7f25f.woff2')format("woff");}.ff1_c01467{font-family:ff1_c01467;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01467;src:url('chunks/assets/font_28972cab3f70ac0fbd18cabf.woff2')format("woff");}.ff2_c01467{font-family:ff2_c01467;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01467;src:url('chunks/assets/font_0655202f8e48a6cedb9fe2c1.woff2')format("woff");}.ff3_c01467{font-family:ff3_c01467;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01467{vertical-align:0.000000px;}
.ls3_c01467{letter-spacing:0.000000px;}
.ls0_c01467{letter-spacing:0.087998px;}
.ls1_c01467{letter-spacing:0.098482px;}
.ls2_c01467{letter-spacing:0.104482px;}
.sc__c01467{text-shadow:none;}
.sc0_c01467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01467{-webkit-text-stroke:0px transparent;}
.sc0_c01467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01467{word-spacing:-26.575517px;}
.ws1_c01467{word-spacing:-26.487518px;}
.ws2_c01467{word-spacing:0.000000px;}
.fc5_c01467{color:rgb(0,0,207);}
.fc4_c01467{color:rgb(207,92,0);}
.fc3_c01467{color:rgb(79,153,5);}
.fc2_c01467{color:rgb(33,74,135);}
.fc1_c01467{color:rgb(143,89,3);}
.fc0_c01467{color:rgb(0,0,0);}
.fs0_c01467{font-size:43.999200px;}
.fs1_c01467{font-size:59.775600px;}
.y0_c01467{bottom:0.000000px;}
.yb_c01467{bottom:44.250000px;}
.ya_c01467{bottom:1011.918000px;}
.y9_c01467{bottom:1028.356500px;}
.y8_c01467{bottom:1044.795000px;}
.y7_c01467{bottom:1061.232000px;}
.y6_c01467{bottom:1077.670500px;}
.y5_c01467{bottom:1094.109000px;}
.y4_c01467{bottom:1110.547500px;}
.y3_c01467{bottom:1126.986000px;}
.y2_c01467{bottom:1143.424500px;}
.y1_c01467{bottom:1159.863000px;}
.h2_c01467{height:36.007158px;}
.h3_c01467{height:52.332837px;}
.h0_c01467{height:1262.835000px;}
.h1_c01467{height:1263.000000px;}
.w0_c01467{width:892.920000px;}
.w1_c01467{width:893.250000px;}
.x0_c01467{left:0.000000px;}
.x1_c01467{left:137.122500px;}
.x2_c01467{left:177.007500px;}
.x3_c01467{left:435.249000px;}
@media print{
.v0_c01467{vertical-align:0.000000pt;}
.ls3_c01467{letter-spacing:0.000000pt;}
.ls0_c01467{letter-spacing:0.078221pt;}
.ls1_c01467{letter-spacing:0.087539pt;}
.ls2_c01467{letter-spacing:0.092873pt;}
.ws0_c01467{word-spacing:-23.622682pt;}
.ws1_c01467{word-spacing:-23.544461pt;}
.ws2_c01467{word-spacing:0.000000pt;}
.fs0_c01467{font-size:39.110400pt;}
.fs1_c01467{font-size:53.133867pt;}
.y0_c01467{bottom:0.000000pt;}
.yb_c01467{bottom:39.333333pt;}
.ya_c01467{bottom:899.482667pt;}
.y9_c01467{bottom:914.094667pt;}
.y8_c01467{bottom:928.706667pt;}
.y7_c01467{bottom:943.317333pt;}
.y6_c01467{bottom:957.929333pt;}
.y5_c01467{bottom:972.541333pt;}
.y4_c01467{bottom:987.153333pt;}
.y3_c01467{bottom:1001.765333pt;}
.y2_c01467{bottom:1016.377333pt;}
.y1_c01467{bottom:1030.989333pt;}
.h2_c01467{height:32.006363pt;}
.h3_c01467{height:46.518078pt;}
.h0_c01467{height:1122.520000pt;}
.h1_c01467{height:1122.666667pt;}
.w0_c01467{width:793.706667pt;}
.w1_c01467{width:794.000000pt;}
.x0_c01467{left:0.000000pt;}
.x1_c01467{left:121.886667pt;}
.x2_c01467{left:157.340000pt;}
.x3_c01467{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01468 {
    display:none;
  }
  .loading-indicator_c01468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01468" -> "#page-container .classname_c01468")
 */
.pf_c01468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01468 {overflow:visible;}
  }
}
.c_c01468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01468:after { /* webkit #35443 */
  content: '';
}
.t_c01468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01468 { /* info for Javascript */
  display:none;
}
.l_c01468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01468;src:url('chunks/assets/font_7448dfb26d613ed254371630.woff2')format("woff");}.ff1_c01468{font-family:ff1_c01468;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01468;src:url('chunks/assets/font_85c4439e0ab1873f9d75ff92.woff2')format("woff");}.ff2_c01468{font-family:ff2_c01468;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01468;src:url('chunks/assets/font_1752986cedfd72647665709e.woff2')format("woff");}.ff3_c01468{font-family:ff3_c01468;line-height:1.083496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01468{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01468{vertical-align:0.000000px;}
.ls0_c01468{letter-spacing:0.000000px;}
.sc__c01468{text-shadow:none;}
.sc0_c01468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01468{-webkit-text-stroke:0px transparent;}
.sc0_c01468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01468{word-spacing:-37.180650px;}
.ws5_c01468{word-spacing:-33.713438px;}
.ws0_c01468{word-spacing:-30.993750px;}
.ws3_c01468{word-spacing:-18.829314px;}
.ws2_c01468{word-spacing:-18.769538px;}
.ws6_c01468{word-spacing:0.000000px;}
.ws4_c01468{word-spacing:0.175997px;}
._2_c01468{margin-left:-3.287658px;}
._1_c01468{width:19.873578px;}
._0_c01468{width:29.892540px;}
.fc1_c01468{color:rgb(6,69,173);}
.fc0_c01468{color:rgb(0,0,0);}
.fs3_c01468{font-size:43.999200px;}
.fs2_c01468{font-size:59.775600px;}
.fs0_c01468{font-size:123.975000px;}
.fs1_c01468{font-size:148.722600px;}
.y0_c01468{bottom:0.000000px;}
.y8_c01468{bottom:44.250000px;}
.y7_c01468{bottom:727.983000px;}
.y6_c01468{bottom:754.881000px;}
.y5_c01468{bottom:796.725000px;}
.y4_c01468{bottom:826.612500px;}
.y3_c01468{bottom:868.455000px;}
.y2_c01468{bottom:955.131000px;}
.y1_c01468{bottom:1038.817500px;}
.h4_c01468{height:52.332837px;}
.h2_c01468{height:84.022119px;}
.h3_c01468{height:100.794418px;}
.h0_c01468{height:1262.835000px;}
.h1_c01468{height:1263.000000px;}
.w0_c01468{width:892.920000px;}
.w1_c01468{width:893.250000px;}
.x0_c01468{left:0.000000px;}
.x1_c01468{left:127.558500px;}
.x2_c01468{left:152.215500px;}
.x3_c01468{left:435.249000px;}
@media print{
.v0_c01468{vertical-align:0.000000pt;}
.ls0_c01468{letter-spacing:0.000000pt;}
.ws1_c01468{word-spacing:-33.049467pt;}
.ws5_c01468{word-spacing:-29.967501pt;}
.ws0_c01468{word-spacing:-27.550000pt;}
.ws3_c01468{word-spacing:-16.737168pt;}
.ws2_c01468{word-spacing:-16.684034pt;}
.ws6_c01468{word-spacing:0.000000pt;}
.ws4_c01468{word-spacing:0.156442pt;}
._2_c01468{margin-left:-2.922363pt;}
._1_c01468{width:17.665403pt;}
._0_c01468{width:26.571147pt;}
.fs3_c01468{font-size:39.110400pt;}
.fs2_c01468{font-size:53.133867pt;}
.fs0_c01468{font-size:110.200000pt;}
.fs1_c01468{font-size:132.197867pt;}
.y0_c01468{bottom:0.000000pt;}
.y8_c01468{bottom:39.333333pt;}
.y7_c01468{bottom:647.096000pt;}
.y6_c01468{bottom:671.005333pt;}
.y5_c01468{bottom:708.200000pt;}
.y4_c01468{bottom:734.766667pt;}
.y3_c01468{bottom:771.960000pt;}
.y2_c01468{bottom:849.005333pt;}
.y1_c01468{bottom:923.393333pt;}
.h4_c01468{height:46.518078pt;}
.h2_c01468{height:74.686328pt;}
.h3_c01468{height:89.595039pt;}
.h0_c01468{height:1122.520000pt;}
.h1_c01468{height:1122.666667pt;}
.w0_c01468{width:793.706667pt;}
.w1_c01468{width:794.000000pt;}
.x0_c01468{left:0.000000pt;}
.x1_c01468{left:113.385333pt;}
.x2_c01468{left:135.302667pt;}
.x3_c01468{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01469 {
    display:none;
  }
  .loading-indicator_c01469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01469" -> "#page-container .classname_c01469")
 */
.pf_c01469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01469 {overflow:visible;}
  }
}
.c_c01469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01469:after { /* webkit #35443 */
  content: '';
}
.t_c01469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01469 { /* info for Javascript */
  display:none;
}
.l_c01469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01469;src:url('chunks/assets/font_59b0675f3f656a3f570a2941.woff2')format("woff");}.ff1_c01469{font-family:ff1_c01469;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01469{vertical-align:0.000000px;}
.ls0_c01469{letter-spacing:0.000000px;}
.sc__c01469{text-shadow:none;}
.sc0_c01469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01469{-webkit-text-stroke:0px transparent;}
.sc0_c01469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01469{word-spacing:0.000000px;}
.fc0_c01469{color:rgb(0,0,0);}
.fs0_c01469{font-size:59.775600px;}
.y0_c01469{bottom:0.000000px;}
.y1_c01469{bottom:44.250000px;}
.h2_c01469{height:52.332837px;}
.h0_c01469{height:1262.835000px;}
.h1_c01469{height:1263.000000px;}
.w0_c01469{width:892.920000px;}
.w1_c01469{width:893.250000px;}
.x0_c01469{left:0.000000px;}
.x1_c01469{left:435.249000px;}
@media print{
.v0_c01469{vertical-align:0.000000pt;}
.ls0_c01469{letter-spacing:0.000000pt;}
.ws0_c01469{word-spacing:0.000000pt;}
.fs0_c01469{font-size:53.133867pt;}
.y0_c01469{bottom:0.000000pt;}
.y1_c01469{bottom:39.333333pt;}
.h2_c01469{height:46.518078pt;}
.h0_c01469{height:1122.520000pt;}
.h1_c01469{height:1122.666667pt;}
.w0_c01469{width:793.706667pt;}
.w1_c01469{width:794.000000pt;}
.x0_c01469{left:0.000000pt;}
.x1_c01469{left:386.888000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01470 {
    display:none;
  }
  .loading-indicator_c01470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01470" -> "#page-container .classname_c01470")
 */
.pf_c01470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01470 {overflow:visible;}
  }
}
.c_c01470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01470:after { /* webkit #35443 */
  content: '';
}
.t_c01470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01470 { /* info for Javascript */
  display:none;
}
.l_c01470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01470;src:url('chunks/assets/font_19b068a1f20675e20b22857a.woff2')format("woff");}.ff1_c01470{font-family:ff1_c01470;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01470;src:url('chunks/assets/font_347ea08a26bc7266faf8bfaf.woff2')format("woff");}.ff2_c01470{font-family:ff2_c01470;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c01470{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01470{vertical-align:0.000000px;}
.ls0_c01470{letter-spacing:0.000000px;}
.sc__c01470{text-shadow:none;}
.sc0_c01470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01470{-webkit-text-stroke:0px transparent;}
.sc0_c01470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01470{word-spacing:-74.361300px;}
.ws5_c01470{word-spacing:-33.713438px;}
.wsa_c01470{word-spacing:-21.877870px;}
.ws2_c01470{word-spacing:-21.220338px;}
.ws1a_c01470{word-spacing:-20.801909px;}
.wsc_c01470{word-spacing:-19.965050px;}
.wsf_c01470{word-spacing:-19.606397px;}
.ws4_c01470{word-spacing:-18.769538px;}
.ws18_c01470{word-spacing:-18.291334px;}
.ws13_c01470{word-spacing:-18.171782px;}
.ws1b_c01470{word-spacing:-17.036046px;}
.ws10_c01470{word-spacing:-16.796944px;}
.ws17_c01470{word-spacing:-15.601432px;}
.ws9_c01470{word-spacing:-14.704798px;}
.wsb_c01470{word-spacing:-14.525471px;}
.ws1_c01470{word-spacing:-13.808164px;}
.ws19_c01470{word-spacing:-13.788338px;}
.ws8_c01470{word-spacing:-12.612652px;}
.ws3_c01470{word-spacing:-12.134447px;}
.ws16_c01470{word-spacing:-9.922750px;}
.ws12_c01470{word-spacing:-9.085891px;}
.wsd_c01470{word-spacing:-8.966340px;}
.wse_c01470{word-spacing:-8.906564px;}
.ws14_c01470{word-spacing:-4.423394px;}
.ws15_c01470{word-spacing:-0.777083px;}
.ws11_c01470{word-spacing:-0.179327px;}
.ws1c_c01470{word-spacing:0.000000px;}
.ws7_c01470{word-spacing:10.998710px;}
.ws6_c01470{word-spacing:21.997421px;}
._4_c01470{margin-left:-7.651277px;}
._2_c01470{margin-left:-5.798233px;}
._1_c01470{margin-left:-4.722272px;}
._10_c01470{margin-left:-3.706087px;}
._0_c01470{margin-left:-2.677007px;}
._3_c01470{margin-left:-1.135736px;}
._8_c01470{width:2.926823px;}
._1c_c01470{width:14.107042px;}
._7_c01470{width:19.905275px;}
._12_c01470{width:21.997421px;}
._5_c01470{width:23.252708px;}
._1d_c01470{width:25.404630px;}
._14_c01470{width:26.826349px;}
._e_c01470{width:28.034756px;}
._1a_c01470{width:29.349820px;}
._f_c01470{width:32.039722px;}
._d_c01470{width:34.716728px;}
._15_c01470{width:38.422816px;}
._6_c01470{width:40.527857px;}
._11_c01470{width:42.859105px;}
._1b_c01470{width:46.326090px;}
._a_c01470{width:47.521602px;}
._18_c01470{width:48.597563px;}
._13_c01470{width:49.733299px;}
._c_c01470{width:52.243874px;}
._17_c01470{width:57.025922px;}
._19_c01470{width:63.063258px;}
._16_c01470{width:74.877737px;}
._b_c01470{width:109.389348px;}
._9_c01470{width:118.116586px;}
.fc1_c01470{color:rgb(6,69,173);}
.fc0_c01470{color:rgb(0,0,0);}
.fs1_c01470{font-size:59.775600px;}
.fs0_c01470{font-size:148.722600px;}
.y0_c01470{bottom:0.000000px;}
.y25_c01470{bottom:44.250000px;}
.y24_c01470{bottom:334.956000px;}
.y23_c01470{bottom:352.888500px;}
.y22_c01470{bottom:370.822500px;}
.y21_c01470{bottom:388.755000px;}
.y20_c01470{bottom:406.687500px;}
.y1f_c01470{bottom:424.620000px;}
.y1e_c01470{bottom:442.552500px;}
.y1d_c01470{bottom:460.485000px;}
.y1c_c01470{bottom:478.419000px;}
.y1b_c01470{bottom:496.351500px;}
.y1a_c01470{bottom:514.284000px;}
.y19_c01470{bottom:532.216500px;}
.y18_c01470{bottom:550.149000px;}
.y17_c01470{bottom:568.081500px;}
.y16_c01470{bottom:586.015500px;}
.y15_c01470{bottom:603.948000px;}
.y14_c01470{bottom:621.880500px;}
.y13_c01470{bottom:639.813000px;}
.y12_c01470{bottom:657.745500px;}
.y11_c01470{bottom:675.678000px;}
.y10_c01470{bottom:693.612000px;}
.yf_c01470{bottom:711.544500px;}
.ye_c01470{bottom:729.477000px;}
.yd_c01470{bottom:747.409500px;}
.yc_c01470{bottom:765.342000px;}
.yb_c01470{bottom:783.274500px;}
.ya_c01470{bottom:801.208500px;}
.y9_c01470{bottom:819.141000px;}
.y8_c01470{bottom:837.073500px;}
.y7_c01470{bottom:855.006000px;}
.y6_c01470{bottom:872.938500px;}
.y5_c01470{bottom:890.871000px;}
.y4_c01470{bottom:908.805000px;}
.y3_c01470{bottom:926.737500px;}
.y2_c01470{bottom:944.670000px;}
.y1_c01470{bottom:1031.344500px;}
.h3_c01470{height:52.332837px;}
.h2_c01470{height:100.794418px;}
.h0_c01470{height:1262.835000px;}
.h1_c01470{height:1263.000000px;}
.w0_c01470{width:892.920000px;}
.w1_c01470{width:893.250000px;}
.x0_c01470{left:0.000000px;}
.x1_c01470{left:127.558500px;}
.x2_c01470{left:149.974500px;}
.x3_c01470{left:435.249000px;}
@media print{
.v0_c01470{vertical-align:0.000000pt;}
.ls0_c01470{letter-spacing:0.000000pt;}
.ws0_c01470{word-spacing:-66.098933pt;}
.ws5_c01470{word-spacing:-29.967501pt;}
.wsa_c01470{word-spacing:-19.446995pt;}
.ws2_c01470{word-spacing:-18.862523pt;}
.ws1a_c01470{word-spacing:-18.490586pt;}
.wsc_c01470{word-spacing:-17.746711pt;}
.wsf_c01470{word-spacing:-17.427908pt;}
.ws4_c01470{word-spacing:-16.684034pt;}
.ws18_c01470{word-spacing:-16.258963pt;}
.ws13_c01470{word-spacing:-16.152695pt;}
.ws1b_c01470{word-spacing:-15.143152pt;}
.ws10_c01470{word-spacing:-14.930617pt;}
.ws17_c01470{word-spacing:-13.867939pt;}
.ws9_c01470{word-spacing:-13.070931pt;}
.wsb_c01470{word-spacing:-12.911530pt;}
.ws1_c01470{word-spacing:-12.273923pt;}
.ws19_c01470{word-spacing:-12.256301pt;}
.ws8_c01470{word-spacing:-11.211246pt;}
.ws3_c01470{word-spacing:-10.786175pt;}
.ws16_c01470{word-spacing:-8.820222pt;}
.ws12_c01470{word-spacing:-8.076348pt;}
.wsd_c01470{word-spacing:-7.970080pt;}
.wse_c01470{word-spacing:-7.916946pt;}
.ws14_c01470{word-spacing:-3.931906pt;}
.ws15_c01470{word-spacing:-0.690740pt;}
.ws11_c01470{word-spacing:-0.159402pt;}
.ws1c_c01470{word-spacing:0.000000pt;}
.ws7_c01470{word-spacing:9.776631pt;}
.ws6_c01470{word-spacing:19.553263pt;}
._4_c01470{margin-left:-6.801135pt;}
._2_c01470{margin-left:-5.153985pt;}
._1_c01470{margin-left:-4.197575pt;}
._10_c01470{margin-left:-3.294300pt;}
._0_c01470{margin-left:-2.379562pt;}
._3_c01470{margin-left:-1.009543pt;}
._8_c01470{width:2.601620pt;}
._1c_c01470{width:12.539593pt;}
._7_c01470{width:17.693578pt;}
._12_c01470{width:19.553263pt;}
._5_c01470{width:20.669074pt;}
._1d_c01470{width:22.581893pt;}
._14_c01470{width:23.845644pt;}
._e_c01470{width:24.919783pt;}
._1a_c01470{width:26.088729pt;}
._f_c01470{width:28.479753pt;}
._d_c01470{width:30.859314pt;}
._15_c01470{width:34.153614pt;}
._6_c01470{width:36.024762pt;}
._11_c01470{width:38.096982pt;}
._1b_c01470{width:41.178747pt;}
._a_c01470{width:42.241424pt;}
._18_c01470{width:43.197834pt;}
._13_c01470{width:44.207377pt;}
._c_c01470{width:46.438999pt;}
._17_c01470{width:50.689709pt;}
._19_c01470{width:56.056229pt;}
._16_c01470{width:66.557988pt;}
._b_c01470{width:97.234976pt;}
._9_c01470{width:104.992521pt;}
.fs1_c01470{font-size:53.133867pt;}
.fs0_c01470{font-size:132.197867pt;}
.y0_c01470{bottom:0.000000pt;}
.y25_c01470{bottom:39.333333pt;}
.y24_c01470{bottom:297.738667pt;}
.y23_c01470{bottom:313.678667pt;}
.y22_c01470{bottom:329.620000pt;}
.y21_c01470{bottom:345.560000pt;}
.y20_c01470{bottom:361.500000pt;}
.y1f_c01470{bottom:377.440000pt;}
.y1e_c01470{bottom:393.380000pt;}
.y1d_c01470{bottom:409.320000pt;}
.y1c_c01470{bottom:425.261333pt;}
.y1b_c01470{bottom:441.201333pt;}
.y1a_c01470{bottom:457.141333pt;}
.y19_c01470{bottom:473.081333pt;}
.y18_c01470{bottom:489.021333pt;}
.y17_c01470{bottom:504.961333pt;}
.y16_c01470{bottom:520.902667pt;}
.y15_c01470{bottom:536.842667pt;}
.y14_c01470{bottom:552.782667pt;}
.y13_c01470{bottom:568.722667pt;}
.y12_c01470{bottom:584.662667pt;}
.y11_c01470{bottom:600.602667pt;}
.y10_c01470{bottom:616.544000pt;}
.yf_c01470{bottom:632.484000pt;}
.ye_c01470{bottom:648.424000pt;}
.yd_c01470{bottom:664.364000pt;}
.yc_c01470{bottom:680.304000pt;}
.yb_c01470{bottom:696.244000pt;}
.ya_c01470{bottom:712.185333pt;}
.y9_c01470{bottom:728.125333pt;}
.y8_c01470{bottom:744.065333pt;}
.y7_c01470{bottom:760.005333pt;}
.y6_c01470{bottom:775.945333pt;}
.y5_c01470{bottom:791.885333pt;}
.y4_c01470{bottom:807.826667pt;}
.y3_c01470{bottom:823.766667pt;}
.y2_c01470{bottom:839.706667pt;}
.y1_c01470{bottom:916.750667pt;}
.h3_c01470{height:46.518078pt;}
.h2_c01470{height:89.595039pt;}
.h0_c01470{height:1122.520000pt;}
.h1_c01470{height:1122.666667pt;}
.w0_c01470{width:793.706667pt;}
.w1_c01470{width:794.000000pt;}
.x0_c01470{left:0.000000pt;}
.x1_c01470{left:113.385333pt;}
.x2_c01470{left:133.310667pt;}
.x3_c01470{left:386.888000pt;}
}




    .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; }
  